[
  {
    "path": "CH01/CH01_Introduction.ipynb",
    "content": "{\n  \"nbformat\": 4,\n  \"nbformat_minor\": 0,\n  \"metadata\": {\n    \"kernelspec\": {\n      \"display_name\": \"Python 3\",\n      \"language\": \"python\",\n      \"name\": \"python3\"\n    },\n    \"language_info\": {\n      \"codemirror_mode\": {\n        \"name\": \"ipython\",\n        \"version\": 3\n      },\n      \"file_extension\": \".py\",\n      \"mimetype\": \"text/x-python\",\n      \"name\": \"python\",\n      \"nbconvert_exporter\": \"python\",\n      \"pygments_lexer\": \"ipython3\",\n      \"version\": \"3.8.5\"\n    },\n    \"colab\": {\n      \"name\": \"CH01 Introduction.ipynb\",\n      \"provenance\": [],\n      \"collapsed_sections\": []\n    },\n    \"accelerator\": \"GPU\"\n  },\n  \"cells\": [\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"3HexS4eAsRQ1\"\n      },\n      \"source\": [\n        \"# TF-IDF Vectorizer\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"QLrk1ZnKsRQ8\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 175\n        },\n        \"outputId\": \"573b6379-aeea-4156-a09c-2230ef05424a\"\n      },\n      \"source\": [\n        \"from sklearn.feature_extraction.text import TfidfVectorizer \\n\",\n        \"import numpy as np\\n\",\n        \"import pandas as pd\\n\",\n        \"\\n\",\n        \"toy_corpus= [\\\"the fat cat sat on the mat\\\",\\n\",\n        \"             \\\"the big cat slept\\\",\\n\",\n        \"             \\\"the dog chased a cat\\\"]\\n\",\n        \"vectorizer=TfidfVectorizer(use_idf=True)\\n\",\n        \"\\n\",\n        \"corpus_tfidf=vectorizer.fit_transform(toy_corpus)\\n\",\n        \"\\n\",\n        \"print(f\\\"The vocabulary size is {len(vectorizer.vocabulary_.keys())} \\\")\\n\",\n        \"print(f\\\"The document-term matrix shape is {corpus_tfidf.shape}\\\")\\n\",\n        \"\\n\",\n        \"df=pd.DataFrame(np.round(corpus_tfidf.toarray(),2))\\n\",\n        \"df.columns=vectorizer.get_feature_names()\\n\",\n        \"df\"\n      ],\n      \"execution_count\": 1,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"The vocabulary size is 10 \\n\",\n            \"The document-term matrix shape is (3, 10)\\n\"\n          ],\n          \"name\": \"stdout\"\n        },\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/html\": [\n              \"<div>\\n\",\n              \"<style scoped>\\n\",\n              \"    .dataframe tbody tr th:only-of-type {\\n\",\n              \"        vertical-align: middle;\\n\",\n              \"    }\\n\",\n              \"\\n\",\n              \"    .dataframe tbody tr th {\\n\",\n              \"        vertical-align: top;\\n\",\n              \"    }\\n\",\n              \"\\n\",\n              \"    .dataframe thead th {\\n\",\n              \"        text-align: right;\\n\",\n              \"    }\\n\",\n              \"</style>\\n\",\n              \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n              \"  <thead>\\n\",\n              \"    <tr style=\\\"text-align: right;\\\">\\n\",\n              \"      <th></th>\\n\",\n              \"      <th>big</th>\\n\",\n              \"      <th>cat</th>\\n\",\n              \"      <th>chased</th>\\n\",\n              \"      <th>dog</th>\\n\",\n              \"      <th>fat</th>\\n\",\n              \"      <th>mat</th>\\n\",\n              \"      <th>on</th>\\n\",\n              \"      <th>sat</th>\\n\",\n              \"      <th>slept</th>\\n\",\n              \"      <th>the</th>\\n\",\n              \"    </tr>\\n\",\n              \"  </thead>\\n\",\n              \"  <tbody>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>0</th>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.25</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.42</td>\\n\",\n              \"      <td>0.42</td>\\n\",\n              \"      <td>0.42</td>\\n\",\n              \"      <td>0.42</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.49</td>\\n\",\n              \"    </tr>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>1</th>\\n\",\n              \"      <td>0.61</td>\\n\",\n              \"      <td>0.36</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.61</td>\\n\",\n              \"      <td>0.36</td>\\n\",\n              \"    </tr>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>2</th>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.36</td>\\n\",\n              \"      <td>0.61</td>\\n\",\n              \"      <td>0.61</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.00</td>\\n\",\n              \"      <td>0.36</td>\\n\",\n              \"    </tr>\\n\",\n              \"  </tbody>\\n\",\n              \"</table>\\n\",\n              \"</div>\"\n            ],\n            \"text/plain\": [\n              \"    big   cat  chased   dog   fat   mat    on   sat  slept   the\\n\",\n              \"0  0.00  0.25    0.00  0.00  0.42  0.42  0.42  0.42   0.00  0.49\\n\",\n              \"1  0.61  0.36    0.00  0.00  0.00  0.00  0.00  0.00   0.61  0.36\\n\",\n              \"2  0.00  0.36    0.61  0.61  0.00  0.00  0.00  0.00   0.00  0.36\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 1\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"WQI1-eQDXuvZ\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 1,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"o7S1Wf2xWqH-\"\n      },\n      \"source\": [\n        \"## Classification\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"iQ_wnwpCsRQ9\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"3988dbf1-9b29-4fd4-bf2a-7dcbb0e9f075\"\n      },\n      \"source\": [\n        \"from sklearn.pipeline import make_pipeline\\n\",\n        \"from sklearn.svm import SVC\\n\",\n        \"labels= [0,1,0]\\n\",\n        \"clf =  SVC()\\n\",\n        \"clf.fit(df, labels)\"\n      ],\n      \"execution_count\": 2,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"SVC(C=1.0, break_ties=False, cache_size=200, class_weight=None, coef0=0.0,\\n\",\n              \"    decision_function_shape='ovr', degree=3, gamma='scale', kernel='rbf',\\n\",\n              \"    max_iter=-1, probability=False, random_state=None, shrinking=True,\\n\",\n              \"    tol=0.001, verbose=False)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 2\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"P1UfliHPXotq\",\n        \"outputId\": \"11971404-077e-4681-be5d-e8a3aa95eebe\"\n      },\n      \"source\": [\n        \"clf.predict(df)\"\n      ],\n      \"execution_count\": 3,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([0, 1, 0])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 3\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"M7Xp7alkCb0L\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 3,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"rIpBd5b_sRQ_\"\n      },\n      \"source\": [\n        \"# Building a LM Model \\n\",\n        \"Once we prepared our corpus above, we are ready to start training Maximum Likelihood Estimator (MLE) as a Language Model.\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"nUGnkes_sRRA\"\n      },\n      \"source\": [\n        \"## Training a bigram LM\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"gLP2eGrBmJTz\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"55c36aca-dfd1-4f05-9584-53900abb6310\"\n      },\n      \"source\": [\n        \"!pip install nltk==3.5.0\"\n      ],\n      \"execution_count\": 4,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Collecting nltk==3.5.0\\n\",\n            \"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/92/75/ce35194d8e3022203cca0d2f896dbb88689f9b3fce8e9f9cff942913519d/nltk-3.5.zip (1.4MB)\\n\",\n            \"\\r\\u001b[K     |▎                               | 10kB 15.0MB/s eta 0:00:01\\r\\u001b[K     |▌                               | 20kB 20.8MB/s eta 0:00:01\\r\\u001b[K     |▊                               | 30kB 24.9MB/s eta 0:00:01\\r\\u001b[K     |█                               | 40kB 22.1MB/s eta 0:00:01\\r\\u001b[K     |█▏                              | 51kB 24.1MB/s eta 0:00:01\\r\\u001b[K     |█▍                              | 61kB 21.6MB/s eta 0:00:01\\r\\u001b[K     |█▋                              | 71kB 18.8MB/s eta 0:00:01\\r\\u001b[K     |█▉                              | 81kB 19.0MB/s eta 0:00:01\\r\\u001b[K     |██                              | 92kB 18.2MB/s eta 0:00:01\\r\\u001b[K     |██▎                             | 102kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██▌                             | 112kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██▊                             | 122kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███                             | 133kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███▏                            | 143kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███▍                            | 153kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███▋                            | 163kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███▉                            | 174kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████▏                           | 184kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████▍                           | 194kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████▋                           | 204kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████▉                           | 215kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████                           | 225kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████▎                          | 235kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████▌                          | 245kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████▊                          | 256kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████                          | 266kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████▏                         | 276kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████▍                         | 286kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████▋                         | 296kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████▉                         | 307kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████                         | 317kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████▎                        | 327kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████▌                        | 337kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████▊                        | 348kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████                        | 358kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████▎                       | 368kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████▌                       | 378kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████▊                       | 389kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████                       | 399kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████▏                      | 409kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████▍                      | 419kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████▋                      | 430kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████▉                      | 440kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████                      | 450kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████▎                     | 460kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████▌                     | 471kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████▊                     | 481kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████                     | 491kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████▏                    | 501kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████▍                    | 512kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████▋                    | 522kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████▉                    | 532kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████▏                   | 542kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████▍                   | 552kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████▋                   | 563kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████▉                   | 573kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████                   | 583kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████▎                  | 593kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████▌                  | 604kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████▊                  | 614kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████                  | 624kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████▏                 | 634kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████▍                 | 645kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████▋                 | 655kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████▉                 | 665kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████                 | 675kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████▎                | 686kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████▌                | 696kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████▊                | 706kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████                | 716kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████▎               | 727kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████▌               | 737kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████▊               | 747kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████               | 757kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████▏              | 768kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████▍              | 778kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████▋              | 788kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████▉              | 798kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████              | 808kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████▎             | 819kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████▌             | 829kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████▊             | 839kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████             | 849kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████▏            | 860kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████▍            | 870kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████▋            | 880kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████▉            | 890kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████▏           | 901kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████▍           | 911kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████▋           | 921kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████▉           | 931kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████           | 942kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████▎          | 952kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████▌          | 962kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████▊          | 972kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████          | 983kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████▏         | 993kB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████▍         | 1.0MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████▋         | 1.0MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████▉         | 1.0MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████         | 1.0MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████▎        | 1.0MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████▌        | 1.1MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████▊        | 1.1MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████        | 1.1MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████▎       | 1.1MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████▌       | 1.1MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████▊       | 1.1MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████████       | 1.1MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████████▏      | 1.1MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████████▍      | 1.1MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████████▋      | 1.1MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████████▉      | 1.2MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████████      | 1.2MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████████▎     | 1.2MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████████▌     | 1.2MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████████▊     | 1.2MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████████     | 1.2MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████████▏    | 1.2MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████████▍    | 1.2MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████████▋    | 1.2MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████████▉    | 1.2MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████████▏   | 1.3MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████████▍   | 1.3MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████████▋   | 1.3MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████████▉   | 1.3MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████████████   | 1.3MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████████████▎  | 1.3MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████████████▌  | 1.3MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████████████▊  | 1.3MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████████████  | 1.3MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████████████▏ | 1.4MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████████████▍ | 1.4MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████████████▋ | 1.4MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████████████▉ | 1.4MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████████████ | 1.4MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████████████▎| 1.4MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████████████▌| 1.4MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████████████▊| 1.4MB 18.6MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████████████| 1.4MB 18.6MB/s \\n\",\n            \"\\u001b[?25hRequirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from nltk==3.5.0) (7.1.2)\\n\",\n            \"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from nltk==3.5.0) (1.0.1)\\n\",\n            \"Requirement already satisfied: regex in /usr/local/lib/python3.7/dist-packages (from nltk==3.5.0) (2019.12.20)\\n\",\n            \"Requirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from nltk==3.5.0) (4.41.1)\\n\",\n            \"Building wheels for collected packages: nltk\\n\",\n            \"  Building wheel for nltk (setup.py) ... \\u001b[?25l\\u001b[?25hdone\\n\",\n            \"  Created wheel for nltk: filename=nltk-3.5-cp37-none-any.whl size=1434676 sha256=b026191697fc0f1fd3d3503c277bd8b8b393a3d83015818aa19b9b5545d68fcb\\n\",\n            \"  Stored in directory: /root/.cache/pip/wheels/ae/8c/3f/b1fe0ba04555b08b57ab52ab7f86023639a526d8bc8d384306\\n\",\n            \"Successfully built nltk\\n\",\n            \"Installing collected packages: nltk\\n\",\n            \"  Found existing installation: nltk 3.2.5\\n\",\n            \"    Uninstalling nltk-3.2.5:\\n\",\n            \"      Successfully uninstalled nltk-3.2.5\\n\",\n            \"Successfully installed nltk-3.5\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"DXhFj8Bk9hNI\",\n        \"outputId\": \"cb579144-cbf8-4335-de75-f58cdce4e19a\"\n      },\n      \"source\": [\n        \"import nltk\\n\",\n        \"from nltk.corpus import gutenberg\\n\",\n        \"from nltk.lm import MLE\\n\",\n        \"from nltk.lm.preprocessing import padded_everygram_pipeline\\n\",\n        \"\\n\",\n        \"nltk.download('gutenberg')\\n\",\n        \"nltk.download('punkt')\\n\",\n        \"macbeth = gutenberg.sents('shakespeare-macbeth.txt')\\n\",\n        \"\\n\",\n        \"model, vocab = padded_everygram_pipeline(2, macbeth)\\n\",\n        \"lm=MLE(2)\\n\",\n        \"lm.fit(model,vocab)\\n\",\n        \"print(list(lm.vocab)[:40])\\n\",\n        \"print(f\\\"The number of words is {len(lm.vocab)}\\\")\\n\"\n      ],\n      \"execution_count\": 5,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"[nltk_data] Downloading package gutenberg to /root/nltk_data...\\n\",\n            \"[nltk_data]   Unzipping corpora/gutenberg.zip.\\n\",\n            \"[nltk_data] Downloading package punkt to /root/nltk_data...\\n\",\n            \"[nltk_data]   Unzipping tokenizers/punkt.zip.\\n\"\n          ],\n          \"name\": \"stderr\"\n        },\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"['<s>', '[', 'The', 'Tragedie', 'of', 'Macbeth', 'by', 'William', 'Shakespeare', '1603', ']', '</s>', 'Actus', 'Primus', '.', 'Scoena', 'Prima', 'Thunder', 'and', 'Lightning', 'Enter', 'three', 'Witches', '1', 'When', 'shall', 'we', 'meet', 'againe', '?', 'In', ',', 'or', 'in', 'Raine', '2', 'the', 'Hurley', '-', 'burley']\\n\",\n            \"The number of words is 4020\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"J7r_k7HsEIl5\",\n        \"outputId\": \"77a4b812-aadb-467a-c839-fbe8bf3639e4\"\n      },\n      \"source\": [\n        \"print(macbeth[42])\"\n      ],\n      \"execution_count\": 6,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"['So', 'well', 'thy', 'words', 'become', 'thee', ',', 'as', 'thy', 'wounds', ',', 'They', 'smack', 'of', 'Honor', 'both', ':', 'Goe', 'get', 'him', 'Surgeons', '.']\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"XAmNlJAusRRC\"\n      },\n      \"source\": [\n        \"## See what LM learned\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"6-9V4zpqsRRC\"\n      },\n      \"source\": [\n        \"Here is a list of what the language model learded so far\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"Imi-8nJBsRRC\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"998fe046-ae85-499d-eb88-62a616d8373f\"\n      },\n      \"source\": [\n        \"print(f\\\"The frequency of the term 'Macbeth' is {lm.counts['Macbeth']}\\\")\\n\",\n        \"print(f\\\"The language model probability score of 'Macbeth' is {lm.score('Macbeth')}\\\")\\n\",\n        \"print(f\\\"The number of times 'Macbeth' follows 'Enter' is {lm.counts[['Enter']]['Macbeth']} \\\")\\n\",\n        \"print(f\\\"P(Macbeth | Enter) is {lm.score('Macbeth', ['Enter'])}\\\")\\n\",\n        \"print(f\\\"P(shaking | for) is {lm.score('shaking', ['for'])}\\\")\"\n      ],\n      \"execution_count\": 7,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"The frequency of the term 'Macbeth' is 61\\n\",\n            \"The language model probability score of 'Macbeth' is 0.0022631149365585812\\n\",\n            \"The number of times 'Macbeth' follows 'Enter' is 15 \\n\",\n            \"P(Macbeth | Enter) is 0.1875\\n\",\n            \"P(shaking | for) is 0.012195121951219513\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"oauTwshSsRRD\"\n      },\n      \"source\": [\n        \"## Language Generation with LM\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"cVxMOl7csRRD\"\n      },\n      \"source\": [\n        \"To generate one word\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"zhpjmp1_sRRD\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 35\n        },\n        \"outputId\": \"c2f8ce54-2df2-4e66-b85f-411b2c3f1424\"\n      },\n      \"source\": [\n        \"lm.generate(1, random_seed=42)\"\n      ],\n      \"execution_count\": 8,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"application/vnd.google.colaboratory.intrinsic+json\": {\n              \"type\": \"string\"\n            },\n            \"text/plain\": [\n              \"'done'\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 8\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"h8NjYNyXsRRE\"\n      },\n      \"source\": [\n        \"To generate a sentence of 7 words length\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"jq7dnLXQsRRE\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"1cfc5080-03ea-4ccb-aaec-f251c550d509\"\n      },\n      \"source\": [\n        \"print(lm.generate(7, random_seed=42))\"\n      ],\n      \"execution_count\": 9,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"['done', ',', 'Not', 'for', 'thee', 'in', 'this']\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"NK3EDt-_sRRE\"\n      },\n      \"source\": [\n        \"To generate 10 words starting with \\\\<s>\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"inFO4hKqsRRF\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"1e1f8861-ff67-4787-dfb8-9522b48ff04b\"\n      },\n      \"source\": [\n        \" lm.generate(10, text_seed=['<s>'], random_seed=42)\"\n      ],\n      \"execution_count\": 10,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"['My', 'Bosome', 'franchis', \\\"'\\\", 's', 'of', 'time', ',', 'We', 'are']\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 10\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"aUqLMMuPJjOj\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 10,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"CsT0yIeFJuu3\"\n      },\n      \"source\": [\n        \"# Word Embeddings Training\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"QSXGUZAdKhFt\",\n        \"outputId\": \"7733b901-7e9e-4d39-ded4-619c874bc81e\"\n      },\n      \"source\": [\n        \"!pip install gensim==3.8.3\"\n      ],\n      \"execution_count\": 11,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Collecting gensim==3.8.3\\n\",\n            \"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/5c/4e/afe2315e08a38967f8a3036bbe7e38b428e9b7a90e823a83d0d49df1adf5/gensim-3.8.3-cp37-cp37m-manylinux1_x86_64.whl (24.2MB)\\n\",\n            \"\\u001b[K     |████████████████████████████████| 24.2MB 2.3MB/s \\n\",\n            \"\\u001b[?25hRequirement already satisfied: scipy>=0.18.1 in /usr/local/lib/python3.7/dist-packages (from gensim==3.8.3) (1.4.1)\\n\",\n            \"Requirement already satisfied: six>=1.5.0 in /usr/local/lib/python3.7/dist-packages (from gensim==3.8.3) (1.15.0)\\n\",\n            \"Requirement already satisfied: numpy>=1.11.3 in /usr/local/lib/python3.7/dist-packages (from gensim==3.8.3) (1.19.5)\\n\",\n            \"Requirement already satisfied: smart-open>=1.8.1 in /usr/local/lib/python3.7/dist-packages (from gensim==3.8.3) (5.0.0)\\n\",\n            \"Installing collected packages: gensim\\n\",\n            \"  Found existing installation: gensim 3.6.0\\n\",\n            \"    Uninstalling gensim-3.6.0:\\n\",\n            \"      Successfully uninstalled gensim-3.6.0\\n\",\n            \"Successfully installed gensim-3.8.3\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"hwIt376DJxEK\"\n      },\n      \"source\": [\n        \"from gensim.models import Word2Vec\\n\",\n        \"model = Word2Vec(sentences=macbeth, size=100, window= 4, min_count=10, workers=4, iter=10)\"\n      ],\n      \"execution_count\": 12,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"x1N8FgE0KKyu\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"aab62da2-9e3f-46aa-b84a-be0fedd5d26b\"\n      },\n      \"source\": [\n        \"model.wv.similar_by_word('then',10)\"\n      ],\n      \"execution_count\": 13,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"[('did', 0.9997876286506653),\\n\",\n              \" ('were', 0.9997825026512146),\\n\",\n              \" ('feare', 0.9997712969779968),\\n\",\n              \" ('To', 0.9997696876525879),\\n\",\n              \" ('can', 0.9997659921646118),\\n\",\n              \" ('be', 0.9997646808624268),\\n\",\n              \" ('me', 0.9997618198394775),\\n\",\n              \" ('(', 0.9997608661651611),\\n\",\n              \" ('for', 0.9997595548629761),\\n\",\n              \" ('So', 0.9997578859329224)]\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 13\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"Zfg_9ct1LVxK\",\n        \"outputId\": \"941c99d1-f3f1-4104-f77e-70850f109233\"\n      },\n      \"source\": [\n        \"model.wv['did'] # get numpy vector of word 'Macbeth'\"\n      ],\n      \"execution_count\": 14,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([-3.57733190e-01,  1.31498814e-01, -3.64811748e-01, -3.19560729e-02,\\n\",\n              \"        2.22593561e-01,  1.39860272e-01,  2.89195538e-01,  1.13173693e-01,\\n\",\n              \"       -2.03456119e-01,  2.30740398e-01,  3.21552157e-01, -1.94947589e-02,\\n\",\n              \"        1.77455410e-01, -9.79656428e-02,  1.09568939e-01, -4.42196071e-01,\\n\",\n              \"       -3.71391594e-01,  3.15961063e-01,  4.32639867e-01,  4.01205927e-01,\\n\",\n              \"        4.15760688e-02,  2.13130236e-01, -1.46004602e-01,  3.42006655e-03,\\n\",\n              \"        1.51956335e-01,  2.29435697e-01,  8.56862292e-02, -1.36864200e-01,\\n\",\n              \"       -9.34164152e-02,  1.80605486e-01,  3.20621699e-01, -1.87747627e-01,\\n\",\n              \"       -1.36048272e-01,  3.84179175e-01,  3.72940242e-01,  2.36134127e-01,\\n\",\n              \"       -1.64353684e-01, -1.98470294e-01, -2.08301283e-03,  1.82027549e-01,\\n\",\n              \"       -2.48176172e-01,  3.47447805e-02,  1.55179739e-01,  1.77648738e-02,\\n\",\n              \"        3.28741083e-03,  4.83679831e-01,  6.38111308e-02,  2.69058108e-01,\\n\",\n              \"       -2.61533726e-02,  2.02223346e-01, -6.04587682e-02, -4.09872234e-02,\\n\",\n              \"       -1.39776707e-01,  2.51090005e-02,  6.56492822e-03, -1.89400643e-01,\\n\",\n              \"        1.36186212e-01, -4.85080406e-02, -2.54259855e-01,  1.95626095e-02,\\n\",\n              \"       -3.55173997e-03,  2.73116797e-01,  1.03901327e-01, -6.32568002e-02,\\n\",\n              \"        4.42321412e-04,  1.59238294e-01, -1.51489750e-01,  5.62172905e-02,\\n\",\n              \"       -1.15971854e-02,  9.89768729e-02, -4.28050384e-03,  1.83302804e-03,\\n\",\n              \"       -5.19516841e-02, -1.14471994e-01, -2.93976292e-02,  1.35174096e-01,\\n\",\n              \"        1.87644631e-01, -4.22828734e-01,  3.18877995e-01, -2.19833672e-01,\\n\",\n              \"        1.62515473e-02,  1.92310899e-01, -3.00093107e-02,  3.59999657e-01,\\n\",\n              \"        1.42292053e-01,  2.96746582e-01,  5.73777407e-02,  2.11292300e-02,\\n\",\n              \"        4.44845157e-03,  2.87942439e-02,  3.11298162e-01, -5.50519675e-03,\\n\",\n              \"       -8.33123475e-02,  2.27168053e-02,  5.33080921e-02, -7.58990739e-03,\\n\",\n              \"        2.14043647e-01,  1.00844651e-01,  9.25303325e-02, -3.15953307e-02],\\n\",\n              \"      dtype=float32)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 14\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 575\n        },\n        \"id\": \"OPmlCHpEOviN\",\n        \"outputId\": \"096f03cd-882d-4366-81b9-1b05546802d8\"\n      },\n      \"source\": [\n        \"import matplotlib.pyplot as plt\\n\",\n        \"from sklearn.decomposition import PCA\\n\",\n        \"import random\\n\",\n        \"import numpy as np\\n\",\n        \"\\n\",\n        \"np.random.seed(42)\\n\",\n        \"words=list([e for e in model.wv.vocab if len(e)>4]) # plot words longer than 4\\n\",\n        \"random.shuffle(words)\\n\",\n        \"words3d = PCA(n_components=3, random_state=42).fit_transform(model.wv[words[:100]])\\n\",\n        \"\\n\",\n        \"def plotWords3D(vecs, words, title):\\n\",\n        \"    \\\"\\\"\\\"\\n\",\n        \"        Parameters\\n\",\n        \"        ----------\\n\",\n        \"        vecs : numpy-array\\n\",\n        \"            Transformed 3D array either by PCA or other techniques\\n\",\n        \"        words: a list of word\\n\",\n        \"            the word list to be mapped\\n\",\n        \"        title: str\\n\",\n        \"            The title of plot     \\n\",\n        \"        \\\"\\\"\\\"\\n\",\n        \"    fig = plt.figure(figsize=(14,10))\\n\",\n        \"    ax = fig.gca(projection='3d')\\n\",\n        \"    for w, vec in zip(words, vecs):\\n\",\n        \"        ax.text(vec[0],vec[1],vec[2], w, color=np.random.rand(3,))\\n\",\n        \"    ax.set_xlim(min(vecs[:,0]), max(vecs[:,0]))\\n\",\n        \"    ax.set_ylim(min(vecs[:,1]), max(vecs[:,1]))\\n\",\n        \"    ax.set_zlim(min(vecs[:,2]), max(vecs[:,2]))\\n\",\n        \"    ax.set_xlabel('DIM-1')\\n\",\n        \"    ax.set_ylabel('DIM-2')\\n\",\n        \"    ax.set_zlabel('DIM-3')\\n\",\n        \"    plt.title(title)\\n\",\n        \"    plt.show()\\n\",\n        \"plotWords3D(words3d, words, \\\"Visualizing Word2Vec Word Embeddings using PCA\\\")\"\n      ],\n      \"execution_count\": 15,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAxsAAAIuCAYAAADXHhVjAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzdd3xb9bk/8I+WJVmWd2I7juPEcZYNGWTYDhm0cEMZDRBCgORHkt62l1EKLbelA1rSy+ottNy0dF0KzYQAKWWEAoEyW0ITIBAIJLHkJY94yLasLZ3x+yP3HCRbsiVrnHPk5/16+QWRNb6SdaTvc77P831UPM+DEEIIIYQQQpJNLfUACCGEEEIIIZmJgg1CCCGEEEJISlCwQQghhBBCCEkJCjYIIYQQQgghKUHBBiGEEEIIISQlKNgghBBCCCGEpIR2jN/TvriEEEIIIYSQ0aii/YJWNgghhBBCCCEpQcEGIYQQQgghJCUo2CCEEEIIIYSkBAUbhBBCCCGEkJSgYIMQQgghhBCSEhRsEEIIIYQQQlKCgg1CCCGEEEJISlCwQQghhBBCCEkJCjYIIYQQQgghKUHBBiGEEEIIISQlKNgghBBCCCGEpAQFG4QQQgghhJCUoGCDEEIIIYQQkhIUbBBCCCGEEEJSgoINQgghhBBCSEpQsEEIIYQQQghJCQo2CCGEEEIIISlBwQYhhBBCCCEkJSjYIIQQQgghhKQEBRuEEEIIIYSQlKBggxBCCCGEEJISFGwQQgghhBBCUoKCDUIIIYQQQkhKULBBCCGEEEIISQkKNgghhBBCCCEpQcEGIYQQQgghJCUo2CCEEEIIIYSkBAUbhExAtbW1ePPNN1P6GCqVChaLBQBwww034O677x7zNjk5OWhqakrpuFKtpaUFKpUKDMNIPRRJbN26FXfeeWfKHyfZr/P06dPx2muvRfzdm2++ialTp4r/TsfxkyyZcEwRQpSNgg1CMsxXvvIV/PSnPx1x+XPPPYfS0lIwDIPjx4/jvPPOS9uY/vCHP+AnP/nJmNdzuVyoqqpK6mN3dXVBpVKhu7tbvOzee++NeNlXvvKVpD42AHzve9/DrFmzYDabMXfuXOzatQsA4PP5kJ+fj9dff33Ebb773e9i/fr1SXn866+/HjfeeKP472AwCJPJFPGy9957LymPGc2OHTug0WiQk5MT9tPZ2ZnSx022dB8/iUjFMQUA27Ztg06nQ05ODvLz87F8+XIcOnRI/H1XVxe+/vWvo6ysTHzv33XXXXC73eJ1eJ5HVVUVampqkj4+Qoh8ULBBSIbZsmUL9uzZA57nwy7fvXs3Nm3aBK1WK9HIpFFWVobq6mq8/fbb4mVvv/025s6dO+KyVatWxXXfsZxVN5lMeOGFF+BwOLBz507ceuutePfdd2EwGHD11VeLwYeAZVk88cQT2LJlS1xjiWbVqlVhz/P999/HtGnT8M4774RdBgCLFy+O675Zlo17PA0NDXC5XGE/U6ZMift+iPSuvvpquFwu9Pb2YsWKFVi3bh14nkd/fz8aGhrg9Xpx6NAhOJ1OvPrqqxgcHITVahVv//bbb6OnpwdNTU04cuSIhM+EEJJKFGwQkmEuv/xy2O32sMnkwMAADhw4gM2bNwMITxk5fPgwlixZgtzcXJSUlOC2224DMDJ1JNLtGhoakJ+fj7KyMtx8880IBAIRxxSaWvPVr3417Ky2Wq3Gjh07AISnXm3duhXf+ta3cMkll8BsNqOuri5sonLw4EHMmTMHeXl5uOmmm7B69Wr86U9/ivj4oRNulmXx4Ycf4tZbbw277NChQ1i1ahU4jsM999yDyspKTJ48GZs3b4bD4QDwRerOo48+imnTpuHLX/4yWJbF9773PRQXF6Oqqgovvvhi2GP/7Gc/w9y5c6FWq1FXV4eVK1eKZ4C3bNmCv/zlL/B4POL1X3nlFXAch4suuggOh0M8O1xeXo4777wzbIL/yCOPYN68eTCbzaipqcGHH34Y8bl//vnn6OvrAwC88847uOaaa+B2u8Mua2hogE6nw+eff47zzjsP+fn5qK2txfPPPx/2d7zxxhtx8cUXw2Qy4Y033sDRo0dxzjnnwGw24+qrr4bP54v4N4jF9OnT8cADD2D+/PkwmUz4+te/ju7ublx00UUwm8244IILMDAwEHabxx57DFOmTEFZWRkefPBB8XKO4/Dzn/8cM2fORFFRETZs2ID+/n7x97t370ZlZSWKiopw7733ht2n1+vF1q1bUVBQgJqamhET4dDjYNu2bdiwYQM2b94Ms9mM2tpaMXgDgA8//BCLFi2C2WzGVVddhauvvlo8Fvr6+nDppZciPz8fhYWFWLlyJTiOG/G6REoZO++888T3u8ViwerVq5GXl4fi4mJcffXV4vVSdUyF0ul02LJlC06fPg273Y5f/epXMJvN2LNnD6ZPnw4AqKiowPbt2zF//nzxdjt37sRll12Giy++GDt37hzzcQghykTBBiEZxmg0YsOGDWFnzJ966inMnTsXCxYsGHH9W2+9FbfeeiuGhoZgtVqxYcOGmB5Ho9HgoYceQl9fHw4dOoS///3v+N3vfjfm7V544QXxjPbTTz+N0tJSnH/++RGvu2/fPtx1110YGBhAdXU17rjjDgBnJmnr16/H/fffD7vdjjlz5uDdd9+N+pihwcbRo0cxb948nH/++WGXBYNBLFu2DDt27MCOHTvwxhtvoKmpCS6XCzfffHPY/b311lv4/PPP8corr+CRRx7BgQMHcPToUbz//vvYv39/1HF4vV4cOXIEtbW1AIDly5ejrKwMzzzzjHid3bt3Y+PGjdBqtdi6dSu0Wi0sFguOHj2KgwcPipO/p59+Gtu2bcOuXbswNDSE559/HkVFRSMes6KiApWVlWLw+fbbb2PlypVYvnx52GWrVq1CMBjEV7/6VaxZswY9PT34zW9+g02bNuHkyZPi/T3++OO444474HQ6sWzZMlx++eW47rrr0N/fj6uuugp/+ctfoj7/WPzlL3/Bq6++ilOnTuGFF17ARRddhPvuuw+9vb3gOA6//vWvw67/xhtvoLGxEQcPHsR///d/i0HAb37zGzz77LN466230NnZiYKCAnzrW98CAHz22We48cYbsXv3bnR2dsJut6O9vV28z5/97GewWq2wWq145ZVXxpwIP//887jmmmswODiItWvXiu+XQCCAK664Alu3bkV/fz+uvfZa/PWvfxVv98tf/hJTp05Fb28vuru7cd9990GlUsX9mv3kJz/BmjVrMDAwgPb2dnz729+Oet1kHVOh/H4/duzYgYqKChQXF+O1117DunXroFZHn2J4PB7s378fmzZtwqZNm7Bv376oJysIIcpGwQYhGWjLli3Yv3+/eJZ5165dUdNydDodLBYL+vr6kJOTg/r6+pgeY/Hixaivr4dWq8X06dNx/fXX46233op5jKdOncKWLVvw1FNPoaKiIuJ1rrjiCixbtgxarRabNm3CRx99BAD429/+htraWqxbtw5arRa33HILSktLoz7W6tWr8emnn2JwcBDvvPMOVq5ciVmzZqG3t1e8rL6+HllZ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PxAIBPDTn/40bGK8YcMG3H///WINxG9+85txja2hoQEajQYPP/wwGIbBc889F/b6HDhwABaLBTzPIy8vDxqNJmKdw6RJk1BeXo49e/aAZVk89thjYYHm008/LQYGBQUFUKlUo9ZLRDKeYyqa2267DUNDQ9iyZYv4+nd0dOC2227DsWPHsHv3bsyePRsnT57ERx99hI8++ginTp3C1KlTw1L2CCGZgYINQjLU9OnTsXz5crjdbqxduzbq9V5++WXU1tYiJycHt956K/bt2wej0Yi8vDz87ne/wze+8Q2Ul5fDZDKFpVU8+OCDePzxx2E2m/HNb34zbAec0TzxxBN47733UFBQIO5ItXfv3rieW3FxMZ5++mncfvvtKCoqwmeffYYlS5ZAr9dHvc3q1avR09MTlra1cOFCeL1eLF68GNnZ2QDO7Nhz7bXXYvXq1Zg7dy4MBgMefPDBsImgWq2GSqUCy7LYuHEjzjvvPCxatAiLFi3CxRdfDOBMH41gMIgf//jHaGtrQ3V1tfh877vvvrCxXXnllejv78f5558fluu+a9cuBAIB1NTUoKCgAOvXrxfTU6666irccccd2LhxI8xmMy6//PKw3ZaGW7VqFXp7e3HuueeKl61cuRI9PT1isJGVlYUXXngBL730EoqLi3HTTTdh165dmDt3bsT7zMrKwjPPPIMdO3agsLAQTz75JNatWxd1DABw6NChEX02Etn2dPXq1aiursb555+P733ve1izZg2AMxsfrF27FmvWrIHZbEZ9fT3+9a9/ATizqvPb3/4WGzduRFlZGQoKCsLe23fddRcqKysxY8YMrFmzBtddd924xia8Po8++ijy8/OxZ88eXHrppeL7tLGxERdccAFycnLQ0NCAm266CV/60pci3tcjjzyCBx54AEVFRTh+/Li4OgcAR44cQV1dHXJycrB27Vps37497t4a4zmmoiksLMS7774LnU6Huro6mM1mnH/++cjLy0N1dTV27tyJm266SVzVEH5uuOEGSqUiJAOpxkh7GDsnghBCJMZxHKZOnYq9e/dGnazFch/BYFA8w61SqcSUIeHysYp3hc9TnufDru92u6HRaJCbmwuNRiMGLqGPQSaGuro63HDDDfja174m9VBGlYxjihAyoUT9MptY3b0IIRnjlVdeQV1dHYxGIx544AHwPB/zTlqhOI4DwzBi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\\n\",\n            \"text/plain\": [\n              \"<Figure size 1008x720 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"9VDm2Vtc4xFo\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 16,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"837iPJSNbo26\"\n      },\n      \"source\": [\n        \"## FastText\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"kIsedoNucJCG\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"a6563d51-814a-4b0e-bbe2-ac6100b1851c\"\n      },\n      \"source\": [\n        \"!pip install fasttext\"\n      ],\n      \"execution_count\": 17,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Collecting fasttext\\n\",\n            \"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/f8/85/e2b368ab6d3528827b147fdb814f8189acc981a4bc2f99ab894650e05c40/fasttext-0.9.2.tar.gz (68kB)\\n\",\n            \"\\r\\u001b[K     |████▊                           | 10kB 11.8MB/s eta 0:00:01\\r\\u001b[K     |█████████▌                      | 20kB 16.8MB/s eta 0:00:01\\r\\u001b[K     |██████████████▎                 | 30kB 20.9MB/s eta 0:00:01\\r\\u001b[K     |███████████████████             | 40kB 23.3MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████▉        | 51kB 25.7MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████████▋   | 61kB 21.4MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████████████| 71kB 5.3MB/s \\n\",\n            \"\\u001b[?25hRequirement already satisfied: pybind11>=2.2 in /usr/local/lib/python3.7/dist-packages (from fasttext) (2.6.2)\\n\",\n            \"Requirement already satisfied: setuptools>=0.7.0 in /usr/local/lib/python3.7/dist-packages (from fasttext) (54.2.0)\\n\",\n            \"Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from fasttext) (1.19.5)\\n\",\n            \"Building wheels for collected packages: fasttext\\n\",\n            \"  Building wheel for fasttext (setup.py) ... \\u001b[?25l\\u001b[?25hdone\\n\",\n            \"  Created wheel for fasttext: filename=fasttext-0.9.2-cp37-cp37m-linux_x86_64.whl size=3095208 sha256=0b34603ab1f6efb2cbf26315aec8f1e7058494bc91cb4ecac1a8337e19dc6506\\n\",\n            \"  Stored in directory: /root/.cache/pip/wheels/98/ba/7f/b154944a1cf5a8cee91c154b75231136cc3a3321ab0e30f592\\n\",\n            \"Successfully built fasttext\\n\",\n            \"Installing collected packages: fasttext\\n\",\n            \"Successfully installed fasttext-0.9.2\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"Ulrs6E1upH5t\"\n      },\n      \"source\": [\n        \"#Parameters min_n and max_n take control the lengths of character ngrams. \\n\",\n        \"#If max_n is set to 0, no character ngrams are used, and the model turns out to be Word2Vec.\\n\"\n      ],\n      \"execution_count\": 18,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"F1wr4O1VACGQ\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 18,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 575\n        },\n        \"id\": \"hcZLmhA9X27E\",\n        \"outputId\": \"b7e610ef-f0c0-497d-8c1b-f4ba71959dd9\"\n      },\n      \"source\": [\n        \"from gensim.models import FastText\\n\",\n        \"model = FastText(sentences=macbeth, size=100, window=5, min_count=5,  workers=4, iter=10,word_ngrams=3)\\n\",\n        \"#min_n: min length of char ngrams (Default 3)\\n\",\n        \"#max_n: max length of char ngrams (Default 6)\\n\",\n        \"\\n\",\n        \"np.random.seed(42)\\n\",\n        \"words=[w[0] for w in model.wv.similar_by_word(\\\"Macbeth\\\",50)]\\n\",\n        \"words3d = PCA(n_components=3, random_state=42).fit_transform(model.wv[words])\\n\",\n        \"plotWords3D(words3d, words, \\\"Visualizing FastText Word Embeddings reduced by PCA\\\")\"\n      ],\n      \"execution_count\": 20,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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Y+yUU05hN998M+vv74+6jzfeeIOVl5dHXRb5exPdfffd7LzzzpN+BsBsNhtjjLFLLrmE3XDDDVG3/+KLL1hxcTF788034/7Od7/7Xem6F154gS1fvpwxxtgjjzzCGhoapOsEQWALFy5k999/f8y27d69m2VkZLDc3FzpX1dX16TbrVmzhu3bt48xxtiOHTvYZZddxjo6OibdLrKdkSIfs3fffZdVVFREXX/77bezXbt2ST9fc8017LjjjmNlZWVsYGBAujzW4zXRJZdcwv793/+dhcNhVlxczDweD/vjH/8oXZaXl8cOHDjA/vGPf7CSkhIWDoel373ooovY7t27pfvZsWOHdN3f//53VlpaygRBkC5rbGyM256HHnqIGQyGqMe2urpaur6yspI9/vjj0s/f+ta32BVXXCH9/Nvf/pade+65jDHGWlpaGAD22WefSddfd9117NJLL2WMMVZbW8tee+016Tqn08mMRiMLBoPs1ltvZRdeeKF0ndvtZhkZGdLrdfHixezFF1+Urr/vvvuiXt+Rr+3du3ezM844Q7ru008/ZSaTSXp8ysrKoh6fk046SXp8brrpJrZ58+aYr4+JALDXX39d+vmKK65gN954Y9Rtli1bxg4cODDt8/LQQw+xk046adL922w2Fg6HmclkYh9//PGkNvzqV79iF198cdRlZ555Jnv44YdZW1sbMxgMzO12S9d9+9vfZtu3b495PG+88cak219wwQXsZz/7mfS3tm3bxhhjbHBwkJnNZuZ0OmPe1yWXXMKysrJYbm4uKykpYeeccw6z2+2MMcaMRmPUcxnLbbfdxtasWcMYY6yzs5Pp9Xr24YcfTvk7hJC0ipsnaGSDEBU4+eSTUVRUhH379sHhcOC9997Dtm3bYt72gQceQFNTE2pra1FXV4fnn38+ob/R1NSEb3zjG1iwYAHmzZuHn/70pwlNsQCA0dFRnHvuufj5z38+aepHpAULFkj/n52dLa2BcDqdqKiokK7T6XTT7oKzdetWjIyMSP/Kysrw6KOPSlNW8vLycOTIEekY7rjjDjDGsHHjRqxatQoPPvhgQscmamtrg9PplO47Ly8Pt99+O3p7e6XbXH755Thy5Ah27dqFwsLCpO5fXLfxySefoLq6GtnZ2Tj55JOly3w+H+rr66XHSq//18d3ZWUlurq6pJ8jH0un04ny8vKo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\\n\",\n            \"text/plain\": [\n              \"<Figure size 1008x720 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"IY3jIMXfEHoA\"\n      },\n      \"source\": [\n        \"## Glove\"\n      ],\n      \"execution_count\": 21,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"r_4IBcFRclR4\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"b967e317-c5d4-468c-f6f4-b20e8786f66c\"\n      },\n      \"source\": [\n        \"import gensim.downloader as api\\n\",\n        \"info = api.info()  # show info about available models/datasets\\n\",\n        \"model = api.load(\\\"glove-twitter-25\\\")  # download the model and return as object ready for use\"\n      ],\n      \"execution_count\": 22,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"[==================================================] 100.0% 104.8/104.8MB downloaded\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"TC1Fidlj252p\",\n        \"outputId\": \"a23e551f-e819-4857-c0f0-96fc5dcb8d24\"\n      },\n      \"source\": [\n        \"model.most_similar(\\\"java\\\")\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"[('drupal', 0.8857486248016357),\\n\",\n              \" ('linux', 0.8667981028556824),\\n\",\n              \" ('electronic', 0.8582332134246826),\\n\",\n              \" ('adobe', 0.8580152988433838),\\n\",\n              \" ('developer', 0.8561978936195374),\\n\",\n              \" ('server', 0.8490769863128662),\\n\",\n              \" ('javascript', 0.8466134667396545),\\n\",\n              \" ('osx', 0.839451014995575),\\n\",\n              \" ('enterprise', 0.8377522826194763),\\n\",\n              \" ('software', 0.8366125226020813)]\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 42\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"LpI5zJ9YATZO\"\n      },\n      \"source\": [\n        \"# LSTM Training\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"5IoTKPtG_tps\"\n      },\n      \"source\": [\n        \"import numpy as np\\n\",\n        \"import tensorflow as tf\"\n      ],\n      \"execution_count\": 3,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"mDsco68MPkJA\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"501b0cd1-fe1d-407b-f475-ee6f65daad13\"\n      },\n      \"source\": [\n        \"!wget https://dl.fbaipublicfiles.com/glue/data/SST-2.zip \\n\",\n        \"!unzip SST-2.zip\"\n      ],\n      \"execution_count\": 4,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"--2021-04-20 17:26:28--  https://dl.fbaipublicfiles.com/glue/data/SST-2.zip\\n\",\n            \"Resolving dl.fbaipublicfiles.com (dl.fbaipublicfiles.com)... 104.22.75.142, 172.67.9.4, 104.22.74.142, ...\\n\",\n            \"Connecting to dl.fbaipublicfiles.com (dl.fbaipublicfiles.com)|104.22.75.142|:443... connected.\\n\",\n            \"HTTP request sent, awaiting response... 200 OK\\n\",\n            \"Length: 7439277 (7.1M) [application/zip]\\n\",\n            \"Saving to: ‘SST-2.zip’\\n\",\n            \"\\n\",\n            \"SST-2.zip           100%[===================>]   7.09M  4.07MB/s    in 1.7s    \\n\",\n            \"\\n\",\n            \"2021-04-20 17:26:31 (4.07 MB/s) - ‘SST-2.zip’ saved [7439277/7439277]\\n\",\n            \"\\n\",\n            \"Archive:  SST-2.zip\\n\",\n            \"   creating: SST-2/\\n\",\n            \"  inflating: SST-2/dev.tsv           \\n\",\n            \"   creating: SST-2/original/\\n\",\n            \"  inflating: SST-2/original/README.txt  \\n\",\n            \"  inflating: SST-2/original/SOStr.txt  \\n\",\n            \"  inflating: SST-2/original/STree.txt  \\n\",\n            \"  inflating: SST-2/original/datasetSentences.txt  \\n\",\n            \"  inflating: SST-2/original/datasetSplit.txt  \\n\",\n            \"  inflating: SST-2/original/dictionary.txt  \\n\",\n            \"  inflating: SST-2/original/original_rt_snippets.txt  \\n\",\n            \"  inflating: SST-2/original/sentiment_labels.txt  \\n\",\n            \"  inflating: SST-2/test.tsv          \\n\",\n            \"  inflating: SST-2/train.tsv         \\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"5Yllu1PjSyC0\"\n      },\n      \"source\": [\n        \"import pandas as pd \\n\",\n        \"df=pd.read_csv('SST-2/train.tsv',sep=\\\"\\\\t\\\")\\n\",\n        \"sentences=df.sentence\\n\",\n        \"labels=df.label\"\n      ],\n      \"execution_count\": 5,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"jus1GqxwEMhB\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 138\n        },\n        \"outputId\": \"23ece364-5b0f-43bc-de8c-7c65e314840b\"\n      },\n      \"source\": [\n        \"df.head(3)\"\n      ],\n      \"execution_count\": 6,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/html\": [\n              \"<div>\\n\",\n              \"<style scoped>\\n\",\n              \"    .dataframe tbody tr th:only-of-type {\\n\",\n              \"        vertical-align: middle;\\n\",\n              \"    }\\n\",\n              \"\\n\",\n              \"    .dataframe tbody tr th {\\n\",\n              \"        vertical-align: top;\\n\",\n              \"    }\\n\",\n              \"\\n\",\n              \"    .dataframe thead th {\\n\",\n              \"        text-align: right;\\n\",\n              \"    }\\n\",\n              \"</style>\\n\",\n              \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n              \"  <thead>\\n\",\n              \"    <tr style=\\\"text-align: right;\\\">\\n\",\n              \"      <th></th>\\n\",\n              \"      <th>sentence</th>\\n\",\n              \"      <th>label</th>\\n\",\n              \"    </tr>\\n\",\n              \"  </thead>\\n\",\n              \"  <tbody>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>0</th>\\n\",\n              \"      <td>hide new secretions from the parental units</td>\\n\",\n              \"      <td>0</td>\\n\",\n              \"    </tr>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>1</th>\\n\",\n              \"      <td>contains no wit , only labored gags</td>\\n\",\n              \"      <td>0</td>\\n\",\n              \"    </tr>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>2</th>\\n\",\n              \"      <td>that loves its characters and communicates som...</td>\\n\",\n              \"      <td>1</td>\\n\",\n              \"    </tr>\\n\",\n              \"  </tbody>\\n\",\n              \"</table>\\n\",\n              \"</div>\"\n            ],\n            \"text/plain\": [\n              \"                                            sentence  label\\n\",\n              \"0       hide new secretions from the parental units       0\\n\",\n              \"1               contains no wit , only labored gags       0\\n\",\n              \"2  that loves its characters and communicates som...      1\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 6\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"6iPoTC4JVloe\"\n      },\n      \"source\": [\n        \"max_sen_len=max([len(s.split()) for s in sentences])\\n\",\n        \"words = [\\\"PAD\\\"]+list(set([w for s in sentences for w in s.split()]))\\n\",\n        \"word2idx= {w:i for i,w in enumerate(words)}\\n\",\n        \"max_words=max(word2idx.values())+1\\n\",\n        \"idx2word= {i:w for i,w in enumerate(words)}\\n\",\n        \"# preparing training set\\n\",\n        \"train=[list(map(lambda x:word2idx[x], s.split())) for s in sentences]\"\n      ],\n      \"execution_count\": 7,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"yBsK55mj19CG\",\n        \"outputId\": \"22a73be7-d0fd-4c2f-a224-ce57af9d6485\"\n      },\n      \"source\": [\n        \"len(train), len(labels)\"\n      ],\n      \"execution_count\": 8,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"(67349, 67349)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 8\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"pjCygCh13UzG\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 8,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"HM6zsPObxmX3\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"d8268f2c-5e0d-4ad4-d619-6fdaf6c4fac2\"\n      },\n      \"source\": [\n        \"sum(labels), len(labels), sum(labels)/ len(labels)\"\n      ],\n      \"execution_count\": 9,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"(37569, 67349, 0.5578256544269403)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 9\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"7lAL50bBS0va\",\n        \"outputId\": \"d2180d45-34b2-4c9e-b869-71d8be890dac\"\n      },\n      \"source\": [\n        \"from keras import preprocessing\\n\",\n        \"train_pad = preprocessing.sequence.pad_sequences(train, maxlen=max_sen_len)\\n\",\n        \"print('train shape:', train_pad.shape)\"\n      ],\n      \"execution_count\": 10,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"train shape: (67349, 52)\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"UnIv64YPvQcG\",\n        \"outputId\": \"954641f9-1b87-4687-922a-bb6fba1ad18e\"\n      },\n      \"source\": [\n        \"print(train_pad)\"\n      ],\n      \"execution_count\": 11,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"[[    0     0     0 ...  8813 11280  9657]\\n\",\n            \" [    0     0     0 ... 10692 13130  6086]\\n\",\n            \" [    0     0     0 ...  6422  1041   579]\\n\",\n            \" ...\\n\",\n            \" [    0     0     0 ...  9886  8818  5333]\\n\",\n            \" [    0     0     0 ...  9377 13947  6890]\\n\",\n            \" [    0     0     0 ...  8813  7437 13462]]\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"gKhKSe08Tcf2\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"787fed4f-b99c-43e3-b01d-653c9833595d\"\n      },\n      \"source\": [\n        \"from keras.layers import LSTM, Embedding, Dense\\n\",\n        \"from keras.models import Sequential\\n\",\n        \"\\n\",\n        \"model = Sequential()\\n\",\n        \"model.add(Embedding(max_words, 32))\\n\",\n        \"model.add(LSTM(32))\\n\",\n        \"model.add(Dense(1, activation='sigmoid'))\\n\",\n        \"\\n\",\n        \"model.compile(optimizer='rmsprop',\\n\",\n        \"              loss='binary_crossentropy',\\n\",\n        \"              metrics=['acc'])\\n\",\n        \"history = model.fit(train_pad,labels, epochs=15, batch_size=16, validation_split=0.2)\"\n      ],\n      \"execution_count\": 12,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Epoch 1/15\\n\",\n            \"3368/3368 [==============================] - 38s 6ms/step - loss: 0.5326 - acc: 0.7152 - val_loss: 0.3408 - val_acc: 0.8506\\n\",\n            \"Epoch 2/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.3018 - acc: 0.8735 - val_loss: 0.3198 - val_acc: 0.8684\\n\",\n            \"Epoch 3/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.2645 - acc: 0.8919 - val_loss: 0.2772 - val_acc: 0.8853\\n\",\n            \"Epoch 4/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.2324 - acc: 0.9086 - val_loss: 0.2736 - val_acc: 0.8907\\n\",\n            \"Epoch 5/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.2117 - acc: 0.9174 - val_loss: 0.2528 - val_acc: 0.9014\\n\",\n            \"Epoch 6/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.1920 - acc: 0.9245 - val_loss: 0.2445 - val_acc: 0.9071\\n\",\n            \"Epoch 7/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.1756 - acc: 0.9331 - val_loss: 0.2335 - val_acc: 0.9117\\n\",\n            \"Epoch 8/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.1648 - acc: 0.9379 - val_loss: 0.2347 - val_acc: 0.9114\\n\",\n            \"Epoch 9/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.1528 - acc: 0.9443 - val_loss: 0.2314 - val_acc: 0.9125\\n\",\n            \"Epoch 10/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.1431 - acc: 0.9485 - val_loss: 0.2258 - val_acc: 0.9146\\n\",\n            \"Epoch 11/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.1374 - acc: 0.9504 - val_loss: 0.2235 - val_acc: 0.9157\\n\",\n            \"Epoch 12/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.1305 - acc: 0.9539 - val_loss: 0.2282 - val_acc: 0.9139\\n\",\n            \"Epoch 13/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.1231 - acc: 0.9576 - val_loss: 0.2285 - val_acc: 0.9157\\n\",\n            \"Epoch 14/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.1165 - acc: 0.9592 - val_loss: 0.2283 - val_acc: 0.9151\\n\",\n            \"Epoch 15/15\\n\",\n            \"3368/3368 [==============================] - 21s 6ms/step - loss: 0.1174 - acc: 0.9603 - val_loss: 0.2277 - val_acc: 0.9158\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"Vszr-ZGQyHb2\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 12,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 544\n        },\n        \"id\": \"-kweoS1TQxlz\",\n        \"outputId\": \"e886dd67-48b7-43bb-a2e2-d78149e86969\"\n      },\n      \"source\": [\n        \"import matplotlib.pyplot as plt\\n\",\n        \"\\n\",\n        \"def plot_graphs(history, string):\\n\",\n        \"  plt.plot(history.history[string])\\n\",\n        \"  plt.plot(history.history['val_'+string])\\n\",\n        \"  plt.xlabel(\\\"epochs\\\")\\n\",\n        \"  plt.ylabel(string)\\n\",\n        \"  plt.legend([string, 'val_'+string])\\n\",\n        \"  plt.show()\\n\",\n        \"\\n\",\n        \"plot_graphs(history, 'acc')\\n\",\n        \"plot_graphs(history, 'loss')\"\n      ],\n      \"execution_count\": 13,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        },\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"EdrPQ2_YNrDP\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 13,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"7mTzm29TPHxp\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 13,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"H62wP0TBPkYq\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"3a435cfe-e2eb-4df4-df31-4e2618a32c1a\"\n      },\n      \"source\": [\n        \"from keras import layers\\n\",\n        \"model = Sequential()\\n\",\n        \"model.add(layers.Embedding(max_words, 32, input_length=max_sen_len))\\n\",\n        \"model.add(layers.Conv1D(32, 8, activation='relu'))\\n\",\n        \"model.add(layers.MaxPooling1D(4))\\n\",\n        \"model.add(layers.Conv1D(32, 3, activation='relu'))\\n\",\n        \"model.add(layers.GlobalMaxPooling1D())\\n\",\n        \"model.add(layers.Dense(1, activation='sigmoid'))\\n\",\n        \"model.summary()\\n\",\n        \"model.compile(loss='binary_crossentropy', metrics=['acc'])\\n\",\n        \"history = model.fit(train_pad,labels, epochs=15, batch_size=32, validation_split=0.2)\"\n      ],\n      \"execution_count\": 14,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Model: \\\"sequential_1\\\"\\n\",\n            \"_________________________________________________________________\\n\",\n            \"Layer (type)                 Output Shape              Param #   \\n\",\n            \"=================================================================\\n\",\n            \"embedding_1 (Embedding)      (None, 52, 32)            474144    \\n\",\n            \"_________________________________________________________________\\n\",\n            \"conv1d (Conv1D)              (None, 45, 32)            8224      \\n\",\n            \"_________________________________________________________________\\n\",\n            \"max_pooling1d (MaxPooling1D) (None, 11, 32)            0         \\n\",\n            \"_________________________________________________________________\\n\",\n            \"conv1d_1 (Conv1D)            (None, 9, 32)             3104      \\n\",\n            \"_________________________________________________________________\\n\",\n            \"global_max_pooling1d (Global (None, 32)                0         \\n\",\n            \"_________________________________________________________________\\n\",\n            \"dense_1 (Dense)              (None, 1)                 33        \\n\",\n            \"=================================================================\\n\",\n            \"Total params: 485,505\\n\",\n            \"Trainable params: 485,505\\n\",\n            \"Non-trainable params: 0\\n\",\n            \"_________________________________________________________________\\n\",\n            \"Epoch 1/15\\n\",\n            \"1684/1684 [==============================] - 10s 5ms/step - loss: 0.5767 - acc: 0.6703 - val_loss: 0.3740 - val_acc: 0.8283\\n\",\n            \"Epoch 2/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.3329 - acc: 0.8495 - val_loss: 0.3351 - val_acc: 0.8491\\n\",\n            \"Epoch 3/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.2835 - acc: 0.8732 - val_loss: 0.3159 - val_acc: 0.8523\\n\",\n            \"Epoch 4/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.2538 - acc: 0.8833 - val_loss: 0.3081 - val_acc: 0.8631\\n\",\n            \"Epoch 5/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.2297 - acc: 0.8957 - val_loss: 0.3066 - val_acc: 0.8642\\n\",\n            \"Epoch 6/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.2131 - acc: 0.9014 - val_loss: 0.3035 - val_acc: 0.8690\\n\",\n            \"Epoch 7/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.1977 - acc: 0.9105 - val_loss: 0.3122 - val_acc: 0.8659\\n\",\n            \"Epoch 8/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.1900 - acc: 0.9112 - val_loss: 0.3047 - val_acc: 0.8671\\n\",\n            \"Epoch 9/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.1799 - acc: 0.9164 - val_loss: 0.3149 - val_acc: 0.8673\\n\",\n            \"Epoch 10/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.1695 - acc: 0.9203 - val_loss: 0.3105 - val_acc: 0.8693\\n\",\n            \"Epoch 11/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.1634 - acc: 0.9211 - val_loss: 0.3276 - val_acc: 0.8719\\n\",\n            \"Epoch 12/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.1554 - acc: 0.9241 - val_loss: 0.3329 - val_acc: 0.8670\\n\",\n            \"Epoch 13/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.1465 - acc: 0.9286 - val_loss: 0.3336 - val_acc: 0.8679\\n\",\n            \"Epoch 14/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.1492 - acc: 0.9277 - val_loss: 0.3687 - val_acc: 0.8657\\n\",\n            \"Epoch 15/15\\n\",\n            \"1684/1684 [==============================] - 9s 5ms/step - loss: 0.1400 - acc: 0.9318 - val_loss: 0.3592 - val_acc: 0.8646\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 541\n        },\n        \"id\": \"4efxKSyAgeqr\",\n        \"outputId\": \"d2c5ee1c-ec5b-4ea1-fb70-a3cb4d5d999a\"\n      },\n      \"source\": [\n        \"plot_graphs(history, 'acc')\\n\",\n        \"plot_graphs(history, 'loss')\"\n      ],\n      \"execution_count\": 15,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAY4AAAEGCAYAAABy53LJAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nO3deXhV5bn38e9NEjKQeYKQMARBZhSNONVZLForDrXiWFsrx/dQpw6nTkc91p563tee1p5aPNQqYlVqbVFqtYCKYisqoQKBMKvATiAJhExkTu73j7USNiGBJGSxh9yf69rXXntNuRck+WWtZ63nEVXFGGOM6a4BgS7AGGNMaLHgMMYY0yMWHMYYY3rEgsMYY0yPWHAYY4zpkchAF3A8pKen68iRIwNdhjHGhJTVq1fvVdWMjvP7RXCMHDmS/Pz8QJdhjDEhRUR2dDbfLlUZY4zpEQsOY4wxPWLBYYwxpkf6RRtHZ5qamvD5fNTX1we6lKAUExNDTk4OUVFRgS7FGBNk+m1w+Hw+EhISGDlyJCIS6HKCiqqyb98+fD4fubm5gS7HGBNk+u2lqvr6etLS0iw0OiEipKWl2dmYMaZT/TY4AAuNI7B/G2NMV/rtpSpjjAk3La3K7so6du6rZUd5LTv21TLnghNIiOnbtkoLDmOMCSF1jS3sLK9lx74D7Cyvdaedd9/+WppaDo6xFBUhXDl1KOOGWHAYY0zYUlXKDzSyo7zWOXPYV8uO8gPscgOitLrhkPUTYiIZkRbH+KwEvjpxCCPS4hiRGsew1DiGJscSMaDvLzt7GhwiMgN4CogAnlXVJzosHwE8B2QA5cBNquoTkZOBuUAi0AL8VFX/4G4zHzgPqHR3c6uqrvHyOLxy5ZVXsmvXLurr67n77ruZPXs2f/vb33jggQdoaWkhPT2dd999l5qaGu68807y8/MRER555BGuueaaQJdvjOmhllZl34EG9lY3sremof1VVt3ArvI6dpTXsqu8lpqG5kO2y0qKYVhqHOedmMGItDiGpw1ieKoTEMlxUce9TdKz4BCRCOBpYDrgA1aJyGJVLfRb7Ulggaq+ICIXAj8DbgZqgVtUdauIDAVWi8gSVa1wt/uRqr7WV7X+x182UFhc1Ve7A2DC0EQe+frEI67z3HPPkZqaSl1dHaeddhozZ87k9ttvZ8WKFeTm5lJeXg7AT37yE5KSkigoKABg//79fVqrMab3mlta2XegkbLqtiBwQ6Hj55oG9h1opLPRuqMjB5CTEsuItEGcnpvqhEKa88pJiSMmKuL4H9gReHnGMQ3YpqqfA4jIQmAm4B8cE4Dvu9PLgdcBVHVL2wqqWiwipThnJRWEkV/96lcsWrQIgF27djFv3jzOPffc9mcnUlNTAXjnnXdYuHBh+3YpKSnHv1hj+qGahmaK9tfh21+Lz30vqWrwO1toZH9t52EQGxVBesJA0uOjGZYax9ThKWTEDyQjIZr0+GjS297jBxIfHRlSdzJ6GRzZwC6/zz7g9A7rrAWuxrmcdRWQICJpqrqvbQURmQYMBLb7bfdTEXkYeBe4T1UPvejnbDcbmA0wfPjwIxZ6tDMDL7z//vu88847rFy5kri4OM4//3xOPvlkNm3adNxrMaa/qq5voqiiDl+5fzjUOfP217K/tumQ9QdGDmBIYgwZCdHkpg/itJGp7SGQEe+ERFswDIoO3ybkQB/ZD4Ffi8itwAqgCKdNAwARyQJeBL6lqq3u7PuBPThhMg/4MfBYxx2r6jx3OXl5eZ38PRBYlZWVpKSkEBcXx6ZNm/j444+pr69nxYoVfPHFF+2XqlJTU5k+fTpPP/00v/zlLwHnUpWddRhzdNX1Te1h4H/W0BYOFR2CISZqANnJseSkxDElJ4mclDhyUmLJSYklOyWW9EHRDPCgsTnUeBkcRcAwv8857rx2qlqMc8aBiMQD17S1Y4hIIvBX4EFV/dhvm93uZIOIPI8TPiFnxowZPPPMM4wfP56xY8dyxhlnkJGRwbx587j66qtpbW0lMzOTZcuW8dBDDzFnzhwmTZpEREQEjzzyCFdffXWgD8GYgGpuaaWkuoHiijr3VU9xRR27K+socqcr6w4NhtioiPYQmDo82S8YnPe0QQND6pJRoHgZHKuAMSKSixMYs4Ab/FcQkXSg3D2buB/nDitEZCCwCKfh/LUO22Sp6m5x/nevBNZ7eAyeiY6O5u233+502aWXXnrI5/j4eF544YXjUZYxQUFV2V/b1B4KuyudICjymy6pqqe1w7WEpNgohibHMjQphrwRKYeEQk5KLKkWDH3Cs+BQ1WYR+R6wBOd23OdUdYOIPAbkq+pi4HzgZyKiOJeq5ribfxM4F0hzL2PBwdtuXxKRDECANcAdXh2DMabvqSqVdU3sqaqnpKqBksp6iiv9zhrc6fqm1kO2Gxg5gKFJMWQlxXLWCelkJ8eQlRzL0ORYZzopNqzbFYKJp//KqvoW8FaHeQ/7Tb8GHHZbrar+Hvh9F/u8sI/LNMb0kQMNzZS4gVBaXc+eSjccquspqax33qsaaGxuPWzbzIRohibHMm5IAheOzXTOHJJj3He7jBRMLJ6NMUelqpRUNVDkXiJqD4eqevfMoZ7SqgaqOzy4BhA3MIIhiTFkJkZzyvAUdzqGwYnRDE6MYUhiDIMTYxgY2a/7XA0pFhzGmEM0NreytbSawuIqNu6uZuPuKgp3Vx3W0BwVIWQmxDAkKYaxQxI4Z0yGEwRJ0QxOOBgOfd3Bngk8Cw5j+rHyA41OMBRXtQfEttIamt1W55ioAYwbkshlk7OYkJVATmpc+xlCSgC6ujDBwYLDmH6gpVX5ct8BNu6u8guKavZUHRysa3BiNOOzErlwXCbjsxKZMDSRkWmDPOkkz4Q2Cw5jwkxNQzOb91RT6BcSm/dUU9fkPFsbOUAYnRnPmSekMSErkfFZiYzPSiAtPjrAlZtQYcERIuLj46mpqQl0GSaIVNY2sa2smq0lNWwtdV7bSqoprjx4FpEYE8mEoYnMmjasPSTGDI4nOjK4Os0zocWCw5ggt6+m4ZBgaJsu8xuXISZqAKMz4zl9VBqjM+M5cXACE4YmMjQpxtohTJ+z4AB4+z7YU9C3+xwyGS59osvF9913H8OGDWPOHOeZx0cffZTIyEiWL1/O/v37aWpq4vHHH2fmzJlH/VI1NTXMnDmz0+0WLFjAk08+iYgwZcoUXnzxRUpKSrjjjjv4/PPPAZg7dy5nnXVWHxy06a222123ldawtbTaDQln2r+jvfjoSEZnxnP+iRmMGRzPmMwERmfGk50ca30omePGgiNArrvuOu6555724Hj11VdZsmQJd911F4mJiezdu5czzjiDK6644qh/McbExLBo0aLDtissLOTxxx/no48+Ij09vX18j7vuuovzzjuPRYsW0dLSYpfAjrP6phY27q5ina+SDcWV7SHh/wxEUmwUJw6OZ8akLMZkxjM6M54xg+MZkmhnECbwLDjgiGcGXpk6dSqlpaUUFxdTVlZGSkoKQ4YM4d5772XFihUMGDCAoqIiSkpKGDJkyBH3pao88MADh2333nvvce2115Keng4cHN/jvffeY8GCBQBERESQlJTk7cH2Y62tyvayGtbsqmCdr5K1vgo27q5qHxc6PX4gYzITuOqUbDcgnDOI9Hh7StoELwuOALr22mt57bXX2LNnD9dddx0vvfQSZWVlrF69mqioKEaOHEl9ff1R99Pb7UzfUlV2V9azdlcFa3wVrNtVSUFRZfswoPHRkUzJSeK754zipJwkThqWbGcQJiRZcATQddddx+23387evXv54IMPePXVV8nMzCQqKorly5ezY8eObu2nsrKy0+0uvPBCrrrqKr7//e+TlpbWPr7HRRddxNy5c7nnnnvaL1XZWUfPVdQ2OmcRuypY66tgra+yvcE6KkKYkJXI1adkc1JOMicNS2JUery1Q5iwYMERQBMnTqS6uprs7GyysrK48cYb+frXv87kyZPJy8tj3Lhx3dpPV9tNnDiRBx98kPPOO4+IiAimTp3K/Pnzeeqpp5g9eza/+93viIiIYO7cuZx55pleHmrIq29qYUNxJWt3OZeb1u6q4Mt9te3LT8gYxDlj0jl5WDIn5SQzLivBbnk1YUu0s8Fyw0xeXp7m5+cfMm/jxo2MHz8+QBWFhv7+b+TbX8u7G0tZVljCJ1/sa2+XyEqKYYp7qenknGQm5SSRaP0xmTAkIqtVNa/jfDvjMMalqqwvqmJZ4R6WbSxl4+4qwDmb+PbZueSNSOGkYckMTowJcKXGBJYFRwgpKCjg5ptvPmRedHQ0n3zySYAqCn0NzS2s3L6PZYUlvLuxlD1V9QwQyBuRygOXjePi8YMZlREf6DKNCSr9OjhUNaTuaJk8eTJr1qw5Ll8rnC9h7j/QyPLNziWoFVvKONDYQtzACM4dk8H0CYO5YFwmqYMGBrpMY4JWvw2OmJgY9u3bR1paWkiFx/Ggquzbt4+YmPC5JPPl3gO8s7GEpYUl5H9ZTqs6I87NnJrN9AmDOXNUGjFR1phtTHf02+DIycnB5/NRVlYW6FKCUkxMDDk5OYEuo9daW5XPdlXwzsYSlhWWsK3UeTp+3JAE5lwwmukTBjNpaJLdHmtML3gaHCIyA3gKiACeVdUnOiwfATwHZADlwE2q6nOXfQt4yF31cVV9wZ1/KjAfiMUZz/xu7cV1laioKHJzc3tzWCZI1Te18OHWvbxTWMK7m0rYW9NI5ADhjFFp3HT6cC4aP5hhqXGBLtOYkOdZcIhIBPA0MB3wAatEZLGqFvqt9iSwQFVfEJELgZ8BN4tIKvAIkAcosNrddj8wF7gd+AQnOGYAb3t1HCa4VdQ28t6mUpZs2MOKLXupa2ohISaSC8ZmcvGEwZx3YgZJsXarrDF9ycszjmnANlX9HEBEFgIzAf/gmAB8351eDrzuTn8VWKaq5e62y4AZIvI+kKiqH7vzFwBXYsHRrxRX1LF0wx6WFpbwyRfltLQqQxJjuDYvh+kTBnN6bhoDIwcEukxjwpaXwZEN7PL77ANO77DOWuBqnMtZVwEJIpLWxbbZ7svXyfzDiMhsYDbA8OHDe30QJvBUlS0lNe1hUVBUCcCYzHjuOG8Ul0wYwpScJLvJwZjjJNCN4z8Efi0itwIrgCKgpS92rKrzgHngPDneF/s0x09Lq/LZzv0sLSxhyYY97HC79zhleDL3XTqOSybY8xXGBIqXwVEEDPP7nOPOa6eqxThnHIhIPHCNqlaISBFwfodt33e3z+kw/5B9mtBV39TCR9v3snRDCe9sdBq3oyKEs05IZ/a5o5g+fjCZ9tS2MQHnZXCsAsaISC7OL/dZwA3+K4hIOlCuqq3A/Th3WAEsAf5TRFLcz5cA96tquYhUicgZOI3jtwD/4+ExGI9V1jXx/uZSlm4o4f3NpRxobCE+OpLzx2bw1YlDOH9sBgnWD5QxQcWz4FDVZhH5Hk4IRADPqeoGEXkMyFfVxThnFT8TEcW5VDXH3bZcRH6CEz4Aj7U1lAP/ysHbcd/GGsZDjqryl3W7+WP+LlZu30dzq5LhPox3yYTBnHlCmvUsa0wQ67e945rA2FBcySNvbCB/x35GpMUxY9IQLpkwhKnDku1hPGOCjPWOawKqoraRJ5du5uVPdpIcN5Anrp7MN/OGWVgYE4IsOIynWlqVVz7dyZNLN1NV18QtZ47k3otPJCnO2i2MCVUWHMYzq3eU8/AbG9hQXMW03FT+44qJjM9KDHRZxphjZMFh+lxpVT1PvL2JP39WxJDEGH51/VS+PiXLHtAzJkxYcJg+09TSyvx/fMlT726lsbmVfz3/BOZcMJpB0fZtZkw4sZ9o0yc+3FrGo4s3sL3sABeMzeDhr08kN31QoMsyxnjAgsMck13ltfz0rxv524Y9jEiL43ffyuOi8YMDXZYxxkMWHKZX6ptaeOaD7cx9fzsi8MNLTuS754yyUfSM6QcsOEyPqCpLNpTw+F8L8e2v42uTs3jga+PJTo4NdGnGmOPEgsN027bSGv7jLxv4cOteThwcz8vfPZ2zRqcHuixjzHFmwWGOqqahmV+9u5Xn/v4FsVERPHz5BG4+cwRRETZYkjH9kQWH6ZKq8ua63fzkzUJKqxu49tQc/m3GODISogNdmjEmgCw4TKd8+2v599fXs3xzGZOzk/jfm09l6vCUo29ojAl7FhzmEC2tyvP/+IKfL92CCPz75RO49ayRRFhnhMYYlwWHabehuJL7/1zAOl8l54/N4PErJ5GTEhfosowxQcaCw1DX2MIv393Csx9+QUpcFP9z/VQut76ljDFdsODo5z7cWsaDi9azs7yW6/KGcf9l40iOGxjosowxQcyCo58qP9DI428W8ufPishNH8Qrt5/BmSekBbosY0wI8DQ4RGQG8BTOmOPPquoTHZYPB14Akt117lPVt0TkRuBHfqtOAU5R1TUi8j6QBdS5yy5R1VIvjyOcqCqLPiviJ28WUl3fzJ0XjmbOBaOtqxBjTLd5FhwiEgE8DUwHfMAqEVmsqoV+qz0EvKqqc0VkAvAWMFJVXwJecvczGXhdVdf4bXejqtog4j20c18tD75ewIdb9zJ1eDJPXD2FsUMSAl2WMSbEeHnGMQ3YpqqfA4jIQmAm4B8cCrQNCZcEFHeyn+uBhR7WGfaaW1p59u9f8Mt3thA5YACPzZzIjaePsFtsjTG94mVwZAO7/D77gNM7rPMosFRE7gQGARd3sp/rcALH3/Mi0gL8CXhcVbVPKg5D63wV3PenAgp3VzF9wmAemzmRrCTrkNAY03uBbhy/Hpivqj8XkTOBF0Vkkqq2AojI6UCtqq732+ZGVS0SkQSc4LgZWNBxxyIyG5gNMHz4cK+PI+gcaGjmv5dt4fl/fEF6fDTP3HQKX504xG6xNcYcMy+DowgY5vc5x53n7zZgBoCqrhSRGCAdaGvsngW84r+Bqha579Ui8jLOJbHDgkNV5wHzAPLy8vrVGcnyTaU89Pp6iirquPH04fz40nEkxkQFuixjTJjwMjhWAWNEJBcnMGYBN3RYZydwETBfRMYDMUAZgIgMAL4JnNO2sohEAsmquldEooDLgXc8PIaQUlbdwGNvFvKXtcWMzoznj3ecyWkjUwNdljEOVThQBvu/PPRVuw+yTobccyA7D6JiAlunOSrPgkNVm0Xke8ASnFttn1PVDSLyGJCvqouBHwC/FZF7cRrKb/VrrzgX2NXWuO6KBpa4oRGBExq/9eoYQsnaXRXc8tyn1DW2cO/FJ3LH+aOIjrRbbM1x1lQHFTsPD4e2V1PtoesnDIWYJNi6FD54AiKiYdg0GPkV55VzGkRab8zBRvpDu3JeXp7m54fv3bs79h3g6t98ROzACOZ/+zRGZ9ottsYjqlBT0nUwVO8+dP2oOEgZ6b5y/aZHQvIwiHJv1KirgJ0fw5cfOq/d6wCFyBgnPEae4wZJngXJcSQiq1U1r+P8QDeOm2O0r6aBW59fRYsqL3xnGidkxAe6pMBQhb1bwfcpDIyHjLGQegJEWvcp3dbaCrV7oarYCYCqIqja7U4XO6+KndBc57eRQOJQJwhOuPDQYEgZCYMyoDs3ZMQmw9gZzgvcIFkJX7hB8v7PaA+SYdMOBkn2qRYkAWDBEcLqGlv47oJ8iivqePn20/tXaLS2QukG2PERfPl3571276HrSASk5kL6WMg4EdJPdKbTx0BMYuf7DVdN9U4A+IdA23T7+x5obTp0OxkA8UMgMcv5dxsz/dBgSBrmTZtEbDKMvdR5AdTthx0rnf/rLz+E5f+JEySxnQRJH/6x0NLsXF5rqoXGA86luKhYSMzu120xFhwhqqVVuWvhZ6zZVcHcG0/h1BFh3gje0uRcvtjxD+e1cyXUVzrLkobD6IthxFkw/Aznh3zvVijbDHs3Q9kW2LoEWpsP7i9hqBsmHUIlPrN7fyH3VGsLNFQ5f0nXV0K9+954ALS1k5d2Mb+b69RVuIGwG6qLnQbojqLinLOFhCzn3y4hy/mFmJjl/PskZsGgTIgIgl8TsSkw7jLnBVBb7nwPtAfJTzkkSHLPgYzx0Fzv/tKv9QuA2g5hUOsEQtu0//KWxq5riktz/v0Ss/3esw+dNzA8hyWwNo4QpKo8/MYGXvx4B49+fQK3np0b6JL6XnMDFK12g+Ij2PkJNB1wlqWNdn7RjTjbeU/uxnM6LU1Q/oUTJHu3OGGyd7MTMI01B9eLSfILk7HOJa/0E52v0dLo/LL3/+XfMQjqKg5O11dAXaUz3VCFc/+HR2TAwRcC0QnuLzA3GDpOJ2Q5xxouz/XUlh88+/zy71BS0MWKAgMHOaE5MM55b58e5JxNHDLtrts+HesETFXRwTO3yiLnc1354V8uNsUvTIZCYo7ftDs/OnivFHTVxmHBEYKe+WA7T7y9idnnjuKBy8YHupy+0XgAdn3q/PDv+Ah8q6ClwVmWOdENCjcsEgb33ddVdX7oy9xA8Q+VA2V+KwpH/cUfNcj5ZRybDDHJftNJHT77TQ8c5FxS8//F3/4S99XZsg7rmUPVljvtMR0DIjLau3+vpjo3TIoOfW8Llqriwy+ngvO9kDDUCZmYRIhOdII/xn2PTnTWaZtuX+a+PDwjtOAIk+B4Y00Rdy9cw+VTsvjVrKkMCLX+plpboKHa+Qu8dBPscNsnij9zLiXJAMg66eDZxPAzIS5Al+Fqy90g2ez8EhoY1yEAUg5ORydaQ7w5ura2po7hUlXsnK02VDmvevfd//JqV6Li/ALGL2zaPp99NyQM6VW5dldVGPho+15++Me1nJ6bys+/edLxDQ1V5y+qhirnF3/bN3b7N3m137LKg587LvO/LAQwIMpp0DzrLicshk0LnobruFSnzWT4GYGuxISLqBjnho3UblxeVnXaaHrz81a95+B2p323zw/DgiNEbNpTxb8sWM3ItEHMuznv+DzcV10C7/8nbPyL883Zrb9+BnU4xU6EpOxD/wJqO91OGeHcox9lnS4acxgR52cjKta5aSOIWHCEgN2VdXz7+VXOA37fmUZSnMf9TjXUwEf/47xaGmDSNU5DXnsgJHU4JXavuQ5MCI47cIwxnrKf8iBXVd/Et59fRXV9M3/4lzPITvbwr/OWZljze+ce+ZoSmDATLnoE0k7w7msaY0KOBUcQa2xu5Y4XV7OttIbnv30aE4cmefOFVJ2+gpY9DGWbIGcafPNFGN5x+BRjjLHgCFqqyr+9tpaPtu/j59eexDljMrz5QsWfwdJ/dx6iSh0F31wA46+wWzyNMV2y4AhS/2/JZl5fU8wPLzmRa07N6fsvsH8HvPc4FLwKsalw6f+FU79tt5QaY47KgiMIvfjxDn7z/nZuOH04cy4Y3bc7r6uAD38On/yvc1bxlXudV4xHl8GMMWHHgiPILCss4ZE31nPRuEweu2Ji3w312twIq56FFf/XCY+TZsGFD0GSB2czxpiwZsERRD7buZ87X/knk7OT+J8bphIZMeDYd6oKGxbBu//hjJcw6nyY/hPImnLs+zbG9EsWHEHii70HuO2FfDITYvjdracRN7AP/mt2rISlD0FRPmROgBv/BKMvsoZvY8wxseAIAntrGrj1+U9RdzCm9PhjHJhm71Z451HY9KbTC+oVv4aTb4ABNpSsMebYWXAEWG1jM7fNX8WeynpemX0GuemDer+zmjJn3Ob8551uCi54CM78V6cHVmOM6SOeBoeIzACeAiKAZ1X1iQ7LhwMvAMnuOvep6lsiMhLYCGx2V/1YVe9wtzkVmA/EAm8Bd2uIdvHb3NLKnS9/RkFRJc/cdCqnDE/p3oatrVC5y+m1tWyTO1jRZtiz3hkz4tRb4fz7gq5/G2NMePAsOEQkAngamA74gFUislhVC/1Wewh4VVXnisgEnCAY6S7brqond7LrucDtwCfu+jOAt705Cu+oKg8v3sC7m0p5bOZELpnYSbfHrS1Og3bZJve1xQ2KLc7oZG0GZToDDp1yi9MTZsaJx+04jDH9j5dnHNOAbar6OYCILARmAv7BoUBbH9pJQPGRdigiWUCiqn7sfl4AXEkIBsdv3t/Oy5/s5I7zTuCW04Y6Y1OUbfIb7tQdna5tMCNwOhrMGAunfMt5zxjnvAdqvApjTL/kZXBkA7v8PvuAjp0fPQosFZE7gUHAxX7LckXkM6AKeEhVP3T36euwz+zOvriIzAZmAwwf3o2hRY+jFUv/RMuKxbyeUc5J20tg1fZDuyxPHuGEwgkXuOEwDtLH2EN6xpigEOjG8euB+ar6cxE5E3hRRCYBu4HhqrrPbdN4XUQm9mTHqjoPmAfOCIB9XXhvNa/+Ped+NIevRA6AqFFI+jgY97WDZw/pY6wx2xgT1LwMjiJgmN/nHHeev9tw2ihQ1ZUiEgOkq2op0ODOXy0i24ET3e39H3XubJ/Bq3AxEW/eyYqWyVRf+QJfO9W6KzfGhJ4+eDS5S6uAMSKSKyIDgVnA4g7r7AQuAhCR8UAMUCYiGW7jOiIyChgDfK6qu4EqETlDnL44bgHe8PAY+s729+BPt7EvaTL/0nQvE0b0bgxgY4wJNM/OOFS1WUS+ByzBudX2OVXdICKPAfmquhj4AfBbEbkXp6H8VlVVETkXeExEmoBW4A5VLXd3/a8cvB33bUKhYXzXp7DwRkg/kd+k/4zI/TWMSI0LdFXGGNMr0p1HIETkKuA9Va10PycD56vq6x7X1yfy8vI0Pz8/MF98TwHM/xrEpcF3lnDF/C0MGhjJK7PPCEw9xhjTTSKyWlXzOs7v7qWqR9pCA0BVK4BH+qq4sLVvO7x4FQyMh1veoDEmnU27q5mcY3dHGWNCV3eDo7P1An1HVnCr9MGCmaCtcPPrkDycLSXVNLa0MinbgsMYE7q6Gxz5IvLfInKC+/pvYLWXhYW0A3thwZVQXwk3/bn9Se6CIuekbYoFhzEmhHU3OO4EGoE/AAuBemCOV0WFtPpK5/JUpQ9u+AMMPdhrSkFRJQkxkYxIs4ZxY0zo6tblJlU9ANzncS2hr7EWXr4OSjfC9QthxFmHLC7wVTJpaFLfjepnjDEB0K0zDhFZ5t5J1fY5RUSWeFdWCGpuhFdvhl2fwDW/hTEXH7K4seoM6zkAABLISURBVLmVzXuqmWIN48aYENfdS1Xp7p1UAKjqfsD67G7T2gKLZsO2d+DyX8LEqw5bxRrGjTHhorvB0eqOnQGAO15G0PT/FFCq8OY9zrjelzwOp36r09XW+ZyG8ckWHMaYENfdW2ofBP4uIh8AApyD2/Nsv6bqjOn9zwVw7o/grDu7XNUaxo0x4aK7jeN/E5E8nLD4DHgdqPOysJDw4ZOw8tcwbTZc8OARV11fVMnkbGsYN8aEvm4Fh4h8F7gbpzfaNcAZwErgQu9KC3KfzIP3Hocps2DGf8ERAqGhuYVNe6r4ztm5x7FAY4zxRnfbOO4GTgN2qOoFwFSg4sibhLG1f4C3fwRjvwYzn4YBR/5n3LKnhqYWta5GjDFhobvBUa+q9QAiEq2qm4Cx3pUVxDb9FV7/P5B7LnzjOYg4+klb2xPj1jBujAkH3W0c97nPcbwOLBOR/cAO78oKUp+/D3+8FYZOhVkvQ1RMtzYrKKokMSaS4daVujEmDHS3cbztwYRHRWQ5kAT8zbOqgpEvH165AdJGw41/hOiEbm9aUFTB5BxrGDfGhIcejwCoqh+o6mJVbfSioKBUUgi/vwbiM+HmRRCX2u1NG5pb2Lyn2h78M8aEDS+Hjg0P5Z/Di1dCVCzc8gYk9GzI1/aGcQsOY0yYsDE1jqSq2BlTo6UJvv02pIzo8S7WFTk3n03JTj7KmsYYExosOLqiCq99B2r3w7cWQ+a4Xu1mfVElSbFRDEuN7eMCjTEmMDy9VCUiM0Rks4hsE5HDumUXkeEislxEPhORdSJymTt/uoisFpEC9/1Cv23ed/e5xn1509miCHzt586YGtmn9Ho3BUWVTMpOtIZxY0zY8OyMQ0QigKeB6YAPWCUii1W10G+1h4BXVXWuiEwA3gJGAnuBr6tqsYhMApYA2X7b3aiq+V7V3m7wxGPavK1h/LavjOqjgowxJvC8POOYBmxT1c/dO7AWAjM7rKNAojudBBQDqOpnqlrszt8AxIpItIe1emLznmprGDfGhB0vgyMb2OX32cehZw0AjwI3iYgP52yjs+5lrwH+qaoNfvOedy9T/bt0cQ1IRGaLSL6I5JeVlfX6II6FPTFujAlHgb4d93pgvqrmAJcBL4pIe00iMhH4L+Bf/La5UVUn43Ttfg5wc2c7VtV5qpqnqnkZGRmeHcCRFPisYdwYE368DI4iYJjf5xx3nr/bgFcBVHUlEAOkA4hIDrAIuEVVt7dtoKpF7ns18DLOJbGgVGBdqRtjwpCXwbEKGCMiuSIyEJgFLO6wzk7gIgARGY8THGVuv1h/Be5T1X+0rSwikSLSFixRwOXAeg+Podfqm1rYUmJPjBtjwo9nwaGqzcD3cO6I2ohz99QGEXlMRK5wV/sBcLuIrAVeAW5VVXW3Gw083OG222hgiYiswxkXpAj4rVfHcCzaGsanWFfqxpgw4+kDgKr6Fk6jt/+8h/2mC4GzO9nuceDxLnZ7al/W6BVrGDfGhKtAN46HrbYnxnNSrGHcGBNeLDg8ss5XyRTrSt0YE4YsODxgDePGmHBmweGBzXuqaW61J8aNMeHJgsMD66xh3BgTxiw4PLDeV0lynDWMG2PCkwWHB+yJcWNMOLPg6GPWMG6MCXcWHH1sk9swPsWCwxgTpiw4+ljbE+N2xmGMCVcWHH3MGsaNMeHOgqOPrbOGcWNMmLPg6EP1TS1sLam25zeMMWHNgqMPbbInxo0x/YAFRx8q8FUAMNnG4DDGhDELjj5UUFRJSlwU2cnWMG6MCV8WHH2ooKiKSdYwbowJcxYcfaTtiXEbKtYYE+4sOPrIxt1VtFjDuDGmH/A0OERkhohsFpFtInJfJ8uHi8hyEflMRNaJyGV+y+53t9ssIl/t7j4DZb09MW6M6Sc8Cw4RiQCeBi4FJgDXi8iEDqs9BLyqqlOBWcBv3G0nuJ8nAjOA34hIRDf3GRDrfJWkDhpoDePGmLDn5RnHNGCbqn6uqo3AQmBmh3UUSHSnk4Bid3omsFBVG1T1C2Cbu7/u7DMgCooqrWHcGNMveBkc2cAuv88+d56/R4GbRMQHvAXceZRtu7NPAERktojki0h+WVlZb4+hW+qbWthaWsPk7MSjr2yMMSEu0I3j1wPzVTUHuAx4UUT6pCZVnaeqeaqal5GR0Re77FJhe8N4sqdfxxhjgkGkh/suAob5fc5x5/m7DacNA1VdKSIxQPpRtj3aPo+7toZxe2LcGNMfeHnGsQoYIyK5IjIQp7F7cYd1dgIXAYjIeCAGKHPXmyUi0SKSC4wBPu3mPo+7ArdhfGhSTKBLMcYYz3l2xqGqzSLyPWAJEAE8p6obROQxIF9VFwM/AH4rIvfiNJTfqqoKbBCRV4FCoBmYo6otAJ3t06tj6C4bY9wY0594eakKVX0Lp9Hbf97DftOFwNldbPtT4Kfd2WcgtTWMXzx+cKBLMcaY4yLQjeMhr61h3B78M8b0FxYcx6jA5zSMWx9Vxpj+woLjGBUUVZI2aCBZ1jBujOknLDiO0Xp7YtwY089YcByDukbrSt0Y0/9YcByDwt1VtKr1iGuM6V8sOI5B+xPjFhzGmH7EguMYWMO4MaY/suA4BgW+SibnWMO4MaZ/seDopbrGFraWVttlKmNMv2PB0UvWMG6M6a8sOHqpwFcB2BPjxpj+x4KjlwqKqkiPH8iQRGsYN8b0LxYcvWRPjBtj+isLjl6obWxma2k1U6x9wxjTD1lw9MJGaxg3xvRjFhy90NaVuo0xbozpjyw4emFdUSXp8dHWMG6M6ZcsOHphfVElk7MTrWHcGNMveRocIjJDRDaLyDYRua+T5b8QkTXua4uIVLjzL/Cbv0ZE6kXkSnfZfBH5wm/ZyV4eQ0e1jc1sK62xJ8aNMf1WpFc7FpEI4GlgOuADVonIYlUtbFtHVe/1W/9OYKo7fzlwsjs/FdgGLPXb/Y9U9TWvaj+SwmKnYXxyTnIgvrwxxgScl2cc04Btqvq5qjYCC4GZR1j/euCVTuZ/A3hbVWs9qLHHCqwrdWNMP+dlcGQDu/w++9x5hxGREUAu8F4ni2dxeKD8VETWuZe6orvY52wRyReR/LKysp5X34UCt2F8cGKnX9YYY8JesDSOzwJeU9UW/5kikgVMBpb4zb4fGAecBqQCP+5sh6o6T1XzVDUvIyOjzwot8FUyxbpSN8b0Y14GRxEwzO9zjjuvM52dVQB8E1ikqk1tM1R1tzoagOdxLokdF7WNzWwvq7EH/4wx/ZqXwbEKGCMiuSIyECccFndcSUTGASnAyk72cVi7h3sWgjh/8l8JrO/jurvU3jBuwWGM6cc8u6tKVZtF5Hs4l5kigOdUdYOIPAbkq2pbiMwCFqqq+m8vIiNxzlg+6LDrl0QkAxBgDXCHV8fQ0Tr3iXHrSt0Y0595FhwAqvoW8FaHeQ93+PxoF9t+SSeN6ap6Yd9V2DPriyrJSIhmsD0xbozpx4KlcTwkFBRV2mUqY0y/Z8HRTQcamtlWZk+MG2OMBUc3Fe6uQq1h3BhjLDi6y7pSN8YYhwVHNxUUVZJpDePGGGPB0V3WMG6MMQ4Ljm440GBPjBtjTBsLjm5oaxi3B/+MMcaCo1vanhi3S1XGGGPB0S3r3YbxTGsYN8YYC47usIZxY4w5yILjKGrchnF7fsMYYxwWHEdRWGxPjBtjjD8LjqOwMcaNMeZQFhxHUeCrYHCiNYwbY0wbC46jsIZxY4w5lAXHEdQ0NPP53gP2xLgxxvix4DiCDUWV9sS4McZ0YMFxBG0N43bGYYwxB3kaHCIyQ0Q2i8g2Ebmvk+W/EJE17muLiFT4LWvxW7bYb36uiHzi7vMPIjLQq/rXF1U6DeMJ1jBujDFtIr3asYhEAE8D0wEfsEpEFqtqYds6qnqv3/p3AlP9dlGnqid3suv/An6hqgtF5BngNmCuF8cwZnACQ5Jivdi1McaELC/POKYB21T1c1VtBBYCM4+w/vXAK0faoYgIcCHwmjvrBeDKPqi1U3MuGM19l47zavfGGBOSvAyObGCX32efO+8wIjICyAXe85sdIyL5IvKxiLSFQxpQoarN3djnbHf7/LKysmM5DmOMMX48u1TVQ7OA11S1xW/eCFUtEpFRwHsiUgBUdneHqjoPmAeQl5enfVqtMcb0Y16ecRQBw/w+57jzOjOLDpepVLXIff8ceB+n/WMfkCwibYF3pH0aY4zxgJfBsQoY494FNRAnHBZ3XElExgEpwEq/eSkiEu1OpwNnA4WqqsBy4Bvuqt8C3vDwGIwxxnTgWXC47RDfA5YAG4FXVXWDiDwmIlf4rToLWOiGQpvxQL6IrMUJiif87sb6MfB9EdmG0+bxO6+OwRhjzOHk0N/X4SkvL0/z8/MDXYYxxoQUEVmtqnkd59uT48YYY3rEgsMYY0yP9ItLVSJSBuzo5ebpwN4+LMdroVSv1eqdUKo3lGqF0Kr3WGsdoaoZHWf2i+A4FiKS39k1vmAVSvVard4JpXpDqVYIrXq9qtUuVRljjOkRCw5jjDE9YsFxdPMCXUAPhVK9Vqt3QqneUKoVQqteT2q1Ng5jjDE9YmccxhhjesSCwxhjTI9YcBzB0Ya+DRYiMkxElotIoYhsEJG7A13T0YhIhIh8JiJvBrqWoxGRZBF5TUQ2ichGETkz0DV1RUTudb8H1ovIKyISVOMei8hzIlIqIuv95qWKyDIR2eq+pwSyRn9d1Pv/3O+FdSKySESSA1ljm85q9Vv2AxFRt9PYY2bB0QW/oW8vBSYA14vIhMBW1aVm4AeqOgE4A5gTxLW2uRun88tQ8BTwN1UdB5xEkNYtItnAXUCeqk4CInA6EQ0m84EZHebdB7yrqmOAd93PwWI+h9e7DJikqlOALcD9x7uoLszn8FoRkWHAJcDOvvpCFhxd6+nQtwGjqrtV9Z/udDXOL7ZOR0YMBiKSA3wNeDbQtRyNiCQB5+L2wqyqjapaEdiqjigSiHXHrIkDigNczyFUdQVQ3mH2TJxhoMHj4aB7qrN6VXWp3yikH+OMCxRwXfzbAvwC+Degz+6EsuDoWreHvg0mIjISZ9CrTwJbyRH9EucbuTXQhXRDLlAGPO9eWntWRAYFuqjOuIOfPYnzl+VuoFJVlwa2qm4ZrKq73ek9wOBAFtND3wHeDnQRXRGRmUCRqq7ty/1acIQREYkH/gTco6pVga6nMyJyOVCqqqsDXUs3RQKnAHNVdSpwgOC6lNLObRuYiRN2Q4FBInJTYKvqGXdcnpB4RkBEHsS5TPxSoGvpjIjEAQ8AD/f1vi04utaToW8DTkSicELjJVX9c6DrOYKzgStE5Eucy38XisjvA1vSEfkAn6q2ncG9hhMkwehi4AtVLVPVJuDPwFkBrqk7SkQkC8B9Lw1wPUclIrcClwM3dhiELpicgPNHxFr35y0H+KeIDDnWHVtwdK1bQ98GAxERnGvwG1X1vwNdz5Go6v2qmqOqI3H+Td9T1aD9q1hV9wC7RGSsO+sioPAImwTSTuAMEYlzvycuIkgb8jtYjDMMNITAcNAiMgPnUusVqlob6Hq6oqoFqpqpqiPdnzcfcIr7PX1MLDi60NXQt4GtqktnAzfj/PW+xn1dFuiiwsidwEsisg44GfjPANfTKfes6DXgn0ABzs93UHWPISKvACuBsSLiE5HbgCeA6SKyFees6YlA1uivi3p/DSQAy9yftWcCWqSri1q9+VrBe5ZljDEmGNkZhzHGmB6x4DDGGNMjFhzGGGN6xILDGGNMj1hwGGOM6RELDmOCkIicHwo9B5v+yYLDGGNMj1hwGHMMROQmEfnUfRDsf91xRmpE5BfuuBjvikiGu+7JIvKx3zgOKe780SLyjoisFZF/isgJ7u7j/cYBecl9GhwRecIde2WdiDwZoEM3/ZgFhzG9JCLjgeuAs1X1ZKAFuBEYBOSr6kTgA+ARd5MFwI/dcRwK/Oa/BDytqifh9C3V1lPsVOAenPFgRgFni0gacBUw0d3P494epTGHs+AwpvcuAk4FVonIGvfzKJzu4v/grvN74CvuuB7JqvqBO/8F4FwRSQCyVXURgKrW+/V/9Kmq+lS1FVgDjAQqgXrgdyJyNRC0fSWZ8GXBYUzvCfCCqp7svsaq6qOdrNfbfn0a/KZbgEi3D7VpOH1SXQ78rZf7NqbXLDiM6b13gW+ISCa0j509Aufn6hvuOjcAf1fVSmC/iJzjzr8Z+MAdsdEnIle6+4h2x1HolDvmSpKqvgXcizOUrTHHVWSgCzAmVKlqoYg8BCwVkQFAEzAHZ7Cnae6yUpx2EHC6DH/GDYbPgW+7828G/ldEHnP3ce0RvmwC8IaIxOCc8Xy/jw/LmKOy3nGN6WMiUqOq8YGuwxiv2KUqY4wxPWJnHMYYY3rEzjiMMcb0iAWHMcaYHrHgMMYY0yMWHMYYY3rEgsMYY0yP/H8m8yZXTE2uOAAAAABJRU5ErkJggg==\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        },\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"E_ovau06hzM7\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"e71ae11f-50c9-432b-ea02-5e97d78f777a\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"keras-vis                     0.4.1         \\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"5he0sjA9XTOM\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    }\n  ]\n}"
  },
  {
    "path": "CH02/CH02a_Working_with_Language_Models_and_Tokenizers.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"EtyN9XsZ245Q\"\n   },\n   \"source\": [\n    \"# Working with Language Models and Tokenizers\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"apmWcx6z23Z1\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"!pip install transformers \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"executionInfo\": {\n     \"elapsed\": 4956,\n     \"status\": \"ok\",\n     \"timestamp\": 1619015589798,\n     \"user\": {\n      \"displayName\": \"Savas Yıldırım\",\n      \"photoUrl\": \"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\n      \"userId\": \"10717726124681851716\"\n     },\n     \"user_tz\": -180\n    },\n    \"id\": \"-MQ_9wGWnXBd\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import BertTokenizer \\n\",\n    \"tokenizer = BertTokenizer.from_pretrained('bert-base-uncased') \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\"\n    },\n    \"executionInfo\": {\n     \"elapsed\": 4142,\n     \"status\": \"ok\",\n     \"timestamp\": 1619015589800,\n     \"user\": {\n      \"displayName\": \"Savas Yıldırım\",\n      \"photoUrl\": \"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\n      \"userId\": \"10717726124681851716\"\n     },\n     \"user_tz\": -180\n    },\n    \"id\": \"9YGDDnaMncAW\",\n    \"outputId\": \"107fc474-7a0e-4d8e-d126-5242de5996ba\"\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"{'input_ids': [101, 2478, 19081, 2003, 3733, 999, 102], 'token_type_ids': [0, 0, 0, 0, 0, 0, 0], 'attention_mask': [1, 1, 1, 1, 1, 1, 1]}\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"text = \\\"Using transformers is easy!\\\" \\n\",\n    \"tokenizer(text) \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"executionInfo\": {\n     \"elapsed\": 1173,\n     \"status\": \"ok\",\n     \"timestamp\": 1619015591660,\n     \"user\": {\n      \"displayName\": \"Savas Yıldırım\",\n      \"photoUrl\": \"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\n      \"userId\": \"10717726124681851716\"\n     },\n     \"user_tz\": -180\n    },\n    \"id\": \"_wiigdlCnfQJ\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"encoded_input = tokenizer(text, return_tensors=\\\"pt\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"executionInfo\": {\n     \"elapsed\": 4150,\n     \"status\": \"ok\",\n     \"timestamp\": 1619015596662,\n     \"user\": {\n      \"displayName\": \"Savas Yıldırım\",\n      \"photoUrl\": \"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\n      \"userId\": \"10717726124681851716\"\n     },\n     \"user_tz\": -180\n    },\n    \"id\": \"Qm1YaZBMni6d\"\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"9ee073709bd649cea11d73d69594e8f2\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=570.0, style=ProgressStyle(description_…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"fee41a4ae1fc43ddab7ed803246208ab\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=440473133.0, style=ProgressStyle(descri…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"from transformers import BertModel \\n\",\n    \"model = BertModel.from_pretrained(\\\"bert-base-uncased\\\") \\n\",\n    \"output = model(**encoded_input) \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\"\n    },\n    \"executionInfo\": {\n     \"elapsed\": 10456,\n     \"status\": \"ok\",\n     \"timestamp\": 1619015610514,\n     \"user\": {\n      \"displayName\": \"Savas Yıldırım\",\n      \"photoUrl\": \"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\n      \"userId\": \"10717726124681851716\"\n     },\n     \"user_tz\": -180\n    },\n    \"id\": \"wUSqcni1nsgL\",\n    \"outputId\": \"daf1df39-d972-47b7-f465-f9a5b0c0fda0\"\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"00e46639b88142bfbaecbfb475cf8fe2\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=536063208.0, style=ProgressStyle(descri…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Some layers from the model checkpoint at bert-base-uncased were not used when initializing TFBertModel: ['nsp___cls', 'mlm___cls']\\n\",\n      \"- This IS expected if you are initializing TFBertModel from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\n      \"- This IS NOT expected if you are initializing TFBertModel from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\",\n      \"All the layers of TFBertModel were initialized from the model checkpoint at bert-base-uncased.\\n\",\n      \"If your task is similar to the task the model of the checkpoint was trained on, you can already use TFBertModel for predictions without further training.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"from transformers import BertTokenizer, TFBertModel \\n\",\n    \"tokenizer = BertTokenizer.from_pretrained('bert-base-uncased') \\n\",\n    \"model = TFBertModel.from_pretrained(\\\"bert-base-uncased\\\") \\n\",\n    \"text = \\\" Using transformers is easy!\\\" \\n\",\n    \"encoded_input = tokenizer(text, return_tensors='tf') \\n\",\n    \"output = model(**encoded_input) \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\"\n    },\n    \"executionInfo\": {\n     \"elapsed\": 5518,\n     \"status\": \"ok\",\n     \"timestamp\": 1619015632607,\n     \"user\": {\n      \"displayName\": \"Savas Yıldırım\",\n      \"photoUrl\": \"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\n      \"userId\": \"10717726124681851716\"\n     },\n     \"user_tz\": -180\n    },\n    \"id\": \"fIqIZ6-Jn3n8\",\n    \"outputId\": \"c2d096e7-cc6b-4a10-886c-4035d7639682\"\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"1d7d5e3e4c9c4d7c93fdc897fe51d2dc\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=466062.0, style=ProgressStyle(descripti…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Some weights of the model checkpoint at bert-base-uncased were not used when initializing BertForMaskedLM: ['cls.seq_relationship.weight', 'cls.seq_relationship.bias']\\n\",\n      \"- This IS expected if you are initializing BertForMaskedLM from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\n      \"- This IS NOT expected if you are initializing BertForMaskedLM from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[{'sequence': 'the man worked as a carpenter.',\\n\",\n       \"  'score': 0.0974755585193634,\\n\",\n       \"  'token': 10533,\\n\",\n       \"  'token_str': 'carpenter'},\\n\",\n       \" {'sequence': 'the man worked as a waiter.',\\n\",\n       \"  'score': 0.05238321051001549,\\n\",\n       \"  'token': 15610,\\n\",\n       \"  'token_str': 'waiter'},\\n\",\n       \" {'sequence': 'the man worked as a barber.',\\n\",\n       \"  'score': 0.04962703585624695,\\n\",\n       \"  'token': 13362,\\n\",\n       \"  'token_str': 'barber'},\\n\",\n       \" {'sequence': 'the man worked as a mechanic.',\\n\",\n       \"  'score': 0.03788604959845543,\\n\",\n       \"  'token': 15893,\\n\",\n       \"  'token_str': 'mechanic'},\\n\",\n       \" {'sequence': 'the man worked as a salesman.',\\n\",\n       \"  'score': 0.037680838257074356,\\n\",\n       \"  'token': 18968,\\n\",\n       \"  'token_str': 'salesman'}]\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from transformers import pipeline \\n\",\n    \"unmasker = pipeline('fill-mask', model='bert-base-uncased') \\n\",\n    \"unmasker(\\\"The man worked as a [MASK].\\\") \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\"\n    },\n    \"executionInfo\": {\n     \"elapsed\": 34502,\n     \"status\": \"ok\",\n     \"timestamp\": 1619015684885,\n     \"user\": {\n      \"displayName\": \"Savas Yıldırım\",\n      \"photoUrl\": \"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\n      \"userId\": \"10717726124681851716\"\n     },\n     \"user_tz\": -180\n    },\n    \"id\": \"KNR6jL6uoDB5\",\n    \"outputId\": \"09e9407e-0cd9-40d8-ed5d-de6176549c3c\"\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"79daa210226044d2bba3394d4945e1fe\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1154.0, style=ProgressStyle(description…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"ecf39bec6ed1482b8596944715f55831\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1629486723.0, style=ProgressStyle(descr…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Some weights of the model checkpoint at facebook/bart-large-mnli were not used when initializing BartModel: ['model.encoder.version', 'model.decoder.version']\\n\",\n      \"- This IS expected if you are initializing BartModel from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\n      \"- This IS NOT expected if you are initializing BartModel from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"7743faf8dcdf4c0f88a2628fd5eb7a3d\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=898823.0, style=ProgressStyle(descripti…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"655a2bbfb7374c08808e6d654a5a3582\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=456318.0, style=ProgressStyle(descripti…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"33e76e79622c4cc8a3e8c5b8678ec915\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1355863.0, style=ProgressStyle(descript…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Some weights of the model checkpoint at facebook/bart-large-mnli were not used when initializing BartForSequenceClassification: ['model.encoder.version', 'model.decoder.version']\\n\",\n      \"- This IS expected if you are initializing BartForSequenceClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\n      \"- This IS NOT expected if you are initializing BartForSequenceClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"{'sequence': 'I am going to france.',\\n\",\n       \" 'labels': ['travel', 'dancing', 'cooking'],\\n\",\n       \" 'scores': [0.9866883754730225, 0.007197574246674776, 0.006114062387496233]}\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from transformers import pipeline \\n\",\n    \"classifier = pipeline(\\\"zero-shot-classification\\\", model=\\\"facebook/bart-large-mnli\\\") \\n\",\n    \"sequence_to_classify = \\\"I am going to france.\\\" \\n\",\n    \"candidate_labels = ['travel', 'cooking', 'dancing'] \\n\",\n    \"classifier(sequence_to_classify, candidate_labels) \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"colab\": {\n   \"authorship_tag\": \"ABX9TyNA/NFmK6sxOzqVBmo0oq+k\",\n   \"name\": \"CH02.01 Working with Language Models and Tokenizers .ipynb\",\n   \"provenance\": []\n  },\n  \"kernelspec\": {\n   \"display_name\": \"Python [conda env:root] *\",\n   \"language\": \"python\",\n   \"name\": \"conda-root-py\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.8.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 1\n}\n"
  },
  {
    "path": "CH02/CH02b_Working_with_Datasets_Libary.ipynb",
    "content": "{\n  \"nbformat\": 4,\n  \"nbformat_minor\": 0,\n  \"metadata\": {\n    \"colab\": {\n      \"name\": \"CH02b_Working_with_Datasets_Libary.ipynb\",\n      \"provenance\": [],\n      \"collapsed_sections\": []\n    },\n    \"kernelspec\": {\n      \"display_name\": \"Python 3\",\n      \"name\": \"python3\"\n    }\n  },\n  \"cells\": [\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"WY77J0ZNKU81\"\n      },\n      \"source\": [\n        \"# CH02b_Working_with_Datasets_Libary\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"v642V-95KYkA\"\n      },\n      \"source\": [\n        \"## Installing and loading a dataset\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"-kraPBYuum6-\",\n        \"outputId\": \"00f8225e-d43d-43c3-e867-31351a98f488\"\n      },\n      \"source\": [\n        \"!pip install datasets\\n\"\n      ],\n      \"execution_count\": 116,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Requirement already satisfied: datasets in /usr/local/lib/python3.7/dist-packages (1.8.0)\\n\",\n            \"Requirement already satisfied: multiprocess in /usr/local/lib/python3.7/dist-packages (from datasets) (0.70.12.2)\\n\",\n            \"Requirement already satisfied: fsspec in /usr/local/lib/python3.7/dist-packages (from datasets) (2021.6.1)\\n\",\n            \"Requirement already satisfied: tqdm<4.50.0,>=4.27 in /usr/local/lib/python3.7/dist-packages (from datasets) (4.41.1)\\n\",\n            \"Requirement already satisfied: huggingface-hub<0.1.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (0.0.12)\\n\",\n            \"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from datasets) (4.5.0)\\n\",\n            \"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from datasets) (20.9)\\n\",\n            \"Requirement already satisfied: pyarrow<4.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (3.0.0)\\n\",\n            \"Requirement already satisfied: requests>=2.19.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (2.23.0)\\n\",\n            \"Requirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from datasets) (1.1.5)\\n\",\n            \"Requirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from datasets) (0.3.4)\\n\",\n            \"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from datasets) (1.19.5)\\n\",\n            \"Requirement already satisfied: xxhash in /usr/local/lib/python3.7/dist-packages (from datasets) (2.0.2)\\n\",\n            \"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from huggingface-hub<0.1.0->datasets) (3.0.12)\\n\",\n            \"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub<0.1.0->datasets) (3.7.4.3)\\n\",\n            \"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->datasets) (3.4.1)\\n\",\n            \"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->datasets) (2.4.7)\\n\",\n            \"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (2021.5.30)\\n\",\n            \"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (3.0.4)\\n\",\n            \"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (1.24.3)\\n\",\n            \"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (2.10)\\n\",\n            \"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2.8.1)\\n\",\n            \"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2018.9)\\n\",\n            \"Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.7/dist-packages (from python-dateutil>=2.7.3->pandas->datasets) (1.15.0)\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"hCOFA_2_1uDN\"\n      },\n      \"source\": [\n        \"#It loads a dataset from the HuggingFace Hub\\n\",\n        \"from datasets import load_dataset\"\n      ],\n      \"execution_count\": 117,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"Or_Ys4yLRyB0\"\n      },\n      \"source\": [\n        \"Datasets migth have several configurations. For instances, The GLUE dataset as an agregated benchmark has 10 subsets (as of writing this notebook) as: COLA, SST2, MRPC, QQP, STSB, MNLI, QNLI, RTE, WNLI and the diagnostic subset AX. \\n\",\n        \"\\n\",\n        \"To access each glue dataset, we pass two arguments where the first is **'glue'** and second is a **sub-part** of it to be chosen. Likewise, the wikipedia dataset have several configuration provided for several languages.\\n\",\n        \"\\n\",\n        \"Lets load 'cola' subset of GLUE as follows:\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"EhIhwzqgrs0D\",\n        \"outputId\": \"169b419c-112b-49c5-a294-d84735dde6dc\"\n      },\n      \"source\": [\n        \"cola = load_dataset('glue', 'cola')\\n\",\n        \"cola['train'][18:22]\"\n      ],\n      \"execution_count\": 118,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Reusing dataset glue (/root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad)\\n\"\n          ],\n          \"name\": \"stderr\"\n        },\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"{'idx': [18, 19, 20, 21],\\n\",\n              \" 'label': [0, 1, 0, 1],\\n\",\n              \" 'sentence': ['They drank the pub.',\\n\",\n              \"  'The professor talked us into a stupor.',\\n\",\n              \"  'The professor talked us.',\\n\",\n              \"  'We yelled ourselves hoarse.']}\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 118\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"eRJGcaMc0dJU\"\n      },\n      \"source\": [\n        \"While some dataset comes with DatasetDict object, some can be of type Dataset depending on splitting condition. The CoLA dataset come with DatasetDict where we have 3 splits: train,validation, and test. Train and validation datasets include the labels as well (1: Acceptable, 0: Unacceptable), but the label values of test split are -1, which means 'no-label'.   \"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"c27Sie9lGwmj\",\n        \"outputId\": \"d80f24cb-c0a3-44a1-bf03-edc722c2f406\"\n      },\n      \"source\": [\n        \"cola\"\n      ],\n      \"execution_count\": 119,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"DatasetDict({\\n\",\n              \"    train: Dataset({\\n\",\n              \"        features: ['idx', 'label', 'sentence'],\\n\",\n              \"        num_rows: 8551\\n\",\n              \"    })\\n\",\n              \"    validation: Dataset({\\n\",\n              \"        features: ['idx', 'label', 'sentence'],\\n\",\n              \"        num_rows: 1043\\n\",\n              \"    })\\n\",\n              \"    test: Dataset({\\n\",\n              \"        features: ['idx', 'label', 'sentence'],\\n\",\n              \"        num_rows: 1063\\n\",\n              \"    })\\n\",\n              \"})\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 119\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"O_dFvOxzsz_S\",\n        \"outputId\": \"d2f071c5-9a5e-4695-82ac-9c0d5f92856c\"\n      },\n      \"source\": [\n        \"cola['train'][12]\"\n      ],\n      \"execution_count\": 120,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"{'idx': 12, 'label': 1, 'sentence': 'Bill rolled out of the room.'}\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 120\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"24epGtdbs48Y\",\n        \"outputId\": \"c466bfec-f2cc-4735-c546-e642aa4ab493\"\n      },\n      \"source\": [\n        \"cola['validation'][68]\"\n      ],\n      \"execution_count\": 121,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"{'idx': 68,\\n\",\n              \" 'label': 0,\\n\",\n              \" 'sentence': 'Which report that John was incompetent did he submit?'}\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 121\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"FCVXKYML1Ipg\",\n        \"outputId\": \"b43680c3-e9ed-4d6f-9ba9-8133aa34913b\"\n      },\n      \"source\": [\n        \"cola['test'][20]\"\n      ],\n      \"execution_count\": 122,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"{'idx': 20, 'label': -1, 'sentence': 'Has John seen Mary?'}\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 122\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"KsirfEzWJRqb\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 122,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"StSGBLuhJSIX\"\n      },\n      \"source\": [\n        \"## Metadata of Datasets\\n\",\n        \"* split\\n\",\n        \"* description\\n\",\n        \"* citation\\n\",\n        \"* homepage\\n\",\n        \"* license\\n\",\n        \"* info\\n\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"k4H4xeA7JTwT\",\n        \"outputId\": \"8a95df66-8831-4d25-f426-2ea9e7aae191\"\n      },\n      \"source\": [\n        \"print(cola[\\\"train\\\"].split)\\n\",\n        \"print(cola[\\\"train\\\"].description)\\n\",\n        \"print(cola[\\\"train\\\"].citation)\\n\",\n        \"print(cola[\\\"train\\\"].homepage)\\n\",\n        \"print(cola[\\\"train\\\"].license)\"\n      ],\n      \"execution_count\": 123,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"train\\n\",\n            \"GLUE, the General Language Understanding Evaluation benchmark\\n\",\n            \"(https://gluebenchmark.com/) is a collection of resources for training,\\n\",\n            \"evaluating, and analyzing natural language understanding systems.\\n\",\n            \"\\n\",\n            \"\\n\",\n            \"@article{warstadt2018neural,\\n\",\n            \"  title={Neural Network Acceptability Judgments},\\n\",\n            \"  author={Warstadt, Alex and Singh, Amanpreet and Bowman, Samuel R},\\n\",\n            \"  journal={arXiv preprint arXiv:1805.12471},\\n\",\n            \"  year={2018}\\n\",\n            \"}\\n\",\n            \"@inproceedings{wang2019glue,\\n\",\n            \"  title={{GLUE}: A Multi-Task Benchmark and Analysis Platform for Natural Language Understanding},\\n\",\n            \"  author={Wang, Alex and Singh, Amanpreet and Michael, Julian and Hill, Felix and Levy, Omer and Bowman, Samuel R.},\\n\",\n            \"  note={In the Proceedings of ICLR.},\\n\",\n            \"  year={2019}\\n\",\n            \"}\\n\",\n            \"\\n\",\n            \"https://nyu-mll.github.io/CoLA/\\n\",\n            \"\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"Wce0ixTa1IBW\"\n      },\n      \"source\": [\n        \"### Loading other datasets\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"YnshcHTRs4_K\",\n        \"outputId\": \"a09a5f10-4f3e-49fe-8be8-66e0e5dc1875\"\n      },\n      \"source\": [\n        \"sst2 = load_dataset('glue', 'sst2')\"\n      ],\n      \"execution_count\": 124,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Reusing dataset glue (/root/.cache/huggingface/datasets/glue/sst2/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad)\\n\"\n          ],\n          \"name\": \"stderr\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"Kt0IsbSys5Bn\",\n        \"outputId\": \"e37d70f1-1ba3-4b5a-b3a7-b36e8b4a1bc9\"\n      },\n      \"source\": [\n        \"mrpc = load_dataset('glue', 'mrpc')\"\n      ],\n      \"execution_count\": 125,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Reusing dataset glue (/root/.cache/huggingface/datasets/glue/mrpc/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad)\\n\"\n          ],\n          \"name\": \"stderr\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"1X3n64WwL2Pt\"\n      },\n      \"source\": [\n        \"To check entire subsets, run the following piece of code\\n\",\n        \"\\n\",\n        \"\\n\",\n        \"```\\n\",\n        \"glue=['cola', 'sst2', 'mrpc', 'qqp', 'stsb', 'mnli', 'mnli_mismatched', 'mnli_matched', 'qnli', 'rte', 'wnli', 'ax']\\n\",\n        \"for g in glue:\\n\",\n        \" _=load_dataset('glue', g)\\n\",\n        \"```\\n\",\n        \"\\n\",\n        \"\\n\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"AfUequG1r3rT\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 125,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"YY8ytQiLMKG5\"\n      },\n      \"source\": [\n        \"## Listing all datasets and metrics in the hub\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"KwUjI5XysDjh\",\n        \"outputId\": \"3899bdca-4197-452b-f164-633f382ed892\"\n      },\n      \"source\": [\n        \"from pprint import pprint\\n\",\n        \"from datasets import list_datasets, list_metrics\\n\",\n        \"all = list_datasets()\\n\",\n        \"metrics = list_metrics()\\n\",\n        \"\\n\",\n        \"print(f\\\"{len(all)} datasets and {len(metrics)} metrics exists in the hub\\\\n\\\")\\n\",\n        \"pprint(all[:20], compact=True)\\n\",\n        \"pprint(metrics, compact=True)\"\n      ],\n      \"execution_count\": 126,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"995 datasets and 27 metrics exists in the hub\\n\",\n            \"\\n\",\n            \"['acronym_identification', 'ade_corpus_v2', 'adversarial_qa', 'aeslc',\\n\",\n            \" 'afrikaans_ner_corpus', 'ag_news', 'ai2_arc', 'air_dialogue',\\n\",\n            \" 'ajgt_twitter_ar', 'allegro_reviews', 'allocine', 'alt', 'amazon_polarity',\\n\",\n            \" 'amazon_reviews_multi', 'amazon_us_reviews', 'ambig_qa', 'amttl', 'anli',\\n\",\n            \" 'app_reviews', 'aqua_rat']\\n\",\n            \"['accuracy', 'bertscore', 'bleu', 'bleurt', 'cer', 'comet', 'coval', 'cuad',\\n\",\n            \" 'f1', 'gleu', 'glue', 'indic_glue', 'matthews_correlation', 'meteor',\\n\",\n            \" 'pearsonr', 'precision', 'recall', 'rouge', 'sacrebleu', 'sari', 'seqeval',\\n\",\n            \" 'spearmanr', 'squad', 'squad_v2', 'super_glue', 'wer', 'xnli']\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"GGbsj2zLMOMR\"\n      },\n      \"source\": [\n        \"## XTREME: Working with Cross-lingual dataset\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"RADiPVFG4ANK\"\n      },\n      \"source\": [\n        \"MLQA is a subset of Xtreme benchmark, which is designed for assessing performances of cross-lingual question answering models. It includes about 5K extractive Question-Answer instances in SQuAD format in seven languages which are:\\n\",\n        \"* (English, German, Arabic, Hindi, Vietnamese, Spanish and Simplified Chinese.) \\n\",\n        \"\\n\",\n        \"E.g. MLQA.en.de is English-German QA example dataset and can be loaded as follows:\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"gxo2P4yNCnlz\",\n        \"outputId\": \"b66fd420-f6d9-4efc-d847-c466cad8d8cc\"\n      },\n      \"source\": [\n        \"en_de = load_dataset('xtreme', 'MLQA.en.de')\"\n      ],\n      \"execution_count\": 127,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Reusing dataset xtreme (/root/.cache/huggingface/datasets/xtreme/MLQA.en.de/1.0.0/7bf67e71297af51aebad531f84e824cf5c995d9ce994485f7cd2e90d9cc4d555)\\n\"\n          ],\n          \"name\": \"stderr\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"K3VekHNKGtBg\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 127,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"DUn-BxLfX1P5\"\n      },\n      \"source\": [\n        \"Here is the dataset structure\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"h_Dqp9hR1Yfm\",\n        \"outputId\": \"72654923-80c5-4f06-fc50-37d5dd86466b\"\n      },\n      \"source\": [\n        \"en_de\"\n      ],\n      \"execution_count\": 128,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"DatasetDict({\\n\",\n              \"    test: Dataset({\\n\",\n              \"        features: ['answers', 'context', 'id', 'question', 'title'],\\n\",\n              \"        num_rows: 4517\\n\",\n              \"    })\\n\",\n              \"    validation: Dataset({\\n\",\n              \"        features: ['answers', 'context', 'id', 'question', 'title'],\\n\",\n              \"        num_rows: 512\\n\",\n              \"    })\\n\",\n              \"})\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 128\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"QyKgKcdR3jVi\"\n      },\n      \"source\": [\n        \"### Viewing the dataset as a pandas data frame\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 173\n        },\n        \"id\": \"0Ilhb2j71fiC\",\n        \"outputId\": \"e85d4d6c-fafb-4dc2-fe23-6ef3322a1e46\"\n      },\n      \"source\": [\n        \"# View dataset as a pandas data frame\\n\",\n        \"import pandas as pd\\n\",\n        \"pd.DataFrame(en_de['test'][0:4])\"\n      ],\n      \"execution_count\": 129,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/html\": [\n              \"<div>\\n\",\n              \"<style scoped>\\n\",\n              \"    .dataframe tbody tr th:only-of-type {\\n\",\n              \"        vertical-align: middle;\\n\",\n              \"    }\\n\",\n              \"\\n\",\n              \"    .dataframe tbody tr th {\\n\",\n              \"        vertical-align: top;\\n\",\n              \"    }\\n\",\n              \"\\n\",\n              \"    .dataframe thead th {\\n\",\n              \"        text-align: right;\\n\",\n              \"    }\\n\",\n              \"</style>\\n\",\n              \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n              \"  <thead>\\n\",\n              \"    <tr style=\\\"text-align: right;\\\">\\n\",\n              \"      <th></th>\\n\",\n              \"      <th>answers</th>\\n\",\n              \"      <th>context</th>\\n\",\n              \"      <th>id</th>\\n\",\n              \"      <th>question</th>\\n\",\n              \"      <th>title</th>\\n\",\n              \"    </tr>\\n\",\n              \"  </thead>\\n\",\n              \"  <tbody>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>0</th>\\n\",\n              \"      <td>{'answer_start': [31], 'text': ['cell']}</td>\\n\",\n              \"      <td>An established or immortalized cell line has a...</td>\\n\",\n              \"      <td>037e8929e7e4d2f949ffbabd10f0f860499ff7c9</td>\\n\",\n              \"      <td>Woraus besteht die Linie?</td>\\n\",\n              \"      <td>Cell culture</td>\\n\",\n              \"    </tr>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>1</th>\\n\",\n              \"      <td>{'answer_start': [232], 'text': ['1885']}</td>\\n\",\n              \"      <td>The 19th-century English physiologist Sydney R...</td>\\n\",\n              \"      <td>4b36724f3cbde7c287bde512ff09194cbba7f932</td>\\n\",\n              \"      <td>Wann hat Roux etwas von seiner Medullarplatte ...</td>\\n\",\n              \"      <td>Cell culture</td>\\n\",\n              \"    </tr>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>2</th>\\n\",\n              \"      <td>{'answer_start': [131], 'text': ['TRIPS']}</td>\\n\",\n              \"      <td>After the Uruguay round, the GATT became the b...</td>\\n\",\n              \"      <td>13e58403df16d88b0e2c665953e89575704942d4</td>\\n\",\n              \"      <td>Was muss ratifiziert werden, wenn ein Land ger...</td>\\n\",\n              \"      <td>TRIPS Agreement</td>\\n\",\n              \"    </tr>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>3</th>\\n\",\n              \"      <td>{'answer_start': [67], 'text': ['developing co...</td>\\n\",\n              \"      <td>Since TRIPS came into force, it has been subje...</td>\\n\",\n              \"      <td>d23b5372af1de9425a4ae313c01eb80764c910d8</td>\\n\",\n              \"      <td>Welche Teile der Welt kritisierten das TRIPS a...</td>\\n\",\n              \"      <td>TRIPS Agreement</td>\\n\",\n              \"    </tr>\\n\",\n              \"  </tbody>\\n\",\n              \"</table>\\n\",\n              \"</div>\"\n            ],\n            \"text/plain\": [\n              \"                                             answers  ...            title\\n\",\n              \"0           {'answer_start': [31], 'text': ['cell']}  ...     Cell culture\\n\",\n              \"1          {'answer_start': [232], 'text': ['1885']}  ...     Cell culture\\n\",\n              \"2         {'answer_start': [131], 'text': ['TRIPS']}  ...  TRIPS Agreement\\n\",\n              \"3  {'answer_start': [67], 'text': ['developing co...  ...  TRIPS Agreement\\n\",\n              \"\\n\",\n              \"[4 rows x 5 columns]\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 129\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"YullrhmI5lHO\"\n      },\n      \"source\": [\n        \"## Selecting, sorting, filtering\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"azBvXH8F3uYk\"\n      },\n      \"source\": [\n        \"### Split\\n\",\n        \"which split of the data to be loaded. If None by default, will return a `dict` with all splits (Train, Test, Validation or any other).  If split is specified, it will return a single Dataset rather than a Dictionary\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"3Gyi_LgUPVtq\",\n        \"outputId\": \"17d7fae8-8807-4596-d063-dd36e0798d63\"\n      },\n      \"source\": [\n        \"cola = load_dataset('glue', 'cola', split ='train[:300]+validation[-30%:]')\\n\",\n        \"# Which means the first 300 examples of train  plus the last 30% of validation.\"\n      ],\n      \"execution_count\": 130,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Reusing dataset glue (/root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad)\\n\"\n          ],\n          \"name\": \"stderr\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"mnncU49m4V9q\"\n      },\n      \"source\": [\n        \"#### Other Split Examples\\n\",\n        \"The first 100 examples from train and validation\\n\",\n        \"\\n\",\n        \"`split='train[:100]+validation[:100]'` \\n\",\n        \"\\n\",\n        \"50% of train and 30 % of validation\\n\",\n        \"\\n\",\n        \"`split='train[:50%]+validation[:30%]'`\\n\",\n        \"\\n\",\n        \"\\n\",\n        \"The first 20% of train and examples in the slice 30:50 from validation\\n\",\n        \"\\n\",\n        \"`split='train[:20%]+validation[30:50]'`\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"X4x7vJIh-697\"\n      },\n      \"source\": [\n        \"### Sorting\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"57MIyMY0_PWq\"\n      },\n      \"source\": [\n        \"\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"fZMNeQfe-7Uw\",\n        \"outputId\": \"940c9d5a-4483-4e80-9f3e-d6789dfadc32\"\n      },\n      \"source\": [\n        \"cola.sort('label')['label'][:15]\"\n      ],\n      \"execution_count\": 131,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Loading cached sorted indices for dataset at /root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad/cache-54fbf680867c6dca.arrow\\n\"\n          ],\n          \"name\": \"stderr\"\n        },\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 131\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"YvUxINYb_BWH\",\n        \"outputId\": \"e043ce46-b054-4d5c-8b90-7956bb2802bd\"\n      },\n      \"source\": [\n        \"cola.sort('label')['label'][-15:]\"\n      ],\n      \"execution_count\": 132,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Loading cached sorted indices for dataset at /root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad/cache-54fbf680867c6dca.arrow\\n\"\n          ],\n          \"name\": \"stderr\"\n        },\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 132\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"f-VVYvtU_Qku\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 132,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"6DZ7T9-h_R5O\"\n      },\n      \"source\": [\n        \"###  Indexing\\n\",\n        \"You can also access several rows using slice notation or with a list of indices\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"Ukx2v_b6AHW1\"\n      },\n      \"source\": [\n        \"\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"xoqiXsjf_yBV\",\n        \"outputId\": \"e6c9762b-3e9f-4adb-f197-3c3d7c2aa6b2\"\n      },\n      \"source\": [\n        \"cola[6,19,44]\"\n      ],\n      \"execution_count\": 133,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"{'idx': [6, 19, 44],\\n\",\n              \" 'label': [1, 1, 1],\\n\",\n              \" 'sentence': ['Fred watered the plants flat.',\\n\",\n              \"  'The professor talked us into a stupor.',\\n\",\n              \"  'The trolley rumbled through the tunnel.']}\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 133\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"4eAbIIMR_6CW\",\n        \"outputId\": \"f7ee506a-b937-4737-892d-0d9dfd6425f3\"\n      },\n      \"source\": [\n        \"cola[42:46]\"\n      ],\n      \"execution_count\": 134,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"{'idx': [42, 43, 44, 45],\\n\",\n              \" 'label': [0, 1, 1, 1],\\n\",\n              \" 'sentence': ['They made him to exhaustion.',\\n\",\n              \"  'They made him into a monster.',\\n\",\n              \"  'The trolley rumbled through the tunnel.',\\n\",\n              \"  'The wagon rumbled down the road.']}\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 134\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"kouidG0PAIg2\"\n      },\n      \"source\": [\n        \"### Shuffling \"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"5OQ8DLJcAKv4\",\n        \"outputId\": \"e6047b2f-0c39-4aa4-89a8-8d42a6ad1c71\"\n      },\n      \"source\": [\n        \"cola.shuffle(seed=42)[:3]\"\n      ],\n      \"execution_count\": 135,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Loading cached shuffled indices for dataset at /root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad/cache-97a24a7d09391f14.arrow\\n\"\n          ],\n          \"name\": \"stderr\"\n        },\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"{'idx': [904, 1017, 885],\\n\",\n              \" 'label': [1, 0, 1],\\n\",\n              \" 'sentence': ['Lou forgot the umbrella in the closet.',\\n\",\n              \"  'It is the problem that he is here.',\\n\",\n              \"  'I met the person who left.']}\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 135\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"l5atyj-_59tJ\"\n      },\n      \"source\": [\n        \"## Caching and reusability\\n\",\n        \"Using cache files allows us to load large datasets by means of memory mapping if datasets fit on the drive  to use a fast backend and do smart caching by saving and reusing the results of operations executed on the drive.\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"bT79Q8hz_5i3\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 135,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"8KmKHVN4cRY3\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 135,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"GlKPEB2RccN7\"\n      },\n      \"source\": [\n        \"\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"5xdxVno0Pguy\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"cc962d64-4335-4a06-e1f6-b355263527ca\"\n      },\n      \"source\": [\n        \"pprint(list(dir(cola)))\"\n      ],\n      \"execution_count\": 136,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"['__class__',\\n\",\n            \" '__del__',\\n\",\n            \" '__delattr__',\\n\",\n            \" '__dict__',\\n\",\n            \" '__dir__',\\n\",\n            \" '__doc__',\\n\",\n            \" '__enter__',\\n\",\n            \" '__eq__',\\n\",\n            \" '__exit__',\\n\",\n            \" '__format__',\\n\",\n            \" '__ge__',\\n\",\n            \" '__getattribute__',\\n\",\n            \" '__getitem__',\\n\",\n            \" '__gt__',\\n\",\n            \" '__hash__',\\n\",\n            \" '__init__',\\n\",\n            \" '__init_subclass__',\\n\",\n            \" '__iter__',\\n\",\n            \" '__le__',\\n\",\n            \" '__len__',\\n\",\n            \" '__lt__',\\n\",\n            \" '__module__',\\n\",\n            \" '__ne__',\\n\",\n            \" '__new__',\\n\",\n            \" '__reduce__',\\n\",\n            \" '__reduce_ex__',\\n\",\n            \" '__repr__',\\n\",\n            \" '__setattr__',\\n\",\n            \" '__sizeof__',\\n\",\n            \" '__slotnames__',\\n\",\n            \" '__str__',\\n\",\n            \" '__subclasshook__',\\n\",\n            \" '__weakref__',\\n\",\n            \" '_check_index_is_initialized',\\n\",\n            \" '_data',\\n\",\n            \" '_fingerprint',\\n\",\n            \" '_format_columns',\\n\",\n            \" '_format_kwargs',\\n\",\n            \" '_format_type',\\n\",\n            \" '_get_cache_file_path',\\n\",\n            \" '_getitem',\\n\",\n            \" '_indexes',\\n\",\n            \" '_indices',\\n\",\n            \" '_info',\\n\",\n            \" '_map_single',\\n\",\n            \" '_new_dataset_with_indices',\\n\",\n            \" '_output_all_columns',\\n\",\n            \" '_split',\\n\",\n            \" 'add_column',\\n\",\n            \" 'add_elasticsearch_index',\\n\",\n            \" 'add_faiss_index',\\n\",\n            \" 'add_faiss_index_from_external_arrays',\\n\",\n            \" 'add_item',\\n\",\n            \" 'builder_name',\\n\",\n            \" 'cache_files',\\n\",\n            \" 'cast',\\n\",\n            \" 'cast_',\\n\",\n            \" 'citation',\\n\",\n            \" 'class_encode_column',\\n\",\n            \" 'cleanup_cache_files',\\n\",\n            \" 'column_names',\\n\",\n            \" 'config_name',\\n\",\n            \" 'data',\\n\",\n            \" 'dataset_size',\\n\",\n            \" 'description',\\n\",\n            \" 'dictionary_encode_column_',\\n\",\n            \" 'download_checksums',\\n\",\n            \" 'download_size',\\n\",\n            \" 'drop_index',\\n\",\n            \" 'export',\\n\",\n            \" 'features',\\n\",\n            \" 'filter',\\n\",\n            \" 'flatten',\\n\",\n            \" 'flatten_',\\n\",\n            \" 'flatten_indices',\\n\",\n            \" 'format',\\n\",\n            \" 'formatted_as',\\n\",\n            \" 'from_buffer',\\n\",\n            \" 'from_csv',\\n\",\n            \" 'from_dict',\\n\",\n            \" 'from_file',\\n\",\n            \" 'from_json',\\n\",\n            \" 'from_pandas',\\n\",\n            \" 'from_text',\\n\",\n            \" 'get_index',\\n\",\n            \" 'get_nearest_examples',\\n\",\n            \" 'get_nearest_examples_batch',\\n\",\n            \" 'homepage',\\n\",\n            \" 'info',\\n\",\n            \" 'is_index_initialized',\\n\",\n            \" 'license',\\n\",\n            \" 'list_indexes',\\n\",\n            \" 'load_elasticsearch_index',\\n\",\n            \" 'load_faiss_index',\\n\",\n            \" 'load_from_disk',\\n\",\n            \" 'map',\\n\",\n            \" 'num_columns',\\n\",\n            \" 'num_rows',\\n\",\n            \" 'prepare_for_task',\\n\",\n            \" 'remove_columns',\\n\",\n            \" 'remove_columns_',\\n\",\n            \" 'rename_column',\\n\",\n            \" 'rename_column_',\\n\",\n            \" 'rename_columns',\\n\",\n            \" 'reset_format',\\n\",\n            \" 'save_faiss_index',\\n\",\n            \" 'save_to_disk',\\n\",\n            \" 'search',\\n\",\n            \" 'search_batch',\\n\",\n            \" 'select',\\n\",\n            \" 'set_format',\\n\",\n            \" 'set_transform',\\n\",\n            \" 'shape',\\n\",\n            \" 'shard',\\n\",\n            \" 'shuffle',\\n\",\n            \" 'size_in_bytes',\\n\",\n            \" 'sort',\\n\",\n            \" 'split',\\n\",\n            \" 'supervised_keys',\\n\",\n            \" 'to_csv',\\n\",\n            \" 'to_dict',\\n\",\n            \" 'to_json',\\n\",\n            \" 'to_pandas',\\n\",\n            \" 'train_test_split',\\n\",\n            \" 'unique',\\n\",\n            \" 'version',\\n\",\n            \" 'with_format',\\n\",\n            \" 'with_transform']\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"LcKjoobg7yy4\",\n        \"outputId\": \"9540b76d-eed6-496b-da59-71d2bce66b48\"\n      },\n      \"source\": [\n        \"cola.cache_files\"\n      ],\n      \"execution_count\": 137,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"[{'filename': '/root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad/glue-train.arrow'},\\n\",\n              \" {'filename': '/root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad/glue-validation.arrow'}]\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 137\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"UN7OLqp97Mdx\",\n        \"outputId\": \"265bd75e-c97e-4572-a65d-51b7ecfdb6ca\"\n      },\n      \"source\": [\n        \"cola.info\"\n      ],\n      \"execution_count\": 138,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"DatasetInfo(description='GLUE, the General Language Understanding Evaluation benchmark\\\\n(https://gluebenchmark.com/) is a collection of resources for training,\\\\nevaluating, and analyzing natural language understanding systems.\\\\n\\\\n', citation='@article{warstadt2018neural,\\\\n  title={Neural Network Acceptability Judgments},\\\\n  author={Warstadt, Alex and Singh, Amanpreet and Bowman, Samuel R},\\\\n  journal={arXiv preprint arXiv:1805.12471},\\\\n  year={2018}\\\\n}\\\\n@inproceedings{wang2019glue,\\\\n  title={{GLUE}: A Multi-Task Benchmark and Analysis Platform for Natural Language Understanding},\\\\n  author={Wang, Alex and Singh, Amanpreet and Michael, Julian and Hill, Felix and Levy, Omer and Bowman, Samuel R.},\\\\n  note={In the Proceedings of ICLR.},\\\\n  year={2019}\\\\n}\\\\n', homepage='https://nyu-mll.github.io/CoLA/', license='', features={'idx': Value(dtype='int32', id=None), 'label': ClassLabel(num_classes=2, names=['unacceptable', 'acceptable'], names_file=None, id=None), 'sentence': Value(dtype='string', id=None)}, post_processed=None, supervised_keys=None, task_templates=None, builder_name='glue', config_name='cola', version=1.0.0, splits={'train': SplitInfo(name='train', num_bytes=484873, num_examples=8551, dataset_name='glue'), 'validation': SplitInfo(name='validation', num_bytes=60326, num_examples=1043, dataset_name='glue'), 'test': SplitInfo(name='test', num_bytes=60517, num_examples=1063, dataset_name='glue')}, download_checksums={'https://dl.fbaipublicfiles.com/glue/data/CoLA.zip': {'num_bytes': 376971, 'checksum': 'f212fcd832b8f7b435fb991f101abf89f96b933ab400603bf198960dfc32cbff'}}, download_size=376971, post_processing_size=None, dataset_size=605716, size_in_bytes=982687)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 138\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"ZVXL4bJ1BUJ1\"\n      },\n      \"source\": [\n        \"## Dataset Filter and Map Function\\n\",\n        \"\\n\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"rZkGts_39ISL\"\n      },\n      \"source\": [\n        \"### Filter function\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"gthxqxRfG_wc\",\n        \"outputId\": \"1ce5f4af-0c71-4931-e3ab-2be3bd342ec9\"\n      },\n      \"source\": [\n        \"# To get 3 sentences ,including the term \\\"kick\\\" with Filter\\n\",\n        \"cola = load_dataset('glue', 'cola', split='train[:100%]+validation[-30%:]')\\n\",\n        \"pprint(cola.filter(lambda s: \\\"kick\\\" in s['sentence'])[\\\"sentence\\\"][:3])\"\n      ],\n      \"execution_count\": 139,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Reusing dataset glue (/root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad)\\n\",\n            \"Loading cached processed dataset at /root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad/cache-9893a54d32e436a9.arrow\\n\"\n          ],\n          \"name\": \"stderr\"\n        },\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"['Jill kicked the ball from home plate to third base.',\\n\",\n            \" 'Fred kicked the ball under the porch.',\\n\",\n            \" 'Fred kicked the ball behind the tree.']\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"6QHMyXqVHsrt\",\n        \"outputId\": \"7ddcd3bb-a4ba-4b00-c162-1cd3bbc5aa02\"\n      },\n      \"source\": [\n        \"# To get 3 acceptable sentences\\n\",\n        \"pprint(cola.filter(lambda s: s['label']== 1 )[\\\"sentence\\\"][:3])\"\n      ],\n      \"execution_count\": 140,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Loading cached processed dataset at /root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad/cache-f5b5fbadebcc9c76.arrow\\n\"\n          ],\n          \"name\": \"stderr\"\n        },\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"[\\\"Our friends won't buy this analysis, let alone the next one we propose.\\\",\\n\",\n            \" \\\"One more pseudo generalization and I'm giving up.\\\",\\n\",\n            \" \\\"One more pseudo generalization or I'm giving up.\\\"]\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"pXkjxZwnIu1o\",\n        \"outputId\": \"a43edbf3-f224-4f68-fa0e-c44b2a03c413\"\n      },\n      \"source\": [\n        \"# To get 3 acceptable sentences - alternative version\\n\",\n        \"cola.filter(lambda s: s['label']== cola.features['label'].str2int('acceptable'))[\\\"sentence\\\"][:3]\"\n      ],\n      \"execution_count\": 141,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Loading cached processed dataset at /root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad/cache-6665684662c122c0.arrow\\n\"\n          ],\n          \"name\": \"stderr\"\n        },\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"[\\\"Our friends won't buy this analysis, let alone the next one we propose.\\\",\\n\",\n              \" \\\"One more pseudo generalization and I'm giving up.\\\",\\n\",\n              \" \\\"One more pseudo generalization or I'm giving up.\\\"]\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 141\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"fuxdPIGhRRp6\"\n      },\n      \"source\": [\n        \"### Processing data with  map function\\n\",\n        \"datasets.Dataset.map() function iterates over the dataset applying a processing function to each examples in a dataset and modifies the content of the samples.\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"D7hEPB9gJzcO\",\n        \"outputId\": \"6917d96f-ea6e-4c5a-eeda-5389312d1c9e\"\n      },\n      \"source\": [\n        \"# E.g. adding new features\\n\",\n        \"cola_new=cola.map(lambda e: {'len': len(e['sentence'])})\"\n      ],\n      \"execution_count\": 142,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Loading cached processed dataset at /root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad/cache-624419b59807378b.arrow\\n\"\n          ],\n          \"name\": \"stderr\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"fBzIzv3SCr4F\",\n        \"outputId\": \"9d1317a7-319e-465d-8d68-1f1de2a79fbc\"\n      },\n      \"source\": [\n        \"cola_new\"\n      ],\n      \"execution_count\": 143,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"Dataset({\\n\",\n              \"    features: ['idx', 'label', 'len', 'sentence'],\\n\",\n              \"    num_rows: 8864\\n\",\n              \"})\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 143\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"V6yZbdB3Kiyk\",\n        \"outputId\": \"87075ea6-bed1-4342-c3be-265b515dc27b\"\n      },\n      \"source\": [\n        \"pprint(cola_new[0:3])\"\n      ],\n      \"execution_count\": 144,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"{'idx': [0, 1, 2],\\n\",\n            \" 'label': [1, 1, 1],\\n\",\n            \" 'len': [71, 49, 48],\\n\",\n            \" 'sentence': [\\\"Our friends won't buy this analysis, let alone the next one we \\\"\\n\",\n            \"              'propose.',\\n\",\n            \"              \\\"One more pseudo generalization and I'm giving up.\\\",\\n\",\n            \"              \\\"One more pseudo generalization or I'm giving up.\\\"]}\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"BV8FUZqZKxu4\",\n        \"outputId\": \"796afadd-abea-498a-eb18-944e05c4708d\"\n      },\n      \"source\": [\n        \"cola_cut=cola_new.map(lambda e: {'sentence': e['sentence'][:20]})\"\n      ],\n      \"execution_count\": 145,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Loading cached processed dataset at /root/.cache/huggingface/datasets/glue/cola/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad/cache-497438506d3d554b.arrow\\n\"\n          ],\n          \"name\": \"stderr\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"9ZZ7N7tXLdU3\",\n        \"outputId\": \"3561afc4-31d6-4206-e242-03e210ec7fcd\"\n      },\n      \"source\": [\n        \"pprint(cola_cut[:3])\"\n      ],\n      \"execution_count\": 146,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"{'idx': [0, 1, 2],\\n\",\n            \" 'label': [1, 1, 1],\\n\",\n            \" 'len': [71, 49, 48],\\n\",\n            \" 'sentence': [\\\"Our friends won't bu\\\",\\n\",\n            \"              'One more pseudo gene',\\n\",\n            \"              'One more pseudo gene']}\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"zYOl0pumR4Sa\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 146,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"VO1yD63jR_oX\"\n      },\n      \"source\": [\n        \"## Working with Local Files\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"ATU9RvvRUj3t\",\n        \"outputId\": \"691082ab-f89b-400e-8b4b-c4f7a57976de\"\n      },\n      \"source\": [\n        \"import os\\n\",\n        \"from google.colab import drive\\n\",\n        \"drive.mount('/content/drive')\"\n      ],\n      \"execution_count\": 147,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount(\\\"/content/drive\\\", force_remount=True).\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 35\n        },\n        \"id\": \"1-Psk5XmYiG4\",\n        \"outputId\": \"e06a96e6-c72a-43ab-aad1-0d95f3a6f877\"\n      },\n      \"source\": [\n        \"os.getcwd()\"\n      ],\n      \"execution_count\": 148,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"application/vnd.google.colaboratory.intrinsic+json\": {\n              \"type\": \"string\"\n            },\n            \"text/plain\": [\n              \"'/content/drive/My Drive/akademi/Packt NLP with Transformers/CH02'\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 148\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"13plSMLLYs4m\",\n        \"outputId\": \"81d63d95-35ac-4744-e381-cc3079e3879b\"\n      },\n      \"source\": [\n        \"os.listdir(\\\"/content/drive/My Drive/akademi/Packt NLP with Transformers/CH02\\\")\"\n      ],\n      \"execution_count\": 149,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"['CH02b_Working_with_Datasets_Libary.ipynb',\\n\",\n              \" 'data',\\n\",\n              \" 'CH02a_Working_with_Language_Models_and_Tokenizers.mp4',\\n\",\n              \" 'CH02a_Working_with_Language_Models_and_Tokenizers .ipynb',\\n\",\n              \" 'CH02c_Speed_and_Memory_Benchmarking.ipynb']\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 149\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"OsAmx8r5U5WC\"\n      },\n      \"source\": [\n        \"if os.getcwd()!='/content/drive/My Drive/akademi/Packt NLP with Transformers/CH02':\\n\",\n        \"    os.chdir(\\\"drive/MyDrive/akademi/Packt NLP with Transformers/CH02\\\")\"\n      ],\n      \"execution_count\": 150,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 35\n        },\n        \"id\": \"_lj0qbmrY6jo\",\n        \"outputId\": \"3e9bbfcf-cc27-4706-ca9c-6c441fa24612\"\n      },\n      \"source\": [\n        \"os.getcwd()\"\n      ],\n      \"execution_count\": 151,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"application/vnd.google.colaboratory.intrinsic+json\": {\n              \"type\": \"string\"\n            },\n            \"text/plain\": [\n              \"'/content/drive/My Drive/akademi/Packt NLP with Transformers/CH02'\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 151\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"KkJmZzW-ViHZ\",\n        \"outputId\": \"5e706836-4543-45d3-97df-94c34b1238cb\"\n      },\n      \"source\": [\n        \"os.listdir()\"\n      ],\n      \"execution_count\": 152,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"['CH02b_Working_with_Datasets_Libary.ipynb',\\n\",\n              \" 'data',\\n\",\n              \" 'CH02a_Working_with_Language_Models_and_Tokenizers.mp4',\\n\",\n              \" 'CH02a_Working_with_Language_Models_and_Tokenizers .ipynb',\\n\",\n              \" 'CH02c_Speed_and_Memory_Benchmarking.ipynb']\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 152\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"AoBmadKXSDSS\"\n      },\n      \"source\": [\n        \"# To load a dataset from local files CSV, TXT, JSON, a generic loading scripts are provided \"\n      ],\n      \"execution_count\": 153,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"bS_d1XDESVDT\",\n        \"outputId\": \"0c6ee4c3-4059-4e02-8aa7-ea18822c73ca\"\n      },\n      \"source\": [\n        \"# under data folder there are the files[a.csv, b.csv, c.csv], some random part of SST-2 dataset\\n\",\n        \"from datasets import load_dataset\\n\",\n        \"data1 = load_dataset('csv', data_files='./data/a.csv', delimiter=\\\"\\\\t\\\")\\n\",\n        \"data2 = load_dataset('csv', data_files=['./data/a.csv','./data/b.csv', './data/c.csv'], delimiter=\\\"\\\\t\\\")\\n\",\n        \"data3 = load_dataset('csv', data_files={'train':['./data/a.csv','./data/b.csv'], 'test':['./data/c.csv']}, delimiter=\\\"\\\\t\\\") \"\n      ],\n      \"execution_count\": 154,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Using custom data configuration default-811df5c9519fddd3\\n\",\n            \"Reusing dataset csv (/root/.cache/huggingface/datasets/csv/default-811df5c9519fddd3/0.0.0/2dc6629a9ff6b5697d82c25b73731dd440507a69cbce8b425db50b751e8fcfd0)\\n\",\n            \"Using custom data configuration default-37a89142f75f1c5a\\n\",\n            \"Reusing dataset csv (/root/.cache/huggingface/datasets/csv/default-37a89142f75f1c5a/0.0.0/2dc6629a9ff6b5697d82c25b73731dd440507a69cbce8b425db50b751e8fcfd0)\\n\",\n            \"Using custom data configuration default-6468b1b0b5900944\\n\",\n            \"Reusing dataset csv (/root/.cache/huggingface/datasets/csv/default-6468b1b0b5900944/0.0.0/2dc6629a9ff6b5697d82c25b73731dd440507a69cbce8b425db50b751e8fcfd0)\\n\"\n          ],\n          \"name\": \"stderr\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 142\n        },\n        \"id\": \"ZeHJzioJTNt3\",\n        \"outputId\": \"13187cd2-8d64-4b87-91ee-1e94e58c5a72\"\n      },\n      \"source\": [\n        \"import pandas as pd\\n\",\n        \"pd.DataFrame(data1[\\\"train\\\"][:3])\"\n      ],\n      \"execution_count\": 155,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/html\": [\n              \"<div>\\n\",\n              \"<style scoped>\\n\",\n              \"    .dataframe tbody tr th:only-of-type {\\n\",\n              \"        vertical-align: middle;\\n\",\n              \"    }\\n\",\n              \"\\n\",\n              \"    .dataframe tbody tr th {\\n\",\n              \"        vertical-align: top;\\n\",\n              \"    }\\n\",\n              \"\\n\",\n              \"    .dataframe thead th {\\n\",\n              \"        text-align: right;\\n\",\n              \"    }\\n\",\n              \"</style>\\n\",\n              \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n              \"  <thead>\\n\",\n              \"    <tr style=\\\"text-align: right;\\\">\\n\",\n              \"      <th></th>\\n\",\n              \"      <th>sentence</th>\\n\",\n              \"      <th>label</th>\\n\",\n              \"    </tr>\\n\",\n              \"  </thead>\\n\",\n              \"  <tbody>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>0</th>\\n\",\n              \"      <td>hide new secretions from the parental units</td>\\n\",\n              \"      <td>0</td>\\n\",\n              \"    </tr>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>1</th>\\n\",\n              \"      <td>contains no wit , only labored gags</td>\\n\",\n              \"      <td>0</td>\\n\",\n              \"    </tr>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>2</th>\\n\",\n              \"      <td>that loves its characters and communicates som...</td>\\n\",\n              \"      <td>1</td>\\n\",\n              \"    </tr>\\n\",\n              \"  </tbody>\\n\",\n              \"</table>\\n\",\n              \"</div>\"\n            ],\n            \"text/plain\": [\n              \"                                            sentence  label\\n\",\n              \"0       hide new secretions from the parental units       0\\n\",\n              \"1               contains no wit , only labored gags       0\\n\",\n              \"2  that loves its characters and communicates som...      1\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 155\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 142\n        },\n        \"id\": \"b2utSTp7WYIj\",\n        \"outputId\": \"35679bca-2640-4239-f7bd-e86cd2e476fd\"\n      },\n      \"source\": [\n        \"pd.DataFrame(data3[\\\"test\\\"][:3])\"\n      ],\n      \"execution_count\": 156,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/html\": [\n              \"<div>\\n\",\n              \"<style scoped>\\n\",\n              \"    .dataframe tbody tr th:only-of-type {\\n\",\n              \"        vertical-align: middle;\\n\",\n              \"    }\\n\",\n              \"\\n\",\n              \"    .dataframe tbody tr th {\\n\",\n              \"        vertical-align: top;\\n\",\n              \"    }\\n\",\n              \"\\n\",\n              \"    .dataframe thead th {\\n\",\n              \"        text-align: right;\\n\",\n              \"    }\\n\",\n              \"</style>\\n\",\n              \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n              \"  <thead>\\n\",\n              \"    <tr style=\\\"text-align: right;\\\">\\n\",\n              \"      <th></th>\\n\",\n              \"      <th>label</th>\\n\",\n              \"      <th>sentence</th>\\n\",\n              \"    </tr>\\n\",\n              \"  </thead>\\n\",\n              \"  <tbody>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>0</th>\\n\",\n              \"      <td>0</td>\\n\",\n              \"      <td>inane and awful</td>\\n\",\n              \"    </tr>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>1</th>\\n\",\n              \"      <td>0</td>\\n\",\n              \"      <td>told in scattered fashion</td>\\n\",\n              \"    </tr>\\n\",\n              \"    <tr>\\n\",\n              \"      <th>2</th>\\n\",\n              \"      <td>1</td>\\n\",\n              \"      <td>takes chances that are bold by studio standards</td>\\n\",\n              \"    </tr>\\n\",\n              \"  </tbody>\\n\",\n              \"</table>\\n\",\n              \"</div>\"\n            ],\n            \"text/plain\": [\n              \"   label                                          sentence\\n\",\n              \"0      0                                  inane and awful \\n\",\n              \"1      0                        told in scattered fashion \\n\",\n              \"2      1  takes chances that are bold by studio standards \"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 156\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"BgSL1tJDZtUb\"\n      },\n      \"source\": [\n        \"# get the files in other format\\n\",\n        \"# data_json = load_dataset('json', data_files='a.json')\\n\",\n        \"# data_text = load_dataset('text', data_files='a.txt')\\n\"\n      ],\n      \"execution_count\": 157,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"ZrhYk5RZcw_9\"\n      },\n      \"source\": [\n        \"#you can also access several rows using slice notation or with a list of indices\"\n      ],\n      \"execution_count\": 158,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"pNxR0MF2HCT0\"\n      },\n      \"source\": [\n        \"# shuffling\"\n      ],\n      \"execution_count\": 159,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"RE3xOlHagXsC\",\n        \"outputId\": \"45394197-8d4a-4d36-ff2e-0663487e5a6b\"\n      },\n      \"source\": [\n        \"data3_shuf=data3['train'].shuffle(seed=42)\\n\",\n        \"data3_shuf['label'][:15]\\n\"\n      ],\n      \"execution_count\": 160,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Loading cached shuffled indices for dataset at /root/.cache/huggingface/datasets/csv/default-6468b1b0b5900944/0.0.0/2dc6629a9ff6b5697d82c25b73731dd440507a69cbce8b425db50b751e8fcfd0/cache-3a29ecf37f77eb59.arrow\\n\"\n          ],\n          \"name\": \"stderr\"\n        },\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"[0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0]\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 160\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"6GgSENedtivK\"\n      },\n      \"source\": [\n        \"\\n\"\n      ],\n      \"execution_count\": 160,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"hzvvWYc_tjld\"\n      },\n      \"source\": [\n        \"## Preparing the data for model training\\n\",\n        \"Let us take an example with a tokenizer. \\n\",\n        \"To do so, we need to install transformers library\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"s2-XEKRHtvUM\",\n        \"outputId\": \"61e65f3b-1153-4da5-e15a-02bb32240569\"\n      },\n      \"source\": [\n        \"!pip install transformers\"\n      ],\n      \"execution_count\": 161,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Requirement already satisfied: transformers in /usr/local/lib/python3.7/dist-packages (4.8.2)\\n\",\n            \"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\n            \"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.45)\\n\",\n            \"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.5.0)\\n\",\n            \"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.10.3)\\n\",\n            \"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\n            \"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\n            \"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\n            \"Requirement already satisfied: huggingface-hub==0.0.12 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.12)\\n\",\n            \"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\n            \"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\n            \"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\n            \"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\n            \"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\n            \"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\n            \"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\n            \"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\n            \"Requirement already satisfied: typing-extensions>=3.6.4; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.7.4.3)\\n\",\n            \"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\n            \"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2021.5.30)\\n\",\n            \"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\n            \"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"JD0r-dcItb3D\"\n      },\n      \"source\": [\n        \"from transformers import DistilBertTokenizer\\n\",\n        \"tokenizer = DistilBertTokenizer.from_pretrained('distilbert-base-uncased')\"\n      ],\n      \"execution_count\": 162,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"leJcuyuHtdmh\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 162,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"eBfqdGSGBRKj\"\n      },\n      \"source\": [\n        \"If batched is True, it provides batch of examples to any function.\\n\",\n        \"batch_size (default is 1000) is  number of instances per batch provided to a function. If not selected, the whole dataset is provided as a single batch to any given function.\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"MckfxQQB1ljN\",\n        \"outputId\": \"b5c27f2e-e0e6-44a4-bc33-7f55767a28fe\"\n      },\n      \"source\": [\n        \"encoded_data1 = data1.map( lambda e: tokenizer(e['sentence']), batched=True, batch_size=1000)\"\n      ],\n      \"execution_count\": 163,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Loading cached processed dataset at /root/.cache/huggingface/datasets/csv/default-811df5c9519fddd3/0.0.0/2dc6629a9ff6b5697d82c25b73731dd440507a69cbce8b425db50b751e8fcfd0/cache-c17d30f249048b0c.arrow\\n\"\n          ],\n          \"name\": \"stderr\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"mfUEGoo3IMpt\",\n        \"outputId\": \"0f0e56a7-fd9f-4c7a-85e4-91adeec428c4\"\n      },\n      \"source\": [\n        \"data1\"\n      ],\n      \"execution_count\": 164,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"DatasetDict({\\n\",\n              \"    train: Dataset({\\n\",\n              \"        features: ['sentence', 'label'],\\n\",\n              \"        num_rows: 99\\n\",\n              \"    })\\n\",\n              \"})\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 164\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"P5SbL4tU1qVo\",\n        \"outputId\": \"6f1bfe4e-3272-4e7d-ece3-1ed5e0aa0dde\"\n      },\n      \"source\": [\n        \"encoded_data1\"\n      ],\n      \"execution_count\": 165,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"DatasetDict({\\n\",\n              \"    train: Dataset({\\n\",\n              \"        features: ['attention_mask', 'input_ids', 'label', 'sentence'],\\n\",\n              \"        num_rows: 99\\n\",\n              \"    })\\n\",\n              \"})\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 165\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"8XlrYuBiuPEH\",\n        \"outputId\": \"414bb20b-13f1-4cd0-bdab-6d83ed1bc9d4\"\n      },\n      \"source\": [\n        \"pprint(encoded_data1['train'][0])\"\n      ],\n      \"execution_count\": 166,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"{'attention_mask': [1, 1, 1, 1, 1, 1, 1, 1, 1, 1],\\n\",\n            \" 'input_ids': [101, 5342, 2047, 3595, 8496, 2013, 1996, 18643, 3197, 102],\\n\",\n            \" 'label': 0,\\n\",\n            \" 'sentence': 'hide new secretions from the parental units '}\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"LfZI9p-yuRmQ\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 166,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"GdvjGHWUzZlt\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"17c5dbd2-7681-4858-d21e-bd32613148b0\"\n      },\n      \"source\": [\n        \"encoded_data3 = data3.map(lambda e: tokenizer( e['sentence'], padding=True, truncation=True, max_length=12), batched=True, batch_size=1000) \"\n      ],\n      \"execution_count\": 167,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Loading cached processed dataset at /root/.cache/huggingface/datasets/csv/default-6468b1b0b5900944/0.0.0/2dc6629a9ff6b5697d82c25b73731dd440507a69cbce8b425db50b751e8fcfd0/cache-d1d250b2127835bc.arrow\\n\",\n            \"Loading cached processed dataset at /root/.cache/huggingface/datasets/csv/default-6468b1b0b5900944/0.0.0/2dc6629a9ff6b5697d82c25b73731dd440507a69cbce8b425db50b751e8fcfd0/cache-99b6e3afa67cadc0.arrow\\n\"\n          ],\n          \"name\": \"stderr\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"p-OQEKTKeUmJ\",\n        \"outputId\": \"15a2204e-ca64-4102-a2da-001ba36f81eb\"\n      },\n      \"source\": [\n        \"data3\"\n      ],\n      \"execution_count\": 168,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"DatasetDict({\\n\",\n              \"    train: Dataset({\\n\",\n              \"        features: ['sentence', 'label'],\\n\",\n              \"        num_rows: 199\\n\",\n              \"    })\\n\",\n              \"    test: Dataset({\\n\",\n              \"        features: ['label', 'sentence'],\\n\",\n              \"        num_rows: 100\\n\",\n              \"    })\\n\",\n              \"})\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 168\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"eCY68Toieb69\",\n        \"outputId\": \"5608c181-be6a-4247-bb44-cee557fb71d1\"\n      },\n      \"source\": [\n        \"encoded_data3\"\n      ],\n      \"execution_count\": 169,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"DatasetDict({\\n\",\n              \"    train: Dataset({\\n\",\n              \"        features: ['attention_mask', 'input_ids', 'label', 'sentence'],\\n\",\n              \"        num_rows: 199\\n\",\n              \"    })\\n\",\n              \"    test: Dataset({\\n\",\n              \"        features: ['attention_mask', 'input_ids', 'label', 'sentence'],\\n\",\n              \"        num_rows: 100\\n\",\n              \"    })\\n\",\n              \"})\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 169\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"IPgYyTebeey4\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"ce084847-0172-48fa-ded0-9b902b80f6bf\"\n      },\n      \"source\": [\n        \"pprint(encoded_data3['test'][12])\"\n      ],\n      \"execution_count\": 170,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"{'attention_mask': [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0],\\n\",\n            \" 'input_ids': [101, 2019, 5186, 16010, 2143, 1012, 102, 0, 0, 0, 0, 0],\\n\",\n            \" 'label': 0,\\n\",\n            \" 'sentence': 'an extremely unpleasant film . '}\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"AWekEQLreigN\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": 170,\n      \"outputs\": []\n    }\n  ]\n}"
  },
  {
    "path": "CH02/CH02c_Speed_and_Memory_Benchmarking.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH02.03 Speed and Memory Benchmarking.ipynb\",\"provenance\":[],\"authorship_tag\":\"ABX9TyOcl0qSOSMxRqejrDDfrnBR\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"},\"accelerator\":\"GPU\",\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"b27d75784cfa4a2a8c3529da81049e42\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_e78b3d5e651744f2a4b2b7dcc11ce62d\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_0b4a42cbaede42ceb47d67a9b7f141c0\",\"IPY_MODEL_eda2b4c00d6b4f4ba941596c6a3f43bc\"]}},\"e78b3d5e651744f2a4b2b7dcc11ce62d\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"0b4a42cbaede42ceb47d67a9b7f141c0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_036310d8e6c74efebd4f47e866b68df4\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":433,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":433,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_bd439a14abb94c4db26f69a9415c79d7\"}},\"eda2b4c00d6b4f4ba941596c6a3f43bc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_c4ab87fc45f445c9bbc79f1daebeba23\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 433/433 [00:00&lt;00:00, 1.86kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d1a3ffbfea2b4d759778c2aeb292b8df\"}},\"036310d8e6c74efebd4f47e866b68df4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"bd439a14abb94c4db26f69a9415c79d7\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c4ab87fc45f445c9bbc79f1daebeba23\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"d1a3ffbfea2b4d759778c2aeb292b8df\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e60de920bc104bd193c0caf99059b863\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_26f97a946743425f81b5ebbdd0efc1e8\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_6db6bdf2fd26458994b31276a6a2fc3f\",\"IPY_MODEL_7b7801a205ab47d49bdbaa13d1f7ba17\"]}},\"26f97a946743425f81b5ebbdd0efc1e8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"6db6bdf2fd26458994b31276a6a2fc3f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_d63f982a37ed47e6823bf3d8fb5936b2\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":464,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":464,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a2104c52b09240ef9e5ae40cb1f59e1f\"}},\"7b7801a205ab47d49bdbaa13d1f7ba17\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_9f06ce6534144619ac7995896213481b\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 464/464 [00:07&lt;00:00, 65.4B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_303e60b5a37e4a79b1b2306ae25f1e15\"}},\"d63f982a37ed47e6823bf3d8fb5936b2\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"a2104c52b09240ef9e5ae40cb1f59e1f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"9f06ce6534144619ac7995896213481b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"303e60b5a37e4a79b1b2306ae25f1e15\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}}},\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"1JxmBoIKCg7v\"},\"source\":[\"# Speed and Memory Bencmarking \"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"UKneYJDbpiHC\"},\"source\":[\"Just comparing language models on their performance on a specific task or a benchmark turns out to be no longer sufficient. We now must take care of the computational cost of a particular model for a given environment (RAM, CPU, GPU, TPU) in terms of memory usage and the speed. The computational cost of training and deploying to production for inference are two main values to be measured. Two classes of Transformer libary, PyTorchBenchmark and TensorFlowBenchmark, make it possible to benchmark models for both TensorFlow and PyTorch.\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"KMh8r2ofLq1X\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618942683721,\"user_tz\":-180,\"elapsed\":1107,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"ba31b428-2f8c-476f-b1a1-c4c670a95c5f\"},\"source\":[\"!nvidia-smi\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Tue Apr 20 18:18:02 2021       \\n\",\"+-----------------------------------------------------------------------------+\\n\",\"| NVIDIA-SMI 460.67       Driver Version: 460.32.03    CUDA Version: 11.2     |\\n\",\"|-------------------------------+----------------------+----------------------+\\n\",\"| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |\\n\",\"| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |\\n\",\"|                               |                      |               MIG M. |\\n\",\"|===============================+======================+======================|\\n\",\"|   0  Tesla P100-PCIE...  Off  | 00000000:00:04.0 Off |                    0 |\\n\",\"| N/A   35C    P0    27W / 250W |      0MiB / 16280MiB |      0%      Default |\\n\",\"|                               |                      |                  N/A |\\n\",\"+-------------------------------+----------------------+----------------------+\\n\",\"                                                                               \\n\",\"+-----------------------------------------------------------------------------+\\n\",\"| Processes:                                                                  |\\n\",\"|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |\\n\",\"|        ID   ID                                                   Usage      |\\n\",\"|=============================================================================|\\n\",\"|  No running processes found                                                 |\\n\",\"+-----------------------------------------------------------------------------+\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"WhDEDgtofPKl\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618942697627,\"user_tz\":-180,\"elapsed\":3329,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"890e1ac3-c365-4ec2-ca3d-51bf462718be\"},\"source\":[\"import torch \\n\",\"print(f\\\"The GPU total memory is {torch.cuda.get_device_properties(0).total_memory /(1024**3)} GB\\\") \"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"The GPU total memory is 15.8992919921875 GB\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"ezQcxnktCl_2\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618942706101,\"user_tz\":-180,\"elapsed\":10497,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"702548ff-ca32-4198-80f7-c9a3a6f85763\"},\"source\":[\"!pip install transformers\\n\",\"!pip install py3nvml==0.2.5\"],\"execution_count\":3,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Collecting transformers\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d8/b2/57495b5309f09fa501866e225c84532d1fd89536ea62406b2181933fb418/transformers-4.5.1-py3-none-any.whl (2.1MB)\\n\",\"\\u001b[K     |████████████████████████████████| 2.1MB 5.8MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Collecting tokenizers<0.11,>=0.10.1\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/ae/04/5b870f26a858552025a62f1649c20d29d2672c02ff3c3fb4c688ca46467a/tokenizers-0.10.2-cp37-cp37m-manylinux2010_x86_64.whl (3.3MB)\\n\",\"\\u001b[K     |████████████████████████████████| 3.3MB 21.6MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Collecting sacremoses\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/ee/67241dc87f266093c533a2d4d3d69438e57d7a90abb216fa076e7d475d4a/sacremoses-0.0.45-py3-none-any.whl (895kB)\\n\",\"\\u001b[K     |████████████████████████████████| 901kB 34.6MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (3.10.1)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2020.12.5)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: typing-extensions>=3.6.4; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Installing collected packages: tokenizers, sacremoses, transformers\\n\",\"Successfully installed sacremoses-0.0.45 tokenizers-0.10.2 transformers-4.5.1\\n\",\"Collecting py3nvml==0.2.5\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/e0/5e/9ae2fabc0004eb0187062c886a6ab8fd027fa9ff08d5ab153480a53e5e89/py3nvml-0.2.5-py3-none-any.whl (61kB)\\n\",\"\\u001b[K     |████████████████████████████████| 61kB 3.4MB/s \\n\",\"\\u001b[?25hCollecting xmltodict\\n\",\"  Downloading https://files.pythonhosted.org/packages/28/fd/30d5c1d3ac29ce229f6bdc40bbc20b28f716e8b363140c26eff19122d8a5/xmltodict-0.12.0-py2.py3-none-any.whl\\n\",\"Installing collected packages: xmltodict, py3nvml\\n\",\"Successfully installed py3nvml-0.2.5 xmltodict-0.12.0\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"t9RXTKUpCmCZ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618942753537,\"user_tz\":-180,\"elapsed\":802,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\\n\",\"from transformers import PyTorchBenchmark, PyTorchBenchmarkArguments\\n\",\"models= [\\\"distilbert-base-uncased\\\",\\\"distilroberta-base\\\", \\\"albert-base-v2\\\"]\\n\",\"batch_sizes=[16]\\n\",\"sequence_lengths=[64, 128, 256, 512]\\n\",\"\\n\",\"args = PyTorchBenchmarkArguments(  models=models, batch_sizes=batch_sizes, sequence_lengths=sequence_lengths)\\n\",\"benchmark = PyTorchBenchmark(args)\"],\"execution_count\":7,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"i9EjBL2XQ-04\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":117,\"referenced_widgets\":[\"b27d75784cfa4a2a8c3529da81049e42\",\"e78b3d5e651744f2a4b2b7dcc11ce62d\",\"0b4a42cbaede42ceb47d67a9b7f141c0\",\"eda2b4c00d6b4f4ba941596c6a3f43bc\",\"036310d8e6c74efebd4f47e866b68df4\",\"bd439a14abb94c4db26f69a9415c79d7\",\"c4ab87fc45f445c9bbc79f1daebeba23\",\"d1a3ffbfea2b4d759778c2aeb292b8df\",\"e60de920bc104bd193c0caf99059b863\",\"26f97a946743425f81b5ebbdd0efc1e8\",\"6db6bdf2fd26458994b31276a6a2fc3f\",\"7b7801a205ab47d49bdbaa13d1f7ba17\",\"d63f982a37ed47e6823bf3d8fb5936b2\",\"a2104c52b09240ef9e5ae40cb1f59e1f\",\"9f06ce6534144619ac7995896213481b\",\"303e60b5a37e4a79b1b2306ae25f1e15\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618942810265,\"user_tz\":-180,\"elapsed\":1363,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"aacb31cc-d258-41f1-c4e4-f64c8eeda31e\"},\"source\":[\"from transformers import PyTorchBenchmark, PyTorchBenchmarkArguments \\n\",\"models= [\\\"bert-base-uncased\\\",\\\"distilbert-base-uncased\\\",\\\"distilroberta-base\\\", \\\"distilbert-base-german-cased\\\"] \\n\",\"batch_sizes=[4] \\n\",\"sequence_lengths=[32,64, 128, 256,512] \\n\",\"args = PyTorchBenchmarkArguments(models=models, batch_sizes=batch_sizes, sequence_lengths=sequence_lengths, multi_process=False) \\n\",\"benchmark = PyTorchBenchmark(args) \"],\"execution_count\":10,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"b27d75784cfa4a2a8c3529da81049e42\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=433.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"e60de920bc104bd193c0caf99059b863\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=464.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Mi6wYnC6Skbu\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618942814427,\"user_tz\":-180,\"elapsed\":824,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":10,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"qymxZzmhSrjY\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618942815747,\"user_tz\":-180,\"elapsed\":822,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"# it takes time depending on your  CPU/GPU capacity and selection\"],\"execution_count\":11,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"gIwPFXHBMhRy\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618942938481,\"user_tz\":-180,\"elapsed\":122440,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"81e8fa89-d0d5-4b32-b8ea-112a49c2007a\"},\"source\":[\"results = benchmark.run()\"],\"execution_count\":12,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"1 / 4\\n\",\"2 / 4\\n\",\"3 / 4\\n\",\"4 / 4\\n\",\"\\n\",\"====================       INFERENCE - SPEED - RESULT       ====================\\n\",\"--------------------------------------------------------------------------------\\n\",\"          Model Name             Batch Size     Seq Length     Time in s   \\n\",\"--------------------------------------------------------------------------------\\n\",\"      bert-base-uncased              4               32            0.008     \\n\",\"      bert-base-uncased              4               64            0.009     \\n\",\"      bert-base-uncased              4              128            0.015     \\n\",\"      bert-base-uncased              4              256             0.03     \\n\",\"      bert-base-uncased              4              512            0.062     \\n\",\"   distilbert-base-uncased           4               32            0.004     \\n\",\"   distilbert-base-uncased           4               64            0.004     \\n\",\"   distilbert-base-uncased           4              128            0.006     \\n\",\"   distilbert-base-uncased           4              256            0.011     \\n\",\"   distilbert-base-uncased           4              512            0.024     \\n\",\"      distilroberta-base             4               32            0.004     \\n\",\"      distilroberta-base             4               64            0.004     \\n\",\"      distilroberta-base             4              128            0.007     \\n\",\"      distilroberta-base             4              256            0.013     \\n\",\"      distilroberta-base             4              512            0.027     \\n\",\" distilbert-base-german-cased        4               32            0.004     \\n\",\" distilbert-base-german-cased        4               64            0.004     \\n\",\" distilbert-base-german-cased        4              128            0.006     \\n\",\" distilbert-base-german-cased        4              256            0.011     \\n\",\" distilbert-base-german-cased        4              512            0.022     \\n\",\"--------------------------------------------------------------------------------\\n\",\"\\n\",\"====================      INFERENCE - MEMORY - RESULT       ====================\\n\",\"--------------------------------------------------------------------------------\\n\",\"          Model Name             Batch Size     Seq Length    Memory in MB \\n\",\"--------------------------------------------------------------------------------\\n\",\"      bert-base-uncased              4               32             1371     \\n\",\"      bert-base-uncased              4               64             1407     \\n\",\"      bert-base-uncased              4              128             1469     \\n\",\"      bert-base-uncased              4              256             1589     \\n\",\"      bert-base-uncased              4              512             1829     \\n\",\"   distilbert-base-uncased           4               32             1829     \\n\",\"   distilbert-base-uncased           4               64             1829     \\n\",\"   distilbert-base-uncased           4              128             1829     \\n\",\"   distilbert-base-uncased           4              256             1829     \\n\",\"   distilbert-base-uncased           4              512             1829     \\n\",\"      distilroberta-base             4               32             1829     \\n\",\"      distilroberta-base             4               64             1829     \\n\",\"      distilroberta-base             4              128             1829     \\n\",\"      distilroberta-base             4              256             2027     \\n\",\"      distilroberta-base             4              512             2421     \\n\",\" distilbert-base-german-cased        4               32             2421     \\n\",\" distilbert-base-german-cased        4               64             2421     \\n\",\" distilbert-base-german-cased        4              128             2421     \\n\",\" distilbert-base-german-cased        4              256             2421     \\n\",\" distilbert-base-german-cased        4              512             2421     \\n\",\"--------------------------------------------------------------------------------\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"H-0RZxkklSdo\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":513},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618942959745,\"user_tz\":-180,\"elapsed\":1530,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"93fd0d20-a5aa-4dc7-91f7-57bac447c4ad\"},\"source\":[\"import matplotlib.pyplot as plt \\n\",\"plt.figure(figsize=(8,8)) \\n\",\"t=sequence_lengths \\n\",\"models_perf=[list(results.time_inference_result[m]['result'][batch_sizes[0]].values()) for m in models] \\n\",\"plt.xlabel('Seq Length') \\n\",\"plt.ylabel('Time in Second') \\n\",\"plt.title('Inference Speed Result') \\n\",\"plt.plot(t, models_perf[0], 'rs--', t, models_perf[1], 'g--.', t, models_perf[2], 'b--^', t, models_perf[3], 'c--o') \\n\",\"plt.legend(models)  \\n\",\"plt.show() \"],\"execution_count\":13,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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iODV7e7c2WuxL1zoLS1bguh/woCp27cz9Mcf2XTwIAZsOniQoT/+yNTt20/43OEs+Qp5l1Rdv3493bp1o1mzZrRv354ffvgh+LrDhg2jZcuWXHnllTz//PM8+eSTJCQkBIvMhHL+cJRsXb9+Pa1ataJJkybcddddh/UajBs3Lvj8e++9FyC48t6AAQOIjY1l8eLFnHfeeQwcOJD69etz9dVXM2/ePNq2bUu9evVYvnw5AMuXL6d169YkJibSpk2b4GcyefJkevfuTbdu3ahXrx633XZbnnFmZmYycuRIYmNjiYuL46mnngK8L2DNmzcnNjaWoUOHkr1A1Pjx44Ofb9++fQHYt28f1157LS1atCAxMZG3334bgAMHDtC3b18aNmzIZZddxoEDB/KMQUSOonp1GDXKmxUfZavPhSSvUnHF8RZSydcvvjji9kygvGitpUuNjz464nb64sVmZrbj4MEjnhuKoij5mldJ1QsuuMDWrFljZmaffvqpderUKXie7t27W0ZGhpmZ3XvvvTZu3Lh848/v/OEo2dq9e3ebNm2amZk999xzVrFiRTMz++CDD2zIkCGWlZVlmZmZ1r17d/v4449t48aN5pyzZcuWmZnZxo0bLSYmxr7++mvLzMy0pk2b2qBBgywrK8tmzZplvXr1MjOzlJQUS09PNzOzDz/80Hr37m1mZpMmTbK6devab7/9ZgcOHLDatWvb5s2bj4jz2Weftcsvvzx4jl27dh3208ysf//+Nnv2bDMzq1GjhqWlpR32Oxk1apRNmTIluK1evXqWmppqjz/+eLDs7ldffWUxMTHBzzonlXwVyce335p99ZXfURQZ8in5qm75gK0HD+a5fVdGxgmdN2fJV6DAkq89evSgR48ex3T+3CVVe/fuTWpqKkuXLqVPnz7B4w7meH99+vQJqZJcfucHr2TrXXfdxW+//UZqamqwYlt2ydYrr7wyeOzcuXP5+uuvgz0PKSkprF27lrq5usmWLVsWXDO+X79+jBw5Mvj8uXPnkpiYCHjFdtauXUvt2rU555xzaNWqVfAcdevWpUmTJgDB3gbnHE2aNCE5OTn4+tdccw1r167FORcsSAPQuXNnKleuDECjRo3YtGkTtWrVOizOefPmMWzYMEoHZtyedtppAHz00Uc8+uij7N+/n927d9O4cWN69uxJXFwcV199NZdeeimX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\\n\",\"text/plain\":[\"<Figure size 576x576 with 1 Axes>\"]},\"metadata\":{\"tags\":[],\"needs_background\":\"light\"}}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"2g-ObOQpmmS2\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}\n"
  },
  {
    "path": "CH02/data/a.csv",
    "content": "sentence\tlabel\nhide new secretions from the parental units \t0\ncontains no wit , only labored gags \t0\nthat loves its characters and communicates something rather beautiful about human nature \t1\nremains utterly satisfied to remain the same throughout \t0\non the worst revenge-of-the-nerds clichés the filmmakers could dredge up \t0\nthat 's far too tragic to merit such superficial treatment \t0\ndemonstrates that the director of such hollywood blockbusters as patriot games can still turn out a small , personal film with an emotional wallop . \t1\nof saucy \t1\na depressed fifteen-year-old 's suicidal poetry \t0\nare more deeply thought through than in most ` right-thinking ' films \t1\ngoes to absurd lengths \t0\nfor those moviegoers who complain that ` they do n't make movies like they used to anymore \t0\nthe part where nothing 's happening , \t0\nsaw how bad this movie was \t0\nlend some dignity to a dumb story \t0\nthe greatest musicians \t1\ncold movie \t0\nwith his usual intelligence and subtlety \t1\nredundant concept \t0\nswimming is above all about a young woman 's face , and by casting an actress whose face projects that woman 's doubts and yearnings , it succeeds . \t1\nequals the original and in some ways even betters it \t1\nif anything , see it for karen black , who camps up a storm as a fringe feminist conspiracy theorist named dirty dick . \t1\na smile on your face \t1\ncomes from the brave , uninhibited performances \t1\nexcruciatingly unfunny and pitifully unromantic \t0\nenriched by an imaginatively mixed cast of antic spirits \t1\nwhich half of dragonfly is worse : the part where nothing 's happening , or the part where something 's happening \t0\nin world cinema \t1\nvery good viewing alternative \t1\nthe plot is nothing but boilerplate clichés from start to finish , \t0\nthe action is stilted \t0\non all cylinders \t1\nwill find little of interest in this film , which is often preachy and poorly acted \t0\nby far the worst movie of the year \t0\nsit through , \t0\nmore than another `` best man '' clone by weaving a theme throughout this funny film \t1\nit 's about issues most adults have to face in marriage and i think that 's what i liked about it -- the real issues tucked between the silly and crude storyline \t1\nheroes \t1\noblivious to the existence of this film \t0\nsharply \t1\nthe entire point of a shaggy dog story , of course , is that it goes nowhere , and this is classic nowheresville in every sense . \t0\nsometimes dry \t0\nas they come , already having been recycled more times than i 'd care to count \t0\ncovers this territory with wit and originality , suggesting that with his fourth feature \t1\na $ 40 million version of a game \t0\ngorgeous and deceptively minimalist \t1\ncross swords with the best of them and \t1\nas a fringe feminist conspiracy theorist \t0\nproves once again he has n't lost his touch , bringing off a superb performance in an admittedly middling film . \t1\ndisappointments \t0\nthe horrors \t0\na muddle splashed with bloody beauty as vivid as any scorsese has ever given us . \t1\nmany pointless \t0\na beautifully \t1\ncontrived , well-worn situations \t0\na doa \t0\npoor ben bratt could n't find stardom if mapquest emailed him point-to-point driving directions . \t0\nto be as subtle and touching as the son 's room \t1\nstarts with a legend \t1\nfar less sophisticated and \t0\nrich veins of funny stuff in this movie \t1\nno apparent joy \t0\nshot on ugly digital video \t0\n... a sour little movie at its core ; an exploration of the emptiness that underlay the relentless gaiety of the 1920 's ... the film 's ending has a `` what was it all for ? '' \t0\nthough ford and neeson capably hold our interest , but its just not a thrilling movie \t0\nis pretty damned funny . \t1\nwe never feel anything for these characters \t0\n's a lousy one at that \t0\nthe corporate circus that is the recording industry in the current climate of mergers and downsizing \t0\nthe storylines are woven together skilfully , the magnificent swooping aerial shots are breathtaking , and the overall experience is awesome . \t1\nof the most highly-praised disappointments i \t0\nsounds like a cruel deception carried out by men of marginal intelligence , with reactionary ideas about women and a total lack of empathy . \t0\nseem fresh \t1\nto the dustbin of history \t0\nas a director , eastwood is off his game \t0\npays earnest homage to turntablists \t1\nweak and \t0\nskip this dreck , \t0\ncontains very few laughs and even less surprises \t0\nfilm to affirm love 's power to help people endure almost unimaginable horror \t1\nare an absolute joy \t1\ngenerates \t1\n, like life , is n't much fun without the highs and lows \t1\nbased on a true and historically significant story \t1\nwell-rounded tribute \t1\n, though many of the actors throw off a spark or two when they first appear , they ca n't generate enough heat in this cold vacuum of a comedy to start a reaction . \t0\nso much like a young robert deniro \t1\nkhouri manages , with terrific flair , to keep the extremes of screwball farce and blood-curdling family intensity on one continuum . \t1\nfashioning an engrossing entertainment out \t1\nspiffy animated feature \t1\nthat 's so sloppily written and cast that you can not believe anyone more central to the creation of bugsy than the caterer \t0\nalternating between facetious comic parody and pulp melodrama , this smart-aleck movie ... tosses around some intriguing questions about the difference between human and android life \t1\nstrung-together moments \t0\n, generous and subversive artworks \t1\nit does n't follow the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world \t1\nfunny yet \t1\noverbearing and over-the-top \t0\nit 's robert duvall ! \t1\nrich and sudden wisdom \t1\n"
  },
  {
    "path": "CH02/data/b.csv",
    "content": "sentence\tlabel\nreally , save your disgust and your indifference \t0\nfive screenwriters are credited with the cliché-laden screenplay \t0\njoyous \t1\ngets us too drunk on the party favors to sober us up with the transparent attempts at moralizing . \t0\nthen blood work is for you . \t1\n, frida gets the job done . \t1\nthe class warfare \t0\nagainst shimmering cinematography that lends the setting the ethereal beauty of an asian landscape painting \t1\na transparently hypocritical work that feels as though it 's trying to set the women 's liberation movement back 20 years \t0\nmay rate as the most magical and most fun family fare of this or any recent holiday season \t1\ntheir contrast is neither dramatic nor comic -- it 's just a weird fizzle . \t0\nlacks in eye-popping visuals \t0\nability to pull together easily accessible stories that resonate with profundity \t1\nan equally miserable film \t0\nits heartfelt concern about north korea 's recent past and south korea 's future \t1\nso pat it makes your teeth hurt \t0\na delightful entree in the tradition of food movies . \t1\nsplash \t1\nof gags that rely on the strength of their own cleverness \t1\nboth the scenic splendor \t1\ni saw it as a young boy \t1\nwildly incompetent but brilliantly named half past dead -- or for seagal pessimists : \t0\nyou may be captivated , as i was , by its moods , and by its subtly transformed star , and still wonder why paul thomas anderson ever had the inclination to make the most sincere and artful movie in which adam sandler will probably ever appear . \t1\na chilling tale of one of the great crimes \t1\nstarts out \t1\nthe situation in a well-balanced fashion \t1\nwhich was shot two years ago \t1\nbecomes something about how lame it is to try and evade your responsibilities \t0\nwill keep coming \t1\nyou 'd be hard put to find a movie character more unattractive or odorous ( than leon ) . \t0\nproves that director m. night shyamalan can weave an eerie spell and that mel gibson can gasp , shudder and even tremble without losing his machismo . \t1\nwhere this was lazy but enjoyable , a formula comedy redeemed by its stars , that is even lazier and far less enjoyable . \t0\na total lack \t0\na hallmark film in an increasingly important film industry and worth the look \t1\nthe company 's astonishing growth \t1\nof afghan tragedies \t0\nlanguorous slo-mo sequences \t0\n's characteristically startling visual style and an almost palpable sense of intensity . \t1\nis a masterpiece of elegant wit and artifice . \t1\noffers a guilt-free trip into feel-good territory . \t1\npicture-perfect life \t1\nmaster class . \t1\njunior-high \t1\nfinds amusing juxtapositions that justify his exercise . \t1\nrigid and evasive in ways \t0\nbilly crystal and robert de niro sleepwalk through vulgarities in a sequel you can refuse . \t0\na fine-looking film with a bouncy score \t1\npromisingly \t1\nthe entire movie is in need of a scented bath . \t0\nweirdo actor crispin glover \t0\ntakes its title all too literally . \t0\nis loopy and ludicrous ... \t0\nthreatens \t0\nthere , done that \t1\nwho 's finally been given a part worthy of her considerable talents \t1\nwhat makes the movie special \t1\nthe action looks fake \t0\nblood work is laughable in the solemnity with which it tries to pump life into overworked elements from eastwood 's dirty harry period . \t0\nmaintaining consciousness just long enough \t0\ndifficult to feel anything much while watching this movie , beyond mild disturbance or detached pleasure at the acting \t0\nis so fascinating that you wo n't care . \t1\nwatching this gentle , mesmerizing portrait of a man coming to terms with time , you barely realize your mind is being blown . \t1\ndoes justice both to stevenson and to the sci-fi genre \t1\na better movie \t1\nmonotone \t0\nfaced with the possibility that her life is meaningless , vapid and devoid of substance , in a movie that is definitely meaningless , vapid and devoid of substance \t0\n's always enthralling . \t1\n, another gross-out college comedy -- ugh . \t0\naffirms \t1\ngets added disdain for the fact that it is nearly impossible to look at or understand . \t0\nformuliac , but fun . \t1\na quietly moving look back at what it was to be iranian-american in 1979 . \t1\nto hit theaters since beauty and the beast 11 years ago \t1\nwell-done \t1\nfighting games , wire fu , horror movies , mystery , james bond , wrestling , sci-fi and anime into one big bloody stew \t1\ndialogue and likeable characters \t1\npart biography , part entertainment and part history \t1\n, the film 's mid-to-low budget is betrayed by the surprisingly shoddy makeup work . \t0\na rather dull , unimaginative car chase \t0\nis nothing short of a great one . \t1\na supremely hopeful cautionary tale of war 's madness remembered that we , today , can prevent its tragic waste of life \t1\nis so bad that i even caught the gum stuck under my seat trying to sneak out of the theater \t0\n90-plus years taking the effort to share his impressions of life and loss and time and art with us \t1\nconfuses its message with an ultimate desire to please , and contorting itself into an idea of expectation \t0\ncomedy ensemble \t1\nthrows quirky characters , odd situations , and off-kilter dialogue at us , all as if to say , `` look at this ! \t0\nbrilliant movie \t1\ntoo interested in jerking off in all its byzantine incarnations to bother pleasuring its audience \t0\n's stuffy and pretentious \t0\npolished , \t1\nworks more often than it does n't . \t1\nat least passably \t1\ni also believe that resident evil is not it . \t0\nseem to be in a contest to see who can out-bad-act the other \t0\nshowing off his doctorate \t1\na delightful comedy \t1\nanguish , anger and frustration \t0\nat achieving the modest , crowd-pleasing goals it sets for itself \t1\na patient viewer \t1\nthis new jangle of noise , mayhem and stupidity must be a serious contender for the title . \t0\n"
  },
  {
    "path": "CH02/data/c.csv",
    "content": "sentence\tlabel\ninane and awful \t0\ntold in scattered fashion \t0\ntakes chances that are bold by studio standards \t1\nbelieve it or not , jason actually takes a backseat in his own film to special effects \t0\nonly thing to fear about `` fear dot com '' \t0\nwhole mess \t0\nmanages to infuse the rocky path to sibling reconciliation with flashes of warmth and gentle humor \t1\nworking from a surprisingly sensitive script co-written by gianni romoli ... ozpetek avoids most of the pitfalls you 'd expect in such a potentially sudsy set-up . \t1\na résumé loaded with credits like `` girl in bar # 3 \t0\nenjoy the ride \t1\nvery little to add beyond the dark visions already relayed by superb recent predecessors \t0\nthe , yes , snail-like pacing \t0\nan extremely unpleasant film . \t0\nif it is n't entirely persuasive , it does give exposure to some talented performers \t1\nthe whole affair , true story or not , feels incredibly hokey ... \t0\nare all things we 've seen before \t0\npoignant and leavened \t1\nbreathless anticipation \t1\nsignificantly better \t1\nas predictable as the tides \t0\nbewilderingly brilliant and entertaining \t1\nit 's smooth and professional \t1\n, unassuming , subordinate \t0\nthe horror \t0\na technically superb film \t1\nthe positive change in tone here seems to have recharged him . \t1\npays earnest homage to turntablists and beat jugglers , old schoolers and current innovators \t1\na dim \t0\n, vicious and absurd \t0\nbecause he acts so goofy all the time \t0\nto a kinetic life so teeming that even cranky adults may rediscover the quivering kid inside \t1\n's at once laughable and compulsively watchable , \t1\nmerit its 103-minute length \t1\nthe value and respect for the term epic cinema \t1\nas a dentist 's waiting room \t0\nshowing honest emotions \t1\namazingly lame . \t0\nconfessions may not be a straightforward bio \t0\nseems a disappointingly thin slice of lower-class london life ; despite the title ... amounts to surprisingly little \t0\nthe story is bogus and \t0\nthis comic gem is as delightful as it is derivative . \t1\nto spare wildlife \t1\nugly as the shabby digital photography \t0\nunderstand the difference between dumb fun and just plain dumb \t0\ntraditionally structured \t1\nfrida is n't that much different from many a hollywood romance . \t0\ndoes point the way for adventurous indian filmmakers toward a crossover into nonethnic markets . \t1\nare worth the price of admission ... if `` gory mayhem '' is your idea of a good time \t1\nwas produced by jerry bruckheimer and directed by joel schumacher , and reflects the worst of their shallow styles : wildly overproduced , inadequately motivated every step of the way and demographically targeted to please every one ( and no one ) \t0\ncarnage and \t0\ndegraded , handheld blair witch video-cam footage \t0\nsecond fiddle \t0\nabout the folly of superficiality that is itself \t0\nserves as auto-critique , and its clumsiness as its own most damning censure . \t0\ntedious norwegian offering which somehow snagged an oscar nomination . \t0\n, esther kahn is unusual but unfortunately also irritating . \t0\na stylish exercise \t1\nhalfway through this picture i was beginning to hate it \t0\na setup so easy it borders on facile \t0\na thoroughly awful movie \t0\ntakes hold and grips hard \t1\nlook smeary and blurry , to the point of distraction \t0\nthe picture 's fascinating byways \t1\nguns , cheatfully filmed martial arts , disintegrating bloodsucker computer effects and jagged camera moves \t0\nbreezy , distracted rhythms \t0\nthan this mess \t0\nevanescent , seamless and sumptuous stream \t1\nslick and manufactured to claim street credibility . \t1\ntake care is nicely performed by a quintet of actresses , \t1\nvaluable messages \t1\nin no small part thanks to lau \t1\ntwo guys who desperately want to be quentin tarantino when they grow up \t0\nno new plot conceptions \t0\nessentially a collection of bits -- \t0\ndoes n't bode well for the rest of it \t0\nelevated by it -- the kind of movie \t1\nusual worst \t0\nhugh grant , who has a good line in charm \t1\narrive early and stay late \t1\nis a pan-american movie , with moments of genuine insight into the urban heart . \t1\ni could have used my two hours better watching being john malkovich again . \t0\nshot in artful , watery tones of blue , green and brown \t1\nan unorthodox little film noir organized crime story that includes one of the strangest \t1\nconsiderable aplomb \t1\nacted by diane lane and richard gere . \t1\nscant \t0\nan admittedly middling film \t1\ntoo ludicrous \t0\nthe rock 's fighting skills are more in line with steven seagal \t1\nrich and full \t1\nwarm water under a red bridge is a celebration of feminine energy , a tribute to the power of women to heal . \t1\nthat uses a sensational , real-life 19th-century crime as a metaphor for \t1\n, home movie will leave you wanting more , not to mention leaving you with some laughs and a smile on your face . \t1\n, the film retains ambiguities that make it well worth watching . \t1\nultra-cheesy dialogue \t0\nadded depth and resonance \t1\nthe sensational \t1\nhuge-screen format to make an old-fashioned nature film that educates viewers with words and pictures while entertaining them \t1\nhandsome but unfulfilling suspense drama \t0\n's not very good either . \t0\n"
  },
  {
    "path": "CH03/CH03a_BERT_As_one_of_Autoencoding_Language_Models.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH03.1 As one of Autoencoding Language Models.ipynb\",\"provenance\":[]},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"},\"accelerator\":\"GPU\",\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"5661f9afceac41cd81911ec61f840d1c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_0fe97a5a63614b35b1a58cb8d9765242\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_6295bed1bbfc43ff8bd374152775b094\",\"IPY_MODEL_91e3626b49814c7e85fc351d6cea403c\"]}},\"0fe97a5a63614b35b1a58cb8d9765242\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"6295bed1bbfc43ff8bd374152775b094\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_cd7b13f0ba0f44a88b1d085fb5acf789\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":570,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":570,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_24e111b1fc5746a8a69f862a0dc3bc7d\"}},\"91e3626b49814c7e85fc351d6cea403c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_e345fb951df24e0d848a051a485b4b65\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 570/570 [00:01&lt;00:00, 327B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_86b7927b6dc44fb28cf3b006163c39cf\"}},\"cd7b13f0ba0f44a88b1d085fb5acf789\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"24e111b1fc5746a8a69f862a0dc3bc7d\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e345fb951df24e0d848a051a485b4b65\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"86b7927b6dc44fb28cf3b006163c39cf\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"133035cbbade4827bc6764218387a54b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_e4efd2d54399463db446591d18cbe6fd\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_c1e03b6d025a4dba9e37eb35c48d93ec\",\"IPY_MODEL_62399066111345ec827e1912ec1d97ba\"]}},\"e4efd2d54399463db446591d18cbe6fd\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c1e03b6d025a4dba9e37eb35c48d93ec\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_73ca0820cf8a482bb3cb4bd658e7a5d3\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":536063208,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":536063208,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_2989c05594ea4054b311517ce5339ed2\"}},\"62399066111345ec827e1912ec1d97ba\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_ef71247bb53a4c709d59e63ab7d60c33\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 536M/536M [00:30&lt;00:00, 17.3MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_62b92d97fdcb49b1ade6d076d0b203eb\"}},\"73ca0820cf8a482bb3cb4bd658e7a5d3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"2989c05594ea4054b311517ce5339ed2\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ef71247bb53a4c709d59e63ab7d60c33\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"62b92d97fdcb49b1ade6d076d0b203eb\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"94a9c2fcf79f4ac0a8f2d712411f7d2b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_d8e8c28122024aadb70ff1aab5530eeb\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_7a9083129f274149a176a0e31eb48411\",\"IPY_MODEL_dac236c954ef4b0f99067b8bbeba6283\"]}},\"d8e8c28122024aadb70ff1aab5530eeb\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7a9083129f274149a176a0e31eb48411\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_96ad3e5ee6bc4398a0c6e8ea948682a4\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":231508,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":231508,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_3f2e7ff1d0ad466196075aad10b8b84a\"}},\"dac236c954ef4b0f99067b8bbeba6283\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_9fb9172e15b3405fab9a7db14d0c560d\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 232k/232k [00:00&lt;00:00, 798kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_48f55d9d4e3046d5abe21fef5b2a377c\"}},\"96ad3e5ee6bc4398a0c6e8ea948682a4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"3f2e7ff1d0ad466196075aad10b8b84a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"9fb9172e15b3405fab9a7db14d0c560d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"48f55d9d4e3046d5abe21fef5b2a377c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7d102900f8884e44aa4953d89ad79465\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_6946d2105b2e4fd1bfab2b10f1256053\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_0b351be38ce9450eb4f4a857132b0a79\",\"IPY_MODEL_c41a59274c78422fa1c846a1711b2439\"]}},\"6946d2105b2e4fd1bfab2b10f1256053\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"0b351be38ce9450eb4f4a857132b0a79\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_477900896cec431f98ed705f5fbbf78b\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":466062,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":466062,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_6cead6beda334e7a8db3f27ad5845705\"}},\"c41a59274c78422fa1c846a1711b2439\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_d26b4d4dbcd243cd8933f81fffad0b4d\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 466k/466k [00:00&lt;00:00, 2.94MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a0d2c4f1560a4a6bab0be1285c932283\"}},\"477900896cec431f98ed705f5fbbf78b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"6cead6beda334e7a8db3f27ad5845705\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d26b4d4dbcd243cd8933f81fffad0b4d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"a0d2c4f1560a4a6bab0be1285c932283\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"9dac89e1bf484a1fafaa1b5235846d93\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_2290a421c99944a19da4fa1888204a0a\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_3fe4f71880a5497e950d15a381614651\",\"IPY_MODEL_7fc1dee184a54de987dbba3af55c597e\"]}},\"2290a421c99944a19da4fa1888204a0a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"3fe4f71880a5497e950d15a381614651\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_4e9a142be38247088fe4f3a7d6ecd6f3\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":28,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":28,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_127e05f39b2d4b0f84dd7ca57d71cc98\"}},\"7fc1dee184a54de987dbba3af55c597e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_73de1777b2f5478891fc9b8dc46c26a0\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 28.0/28.0 [00:08&lt;00:00, 3.33B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_476bdde5624144919c7abb27938c7221\"}},\"4e9a142be38247088fe4f3a7d6ecd6f3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"127e05f39b2d4b0f84dd7ca57d71cc98\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"73de1777b2f5478891fc9b8dc46c26a0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"476bdde5624144919c7abb27938c7221\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}}},\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"v61w8HXuZrLH\"},\"source\":[\"# BERT: As one of Autoencoding Language Models \"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"hXoOOoBAZqHq\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504058946,\"user_tz\":-180,\"elapsed\":363,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"cee84e9b-a02f-4908-a1ac-90c219372c54\"},\"source\":[\"import os\\n\",\"from google.colab import drive\\n\",\"drive.mount('/content/drive')\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount(\\\"/content/drive\\\", force_remount=True).\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"t3bcOfnNWJhv\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504063059,\"user_tz\":-180,\"elapsed\":2921,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"42612c4a-b889-4cc1-e79c-1843478b88d0\"},\"source\":[\"!pip install transformers\"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: transformers in /usr/local/lib/python3.7/dist-packages (4.8.2)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: huggingface-hub==0.0.12 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.12)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.10.3)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.45)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.5.0)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2021.5.30)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub==0.0.12->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"MDuHvNUnbRXu\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504065244,\"user_tz\":-180,\"elapsed\":2190,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"2a545f55-76da-494a-873d-b0f7419a73ad\"},\"source\":[\"!pip install tokenizers\"],\"execution_count\":3,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: tokenizers in /usr/local/lib/python3.7/dist-packages (0.10.3)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"YR3-I4bFUVdm\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504065514,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"os.chdir(\\\"drive/My Drive/data/\\\")\"],\"execution_count\":4,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"MVadDu1T4NZF\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504065933,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"888a80cf-7428-43ec-b5d6-0158a961916d\"},\"source\":[\"os.listdir()\"],\"execution_count\":5,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"['IMDB Dataset.csv']\"]},\"metadata\":{\"tags\":[]},\"execution_count\":5}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"hGJiQ2Sx4mm7\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504066616,\"user_tz\":-180,\"elapsed\":8,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"\"],\"execution_count\":5,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"sJbh3P-e3g0S\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504070634,\"user_tz\":-180,\"elapsed\":2870,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"import pandas as pd\\n\",\"imdb_df = pd.read_csv(\\\"IMDB Dataset.csv\\\")\\n\",\"reviews = imdb_df.review.to_string(index=None) \\n\",\"with open(\\\"corpus.txt\\\", \\\"w\\\") as f: \\n\",\"    f.writelines(reviews) \"],\"execution_count\":6,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"JQRzoQKS4SA2\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504074342,\"user_tz\":-180,\"elapsed\":1783,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from tokenizers import BertWordPieceTokenizer\\n\",\"bert_wordpiece_tokenizer = BertWordPieceTokenizer() \\n\",\"bert_wordpiece_tokenizer.train(\\\"corpus.txt\\\") \"],\"execution_count\":7,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"datICiehV7kv\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504075440,\"user_tz\":-180,\"elapsed\":13,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"d4dce1dc-f6b9-4002-faae-c978f9c5ef62\"},\"source\":[\"bert_wordpiece_tokenizer.get_vocab()\"],\"execution_count\":8,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"{'princess': 5136,\\n\",\" 'stupidly': 15897,\\n\",\" 'express': 3012,\\n\",\" '##ilyn': 12285,\\n\",\" 'circl': 16886,\\n\",\" 'finds': 3069,\\n\",\" 'heading': 16175,\\n\",\" '##eday': 11710,\\n\",\" 'fever': 4354,\\n\",\" 'losing': 6946,\\n\",\" 'december': 6523,\\n\",\" '##ety': 8852,\\n\",\" 'unemployed': 17922,\\n\",\" '##omat': 11749,\\n\",\" 'bits': 6375,\\n\",\" 'apartment': 9412,\\n\",\" 'mercenary': 17797,\\n\",\" '##astimil': 14917,\\n\",\" 'conclude': 17813,\\n\",\" 'greystoke': 18010,\\n\",\" 'enthusi': 4863,\\n\",\" 'sm': 811,\\n\",\" 'chucky': 5365,\\n\",\" 'daniel': 3963,\\n\",\" 'sweeney': 7093,\\n\",\" 'broadway': 3342,\\n\",\" 'eleph': 6413,\\n\",\" '1999': 3712,\\n\",\" 'coll': 3232,\\n\",\" '##abe': 15117,\\n\",\" 'unh': 8037,\\n\",\" 'tol': 5817,\\n\",\" 'dizz': 14919,\\n\",\" 'aardman': 11220,\\n\",\" '##ilation': 11703,\\n\",\" 'theme': 3333,\\n\",\" 'shi': 7963,\\n\",\" 'thoug': 4260,\\n\",\" 'godzilla': 9140,\\n\",\" 'oft': 8808,\\n\",\" 'enthralling': 13716,\\n\",\" 'revival': 16467,\\n\",\" '81': 13858,\\n\",\" 'watch': 225,\\n\",\" 'prepared': 7692,\\n\",\" 'hamlet': 3984,\\n\",\" 'iden': 16082,\\n\",\" 'trashed': 12800,\\n\",\" 'american': 947,\\n\",\" 'indiana': 16668,\\n\",\" 'malefique': 13233,\\n\",\" 'cujo': 13025,\\n\",\" 'produced': 2212,\\n\",\" 'gein': 9142,\\n\",\" 'helena': 16154,\\n\",\" 'plankton': 18200,\\n\",\" 'sour': 7846,\\n\",\" 'extraordinarily': 16850,\\n\",\" 'exer': 4507,\\n\",\" 'historica': 16301,\\n\",\" 'smoking': 7449,\\n\",\" '##antic': 8001,\\n\",\" 'longoria': 10422,\\n\",\" 'feeling': 2382,\\n\",\" 'immense': 5103,\\n\",\" 'motivation': 17674,\\n\",\" 'burtyns': 16032,\\n\",\" '##phony': 15352,\\n\",\" 'tets': 14128,\\n\",\" 'kieslowski': 9688,\\n\",\" 'isa': 14456,\\n\",\" 'foppish': 18065,\\n\",\" 'phoolan': 12412,\\n\",\" 'tribe': 6883,\\n\",\" 'tan': 14119,\\n\",\" 'iyer': 13985,\\n\",\" 'burrough': 9238,\\n\",\" 'heston': 10277,\\n\",\" 'amiable': 14861,\\n\",\" 'pe': 373,\\n\",\" 'pinocchio': 17711,\\n\",\" 'richa': 15905,\\n\",\" 'hen': 2484,\\n\",\" 'seduction': 17457,\\n\",\" 'broadcast': 4105,\\n\",\" 'andersson': 13446,\\n\",\" 'concent': 8925,\\n\",\" 'amidst': 11941,\\n\",\" '$': 8,\\n\",\" '##opher': 2749,\\n\",\" 'spi': 10135,\\n\",\" '##ial': 841,\\n\",\" 'iow': 11420,\\n\",\" 'barbet': 6932,\\n\",\" 'necess': 4512,\\n\",\" 'had': 315,\\n\",\" 'yaw': 11542,\\n\",\" 'wannabe': 9627,\\n\",\" 'christm': 15704,\\n\",\" '##arians': 8812,\\n\",\" 'defined': 10498,\\n\",\" 'drive': 3973,\\n\",\" 'hoopla': 13719,\\n\",\" '##ari': 5489,\\n\",\" 'lane': 4656,\\n\",\" '##gingly': 14301,\\n\",\" 'abomination': 8559,\\n\",\" '##ley': 1151,\\n\",\" '##ely': 466,\\n\",\" 'story': 366,\\n\",\" 'montana': 13118,\\n\",\" 'lundgren': 6570,\\n\",\" 'unti': 16142,\\n\",\" 'outlaw': 10193,\\n\",\" 'fistful': 17696,\\n\",\" 'later': 2597,\\n\",\" 'succeeded': 17004,\\n\",\" '##bg': 8739,\\n\",\" '##25': 14382,\\n\",\" 'misadventures': 18241,\\n\",\" 'meandering': 11960,\\n\",\" 'mout': 14442,\\n\",\" 'paradise': 11199,\\n\",\" 'aust': 1266,\\n\",\" 'ko': 5453,\\n\",\" 'pinn': 17082,\\n\",\" 'zandalee': 18140,\\n\",\" 'incest': 13660,\\n\",\" 'strays': 15427,\\n\",\" 'amazin': 12386,\\n\",\" 'mash': 8687,\\n\",\" '1964': 12765,\\n\",\" 'blowing': 15175,\\n\",\" '##peg': 15042,\\n\",\" 'continuation': 16606,\\n\",\" 'evie': 13915,\\n\",\" 'insulted': 8400,\\n\",\" '##ified': 4205,\\n\",\" 'carre': 15322,\\n\",\" 'sakura': 14744,\\n\",\" '##ube': 11613,\\n\",\" 'comb': 2208,\\n\",\" 'helps': 6943,\\n\",\" 'freebird': 10759,\\n\",\" 'bad': 326,\\n\",\" '##semble': 3738,\\n\",\" 'aspect': 2236,\\n\",\" 'rockne': 12609,\\n\",\" 'exists': 7977,\\n\",\" 'appeared': 4418,\\n\",\" '##ra': 262,\\n\",\" 'rus': 2898,\\n\",\" 'rh': 4905,\\n\",\" 'ref': 1745,\\n\",\" 'grandad': 16517,\\n\",\" '##rama': 3041,\\n\",\" 'unfortunate': 4090,\\n\",\" 'cott': 13892,\\n\",\" 'mcadams': 17984,\\n\",\" 'tart': 8714,\\n\",\" 'flix': 12178,\\n\",\" 'amore': 14858,\\n\",\" 'prophetic': 16400,\\n\",\" 'yea': 3009,\\n\",\" 'downhill': 15607,\\n\",\" 'turgid': 7562,\\n\",\" 'paced': 2514,\\n\",\" 'uwe': 4480,\\n\",\" 'stink': 2339,\\n\",\" '##ulter': 11879,\\n\",\" 'documen': 17584,\\n\",\" 'chuck': 2462,\\n\",\" 'divorce': 8568,\\n\",\" '##inqu': 14413,\\n\",\" 'hassan': 17908,\\n\",\" 'prop': 2119,\\n\",\" 'prej': 7334,\\n\",\" 'rumours': 13720,\\n\",\" 'neo': 8900,\\n\",\" 'terri': 6317,\\n\",\" 'engag': 2725,\\n\",\" 'archie': 13128,\\n\",\" 'currie': 16669,\\n\",\" 'corman': 4782,\\n\",\" 'devils': 16736,\\n\",\" 'beastmaster': 17281,\\n\",\" 'wilkinson': 18274,\\n\",\" '11th': 9305,\\n\",\" 'filmma': 11752,\\n\",\" 'franco': 3251,\\n\",\" 'ik': 13978,\\n\",\" 'dimen': 17175,\\n\",\" 'insults': 16845,\\n\",\" '##ender': 4735,\\n\",\" 'purposes': 10982,\\n\",\" 'features': 2149,\\n\",\" 'manipulative': 9575,\\n\",\" '##fevres': 15127,\\n\",\" '##ond': 385,\\n\",\" 'pure': 1876,\\n\",\" '##ads': 6705,\\n\",\" 'loaned': 17903,\\n\",\" 'comprised': 14733,\\n\",\" 'fantasy': 2136,\\n\",\" 'burning': 8246,\\n\",\" 'premiered': 5115,\\n\",\" 'tenacious': 9193,\\n\",\" '##oki': 14257,\\n\",\" 'infinite': 16211,\\n\",\" '##yad': 8777,\\n\",\" 'cree': 11367,\\n\",\" 'rohm': 17099,\\n\",\" '##icance': 12378,\\n\",\" 'xavier': 11538,\\n\",\" 'fantasti': 11039,\\n\",\" 'couldnt': 10328,\\n\",\" '##olo': 10131,\\n\",\" 'happe': 13448,\\n\",\" 'enigma': 17738,\\n\",\" 'meticulously': 17854,\\n\",\" 'myth': 6729,\\n\",\" 'rockwell': 15945,\\n\",\" '1975': 4575,\\n\",\" 'says': 1861,\\n\",\" 'spor': 11924,\\n\",\" 'playboy': 12324,\\n\",\" 'jersey': 16393,\\n\",\" '##lein': 8826,\\n\",\" 'muddled': 9709,\\n\",\" 'in': 163,\\n\",\" '##si': 9906,\\n\",\" '68': 11343,\\n\",\" 'spencer': 14845,\\n\",\" 'morni': 15798,\\n\",\" 'nest': 11975,\\n\",\" 'took': 1364,\\n\",\" 'blaxploit': 17242,\\n\",\" 'isab': 5815,\\n\",\" 'testoster': 17052,\\n\",\" 'caddy': 6530,\\n\",\" 'fig': 2193,\\n\",\" 'abbott': 6129,\\n\",\" 'broug': 14647,\\n\",\" 'outline': 8917,\\n\",\" 'clueless': 13240,\\n\",\" 'carefully': 10614,\\n\",\" '##uel': 2113,\\n\",\" 'classy': 9042,\\n\",\" 'wicked': 7032,\\n\",\" 'hardware': 9045,\\n\",\" '##ast': 295,\\n\",\" 'millions': 6019,\\n\",\" 'nord': 9116,\\n\",\" 'clon': 10251,\\n\",\" 'predictable': 2012,\\n\",\" 'nintendo': 13589,\\n\",\" 'specia': 15532,\\n\",\" 'bea': 7938,\\n\",\" 'engaged': 10823,\\n\",\" '##etr': 14665,\\n\",\" 'ordinary': 5111,\\n\",\" 'reserv': 12676,\\n\",\" 'ranma': 16643,\\n\",\" 'wizards': 17506,\\n\",\" '##aro': 9981,\\n\",\" 'randy': 9378,\\n\",\" 'theatric': 15733,\\n\",\" '##math': 9901,\\n\",\" 'kink': 11434,\\n\",\" 'rag': 7837,\\n\",\" '##propriate': 12950,\\n\",\" 'janet': 13094,\\n\",\" '##asph': 11701,\\n\",\" 'skilled': 13462,\\n\",\" 'deathly': 16041,\\n\",\" 'foc': 2866,\\n\",\" 'nightbre': 6804,\\n\",\" 'nolan': 4636,\\n\",\" 'accept': 4370,\\n\",\" 'decept': 7310,\\n\",\" '##alondo': 14520,\\n\",\" '##chily': 14600,\\n\",\" 'core': 3267,\\n\",\" '##go': 2335,\\n\",\" 'h': 50,\\n\",\" '##ify': 3320,\\n\",\" 'scared': 4817,\\n\",\" 'owns': 12679,\\n\",\" 'dere': 4882,\\n\",\" 'barricade': 18243,\\n\",\" '##cast': 2786,\\n\",\" 'ya': 4154,\\n\",\" 'suckered': 10608,\\n\",\" 'ª': 78,\\n\",\" 'bears': 6985,\\n\",\" 'psycho': 5356,\\n\",\" 'bly': 13873,\\n\",\" '##gut': 7879,\\n\",\" 'ment': 4143,\\n\",\" '##fil': 9942,\\n\",\" 'eat': 4303,\\n\",\" 'meteorite': 17301,\\n\",\" 'evangel': 13699,\\n\",\" '##cifully': 15279,\\n\",\" 'brothe': 16350,\\n\",\" 'bank': 5746,\\n\",\" '##ortion': 8041,\\n\",\" 'ich': 7813,\\n\",\" 'schrader': 13617,\\n\",\" 'glimpse': 8545,\\n\",\" 'cris': 6303,\\n\",\" 'darwin': 12802,\\n\",\" 'heat': 7358,\\n\",\" '##leng': 8766,\\n\",\" 'visiteurs': 10591,\\n\",\" 'allen': 2621,\\n\",\" 'actor': 757,\\n\",\" 'remo': 15131,\\n\",\" 'bubbling': 17643,\\n\",\" 'recre': 7384,\\n\",\" '##end': 456,\\n\",\" 'relish': 12498,\\n\",\" 'traw': 15384,\\n\",\" 'unspe': 8933,\\n\",\" 'loosel': 12854,\\n\",\" 'ape': 7109,\\n\",\" 'sprawling': 8614,\\n\",\" '##inski': 9282,\\n\",\" 'garde': 13123,\\n\",\" 'electrifying': 13323,\\n\",\" 'day': 991,\\n\",\" 'lumet': 9529,\\n\",\" 'lovable': 13111,\\n\",\" 'listener': 8427,\\n\",\" 'topic': 5971,\\n\",\" '##rid': 3766,\\n\",\" 'stunn': 12709,\\n\",\" 'kas': 9791,\\n\",\" 'sometimes': 1600,\\n\",\" 'dece': 4183,\\n\",\" 'woo': 7182,\\n\",\" 'engage': 15821,\\n\",\" '##just': 7211,\\n\",\" 'rated': 1712,\\n\",\" 'deaf': 9516,\\n\",\" 'ivey': 13984,\\n\",\" '##ipse': 12340,\\n\",\" 'os': 7160,\\n\",\" '##avano': 15522,\\n\",\" 'mcdo': 16293,\\n\",\" 'collabor': 6989,\\n\",\" 'wis': 9864,\\n\",\" 'maximum': 17815,\\n\",\" 'larg': 16093,\\n\",\" 'remind': 2180,\\n\",\" 'sacr': 17087,\\n\",\" 'hybrid': 6419,\\n\",\" 'vac': 3560,\\n\",\" '1990': 3005,\\n\",\" 'body': 3874,\\n\",\" 'allegedly': 9624,\\n\",\" 'kib': 11436,\\n\",\" 'primitive': 16941,\\n\",\" 'peaches': 17926,\\n\",\" 'effec': 13627,\\n\",\" 'romp': 4209,\\n\",\" 'guardian': 17417,\\n\",\" '##onda': 15086,\\n\",\" 'dep': 1278,\\n\",\" 'yet': 995,\\n\",\" 'hints': 13973,\\n\",\" 'inc': 795,\\n\",\" 'fault': 5535,\\n\",\" 'reconcile': 18041,\\n\",\" 'lucy': 6842,\\n\",\" 'pyramid': 17226,\\n\",\" '6th': 7786,\\n\",\" 'boiler': 13367,\\n\",\" 'field': 6596,\\n\",\" 'longing': 12299,\\n\",\" 'rema': 8068,\\n\",\" 'contemporary': 9601,\\n\",\" 'altern': 4048,\\n\",\" '##aming': 2744,\\n\",\" '##00': 564,\\n\",\" 'forest': 6248,\\n\",\" '##ghter': 8861,\\n\",\" 'falk': 6049,\\n\",\" 'utterly': 2596,\\n\",\" 'pict': 1085,\\n\",\" 'wid': 2783,\\n\",\" '##agraph': 8988,\\n\",\" 'harlem': 10509,\\n\",\" 'butter': 7995,\\n\",\" 'jewel': 10923,\\n\",\" '##ami': 7959,\\n\",\" '##fore': 9944,\\n\",\" 'uproarious': 17929,\\n\",\" 'intell': 2310,\\n\",\" 'fess': 13935,\\n\",\" '##kes': 1597,\\n\",\" '##o': 96,\\n\",\" 'overlooked': 5104,\\n\",\" 'kathy': 7017,\\n\",\" 'roberts': 6395,\\n\",\" 'teenager': 2590,\\n\",\" '##selor': 16582,\\n\",\" '1916': 16969,\\n\",\" 'slackers': 17637,\\n\",\" 'mamet': 7025,\\n\",\" 'everybody': 2864,\\n\",\" 'deceptively': 13495,\\n\",\" 'macbeth': 8599,\\n\",\" 'extraord': 3424,\\n\",\" 'seriou': 17124,\\n\",\" 'ishimoto': 17149,\\n\",\" '##uall': 8765,\\n\",\" '##zac': 14354,\\n\",\" 'valid': 16070,\\n\",\" 'haz': 7254,\\n\",\" 'historically': 6928,\\n\",\" 'wire': 7856,\\n\",\" 'positives': 10735,\\n\",\" 'mantis': 11463,\\n\",\" 'caan': 15929,\\n\",\" 'sequenc': 15745,\\n\",\" 'safely': 9536,\\n\",\" '##ued': 7196,\\n\",\" 'jorg': 8671,\\n\",\" 'involved': 3735,\\n\",\" 'facil': 15019,\\n\",\" 'prob': 678,\\n\",\" 'encouraged': 11332,\\n\",\" 'nunez': 18102,\\n\",\" 'repetitive': 7757,\\n\",\" 'environment': 6569,\\n\",\" '26': 6136,\\n\",\" 'points': 3157,\\n\",\" 'place': 1843,\\n\",\" 'stars': 909,\\n\",\" 'myster': 3374,\\n\",\" 'essay': 6951,\\n\",\" '##ice': 539,\\n\",\" 'webs': 3921,\\n\",\" '##vement': 4944,\\n\",\" 'bought': 1041,\\n\",\" 'cbc': 11368,\\n\",\" 'packs': 8347,\\n\",\" 'cooley': 8413,\\n\",\" 'dune': 13910,\\n\",\" 'triad': 9214,\\n\",\" 'performa': 7482,\\n\",\" '##ila': 6684,\\n\",\" 'godd': 12453,\\n\",\" 'tomatoes': 9681,\\n\",\" 'roc': 15145,\\n\",\" 'sile': 9839,\\n\",\" 'breed': 8240,\\n\",\" 'uninvolving': 10964,\\n\",\" '##burne': 16933,\\n\",\" '##gan': 1680,\\n\",\" 'quite': 649,\\n\",\" '##acing': 15434,\\n\",\" 'wesley': 5680,\\n\",\" 'cock': 6324,\\n\",\" 'manner': 7315,\\n\",\" '##using': 2052,\\n\",\" 'darling': 9317,\\n\",\" '##guay': 12581,\\n\",\" '##ious': 410,\\n\",\" 'manna': 7314,\\n\",\" 'cult': 1709,\\n\",\" 'stargate': 8997,\\n\",\" '##va': 4029,\\n\",\" 'shows': 1095,\\n\",\" 'lonesome': 7596,\\n\",\" '##sman': 9909,\\n\",\" 'bloch': 10316,\\n\",\" '##gee': 14892,\\n\",\" 'langella': 17852,\\n\",\" '##ject': 1314,\\n\",\" '##z': 109,\\n\",\" 'repres': 3509,\\n\",\" 'puzzle': 8549,\\n\",\" '##enster': 14430,\\n\",\" 'klap': 17312,\\n\",\" '##iday': 2000,\\n\",\" 'claiming': 10849,\\n\",\" 'comfortable': 17611,\\n\",\" '##don': 4682,\\n\",\" 'stin': 14587,\\n\",\" 'missile': 15888,\\n\",\" 'danner': 15839,\\n\",\" 'burn': 3873,\\n\",\" 'iz': 9785,\\n\",\" 'enab': 14875,\\n\",\" 'lighthearted': 16073,\\n\",\" 'centur': 10702,\\n\",\" 'pract': 4177,\\n\",\" 'knight': 4517,\\n\",\" 'vanc': 7553,\\n\",\" 'effective': 5652,\\n\",\" '##see': 11847,\\n\",\" '##and': 322,\\n\",\" '##hey': 15892,\\n\",\" 'loaded': 10117,\\n\",\" 'trinity': 14970,\\n\",\" 'adject': 10244,\\n\",\" 'outra': 4716,\\n\",\" 'finally': 1247,\\n\",\" 'jungle': 7030,\\n\",\" 'deba': 16212,\\n\",\" '##yr': 9928,\\n\",\" 'verb': 16013,\\n\",\" 'glorious': 8175,\\n\",\" 'woodward': 16139,\\n\",\" 'doll': 2657,\\n\",\" 'swanson': 11255,\\n\",\" 'ust': 7852,\\n\",\" 'trekkies': 16637,\\n\",\" 'curve': 15844,\\n\",\" 'absolute': 2007,\\n\",\" '##reed': 14499,\\n\",\" '##raiser': 7301,\\n\",\" 'ollie': 18103,\\n\",\" 'calling': 4566,\\n\",\" '##estrian': 9018,\\n\",\" '##irth': 14632,\\n\",\" 'supply': 15734,\\n\",\" 'shod': 10066,\\n\",\" 'league': 3936,\\n\",\" 'told': 1763,\\n\",\" 'nimoy': 17855,\\n\",\" 'cure': 5143,\\n\",\" 'brilliant': 974,\\n\",\" '##body': 1361,\\n\",\" 'drom': 15345,\\n\",\" 'geisha': 9145,\\n\",\" '##girls': 9585,\\n\",\" 'sy': 1565,\\n\",\" 'morris': 6861,\\n\",\" 'eas': 1083,\\n\",\" 'crude': 6304,\\n\",\" 'lank': 14027,\\n\",\" 'hype': 3169,\\n\",\" '##ican': 812,\\n\",\" 'occasional': 16769,\\n\",\" 'ealing': 6588,\\n\",\" 'nich': 3886,\\n\",\" 'tv': 515,\\n\",\" 'fragile': 17468,\\n\",\" 'ille': 6521,\\n\",\" 'blown': 6302,\\n\",\" 'quent': 5544,\\n\",\" 'stunner': 16098,\\n\",\" 'dictator': 13522,\\n\",\" 'robots': 16168,\\n\",\" 'sensitive': 5672,\\n\",\" 'lynchian': 16770,\\n\",\" 'dow': 5749,\\n\",\" 'riget': 13337,\\n\",\" '17th': 12996,\\n\",\" 'paranormal': 9687,\\n\",\" 'whoopi': 7072,\\n\",\" 'shepitko': 11133,\\n\",\" 'cain': 11364,\\n\",\" 'intensity': 18208,\\n\",\" 'timothy': 6756,\\n\",\" 'doesnt': 12267,\\n\",\" 'graduate': 13426,\\n\",\" 'planning': 6427,\\n\",\" 'production': 1097,\\n\",\" '##ach': 801,\\n\",\" '##e': 91,\\n\",\" 'tak': 1878,\\n\",\" 'kinda': 3071,\\n\",\" 'him': 2043,\\n\",\" 'especia': 8274,\\n\",\" 'program': 2289,\\n\",\" 'dots': 13908,\\n\",\" 'extravagan': 16452,\\n\",\" 'detective': 3644,\\n\",\" 'grand': 2414,\\n\",\" 'coul': 5012,\\n\",\" 'decadent': 17951,\\n\",\" 'rex': 6698,\\n\",\" 'dock': 14869,\\n\",\" 'leon': 3138,\\n\",\" 'elements': 3839,\\n\",\" 'century': 3622,\\n\",\" 'instruc': 17884,\\n\",\" '##ors': 1277,\\n\",\" 'slight': 2241,\\n\",\" 'brooke': 10050,\\n\",\" 'damn': 3727,\\n\",\" 'cosm': 8449,\\n\",\" 'snore': 10583,\\n\",\" 'lab': 3275,\\n\",\" 'conce': 3475,\\n\",\" 'hmmmm': 8434,\\n\",\" 'unites': 15034,\\n\",\" '##itism': 14515,\\n\",\" 'thea': 7216,\\n\",\" 'arqu': 12142,\\n\",\" 'hyde': 8260,\\n\",\" 'predecessor': 13736,\\n\",\" '##bezz': 15415,\\n\",\" '##heads': 9312,\\n\",\" 'thrilled': 9398,\\n\",\" '##rall': 9884,\\n\",\" 'evid': 5022,\\n\",\" '##stru': 4803,\\n\",\" 'curly': 15843,\\n\",\" 'montgo': 13119,\\n\",\" 'ends': 3706,\\n\",\" 'juliet': 6451,\\n\",\" 'coming': 1731,\\n\",\" 'recei': 16339,\\n\",\" 'symb': 5395,\\n\",\" 'tripe': 9215,\\n\",\" 'lef': 10300,\\n\",\" '##ished': 1294,\\n\",\" '##cula': 4318,\\n\",\" 'wol': 7854,\\n\",\" 'deserves': 2355,\\n\",\" 'rory': 11491,\\n\",\" 'deceptive': 13494,\\n\",\" 'gathered': 11029,\\n\",\" 'es': 4302,\\n\",\" 'unbelievable': 3087,\\n\",\" 'warlock': 15306,\\n\",\" 'histori': 16300,\\n\",\" 'denzel': 12749,\\n\",\" 'leo': 15136,\\n\",\" '##oooo': 2742,\\n\",\" 'quaid': 9591,\\n\",\" 'unhappy': 9668,\\n\",\" '##il': 147,\\n\",\" 'react': 4699,\\n\",\" 'underst': 3149,\\n\",\" 'stark': 8993,\\n\",\" 'hagg': 6716,\\n\",\" 'barrel': 10471,\\n\",\" 'taken': 2598,\\n\",\" '##ind': 371,\\n\",\" 'routine': 3997,\\n\",\" '##etically': 14667,\\n\",\" 'lasts': 15297,\\n\",\" 'a': 43,\\n\",\" 'correct': 5706,\\n\",\" '##vaag': 16991,\\n\",\" 'val': 1507,\\n\",\" 'city': 1838,\\n\",\" '##ures': 1118,\\n\",\" 'tyler': 7447,\\n\",\" 'suddenly': 11072,\\n\",\" 'cannibalistic': 13425,\\n\",\" 'shocked': 2881,\\n\",\" 'exc': 1204,\\n\",\" 'elisha': 12452,\\n\",\" 'tramp': 8921,\\n\",\" 'docudrama': 10853,\\n\",\" '46': 11341,\\n\",\" 'tugg': 14132,\\n\",\" '##ß': 128,\\n\",\" 'greatest': 1200,\\n\",\" 'approached': 8395,\\n\",\" '##wald': 14345,\\n\",\" 'describing': 7576,\\n\",\" 'horrendous': 3941,\\n\",\" 'bou': 13872,\\n\",\" 'lexington': 17932,\\n\",\" 'former': 3125,\\n\",\" 'axiom': 17377,\\n\",\" 'gradu': 6500,\\n\",\" 'ø': 86,\\n\",\" 'rowan': 9546,\\n\",\" 'object': 8160,\\n\",\" 'awa': 4060,\\n\",\" 'shorts': 3701,\\n\",\" 'enjoyab': 12169,\\n\",\" 'garbag': 12909,\\n\",\" 'powerhouse': 16054,\\n\",\" 'wishing': 8254,\\n\",\" '##alta': 14519,\\n\",\" '##enter': 14616,\\n\",\" '##bi': 4025,\\n\",\" '##rem': 1011,\\n\",\" 'alas': 6740,\\n\",\" 'dial': 1966,\\n\",\" 'came': 723,\\n\",\" 'lesley': 12884,\\n\",\" 'merciless': 18271,\\n\",\" 'cigar': 13740,\\n\",\" 'lazy': 5769,\\n\",\" 'rack': 5464,\\n\",\" 'africa': 5679,\\n\",\" 'projection': 11242,\\n\",\" 'distrib': 6892,\\n\",\" 'colman': 7438,\\n\",\" 'helicop': 16155,\\n\",\" 'lampoon': 4603,\\n\",\" 'glowing': 8174,\\n\",\" '##book': 9875,\\n\",\" 'plight': 10182,\\n\",\" 'eig': 13919,\\n\",\" '1960': 6005,\\n\",\" '##oblins': 9332,\\n\",\" '##anted': 10158,\\n\",\" 'lov': 3582,\\n\",\" 'trif': 12613,\\n\",\" 'strug': 15429,\\n\",\" 'bulgaria': 18017,\\n\",\" '##to': 2230,\\n\",\" 'amount': 4179,\\n\",\" '##field': 2843,\\n\",\" 'naked': 4661,\\n\",\" 'seriousl': 15803,\\n\",\" 'explo': 6876,\\n\",\" 'uninte': 13112,\\n\",\" 'particular': 2551,\\n\",\" 'descr': 12474,\\n\",\" 'pbs': 5171,\\n\",\" 'fred': 1906,\\n\",\" 'hmm': 3878,\\n\",\" '##borough': 9390,\\n\",\" 'fabulous': 3089,\\n\",\" 'gretchen': 17909,\\n\",\" 'recomme': 8253,\\n\",\" 'rajkumar': 13305,\\n\",\" 'happen': 1344,\\n\",\" 'claim': 2933,\\n\",\" 'nevada': 16786,\\n\",\" 'genius': 2380,\\n\",\" 'take': 1021,\\n\",\" 'slog': 15314,\\n\",\" 'sar': 2361,\\n\",\" 'baseball': 4271,\\n\",\" 'jung': 4652,\\n\",\" 'capital': 5347,\\n\",\" '##iance': 6313,\\n\",\" '##felt': 11646,\\n\",\" '##enet': 14427,\\n\",\" 'amicus': 10146,\\n\",\" 'mannered': 13496,\\n\",\" 'governmen': 13239,\\n\",\" 'interwo': 12509,\\n\",\" 'swit': 9177,\\n\",\" 'separates': 13193,\\n\",\" 'alleged': 7033,\\n\",\" '##aude': 4714,\\n\",\" 'stranded': 9050,\\n\",\" 'beatty': 10799,\\n\",\" 'incons': 15544,\\n\",\" 'biblical': 9606,\\n\",\" 'hoping': 2545,\\n\",\" 'work': 698,\\n\",\" 'riotously': 17492,\\n\",\" '##ga': 3116,\\n\",\" 'dumped': 17382,\\n\",\" 'turning': 5067,\\n\",\" 'caper': 6438,\\n\",\" 'sou': 5784,\\n\",\" 'histor': 1912,\\n\",\" 'columbia': 6949,\\n\",\" 'humble': 12486,\\n\",\" 'st': 181,\\n\",\" 'recall': 4366,\\n\",\" 'types': 5620,\\n\",\" 'geish': 15690,\\n\",\" '##adel': 5832,\\n\",\" 'rabbit': 8534,\\n\",\" 'angeles': 3992,\\n\",\" 'dismal': 12102,\\n\",\" 'fligh': 15227,\\n\",\" 'decide': 3707,\\n\",\" 'house': 1047,\\n\",\" '##vey': 4037,\\n\",\" 'productions': 5615,\\n\",\" 'feature': 1550,\\n\",\" 'posters': 5974,\\n\",\" '##ement': 2619,\\n\",\" 'monke': 5021,\\n\",\" 'arguably': 3863,\\n\",\" 'ext': 900,\\n\",\" 'bernsen': 11330,\\n\",\" '##abul': 15119,\\n\",\" 'resisted': 17661,\\n\",\" '##ir': 192,\\n\",\" 'rules': 4769,\\n\",\" 'wolfe': 13531,\\n\",\" 'violated': 16375,\\n\",\" 'brie': 14641,\\n\",\" 'haun': 2920,\\n\",\" 'drool': 12249,\\n\",\" 'sequence': 5961,\\n\",\" 'nelson': 8554,\\n\",\" 'voy': 4153,\\n\",\" '##acao': 15436,\\n\",\" 'concorde': 10929,\\n\",\" 'winc': 10616,\\n\",\" 'lucas': 7633,\\n\",\" 'c': 45,\\n\",\" 'nominated': 5114,\\n\",\" 'acceptable': 13216,\\n\",\" 'freshman': 8409,\\n\",\" 'prett': 7404,\\n\",\" '1928': 8372,\\n\",\" '##ingers': 4938,\\n\",\" 'reversal': 11231,\\n\",\" '##elle': 2408,\\n\",\" 'cloying': 12075,\\n\",\" 'hope': 1752,\\n\",\" 'off': 481,\\n\",\" 'balls': 13075,\\n\",\" 'thelma': 14409,\\n\",\" 'purgatory': 16039,\\n\",\" 'cheap': 1561,\\n\",\" 'nons': 3753,\\n\",\" 'kaddiddle': 18090,\\n\",\" 'arizona': 11219,\\n\",\" 'stress': 11789,\\n\",\" 'browsing': 7073,\\n\",\" '##usa': 12140,\\n\",\" 'level': 2756,\\n\",\" 'synchron': 16541,\\n\",\" 'hepburn': 11320,\\n\",\" 'few': 599,\\n\",\" 'directors': 2377,\\n\",\" '##ities': 2532,\\n\",\" 'spoken': 8615,\\n\",\" 'var': 1727,\\n\",\" 'jumb': 11426,\\n\",\" 'king': 1444,\\n\",\" 'ea': 4646,\\n\",\" 'photog': 12845,\\n\",\" '##maid': 8283,\\n\",\" '##isms': 16105,\\n\",\" '1932': 9223,\\n\",\" 'intelle': 4054,\\n\",\" '##rifying': 5646,\\n\",\" 'lawyer': 8334,\\n\",\" 'anime': 2317,\\n\",\" '##ene': 1778,\\n\",\" 'caval': 13577,\\n\",\" 'mighty': 6382,\\n\",\" 'loony': 11900,\\n\",\" 'stag': 7950,\\n\",\" 'schwar': 12402,\\n\",\" 'lincoln': 7768,\\n\",\" 'edd': 15492,\\n\",\" '##ifications': 16555,\\n\",\" 'seaga': 16385,\\n\",\" '##oying': 12040,\\n\",\" 'interact': 10552,\\n\",\" 'britis': 12541,\\n\",\" 'swoon': 12534,\\n\",\" 'manhattan': 6565,\\n\",\" 'authent': 10786,\\n\",\" 'charism': 8099,\\n\",\" '##y': 108,\\n\",\" 'cellul': 6052,\\n\",\" 'outsiders': 16663,\\n\",\" 'intentionally': 10909,\\n\",\" 'brash': 7258,\\n\",\" '##fee': 15125,\\n\",\" '##yon': 8776,\\n\",\" '##oof': 1548,\\n\",\" 'notable': 5507,\\n\",\" 'worse': 1429,\\n\",\" 'wonderland': 9039,\\n\",\" 'shrew': 9535,\\n\",\" 'willie': 12190,\\n\",\" 'kannathil': 11278,\\n\",\" 'turtle': 16192,\\n\",\" '##bitsch': 7186,\\n\",\" 'philipines': 17171,\\n\",\" 'dick': 2605,\\n\",\" 'nowad': 6335,\\n\",\" 'hark': 7810,\\n\",\" 'blythe': 18053,\\n\",\" '40': 2887,\\n\",\" 'paulo': 12664,\\n\",\" 'silverman': 7020,\\n\",\" 'deserv': 12722,\\n\",\" 'fitting': 8655,\\n\",\" 'serend': 15115,\\n\",\" 'enforcement': 18188,\\n\",\" 'interp': 5037,\\n\",\" 'audienc': 13131,\\n\",\" 'oxford': 17858,\\n\",\" 'serving': 12114,\\n\",\" 'children': 1930,\\n\",\" 'brook': 2743,\\n\",\" 'entranced': 17783,\\n\",\" 'bardem': 13405,\\n\",\" 'cunningham': 17823,\\n\",\" 'plough': 14935,\\n\",\" 'colors': 7439,\\n\",\" 'wandered': 18135,\\n\",\" 'ewo': 13926,\\n\",\" 'carlitos': 16413,\\n\",\" 'jenni': 13078,\\n\",\" 'legitimate': 16256,\\n\",\" 'fire': 2417,\\n\",\" 'cous': 5748,\\n\",\" 'reiser': 10015,\\n\",\" '00pm': 16911,\\n\",\" 'locations': 6882,\\n\",\" 'studen': 12493,\\n\",\" 'gold': 1523,\\n\",\" 'anders': 6702,\\n\",\" 'convolut': 13144,\\n\",\" 'boris': 4551,\\n\",\" '##bers': 7862,\\n\",\" '##ribe': 14771,\\n\",\" 'depicted': 16978,\\n\",\" 'gotten': 8093,\\n\",\" 'recomm': 1480,\\n\",\" '##sheba': 12422,\\n\",\" '##www': 9402,\\n\",\" 'nurses': 13649,\\n\",\" 'suprem': 6095,\\n\",\" '##amenco': 14664,\\n\",\" 'chor': 6732,\\n\",\" '##iation': 5801,\\n\",\" 'natural': 9340,\\n\",\" 'choke': 10837,\\n\",\" '##ifiably': 16739,\\n\",\" 'monday': 17722,\\n\",\" 'woe': 8244,\\n\",\" '##vest': 3676,\\n\",\" 'gersh': 9782,\\n\",\" 'considers': 15587,\\n\",\" 'representation': 9580,\\n\",\" 'thought': 480,\\n\",\" '##ater': 3905,\\n\",\" 'library': 4283,\\n\",\" '##kien': 11653,\\n\",\" 'beta': 12214,\\n\",\" 'reput': 4581,\\n\",\" 'look': 463,\\n\",\" 'gather': 4890,\\n\",\" 'hazzard': 7956,\\n\",\" '##zel': 9931,\\n\",\" 'frus': 14717,\\n\",\" 'flies': 15221,\\n\",\" 'cont': 1069,\\n\",\" 'sg': 7169,\\n\",\" 'ready': 4983,\\n\",\" 'burns': 6087,\\n\",\" '7th': 9737,\\n\",\" 'retains': 18158,\\n\",\" '##gar': 2567,\\n\",\" 'satisf': 4763,\\n\",\" 'releasing': 10469,\\n\",\" 'line': 1313,\\n\",\" 'disgrace': 5366,\\n\",\" 'strained': 15981,\\n\",\" 'phys': 4387,\\n\",\" 'piper': 9454,\\n\",\" 'weaknesses': 17671,\\n\",\" '##acular': 15435,\\n\",\" 'readi': 12144,\\n\",\" '##ortun': 1153,\\n\",\" 'butch': 6743,\\n\",\" 'psychological': 4820,\\n\",\" 'satanic': 12433,\\n\",\" 'blue': 2863,\\n\",\" 'goldsw': 7542,\\n\",\" 'scr': 2929,\\n\",\" 'fields': 13436,\\n\",\" 'easi': 15771,\\n\",\" 'dk': 13896,\\n\",\" '##hal': 4926,\\n\",\" 'linear': 10899,\\n\",\" 'ta': 2834,\\n\",\" '##etball': 5506,\\n\",\" 'fata': 8353,\\n\",\" 'species': 9509,\\n\",\" 'atmo': 13140,\\n\",\" '##rated': 1508,\\n\",\" 'sk': 1594,\\n\",\" 'ginger': 6599,\\n\",\" 'backs': 15367,\\n\",\" 'pang': 14079,\\n\",\" 'blasting': 17632,\\n\",\" 'thro': 4195,\\n\",\" '##oose': 7257,\\n\",\" 'quirky': 3868,\\n\",\" 'istan': 6687,\\n\",\" 'solution': 10705,\\n\",\" 'noti': 11845,\\n\",\" 'lousy': 3531,\\n\",\" 'considere': 13552,\\n\",\" 'intelligently': 16500,\\n\",\" 'oss': 5771,\\n\",\" 'thru': 6309,\\n\",\" 'hours': 2032,\\n\",\" 'doubts': 8194,\\n\",\" ...}\"]},\"metadata\":{\"tags\":[]},\"execution_count\":8}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"lIID_rquXa37\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504078846,\"user_tz\":-180,\"elapsed\":284,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"c07f735c-017e-4914-f4f3-87d9294274de\"},\"source\":[\"!mkdir tokenizer\\n\",\"bert_wordpiece_tokenizer.save_model(\\\"tokenizer\\\")\"],\"execution_count\":9,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"['tokenizer/vocab.txt']\"]},\"metadata\":{\"tags\":[]},\"execution_count\":9}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"JF5_gklbXeeu\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504081264,\"user_tz\":-180,\"elapsed\":286,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"tokenizer = BertWordPieceTokenizer.from_file(\\\"tokenizer/vocab.txt\\\")\"],\"execution_count\":10,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"yaKwOs23boQh\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504082326,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"\"],\"execution_count\":10,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"R-ANSWWKXz29\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504082616,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"tokenized_sentence = tokenizer.encode(\\\"Oh it works just fine\\\")\"],\"execution_count\":11,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"hC11u5e-X35m\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504084755,\"user_tz\":-180,\"elapsed\":285,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"d91dd82c-185c-4113-84b2-80d5bc6579ac\"},\"source\":[\"tokenized_sentence.tokens\"],\"execution_count\":12,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"['[CLS]', 'oh', 'it', 'works', 'just', 'fine', '[SEP]']\"]},\"metadata\":{\"tags\":[]},\"execution_count\":12}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"0f5gF5m4X5m9\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504086430,\"user_tz\":-180,\"elapsed\":300,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"tokenized_sentence = tokenizer.encode(\\\"ohoh i thougt it might be workingg well\\\")\"],\"execution_count\":13,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"z7-Nt9n2YA8E\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504091912,\"user_tz\":-180,\"elapsed\":4267,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from transformers import BertTokenizerFast \\n\",\"tokenizer = BertTokenizerFast.from_pretrained(\\\"tokenizer\\\") \"],\"execution_count\":14,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"xHwTfLvKYGKA\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504097948,\"user_tz\":-180,\"elapsed\":4931,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"dbcad4ab-e74f-4894-cb15-bed974a672f3\"},\"source\":[\"from transformers import LineByLineTextDataset \\n\",\"dataset = LineByLineTextDataset(tokenizer=tokenizer, file_path=\\\"corpus.txt\\\", block_size=128) \"],\"execution_count\":15,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"/usr/local/lib/python3.7/dist-packages/transformers/data/datasets/language_modeling.py:124: FutureWarning: This dataset will be removed from the library soon, preprocessing should be handled with the 🤗 Datasets library. You can have a look at this example script for pointers: https://github.com/huggingface/transformers/blob/master/examples/pytorch/language-modeling/run_mlm.py\\n\",\"  FutureWarning,\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"njU0BD1UYMVE\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504101782,\"user_tz\":-180,\"elapsed\":283,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from transformers import DataCollatorForLanguageModeling \\n\",\"data_collator = DataCollatorForLanguageModeling(tokenizer=tokenizer, mlm=True, mlm_probability=0.15) \"],\"execution_count\":16,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"OBM3SvrHYTNH\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504103292,\"user_tz\":-180,\"elapsed\":396,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from transformers import TrainingArguments \\n\",\"training_args = TrainingArguments(output_dir=\\\"BERT\\\", overwrite_output_dir=True, num_train_epochs=1, per_device_train_batch_size=128) \"],\"execution_count\":17,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"_u5_N_-9YYqw\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504107377,\"user_tz\":-180,\"elapsed\":2967,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from transformers import BertConfig, BertForMaskedLM \\n\",\"bert = BertForMaskedLM(BertConfig()) \"],\"execution_count\":18,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"JQY0-ZLvYYtm\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504121843,\"user_tz\":-180,\"elapsed\":12611,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from transformers import Trainer \\n\",\"trainer = Trainer(model=bert, args=training_args, data_collator=data_collator, train_dataset=dataset) \"],\"execution_count\":19,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":334},\"id\":\"bVZDxhXBYYym\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504407077,\"user_tz\":-180,\"elapsed\":284148,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"bfcb2ab4-7cbd-4e76-d6d7-673263d56d6a\"},\"source\":[\"trainer.train()\"],\"execution_count\":20,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"***** Running training *****\\n\",\"  Num examples = 50022\\n\",\"  Num Epochs = 1\\n\",\"  Instantaneous batch size per device = 128\\n\",\"  Total train batch size (w. parallel, distributed & accumulation) = 128\\n\",\"  Gradient Accumulation steps = 1\\n\",\"  Total optimization steps = 391\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"text/html\":[\"\\n\",\"    <div>\\n\",\"      \\n\",\"      <progress value='391' max='391' style='width:300px; height:20px; vertical-align: middle;'></progress>\\n\",\"      [391/391 04:42, Epoch 1/1]\\n\",\"    </div>\\n\",\"    <table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: left;\\\">\\n\",\"      <th>Step</th>\\n\",\"      <th>Training Loss</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"  </tbody>\\n\",\"</table><p>\"],\"text/plain\":[\"<IPython.core.display.HTML object>\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\",\"\\n\",\"Training completed. Do not forget to share your model on huggingface.co/models =)\\n\",\"\\n\",\"\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"TrainOutput(global_step=391, training_loss=5.378278727421675, metrics={'train_runtime': 283.7543, 'train_samples_per_second': 176.286, 'train_steps_per_second': 1.378, 'total_flos': 812585139730200.0, 'train_loss': 5.378278727421675, 'epoch': 1.0})\"]},\"metadata\":{\"tags\":[]},\"execution_count\":20}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"6uzttHnJYY1C\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504411937,\"user_tz\":-180,\"elapsed\":2154,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"50607221-359b-4601-f3b4-04004181a2a7\"},\"source\":[\"trainer.save_model(\\\"MyBERT\\\")\"],\"execution_count\":21,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Saving model checkpoint to MyBERT\\n\",\"Configuration saved in MyBERT/config.json\\n\",\"Model weights saved in MyBERT/pytorch_model.bin\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"M-j4LqJHYs0F\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504413939,\"user_tz\":-180,\"elapsed\":286,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"6b8098f5-338c-4b27-b06a-762272a5120b\"},\"source\":[\"from transformers import BertConfig \\n\",\"BertConfig() \"],\"execution_count\":22,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"BertConfig {\\n\",\"  \\\"attention_probs_dropout_prob\\\": 0.1,\\n\",\"  \\\"gradient_checkpointing\\\": false,\\n\",\"  \\\"hidden_act\\\": \\\"gelu\\\",\\n\",\"  \\\"hidden_dropout_prob\\\": 0.1,\\n\",\"  \\\"hidden_size\\\": 768,\\n\",\"  \\\"initializer_range\\\": 0.02,\\n\",\"  \\\"intermediate_size\\\": 3072,\\n\",\"  \\\"layer_norm_eps\\\": 1e-12,\\n\",\"  \\\"max_position_embeddings\\\": 512,\\n\",\"  \\\"model_type\\\": \\\"bert\\\",\\n\",\"  \\\"num_attention_heads\\\": 12,\\n\",\"  \\\"num_hidden_layers\\\": 12,\\n\",\"  \\\"pad_token_id\\\": 0,\\n\",\"  \\\"position_embedding_type\\\": \\\"absolute\\\",\\n\",\"  \\\"transformers_version\\\": \\\"4.8.2\\\",\\n\",\"  \\\"type_vocab_size\\\": 2,\\n\",\"  \\\"use_cache\\\": true,\\n\",\"  \\\"vocab_size\\\": 30522\\n\",\"}\"]},\"metadata\":{\"tags\":[]},\"execution_count\":22}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"MyY0_v-eYs2k\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504416744,\"user_tz\":-180,\"elapsed\":365,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"df0a4444-a558-4896-d0b0-39b97c103646\"},\"source\":[\"tiny_bert_config = BertConfig(max_position_embeddings=512, hidden_size=128, num_attention_heads=2, num_hidden_layers=2, intermediate_size=512) \\n\",\"tiny_bert_config \"],\"execution_count\":23,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"BertConfig {\\n\",\"  \\\"attention_probs_dropout_prob\\\": 0.1,\\n\",\"  \\\"gradient_checkpointing\\\": false,\\n\",\"  \\\"hidden_act\\\": \\\"gelu\\\",\\n\",\"  \\\"hidden_dropout_prob\\\": 0.1,\\n\",\"  \\\"hidden_size\\\": 128,\\n\",\"  \\\"initializer_range\\\": 0.02,\\n\",\"  \\\"intermediate_size\\\": 512,\\n\",\"  \\\"layer_norm_eps\\\": 1e-12,\\n\",\"  \\\"max_position_embeddings\\\": 512,\\n\",\"  \\\"model_type\\\": \\\"bert\\\",\\n\",\"  \\\"num_attention_heads\\\": 2,\\n\",\"  \\\"num_hidden_layers\\\": 2,\\n\",\"  \\\"pad_token_id\\\": 0,\\n\",\"  \\\"position_embedding_type\\\": \\\"absolute\\\",\\n\",\"  \\\"transformers_version\\\": \\\"4.8.2\\\",\\n\",\"  \\\"type_vocab_size\\\": 2,\\n\",\"  \\\"use_cache\\\": true,\\n\",\"  \\\"vocab_size\\\": 30522\\n\",\"}\"]},\"metadata\":{\"tags\":[]},\"execution_count\":23}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":334},\"id\":\"ByC2zBtwYs44\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504442147,\"user_tz\":-180,\"elapsed\":21979,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"fede53a9-694d-4fde-f256-3c98780b9b9c\"},\"source\":[\"tiny_bert = BertForMaskedLM(tiny_bert_config) \\n\",\"trainer = Trainer(model=tiny_bert, args=training_args, data_collator=data_collator, train_dataset=dataset) \\n\",\"trainer.train() \"],\"execution_count\":24,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"***** Running training *****\\n\",\"  Num examples = 50022\\n\",\"  Num Epochs = 1\\n\",\"  Instantaneous batch size per device = 128\\n\",\"  Total train batch size (w. parallel, distributed & accumulation) = 128\\n\",\"  Gradient Accumulation steps = 1\\n\",\"  Total optimization steps = 391\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"text/html\":[\"\\n\",\"    <div>\\n\",\"      \\n\",\"      <progress value='391' max='391' style='width:300px; height:20px; vertical-align: middle;'></progress>\\n\",\"      [391/391 00:21, Epoch 1/1]\\n\",\"    </div>\\n\",\"    <table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: left;\\\">\\n\",\"      <th>Step</th>\\n\",\"      <th>Training Loss</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"  </tbody>\\n\",\"</table><p>\"],\"text/plain\":[\"<IPython.core.display.HTML object>\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\",\"\\n\",\"Training completed. Do not forget to share your model on huggingface.co/models =)\\n\",\"\\n\",\"\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"TrainOutput(global_step=391, training_loss=8.895718235493925, metrics={'train_runtime': 21.5776, 'train_samples_per_second': 2318.234, 'train_steps_per_second': 18.121, 'total_flos': 32771457490200.0, 'train_loss': 8.895718235493925, 'epoch': 1.0})\"]},\"metadata\":{\"tags\":[]},\"execution_count\":24}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":1000,\"referenced_widgets\":[\"5661f9afceac41cd81911ec61f840d1c\",\"0fe97a5a63614b35b1a58cb8d9765242\",\"6295bed1bbfc43ff8bd374152775b094\",\"91e3626b49814c7e85fc351d6cea403c\",\"cd7b13f0ba0f44a88b1d085fb5acf789\",\"24e111b1fc5746a8a69f862a0dc3bc7d\",\"e345fb951df24e0d848a051a485b4b65\",\"86b7927b6dc44fb28cf3b006163c39cf\",\"133035cbbade4827bc6764218387a54b\",\"e4efd2d54399463db446591d18cbe6fd\",\"c1e03b6d025a4dba9e37eb35c48d93ec\",\"62399066111345ec827e1912ec1d97ba\",\"73ca0820cf8a482bb3cb4bd658e7a5d3\",\"2989c05594ea4054b311517ce5339ed2\",\"ef71247bb53a4c709d59e63ab7d60c33\",\"62b92d97fdcb49b1ade6d076d0b203eb\",\"94a9c2fcf79f4ac0a8f2d712411f7d2b\",\"d8e8c28122024aadb70ff1aab5530eeb\",\"7a9083129f274149a176a0e31eb48411\",\"dac236c954ef4b0f99067b8bbeba6283\",\"96ad3e5ee6bc4398a0c6e8ea948682a4\",\"3f2e7ff1d0ad466196075aad10b8b84a\",\"9fb9172e15b3405fab9a7db14d0c560d\",\"48f55d9d4e3046d5abe21fef5b2a377c\",\"7d102900f8884e44aa4953d89ad79465\",\"6946d2105b2e4fd1bfab2b10f1256053\",\"0b351be38ce9450eb4f4a857132b0a79\",\"c41a59274c78422fa1c846a1711b2439\",\"477900896cec431f98ed705f5fbbf78b\",\"6cead6beda334e7a8db3f27ad5845705\",\"d26b4d4dbcd243cd8933f81fffad0b4d\",\"a0d2c4f1560a4a6bab0be1285c932283\",\"9dac89e1bf484a1fafaa1b5235846d93\",\"2290a421c99944a19da4fa1888204a0a\",\"3fe4f71880a5497e950d15a381614651\",\"7fc1dee184a54de987dbba3af55c597e\",\"4e9a142be38247088fe4f3a7d6ecd6f3\",\"127e05f39b2d4b0f84dd7ca57d71cc98\",\"73de1777b2f5478891fc9b8dc46c26a0\",\"476bdde5624144919c7abb27938c7221\"]},\"id\":\"fMCmbDfFYs_s\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504468368,\"user_tz\":-180,\"elapsed\":22470,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"b8f7f093-cc44-465f-d412-5a38025c9f20\"},\"source\":[\"from transformers import TFBertModel, BertTokenizerFast \\n\",\"bert = TFBertModel.from_pretrained(\\\"bert-base-uncased\\\") \\n\",\"tokenizer = BertTokenizerFast.from_pretrained(\\\"bert-base-uncased\\\") \\n\",\"bert.layers \"],\"execution_count\":25,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"https://huggingface.co/bert-base-uncased/resolve/main/config.json not found in cache or force_download set to True, downloading to /root/.cache/huggingface/transformers/tmp_jskfvy4\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"5661f9afceac41cd81911ec61f840d1c\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=570.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"storing https://huggingface.co/bert-base-uncased/resolve/main/config.json in cache at /root/.cache/huggingface/transformers/3c61d016573b14f7f008c02c4e51a366c67ab274726fe2910691e2a761acf43e.37395cee442ab11005bcd270f3c34464dc1704b715b5d7d52b1a461abe3b9e4e\\n\",\"creating metadata file for /root/.cache/huggingface/transformers/3c61d016573b14f7f008c02c4e51a366c67ab274726fe2910691e2a761acf43e.37395cee442ab11005bcd270f3c34464dc1704b715b5d7d52b1a461abe3b9e4e\\n\",\"loading configuration file https://huggingface.co/bert-base-uncased/resolve/main/config.json from cache at /root/.cache/huggingface/transformers/3c61d016573b14f7f008c02c4e51a366c67ab274726fe2910691e2a761acf43e.37395cee442ab11005bcd270f3c34464dc1704b715b5d7d52b1a461abe3b9e4e\\n\",\"Model config BertConfig {\\n\",\"  \\\"architectures\\\": [\\n\",\"    \\\"BertForMaskedLM\\\"\\n\",\"  ],\\n\",\"  \\\"attention_probs_dropout_prob\\\": 0.1,\\n\",\"  \\\"gradient_checkpointing\\\": false,\\n\",\"  \\\"hidden_act\\\": \\\"gelu\\\",\\n\",\"  \\\"hidden_dropout_prob\\\": 0.1,\\n\",\"  \\\"hidden_size\\\": 768,\\n\",\"  \\\"initializer_range\\\": 0.02,\\n\",\"  \\\"intermediate_size\\\": 3072,\\n\",\"  \\\"layer_norm_eps\\\": 1e-12,\\n\",\"  \\\"max_position_embeddings\\\": 512,\\n\",\"  \\\"model_type\\\": \\\"bert\\\",\\n\",\"  \\\"num_attention_heads\\\": 12,\\n\",\"  \\\"num_hidden_layers\\\": 12,\\n\",\"  \\\"pad_token_id\\\": 0,\\n\",\"  \\\"position_embedding_type\\\": \\\"absolute\\\",\\n\",\"  \\\"transformers_version\\\": \\\"4.8.2\\\",\\n\",\"  \\\"type_vocab_size\\\": 2,\\n\",\"  \\\"use_cache\\\": true,\\n\",\"  \\\"vocab_size\\\": 30522\\n\",\"}\\n\",\"\\n\",\"https://huggingface.co/bert-base-uncased/resolve/main/tf_model.h5 not found in cache or force_download set to True, downloading to /root/.cache/huggingface/transformers/tmp574a63hw\\n\"],\"name\":\"stderr\"},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"133035cbbade4827bc6764218387a54b\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=536063208.0, style=ProgressStyle(descri…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"storing https://huggingface.co/bert-base-uncased/resolve/main/tf_model.h5 in cache at /root/.cache/huggingface/transformers/775efbdc2152093295bc5824dee96da82a5f3c1f218dfface1b8cef3094bdf8f.c719a806caef7d36ec0185f14b3b5fa727d919f924abe35622b4b7147bfbb8c7.h5\\n\",\"creating metadata file for /root/.cache/huggingface/transformers/775efbdc2152093295bc5824dee96da82a5f3c1f218dfface1b8cef3094bdf8f.c719a806caef7d36ec0185f14b3b5fa727d919f924abe35622b4b7147bfbb8c7.h5\\n\",\"loading weights file https://huggingface.co/bert-base-uncased/resolve/main/tf_model.h5 from cache at /root/.cache/huggingface/transformers/775efbdc2152093295bc5824dee96da82a5f3c1f218dfface1b8cef3094bdf8f.c719a806caef7d36ec0185f14b3b5fa727d919f924abe35622b4b7147bfbb8c7.h5\\n\"],\"name\":\"stderr\"},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"stream\",\"text\":[\"Some layers from the model checkpoint at bert-base-uncased were not used when initializing TFBertModel: ['mlm___cls', 'nsp___cls']\\n\",\"- This IS expected if you are initializing TFBertModel from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing TFBertModel from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\",\"All the layers of TFBertModel were initialized from the model checkpoint at bert-base-uncased.\\n\",\"If your task is similar to the task the model of the checkpoint was trained on, you can already use TFBertModel for predictions without further training.\\n\",\"https://huggingface.co/bert-base-uncased/resolve/main/vocab.txt not found in cache or force_download set to True, downloading to /root/.cache/huggingface/transformers/tmptjrcqhtk\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"94a9c2fcf79f4ac0a8f2d712411f7d2b\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=231508.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"storing https://huggingface.co/bert-base-uncased/resolve/main/vocab.txt in cache at /root/.cache/huggingface/transformers/45c3f7a79a80e1cf0a489e5c62b43f173c15db47864303a55d623bb3c96f72a5.d789d64ebfe299b0e416afc4a169632f903f693095b4629a7ea271d5a0cf2c99\\n\",\"creating metadata file for /root/.cache/huggingface/transformers/45c3f7a79a80e1cf0a489e5c62b43f173c15db47864303a55d623bb3c96f72a5.d789d64ebfe299b0e416afc4a169632f903f693095b4629a7ea271d5a0cf2c99\\n\",\"https://huggingface.co/bert-base-uncased/resolve/main/tokenizer.json not found in cache or force_download set to True, downloading to /root/.cache/huggingface/transformers/tmp83epubcm\\n\"],\"name\":\"stderr\"},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"7d102900f8884e44aa4953d89ad79465\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=466062.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"storing https://huggingface.co/bert-base-uncased/resolve/main/tokenizer.json in cache at /root/.cache/huggingface/transformers/534479488c54aeaf9c3406f647aa2ec13648c06771ffe269edabebd4c412da1d.7f2721073f19841be16f41b0a70b600ca6b880c8f3df6f3535cbc704371bdfa4\\n\",\"creating metadata file for /root/.cache/huggingface/transformers/534479488c54aeaf9c3406f647aa2ec13648c06771ffe269edabebd4c412da1d.7f2721073f19841be16f41b0a70b600ca6b880c8f3df6f3535cbc704371bdfa4\\n\"],\"name\":\"stderr\"},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"stream\",\"text\":[\"https://huggingface.co/bert-base-uncased/resolve/main/tokenizer_config.json not found in cache or force_download set to True, downloading to /root/.cache/huggingface/transformers/tmpgk2_ycuj\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"9dac89e1bf484a1fafaa1b5235846d93\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=28.0, style=ProgressStyle(description_w…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"storing https://huggingface.co/bert-base-uncased/resolve/main/tokenizer_config.json in cache at /root/.cache/huggingface/transformers/c1d7f0a763fb63861cc08553866f1fc3e5a6f4f07621be277452d26d71303b7e.20430bd8e10ef77a7d2977accefe796051e01bc2fc4aa146bc862997a1a15e79\\n\",\"creating metadata file for /root/.cache/huggingface/transformers/c1d7f0a763fb63861cc08553866f1fc3e5a6f4f07621be277452d26d71303b7e.20430bd8e10ef77a7d2977accefe796051e01bc2fc4aa146bc862997a1a15e79\\n\",\"loading file https://huggingface.co/bert-base-uncased/resolve/main/vocab.txt from cache at /root/.cache/huggingface/transformers/45c3f7a79a80e1cf0a489e5c62b43f173c15db47864303a55d623bb3c96f72a5.d789d64ebfe299b0e416afc4a169632f903f693095b4629a7ea271d5a0cf2c99\\n\",\"loading file https://huggingface.co/bert-base-uncased/resolve/main/tokenizer.json from cache at /root/.cache/huggingface/transformers/534479488c54aeaf9c3406f647aa2ec13648c06771ffe269edabebd4c412da1d.7f2721073f19841be16f41b0a70b600ca6b880c8f3df6f3535cbc704371bdfa4\\n\",\"loading file https://huggingface.co/bert-base-uncased/resolve/main/added_tokens.json from cache at None\\n\",\"loading file https://huggingface.co/bert-base-uncased/resolve/main/special_tokens_map.json from cache at None\\n\",\"loading file https://huggingface.co/bert-base-uncased/resolve/main/tokenizer_config.json from cache at /root/.cache/huggingface/transformers/c1d7f0a763fb63861cc08553866f1fc3e5a6f4f07621be277452d26d71303b7e.20430bd8e10ef77a7d2977accefe796051e01bc2fc4aa146bc862997a1a15e79\\n\"],\"name\":\"stderr\"},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"[<transformers.models.bert.modeling_tf_bert.TFBertMainLayer at 0x7f5b9fd316d0>]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":25}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"Z-tQO7EbYtCR\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504473380,\"user_tz\":-180,\"elapsed\":325,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"5390c3db-44ea-437f-e812-354840dcbfa1\"},\"source\":[\"tokenized_text = tokenizer.batch_encode_plus([\\\"hello how is it going with you\\\",\\\"lets test it\\\"], return_tensors=\\\"tf\\\", max_length=256, truncation=True, pad_to_max_length=True) \\n\",\"bert(tokenized_text) \"],\"execution_count\":26,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"/usr/local/lib/python3.7/dist-packages/transformers/tokenization_utils_base.py:2132: FutureWarning: The `pad_to_max_length` argument is deprecated and will be removed in a future version, use `padding=True` or `padding='longest'` to pad to the longest sequence in the batch, or use `padding='max_length'` to pad to a max length. In this case, you can give a specific length with `max_length` (e.g. `max_length=45`) or leave max_length to None to pad to the maximal input size of the model (e.g. 512 for Bert).\\n\",\"  FutureWarning,\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"TFBaseModelOutputWithPooling([('last_hidden_state',\\n\",\"                               <tf.Tensor: shape=(2, 256, 768), dtype=float32, numpy=\\n\",\"                               array([[[ 1.00471288e-01,  6.77022934e-02, -8.33591744e-02, ...,\\n\",\"                                        -4.93304461e-01,  1.16539642e-01,  2.26646975e-01],\\n\",\"                                       [ 3.23624432e-01,  3.70718002e-01,  6.14686370e-01, ...,\\n\",\"                                        -6.27267480e-01,  3.79082561e-01,  7.05312043e-02],\\n\",\"                                       [ 1.99534193e-01, -8.75509918e-01, -6.47860616e-02, ...,\\n\",\"                                        -1.28080100e-02,  3.07651967e-01, -2.07310896e-02],\\n\",\"                                       ...,\\n\",\"                                       [-6.53299540e-02,  1.19045913e-01,  5.76846719e-01, ...,\\n\",\"                                        -2.95459926e-01,  2.49742977e-02,  1.13964222e-01],\\n\",\"                                       [-2.64715403e-01, -7.86383227e-02,  5.47281384e-01, ...,\\n\",\"                                        -1.37515306e-01, -5.94685934e-02, -5.17925322e-02],\\n\",\"                                       [-2.44959027e-01, -1.14799343e-01,  5.92174053e-01, ...,\\n\",\"                                        -1.56881928e-01, -3.39758471e-02, -8.46135020e-02]],\\n\",\"                               \\n\",\"                                      [[ 2.94565968e-02,  2.30868325e-01,  2.92651832e-01, ...,\\n\",\"                                        -1.30421251e-01,  1.89659148e-01,  4.68428344e-01],\\n\",\"                                       [ 1.70523262e+00,  6.91359818e-01,  7.31509924e-01, ...,\\n\",\"                                         2.89304137e-01,  5.36758423e-01, -1.54552370e-01],\\n\",\"                                       [ 1.04597911e-01,  9.63677615e-02,  6.99652955e-02, ...,\\n\",\"                                        -4.15922850e-01, -1.18989676e-01, -6.72240913e-01],\\n\",\"                                       ...,\\n\",\"                                       [ 8.00909936e-01,  2.38983527e-01,  4.15492773e-01, ...,\\n\",\"                                         3.90535370e-02,  2.34373271e-01,  1.22278899e-01],\\n\",\"                                       [ 2.60863423e-01,  4.43267561e-02,  3.63649219e-01, ...,\\n\",\"                                        -7.53857195e-04,  3.84623855e-02, -2.14213550e-01],\\n\",\"                                       [-2.30111465e-01, -4.98387933e-01, -1.26490444e-02, ...,\\n\",\"                                         4.49868321e-01,  6.16021976e-02, -2.61357427e-01]]],\\n\",\"                                     dtype=float32)>),\\n\",\"                              ('pooler_output',\\n\",\"                               <tf.Tensor: shape=(2, 768), dtype=float32, numpy=\\n\",\"                               array([[-0.9204854 , -0.37138984, -0.6051261 , ..., -0.4473696 ,\\n\",\"                                       -0.6434759 ,  0.9423271 ],\\n\",\"                                      [-0.88541585, -0.26547667,  0.21014938, ...,  0.17237104,\\n\",\"                                       -0.640299  ,  0.88883436]], dtype=float32)>)])\"]},\"metadata\":{\"tags\":[]},\"execution_count\":26}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"DMmRg2X-Y7LF\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504480743,\"user_tz\":-180,\"elapsed\":4230,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"6a4edc0c-0d1a-4033-c44a-5476e5ea0914\"},\"source\":[\"from tensorflow import keras \\n\",\"import tensorflow as tf \\n\",\"max_length = 256 \\n\",\"tokens = keras.layers.Input(shape=(max_length,), dtype=tf.dtypes.int32) \\n\",\"masks = keras.layers.Input(shape=(max_length,), dtype=tf.dtypes.int32) \\n\",\"embedding_layer = bert.layers[0]([tokens,masks])[0][:,0,:] \\n\",\"dense = tf.keras.layers.Dense(units=2, activation=\\\"softmax\\\")(embedding_layer) \\n\",\"model = keras.Model([tokens,masks],dense) \"],\"execution_count\":27,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"WARNING:tensorflow:From /usr/local/lib/python3.7/dist-packages/tensorflow/python/ops/array_ops.py:5049: calling gather (from tensorflow.python.ops.array_ops) with validate_indices is deprecated and will be removed in a future version.\\n\",\"Instructions for updating:\\n\",\"The `validate_indices` argument has no effect. Indices are always validated on CPU and never validated on GPU.\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"T8xeS5TyY7No\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504483580,\"user_tz\":-180,\"elapsed\":312,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"34427854-5ba6-41e2-ec99-88b82ec59505\"},\"source\":[\"tokenized = tokenizer.batch_encode_plus([\\\"hello how is it going with you\\\",\\\"hello how is it going with you\\\"], return_tensors=\\\"tf\\\", max_length= max_length, truncation=True, pad_to_max_length=True) \"],\"execution_count\":28,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"/usr/local/lib/python3.7/dist-packages/transformers/tokenization_utils_base.py:2132: FutureWarning: The `pad_to_max_length` argument is deprecated and will be removed in a future version, use `padding=True` or `padding='longest'` to pad to the longest sequence in the batch, or use `padding='max_length'` to pad to a max length. In this case, you can give a specific length with `max_length` (e.g. `max_length=45`) or leave max_length to None to pad to the maximal input size of the model (e.g. 512 for Bert).\\n\",\"  FutureWarning,\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"AGMwpG8OY7P_\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504485127,\"user_tz\":-180,\"elapsed\":299,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"fd5fdad8-8545-418e-9a4b-378c3a79e934\"},\"source\":[\"model([tokenized[\\\"input_ids\\\"],tokenized[\\\"attention_mask\\\"]]) \"],\"execution_count\":29,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"<tf.Tensor: shape=(2, 2), dtype=float32, numpy=\\n\",\"array([[0.56051165, 0.43948835],\\n\",\"       [0.56051165, 0.43948835]], dtype=float32)>\"]},\"metadata\":{\"tags\":[]},\"execution_count\":29}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"b24ahO1UY7SR\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504487398,\"user_tz\":-180,\"elapsed\":339,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"41ea32ad-1ad7-4a2b-d525-446ca88f4cbb\"},\"source\":[\"model.compile(optimizer=\\\"Adam\\\", loss=\\\"categorical_crossentropy\\\", metrics=[\\\"accuracy\\\"]) \\n\",\"model.summary() \"],\"execution_count\":30,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Model: \\\"model\\\"\\n\",\"__________________________________________________________________________________________________\\n\",\"Layer (type)                    Output Shape         Param #     Connected to                     \\n\",\"==================================================================================================\\n\",\"input_1 (InputLayer)            [(None, 256)]        0                                            \\n\",\"__________________________________________________________________________________________________\\n\",\"input_2 (InputLayer)            [(None, 256)]        0                                            \\n\",\"__________________________________________________________________________________________________\\n\",\"bert (TFBertMainLayer)          TFBaseModelOutputWit 109482240   input_1[0][0]                    \\n\",\"                                                                 input_2[0][0]                    \\n\",\"__________________________________________________________________________________________________\\n\",\"tf.__operators__.getitem (Slici (None, 768)          0           bert[0][0]                       \\n\",\"__________________________________________________________________________________________________\\n\",\"dense (Dense)                   (None, 2)            1538        tf.__operators__.getitem[0][0]   \\n\",\"==================================================================================================\\n\",\"Total params: 109,483,778\\n\",\"Trainable params: 109,483,778\\n\",\"Non-trainable params: 0\\n\",\"__________________________________________________________________________________________________\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"XSCi31iUZL1Y\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504491806,\"user_tz\":-180,\"elapsed\":291,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"model.layers[2].trainable = False \"],\"execution_count\":31,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"wcfBTBw8ZL6V\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625504525810,\"user_tz\":-180,\"elapsed\":30123,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"08436178-6e86-4151-f483-2c2671ef7cb0\"},\"source\":[\"import pandas as pd \\n\",\"imdb_df = pd.read_csv(\\\"IMDB Dataset.csv\\\") \\n\",\"reviews = list(imdb_df.review) \\n\",\"tokenized_reviews = tokenizer.batch_encode_plus(reviews, return_tensors=\\\"tf\\\", max_length=max_length, truncation=True, pad_to_max_length=True) \\n\",\"\\n\",\"import numpy as np \\n\",\"train_split = int(0.8 * len(tokenized_reviews[\\\"attention_mask\\\"])) \\n\",\"train_tokens = tokenized_reviews[\\\"input_ids\\\"][:train_split] \\n\",\"test_tokens = tokenized_reviews[\\\"input_ids\\\"][train_split:] \\n\",\"train_masks = tokenized_reviews[\\\"attention_mask\\\"][:train_split] \\n\",\"test_masks = tokenized_reviews[\\\"attention_mask\\\"][train_split:] \\n\",\"sentiments = list(imdb_df.sentiment) \\n\",\"labels = np.array([[0,1] if sentiment == \\\"positive\\\" else [1,0] for sentiment in sentiments]) \\n\",\"train_labels = labels[:train_split] \\n\",\"test_labels = labels[train_split:] \"],\"execution_count\":32,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"/usr/local/lib/python3.7/dist-packages/transformers/tokenization_utils_base.py:2132: FutureWarning: The `pad_to_max_length` argument is deprecated and will be removed in a future version, use `padding=True` or `padding='longest'` to pad to the longest sequence in the batch, or use `padding='max_length'` to pad to a max length. In this case, you can give a specific length with `max_length` (e.g. `max_length=45`) or leave max_length to None to pad to the maximal input size of the model (e.g. 512 for Bert).\\n\",\"  FutureWarning,\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"YaQlIkdZZL8c\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"outputId\":\"faaa116b-6cc2-4263-876c-bebf162eafe6\"},\"source\":[\"model.fit([train_tokens,train_masks],train_labels, epochs=5)\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Epoch 1/5\\n\",\"WARNING:tensorflow:Gradients do not exist for variables ['tf_bert_model/bert/pooler/dense/kernel:0', 'tf_bert_model/bert/pooler/dense/bias:0'] when minimizing the loss.\\n\",\"WARNING:tensorflow:Gradients do not exist for variables ['tf_bert_model/bert/pooler/dense/kernel:0', 'tf_bert_model/bert/pooler/dense/bias:0'] when minimizing the loss.\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"3RTyDkLzZL-8\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH03/CH03b_Other_Autoencoding_Models.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH03.0X Autoencoding Models.ipynb\",\"provenance\":[]},\"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.8.6\"},\"accelerator\":\"GPU\",\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"8b81b202454a40d59e8e8a22fdf627c0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_e9d4cadaeb894944a8db0ea909e93196\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_7811277a0cdb44938fe505256f255efe\",\"IPY_MODEL_e19e416b873a44ed808a9af58a466974\"]}},\"e9d4cadaeb894944a8db0ea909e93196\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7811277a0cdb44938fe505256f255efe\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_82aab4542ef042458b6f3cb5ac0c337b\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":684,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":684,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_2852b37749014cb980a7ecb6ae74c868\"}},\"e19e416b873a44ed808a9af58a466974\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_d7b76df2db344d11859f8b080107f453\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 684/684 [00:01&lt;00:00, 571B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_84a9d55078224dc2a97f11dfc90c46d8\"}},\"82aab4542ef042458b6f3cb5ac0c337b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"2852b37749014cb980a7ecb6ae74c868\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d7b76df2db344d11859f8b080107f453\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"84a9d55078224dc2a97f11dfc90c46d8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"fb0368271bea4e3cb04d944ab561e64e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_9e8becbd17ce4edabe793108899651dc\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_638e0c276d3143a29d5b4d42ea13746b\",\"IPY_MODEL_b4157696ed5948c49910a08a93762ddc\"]}},\"9e8becbd17ce4edabe793108899651dc\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"638e0c276d3143a29d5b4d42ea13746b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_25cf99fba6174c52bf25208305478283\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":47376696,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":47376696,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_8683bdd7ed704c0a8f6e99aad5304230\"}},\"b4157696ed5948c49910a08a93762ddc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_f25b9869dbe441e6b358b96c3c245eed\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 47.4M/47.4M [00:50&lt;00:00, 938kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d04cbdd73492412ca88c6b2feec7e3e1\"}},\"25cf99fba6174c52bf25208305478283\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"8683bdd7ed704c0a8f6e99aad5304230\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f25b9869dbe441e6b358b96c3c245eed\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"d04cbdd73492412ca88c6b2feec7e3e1\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"56c27674eeb04d6ab7b8c1e162315908\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_7f6c16ba09134896a9c44e03641ba4e0\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_5b3ca08719b440f38d3e91952ad3c541\",\"IPY_MODEL_65a7480c17a04c70b6b80f386bdd2279\"]}},\"7f6c16ba09134896a9c44e03641ba4e0\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"5b3ca08719b440f38d3e91952ad3c541\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_641baab0aff04da29b836ea901e1b797\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":760289,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":760289,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_51b706dd85d543f9bed483c713a62bb8\"}},\"65a7480c17a04c70b6b80f386bdd2279\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_17a33b95eb3247bc97756dd1bebf597a\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 760k/760k [00:05&lt;00:00, 132kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_70dffa0666b74cbc9cc0cbb55fbf9a6d\"}},\"641baab0aff04da29b836ea901e1b797\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"51b706dd85d543f9bed483c713a62bb8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"17a33b95eb3247bc97756dd1bebf597a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"70dffa0666b74cbc9cc0cbb55fbf9a6d\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f96649fb338f43089959752262256234\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_3fa4f64db4cb4ba691bec79675d95110\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_2b2ee1a36c954aa49bde80ba21b8d0f4\",\"IPY_MODEL_edf455a918d14c8b8c574fdf41f1754d\"]}},\"3fa4f64db4cb4ba691bec79675d95110\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"2b2ee1a36c954aa49bde80ba21b8d0f4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_f49667bc9cde43c7a914a223ea1009d3\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1312669,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1312669,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_ab371af6b3f146d8ba0c859aff8a5cba\"}},\"edf455a918d14c8b8c574fdf41f1754d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_d2a0dc04f9b74618b485dbfe0b7cb3bc\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1.31M/1.31M [00:03&lt;00:00, 380kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_1a73ffbaaba34625b7091e2d268b856e\"}},\"f49667bc9cde43c7a914a223ea1009d3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"ab371af6b3f146d8ba0c859aff8a5cba\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d2a0dc04f9b74618b485dbfe0b7cb3bc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"1a73ffbaaba34625b7091e2d268b856e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"465333225c02447caeec9b9a571e5983\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_a57f026c1a0f464bb268c28814b8de83\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_01963ecdee5c40a388bfb35fe628a619\",\"IPY_MODEL_ed3875f6692b44e5b1ffd0e1ca7af53e\"]}},\"a57f026c1a0f464bb268c28814b8de83\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"01963ecdee5c40a388bfb35fe628a619\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_46f8fc90798c4b8a94611ffa82c9db60\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":898823,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":898823,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d6713566083c4c7f953f9425a8b28bb5\"}},\"ed3875f6692b44e5b1ffd0e1ca7af53e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_1451a7dcdb6e4d6e9f405a97aef33a45\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 899k/899k [00:05&lt;00:00, 157kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_9f455b91ff7c43cfa203359112fce1b4\"}},\"46f8fc90798c4b8a94611ffa82c9db60\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"d6713566083c4c7f953f9425a8b28bb5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"1451a7dcdb6e4d6e9f405a97aef33a45\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"9f455b91ff7c43cfa203359112fce1b4\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f72d6ca6d5184231a4fa2cd5c6351c1e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_997ad1f8bc314985806e548deb8c1ae7\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_bdf522daca0b46ab93cbd65d29ad0162\",\"IPY_MODEL_a6f8b379a1ac4105b8662b5bd630b7db\"]}},\"997ad1f8bc314985806e548deb8c1ae7\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"bdf522daca0b46ab93cbd65d29ad0162\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_ff00e27046a045ea924ff1754474c7eb\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":456318,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":456318,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_626962251d7c4eafa98f8f242968fa1c\"}},\"a6f8b379a1ac4105b8662b5bd630b7db\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_6ed5b756b62a4d609db39aa4ab2f8082\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 456k/456k [00:03&lt;00:00, 125kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_1b9a4d222d55472f8b1480660c7e02b3\"}},\"ff00e27046a045ea924ff1754474c7eb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"626962251d7c4eafa98f8f242968fa1c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"6ed5b756b62a4d609db39aa4ab2f8082\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"1b9a4d222d55472f8b1480660c7e02b3\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ec1345d2103b4bc9a6ffccc76e563775\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_f7924d2423b7439ba8f9ad53b5e80103\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_789ff7bb65504f348724e82694195c8a\",\"IPY_MODEL_884b11b5065b41cb9afe9fd1fe5e6e1d\"]}},\"f7924d2423b7439ba8f9ad53b5e80103\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"789ff7bb65504f348724e82694195c8a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_553defecedd4434b9430c2df5d980892\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1355863,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1355863,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_0ef2c7fbe35c43db987f798e9cd6cd8c\"}},\"884b11b5065b41cb9afe9fd1fe5e6e1d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_1834e18669d04ff89429f35cda3c6239\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1.36M/1.36M [00:01&lt;00:00, 1.19MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e508b09580164517b1eabe2cde414400\"}},\"553defecedd4434b9430c2df5d980892\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"0ef2c7fbe35c43db987f798e9cd6cd8c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"1834e18669d04ff89429f35cda3c6239\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"e508b09580164517b1eabe2cde414400\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"cbe9234d51a34833a0f918d6b32f8639\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_3765208b7d144da2adbec92f63f7b276\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_8e2551afb40b42a6b8c0b9c20893863a\",\"IPY_MODEL_31a02239eb144ccbba92af6d8e711865\"]}},\"3765208b7d144da2adbec92f63f7b276\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"8e2551afb40b42a6b8c0b9c20893863a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_b09e2470cf1148bcab393d8c0225090d\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":481,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":481,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_5080277d9dbb4c84921244183689f380\"}},\"31a02239eb144ccbba92af6d8e711865\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_2b39eae352904443aea68ddda360e46b\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 481/481 [00:00&lt;00:00, 808B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_98e03690789349a0a728289ee028fab7\"}},\"b09e2470cf1148bcab393d8c0225090d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"5080277d9dbb4c84921244183689f380\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"2b39eae352904443aea68ddda360e46b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"98e03690789349a0a728289ee028fab7\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"39e873f8fc0c4c9ca04a63b7ee162123\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_2082348ed20e445092c4ce01e4bd6d9b\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_2679c570ab1f4252896303ef215e7aef\",\"IPY_MODEL_28bc16669c04494ab3a7389c25f6206d\"]}},\"2082348ed20e445092c4ce01e4bd6d9b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"2679c570ab1f4252896303ef215e7aef\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_f0805f7a9fb54f65802f776f9ac67dc8\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":501200538,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":501200538,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d9287556dab7471c90bf16ff3187a806\"}},\"28bc16669c04494ab3a7389c25f6206d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_7282bc2a3c754085915068fa40d018b0\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 501M/501M [00:09&lt;00:00, 54.0MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_dc8804200b0940eb861c29e8ae42c626\"}},\"f0805f7a9fb54f65802f776f9ac67dc8\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"d9287556dab7471c90bf16ff3187a806\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7282bc2a3c754085915068fa40d018b0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"dc8804200b0940eb861c29e8ae42c626\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c4ad9c4a4e4c40bb86e1bdc988ee17dc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_fd408398c9e04cb79512ae6b535cb3e8\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_4a58acc8943d4c3895c4d4f46c4a4fac\",\"IPY_MODEL_0f29da9a53264c4ab198e404cfad04b3\"]}},\"fd408398c9e04cb79512ae6b535cb3e8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"4a58acc8943d4c3895c4d4f46c4a4fac\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_57c469cf679a41a08e2e97509f435f69\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":463,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":463,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_75acbb2201ab42d38086a89d6130049d\"}},\"0f29da9a53264c4ab198e404cfad04b3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_c3a7283825e3432e90d556c2034e6491\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 463/463 [00:05&lt;00:00, 84.8B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c2a34c719ae1431d9a2a2ad3f9dd0c3b\"}},\"57c469cf679a41a08e2e97509f435f69\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"75acbb2201ab42d38086a89d6130049d\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c3a7283825e3432e90d556c2034e6491\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"c2a34c719ae1431d9a2a2ad3f9dd0c3b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"437c5aeb7d684138ad59560b8ed7ed56\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_e716d29b444748f6be532532a94118db\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_db6f33e89efd4651b68678b5f80430d2\",\"IPY_MODEL_66852982ce004612827b6045bbb08019\"]}},\"e716d29b444748f6be532532a94118db\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"db6f33e89efd4651b68678b5f80430d2\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_82c842703f7a4460bfd2b1436bcbb4db\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":54236116,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":54236116,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_3f61a882c48246dfa2e61c8bfb253f3b\"}},\"66852982ce004612827b6045bbb08019\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_f69758cb102243479d2100499b489f7d\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 54.2M/54.2M [00:04&lt;00:00, 13.5MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_50fd087844b34a71b4d0bcb61404493c\"}},\"82c842703f7a4460bfd2b1436bcbb4db\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"3f61a882c48246dfa2e61c8bfb253f3b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f69758cb102243479d2100499b489f7d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"50fd087844b34a71b4d0bcb61404493c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"3adcee66d5a94187a205656ed519e5ef\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_eb104d3ce4684e64af83c4522e857858\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_ef9318a9839b4131bbc8c20229a3f367\",\"IPY_MODEL_42f30c33bf434344bcb637680558846c\"]}},\"eb104d3ce4684e64af83c4522e857858\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ef9318a9839b4131bbc8c20229a3f367\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_30bc0d0f8a7e4cd48111cf56d684ea1e\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":231508,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":231508,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_555bb4174a0442a4b801ab80dd7a6e37\"}},\"42f30c33bf434344bcb637680558846c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_6f9275557b154f89b27f1b27a74475cd\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 232k/232k [00:01&lt;00:00, 126kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c036c60de37b4bd584c091817e6b9eb5\"}},\"30bc0d0f8a7e4cd48111cf56d684ea1e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"555bb4174a0442a4b801ab80dd7a6e37\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"6f9275557b154f89b27f1b27a74475cd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"c036c60de37b4bd584c091817e6b9eb5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e4637b4bab3b4ee68ad5e08279b17499\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_88406bd4e5b748c391e42dff6fe4ddc2\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_1e319dcd49cf48ecbfb2b1907ba7df46\",\"IPY_MODEL_bc647f746ad54cdd8c57efc96896dacd\"]}},\"88406bd4e5b748c391e42dff6fe4ddc2\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"1e319dcd49cf48ecbfb2b1907ba7df46\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_15bf454a31a64c1fb57a7790daba9660\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":466062,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":466062,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_446b6eed334f4491a1cb062cd4507e79\"}},\"bc647f746ad54cdd8c57efc96896dacd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_fcd01513fda0460fa82414a25ab6e640\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 466k/466k [00:00&lt;00:00, 520kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_78bb75f6b3f4424297a0e1eac91160ab\"}},\"15bf454a31a64c1fb57a7790daba9660\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"446b6eed334f4491a1cb062cd4507e79\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"fcd01513fda0460fa82414a25ab6e640\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"78bb75f6b3f4424297a0e1eac91160ab\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"534d9ff20a91407596bd0e741e69bebf\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_35fae51bc27542eab50849ab549f2da5\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_66ce3c0c875246e086ecea89fd7449c5\",\"IPY_MODEL_e70447c7499c499fad5a1ce3ac29957b\"]}},\"35fae51bc27542eab50849ab549f2da5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"66ce3c0c875246e086ecea89fd7449c5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_9172fcc8bbfb4f2eba2dc23b6f4aa88a\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":29,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":29,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_6e0d79aacbce43a183df1a672d50d69b\"}},\"e70447c7499c499fad5a1ce3ac29957b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_d7824ef9431e4d2faa7aa81e24a8ecf4\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 29.0/29.0 [00:00&lt;00:00, 811B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_83ff5c23fafa4c0498cbe7217891255c\"}},\"9172fcc8bbfb4f2eba2dc23b6f4aa88a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"6e0d79aacbce43a183df1a672d50d69b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d7824ef9431e4d2faa7aa81e24a8ecf4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"83ff5c23fafa4c0498cbe7217891255c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}}},\"cells\":[{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"xyYkMSVC2TuK\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945212057,\"user_tz\":-180,\"elapsed\":9501,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"3aa96e5b-a5c1-4899-887d-eae98e08f6d7\"},\"source\":[\"!pip install SentencePiece\\n\",\"!pip install transformers\"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Collecting SentencePiece\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/f5/99/e0808cb947ba10f575839c43e8fafc9cc44e4a7a2c8f79c60db48220a577/sentencepiece-0.1.95-cp37-cp37m-manylinux2014_x86_64.whl (1.2MB)\\n\",\"\\u001b[K     |████████████████████████████████| 1.2MB 5.2MB/s \\n\",\"\\u001b[?25hInstalling collected packages: SentencePiece\\n\",\"Successfully installed SentencePiece-0.1.95\\n\",\"Collecting transformers\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d8/b2/57495b5309f09fa501866e225c84532d1fd89536ea62406b2181933fb418/transformers-4.5.1-py3-none-any.whl (2.1MB)\\n\",\"\\u001b[K     |████████████████████████████████| 2.1MB 5.6MB/s \\n\",\"\\u001b[?25hCollecting tokenizers<0.11,>=0.10.1\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/ae/04/5b870f26a858552025a62f1649c20d29d2672c02ff3c3fb4c688ca46467a/tokenizers-0.10.2-cp37-cp37m-manylinux2010_x86_64.whl (3.3MB)\\n\",\"\\u001b[K     |████████████████████████████████| 3.3MB 51.5MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (3.10.1)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Collecting sacremoses\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/ee/67241dc87f266093c533a2d4d3d69438e57d7a90abb216fa076e7d475d4a/sacremoses-0.0.45-py3-none-any.whl (895kB)\\n\",\"\\u001b[K     |████████████████████████████████| 901kB 56.5MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2020.12.5)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: typing-extensions>=3.6.4; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Installing collected packages: tokenizers, sacremoses, transformers\\n\",\"Successfully installed sacremoses-0.0.45 tokenizers-0.10.2 transformers-4.5.1\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"r0hS6VtbiFgz\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945215438,\"user_tz\":-180,\"elapsed\":934,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"import pandas as pd\"],\"execution_count\":3,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"AjQTF9MPh7k9\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945220894,\"user_tz\":-180,\"elapsed\":4981,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"07d4ba30-4e0e-4fe8-8ea6-e1e31843547d\"},\"source\":[\"#BERT-BASE (L=12, H=768, A=12, Total Parameters=110M) \\n\",\"from transformers import BertConfig, BertModel\\n\",\"bert_base= BertConfig()\\n\",\"model = BertModel(bert_base)\\n\",\"print(f\\\"{model.num_parameters() /(10**6)} million parameters\\\")\"],\"execution_count\":4,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"109.48224 million parameters\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"ryna0jJth7k_\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"11vJBKiA2SDk\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945228349,\"user_tz\":-180,\"elapsed\":1032,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"18e019b9-207b-4ee5-b345-0c9ac11e711f\"},\"source\":[\"# Albert-base Configuration\\n\",\"from transformers import AlbertConfig, AlbertModel\\n\",\"albert_base = AlbertConfig(\\n\",\"     hidden_size=768,\\n\",\"     num_attention_heads=12,\\n\",\"     intermediate_size=3072,\\n\",\" )\\n\",\"model = AlbertModel(albert_base)\\n\",\"print(f\\\"{model.num_parameters() /(10**6)} million parameters\\\")\"],\"execution_count\":5,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"11.683584 million parameters\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"dn-u5JU17iFp\"},\"source\":[\"# Table from the original ALBERT paper \\n\",\"from IPython.display import Image \\n\",\"albert = Image(filename='albert.png')\\n\",\"\\n\",\"display(albert)\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"Fvg3X4_ch7lB\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945241272,\"user_tz\":-180,\"elapsed\":6107,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"dc2fe06e-a2d8-4be7-de10-0789b93ddca1\"},\"source\":[\"#BERT-LARGE (L=24, H=1024, A=16, Total Parameters=340M).\\n\",\"from transformers import BertConfig, BertModel\\n\",\"bert_large= BertConfig(hidden_size=1024, \\n\",\"                      num_hidden_layers=24 ,\\n\",\"          num_attention_heads=16,\\n\",\"          intermediate_size=4096\\n\",\"     )\\n\",\"model = BertModel(bert_large)\\n\",\"print(f\\\"{model.num_parameters() /(10**6)} million parameters\\\")\\n\"],\"execution_count\":7,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"335.141888 million parameters\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"J1_k9flYh7lB\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945246489,\"user_tz\":-180,\"elapsed\":4505,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"ebe537a9-5599-485e-e68d-af3774f0fb8a\"},\"source\":[\"# ALBERT-xxlarge configuration  by default\\n\",\"from transformers import AlbertConfig, AlbertModel\\n\",\"albert_xxlarge= AlbertConfig()\\n\",\"model = AlbertModel(albert_xxlarge)\\n\",\"print(f\\\"{model.num_parameters() /(10**6)} million parameters\\\")\"],\"execution_count\":8,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"222.595584 million parameters\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"bJ4J8m-V2SyX\"},\"source\":[\"# how to use Albert model\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Z8lb4E3V7qtt\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945373476,\"user_tz\":-180,\"elapsed\":6052,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from transformers import AlbertTokenizer, AlbertModel\\n\",\"tokenizer = AlbertTokenizer.from_pretrained('albert-large-v2')\\n\",\"model = AlbertModel.from_pretrained(\\\"albert-large-v2\\\")\\n\",\"text = \\\"The cat is so sad .\\\"\\n\",\"encoded_input = tokenizer(text, return_tensors='pt')\\n\",\"output = model(**encoded_input)\"],\"execution_count\":11,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"ElLzLpmfh7lD\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"7z1XFNPah7lD\"},\"source\":[\"You can use output object or use the model directly with a pipeline for masked language modeling:\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"2wMSKaguh7lE\"},\"source\":[\"\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"tpNyd8037jLl\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":398,\"referenced_widgets\":[\"8b81b202454a40d59e8e8a22fdf627c0\",\"e9d4cadaeb894944a8db0ea909e93196\",\"7811277a0cdb44938fe505256f255efe\",\"e19e416b873a44ed808a9af58a466974\",\"82aab4542ef042458b6f3cb5ac0c337b\",\"2852b37749014cb980a7ecb6ae74c868\",\"d7b76df2db344d11859f8b080107f453\",\"84a9d55078224dc2a97f11dfc90c46d8\",\"fb0368271bea4e3cb04d944ab561e64e\",\"9e8becbd17ce4edabe793108899651dc\",\"638e0c276d3143a29d5b4d42ea13746b\",\"b4157696ed5948c49910a08a93762ddc\",\"25cf99fba6174c52bf25208305478283\",\"8683bdd7ed704c0a8f6e99aad5304230\",\"f25b9869dbe441e6b358b96c3c245eed\",\"d04cbdd73492412ca88c6b2feec7e3e1\",\"56c27674eeb04d6ab7b8c1e162315908\",\"7f6c16ba09134896a9c44e03641ba4e0\",\"5b3ca08719b440f38d3e91952ad3c541\",\"65a7480c17a04c70b6b80f386bdd2279\",\"641baab0aff04da29b836ea901e1b797\",\"51b706dd85d543f9bed483c713a62bb8\",\"17a33b95eb3247bc97756dd1bebf597a\",\"70dffa0666b74cbc9cc0cbb55fbf9a6d\",\"f96649fb338f43089959752262256234\",\"3fa4f64db4cb4ba691bec79675d95110\",\"2b2ee1a36c954aa49bde80ba21b8d0f4\",\"edf455a918d14c8b8c574fdf41f1754d\",\"f49667bc9cde43c7a914a223ea1009d3\",\"ab371af6b3f146d8ba0c859aff8a5cba\",\"d2a0dc04f9b74618b485dbfe0b7cb3bc\",\"1a73ffbaaba34625b7091e2d268b856e\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945470704,\"user_tz\":-180,\"elapsed\":14643,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"fc66db3d-ab58-48da-8a53-9e0ab35f7a64\"},\"source\":[\"from transformers import pipeline\\n\",\"fillmask = pipeline('fill-mask', model='albert-base-v2')\\n\",\"pd.DataFrame(fillmask(\\\"The cat is so [MASK] .\\\"))\"],\"execution_count\":12,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"8b81b202454a40d59e8e8a22fdf627c0\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=684.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"fb0368271bea4e3cb04d944ab561e64e\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=47376696.0, style=ProgressStyle(descrip…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"56c27674eeb04d6ab7b8c1e162315908\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=760289.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"f96649fb338f43089959752262256234\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1312669.0, style=ProgressStyle(descript…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>sequence</th>\\n\",\"      <th>score</th>\\n\",\"      <th>token</th>\\n\",\"      <th>token_str</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>the cat is so cute.</td>\\n\",\"      <td>0.281028</td>\\n\",\"      <td>10901</td>\\n\",\"      <td>cute</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>the cat is so adorable.</td>\\n\",\"      <td>0.094894</td>\\n\",\"      <td>26354</td>\\n\",\"      <td>adorable</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>the cat is so happy.</td>\\n\",\"      <td>0.042963</td>\\n\",\"      <td>1700</td>\\n\",\"      <td>happy</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>the cat is so funny.</td>\\n\",\"      <td>0.040976</td>\\n\",\"      <td>5066</td>\\n\",\"      <td>funny</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>the cat is so affectionate.</td>\\n\",\"      <td>0.024234</td>\\n\",\"      <td>28803</td>\\n\",\"      <td>affectionate</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"                      sequence     score  token     token_str\\n\",\"0          the cat is so cute.  0.281028  10901          cute\\n\",\"1      the cat is so adorable.  0.094894  26354      adorable\\n\",\"2         the cat is so happy.  0.042963   1700         happy\\n\",\"3         the cat is so funny.  0.040976   5066         funny\\n\",\"4  the cat is so affectionate.  0.024234  28803  affectionate\"]},\"metadata\":{\"tags\":[]},\"execution_count\":12}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"WbJ5F8iy7jx1\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945481296,\"user_tz\":-180,\"elapsed\":1103,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":12,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"ZVcK5G8jh7lF\"},\"source\":[\"ROBERTA\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"T4GzKxvlh7lF\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":268,\"referenced_widgets\":[\"465333225c02447caeec9b9a571e5983\",\"a57f026c1a0f464bb268c28814b8de83\",\"01963ecdee5c40a388bfb35fe628a619\",\"ed3875f6692b44e5b1ffd0e1ca7af53e\",\"46f8fc90798c4b8a94611ffa82c9db60\",\"d6713566083c4c7f953f9425a8b28bb5\",\"1451a7dcdb6e4d6e9f405a97aef33a45\",\"9f455b91ff7c43cfa203359112fce1b4\",\"f72d6ca6d5184231a4fa2cd5c6351c1e\",\"997ad1f8bc314985806e548deb8c1ae7\",\"bdf522daca0b46ab93cbd65d29ad0162\",\"a6f8b379a1ac4105b8662b5bd630b7db\",\"ff00e27046a045ea924ff1754474c7eb\",\"626962251d7c4eafa98f8f242968fa1c\",\"6ed5b756b62a4d609db39aa4ab2f8082\",\"1b9a4d222d55472f8b1480660c7e02b3\",\"ec1345d2103b4bc9a6ffccc76e563775\",\"f7924d2423b7439ba8f9ad53b5e80103\",\"789ff7bb65504f348724e82694195c8a\",\"884b11b5065b41cb9afe9fd1fe5e6e1d\",\"553defecedd4434b9430c2df5d980892\",\"0ef2c7fbe35c43db987f798e9cd6cd8c\",\"1834e18669d04ff89429f35cda3c6239\",\"e508b09580164517b1eabe2cde414400\",\"cbe9234d51a34833a0f918d6b32f8639\",\"3765208b7d144da2adbec92f63f7b276\",\"8e2551afb40b42a6b8c0b9c20893863a\",\"31a02239eb144ccbba92af6d8e711865\",\"b09e2470cf1148bcab393d8c0225090d\",\"5080277d9dbb4c84921244183689f380\",\"2b39eae352904443aea68ddda360e46b\",\"98e03690789349a0a728289ee028fab7\",\"39e873f8fc0c4c9ca04a63b7ee162123\",\"2082348ed20e445092c4ce01e4bd6d9b\",\"2679c570ab1f4252896303ef215e7aef\",\"28bc16669c04494ab3a7389c25f6206d\",\"f0805f7a9fb54f65802f776f9ac67dc8\",\"d9287556dab7471c90bf16ff3187a806\",\"7282bc2a3c754085915068fa40d018b0\",\"dc8804200b0940eb861c29e8ae42c626\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945533564,\"user_tz\":-180,\"elapsed\":22519,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"8b08a445-d524-4830-9b5b-d31a5c081c14\"},\"source\":[\"from transformers import RobertaTokenizer, RobertaModel\\n\",\"tokenizer = RobertaTokenizer.from_pretrained('roberta-base')\\n\",\"model = RobertaModel.from_pretrained('roberta-base')\\n\",\"text = \\\"The cat is so sad .\\\"\\n\",\"encoded_input = tokenizer(text, return_tensors='pt')\\n\",\"output = model(**encoded_input)\"],\"execution_count\":13,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"465333225c02447caeec9b9a571e5983\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=898823.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"f72d6ca6d5184231a4fa2cd5c6351c1e\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=456318.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"ec1345d2103b4bc9a6ffccc76e563775\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1355863.0, style=ProgressStyle(descript…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"cbe9234d51a34833a0f918d6b32f8639\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=481.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"39e873f8fc0c4c9ca04a63b7ee162123\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=501200538.0, style=ProgressStyle(descri…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"JCUUVQ1Uh7lG\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945538230,\"user_tz\":-180,\"elapsed\":1179,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":13,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Rs9cAxjqh7lG\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945540266,\"user_tz\":-180,\"elapsed\":2787,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"e7320720-2da0-4db8-8532-eb584859c737\"},\"source\":[\"from transformers import RobertaConfig, RobertaModel\\n\",\"conf= RobertaConfig()\\n\",\"model = RobertaModel(conf)\\n\",\"print(f\\\"{model.num_parameters() /(10**6)} million parameters\\\")\"],\"execution_count\":14,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"109.48224 million parameters\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"WaZ8RWZVh7lG\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945542206,\"user_tz\":-180,\"elapsed\":825,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":14,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"4w92uHeHh7lH\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":198},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945554703,\"user_tz\":-180,\"elapsed\":11750,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"7f3a39fe-03be-4113-9779-0b40be7af88d\"},\"source\":[\"from transformers import pipeline\\n\",\"fillmask = pipeline('fill-mask', model=\\\"roberta-base\\\")\\n\",\"pd.DataFrame(fillmask(\\\"The cat is so <mask> .\\\"))\"],\"execution_count\":15,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>sequence</th>\\n\",\"      <th>score</th>\\n\",\"      <th>token</th>\\n\",\"      <th>token_str</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>The cat is so cute.</td>\\n\",\"      <td>0.191843</td>\\n\",\"      <td>11962</td>\\n\",\"      <td>cute</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>The cat is so sweet.</td>\\n\",\"      <td>0.051524</td>\\n\",\"      <td>4045</td>\\n\",\"      <td>sweet</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>The cat is so funny.</td>\\n\",\"      <td>0.033595</td>\\n\",\"      <td>6269</td>\\n\",\"      <td>funny</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>The cat is so handsome.</td>\\n\",\"      <td>0.032893</td>\\n\",\"      <td>19222</td>\\n\",\"      <td>handsome</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>The cat is so beautiful.</td>\\n\",\"      <td>0.032314</td>\\n\",\"      <td>2721</td>\\n\",\"      <td>beautiful</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"                   sequence     score  token   token_str\\n\",\"0       The cat is so cute.  0.191843  11962        cute\\n\",\"1      The cat is so sweet.  0.051524   4045       sweet\\n\",\"2      The cat is so funny.  0.033595   6269       funny\\n\",\"3   The cat is so handsome.  0.032893  19222    handsome\\n\",\"4  The cat is so beautiful.  0.032314   2721   beautiful\"]},\"metadata\":{\"tags\":[]},\"execution_count\":15}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"bgLnGwIUh7lH\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945587017,\"user_tz\":-180,\"elapsed\":7177,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"3ee58ff6-93d4-4304-f56c-2aa7dd15c45d\"},\"source\":[\"tokenizer = AlbertTokenizer.from_pretrained('albert-base-v2')\\n\",\"print(tokenizer.mask_token)\\n\",\"tokenizer = RobertaTokenizer.from_pretrained('roberta-base')\\n\",\"print(tokenizer.mask_token)\"],\"execution_count\":16,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"[MASK]\\n\",\"<mask>\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"vJSX_CBFh7lI\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"9VENpwqvh7lI\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":449,\"referenced_widgets\":[\"c4ad9c4a4e4c40bb86e1bdc988ee17dc\",\"fd408398c9e04cb79512ae6b535cb3e8\",\"4a58acc8943d4c3895c4d4f46c4a4fac\",\"0f29da9a53264c4ab198e404cfad04b3\",\"57c469cf679a41a08e2e97509f435f69\",\"75acbb2201ab42d38086a89d6130049d\",\"c3a7283825e3432e90d556c2034e6491\",\"c2a34c719ae1431d9a2a2ad3f9dd0c3b\",\"437c5aeb7d684138ad59560b8ed7ed56\",\"e716d29b444748f6be532532a94118db\",\"db6f33e89efd4651b68678b5f80430d2\",\"66852982ce004612827b6045bbb08019\",\"82c842703f7a4460bfd2b1436bcbb4db\",\"3f61a882c48246dfa2e61c8bfb253f3b\",\"f69758cb102243479d2100499b489f7d\",\"50fd087844b34a71b4d0bcb61404493c\",\"3adcee66d5a94187a205656ed519e5ef\",\"eb104d3ce4684e64af83c4522e857858\",\"ef9318a9839b4131bbc8c20229a3f367\",\"42f30c33bf434344bcb637680558846c\",\"30bc0d0f8a7e4cd48111cf56d684ea1e\",\"555bb4174a0442a4b801ab80dd7a6e37\",\"6f9275557b154f89b27f1b27a74475cd\",\"c036c60de37b4bd584c091817e6b9eb5\",\"e4637b4bab3b4ee68ad5e08279b17499\",\"88406bd4e5b748c391e42dff6fe4ddc2\",\"1e319dcd49cf48ecbfb2b1907ba7df46\",\"bc647f746ad54cdd8c57efc96896dacd\",\"15bf454a31a64c1fb57a7790daba9660\",\"446b6eed334f4491a1cb062cd4507e79\",\"fcd01513fda0460fa82414a25ab6e640\",\"78bb75f6b3f4424297a0e1eac91160ab\",\"534d9ff20a91407596bd0e741e69bebf\",\"35fae51bc27542eab50849ab549f2da5\",\"66ce3c0c875246e086ecea89fd7449c5\",\"e70447c7499c499fad5a1ce3ac29957b\",\"9172fcc8bbfb4f2eba2dc23b6f4aa88a\",\"6e0d79aacbce43a183df1a672d50d69b\",\"d7824ef9431e4d2faa7aa81e24a8ecf4\",\"83ff5c23fafa4c0498cbe7217891255c\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945612722,\"user_tz\":-180,\"elapsed\":15286,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"90b8b683-9446-4d2b-a0c4-ba7bd91606f4\"},\"source\":[\"from transformers import pipeline\\n\",\"fillmask = pipeline(\\\"fill-mask\\\", model=\\\"google/electra-small-generator\\\")\\n\",\"q=fillmask(f\\\"The cat is very {fillmask.tokenizer.mask_token} .\\\")\\n\",\"pd.DataFrame(q)\"],\"execution_count\":17,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"c4ad9c4a4e4c40bb86e1bdc988ee17dc\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=463.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"437c5aeb7d684138ad59560b8ed7ed56\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=54236116.0, style=ProgressStyle(descrip…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"3adcee66d5a94187a205656ed519e5ef\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=231508.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"e4637b4bab3b4ee68ad5e08279b17499\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=466062.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"534d9ff20a91407596bd0e741e69bebf\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=29.0, style=ProgressStyle(description_w…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>sequence</th>\\n\",\"      <th>score</th>\\n\",\"      <th>token</th>\\n\",\"      <th>token_str</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>the cat is very friendly.</td>\\n\",\"      <td>0.098157</td>\\n\",\"      <td>5379</td>\\n\",\"      <td>friendly</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>the cat is very cute.</td>\\n\",\"      <td>0.086665</td>\\n\",\"      <td>10140</td>\\n\",\"      <td>cute</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>the cat is very sensitive.</td>\\n\",\"      <td>0.054568</td>\\n\",\"      <td>7591</td>\\n\",\"      <td>sensitive</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>the cat is very shy.</td>\\n\",\"      <td>0.033855</td>\\n\",\"      <td>11004</td>\\n\",\"      <td>shy</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>the cat is very smart.</td>\\n\",\"      <td>0.031776</td>\\n\",\"      <td>6047</td>\\n\",\"      <td>smart</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"                     sequence     score  token  token_str\\n\",\"0   the cat is very friendly.  0.098157   5379   friendly\\n\",\"1       the cat is very cute.  0.086665  10140       cute\\n\",\"2  the cat is very sensitive.  0.054568   7591  sensitive\\n\",\"3        the cat is very shy.  0.033855  11004        shy\\n\",\"4      the cat is very smart.  0.031776   6047      smart\"]},\"metadata\":{\"tags\":[]},\"execution_count\":17}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"toIsEyewh7lJ\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}\n"
  },
  {
    "path": "CH03/CH03c_Tokenization_Algorithms.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH03.0X Tokenizer.ipynb\",\"provenance\":[],\"collapsed_sections\":[]},\"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.8.6\"},\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"818dd77dbc604ecc9325fc498b4601c3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_4b00a00f16fa4ce3b6fcff6a5bf1bd19\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_cfd5307cafa147bd9954022930e7a844\",\"IPY_MODEL_6e6c17ffa90c4745aee961fb48e3f9e4\"]}},\"4b00a00f16fa4ce3b6fcff6a5bf1bd19\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"cfd5307cafa147bd9954022930e7a844\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_66ace374eb574853902bc81c61d23f1c\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":385,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":385,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_9b37af413d594ab4adf18ff2f1e539c5\"}},\"6e6c17ffa90c4745aee961fb48e3f9e4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_2961f7351cf84b3492fff54a4cb0a88a\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 385/385 [00:05&lt;00:00, 76.2B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_dce37a91bcdf4fc897df8bb014acda4e\"}},\"66ace374eb574853902bc81c61d23f1c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"9b37af413d594ab4adf18ff2f1e539c5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"2961f7351cf84b3492fff54a4cb0a88a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"dce37a91bcdf4fc897df8bb014acda4e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f44e3dab2caf465696cfa4770b8db21b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_b3ababad6e5f49f7a9707af922d972d2\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_caf52de29a03408f83ea36218a640e87\",\"IPY_MODEL_c063ed41787247a9a2dc0ea3d72179dd\"]}},\"b3ababad6e5f49f7a9707af922d972d2\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"caf52de29a03408f83ea36218a640e87\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_e49259feedaf4ad797bfd4415e303d79\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":262620,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":262620,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_765afc722c3c4220ae882a905e8a5b97\"}},\"c063ed41787247a9a2dc0ea3d72179dd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_639a03e6264647af9b1e7427f0668bdd\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 263k/263k [00:03&lt;00:00, 74.3kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_802706746a894ce98c57638167c3f0ac\"}},\"e49259feedaf4ad797bfd4415e303d79\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"765afc722c3c4220ae882a905e8a5b97\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"639a03e6264647af9b1e7427f0668bdd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"802706746a894ce98c57638167c3f0ac\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7699afba90cb4cfc81c11c6f2d2a5863\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_f6106d24193c43f684d7cfe1c4da1e9a\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_3f0adc2278c649a28c6981511c4de863\",\"IPY_MODEL_8650298fba1946a6b92225396a9c1ae6\"]}},\"f6106d24193c43f684d7cfe1c4da1e9a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"3f0adc2278c649a28c6981511c4de863\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_71d9c9c705e54acca1772341a56bf62d\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":59,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":59,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_6a808381740d4e66ad9154e0c82cab11\"}},\"8650298fba1946a6b92225396a9c1ae6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_60d12a6cecb441e285f1ab655cf2c6c6\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 59.0/59.0 [00:00&lt;00:00, 600B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_322f9eb066284012a678840d18109013\"}},\"71d9c9c705e54acca1772341a56bf62d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"6a808381740d4e66ad9154e0c82cab11\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"60d12a6cecb441e285f1ab655cf2c6c6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"322f9eb066284012a678840d18109013\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"b52766d128134a49a3edc5a96fc00322\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_ac28188373bb48b2a81a6d26e40da5ae\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_9a6012a2fd97403a8bec9b86cd3928d4\",\"IPY_MODEL_b9e2d4bc686941e1afa3eb3f75a5eb47\"]}},\"ac28188373bb48b2a81a6d26e40da5ae\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"9a6012a2fd97403a8bec9b86cd3928d4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_dabc78fd3b74416ead6970acee34ac93\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":433,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":433,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_22d6aaf6a77b4d21a038ca89df1b0ad9\"}},\"b9e2d4bc686941e1afa3eb3f75a5eb47\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_7410b5eab09e494c841923e3fa6ed7b2\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 433/433 [00:58&lt;00:00, 7.34B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_92bb3df784f04f7eb76f729907e21c95\"}},\"dabc78fd3b74416ead6970acee34ac93\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"22d6aaf6a77b4d21a038ca89df1b0ad9\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7410b5eab09e494c841923e3fa6ed7b2\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"92bb3df784f04f7eb76f729907e21c95\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"63cf4749a2084c199994ef5e26d3d4e5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_d42f138d12d64c0c9531369c0d463969\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_e4f5bcea9d2548a7a42ea23030947f02\",\"IPY_MODEL_67c59c5be0a24ca9b0f2a25e4b1ea004\"]}},\"d42f138d12d64c0c9531369c0d463969\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e4f5bcea9d2548a7a42ea23030947f02\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_0c491960dea845a5b8b8d27d1864f452\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":231508,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":231508,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_32f83e7775374ff5b106a1ae9f3d67ac\"}},\"67c59c5be0a24ca9b0f2a25e4b1ea004\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_6ea77c223d99429684f0f75f58a35d0e\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 232k/232k [00:05&lt;00:00, 43.9kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_78c89eda010e4e648cd9a29e93a2247a\"}},\"0c491960dea845a5b8b8d27d1864f452\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"32f83e7775374ff5b106a1ae9f3d67ac\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"6ea77c223d99429684f0f75f58a35d0e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"78c89eda010e4e648cd9a29e93a2247a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a92ddd3a4eb4428f8c94043d65dea375\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_6dcfdc82ac914257ac958bd3857fece6\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_55a850af015742f494a8370c3055d5fa\",\"IPY_MODEL_4a1414ceb6cf46dda62e83011434853d\"]}},\"6dcfdc82ac914257ac958bd3857fece6\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"55a850af015742f494a8370c3055d5fa\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_8c9f002f74c74dafbe654c8c37fa0fcc\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":466062,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":466062,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_afe6405c66424f669b278a88a9556acf\"}},\"4a1414ceb6cf46dda62e83011434853d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_c54ebda5ef4248b0bf2b380202b77229\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 466k/466k [00:03&lt;00:00, 137kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_89160be576ca4c4489da83d2c5f370d5\"}},\"8c9f002f74c74dafbe654c8c37fa0fcc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"afe6405c66424f669b278a88a9556acf\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c54ebda5ef4248b0bf2b380202b77229\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"89160be576ca4c4489da83d2c5f370d5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"6b49494c08e848ff822e3935c046d25e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_edf23bd21227425ba0680935bff4dfe9\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_ca92a8d0f7154943b5471d27d532bfb0\",\"IPY_MODEL_6e374000324142f0ac199b171756bbe5\"]}},\"edf23bd21227425ba0680935bff4dfe9\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ca92a8d0f7154943b5471d27d532bfb0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_03d895e36a684ffeb8bbf241e8ffb0c8\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":28,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":28,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_76ad803165c840d28ef3c2ce316aed47\"}},\"6e374000324142f0ac199b171756bbe5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_b6932a8f692749fa8b68f7ea6da273ee\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 28.0/28.0 [00:52&lt;00:00, 1.88s/B]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a72bb35a6e54416a95bf0dfd8d1044b2\"}},\"03d895e36a684ffeb8bbf241e8ffb0c8\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"76ad803165c840d28ef3c2ce316aed47\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"b6932a8f692749fa8b68f7ea6da273ee\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"a72bb35a6e54416a95bf0dfd8d1044b2\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}}},\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"TRDYJW5ljYwK\",\"outputId\":\"3547ca78-10f2-4790-f6a1-90669785b58b\"},\"source\":[\"# Tokenization\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"wXomV31vsGue\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945812880,\"user_tz\":-180,\"elapsed\":8411,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"c9426ada-d515-4081-d0ea-6920c9fb526a\"},\"source\":[\"!pip install transformers\"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Collecting transformers\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d8/b2/57495b5309f09fa501866e225c84532d1fd89536ea62406b2181933fb418/transformers-4.5.1-py3-none-any.whl (2.1MB)\\n\",\"\\u001b[K     |████████████████████████████████| 2.1MB 5.3MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Collecting sacremoses\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/ee/67241dc87f266093c533a2d4d3d69438e57d7a90abb216fa076e7d475d4a/sacremoses-0.0.45-py3-none-any.whl (895kB)\\n\",\"\\u001b[K     |████████████████████████████████| 901kB 34.8MB/s \\n\",\"\\u001b[?25hCollecting tokenizers<0.11,>=0.10.1\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/ae/04/5b870f26a858552025a62f1649c20d29d2672c02ff3c3fb4c688ca46467a/tokenizers-0.10.2-cp37-cp37m-manylinux2010_x86_64.whl (3.3MB)\\n\",\"\\u001b[K     |████████████████████████████████| 3.3MB 37.7MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (3.10.1)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2020.12.5)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: typing-extensions>=3.6.4; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Installing collected packages: sacremoses, tokenizers, transformers\\n\",\"Successfully installed sacremoses-0.0.45 tokenizers-0.10.2 transformers-4.5.1\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"aSOk-ouhr6VV\"},\"source\":[\"## Loading a Turkish Pre-trained Tokenizer\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":204,\"referenced_widgets\":[\"818dd77dbc604ecc9325fc498b4601c3\",\"4b00a00f16fa4ce3b6fcff6a5bf1bd19\",\"cfd5307cafa147bd9954022930e7a844\",\"6e6c17ffa90c4745aee961fb48e3f9e4\",\"66ace374eb574853902bc81c61d23f1c\",\"9b37af413d594ab4adf18ff2f1e539c5\",\"2961f7351cf84b3492fff54a4cb0a88a\",\"dce37a91bcdf4fc897df8bb014acda4e\",\"f44e3dab2caf465696cfa4770b8db21b\",\"b3ababad6e5f49f7a9707af922d972d2\",\"caf52de29a03408f83ea36218a640e87\",\"c063ed41787247a9a2dc0ea3d72179dd\",\"e49259feedaf4ad797bfd4415e303d79\",\"765afc722c3c4220ae882a905e8a5b97\",\"639a03e6264647af9b1e7427f0668bdd\",\"802706746a894ce98c57638167c3f0ac\",\"7699afba90cb4cfc81c11c6f2d2a5863\",\"f6106d24193c43f684d7cfe1c4da1e9a\",\"3f0adc2278c649a28c6981511c4de863\",\"8650298fba1946a6b92225396a9c1ae6\",\"71d9c9c705e54acca1772341a56bf62d\",\"6a808381740d4e66ad9154e0c82cab11\",\"60d12a6cecb441e285f1ab655cf2c6c6\",\"322f9eb066284012a678840d18109013\"]},\"id\":\"K-4KLgJ5r6VW\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945872698,\"user_tz\":-180,\"elapsed\":9870,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"6152cdbe-fa9d-4eb8-8aa4-7c8ea931f9bf\"},\"source\":[\"from transformers import AutoModel, AutoTokenizer\\n\",\"tokenizerTUR = AutoTokenizer.from_pretrained(\\\"dbmdz/bert-base-turkish-uncased\\\",)\\n\",\"print(f\\\"VOC size is: {tokenizerTUR.vocab_size}\\\")\\n\",\"print(f\\\"The model is {type(tokenizerTUR)}\\\")\"],\"execution_count\":3,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"818dd77dbc604ecc9325fc498b4601c3\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=385.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"f44e3dab2caf465696cfa4770b8db21b\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=262620.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"7699afba90cb4cfc81c11c6f2d2a5863\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=59.0, style=ProgressStyle(description_w…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\",\"VOC size is: 32000\\n\",\"The model is <class 'transformers.models.bert.tokenization_bert_fast.BertTokenizerFast'>\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"S3caioNCr6VY\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945877297,\"user_tz\":-180,\"elapsed\":1076,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":3,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"aHtaOWRfr6VY\"},\"source\":[\"## Loading an English Pre-trained Tokenizer\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":254,\"referenced_widgets\":[\"b52766d128134a49a3edc5a96fc00322\",\"ac28188373bb48b2a81a6d26e40da5ae\",\"9a6012a2fd97403a8bec9b86cd3928d4\",\"b9e2d4bc686941e1afa3eb3f75a5eb47\",\"dabc78fd3b74416ead6970acee34ac93\",\"22d6aaf6a77b4d21a038ca89df1b0ad9\",\"7410b5eab09e494c841923e3fa6ed7b2\",\"92bb3df784f04f7eb76f729907e21c95\",\"63cf4749a2084c199994ef5e26d3d4e5\",\"d42f138d12d64c0c9531369c0d463969\",\"e4f5bcea9d2548a7a42ea23030947f02\",\"67c59c5be0a24ca9b0f2a25e4b1ea004\",\"0c491960dea845a5b8b8d27d1864f452\",\"32f83e7775374ff5b106a1ae9f3d67ac\",\"6ea77c223d99429684f0f75f58a35d0e\",\"78c89eda010e4e648cd9a29e93a2247a\",\"a92ddd3a4eb4428f8c94043d65dea375\",\"6dcfdc82ac914257ac958bd3857fece6\",\"55a850af015742f494a8370c3055d5fa\",\"4a1414ceb6cf46dda62e83011434853d\",\"8c9f002f74c74dafbe654c8c37fa0fcc\",\"afe6405c66424f669b278a88a9556acf\",\"c54ebda5ef4248b0bf2b380202b77229\",\"89160be576ca4c4489da83d2c5f370d5\",\"6b49494c08e848ff822e3935c046d25e\",\"edf23bd21227425ba0680935bff4dfe9\",\"ca92a8d0f7154943b5471d27d532bfb0\",\"6e374000324142f0ac199b171756bbe5\",\"03d895e36a684ffeb8bbf241e8ffb0c8\",\"76ad803165c840d28ef3c2ce316aed47\",\"b6932a8f692749fa8b68f7ea6da273ee\",\"a72bb35a6e54416a95bf0dfd8d1044b2\"]},\"id\":\"HBUiytDGr6VY\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945888550,\"user_tz\":-180,\"elapsed\":9164,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"cd92c08a-0c19-4fb7-88ad-40f8a3ef7a9b\"},\"source\":[\"from transformers import AutoModel, AutoTokenizer\\n\",\"tokenizerEN = AutoTokenizer.from_pretrained(\\\"bert-base-uncased\\\")\\n\",\"print(f\\\"VOC size is: {tokenizerEN.vocab_size}\\\")\\n\",\"print(f\\\"The model is {type(tokenizerEN)}\\\")\"],\"execution_count\":4,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"b52766d128134a49a3edc5a96fc00322\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=433.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"63cf4749a2084c199994ef5e26d3d4e5\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=231508.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"a92ddd3a4eb4428f8c94043d65dea375\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=466062.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"6b49494c08e848ff822e3935c046d25e\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=28.0, style=ProgressStyle(description_w…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\",\"VOC size is: 30522\\n\",\"The model is <class 'transformers.models.bert.tokenization_bert_fast.BertTokenizerFast'>\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"r99VtKxqr6VZ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945893170,\"user_tz\":-180,\"elapsed\":1106,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"ebcfce9f-86b7-4756-b676-d924b49dd55c\"},\"source\":[\"word_en=\\\"telecommunications\\\"\\n\",\"print(f\\\"is in Turkish Model ? {word_en in tokenizerTUR.vocab}\\\")\\n\",\"print(f\\\"is in English Model ? {word_en in tokenizerEN.vocab}\\\")\"],\"execution_count\":5,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"is in Turkish Model ? False\\n\",\"is in English Model ? True\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"0BcZPXHIr6Va\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945895008,\"user_tz\":-180,\"elapsed\":758,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"c2f5b2a2-eebd-4737-a269-c2dab09aa73c\"},\"source\":[\"tokens=tokenizerTUR.tokenize(word_en)\\n\",\"tokens\"],\"execution_count\":6,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"['tel', '##eco', '##mm', '##un', '##ica', '##tions']\"]},\"metadata\":{\"tags\":[]},\"execution_count\":6}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"UZLvMW4Vr6Va\"},\"source\":[\"But, The pieces are in the Turkish model\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"-Tjxu8vcr6Vb\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945898141,\"user_tz\":-180,\"elapsed\":1482,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"6be06f90-a573-47aa-e509-7022d88b7f10\"},\"source\":[\"[t in tokenizerTUR.vocab for t in tokens]\"],\"execution_count\":7,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"[True, True, True, True, True, True]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":7}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"nWzifjghr6Vb\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945906894,\"user_tz\":-180,\"elapsed\":1149,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":7,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"JDO-9FnCr6Vb\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945906896,\"user_tz\":-180,\"elapsed\":647,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"a4a6e1d1-56c5-458f-8a7d-dd39e2542085\"},\"source\":[\"tokens= tokenizerEN.tokenize(word_en)\\n\",\"tokens\"],\"execution_count\":8,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"['telecommunications']\"]},\"metadata\":{\"tags\":[]},\"execution_count\":8}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"NWcEicrrr6Vc\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945913635,\"user_tz\":-180,\"elapsed\":1204,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"long_word_tur=\\\"Muvaffakiyetsizleştiricileştiriveremeyebileceklerimizdenmişsinizcesine\\\"\"],\"execution_count\":9,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"mO0ewrDIr6Vc\"},\"source\":[\"'''\\n\",\"It means that “As though you happen to have been from among those whom we will not be able to easily/quickly make a maker of unsuccessful ones” \\n\",\"'''\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"1hibagk2r6Vd\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945915728,\"user_tz\":-180,\"elapsed\":612,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"8d86dc97-5eb4-4b8f-e01a-5335216d6af4\"},\"source\":[\"print(tokenizerTUR.tokenize(long_word_tur))\"],\"execution_count\":10,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"['muvaffak', '##iyet', '##siz', '##les', '##tir', '##ici', '##les', '##tir', '##iver', '##emeye', '##bilecekleri', '##mi', '##z', '##den', '##mis', '##siniz', '##cesine']\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"D5d08yswr6Vd\"},\"source\":[\"## Understanding Tokenization Algorithms\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"TpIlpuIgr6Ve\"},\"source\":[\"### Train tokenizers from scratch\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"zFmJoDDvr6Ve\"},\"source\":[\"let's load Shakespeare plays from gutenberg project\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"N_XZpN-cr6Ve\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945944762,\"user_tz\":-180,\"elapsed\":4885,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"4f891350-1682-40d1-ba9d-f4be48694e03\"},\"source\":[\"import nltk \\n\",\"from nltk.corpus import gutenberg \\n\",\"nltk.download('gutenberg') \\n\",\"nltk.download('punkt') \\n\",\"plays=['shakespeare-macbeth.txt','shakespeare-hamlet.txt','shakespeare-caesar.txt']\\n\",\"shakespeare=[\\\" \\\".join(s) for ply in plays for s in gutenberg.sents(ply)]\"],\"execution_count\":11,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"[nltk_data] Downloading package gutenberg to /root/nltk_data...\\n\",\"[nltk_data]   Unzipping corpora/gutenberg.zip.\\n\",\"[nltk_data] Downloading package punkt to /root/nltk_data...\\n\",\"[nltk_data]   Unzipping tokenizers/punkt.zip.\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"tuQd7uvbkixB\"},\"source\":[\"# We prepare a template for the post-processing \\n\",\"# Some initial settings\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"xoUf31Wxr6Vf\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945950174,\"user_tz\":-180,\"elapsed\":1155,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from tokenizers.processors import TemplateProcessing\\n\",\"special_tokens= [\\\"[UNK]\\\", \\\"[CLS]\\\", \\\"[SEP]\\\", \\\"[PAD]\\\", \\\"[MASK]\\\"]\\n\",\"temp_proc= TemplateProcessing(\\n\",\"    single=\\\"[CLS] $A [SEP]\\\",\\n\",\"    pair=\\\"[CLS] $A [SEP] $B:1 [SEP]:1\\\",\\n\",\"    special_tokens=[\\n\",\"        (\\\"[CLS]\\\", special_tokens.index(\\\"[CLS]\\\")),\\n\",\"        (\\\"[SEP]\\\", special_tokens.index(\\\"[SEP]\\\")),\\n\",\"    ],\\n\",\")\"],\"execution_count\":12,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"fIY49Bv7r6Vf\"},\"source\":[\"## Training BPE\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"mkfZRm2Sh0Tz\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945953052,\"user_tz\":-180,\"elapsed\":1387,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from tokenizers import Tokenizer\\n\",\"from tokenizers.normalizers import (Sequence,Lowercase, NFD, StripAccents)\\n\",\"from tokenizers.pre_tokenizers import Whitespace\\n\",\"from tokenizers.models import BPE\\n\",\"from tokenizers.decoders import BPEDecoder\\n\",\"\\n\",\"# Instantiate BPE (Byte-Pair Encoding)\\n\",\"tokenizer = Tokenizer(BPE())\\n\",\"\\n\",\"# a unicode normalizer, lowercasing and , replacing accents in order  :\\n\",\"# * Sequence : It composes multiple PreTokenizer that will be run in the given order\\n\",\"tokenizer.normalizer = Sequence([NFD(), Lowercase(), StripAccents()])\\n\",\"\\n\",\"# Whitespace: Splits on word boundaries using the regular expression \\\\w+|[^\\\\w\\\\s]+ \\n\",\"tokenizer.pre_tokenizer = Whitespace() \\n\",\"tokenizer.decoder = BPEDecoder()\\n\",\"tokenizer.post_processor=temp_proc\"],\"execution_count\":13,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"1L-0PgEhr6Vg\"},\"source\":[\"We are ready to train the model \"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Ikfle7-fizWI\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945957592,\"user_tz\":-180,\"elapsed\":1426,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"4b7dce04-e217-4152-c92e-d25a96a443d2\"},\"source\":[\"from tokenizers.trainers import BpeTrainer\\n\",\"trainer = BpeTrainer(vocab_size=5000, special_tokens= special_tokens)\\n\",\"tokenizer.train_from_iterator(shakespeare, trainer=trainer)\\n\",\"print(f\\\"Trained vocab size: {tokenizer.get_vocab_size()}\\\" )\"],\"execution_count\":14,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Trained vocab size: 5000\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"aa_s1NhglLRF\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945959528,\"user_tz\":-180,\"elapsed\":1170,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"# take a sentence from macbeth\"],\"execution_count\":15,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"cvzv2x7Nr6Vh\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945967994,\"user_tz\":-180,\"elapsed\":993,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":15,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"uBV4W4eovhr5\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945970624,\"user_tz\":-180,\"elapsed\":914,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"6d9a2785-4a3d-4562-9234-9eb5b581e988\"},\"source\":[\"sen= \\\"Is this a dagger which I see before me, the handle toward my hand?\\\"\\n\",\"sen_enc=tokenizer.encode(sen)\\n\",\"print(f\\\"Output: {format(sen_enc.tokens)}\\\")\"],\"execution_count\":16,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Output: ['[CLS]', 'is', 'this', 'a', 'dagger', 'which', 'i', 'see', 'before', 'me', ',', 'the', 'hand', 'le', 'toward', 'my', 'hand', '?', '[SEP]']\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"yoYfnvcKpvQJ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945972850,\"user_tz\":-180,\"elapsed\":635,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"sen_enc2=tokenizer.encode(\\\"Macbeth and Hugging Face\\\")\"],\"execution_count\":17,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"DYVdvb6_p3aa\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945974703,\"user_tz\":-180,\"elapsed\":877,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"11bfa3b4-c57e-4c2c-e042-655a9aaea470\"},\"source\":[\"print(f\\\"Output: {format(sen_enc2.tokens)}\\\")\"],\"execution_count\":18,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Output: ['[CLS]', 'macbeth', 'and', 'hu', 'gg', 'ing', 'face', '[SEP]']\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"M0LpnYmhqV53\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945976893,\"user_tz\":-180,\"elapsed\":1026,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"# Let us pass  two sentences\"],\"execution_count\":19,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"ayD7kPfl-uYL\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945981947,\"user_tz\":-180,\"elapsed\":1306,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"two_enc=tokenizer.encode(\\\"I like Hugging Face!\\\",\\\"He likes Macbeth!\\\")\"],\"execution_count\":20,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"QCp2AGet-uaq\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945984983,\"user_tz\":-180,\"elapsed\":1093,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"8629bcda-c401-4f67-ea6d-06987c1a9364\"},\"source\":[\"print(f\\\"Output: {format(two_enc.tokens)}\\\")\"],\"execution_count\":21,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Output: ['[CLS]', 'i', 'like', 'hu', 'gg', 'ing', 'face', '!', '[SEP]', 'he', 'likes', 'macbeth', '!', '[SEP]']\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"_s5-XzSPrdKi\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945988911,\"user_tz\":-180,\"elapsed\":1317,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"e9d16a8c-79f2-4528-db6a-26dbb933974b\"},\"source\":[\"tokenizer.model.save('.')\"],\"execution_count\":22,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"['./vocab.json', './merges.txt']\"]},\"metadata\":{\"tags\":[]},\"execution_count\":22}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"P74JPOQsrjxi\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945991080,\"user_tz\":-180,\"elapsed\":1424,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"6ca65a8b-4b18-4a02-b989-422a854ce017\"},\"source\":[\"!wc -l ./merges.txt\"],\"execution_count\":23,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"4948 ./merges.txt\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"ipocLFsxsjim\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945993313,\"user_tz\":-180,\"elapsed\":1692,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"7fdf2ddd-ce2d-4a10-ac37-9c6ebb84481e\"},\"source\":[\"!head -6 ./merges.txt\"],\"execution_count\":24,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"#version: 0.2 - Trained by `huggingface/tokenizers`\\n\",\"t h\\n\",\"o u\\n\",\"a n\\n\",\"th e\\n\",\"r e\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"p6IDCioesHTd\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945994439,\"user_tz\":-180,\"elapsed\":1177,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"ddae6d2b-9651-4084-8636-cda12ae6f4f1\"},\"source\":[\"!head -1000 ./merges.txt| tail -5\"],\"execution_count\":25,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"ch ance\\n\",\"si g\\n\",\"your s\\n\",\"ti a\\n\",\"po int\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"MgJ_9XbQQqxO\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945995788,\"user_tz\":-180,\"elapsed\":1418,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"# Save and Load Tokenizer\"],\"execution_count\":26,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"cJzzz-oTQq2E\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945995789,\"user_tz\":-180,\"elapsed\":1175,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"b939c3bb-8179-4abc-dcdb-e85891d2826f\"},\"source\":[\"tokenizer.save(\\\"MyBPETokenizer.json\\\")\\n\",\"tokenizerFromFile=Tokenizer.from_file(\\\"MyBPETokenizer.json\\\")\\n\",\"sen_enc3 = tokenizerFromFile.encode(\\\"I like HuggingFace and Macbeth\\\")\\n\",\"print(f\\\"Output: {format(sen_enc3.tokens)}\\\")\"],\"execution_count\":27,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Output: ['[CLS]', 'i', 'like', 'hu', 'gg', 'ing', 'face', 'and', 'macbeth', '[SEP]']\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"7cqr6iYOr6Vm\"},\"source\":[\"## Training WordPiece\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"3DZVqwXd37B3\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618945999913,\"user_tz\":-180,\"elapsed\":590,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from tokenizers.models import WordPiece\\n\",\"from tokenizers.decoders import WordPiece as WordPieceDecoder\\n\",\"from tokenizers.normalizers import BertNormalizer \\n\",\"\\n\",\"#BERT normalizer includes cleaning the text, handling accents, chinese chars and lowercasing\\n\",\"\\n\",\"tokenizer = Tokenizer(WordPiece())\\n\",\"tokenizer.normalizer=BertNormalizer()\\n\",\"tokenizer.pre_tokenizer = Whitespace()\\n\",\"\\n\",\"tokenizer.decoder= WordPieceDecoder()\"],\"execution_count\":28,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"aGo90r1WD8ea\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618946002333,\"user_tz\":-180,\"elapsed\":1216,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":28,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"zIQrels54Jsn\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618946003168,\"user_tz\":-180,\"elapsed\":1556,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"cabf21cd-45fc-4d6b-cc77-9b66e7addd9a\"},\"source\":[\"from tokenizers.trainers import WordPieceTrainer\\n\",\"trainer = WordPieceTrainer(vocab_size=5000, special_tokens=[\\\"[UNK]\\\", \\\"[CLS]\\\", \\\"[SEP]\\\", \\\"[PAD]\\\", \\\"[MASK]\\\"])\\n\",\"\\n\",\"tokenizer.train_from_iterator(shakespeare, trainer=trainer)\\n\",\"output = tokenizer.encode(sen)\\n\",\"print(output.tokens)\"],\"execution_count\":29,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"['is', 'this', 'a', 'dagger', 'which', 'i', 'see', 'before', 'me', ',', 'the', 'hand', '##le', 'toward', 'my', 'hand', '?']\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"09-gAIpEr6Vo\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618946005594,\"user_tz\":-180,\"elapsed\":1677,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"# let us use WordPiece Decoder to treat the sentences properly.\"],\"execution_count\":30,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":35},\"id\":\"kQ4zF1nN_4MZ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618946006009,\"user_tz\":-180,\"elapsed\":1600,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"3bb94c1c-7f61-4b0e-d519-3c22e6ac5b4a\"},\"source\":[\"tokenizer.decode(output.ids)\"],\"execution_count\":31,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"application/vnd.google.colaboratory.intrinsic+json\":{\"type\":\"string\"},\"text/plain\":[\"'is this a dagger which i see before me, the handle toward my hand?'\"]},\"metadata\":{\"tags\":[]},\"execution_count\":31}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"VNrqDN3zANUN\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618946006010,\"user_tz\":-180,\"elapsed\":1259,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"# force the model to produce UNK tokens\"],\"execution_count\":32,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"sdTfTeXYAP9b\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618946007558,\"user_tz\":-180,\"elapsed\":671,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"18135161-c689-4168-9d7e-fd8a1b89f877\"},\"source\":[\"tokenizer.encode(\\\"Kralsın aslansın Macbeth!\\\").tokens\"],\"execution_count\":33,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"['[UNK]', '[UNK]', 'macbeth', '!']\"]},\"metadata\":{\"tags\":[]},\"execution_count\":33}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"7nZnpYDJr6Vp\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618946022807,\"user_tz\":-180,\"elapsed\":754,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":33,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"S9PfRrPOtzwq\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"5pv1elLZr6Vq\"},\"source\":[\"# Pre-made tokenizers \\n\",\"* CharBPETokenizer: The original BPE\\n\",\"* ByteLevelBPETokenizer: The byte level version of the BPE\\n\",\"* SentencePieceBPETokenizer: A BPE implementation compatible with the one used by SentencePiece\\n\",\"* BertWordPieceTokenizer: The famous Bert tokenizer, using WordPiece\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"SIl6CjuPr6Vq\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618946024250,\"user_tz\":-180,\"elapsed\":1127,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"# Fast Tokenizers optimized for Research and Production\"],\"execution_count\":34,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"HbpJJDbwr6Vq\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618946029232,\"user_tz\":-180,\"elapsed\":1083,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from tokenizers import (ByteLevelBPETokenizer,\\n\",\"                            CharBPETokenizer,\\n\",\"                            SentencePieceBPETokenizer,\\n\",\"                            BertWordPieceTokenizer)\"],\"execution_count\":35,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"ztQLBl-ar6Vq\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618946030990,\"user_tz\":-180,\"elapsed\":1011,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"e5c4890e-ec9d-4a49-cd92-64ef32b9e8b7\"},\"source\":[\"tokenizer= SentencePieceBPETokenizer()\\n\",\"print(tokenizer.normalizer)\\n\",\"print(tokenizer.pre_tokenizer)\\n\",\"print(tokenizer.decoder)\\n\",\"print(tokenizer.post_processor)\"],\"execution_count\":36,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"<tokenizers.normalizers.NFKC object at 0x7f800f4b38b0>\\n\",\"<tokenizers.pre_tokenizers.Metaspace object at 0x7f800f4b3d30>\\n\",\"<tokenizers.decoders.Metaspace object at 0x7f800f4f3f30>\\n\",\"None\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"9rd2e74vr6Vr\"},\"source\":[\"\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"-iroWw9Gr6Vr\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618946035503,\"user_tz\":-180,\"elapsed\":1001,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"8c9467bb-d1c7-4235-d197-579132d77f1c\"},\"source\":[\"tokenizer= BertWordPieceTokenizer()\\n\",\"print(tokenizer.normalizer)\\n\",\"print(tokenizer.pre_tokenizer)\\n\",\"print(tokenizer.decoder)\\n\",\"print(tokenizer.post_processor)\"],\"execution_count\":37,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"<tokenizers.normalizers.BertNormalizer object at 0x7f800f521770>\\n\",\"<tokenizers.pre_tokenizers.BertPreTokenizer object at 0x7f800f4af4b0>\\n\",\"<tokenizers.decoders.WordPiece object at 0x7f800f7e3b70>\\n\",\"None\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"gZppvrcpr6Vr\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1618946046457,\"user_tz\":-180,\"elapsed\":982,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":38,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"HwmFUmdcr6Vs\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}\n"
  },
  {
    "path": "CH03/corpus.txt",
    "content": " One of the other reviewers has mentioned that ...\n A wonderful little production. <br /><br />The...\n I thought this was a wonderful way to spend ti...\n Basically there's a family where a little boy ...\n Petter Mattei's \"Love in the Time of Money\" is...\n Probably my all-time favorite movie, a story o...\n I sure would like to see a resurrection of a u...\n This show was an amazing, fresh & innovative i...\n Encouraged by the positive comments about this...\n If you like original gut wrenching laughter yo...\n Phil the Alien is one of those quirky films wh...\n I saw this movie when I was about 12 when it c...\n So im not a big fan of Boll's work but then ag...\n The cast played Shakespeare.<br /><br />Shakes...\n This a fantastic movie of three prisoners who ...\n Kind of drawn in by the erotic scenes, only to...\n Some films just simply should not be remade. T...\n This movie made it into one of my top 10 most ...\n I remember this film,it was the first film i h...\n An awful film! It must have been up against so...\n After the success of Die Hard and it's sequels...\n I had the terrible misfortune of having to vie...\n What an absolutely stunning movie, if you have...\n First of all, let's get a few things straight ...\n This was the worst movie I saw at WorldFest an...\n The Karen Carpenter Story shows a little more ...\n \"The Cell\" is an exotic masterpiece, a dizzyin...\n This film tried to be too many things all at o...\n This movie was so frustrating. Everything seem...\n 'War movie' is a Hollywood genre that has been...\n Taut and organically gripping, Edward Dmytryk'...\n \"Ardh Satya\" is one of the finest film ever ma...\n My first exposure to the Templarios & not a go...\n One of the most significant quotes from the en...\n I watched this film not really expecting much,...\n I bought this film at Blockbuster for $3.00, b...\n The plot is about the death of little children...\n Ever watched a movie that lost the plot? Well,...\n Okay, so this series kind of takes the route o...\n After sitting through this pile of dung, my hu...\n It had all the clichés of movies of this type ...\n This movie is based on the book, \"A Many Splen...\n Of all the films I have seen, this one, The Ra...\n I had heard good things about \"States of Grace...\n This movie struck home for me. Being 29, I rem...\n As a disclaimer, I've seen the movie 5-6 times...\n Protocol is an implausible movie whose only sa...\n How this film could be classified as Drama, I ...\n Preston Sturgis' THE POWER AND THE GLORY was u...\n Average (and surprisingly tame) Fulci giallo w...\n Return to the 36th Chamber is one of those cla...\n ***SPOILERS*** All too, in real life as well a...\n Bela Lugosi appeared in several of these low b...\n I cannot believe I enjoyed this as much as I d...\n The 33 percent of the nations nitwits that sti...\n As someone has already mentioned on this board...\n The Hills Have Eyes II is what you would expec...\n I laughed all the way through this rotten movi...\n NO SPOILERS!!<br /><br />After Hitchcock's suc...\n I just watched The Dresser this evening, havin...\n What happened? What we have here is basically ...\n I've just watched Fingersmith, and I'm stunned...\n So let's begin!)))<br /><br />The movie itself...\n Besides being boring, the scenes were oppressi...\n An unmarried woman named Stella (Bette Midler)...\n DON'T TORTURE A DUCKLING is one of Fulci's ear...\n Busty beauty Stacie Randall plays PVC clad, ba...\n I really like Salman Kahn so I was really disa...\n I'm not sure why the producers needed to trade...\n This film laboured along with some of the most...\n Caddyshack Two is a good movie by itself but c...\n Honestly - this short film sucks. the dummy us...\n I thought that Mukhsin has been wonderfully wr...\n I am not a golf fan by any means. On May 26 ab...\n Upon viewing Tobe Hooper's gem, Crocodile, in ...\n It tries to be the epic adventure of the centu...\n The Last Hard Men finds James Coburn an outlaw...\n Maybe it was the title, or the trailer (certai...\n The few scenes that actually attempt a depicti...\n This film took me by surprise. I make it a hab...\n Stephen Hawkings is a genius. He is the king o...\n The story is about a psychic woman, Tory, who ...\n Oh God, I must have seen this when I was only ...\n \"Fate\" leads Walter Sparrow to come in possess...\n We brought this film as a joke for a friend, a...\n This was probably the worst movie i have ever ...\n This is a typical Steele novel production in t...\n Oh noes one of these attack of the Japanese gh...\n Nicholas Walker is Paul, the local town Revera...\n Hollywood movie industry is the laziest one in...\n \"Down Periscope\" has been in our library since...\n If you came here, it's because you've already ...\n Deanna Durbin, Nan Grey and Barbara Read are \"...\n If anyone is wondering why no one makes movies...\n I watched this series out of curiosity,wanting...\n Daniel Day-Lewis is the most versatile actor a...\n My guess would be this was originally going to...\n Well, I like to watch bad horror B-Movies, cau...\n This IS the worst movie I have ever seen, as w...\n I have been a Mario fan for as long as I can r...\n This short film that inspired the soon-to-be f...\n Okay, last night, August 18th, 2004, I had the...\n I bought this game on an impulse buy from walm...\n No, this hilariously horrible 70's made-for-TV...\n It is easy to tell early in this movie exactly...\n Marion Davies stars in this remarkable comedy ...\n The performance of every actor and actress (in...\n While Star Trek the Motion Picture was mostly ...\n Despite later claims, this early-talkie melodr...\n This is the best version (so far) that you wil...\n Apparently, the people that wrote the back of ...\n I liked Boyle's performance, but that's about ...\n It's terrific when a funny movie doesn't make ...\n So well made, no CGI crap. Has anyone else bee...\n The Assignment is an outstanding thriller with...\n this is one of the finest movies i have ever s...\n Set in the 1794, the second year of the French...\n Usually I'm a bit of a fan of the bad eighties...\n I have now seen quite a few films by Pedro Alm...\n I greatly enjoyed Margaret Atwood's novel 'The...\n this movie gets a 10 because there is a lot of...\n Ingrid Bergman, playing dentist Walter Matthau...\n \"A bored television director is introduced to ...\n Ah yes the 1980s , a time of Reaganomics and S...\n This tale based on two Edgar Allen Poe pieces ...\n I am so happy and surprised that there is so m...\n \"Revolt of the Zombies\" proves that having the...\n The complaints are valid, to me the biggest pr...\n This movie was one of the best movies that I h...\n I remember seeing this film in the mid 80's th...\n Two hours ago I was watching this brilliant mo...\n Luckily for Bill Murray this is such a light-w...\n \"The Danish Bladerunner\" is boldly stated on t...\n This movie shows a clip of live animal mutilat...\n Anyone who thinks Kool Moe Dee, Carol Alt, and...\n This film could have been a decent re-make, an...\n I find it very intriguing that Lee Radziwill, ...\n C'mon guys some previous reviewers have nearly...\n I just watched this movie on it's premier nigh...\n I caught this film on AZN on cable. It sounded...\n Before I begin, let me get something off my ch...\n Ye Lou's film Purple Butterfly pits a secret o...\n After hearing about George Orwell's prophetic ...\n This cute animated short features two comic ic...\n I just got back from this free screening, and ...\n I remember seeing this film in the theater in ...\n A family is traveling through the mid West. Th...\n Francis Ford Coppola wrote and directed this s...\n This movie was not very well directed. they al...\n The buzz for this film has always been about t...\n A young girl becomes a war-time marine's pen-p...\n This movie is a perfect adaptation of the Engl...\n Robert Altman's downbeat, new-fangled western ...\n What seemed at first just another introverted ...\n I don't think I've ever gave something a 1/10 ...\n In the standard view, this is a purely awful m...\n From the film's first shot - Keira Knightley a...\n I've always enjoyed films that depict life as ...\n The story is very trustworthy and powerful. Th...\n This movie was not so much promoted here in Gr...\n MYSTERY MEN has got to be THE stupidest film I...\n You know that mouthwash commercial where the g...\n I can't believe it that was the worst movie i ...\n This is one of a rarity of movies, where inste...\n Even though I'm quite young, The Beatles are m...\n An American Werewolf in London had some funny ...\n Originally I was a Tenacious D fan of their fi...\n This is just one more of those hideous films t...\n The premise of this movie was decent enough, b...\n The Lives of the Saints starts off with an atm...\n I can't emphasize it enough, do *NOT* get this...\n Is nothing else on TV? Are you really bored? W...\n The Elegant Documentary -<br /><br />Don't wat...\n In 1993, with the success of the first season ...\n I think this movie was supposed to be shocking...\n Why can't a movie be rated a zero? Or even a n...\n This movie took me by surprise. The opening cr...\n Though I'd heard that \"Cama de Gato\" was the w...\n An unforgettable masterpiece from the creator ...\n This movie was a failure as a comedy and a fil...\n It is so gratifying to see one great piece of ...\n This movie is very violent, yet exciting with ...\n The day has finally come for me to witness the...\n This has to be the worst piece of garbage I've...\n A very ordinary made-for-tv product, \"Tyson\" a...\n I'm sure deep in the recesses of Jack Blacks m...\n I haven't read the Anne Rice novel that this m...\n While I count myself as a fan of the Babylon 5...\n Leonard Maltin gave this film a dreaded BOMB r...\n I don't believe there has ever been a more evi...\n If you wish to see Shakespeare's masterpiece i...\n The Golden Door is the story of a Sicilian fam...\n Nifty little episode played mainly for laughs,...\n I had before a feeling of mislike for all Russ...\n I watched mask in the 80's and it's currently ...\n Phantasm ....Class. Phantasm II.....awesome. P...\n Ludicrous. Angelic 9-year-old Annakin turns in...\n Scotty (Grant Cramer, who would go on to star ...\n If you keep rigid historical perspective out o...\n The film quickly gets to a major chase scene w...\n Interesting and short television movie describ...\n Any film about WWII made during WWII by a Brit...\n A brilliant horror film. Utterly gruesome and ...\n I absolutely love this film. Everything about ...\n No one can say I wasn't warned as I have read ...\n A new way to enjoy Goldsworthy's work, Rivers ...\n If you liked William Hickey in \"Prizzi's Honor...\n I have seen most, if not all of the Laurel & H...\n I just started watching The Show around July. ...\n This film is well cast, often silly and always...\n I have just given a 10 for Thieves Highway, I ...\n This movie was terrible. The plot was terrible...\n I strongly dislike this show. I mean, like, ba...\n Normally I don't like series at all. They're a...\n holy Sh*t this was god awful. i sat in the the...\n This movie is without a doubt a perfect 10/10....\n I saw this at the London Film Festival last ni...\n I can't believe this movie managed to get such...\n This movie really woke me up, like it wakes up...\n Ed Wood rides again. The fact that this movie ...\n This sports a nice, deep cast but for a thrill...\n I think this movie has got it all. It has real...\n Howard (Kevin Kline) teaches English at the hi...\n When the opening shot is U.S. Marines seriousl...\n We usually think of the British as the experts...\n I had been looking forward to seeing Dreamgirl...\n One of Starewicz's longest and strangest short...\n Nice character development in a pretty cool mi...\n Prussic gas, a murderer donning a red clansman...\n I was very lucky to see this film as part of t...\n This movie is really bad. Most of it looks lik...\n I think this is one hell of a movie..............\n I saw this movie in the theater, and was thoro...\n I've seen this film literally over 100 times.....\n The three main characters are all hopeless, an...\n Reese Witherspoon first outing on the big scre...\n This game ranks above all so far. I had the ho...\n This movie is not worth anything. I mean, if y...\n This is yet another western about a greedy cat...\n Apparently, The Mutilation Man is about a guy ...\n This movie was absolutely pathetic. A pitiful ...\n I Feel the Niiiiiight Heat! I feel your HEEAAA...\n This movie fails miserably on every level. I h...\n Yes i'll say before i start commenting, this m...\n Based on a Edgar Rice Burroughs novel, AT THE ...\n I have seen this film at least 100 times and I...\n This show makes absolutely no sense. Every wee...\n This movie was so bad it was funny! For awhile...\n Meryl Streep is such a genius. Well, at least ...\n 'Airport 4' is basically a slopped together me...\n Supposedly a \"social commentary\" on racism and...\n OK, I bought this film from Woolworths for my ...\n Insignificant and low-brained (haha!) 80's hor...\n Does anyone remember the alternative comedy sh...\n Well, here's another terrific example of awkwa...\n Resnais, wow! The genius who brought us Hirosh...\n I saw this movie in the middle of the night, w...\n This movie takes the plot behind the sci-fi fl...\n Black comedy isn't always an easy sell. Every ...\n Back in 1994, I had a really lengthy vacation ...\n Paul Verhoeven's predecessor to his breakout h...\n I accept that most 50's horror aren't scary by...\n Demon Wind is about as much fun as breaking yo...\n There is a difference between a \"film,\" and a ...\n please re-watch all 3 series and do not go see...\n Finally! An Iranian film that is not made by M...\n Sometimes you just have to have patients when ...\n Tainted look at kibbutz life<br /><br />This f...\n (When will I ever learn-?) The ecstatic review...\n \"Lost\", \"24\", \"Carnivale\", \"Desperate Housewif...\n Clifton Webb is one of my favorites. However, ...\n This is a must-see documentary movie for anyon...\n The message of a world on the brink of war is ...\n Fulci... Does this man brings one of the gorie...\n What an incomprehensible mess of a movie. Some...\n I love to watch this movie a lot because of al...\n WARNING: REVIEW CONTAINS MILD SPOILERS<br /><b...\n Some comments here on IMDb have likened Dog Bi...\n I watched this movie for the hot guy--and even...\n Absolute must see documentary for anyone inter...\n I have decided to not believe what famous movi...\n After a very scary, crude opening which gives ...\n I can't say much about this film. I think it s...\n I am not so old that I can't remember laughing...\n In New Orleans, an illegal immigrant feels sic...\n The box is why I originally picked up this mov...\n There have been many documentaries that I have...\n I saw this movie last night and thought it was...\n Yes, I call this a perfect movie. Not one bori...\n I would like to know if anyone know how I can ...\n I saw the movie \"Hoot\" and then I immediately ...\n I had some reservations about this movie, I fi...\n When I first saw this film around 6 months ago...\n Focus is another great movie starring William ...\n In \"Brave New Girl,\" Holly comes from a small ...\n Despite a totally misleading advertising campa...\n This movie sucks ass. Something about a heatwa...\n I was looking forward to The Guardian, but whe...\n Going into see Seven Pounds i wasn't clearly s...\n I saw Brother's Shadow at the Tribeca Film Fes...\n \"Mararía\" really disappointed me. I can't cons...\n Serum is about a crazy doctor that finds a ser...\n witty. funny. intelligent. awesome. i was flip...\n It's a unique film, as it gives us our only ch...\n This is definitely a \"must see\" film. The exce...\n I thought this movie was stunning, with comple...\n I consider myself a bit of a connoisseur of bo...\n That this movie has been stapled to the wall o...\n Well, there's no real plot to speak of, it's j...\n This is the best film the Derek couple has eve...\n Some people drift through life, moving from on...\n Ho-hum. An inventor's(Horst Buchholz)deadly bi...\n Note to self. Never ever ever again watch a se...\n This movie is stupid. There's no getting aroun...\n I was looking forward to this so much, being a...\n as always this is an inaccurate picture of the...\n i really in enjoyed watching this movie. like ...\n Having been a Marine, I can tell you that the ...\n Every high praise word fell way short before t...\n Ken Burns' \"Baseball\" is a decent documentary....\n \"Quitting\" may be as much about exiting a pre-...\n I have watched this movie countless times, and...\n If only I had read the review by Alex Sander (...\n Even though I saw this film when I was very yo...\n Gone is the wonderful campiness of the origina...\n Although most Americans have little knowledge ...\n Victor McLaglen's performance is one of the fi...\n How do you take a cast of experienced, well-kn...\n The sexploitation movie era of the late sixtie...\n What a surprisingly good movie this one turned...\n I did not expect much from this film, but boy-...\n I cant believe there are people out there that...\n Flynn, known mostly for his swashbuckling role...\n Often laugh out loud funny play on sex, family...\n Thought provoking, humbling depiction of the h...\n Or anyone else have noticed the fact that firs...\n elvira mistress of the dark is one of my fav m...\n I saw this movie on the Hallmark Channel and t...\n Despite having an absolutely horrid script (mo...\n I find the critique of many IMDb users a littl...\n I was debating between this movie and 2012 but...\n Bend it like Beckham is packed with intriguing...\n Directed by Diane Keaton and adapted from a bo...\n Perhaps the most gripping and intelligent of c...\n In sum, overlong and filled with more subplots...\n Incomprehensibly dreadful mishmash of the prob...\n Did anyone edit this film? Or was it only the ...\n Riding high on the success of \"Rebel Without a...\n Most of the comments on this movie are positiv...\n Pepe le Moko, played by Charles Boyer, is some...\n Man with the Screaming Brain certainly isn't a...\n You should never ever even consider to watch t...\n Tell the truth I’m a bit stun to see all these...\n This film held my interest enough to watch it ...\n Like the previous poster, I am from northern V...\n MAY CONTAIN SPOILERS. This movie was the worst...\n Watched this last night and was bowled over by...\n Recap: Something mysteriously dense that trans...\n This movie features Charlie Spradling dancing ...\n Had I checked IMDb BEFORE renting this DVD fro...\n The endless bounds of our inhumanity to our ow...\n This flick is so bad its beyond belief.Even fo...\n This is a very memorable spaghetti western. It...\n The plot: Michael Linnett Connors has done eve...\n It got to be a running joke around Bonanza abo...\n Years ago, when DARLING LILI played on TV, it ...\n This series, made for Televisión Española (TVE...\n I want the 99 minutes of my life back that was...\n One of my favorite movies which has been overl...\n It's nice to see a romantic comedy that does n...\n Of all the movies of the seventies, none captu...\n This is apparently the second remake of this f...\n This movie illustrates like no other the state...\n Owen loves his Mamma...only he'd love her bett...\n A Compelling Thriller!!, 10 December 2005 Auth...\n Filmfour are going to have to do a lot better ...\n Doctor Mordrid is one of those rare films that...\n A truly muddled incomprehensible mess. Most th...\n It doesn't happen very often, but occasionally...\n I'm a big fan of surrealist art, but this film...\n This ludicrous film offers the standard 1970's...\n This film was pretty good. I am not too big a ...\n For his first ever debut this film has some ri...\n This film contain far too much meaningless vio...\n Pathetic attempt to use science to justify new...\n I was truly looking forward to this title. It ...\n One of my sisters friends lent me this game, a...\n Chuck Jones's 'Rabbit Seasoning', the second i...\n A lovely little B picture with all the usual J...\n \"Crossfire\" is a justifiably famous 1947 noir ...\n AWWWW, I just love this movie to bits. Me and ...\n Skippy from \"Family Ties\" plays Eddie, a wussy...\n Of course I would have to give this film 10 ou...\n Goldeneye will always go down as one of thee m...\n Helena Bonham Carter is the center of this mov...\n I commented on this when it first debuted and ...\n Just because someone is under the age of 10 do...\n \"Hey Babu Riba\" is a film about a young woman,...\n After a snowstorm, the roads are blocked and t...\n This movie was a fairly entertaining comedy ab...\n What can you say about the film White Fire. Am...\n I am so disappointed. This movie left me feeli...\n This movie is all ultra-lightweight fluff, pre...\n If you are interested in learning more about t...\n Gamers: DR is not a fancy made movie, it's mor...\n In all honesty, I haven't seen this film for m...\n This is the only thing I will be able to look ...\n You'd think you're in for some serious sightse...\n I watched this movie based on the good reviews...\n A great Bugs Bunny cartoon from the earlier ye...\n I firmly believe that the best Oscar ceremony ...\n While in a plane, flicking through the large c...\n Ah, another movie with motorcycles, hell's ang...\n A rating of \"1\" does not begin to express how ...\n I feel dumber after watching the first 20 min,...\n The most self-indulgent movie I have every had...\n This has got to be the worst movie I haver eve...\n I like Ghost stories. Good ghost stories of bu...\n Okay, I've watched this movie twice now, I hav...\n This would've been a *great* silent film. The ...\n This movie starts with the main character lyin...\n This story about three women is a very sensiti...\n First and foremost, I loved the novel by Ray B...\n This film is so old I never realized how young...\n I had eagerly awaited the first screening of t...\n If you like Sci-Fi, Monsters, and Ancient Lege...\n A rather silly little film you just may love.<...\n This is an OK adaptation of the breath taking ...\n I never fell asleep during a movie. Never. Thi...\n What can I say? Not as bad as many here have m...\n Originally harped as a sequel to \"The Slumber ...\n A killer, cannibal rapist is killed by a craze...\n Days of Heaven is one of the most painfully bo...\n In 1929, director Walt Disney and animator Ub ...\n Yes, indeed, it could have been a good movie. ...\n You wear only the best Italian suits from Arma...\n This is an excellent film about the characters...\n This mostly routine fact-based TV drama gets a...\n I watched Six of a Kind for W.C. Fields - he's...\n EDMUND LOWE (who reminds me somewhat of Warren...\n This movie is lame and not funny at all. The p...\n Although I was hoping that I'd like it a littl...\n Imagine this: a high school. Except it's board...\n I had been amazed by director Antal's Kontroll...\n First of all, the reason I'm giving this film ...\n This movie must be in line for the most boring...\n Down at the Movie Gallery, I saw a flick I jus...\n i am finally seeing the El Padrino movie, from...\n I thrive on cinema....but there is a limit. A ...\n Michael Callan plays a smarmy photographer who...\n I was drawn to \"Friends\" by the soundtrack sco...\n During the Clete Roberts preface, I was beginn...\n I decided to watch this one because it's been ...\n Mom should really be given a different title t...\n Empire of Passion starts out deceptively - tha...\n I am not a big music video fan. I think music ...\n Oh, my goodness. I would have never thought it...\n The Man With a Golden Arm was one of a trio of...\n This film was basically set up for failure by ...\n Have previously enjoyed Wesley Snipes in sever...\n An intense thriller about a mute movie make-up...\n Don't listen to most of these people. ill give...\n What a frustrating movie. A small Southern tow...\n This movie starred a totally forgotten star fr...\n When Carol (Vanessa Hidalgo) starts looking in...\n One of the more intelligent serial killer movi...\n I've read the other reviews and found some to ...\n I like this movie because it is a fine work of...\n I had a hard time staying awake for the two ho...\n Although the plot of this film is a bit far-fe...\n This movie was so badly written, directed and ...\n When I was a younger(oh about 2)I watched Barn...\n Steve McQueen has certainly a lot of loyal fan...\n This is a bad film, as its central message is ...\n I caught this movie on the Sci-Fi channel rece...\n (Very mild spoilers; a basic plot outline, no ...\n I shall begin with a disclaimer: This movie is...\n This is quite possibly one of the worst movies...\n If you really really REALLY enjoy movies featu...\n Joseph Brady and Clarence Doolittle are two sa...\n From director Barbet Schroder (Reversal of For...\n Things to Come is an early Sci-Fi film that sh...\n Weak,stale, tired, cliched; wants to be Basic ...\n One word can describe this movie and that is w...\n While i was the video store i was browsing thr...\n this film is quite simply one of the worst fil...\n I'll not comment a lot, what's to??? Stereotyp...\n This movie is a riot. I cannot remember the la...\n A fey story of a Martian attempt to colonize E...\n It's rare that I feel a need to write a review...\n Relentless like one of those loud action movie...\n This movie does a great job of explaining the ...\n In an alternate 1950s, where an outbreak of th...\n An extremely down-to-earth, well made and acte...\n Despite some reviews being distinctly Luke-war...\n \"American Nightmare\" is officially tied, in my...\n First off, I have to say that I loved the book...\n This movie was extremely boring. I only laughe...\n I was disgusted by this movie. No it wasn't be...\n Such a joyous world has been created for us in...\n What an empty and lack lustre rendition of the...\n My Father The Hero used to be my favorite movi...\n It is surprising that a production like this g...\n I just don't get some of the big premises of t...\n This is one of my all time favorite movies and...\n I know that you've already entered this in fil...\n This is probably the first entry in the \"Lance...\n This animation has a very simple and straightf...\n My ratings: Acting - 3/10 Suspense - 2/10 Char...\n I am not a Faulkner fan (which is considered s...\n Chinese Ghost Story III is a totally superfluo...\n I can't stand most reality shows and this one ...\n If I had known this movie was filmed in the ex...\n The story and the show were good, but it was r...\n First, let me just comment on what I liked abo...\n This is one of the best TV productions of a mu...\n I am sorry to say that this film is indeed bad...\n Is it a perfect movie? No. It is a weird adapt...\n Overall I was rather impressed with the pilot....\n I'm the type of guy who loves hood movies from...\n I am a huge fan of the Farcry Game, HUGE fan. ...\n one of the best ensemble acted films I've ever...\n I haven't seen this movie in about 5 years, bu...\n Today, I wrote this review in anger at Uwe Bol...\n You cannot deny that we have an affinity for s...\n Im the type of person who always goes 2 to hor...\n Seven Ups has been compared to Bullitt for the...\n Have you ever heard the saying that people \"te...\n \"Night of the Living Homeless\" was a fairly st...\n <br /><br />I'm not sure who decides what cate...\n I gave this a 1. There are so many plot twists...\n Not an easy film to like at first with both th...\n I read the book before seeing the movie, and t...\n DOCTEUR PETIOT, starring Michel Serrault, is a...\n I just got this video used and I was watching ...\n This film is really vile. It plays on the urba...\n What a horrible, horrible film. The worst coll...\n Motocrossed was fun, but it wasn't that great....\n Sixth escapade for Freddy Krueger in which he ...\n OK, I'm Italian but there aren't so many Itali...\n If you only see one Ernest movie in your life,...\n An idiotic dentist finds out that his wife has...\n The first Cube movie was an art movie. It set ...\n I have just watched this movie on DVD late thi...\n I believe Shakespeare explained what I just re...\n \"I presume you are here for damage to your men...\n This movie was Flippin Awful....I wanted those...\n This is a movie that i can watch over and over...\n If you like to see animals being skinned alive...\n Another Spanish movie about the 1936 Civil War...\n A response to previous comments made by reside...\n I was expecting a lot from Mr.Amitabh Bachan's...\n A trio of buddies, sergeants all in the Britis...\n This movie pretty much sucked. I'm in the Army...\n If you watched Pulp Fiction don't see this mov...\n I went to see \"Passion of Mind\" because I usua...\n I thought that ROTJ was clearly the best out o...\n Crossfire remains one of the best Hollywood me...\n This movie basically is a very well made produ...\n So I rented this from Netflix because somebody...\n What a boring film! To sum it all up, its was ...\n {rant start} I didn't want to believe them at ...\n As a native Chinese, I can not accept this kin...\n This had a great cast with big-name stars like...\n I remember watching this series avidly, every ...\n I don't normally write reviews, but this \"film...\n Few would argue that master animation director...\n Attractive Marjorie(Farrah Fawcett)lives in fe...\n I find it sad that just because Edward Norton ...\n I watched this movie on TV last night, hoping ...\n For those out there that like to think of them...\n THE GREAT CARUSO was the biggest hit in the wo...\n I attended an advance screening of this film n...\n 1) I am not weapon expert, but even i can see ...\n Do you ever wonder what is the worst movie eve...\n The film began with Wheeler sneaking into the ...\n I was really hoping that this would be a funny...\n First of all \"Mexican werewolf in Texas\" is no...\n This movie is so God-awful that it was literal...\n The symbolic use of objects, form editing, the...\n I found this movie to be very good in all area...\n Rather like Paul Newman and Steve McQueen with...\n I would recommend this film to anyone who is s...\n This is an art film that was either made in 19...\n I read the book and saw the movie. Both excell...\n A drifter looking for a job is mistaken for a ...\n I really liked this movie. I have seen several...\n Although promoted as one of the most sincere T...\n Stan Laurel and Oliver Hardy are the most famo...\n OK I have to admit that I quite enjoyed House ...\n I was -Unlike most of the reviewers- not born ...\n Just when I thought I would finish a whole yea...\n As is often the case when you attempt to take ...\n My father grew grew up watching George Reeves ...\n This unpretentious Horror film is probably des...\n I read the book before watching the movie and ...\n Years ago, Sara, a young girl witnessed her pa...\n In short if you want to watch Burt Reynolds be...\n I have watched Love Jones over thirty times. I...\n The basic genre is a thriller intercut with an...\n This is absolutely the best movie I have ever ...\n Holes is an awesome movie. I love it a lot and...\n I cannot hate on the show. When the old (and b...\n Worst DCOM I have seen. Ever. Well, maybe not ...\n its awful i cant believe that one of the great...\n Some people may call \"Cooley High\" the same so...\n So wonderful, so quirky, so romantic, so Itali...\n This film is, quite simply, brilliant. The cin...\n I have recently seen this production on DVD. I...\n In a time of bad, if not plain awful, comedies...\n PREY <br /><br />Aspect ratio: 1.37:1<br /><br...\n The tourist season has just ended on a remote ...\n This review also contains a spoiler of the fir...\n This movie is ridiculous. It's attempting to b...\n In dramatising Wilde's novel, John Osborne has...\n It starts out like a very serious social comme...\n This is my first Deepa Mehta film. I saw the f...\n All the way though i was thinking to myself \"O...\n At 2:37, a high school student commits suicide...\n The quote above just about says it all for \"Sl...\n Director Edward Sedgwick, an old hand at visua...\n The jokes are obvious, the gags are corny, and...\n These slasher pics are past their sell by date...\n The only reason I gave this episode of \"Master...\n Like most, I thought 'another crocodile movie'...\n There are a couple of prior comments here whic...\n If you haven't seen this yet, you really shoul...\n Why is it that Canada can turn out decent to g...\n Ab Tak Chhappan is a fictitious story surround...\n Let's keep it simple: My two kids were glued t...\n It was 1 a.m. in the morning and I had nothing...\n Lackawanna Blues is and excellent movie. The c...\n Saturday June 3, 6:30pm The Neptune<br /><br /...\n As most people I am tired of the by the number...\n Many of the reviews and comments I have read a...\n As the number of Video Nasties I've yet to see...\n I rented this thinking it would be pretty good...\n I found out about this film because Jewish Ben...\n This movie has everything typical horror movie...\n Having just seen Walt Disney's The Skeleton Da...\n The cast of this film contain some of New Zeal...\n Emily Watson and Tom Wilkinson together - what...\n I am amazed with some of the reviews of this f...\n Angela (Sandra Bullock) is a computer expert b...\n I rented the DVD in a video store, as an alter...\n Look, this is a low budget horror film that su...\n It wasn't until I looked at the trivia section...\n I am a huge Woody Allen fan and so when I saw ...\n I rented this film because of my interest in A...\n 1983's \"Frightmare\" is an odd little film. The...\n People watch movies for a variety of different...\n I think that you can not imagine how these peo...\n As usual, I am making a mad dash to see the mo...\n A group of friends break down in the middle of...\n Most Lorne Michaels films seem to fail because...\n Having read during many years about how great ...\n Many teenage sex comedy movies come and go wit...\n I loved this show from it's first airing, and ...\n I didn't know what to except so I think it was...\n Did the first travesty actually make money? Th...\n I was never so bored in my life. Hours of pret...\n This movie is awesome on so many levels... and...\n The Ladies Man is laugh out loud funny, with a...\n when i first heard about this movie i thought ...\n A flying saucer manned (literally) by a crew o...\n I just saw this film on DVD last night, and de...\n This was a fine example of how an interesting ...\n I have bought the complete season of Surface. ...\n This must have been one of the worst movies I ...\n Liam Neeson portrays the Scottish legend Rober...\n When i watch this movie i too get excited when...\n They've shown i twice in a very short time now...\n Having seen Carlo Lizzani's documentary on Luc...\n Time is precious. This film isn't. I must lear...\n worst. movie. ever made. EVER. I have no words...\n Savage Island (2003) is a lame movie. It's mor...\n I have to say this is my favorite movie of all...\n I saw it at the Legacy Theater in the Joseph S...\n Adenoid Hynkel, a lowly soldier in World War O...\n \"Milo\" is yet another answer to a question nob...\n This is one of the best horror / suspense film...\n Never saw the original movie in the series...I...\n Created in 1928, and originally named Mortimer...\n Highly regarded at release, but since rather n...\n The perfect murder is foiled when a wife(playe...\n The IMDb plot summary in no way describes the ...\n TESS OF THE STORM COUNTRY is possibly the best...\n I first saw this movie when I was about 10 yea...\n Although there are some snippets in this 4-par...\n Considering this film was released 8 years bef...\n The movie was actually a romantic drama based ...\n First, I realize that a \"1\" rating is supposed...\n Picture the scene where a bunch of scriptwrite...\n The year 2005 saw no fewer than 3 filmed produ...\n Of the elements that make this the best at thi...\n Okay this is stupid,they say their not making ...\n Everyone, my name may sound weird, but there w...\n Finally was there released a good Modesty Blai...\n By now, the game's stale, right?<br /><br />Th...\n I decided to watch this movie because I'd not ...\n Unfortunately the only spoiler in this review ...\n I Enjoyed Watching This Well Acted Movie Very ...\n Hypothetical situations abound, one-time direc...\n <br /><br />I must admit, I was expecting some...\n I am so happy not to live in an American small...\n Like anyone else who bought this, I was duped ...\n I always felt that Ms. Merkerson had never got...\n This will not likely be voted best comedy of t...\n As a casual listener of the Rolling Stones, I ...\n Watch the Original with the same title from 19...\n Director Don Siegel really impressed me with t...\n Anyone who lived through the ages of Revenge o...\n Arguably the finest serial ever made(no argume...\n I have to say that the events of 9/11 didn't h...\n Perfect movies are rare. Even my favorite film...\n This has to be one of the 5 worst movies ever ...\n regardless of what anyone says, its a b-movie,...\n I want very much to believe that the above quo...\n It's hard to praise this film much. The CGI fo...\n I remember going to see the movie in the summe...\n Just finished watching 2FTM. The trailers intr...\n I was watching the sci-fi channel when this st...\n I only heard about Driving Lessons through the...\n For Greta Garbo's first talking picture, MGM w...\n Let me set the scene. It is the school holiday...\n As a long-time fan of all the Star Trek series...\n This TV-series was one of the ones I loved whe...\n Fans of the HBO series \"Tales From the Crypt\" ...\n Dirty War is absolutely one of the best politi...\n Some may go for a film like this but I most as...\n This is the Who at their most powerful. Althou...\n This filmmaker wanted to make a movie without ...\n They filmed this movie out on long Island, whe...\n That's how Burt Reynolds describes this film, ...\n Human Traffic is a view into an average weeken...\n This early Biograph short was so much fun to w...\n Baba - Rajinikanth will never forget this name...\n Written by Oliver Stone and directed by Brian ...\n First, the CGI in this movie was horrible. I w...\n I enjoyed it. There you go, I said it again. I...\n What a waste of talent. A very poor, semi-cohe...\n Although it strays away from the book a little...\n Mario Lewis of the Competitive Enterprise Inst...\n A lovely little film about the introduction of...\n Sigh. I'm baffled when I see a short like this...\n Cute idea... salesgirl Linda Smith (Yolande Do...\n Back in 1982 a little film called MAKING LOVE ...\n The concept of having Laurel & Hardy this time...\n This movie came as a huge disappointment. The ...\n Maybe I loved this movie so much in part becau...\n I was surprised that \" Forgiving the Franklins...\n They must issue this plot outline to all wanna...\n I watched this movie so that you don't have to...\n Just saw this movie on opening night. I read s...\n I went to see this movie (actually I went to s...\n A well-made run-of-the-mill movie with a tragi...\n I don't understand the positive comments made ...\n Steven what have you done you have hit an all ...\n A call-girl witnesses a murder and becomes the...\n *Flat SPOILERS* <br /><br />Five med students,...\n One of my favorite shows back in the '70s. As ...\n I think my summary says it all. This MTV-ish a...\n Frownland is like one of those intensely embar...\n I saw this movie while surfing through infomer...\n I first saw this film when I was about 8 years...\n This film can't make up its mind whether its m...\n Why, o' WHY! ...did I pick this one up? Well.....\n Only a very small child could overlook the abs...\n Our teacher showed us this movie in first grad...\n A plot that fizzled and reeked of irreconcilab...\n Scott Menville is not Casey Kasem. That is the...\n I often wonder how movies like this even get m...\n This movie is an amazing comedy.. the script i...\n Even this early in his career, Capra was quite...\n Uwe Boll slips back in his film-making skills ...\n This video is so hilariously funny, it makes e...\n This film is dreadful. It has absolutely zero ...\n It's amazing that such a cliche-ridden yuppie ...\n I never watched the 'Next Action Hero' show, a...\n I am a big fan of old horror movies, and since...\n I just wanted to say that. I love Gheorghe Mur...\n I thought that this movie was incredible. I ab...\n This is a funny film and I like it a lot. Cary...\n Some here have commented that this is the WORS...\n First of all yes I'm white, so I try to tread ...\n Donald Pleasance and Peter Cushing united in o...\n The three shorts included on this compilation ...\n 1979's Tourist Trap is a clever, unique B thri...\n Years ago I saw The Godfather and it made a la...\n This little two-person movie is actually much ...\n UK newspaper reviews seem to have concentrated...\n Alien Hunter: 5 out of 10: Is it me or does ev...\n I have a hard time putting into words just how...\n I love this young people trapped in a house of...\n i saw the film and i got screwed, because the ...\n Lorna Green(Janine Reynaud)is a performance ar...\n This outing of Knotts includes one of his best...\n Emma is a horribly flawed film based on Jane A...\n Why do I hate this? Let me list the ways:<br /...\n Thank God this wasn't based on a true story, b...\n If you want just about everything you want to ...\n The movie was gripping from start to finish an...\n This is a great show with total freshness and ...\n It's all about getting what you want when you ...\n Now i have read some negative reviews for this...\n I'd give this a negative rating if I could. I ...\n Most people are totally unaware that this movi...\n This is a great, ridiculous horror movie that ...\n While not quite as good as A Murder is Announc...\n Good Lord, what were they THINKING??!!!!!! Her...\n I had heard (and read) so many good things abo...\n This movie is among my favorite foreign films,...\n As if the film were not of value in itself, th...\n This film is a lyrical and romantic memoir tol...\n I saw ZP when it was first released and found ...\n Very strange but occasionally elegant exploita...\n This is an interesting, hard to find movie fro...\n Johnny and June Carter Cash financed this film...\n Jäniksen vuosi is one of Jarva's most politica...\n I love Jamie Foxx.<br /><br />And I enjoy 99% ...\n After seeing Dick Tracy in the 6.99$ bin at Fu...\n Send them to the freezer. This is the solution...\n Wow! I picked this off the rental shelf becaus...\n I don't know why some people criticise that sh...\n Mexican Werewolf in Texas is set in the small ...\n I found this to be a surprisingly light-handed...\n I was so glad I came across this short film. I...\n I thought before starting with these movie tha...\n Truly appalling waste of space. Me and my frie...\n In this movie, Chávez supporters (either venez...\n One could wish that an idea as good as the \"in...\n OK, so it owes Pulp Fiction, but in my opinion...\n As far as I know the real guy that the main ac...\n All I ever heard while being raised was equali...\n I do regret that I have bought this series. I ...\n The story has been told before. A deadly disea...\n This film was very well advertised. I am an av...\n As far as I know this was my first experience ...\n Very typical Almodóvar of the time and, in its...\n Once again, Doctor Who delivers the goods by t...\n A Brother's Promise is a wonderful family film...\n Well...now that I know where Rob Zombie stole ...\n Director Sidney Lumet has made some masterpiec...\n I took my 14 year old to see this movie. We le...\n I loved this film. I thought it would be easy ...\n It's not easy to find Judas Kiss on VHS (it's ...\n First of all, I should point out that I really...\n STMD! is not a terrible movie, but it IS quite...\n First off, I have no idea how this movie made ...\n i am not exactly how sure the accuracy is with...\n I must have seen this a dozen times over the y...\n Steven Seagal's films of late have not exactly...\n and I for one think that is a good thing. I've...\n So real and surreal, all in one. I remember fe...\n Thank God I watched this at a friend's place a...\n A friend lent me this DVD, which he got from t...\n Shawshank, Godfather, Pulp Fiction... all good...\n I really cant think of anything good to say ab...\n Cinema's greatest period started in post-War E...\n This is a stereotype plot. A young fighter tri...\n This production was quite a surprise for me. I...\n It isn't TOO bad, but ultimately it lacks the ...\n From the decrepit ranks of the already over-sa...\n As a huge baseball fan, my scrutiny of this fi...\n This film takes you on one family's impossible...\n Stupid! Stupid! Stupid! I can not stand Ben st...\n This show is great for many reasons..The fathe...\n This film is where the Batman franchise ought ...\n The Quick and the Undead is, finally, the firs...\n I was stunned by this film. Afterwards, I didn...\n Am I the only person who thinks that the entir...\n The one of the most remarkable sci-fi movies o...\n This is the second Hitchcock film to appear on...\n It is always difficult to bring a 450 pages bo...\n This is one of my all time favorite cheap, cor...\n Let me first off say that I am a believer of g...\n For a long time, 'The Menagerie' was my favori...\n Coen Brothers-wannabe from writer-director Pau...\n When it was released this film caused a sensat...\n Largely forgettable tale in which mercenary Ke...\n Get Smart should be titled Get Stupid. There i...\n Herculis Puaro is, in general, a well establis...\n How can so many blundering decisions can be ma...\n This was by far the worst movie I've ever seen...\n If you've read Mother Night and enjoyed it so ...\n This is one of the worst movies, I've ever see...\n I sat through this on TV hoping because of the...\n A number of contributors have mentioned the ag...\n Family problems abound in real life and that i...\n The only conceivable flaw of this film is it's...\n Salva and his pal Bigardo have been at the mar...\n These kinda movies just don't get the credit t...\n As a big-time Prince fan of the last three to ...\n A good ol' boy film is almost required to have...\n After several extremely well ratings to the po...\n But it is kinda hilarious, at least if you gre...\n One of the two Best Films of the year. A well ...\n I managed to see this at the New York Internat...\n Why else would he do this to me?<br /><br />No...\n Minimal script, minimal character development,...\n A wonderful film ahead of its time,<br /><br /...\n it got switched off before the opening credits...\n This is one of the more unromantic movies I ha...\n (Only light spoilers in here)<br /><br />Steal...\n Yes, this is one of THOSE movies, so terrible,...\n Well where do I begin my story?? I went to thi...\n This is one of my favorites. Betty White and L...\n Following directly from where the story left o...\n Sometimes it's hard to be a pirate...............\n I had never seen a film by John Cassavetes up ...\n Based on an actual story, John Boorman shows t...\n This PM Entertainment production is laced with...\n SHALLOW GRAVE begins with either a tribute or ...\n Although this film has had a lot of praise, I ...\n No mention if Ann Rivers Siddons adapted the m...\n Meticulously constructed and perfectly played,...\n Wow. This is really not that good. <br /><br /...\n I have to point out, before you read this revi...\n I know little or nothing about astronomy, but ...\n After many, many years I saw again this beauti...\n First and foremost I would like to say, that b...\n \"ZZZZZZZZZZZZZZZZZZ\"! If IMDb would allow one-...\n Once in a while, a movie will sweep along that...\n Hard to imagine this film is based on a true s...\n I'm stunned that the reviewers @ IMDb gave thi...\n Do a title search on Randolph Scott and TRAIL ...\n I went to see this one with much expectation. ...\n *Sigh* Leave it to us Finns to take a stupid i...\n After the highs of darkplace it was never conc...\n I saw this movie in a theater while on vacatio...\n I caught this on television one day when I was...\n The film's design seems to be the alpha and om...\n Is rich, ailing Elizabeth Taylor courting the ...\n i can't even describe it. it's the worst movie...\n The screenplay is the worst part of this film,...\n Lady and the tramp ii: scamp's adventure i thi...\n Wow, what's this on the video rental store's s...\n Ok, honestly I dont see why everybody thinks t...\n This episode had potential. The basic premise ...\n The quality of this movie is simply unmatched ...\n I kept watching it because it seemed like the ...\n The movie itself made me want to go and call s...\n If somebody wants to make a really, REALLY bad...\n A film for mature, educated audiences...<br />...\n For all of the Has-Beens or Never Was's or for...\n This movie has to be one of the most boring an...\n I first remember bumping into this zaniness fr...\n A guy desperate for action attempts to hit on ...\n i think it is great one of my favourite films ...\n The film someone had to make.<br /><br />Waco:...\n What a good movie! At last a picture revealing...\n Had it with the one who raised you since when ...\n Yes, it is a bit cheesy. But it's suspenseful ...\n So it isn't an epic, but for people experienci...\n I absolutely loved this film! I was hesitant t...\n Previous reviewer Claudio Carvalho gave a much...\n Great premise, poor execution. Cast of great a...\n Have to agree that this movie and it's talente...\n I had two reasons for watching this swashbuckl...\n This film is an abomination of all that is wor...\n This was my first Gaspar Noe movie I've watche...\n I agree with BigAlC - this movie actually prep...\n I laughed so hard during this movie my face hu...\n Although I lived in Australia in 1975, I moved...\n I may be a good old boy from Virginia in the C...\n I never want to see this movie again!<br /><br...\n The problem is the role of the characters in t...\n Life Begins - and ends - in a typical 1930's m...\n This is a great film. Touching and strong. The...\n I think the manuscript of this movie was writt...\n *Criticism does mention spoilers*<br /><br />I...\n Possible Spoilers, Perhaps. I must say that \"C...\n Hopefully the score has changed by now due to ...\n Formula movie about the illegitimate son of a ...\n Whatever rating I give BOOM is only because of...\n VIVA LA BAM This \"Jackass\" spin off focuses on...\n I had never heard of Larry Fessenden before bu...\n Schlocky '70s horror films...ya gotta love 'em...\n I suppose for 1961 this film was supposed to b...\n This is one of the finest films to come out of...\n Now I don't hate cheap movies. I just don't se...\n A fabulous book about a fox and his family who...\n As soon as it hits a screen, it destroys all i...\n For a film made in Senegal, based, I guess loo...\n This is a very noir kind of episode. It begins...\n The Royal Rumble has traditionally been one of...\n I remember this in a similar vein to the Young...\n Destined to be a classic before it was even co...\n Stephane Audran is the eponymous heroine of th...\n This movie was way over-hyped. A lot of the vi...\n It is incredible that there were two films wit...\n I dunno sometimes...you try and try and try to...\n Big Fat Liar is what you get when you combine ...\n Tim Robbins and John Cusack are two actors I h...\n On watching this film, I was amazed at how med...\n Nothing is sacred. Just ask Ernie Fosselius. T...\n I hated it. I hate self-aware pretentious inan...\n I usually try to be professional and construct...\n If you like me is going to see this in a film ...\n This is like a zoology textbook, given that it...\n This movie is awful, I can't even be bothered ...\n Why do movie makers always go against the auth...\n I can't believe that those praising this movie...\n This film really used its locations well with ...\n Strangely enough this movie never made it to t...\n This film is so bad - dialogues, story, actors...\n I don't leave IMDb comments about films but th...\n In Nordestina, a village in the middle of nowh...\n \"I like cheap perfume better; it doesn't last ...\n I am a huge fan of Harald Zwart, and I just kn...\n Based on the best-selling novel \"The Dismissal...\n This is sad this movie is the tops this should...\n I found it very very difficulty to watch this ...\n This movie is a real low budget production, ye...\n I watch this movie without big expectations, I...\n What a fun filled, sexy movie! They certainly ...\n Jackass Number Two is easily the most hilariou...\n Turn your backs away or you're gonna get in bi...\n I remember the events of this movie, the ill f...\n \"Ally McBeal\" was a decent enough show, but it...\n Bad, ambient sound. Lots of shuffling. Loooong...\n Okay so I love Aidan Quinn's acting even with ...\n You remember the Spice Girls movie and how bad...\n I saw SEA OF DUST as part of a NYC screening a...\n This is a good time to say how good I think of...\n I'm a Christian. I have always been skeptical ...\n Having finally caught up with this \"masterpiec...\n Thoughtless, ignorant, ill-conceived, career-k...\n Jim Carrey is one of the funniest and most gif...\n Shameless Screen Entertainment is a relatively...\n The key scene in Rodrigo Garcia's \"Nine Lives\"...\n MINOR PLOT SPOILERS AHEAD!!!<br /><br />How di...\n I can't really see how anyone can have any int...\n A major disappointment. This was one of the be...\n I saw this movie only because Sophie Marceau. ...\n OK, how's this for original- this mean, rich o...\n L'Auberge Espagnole is full of energy, and it'...\n Make sure you make this delightful comedy part...\n \" Så som i himmelen \" .. as above so below.. t...\n At the height of the 'Celebrity Big Brother' r...\n I am from Texas, and live very close to Plano ...\n Mukhsin is a beautiful movie about a first lov...\n The film is partly a thriller and partly a pub...\n This could have been great. The voice-overs ar...\n A good documentary reviewing the background be...\n Not the best plot in the world, but the comedy...\n What a surprise; two outstanding performances ...\n Felt it was very balanced in showing what Jeho...\n A proof that it's not necessary for a movie to...\n I also saw this at the cinema in the 80s and h...\n The film \"Chaos\" takes its name from Gleick's ...\n I rented this movie with my friend for a good ...\n Silent historical drama based on the story of ...\n As a camera operator, I couldn't help but admi...\n I just saw this movie at a sneak preview and a...\n Duchess is a pretty white cat who lives with h...\n Slipknot is a hardcore rock band from Des Moin...\n The review on the main page admits that the mo...\n The movie plot seems to have been constructed ...\n It's 2005, my friends...a time of amazing spec...\n Even with a cast that boasts such generally re...\n In the colonies we're not all that familiar wi...\n Probably New Zealands worst Movie ever made<br...\n Like the other comments says, this might be su...\n To put it simply, The Fan was a disappointment...\n The opening scene keeps me from rating at abso...\n In this day and age in which just about every ...\n I've never laughed and giggled so much in my l...\n The storyplot was okay by itself, but the film...\n My comment is mainly a comment on the first co...\n The DVD version released by Crash Cinema was v...\n Ahh, nuthin' like cheesy, explopitative, semi-...\n i happen to love this show. Its a refreshing t...\n Wow, i'm a huge Henry VIII/Tudor era fan and, ...\n It is hard to believe that anyone could take s...\n Must have to agree with the other reviewer. Th...\n In KPAX Softley brushes on the subtleties of E...\n After 15 minutes watching the movie I was aski...\n I thought Rachel York was fantastic as \"Lucy.\"...\n I have to say the first I watched this film wa...\n I want Céline and Jessie go further in their r...\n Lovely Candace Bergen as the widow Perdicaris ...\n This movie is pathetic in every way possible. ...\n ...Or better yet, watch Fandango if you want t...\n Sharky's Machine is easily one of Burt Reynold...\n Winchester '73 is a great story, and that's wh...\n Peak Practice was a British drama series about...\n Maria Braun is an extraordinary woman presente...\n This quasi J-horror film followed a young woma...\n This dreadful film assembles every Asian stere...\n \"Gypsy\" is possibly the greatest musical ever ...\n Unless you are mentally ill or the most die ha...\n When I first saw it 9 years ago, when I was 9....\n Saw a screener of this before last year's Awar...\n Read Eric's review again. He perfectly describ...\n This is an immoral and reprehensible piece of ...\n This is the worst movie that I have ever seen....\n Lame rip-off of THE QUATERMASS XPERIMENT (1955...\n (This has been edited for space)<br /><br />Ch...\n The idea behind this movie was great. The stor...\n I watch them all.<br /><br />It's not better t...\n Dear God! I kept waiting for this movie to \"ge...\n First, let me start off by saying this film SO...\n Billy Crystal co-wrote, co-produced and stars ...\n I went to see this on the strength of Albert F...\n An astronaut gets lost in deep space and finds...\n This is a film that can make you want to see i...\n I have been wanting to see this since my Frenc...\n A CBS radio program entitled \"We the People\" a...\n I have not read the book that this was based u...\n Brilliant thriller, deserving far more fame, M...\n I saw this movie a fews years ago and was lite...\n I just watched this movie on Bravo! and it was...\n How nice to have a movie the entire family can...\n As a fan of Henriksen (I liked him in the \"Mil...\n In theory, films should be a form of entertain...\n Bela Lugosi is an evil botanist who sends brid...\n What the hell was this? I'll admit there were ...\n I have to say that this miniseries was the bes...\n doesn't mean this movie is good. i was really ...\n My roommate and I have another friend that wor...\n This movie seemed like it was put together ver...\n This review is for the extended cut of this mo...\n Detective Tony Rome (Frank Sinatra) returns to...\n Having been interested in Akhenaton for many y...\n This is an hilarious movie. One of the very be...\n Amicus made close to a good half dozen of thes...\n Let's start from this point: This is not a mov...\n This is the worst movie I have ever seen. The ...\n The somewhat-belligerent brother of a suicide ...\n I haven't had a chance to view the previous fi...\n My husband and I just got done watching this m...\n How did Mike Hammer live - in a penthouse with...\n Last year, I fell in love with the Tim Burton'...\n I was very impressed with what Eddie Monroe wa...\n This is a very unusual film in that the star w...\n Wasted is just that, a waste of time. MTV is c...\n I really think I should make my case and have ...\n I first saw Enchanted April about five years a...\n I'm a 53 year-old college professor. I went wi...\n In my Lit. class we've just finished the book,...\n This show has to be my favorite out of all the...\n This is going to be the most useless comment I...\n This is one of the movies of Dev Anand who gav...\n As an aging rocker, this movie mentions Heep a...\n Winchester 73 gets credit from many critics fo...\n I am sad to say that I disagree with other peo...\n Prison is not often brought up during conversa...\n Butch the peacemaker? Evidently. After the vio...\n like in so many movies of the past, you would ...\n I really wanted to write a title for this revi...\n I saw this film at a special screening. At fir...\n I saw this kung fu movie when I was a kid, and...\n ...And there were quite a few of these. <br />...\n Others have commented on the somewhat strange ...\n When I saw this in the cinema, I remember winc...\n De Palma's technique had hit its high maturity...\n Having read many of the comments here, I'm sur...\n Just got around to seeing Monster Man yesterda...\n I was very moved by the story and because I am...\n I have a 19-month old and got really tired of ...\n What great locations. A visual challenge to al...\n The Earth is destined to be no more thanks to ...\n Well, where do I start...<br /><br />As one of...\n Begotten is one of the most unique films I've ...\n Although this was a low budget film and clearl...\n Darr is a great movie! Shahrukh plays an obses...\n It would be a shame if Tommy Lee Jones and Rob...\n I love this movie. The cast were all terrific ...\n This is one of the unusual cases in which a mo...\n Not to be confused with the Resse Witherspoon ...\n A SHIRLEY TEMPLE Short Subject.<br /><br />It ...\n I liked this movie a lot. It really intrigued ...\n I felt obliged to watch this movie all the way...\n It's pretty evident that many of your nights w...\n George Saunders is a forger who steals a rare ...\n This is a movie about a black man buying a air...\n I've noticed how all the other reviews of this...\n This movie was an excellent acted, excellent d...\n Cheap, amateurish, unimaginative, exploitative...\n The cars in this movie are awesome. The acting...\n Who doesn't have unresolved issues with parent...\n Good animation, nice character design, and a l...\n A film like Crossfire puts another film that s...\n Warning Spoilers following. Superb recreation ...\n The club scenes in this film are extremely bel...\n This movie makes me think the others I've seen...\n I saw this film purely based on the fact that ...\n 15 Park Avenue, well the name mystifies initia...\n I was Stan in the movie \"Dreams Come True\". St...\n The movie starts good, it has a thing going fo...\n Lion King 1 1/2 is a very fun and addictive se...\n When this was released, I thought this was one...\n I'd give this film a 1/10. This film is devoid...\n I was so surprised when I saw this film so muc...\n I was greatly disappointed by the quality of t...\n I've tried to reconcile why so many bad review...\n WARNING: SPOILER,SPOILER,SPOILER!!!!<br /><br ...\n This is a great film with an amazing cast. Cri...\n Maya is a woman without any interests. She jus...\n This is a bad movie. Not one of the funny bad ...\n This is an excellent movie and I wish that the...\n This movie is simply not worth the time or mon...\n putting aside the \"i'm so sure\"s and \"totally ...\n It started out with an interesting premise. I ...\n A film that is so much a 30's Warners film in ...\n I got this DVD well over 2 years ago and only ...\n This episode of Buffy was one of my personal f...\n Bulletproof is quite clearly a disposable film...\n I think this movie was made as good as it coul...\n I gave this 4 stars because it has a lot of in...\n One of my all time favourite films, ever. Just...\n This is a really mediocre film in the vein of ...\n being a high school student,i have to take a h...\n This movie is good for entertainment purposes,...\n This movie has made me upset! When I think of ...\n Mickey Rourke hunts Diane Lane in Elmore Leona...\n \"Müllers Büro\" is a movie which many will watc...\n Peter Sollett has created an endearing portrai...\n The long list of \"big\" names in this flick (in...\n I love the Jurassic Park movies, they are thre...\n utterly useless... having been there, done tha...\n Wild Rebels is fun in a bad way, but also frus...\n I`ve seen this movie twice, both times on Cine...\n If this is someone's \"favorite\" movie, they ne...\n I concur with the other users comment. Hard to...\n I have just recently purchased collection one ...\n I've seen my share of Woody Allen's movies, an...\n Although the premise of the movie involves a m...\n I saw this movie, and the play, and I have to ...\n And nothing wrong in that! Heartily endorse th...\n I've seen this amusing little 'brit flick'many...\n I'm not sure this film could ever match the fi...\n Beautiful film, pure Cassavetes style. Gena Ro...\n The 20th animated Disney classic is often crit...\n I'm not going to say that this movie is horrib...\n Appalling, shallow, materialistic nonsense. Ho...\n A throwback to the \"old fashioned\" Westerns of...\n We sat through this movie thinking why is this...\n On the back burner for years (so it was report...\n **Could be considered some mild spoilers, but ...\n Better than average World War II-era \"who-dun-...\n I had high hopes for this movie. The theater m...\n I am not a big fan of Rajnikant in the first p...\n Truly a disgusting, vile film, with only a sma...\n Obabakoak is a bunch of short stories with an ...\n The entire civilized world by now knows that t...\n I'm a huge fan of war movies, and, as a Vietna...\n All right, here's the deal: if you're easily o...\n Saw this a couple times on the Sundance Channe...\n If you liked the first two films, then I'm sor...\n There was nothing remotely funny about this mo...\n I love this film, it is excellent and so funny...\n Darling Lili is a mixture of Perfection and Ma...\n Good grief! While I still maintain that Manos:...\n If you haven't figured out what is going to ha...\n First of all. I do not look down on Americans....\n The sort of \"little\" film which studios used t...\n I do not like Himesh Reshamiya. I do not like ...\n Even for a tired movie model as the nature vs....\n Ghillie a remake of the Telugu \"okkadu' is tha...\n The only reason I give it a 2 is that filmogra...\n This is a big step down after the surprisingly...\n A Vow to Cherish is a wonderful movie. It's ba...\n The title suggests that this movie is a sequel...\n please, future writers, producers, directors -...\n Once again, we are fortunate to see a gorgeous...\n Henry Fool surprised me. I didn't expect it to...\n So tell me - what serious boozer drinks Budwei...\n at first I had the reaction a lot of people le...\n One of my absolute favorite childhood films. T...\n It's this sort of movie that you try and imita...\n A lot of people give this movie a lot of crap,...\n Today I found \"They All Laughed\" on VHS on sal...\n It amazes me that someone would actually consi...\n Cedric Klapisch's movie L'AUBERGE ESPAGNOLE is...\n Hitchcock would be proud of this movie. Even w...\n i am working at a video store so i got to see ...\n Yes, this bizarre feature was written by John ...\n Absolutely one of the worst movies I have ever...\n \"Plots With A View\" of 2002 is a delightful li...\n I like many others saw this as a child and I l...\n I am an actor,producer, director and what i am...\n Good movies are original, some leave a message...\n Its incredible to me that the best rendition o...\n What a drawn out painful experience.<br /><br ...\n Well, I have not much to say about this film e...\n Ladies and Gentlemen, may we present the worst...\n saw this movie and totally loved it the charac...\n I waited for this movie to play in great antic...\n Have you ever wondered what would happen if a ...\n Since there have been so many reviews of this ...\n Alien was excellent. Many writers tried to cop...\n OK, this doesn't compare to the explosive temp...\n This movie was a masterpiece of human emotions...\n The man who gave us Splash, Cocoon and Parenth...\n There's hardly anything at all to recommend th...\n Now here is a film that if made in Australia w...\n My interest in Dorothy Stratten caused me to p...\n The first hour or so of the movie was mostly b...\n I feel as though I know these people and have ...\n Like a twisty country road, \"Tough Luck\" takes...\n Has aged really well - still thrilling and sus...\n They should have named this movie ...Blonde wo...\n This is one of the best movies. It is one of m...\n \"Bell Book and Candle\" was shown recently on c...\n It is very hard to come up with new informatio...\n This entire movie is worth watching just for t...\n Granted, this seems like a good idea. Steve Ma...\n Halloween 666 (1995) The producer's cut review...\n Definitely a \"must see\" for all fans of film n...\n I rented this movie on the merits of what the ...\n If you are a traveller, if there is a fire bur...\n What are Forest Whitaker and Clifton Collins J...\n There are plenty of comments already posted sa...\n I'm surprised about the many female voters who...\n Matthau and Lemmon are at their very best in t...\n This is an incredible film. I can't remember t...\n Just how bad? Well, compared to this movie, Ca...\n Some of the secondary actors try, really hard....\n This movie is simply bad. First of all the sto...\n Though not Hal Hartley's best work (my persona...\n I bought this (it was only $3, ok?) under the ...\n There is a bit of trivia which should be point...\n I enjoyed this movie very much. Kristy Swanson...\n 52-Pick Up never got the respect it should hav...\n Teenage Exorcist is one of those God-awful fil...\n Wenders was great with Million $ Hotel.I don't...\n As a low budget enterprise in which the filmma...\n Child 'Sexploitation' is one of the most serio...\n I will not say much about this film, because t...\n Whoa. In the Twin Cities, we have a station th...\n Although I am a fan of Heather Thomas and I ha...\n i am surprised so few have good words for this...\n Seeing this film, or rather set of films, in m...\n Not the film to see if you want to be intellec...\n This is one of the worst films I've seen for y...\n Wealthy widower Anthony Steffen (as Alan Cunni...\n This is the worst movie I have seen for years!...\n At a risk of sounding slightly sacrilegious, o...\n Ugh. Even the ever-popular Diane Lane could no...\n How Disney can you get? Preppy rich girls act ...\n If this film is examined closely, it's a bit s...\n I happen to run into this movie one night so I...\n I went to see this film because Joaquim de Alm...\n \"Yes, Georgio\" is a light-hearted and enjoyabl...\n This gem for gore lovers is extremely underrat...\n I had nothing to do before going out one night...\n ... but had to see just how bad it could get. ...\n The first 45 minutes of Dragon Fighter are ent...\n Dr. Bock teaches at the hospital and he is qui...\n I've been playing this movie incessantly this ...\n WOW!! Talk about a film that divides the audie...\n This movie tries to run away to the typical 'I...\n Homelessness (or Houselessness as George Carli...\n I a huge fan of when it comes to Doctor Who se...\n I went into this film expecting/hoping for a s...\n Looked forward to viewing this film and seeing...\n This was one of the worst films I can remember...\n I bought the DVD a long time ago and finally g...\n First of all let us discuss about the story. I...\n I try to catch this film each time it's shown ...\n I got to know ÆON back in the early 90s via te...\n I didn't expect much when I rented this movie ...\n This is like something I have NEVER seen befor...\n This off-beat horror movie seems to be getting...\n Armored<br /><br />The best part about driving...\n If this film becomes a holiday tradition I am ...\n This movie is supposed to be taking place in a...\n The movie was good. Really the only reason I w...\n I bought this adaptation because I really like...\n The gate to Hell has opened up under Moscow. A...\n Walter Matthau and George Burns just work so w...\n Warning Spoiler. . . I have to agree with you,...\n Brown of Harvard is a hard movie to pin down. ...\n I was skimming over the list of films of Richa...\n I remember watching American Gothic when it fi...\n . . . and that is only if you like the sight o...\n \"Coconut Fred's Fruit Salad Island!\" is a hila...\n The poet Carne disappears (didn´t he disappear...\n This movie, which I just discovered at the vid...\n How viewers react to this new \"adaption\" of Sh...\n As a fan of Wm. Faulkner since college, I was ...\n I just caught \"Farewell to the King\" on cable,...\n A great suspense movie with terrific slow came...\n Choose your fate: The terrible tykes of the fo...\n This movie was absolutely wonderful. The pre-p...\n A terrible amateur movie director (no, not Tod...\n This movie could have been a lot better than i...\n I'm surprised that no one yet has mentioned th...\n There is a DVD published in the UK in 2002 Cod...\n Don't watch this film while, or soon after, ea...\n This cheapo exploitation flick is some genuine...\n Walt Disney's 20th animated feature was the la...\n I first saw this movie at a video store and, b...\n I loved it, it was really gruesome and disgust...\n Citizen Kane....The Godfather Part II....D'Urv...\n OK. On the whole, this three part documentary ...\n Another Woo's masterpiece!<br /><br />This is ...\n I love this show as it action packed with adve...\n I saw the movie before I read the Michelle Mag...\n Some unsuspecting films carry a message that r...\n ROAD TO PERDITION can be summed up by Thomas N...\n The most important thing about this movie is t...\n I buy or at least watch every Seagall movie. H...\n Absolutely stunning, warmth for the head and t...\n I recently saw this film at a 3-D film festiva...\n Michael Stearns plays Mike, a sexually frustra...\n I saw this film as a kid about 30 years ago, a...\n Feels like an impressionistic film; if there i...\n Oh, how I laughed during those first couple of...\n Lackawanna Blues is a drama through and throug...\n San Francisco is a big city with great acting ...\n No Holds Barred is that movie that when you we...\n This movie stinks majorly. The only reason I g...\n This is probably one of the best Portuguese mo...\n Considering the big name cast and lavish produ...\n Hated it with all my being. Worst movie ever. ...\n There are two kinds of 1950s musicals. First y...\n This show is wonderful. It has some of the bes...\n Okay people, I have to agree with almost every...\n If Alien, Jurassic Park and countless other sc...\n I'd like to think myself as a fairly open mind...\n If you want to watch a movie and feel good abo...\n This is one particular Stooge short that actua...\n I can name only a few movies that I have seen ...\n when i first read about \"berlin am meer\" i did...\n I got this thing off the sci-fi shelf because ...\n waste of my life, .... the director should be ...\n A good x evil film with tastes of \"James Bond\"...\n There is a scene in this film at about the 42 ...\n A powerful \"real-tv\" movie. Very subversive an...\n This type of plot really does have a lot of po...\n At the end of my review of Cache, I wrote that...\n This series had potential, but I suppose the b...\n Independent film that would make Hollywood pro...\n Most of you out there really disliked this mov...\n Despite all the hoopla about THE TROUBLE WITH ...\n I will divide my review into following 5 categ...\n After seeing this film I felt sick to my stoma...\n This was one of my favorites as a child. My fa...\n I have to confess that I know some of those in...\n I purchased a DVD of this film for a dollar at...\n Excellent. Gritty and true portrayal of pionee...\n I was taken to this film by a friend and was s...\n \"Homeward Bound: The Incredible Journey\" is on...\n To review this movie, I without any doubt woul...\n Oy vey... Jurrasic Park got Corman-ized. As us...\n This film revolves around an Arabian leader (A...\n In his first go as a Hollywood director, Henry...\n After perusing the large amount of comments on...\n One of the few comedic Twilight Zones that's a...\n I was expecting a very funny movie. Instead, I...\n This movie is incredibly realistic and I feel ...\n 'What I Like About You' is definitely a show t...\n I am not an artistically inclined individual. ...\n -SPOILES- Lame south of the border adventure m...\n The turning point in \"The Matador\" comes about...\n Those who only remember the late Sir Peter Ust...\n Absolutely wonderful drama and Ros is top notc...\n The influence of Hal Hartley in Adrienne Shell...\n When in 1982, \"The Thing\" came out to theaters...\n Here's one you can watch with a straight face,...\n If you liked Lock, Stock and Two Smoking Barre...\n don't expect much from this film. In many ways...\n PROM NIGHT (2008)<br /><br />directed by: Nels...\n The is one of the worst spoofs I have ever see...\n A convict serving time comes forward to give t...\n Ayone who whines about how this movie was crap...\n Sex,Drugs,Rock & Roll is without a doubt the w...\n 36. THE HOSPITAL (comedy, 1971) A series of em...\n Our story: Two U.S. Navy deep sea divers searc...\n Definitely a movie for people who ask only to ...\n About your terrible movie copying Beethoven. A...\n Samuel Fuller is hardly one of America's great...\n I have to hold Barney drilling my head every d...\n Last weekend I bought this 'zombie movie' from...\n I often feel like Scrooge, slamming movies tha...\n Recap: Full moon. A creature, a huge werewolf,...\n I first heard about The Melancholy of Haruhi S...\n Well I've enjoy this movie, even though someti...\n When I first read Armistead Maupins story I wa...\n I waited until the 4th of July to write this b...\n This is a tongue in cheek movie from the very ...\n Robert Wagner is the evil boss of Digicron, a ...\n hello, looking for a movie for the family to w...\n An amazing piece of film that was well-conceiv...\n Damien O'Donnell has a good track record and i...\n Really, truly, abysmally, garishly, awful. But...\n As you can see, I loved the book so much I use...\n Is there anything that happens in this movie t...\n I was shocked and surprised by the negative re...\n I found this movie to be extremely delightful....\n Quirky, independent, theatrical, Christian Sla...\n Zoey 101 is basically about a girl named Zoey ...\n This movie is terrible, it was so difficult to...\n The only thing serious about this movie is the...\n 2005 was one of the best year for movies. We h...\n According to John Ford's lyrically shot, ficti...\n Where to start... If this movie had been a dar...\n Oh dear god. This was horrible. There is bad, ...\n Yes, bad acting isn't only one thing to mentio...\n I don't think that many films (especially come...\n One has to wonder if at any point in the produ...\n This time around, Blackadder is no longer roya...\n An awful B movie at best with video quality si...\n Now this is what I'd call a good horror. With ...\n This is a voice of a person, who just finished...\n This review is dedicated to the late Keith Moo...\n This film has some pretty gorey parts like a b...\n From the first scene, I was really excited. \"I...\n What if a platoon of G.I.'s from the Japanese ...\n Manipulative drama about a glamorous model (Ma...\n This all-but-ignored masterpiece is about the ...\n I thought the movie was a poor documentary. No...\n This movie is yet another in the long line of ...\n Don't bother trying to watch this terrible min...\n There is a bit of a spoiler below, which could...\n The film had many fundamental values of family...\n An ear-splitting movie, a quasi-old-fashioned ...\n A Murder investigation goes on back stage whil...\n Daft potboilers don't come much dafter than th...\n If you don't mind having your emotions toyed w...\n What is this!! its so bad. The animation looks...\n Redundant, but again the case. If you enjoy th...\n For only doing a few movies with his life the ...\n Tashan - the title itself explains the nature ...\n I was so happy to learn that Hari Om will fina...\n I still can't believe that Wes Craven was resp...\n I had my doubts about another love story where...\n I've been a Jennifer Connelly fan since Phenom...\n Warning: Does contain spoilers.<br /><br />Ope...\n I saw this film yesterday.. I rented the DVD f...\n I would reccomend this film to everyone. Not o...\n Recognizing the picture of the diner on the co...\n One hour, eight minutes and twelve seconds int...\n Caddyshack II is NOTHING compared to the origi...\n The youthful group in \"St. Elmo's Fire\" who ju...\n The plot of The Thinner is decidedly thin. And...\n American Pie has gone a long distance from the...\n The best movie about friendship! Especially be...\n Revolt of the Zombies has no redeeming feature...\n Hilariously inept - like \"She Wore A Yellow Ri...\n Oh man. If you want to give your internal Crow...\n This is an excellent, suspenseful, murder-myst...\n Brides are dying at the altar, and their corps...\n On first watching this film it is hard to know...\n The comments already left for this show are wa...\n Wow,this is in my opinion the best sitcom sinc...\n \"Ah Ritchie's made another gangster film with ...\n <br /><br />I saw The Glacier Fox in the theat...\n Would you be surprised if I told you this movi...\n This film was absolutely...ugh i can't find th...\n French Cinema sucks! Down with all these psych...\n In the 2nd of his Historical Martial Arts film...\n Sure, we all like bad movies at one time or an...\n A comedy that worked surprisingly well was the...\n This movie is one of the most provocative Jesu...\n This is one of the most ridiculous westerns th...\n This kind of \"inspirational\" saccharine is eno...\n True Love, I truly enjoyed and LOVED this movi...\n I had watched snippets from this as a kid but,...\n I play final fantasy 7, and this movie is EXCE...\n If you are under 13 or above 13 and pretty int...\n No wonder Pamela Springsteen gave up acting to...\n This has to be, by far, the absolute worst mov...\n 'Had Ned Kelly been born later he probably wou...\n \"Feast of All Saints?\" Where...? When...?<br /...\n I now that these days, some people wan't see a...\n Okay. I really tried to tap into the (so calle...\n Australian Fred Schepisi (A Cry in the Dark) d...\n This one is a great one! Robert De Niro and Cu...\n I don't really consider myself a conservative,...\n This is really good. Original ideas in the fil...\n Rajkumar Santoshi Without Any Doubt Has Direct...\n A poetic examination of the human condition pe...\n It's true that you always remember what you we...\n Oh, my. Oh, this is a *really* bad movie. The ...\n I was in my mid teens when I saw this movie, a...\n When Braveheart first came out, I was enthrall...\n The French either make pro-Marxist films or an...\n A gem of a British caper-comedy. Poor American...\n How this has not become a cult film I do not k...\n Skullduggery is a strange, strange film based ...\n Why is it that in the '50s and '60s, Italians ...\n One of the most magnificent movies ever made. ...\n I just caught \"Wild Rebels\" on one of the \"Mys...\n Spoilers: This movie has it's problems, but in...\n Thirty per cent of this movie appears to be th...\n The Dereks did seem to struggle to find rolls ...\n Uncompromising look at a suburb in 21st centur...\n This is not a GREAT movie as tho the cast (esp...\n I really hated this movie and it's the first m...\n This is indeed the film that popularized kung ...\n This game is the bomb and this is the 007 game...\n The unflappable William Powell. He is a joy to...\n What we have here is a downright brilliant pie...\n This is one of my favourite films, dating back...\n I have a feeling that the Warners Bros Depress...\n This is a novelty in Danish film. The mood is ...\n First of all this is one of the worst soft-cor...\n Beforehand Notification: I'm sure someone is g...\n It's the worst movie I've ever seen. The actio...\n Excellent writing and wild cast. The tech is p...\n Contains Major Spoilers, on the off chance you...\n Another Indian legend you never heard of befor...\n When I really began to be interested in movies...\n The movie follows the events of the novel \"Cel...\n If it weren't for the editing out of curse wor...\n I have seen The Running Man several times as I...\n A stuttering plot, uninteresting characters an...\n Yes, this movie is a real thief. It stole some...\n Whilst this is most definitely a well crafted ...\n <br /><br />I have to admit to enjoying bad mo...\n During World War II, two Byelorussian (Soviet ...\n 1904. The North African nation of Morocco is h...\n Gilmore Girls is a hilarious show with never e...\n A found tape about 3? guys having fun torturin...\n The Biggest one that bugs the hell out of me i...\n Where to start?? I think only three other film...\n Nothing about this movie stands out as either ...\n Quite unimpressive. The 'twists' are all prett...\n Bad actors, terrible script, totally unbelieva...\n I can't say I enjoyed this as much as \"The Big...\n God, what an awful thing ! Oliver Stone probab...\n Stars: Hayden Pantierre.<br /><br />There have...\n First, let's get it out of the way. . . yeah, ...\n Like those who listened to radio reports about...\n This is one of those movies where I just want ...\n Wow, what a great cast! Julia Roberts, John Cu...\n Nice movie with a great soundtrack which spans...\n I'd waited for some years before this movie fi...\n This movie has one or two slightly interesting...\n I can honestly tell you that this movie is the...\n Well here comes another,well,romantic comedy.....\n With the advent of the IMDb, this overlooked m...\n [WARNING: CONTAINS SPOILERS]<br /><br />Writte...\n What a terrible movie! It represents perfectly...\n This film's kind of like Conan the Barabarian,...\n This may just be the most nostalgic journey ba...\n The film had it moments, but was disappointing...\n Even MST3K couldn't make this painful, long, a...\n Square really landed this one. They didn't try...\n Watching The Wagonmaster is not likely to resu...\n This was the most unrealistic movie I ever see...\n A very great movie.<br /><br />A big love stor...\n I saw this \"movie\" partly because of the sheer...\n As a Westerner watching another culture's view...\n My nose is bent slightly out of shape as I wri...\n This is an interesting movie. I think it's ver...\n I could not watch more than 10 minutes of this...\n Okay,I had watched this movie when I was very ...\n I hadn't planned on seeing this movie, however...\n Yeah, that about sums it up. This movie was ho...\n Infamous horror films seldom measure up the hy...\n Although at first glance this movie looks like...\n There are not many films which I would describ...\n Soul Calibur has always been my favorite fight...\n Yes, I know that this movie is meant as a come...\n The original animated Dark Knight returns in t...\n If you asked me to pick the best acted movies ...\n Let me say at the outset that I'm not a very a...\n Wonderful film that mixes documentary and fict...\n It has been some years since I saw this, but r...\n Not really a big box office draw, but I was pl...\n This is another Sci-Fi channel original movie ...\n And that goes especially for lawyers & cops. P...\n In a lot of ways this film defines the essence...\n Children love dinosaurs. It's somewhat part of...\n Last week I watched a Royal Shakespeare Compan...\n I just love this film it totally rocks! Nicola...\n In the first transformation scene, what is the...\n I've seen this movie quite a few times and eac...\n Watching this I mainly noticed the ad placemen...\n I'm not tired to say this is one of the best p...\n Elvira Mistress Of The Dark (1988): Cassandra ...\n After two long, long opening skits, one of whi...\n This movie had lots of great actors and actres...\n Give director Stanley Tong of Jackie Chan's Su...\n Alexandr \"Sascha\" Luzhin (John Turturro) is a ...\n I bought this film on DVD despite the \"stale\" ...\n This Film was one that I have waited to see fo...\n In retrospect, the 1970s was a golden era for ...\n The name (Frau) of the main character is the G...\n Ah, the classic genre of 80s sex comedies. Thi...\n It's unbelievable but the fourth is better tha...\n Yes, said title line does actually appear in t...\n The script was VERY weak w/o enough character ...\n Pathetic... worse than a bad made-for-TV movie...\n Franco proves, once again, that he is the prin...\n Peter Cushing and Donald Pleasance are legenda...\n Please don't waste your time. This movie rehas...\n I have seen already fantastic stories, but the...\n That's pretty ridiculous, I hope many people a...\n Despite a small handful of nicely executed sce...\n (This review is based on the English language ...\n Saw the move while in Paris in May 2006 ... I ...\n I saw this recently on a cable channel. The mo...\n LCDR Tom Dodge, despite having a reputation am...\n What an awful adaptation. The worst part was t...\n The movie with its single set, minimal cast, a...\n This movie suffers from the fact that for year...\n The premise sucked me in, but it was clear abo...\n There was some good build up of suspense throu...\n Super Troopers was an instant classic. Club Dr...\n Yes, this review may contain spoilers, but you...\n Ordinarily, Anthony Mann made westerns with 't...\n The movie's storyline is pat and quaint. Two w...\n The Bloodsucker Leads the Dance - what a laugh...\n I thoroughly enjoyed this film, which in many ...\n Man, I really wanted to like these shows. I am...\n On the way back from IMC6 (San Jose, Californi...\n i completely agree with jamrom4.. this was the...\n JESSICA: A GHOST STORY is as the name implies ...\n I found the documentary entitled Fast, Cheap, ...\n I got encouraged to watch this film because I'...\n Just two comments....SEVEN years apart? Hardly...\n This Filmfour funded Sci-Fi movie is most defi...\n Any one who has seen Mel Gibson's The Passion ...\n When I was young, I was a big fan of the Naked...\n within about 5 minutes in to the film the firs...\n I must say that I really had no idea that I wa...\n My mother worked with Dennis L. Raider for ele...\n If you thought that the original from 83 was b...\n Haunted Boat sells itself as 'The Fog' meets '...\n I rented this type of \"soft core\" before, but ...\n I watched this movie based on the comments of ...\n I must say: out of all modern korean martial a...\n This is a movie that plays to everyone's emoti...\n \"Zu:The warriors from magic mountain\" was and ...\n One of my favorite shows in the 80's. After th...\n I picked up this movie with the intention of g...\n After we counted the use of the f word, oh, ab...\n A real head scratcher of a film by Bill Rebane...\n this movie is not porn, it was not meant to be...\n Komodo vs. Cobra starts as 'One Planet' enviro...\n THIS REVIEW MAY CONTAIN SPOILERS! The Decline ...\n I don't have much to say about this movie. It ...\n Remember the wooden, undramatic literary adapt...\n Obviously, the comments above that fawn over t...\n best movie ever!!!!! this movie broke my ribs ...\n Oh, how we have a misfire here; a film so bad ...\n The original movie ( dated 19??)did not show a...\n \"Hero and the Terror\" is a fairly dull thrille...\n Fellowe's drama about a couple's marriage whic...\n An angry boy who has tragically lost his paren...\n There is absolutely NO reason to waste your ti...\n As far as cinematography goes, this film was p...\n My favourite police series of all time turns t...\n Ok, maybe Posse can't compare to other popular...\n I must say that I am fairly disappointed by th...\n I truly enjoyed this film. It's rare to find a...\n Lucio Fulci made a lot of great films througho...\n This could have been a good biopic, but what a...\n The White Warrior is definitely one of,if not ...\n If the makers of Atlantis had something to say...\n Bruce Almighty is the story of Bruce Nolan, an...\n This film was hard to get a hold of, and when ...\n I just watched this film this morning and I fo...\n with this film being directed by Roger Avery a...\n Funny. Sad. Charming. These are all words that...\n Justin goes home to live with his strict, hard...\n The above line sums it up pretty good. The bes...\n I would label this show as horrendous if it we...\n Robert Mitchum stars as Clint Tollinger in thi...\n My favorite film this year. Great characters a...\n the film itself is absolutely brilliant, its t...\n I didn't expect much when I first saw the DVD ...\n this is more than a Sat. afternoon special. Ex...\n I have to say this is the worst movie that I h...\n This is the best of Shelley Duvall's high-qual...\n I am definitely a Burt Reynolds fan, but sorry...\n Let me say from the outset I'm not a particula...\n I have never read the Bradbury novel that this...\n This is a truly awful \"B\" movie. It is witless...\n I have to admit I am prejudiced about my vote ...\n This movie isn't even good enough for the $1 b...\n This is a spectacular production! I have seen ...\n I'm not going to bag this film for all the myr...\n This film was adapted from the well known sutr...\n Let me first state that I enjoy watching \"bad\"...\n Essentially a undistinguished B-movie that mys...\n When, oh when, will Hollyweird write a decent ...\n This movie was so incredibly boring, Michael J...\n This movie is so unreal. French movies like th...\n The Nest is really just another 'nature run am...\n Excellent endearing film with Peter Falk and P...\n Beware, My Lovely is an experimental studio fi...\n Marie Dressler carries this Depression-era dra...\n Cyclone is a piece of dreck with little redeem...\n \"Cinderella\" is one of the most beloved of all...\n **Might contain spoilers**<br /><br />Ok, lets...\n The premise of an African-American female Scro...\n It was evident until the final credits that th...\n I have very few to add to what all the other r...\n This is a very funny movie, easy to watch, tha...\n I'll give writer/director William Gove credit ...\n I'll give this movie two stars because it teem...\n \"Laugh, Clown Laugh\" released in 1928, stars t...\n I'm sorry guys, all who thought this film coul...\n Musically speaking Irving Berlin gave Fred Ast...\n I can never fathom why people take time to rev...\n I'm always surprised about how many times you'...\n Christian Propaganda...Lots of fear mongering....\n This DVD is missing its calling as a Heineken ...\n This incredibly formulaic flick from the \"Walk...\n Karen (Sarah Michelle Gellar), an exchange stu...\n This movie is pure guano. Mom always said if y...\n A group of young filmmakers with virtually no ...\n The title of my summary pretty much covers my ...\n I have never seen a comedy that was this much ...\n This is a great \"small\" film. I say \"small\" be...\n A very sensitive topic--15 y/o girl abandoned ...\n I'm glad some people liked this, but I hated t...\n What fun! Bucketfuls of good humor, terrific c...\n The Palestinian situation is fertile and as-ye...\n This film stands head and shoulders above the ...\n In many ways, the filmic career of independent...\n The distribution was good, the subject could h...\n This movie starts out hilarious from about the...\n \"This story is dedicated to women,\" according ...\n At the beginning of the film, you might double...\n This is the follow-up creation to Better Off D...\n If this film had a budget of 20 million I'd ju...\n If you want to see a movie about two utterly u...\n Good, boring or bad? It's good. Worth your mon...\n The movie seemed a little slow at first. But i...\n My rating refers to the first 4 Seasons of Sta...\n This movie should have never been made.<br /><...\n Every kid has that movie that he pops into VHS...\n Idea is great, spoiled big time by the judges....\n Although i don't like cricket at all and i hav...\n Late night on BBC1, was on my way to bed but c...\n Hi, I'm a friend of werewolf movies, and when ...\n I had noticed this movie had been on Cinemax a...\n Tenchu aka. Hitokiri- directed by Hideo Gosha ...\n Wow, did this episode start on a STOOOOOPID pr...\n This pile of sh!t is tied in my book as the wo...\n All the kids aged from 14-16 want to see this ...\n Claire Denis's movies seem to fall into one of...\n This film was on last week and although at tha...\n I agree with the other comments. I saw this mo...\n I have had the opportunity to catch this indep...\n Still the definitive program about the Second ...\n I have seen 'The Sea Within' today and I loved...\n As someone who has read the book, I can say th...\n I'm not a huge fan of Lucio Fulci's films. Mos...\n This film without doubt is one of the worst I ...\n Unlike another user who said this movie sucked...\n If you speak French or can put up with sub-tit...\n This is the first porn I've ever tried to revi...\n I have seen many many movies and this just tot...\n This film stands as one of the most amazing ex...\n A small town is attacked by a horde of bloodth...\n I can understand after watching this again for...\n Sadly it was misguided. This movie stunk from ...\n If you have beloved actors, Peter Falk, Rip To...\n I just can't understand the negative comments ...\n ROCK STAR / (2001) *** (out of four)<br /><br ...\n I just found out before writing this review th...\n Yes, it feels, and for the most part plays lik...\n I think this show is screamingly funny! It's n...\n Okay, so there is a front view of a Checker ta...\n The original Female Convict Scorpion is an all...\n 1 thing. this movie sucks BIG TIME..i was into...\n Everything is idyllic in Suburbia when the lit...\n Neil Simon's THE ODD COUPLE set up a model for...\n This astonishing waste of production money is ...\n This film is self indulgent rubbish. Watch thi...\n A plot that is dumb beyond belief. However, th...\n Excellent movie in many aspects. Vicente Arand...\n As a premise, this backwoods version of the De...\n Mickey Rourke ( who was once a famous movie st...\n In the literal sense....<br /><br />Reminds yo...\n 1. Aliens resemble plush toys and hand puppets...\n I would give this movie high marks for the cin...\n One of the worst movie I have seen in 2009 so ...\n i had no idea what this movies was about, it j...\n The folks at Aardman have done a cool, cute an...\n Another weak third-season entry, 'Is There In ...\n This movie is trash-poor. It has horrible tast...\n This movie \"Vampires: The Turning\" isn't even ...\n A new guard in in the armored truck gig is rec...\n For a really wonderful movie, you could also t...\n I saw the movie last night here at home, but I...\n DOes anyone know where or how i can get a copy...\n This show was not only great human drama but p...\n A young couple -- father Ben (solid Charles Ba...\n Absolutely nothing is redeeming about this tot...\n If you're a T-Rex/Marc Bolan fan, I recommend ...\n I was at the same screenwriters conference and...\n From the very opening scene you will notice ju...\n \"The Chipmunk Adventure\" is one of the greates...\n If you can watch a Bond film from 1983 that is...\n While in the barn of Kent Farm with Shelby wai...\n This was allocated to the fans as the \"winner ...\n This movie offers NOTHING to anyone. It doesn'...\n Che: Part One was a fascinating experiment, wh...\n As much as I dislike saying 'me too' in respon...\n Before seeing this, I was merely expecting ano...\n Wonderful romance comedy drama about an Italia...\n ***SPOILERS*** ***SPOILERS*** Released in 1956...\n An interesting movie with Jordana Brewster as ...\n [I saw this movie once late on a public tv sta...\n Duck_of_Death needs to watch this film again, ...\n I don't remember this film getting a cinema re...\n <br /><br />However, the ladies of all ages wi...\n This movie is not very good.In fact, it is the...\n This was the worst movie I've ever seen, yet i...\n A very hyped-up, slick, edgy reinterpretation....\n I had heard interesting critics on this movie....\n I bought this video on a throw-out table at th...\n First of all, nothing will ever compare to the...\n I don't hand out ten star ratings easily. A mo...\n Seriously, I don´t really get why people here ...\n It's been a while since I've watched this movi...\n I had never heard of this movie, but I like He...\n Teamo Supremo are three kids, consisting of th...\n I cannot believe how popular this show is. I c...\n After 10 viewings in 20 years I too think this...\n If like me, you enjoyed the first film \"Bruce ...\n This movie is painfully slow and has no plot. ...\n My siblings and I stumbled upon The Champions ...\n As a flying and war movie buff, this ranks at ...\n The only part lacking in this movie is Shue's ...\n This is an excellent little film about the lon...\n Scratch is a documentary about DJs and their a...\n The dreams of Karim Hussain are to be feared. ...\n Fearful Symmetry is a pleasant episode with a ...\n This is without a doubt one of the worst movie...\n I am a glutton for B-movies. I love the old Dr...\n Eddie Murphy Delirious is undoubtedly the funn...\n This is a really funny (and sexy) movie - that...\n I very much looked forward to this movie. Its ...\n Now more than ever we need Peace & Love in thi...\n If you enjoy Cleese & all the British 'Pythone...\n This story had a good plot to it about four el...\n This ingenious and innovate comedy packs many ...\n I saw Anatomy when it came out and recently bo...\n this could have been better,but it was alright...\n Based on the true story of two young Americans...\n Watching CBS's \"Surrender, Dorothy\", I kept wo...\n Dennis Quaid is tryin' hard to prove us that J...\n I saw The Merchant of Venice in London last we...\n Really!Here the French cinema hits rock bottom...\n \"Intensive Care\" by Dorna von Rouveroy is easi...\n One of the best 'guy' movies I've ever seen ha...\n This is film that was actually recommended to ...\n The small California town of Diablo is plagued...\n Southern Cross, written and directed by James ...\n Besides the fact that my list of favorite movi...\n What can be said about such a pathetic movie ?...\n Before I start my review here is a quick lesso...\n I know, I know, \"Plan 9 from Outer Space\" is t...\n When Jim Wynorski first announced he would be ...\n Too bad a couple of comments before me don't k...\n I tuned into this thing one night on a cable c...\n The movie opens upon Julian Sands, lying on hi...\n About twenty minutes into this movie, I was al...\n `Manna From Heaven' is a delightfully compelli...\n If I'd only seen the poster for Nurse Betty, I...\n This flick was even better then 'Waiting for G...\n I stopped short of giving \"Mr. Blandings Build...\n This self proclaimed \"very talented artist\" ha...\n This production was made in the middle 1980s, ...\n Without a doubt, the best Burt Reynolds film e...\n Plot = Melissa is a new girl in town, she's fi...\n This film is a very funny film. The violence i...\n The first time I saw this movie, it didn't see...\n This barely watchable film was a bit of an ord...\n A wasted effort. On the surface it's a typical...\n First of all, we know that Bruce Willis is a g...\n The basic plot of 'Marigold' boasts of a roman...\n Pet Sematary , though a nice 80's Horror movie...\n Sharp, well-made documentary focusing on Mardi...\n As an avid Gone With the Wind fan, I was disap...\n Just like last years event WWE New Years Revol...\n I was just looking at the 100 bottom movies ac...\n Attractive husband and wife writing team Rober...\n This film is mildly entertaining if one neglec...\n Raymond Burr stars as an attorney caught up in...\n Purchased this film for one dollar and figured...\n The story in this movie is fairly implausible ...\n I saw this with few expectations and absolutel...\n Note, I only saw approximately the last half o...\n What can possibly said about this movie other ...\n This one isn't even lively enough to be fun. S...\n Gary Busey is superb in this musical biography...\n Jean Dujardin gets Connery's mannerisms down p...\n First, I would like to apologize for my rating...\n - A newlywed couple move into the home of the ...\n I have seen so many bad reviews on Supervivien...\n This film is really bad. It maybe harsh, but i...\n Looking backwards to that year 2002 when \"Furi...\n One of the worst movies ever made... If you ca...\n Feeling Minnesota, directed by Steven Baigelma...\n THE CELL (2000) Rating: 8/10<br /><br />The Ce...\n This movie, despite its list of B, C, and D li...\n I loved this movie! It was all I could do not ...\n This was the worst movie I have ever seen Bill...\n Stranded in Space (1972) MST3K version - a ver...\n - After their sons are sentenced to life in pr...\n I love playing football and I thought this mov...\n This Showtime cable film features a talented c...\n This is a film i decided to go and see because...\n I happened to catch this supposed \"horror\" fli...\n This movie is my all time favorite!!! You real...\n waste of 1h45 this nasty little film is one to...\n I simply can't get over how brilliant the pair...\n Stuck in a hotel in Kuwait, I happily switched...\n Warning: This could spoil your movie. Watch it...\n Some of the background details of this story a...\n This is a pleasant film, even if the premise i...\n Quite what the producers of this appalling ada...\n There must have been some interesting conversa...\n I got stuck in traffic (I live in Sicily) on t...\n I've been trying to find out about this series...\n I don't know if this type of movie was as clic...\n I went to see this film out of curiosity, and ...\n Forest of the Damned starts out as five young ...\n I saw this DVD on sale and bought it without a...\n I don't know much about Tobe Hooper, or why he...\n Watching John Cassavetes film, Opening Night, ...\n A teen-aged girl gets the horse of her dreams ...\n I liked the understated character that Laura L...\n This film is probably the worst movie I have w...\n This is the kind of film one watches in gape-j...\n Sorry I couldn't disagree more ,with the last ...\n Next to the slasher films of the 1970s and 80s...\n This is the first Guinea Pig film from Japan a...\n Although there is melodrama at the center or r...\n \"True\" story of a late monster that appears wh...\n Even if you could get past the idea that these...\n I first saw this film over 25 years ago on Bri...\n I saw the MST3K version of \"Deathstalker III\" ...\n I have a question for the writers and producer...\n Ich will danke Herr Hacke für den Filme. Mein ...\n I saw this movie again as an assignment for my...\n Near the beginning, after it's been establishe...\n This is, without a doubt, one of my favorite C...\n Another wonderful Patterson book made into an ...\n I like Wes Studi & especially Adam Beach, but ...\n Olivier Assayas' film stars Asia Argento as a ...\n Is there a movement more intolerant and more j...\n Leland follows the story of Leland P. Fitzgera...\n then the second half of this movie is hard to ...\n VHS - I have watched this over and over and LO...\n This awful effort just goes to show what happe...\n I have always loved The Muppets. Though most c...\n Stan Laurel regarded PUTTING PANTS ON PHILIP a...\n Well - when the cameo appearance of Jason Mill...\n I'm not great at writing reviews, so I'll just...\n OK, anyone who could honestly say that this mo...\n Man, this movie sucked big time! I didn't even...\n I loved Long Way Round and wasn't even aware o...\n It couldn't.<br /><br />From the cutting dialo...\n On the heels of the well received and beloved ...\n Wow. The only people reviewing this positively...\n Van damme has done some great films over the y...\n I've been looking forward to seeing this film ...\n A River Runs Through It is based on the true s...\n 4 out of 10.<br /><br />This film was neither ...\n What a shame that a really competent director ...\n But I doubt many were running to see this movi...\n This show was Fabulous. It was intricate and w...\n I heard tell that Madonna was briefly consider...\n The plot was very thin, although the idea of n...\n Many times the description \"full of sound and ...\n Having watched all of the Star Trek TV series ...\n Although I'm a girl, thankfully I have a sense...\n I remember watching this film a while ago and ...\n To be honest, I did never read one of the comi...\n I dug this out and watched it tonight. I hones...\n This movie is a piece of the time in which it ...\n this film has its good points: hot chicks peop...\n I think it's two years ago since I have seen t...\n Pierce Brosnan has sipped his last Martini and...\n This is probably the only female Ninja movie e...\n I loved October Sky. The thing I loved most ha...\n I first saw this one when it was first shown, ...\n Latter Days is a very, VERY independent movie....\n I first saw this mini-series as a child and th...\n This is not an all-around terrible comedy, but...\n 1st watched 6/21/2001 - 2 out of 10(Dir-Emmanu...\n Spirit and Chaos is an artistic biopic of Miya...\n Wow...<br /><br />Reading through these commen...\n River Queen attempts to pack a complicated, sw...\n most of the bad reviews on this website blame ...\n This was a great anime. True the animation is ...\n This movie deals with the European ERASMUS exc...\n This movie is nothing short of a dark, gritty ...\n Movie about two Australian girls--Debbie (Nell...\n As a French, i found it very pleasant to be ab...\n This is a fine musical with a timeless score b...\n As kids movie it is great. For the family it j...\n Okay. Here's the thing. I've read through the ...\n Well I don't know much about anything, but I s...\n If you like bad movies (and you must to watch ...\n After watching this movie, I couldn't help but...\n I'd even say some shades of Hitchcock...this i...\n Well,I am a dancer so automatically I liked th...\n I don't often give one star reviews, but the c...\n I had mixed feelings for \"Les Valseuses\" (1974...\n If you are a fan of Zorro, Indiana Jones, or a...\n I purchased this movie at a car boot sale, so ...\n A woman who hates cats (Alice Krige) and her s...\n BBC's 3 hour adaptation of the novel by Sarah ...\n In order to stop her homosexual friend Albert ...\n I find it heart-warming and inspiring that the...\n In the wasteland that Hollywood Productions ha...\n I have done a lot of international travel, bot...\n Paul Reiser did a spectacular job in writing t...\n Wow. this movie is the voice of a climbing gen...\n Once a wise man from India once said, \"First t...\n I was very surprised to see that this movie ha...\n This is a great off-the-wall romantic comedy a...\n For people like me who were born long after th...\n I can tell you just how bad this movie is. I w...\n Basically, the movie might be one of the most ...\n I saw this film last night at a \"pre-Code\" fil...\n This is an amazing movie from 1936. Although t...\n I started to watch this show by accident, but ...\n Mel Torme and Victor Borge, in their younger y...\n This film for me and my wife is more entertain...\n The only reason I am commenting is because I f...\n William Shakespeare's The Merchant of Venice i...\n - Bad Stuff: This movie is real crap. Bad stun...\n I would not have known about this film if not ...\n WHITE CHICKS Hold on, why couldn't they have d...\n For comedy to work, there are many factors inv...\n Seeing as the world snooker championship final...\n Even longtime Shirley fans may be surprised by...\n I, too, found \"Oppenheimer\" to be a brilliant ...\n This film is stunningly beautiful. Goldsworthy...\n Anthony Quinn is a master at capturing our hea...\n This is the second film I've seen of Ida Lupin...\n It seems like more consideration has gone into...\n A gritty look at New York City and dock worker...\n *review may contain spoilers*<br /><br />predi...\n I saw this movie tonight in a preview showing ...\n The Bone Snatcher is about a group miners who ...\n I saw it tonight and fell asleep in the movie....\n While credited as a Tom and Jerry cartoon, thi...\n Snow White is in my opinion a bad movie on an ...\n <br /><br />What is left of Planet Earth is po...\n Hayao Miyazaki's magic continues with this abs...\n Michael Dudikoff stars as Joe Armstrong a mart...\n Masayuki Suo, who directed this fine film, is ...\n The synopsis of this movie led me to believe t...\n I saw this film without knowing much about it ...\n I don't usually write a comment when there are...\n This movie had the potential to be really good...\n Barbra Streisand's first television special wa...\n The promotions for \"Clubbed\" project a slick l...\n I can't get this flick off my brain. It's defi...\n I am surprised at IMDb's low rating of this mo...\n A humorous voyage into the normally somber fun...\n Man's Castle is set in one of those jerry buil...\n Janeane Garofalo has been very public in her d...\n This film really deserves more recognition tha...\n While there aren't any talking animals, big la...\n I don't know what that other guy was thinking....\n I am so excited that Greek is back! This seaso...\n I'm from Belgium and therefore my English writ...\n If you watched this film for the nudity (as I ...\n McConaughey in a horror/thriller? I had to see...\n There are several things wrong with this movie...\n I liked this a lot. <br /><br />The camera ang...\n It was a decent movie, I actually kind of enjo...\n This is a great horror film for people who don...\n i was looking forward to this, and to be hones...\n When I rented this movie I thought I was going...\n What about Scream Baby Scream is supposed to m...\n I recently viewed a copy of this (under the ti...\n The photography is accomplished, the acting is...\n Living in Edinburgh, and have a great thirst f...\n ONE DARK NIGHT is a highly overlooked and litt...\n After a quasi-Gothic, all-fruity music video, ...\n If you love drive-in cheeze from the early '70...\n This movie is about a very delicate argument a...\n This movie was made by Daiei Studios, known fo...\n <br /><br />Fourteen of the funniest minutes o...\n \"A wrong-doer is often a man that has left som...\n First off; I'm a dedicated fan of Modesty's, a...\n This has to be the funniest stand up comedy I ...\n Peter Lorre turns in one of his finest perform...\n My cable TV has what's called the Arts channel...\n I have copy of this on VHS, I think they (The ...\n I was actually fairly surprised to find out a ...\n I am a fan of bad horror films of the 1950s an...\n I absolutely love this movie! Evil Dead has NO...\n Vincent Cassel plays the part of Paul, an ex-c...\n This film is one of the best shorts I've ever ...\n I watched this movie only because I didn't wan...\n I got about halfway through this movie and was...\n First of all, let me say the I am LDS or rathe...\n At least one kind. Very human and moving. Not ...\n \"Indian burial ground\": If those three words a...\n Well, since it's called Porno Holocaust and di...\n I'm sorry but I didn't like this doc very much...\n I finally caught up to \"Starlight\" last night ...\n Movie Title - Tart<br /><br />Date of review -...\n Another Day - this movie requires you to watch...\n This did for crime what \"Not Another Teen Movi...\n I loved this movie. It is rare to get a glimps...\n Problems: 1) Although billed as \"a loving trib...\n This movie starts slow, then tapers off. After...\n Man, what a scam this turned out to be! Not be...\n Cassavetes was clearly an intelligent, sensiti...\n This is a good plot concept, so why-o-why is i...\n One of the better movies to come out of the 19...\n If any movie stands out extremely with the act...\n Four great stories from master Robert Bloch, a...\n I voted this a 10 out of 10 simply because it ...\n I am the guy who usually keeps opinions to him...\n This movie has it all: it is a thriller, a cha...\n Surprisingly good \"Mean Streets\"-type crime dr...\n I saw this film at SXSW with the director in a...\n First, let me mention the fact that, in spite ...\n With the mixed reviews this got I wasn't expec...\n The only reason I rented this movie was that V...\n It's hard to put your finger on this one. Basi...\n Fabulous film! Rented the DVD recently and was...\n I had just watched one episode of this program...\n This movie has some good lines, but watching D...\n My kid makes better videos than this! I feel r...\n This very peculiar setting of Wagner's last op...\n Well how was I suppose to know this was \"the\" ...\n Discovering something, the journey is so much ...\n The first question is: how many talentless idi...\n When thinking of the revelation that the main ...\n Although it isn't mentioned very often, \"Don't...\n This film doesn't have a very clear picture of...\n I only came here to check Terror Hospital for ...\n Raising victor Vargas is just a bad film. No a...\n This was one of my favorite series when I was ...\n **Warning! Mild Spoilers Ahead!**<br /><br />(...\n Currently, this film is listed on IMDb as the ...\n Sydney Lumet, although one of the oldest activ...\n In all honesty, this series is as much a class...\n My choice for greatest movie ever used to be L...\n At the time that this movie was made most hous...\n When viewing a movie as silly as 'Hot Rod,' on...\n I don't know what the makers of this film were...\n If my memory is correct, when this movie was r...\n The idea of making a film about the Beatles so...\n <br /><br />I first viewed this film shortly a...\n That is the answer. The question is: What is t...\n It should be against the law not to experience...\n I am always wary of taking too instant a disli...\n I had heard good things about this film and wa...\n From the opening dialog and scenes, I knew I k...\n This movie will tell you why Amitabh Bacchan i...\n The Twins Effect - Chinese Action/Comedy - (Ch...\n Terrible, boring zombie sequel is only margina...\n \"Piece is Cake\" is defeatist, revisionist hist...\n After having seen this show a few times; I am ...\n This movie is silly and very short of being a ...\n This show is absolutely fantastic. It provides...\n Okul\"The School\" is a result of a new trend in...\n Emma Thompson, Alan Rickman,Carla Gugino and G...\n I'm going to review the 2 films as a whole bec...\n In a variant of Sholay , Ram Gopal Verma ventu...\n This show is a show that is great for adults a...\n The penultimate episode of Star Trek's third s...\n Really don't care that no one on here likes th...\n I bought this film as I thought the cast was d...\n Screwball comedy about romantic mismatches in ...\n Who me? No, I'm not kidding. That's what it re...\n This was a fantastic movie about two people, o...\n Actually, this is a lie, Shrek 3-D was actuall...\n Busy Phillips put in one hell of a performance...\n Why can't there be better TV movies made I was...\n There is one adjective that describes everythi...\n My mother and I were on our way home from a tr...\n In New York, Andy Hanson (Philip Seymour Hoffm...\n If you need cheering up on a cold weekday even...\n I usually like these dumb/no brain activity mo...\n I like science-fiction movies and even, low-ra...\n My scalp still smarts from the burning coals h...\n The Second Renaissance, part 1 let's us show h...\n This was great. When I saw the Japanese versio...\n At the surface COOLEY HIGH is a snappy ensembl...\n \"Thunderbolt\" is probably Jackie Chan's worst ...\n Okay, there are a ton of reviews here, what ca...\n I shot this movie. I am very proud of the film...\n Jay Craven's criminally ignored film is a sobe...\n Being a bit of a connoisseur of garbage, I hav...\n As usual, Hollywood stereotyped EVERYONE in th...\n I recently watched Belle Epoque, thinking it m...\n In life, we first organize stones (Piedras in ...\n I put down this vehicle from Robert De Niro an...\n There are few films or movies I consider favor...\n 1936 was the most prolific year for Astaire an...\n \"Soylent Green\" is one of the best and most di...\n ... but the trouble of this production is that...\n And this is a great rock'n'roll movie in itsel...\n After visiting the Kimbell museum in Forth-Wor...\n I hope the people who made this movies read th...\n Bela Lugosi gets to play one of his rare good ...\n A low budget may be an excuse for poor acting ...\n A very sweet movie about a young Chinese man e...\n There aren't many good things to say at all ab...\n \"Tokyo Eyes\" tells of a 17 year old Japanese g...\n It felt like I watched this movie thousand tim...\n I'm not sure what Diane Silver was thinking wh...\n This started out to be a movie about the stree...\n I just watched this film 15 minutes ago, and I...\n Clearly an hilarious movie.<br /><br />It ange...\n This 1953 Sam Fuller movie contains some of hi...\n I loved this movie, I saw it when I was about ...\n Originally filmed in 1999 as a TV pilot, \"Mulh...\n This movie starts at A and never quite reaches...\n Looking for a REAL super bad movie? If you wan...\n Maybe not the most original way of telling a s...\n Although I have enjoyed Bing Crosby in other m...\n Necessarily ridiculous film version the litera...\n The goofy Griswalds win the T.V. game show \"pi...\n I picked this up because, having spent time in...\n Some films manage to survive almost on origina...\n Gunga Din (1939) is based on Rudyard Kipling's...\n Whatever you do, don't stop watching when you ...\n After reading the other tepid reviews and comm...\n Annie Rooney lives with her officer father and...\n Another fantastic offering from the Monkey Isl...\n With title like this you know you get pretty m...\n Yes, 2:37 is in some ways a rip off from Gus v...\n Motivations of the characters was completely u...\n I'm a huge Steven Seagal fan. Hell, I probably...\n Much praise has been lavished upon Farscape, b...\n I once had a conversation with my parents who ...\n when i saw commercials for this i was thinking...\n I caught Evening in the cinema with a lady fri...\n I never really knew who Robert Wuhl was before...\n Only reason I have seen 101 Dalmatians was its...\n I loved this film. A must see for any Rod Stei...\n This movie is not in anyway funny, it tries to...\n Just Cause takes some of the best parts of thr...\n This movie is entertaining enough due to an ex...\n So i consider myself pretty big into the anime...\n I love Aaron carter but even i expected pop st...\n ...but I regret having seen it. Since the rati...\n Barbara Streisand directs and stars in this ve...\n This movie starts off on the wrong foot and ne...\n I heard this movie was badThey even warned me...\n If you enjoy suspense this movie has it. The f...\n Water Lilies is a well-made first film from Fr...\n If you liked Paddy Chayevsky's \"Network\" you'l...\n In relative terms having watched a lot of disg...\n This film has very tight and well planned dial...\n \"A trio of treasure hunters is searching the W...\n (various spoilers follow)<br /><br />Gene Kell...\n Over the years some of them most enjoyable fil...\n In 1993, \"the visitors\" was an enormous hit in...\n Vonnegut's words are best experienced on paper...\n I watched this film sort of by accident, havin...\n I recently visited the Magic Kingdom as an adu...\n This HAS to be my guilty pleasure. I am a HUGE...\n I'm not usually given to hyperbole, but after ...\n Although this has to be the nadir of season si...\n I was fortunate to see a screening of this rem...\n This movie is proof you can't just go to a Red...\n Although normally my preference is not for rom...\n Silly movie is really, really funny. Yes, it's...\n One of my desires is to be a film-maker, and I...\n There is so much that is wrong with this film,...\n This movie deserved better It's great fun, has...\n The true story of Phoolan Devi who became a na...\n Turning Isherwood's somewhat dark and utterly ...\n I saw this film some years ago and promptly bo...\n Saw it yesterday night at the Midnight Slam of...\n This television show is stereotypical and far-...\n This movie is definitely one of the finest of ...\n I found this one to be more chaotic than the a...\n \"Scarface\" has a major cult following even now...\n So, this starts with at least an interesting a...\n while watching this movie I got sick. I have b...\n SPOILERS This is a gripping movie about grifte...\n Okay, I'll admit right up front that the Inki ...\n I am a new convert you might as well say. I bo...\n This movie is really nothing besides an admitt...\n If good intentions were enough to produce a go...\n I hadn't heard anything about this project unt...\n \"Steve\"(Chris Hoffman)gathers a group from hig...\n Truly a wonderful movie. Bruce Willis gives hi...\n Chucky's back...and it's about time! This time...\n Nightkill stars Robert Mitchum as a world-wear...\n Mute Witness is a modest, yet very solid thril...\n This Film was really eye-opening. I have seen ...\n It was a painful experience, the whole story i...\n WWE has produced some of the worst pay-per-vie...\n The time I wasted seeing this movie, I demand ...\n Like others, I have seen and studied most of t...\n \"Fungicide\" is quite possibly the most incompe...\n \"Her Cardboard Lover\" is Norma Shearer's last ...\n Uzumaki, which translates into \"spirals\", arri...\n Bog Creatures shows exactly what can happen wh...\n Having listened to and enjoyed Harvey Bernhard...\n Tim Taylor is an abusive acholoic drug addict....\n I have to admit that Holly was not on my watch...\n My one line summary should explain it all, but...\n Okay okay, I must admit, I do somewhat like Pe...\n I have always loved the ironic symbolism and b...\n I sat down to watch this movie with my friends...\n I don't think this movie was rated correctly. ...\n This film is really a big piece of trash tryin...\n I'm a Geena Davis fan for life because of this...\n A great 90's flick! Parker Posey is fabulous i...\n This fantasy was utter garbage. I thought Mich...\n Satan's Little Helper is one of the better B H...\n Cartoon-like special effects, horrible acting ...\n Much about this movie was beautiful. The actin...\n I will admit I didn't pay full attention to ev...\n From all the bad comments about this movie and...\n Eh. This is a popcorn movie, nothing more. I w...\n To say I was disappointed is an understatement...\n This picture for me scores very highly as it i...\n What I hoped for (or even expected) was the we...\n The turgid pace of this movie numbs us to any ...\n Not the best of the Lone Star series, but it m...\n I saw this movie with a friend who ran a marat...\n \"The Love Letter\" is a somewhat pleasant, very...\n My wife and I just finished watching Bûsu AKA ...\n May be spoilers so do not read if you do not w...\n it's a lovely movie ,it deeply reflects the Ch...\n IN COLD BLOOD has to be ranked as first-rate m...\n It's Die Hard meets Cliffhanger when a ski res...\n People like me will tear this movie apart. It'...\n I was totally surprised just how good this mov...\n The oddly-named Vera-Ellen was to movie dancin...\n Once I watched The Tenant and interpreted it a...\n Demi and Woody are married, but they're poor. ...\n The \"Wrinkle in Time\" book series is my favori...\n I've seen this film criticized with the statem...\n I must warn you, there are some spoilers in it...\n Not the best of the films to be watched nowada...\n I had intended to commemorate the 10th anniver...\n Actually, Goldie Hawn is from Washington (Tako...\n I was looking for a documentary of the same jo...\n For anyone with a moderate sensibility, a mode...\n I am stunned to discover the amount of fans th...\n \"The Invisible Ray\" is part science fiction an...\n The exclamation point in the title is appropri...\n Robert Carlyle excels again. The period was ca...\n This TV series is about a foolish and unconven...\n The movie was disappointing. The book was powe...\n So often these \"Lifetime\" flicks are one-dimen...\n Sometimes they get lucky and have a hit on the...\n Like most other people, I saw this movie on \"M...\n David Lynch's ninth full length feature film, ...\n Power rangers, the moronic merchandising telev...\n I have to agree with the previous author's com...\n Okay, I'm just going to disagree with the past...\n I was so let down by this film. The tag line w...\n Deep Shock plays out like a TV movie: a whole ...\n An absurdly hilarious and strikingly human tal...\n Every once in a long while a movie will come a...\n *SPOILERS*<br /><br />I'm sure back when this ...\n It's a bit unnerving when a studio declines to...\n I admit I had no idea what to expect before vi...\n This is a really fun, breezy, light hearted ro...\n Awful, awful, awful times a hundred still does...\n Old bat transforms to younger OK looking girl ...\n The basis for this dynamic docudrama is the tr...\n A slick romanticizing of the sexual exploitati...\n Well, when before I saw this film I really was...\n I understand that Roger Corman loves to do thi...\n It's often said that Tobe Hooper just struck l...\n Unbelievably close to real life feelings and e...\n It may be a remake of the 1937 film by Capra, ...\n Fiction film (it lists as based on a story tho...\n \"Crossfire\" is ostensibly a murder mystery but...\n This movie was recommended to me by the same p...\n Jeff Lieberman's \"Just Before Dawn\" is definit...\n An uninspired and undistinguished \"new\" Columb...\n The mystery here is why this delightful, small...\n Right on Colmyster. I totally concur with all ...\n As to be expected, there's a pretty good reaso...\n From an artistic standpoint, the movie fails t...\n My mom took me to see this movie when it came ...\n For all those people who believe the dialog is...\n I love most Jet Li movies (with the exception ...\n Preminger's adaptation of G. B. Shaw's ''Saint...\n I was on my way out one morning when I was che...\n This is a great movie, all 3 were. The last on...\n I saw this tonight with moderate expectations ...\n I should have known when I looked at the box i...\n I don't mind sequels; sometimes they're better...\n I watched this movie with big expectations. Th...\n This \"coming of age\" film deals with the exper...\n We see Thomas Edison, with a glowing smile on ...\n This production is an insult to the Stooges, e...\n This is a really obnoxious show. It is in fact...\n Valley Girl is the definitive 1980's movie wit...\n Dr. K(David H Hickey)has been trying to master...\n Another great movie by Costa-Gavras. It's a gr...\n Though structured totally different from the b...\n Handsome and dashing British airline pilot Geo...\n This film breeches the fine line between satir...\n Mardi Gras: Made in China provides a wonderful...\n But I can't say how I really feel about this p...\n From the opening scene aboard a crowded train ...\n I have seen a couple movies on eating disorder...\n H.O.T.S. is not for those that want hardcore p...\n THAT'S certainly a strange way to promote a fi...\n Aaah...The Thing.<br /><br />To see a horror f...\n Spend your time any other way, even housework ...\n I'm assuming the filmmakers heart was in the r...\n I occasionally let my kids watch this garbage ...\n Gerard Phillipe is absolutely perfect in this ...\n This Worldwide was the cheap man's version of ...\n One of my all-time favorite so-laughably-lousy...\n After reading only two of the comments herein,...\n A very funny east-meets-west film influenced b...\n The defining scene to this movie is when the f...\n This may well be the worst remake Hollywood ha...\n With all due respect to Joel Fabiani and Rosem...\n I saw this 1997 movie because I am a fan of Lo...\n Alright! A sci-fi/horror/action B-hybrid direc...\n I thought I had seen this movie, twice in fact...\n I usually like zombie movies, but this one was...\n Why is it that when a star reaches the top of ...\n OK, before I get into this, let's go ahead and...\n Oh wow, the character shares my name first nam...\n You know you're in trouble when the film your ...\n I saw this on DVD with subtitles, which made i...\n Well, This was my first IMAX experience so I w...\n So when Bob and Marion Boxletter see a guy at ...\n When I first saw this show, I was 9, and it ca...\n This show, Paranormal State, has an almost \"Bl...\n I actually didn't start watching the show unti...\n If another Hitler ever arises, it will be than...\n This movie has a look and feel of many \"Fresh\"...\n Kurosawa, fresh into color, losses sight of hi...\n The year 1983 saw a strange phenomenon; two ri...\n A Roger Corman rip-off assembled for what appe...\n \"Opposing Force [1986]\" wasn't as good as \"Dr....\n Any person with fairly good knowledge of Germa...\n Horrible. I see many user comments on how grea...\n I don't think this movie is for everyone. But ...\n I was hooked in by the premise that the show w...\n Engaging characters, nice animation, dynamite ...\n Ted V. Mikels's film Corpse Grinders 2 is 103 ...\n A bad movie, but with one reel that is worth s...\n Well now, here's the thing - for this movie to...\n Oh yes! Hollywood does remember how to use the...\n Really touching story of a recruitment camp in...\n I first watched the Walking Tall movies when I...\n i would never have thought that it would be po...\n Let's face it, there is no perfect production ...\n I finally found a version of Persuasion that I...\n I always liked this movie, I have seen it so m...\n Beautiful coming of age romance about an Engli...\n The Comic Strip featured actors from 'The Youn...\n just below the surface lies what? a simply awf...\n Okay so there were the odd hole in the plot yo...\n The production value of AvP2 can be described ...\n Brief marital infidelity comes back to haunt l...\n It takes an eternity for this typically over-s...\n Having loved Stephen King's novels and short s...\n A wonderfully quirky film with enough twists f...\n Did they use their entire budget paying the po...\n Matthew McConaughey is a mysterious man waitin...\n I'm not going to criticize the movie. There is...\n A high school track star falls dead after winn...\n I love horses and admire hand drawn animation,...\n This movie of 370 minutes was aired by the Ita...\n In my analysis of \"Trois couleurs: Blanc\" I wr...\n This production, build on real danish crime st...\n Was excited at the opening to hear part of \"Ch...\n What to say about a movie like Rock Star? A lo...\n I'm not a writer or an critic...I'M just a stu...\n This may very well be the worst movie I'll see...\n If this was the best dutch cinema had to offer...\n As a child I preferred the first Care Bear mov...\n Let's not kid ourselves, this atrocity is not ...\n The above seemed a much more appropriate title...\n This movie is god awful. Not one quality to th...\n A colleague from work told me to watch this mo...\n First of all, I think the casting and acting w...\n This movie has the most beautiful opening sequ...\n Well, where to begin? I guess I can start with...\n So I don't ruin it for you, I'll be very brief...\n I can only think of one reason this movie was ...\n Hellborn starts as a young psychiatric doctor ...\n It seems to me, as a recent film school gradua...\n Hard to imagine what they were thinking of whe...\n First of all, the actor they have to play Jesu...\n Artificial melodrama with a screenplay adapted...\n A good deal of running around. A badly conceiv...\n I must confess that I was completely shocked b...\n I waited for this movie to come out for a whil...\n To this day, Malcolm McLaren is telling anyone...\n I cannot believe it has been 25 yrs since I fi...\n The recent release of \"Mad Dog Morgan\" on Trom...\n Okay, it's too long and it's too satisfied wit...\n Unbelievable. \"Philosophy\". \"Depth\". \"Genius\"....\n Well, it's yet again a film that plays with yo...\n Erika Kohut is a woman with deep sexual proble...\n Charles Bronson has given the viewers lots of ...\n I'm so confused. I've been a huge Seagal fan f...\n I checked this movie out when it still had 6 v...\n Meatballs works its way into conversations, li...\n Back in the 1970s, WPIX ran \"The Adventures of...\n Crackerjack is another classic Aussie film. As...\n Although this movie doesn't have the darkness ...\n This movie was horrible. If it had never been ...\n I have to be honest, I really had a good time ...\n I like Steve Buscemi. I like his work very muc...\n Assy McGee is a show that you really have to b...\n This is another enjoyable and entertaining Hit...\n What You Need In the run up to 'What You Need'...\n My observations: vamp outfit at end is ravishi...\n I can't tell you how angry I was after seing t...\n On paper this looks a good film . Michael Cain...\n I will freely admit that I haven't seen the or...\n Ugh! Another one of those \"fooled by the cover...\n Oz is by far the best show ever to grace telev...\n We do not come across movies on brother-sister...\n Many other viewers are saying that this is not...\n Los Angeles, 1976. Indie film brat John Carpen...\n I love this show. I watch all the reruns every...\n Driving Lessons From the writer of the critica...\n Hi, Everyone, Oh, Boy... This one is a lulu. I...\n This is a wonderful film. The non-stop patter ...\n The Hanson brothers - Andy (apparently has his...\n I'm a fan of Zhang Yimou and finally found thi...\n Having seen this without knowing all the hoopl...\n This really should deserve a \"O\" rating, or ev...\n If you are an insomniac and you cant get anyth...\n This is a typical Sandra Bullock movie in whic...\n I happen to have bought one of those \"Legacy o...\n I'm sorry but this is just awful. I have told ...\n When \"Madame\" decides to let her cats inherit ...\n This movie resonated with me on two levels. As...\n I love this movie!!! Purple Rain came out the ...\n I own a vacation lake home not far from Plainf...\n Why does this piece of film have so many ravin...\n 1st watched 4/29/2007 - 4 out of 10(Dir-Mick G...\n Young Mr. Lincoln marks the first film of the ...\n Very silly movie, filled with stupid one liner...\n We watched this movie in my chemistry class, s...\n After having watched \"Guinea Pig\", two questio...\n A group of teens that have broken into a huge ...\n I remember watching this mini-series the first...\n From the offset, I knew this was going to be a...\n GOOD: Technomusic accompanying medieval swordp...\n I never thought an old cartoon would bring tea...\n This movie is just crap. Even though the direc...\n There was a time when Michael Jackson was reve...\n I thought it was comedy!! What a hoot! I can't...\n I seriously enjoy Dr Who.<br /><br />Seriously...\n I usually read reviews before I watch a movie....\n This film is a nightmare! The sensation you fe...\n This film is a hodge-podge of various idiotic ...\n I completely understand WHY this movie was mad...\n Potential viewers be warned, the current IMDb ...\n Black Scorpion is Roger Cormen's Batman. Which...\n I watched this film in a Singapore theatre yes...\n Diana Guzman is an angry young woman. Survivin...\n OK, first off there may be a SPOILER here sinc...\n In this sequel to the 1989 action-comedy class...\n The magnificent Greta Garbo is in top form in ...\n This is without doubt the worst movie i have e...\n Actually, the answer only occupies a tiny port...\n Quentin Tarantino once said that to succeed in...\n I saw this movie when I was a lot younger but ...\n I am sorry to rain on everybody's parade. Just...\n Homicide: The Movie proved to be a good wrap-u...\n This show is brilliantly hilarious! I started ...\n The worst movie i've ever seen. I still don't ...\n A total and absolute waste of time. Bad acting...\n In 'Hoot' Logan Lerman plays Roy Eberhardt, th...\n Growing up in the late 60s and 70s I could not...\n I was unsure of this movie before renting and ...\n Avoid this crap at all costs. Bad script, bad ...\n This is a extremely well-made film. The acting...\n Dewaana as a film goes through the usual clich...\n This was one of the worst movies I've ever see...\n This is definitely one of the most scary and s...\n This isn't cinema. It isn't talent. It isn't i...\n With a movie called \"Gayniggers from Outer Spa...\n Having read the other comment about this super...\n The 80's is largely considered the decade in w...\n Bruce Willis, as usual, does an excellent job....\n I found this to be an utter waste of time, eff...\n I was all in awe of the film looking at the pr...\n I caught this on local Mexican television at 2...\n It's somewhat telling that most of the great r...\n Steve Martin should quit trying to do remakes ...\n Forget all those people who tell you it's not ...\n Manmohan Desai made some entertaining though i...\n This movie sucked sooo bad, I couldn't even wa...\n One would make you believe that this game is a...\n I saw this movie on television as SCREAMERS an...\n The fifth collaboration between Marlene Dietri...\n This is a great movie! Most of us have seen Ju...\n This movie captures the essence of growing up ...\n Play Mystery Theater 3000 at home with your fr...\n It's not a terrible movie, really, and Glenn a...\n \"Ninja III\" is not quite as bad as \"Enter The ...\n A very silly movie, this starts with a soft po...\n A pity, nobody seems to know this little thril...\n Slither is a horror comedy that doesn't really...\n This was a great film in every sense of the wo...\n When I saw the Exterminators of year 3000 at f...\n This is a relatively watchable movie (+1). Aft...\n In order to describe what's seriously wrong wi...\n An evil land baron is holding up water to a gr...\n Okay, here is a really short review: this movi...\n For years I hesitated watching this movie. Now...\n At Beaverview Cheerleading Camp, the goody-goo...\n while mind of mencia could be summed up as not...\n Directed by Jim Wynorski (Chopping Mall, Retur...\n Well, I fear that my review of this special wo...\n This three stooges flick is at a tie with my o...\n A disturbing film, this, climaxing, as it does...\n This is an entertaining \"history\" of the FBI, ...\n Went to see this movie hoping to see some flas...\n Wow! After the first five minutes of watching ...\n When I started watching 3 of the episodes of t...\n When anyone comes into a film of this type of ...\n To be honest I watched this movie only because...\n Seriously! You've just got to see this movie t...\n Nothing could be more appealing than the idea ...\n OK, yes I know I'm a Philistine, and I have no...\n \"Lies\" tells about an affair between an 18 yea...\n Honestly, I was expecting to HATE this one, an...\n Directed by Brian De Palma and written by Oliv...\n The cinema of the 60s was as much as time of r...\n Although it has been off the air for 6 years n...\n Spooks is enjoyable trash, featuring some well...\n AG was an excellent presentation of drama, sus...\n \"Pitch Black\" was a complete shock to me when ...\n I've seen a lot of movies in my time and this ...\n This movie has everything going for it: Fully ...\n I've been studying Brazilian cinema since 2004...\n This was very good, except for two things whic...\n One wonders why this picture was made at all :...\n I saw this one at Sundance, and I can't figure...\n James Cameron's 'Titanic' is essentially a rom...\n one of the funnest mario's i've ever played. t...\n I started watching the show from the first sea...\n I have been searching for the right words to d...\n One of my favorite villains, the Evil Princess...\n I knew nothing about this film until I watched...\n Father and son communicate very little. IN fac...\n Bela Lugosi is a real enigma. In the early 193...\n Paul Reiser steps away from the standup comedy...\n 1st watched 7/19/2003 - 1 out of 10(Dir-Brad S...\n I won't waste a whole lot of time of this one ...\n I think this movie deserves a 10 out of 10 bec...\n 'Don't Look In the Basement' is so easy to kno...\n Vijay Krishna Acharya's 'Tashan' is a over-hyp...\n This review contains spoilers for those who ar...\n Probably encouraged by admirers of her much-be...\n Has anyone else noticed that this version is b...\n I saw this movie (unfortunately) because it wa...\n When I was young, I'd get up early every Satur...\n First off, the editing of this film consisted ...\n Watching Midnight Cowboy is like taking a mast...\n This film actually works from a fairly origina...\n This is not a film you can really analyse sepa...\n I watched it some years ago. I remembered it a...\n This movie was a monument to inept filmmaking ...\n I picked this film up at my local library. Hav...\n This movie was, as Homer Simpson would have pu...\n Oh my GOD. I bought this movie and...I...watch...\n How is bear´s paw, elephant´s trunk or monkey´...\n After seeing 'Break a Leg' in Vancouver at the...\n I'm sorry but I can't agree that this was a go...\n Apparently SHRUNKEN HEADS was the last movie t...\n First of all the movie, is an ingenious work o...\n Documentary starts in 1986 in NYC where black ...\n John Heder was absolutely horrendous in this m...\n A very strange and compelling movie. It's abou...\n The premise is interesting and the cast does t...\n When this play was first shown by the BBC over...\n This was only the second version of the classi...\n I just recently bought \"The Big Trail\" {1930}....\n I didn't expect a movie as good as \"In The Lin...\n Most people, when they think of expressionist ...\n This is available on a \"Drive In Double Featur...\n A bunch of American students and their tutor d...\n Christopher Guest is the master of the mockume...\n I must be honest, I like romantic comedies, bu...\n So many early British sound films that I've se...\n Geez! This is one of those movies that you thi...\n I watched this on Sky TV late one night, as I ...\n DON'T TORTURE A DUCKLING (Lucio Fulci - Italy ...\n It makes the actors in Hollyoaks look like the...\n A 'Wes Craven presents' movie from 1995, direc...\n The beginning was decent; the ending was alrig...\n Specks of white and various shapes, a beautifu...\n This horror movie, based on the novel of the s...\n Stanwyck at her villainous best, Robinson her ...\n \"The Bat People\" is a proud resident of the IM...\n The best Treasure Island ever made. They just ...\n Fair drama/love story movie that focuses on th...\n This movie rocked!!!! saw it at a screener a c...\n and anyone who watches this film will agree. T...\n It's like someone took a fantasy-type video ga...\n It seems that no matter how many films are mad...\n This is one of those strange, self-important, ...\n This was director von Stroheim's third effort ...\n Some movies seem to be made before we are read...\n And a perfect film to watch during the holiday...\n Everybody just seems to be raving about the su...\n TV churns out dozens of true-crime movies ever...\n Primal Species (1996, Dir. Jonathan Winfrey) <...\n Oh my God, I was so expecting something more e...\n As a low budget enterprise in which the filmma...\n This movie features an o.k. score and a not ba...\n Gordon Parks, the prolific black Life magazine...\n OK, it was a \"risky\" move to rent this flick, ...\n The movie uses motifs that could be plagiarize...\n Dear me... Peter Sellers was one of the most o...\n I am a huge Rupert Everett fan. I adore Kathy ...\n You know how sometimes you can watch a crappy ...\n Will some company PLEASE make a (good+) DVD of...\n Central Airport is the story of a pilot named ...\n Under no circumstances watch this film. It is ...\n Is this a good movie? No, certainly not. But f...\n Saw this movie on its release and have treasur...\n The fact that there are positive comments abou...\n I am still trying to determine whether the pre...\n I was impressed by the beautiful photography i...\n I found this film to be extremely homophobic.....\n Things to Come is that rarity of rarities, a f...\n This film isn't supposed to be funny, but it m...\n This movie is simply excellent. For some reaso...\n One of my favorite movies. I like horses, I li...\n I don't know anything of the writer's or the d...\n As a Michigander, I got the Michigan jokes. Ve...\n Contains Spoilers<br /><br />But if you weren'...\n You Are Alone is a beautiful, almost delicate ...\n I understand there was some conflict between L...\n Dead Man Walking, absolutely brilliant, in tea...\n Yay!... I think. It's hard to say. It's hard t...\n So, has it really come to this? Are we, as con...\n STAR RATING: ***** Saturday Night **** Friday ...\n This was just horrible the plot was just OK, b...\n Seriously, it had everything you could want in...\n If there has ever been a worse comedy than 'Gr...\n I've never seen a show with as much story, mys...\n Losing Control is another offering in the erot...\n I have long tried to understand why people lik...\n This was a wonderful little American propagand...\n If you're an average guy like me and enjoy goo...\n These days, writers, directors and producers a...\n LE GRAND VOYAGE is a gentle miracle of a film,...\n David Cronenberg, much like colleague David Ly...\n A lot of promise and nothing more. An all-star...\n In the 60's Cleveland television audiences cou...\n Acting is horrible. This film makes Fast and F...\n You'd hardly know that a year later MGM put No...\n I rented this movie hoping that it would provi...\n If you're in the middle of a ferocious war and...\n This film has little to recommend it, though t...\n I had just finished reading the book, and was ...\n I am embarrassed to say that I missed \"The Mot...\n \"The China Syndrome\" could not have been relea...\n If you like me enjoy films with plots and conv...\n I was going to say this was the worst gay-them...\n Back in the day, I remembered seeing dumb Nint...\n My roommates & I nearly shorted out our TV fro...\n Embarrassingly, I just watched this movie for ...\n i wasn't a fan of seeing this movie at all, bu...\n Monarch Cove was one of the best Friday night'...\n Watching \"Ossessione\" today -- more than 6 dec...\n Within the first 17 minutes of director Bradfo...\n Unfortunately for me, the first Busby Berkeley...\n Any film school student could made a film 1,00...\n Daddy's girls Florence Lawrence and Dorothy We...\n \"Terror in the Aisles\" might look like the ult...\n I love Dracula but this movie was a complete d...\n Hail Bollywood and men Directors !<br /><br />...\n This movie was over-shadowed by 'The Jackal' (...\n The 1978 adaptation had all the ingredients of...\n Me neither, but this flick is unfortunately on...\n I found this to be an entertaining account of ...\n Just because an event really happened doesn't ...\n I found this on the shelf and swooned with joy...\n The Beguiled was one of the few early Eastwood...\n Ahista Ahista is one little small brilliant. I...\n My first impression when I read the synopsis f...\n An excellent example of the spectacular Busby ...\n To soccer fans every where -- stay away from t...\n This is the best piece of film ever created It...\n What a brilliant film. I will admit it is very...\n This is a review of 'Freddy Mercury The Untold...\n \"The Mother\" is a weird low-budget movie, touc...\n A lecture over the life of the tormented magic...\n Only Connery could bring that particular style...\n (Possible ?? spoilers included, but nothing cr...\n Excellent episode movie ala Pulp Fiction. 7 da...\n My god how bad this is. Who is this impostor p...\n I don't usually comment on films since I am in...\n An interesting movie based on three of Jules V...\n When I saw the elaborate DVD box for this and ...\n Where to start? Some guy has some Indian pot t...\n Since my third or fourth viewing some time ago...\n So.. what can I tell you about this movie. If ...\n The cult movie for every true Russian intellec...\n This new movie by Jeskid is awesome! Check it ...\n Part of the movie's low rating is the emphasis...\n Before there was Crash, there was this interes...\n DON'T BELIEVE THE HYPE!<br /><br />I had to se...\n Alice(Claire Danes) and Darlene(Kate Beckinsal...\n A mean spirited, repulsive horror film about 3...\n The movie appeals to public due to charisma of...\n The arch title doesn't fit this gentle romanti...\n i think the team behind this film did a very g...\n It must be so difficult to tell a story where ...\n This is a hard show to watch. It's not somethi...\n wow! i watched the trailer for this one and th...\n This is an incredible movie that begins slowly...\n 'Presque Rien' ('Come Undone') is an earlier w...\n *Spoilers and extreme bashing lay ahead*<br />...\n I just got this movie for Christmas and have a...\n Despite a decent first season this series neve...\n Simply but imaginatively filmed studio-set per...\n When a rich tycoon is killed in a plane crash,...\n Kennedy-Miller could hardly have done a better...\n A handful of critics have awarded this film wi...\n The writer/director of this film obviously doe...\n Oh it really really is. I've seen films that I...\n I felt like I was watching an example of how n...\n \"Spin it!\"<br /><br />The 90s opened up with a...\n This amazing Oscar winner (4 in total) and Joh...\n I myself am a physics student, and I have to s...\n It's easy to see how this below-average screen...\n Oh dear, what a horrid movie.<br /><br />The p...\n A Scanner Darkly, Minority Report, Blade Runne...\n Audiences back in 1936 must have been stunned ...\n 'Apocalypse Now Redux', Francis Ford Coppola's...\n Identical twin sisters Mary-Kate and Ashley Ol...\n As a longtime admirer of the 2001 film \"Moulin...\n You, the Living (2007)<br /><br />Mordant. I'v...\n Julie Delpy stars in this horrific film about ...\n this movie is awesome. sort of. it dosent real...\n After a summer full of retreads and disappoint...\n This movie is not worth seeing, at least not a...\n A man and his wife are not getting along becau...\n Like a lot of stars of the big screen as their...\n This movie raises a number of pressing questio...\n I generally like this movie a lot. The animati...\n This film can not even be said to be bad for i...\n First, I would like to admit that Chokher Bali...\n Master director Ching Siu Tung's perhaps most ...\n I remember my dad hiring these episodes on vid...\n It seems like an exciting prospect, a modern-d...\n American war movie fans might be bored out of ...\n The actors play wonderfully, especially Kennet...\n Well, I have to disagree with Leonard Maltin o...\n Ring! Ring! Have-been horror directors hotline...\n When I first saw this DVD in a bargain bin for...\n What more can be said? I have not been this fa...\n To quote Clark Griswold (in the original Chris...\n This dumb comedy really does a good job of was...\n I don't like using the word \"awful\" to describ...\n This cheap and rubbish film is about a NASA te...\n An interesting look at the immigrant experienc...\n I rented this movie to get an easy, entertaine...\n I for one was very anxious to watch this movie...\n Before the WWF became cartoon with Hulk Hoagan...\n Why?!! This was an insipid, uninspired and emb...\n This is like a school video project and a prop...\n A chemist develops a fabric that never gets di...\n I was trying to work out why I enjoyed this fi...\n \"And the time came when the risk to remain tig...\n I'm a fan of B grade 80s films in which the he...\n Robert Taylor definitely showed himself to be ...\n When I first heard about the show, I heard a l...\n Original Movie lovers can actually love this s...\n I think I would probably not hate this movie i...\n \"Witchery\" might just be the most incoherent a...\n This is the Neil Simon piece of work that got ...\n Wow. I LOVED the whole series, and am shocked ...\n This movie is bad. Really bad. So bad it made ...\n I, being a fan of Rupert Grint, rented this fi...\n I'm disappointed that Reiser (who wrote the fi...\n Sorry to disagree with you, but I found the DK...\n It is sad that Schwarzenegger was the best thi...\n just watched it, me and my better half could n...\n I'm sure this is a show no one is that familia...\n The first few minutes of this movie don't do i...\n Dream Quest was a surprisingly good movie. The...\n WOW! Pretty terrible stuff. The Richard Burton...\n It's been a long time since I saw this mini-se...\n The basic story idea of ENCHANTED APRIL is exc...\n Man were do I start,everything about this Cart...\n It's about jealousy, it's about racism, it's a...\n they (dueringer, dorfer) are good stand-up com...\n I remember seeing this on TV in the late 70s -...\n To experience Head you really need to understa...\n I'm a fan of Judy Garland, Vincente Minnelli, ...\n \"Mr. Harvey Lights a Candle\" is anchored by a ...\n Della Myers (Kim Basinger) is an upper-class h...\n I hired this movie expecting a few laughs, hop...\n I bought a set of 4 DVDs for 10 bucks at my lo...\n I am still trying to figure out what the targe...\n For those not in the know, the Asterix books a...\n What's this? A Canadian produced zombie flick ...\n The full title of this film is 'May you be in ...\n This picks up about a year after the events in...\n Simply well written, directed and acted... Woo...\n Well OK, I watched this movie a little over 2 ...\n Here's an interesting little movie that strict...\n I saw this movie for the first time when Quent...\n I saw this Hallmark television movie when it o...\n It's not my fault. My girlfriend made me watch...\n With a humor that would appeal to an exclusive...\n Never viewed this film until recently on TCM a...\n \"Back of Beyond\" takes place at a dive diner/g...\n While the new Pride & Prejudice film is gorgeo...\n Michael Is King. This film contains some of th...\n This is a very exciting and romantic film. I h...\n Well, maybe not immediately before the Rodney ...\n The Slackers as titled in this movie are three...\n The Angry Red Planet (Quickie Review) <br /><b...\n A real let down, the novel is such a brilliant...\n I was very skeptical about sacrificing my prec...\n Three sergeants in the British army stationed ...\n If anyone ever assembles a compendium on moder...\n I had such high hopes for this film because I ...\n Well, I generally like Iranian movies, and aft...\n STAR RATING: ***** Saturday Night **** Friday ...\n Dog days is one of most accurate films i've ev...\n William Hurt may not be an American matinee id...\n There can be no denying that Hak Se Wui (Elect...\n Not all, but most of this story is Buster bein...\n Sky Captain is possibly the best awful movie I...\n Anthony Wong stars in both this and the origin...\n Seven Pounds, this was the movie where I was j...\n \"A lot of the films I've made probably could h...\n Summary- This game is the best Spider-Man to h...\n Technically abominable (with audible \"pops\" be...\n i really love this movie , i saw it for the fi...\n What else can you say about this movie,except ...\n I never thought I would absolutly hate an Arno...\n I know sometimes its really really corny... Bu...\n This series continues to frustrate and annoy. ...\n Now I get it. The title refers to each audienc...\n It's important to keep in mind the real meanin...\n In what is a truly diverse cast, this show hit...\n A handful of nubile young college sorority sis...\n This is the episode that probably most closely...\n During the whole Pirates of The Caribbean Tril...\n This terrible moovie is fun on many levels - t...\n Once again, I've been duped by seemingly intel...\n As has been well documented by previous poster...\n ... mainly because Ju-on 2 boasts an outrageou...\n Watching \"Kroko\" I would have liked to leave t...\n My children watch the show everyday that its o...\n Trio's vignettes were insightful and quite enj...\n On a flight back from London, I watched She's ...\n This is one of those films that explore the cu...\n Trying to catch a serial killer, did they ever...\n Pretty twisted Horror film, that has a few goo...\n This is one of may all-time favourite films. P...\n I think that this film was one of Kurt Russels...\n i see hundreds of student films- this is tops....\n Wow, what a total let down! The fact people th...\n A brilliant Russian émigré devises the Stanis...\n The movie \" Inhabited\" is about a family of fo...\n Okay, this film is about Bedknobs and Broomsti...\n This film had a great cast going for it: Chris...\n ... And it's a not very good documentary eithe...\n This is another of Eastwood's many movies mixi...\n This British film is truly awful, and it's har...\n This music is totally out of touch with the fi...\n \"Written on the Wind\" is a Douglas Sirk's melo...\n Now this is the sort of film we used to get we...\n If I ever write movies or make them, i would w...\n There are some movies that are loved by almost...\n During WW2 in the Philipines, Japanese soldier...\n This film had such promise!! What a great idea...\n You can't really blame the movie maker for glo...\n I think this TV film was first aired the same ...\n Absence of a GOOD PLOT, absence of decent ACTI...\n I recall seeing this movie as a kid. I don't r...\n My only minor quibble with the film I grew up ...\n This may actually the finest film of 1999. No ...\n Dull, flatly-directed \"comedy\" has zero laughs...\n Not only is this a great African-American clas...\n This is a great movie that I don't think gets ...\n Burt Reynold's Direct's and star's in this gre...\n 1st watched 11/07/2004 - 1 out of 10(Dir-Jon K...\n This film shows up on the premium cable channe...\n As a child growing up in the Sydney of the 195...\n For me, \"Late Chrysanthemums\" was interesting ...\n An interesting comedy, taking place on a train...\n Can A-Pix ever, ever, ever do anything right? ...\n I really think that this movie is great, perso...\n I'm a bit conflicted over this. The show is on...\n Here's another movie that should be loaded int...\n \"Balance of Terror\" is still one of the best S...\n I've watched this movie a second time to try t...\n \"Crossfire\" is remembered not so much for the ...\n Having not seen this film in about 20 years I ...\n The opening credits are pure poetry and I have...\n Ivan Reitman is something of a savior. The mos...\n I don't know about the rest of the viewers of ...\n I didn't have HUGE expectations for this film ...\n I remember watching \"Gung Ho\" as a child with ...\n Not really worth a review, but I suppose it's ...\n if you're a fan of the original ten commandmen...\n I'd always wanted David Duchovney to go into t...\n SUcks. That's all I got to say about this sorr...\n Made and released at the time when the interne...\n Normally BBC productions of Jane Austen are pr...\n I love this film 'Spring and port wine'. I was...\n \"People stranded in a country house during a s...\n This movie is a gay love story disguised as a ...\n If you read the book by Carl Hiaasen, the movi...\n Only saw this movie late last night. I remembe...\n I have always been a fan of the show so I'll a...\n Korean cinema has the ability to turn genres o...\n The daughter's words are poetry: \"I can't go o...\n I quite enjoyed this movie for two reasons. Th...\n Lesbian vampire film about a couple on holiday...\n As far as I can tell you, in spite of earlier ...\n \"The Tenant\" is Roman Polanski's greatest film...\n \"Direct-to-video\" is a phrase that never sound...\n I was in second grade, 12 years ago. I remembe...\n A group of hunters track down a werewolf, kill...\n Across the country and especially in the polit...\n I am a big fan of Stephen King's work, and thi...\n I just saw it at an advance screening I haven'...\n Anton Newcombe makes the film and he is the ma...\n I must admit, when I first began watching this...\n Loaded with fine actors, I expected much more ...\n Hercules: The TV- Movie Hercules - A very twis...\n This one is a cut above the usual softcore T&A...\n I don't know what the Oscar voters saw in this...\n Graphically, it is the same game as the first ...\n Yes, the first \"Howling\" was a classic. A rath...\n First, I rated this movie 10/10. To me, it's s...\n The movie starts with a pair of campers, a man...\n This is one of the greatest sports movies ever...\n I've Seen The Beginning Of The Muppet Movie, B...\n Verhoeven's movie was utter and complete garba...\n On second viewing of this movie, I like it eve...\n The first two hours of the televised version a...\n I like the phrase \"British post war suburban p...\n This is such a crappy movie I have no idea how...\n I thought it was a New-York located movie: wro...\n This is one of Jackies best films that is him ...\n This is the 2nd time I've seen this movie in a...\n The Minion is about... well, a minion. A serva...\n Claire Denis' debut is both a brave and self-a...\n We, as a family, were so delighted with 'The L...\n \"Whipped\" is one of the most awful films of al...\n A noble effort, I guess, but ultimately a poor...\n Before we start, may I say I hope you've alrea...\n I remember flipping through channels on HBO an...\n One of our all time family favorites. When we ...\n As there was nothing wrong with the acting etc...\n Well to do American divorcée with more money t...\n \"Escape from Hell\" is not made with enough art...\n this movie makes me laugh by even just thinkin...\n As a long-time fan of Superman from the comics...\n If you appreciate the renaissance in Asian hor...\n After seeing Big Fat Liar, I think Jason learn...\n This movie is all about entertainment. Imagine...\n Hidden Frontier is a fan made show, in the wor...\n In one of the many Bugs Bunny-Daffy Duck carto...\n I am always so frustrated that the majority of...\n I saw this movie in the early 70's when I was ...\n Anyone who watched \"Alien vs Predator\" must've...\n OK, don't let my summary fool you. This movie ...\n After hearing that some of the people behind t...\n I am awed by actress Bobbie Phillips and her s...\n I found the movie at my local video store and ...\n This movie is on cable sporadically, and I nev...\n I've seen this movie n I can say that this is ...\n Cowboys and Indians is an excellent film. The ...\n BEGIN SPOILER: Fitfully funny and memorable fo...\n I had high expectations of this movie (the tit...\n I've seen hundreds of silent movies. Some will...\n It's the Sooooouullltakaaaa!<br /><br />Wow. W...\n My girlfriend and I were stunned by how bad th...\n Of the three remakes on W. Somerset Maughan's ...\n ---what happened to these unlikeable people. A...\n Again Stacy Peralta is true first to the peopl...\n This movie can be interpreted on many differen...\n This picture's following will only grow as tim...\n Unfortunately, the realism is boring. This mov...\n Besides all of the technical mistakes ....<br ...\n Hallelujah!!!! Finally, a true Colombian film...\n So totally unique and entertaining! Another gr...\n There is something about Pet Sematary that I n...\n What a great actor to have in such an awful st...\n there is one of the best movies directed by an...\n It was a serious attempt to show the developin...\n On June 14 1905, during the Russian Revolution...\n Once again I have seen a movie made by people ...\n Despite the solid performance of Penelope Ann ...\n Dramatic license - some hate it, though it is ...\n I think that Mario Van Peebles movie Posse is ...\n There aren't enough gay-themed movies and ther...\n Despite what the title may imply, \"Pigs Is Pig...\n Some people say the pace of this film is a lit...\n I'm not one of those folks who bemoans everyti...\n I was so excited and hyped up about watching t...\n Rarely have I witnessed such a gratuitous wast...\n STAR RATING: ***** Saturday Night **** Friday ...\n I have seen cheesy kung fu fight films. Living...\n A group of obnoxious teens go to a former fune...\n First thing I noticed in this movie of course,...\n I remember when this film was up for the Acade...\n Not only do I think this was the best film of ...\n (WARNING - CONTAINS MILD SPOILER) A movie almo...\n To sum it up in a nutshell, this film was disa...\n If you see the title \"2069 A Sex Odyssey\" in t...\n Mickey Rourke is enjoying a renaissance at the...\n Whatever the producer was going for, he missed...\n <br /><br />Her Excellency Madam Shabana Azmi ...\n This film is the worst film, but it ranks very...\n my friends and I are always on the lookout for...\n *WARNING* Contains MANY SPOILERS!<br /><br />L...\n I love how everyone treats this show like it w...\n I cannot believe I actually sat through the wh...\n I found Tremors 4:The Legend Begins, to be dul...\n To preface my remarks on the film, I know the ...\n One of the commentators on the subject of Lil'...\n I was forced to read this sappy \"love story\" b...\n this movie is, despite its \"independent\" statu...\n This collection of eleven short stories in one...\n Miserable film. Not even to be compared in one...\n The Japanese have probably the most sadistic m...\n So this guy named George is sitting home alone...\n It was tough watching Harrison Ford obsessing ...\n You're waiting to see if the remake is better ...\n John Rivers' life as an architect and family m...\n Without question, the worst film I've seen for...\n We bought the DVD set of \"Es war einmal das Le...\n Never having seen an Oliver Stone film before,...\n Writer/Director/Co-Star Adam Jones is headed f...\n Let me start of by saying that I never wanted ...\n i am an avid ff7 fan, for instance i have the ...\n This was truly a deeply moving movie in every ...\n I was ready for a Crouching Tiger style movie ...\n First off, the title character is not even the...\n Gordon Scott with his well coiffed hair, hourg...\n You don't need to read this review.<br /><br /...\n The soul of an ancient mummy is transferred to...\n Endearingly silly anime, only six episodes in ...\n The movie starts off relatively well and seems...\n this movie was rather awful Vipul Shah's last ...\n Now out of all the shark movies I've seen, thi...\n When naïve young Eddie Hatch, a window dresser...\n The plot of \"In the Mood for Love\" is simple e...\n Sergeant Ryker is accused of being a traitor d...\n What kind of a documentary about a musician fa...\n I don't get this. The movie obviously has a pr...\n by saying that,I mean that this is not a well ...\n This is a film by Oshima, the director of the ...\n In the groovy mid 70's a scruffy bunch of bras...\n This is an anti-Serb propaganda film made for ...\n This is one worth watching, although it is som...\n This film is the worst excuse for a motion pic...\n Pointless boring film with charismatic Mercuri...\n I wanted to like this one - the situation was ...\n Director Vincenzo Natali's Cypher is a complex...\n Turgid dialogue, feeble characterization - Har...\n Joe Don's opening line says everything about t...\n This is a typical late Universal Horror flick:...\n The Ramones, whom I consider the founders of m...\n The Camals Are Coming is a rather disappointin...\n It is in the opinion of this reviewer that the...\n \"Nada\" was the most inadequate follow-up to \"L...\n A DAMN GOOD MOVIE! One that is seriously under...\n Well done melodrama that tells the story of Sa...\n This is not really a proper review since I did...\n All y'all hatin' on the fact you'd probably ne...\n I have to admit I was deceived by the title an...\n While the original titillates the intellect, t...\n A less-than-subtle poke at the beliefs and tea...\n I saw this movie on mystery science theater wh...\n I was a huge \"SNL\" fan back in the days of Che...\n Style over substance. But what a style it is. ...\n If, unlike some of the commenters here, you ar...\n along the history of cinema, there's been a fe...\n Firstly, I'll admit I haven't seen Vampires: L...\n I saw this movie when it aired on the WB and f...\n This is my all time favourite movie ever!!!<br...\n This movie moves and inspire you, it's like yo...\n When many people say it's the \"worst movie I'v...\n I cannot begin to describe how amazing this mo...\n In the process of trying to establish the audi...\n this film is terrible. The characters are comp...\n Young Mr.Lincoln is a poetic,beautiful film th...\n Holden and Jones SIZZLE in this movie, but not...\n In the final days of the year 1999, most every...\n Connery climbs aboard the Moore buffoon train ...\n This series and Elon Gold were being HYPED as ...\n This movie is about a group of people who are ...\n I've seen both movies and I saw without a doub...\n If you are the sort of person who can get a ki...\n Famous as the British film so bad it had to be...\n MY NAME IS JULIA ROSS is a mesmerizing 1945 B ...\n I bet you Gene Simmons and Vincent Pastore neg...\n That was one of the lines in a trailer about t...\n This was a hit in the South By Southwest (SXSW...\n People may say I am harsh but I can't help it....\n Man, the '90's really were an horrible decade ...\n I saw this series in 1999 in London TV and was...\n On the way home from a day at the beach, four ...\n I heard legends about this \"film\" (quotes used...\n I checked this out for free at the library, an...\n I'm sick of people whining about Ewoks! True, ...\n I really like Traci Lords. She may not be the ...\n Low budget horror movie. If you don't raise yo...\n I was really horrified by this eerie movie. Wh...\n This was a truly bad film. The character \"Cole...\n TANDEM is an odd slice in the Japanese pink ge...\n I had the pleasure of seeing this film at the ...\n Okay, let's start off by saying this film is n...\n I was very curious about Anatomy (aka Anatomie...\n John Leguizamo is a great comedian and storyte...\n By 1945, and after a string of solid WWII prop...\n I really wanted to like this movie. I absolute...\n Acting 10, Script 1. \"Hurlyburly\" is from that...\n This movie accurately portrays the struggle li...\n It seems that Dee Snyder ran out of ideas half...\n Phantom of the Mall is a film that fits best i...\n Makes the fourth theatrical release (the one N...\n Monstrous mother-son-duo (Alice Krige and Bria...\n I was a 20 year old college student living wit...\n Just watched this and it was amazing. Was in s...\n This is the one major problem with this film, ...\n This Film is the One which you fall in love wi...\n Hilarious film, I had a great time watching it...\n This is by far the best stand-up routine I hav...\n This movie changed my life! Hogan's performanc...\n I read some comments on the internet about thi...\n *Spoilers - sorry!* The first word that sprung...\n This film is an excellent military movie. It m...\n I've always been a fan of Jackass, as well as ...\n A lot of other reviewers here, including many ...\n 1 let's suspend belief for a moment and let's ...\n THE SECRET OF KELLS may be the most exquisite ...\n The first time I saw this \"film\" I loved it. W...\n Below average movie with poor music considerin...\n It sounded so promising in the Rental Store, t...\n Batman Returns It is my opinion that the first...\n I saw this gem of a film at Cannes where it wa...\n Although released among a flock of revenge-min...\n Louis Gossett Jr returns to the well one more ...\n Kenny Doughty as Jed Willis is sexier in this ...\n Is this a stupid movie? You bet!! I could not ...\n This is the best 3-D experience Disney has at ...\n I remember a time when the only thing that did...\n My kids picked this out at the video store...i...\n I absolutely loved this series, and was very s...\n During a Kurt Weill celebration in Brooklyn, W...\n I'm just getting the chance to dig into past A...\n I grew up in Southern West Virginia; I'm about...\n I've seen a lot of stupid plotlines in my time...\n As I mentioned previously, John Carpenter's 19...\n Bill and Ted are back, only this time an evil ...\n I had heard this film was a study of a landsca...\n Not often have i had the feeling of a movie it...\n I like this movie and have watched my copy twi...\n This is the worst film I have ever seen, bar n...\n Please, do not waste your time and money with ...\n In 1990 I saw Kathy Ireland in person - I was ...\n Only children below the age of 12 should be al...\n This film tells the stories of several couples...\n It is often only after years pass that we can ...\n People who actually liked Problem Child (1990)...\n When childhood memory tells you this was a sca...\n This is a really old fashion charming movie. T...\n No matter how much it hurts me to say this,the...\n How can a major German TV station broadcast a ...\n I first saw this film during and International...\n Crack House (1989) was one of the few film dur...\n David Lynch's new short is a very \"Lynchian\" p...\n Good lord.<br /><br />I'm going to say right o...\n I wanted to like this movie, but there is very...\n This is the underrated Kellie Martin's best ro...\n It's really rather Simple. The Name of the Mov...\n After the across-the-board success of MY NAME ...\n I thought this movie was really awesome! One o...\n This is possibly one of the worst giant killer...\n This show is possibly the biggest, ugliest, mo...\n This delightful, well written film is based on...\n In a sport that prizes quirkiness and treasure...\n Once in the Life means that once a hoodlum, al...\n Honestly I can't understand why this movie rat...\n urgh! 3 things a movie needs: a good script, a...\n Released in December of 1957, Sayonara went on...\n Not one of Keaton's best efforts, this was per...\n \"Riders of Destiny\" was the first of several w...\n I've read a lot of reviews about Showtime on I...\n Has the proliferation of relatively high quali...\n If you make a suspense movie it is kind of imp...\n \"When a Killer Calls\" is an unusually nasty sl...\n This is high grade cheese fare of B movie kung...\n Four stories written by Robert Bloch about var...\n A very well made film set in early '60s commun...\n That reviewers liked this movie surprises me. ...\n I first saw this movie on TV back in 1959 when...\n In the ten years since Wildside aired, nothing...\n I can't help thinking that this is Franco's 'h...\n Watching this movie really surprised me. I hav...\n 'Intervention' has helped me with my own addic...\n First of all, I liked very much the central id...\n Ugly women-of-the-cellblock flick rakes the bo...\n OK, just what the HELL is all this supposed to...\n When the film began, I was shocked to see it w...\n An Asian blowgun assassin takes out victims in...\n It's impossible for me to objectively consider...\n This film is awful. Give me the dentist anytim...\n Incredibly ARTISTIC NOBODY COULD MAKE THEM NOW...\n I'm a fan of C&C, going back to their records,...\n I can't believe some of the comments here in t...\n I don't know why, but when I am asked about ba...\n Creating a comedy is like walking a pretty thi...\n Ben (a fine Charles Bateman), his young daught...\n The premise of this awaited sequel was really ...\n Without Kirsten Miller this project needn't ha...\n My college professor says that Othello may be ...\n This movie was very good, not great but very g...\n Hello Mary Lou: Prom Night II starts at the Ha...\n The title above is used to introduce the film ...\n Worst Movie I Have Ever Seen! 90 Minutes of ex...\n This is one of those films that you watch with...\n It's a mistake to refer to any film of this er...\n Like most people, I was interested in \"More\" s...\n I saw One Life Stand when it premiered at the ...\n The Cowboys could leave you a little sore in t...\n This show comes up with interesting locations ...\n Lame B-horror that takes itself too damn serio...\n The best bit in the film was when Alan pulled ...\n Cates is insipid and unconvincing, Kline over-...\n As soon as the credits rolled on Saturday nigh...\n The memory banks of most of the reviewers here...\n I wish I could give this movie a zero out of t...\n The Impossible Planet and The Satan Pit togeth...\n SciFi has been having some extremely bad luck ...\n This was honestly the worst movie i have ever ...\n Don't understand how these animated movies kee...\n This movie is the Latino Godfather. An unlikel...\n This sci-fi adventure is not the best and by n...\n Granted, I'm not the connoisseur d'horror my p...\n Michael (played by Steven Robertson) has cereb...\n A BUSTER KEATON Silent Short.<br /><br />Poor ...\n This has been put out on the DVD market by Alp...\n Well don't expect anything deep an meaningful....\n The Sentinel is a movie that was recommended t...\n I was fortunate enough to catch this film at t...\n I watched the first show of each series just t...\n Remnants of an ambushed Army unit hook up with...\n Debbie Vickers (Nell Schofield) and Sue Knight...\n While I thought this was a good film about JFK...\n Wow, what a racist, profane piece of celluloid...\n Well it is about 1,000 years in the future and...\n What happened? Those were the first words to c...\n Zu Warriors most definitely should've been an ...\n Saving Grace is a nice movie to watch in a bor...\n Clearly my rating for this is not to suggest i...\n It appears even the director doesn't like this...\n I rented this film thinking it was the sobbing...\n This is not a film is a clever, witty and ofte...\n Before I review this film, I must make a confe...\n I walked into Blockbuster, itchin' to watch so...\n First off i'll give this movie a low scoring 4...\n This is the worst movie I have ever seen and b...\n I had no expectations when I started to watch ...\n It seems like anybody can make a movie nowaday...\n Despite being a sequel to the more potent orig...\n The plot of this terrible film is so convolute...\n When the Grinch came out I was excited though ...\n This started out as a good sketch comedy. The ...\n This is bad movie. There is no denying it as m...\n A routine mystery/thriller concerning a killer...\n If TV was a baseball league, this show would h...\n As one who frequently goes to the movies, I ha...\n This movie was on the Romance channel, and I t...\n This film shows a serious side to the often th...\n Celebrity singers have always had a tough time...\n Based on Mika Waltari's Book,This Second Cinem...\n I saw this on the big screen and was encapsula...\n Every role, down to the smallest, has been cas...\n ...in an otherwise ghastly, misbegotten, would...\n Four Eyed Monsters follows the relationship of...\n Lovely piece of good cinema. This is one of th...\n This multi-leveled thriller kept my attention ...\n Well, I'm an Italian horror big fan and I love...\n The eight Jean Rollin film I have watched is a...\n This gets a two because I liked it as a kid, b...\n Feroz Abbas Khan's Gandhi My Father, a film th...\n I saw this movie on the strength of the single...\n The movie has the longest, most tortured and a...\n I was watching this movie at one of my usual t...\n Full House is a great family show. However, af...\n Excellent documentary, ostensibly about the fr...\n Not only does the film's author, Steven Greens...\n I just wanted to write a quick response to all...\n This isn't a bad movie. It's fun to watch for ...\n Moonwalker is probably not the film to watch i...\n This sci-fi great fortunately has little to do...\n I can't remember the worst film I have watched...\n I watched this film with my family over a long...\n Well, this is new...Famous Italian horror dire...\n Otherwise it is one of the worst movies I've e...\n Watching the last 2 episodes i remembered a TV...\n Not only Why? But \"What were they thinking?\" T...\n It must have been excruciating to attend the d...\n Good movie, very 70s, you can not expect much ...\n One of the most unfairly maligned programmes o...\n Oh, well I thought it should be a good action,...\n This is what a movie should be when trying to ...\n Alistair Simms inspired portrayal of Miss Frit...\n This is a lovely tale of guilt-driven obsessio...\n GREAT MOVIE! Chucky is by far the funniest cha...\n MISSISSIPPI MERMAID is a disturbing and unsett...\n I must admit, out of the EROS MOVIE COLLECTION...\n Despite, or perhaps in part because of the cle...\n This film is notable for three reasons.<br /><...\n This was just telecast here in the U.S. Others...\n ** CONTAINS SPOILERS ** <br /><br />The truly ...\n I very well remember the bad press this film g...\n This self-indulgent mess may have put the kibo...\n After I couldn't ignore the hype about the sho...\n Blank check is one of those kids movies that c...\n How can such good actors like Jean Rochefort a...\n In order to rate this movie fairly you have to...\n I argued with myself whether to rent this or n...\n I rented the dubbed-English version of Lensman...\n Claire Denis has demonstrated repeatedly that ...\n It is finally coming out. The first season wil...\n This satire is just really, really dead-on, an...\n There are plenty of reviews on this page that ...\n Quite what the producers of this appalling ada...\n The mission to see the movie \"The Cave\" was a ...\n Two sisters, their perverted brother, and thei...\n I loved this movie! Yes, it is rather cheap an...\n This game is one of the best horror/shooter ga...\n Good story and excellent animation. The influe...\n I found this movie really hard to sit through,...\n Coach Preachy or Straight Sappy. It's bad writ...\n I go to a lot of movies, often I bring my 5 ye...\n I've been writing hardboiled crime fiction for...\n I regard this loving, and sensitively written ...\n Dennis Hopper is without a doubt one of the fi...\n I found this movie to be a simple yet wonderfu...\n We went to the cinema expecting a biggish budg...\n During a lifetime of seeing and enjoying thous...\n My guess is that the producers of this low-bud...\n First off to get my own personal feelings out ...\n This movie, supposedly a thriller, had about f...\n After putting a mummy in a local museum goes t...\n Rented and watched this short (< 90 minutes) w...\n Bill and Ted's bogus journey is possible the m...\n This movie is the best movie I have seen in a ...\n The above profile was written by me when I use...\n I managed to record THE DION BROTHERS, off bro...\n The Polish brothers are unique film artists, a...\n Recap: Since the warrior queen Gedren raised a...\n Tom and Butch Cat fight over the capture of Je...\n you can be fooled by your first impressions. a...\n The sun should set on this movie, forever.<br ...\n Every once in a while , someone out of the blu...\n I'm sorry, but this movie is just way to shall...\n I have noticed that people have asked if anyon...\n I saw this movie, and I do like horror movies....\n I very nearly walked out, but I'd paid my mone...\n One of the many vigilante epics that flooded t...\n I think this was a HORRIBLE mistake on Disney'...\n as a 'physically challenged' person (god, how ...\n This film proves you don't need a Hollywood bu...\n It's difficult to precisely put into words the...\n Prior to watching \"Dahmer,\" I thought no movie...\n This was a favorite of my childhood - I can re...\n Okay, I'm sorry to the cast and crew for this ...\n Star Trek: Hidden Frontier is a long-running i...\n Well, first of all, excuse me for the lame pun...\n Actually there was nothing funny about this mo...\n I rented this movie today thinking it might be...\n This film resembles in many ways `Enemy of the...\n One of the biggest French success of the year ...\n Finally!!! A good movie made on the most demen...\n This story documenting the rise of China's fir...\n Avoid this movie. If you are expecting \"The Po...\n This was the first movie that Joan Crawford an...\n 'Before the devil knows you're dead' is one of...\n This movie (even calling it a movie is an over...\n (Some Spoilers) Facing a mid-life crisis and f...\n I hate to be too critical, but this one really...\n A remarkable piece of documentary, giving a vi...\n I love cheesy horror movies, I think dead aliv...\n I knew it was going to be awful but not this a...\n This is one great movie! I have played all the...\n Since Jason and his ilk took over horror films...\n Underneath the dense green glop of computer gr...\n Well, to each his own, but I thought Gibson's ...\n Mercifully, there's no video of this wannabe w...\n Rather foolish attempt at a Hitchcock-type mys...\n Oh dear, just what we need another Essex -Cock...\n This movie is most possibly the worst movie I ...\n If you are a Crispin Glover fan, you must see ...\n I had seen this movie when it got released, an...\n A clever and bizarre angle to \"Beauty is in th...\n This is one of those films that looks so \"date...\n I have seen this movie many times, (and recent...\n this film is absolutely hilarious. basically, ...\n Thriller is the GREATEST music video of all ti...\n Several years ago when I first watched \"Grey G...\n I normally do not take the time to make commen...\n This was easily one of the weirder of the Erne...\n I missed it at the cinema and have rented it o...\n And a made for TV movie too, this movie was go...\n A group of tourists are stranded on Snake Isla...\n I have never seen the TV Series or the previou...\n I just picked up the DVD release of this movie...\n While sleeping, Mr. Eko is assigned by his bro...\n The orange tone to everything was just yucky. ...\n Not to be confused with Lewis Teague's \"Alliga...\n They had such potential for this movie and the...\n A series of random, seemingly insignificant th...\n This was a very well scripted movie. Great fun...\n I rated this one better than awful because I l...\n Slash flicks come few and far between now a da...\n This film infuriated me for the simple fact th...\n This is a masterpiece. 'The Big Snit' is a cra...\n I don't think I need to tell you the story. Fo...\n First, before reading further, you must unders...\n This is without a doubt the STUPIDEST movie of...\n This is a great show despite many negative use...\n The only reason that this movie is rated a 1 i...\n SILVER CITY (2+ outta 5 stars) As a huge fan o...\n It's always interesting to catch a line in a f...\n and laugh out loud funny in many scenes.<br />...\n Kevin Spacey again picks a winner with K-PAX, ...\n This is absurd - aside from the fellow Austral...\n As seems to be the general gist of these comme...\n Despite the patronage of George Lucas, this ca...\n I was a little afraid when I went to the cinem...\n I wish Depardieu had been able to finish his b...\n I am a huge Willem Dafoe fan, and really sough...\n This movie is great. Simply. It is rare that y...\n This version is pretty insipid, I'm afraid. Ja...\n If you are thinking of going to see this film ...\n As long as you don't mind paying a little more...\n Buddy is an entertaining family film set in a ...\n This film is a huge steaming pile. <br /><br /...\n Bled starts as young female artist Sai (Sarah ...\n It is hard to describe this film and one wants...\n Prior to Airport 79' these movies were rather ...\n The last of the sequels,not counting Abbott an...\n *!!- SPOILERS - !!*<br /><br />Before I begin ...\n This film promises much but delivers little. T...\n Yash Raj films are so funny, whatever works th...\n I found this family film to be pleasant and en...\n This movie is likely the worst movie I've ever...\n I have spent many years studying all the great...\n When I first saw the trailer for Prom Night, I...\n Okay, I know I shouldn't like this movie but I...\n Sogo Ishii can be a skilled filmmaker under th...\n No one better spoil this piece of work! Awesom...\n One cannot help but be impressed with the inte...\n Like too many recent British films, this one t...\n Tempest is based on the classic Shakespearean ...\n Ernesto is a man that makes a living out of du...\n This was the beginning of it all! Granted, thi...\n Having only seen two of his pictures previousl...\n too bad they showed palm trees that could not ...\n This movie tries to say something profound; I'...\n Why was this film made? What were the creators...\n This is a stupid movie. Like a lot of these ka...\n The most ridiculous thing about this ridiculou...\n Widely known as \"Don't Look in the Basement\" -...\n I think the comments regarding the show being ...\n Wow, don't watch this thinking it's going to b...\n Escaping the life of being pimped by her fathe...\n Good grief sethrp-1, you COMPLETELY missed the...\n You sit there for a half an hour and watch a s...\n I still wonder why I sat through this entire t...\n It's been said before--Strangers on a Train is...\n and this IS a very disturbing film. I may be w...\n It has a bit of that indie queer edge that was...\n I just saw this movie on Flix after timer-tapi...\n Totally forgettable and almost unwatchable. If...\n I was one of the many fools who were sapped ou...\n Watching this movie again really brought back ...\n The other lowest-rating reviewers have summed ...\n I found this film to be an interesting study i...\n This movie is about as underrated as Police Ac...\n The 2002 version of \"The Time Machine\" is just...\n Like the first one,the team of JACKASS are bac...\n EXTREMITIES <br /><br />Aspect ratio: 1.85:1<b...\n Not many people remember \"The Carey Treatment\"...\n Hollywood always had trouble coming to terms w...\n Good sequel to Murder in a Small Town. In this...\n Fantastic movie. One to excite all 5 senses. I...\n After some further thought about this film, I ...\n EA have shown us that they can make a classic ...\n Ned aKelly is such an important story to Austr...\n Hi guys, this is my first review and I would h...\n This film is an entertaining, fun and quality ...\n Of all the kids movies I have seen over the ye...\n Sitting, Typing Nothing is the latest \"what i...\n This is one of the better sci-fi series. It in...\n This film really got off to a great start. It ...\n This isn't a good movie. Plain and simple. Tak...\n Long, boring, blasphemous. Never have I been s...\n This is a great movie to look at, since it so ...\n here was no effort put into Valentine to preve...\n I've seen several of these body snatcher type ...\n Spoilers.<br /><br />First off, nothing really...\n Just when I thought nothing could be as offens...\n Let start off by first saying that I have been...\n 'Checking Out' is an extraordinary film that t...\n This game show lasted just one season, but was...\n Comparing this movie to anything by Almodovar ...\n Lin McAdam (James Stewart) wins a rifle, a Win...\n Spoilers of both this and The Matrix follow.<b...\n Any story comprises a premise, characters and ...\n Doesn't anyone bother to check where this kind...\n Well, Tenko is without doubt the best British ...\n Michelle Rodriguez is the defining actress who...\n For loyal Duran Duran fans who want to watch a...\n Something strange is happening in Loch Ness. T...\n Wow, just caught this movie from Blockbuster a...\n If this is film noir, then noir must be French...\n i can't believe i actually watched this but i ...\n Grey Gardens is a world unto itself. Edith and...\n This movie was horrible, and it doesn't even d...\n This was one of the most contrived, tedious an...\n I'm sorry, but I cannot understand what people...\n First this movie was not that bad.It was enter...\n Hardly a masterpiece. Not so well written. Bea...\n (spoilers?)<br /><br />while the historical ac...\n Rock n' roll is a messy business and DiG! demo...\n This is one of my favourite martial arts movie...\n I always have a bit of distrust before watchin...\n It's difficult to criticize a movie with the t...\n I'm sorry, perhaps this is part of the wave of...\n I actually felt bad for the actors in this thi...\n I came away from this movie with the feeling t...\n I'm not saying anything new when I say that \"R...\n My jaw fell so many times watching this flick,...\n This was such a beautiful film. Such an amazin...\n The film is a joy to watch, not just for the p...\n \"Embarassing\" is the only word to describe thi...\n Rating: 4 out of 10<br /><br />As this mini-se...\n Disney (and the wonderful folks at PIXAR of co...\n This is a great German slasher, that's often q...\n Please, If you're thinking about renting this ...\n Me and my girlfriend went to see this movie as...\n A truly accurate and unglamourous look into mo...\n I like the most of the Full Moon Pictures so I...\n Yeah, the archetype of a simple but inspiratio...\n Like almost everyone else who has commented on...\n Overall I would have to say that I liked the m...\n Personally, I find the movie to be quite a goo...\n The Ator series is a shining example of what B...\n This is one you can watch over and over and la...\n Why do the powers that be continue to cast Jen...\n For all the hoopla, respect and recognition th...\n Not only was he invariably annoying to listen ...\n Basically a road movie. The gay, transsexual, ...\n A surprising rent at a local video store, I wa...\n There are films that make careers. For George ...\n The other reviewers are way WAAAAY off as to w...\n My favourite police series of all time turns t...\n I love this movie, first and foremost because ...\n Put the blame on executive producer Wes Craven...\n *** WARNING! SPOILERS CONTAINED HEREIN! ***<br...\n \"Family Guy\" is probably the most ballsy sitco...\n Having avoided seeing the movie in the cinema,...\n I was giddy with girlish-glee when I found out...\n Pola X is a beautiful adaption of Herman Melvi...\n I went to see this movie with my 17 y.o. daugh...\n Directed by E. Elias Merhige \"Begotten\" is an ...\n Simply the best Estonian film that I have ever...\n This film plays in the 60s and is about an Ita...\n I watched this movie and the original Carlitos...\n Hayao Miyazaki has no equal when it comes to u...\n I swear I didn't mean to! I picked this out on...\n I love this movie and never get tired of watch...\n The best horror/sci-fi movie i have ever seen....\n this is by far one of the most pretentious fil...\n Everyone involved (and the audience) should se...\n SPOILER WARNING: There are some minor spoilers...\n I've just watched this again on the BBC Channe...\n I sat through almost one episode of this serie...\n Lulu (Louise Brooks) works as a typist and is ...\n Don't waste your time or money on going to see...\n I watched the DVD of this movie which also com...\n In case you're a self-acclaimed connoisseur of...\n Any evening with Jonathan Ross now means to me...\n Well, this may be one of the worst movies ever...\n I had the opportunity to see this film twice a...\n Eh oui, impossible n'est pas gaulois.<br /><br...\n A hard to find film which coasts on the still ...\n THE RAP, the book this movie was 'based' on wa...\n Like A Streetcar Named Desire (also directed b...\n Slashers.....well if you like horrors its defi...\n The story of Farewell to the King is intriguin...\n Many people like to point to this TV movie whe...\n It was probably just my DVD---but I would not ...\n I hate to even waste the time it takes to writ...\n WARNING: MAY CONTAIN SPOILERS<br /><br /> The ...\n When I bought 4 DVDs for £5.oo in a local shop...\n back in my high school days in Salina Kansas, ...\n \"House of Games\" is a flawlessly constructed f...\n One of the cornerstones of low-budget cinema i...\n Now, I flicked onto this just out of curiosity...\n This is primarily about love in WWII, yet we m...\n Man oh man! What a piece of crummy film-making...\n To sum this movie up, it is LaBute carrying hi...\n Cave Dwellers, or The Blade Mater, or whatever...\n This one hearkens back to the days of the mati...\n I watched the show 10 years ago and loved it!!...\n For three quarters of an hour, the story gradu...\n This is a film where the actors are all fine, ...\n Martin Lawrence is not a funny man i Runteldat...\n This is a thriller with a good concept, good a...\n This movie was beyond disappointment. Well act...\n Doyle had never wanted to resurrect Holmes fro...\n It was disgusting and painful. What a waste of...\n \"Life stinks\" is a parody of life and death, h...\n This was such a terrible film, almost a comedy...\n Because I would have never ever seen this movi...\n All of the X-Men movies were great. And I mean...\n This film takes a lot of liberties with the kn...\n Some amusing humor, some that falls flat, some...\n I feel really bad for reviewing this movie bec...\n Book of Revelations starts very well. Daniel, ...\n It's boring.<br /><br />It's slow.<br /><br />...\n Another lame attempt to make a movie \"gritty\" ...\n A delightfully unpretentious send up of Romeo ...\n Ostensibly a story about the young child of Ji...\n Just saying you've got a movie about John Holm...\n If you feel like wasting 86 minutes on a film ...\n Poor Whoopi Goldberg. Imagine her at a friend'...\n Despite a great soundtrack and the presence of...\n I was impressed with this film because of the ...\n Ariauna Albright is a really good actress but ...\n The original \"Assault on Precinct 13\" is gritt...\n First off, let me start with a quote a friend ...\n I was quite impressed with the narration by Ma...\n This in-name-only sequel to the classic ROADHO...\n The main problem with 9th Company (9 Rota) is ...\n The only reason The Duke Is Tops, one of sever...\n Once again Bronson's talent is mostly wasted o...\n Garlin did a great job. Nice concept well exec...\n Wow, not only is this film a \"new lesson in re...\n A great ensemble cast! A fond remembrance of y...\n Illudere (to delude) comes from Latin verb 'lu...\n A glacier slide inside a cavernous ice mountai...\n One of the oddest, most strikingly eerie and c...\n Arthur Hunnicutt plays a very stereotypical ro...\n Watch it with an open mind, it is very differe...\n I had the privilege of being one of the Still ...\n Despite a tight narrative, Johnnie To's Electi...\n Meatballs is a classic comedy with so many lau...\n It's telling that as of the entry of this comm...\n Much has been made of Rohmer's use of digital ...\n The old man mouse in this cartoon would have y...\n The pace of this movie is quite slow. It takes...\n The funny sound that you may hear when you eye...\n As noted by other reviewers this is one of the...\n *** Contains Spoilers ***<br /><br />I did not...\n It is unusual to see a film where the performa...\n This overheated southern Gothic \"mellerdramer\"...\n I'm a sucker for a decent superhero movie. (I'...\n This film is very interesting. I have seen it ...\n I watched this movie after having so much of t...\n I didn't even know this was originally a made-...\n This is, without doubt, one of my favourite ho...\n Kar Wai Wong's incredibly impressive romance t...\n Chuck Jones's 'Hare Conditioned' is a fast pac...\n First week of May, every year brings back the ...\n ...in a TV-movie 70's kind of way. It's one of...\n I saw this in the market place at the Cannes F...\n ... And being let down bigger than ever before...\n I saw this film at the Toronto Film Festival, ...\n I'll start off right at the beginning by sayin...\n Young and attractive Japanese people are getti...\n This is a good film, no doubt, but with some o...\n THE D.I. (4 outta 5 stars) Wow, I certainly di...\n I enjoyed this film very much. I found it to b...\n As a writer and a lapsed Orthodox Jewish woman...\n This was the second of two filmed \"Hamlets\" in...\n Zombie movies are hot, I love 'em. Can't get e...\n I don't remember the last time I reacted to a ...\n In the beginning and throughout the movie, it ...\n Ever once in a while I run into a movie that i...\n When I first saw this movie, the first thing I...\n Worst horror film ever but funniest film ever ...\n I loved Dewaere in Series Noir. His talent is ...\n I saw this movie when it was first released an...\n this movie delivers. the best is when the awkw...\n I read all of the other comments which made th...\n This is a comedy version of \"Strangers on a Tr...\n Unfortunately this original mix of action and ...\n The brainchild of comic strip pioneer Alex Ray...\n This is easily the worst Presley vehicle ever,...\n Even though this was set up to be a showcase f...\n And that's why historic/biographic movies are ...\n This movie is just plain bad. It isn't even wo...\n ...left behind when the ostensible heroine's V...\n If you made a genre flick in the late 80s, you...\n .... may seem far fetched.... but there really...\n Certainly this film is not for everybody---but...\n I don't know what this movie is about, really....\n This movie surely has one of the strangest the...\n The true life story of perhaps the greatest fo...\n Now, it would be some sort of cliché if i bega...\n John Huston was seriously ill when he made his...\n Yes, I admire the independent spirit of it all...\n Perhaps I missed something, but I found GOYA'S...\n I clerk in a video store, so I try to see the ...\n This wasn't funny in 1972. It's not funny now....\n When I was a little girl, I absolutely adored ...\n I think Lion King 1 1/2 is one of the best seq...\n I gather from reading the previous comments th...\n If your a fan of Airplane type movies this is ...\n One of the best if not the best rock'n'roll mo...\n This is the page for \"House of Exorcism\", but ...\n Another chapter in the ongoing question, whate...\n this became a cult movie in chinese college st...\n I walked into the movie theater, with no expec...\n I'm glad that this is available on DVD now. Th...\n Don't waste your time. One of those cool-looki...\n Making a movie about a Comic is hard to do. Ma...\n First of all, I became dissy after watching th...\n The portrayal of the Marines in this film is s...\n Yet another Die Hard straight to video rip off...\n Garam Masala is one of the funniest film I've ...\n Week after week these women just sweep all the...\n This documentary has been aired on both RTE an...\n Or maybe that's what it feels like. Anyway, \"T...\n Warning: Spoilers Galore!<br /><br />Tim Burto...\n This movie is a fascinating example of Luis Bu...\n Saw this again recently on Comedy Central. I'd...\n OK, to start with, this movie was not at all l...\n Directed by a veteran Hollywood director Henry...\n Phoned work sick - watched this in bed and it ...\n There is not one character on this sitcom with...\n The wife and I saw a preview of this movie whi...\n I haven't seen the first two - only this one w...\n This mess starts off with a real tank running ...\n I really like Ryan Reynolds and Hope Davis and...\n Theres not much you can really say about this ...\n This movie was awesome. It's a documentary abo...\n To preface this review, I must say that I was,...\n Let's see: what are the advantages to watching...\n For one thing, he produced this movie. It has ...\n Massive multiple chills down the spine! I'm su...\n Contains spoilers The movie plot can be summar...\n This is the best dub I've ever heard by Disney...\n Featuring a fascinating performance by Will Sm...\n After high school Track & Field athelete, Laur...\n If there's one theme of this film, it's that p...\n The summary pretty much sums it all up. This i...\n Dead Man's Bounty (the film's American title) ...\n 1st watched 2/25/2002 - 4 out of 10(Dir-George...\n Beautiful art direction, excellent editing and...\n This is Wes Craven at his worst! this is the v...\n While a pleasant enough musical, what stuck wi...\n As with most Rosalind Russell movies, this one...\n Terrible acting by Potter and a flat plot with...\n Probably somebody heard of Alberto Tomba. A fo...\n I have never commented on a film before. I wat...\n The Kid was born retarded. It pulls in a half-...\n I don't understand how \"2 of us\" receive such ...\n Good Deaths. Good Mask. Cool Axe. Good Looking...\n A gem from Japan, where so many of the world's...\n Visually cluttered, plot less, incredibly mind...\n OK,so this film is NOT very well known,and was...\n Reeves plays Haji Murad, a hero in 1850's Russ...\n My brother-in-law and his wife brought the mov...\n Now, I'm a big fan of Zombie movies. I admit Z...\n I'm amazed that \"The Hospital\" has been so wel...\n Okay, as a long time Disney fan, I really -hat...\n What was an exciting and fairly original serie...\n Cast to die for in a movie that is considerabl...\n An \"independant\" film that, from the back of t...\n I just finished watching this movie. It wasn't...\n LL Cool J. Morgan Freeman. Dylan McDermott. Ke...\n Very heart warming and uplifting movie. Outsta...\n Dude, really!!!! where have you guys been the ...\n Guy Pearce almost looks like Flynn, and this r...\n This movie was pretentious, foppish and just d...\n This is the second movie about 1985, the other...\n OK,I've seen over 100 Troma films, and some of...\n This fake documentary is flawed on a lot of po...\n For a long time, this was my favorite of the B...\n Starting off, here's a synopsis: Porno queen A...\n He pulled the guys guts out his butt! That's a...\n This movie promised bat people. It didn't deli...\n I saw the film many times, and every time I am...\n I loved KOLCHAK: THE NIGHT STALKER since I saw...\n This feels as if it is a Czech version of Pear...\n When, oh, when will someone like Anchor Bay or...\n \"Just before dawn \" is one of the best slasher...\n A very courageous attempt to bring one of the ...\n If 1977's \"Exorcist II: The Heretic\" did him n...\n The Movie I thought was excellent it was suppo...\n Now I'll be the first to admit it when I say s...\n This film captured my heart from the very begi...\n This film made John Glover a star. Alan Raimy ...\n I really enjoyed Girl Fight. It something I co...\n Jimmy Stewart brings the story of Charles Lind...\n This movie is the best film ever. I can't reme...\n Saw this film on DVD yesterday and was gob-sma...\n Quick summary of the book: Boy, Billy Tepper, ...\n I really, really didn't expect this type of a ...\n Jack Higgins' straightforward thriller about a...\n I just finished watching Dog Watch. I thought ...\n Carrie Fisher has stated on more than one occa...\n At school I was taught how some shots were cal...\n \"Love is a Many-Splendored Thing\" is set in Ho...\n black tar can't be snorted there's a documenta...\n I rented Dark Harvest (the first one) because ...\n Harrison Ford playing a playing a cop in a cri...\n Jude law gives Keanu Reeves a run for his mone...\n pardon my spelling. This is probably the funni...\n This movie sets out to do something very parti...\n This is a great film. If this is any indicatio...\n How does David Lynch do it? Unlike the legions...\n Here is another great film critics will love. ...\n Most who go to this movie will have an idea wh...\n Watching this film for the action is rather a ...\n The only good part about this film is the beau...\n Honestly, this is easily in the top 5 of the w...\n K Murli Mohan Rao made the much better BANDHAN...\n I just saw The Drugs Years on VH1 and I love i...\n This is a total waste of money. The production...\n Why I disliked the movie, apart from the sheer...\n I resisted seeing this movie and I understand ...\n Following up the 1970s classic horror film Car...\n When I was young, I was a big fan of Chuck Nor...\n Philo Vance (William Powell) helps solve multi...\n Let's face it, this is a pretty bad film.Howev...\n \"Are You in the House Alone?\" belongs to the p...\n I recently bought this movie for three bucks a...\n This movie is the last straw in a list of film...\n Jason Connery is not an actor; he is the son o...\n Twins Effect, starring some of HK's most popul...\n wow...this has got to be the DUMBEST movie I'v...\n OK, I would give this a 1, but I'm gonna give ...\n I felt this movie was as much about human sexu...\n A hilarious comedy by the best director ever, ...\n Director Todd Verow's unexpected turn into sen...\n This was truly a tense and dark episode. Excel...\n OK, this movie starts out like a cheesy Lifeti...\n I wasn't expecting the highest calibre of film...\n I finally got hold of Lifeforce on DVD with th...\n It was hard for me to believe all of the negat...\n I had a heck of a good time viewing this pictu...\n Surely no Saturday morning TV kids' show was e...\n Bogdonovich's (mostly) unheralded classic is a...\n The \"Trivia\" page on IMDb claims the filmmaker...\n I must admit I am a big fan of South Park and ...\n At first sight, Who's Singing Over There just ...\n Though I saw this movie about 4 years ago long...\n What can be said, really... \"The Tenant\" is a ...\n Is it possible to give a 0 out of 10 rating? B...\n This movie is a loose collection of unintellig...\n Okay, that was just brilliant. I wish that the...\n The beginning voice over sounds like 'The Wind...\n After the opening credits over a black sheet o...\n Whenever this film gets a mention, usually the...\n Dan Duryea, a perfectly decent B-movie actor w...\n Only the most ardent DORIS DAY fan could find ...\n Though this series only ran a season, it has s...\n The idea of bringing Dracula to contemporary t...\n The first time I came upon Delirious, I only h...\n Hayao Miyazaki's latest and eighth film for St...\n One of the most boring slashers ever.. If you ...\n This is the worst piece of crap I have seen re...\n Ah, I loved this movie. I think it had it all....\n For a scientifically-engineered super-dog that...\n this is a teen movie and while u watch it expe...\n If you are a Pauly Shore fan, you will laugh y...\n Not only is The Great Rock N Roll Swindle thor...\n It was 1983 and I was 13. I watched Valley Gir...\n I usually love teen/high school genre flicks, ...\n I would have enjoyed this movie slightly more ...\n Such a delightful movie! Very heart warming. O...\n While I agree that this was the most horrendou...\n Highly enjoyable, very imaginative, and filmic...\n Although George C. Scott is the only actor in ...\n There's really not a whole lot to say about th...\n CHRISTMAS IN AUGUST is a perfect movie. A flaw...\n This was a wonderful film. How these women tri...\n I felt that the movie Skammen, directed by Ing...\n In my opinion the directing, editing, lighting...\n Oh my god, it just doesn't get any worse than ...\n Before watching this movie from beginning to e...\n How did so many talented or at least charismat...\n This is without a doubt the worst movie I have...\n I am a Christian... and I feel this movie is a...\n For all the viewers who have seen 'The Cure' w...\n If you were to judge based on the movie alone,...\n The film starts with a manager (Nicholas Bell)...\n PROBLEM CHILD is one of the worst movies I hav...\n This is probably one of those films too many c...\n This movie is based on the true story of Iowa ...\n I classify this as the worst movie of all time...\n If not the best movie ever made, \"Babette's Fe...\n This film Evil Breed: The legend of samhain co...\n This obscure de Sica delivers the goods. And i...\n I get the feeling that the producers of this m...\n Just do a little research on the making of thi...\n As one other IMDb reviewer puts it, \"...imagin...\n Back in the cold and creepy early 90's,a show ...\n I remember when this NBC mini-series aired whe...\n \"Match Point\" and now \"Scoop\" have both convin...\n I had to walk out on this film fifteen minutes...\n This had a good story...it had a nice pace and...\n In 1967 I saw an outstanding Musical at the Wi...\n Without a doubt, this is the big momma of all ...\n Who in the world told Harrison Ford that this ...\n The film is pretty confusing and ludicrous. Th...\n Humm, an Italian movie starred by David hassel...\n This is a movie about a man everybody thinks i...\n Left Behind is an incredible waste of more tha...\n Joe is the movie about the dark side of the fo...\n This is one of the worst movies I've seen in a...\n I was looking forward to this flick. Being an ...\n This was the worst Wrestlemania in history. Th...\n Completely overlooking the whole movie adaptat...\n Even by the lowered standards of '80s slasher ...\n In 1913, in Carlton Mine, Addytown, Pennsylvan...\n This is a very chilling, and for the most part...\n Dieter Bohlen, Germany's notorious composer an...\n Jackie Chan is considered by many film and mar...\n Poor Tobe Hopper. He directed an all time horr...\n With Nurse Betty (2000), acclaimed indie film-...\n This film is so lovingly made you want to be p...\n Sappy.<br /><br />I liked how they went to the...\n While walking to buy cigarettes, the professio...\n Any chance to see Katharine Hepburn in somethi...\n The movie 'Gung Ho!': The Story of Carlson's M...\n This film is titled \"Junior Pilot\" here on IMD...\n I was very disappointed with this series. It h...\n If it were possible to distill the heart and s...\n I'll admit I've only watched a handful of epis...\n This is a movie that gets better each time I s...\n This was surely the stupidest, crudest, most r...\n When I rented this movie, I half expected it t...\n Meester Sharky, you look so ... normal. You wo...\n As a Christian, I found this movie to be compl...\n Hear are some of the interesting things our co...\n \"Once again, we have a movie that packs about ...\n Although I'm not a golf fan, I attended a snea...\n (Some Spoilers) Dull as dishwater slasher flic...\n I was one of those \"few Americans\" that grew u...\n How can the viewer rating for this movie be ju...\n Maybe in its day this movie was special. But f...\n Lets get one thing out of the way. I am a HUGE...\n This movie tells about the real life story of ...\n ** possible spoilers **<br /><br />I like this...\n How important is the director, anyway? In this...\n I like CKY and Viva La Bam, so I couldn't resi...\n This is probably the funniest thing I have eve...\n A young scientist is trying to carry on his de...\n I recently rented the animated version of The ...\n Here is a movie that almost gets it all right,...\n This is one of the very best films i've seen i...\n This is the kind of film that everyone involve...\n The point of the vastly extended preparatory p...\n Although perhaps not as entertaining as some o...\n This might be the WWE's 2nd best PPV of the ye...\n Having seen most of Ringo Lam's films, I can s...\n Alfred Hitchcock's more assured telling of a f...\n Somewhere between the Food Court and Zip's, th...\n If you have read the books then forget the cha...\n I have been a fan of Pushing Daisies since the...\n For a made-for-TV \"horror\" movie the movie sta...\n Scott is right. The best 2 person sword duel e...\n Gung Ho tries to express many ideas and entert...\n I found this film the first time when I was se...\n Assault on Precinct 13: 3/10: Let us forget fo...\n The Clouded Yellow is a compact psychological ...\n Pretty bad movie offers nothing new. The usual...\n It would appear that some previous reviewers m...\n Such a film of beauty that it's hard to descri...\n The making of The Thief Of Bagdad is quite a s...\n As a horror-movie fan I try to watch all signi...\n A film that dramatized an understandable reluc...\n The MTV sci-fi animated series \"Æon Flux\" is b...\n Obviously a film that has had great influence ...\n Yes Pigeon and Coburn are great, and it's inte...\n Yes. I'll admit it. I believed all the hype su...\n This is one of the best ensemble comedy/musica...\n What a shame. What a terrible shame. The table...\n A film that reveals the unease of modern men a...\n I started watching The Apprentice about 4 year...\n I watched this film with a bunch of friends at...\n Panic is a sneaky little gem of a film - you t...\n This movie was very good because it remember w...\n Well, there is a plenty of ways how to spoil a...\n This movie is great! This movie is beautiful! ...\n Nice description of the situation in the US, i...\n OK, plain and simple, if you are a fan of the ...\n I imagine when Hitchcock scholars and experts ...\n One the whole, this movie isn't perfect. It do...\n Horror fans (I'm speaking to the over 12's, al...\n I can remember seeing this movie when I was ve...\n This movie's only redeeming factor was the fac...\n When i saw the preview for this on TV i was th...\n Tobe Hooper (fresh off mainstream success with...\n In addition to the fact that this is just an a...\n Fate puts a pair of priceless items in Ernest'...\n I was about 7 when this DIRE MONSTROSITY of a ...\n Basically this is about a couple who want to a...\n The limited scenery views were the only saving...\n I went to see this movie with a lady freind of...\n Around 1980, the name Godfrey Ho was attached ...\n This movie was really awful. It was not in the...\n \"Happy Days\" was produced and broadcast from t...\n I can hardly believe I watched this again last...\n okay... first to Anne rice BOOK fans....<br />...\n This movie is horrible. THe acting is a waste ...\n I am an Australian currently living in Japan. ...\n This is a really interesting film. It's the fi...\n I was expecting a little something from \"K-911...\n This stinker is in mystifyingly frequent rotat...\n A letter to the guys. I tried guys, I really t...\n I picked this DVD up for 3.99 at rogers video ...\n I watched this movie for the first time ever o...\n right the hospital scene with Holly and Shanno...\n Mankind's Self awakening is the theme of \"2001...\n A very carelessly written film. Poor character...\n Well that's 90 minutes of my life I won't get ...\n This was a great romantic comedy! Historically...\n This Metro film is episodic, but nearly a cons...\n Well to answer one persons's question of \"why ...\n Henry Thomas showed a restraint, even when the...\n \"The Foreigner\" is a tale of foreign intrigue ...\n I just got it and it is a great movie!! i love...\n Stan Laurel and Oliver Hardy are the most famo...\n Two things -- too long and totally lacked cred...\n I was intrigued by the title, so during a smal...\n For me,this is one of the best movies i ever s...\n I saw this ego-centric \"effort\" at achieving a...\n I haven't seen this film in years, but the awf...\n TOM HULCE* turns in yet another Oscar-worthy p...\n If you have sons or daughters who love action,...\n This is by far and away the stupidest thing I ...\n This documentary was boring, and quite stupid....\n Here is a favorite Tom & Jerry cartoon perfect...\n I first saw this back in the early 90s on UK T...\n This is a documentary about homeless women. It...\n The first 20 minutes were a little fun because...\n I had the privilege of watching Scarface on th...\n I bought this film on DVD so I could get an ep...\n After huge budget disaster films set in Americ...\n \"ASTONISHING\" Screams the LA Times from the fr...\n I broke my own rule buying this movie from the...\n I consider myself a huge movie buff. I was sic...\n Tremendous black--and-white nighttime cinemato...\n I love Sarah Waters's Fingersmith, and was wor...\n Hitchcock made at least 11 films about the ord...\n Forbidden Siren is based upon the Siren 2 Play...\n The film \"Cross Eyed\" by Adam Jones propels th...\n This is the first movie i've seen of John Sing...\n I don't expect a lot from ghost stories, but I...\n \"Girlfight\" is much more of a coming-of-age-st...\n In this excellent Twentieth-Century Fox film-n...\n A beautiful shopgirl in London is swept off he...\n I'm sorry to say that, but this is actually on...\n Since was only a toddler when this show origin...\n Scary Movie 3 (2003) was a bad idea to begin w...\n I have come out of several years of lurking on...\n . . .but it was on a UHF channel and the recep...\n Another Aussie masterpiece, this delves into t...\n This movie is amazing. The plot was just...wow...\n Everyone's favorite trio of bumbling imbeciles...\n This film is brilliant! It touches everyone wh...\n Purple Rain... what else can i say, the title ...\n this movie is outrageous. by outrageous, i mea...\n Can't grade this very well, because I can't sa...\n Carter Wong plays a noble hero on a quest for ...\n So this was an HBO \"Made for TV Movie\" eh? Is ...\n You know you're in trouble when the opening na...\n This depiction of forlorn Japanese forces in t...\n solid documentary about edgey kids who first s...\n I went into this movie expecting it to be real...\n You know, I really have a problem with movie l...\n I found this little gem as an extra feature on...\n This movie is one of the many \"Kung Fu\" action...\n If you liked the Grinch movie... go watch that...\n OK well i found this movie in my dads old pile...\n This must be one of the worse movies that I ha...\n This engaging (which it shouldn't be) low-grad...\n Calling this a \"Sunday School\" movie might be ...\n First off I must stress how rare it is that I ...\n I saw this movie when it first came out in 197...\n The One is a very aptly name show, mostly beca...\n It's a rehash of many recent films only this o...\n This is one of the shallowest episodes in that...\n Never heard of this movie,saw it on DVD.Great ...\n Originally supposed to be just a part of a hug...\n Malcolm McDowell has not had too many good mov...\n This is a great film - esp when compared with ...\n Let me make one thing clear.for the most part...\n The number of goofs in this episode was higher...\n The idea of nine stupid prisoners escaping and...\n \"Checking Out\" is a very witty and honest port...\n This is a must for All but especially African ...\n Sorry to go against the flow but I thought thi...\n this independent film was one of the best film...\n all i can say is that each time i see CONRACK,...\n While the soundtrack is a bit dated, this stor...\n Edmund Burke said that \"all evil needs is for ...\n I'm a huge Randolph Scott fan, but this film i...\n This is a good film for 99% of the duration. I...\n \"House of the Dead 2: Dead Aim\" (2005) is the ...\n Valley Girl is an exceptionally well made film...\n This film has to be one of the most boring fil...\n This movie introduces quite an array of charac...\n This is like \"Crouching Tiger, Hidden Dragon\" ...\n Wow, I hated this movie. The subject matter sh...\n first off, i'm amazed to see that this film ha...\n Normally I love finding old (and some not-so-o...\n I've heard a few comments, particularly from p...\n I have some great memories watching \"Robin of ...\n Why does this have such a low rating? I really...\n Everyonce in a while,4kids brings new shows to...\n Inspired casting, charming and witty throughou...\n Van Damme. What else can I say? Bill Goldberg....\n I first saw this film when I was flipping thro...\n Wings Hauser and son, Cole Hauser team up to m...\n This movie has it all. Sight gags, subtle joke...\n I am an avid fan of Lucio Fulci, and yet I mus...\n Norman, Is That You? was (this is all third ha...\n For me too, this Christmas special is one that...\n Against my own better judgment I went to see t...\n Maybe I'm biased to foxes, fox stories and all...\n I think scarecrows are creepy, so it's a pity ...\n Shocking, well-made chiller is an undervalued ...\n argh! this film hurts my head. and not in a go...\n I've seen this film several times in a variety...\n Ed Gein: The Butcher of Plainfield is set in t...\n I mean, I thought I heard this dialog in the m...\n Like I said its a hidden surprise. It well wri...\n Some people might consider this movie a piece ...\n This film tackles the subjects of loss, person...\n After starting watching the re-runs of old Col...\n This film is hilarious. Brilliant comedy, but ...\n This is a fantastic series first and foremost....\n Lizzie Borden's Love Crimes is an important fi...\n This could be well have been THE definitive fi...\n One Crazy Summer is a fun and quirky look at l...\n While a bit preachy on the topic of progress a...\n Cuba Gooding Jr. and Ed Harris are touching. T...\n Brokedown Palace is the story of two best frie...\n This was the worst acted movie I've ever seen ...\n Publicity for this film suggests that it is sh...\n I really love this show, it's like reading a b...\n An atrocious offense to the memory and genius ...\n I'm glad I didn't pay to see 'The Wog Boy'.<br...\n Calling this a romantic comedy is accurate but...\n Having seen the short a number of times at hor...\n This game has the(dis)honor of being the first...\n This movie has too many things going on. Anoth...\n For years I hesitated watching this movie. Now...\n Sure this movie wasn't like. 16 blocks, inside...\n Working girl Kitty (Sothern) is engaged to Bil...\n Comedy? What's so funny about watching an ugly...\n I've loved this movie ever since it first came...\n This cartoon was strange, but the story actual...\n Now i have never ever seen a bad movie in all ...\n This movie was one of the worst I've ever seen...\n Before I comment about this movie, you should ...\n The movie is really about choices. In the oppr...\n If you want to waste a small portion of your l...\n It looks like people involved with this movie ...\n Never mind the serious logic gaps, never mind ...\n The Presentation is VERY shabby. (to my notion...\n I caught up with this movie on TV after 30 yea...\n This film basically try to portray the heroism...\n Only the Antichrist could have been behind suc...\n Kate is a jaded young woman who has trouble me...\n In this film I prefer Deacon Frost. He's so se...\n Stay Alive has a very similar story to some As...\n Having seen three other versions of the same f...\n I have seen this film three times now, and eac...\n Ik know it is impossible to keep all details o...\n So, neighbor was killing neighbor. Reminds me ...\n Beautiful film, pure Cassavetes style. Gena Ro...\n In World War II, a badly burned amnesiac known...\n I rented this movie about 3 years ago, and it ...\n I'm a Boorman fan, but this is arguably his le...\n We've all got to start somewhere, it was in fi...\n I can't believe this isn't a huge cult hit. Pe...\n When I was younger, this movie always aired on...\n The title doesn't make much sense to me. I'm n...\n What can I say? I couldn't sleep and I came ac...\n This movie was a major disappointment on direc...\n Will Smith is perfectly endearing as the \"Rela...\n The Ballad of Django is a meandering mess of a...\n \"Don't bother to watch this film\" would be bet...\n As a youth pastor I heard good things about th...\n The 1994 film production of Heart of Darkness ...\n I don't know, maybe I just wasn't in the mood ...\n This is one of the most underrated movies of t...\n This movie is truly amazing,over the years I h...\n This movie was excellent. It details the strug...\n The picture is developed in 1873 and talks as ...\n This can be one of the most enjoyable movies e...\n After their star cross-country runner dies aft...\n The movie Jennifer with Ida Lupino and Howard ...\n Historical drama and coming of age story invol...\n Soylent Green IS...a really good movie, actual...\n The only thing I expected that this film didn'...\n I love these actors, but they were wasted in t...\n There are no spoilers here... Because there is...\n For the most part, I only enjoy the kind of mo...\n I originally posted the first user comment on ...\n I disagree with much that has been written and...\n Snakes on a Train is a movie I rented due to t...\n I've always found the dilettante Man Ray and h...\n Greenthumb Grace is left penniless after her h...\n When HULK hit theaters in 2003, it wasn't long...\n ***SPOILERS*** Well made and interesting film ...\n He really lost the plot with this one! None of...\n Being a fan of Saint Etienne and the City of L...\n I laughed out loud several times during this f...\n 'Moonstruck' is a love story. There is not one...\n College students, who are clearing out a conde...\n Don't you just hate them slashers that never s...\n This film is being described as a comedy, but ...\n What is the most harrowing movie ever made? Th...\n I watched all three segments and am so disappo...\n well done giving the perspective of the other ...\n This is the worst sequel on the face of the wo...\n I just rented this today....heard lots of good...\n Forget Jimmy Stewart reliving his life and opt...\n Patricia Arquette plays American doctor Laura ...\n It might be a stretch saying this as a die-har...\n I can't believe they even released such a movi...\n I was rooting for this film as it's a remake o...\n How is it in this day and era, people are stil...\n \"It wasn't me! It was, er, my twin brother Rup...\n Great documentary about the lives of NY firefi...\n I'm going to write about this movie and about ...\n This movie is best described or compare to \"Bi...\n The final installment sees Sho Aikawa and Riki...\n FOLLOWING the business coup of the year of 194...\n There are good movies, and there are bad movie...\n The movie \"MacArthur\" begins and ends at Gen. ...\n I was reading in a Stuff Magazine about some o...\n Few people realize it, but there was world lit...\n It's a shame that this piece of work wasn't ac...\n When I was over at Hollywood video I looked th...\n This is one of Barbara Stanwyck's earlier film...\n Saw this film at the NFT in London where it wa...\n I wholeheartedly disagree with the other viewe...\n It WAS supposed to be the last Freddy movie (a...\n This has got to be the WORSE move I've EVER se...\n I really love this movie!!! I haven't played F...\n We bought this film from a shop called Poundla...\n Certainly one of the finest movies I have seen...\n It may not have had the big budgets, celebriti...\n First of all, no one with any law enforcement ...\n I really tried to like this film about a docto...\n I was at Wrestlemania VI in Toronto as a 10 ye...\n One of the worst movies I've ever seen. Acting...\n The word 'classic' is thrown around too loosel...\n Cobb. It sucked. I learned nothing about the m...\n Though it had the misfortune to hit the festiv...\n Through the years I've been very much interest...\n Anyone who will pay to see Troma movies knows,...\n Many of these other viewers complain that the ...\n It's really annoying when good movies like thi...\n I didn't like watching DS9 compared to other S...\n Leon Errol handles his double role of Uncle Ma...\n This is one of those \"so bad it is good\" films...\n This film, Blade Master, may be cheap, clumsy ...\n Loved it! This has to be the best horror flick...\n this is the most overrated show on television....\n I watched Sleeper Cell with a bit of trepidati...\n I am shocked. Shocked and dismayed that the 42...\n Despite some occasionally original touches, li...\n if i had watched this movie when i hit rock bo...\n No matter how well meaning his \"message\" is - ...\n ''Wallace & Gromit in The Curse of the Were-Ra...\n The voyage here is a search for God, the big g...\n Louis Khan was one of the most influential arc...\n If I rate the film maybe a bit high, you can b...\n All of David Prior's movies are terrible on al...\n Wow! An amazing, lost piece of Australiana AND...\n What a great movie!! It's a touching story abo...\n If I hadn't been forced to watch this for work...\n Strangeland (1998) D: John Pieplow. Kevin Gage...\n As long as you go into this movie with the und...\n I had a bad feeling when I saw the cheap title...\n Seriously, I can easily stomach a lot of on sc...\n A movie theater with a bad history of past gru...\n The first time I saw this film, I wanted to li...\n I have watched some pretty poor films in the p...\n The fact that a film is on DVD doesn't guarant...\n I'm not a huge Star Trek fan, but I was lookin...\n I loved the gorgeous Greek scenery but the sto...\n I remember this game. It was always sitting on...\n OK i own this DVD i got it new at amazon... i ...\n A splendid example of how Hollywood could (and...\n Attack Force has a horrendous title, and can a...\n \"The Secretary\" is one of those cheesy, cliche...\n I've watched a lot of television in my 51 year...\n I don't understand how this garbage got on the...\n First of all this was not a three hour movie -...\n The first noticeable problem about this awkwar...\n This has got to be the worst horror movie I ha...\n A good picture is worth all the words. This fi...\n I have just finished watching this movie, and ...\n I don't remember seeing another murder/mystery...\n This is a weak sequel: it lacks the interest a...\n The hysterical Hardware Wars is finally out on...\n This was an interesting study in societal sexu...\n I would give this a zero if they had that rati...\n Apart from having the longest reign in British...\n This film is a sleeper because Rod Steiger's i...\n Ah, Lucio Fulci, rest in peace. This infamous ...\n The idea that anyone could of concocted such a...\n What can be said of the compelling performance...\n I watched this movie a couple of days ago in a...\n Ok, everybody agreed on what was the best seas...\n First off, I have been a fan of the show back ...\n This is one of those movies that I've seen so ...\n The coming attractions to \"The Order\" make it ...\n An absolutely baffling western featuring flash...\n Since starting to read the book this movie is ...\n ***spoilers***spoilers***spoilers***spoilers<b...\n Well Folks, this is another stereotypic portra...\n This movie was SO stupid~!!! I could not bare ...\n Getting Eaten By A Bunch Of Snakes Is More Ent...\n I just watched it last night and it was great....\n Although allegedly autobiographical, this movi...\n (spoilers??)<br /><br />I wasn't sure what to ...\n I saw this film when it first came out and hat...\n I've never saw the first three, but I know the...\n Maybe we Aussies just have a totally different...\n Drive was an enjoyable episode with a dark end...\n I have always been a huge fan of \"Homicide: Li...\n Unfortunately this film, 54 was a pathetic att...\n This is another classic Seagal movie. He walks...\n The one who says that Lucio Fulci is not one o...\n Rated E <br /><br />I never actually owned a N...\n Ok, I wrote a scathing review b/c the movie is...\n When you get your hands on a British film you ...\n Featuring a few of Hammer's all-stars, this hi...\n \"Xizao\", is the tale about the clash of modern...\n I normally don't like romantic films, but I lo...\n I loved this show but then I don't remember ev...\n Now this is classic. A friend of mine told me ...\n This video guide was the masterpiece of the ye...\n Camp Blood is an absolutely atrocious slasher ...\n The cookie-cutter gets to work overtime in thi...\n Note: After writing this review I see that thi...\n Boring, predictable, by-the-numbers horror out...\n After seeing only half of the film in school b...\n After three hours in the Cinema hall,the stron...\n Probably one of the prime examples of followin...\n Don't believe all of the negative reviews this...\n Best show since Seinfeld. She's really really ...\n The first step to getting off of that road tha...\n Seriously any film with John Malkovich is usua...\n One of my favourite films. It has everything -...\n Having watched the first scene, I realized the...\n Eric Phillips (Don Wilson) is a secret service...\n I enjoyed watching Cliffhanger, at the beginni...\n After his earlier movie \"Videodrome\", which de...\n Naturally Sadie is by far the worst show i hav...\n I see a lot of people liked this movie. To me ...\n I don't know how anyone could hate this movie....\n I loved this thing. The most wonderful thing a...\n Gurinda Chada's semi-autobiographical film (20...\n This is what I call a \"pre Sci Fi; Sci Fi\" mov...\n Easily one of my favourite dramatic TV films, ...\n Here's the kind of love story that I do enjoy ...\n Cyber zone, as this DVD was sold in Oz, is abo...\n Its taken a few viewings for me to really wrap...\n <br /><br />Everything is relative seems to be...\n There have been many movies featuring Bigfoot,...\n Y'know, it's very interesting watching this......\n Aussie Shakespeare for 18-24 set.with blood ,b...\n Horrible acting, horrible cast and cheap props...\n In the wake of the matrix this travesty of a f...\n I enjoyed this series, but felt that the whole...\n Although too young to remember the first showi...\n I knew five minutes after the monster made his...\n Notable only as the acting debut of future big...\n It's very simple to qualify that movie: \"A PUR...\n OK...this MAY contain Spoilers...but who reall...\n Maybe it's just because I have an intense fear...\n It's been a looooonnnggg time since I saw this...\n If there's one good suspenseful film, this is ...\n An unconventional historical drama, with some ...\n I caught this show a few times when I was youn...\n \"All men are guilty,\" says the chief of the po...\n I generally LIKE watching Burt Lancaster's fil...\n Errol Flynn at his best as Robin Hood of the W...\n Used to watch this when i was very little, the...\n This is a title in search of a movie. It's a p...\n If you're a long-time fan of the Doctor and yo...\n I have seen this movie and in all honestly was...\n For a \"no budget\" movie this thing rocks. I do...\n This Roscoe \"Fatty\" Arbuckle comedy is best re...\n Interesting concept that just doesn't make it....\n The Frozen Limits is a big screen vehicle for ...\n First off, I'm not here to dog this movie. I f...\n Why Jessie Matthews, one of Britains top music...\n \"Mishima: A Life in Four Chapters\" is a visual...\n this movie is trash because, out of many reaso...\n Jim Carrey and Morgan Freeman along with Jenni...\n Barbara Stanwyck gives this early Douglas Sirk...\n Great movie. Post-apocalyptic films kick ass. ...\n But not too hip. And not too wisecracking. \"Ju...\n not many people outside poland have had an opp...\n A classy film pulled in 2 directions. To its a...\n This movie is the worst I've seen in the last ...\n Above all, you must not take this movie seriou...\n Another made for TV piece of junk! This is an ...\n May I never have to go to this hospital [or ho...\n Minor spoilers<br /><br />First I must say how...\n As a word of explanation, Disney's \"The Kid\" h...\n Cruel Intentions 2 is bloody awful, I mean ube...\n The ScareCrow was on of the funniest Killers I...\n Being a fan of cheesy horror movies, I saw thi...\n <br /><br />I used to like some of the Hollywo...\n This Was One Scary Movie.<br /><br />Brad Pitt...\n This picture reminds me of a Keneth More pictu...\n Anyone who has experienced the terrors of divo...\n The directing is brilliant, the casting is rem...\n This is a children's TV series about a Mary-Su...\n This is a pretty well known one so i won't get...\n Enough is enough...sometimes they just need to...\n This film was the first British teen movie to ...\n Saw this film during the Mod & Rockers fest in...\n Take \"Rambo,\" mix in some \"Miami Vice,\" slice ...\n this movie is not as bad as some say it is inf...\n It is a shame that this series hasn't been rem...\n Martin Ritt's first film offers an exceptional...\n And a rather Unexpected plot line too-for the ...\n Being one of the founding fathers of my region...\n Also known as the Big Spook War. The Great Yok...\n The opening of \"The Jungle\" promises us a safa...\n This film is one of the best of all time, cert...\n In celebration of Earth Day Disney has release...\n This is definitely one of the best kung fu mov...\n The girls might be prettier if you're their ac...\n (Very light spoilers, maybe.) <br /><br />Norm...\n This movie pretty much surprised me. I didn't ...\n In a recent biography of Alec Guinness I could...\n Best of the Zorro serials and one of my favori...\n The show is about two sisters living together....\n The line, of course, is from the Lord's Prayer...\n I loved watching the original Azumi with its m...\n Leaving aside the drawbacks and deficiencies o...\n I cannot argue with other comments that the st...\n On the basis of the preview I'd seen, I went t...\n <br /><br />If you like rap or hip-hop, watch ...\n *I mark where there are spoilers! Overall comm...\n This film is not funny. It is not entertaining...\n Evening is an entertaining movie with quite so...\n There can be no questions of spoilers for this...\n If you are used to seeing Gabriel Byrne in ser...\n Besides Planes, Trains and Automobiles and Unc...\n This was a great movie but it had the worst en...\n It's difficult to know where this adaptation s...\n Watched this film at a local festival, the Sil...\n Though it hardly compares to other sci-fi film...\n This is one of those topics I can relate to a ...\n How often do you see a film of any kind that h...\n First of all, this movie is 34 minutes long, w...\n The 60's is a great movie(I saw it completely ...\n I think I've seen all of the Grisham movies no...\n First when does this storyline take place? It ...\n Another Raquel Welch Classic! This Picture hit...\n This stalk and slash turkey manages to bring n...\n This is one of the most satisfying of the book...\n I agree with the comments regarding the downwa...\n So many people loved this movie, yet there are...\n New Year's Day. The day after consuming a few ...\n It seems that Hack has been described as un-re...\n This movie is just about as good as the first ...\n In one respect, it's like 'The Wizard of Oz,' ...\n Black Water, co-directed and written by David ...\n L'Homme Blesse is not for an impatient, advent...\n Though I've yet to review the movie in about t...\n I really liked TWO COYOTES. One of my friends ...\n Here we have the inimitable Charlie Chaplin fo...\n This movie moved me more than I was expecting,...\n A small pleasure in life is walking down the o...\n The Order starts in Rome where the head of a s...\n Stu Ungar is considered by many to be the grea...\n Deathstalker is directed by John Watson and it...\n A vastly underrated black comedy, the finest i...\n Slipknot is a heavy metal band from the great ...\n I was shocked by the ridiculously unbelievable...\n The `plot' of this film contains a few holes y...\n I remember seeing this one in the theatres whe...\n some would argue this is better mainly because...\n If you loved Long Way Round you will enjoy thi...\n This movie makes me want to throw up every tim...\n I saw this on the Sci-Fi Channel so I knew it ...\n I enjoyed this movie okay, it just could have ...\n When one thinks of Soviet cinema, the propagan...\n Sigh... what can I say? <br /><br />Why does a...\n Been lurking for a couple of years or so. I ha...\n Milla stands out in this movie because of her ...\n I enjoyed this film. The way these mutants loo...\n It's important to check your expectations when...\n From the late Sydney Pollack comes a grown up ...\n I'm not sure what. I just couldn't laugh at it...\n Pandora's Clock is among the best thrillers yo...\n I wasn't able to last ten minutes on the this ...\n A message movie, but a rather good one. Outsta...\n In Michele Soavi's confusing art-house zombie ...\n It's Showtime! Showtime is simply a bump in Ed...\n I will commend it in only one respect.. it was...\n Oh, Yawn. Not another chick flick where the me...\n This waste of time is a completely unnecessary...\n Utter dreck. I got to the 16 minute/27 second ...\n This is a terrible movie, and I'm not even sur...\n Nickelodeon has gone down the toilet. They hav...\n The 1960's were a time of change and awakening...\n More entertaining than all the gay orgies in \"...\n I do agree that though this story by Melville ...\n My wife is a mental health therapist and we wa...\n Without being really the worst science fiction...\n Generally speaking, I'm a an admirer of Jess F...\n I mean really. This is not going to help the A...\n Why did they change the cute, Rugrats televisi...\n When the movie first started I thought cheesy....\n This is by far the most awful movie I have eve...\n For getting so many positive reviews, this mov...\n Before I'd seen this movie I've heard a lot of...\n The moral of this show is that bad eating habi...\n I thought this movie was LOL funny. It's a fun...\n i don't know why, but after all the hype on NP...\n Comment? Like my comment is necessary? We are ...\n This is at least the third remake of this movi...\n - A small time hood tricks the local mob boss ...\n Steven buddy, you remember when you said this:...\n Given the title and outlandish box art, I was ...\n This parody is cleverly done: from the songs (...\n I was having just about the worst day of my li...\n \"This might mean the end of the white race!\" g...\n Francesca Annis, Michael Kitchen AND Robson Gr...\n The school nerd Marty (Simon Scuddamore) is se...\n THE KITE RUNNER is one of those modern epics t...\n I have seen many good Korean Movies including ...\n I love this film. It's one of those I can watc...\n I stumbled across rerun syndication of this sh...\n To paraphrase Thora Birch: \"I kind of like thi...\n \"You're not going to shoot those little creatu...\n Loony Tunes have ventured (at least) twice int...\n Back in the 1960's, those of us who were bad m...\n Yes, I am just going to tell you about this on...\n I hope that Matt Dorff's original script for t...\n I think they really let the quality of the DVD...\n Oliver Stone is not one to shy away from a mov...\n Oh my god! The Beeb hit a new low with this gu...\n Anthony Mann's westerns with Jimmy Stewart are...\n \"Zen and the Art of Lanscaping\", written and d...\n The TV show was slow moving and the 'offbeat' ...\n It has been said, \"a city on hill cannot hide ...\n I love low budget movies. Including those that...\n I never really watched this program before alt...\n I went into this movie perhaps a bit jaded by ...\n Sholay: Considered to be one of the greatest f...\n It gets really bad. The only half-way redeemin...\n This DVD is barely 30 minutes long, and has du...\n \"Nuovomondo\" was a great experience. Many film...\n This movie is terrible. Carlitos Way(1993) is ...\n The beautifully engaging song with the same na...\n This movie is really nerve racking Cliffhangin...\n Incredible. Does it get any dumber than this? ...\n This, without any doubt, is the greatest spin ...\n Enough talent and sincerity went into making t...\n Kristine Watts (Molie Weeks) is broken apart, ...\n As a geology student this movie depicts the ig...\n I really didn't like this movie because it did...\n The sight of Kareena Kapoor in a two-piece bik...\n this film was just brilliant,casting,location ...\n John Cassavetes' \"Opening Night\" is fantastic ...\n The Daily Mail's Christopher Tookey had some c...\n The fact that this movie is bargain basement q...\n I guess this movie will only work on people wh...\n I feel conflicted about this film - it is one ...\n The acting was very sub-par, You had Costas Ma...\n Drawn by Pain is easily one of the best pieces...\n When the trailer for Accepted first came up, m...\n Greetings again from the darkness. Insight int...\n I really enjoyed this movie. It was edgy witho...\n i would have given this movie a 1 out of 10 if...\n I basically skimmed through the movie but just...\n This is a clever story about relationships and...\n That is the best way I can describe this movie...\n I appreciate the need to hire unknowns for the...\n \"Escanaba in da Moonlight\" is the first showca...\n I happened into the den this morning during th...\n The third film from the Polish brothers is the...\n What makes this one better than most \"movie mo...\n Streisand fans only familiar with her work fro...\n Oh, the horror, the unspeakable horror of this...\n I wish I was first exposed to this in a movie ...\n I loved the story. Somewhere, a poster said th...\n You know, after the first few Chuck Norris mov...\n I took part in a little mini production of thi...\n I decided to watch this movie because it has b...\n 83 minutes? Nope, this thing is 72 minutes, to...\n \"Death Lends A Hand\" is one of the pivotal ear...\n John Boorman's 1998 The General was hailed as ...\n Strictly a routine, by-the-numbers western (di...\n Without doubt the best of the novels of John L...\n There is absolutely nothing to redeem this mov...\n Sammi, Curr a metal rock god, they tried to st...\n I thought that this movie was pretty lame. If ...\n One of my favorite movies to date starts as an...\n This was a great movie, I would compare it to ...\n Can't believe that Bostock's Cup isn't availab...\n I absolutely adored this movie. For me, the be...\n I am writing this after just seeing The Perfec...\n James Gandolfini is a good actor so what ever ...\n A tight-knit musical family, cranky-benevolent...\n Somewhere, on this site, someone wrote that to...\n The satirical movie website Dateline Hollywood...\n This movie was Jerry Bruckheimer's idea to sel...\n Some kids are hiking in the mountains, and one...\n I found this movie to be very well-paced. The ...\n For me personally this film goes down in my to...\n This movie is definently a horror movie and if...\n After watching the Next Action Star reality TV...\n I LOVE the Doodlebops. My son has been watchin...\n They changed the title of this atrocity to An ...\n This is a film that everyone should watch. Qui...\n IT IS So Sad. Even though this was shot with f...\n The word \"1st\" in the title has more ominous m...\n Time and time again, I've stated that if peopl...\n I saw this movie in the theatre and it was a t...\n By the time the Hellraiser franchise was reach...\n The opening flourishes left me purring with de...\n The Merchant of Venice is a fantastic movie. I...\n Ok first of all, this movie sucks. But lets ex...\n I liked most of the dialogue, I liked the cast...\n i am a big fan of karishma Kapoor and Govinda....\n Terrible action movie in which lead Franco Ner...\n Lame, cliched superhero action movie drivel. I...\n I really wanted to like this movie, but it nev...\n Another reason to watch this delightful movie ...\n A top notch Columbo from beginning to end. I p...\n When I saw on the voting panel that some peopl...\n I had watched \"The Eye\" before I watched this ...\n To be totally honest I wasn't expecting much a...\n I loved this movie. Great storyline and actors...\n I do have the `guts' to inform you to please s...\n Not a `woman film' but film for the gang. One ...\n With so many horrible spoof movies, this is sa...\n \"The Ballad of the Sad Café\" worked hard at it...\n **SPOILERS**Actually based on the novel \"The B...\n The Buddy Holly Story is a great biography wit...\n The only reason I haven't given this film an a...\n The Cameraman's Revenge is an unusual short no...\n The movie has a great written genre story. It ...\n This reminded me of Spinal Tap, on a more seri...\n Generally I like something light and fun, so t...\n A antique shop-owner in NYC, played by Joanne ...\n The Chasers War On Everything. 5 words that I ...\n I almost stopped watching Hindi movies because...\n George Cukor's The Women remains one of the gl...\n I'm not a stage purist. A movie could have bee...\n I'm amazed that I have a real affection for th...\n As many of today's movies are guilty of, the p...\n I really enjoyed watching this movie! Only a f...\n Yeeee-Haa! <br /><br />I have seen it argued t...\n A friend of mine loves tacky horror films so I...\n Cage (1989) was another one of those low budge...\n 4 Oscar winners, Karl Malden, Sally Field, Shi...\n Anna Christie (1931)<br /><br />On its own ter...\n the first toxie film was dark, gory, and hilla...\n OK Clara Bow silent film from 1927, it's a spi...\n Asterix and the Vikings is the first animated ...\n Not since Bette Davis's 1933 vehicle \"Ex-Lady\"...\n Probably the most accurate Stephen King adapti...\n the actors cannot act. all dialoague was plagu...\n Love Trap is not a short, it's quite obviously...\n Beats me how people can describe this adolesce...\n From the start this film drags and drags. Clum...\n This was a pretty good movie, I liked it. I th...\n Scarecrow is set in the small American town of...\n Anna Christie (Greta Garbo) returns to see her...\n I did a screen test and read the script for th...\n This film is really quite odd. Clearly certain...\n I am sure I'm in the minority (I know I am amo...\n What a strangely wonderful, if sometimes sligh...\n I was attracted to this film by its offbeat, l...\n If this is not heavily featured on every list ...\n While being an impressionable youth when first...\n I may not have the longest of attention-spans,...\n Linking story: another first-time viewing for ...\n I fell asleep on my couch at 7:35pm last night...\n I have seen this movie plenty of times and I g...\n This movie had a very unique effect on me: it ...\n (Warning: May Contain Spoilers) Let Rosalina h...\n I just watched this today on TV. It was on ABC...\n I love this film. It is well written and acted...\n Oh dear... as an Englishman, and a small part ...\n OK, first of all, who in their right mind woul...\n I just watched The Convent for the second time...\n I got interested in this movie because somebod...\n Linda Blair has been acting for forty years no...\n ... The reason I like this movie so much is be...\n Parrots? PARROTS? I have been around this old ...\n who's responsible for these \"behind the scenes...\n Lt. Claude (Claudio Cassinelli) and several pr...\n Leos Carax is brilliant and is one of the best...\n I don't know where this movie was shot, but be...\n Back in my days as an usher \"Private Lessons\" ...\n I readily admit that I watch a lot of really b...\n There are 21 comments as I add mine to this li...\n 'A Smile LIke Yours' is a pathetic comedy that...\n This is a movie that should be seen by everyon...\n A buddy and I went to see this movie when it c...\n Why every horror director wants to imitate \"Th...\n I can't believe that so much talent can be was...\n I've watched the movie actually several times....\n François Villon was a real-life poet and rogue...\n I agree that this film is too pretentious, and...\n Not since Spongebob Squarepants have i seen a ...\n Don't get me wrong, Dan Jansen was a great spe...\n The answer.....No, sadly not. Though miller an...\n There needs to be a 0/10 option for bilge like...\n This is how i felt while watching this film. I...\n Extremely disappointing film based on the Jame...\n Not having seen the film in the original theat...\n This is an excellent documentary about a story...\n Very good except for the ending which was a hu...\n I read a lot of high hopes from readers of the...\n \"Bye Bye Birdie\" isn't one of the best musical...\n Saw this as a young naive punk when it was fir...\n The Bermuda Triangle ,we are told in this wast...\n After watching this on the MST3K episode, I ha...\n Boring movie. Poor plot. Poor actors. The movi...\n This is not a boring movie, the audience might...\n i tried to sit through this bomb not too long ...\n Joe D'Amato might have made some other notable...\n I made the big mistake of actually watching th...\n I love to see a female protagonist, in this mo...\n *** Contains spoilers ***<br /><br />A lovely ...\n This animated movie is a masterpiece! The narr...\n SPOILER - This film gives away plot points and...\n In comparison to other \"sand and sandal\" fare,...\n Why do all movies on Lifetime have such anemic...\n It is like what the title of this thread say. ...\n If you're looking for a movie that puts you to...\n I picked up this movie and was horrified to fi...\n This is not great cinema. The film is cliche r...\n Personnaly I really loved this movie, and it p...\n First, the current IMDb plot description seems...\n If you want a serious laugh pain, watch this m...\n Carlito Way, the original is a brilliant story...\n The lovely Eva Longoria Parker plays Kate, who...\n If this is based on the true-life relationship...\n More like psychological analysis of movies, bu...\n This is a straight-to-video movie, so it shoul...\n A combat veteran, fresh from completion of nin...\n This was the second MST3K'd movie I ever saw, ...\n Wagon Master is a very unique film amongst Joh...\n This is a cute and sad little story of cultura...\n The film is a pathetic attempt to remake Ingma...\n oh boy !!! my god !!!! what a movie this one !...\n This is probably the worst movie I've seen in ...\n Geesh, I never, ever, ever thought I'd write t...\n Cliché-ridden story of an impending divorce - ...\n John Thaw, of Inspector Morse fame, plays old ...\n Deliverance is a stunning thriller, every bit ...\n I was mighty impressed with Nurse Betty all th...\n I cant believe it! I thought this is a good se...\n Impressed! This is the worst SRK movie and one...\n An unoriginal, overly predictable and only mil...\n Look at the all the positive user comments of ...\n I saw this movie yesterday and thought it was ...\n Do not be mistaken, this is neither a horror, ...\n I usually don't categorize a moving as boring....\n SPOILER WARNING<br /><br />We've all heard the...\n I don't know where to start; the acting, the s...\n Thomas Edison May Have Done Lots Of Great Inve...\n I first saw this movie when I was a freshman i...\n This is a painfully slow story about the last ...\n Joel schumacher Made a heck of a choice when h...\n An interesting slasher film with multiple susp...\n i watched this series when it first came out i...\n Once again Jet Li brings his charismatic prese...\n I rented this movie, after hearing Chris Gore ...\n This was a big disappointment for me. I think ...\n Not a movie for everyone, but this movie is in...\n This film is not your typical Hollywood fare, ...\n RKO Radio Pictures made a real classic in 1947...\n \"Transylvania 6-5000\" is an insignificant but ...\n This is a very good, under-rated action/drama/...\n I almost made a fool of myself when I was goin...\n \"You got any beans? Beans is good. You just ea...\n These immortal lines begin The Jack Starret di...\n When this movie was first shown on television ...\n These type of movies about young teenagers str...\n I am not sure who recommended Surveillance to ...\n This really is a movie that you need to see tw...\n My friend made me sit down and watch this film...\n My boyfriend and I both enjoyed this film very...\n Flashes of lightning; a sprawling cemetery; th...\n Let me be clear. I hate these kinds of movies....\n If you're familiar with the work of auteur Joh...\n This was one of my favorite movies from childh...\n Previously, I wrote that I loved \"Titanic\", cr...\n This movie probably never made a blip on the r...\n The dazzling seventeen-minute dance sequence o...\n This show is amazing! I love each and every ep...\n This Columbo episode is probably noted more fo...\n Jonathan Rivers (Michael Keaton) suddenly beco...\n The sound in this movie is a nightmare. That i...\n *Spoilers* Some people claim that Natural Born...\n I bought this movie at a thrift store. Months ...\n This movie was perhaps the biggest waste of 2 ...\n I first saw this movie on television some year...\n A few thoughts before I get to the heart of th...\n this is the worst film i have ever seen and wh...\n This is a movie about the music that is curren...\n The stories were pretty weird, not really funn...\n The various Law & Order and CSI franchises had...\n There are actually some good reasons, why a pe...\n Dig! I would say to anyone even if you don't l...\n I happened upon this film by accident, and rea...\n Just finished this movie... saw it on the vide...\n I saw this movie when it first came out. It wa...\n As over the past ten years or even longer the ...\n In this 'sequel' Bruce is still called Billy L...\n A young man, who never knew his birth parents,...\n C'était complètement minable : à fuir absolume...\n A French film Ester Williams would love. But t...\n and a 30,000$ budget and this movie still look...\n OK, why complain about this movie? It's fictio...\n Music videos are often completely disregarded ...\n If you went to this movie to see some huge aca...\n Ed (Kel Mitchell) is a teenager who lives for ...\n THE BROKEN is part of the After Dark Horrorfes...\n I totally disagree with the other reviews.All ...\n A blockbuster at the time of it's original rel...\n This was a disappointment - none of the nuance...\n Not to be confused with the above average supe...\n This is an example of why the majority of acti...\n I had never seen such an incredible acting job...\n Jill Dunne (played by Mitzi Kapture), is an at...\n There's a thin line between being theatrical a...\n Life is comprised of infinite possibilities; s...\n The concept for Sarafina appears to be a sound...\n Unfortunately, this film is typical of the wat...\n Proud as i am of being a Dutchman, i'm truly s...\n In 1987, John Hughes wrote and directed 'Plane...\n Perhaps it's me and my perverted ways, or the ...\n I simply give this a three because it fulfille...\n The critics didn't like this film. It bombed i...\n I've seen this movie when I was young, and I r...\n Plot in a nutshell - Duchess (voice of Eva Gab...\n Brilliant adaptation of the largely interior m...\n There are a lot of 'bad' films out there. Tune...\n This movie starts out great, and sucks you in....\n I just saw this movie (mainly because Brady Co...\n This movie is based on a Stephen King novel in...\n I first saw this as a kid (THE LITTLE RASCALS ...\n I loved this show. I was waiting for it to com...\n I had hoped this movie was going to be mildly ...\n Knights was just a beginning of a series, a pi...\n This film held my interest from the beginning ...\n After a humiliating experience on an airplane,...\n To me, this review may contain spoilers, but I...\n It does not surprise me that this short (91 mi...\n Michael Jackson's Thriller (1983) has to be th...\n When this was first aired on Masterpiece Theat...\n Nicolas Cage and Deborah Foreman provide stunn...\n OK...this one's a weirdy....Honestly, I can't ...\n Barney is about \"IMAGINATION\" what you guys do...\n From the stupid \"quaint African natives\" trave...\n Claudine is a movie that is representation of ...\n I first saw this movie on IFC. Which is a grea...\n I got this movie from eBay mainly because I'm ...\n Halfway through Lajos Koltai's \"Evening,\" a wo...\n One of Starevich's earliest films made in Fran...\n I know that to include everything in the book,...\n The Man with the Golden Arm (the movie) is a d...\n Ten years ago I really wanted to see this movi...\n This movie was strange... I watched it while i...\n With Goldie Hawn and Peter Sellers in a movie ...\n \"Phantasm\" of 1979 was a highly atmospheric, c...\n I had to rent a couple of movies for my little...\n I saw this movie on Comedy Central a few times...\n Excellent Warner Bros effort starring Errol Fl...\n I've just seen this film in a lovely air-condi...\n This movie was portrayed in the trailer as a c...\n How can a movie be both controversial and gent...\n Scintillating documentary about how a small gr...\n \"I thought I'd be locked away in a padded cell...\n You'd have more excitement cutting off your te...\n I have always said that some plays by their ve...\n One of John Ford's best films 'The Informer' d...\n Don't get me wrong, I assumed this movie would...\n I remember watching this movie with my friends...\n I know that some films (I mean: European films...\n I found this gem in a rack the local video ren...\n DRACULA 2000 is a horror film that was continu...\n One of the things that I like about PT Anderso...\n Normally when I go on a raid of the local Holl...\n In a world where humans can live forever you s...\n You have to start worrying when you see that M...\n Guilt and redemption are two of the staple emo...\n \"Shade\" tries hard to be another \"Sting\", subs...\n When a small hobbit named Frodo Baggins inheri...\n I am a guy, so i was very hesitant to watch th...\n This movie has such inexorable B class cheapne...\n Easily one of the best shows ever made, & it j...\n This film is not really a remake of the 1949 O...\n Having seen other Bollywood flicks with Salman...\n \"Inspirational\" tales about \"triumph of the hu...\n Have you ever found yourself watching a film o...\n In The Lost Son, a private eye searching for a...\n The story for the first-aired television insta...\n I was stunned by this film. I have been rentin...\n I don't know if this exceptionally dull movie ...\n Misfit recruit private Owens tests drill instr...\n I usually love these movies. Give me a good ol...\n It was originally meant to be a film that Gene...\n Not funny - how can anyone link this to Monty ...\n The original story and funny compelling charac...\n There's nothing new in this movie. Nothing you...\n Saying this movie is extremely hard to follow ...\n Robert Taylor as the mad buffalo hunter Charli...\n At first the movie seemed to be doing great, t...\n One of my favorite scenes is at the beginning ...\n Okay. You saw the film and I saw the film. Tru...\n The Farrelly brothers, Bobby and Peter, are at...\n Warning! Spoilers ahead!<br /><br /> SPOILERS<...\n I watched this film with a sort of dangerous f...\n This movie is excellent and I would recommend ...\n I lost my father at a very young age.So young ...\n I saw this movie for the first time just a sho...\n The second attempt by a New York intellectual ...\n I regret every single second of the time I los...\n Well after three times through I still have no...\n When this series aired I watched most of it. I...\n \"Sleeping With the Enemy\" is a predictable, 'b...\n Having read all of Sarah Waters books i was ea...\n Spoilers !!! To understand what really happene...\n ***SPOILERS*** ***SPOILERS*** When I saw a pre...\n I accidentally happened upon this movie when I...\n Some Plot Spoilers Ahead.<br /><br />The Nashv...\n Along with Fernando Fragata, João Mário Grilo,...\n Kidman and Law lack the chemistry to make this...\n What an absolute joke of a movie. The case for...\n As an avid fan of Christian film, and a person...\n This 1973 TV remake of the Billy Wilder classi...\n A delightful little thriller opens with Trevor...\n NBC had a chance to make a powerful religious ...\n Oh dear! The BBC is not about to be knocked of...\n Well, if you are looking for a great mind cont...\n Something about the 40 Year Old Virgin and the...\n Whilst it is universally acknowledged that Fea...\n So well done. The photography, sound, music an...\n 2002's the Bourne Identity is one of my all-ti...\n Look as being Anglo-Irish I assure you this re...\n John Ford is one of the most influential and b...\n In 1933 Dick Powell and Ruby Keeler sang and d...\n ***SPOILER*** Do not read this, if you think a...\n Ghost Story has an interesting feminist reveng...\n Gake no Ue no Ponyo is a beautifully animated ...\n One Life Stand is an accomplished piece of fil...\n On September 11th, 2001, millions were killed;...\n When I say \" Doctor Who \" you might conjure up...\n Chris Penn is hilarious as the all-time stoner...\n I attended Camp Chesapeake. It was located at ...\n I will always think of Mr. Firth as Dorian Gra...\n Goebbels motivation in backing down was not ex...\n In Hollywood in the 1930's and 1940's, I think...\n While The Twilight Zone was a wonderful show, ...\n I'm at a loss for words. This movie is beyond ...\n The Comeback starts off looking promising, wit...\n The new voices scare me! Kuzco doesn't have to...\n Murder by Numbers is a pretty good movie. Even...\n How this film was made with so many big stars ...\n An odd, willfully skewed biopic of Dyan Thomas...\n This was an excellent show. It came on PBS bac...\n This movie has the look and feel of having bee...\n A lot of horror fans seem to love Scarecrows, ...\n Is this a game FMV or a movie? In all honesty,...\n Well, the movie was no terrible, but whomever ...\n I am not saying that Night of the Twisters was...\n Pendragon Pictures' new film \"H G Wells' War o...\n During the Civil war a wounded union soldier h...\n There are two movie experiences I will always ...\n This is a truly magnificent and heartwrenching...\n Great acting, great movie. If you are thinking...\n 1960's kid show with ex-vaudevillians playing ...\n If you are looking for King Kong, you mispelle...\n Birthday Girl doesn't know what it wants to be...\n The blend of biography with poetry and live ac...\n (There are Spoilers) Driving down a lonely cou...\n And a self-admitted one to boot. At one point ...\n OK, last night I saw the world premiere of Pau...\n one word boring.<br /><br />the young demi loo...\n Be warned by the line on the back of the box t...\n Loved today's show!!! It was a variety and not...\n The story line of a man's love for an innocent...\n Hi there. I watched the first part when it cam...\n I agree that this is ONE of the very best epis...\n No matter what you've heard, \"Fame\" is not a g...\n Really it's a dreadful cheat of a film. Its 70...\n This is probably the best movie of 2002 regard...\n I know that the real story of Little Richard i...\n This movie is Jackie's best. I still cant get ...\n \"Bar Hopping\" seems to be trying to be about t...\n As a poker enthusiast I was looking forward to...\n I gotta say, Clive Barker's Undying is by far ...\n I saw this movie a time ago, because some of m...\n Don't get me wrong. \"GoldenEye\" was revolution...\n Being an Austrian myself this has been a strai...\n Yes, this production is long (good news for Br...\n A \"40 foot long\" giant mutant squid with five ...\n Jean-Pierre Melville's Le Cercle Rouge follows...\n One would think that with all the lavish care ...\n I watched this movie when Joe Bob Briggs hoste...\n \"Everything is Illuminated\" is a simplified in...\n Karen and her boyfriend Jerry move into their ...\n I have seen this movie several times, it sure ...\n WARNING! Don't even consider watching this fil...\n This documentary explores a story covered in P...\n I only wish that I had the good sense to turn ...\n I've never been a huge fan of Mormon films. Be...\n I thought it was brilliant! It was great watch...\n As a fan of history, mythology, and fantasy \"M...\n If the caper genre owes a lot to Walter Huston...\n How many of us wish that we could throw away s...\n This is a plot driven movie and extremely ente...\n All the funny things happening in this sitcom ...\n There are many good things about the new BSG: ...\n For the sake of propaganda during World War II...\n I haven't always been a fan, but the show grew...\n When I heard that Adrian Pasdar was in drag in...\n (SPOILERS AHEAD) Russian fantasy \"actioner\" (a...\n It's not a movie, but an experience!<br /><br ...\n Someone on these Boards has predicated that th...\n I tried watching this abomination of the cinem...\n This film is perfect for over the top cheesy z...\n This is another of Robert Altman's underrated ...\n This is a well directed film from John Cromwel...\n I was a little worried about actors and acting...\n You may want to know up front that I am not a ...\n This was a nice film. It had a interesting sto...\n This is one of the better Marion Davies talkie...\n Jane Russell was an underrated comedienne and ...\n To be honest, the movie was SO HORRIBLE that I...\n I'm a big fan of 50s sci-fi, but this is not o...\n This movie isn't worth going to the theaters t...\n I didn't really concentrate on the larger Geno...\n I'm Egyptian. I have a green card. I have been...\n Despite its pedigree, the most interesting thi...\n Charlie's Wilson's War demonstrates with deft ...\n This was a pretty good film. I'm not sure if t...\n I couldn't tell if \"The Screaming Skull\" was t...\n Let Freedom Ring was probably made with the be...\n I watched this because I thought there were go...\n I believe Sarafina is a tremendous effort of W...\n Most complaints I've heard of this film really...\n I know Anime. I've been into it long before it...\n This movie is just not worth your time. Its re...\n I recently (May 2008) discovered that this chi...\n Fun movie! Great for the kids - they found it ...\n Utterly predictable silly show about a man who...\n A new side to the story of Victoria and Albert...\n If you've had drama in your life, either your ...\n I wanted to see the movie because of an articl...\n It's heart-warming to see a movie that doesn't...\n After having seen and loved Postal (yes, I act...\n I saw this movie once on late night t.v. and k...\n Paul Bettany did a great role as the tortured ...\n This film is famous for several qualities: a l...\n Eh it's not really as good as the other Dragon...\n This is one of the few films where I consider ...\n This film is regarded by some as a classic - I...\n \"Joe\" is one of those movies where, although y...\n This movie was absolute trash. The director an...\n I am a big fan of horror movies, and know a lo...\n This is a little slow-moving for a horror movi...\n All you could ever hope for if your a Jackass ...\n Astronaut Steve West (Alex Rebar) and his comr...\n Well, were to start? This is by far one of the...\n ***SPOILERS*** ***SPOILERS*** Juggernaut is a ...\n Well, what can i say about this movie. I'm spe...\n There are so many puns to play on the title of...\n Child´s Play made a new genre of horror,THE KI...\n Madhur has given us a powerful movie Chandni B...\n First off, the first thing that came to my min...\n \"A Thief in the Night\" is a film that was gene...\n This movie was the worst i've ever seen.<br />...\n Who the heck had the \"bright\"(?) idea of casti...\n The story by Norman Maclean is a masterwork; R...\n This is a thoroughly enjoyable, well-acted fil...\n *Wonderland SPOILERS* <br /><br />July 1st, 19...\n As a horse lover one can only appreciate this ...\n This is a great comedy, highlighting what it w...\n The cast is admirably chosen and well-balanced...\n The movie confuses religious ethics and ideals...\n this is seriously one of the worst movies i ha...\n If you want to see real evidence of what a mis...\n Greeted with derision by most critics when it ...\n The story is about Ankush (Abhay Deol) - who i...\n Irwin Allen put all his talents behind this on...\n I think that, deep down in the darkest, slimie...\n This is probably my least favorite episode. I ...\n If you'd like a great April Fool's joke, then ...\n This \"documentary\" is a proof of talent being ...\n I wanted to watch this movie because of Eliza ...\n Christopher Guest need not worry, his supreme ...\n I didn't think it would be possible for Joe Do...\n So the Koreans are now knocking off American h...\n Simply put, the only saving grace this movie h...\n Starfucker (which reads Starstruck on my box) ...\n This movie was just plain bad. Just about ever...\n This is total swill. If you take The Devil's R...\n This is a very long movie, indeed. But it is q...\n Like many of you I am a great fan of the real ...\n 8 Simple Rules for Dating My Teenage Daughter ...\n I really seldom give either one or ten stars t...\n Dracula 3000 or Van Helsing \"Dracula's Revenge...\n Lowe returns to the nest after, yet another, f...\n Finally! Other people who have actually seen t...\n Just came back from the first showing of Basic...\n I'm fan of ART, I like anything about Art, I l...\n Years ago I was lucky enough to have seen this...\n The only reason I elected to give this flick a...\n Ordinarily, I wouldn't waste the time on revie...\n Cinderella is a beautiful film, with beautiful...\n This has to be one of the all time greatest ho...\n I haven't laughed this much in a long time - o...\n Alicia Silverstone (pre-\"Clueless\") plays a mo...\n Watch on the Rhine is one of the best anti-naz...\n I agree with most of the other guys. A waste o...\n The plot for Black Mama White Mama, revolves a...\n I agree with many of the negative reviews post...\n It only took one viewing of this dog, for me t...\n I do agree with everything Calamine has said! ...\n THE OTHER is a supposed \"horror\" movie made du...\n Okay they tell you it's real. They don't list ...\n It kept my attention to the end, however, with...\n This is a film that takes some digesting. On t...\n I actually joined this site simply to write in...\n This is yet another depressing and boring film...\n Channel 4 is a channel that allows more naught...\n I have watched this episode more often than an...\n \"The Spirit of St. Louis\" is Billy Wilder's fi...\n As Americans, we have come to expect crapiness...\n It is apparent that director, writers and ever...\n This is one of the most insipid, lackluster, u...\n This has to be one of the worst movies ever to...\n i am 13 and i hated this film its the worst fi...\n One True Thing proves that it's the characters...\n A beautiful, magical, thought-provoking and he...\n I saw this for Gary Busey and Fred Williamson ...\n There were many 'spooky' westerns made in the ...\n I first saw this when they showed this around ...\n Supposedly, director William Shatner had in mi...\n Enormous fun for both adults and children, thi...\n I liked it better than House Party 2 & 3. The ...\n Welcome to Our Town, welcome to your town? As ...\n <br /><br />This movie sucks big time. It remi...\n I saw this important intense film tonight. Its...\n I started watching this one very tensed becaus...\n Parts: The Clonus Horror is a horror all right...\n Susan Seidelman seems to have had a decent car...\n Unfortunately, I went to this movie for entert...\n Wow! A Danish movie with this kind of content?...\n I hated this movie so much I remember it vivid...\n DANIEL DAY-LEWIS does a remarkable job of play...\n I completely disagree with the other comments ...\n Actually this movie was not so bad. It contain...\n Well, Killshot is not awful, but it comes clos...\n After witnessing his wife (Linda Hoffman) enga...\n . . . And that's a bad thing, because at least...\n I can't knock this film too terribly, because ...\n I rented this TV movie version of 'Troilus and...\n As I was flipping through the channel I came t...\n total crap.<br /><br />I was kind of excited t...\n I'm not the biggest fan of westerns. My two pe...\n The Thumb idea isn't such a winner the second ...\n I loved this show. I think the first time I tr...\n I've tried to watch this so-called comedy, but...\n If extreme activities (and I don't mean the Ho...\n Harold Pinter rewrites Anthony Schaeffer's cla...\n I rank this the best of the Zorro chapterplays...\n First, this is a review of the two disc set th...\n living in Romania, i was almost stunned by the...\n Nina Foch insists that \"My Name is Julia Ross\"...\n ...may seem like an overstatement, but it is n...\n As John Grierson pointed out: \"The documentary...\n i went to see this movie with a bunch of frien...\n I loved this movie! Chris Showerman did an ama...\n Boris Karloff and Bela Lugosi made many films ...\n If the ending hadn't been so fantastically une...\n The man who directed 'The Third Man' also dire...\n Beverly garland was born in the wrong time. Sh...\n OK end of the story is - all the kills were a ...\n On paper this looked like a great concept: Ave...\n Ernst Lubitsch's contribution to the American ...\n There is something in most of us, especially g...\n I LOVE this film. It was made JUST before the ...\n Sure, it seems like there is only about 17 min...\n CITY HALL is a somewhat mixed bag. Part vignet...\n The Kite Runner began as one of those \"importa...\n While the title \"Before the Devil Knows You're...\n A good example of the differences between Amer...\n I've just finished listening to the director's...\n Famous movies are subject to Freudian analysis...\n This movie is quite possibly one of the most h...\n Paint by numbers story and mediocre acting sav...\n It's really not worthy of a 'best picture' con...\n well, i may be bias as i grew up watching a VH...\n Elvira, Mistress of The Dark, is a fun, camp h...\n AKA: Mondays In The Sun<br /><br />I have no i...\n So that´s what I called a bad, bad film... Poo...\n The main reason to see this film is Warren Wil...\n I really enjoyed \"Candid camera\" with Dom DeLu...\n Like another poster mentioned Ch. 56 (a local ...\n It's a male bashing bonanza. I saw this on Sci...\n Well I'll start with the good points. The movi...\n This was Eddie Robinson's 101st film and his l...\n I am fully aware there is no statistical data ...\n This is the one movie to see if you are to wed...\n I absolutely adore the book written by Robin K...\n The biggest heroes, is one of the greatest mov...\n Sometimes a movie cannot easily be classified....\n I'm a huge fan of legendary director Elia Kaza...\n It's a puzzle to me how this turd of a film ev...\n I have to admit that when I first heard about ...\n I hate to throw out lines like this, but in th...\n Vanaja (2006), written and directed by Rajnesh...\n This is a bad, bad movie. I'm an actual fencer...\n Even though he only made his debut film in Aus...\n It has been a tradition since my first VHS rec...\n Clouzot followed Le Corbeau, where no one knew...\n My reaction to this remake of \"The Italian Job...\n \"On a Clear Day You Can See Forever\" is nothin...\n In the Universal series of modern Sherlock Hol...\n Night of the Twisters is a very good film that...\n Not only does this movie have a great title bu...\n This film's premise is so simple and obvious t...\n A quick paced and entertaining noir set in Vie...\n Eliza Dushku is a very talented and beautiful ...\n Pieced (edited) together from dead body parts ...\n I saw this pilot when it was first shown, and ...\n In this horrible attempt at a Blair Witch mock...\n Wow! I caught this on IFC recently after I wat...\n This has to be creepiest, most twisted holiday...\n Begins better than it ends. Funny that the rus...\n This movie is suppose to be a mysterious, seri...\n Whoever made this nonsense completely missed t...\n There's something wonderful about the fact tha...\n I know that the original Psycho was a classic ...\n This is a deliriously colossal vulgar silly al...\n The movie opens up with a long single shot of ...\n A stunningly beautiful Charlotte Lewis stars a...\n No bullets, no secret agents, a story that is ...\n I have read many comments on this site critici...\n Poor Basil Rathbone, an egotistical composer w...\n Naach A more detailed review can be obtained a...\n I had the chance to watch Blind Spot in Barcel...\n On rare occasions a film comes along that has ...\n Absolutely the worst film yet by Burton, who s...\n ...the opportunity it gave me to look at Irela...\n Eight academy nominations? It's beyond belief....\n \"Talk Radio\" is my favorite Oliver Stone movie...\n Maybe you shouldn't compare, but Wild Style an...\n Cypher is a clever, effective and eerie film t...\n I believe they were telling the truth the whol...\n I clicked onto the Encore Mystery channel to w...\n Everyone who worked on this film did an AMAZIN...\n It is clear this film's value far supersedes t...\n Savage Guns (video title) is a dirt cheap, bot...\n I saw Heartland when it was first released in ...\n If you like the excitement of a good submarine...\n The murder of the Red Comyn in Grayfriars Abbe...\n This weird movie from Texas is about Fallon, a...\n Busy is so amazing! I just loved every word sh...\n Sniper gives a true new meaning to war movies....\n This is probably one of the worst movies ever ...\n I thought Choke had potential, but I thought i...\n This film is great. As often heard, it is inde...\n Unlike the other spaghetti Westerns, this one ...\n The people at ABC forgot to do their biographi...\n It is hard to screw up this story. GREAT book ...\n This movie has some of the most awesome cars I...\n Okay... for the most part, and all its cheesin...\n If you enjoy seeing what must have started as ...\n This is a great compendium of interviews and e...\n I just do not see what is so bad about this mo...\n This film is like \"The Breakfast Club\" meets \"...\n One used to say, concerning Nathaniel Hawthorn...\n It sounds a bit awkward to call a film about w...\n I was fortunate to attend the London premier o...\n I saw this film under the title of \"Tied Up\". ...\n This is an atrocious movie. Two demented young...\n I have read the book and I must say that this ...\n For a danish movie, I have to say, that this i...\n I figure the company that made this movie want...\n Jonathan Demme's directorial debut for Roger C...\n I'm a Belgian and grew up in the sixties. Most...\n I can understand those who dislike this movie ...\n This film is a masterpiece. It was exhilaratin...\n A brutally depressing script and some fine low...\n The Old Mill Pond is more of a tribute to the ...\n There are so many things wrong with this movie...\n I'm not sure what intrigues me about this movi...\n Throughout watching \"End of Days\", I got the s...\n This is a really sad, and touching movie! It d...\n I was surprised at how fascinating this movie ...\n I know that in this episode there's other stuf...\n Heya Denver fans! The animation is a cartoon's...\n Recap: The morning after his bachelor party Pa...\n I was hoping this would be of the calibre of D...\n Avida is a game of words mingling life and eag...\n Back in 1985 I caught this thing (I can't even...\n Grosse Pointe Blank was really quite a below a...\n i guess its possible that I've seen worse movi...\n What a gas of a movie! \"Film Noir\" has always ...\n It's hard to say which comes out on top, James...\n The story would never win awards, but that's n...\n This ABC straight-to-TV failure does absolutel...\n In 2006, the AMPAS awarded one of the most inn...\n Rawhide was a wonderful TV western series. Foc...\n This isn't Masterpiece Theater. You shouldn't ...\n The movie was better than what i expected. I w...\n Mirror. Mirror (1990) is a flat out lame movie...\n Disney has now made straight-to-video sequels ...\n Carly Pope plays JJ, a newly promoted Food Cri...\n This movie had an interesting cast, it mat not...\n When I saw this movie for the first time I did...\n I first watched this movie on its release in 1...\n Just like everybody else have said, the acting...\n I really enjoyed this movie - I like prison mo...\n \"Undercurrent\" features a top-notch cast of wo...\n The ABC gears up it's repertory company for an...\n This could be looked at in many different ways...\n Considering the lack of art with in African ci...\n I have to admit that i liked the first half of...\n I used to think that it couldn't get worse tha...\n When Exploiters become evangelist, they still ...\n WARNING:I advise anyone who has not seen the f...\n Its difficult to be too tough on Brad Sykes, a...\n In the words of Charles Dance's character in t...\n \"The bad dreams always come back again like un...\n I watched this film because I thought it would...\n I saw this movie last year in Media class and ...\n This movie is funny if you're the gentleman wh...\n This is a disappointing adaptation of the Jame...\n This is possibly the single worst film i have ...\n Perhaps because I was so young, innocent and B...\n I love just about everything the late Al Adams...\n Love Jones cleverly portrays young African-Ame...\n This movie was really bad. First they didn't e...\n While it does crack the odd good joke, the hum...\n I could name plenty of funny movies. There are...\n Anyone familiar with horror films knows that m...\n ALEXANDER NEVSKY is nothing short of a grand f...\n the mario series is back, and in my opinion, b...\n I watched this on an 8 hour flight and (presum...\n I saw The Greek Tycoon when it first came out ...\n I am a huge, huge fan of John Cusack, Samuel L...\n I'm surprised no-one has thought of doing a mo...\n This is the most recent addition to a new wave...\n This is a fine drama and a nice change of pace...\n This one will get reviews all over the map bec...\n In Bridgeport, the deranged high school teache...\n We all know a movie never does complete justic...\n The largest crowd to ever see a wrestling even...\n The second alternate Gundam universe tale (G-G...\n What an embarassment...This doesnt do justice ...\n It's too kind to call this a \"fictionalized\" a...\n The slasher sub-genre has been pretty much exh...\n A good idea, badly implemented. While that cou...\n NYC, 2022: The Greenhouse effect, vanished oce...\n What a GREAT movie! This is so reminiscent of ...\n DOUBLE EXPOSURE was a tremendous surprise. It ...\n No need to detail what others have written in ...\n this movie I saw some 10 years ago (maybe more...\n A great cast, a fantastic CGI monster and a br...\n This is one of those films you can have on for...\n There's a spartan, unsentimental edge to this ...\n Sex is Comedy, though not driven by a fantasti...\n I saw this movie on the shelf at Blockbuster a...\n You know a movie will not go well when John Ca...\n An art student in Rome is possessed...or somet...\n Ridiculous fluff, that compounds its error by ...\n first, i'd like to say that, while i know my s...\n Like Margot in \"Fear of Fear\" falls victim of ...\n Hari Om is about an impossible love between a ...\n It must be the most corniest TV show on the ai...\n This one's a doozy. Dating from 1949, Scene of...\n This is a haunting, powerful Italian adaptatio...\n Mann photographs the Alberta Rocky Mountains i...\n No, no, no, no, no, no, NO! This is not a film...\n I have no idea what the producers of The Shiel...\n I watched the first few episodes a short while...\n Swedish action movies have over the past few y...\n Every once in a while, a group of friends, wit...\n This is one of the worst movies I have ever se...\n When we were in junior high school, some of us...\n I love the movie, it was a very interesting fa...\n The story starts out with a soldier being tran...\n This is a very well written movie full of susp...\n \"GI Samurai\" sees Sonny Chiba and some other g...\n Pecker is a hilariously funny yet twisted film...\n A must for any punk rocker, this is the movie ...\n To be entirely frank, the popularity of this s...\n I rented this film because I enjoy watching th...\n Mighty Morphin Power Rangers has got to be the...\n By 1941 Columbia was a full-fledged major stud...\n The DEA agent's name, Anslinger, is a nice ins...\n I like Armand Assante & my cable company's sum...\n A good film with strong performances (especial...\n Spanish director Luis Buñuel career spanned al...\n I wanted to like Magnolia. The plot reminded m...\n I loves this movie,because it showed that they...\n 'Heaven's Gate' is not a masterpiece, which ap...\n I am currently on vacation in Israel for summe...\n Human Tornado (1976) is in many ways a better ...\n I've watched almost all of the Gundam/Mech ani...\n \"Stories of the Century\" was a half hour serie...\n Prue and Piper bring Dr. Griffiths to their ho...\n I've seen many horror, splatter, monster movie...\n A wonderful and gritty war film that focuses o...\n Bought this movie in the bargain bin at Rogers...\n I kind of like Bam Margera, so I was curious. ...\n This is the least scary film i have ever seen....\n Mike Nichols' film \"Charlie Wilson's War\", set...\n And that comes from someone that will withstan...\n What on earth has become of our dear Ramu? Is ...\n Come on, what is the deal with this show, Powe...\n It is movie about love,violence,illegal affair...\n What an original piece of work. I've always en...\n What a moving film. I have a dear friend who i...\n Ugh. Stephen Baldwin. I never noticed until I ...\n My baby sitter was a fan so I saw many of the ...\n This film is hard to knock. It follows in the ...\n This movie is weak ,The box-cover says East LA...\n There wasn't much thought put into the story l...\n Why is this one no good when the first one roc...\n I read the running man from Kings books as Bac...\n In what could have been seen as a coup towards...\n \"Empire Strikes Back\" director Irvin Kershner'...\n No-nonsense Inspector Hollaway (a solid turn b...\n \"Murder Over New York\" is an entertaining entr...\n Very Slight Spoiler<br /><br /> This movie (de...\n While there is a lot to recommend about Maetel...\n I took a chance on \"Hardcastle and McCormick\" ...\n When I first saw the Premiere Episode of Farsc...\n OK its not the best film I've ever seen but at...\n With a little dressing up, this movie could be...\n The movie is a riot - hilariously funny yet gr...\n Zzzzzzzzzzzz. This one came directly from the ...\n The amount of hype and the huge success this f...\n Oh, for crying out loud, this has got to be th...\n The Romanian cinema is little known out of Rom...\n This film was really different from what I had...\n I accidentally bumped into this film on Cinema...\n I enjoy watching Robert Forster. That was the ...\n I'm not really a t.v. watcher - except between...\n It makes one wonder how this show is still on ...\n Matt Cvetic is a loyal communist in a Pittsbur...\n this movie offers nothing but the dumbest conv...\n A family traveling for their daughter's softba...\n This show was appreciated by critics and those...\n This movie makes Peter an elf in Robin Hood co...\n I wish that all the mockumentaries and horror ...\n It's like a bad 80s TV show got loose and trie...\n This crock of doodoo won a award? They must ha...\n Lou Gossett, Jr. is an excellent and captivati...\n gone in 60 sec. where do i began, it keeps you...\n To start off, I love Steven Seagal, the man is...\n Everyone in a while, Disney makes one of thoes...\n First of all, ignore the comment about how Sou...\n A delightful story about two evacuees, has bee...\n Imagine Diane from Cheers, the self centered o...\n I noticed this movie was getting trashed well ...\n Americans have the attention span of a fruit f...\n I think this movie was probably a lot more pow...\n 1940's cartoon, banned nowadays probably becau...\n I don't know what movie some of these other pe...\n Mockumentaries are proliferating lately so muc...\n Lame. Lame. Lame. Ultralame. Shall I go on? Th...\n Although in my opinion this is one of the less...\n Crash is overwrought, over-thought and over-ba...\n Starts off with Fulci playing a version of him...\n I liked this movie. Unlike other thrillers you...\n This movie is great I really enjoyed it.<br />...\n There's little to get excited about \"Dan in Re...\n This new installment to the Child's Play serie...\n I'm not sure if users ought to be allowed to r...\n **Attention Spoilers**<br /><br />First of all...\n THIS FILM IS LAME, LAME, LAME!!!!! It takes a ...\n John Schlesinger's 'Midnight Cowboy' is perhap...\n Oh, the horror! I've seen A LOT of gore movies...\n i loved the great lighting and was warmed by t...\n 'R Xmas is one of the only films I've seen whe...\n It's a shame, really, that the script of this ...\n Why couldn't the end of the movie have been Se...\n This movie was really funny. The people that w...\n Of course, really experienced reviewers who li...\n Given the opposite circumstance of 2009 where ...\n In this send-up of horror films, 50's cold war...\n Not only that the VHS and DVD cover(at least i...\n When I first saw this movie, I thought it was ...\n Saturday Night Live, National Lampoon, and SCT...\n Is the Cannes controversy-meter remarkably eso...\n OK, so she doesn't have caller ID. When you ar...\n ***1/2 Out of ***** While I am not concerned w...\n A CRY IN THE DARK <br /><br />A CRY IN THE DAR...\n Liv Tyler. Liv Tyler. Liv Tyler. Yeah it's har...\n I loved it. In fact, I watched it over and ove...\n As with that film we follow the implausible if...\n I really love this movie. I remember one time ...\n Upon The Straight Story release in 1999, it wa...\n As a massive fan of the three TV series, I was...\n In the veins of Jeepers Creepers and The Texas...\n Now don't get me wrong I love bad movies... no...\n From the perspective of the hectic, contempora...\n Whenever people ask me to name the scariest mo...\n Cowboys James Stewart and Walter Brennan take ...\n I remember the days in which Kim Basinger was ...\n I saw this film a while ago on a Video CD.<br ...\n Another small piece of the vast picture puzzle...\n This movie was borderline in crude humor....I ...\n THE NOTORIOUS BETTIE PAGE Written by Mary Harr...\n The trailer goes nowhere near and only scratch...\n I admit to a secret admiration of the original...\n I supposed I was actually expecting a Bollywoo...\n I don't know which was worse, the viewer's mad...\n I grew up (b. 1965) watching and loving the Th...\n The main character is a whiny, irresponsible s...\n Without going into any details of a good...if ...\n Jim Varney's first real movie is quite a delig...\n This is the kind of film they used to make, am...\n The person's comment that said that Pat Robert...\n Lois Weber's film \"Hypocrites\" was and still k...\n What a stupid idea. Ewoks should be enslaved a...\n I give this piece of Hollywood trash 1 out 10!...\n For some unknown reason, 7 years ago, I watche...\n So then... this is what passes as high art for...\n Some days ago, in Rome, a young Romanian man w...\n 1914 was an amazing year for Charlie Chaplin. ...\n Grave robber is sitting in his cell awaiting e...\n Rex Reed once said of a movie (\"Julia and Juli...\n This movie has to rank with \"Welcome to the Ju...\n Many Americans are lazy, and this has manifest...\n I really can't understand how could someone gi...\n I don't dislike Cary Grant but I've found his ...\n I watched this film in a very strange way -- I...\n I'm not sure what I can add that hasn't alread...\n This film could of been a hell of a lot better...\n The storyline is absurd and lame,also sucking ...\n From today's point of view it is quite ridicul...\n Daniel Day Lewis in My Left Foot gives us one ...\n Wow, umm this was a very, how to say it, diffe...\n This movie has a few things going for it right...\n \"House Of Games\" is definitely not without its...\n This film was seen by my wife and I when it ca...\n I just saw this movie and all I can say is, wh...\n An insult to both poker and cinema, this movie...\n I didn't mind all the walking. People really d...\n Farrah Fawcett gives the best performance by a...\n when fellini committed 8 1/2 to film many comm...\n I've read just about every major book about th...\n This is the best movie I have ever seen. It ha...\n Greetings again from the darkness. Based on th...\n I love this show!<br /><br />Every time i watc...\n Rosenstrasse is more an intimate film than one...\n I for one have shamelessly enjoyed every episo...\n Our Family and friends enjoyed this movie very...\n I found Super Troopers only mildly amusing at ...\n SPOILER: The young lover, Jed, is kicked out b...\n My friends and I rented this movie simply to s...\n Most of Chaplin's most famous films are his fu...\n Barney teaches kids nothing!!! Here are some 3...\n A wildly uneven film where the major problem i...\n The movie features another exceptional collabo...\n This is a better adaptation of the book than t...\n This show is totally worth watching. It has th...\n \"Three Daring Daughters\" is a sickly sweet, ro...\n wow, how can I even discuss this movie without...\n Though I saw this movie years ago, its impact ...\n Although the concept of a 32 year old woman po...\n This movie looked like it was going to be real...\n Evil Breed is a very strange slasher flick tha...\n A woman's nightmares fuel her fear of being bu...\n First time I saw this movie was in the eightie...\n i couldn't help but think of behind the mask: ...\n The first episode set the bar quite high i tho...\n This movie was bad but it was so bad that it m...\n And I would have rated it higher than a 7 out ...\n Damon Runyon's world of Times Square, in New Y...\n I saw Grande Ecole at its world premiere on th...\n What a crime...<br /><br />You forgot to brush...\n OK, yes its bad, yes its complete fluff, yes i...\n The first of two Jim Thompson adaptations rele...\n Love sublime says the title. Another blurb dur...\n This is one of the funniest movies I've ever s...\n When this film was made, the hippie thing had ...\n Cinderella In my opinion greatest love story e...\n Or at least you feel pretty high after this mo...\n I pity people calling kamal hassan 'ulaganaaya...\n The year 1995, when so many people talked abou...\n For any fan of Nickelodeon who used to watch t...\n I've got to say it. Gary Busey saved this film...\n I liked this a lot. In fact, if I see it again...\n I caught this at a test screening. All I can s...\n I remember this movie in particular when I was...\n I would suggest that Only the Valiant is one o...\n This is so blatantly a made-for-TV ripoff of B...\n This would have to be by far the greatest seri...\n \"North & South\" the television mini-series is ...\n As you may know, the subject here was to ask e...\n I saw the description of the movie on TCM and ...\n Should I have expected anything other than put...\n I had a recent spectator experience with The P...\n I find Herzog's documentary work to be very un...\n It´s all my fault. They all told me I should a...\n First, I must point out that the role Wendell ...\n 'The Luzhin Defence' is a good film with fine ...\n This movie was excellent. A sad truth to how c...\n Like other movies from the worst director ever...\n Ex-reporter Jacob Asch (Eric Roberts) is hired...\n This is the movie that epitomizes the D&D fear...\n Much worse than the original. It was actually ...\n \"Still Crazy\" is without a doubt the greatest ...\n A movie like this makes me appreciate the work...\n I couldn't believe that the Adult Swim guys ca...\n Okay, I agree with all the Barney haters on th...\n From the very beginning I was so excited to se...\n I'm not sure what the director and editor were...\n Ching Siu Tung's and Tsui Hark's A Chinese Gho...\n You could have put the characters on the islan...\n Some less than inspired opening string music n...\n There are many people in our lives that we mee...\n 11 Oscar nominations and zero win!!! Am yet to...\n This very funny British comedy shows what migh...\n i did not expect to enjoy this. in truth i wat...\n I've seen The Blob several times and is one of...\n I saw Anatomy years ago -- dubbed at a friends...\n Perhaps the most polished and accomplished of ...\n Not for those adrenaline maniacs etc It's a go...\n While it comes no closer to the Tarzan of Edga...\n The initiation to the local sport team involve...\n Nicole Finn (Madonna) is just being released f...\n Usually I'm the one criticizing the twenty-som...\n Especially for a time when not much science fi...\n A fairly typical Australian movie where the un...\n Sidney Young (Pegg) moves from England to New ...\n First-time director Tom Kiesche turns in a win...\n This is a case where the script plays with the...\n In this follow up to The Naked Civil Servant w...\n For Native Mongolian speakers the film lacked ...\n I must admit, when I read the description of t...\n I think it is saying something that the Bollyw...\n I used to watch Pufnstuf every weekend when I ...\n This movie was an amazing tribute to whoever h...\n This self-important, confusing b+w \"film\" watc...\n Tough guys, sexy women, lots of swearing, and ...\n This is really a new low in entertainment. Eve...\n i did not read the book. nor do i care to. the...\n Let me get this straight... \"The Church\" has a...\n Basically, take the concept of every Asian hor...\n Yet again, early morning television proves an ...\n I've been scolded and scorned by fellow Christ...\n This movie is up there with the all-time class...\n Ever since I can remember and I'm only 18 my m...\n what kind of sh*t is this? Power rangers vs Fr...\n Guy de Maupassant was a novelist who wrote a n...\n I am shocked to see that this movie has been g...\n I'm a big fan of H. P. Lovecraft's books, and ...\n Maybe it's just a personal affection for this ...\n This can hardly be called a good movie, actual...\n Wow, well, you know those shock things they us...\n Louise Brooks gives a wonderful performance in...\n Terrible psychological thriller that is almost...\n Isn't it strange how crap-movies always tend t...\n First and foremost I am a gay man, although do...\n Historically accurate? Hmm... Perhaps... if yo...\n Made with film stock left over from the produc...\n I have to say the worst part of the movie was ...\n Scanners II: The New Order is just as good as ...\n I will never, ever forget watching this show a...\n Well, I was excited at first to download an an...\n Along with In the Army!, this ranks as one of ...\n Warning, spoilers ahead (even if I doubt that ...\n I don't know where to begin, so I'll begin wit...\n Somebody owes Ang Lee an apology. Actually, a ...\n I just watched this movie for the second time,...\n i'm watching this horrid film as we speak. it ...\n I am very thankful that the small college town...\n This is the worst adaption of a classic story ...\n There really are no redeeming factors about th...\n Some of the posters seem less than gruntled be...\n This is the most human and humane of movies th...\n The Swedish filmmaker Roy Andersson's latest f...\n This film stars, among others, \"SlapChop\" Vinc...\n \"Tintin and I\" first of all struck me as a mas...\n A famous conductor decides after a heart attac...\n I am an avid fan of violent exploitation cinem...\n This movie is so irredeemably bad, NOTHING abo...\n I can't believe how many people hate Hal Spark...\n I'm an opera buff, and operas are full of sex,...\n I have never seen a worse movie.<br /><br />It...\n This story was never among my favourites in Ch...\n It would require the beauty and eloquence of S...\n Okay, make no mistake - this is a pretty awful...\n To be fair, I didn't see a lot of this show. P...\n I've always liked Johnny Concho and I wish thi...\n First things first, this movie is achingly bea...\n Only once in a while do we get an R-rated come...\n Somewhere in his non-fiction book DANSE MACABR...\n This movie has a very hard-to-swallow premise,...\n The original Thunderbirds earned a place in TV...\n Now for sure, this is one of the lightest-hear...\n Anita and Me seems to be little more than an e...\n I suppose if you like endless dialogue that do...\n This movie and its subsequent TV series follow...\n This may be the worst show I've ever seen. Asi...\n I've never expected too much from a film by tr...\n who reads these comments may think we may have...\n Something somewhere must have terribly gone wr...\n This is a classic animated film from the carto...\n We have a character named Evie. Evie just want...\n This was the next to last film appearance by J...\n 1st watched 10/28/2007, 8 out of 10(Dir-Jesus ...\n Excellent film. Suzy Kendall will hold your in...\n Talking about competition features at the Spli...\n I give this movie a 4 cause I'm a die hard fan...\n Are we serious??? I mean wow ... just, wow. I ...\n I have no respect for IMDb ratings anymore. I ...\n As a huge fan of horror, I had given up on the...\n \"Dragonlord\" sees Chan returning to his role o...\n Watching Floored by Love one thought comes alm...\n Masters of Horror: Right to Die starts late on...\n As the summary says you just made the most ign...\n Why? Why did they make this movie? If Timothy ...\n As a semi-film buff, I had heard of this infam...\n So, I'm wondering while watching this film, di...\n There is no way to describe how really, really...\n I saw this film at the Rotterdam International...\n John Waters owes me 2 hours of my life back. I...\n I remember this bomb coming out in the early 8...\n Sex is a most noteworthy aspect of existence. ...\n Okay, when it comes to plots, this film is far...\n I love basketball and this seemed like an intr...\n Contrary to most other commentators, I deeply ...\n Even though some unrealistic things happen at ...\n THE MAN IN THE WHITE SUIT, like I'M ALL RIGHT ...\n \"Stargate SG-1\" follows the intergalactic expl...\n Perhaps it's because I am so in love with the ...\n Good Lord... How this ended up in our DVD play...\n Documentaries about fans are always mishmashes...\n ****SPOILER ALERT**** My boyfriend, some frien...\n This is a 1972 Disney movie. For the time, I w...\n Jack Frost 2, is probably the most cheesiest m...\n I am a VERY big fan of Jenna Jameson, but this...\n Casting unknown Michelle Rodriguez as Diana wa...\n Oh my gosh!! I love this movie soooooooooooooo...\n This if the first movie I've given a 10 to in ...\n This was incredible, meaning that it was hard ...\n Progeny is about a husband and wife who experi...\n I have seen a lot of movies...this is the firs...\n I grew up in New York City and every afternoon...\n I really don't have anything new to add but I ...\n Maybe it is unfair for me to review this movie...\n If you want a complete waste of time, because ...\n This show started out okay, but then it turned...\n In this \"critically acclaimed psychological th...\n Having read the books and seen the 1982 Anthon...\n I had the distinct displeasure of seeing this ...\n I work with children from 0  6 years old and ...\n On the surface, \"Show Me The Money\" should hav...\n Bela Lugosi as God? Transvestites discussed in...\n 1st watched 4/30/2009 - 4 out of 10 (Dir-John ...\n Classic, highly influential low budget thrille...\n I expected a lot more out of this film. The pr...\n This was the first movie I ever saw Ashley Jud...\n I just recently saw this movie in hopes of see...\n I remember watching this movie when I was youn...\n Annie's wig does not look good. she is not cut...\n Few movies can be viewed almost 60 years later...\n This movie was an embarrassment. Ulma Thurman ...\n This is one of the worst movies I've ever seen...\n There is no doubt that Alfred Hitchcock was a ...\n This is one of the best thrillers I've seen. I...\n My daughter, her friends and I have watched th...\n Pretty.<br /><br />Pretty actresses and actors...\n After gorging myself on a variety of seemingly...\n There is an interesting discussion in this mov...\n ... ever! (I always wanted to write that:) Man...\n \"A death at a college campus appears to be a s...\n Faithful adaptation of witty and interesting F...\n I have seen Maslin Beach a couple of times - b...\n i like Jane Austin novels. I love Pride and Pr...\n I bought \"Rocketship X-M\" on DVD in a two-pack...\n Fantastic Chaplin movie with many memorable mo...\n The odd thing about Galaxina is not that it is...\n I've been strangely attracted to this film sin...\n A typical Goth chick (Rainbow Harvest looking ...\n This is an almost action-less film following J...\n This is another great movie I had the good for...\n ... so I thought I'd throw in a few words abou...\n Am I the only person who saw and remembers Ama...\n Slow but beautifully-mounted story of the Amer...\n This film has a very simple but somehow very b...\n I am a great fan of the Batman comics and I be...\n I had read many good things about this adaptat...\n This film seems to get bad critiscism for some...\n Crush provides a combination of drama, humor a...\n For those that are great fans and collectors o...\n It was considered to be the \"Swiss answer to t...\n My evaluation: 8/10<br /><br />I like a lot th...\n I was told it was one of those \"either you lov...\n \"Disappointing\" is the best word I could think...\n Rented the movie as a joke. My friends and I h...\n Creepshow 2 had a lot of potential, they just ...\n MARY, MARY, BLOODY MARY is an OK time killer. ...\n First of all, I'm upset there's no choice of a...\n Unspeakable starts in Los Angeles with Jim (Ro...\n I first seen this movie in the early 80s and w...\n I think this is the best Norwegian movie I've ...\n I came across this movie back in the mid eight...\n Possibly the worst film within the genre in ex...\n In the hands of a more skilled director, this ...\n I have seen this movie, just once, and I'm loo...\n We loved this movie because it was so entertai...\n This show had pretty good stories, but bad dia...\n I thought this movie was too absurd for me to ...\n I saw this movie today at the Haifa Film Festi...\n Had this movie been made a few years later, I ...\n What is contained on this disk is a first rate...\n Abhay Deol's second film, written by Imtiaz Al...\n This utterly dull, senseless, pointless, spiri...\n This is a fine, under-rated film and Rip Torn,...\n This film has special effects which for it's t...\n This 1925 film narrates the story of the mutin...\n I enjoyed this movie a lot. I thought that the...\n Aside from the gunfight scene, I felt the movi...\n Mainly a biography of a lustful doctor, \"Rober...\n If there were two parts that the physically to...\n Seeing this movie in previews I thought it wou...\n Action, horror, sci-fi, exploitation director ...\n VIVAH in my opinion is the best movie of 2006,...\n I'm sorry, but I just can't help it, I love wa...\n It utterly defeats me why Godard is taken so s...\n Ok, let me say that I didn't expect a film sta...\n I thought i could see something good but... I ...\n I remember seeing this film when I was fairly ...\n Excellent film. The whole picture was filmed i...\n Hmm, Hip Hop music to a period western. Modern...\n The movie starts with a Spiderman spoof which ...\n Well, for starters, this actually was THE most...\n I thought this was an excellent and very hones...\n For those curious, this episode is based in th...\n Ram Gopal Verma usually makes so-so cookie cut...\n Sweet and charming, funny and poignant, plot l...\n Firstly I would like to point out that I only ...\n An obvious b-grade effort to cash in on the Ho...\n File this one in the `How do movies like this ...\n I can sum this movie up using 20 words or less...\n It was in 1988, when I saw \"The Ronnie and Nan...\n The opening night for the 'South Asian Interna...\n The contemporary chapter of the U.S. Navy's el...\n The worst movie I have seen in quite a while. ...\n This movie is Great! It touched my stone cold ...\n I went to see this film with fairly low expect...\n Absolutely, I agree with my previous commentat...\n As one who loves films that appeal to intellec...\n Despite what its critics ensue, I enjoyed imme...\n Rain or shine outside, you enter a movie house...\n Hello people,<br /><br />I cannot believe that...\n TRICK OR TREAT is a fine example of Hollywood ...\n iv been a fan of Rik Mayall and Ade Edmednson ...\n There are exactly 2 good things to be said abo...\n This one started excellently. The photography ...\n Sri Lanka... not a country I've ever given muc...\n As with all the other reviewers, this movie ha...\n Keys to the VIP is just another one of the hor...\n I have to say, Seventeen & Missing is much bet...\n In Mississippi, the former blues man Lazarus (...\n I don't know why this has the fans it does and...\n As much as I like big epic pictures - I'll spa...\n The movie \"Atlantis: The Lost Empire\" is a shi...\n Lets face it, Australian TV is for the most pa...\n \"Cut\" is a full-tilt spoof of the slasher genr...\n I saw this movie on a show that was showing ba...\n As an amateur historian of WW2/Nazi Germany, I...\n This is one of the best films I have seen in y...\n The plot of this film is not complicated. A ve...\n this was the most pointless film i have ever s...\n i though this film was okay.i din't think it w...\n This film is hardly good, not great at all. A ...\n The digital effects were done on the cheap and...\n With the plethora of repetitive and derivative...\n The production quality, cast, premise, authent...\n I don't believe they made this film. Completel...\n This movie has been done before. It is basical...\n Here is a much lesser known 50's sci-fi with a...\n I love cheesy horror flicks. I don't care if t...\n This movie actually almost made me cry.<br /><...\n \"Roman Troy Moronie\" is my comment on the movi...\n Most of this film is an alternately hilarious ...\n I love this movie. My only disappointment was ...\n I honestly expected more from this movie. That...\n And when I watch Sarah Silverman, I get the sa...\n A concept with potential, and it was fun to se...\n I'd give it a 2/10.<br /><br />I was really, r...\n I expected this movie was originally supposed ...\n This is a very good movie. Do you want to know...\n This is one of the most daring and important o...\n Technically speaking, this movie sucks...lol. ...\n Overall the film is OK. I think it's better th...\n I saw Chomps during the - approximately - 2 da...\n I couldn't wait to see this movie. About half ...\n It's literally the Three Stooges all over agai...\n Hailing from 1988, Touch Of Death is probably ...\n Chop Shop, the second feature from Ramin Bahra...\n An OUR GANG Comedy Short.<br /><br />The Gang ...\n If this is the author's and director's idea of...\n For those who appreciate the intersection of s...\n While rehearing Carmen of Bizet, the middle-ag...\n What made the original Killer Tomatoes fun was...\n The Kite Runner was beautiful, poignant and ve...\n Despite this production having received a numb...\n Yes I have rated this film as one star awful. ...\n So Seagal plays a DEA detective named John Hat...\n This movie was a big disappointment. The plot ...\n *SPOILERS!* When I first saw the preview for t...\n This film has it's heart in the right place, b...\n What a wonderful, fanciful movie \"Stardust\" is...\n For starters, it's a very funny movie with a f...\n It's a mystery to me as to why I haven't caugh...\n I had a lot of expectations from this movie an...\n *SPOILERS INCLUDED*<br /><br />With a title li...\n This is one of my favorite films for many reas...\n THE TEMP (1993) didn't do much theatrical busi...\n The real problem with this story is that there...\n I watched this show until my puberty but still...\n As far as I know, this show was never repeated...\n 'The Big Snit' came into my life complete by a...\n Whatever Committee of PC Enforcers is responsi...\n I didn't see this movie until it appeared on t...\n The movie Angels of the Universe is a pure mas...\n I saw this at the theater in the early 1970's....\n Pakeezah has a very interesting history (which...\n The finale of the Weissmuller Tarzan movies is...\n I recently attended Sundance as I have often d...\n Going into a movie like I this, I was expectin...\n It is a superb Swedish film .. it was the firs...\n I remember watching this movie several times a...\n From the creators of Shrek.. OK, that grab...\n Watching this movie brings several words to mi...\n \"Chupacabra Terror\" is saved from a '1\" by the...\n If your expecting Jackass look somewhere else ...\n Leslie Sands' stilted play \"Deadlock\" becomes ...\n I really enjoyed this movie. The acting by the...\n Mr. Bean has always been my favorite. No matte...\n A woman borough a boy to this world and was al...\n Forget some the whiny (and pointless) comments...\n Usually when a television biopic is released o...\n It's amazing that actress P.J. Soles didn't be...\n Camp with a capital C. Think of Mask and the A...\n This is absolutely one of the best movies I've...\n \"That '70s Show\" is definitely the funniest sh...\n That's what t.v. should be. And Pushing Daisie...\n <br /><br />As I am a teenager, I have about o...\n This movie is sort of a Carrie meets Heavy Met...\n \"Descent.\" Yeah. Boy... I haven't seen anythin...\n This movies had to be the funniest movie i hav...\n It's made in 2007 and the CG is bad for a movi...\n no redeeming qualities can possibly be express...\n So it starts with a beautiful old house in the...\n Lots of flames, thousands of extras in battle ...\n Sondra Locke stinks in this film, but then she...\n Although the story is fictional, it draws from...\n Horror-genius Dario Argento is one of my perso...\n I really enjoyed this movie... In My DVD colle...\n This season lacked real oomf, but, as far as s...\n This movie was a major bait and switch. I rent...\n First off, this is an excellent series, though...\n One of the very best Three Stooges shorts ever...\n Think you've seen the worst movie in the world...\n Any time a movie feature a dwarf or a midget i...\n Geologist realizes a big earthquake is coming ...\n Not a bad movie but could have been done witho...\n this may not be War & Peace, but the two Acade...\n I dont know why people think this is such a ba...\n this is one of my favorite movies ever! along ...\n This is one of those star-filled over-the-top ...\n This is the kind of picture John Lassiter woul...\n LIFEFORCE is an extremely schizophrenic movie,...\n Having enjoyed Neil Gaiman's writing (especial...\n The first thing I noticed about this movie was...\n A collection of Deleted scenes and alternative...\n This was one of the worst Columbo episodes tha...\n I never heard of the book, nor care to read it...\n This movie is very silly and very funny. You c...\n SLIGHT SPOILERS (but it doesn't matter anyway)...\n So this ugly guy with long, nasty hair and his...\n Although I recently put this on my 10 worst fi...\n This is certainly a good film, beautifully pho...\n This is a great movie. Some will disagree with...\n Having just finished Cronicles of the Heroic K...\n While I rather enjoyed this movie, I'll tell y...\n Way to go ace! You just made a chilling, gross...\n <br /><br />Philistines beware, especially Ame...\n Wow. Who ever said that Edward D. Wood Jr. nev...\n I think this movie actually has a lot of nice ...\n <br /><br />This movie sucked! The first one w...\n Rented this tonite from my local video store. ...\n Okay, so the introduction, with its hokey offe...\n Jumpin' Butterballs, this movie stinks! It's a...\n Caught this flick as one of a five-for-$5 deal...\n I have seen many of Shahrukh's movies and this...\n One would think that with the incredible backd...\n While I agree with the previous post that the ...\n In Arlington Heights, IL we never had a cafete...\n One of the most important artistic movements i...\n I really didn't expect much from this film see...\n tell you what that was excellent. Dylan Moran ...\n Man, I went to this movie because of the great...\n This film had some very funny moments. The afo...\n Let's summarize how dumb this movie is with tw...\n Wow, the plot for this film is all over the pl...\n I might have given this movie a higher rating ...\n While possibly the stupidest, most tasteless, ...\n So it's a little dated now, it's almost 30 yrs...\n A series of painfully unfunny skits that seem ...\n I cant explain what a load of rubbish this fil...\n Unlike endemol USA's two other current game sh...\n I first encountered this show when I was stayi...\n Art-house horror tries to use unconventional a...\n Since watching the trailer in \"The Little Merm...\n This is a pretty pointless remake. Starting wi...\n This movie frequently extrapolates quantum mec...\n Years ago, when I was a poor teenager, my best...\n Having sat and watched this film I can only wo...\n Race car drivers say that 100 mph seems fast t...\n Imagery controls this film. The characters, al...\n A masterful performance by Jamie Foxx is just ...\n I read all these reviews on here about how thi...\n OMG! The only reason I'm giving this movie a 2...\n Sad... really sad. This movie has nothing (hmm...\n It's just when a band tours, and only has one ...\n Yes 1939/Robert Donat-Greer Garson version was...\n \"Before Sunrise\" is a wonderful love story and...\n Why on earth does five US keep repeating this ...\n I may be getting ahead of myself here, but alt...\n I don't know why critics cal it bizarre and ma...\n Why was this movie made? Are producers so easi...\n Roger Corman is undeniably one of the most ver...\n So Udo Kier earned like nine bucks and free fo...\n A surprisingly great cartoon in the same leagu...\n Now, I'm no film critic, but I truly hated \"Se...\n This film is amazing and I would recommend to ...\n If you go see this movie you'll be holding a g...\n The Cheesiest movie I've ever seen, Not scary,...\n I love this movie and I recommend it to anybod...\n Thought I just might get a few laughs from thi...\n Danny Boyle was not the first person to realis...\n can someone please help me i missed the last v...\n The movie eXistenZ is about a futuristic video...\n OK, let's start with the good: nice scenery, C...\n I enjoyed two of the three movies in the \"Sara...\n Elizabeth Ashley is receiving phone calls from...\n The storyline has too many flaws and illogical...\n This movie is such a fine example of the great...\n I just finished viewing this finely conceived,...\n I have to be honest, i was expecting a failure...\n I am ashamed to have this movie in my collecti...\n Goof: Factual error<br /><br />When Charlie wa...\n David Dhawan copied HITCH and such an unoffici...\n Don't be fooled by the plot out-line as it is ...\n I saw this on Mystery Science Theater 3000, an...\n An art teacher comes across an antique wooden ...\n If you watched this movie you know why I said ...\n I want to start my review by thanking the make...\n Words cannot begin to describe how blandly ter...\n I read the book and the book was fascinating.<...\n The pace of the film is ponderously slow in pa...\n i would have to say that this is the first qua...\n I'm glad Cage changed his name from Coppolla a...\n This movie comes down like a square peg in a s...\n Come on. Anyone who doesn't understand the gre...\n First off, I just watched a movie on SHOWTIME ...\n Let's face it, a truly awful movie, no...I mea...\n This is an excellent film for female body-buil...\n The first of the official Ghibli films, Laputa...\n This movie reminded me that some old Black & W...\n I'm totally agree with GarryJohal from Singapo...\n This film brought me to tears. I have to say, ...\n \"Opera\" is a great film with some wonderful,im...\n this show is the best it is full of laughs and...\n OK, look at the title of this film.<br /><br /...\n Having lived in Ontario my whole life, in the ...\n I don't like Sean Penn's directing very much, ...\n While browsing the internet for previous sale ...\n This movie probably isn't the funniest I've ev...\n Okay, now I know where all those boring cop/ho...\n Story goes like this, Netflix was late sending...\n Yes, I am ashamed to admit it, but this show i...\n There must have been a sale on this storyline ...\n This is my favorite movie that portrays Africa...\n A long time ago, in a galaxy far, far away (so...\n What can I say??? This movie was so Dumb & Stu...\n This film holds 7.0 rating on IMDb, so even I ...\n Yes, Giorgio, is a feel good movie. A little r...\n Pilot Mitch MacAfee (Jeff Morrow) sees a UFO w...\n Back when musicals weren't showcases for chore...\n This movie couldn't decide what it wanted to b...\n This movie, no correction, this THING, this ab...\n Very reliable entertainment, as Las Vegas amus...\n It's nice to see a film with real people with ...\n This movie was the worst movie ever made on th...\n Maybe the subject was good, but put down to a ...\n Burt Reynolds stars as an undercover cop who i...\n The first feature-length adventure of Jim Hens...\n Well,i'm not a movie critic or something like ...\n yes, i have noticed that there are 347 other c...\n I can't understand why so many peoples praised...\n Before \"Miracle on 34th Street,\" Maureen O'Har...\n \"Panic in the Streets\" was a decent thriller, ...\n Why can't this type of compact, entertaining m...\n (WARNING: minor spoilers)<br /><br />I ran int...\n Woaww Is it only now that you notice the links...\n If you like mech war games it's pretty good. S...\n I won't mention any of the plot, because, alth...\n This is definitely the worst vampire flicks of...\n Although flawed in it's view of homosexuals, t...\n I think this movie would be more enjoyable if ...\n This is a movie about animal cruelty. Under th...\n The reason why I say this is because I wrote t...\n How much can you really say about a condom wit...\n If you liked the Grinch movie... go watch that...\n Great period piece that shows how attitudes ha...\n Bugsy Siegel was 31 when he went out to the We...\n Without wishing to be a killjoy, Brad Sykes is...\n Who doesn't know Largo Winch in the France-Bel...\n I have to admit that this \"re-imagining\" of th...\n A very enjoyable film, providing you know how ...\n I had high hopes for this film, since it has C...\n Typical formula action film: a good cop gets e...\n William Petersen (that C.S.I guy) has a small ...\n I don't really post comments, but wanted to ma...\n I have never seen a movie so bad. It's not eve...\n As incredible as it may seem, Gojoe is an anim...\n Hood of the Living Dead had a lot to live up t...\n Anyone who has read my review for Uwe Boll's \"...\n This film was a huge surprise to me while i wa...\n This is one of the greatest 80s movies!!! It s...\n Remember that friend in college who always ins...\n The movie was excellent, save for some of the ...\n Most of Wayne's B westerns are kind of fun in ...\n This was on SciFi this past weekend, and I had...\n I first saw this movie when I was about 12 yea...\n Trawling through the Sci Fi weeklies section o...\n So funny is the perfect way to describe this 1...\n A truly adorable heroine who, at turns, is sur...\n This insipid mini operetta featuring a Eddy-Mc...\n Like the great classic Bugs Bunny cartoons, th...\n This is another one of those fundamentalist Ch...\n This is a typical 70's soft core sex romp in t...\n I totally hated the movie. It was so retarded....\n The movie starts in spring 2001. A soldier nam...\n 'Thursday' is a good movie but we recognize to...\n Paul Rudnick (Jeffrey, Addams Family Values) w...\n This was so bad I can't even review it. So I'l...\n Wow. Saw this last night and I'm still reeling...\n Casper Van Dien... what can I say? I enjoy the...\n Simply one of the greatest films ever made. Wo...\n First of all, Jon Bon Jovi doesn't seem to be ...\n Above-average film and acting partly spoiled b...\n Based upon the novel The Dismissal by Ermanno ...\n The acting was horrible and they got both of t...\n The plot is about a female nurse, named Anna, ...\n The statistics in this movie were well researc...\n I love watching steven seagal movies not becau...\n The producers of this film offer to pay funera...\n 1 out of 10.<br /><br />This is the kind of mo...\n George Hilton never really grabs me like Franc...\n There are many adaptations of Charlotte Brontë...\n HANA-BI has many quiet moments and fairly slow...\n So glad I have HBO right now. I didn't plan on...\n I have seen romantic comedies and this is one ...\n **SPOILERS** With the title of the film having...\n Boasting an all-star cast so impressive that i...\n If you want to remember MJ, this is a good pla...\n This was a movie that I hoped I could suggest ...\n To put it simply, this was a pompous piece of ...\n I've been watching Buffy the Vampire Slayer an...\n I simply cannot understand how any Who fan, or...\n From the dire special effects onwards I was ab...\n <br /><br />So, not being a poet myself, I hav...\n Wizards of the Lost Kingdom is a movie about a...\n After reading the book, which had a lot of mea...\n This movie is really stupid and very boring mo...\n So bad as good - not only the script is obviou...\n Let me first state that I REALLY REALLY wanted...\n SAIMIN <br /><br />(USA: The Hypnotist /UK: Hy...\n ...Our the grandpa's hour.<br /><br />More tha...\n Pretty good movie about a man and his wife who...\n Unless you're twelve, this movie really isn't ...\n This show really is the Broadway American Idol...\n Who did the research for this film? It's set i...\n Fleet was released in 1936 during the middle o...\n this was the most costly film, when produced. ...\n Virtual Sexuality proves that Britain can prod...\n I usually try to construct reasonably well-arg...\n I loved all the other Don Knotts movies, but I...\n The movie has very much the feel of a play rig...\n Everything about this movie is perfect. The se...\n I thought this movie was fantastic. It was hil...\n What is wrong with CURACAO ( Also known as DEA...\n While exploring some caves with his wife, a do...\n This movie is about two guys who made up a spo...\n Pointless short about a bunch of half naked me...\n This is without question the worst screen adap...\n I've read countless of posts about this game b...\n Another decent offering from the pen of Vince ...\n A very addictive series.I had not seen an exac...\n I saw this at the Toronto Inter. Film Festival...\n Have to admit, this version disgraces Shakespe...\n Richard Condie is a Canadian marvel, and one t...\n I've only seen most of the series since I leav...\n This is one of the films that killed the \"spag...\n A shame that even a talented director, Desplec...\n This should be a great film... Meryl Streep an...\n An Eko-centric episode the \"?\" explores the af...\n RUMORS is a memorable entry in the wartime ser...\n Finally we get a TV series where we get to see...\n I wasn't going to watch this show. But, I'm gl...\n This programme bugs me! There is no humour to ...\n I think it is very interesting this movie is c...\n The film is a remake of a 1956 BBC serial call...\n This film is so different to anything you woul...\n Viva Variety was a unique hybrid program that ...\n The Cure is one of the few movies I rated 10 o...\n The movie starts out a bit interested with the...\n Just watched this one again. I wanted to show ...\n i think that's this is awful produced and dire...\n OK, when I say \"wow,\" I mean, \"Jesus, please h...\n One hundred and seventy five million dollars i...\n I'm sort of between the gushy review and the h...\n Ingrid Bergman is a temporarily impoverished P...\n Although DiG! was being hailed as being closes...\n I've already seen spin-offs of cartoons such a...\n This musical has a deep meaning which is appre...\n Just finished this impressively nutty affair a...\n Life is crazy. You're crazy, I'm crazy, we're ...\n Final Draft - A screenwriter (James Van Der Be...\n \"Best In Show\" tracks the stories of a handful...\n In my never-ending quest to see as many qualit...\n The film's title makes it sound like a porno b...\n I watch tons of movies and had no idea this wo...\n If you only read a synopsis of the plot, this ...\n Directed by the younger brother of great direc...\n THE BRAIN THAT WOULDN'T DIE was considered so ...\n Great screenplay and some of the best actors t...\n The best martial arts movie ever made. This on...\n Paris, JE T'AIME is a wondrous cinematic homag...\n I want very much to believe that the above quo...\n It seems to be a perfect day for swimming. A n...\n I'd passed this title 15 or 20 times while in ...\n If you are looking for a movie that doesn't ta...\n This is one of those movies that appears on ca...\n This short was director Del Lord's last and on...\n You can't watch this film for a history lesson...\n This movie was just as good as some of the oth...\n NOBODY (1999) is a fantastic piece of Japanese...\n Ah, Batman Returns, is it possible to have a s...\n Set mostly in the back streets of Toronto NG i...\n \"Four Daughters,\" a sentimental story of a sol...\n A hilarious Neil Simon comedy that evokes laug...\n I just watched this movie on Showtime. Quite b...\n Steven Seagal, Mr. Personality himself, this t...\n I am new at this, so bear with me please. I am...\n The essential message - one which Miller would...\n This movie is tremendous for uplifting the Spi...\n I think this movie is different apart from mos...\n Brit director Chrstopher Nolan now has a caree...\n The Salena Incident is set in Arizona where si...\n Set in a California detention camp in an indis...\n Okay. As you can see this is one of my favorit...\n This movie is an all-time favorite of mine. I'...\n Absolutely hilarious. John Waters' tribute to ...\n When I think 'Women in Prison', my mind often ...\n This film was made in Saskatchewan and Manitob...\n I enjoyed the previous Ittenbach movie that I'...\n Pure Orson Welles genius makes this one of the...\n I concur with everyone above who said anything...\n The action was episodic and there was no narra...\n \"Fido\" is to be commended for taking a tired g...\n This production of Oliver is masterful in show...\n The Hindi remake of Mrs Doubtfire starring and...\n I was hoping to like this movie, to settle in ...\n A bit slow (somehow like a Sofia Coppola movie...\n I find it remarkable that so little was actual...\n the hills have eyes is not a great film by any...\n After the return of \"horror movies\" (come on S...\n Once again the same familiar story about a man...\n Sistas in da hood. Looking for revenge and bli...\n ...that maybe someday people will wake up to. ...\n \"Kaabee\" depicts the hardship of a woman in pr...\n I have to say although I despise these kind of...\n The movie seems disjointed and overall, poorly...\n My first exposure to \"Whale Music\" was the Rhe...\n This movie can be labeled as a study case. It'...\n My wife and I find this movie to be a wonderfu...\n A powerfully wonderful movie. You are held in ...\n This film is a knockout, Fires on the plain re...\n This film is a quite entertaining horror antho...\n Black Rain is a superb film, but watch out for...\n I would purchase this and \"Thirty Seconds Over...\n I like a lot of the actors/actresses involved ...\n This is the most stupid movie ever made. The s...\n Norma had spent most of the 20s playing beauti...\n William Castle is notorious among horror fans ...\n This show was so exhausting to watch and there...\n ...and boy is the collision deafening. A femal...\n I caught this flick on the trail end of a tape...\n I researched this film a little and discovered...\n A hot-headed cop accidentally kills a murder s...\n Well, the artyfartyrati of Cannes may have lik...\n Any one who writes that this is any good there...\n I've read reviews of Kerching on IMDb, and fra...\n The Secret of Kells is an independent, animate...\n This is a cleaver film featuring love through ...\n All the boys seem to be sexually aroused by Ma...\n <br /><br />I rented this movie on 20 June 200...\n The best thing about this movie for me was tha...\n A very good start. I was a bit surprised to fi...\n My kids enjoyed the movie, but I was bored. Th...\n Andaz Apna Apna is by far my second favorite c...\n When it comes to creating a universe George Lu...\n The Thief of Baghdad is one of my ten all-time...\n The reviews I read for this movie were pretty ...\n Well, I bought the Zombie Bloodbath trilogy th...\n I have wanted to see this for the longest time...\n I like the concept of CSI, but the show is spo...\n This movie is a disaster within a disaster fil...\n This appalling film somehow saw the light of d...\n I remember Parker Posey on \"As The World Turns...\n I really hate this retarded show, it SUCKS! bi...\n I saw the long day's dying when it first came ...\n I really liked the first part of this film in ...\n The only thing good about this movie is the ar...\n I saw this today with little background on wha...\n Hey guy, this movies is everything about choic...\n I've always liked Sean Connery, but as James B...\n For many months I was looking forward to this ...\n I heard that after the first Oceans movie, the...\n Emilio is a successful business man, a perfect...\n I first saw this film by chance when I was vis...\n There are so many positive reviews on Return t...\n I've seen the original non-dubbed German versi...\n Luis Bunuel's \"Nazarin\" will always be remembe...\n When I saw the trailers I just HAD to see the ...\n \"Godzilla vs King Ghidorah\" is a perfect examp...\n I am a big fan of Stephen King. I loved The Ru...\n I disagree with the imdb.com synopsis that thi...\n What a dreadful movie! For some reason, scient...\n Wicked Little Things has an excellent synopsis...\n I disagree with Dante portraying the Democrat-...\n I really liked Tom Barman's AWTWB. You just ha...\n I'm proud to say I'm a student at UW-Milwaukee...\n This film is another of director Tim Burton's ...\n I did have a good time the first 45 min. or so...\n Dahl seems to have been under the influence of...\n \"The Long Kiss Goodnight\" is an enjoyable and ...\n The Bourne Ultimatum is the third and final ou...\n As I am a fan of hospital and medical shows, I...\n There is nothing good to say about this movie....\n Christine Lahti (Sandy Dunlap) and Mary Tyler ...\n I watched this movie at 3'o clock in the morni...\n Oh boy.. This movie is so mediocre I don't rea...\n This film is underrated. I loved it. It was tr...\n I don't remember too much about this movie exc...\n I don't think this can legally qualify as \"fil...\n I'm a huge comedy show fan. Racial humor is al...\n Woman (Miriam Hopkins as Virginia) chases Man ...\n A young boy sees his mother getting killed and...\n Interesting mix of comments that it would be h...\n The plot is so manipulative, counting complete...\n George and Mildred is a truly unfunny film. Th...\n Romance is in the air and love is in bloom in ...\n How his charter evolved as both man and ape wa...\n I'm astonished how a filmmaker notorious for h...\n Gino Costa (Massimo Girotti) is a young and ha...\n Yes, thats that i felt after i completed watch...\n I cannot believe someone gave this movie a 1 r...\n i actually thought this is a comedy and sat wa...\n Over the last few months, I have seen a lot of...\n I became more emotionally attached to this mov...\n I can't imagine a director whose thirst for bl...\n Surface was one of the few truly unique shows ...\n Great CGI effects & a truly Oscar-worthy perfo...\n \"The Merchant of Venice\" was one of Shakespear...\n This was an abysmal show. In short it was abou...\n This beautiful story of an elder son coming ho...\n Atlantis: The Lost Empire is a better movie th...\n All the people who voted a meager 1 on this mo...\n Greetings again from the darkness. Much antici...\n Let's put political correctness aside and just...\n I have rented this film out about 6 times! it ...\n I saw this movie at the Philadelphia Film Fest...\n \"One True Thing\" is a very quiet film, that op...\n I'm a horror movie freak, and this has got to ...\n I picked up a DVD at the 1 discount, having n...\n Italian horror/suspense film about a wealthy E...\n Since I was just finishing the book, `Mrs. Dal...\n H.O.T.S. is proof that at one time, the movie ...\n Not as bad as \"Billy Bathgate\" but close. Try ...\n This movie is truly boring. It was banned in C...\n If there is a movie to be called perfect then ...\n Dark Harbor is a moody little excursion into m...\n This show is unbelievable in that . . . what i...\n Ever since I heard of the Ralph Bakshi version...\n I walked out of this movie and I did this only...\n Once in a while, you come upon a movie that de...\n I saw this film at the Toronto International F...\n When I first watched Robotboy, I found it fres...\n This movie is great. 80's sleazy slasher movie...\n hi, im scott (A.K.A woody7739) i Love the film...\n First off, anyone who thinks this sequel to Wi...\n With its companion piece MASTERS OF HORROR, NI...\n What we have here is a damn good little nineti...\n One of the worst movies I saw in the 90s. I'd ...\n A remarkable example of cinematic alchemy at w...\n Men of Honor stars Cuba Gooding Jr., as real l...\n I watched this movie which I really thought ha...\n When I saw this movie for the first time I was...\n Douglas Sirk directs this over-acted drama abo...\n I expect the same excitement as I SPIT ON YOUR...\n If you want to see women's breasts, get a porn...\n Though a fan of shock and gore, I found this m...\n I saw this movie for the first time on NBC Fri...\n If i could have rated this movie by 0 i would ...\n Perhaps the worst of the \"Nemesis\" films (and ...\n I don't think most people give this movie as m...\n No awards show can please all the people. Clea...\n The film did not do well at the box office.<br...\n This film is a good companion to Blair Witch, ...\n Or if you've seen the \"Evil Dead\" trilogy and/...\n For anyone who liked the series this movie wil...\n Ernst Lubitsch gave us wonderful films like De...\n The relationship between the Lone Ranger and T...\n 10 out of 10, this brilliant, super documentar...\n I must admit that I was very sceptical about t...\n ... but watch Mary McDonnell's performance clo...\n Are you familiar with concept of children's ar...\n After mistaking a Halloween re-broadcast of Or...\n For a good half hour or so, I remember myself ...\n While watching the film, I'm not sure what dir...\n Sigh. I'm baffled when I see a short like this...\n The Dukes of Hazzard is quite an achievement ...\n Excellent cast, story line, performances. Tota...\n A longtime fan of Bette Midler, I must say her...\n Maybe my rating should have been a 9, but the ...\n First off... I never considered myself an Uwe ...\n STAR RATING: ***** Jodie Marsh **** Michelle M...\n Christopher Nolan had his goals set on Followi...\n \"Freddy's Dead\" did the smartest thing it coul...\n Wow, this movie really sucked down below the n...\n This is a very good black comedy, with a great...\n Definition of documentary: A work, such as a f...\n I really like Harrison Ford so I eagerly rente...\n I tuned into this by accident on the independe...\n Easily 9 out of 10 for a film by director we w...\n On one level, Hari Om is a film using a famili...\n ... to not live in Montana and especially not ...\n The only thing of interest about this movie is...\n Billy and Jade had a very close relationship t...\n Looking through the other comments, I'm amazed...\n This movie is great.<br /><br />Now, I do tend...\n This film caught me by surprise. My friend tol...\n I managed to avoid reading Hemingway in colleg...\n Anyone who doesn't think Bill and Ted's Bogus ...\n As stated by others, this is a ludicrously hor...\n Barbara Stanwyck probably didn't think of it, ...\n To start off, I didn't bother seeing The Grudg...\n Before I watched this tv movie I did not know ...\n I like this movie above all others. It is \"mul...\n A have a female friend who is currently being ...\n First of all, let me underline, that Im not a ...\n A lot people get hung up on this films tag as ...\n I'd like to start off by saying that I am NOT ...\n \"Spielberg loves the smell of sentiment in the...\n There is really but one thing to say about thi...\n This is one of the worst movies i have ever se...\n Isn't it depressing how the most violent carto...\n Pickup On South Street is one of the most bril...\n I found Darkness to be just too DARK. It had a...\n The first music video I ever saw, Thriller, my...\n Films like this infuriate me simply because th...\n I've been waiting for a superhero movie like t...\n \"Grey Matter\" AKA \"The Brain Machine\" but the ...\n What makes for Best Picture material? The Osca...\n 'Flight Of Fury' is a shockingly dire but wors...\n I hate to comment on something I didn't finish...\n Yet another film about a tortured self-centere...\n A wonderful story...so beautiful told..so inte...\n It is the best movie released in Bollywood upt...\n An American in Paris is a wonderful musical ab...\n Making the film as dark and visually fuzzy as ...\n Solomon and Sheba has come down in Hollywood l...\n What can I say? I got up this morning and turn...\n Overall, I enjoyed this film and would recomme...\n I have seen several Yul Brynner films--yet thi...\n Episode two of season one is a delightful holi...\n Not all films made in 1931 are this creaky, an...\n I am very open minded. I watch all kinds of pr...\n This is an excellent Anderson production worth...\n I got subjected to this pile one Wednesday aft...\n This show is so full of action, and everything...\n The inspiration for this film was the fact tha...\n I have to say that Grand Canyon is one of the ...\n CQ is incredibly slow, and I'm a David Mamet f...\n Follow-up to 1965's \"My Name Is Barbra\", and s...\n hello there; i would just like to say how much...\n If this is the best Commander Hamilton movie, ...\n Yeah, I know his character was supposed to be ...\n 'In The Line Of Fire' tells the story of the g...\n During the War for Southern Independence, GENE...\n This movie was a suprise for me while I was su...\n Heaven, Mary and all the Saints above! A young...\n If you are going to watch this film because Mi...\n i strongly recommend it to anybody who likes g...\n I happened to rent this movie with my sister i...\n With movies like this you know you are going t...\n Haunted by a secret, Ben Thomas (Will Smith) l...\n Omen IV: The Awakening starts at the 'St. Fran...\n Why bother to see this movie? It probably rate...\n For this review,a list of good points and bad ...\n As is the case with many films of this ilk, my...\n Lance Henriksen got paid something to appear i...\n It didn't feel like a movie, and was thankfull...\n First of all, let me say that this is not the ...\n I rented this movie with very low expectations...\n OK, so I don't watch too many horror movies - ...\n I collect films on Super-8, and managed to sna...\n I'm sorry, ELO fans, but I was disappointed wi...\n I though this would be an okay movie, since i ...\n A film to divide its viewers. Just criticism p...\n To bad for this fine film that it had to be re...\n Now, i hired this movie because Brad Dourif wa...\n After the mysterious death of an old friend,a ...\n I bought Jack-O a number of months ago at a Bl...\n My 10-year-old daughter, Alexandra, writes:<br...\n It's as if the Stay-Puffed Marshmallow Man fro...\n Kazuo Komizu strikes again with \"Entrails of a...\n After all the hype I had heard about the Jane ...\n Roy Anderssons \"Du Levande\" is not totally ori...\n Just another example of why Stepehn King's boo...\n I first saw this movie when I was in elementar...\n This was a strange kind of film about a low-li...\n I wasn't really going to comment, but then I f...\n [ as a new resolution for this year 2005, i de...\n Remarkable, disturbing film about the true-lif...\n Saw this used DVD cheap, and got it for a chuc...\n Small SPOILERS alert !!!<br /><br />Good movie...\n I have to say that this film was excellently p...\n What can I say? I'm a secret fan of 'over the ...\n Absolutely unwatchable, lowest quality film ma...\n This is a little film with a big heart. Excell...\n The show is average. It doesn't make me laugh ...\n If you have trouble dreaming you may give this...\n Along with South Pacific, Guys and Dolls is fo...\n An art house maven's dream. Overrated, overpra...\n Exciting, action-packed, and interesting film ...\n Those individuals familiar with Asian cinema, ...\n This movie was featured on a very early episod...\n People don't seem to be giving Lensman enough ...\n To be honest, I didn't like that much this mov...\n I guess this is in the public domain as its ou...\n Even when I saw this movie at a teenager, I wo...\n I probably have to blame myselfbut I sure as ...\n This movie was probably the worst movie I have...\n \"Prime Suspect 4\" continues the exploits of th...\n Yaitate!! Japan is a really fun show and I rea...\n Yes.A real stinker. I saw this movie on the ad...\n This was a good film with a powerful message o...\n Panned by critics at the time but loved by the...\n After reading the original play I thought it w...\n If we really want to get serious and find Osam...\n Ed (coincidentally an editor) is hired to cut ...\n This episode has just aired in the UK.<br /><b...\n I think it unfortunate that the leading commen...\n Looking for something shocking? Okay fine... t...\n Valentine is a horrible movie. This is what I ...\n Alexander Nevsky (1938) is a brilliant piece o...\n In one instant when it seemed to be getting in...\n Once upon a time there was a director by the n...\n Bart The Genius Whilst not the first Simpsons ...\n Tyra & the rest of the modeling world needs to...\n This is your only spoiler warning. What a sad ...\n Carla is a secretary who is essentially deaf w...\n Well, I saw that yesterday and It was much bet...\n some people think that the second series was w...\n Reading all of the comments Are very exciting....\n In one of the better movies of the year, Tom H...\n If you make it through the opening credits, th...\n Am I the only one to notice that the \"realism\"...\n Timberlake's performance almost made attack th...\n *THIS COMMENT WILL PROBABLY HAVE SPOILERS!! I ...\n This movie is a waste of time. Though it has a...\n Eight teen convicts are brought to the abandon...\n I love this movie because every single element...\n Add to the list of caricatures: a Southern pre...\n Ironically, what makes John Carpenter's \"The T...\n I found this film extremely disturbing. Treadw...\n I got this movie as a buy one get one deal at ...\n New York has never looked so good! And neither...\n I actually found out about Favela Rising via t...\n This gawd-awful piece of tripe is all over the...\n The title for this review about sums up how I ...\n I am watching this movie right now on WTN beca...\n If rich people are different from us because t...\n TART is the worst movie I've seen this year, a...\n This movie is AWESOME. I watched it the other ...\n This movie appears to have made for the sole p...\n I'm afraid I must disagree with Mr. Radcliffe,...\n \"Nero\" as the title of the movie is in Germany...\n I saw this movie a few days ago and gamely jum...\n Danny Lee's performance as a wisecracking cop ...\n this movie is ok if you like mindless action ,...\n Besides the fact that it was one of the few mo...\n Quite possibly one of the greatest wastes of c...\n This movie was made on a relatively small budg...\n The only reason any of the hundred or so users...\n A kid with ideals who tries to change things a...\n The opening credits make for a brilliant, atmo...\n This film could have been a silent movie; it c...\n Some movies want to make us think, some want t...\n this is horrible film. it is past dumb. first,...\n Although this is \"better\" than the first Mulva...\n Prince stars as 'the Kid' in this semi-autobio...\n Of course, seeing a few boom mikes doesn't mea...\n Miraculously, this is actually quite watchable...\n As well as being a portrayal of a lesbian love...\n I somehow missed this movie when it came out a...\n Wow, Stella Shorts are great! Lots of patrons ...\n What happened in the making of this movie so t...\n I gave this movie 2 instead of 1 just just bec...\n I have no idea how to describe this movie, and...\n I went into this movie determined to like it. ...\n Personally, I think the movie is pretty good. ...\n \"Lifeforce\" is a truly bizarre adaptation of t...\n This is definitely an outstanding 1944 musical...\n I have only managed to see this classic for th...\n I saw the movie at the Nashville film festival...\n Probably the worst movie I have ever seen. It ...\n Daraar got off to a pretty good start. The fir...\n Whatever happened to British TV drama? From Jo...\n Since the last horrid Astérix film and the fac...\n A modern scare film? Yep it is..<br /><br />Th...\n I wouldn't normally write a comment on-line, b...\n I was really looking forward to this show give...\n Green Eyes is a great movie. In todays context...\n It is a pity that you cannot vote zero stars o...\n OK - I gave it a \"3\" just because they obvious...\n There were only two redeeming features about t...\n This movie is a story of a Catholic nun as an ...\n Sadly this film lives up to about 1% of the hy...\n Of the three titles from Jess Franco to find t...\n Well, it wasn't a complete waste. Armand was a...\n I would love to comment on this film. Alas , m...\n What can I say? After having read Herbert's bo...\n In Iran, the Islamic Revolution has shaped all...\n I, like many people, saw this film in the thea...\n Truly a great leap forward in the perfection o...\n A nicely done thriller with plenty of sex in i...\n Vidor shines as Judith, the only truly strong ...\n Deeply emotional. It can't leave you neutral.<...\n I have to preface this by saying that I LOVE w...\n Deliriously romantic comedy with intertwining ...\n This particular film was one that I wanted to ...\n So much is wrong with this abysmal little wet ...\n Despite the famous cast this animated version ...\n This is an very good movie. This is one that I...\n This film is worth seeing since it is a classi...\n movie goers - avoid watching this movie. if yo...\n Dolemite may not have been the first black exp...\n Last night I decided to watch the prequel or s...\n Can you say \"Boring\" with a capital B! It's sl...\n I watched this movie because I like Nicolas Ca...\n \"Gargle with old razor blades. Can I help it i...\n <br /><br />Film dominated by raven-haired Bar...\n I knew it would be, but I gave it a rent for s...\n This was bad enough. I really hope that there ...\n I must admit, this is one of my favorite horro...\n With a simplistic story and an engaging heroin...\n A lot of 'alternative' comedy in Britain in th...\n The only people i would recommend this film to...\n Diane Keaton gave an outstanding performance i...\n Shamefully, before I saw this film, I was unfa...\n Evidently when you offer a actor enough money ...\n I am a huge Amy Adams fan and have been for ma...\n Don`t be fooled into thinking that this is a r...\n Wow, a movie about NYC politics seemingly writ...\n I hope whoever coached these losers on their a...\n Right this may be the wine talking but this co...\n So many educational films are nothing more tha...\n Micro-phonies is a classic Stooge short. The g...\n Superb silent version of the story of Francois...\n First, let me say that although I generally ap...\n I watched Hurlyburly as a second choice after ...\n This movie has become an iconic stand-in for w...\n Like most comments I saw this film under the n...\n THEIR PURPLE MOMENT <br /><br />Aspect ratio: ...\n On the surface, \"Written on the Wind\" is a lur...\n Renowned cinematographer Freddie Francis (Glor...\n This isn't another searing look at the Holocau...\n I bought this movie a few days ago, and though...\n This version of \"The Lost Horizon\" is actually...\n This is one of those movies that's difficult t...\n A man kicks a dog 2' in the air.<br /><br />A ...\n One of the worst films I have ever had the dis...\n This movie down-shifts from 4th into 1st witho...\n I rented domino on a whim, not even knowing it...\n 4 out of 10<br /><br />A somewhat unbelievable...\n Teenager Eddie spends his life being bullied a...\n Back in 1993 Sega released a dull, lackluster ...\n If you overlook the fact that the plot has bee...\n This movie was probably about as silly as The ...\n My comments may be a bit of a spoiler, for wha...\n Interesting way of looking at how we as humans...\n I have watched anime but I'm not a die hard fa...\n I'm trying to find something of value here. Th...\n If I could have given this film 0/10 I would, ...\n William Shakespeare probably didn't envision S...\n First off, consider that this film is nearly f...\n This adaptation, like 1949's *The Heiress*, is...\n Track Listing: 1. Spiderbait - Outta My Head 2...\n Bob Clampett's 'Porky's Poor Fish' is a so-so ...\n My observations: Postwar hilarity. Tom Drake a...\n Brilliant actors and brilliant picture!! I lov...\n I'm not a big fan of movie musicals. \"Annie\" w...\n I watched this movie thinking it was going to ...\n Critics are falling over themselves within the...\n Although I bought the DVD when it first came o...\n Yes, I sat through the whole thing, God knows ...\n Granny, directed by Boris Pavlovsky (who?), se...\n This is a very fine and poetic story. Beautifu...\n This \"film,\" and I use that term loosely, remi...\n I'm a Petty Officer 1st Class (E-6) and have b...\n This movie has got to be the biggest disappoin...\n \"Sky Captain\" may be considered an homage to c...\n This film is shoddily-made, unoriginal garbage...\n Whoever plays the part of J. Douglas Williamso...\n This isn't among my favorite Hitchcock films, ...\n The subject matter was good, direction was OK....\n You know the story of \"Sweeney Todd\" now, most...\n I'm a big fan of Kevin Spacey's work, but this...\n How any of you gave this more than 2 stars ama...\n Ed Harris's work in this film is up to his usu...\n Notorious for more than a quarter century (and...\n Towards the end of the movie, I felt it was to...\n Pandro S. Berman was \"In Charge of Production\"...\n This is one of the worst movies I've ever seen...\n 'Ray' lives on<br /><br />Ray Dir- Taylor Hack...\n This is a pretty silly film, including what ma...\n A very, very, very slow-moving, aimless movie ...\n Modern viewers know this little film primarily...\n ...because 99 out of 100 times, the producers ...\n Jacknife is a war movie that is just about as ...\n I thought the movie started out a bit slow and...\n Let's see where to begin... bad acting; I'm no...\n The Last American Virgin (1982) was one of the...\n What's written on the poster is: \"At birth he ...\n Darkman 3: Die Darkman Die is directed by Brad...\n This stirring western spins the tale of the fa...\n Being an Israeli Jew of naturally sarcastic na...\n I don't even know where to start. I did not li...\n First of all, around the time I wrote this com...\n What? You were not aware that Scooby-Doo battl...\n This was my second experience of the Monkey Is...\n I rented this obscure aussie relic a few years...\n Okay - I'll confess. This is the movie that ma...\n I'm probably one of the biggest Nancy Drew fan...\n The movie began well enough. It had a fellow g...\n I watched the Unrated version of this film and...\n Sorry. Someone has to say it. This really is/w...\n Comparisons to the original series are inevita...\n Meet Peter Houseman, rock star genetic profess...\n After enjoying this show for years, I use to d...\n I'm in awe! Wow, prepare to be blown away by t...\n i found this Robin Williams vehicle mildly amu...\n What a muddled mess. I saw this with a friend ...\n When I saw this movie, circa 1979, it became t...\n I've been intrigued by this film for a while, ...\n JP3 lacks the Spielberg touch. It's an all-out...\n I would rather have someone cut out my eyeball...\n Italian-born Eleonora has inherited from her d...\n This is my third comment here attempting to co...\n Wow, What a wonderful film-making! Mr. Im has ...\n Dennis Hopper and JT Walsh steal the show here...\n This is one of my all time favorites. It is so...\n Oooooh man was I pleased I didn't miss this. I...\n A good film with--for its time--an intense, sp...\n Jean Claude Van Damme's movie career seems to ...\n What can you say about a short little film fil...\n I never thought a movie could make me regret t...\n This was an interesting adaption of William Sh...\n If I was British, I would be embarrassed by th...\n I grew up outside of Naila Germany(where they ...\n STAR RATING: ***** The Works **** Just Misses ...\n Have just seen the Australian premiere of Show...\n I do not fail to recognize Haneke's above-aver...\n Spirit is a unique and original look at wester...\n This is probably my favorite movie of all time...\n The only reason I'm even giving this movie a 4...\n This sitcom was a big crowd puller in the year...\n Iberia is nice to see on TV. But why see this ...\n Dick and Jane Harper (Jim Carrey, Téa Leoni) w...\n To be honest, I had no idea what this movie wa...\n Probably the best Royal Rumble in years.<br />...\n ever watched. It deals so gently and subtly no...\n I love Lucy, but this movie is so wretchedly b...\n Merry madcaps in London stage a treasure hunt,...\n I have seen \"Chasing the Dragon\" several times...\n \"Death Promise\" is a lost 70's exploitation ge...\n As a true Elvis fan, this movie is a total emb...\n It was only a matter of time that a spoof woul...\n A visit by Hitler in Rome is the backdrop of t...\n Heard some good remarks about this film as bei...\n This movie made me very angry. I wanted desper...\n What a surprise. A basic copycat of the comedy...\n I saw a test screening of Blurred recently, an...\n George Armstrong Custer is known through histo...\n I LOVE Dr WHo SO much! I believe that David Te...\n Okay, first the good thing : If you saw the tr...\n \"River's Edge\" was one of the most disturbing ...\n Although Humphrey Bogart got star billing in K...\n \"Don't be greedy\" sums up the depth of this mo...\n I'm a fan of Columbo, especially on a rainy Sa...\n \"COSBY,\" in my opinion, is a must-see CBS hit!...\n Indian Directors have it tough, They have to c...\n This movie has a very simple yet clever premis...\n There are just so many things wrong with this ...\n I must admit I wasn't expecting much on this m...\n As long as you can suffer it! If you like watc...\n I saw this film last night.<br /><br />And I'm...\n If you ever have the chance to see Sandra Bern...\n This is one horror movie based TV show that ge...\n Extremely interesting and intriguing movie. Th...\n Corbin Bernsen's sent letters to four criminal...\n Almost missed it. While visiting friends in Ph...\n Another Channel 4 great canned long before it'...\n This movie was one if not the best movie I've ...\n This is a perfectly watchable adventurous movi...\n Funny how a studio thinks it can make a sequel...\n Proof, if ever proof were needed, that Hammer ...\n Baby boom was bad enough, basically making a s...\n It's hard to tell who this film is aimed at; t...\n This is a typical \"perfect crime\" thriller. A ...\n Several years ago the Navy kept a studied dist...\n The working title was: \"Don't Spank Baby\". <br...\n I give the show a six because of the fact that...\n I managed to see this at what I think was the ...\n At it's core, this is a fairly typical revenge...\n I've seen the 1973 movie Lost Horizons and rea...\n You probably all already know this by now, but...\n Nick and Kelly are ready to be married but Tra...\n I saw this movie when it aired on Lifetime bac...\n Maybe I was to young when I saw it. Perhaps I ...\n This is one seriously disturbed movie. Even Th...\n It's the 1980's and the teenagers are ready to...\n What a crazy film!It lasts 12(!) hours and you...\n What about Dahmer's childhood?- The double her...\n If you like your sports movies to be about dig...\n I bought this a while back, during a massive m...\n Another stinker from the PM Entertainment grou...\n This movie is great from start to finish about...\n This has to be the most boring movie I ever sa...\n Yeah, unfortunately I came across the DVD of t...\n I just saw this wonderfully filmed movie that ...\n Earlier today I got into an argument on why so...\n For those with access to the BBC or the CBC, t...\n Undoubtedly, the least among the Spaghetti Wes...\n This is by far the worst and most stupid show ...\n Gorgeous Techicolor production telling the unu...\n Rare and auspicious are the moments in film-ma...\n An excellent debut movie for the the director ...\n Michelle Pfeiffer and Matthew Modine are a joy...\n Here is the example of a film that was not wel...\n Although unusually in colour for a second stri...\n The second official episode of the \"Columbo\" s...\n I don't know where to begin. This movie feels ...\n This is so exciting! After I saw \"La Roue\" thi...\n I have read the 28 most recent comments by var...\n This is one of the worst films I have *ever* s...\n More directors like Nacho Vigalondo need a gre...\n Every great gangster movie has under-currents ...\n THE worst movie I've ever seen, and I've seen ...\n I thought the movie was sub-par. The acting wa...\n I have read and enjoyed many of James Lee Burk...\n It's New Year's eve, a cop-killer (in the form...\n this is what confuses me about critics and the...\n The film tells upon the title role,Danton(Gera...\n Of course the average \"Sci-Fi\" Battle Star Gal...\n Absolutely the most thoughtful, spiritually de...\n Jude Law, Nicole Kidman, and Renne Zelwigger. ...\n All I can do is laugh. Wow. I like Jim Wynorsk...\n I shall not waste my time writing anything muc...\n Diagnosis Murder has been shown on most Weekda...\n A warning to potential viewers: if you are loo...\n This is waaaaay to much.. so frustrating to wa...\n This was the WORST Christmas movie I ever saw....\n This was excellent. Touching, action-packed, a...\n \"Buffalo Bill, Hero of the Far West\" director ...\n Everyone should totally see this movie! It's f...\n as a sequel,this is not a bad movie.i actually...\n I've just seen this movie in a preview and I c...\n This TV show is possibly the most pathetic dis...\n The first film ever made. Workers streaming fr...\n Just kidding.<br /><br />Seeking greener pastu...\n This film is a total bore. Entrapment is way b...\n This was an attempt toward a romantic comedy, ...\n There are some redeeming qualities to this sho...\n I like David Hamilton's artistic photographs o...\n This film is an almost complete waste of time....\n As Roger Corman has said in an interview, low-...\n If a copy of this movie fell into the wrong ha...\n THIS POST MAY CONTAIN SPOILERS :<br /><br />Al...\n \" Now in India's sunny 'clime, where I use to ...\n My husband and I enjoy The DoodleBops as much ...\n i've just read the most recent remarks about t...\n IMDb forces reviewers to type a certain amount...\n What is most disturbing about this film is not...\n This was the best film I saw in the year 2000....\n All Dogs Go To Heaven is a movie that I have a...\n This film tops the previous incarnation by a m...\n This movie easily falls into the category of l...\n Aside from the great movie METROPOLIS, this is...\n \"Baby Face\" is a precode melodrama starring a ...\n When I was seventeen I genuinely believed Elvi...\n Well, my goodness, am I disappointed. When I f...\n This movie was terrible!I rented it not knowin...\n I can't believe I actually spent almost three ...\n This show is good. I like the acting, funny bi...\n I do think Tom Hanks is a good actor. I enjoye...\n Most of the other posts beat this movie up, an...\n My 10/10 rating is merely for the fun factor a...\n Until I saw this special on HBO, I had never h...\n This film was Excellent, I thought that the or...\n Everyone knows about this ''Zero Day'' event. ...\n Well, now that all of the director/ production...\n dont ever ever ever consider watching this sor...\n Judy Holliday struck gold in 1950 withe George...\n There is so much not to like about this show i...\n Genie (Zoe Trilling) arrives in Egypt to visit...\n The sign of a classic movie is that it ages li...\n This is one of those movies that go out of pri...\n Thunder Alley finds Fabian banned from NASCAR ...\n Excellent performance. There still are good ac...\n This movie was so great! I am a teenager, and ...\n Altered Species starts one Friday night in Los...\n The last film by underrated director Alberto D...\n Arguably this is a very good \"sequel\", better ...\n the reason why i gave this movie a 4 was for a...\n Imagine the worst thing that could ever possib...\n I like it because of my recent personal experi...\n If this movie were in production today it woul...\n I wish I knew what to make of a movie like thi...\n Oh, how the critics fell all over themselves t...\n Could someone please explain to me the reason ...\n This so called movie is horrible! The actors c...\n Yes, maybe there are parts of this film which ...\n I first saw this in the movie theater when it ...\n I have never seen a show as good as Full House...\n According to this masterpiece of film-making's...\n Well I guess I know the answer to that questio...\n Five minutes into this movie you realize that ...\n I've loved all of Cream's work, even as there ...\n I have watched this movie at least ten times. ...\n Mardi Gras: Made in china is an excellent movi...\n While I had wanted to se this film since the f...\n This movie has some fatal flaws in it, how som...\n I come to Pinjar from a completely different b...\n I went into this movie hoping for an imaginati...\n I knew this was headed for disaster after look...\n I think this film has to be one of the most mo...\n Hello Dave Burning Paradise is a film for anyo...\n Not for everyone, but I really like it. Nice e...\n The Commenter before me stated this movie is t...\n Can fake scenery ruin a picture? You wouldn't ...\n Gédéon and Jules Naudet wanted to film a docum...\n The word honor should be erased from the vocab...\n Exceptionally bad! I don't expect much from Ga...\n I used to LOVE this movie as a kid but, seeing...\n Even for the non-opera loving public the name ...\n Said to be inspired from Disney's The Little M...\n One of my favorite Hartley movies. (As if ther...\n You could say that the actors will make a movi...\n This movie had potential and I was willing to ...\n I can still remember first seeing this on TV. ...\n I recently watched Caprica again and thought I...\n Having seen the first ten episodes, I must say...\n I kept waiting for the film to move me, inspir...\n As someone who lived through,and still remembe...\n So, every year there is at least one movie, th...\n A wallflower is tossed into the sea and dreams...\n I have always been a huge fan of \"Homicide: Li...\n There are plenty of comments already posted sa...\n You know that this film is in SERIOUS trouble ...\n I must agree with the very first comment: this...\n I love Alec Guinness. And that's saying a lot ...\n John Leguizemo, a wonderful comic actor, is a ...\n Hey HULU.com is playing the Elvira late night ...\n Easily one of the best Indian films ever. Gran...\n With rapid intercutting of scenes of insane pe...\n First of all I hate those moronic rappers, who...\n Dick Tracy is one of my all time favorite film...\n I thought Besson's film managed to do without ...\n Where to begin, there's so much wrong and horr...\n ... But it is also Minnie's and Pete's too! Ye...\n This is a slow moving story. No action. No cra...\n \"twin peaks\" and \"blue velvet\" have always bee...\n this is an adaptation of a Dirk Wittenborn boo...\n Just picked this up on DVD and watched it agai...\n What's fun about Barker's Nightbreed is that i...\n I had read a few positive reviews of this film...\n I have seen this movie more than several times...\n I thoroughly enjoyed this true to form take on...\n This is, per se, an above average film but why...\n when discussing a movie titled 'snakes on a pl...\n The movie looked like a walk-through for \"Immo...\n whereas the hard-boiled detective stories of D...\n Freebird is the perfect marriage of road trip ...\n 'Sleight of Hand' is my favorite Rockford File...\n The martial arts movies got huge in the 60's i...\n This a wonderful sequel to the award winning L...\n This is the kind of film that might give you a...\n ****SPOILERS**** Buried under a mountain of me...\n I had completely forgotten about \"Midnight Mad...\n I recently started to watch this show in syndi...\n Being from eastern PA, right on the border of ...\n For Romance's sake, as a married man. The foll...\n To judge a movie just for the landscapes,decor...\n Another one of those films you hear about from...\n At the heart of almost every truly great crime...\n Looking at these reviews and seeing all these ...\n Thomas Hardy is one of my favorite authors. So...\n I'm not a Steve Carell fan however I like this...\n A lush fantasy world with quirky characters an...\n I bought this movie for 99 cents at K-mart sev...\n Oh it's so cool to watch a Silent Classic once...\n Farrah Fawcett gives an award nominated perfor...\n Scary Movie 2 is definitely the worst of the 4...\n This film must have been quietly released on s...\n This movie is stupid and i hate it!!! i turned...\n I was so excited to finally watch \"Pulse\" afte...\n This is high-gloss soft-porn; a boring soap op...\n My Take: Makes use of its familiar plot with f...\n I'm not sure quite why I clicked \"contains spo...\n I LOVED the Apprentice for the first two seaso...\n Don't get me wrong - I love David Suchet as Po...\n This movie is worse than \"heaven's gate\" or \"p...\n This is definitely a good movie unlike what ot...\n Cartoon Network seems to be desperate for rati...\n Let me start by saying that I consider myself ...\n This is by far the worst movie I have ever see...\n I think that Gost'ya Iz Buduschego is one of t...\n I really like the show!! As a part of Greek Li...\n Bloody awful! There's just no other way to put...\n Well, i can and will be very short. This is a ...\n I just have to comment on this movie because I...\n Everything this film tried to do is done bette...\n Nice way to relax. I am packing my suitcase no...\n A lovely old - fashioned thriller coming on li...\n This is the true story of the great pianist an...\n The story of \"A Woman From Nowhere\" is rather ...\n Has there ever been an Angel of Death like MIM...\n Fascinating movie, based on a true story, abou...\n I admit that the majority of this film was uni...\n The most striking feature about this well acte...\n Harvey Keital's best performance so far the ne...\n This is an interesting true story of Archie Gr...\n This one and \"Her Pilgrim Soul\" are two of my ...\n This was a very daring film for it's day. It c...\n i didn't like this movie.to me,it didn't make ...\n This movie's full title is \"Waqt: Race Against...\n ExCUSE me, but my tongue was TOO in my cheek w...\n I don't hand out \"ones\" often, but if there wa...\n Awful, awful, awful...<br /><br />I loved the ...\n If Family Guy offends you or you simply don't ...\n Disney's done it again. The company that made ...\n This movie is one of the masterpieces from Mr....\n My wife and I both remembered this film being ...\n The first time I watched Cold Case was after i...\n I rented this movie from a local library witho...\n \"The Chilling\" directed by Deland Nuse and Jac...\n I was watching TV one day with a friend and we...\n \"The Saint Takes Over\" stars George Sanders as...\n The film of Artemisia may be considered treaso...\n I'm trying to picture the pitch for Dark Angel...\n At the beginning of 'Loggerheads', we're intro...\n Will and Ted's Bodacious journey is an existen...\n This film caught me off guard when it started ...\n Similar to \"On the Town,\" this musical about s...\n I don't understand the people here. The film i...\n After dipping his toes in the giallo pool with...\n Forget depth of meaning, leave your logic at t...\n Alright, we start in the office of a shrink, a...\n I have watched this show for a while, only bec...\n Quite simply, Goldeneye is the single greatest...\n This film is shockingly underrated on IMDb. Li...\n Well the main reason I tuned in to watch this ...\n I picked up TRAN SCAN from the library and bro...\n Interesting story about a soldier in a war who...\n This movie will not sit well with some, but it...\n The Animatrix: A Detective Story is very well ...\n Leslie Nielsen hits rock bottom with this abso...\n This movie was a fascinating look at creole cu...\n A cheesy, compellingly awful (and NOT in a fun...\n How i deserved to watch this crap??? Worst eve...\n This wonderful film has never failed to move m...\n but Thomas Ian Griffith just doesn't have the ...\n The untold origin of the Lone Ranger. It shows...\n I am shocked and amazed to find reviews short ...\n This movie is not that good at all.Its pretty ...\n This film was amazing. It had an original conc...\n Kabei: Our Mother (2008) is a poetic and subli...\n I saw this movie on my local cable system unde...\n I am not even willing to vote a single star fo...\n If you like Jamie Foxx,(Alvin Sanders),\"Date F...\n Germans think smirking is funny (just like Ame...\n I saw this stage show when it was broadcast on...\n Ya. That is what I think. Sure it was still a ...\n Both Robert Duvall and Glenn Close played thei...\n That is the only question I am left with. Why ...\n I was wondering what possessed the organizers ...\n Actress Patty Duke wrote an insightful, funny,...\n I saw this movie on t.v. this afternoon and I ...\n \"Rush in Rio\" is, no doubt, one of the most ex...\n Interesting, fast-paced and amusing.<br /><br ...\n While watching this movie, I came up with a sc...\n This movie is supposed to take place in Milfor...\n As everyone knows, nobody can play Scarlett O'...\n I haven't seen this film since it came out in ...\n I'm just throwing in this review to show that ...\n I thought it was an excellent movie. Gary Cole...\n Yes, the plot is predictable; yes, there are a...\n Unfortunately, this movie does no credit whats...\n Rachael Ray appeals to viewers of all ages and...\n This is the French and Belgians doing what the...\n \"Memoirs of a Geisha\" is a visually stunning m...\n It is hard to imagine two actors of such class...\n Original Claymation Rudolph: Pretty good. Orig...\n No wonder most of the cast wished they never m...\n absolutely nothing about this movie is funny, ...\n Producer Joel Schumacher who also directed \"Ph...\n Nicely and intelligently played by the two you...\n Having recently seen Grindhouse, I was browsin...\n An absolute classic !! The direction is flawle...\n I thought this movie was excellent. Jon Foster...\n This was a watchable movie, but plot was a lit...\n Not even Bob Hope, escorted by a raft of fine ...\n From the start, you know this is a Sam Sherman...\n The next-to-last episode aired of the original...\n This Spaghetti Western uses three American lea...\n Better than the typical made-for-tv movie, INV...\n Not even worth watching this tacky spoiler rui...\n Culled from the real life exploits of Chuck Co...\n any movie that has a line of dialogue that goe...\n Geez, another Lifetime movie, but once again i...\n This movie has so many wonderful elements to i...\n Lynn Hollister, a small-town lawyer, travels t...\n Usual awful movie... I'll not bother you about...\n Love this little film, that reminds me somewha...\n I must say, when I saw this film at a 6.5 on t...\n If Saura hadn't done anything like this before...\n This movie gave me recurring nightmares, with ...\n Feature of early 21 century cinema of lets pit...\n This movie is perfect for families to watch to...\n First let me be honest. I did not watch all th...\n Some guys think that sniper is not good becaus...\n Yes, it's over the top, yes it's a bit clichéd...\n I give this movie a ONE, for it is truly an aw...\n When I fist watched the movie, I said to mysel...\n This is an astounding film. As well as showing...\n I saw this at \"Dances with Films\", and it was ...\n Ahh, the dull t.v. shows and pilots that were ...\n I've seen this movie about 6 or 7 times, and i...\n River Queen's sound recordist should have been...\n My definition of a great movie is if you want ...\n Alexander Nevsky is a series of superb sequenc...\n This early B entry into the patriotic category...\n I just watched the 30th Anniversary edition of...\n i thought id check this film out as I'm curren...\n So let me start off by saying that I saw this ...\n seriously people need to lighten up and just a...\n As a long-standing Barbra fan, any posting lik...\n I use \"Princess Raccoon\" (to give the film its...\n This film plays like a demented episode of VH1...\n If you've seen the trailer for this movie, you...\n The movie was a pleasure to watch if you are a...\n Louis Sachar's compelling children's classic i...\n If your idea of entertainment is watching grap...\n I've rarely been as annoyed by a leading perfo...\n A group of heirs to a mysterious old mansion f...\n I gave this a four purely out of its historica...\n This really is a great film. Full of love and ...\n Best around the middle, when most characters g...\n This movie shows life in northern Cameroon fro...\n How good is this film? Apparently, good enough...\n The movie was excellent, save for some of the ...\n It could be easy to complain about the quality...\n this animated Inspector Gadget movie is pretty...\n They make everything too easy in this film. It...\n I have great memories of this movie...<br /><b...\n Well, basically, the movie blows! It's Blair W...\n Wow, I've sure seen quite a bit of Kelli McCar...\n This is the most energetic and entertaining te...\n I wouldn't say this totally sucked, but if it ...\n 'The Hills Eyes II', one of the most pointless...\n Hamlet is by far my favorite of all of Shakesp...\n Joline (Heather Graham) sets out after her hus...\n The summary line is some men's wet dream for t...\n 'Deliverance' is a brilliant condensed epic of...\n By strange coincidence I've started to watch t...\n I am so angry to the point i normally down mak...\n OH MY GOD.. THE WORST SH*T I'VE EVER SEEN -thi...\n This movie was made by a bunch of white guys t...\n DON'T EVEN TRY to figure out the logic of this...\n Don't get fooled with all the big names like B...\n I was really looking forward to this movie bas...\n The monster will look very familiar to you. So...\n I just got the DVD for Hardware Wars, in a shi...\n Before the regular comments, my main curiosity...\n I rarely watch short films as they only seem t...\n I know it sounds crazy but yes, I am a huge fa...\n Walter Matthau and George Burns were a famous ...\n George & Mildred - The Movie lacks the talents...\n Loved this movie, what a hoot. Rupert and Juli...\n This movie took me by surprise. I first saw it...\n A story of obsessive love pushed to its limits...\n This movie is not a kung fu movie. This is a c...\n Two days after seeing this thing, I'm still in...\n Note: This should probably be read only after ...\n In 1984, The Karate Kid had some charm to it, ...\n I was on a mission to watch Uwe Boll movies to...\n This show is made for persons with IQ lower th...\n I suppose that today this film has relevance b...\n Flawlessly directed, written, performed, and f...\n if they gave me the option of negative numbers...\n A number of posters have commented on the unsa...\n What ever happened to shows with united parent...\n as i said in the other comment this is one of ...\n After watching the first 20mn of Blanche(sorry...\n This is the weakest of the series, not much of...\n Delightful film directed by some of the best d...\n OK another film bought by me and Joe Swatman. ...\n cool flick. enjoyable to watch. hope to see mo...\n This film can be judged from three viewpoints:...\n Eytan Fox did it again : move the viewer's hea...\n I personally found this movie to be terrible, ...\n This documentary attempts comedy, but never qu...\n Being an unrelenting non-stop over-the-top exp...\n DO NOT WATCH THIS SAD EXCUSE FOR A FILM. I hav...\n Boring children's fantasy that gives Joan Plow...\n Intruder in the Dust (1949) Dir: Clarence Brow...\n i say the domino principle is an enormously un...\n Ok, first of all, I am a huge zombie movie fan...\n This is not the stuff of soap-operas but the s...\n Far more sprightly, and less stage and set bou...\n ''The Sentinel'' is one of the best horror mov...\n The first murder scene is one of the best murd...\n Its hard to make heads or tails of this film. ...\n I put this second version of \"The Man Who Knew...\n A truly disturbed, cannibalistic psychopath, J...\n There were a lot of dumb teenage getting sex m...\n Before I saw this movie I believed there were ...\n I have no idea what on earth, or beyond, could...\n We have high expectations with this one . . . ...\n I watched this film alone, in the dark, and it...\n Another well done moral ambiguity pieces where...\n A fascinating relic of the turbulent cultural/...\n Considering it's basically low-budget cast, th...\n what a refreshing change from the PG movies th...\n The way i found out about this movie was when ...\n This is a brilliant series along the same line...\n \"I hate those stories that begin with a funera...\n Pretentious claptrap, updating Herman Melville...\n i would give this movie an 8.5 or a 9. I thoug...\n I saw this flick on the big screen as a kid an...\n I was surprised, that ''The Secret Fury'' was ...\n I never attended the midnight showing of a mov...\n \"The Triumph of Love\" doesn't triumph over any...\n Hungary can't make any good movies. Fact. This...\n Saboteur was one of the few Hitchcocks I had y...\n For the most part, I considered this movie unw...\n Stylish, thought provoking, cool and gripping ...\n It's a horror story alright. But perhaps not a...\n Once upon a time, in Sweden, there was a poor ...\n \"Nazarin\" directed by Luis Bunuel presents an ...\n there are three kinds of bad films - the cheap...\n Okay, if you have a couple hours to waste, or ...\n I was shocked there were 18 pages of good revi...\n This is the worst movie I have ever seen. A mo...\n The Japenese sense of pacing, editing and musi...\n What a disappointment!<br /><br />This film se...\n I can't quite say that \"Jerry Springer:Ringmas...\n Jackie Chan name is synonomus to stunts. This ...\n Ants are shown in cartoons as being able to ca...\n This is sweet. The actress who played the nurs...\n to communicate in film essential things of lif...\n 0.5/10. This movie has absolutely nothing good...\n After watching the trailer I was surprised thi...\n You can give JMS and the boys a pass on this o...\n Wow. This movie bored the pants off me when I ...\n \"SHUT THE FRONT DOOR\" That's what I said when ...\n I'm disappointed at the lack of posts on this ...\n This is easily the worst Ridley Scott film. Ri...\n Enjoyed catching this film on very late late l...\n Elfriede Jelinek, not quite a household name y...\n Dear Mr Dante, <br /><br />Dude, seriously... ...\n This \"clever\" film was originally a Japanese f...\n Former private eye-turned-security guard ditch...\n When I was kid back in the 1970s a local theat...\n \"The Last Hard Men\" is a typical western for t...\n A bit of Trivia b/c I can't figure out how to ...\n This was one of the shows that I wanted to fol...\n I saw this movie as a child and i am longing t...\n To call this film a disaster will be an unders...\n I'll admit that I liked the first one, and was...\n The clever marketeer is he is, Jess Franco nat...\n IF you love movies about fruity dudes who pran...\n In spite of having some exciting (and daring) ...\n One of the most interesting things is that thi...\n I should explain that as far as this trend goe...\n This film comes as the ultimate disappointment...\n Every James Bond movie has its own set of rule...\n Bhagam Bhag was a waste of money and time big ...\n This movie was terrible! My friend and I were ...\n I rented this movie because the DVD cover made...\n This movie has made me upset! When I think of ...\n this movie has lot of downsides and thats all ...\n Stalingrad is a terrific movie, well acted and...\n Having grown up in New Jersey and having spent...\n Out of the 600 or so Spaghetti Westerns made t...\n Yet another British romantic comedy which audi...\n I've read some of the comments about this film...\n For some reason I just didn't like it at all a...\n When a movie of a book seems pointless and inc...\n I cheer for films that fill in subject matter ...\n This is definitely a touching movie, and a gre...\n Very disturbing, but expertly crafted & script...\n Given that Dylan Thomas is an icon of modern A...\n Cool action - yeah the premise has been done -...\n Probably one of the worst movies ever made, I'...\n This is probably one of Brian De Palma's best ...\n I was living Rawlins when this movie was made ...\n It is unbelievable that a script as cliché and...\n I was also disappointed with this movie. For s...\n I really enjoyed this documentary about Kenny ...\n There is a reason why Jay Leno himself will no...\n Well-made but basically dreary low-life melodr...\n I read Schneebaum's book (same title as this f...\n John Carradine, John Ireland, and Faith Domerg...\n When I first heard that the subject matter for...\n This movie seemed like it was going to be bett...\n One of the worse surfing movies I've ever seen...\n This movie made me feel as if I had missed som...\n This has got to be the funniest movie I have s...\n We watched this on \"The Wonderful World of Dis...\n Anderson's animation easily rivals that of Pix...\n This is one of those movies that I watch every...\n I remember when skateboarding had it's rebirth...\n Well every scene so perfectly presented. Never...\n I really dislike both Shrek films. (Since thei...\n Turkish-German director Faith Akın (\"Head-On\" ...\n If you ever visited Shenandoah Acres as a chil...\n What The Bleep Do We Know is a deluded and hap...\n This movie was much better than I expected. ++...\n I really enjoy this film. It is a look back in...\n Cult of the Cobra is now available on DVD in a...\n Every time I see Nicole I like her more. I lov...\n My Young Auntie is unique in a lot of ways. Fi...\n What do I say about such an absolutely beautif...\n Great western I hear you all say! Brilliant fi...\n I chose \"Dead Creatures\" because I thought it ...\n horrible! All i can say is that is movie was h...\n The Bone Collector is set in New York City & s...\n If you take the movie for what it is worth, yo...\n I have not seen each and every one of Chan´s m...\n I found it real shocking at first to see Willi...\n The main character, Pharaon, has suffered a lo...\n A Blair Witch-War Movie that is as much of a l...\n Six-shooter, Tunnel Sergeant, Dr. Death, Pinhe...\n Screen treatment of the comedic Broadway succe...\n I was shocked to learn that Jimmy Caan has lef...\n I saw this feature as part of the Asian Americ...\n For anyone who has ever sought happiness, \"Hal...\n This cowardly and offensive film had me intrig...\n This is by far one the most boring movies I've...\n This is one of the few movies I watched twice ...\n D.W. Griffith could have made any film he want...\n Sorry, folks, but all of you that say this is ...\n This is an epic film about the unification of ...\n OK, if you're a woman who's got aggression iss...\n Maybe it's the dubbing, or maybe it's the endl...\n ......this film is pretty awful, the only thin...\n The worst movie I've ever seen in my life. Fro...\n I have to be honest and say I bought this movi...\n Seems to have been made as a vehicle for W.C. ...\n You know Jason, you know Freddy, and you know ...\n While on vacation on Northern Australia, Graci...\n 2 stars, and I'm being generous. (minor spoile...\n This movie had the biggest advertising campaig...\n Ms Patty Duke's story about her life and strug...\n The industry dropped the ball on this. The tra...\n Friz Freleng's 'All Abir-r-r-d' is one of the ...\n ...but it's still an entertaining TV movie. Th...\n I have to say this is better than most SyFy ou...\n Awful movie. It's a shame that a few of Flande...\n Dirty Dancing one of my MOST favorite movies. ...\n Ulises is a literature teacher that arrives to...\n \"MY WIFE AND KIDS,\" in my opinion, is an absol...\n A Must See!<br /><br />Excellent positive Afri...\n I really hope that Concorde/New Horizons wasn'...\n This documentary was my first introduction to ...\n This film proves that the \"commercial\" cinema ...\n Some people are born with mourning souls with ...\n Corky Romano has to be one of the most jaw dro...\n (Question) What do you call 100 film critics b...\n Luchino Visconti has become famous to the worl...\n French director Jean Rollin isn't exactly know...\n I am a big fan of Ludlum's work, and of the Co...\n This film is absolutely appalling and awful. I...\n **SPOILERS** Highly charge police drama about ...\n I have to admit that by moments I had to laugh...\n /* slight spoilers */<br /><br />Way back, bef...\n Well, the movie did turn out a lot better than...\n 1st watched 1/1/2003 - 3 out of 10(Dir-Henri V...\n I saw \"Night of the Demons 2\" first before I s...\n Not the worst movie I've seen but definitely n...\n Hardcastle and McCormick is an excellent TV sh...\n <br /><br />When this film was released I dism...\n This is a poorly written and badly directed sh...\n I had long wanted to watch this romantic drama...\n In my opinion, October Sky is one of the best ...\n The only good thing about this unfunny dreck i...\n Many movies try to take universal themes and m...\n First off, I'm not a firefighter, but I'm in s...\n I was really looking forward to this movie but...\n In what will probably find itself on my list o...\n I.Q., in my opinion, is a sweet, charming, and...\n Another vast conspiracy movie that tries to bl...\n ...here comes the Romeo Division to change the...\n I am not familiar with the producer's other wo...\n I was too young to remmeber when I first saw t...\n The timing of this film being released could n...\n I completely understand the historical signifi...\n For Estoninans Finland sometimes seems like a ...\n This, in my opinion, is a very poor movie that...\n Samuel Fuller brings his customary playful and...\n I'm surprised that anyone involved with the pr...\n I really liked Get Shorty, but this movie was ...\n A powerful movie that has recovered much of it...\n Long before Terri Schiavo brought the issue of...\n Dire! Dismal! Awful! Laughable! Disappointing!...\n I rated this movie a 1 since the plot is so un...\n The sequel that no one asked for to the movie ...\n This DVD set is the complete widescreen 15-epi...\n Another winner from that 50s , 60s era that I ...\n Well, the first thing I saw after looking at t...\n Certainly expected more after seeing the cast ...\n Watched this as a late TV movie last night pur...\n What the heck was this. Somebody obviously rea...\n This is an incredibly compelling story, told w...\n this movie has NO plot. it was SUPPOSED to be ...\n i just happened to stumble on this film channe...\n I saw this at the premiere in Melbourne<br /><...\n The Box is a film with great potential, but th...\n I question the motive of the creators of this ...\n It's hard to know what to make of this weird l...\n The characters were alive and interesting, the...\n Unlike Tinseltown's version of HELLO, DOLLY!, ...\n ***SPOILERS*** ***SPOILERS*** What's going on ...\n A FROLICS OF YOUTH Short Subject.<br /><br />A...\n I cannot believe that they managed to spend US...\n No wonder that the historian Ian Kershaw, auth...\n If you haven't already seen this movie of Mary...\n I have always been a fan of David Lynch and wi...\n Rita Hayworth is right there where she should ...\n This is an early one from the boys, but some p...\n The Ma & Pa Kettle characters were highly popu...\n I was about 14 years old as I saw the musical ...\n This early sci-fi masterwork by Herbert George...\n Slayer starts in the South American rain fores...\n It's difficult to put into words the almost se...\n There are some movies you just know they are g...\n The final installment in the action thriller f...\n Joe Don Baker is an alright to good actor in s...\n The brilliant thing about Withnail & I is that...\n Cool idea... botched writing, botched directin...\n I saw the film and am very pleased to see a fi...\n Jafar Panahi's comedy-drama \"Offside\" portrays...\n Just ONCE, I would like to see Koontz's work g...\n This movie makes several mistakes. a few Ameri...\n I only saw IPHIGENIA once, almost 30 years ago...\n Got this off of usenet, so I wasn't prepared f...\n this documentary is founded on sponge cake as ...\n So 'Thinner'... Yep.. This Steven Bachman (rea...\n Very Cliched. Quite corny. Acting gets worse a...\n 'It's easy to kill a monster, but it's hard to...\n Like Ishtar and King of Comedy, other great, m...\n This movie is good. It's not the best of the g...\n Very good drama about a young girl who attempt...\n This is a well-made documentary on the excitin...\n Leon was fantastic as always, this time playin...\n All the criticisms of this movie are quite val...\n A young man named Court is loved by everyone. ...\n I don't often go out of my way to write commen...\n STAR RATING: ***** Saturday Night **** Friday ...\n This movie is very underrated. It's highly ima...\n A solid, if unremarkable film. Matthau, as Ein...\n I very much enjoyed watching this film. I tape...\n I couldn't believe my eyes when I watched Nure...\n Some people have the ability to use only 3 neu...\n After seeing the film version of Heart Of Dark...\n CAMILLE 2000 <br /><br />Aspect ratio: 2.35:1 ...\n This film moved me at age 39 in the same way t...\n If this is supposed to be the black experience...\n I'm not going to comb over TLPS's obvious pete...\n Bean, Kevin & Perry, UK TV creations that have...\n The Wayward Cloud is a frustrating film to wat...\n Olivier Gruner stars as Jacques a foreign exch...\n The story is extremely unique.It's about these...\n For anyone craving a remake of 1989's Slaves o...\n If you have seen very less films, this might b...\n \"Don't Torture a Duckling\" is one of the coole...\n This movie is so stupid that I want my $2.99 b...\n This movie is funny and sad enough I think tha...\n Posh Spice Victoria Beckham and her alleged ne...\n \"... the beat is too strong ... we're deaf mut...\n Is it a good idea to use live animals for depa...\n Classe Tous Risques (The Big Risk) is a French...\n Anyone witness to our justice system - or lack...\n I saw this film at the Rotterdam Festival, as ...\n this is a classic American movie in combinatio...\n by the way it looks at the other comments made...\n If you decide to watch Wild Rebels, don't expe...\n This movie was sooooooo good! It was hilarious...\n Roy Thinnes and Joan Hackett are superb in thi...\n This is a stunning movie. Raw and sublimely mo...\n This is one of the great movies of the 80s in ...\n What can you possibly say? This is the uncut h...\n Saw this late one night on cable. At the time ...\n Child death and horror movies will always rema...\n The Outsiders is undoubtedly a classic Austral...\n I had no idea this movie was produced by \"WWE\"...\n I remember watching this is its original airin...\n ***Comments contain spoilers*** I was barely h...\n <br /><br />Superb film with no actual spoken ...\n With such a promising cast and a director that...\n I've almost forever been against the inclusion...\n Check out the first 20 minutes even though the...\n Just Before Dawn came out during the golden da...\n This is a trio of tales, \"Shakti\", \"Devi\", and...\n What's up with this movie? Does Mr. Lyne and h...\n Wow! This film is truly awful. I can't imagine...\n After watching John preform this one of a kind...\n Because of the 1988 Writers Guild of America s...\n The film was apparently spawned from an idea o...\n Here's one more beauty in the string of beauti...\n Stephen J. Cannell apparently decided a few ye...\n I saw \"Caddyshack II\" when I was ten and I mos...\n This is one of my all time favorite movies, PE...\n This movie is funny and painful at the same ti...\n An enjoyable movie, without a doubt, and very ...\n I've just revisited this fondly remembered bit...\n I have to admit that I went into Fever Pitch w...\n Will Spanner (David Byrnes, the fifth actor to...\n The 3rd and in my view the best of the Blackad...\n About the spoiler warning? It's not \"may conta...\n When they killed off John Amos's character the...\n Esther Kahn is a young Jewish woman living in ...\n Has anyone noticed that James Earl Jones is th...\n Well then. I just watched an crap-load of movi...\n Spoiler begin The movie focuses on three frien...\n Whoever cast this movie was a genius, every ch...\n A BDSM \"sub-culture\" of Los Angeles serves as ...\n NIGHTS IN RODANTHE brings back to the screen t...\n WARNING: REVIEW CONTAINS SLIGHT SPOILERS<br />...\n It's very true that this film defies conventio...\n Here are some examples of Pat Robertsons dubio...\n So, what's the reason? Is there some sort of v...\n In Where The Sidewalk Ends, Otto Preminger reu...\n This is one of the movies having made signific...\n Contains spoilers. <br /><br />The British dir...\n This movie was an impressive one. My first exp...\n \"Idiocracy\" is the latest film to come from Mi...\n Well, I should say, \"the only film related to ...\n I was 16 when I first saw the movie, and it ha...\n I didn't at all think of it this way, but my f...\n Walter Matthau and Jack Lemmon, both of whom a...\n University Professor Justin Thorne (Jimmy Smit...\n I cried my heart out, watching this movie. I h...\n The people who don't like this movie seem to h...\n The only way we survived this stinker was by c...\n definitely needed a little work in season 2. S...\n This is a great film for pure entertainment, n...\n First off, to give you some idea of my taste i...\n After the general, a film that romanticized th...\n When the US entered World War I, the governmen...\n \"Black Water\" is one of the most tense films I...\n Im hoping this was made before Half Past Dead ...\n \"Imagine if you could bring things back to lif...\n Filmed less than a year after the Soviet withd...\n Bathebo, you big dope.<br /><br />This is the ...\n I opted to watch this film for one reason and ...\n when i saw the movie at first i thought that i...\n Iam a Big fan of Mr Ram Gopal Varma but i coul...\n I saw this film in the theater when it first c...\n Most of the feedback I've heard concerning Mea...\n The book \"The Railway Children\" is a children'...\n I really liked the movie 'The Emporer's New Gr...\n This is a truly great film, with excellent dir...\n I know that was a goofy movie, but I enjoyed i...\n This is a rip-roaring British comedy movie and...\n Andie McDowell is beautiful as the 40-ish woma...\n While a 9 might seem like an unusually high sc...\n In the Citadel film series book The Films of G...\n It was once suggested by Pauline Kael, never a...\n Once when I was in college and we had an inter...\n As Dr. Alan Feinstone, Corbin Bernsen turns a ...\n The Sarah Silverman program is ... better than...\n I had to write a review for this film after I ...\n Unspeakably discombobulated turkey, a mix of a...\n DD films were damn corny, damn stupid and had ...\n Enjoyable movie although I think it had the po...\n This is marvelous movie, about a soul of Ale. ...\n A strong woman oriented subject after long, di...\n Set during the Hungarian Revolution of 1956, t...\n Who could have thought a non-disabled actor co...\n It has said that The Movies and Baseball both ...\n Oh, brother...after hearing about this ridicul...\n Big spoiler right here: this film is B!A!D! Bu...\n Fantastic movie! One of the best film noir mov...\n I have been a Jodie Foster fan ever since we w...\n It's hard to top this movie in several ways. E...\n This movie was bad. This movie was horrible. T...\n The concept: show 4 families of diverse ethnic...\n The various nudity scenes that other reviewers...\n The movie is a very good movie.one of the best...\n Actor Herman José plays the role of a football...\n Planet Earth has suffered a terrible environme...\n This movie was a pleasant surprise because I d...\n The cast is excellent, the acting good, the pl...\n I have to admit to enjoying bad movies. I love...\n The Three Stooges has always been some of the ...\n Dorothy Stratten is the only reason to watch t...\n This movie was terrible. The plot sucked, the ...\n Let's start by the simple lines. From the view...\n Terrible...just terrible. Probably the worst f...\n This very forced attempt to fuse Robert Altman...\n There are other movies about boarding schools ...\n Bad sequels.....this one's a real one! When th...\n I'm a fan of both actors/singers especially Ga...\n VIVAH is in my book THE BEST MOVIE OF 2006 ! P...\n This infamous ending to Koen Wauters' career c...\n Patrick Channing (Jeff Kober) is a disciple of...\n Don't get me wrong, the movie is beautiful, th...\n I went to Crooked Earth to see a piece of New ...\n An apt description by Spock of an all-powerful...\n Going into this movie I knew two things about ...\n After seeing this film I complained to my loca...\n If this film doesn't at least be selected for ...\n This was a fantastically funny footie film. Wh...\n Pretty incoherent movie about a man who belong...\n I rented this by mistake. I thought, after a c...\n This is a great short. i think every voice is ...\n I have no idea how a Texan (the director, Doug...\n I saw a great clip of this film, which I'll ta...\n I watched this video because I like Malta and ...\n The music and Laurence Olivier's sombre delive...\n Flatliners has all the ingredients of a good J...\n i have had this movie, in the back of my head ...\n Films belonging to the \"film noir\" genre usual...\n It's great how this movie pulls you along. I h...\n i rented this when it came out on video casset...\n The NSA, CIA, FBI, FSB and all other snoop age...\n This is one of the worst films I have seen in ...\n This was one of my favorite shows when I was a...\n No more corned beef and cabbage for her!<br />...\n When Liv Ullman's character says, \"I feel like...\n Big Bad Ralph is also on the not so squeazy tr...\n \"Gone With The Wind\" is one of the most overra...\n The movie \"The Cave\" has got to be one of the ...\n Filmmakers made a rather boring everyman's sto...\n I have seen this movie a whole dozen times and...\n As someone who has both read the novel and see...\n I can't believe we don't have that 70's show a...\n This is not what one would term a happy tale. ...\n This is my favorite Renoir from the Fifties. I...\n Guys and Dolls has to be one of my favorite mu...\n I know we shouldn't expect much from a low-bud...\n How did this become a blockbuster? Dear God I ...\n Silly Disney film about a college student who ...\n We've all played Halo and Socom and GTA and Re...\n Autobiography of founder of zoo in NYC starts ...\n Sony Pictures Classics, I'm looking at you! So...\n I saw the latter half of this movie about a ye...\n Secret Sunshine (2007) is famous for its award...\n This movie features roaches as super flesh eat...\n Dragon Fighter is the first Sci-Fi Channel (al...\n This film has a brilliant soundtrack and super...\n Warning: This review contains a spoiler.<br />...\n i saw this movie the first seconds the voice o...\n I have just watched the movie for the first ti...\n I had not seen this movie since the late '80s ...\n This movie is full of pseudo deep thoughtfulne...\n I was prepared to laugh throughout this movie ...\n enjoyed the movie and efficient Confucian crim...\n I have to agree with some of the other comment...\n What a surprising treat to come across on late...\n I simply cannot believe the number of people c...\n This is a poor film. It certainly belongs in t...\n I don't care what anyone says, this movie is h...\n This film did entertain me with lots of laughs...\n Jack Black can usually make me snicker simply ...\n Generally, it's difficult to rate these cut-&-...\n This slick and gritty film consistently delive...\n It's dreadful, but ...<br /><br />Cat Stevens ...\n Just saw this movie yesterday night and I almo...\n It's not a big film. The acting is not amazing...\n Tom is about to tuck into a delicious Jerry sa...\n \"What Alice Found\" is the greatest movie that ...\n 'Dead Letter Office' is a low-budget film abou...\n *** SPOILERS***<br /><br />One of the worst fi...\n Last night I got to see an early preview scree...\n Closet Land is a nasty piece of work with supe...\n The pilot of Enterprise has one thing that has...\n Julia (Kristina Copeland) travels with her hus...\n If you're looking for a Hollywood action packe...\n Directed by the duo Yudai Yamaguchi (Battlefie...\n Bridges's drama about a reporter who discovers...\n I really like this show. That is why I was dis...\n Jamie Foxx does a fine job of impersonating th...\n It was all over with the slashers around 88 so...\n This (very) low-budget film is fun if you're a...\n 1- Stephen Baldwin doesn't care about his invo...\n After 30+ years of hiatus, once again I immers...\n This was among the STUPIDEST and PREACHIEST of...\n It didn't take too long after Halloween had ki...\n What a delightful movie. The characters were n...\n This appalling piece of tripe was (convenientl...\n I wish I could say that this show was unusual ...\n With all the \"Adult\" innuendos in todays famil...\n Basically this is a pale shadow of High Fideli...\n After viewing \"Still Life\", a short film direc...\n Cinderella....<br /><br />I hadn't watched thi...\n When I first looked at the back of the cover o...\n I went into this film with expectations, from ...\n I've seen enough of both Little Richard in int...\n as with many of Wong's films, a lot of people ...\n I found 'Shuttle' an incredibly frustrating fi...\n With Knightly and O'Tool as the leads, this fi...\n Bloody Birthday opens to a shot of Meadowvale ...\n L'Auberge Espagnole is less funny and less int...\n First of all, the title \"DAILY\" is a LIE. <br ...\n I do not envy Barry Levinson, Rachel Weisz, Be...\n Brainless film about two girls and some guys t...\n A lot is dated in this episode (just like most...\n I think that Toy Soldiers is an excellent movi...\n All Boris Karloff fans will love this classic ...\n I will never get back the three hours of life ...\n Wonderful cast wasted on worthless script. Ten...\n ** Warning - this post may contain spoilers **...\n The movie takes place in a little Swedish town...\n Hilarious, clean, light-hearted, and quote-wor...\n The plot - in the future when nearly all men h...\n My main criticism with the movie is the animat...\n The whole shorthand for supposedly being more ...\n Wow, it's been years since I last saw this mov...\n This film is an impressionistic, poetic take o...\n I never realized what a fabulous dancer Lana T...\n There was nothing of value in the original mov...\n I refused to watch this when it originally air...\n Graphics: brilliant, obviously. The most stunn...\n If you go into the Twins Effect looking for a ...\n Brilliant film, the next best film to The Drun...\n I grew up in the 90s; therefore, you must unde...\n For me, Pink Flamingos lived up to it's reputa...\n well worth watching, especially with the nice ...\n This film truly was poor. I went to the theatr...\n My father insisted I should watch this film wi...\n Outlandish premise that rates low on plausibil...\n The thing that's truly terrifying about this i...\n Every once in a while in the wonderful world o...\n This one was truly awful. Watching with fascin...\n When i first went to watch The Shining I was e...\n i am still not sure what the hell this movie i...\n Yeh, I know -- you're quivering with excitemen...\n Co-scripted by William H. Macy from, arguably,...\n Recently, I saw the documentary \"The revolutio...\n Max Cash a charter boat captain who works off ...\n They actually make a big deal out of a scene i...\n I think I was recommended this film by the lad...\n You might suspect that the plot of this movie ...\n It's hard to know exactly what to say about th...\n this movie had me stuck in this endless loop o...\n Richard Abernethie, a very wealthy man, has di...\n I first saw The Couch Trip (1988)on late night...\n Who won the best actress Oscar for 1933? It sh...\n This is by far one of my favorite of the Ameri...\n The opening scene of this movie is pretty incr...\n i will be honest and say i gave up on watching...\n The word impossible has led many to select a p...\n There was talk on the E! Hollywood Special abo...\n Why didn't Dynamo have any pants?! Where did t...\n the scarlet coat is about bendict arnold betra...\n Whether you want to spend nearly 2 hours of yo...\n Well it looked good on paper,Nick Cage and Jer...\n i was disappointed in this documentary.i thoug...\n OK, so the musical pieces were poorly written ...\n This is a comedy of morals, so occasionally a ...\n It's about an embezzler, Peter Ustinov, who in...\n The female lead was a terrible actress which m...\n Contains spoilers. <br /><br />The British dir...\n A phenomenal achievement in awfulness. It's ac...\n Over the past century, there have been many ad...\n This is a piece of cinematic beauty, and it sh...\n I liked the movie but it should have been long...\n Offbeat, slow-paced, entertaining erotic thril...\n I totally agree with the other poster. NEMESIS...\n A very good movie. A classic sci-fi film with ...\n The trailer for this movie didn't do the movie...\n Aaron Spelling produced this made for televisi...\n This kind of film has become old hat by now, h...\n The Coen Brothers have truly outdone themselve...\n Beyond the Clouds is in many ways the weirdest...\n What's not to like about this movie? Every yea...\n In Queen of The Damned,Akasha(Aaliyah) was mor...\n I have seen this film on countless occasions, ...\n Marvelous James Stewart, Vera Miles vehicle. W...\n I would consider myself a fan of Dean Koontz; ...\n I hate this movie! It was NOTHING like the boo...\n Having not read the book, I was more open to t...\n In my eyes this is almost the perfect example ...\n <br /><br />12 Grand is the cost of a new car....\n I'd never heard of zero budget \"auteur\" Neil J...\n At the opposite end of the spectrum from RAIDE...\n It´s a joke, right?! Lynch could not get produ...\n I saw this movie the other night and I have to...\n LL Cool J performed much better in this movie ...\n I haven't seen this funny of a show on fox in ...\n Please Don't hate me but i have to be honest, ...\n This movie was pretty absurd. There was a FEW ...\n I had watched this as a kid but, not being muc...\n I bought this Chuck Norris DVD knowing that it...\n I'm always surprised, given that the famous ti...\n I was so eager to see this one of my favorite ...\n Just a great soundtrack. Really enjoyable musi...\n New guy at an armored car company gets talked ...\n I'D BUY THAT FOR A DOLLAR!!!<br /><br />I did ...\n It's rare, nowadays, to find a romantic comedy...\n Having just got the \"Loony Tunes Golden Collec...\n I'm fond of this film and it vexes me that so ...\n This is indeed quite the strange movie... Firs...\n There are no saving graces in this dreadful, s...\n It was September 2003 that I heard the BBC wer...\n Let's see. In the \"St. Elsewhere\" finale we fo...\n Before Cujo,there was Lucky the devil dog. In ...\n I enjoyed Still Crazy more than any film I hav...\n a pure reality bytes film. Fragile, beautiful ...\n The show's echoed 'bubbling' sound effect used...\n I'm giving this film 9 out of 10 only because ...\n Times I look back to high school and it amazes...\n I remember Casper comic books, but don't remem...\n The first point that calls the attention in \"F...\n Night Of The Living Homeless is a funny spoof ...\n Since Paul Kersey was running short of actual ...\n Have you ever seen a movie made up entirely of...\n Alright, the first time I seen \"Talk Radio\" wa...\n Basically what we have here is little more tha...\n Keys to the VIP is one of the most entertainin...\n I loved it so much that I bought the DVD and t...\n This might have been an excellent flick. Howev...\n This was a rip-off of the same garbage we had ...\n From all the rave reviews, we couldn't wait to...\n A terrible movie containing a bevy of D-list C...\n Stoic and laconic soldier Sergeant Todd (a fin...\n There is no artistic value in this movie to de...\n Food always makes a good topic in movies, as \"...\n The title got my attention and then I wondered...\n Upon a recommendation from a friend and my adm...\n Blake Edwards' legendary fiasco, begins to see...\n That's certainly not the best film ever. But t...\n I saw this movie at midnight on On Demand the ...\n Some people don't like Led Zeppelin, but lucki...\n I grew up in Royersford, Pa. The town where Je...\n What starts out as an interesting story quickl...\n wow! i just have to say this show is super coo...\n There is an episode of The Simpsons which has ...\n So much has been written about the film's plot...\n \"Black Dragons\" is a second feature WWII propa...\n I admit, I had to fast forward through this po...\n Almost from the word go this film is poor and ...\n Nominated for the oscar \"worst script ever\" in...\n It may (or may not) be considered interesting ...\n Um .... a serious film about troubled teens in...\n I saw this movie with my rock climbing instruc...\n I really don't see how anyone could enjoy this...\n This movies chronicles the life and times of W...\n This film is about two female killers going on...\n I like this movie. I may be biased because I l...\n I have seen this movie and I did not care for ...\n The main reasons to see \"Red Eye\" are Rachel M...\n When you look back at another bad Nightmare se...\n Having already seen the original \"Jack Frost\",...\n If you had a mother that described you like th...\n This movie was really bad, plain and simple. H...\n That's the worst film I saw since a long time....\n Natalie Wood portrays Courtney Patterson, a po...\n Three distinct and distant individuals' lives ...\n It pays to watch Reader's Digest. Or Time, if ...\n In this approximately 34-second Thomas Edison-...\n I won't add to the plot reviews, it's not very...\n Perhaps once in a generation a film comes alon...\n I did enjoy this film, I thought it ended up b...\n In \"The Squire of Gothos\", Kirk and his crew e...\n \"Hot Millions\" is a well-written, well-acted t...\n For the record, this film is intriguing but it...\n An unmarried, twenty-something hick (played by...\n Were I not with friends, and so cheap, I would...\n Next stop on our journey through the calender-...\n What a terrible film. It sucked. It was terrib...\n This movie just happened to be on HBO yesterda...\n This was Keaton's first feature and is in actu...\n I saw a 12:45 a.m. show last night, and I woul...\n In a future society, the military component do...\n The first few minutes of \"The Bodyguard\" do ha...\n Cornel Wilde and three dumbbells search for su...\n This is one of the worst mini-series I have ev...\n One reviewer says of those who might not like ...\n Here's a gritty, get-the-bad guys revenge stor...\n Jack Webb is riveting as a Marine Corp drill i...\n Yeah, I remember this one! Many years since I ...\n I went on a visit to one of my relatives a whi...\n I know that this show gave a lot of liberation...\n If you want to checkout a good Jason Scott Lee...\n I have to say that sometimes \"looks\" are all t...\n This western is done in a different manner tha...\n Another slice of darkness and denial hiding be...\n We all have friends. Some of us have more than...\n This time we get a psycho toy maker named \"Joe...\n Ang Lee clearly likes to ease into a film, to ...\n This movie could be a bit boring for some peop...\n I was very disappointed by this film for a few...\n A woman, Mujar (Marta Belengur) enters a resta...\n Sui generis. Folks, I'm not going to lie to yo...\n I watched this movie about six years ago and I...\n I have to offset all the terrible comments. I ...\n Most films are crappy with high production val...\n I could never remember the name of this show. ...\n Dan Katzir has produced a wonderful film that ...\n \"Blood of the Sacred, Blood of the Damned\" is ...\n I watched this film over a hundred times. It i...\n Sorry to say but was disappointed in the film....\n I happened to catch this film at a screening i...\n If this movie is coming to a theater near you,...\n This bittersweet slice of magic realism had a ...\n I'm out of words to describe the beauty of \"Th...\n Never has the words \"hidden gem\" been so accur...\n A Pentagon science team seem to have perfected...\n I watched this film for 45 minutes and counted...\n First I would like to say how great this. It i...\n Fräulein Doktor is as good a demonstration as ...\n Plunkett and Macleane is a wonderful updating ...\n I watched this movie as a child and still enjo...\n I am glad I saw this film having seen some of ...\n \"The Best Movie of the 90's\" \"The Welsh Trains...\n Lead actor Yuko Tanaka fulfills so much in the...\n Paul Hennessy and his wife, Cate must deal wit...\n this is film is probably one of the best i've ...\n Here is one movie that is genuinely funny at e...\n I saw this in a preview screening and have to ...\n There are similarities between Ray Lawrence's ...\n If it wasn't for the terrific music, I would n...\n Saw this my last day at the festival, and was ...\n I've tried to watch this show several times, b...\n Absolutely laughable film. I live in London an...\n This is a top car flick (Its a work of art/ YE...\n I shouldn't like Jackass Number Two. No one sh...\n Really bad Italian horror movie, a sort of rem...\n The men can slaver over Lollo, if they like (o...\n Allen goes to the country (somewhere he hates ...\n In my book \"Basic Instinct\" was a perfect film...\n I went to see this film based on the review by...\n I'm going to be generous here and give it a 3 ...\n In the world of \"shorts\" (most of which aren't...\n A teenage film about angst, friendship, loyalt...\n This is an excellent example of an entreatingl...\n How can someone NOT like this movie??? This mo...\n Naturally in a film who's main themes are of m...\n This movie is not only poorly scripted and dir...\n After seeing The Aristocats: Special Edition i...\n Visconti's Death in Venice qualifies as one of...\n Okay, so I'm not a big video game buff, but wa...\n Did anyone stop to realise what sort of movie ...\n Supercarrier was my favorite movie in the late...\n I don't know why they even kept the name. How ...\n May Contain Spoilers!!! In no way, shape or fo...\n This is one of those rare movies, it's lovely ...\n This is the worst documentary to come out of C...\n Even though it doesn't really matter to the fi...\n Lang does Hawks as well as Hawks does in the f...\n Well, I guess I'll have to be the one to say \"...\n okay, this movie f*ck in' rules. it is without...\n Goodnight, Mister Tom begins in an impossibly ...\n First things first: I'm not a conservative. An...\n This movie starts by showing you a map and the...\n Talk about false advertising! I wasted an hour...\n A story about love and hate, tragedy and happi...\n In all truth, this really isn't a \"movie\" so m...\n So here's a bit of background on how I came to...\n Little Dieter Needs to Fly was my first film d...\n Some people think this was a rather bad TV ser...\n \"Black Friday\" did this plot so much better, w...\n Sequels, well there are many reasons to make '...\n I love this movie, one of my all time favorite...\n **Possible Spoilers Ahead**<br /><br />Gerald ...\n This Columbo episode is one of the better and ...\n Stone has tried another type of movie. Any Giv...\n Yesterday I watched this movie for the third t...\n This is a really bad waste of your time. I wou...\n Typically Spanish production - slow-moving, bu...\n Horrible acting, Bad story line, cheesy makeup...\n This is an extremely-powerful based-on-a-true ...\n The 1998 version of \"Psycho\" needed to be set ...\n This film tries very hard to be an \"action\" fi...\n It occurs to me that some of the films that ha...\n 1st the good news. The 3-D is spectacularly we...\n It's not fair. I was really expecting this to ...\n Good Times was a groundbreaking comedy about t...\n I saw this movie for 2 reasons--I like Gerard ...\n Hitch is a light-hearted comedy that will ente...\n I had been looking forward to this movie since...\n Now, I LOVE Italian horror films. The cheesier...\n Actually my vote is a 7.5. Anyway, the movie w...\n Uneven Bollywood drama. Karisma Kapoor is exce...\n I saw this movie on my flight from Philly to D...\n Greetings again from the darkness. 18 director...\n Nicely done, and along with \"New voyages\" it's...\n I thought \"Intensive Care\" was quite bad and v...\n One of the best silent dramas I've seen. As da...\n Amnesiac women who remove their clothes at the...\n I first remember seeing this one back in the 7...\n Again, we're getting a melange of themes well ...\n Romantic comedy movies are definitely the most...\n Well!! the movie has Catherine Zeta Jones in i...\n On Steve Irwin's show, he's hillarious. He doe...\n I'm a huge fan of the spy genre and this is on...\n Eddy Murphy and Robert De Niro should be a com...\n Maybe it's because I looked up the history of ...\n Okay, you hippies are probably wondering what ...\n The credits at the end read \"ALL directed by S...\n The film was very outstanding despite the NC-1...\n Things get dull early an often in this in this...\n This sounded like it was going to be like Sile...\n Shirley Knight plays Sara Ravenna, a Long Isla...\n I wasn't sure what to expect but am I glad I w...\n ... in search of the cheesiest \"so bad it's go...\n There is so much to love in this darling littl...\n In his feature film debut `Yellow,' Chris Chan...\n A documentarist, like any filmmaker, must conv...\n This is one of those movies the critics really...\n This film has great acting, great photography ...\n Believe me when I say this show is just plain ...\n Awful is really all one needs to know. First t...\n I totally agree. This is \"Pitch Black undergro...\n What has to change in today's attitude towards...\n Overall this is a delightful, light-hearted, r...\n Some people say this show was good in it's ear...\n I enjoyed this movie. More than I expected. It...\n It is difficult to imagine how the engaging Da...\n This movie was advertised as a comedy but was ...\n In Everything Is Illuminated, Elijah Wood play...\n I really think that people are taking the wron...\n You will be able to tell within the first 30 s...\n The last person who dies before New Years, is ...\n The actors in this dark film are truly believa...\n I acquired this film a couple of years ago and...\n This movie is amazing. It is funny, sexy, viol...\n Walking the tightrope between comedy and drama...\n There were a lot of things going against this ...\n This complete mess of a movie was directed by ...\n This movie was probably the biggest waste of m...\n I have seen this movie twice and it's theme is...\n Hollow Man starts as brilliant but flawed scie...\n A tedious mixture of puerile efforts at humour...\n This is a thoroughly diabolical tale of just h...\n I didn't really expect much from \"The Night Li...\n This is a perfect movie to watch with a loved ...\n Your time and brains will be much better spent...\n I ended up watching The Tenants with my close ...\n If this could be rated a 0, it would be. From ...\n As perhaps one of the few Canadians who did no...\n Before Sunrise has many remarkable things goin...\n The storyline of The Milkwoman is a simple one...\n This film is a good example of how through med...\n They did it again: ripped off an old show's ti...\n This is one the few movies I can watch over an...\n After reading more than my fair share of revie...\n Alan Rudolph is a so-so director, without that...\n I played Sam (the porter, Lou's sidekick) in t...\n Now don't get me wrong, i love a good film and...\n On a scale of 1-10 \"Suicidal Sweetheart\" got a...\n Hollywood North is a satirical look at the tim...\n Fay, the sister of the notorious Nobel prize-w...\n Sixth (And last) movie in the boxset. Well, lo...\n Well, this latest version of Mansfield Park se...\n This show has shown it's true colors now that ...\n I love a good sappy love story (and I'm a guy)...\n This is a pitiful movie. What makes it even mo...\n There is no denying that this is a bad movie. ...\n It's my opinion that when you decide to re-mak...\n The plot of this movie is dangerously thin and...\n I understand wanting to make a movie that is e...\n You're using the IMDb.<br /><br />You've given...\n A beloved and devoted priest from a small town...\n I saw this movie at Sundance 2005 and was stun...\n Oh, my gosh...I thought CBS primetime televisi...\n It came as no surprise to me that this was a v...\n At first sight this movie doesn't look like a ...\n I saw this version of Hamlet on television man...\n Shwaas is awesome ! considering that the produ...\n I have seen many movies over the years and I a...\n I only wish that Return of the Jedi, have been...\n This is a movie that is bad in every imaginabl...\n Did people expect \"Jurassic Park 3\" to be full...\n A girl is looking for her soul mate-- this mov...\n First To Die 2003<br /><br />I'll admit my mis...\n Boris and Bela do well together in this film,w...\n Love it, love it, love it! This is another abs...\n I really wanted to like this movie and watched...\n I found this film to be the usual French slap ...\n The title alone (along with the poster) is eno...\n I have a thing for old black and white movies ...\n Gentleman Jim is another case of print the leg...\n Barman just wanted to make a movie because he ...\n I just re-watched this thriller, one I had pre...\n Betty is as an understudy in a production of V...\n A lot has already been written about the film ...\n Before seeing this film, I suggest the viewer ...\n I don't know how this movie has received so ma...\n She's The Man was everything I wanted it to be...\n First of all, I would just like to say to ever...\n If The Man in the White Suit had been done in ...\n I always felt that a good film should have a p...\n There was a recent documentary on making movie...\n This film was embarrassing in its clichés, poo...\n The comments for Commune make it sound like a ...\n I really enjoyed this film because I have a tr...\n I first saw this version of \"A Christmas Carol...\n City Streets is amazingly modern technically s...\n To some of us, director Ernst Lubitsch, adored...\n you know I've seen a lot of crappy hong kong m...\n I would like to know why John Amos left the sh...\n This move is about as bad as they come. I was,...\n I am shocked by all the good reviews on the co...\n Apparently Hollywood is just handing out money...\n I can't believe it's been ten years since this...\n I first saw this film as a teenager. It was at...\n Judy Davis shows us here why she is one of Aus...\n I knew this movie wasn't going to be amazing, ...\n There is no real story the film seems more lik...\n I recently saw Blind Spot in Coyoacan, where i...\n This picture doesn't have any big explosions o...\n This film is an eery, but interesting film. I ...\n If you're one of those people who doesn't real...\n Okay, now, I know there are millions of Americ...\n Saw the film at it's Lawrence, Kansas premiere...\n The Flock is not really a movie. It's a wannab...\n Simply one of the best movies ever. If you won...\n I never thought I'd say this about a biopic, b...\n Although well past the target audience, I've a...\n Directed by Samuel Fuller, who also wrote the ...\n I saw this movie way back when it premiered.<b...\n Turkish Cinema has a big problem. Directors ar...\n The fact that reviewers feel very intensely ne...\n A twist of fate puts a black man at the head o...\n This low budget digital video film has strengt...\n When I was 16 I saw the documentary: \"A Funny ...\n Rating \"10/10\" Master piece<br /><br />Some ye...\n This movie came very close to being a good fli...\n \"The Next Karate Kid\" is a thoroughly predicta...\n There was once someone in my family (not sayin...\n I've been watching a lot of Asian horror movie...\n By submitting this comment you are agreeing to...\n I went to see this film at the cinema on the s...\n Dear Readers, 2001: A Space Odyssey is Kubrick...\n The most succinct way to describe Ride With Th...\n \"Ripe\" is one of those awful indies which mana...\n Ok, I first saw this movie like at 9:00 on Cin...\n Definitely not a good film but nowhere as bad ...\n This has to be one of those times you come acr...\n Second-feature concerns a young woman in Londo...\n Once again proving his amazing versatility, Jo...\n I went for this movie believing it had good ra...\n After watching Tipping the Velvet by Sarah wat...\n ...intimate and specific. Yes, a bit of a cind...\n An introspective look at the relationship betw...\n Director Kinji Fukasaku is perhaps best known,...\n Eric Stoltz delivers an extraordinary performa...\n I was sitting at home and flipping channels wh...\n Out of the handful of alternative titles in En...\n Zarkorr is one bad movie. This doesn't even ra...\n Many of the lead characters in Hideo Gosha's 1...\n Focus is an engaging story told in urban, WWII...\n I, like many folks, believe the 1989 epic Lone...\n Didn't care for the movie, the book was better...\n From Kreestos: <br /><br />The dialog is terri...\n This comment discusses \"North and South Book I...\n ....after 16 years Tim Burton finally disappoi...\n A feminist tract in which if you the viewer be...\n this movie was clearly done poorly and in a ru...\n This was one of the DVD's I recently bought in...\n I finally received my DVD today, viewed it and...\n This remarkable film can be summed up very eas...\n Monday, October 02, 2006 So I got together wit...\n Some films are so badly made they are watchabl...\n I Last night I had the pleasure of seeing the ...\n I'm glad I read the Sarah Waters novel first, ...\n 'The Last Wave' is far more than the sum of it...\n Silverlake Life, The view from here, is an abs...\n This is a funny, clever film and well worth yo...\n Kurt Russell, whose career started when he kic...\n Before I took a job as a reviewer, I never wen...\n And that's how the greatest comedy of TV start...\n Have you ever, or do you have, a pet who's bee...\n A classic late 50's film. The superannuated he...\n At last!! Sandra Bullock is indeed a beautiful...\n This movie is about a young couple running awa...\n I'm sorry but i don't understand how the studi...\n This was a very strong look at prejudice and g...\n As a fan of Eric Rohmer's studies of the conte...\n I was @ 13 yrs of age when I saw this greatly ...\n The whole does not even come close to the sum ...\n The movie within the movie - a concept done ma...\n Well done Al Gore! You have become the first p...\n Well, it is hard to add comment after reading ...\n For months preceding the release of this movie...\n OK, so I rented this clown-like-Chainsaw-Massa...\n I really appreciate what Jung-won had done bef...\n For the first forty minutes or so, Luna is a r...\n I just saw this movie at the Tribeca Film Fest...\n I bought the video for £13 at HMV (we pay more...\n Violent sequel to RoboCop was directed by Irvi...\n I ordered the movie from Korea because I was a...\n I have to confess that I slept in the cinema w...\n This is the first Jean Renoir Silent film I ha...\n I'm like the rest of the fans who love this co...\n This movie is incredible. If you have the chan...\n This is an excellent movie. It is about many t...\n After the reasonably successful MASTI which wa...\n The plot certainly seemed interesting enough. ...\n The not the best movie in the world???? That w...\n Eddie Murphy is one of the funniest comedians ...\n I liked this movie way too much. My only probl...\n I have been reading the reviews for this movie...\n This appears to be one of Noel Coward's lesser...\n This movie is a shameful result of what happen...\n as a former TV editor, I can say this is as au...\n this movie sucks. did anyone notice that the e...\n What starts out as a gentle country yarn, inof...\n As someone who usually despises Ali G, Ali G I...\n After eagerly waiting to the end, I have to sa...\n The Australian public and the Australian film ...\n i didn't hate this one. i just couldn't adapt ...\n 'The Italian' is among the great or near-great...\n This film was recommended to me by a friend wh...\n This movie is truly awful. After seeing the ad...\n Why would Burt Lancaster allow himself to play...\n Baldwin has really stooped low to make such mo...\n 1st movie comment ever! I'll start with saying...\n It just goes to show how wrong you can be. I h...\n If this movie had been directed by a man, he w...\n This movie I've seen many times. I read the bo...\n Whilst reading through the comments left for t...\n What a travesty of movie ratings injustice - a...\n Such energy and vitality. You just can't go wr...\n This movie isn't as bad as I heard. It was enj...\n This is probably the only movie I have ever no...\n 1st watched 11/7/2002 - 2 out of 10(Dir-John B...\n It takes a Serbian or at least a Balkan famili...\n Thirty years after the 1939 classic film won R...\n Oh my, this was the worst reunion movie I have...\n I saw this movie as a kid on Creature Feature ...\n I thought the movie was extremely funny and ac...\n The Shanghai Cobra starts out like gangbusters...\n If you've been looking for a film where a out ...\n Sudden Impact tends to be treated as Eastwood'...\n \"Serum\" starts out with credits that are quite...\n Haha, what a great little movie! Wayne Crawfor...\n I would not recommend it whatsoever. It was li...\n I must admit, at first I wasn't expecting anyt...\n Once again Mr. Costner has dragged out a movie...\n Can we say retarded? This girl has no talent w...\n ...this verson doesn't mangle the Bard that ba...\n Here is one of Jane Austen's movies that I fou...\n The Wicker Man, starring Nicolas Cage, is by n...\n John Carpenter shows how much he loves the 195...\n I think this movie is absolutely beautiful. An...\n Robin Hood: Men in Tights (1993) was a much ne...\n I don't understand. Not being a critic, i am n...\n Although it has been remade several times, thi...\n Twenty years after watching this, I still find...\n No other movie has made me feel like this befo...\n I would agree with another viewer who wrote th...\n Sure it may not be a classic but it's one full...\n This is one of the worst things to ever come o...\n This comedy is bound to be good from the get-g...\n I was lucky enough to catch this movie while v...\n I also have been a wife of an abusive husband,...\n I watched Gomeda on movie theater at my city. ...\n This is an admirable attempt from first time f...\n Conclusion: very, but very, very boring, yet I...\n When it comes to movies, I am generally easily...\n As many know, this is the feature film debut o...\n Eye in the Labyrinth is not your average Giall...\n The vigilante has long held a fascination for ...\n I have to say that this is one of the best mov...\n It was meant to be a parody on the LOTR-Trilog...\n So, you've seen the Romero movies, yes? And yo...\n This movie was definitely on the boring side. ...\n The first film was a nice one, but it is not a...\n This is a great Canadian comedy series. The mo...\n What can one say about any Wilder film other t...\n Words fail me for this appalling waste of two ...\n There were some great moments of reality in th...\n let me get started with a terrible storyline a...\n \"The Cellar\" is an intolerably dull and overly...\n I grew up during the time that the music in th...\n I saw this film back in the early 70's and I w...\n Liongate has yet to prove itself. Every single...\n .... And after seeing this pile of crap you wo...\n I got to watch this movie in my french class a...\n I really liked ZB1. Really, I did. I have no p...\n I have been most fortunate this year to have s...\n Although in many ways I agree with the other r...\n The movie \". . . And The Earth Did not Swallow...\n Herbie, the Volkswagen that thinks like a man,...\n If I was only allowed to watch one program in ...\n \"The Return of Chandu\" is notable, if one can ...\n When I saw this at a shop I thought it looked ...\n Superbly adapted to the screen and extremely f...\n This is actually a groovy-neat little flick, m...\n \"Ordinary Decent Criminal\" is sad because it i...\n Many of the earlier comments are right on the ...\n Deodato brings us some mildly shocking moments...\n I loved this movie. It is a definite inspirati...\n Ineffectual, molly-coddled, self-pitying, lous...\n I have only seen this movie once, when I was a...\n My ten-year old liked it. For me it was hard t...\n This film has \"haunted\" me since I saw it when...\n The Brave One is about a New York radio show h...\n The basic storyline here is, Aditiya (Kumar) i...\n Sarah Silverman is really the \"flavor of the m...\n An excellent movie and great example of how sc...\n this is one of the funnier films i've seen. it...\n Debbie Reynolds toe-taps, tangos and, yes, tap...\n TOM BROWN'S SCHOOLDAYS <br /><br />Aspect rati...\n The Toxic Avenger, Part II starts with the sta...\n Cary Grant and Myrna Loy are perfectly cast as...\n Admittedly, I find Al Pacino to be a guilty pl...\n In this unlikely love triangle, set in 19th ce...\n When I started to watch this movie on VH-1 I c...\n The whole world is falling prey to a lethal di...\n The lovely, yet lethal Alexandra (stunning sta...\n The unfunniest so called comedy I've ever seen...\n If you think \"Weird Al\" Yankovic is hilarious,...\n Since its release in 1983, \"A Christmas Story\"...\n I've watched this film about thirty years ago ...\n I went into this movie with semi-high expectat...\n Dark Rising is your typical bad, obviously qui...\n Say what you will about cinema's \"Wizard of Go...\n I rented this horrible movie. The worst think ...\n .......Playing Kaddiddlehopper, Col San Fernan...\n I rented this film out having heard of the fus...\n Listening to the director's commentary confirm...\n This movie has everything that makes a bad mov...\n I sincerely hope that at least the first seaso...\n After seeing this film months ago, it keeps ju...\n \"Fat Girls\" is among the worst films within th...\n Oh what a condescending movie! Set in Los Ange...\n There are some wonderful things about this mov...\n Look, it's the third one, so you already know ...\n This movie is fun to watch , doesnt have much ...\n I saw what I believe to be the best Australian...\n This would be a watchable Hollywood mediocre i...\n I got this film about a month ago and I am now...\n My wife rented this movie and then convenientl...\n Everything everyone has said already pretty mu...\n The actual crime story at the core of In Cold ...\n After reading the book, Heart of Darkness, the...\n A \"friend\", clearly with no taste or class, su...\n this is indeed a treat for every Bolan fan, so...\n After hitting the viewers with three very diff...\n First off, let me say that I am a great believ...\n It's funny how time went by and never saw this...\n I thought this was an extremely bad movie. The...\n Add Paulie the parrot to beloved movie animal ...\n The real shame of \"The Gathering\" is not in th...\n My family goes back to New Orleans late 1600's...\n First off, I hadn't seen \"The Blob\" since I wa...\n Like Freddy's Revenge, this sequel takes a pre...\n This is a pretty strange movie. It does comes ...\n I remember seeing this film in my late teens o...\n This movie sucks. The acting is worse than in ...\n I can remember watching this for the first tim...\n My god...i have not seen such an awful movie i...\n Pedantic, overlong fabrication which attempts ...\n When I was engaged, my fiance and I would freq...\n Wow. This was probably the worst DCOM ever. I ...\n Pretty visuals and a lot of fights make not a ...\n ***SPOILERS*** This film depicts the brutal bl...\n This movie is just so good! Despite Carmen Ele...\n First I played the second monkey island game, ...\n I was watching the Perfect Storm, and thought ...\n Symbologist Robert Langdon (Hanks) is called t...\n I saw this one remastered on DVD. It had a big...\n This movie was terrible...How can somebody eve...\n I agree with several of you that this film was...\n How can there be that many corrupt cops withou...\n What a terrible movie. Rotten tomatoes had a g...\n The 1930' were a golden age of Los Angeles wit...\n You spend most of this two-hour film wondering...\n trying hard to fit into the scary space comedy...\n I love Paul McCartney. He is, in my oppinion, ...\n I love movies in this genre. Beautiful girls, ...\n I just saw this for the first time in 10 or 15...\n I saw this movie on late night TV out of Buffa...\n Mary Pickford often stated that Tess Skinner w...\n I saw that movie, and i was shocked! Robert Ca...\n This movie is supposed to be a \"lighthearted\" ...\n ...and that's a goddamn shame! Please make the...\n I saw this recently and I must say, I was move...\n Funny, sexy, hot!!! There is no real plot but ...\n ZERO stars out of ****<br /><br />Endless Desc...\n Erotic cinema of the 1970's was tame compared ...\n This film is mediocre at best. Angie Harmon is...\n Lou Gossett, Jr. is great as 'Chappy Sinclair'...\n Before hitting international acclaim with The ...\n I think Andrew Davies did an admirable job of ...\n Hollywood's attempt to turn Jack London's life...\n I'm sure this was one of those \"WOAH!\" attract...\n No, I've never seen any of the \"Santa Slasher\"...\n I rate this 10 out of 10. Why?<br /><br />* It...\n The third, and final installment of \"Hanzo the...\n Alright, friends, a serious movie buff is expe...\n Hmmm, a sports team is in a plane crash, gets ...\n I'm surprised that mine, so far, is the only c...\n This movie scared heck out of me when I was ju...\n I've never seen a movie get a worse release th...\n For those who are like me and are used to watc...\n In Strangers On A Train, it's obvious from the...\n The BBC'S Blue Planet is simply jaw-dropping. ...\n I mistakenly kept myself awake late last night...\n Its my favourite film because there's so much ...\n As long as you go into this movie knowing that...\n The legend of Andrei Konchalovsky's towering 4...\n This film has to be viewed in the right frame ...\n They were alternative before there was alterna...\n Madison is not too bad-if you like simplistic...\n The first time I saw this movie, I fell in lov...\n I saw his film at the Ann Arbor Film Festival....\n I agree with the guy above, It is so funny I u...\n Maybe I'm being too generous with the rating.....\n This film is beautiful to look at, but is like...\n This is a crummy film, a pretender to a genre ...\n Set just before the Second World War, this is ...\n I didn't have much faith at the beginning, but...\n I've been waiting for this movie for SO many y...\n If you liked Roman Polanski's \"Repulsion\", you...\n Witty and disgusting. Brash and intelligent. B...\n Summer Holiday is the forgotten musical versio...\n Why did I have to go out and buy (yes buy!) JA...\n How in the name of decency did this film ever ...\n What a fun b-movie! Shepis is absolutely beaut...\n I had no idea what I was going to see when I d...\n This was the very first movie I ever saw in my...\n Due to reading bad reviews and being told by f...\n This movie proves that you can't judge a movie...\n Some people loved \"The Aristocrats\" and others...\n Greedy land baron in the tiny western town of ...\n I had the funny chance of seeing this on Myste...\n Goodnight Mister Tom is so beautifully filmed ...\n This review is in response to the submission w...\n The play is cleverly constructed - begin with ...\n The original book of this was set in the 1950s...\n \"Convicts\" is very much a third act sort of fi...\n `Castle of Blood' (aka `Castle of Terror') is ...\n I consider myself a great admirer of David Lyn...\n I have to admit that although I'm a fan of Sha...\n Incarcerated train robber near Yuma breaks fre...\n It's hard to use words for this movie, since i...\n I just re-watched 08th MS Gundam for the 2nd t...\n I just finished watching Marigold today and I'...\n A terrible movie that is amateurish on almost ...\n After stopping by the movie store to find some...\n Make no mistake, Maureen O'Sullivan is easily ...\n The Revolt of the Zombies is not the worst mov...\n The \"Amazing Mr. Williams\" stars Melvyn Dougla...\n There's one line that makes it worth to rent f...\n The creative team of Jim Abrahams, David Zucke...\n Richard Dix is a big, not very nice industrial...\n I like this movie cause it has a good approach...\n As much as I hate to disagree with the origina...\n Nice, pleasant, and funny, but not earth-shatt...\n This movie is a little slow in the the beginni...\n I watched about an hour of this movie (against...\n Wow...I can't believe just how bad ZOMBIE DOOM...\n I'm embarrassed to be writing this review. I s...\n I never heard of this film when it first came ...\n Went to see the movie \"Troy\" this afternoon. H...\n Much about love & life can be learned from wat...\n I absolutely like this film a lot. It is not v...\n Grieving couple move to a cabin on a mountain ...\n George Segal lives with his elderly and senile...\n This movie is not your typical horror movie. I...\n Originally called The Changer. The Nostril Pic...\n It's a thoroughly successful example of a 1950...\n Writing about something so wonderful is comple...\n There's lots of ketchup but not a whole lot of...\n comeundone, I love you! I could not have come ...\n If you're looking to be either offended or amu...\n I like underdogs. So, 12 years after having fi...\n The Standard bearer of all movie serials, the ...\n This show has been my escape from reality for ...\n My older sister was born in March of 1985 and ...\n Drew Barrymore was excellent in this film. Thi...\n Bob Cummings is excellent in this, as this tec...\n This movie was horrible. I watched it three ti...\n I enjoyed the innocence of this film and how t...\n There's a lot of good that can be said for thi...\n \"Scoop\" is also the name of a late-Thirties Ev...\n ************* SPOILERS BELOW ************* \"'N...\n The only good thing about this movie was the s...\n If it is true that sadomasochism is a two-side...\n A box with a button provides a couple with the...\n Not much to say other than it is simply a mast...\n I had a hard time sitting through this. Every ...\n The Railway Children, at least this 1970 movie...\n A fun concept, but poorly executed. Except for...\n This, \"Prodigal Son\" and \"Eastern Condors\" are...\n I wish they would just make a special section ...\n What the F*@# was this I just watched? Steven ...\n Disregard the plot and enjoy Fred Astaire doin...\n I think this is a great, classic monster film ...\n Some of the early talkies survived to become c...\n Now this is more like it!One of the best movie...\n I rented this film just to see Amber Benson, t...\n The first twenty-five minutes stand out as pos...\n I've seen several stage and film adaptations o...\n from the start of this movie you soon become a...\n I am obsessed! The story is amazing and the sh...\n Naruto the Anime TV Series has so far spawned ...\n This is a low grade cold war propaganda film c...\n Fox's \"The True Story Of Jesse James\" (1957) i...\n The previous reviewer has said it exactly. I s...\n this was a personal favorite of mine when i wa...\n I first saw this film as a teenager (I'm now i...\n INSPECTOR GADGET (1999) **<br /><br />Starring...\n First things first - though I believe Joel Sch...\n \"Americans Next Top Model\" is the best reality...\n The Internet Database lists this as a TV show....\n The only footage of Zeppelin I've seen prior t...\n This is the funniest stand up I have ever seen...\n OK - the Cons first: The obligatory '70's alli...\n Well, I tend to watch films for one of three r...\n This movie really surprised me. I had my doubt...\n When i watched this movie i had no idea what i...\n This show proved to be a waste of 30 minutes o...\n Let me just say that GRANNY was extremely well...\n I happen to like Leslie Howard, in his better ...\n David Cronenberg's `eXistenZ' is a well design...\n This movie is a real shame, not just for the p...\n One of the most interesting movies to be class...\n Hilarious, clean, light-hearted, and quote-wor...\n I like Errol Flynn; I like biographies and I l...\n In Bollywood it isn't rare that worthless film...\n I do NOT understand why anyone would waste the...\n Witchery, or Witchcraft as it's commonly known...\n Jennifer Montgomery's \"Art for Teachers of Chi...\n Raoul Walsh's mega-epic, stunning filmed in an...\n First, don't be fooled by my family name. My m...\n The movie starts something like a less hyper-k...\n Excellent story, wonderful acting, amazing pro...\n Nathan Detroit runs illegal craps games for hi...\n Today You Die starts as honourable criminal Ha...\n I like both this version of DORIAN GRAY and th...\n Andreas arrives in a strange city. He doesn't ...\n I have to start out by saying that the actress...\n This really was a waste of time...the movie ha...\n Val Kilmer, solid performance. Dylan McDermott...\n if you get the slight enjoyment out of pink Fl...\n This movie surprised me, it had good one-liner...\n okay, let's cut to the chase - there's no way ...\n I saw this movie at the AFI Dallas festival. M...\n Once again, Disney manages to make a children'...\n A fine western, following the fate of those wh...\n This is the worst movie I have seen since \"I K...\n \"Demons III: The Ogre\" is not related pre-sequ...\n To call \"Rocketship X-M\" a science fiction cla...\n I finally got around to seeing this after hear...\n This electrifying musical has more than a whif...\n While returning from a Christmas Eve shopping ...\n Hello, can anybody hear me? I don't know why y...\n I would not recommend this movie. Even though ...\n This movie was working toward two goals: to ma...\n Since this movie was based on a true story of ...\n The first time i saw it i got half of it but i...\n I tend to love everything the great late Paul ...\n Okay, it features one lovely blink-and-you-mis...\n I saw a preview of Freebird at the Isle of Man...\n OK, I don't really think that Trailer Park Boy...\n Bell Book and Candle was released in December ...\n I think Via Satellite is one of the best New Z...\n The plot of \"Open Graves\" is very simple:it's ...\n Okay, sure, this movie is a bit on the hokey s...\n A group of friends discover gold deep inside a...\n I had great expectations surrounding this movi...\n Father Hood<br /><br />I can understand why a ...\n This movie serves as a timely warning to anyon...\n Very good 1939 film where John Garfield plays ...\n This review is based on the Producer's Cut: <b...\n Fair and nifty little science fiction/horror f...\n my girlfriend, as we walk in the cold London e...\n I really don't know if this was supposed to be...\n Although this film is somewhat sanitized (beca...\n \"Dressed to Kill\" has been more or less forgot...\n Becky Harris plays the female shopper whose mi...\n Bill (Buddy Rogers) is sent to New York by his...\n Surely the Gershwin family realizes this is on...\n The lead characters in this movie fall into tw...\n I love Brian Yuzna's other work, even cruder s...\n The direction struck me as poor man's Ingemar ...\n I would just like all of the fans of this docu...\n I can say nothing more about this movie than: ...\n But perhaps you have to have grown up in the 8...\n I'm aware that there are some fans who might l...\n Everyone I know loves this movie, but I am afr...\n Feh. This movie started out in an interesting ...\n One of the best film I ever saw.<br /><br />Th...\n I signed in just to comment on how awfully stu...\n Ik know it is impossible to keep all details o...\n This is the ultimate one-man show in which Edd...\n If you are a fan of slap-stick that has terrib...\n On many levels it's very good. In fact, consid...\n Yes, I am a romantic of sorts who likes musica...\n Basic summary: Ipswitch used to be a community...\n From director Barbet Schroder (Reversal of For...\n I love Columbo and have seen pretty much all o...\n There have been many movies, on living the Ame...\n Unfortunately many consumers who write reviews...\n The above summary really isn't meant as a slam...\n When his elderly mother Emily (Jeanne Bates) i...\n in this movie, joe pesci slams dunks a basketb...\n Forgive me for stating the obvious, but some f...\n This poor remake of the 1963 classic starts re...\n \"Carriers\" follows the exploits of two guys an...\n This film looked interesting; I'd read the boo...\n Compared to this, Tarkovsky is a speed freak.<...\n Tommy JOnes and Matt Dillon do the gambling wo...\n This movie was made in Hungary i think. anyway...\n Filmmaker Bryan Forbes, who once displayed a l...\n A masterpiece.<br /><br />Thus it is, possibly...\n Cannot believe my eyes when read quite a bunch...\n Disney have done it again. Brilliant the way T...\n I had the opportunity to see this last evening...\n Wow, what can I say about this film? It's a lo...\n the lowest score possible is one star? that's ...\n I'm not sure I've ever seen a film as bad as t...\n If you've ever seen an eighties slasher, there...\n Oh, it's the movie - I thought I waited too lo...\n Oh my... bad clothing, worse synth music and t...\n Like many people on this site, I saw this movi...\n I watched 5% of this movie tonight and you may...\n I don't know the stars, or modern Chinese teen...\n What can I say about this film other than \"don...\n the photography is good, the costumes are good...\n Anyone who rates this movie above a 3 has a ve...\n Cheap and manipulative. This film has no heart...\n Strained and humorless (especially in light of...\n This is the film in Antonioni's middle period ...\n 'Blue Desert' may have had the potential to be...\n Stop me if you hard this one before, some chee...\n I am a 11th grader at my high school. In my Cu...\n This movie is even a big step down form the ty...\n Dolph Lundgren stars as a templar who comes to...\n I've seen some bad things in my time. A half d...\n A wonderful film by Powell and Pressburger, wh...\n New Year 2006, and I'm watching Glimmer Man ag...\n BORN TO BOOGIE is a real 'find'--though a rock...\n I watch family affairs,coronation st &east end...\n Christian Duguay directed this tidy little esp...\n By the standards of Hollywood this movie was f...\n I really enjoyed the first film and when it tu...\n I am not quite sure what to say/think about th...\n This is a charming movie starring everyone's f...\n I LOVE Sandra Bullock-She's one of my all-time...\n IT SHOULD FIRST BE SAID THAT I HAVE READ THE M...\n There's some very clever humour in this film, ...\n I saw that movie few days ago. This movie is s...\n I married a Japanese woman 14 years ago. We're...\n The Invisible Maniac starts as a young Kevin D...\n I remember this film fondly from seeing it in ...\n Okay, I am a fan of the Nightmare series and e...\n This film is as good as it is difficult to fin...\n In yet another case of misleading marketing, t...\n Physical Evidence is one of those films that y...\n MCBOING BOING is one of the cartoons that have...\n This is a total piece of crap. It is an insult...\n Based on the book \"Space Vampires\" by Colin Wi...\n I watched this as part of my course at Aberyst...\n I had been delighted to find that TCM was show...\n 'Wicked Little Things' really separates itself...\n After his widower father dies in a horsing acc...\n Essential viewing for anyone who watches TV ne...\n I'm not really sure how to even begin to descr...\n \"Un Gatto nel Cervello\"/\"Cat in the Brain\" is ...\n The Sunshine Boys is a terrific comedy about t...\n Both my friend and I thought this movie was we...\n I turned over to this film in the middle of th...\n I'm afraid I only stayed to watch the first ho...\n Aside from the discotheque scenes that epitomi...\n I liked the first The Grudge. It really creepe...\n Just a note to add to the above comment. Fear ...\n This is one of the worst films ever. I like ch...\n I really do not know what people have against ...\n This early Sirk melodrama, shot in black and w...\n This (extremely)low-budget movie is compared t...\n This highly underrated film is (to me) what go...\n Okay, I was bored and decided to see this movi...\n Watching \"Death Bed: The Bed That Eats\" is lik...\n This train-wreck begins with Brujo and Alma cr...\n I don't think I'm spoiling anyone's experience...\n As a veteran of many, many pretentious French ...\n In all my 60 years of age, I have learned that...\n Billy Wilder continues his strong run of films...\n Saw this on TV. I'm glad I didn't go to the ci...\n This is easily one of the worst movies i have ...\n I recently watched this film on The Sundance C...\n What happened to Peter Bogdanovich? Once a bri...\n Return to Cabin by the Lake is Perhaps one of ...\n Reign Over Me is a success due to the powerful...\n Wow this Wrestlemania took place from 3 differ...\n With this movie only running 61 minutes and no...\n I remember when I first heard about Jack Frost...\n When a rocket from a government experiment on ...\n I am 17, and a biased Muppet fan, and while I ...\n I was 13 when this mini-series (and its sequel...\n OK, I admit that I still associate Sophie Marc...\n Sort of like a very primitive episode of \"Gene...\n This picture in 1935 walked away with all kind...\n \"Raw Force\" is like an ultra-sleazy and perver...\n OK i have seen Hershall Gordon Lewis movies be...\n The Blob starts with one of the most bizarre t...\n I'm glad the folks at IMDb were able to deciph...\n \"Tourist Trap\" is a genuinely spooky low-budge...\n If you want to watch something that is for 'hi...\n My complaints here concern the movie's pacing ...\n A space ship cruising through the galaxy encou...\n I originally saw this several years ago while ...\n I decided to hire out this movie along with a ...\n While to most people watching the movie, this ...\n I wasn't impressed with the Graffiti Artist, d...\n I haven't actually finished the film. You may ...\n This movie was so poorly written and directed ...\n Great adaptation of the Christie novel. Surpri...\n The one thing that can be said about RUNNING O...\n It plays like your usual teenage-audience T&A ...\n This is a pretty obscure, dumb horror movie se...\n The only reason I watched this is because of i...\n Farewell Friend aka Adieu L'Ami/Honour Among T...\n They constructed this one as a kind of fantasy...\n This film promised a lot, so many beautiful an...\n This movie tries to hard to be something that ...\n Shame on Julia Roberts and John Cusack. They a...\n The many comments made by others have been ver...\n It may have been inevitable that with the onsl...\n The best thing one can say about the film \"Tra...\n Like so many media experiments, this amateuris...\n I recently had the pleasure of seeing The Big ...\n As if there weren't enough of those floating a...\n When I was little, my parents got this movie f...\n Until I saw this film, \"life is beautiful\" was...\n Wow and I thought that any Steven Segal movie ...\n A fairly enjoyable kidnapping caper set in New...\n I have to say that I used to be a huge fan of ...\n I must preface this by saying I am a huge roma...\n A scientist (George Zucco) wants to create wol...\n Throughout the world the unmistakable imprint ...\n I watched SCARECROWS because of the buzz surro...\n Mild spoiler in the second paragraph.<br /><br...\n Stupid and just plain weird movie about some k...\n It's unlikely that anyone except those who ado...\n I expected a good movie. What I got was an eve...\n This couldn't have been better. The strong res...\n This version did not move me as deeply as the ...\n I saw 'New York: I Love You' today and loved i...\n ****Don't read this review if you want the sho...\n The Toxic Avenger... <br /><br />The idea of t...\n One star for the \"plot\". One star for the acti...\n Rowan Atkinson delivers an unforgettable perfo...\n I was amazed about this early performance of C...\n Ah! When good actors take on bland material! I...\n \"Rois et Reine\" is a sprawling mess of a movie...\n A thinly veiled attempt to push Hulkamania to ...\n The first 2 parts seek to reduce to absurdity ...\n Im a big horror fan and I quite enjoyed this r...\n Many films attempt the ambitious. Few succeed....\n The film is based on Kipling's heroic lines th...\n At the time I recall being quite startled and ...\n How amazing this film is! I've seen it over an...\n This movie was very good. If you are one who l...\n do not be suckered into renting this movie. It...\n Everyone plays their part pretty well in this ...\n This existential thriller, in Portuguese with ...\n First off I want to say that this film is wort...\n Firstly let me get this of my chest I hate Oct...\n Well, Jesus of Montreal is basically an intell...\n I am starting this review with a big giant spo...\n When I saw that this film was being aired on l...\n This movie is not that interesting, except for...\n I saw this movie once in or close to its relea...\n I ended up watching this movie before even goi...\n Traffik is a really well done 6 hour drama abo...\n This film is a great disappointment. Director ...\n Surely one of the lamest shows ever to be prod...\n Sherman, set the wayback machine for... 1986. ...\n Not many movies were made about the Lighter-Th...\n Everybody interested in Texas needs to have th...\n I just finished screening El Padrino in German...\n So, I'm wondering while watching this film, di...\n Okay -- the title \"House of Frankenstein\", was...\n Full marks for the content of this film, as a ...\n This is the only full length feature film abou...\n The young Dr. Fanshawe(Mark Letheren), an avid...\n This movie should not be compared to \"The Stin...\n I thoroughly enjoyed the first part of this tw...\n Want to know the secret to making a slasher fi...\n Freddy's Dead: The Final Nightmare (1991) was ...\n A surprisingly beautiful movie. Beautifully co...\n This movie is a nonsense/spoof comedy, in the ...\n What on earth? Like watching an episode of Nei...\n How good is Gwyneth Paltrow! This is the right...\n \"Kings and Queen\" is a bloated French drama th...\n this film is really bad....... no i mean reall...\n This movie is way too long. I lost interest ab...\n SPOILERS ALERT<br /><br />Homeward Bound: The ...\n Stanley Stupid (Tom Arnold) and his wife, Joan...\n Kate Beckinsale steals the show! Bravo! Too ba...\n Many people are making fun out of Steven Seaga...\n The artist Daniel King (Chris John) and his ma...\n Love the characters and the story line. Very f...\n I am a Jane Eyre lover and a purist, and this ...\n THE BEAVER TRILOGY is, without a doubt, one of...\n I'd honestly give this movie a solid 7.5, but ...\n at first i thought it was bad because i had gr...\n I was very happy and at the same time quite su...\n I am completely shocked that this show had bee...\n I was not very excited to see this movie in th...\n The Omega Code was a model of cinematographica...\n This movie was just horrendous. How could anyb...\n Critters 4 starts, & I quote 'Somewhere in Kan...\n A most awaited film of the year 2002. After th...\n Space Camp is a pretty decent film. The plot i...\n This film is really ONLY Bill Maher's interpre...\n I'd chose either over this film. This film has...\n Oh this was a really bad movie. The girl who p...\n ... Hawk Heaven for lovers of French cinema an...\n Every now and then some amateur will come out ...\n Predator Island starts as six friends, Eric (T...\n This is one of the greatest films ever made. B...\n The focus of the key relationship in a young m...\n Good idea....shame about the actual movie. Wou...\n I am a fan of good historical fiction, and was...\n This is one of the worst movies I have ever se...\n I've been a fan of Heaven's Gate since its fir...\n This movie was playing on Lifetime Movie Netwo...\n The first was good and original. I was a not b...\n An innocent man (Steve Guttenberg) has a one-n...\n **SPOILERS*** Slow as molasses mummy movie inv...\n I gave \"Airport '79\" only two stars because it...\n \"Visitor Q\" is a failed attempt at black comed...\n OK, when I was little (and I mean like 2 or 3,...\n I got this film from a private collector and w...\n ...for the Lt to have chosen this one. First, ...\n Some people seem to think this was the worst m...\n I wasn't sure about getting this movie on DVD ...\n (Contains spoilers)<br /><br />Russia in the 1...\n Farscape totally rules! In my opinion it's ver...\n This production has absolutely no storyline. T...\n An attempt at crossover to appeal to those who...\n I was shocked at how good this German version ...\n By Randolph Scott standards of the 1950s, this...\n I'm a fan of good, plausible, action movies. A...\n I never bothered to see this movie in theaters...\n I really like this film because of all the sta...\n Laura Fraser creates her ideal man on a virtua...\n I loved the original, I watch it every year. b...\n this one is out there. Not much to say about i...\n Sally and Saint Anne is a very funny movie. Th...\n This is one of my favourite Disney films. It h...\n I don't understand what is hard hitting about ...\n Documentaries of this kind are often very opin...\n Just see it! It's a smart movie but too hard t...\n I had to walk out of the theater. After an hou...\n It has singing. It has drama. It has comedy. I...\n I'd never seen a Tarzan movie before so when I...\n Basing a television series on a popular author...\n This show has an amazing plot with good and re...\n The problem with portraying a real life indivi...\n Margaret Colin stars as the principal figure i...\n This is a modest ,unassuming traditional Weste...\n Overall this movie was excellent for its time ...\n The script for this TV soap opera is so bad th...\n I was 10 years old when this show was on TV. B...\n I just saw this movie premiere on MTV. I must ...\n ...am i missing something here??? \"unexpected ...\n Before I really slag this film off, I just wan...\n Perhaps this movie was meant to be nothing but...\n I went to see suspecting I would hate it, I di...\n This film is about the worst I have seen in a ...\n This oddity from Roman Polanski clearly shows ...\n It pains me to see an awesome movie turn into ...\n Written by someone who has been there, you can...\n Cassie (Sandra Bullock) is a hyper-serious pol...\n ...that Jamie Foxx would ever deliver such a w...\n of the films of the young republic few in numb...\n Despite myself, I really kinda like this movie...\n I love Das Boot. I hoped for something along s...\n \"Mame\" is a disgrace to many things--to Lucill...\n If there was justice in the cinematic universe...\n LTL is the kind of formulaic, hopeless comedy ...\n An opium den, a dirty little boy (actually a m...\n Caught this film in about 1990 on video by cha...\n Naked Deanna Troi! <br /><br />Richie's brothe...\n This is one of the most boring movies I have e...\n JUDAAI was a bold film by Raj Kanwar at it's t...\n I didn't really like this movie that much at a...\n This has got to be the cheesiest, stupidest, m...\n This relatively obscure Hong Kong \"minorpiece\"...\n A film is beyond all expectations, an excellen...\n The movie \"Holly\" is the story of a young girl...\n So far only the first episode has been shown, ...\n I watched the 219 minute version and have to s...\n The filming crew did not have good access to t...\n I am right now watching \"The Big Chill\" on DVD...\n I am a huge fan of Say Anything, Jerry Maguire...\n \"Ghost of Dragstrip Hollow\" was one of the man...\n I have a friend that works at blockbuster, and...\n Watching \"Der himmel über Berlin\" as a teen in...\n I gave it a rating of 3 out of 10.<br /><br />...\n technically, this movie would have had it all:...\n I saw this movie in the theater when I was a k...\n Starring: James Belushi; Peter Dinklage; Alex ...\n This was a great movie with a good cast, all o...\n This story focuses on the birth defect known a...\n I've watched this film a few times and I never...\n i just watched the movie i was afraid it's gon...\n Despite being told from a British perspective ...\n ....this mini does not get better with age. I ...\n Got into this flick, just as it was beginning,...\n First off, Mexican Werewolf in Texas' title is...\n Hey now, I have never laid eyes on a Manga com...\n I believe the reason this movie did not get th...\n As a movie, THE ITALIAN JOB is ok at best; goo...\n I hadn't laughed this hard for a movie in a re...\n Most book adaptations are bad but this film le...\n I normally don't try and second guess a crime ...\n The world is made up two different types of mo...\n \"Valley Girl\" launched Nicolas Cage's career a...\n I saw this movie first on the Berlin Film Fest...\n <br /><br />Cheap-looking and ugly, this film ...\n I don't know if I'd consider it a masterpiece ...\n Of course you could never go into a theatre an...\n As a matter of fact, this is one of those movi...\n I watched an episode. Yes I sat through the en...\n Ha ha. - oh no - what to say about this film? ...\n I couldn't' agree more than with the comment l...\n It's along the line of comedy of errors, mista...\n I haven't seen every single movie that Burt Re...\n Wendigo is a pretty good psychological thrille...\n Honestly, this is one of the BEST horror movie...\n ...I saw this on cable back in the late 1980's...\n \"The Groove Tube\" was one of only two Ken Shap...\n I can't believe it, IMDb really does have ever...\n I'm a dance teacher and was looking forward to...\n I saw this film many years ago (along with ano...\n I did not like this movie. I rented it hoping ...\n Yes, I felt like I had been gutted after first...\n In the voice over which begins the film, Hughi...\n For a horror film, this is criminally dull. A ...\n This is a simple tale but it feels very manipu...\n A young couple Mandy Pullman (Mitch Martin) an...\n Although there's Flying Guillotines as part of...\n I didn't know what to expect when I rented thi...\n I saw this movie at an actual movie theater (p...\n Expectacular THE ATOR's second part!! Directed...\n Gave it two stars because the DVD cover was go...\n Criminals Perry Smith and Richard \"Dick\" Hicko...\n I never heard of this film til it played as pa...\n If you're even mildly interested in the War be...\n \"Citizen X\" is the superbly told true story of...\n Kubrick meets King. It sounded so promising ba...\n Great movie. I thought it would never be as go...\n This movie is filled with so many idiotic mome...\n This is a case of taking a fairy tale too far....\n The accountant Shohei Sugiyama (Kôji Yakusho) ...\n I bought the DVD to get Julia Ormond. Well, I ...\n This movie is a real waste of time and effort....\n Excellent and highly under-rated from beginnin...\n Heart of Darkness Movie Review Could a book th...\n Sometimes reading the user comments on IMDB fi...\n Ruggero Deodato is often credited for inventin...\n This event defined an era of wrestling enterta...\n It's wartime drama - WWII, with French and Jew...\n One of, if not THE most visually beautiful fil...\n This is an amazingly well-filmed early talkie ...\n What an inspiring movie, I laughed, cried and ...\n Another of the endless amount of cookie-cutter...\n This movie is certainly well-constructed, begi...\n Whether it's three guys in their tighty-whitey...\n I had initially heard of TEARS OF KALI a while...\n Don't waste your time on this film. It could h...\n A great movie about triumph over all the nay-s...\n Most of the Brigitte Bardot movies I've seen h...\n People tried to make me believe that the premi...\n I find it so amazing that even after all these...\n If you want to see a film starring Stan laurel...\n When Marlene Dietrich was labeled box office p...\n I have to say that some of the other reviews o...\n First off, if you're planning on watching this...\n Surprisingly Kieslowski's this movie is disapp...\n Jeremy Irons and Forrest Whitaker are good act...\n The \"film\" consists of the audition tapes of t...\n Move over Manos. Back off Boogens. It doesn't ...\n Captain Corelli's Mandolin is one of Nicolas C...\n Nine minutes of psychedelic, pulsating, often ...\n Okay, I saw this movie as a child and really l...\n Before watching this film (at a screening atte...\n Shot entirely on location in Bulgaria, The Man...\n Nikolai Gogol's story \"Viy\" has been filmed ag...\n All Hype! What better way to describe a movie ...\n Adrianne, should really get a life-without Mr....\n As far as the movie goes, it's an OK science f...\n On the 28th of December, 1895, in the Grand Ca...\n This is easily the most underrated film inn th...\n Being a child of the 1980s, I grew up with num...\n As part of an initiation prank Julie (Meg Till...\n Kalifornia is the story of a writer and his gi...\n I cannot understand why so many people did not...\n An old intellectual talks about what he consid...\n Such is the dilemma(above) that Debbie must fa...\n When I first saw the trailer for The Comebacks...\n Twisted Desire (1996) was a TV movie starring ...\n but \"Cinderella\" gets my vote, not only for th...\n 1933 seemed to be a great year for satires (\"D...\n This movie has EVERY cliché of every terrorism...\n Tom Hanks like you've never seen him before. H...\n Wow! Why aren't more British movies like this....\n Anthony Perkins and Sophia Loren are absolutel...\n A comparison between this movie and 'The Last ...\n I don't know what some of you are smoking, but...\n Truly awful. Obviously an attempt to cash in o...\n A group of extremely unlikable A-holes are tor...\n A bit \"the movie in the movie\" case, or as the...\n This film revolves as much around Japanese cul...\n Bergman's Skammen is one of the most realistic...\n This is definitely a girl movie. My husband fo...\n This was one of the worst movies EVER!!!!!!!! ...\n \"Journey of Hope\" tells of a poor Turkish fami...\n Most likely \"Cleopatra 2525\" will be of little...\n We saw the silent version of this film, and it...\n The film is excellent. One of the most notewor...\n In 1958, Clarksberg was a famous speed trap to...\n For any wrestling fan, this is the wrestlemani...\n The film is a collection of cliche's on just a...\n Who in their right mind does anything so stupi...\n Master cinéaste Alain Resnais likes to work wi...\n Brought Philip Larkin to life in a way that is...\n After reviewing this intense martial arts movi...\n this movie is so complex that it can be given ...\n Shintarô Katsu gained tons of fame playing the...\n Yes, in this movie you are treated to multiple...\n Canadian film-maker Ron Switzer delivers a sol...\n People criticize NSNA because it is a low-poin...\n There is so much of worth in this movie that i...\n Bette Midler is indescribable in this concert....\n \"Curse of Monkey Island\" is a treasure; in my ...\n This film contains more action before the open...\n The decline series is amazing and director PS ...\n This is the movie I've seen more times than an...\n It is hard to make an unbiased judgment on a f...\n Some users are confused about the identity of ...\n I think Jason Lee has huge potential, but this...\n this a great Disney flick.it is the story of a...\n The only good thing about \"People I Know\" is t...\n The Tattooed Stranger was another of those rar...\n Laid up and drugged out, as a kidney stone wen...\n This movie was a rather odd viewing experience...\n This sequel is quite awful to be honest. I'm a...\n Naked City: JWAB does a pretty good job of bal...\n I have always liked the Carry On films, with t...\n Luther the Geek (1990) is a dull horror movie ...\n oh my god, i give this film three stars out of...\n This is one of the best episodes from the enti...\n !!!! POSSIBLE MILD SPOILER !!!!!<br /><br />As...\n I consider this film one of the worst in the N...\n One of the most entertaining of all silent com...\n Horses on Mars is an engaging animated short t...\n As an adult I really did enjoy this one. I wat...\n Wow, this movie was horrible. As a Bills fan I...\n When I first got my N64 when I was five or six...\n Stargate is the best show ever. All the actors...\n The Ogre is a film made for TV in Italy and wa...\n The subject is World War II and Robert Ryan is...\n While most of the movie is very amateurish, th...\n I am a big fan of Deepa Mehta's work, especial...\n Animal Farm (1954) was a very good read about ...\n Despite loving Rita Hayworth, finding the fina...\n There were times when this movie seemed to get...\n This film was not great cinema, but definitely...\n What often gets overlooked in Agatha Christie'...\n I have just read what I believe to be an analy...\n This gloriously turgid melodrama represents Do...\n \"The Journey\" is a romantic version of the col...\n Quite simply a well-made, well-written and won...\n Miranda Cosgrove is known for her debut in \"Sc...\n \"Submerged\" is definitely NOT \"the worst movie...\n In this offering, one only has to view the cur...\n ...because this was simply awful. 101 Dalamati...\n Slim Slam Slum is a sad and disappointing pict...\n This show is awesome and we have been enjoying...\n This movie is bad, so bad that my mother who c...\n Another hand-held horror means another divisiv...\n I rank OPERA as one of the better Argento film...\n This documentary by Marian Cooper is absolutel...\n Yeah sure, the movie its visuals already did l...\n i don't know what they were thinking.by they,i...\n My favorite memory of this show and the band w...\n It was such a treat when this show was on beca...\n I would not be giving away too much of the fil...\n Role-reversal remake of 1942's \"The Major and ...\n There were two things I hated about WASTED : T...\n For all the cast and crew who worked on this e...\n If you hit your teens in the 70s, as I did, yo...\n i LOVED IT and was SO shattered that there not...\n The film is exceptional in it's gay iconograph...\n <br /><br />This film was produced and release...\n I was prepared for a turgid talky soap opera c...\n An excellent cast makes this movie work; all o...\n Wow...speechless as to the making of this film...\n While I have never been a fan of the original ...\n Well you take O.J. Simpson as a all american s...\n I have been a huge Lynn Peterson fan ever sinc...\n i adore this film as much as any one adores vi...\n It all begins with a series of thefts of seemi...\n Fred Astaire is reteamed with Rita Hayworth on...\n 22. JOE (drama, 1970) Joe (Peter Boyle) is a r...\n Dear Readers,<br /><br />The final battle betw...\n With a catchy title like the Butcher of Plainf...\n Disgused as an Asian Horror, \"A Tale Of Two Si...\n this movie is the best horror movie i have eve...\n RIFIFI (Jules Dassin - France 1955)<br /><br /...\n Alfred Hitchcock made this comedy of mis-marri...\n \"Nicodemus\" is almost a copy of \"Red\" in the o...\n This one is a very solid Randolph Scott Wester...\n Moron and girlfriend conduct some ritual to re...\n Time For A Hit!<br /><br />Waqt Dir- Vipul Amr...\n This film proves a theory I have had for quite...\n Well made documentary focusing on two Sudanese...\n This light-heated (for Cassavetes)love story i...\n This movie has several things going for it. It...\n This is one of the best of the series, ranking...\n Contrary to most other comments about \"Syriana...\n I loved this movie. It's a lot of laughs. The ...\n I cannot stress how bad this movie is. This di...\n I wasn't so impressed with this film, finding ...\n Here is one of those movies spoiled by the stu...\n This TVM seems to have polarised opinions amon...\n French cinema had always been very strong when...\n This is a movie that should have been a mini-s...\n Seeing this film for the first time twenty yea...\n This movie is a pathetic attempt, apparently, ...\n Siskel & Ebert were terrific on this show whet...\n After all these years of solving crimes, you w...\n The script for \"Scary Movie 2\" just wasn't rea...\n It wasn't notable enough to be truly horrible,...\n For those of us Baby Boomers who arrived too l...\n I notice the DVD version seems to have missing...\n It started off weird, the middle was weird, an...\n Oz is the TV show which is intensive non-stop ...\n To qualify my use of \"realistic\" in the summar...\n This film is a joke and Quinton should be asha...\n I love Jane Austen's stories. I've only read t...\n I saw this movie in a theater in Chicago and s...\n I think that anybody whose dumb enough to risk...\n In 1968 when, \"SYMBIOPSYCHOTAXIPLASM: Take One...\n Realty television crew are assigned to cover a...\n The first time I had heard of Guest House Pari...\n In The White Balloon and Crimson Gold, the two...\n Not many television shows appeal to quite as m...\n I just saw DreamGirls yesterday, and I was REA...\n This movie is by far one of the worst B-movies...\n A recent post here by a woman claiming a milit...\n Just watched Conrack for the first time. Altho...\n Loved this show...smart acting, smart dialog, ...\n This short subject is a remake of the Three St...\n There are some extremely talented black direct...\n For pure gothic vampire cheese nothing can com...\n A stupid teen supposed comedy that revolves a ...\n I haven't seen this film in years so my knowle...\n I searched out this one after seeing the hilar...\n Lonesome Dove is my favorite western second on...\n For a first film in a proposed series it achie...\n Although Misty Ayers (burlesque stripper) is c...\n That might be a bit harsh for me saying that, ...\n Unfortunately, Koontz seems doomed to die with...\n Although Charlie Chaplin made some great short...\n this is the best movie i have ever seen and i ...\n Notorious HK CATIII actor, Anthony Wong, is fo...\n Talk about your classics! Ernie Fossilus (the ...\n Don't say I didn't warn you, but your gonna la...\n I am oh soooo glad I have not spent money to g...\n This film uses all art-house clichés (slow pac...\n Did Sandra (yes, she must have) know we would ...\n Adapting plays into cinema is often a bad idea...\n Oh, it's an excellent piece of work, to be sur...\n What can I say about Seven Pounds...well I wat...\n What Bergman has got here is \"What if all that...\n Hoot is the best movie. go and see it if you h...\n I expected alot from this movie. Kinda like Le...\n I suppose bad Laurel and Hardy is better than ...\n It is nice to see a show that has a little mor...\n Critters 4: This movie was continued after the...\n I can't say whether the post-WWII British come...\n I am not surprised to find user comments for t...\n At first, three words: READ THE BOOK! Really g...\n The first, and far better, of Kevin Kline's tw...\n then you will be a big fan of this movie. Its ...\n As Anthony Bourdain said... \"I wanted to stick...\n I rented this movie because Elijah Wood has do...\n So you've got a number of models on an island,...\n I remember ignoring the TV series when it firs...\n (spoilers)<br /><br />I was blown away by this...\n This movie is mostly chase scenes and special ...\n Who doesn't remember The Muppet Movie???<br />...\n This documentary on dinosaurs was undoubtedly ...\n As if most people didn't already have a jitter...\n The book was one of Stephen King's best. The m...\n ...and this movie easily exceeded my expectati...\n WOW what can i say. I like shity movies and i ...\n I have to admit I laughed a few times during t...\n Bardem is great. Actresses are great. But Amen...\n Like the 5-year old protagonists of his latest...\n This movie is S-L-O-W. Spent most of the movie...\n Victor Sjostrom's silent film masterpiece The ...\n We stumbled upon the documentary, Grey Gardens...\n Little Edie and Big Edie are characters that a...\n This was a disappointing film for me. It came ...\n This movie appears to have been overlooked by ...\n This is a nice movie with good performances by...\n In this paranoia-driven potboiler, our reporte...\n Begotten is black and white distorted images. ...\n Alright, so maybe the impersonations of Jay Le...\n In the year 1990, the world of Disney TV carto...\n From the first scene you are given clues as to...\n This has to be one of the most beautiful, movi...\n I dont know about you, but I've always felt dr...\n It's been about 14 years since Sharon Stone aw...\n I have this film out of the library right now ...\n This movie has to be the worst film I have see...\n While I have seen and enjoyed similar movies t...\n The best so-bad-it's-good movie ever made. Rud...\n When I finally got around to seeing this film ...\n I was very displeased with this move. Everythi...\n A wonderful cast thrown into modern mystical r...\n This is one of those star-filled over-the-top ...\n Well, what are the odds! At the exact right mo...\n 8/2008. When I originally wrote my comments, s...\n This film is about a woman falling in love wit...\n the only scenes wich made me laugh where the o...\n myself and 2 sisters watched all 3 series of T...\n I do find it a bit overrated. Maybe it's just ...\n I cant believe how many excellent actors can b...\n If scientists behaved in a way that H.G. Wells...\n I have seen Shallow Grave years ago, and *that...\n This was one of the all time best episodes. Of...\n Bedrooms and Hallways gives its audience a loo...\n I would have given this LESS than a 1 rating i...\n This isn't \"so bad it's good\"--It's \"so bad, i...\n I'm a fan of the horror movie, regardless of w...\n maybe i need to have my head examined,but i th...\n Larry Buchanan. Yep, same guy who did \"Attack ...\n Ritchie's first two films were snappy, stylish...\n After The Funeral was absolutely superb, and b...\n I watched this movie when Joe Bob Briggs hoste...\n While studying the differences between religio...\n The only interesting part of this movie was it...\n Images are great and reflect well the landscap...\n Alan Rickman & Emma Thompson give good perform...\n While this movie did have a few scary moments ...\n You know when you're on the bus and someone de...\n Kay Pollak's 2004 heart-warmer Så som i himmel...\n This ranks up there as the worst movies of all...\n In the early 1990's \"Step-by-Step\" came as a t...\n I own a Video store with hundreds of documenta...\n Yet another example of the complete waste of U...\n Seeing as how I am a big fan of both \"Fall\" an...\n This was a fabulous premise based on lots of f...\n After the initial shock of realizing the guts ...\n Blondell & Farrell are excellent. Blondell was...\n Roy Rogers (as Roy) and sidekick Raymond Hatto...\n Flowers! If it's one thing you'll take away fr...\n This film captures the short moments between a...\n A virtual carbon copy of The Cave save for a f...\n The version I saw of this film was the Blockbu...\n It is difficult to find any positives in this ...\n this film tries to be immensely clever, and Ta...\n The first Robocop had a sense of cynical wit a...\n This is a feel-good movie and nothing more. An...\n What an atomic bomb of a movie. The story goes...\n As a huge fan of horror films, especially J-ho...\n Oftentimes, films of this nature come across a...\n Isabelle Huppert must be one of the greatest a...\n Chris Morris' Brass Eye TV series had always g...\n Before seeing this movie, I would've said that...\n I own 2 home entertainment stores and I've see...\n Bottom-of-the-barrel stinker is so bad it's be...\n I know I know it was a good ending but sincere...\n This guy has no idea of cinema. Okay, it seems...\n Many years ago I saw this movie (on television...\n What was Wes thinking making this dribble? It ...\n I've avoided seeing this film for some time bu...\n This extremely low-budget monster flick center...\n A bunch of women who can't act sit around, tal...\n Less a thriller than an colorful adventure wit...\n Sorry, folks! This is without a doubt the wors...\n And how many actors can he get to stand in for...\n This is the best picture about baseball since ...\n I felt this movie started out well. The acting...\n As a native of New Orleans, I can state that a...\n Sorry, but every time I see a film wherein a w...\n I'm not sure if Carpenter is looking to raise ...\n The most amazing film I have ever seen. I didn...\n This movie, with all its complexity and subtle...\n Being a fan of bad movies, I was thrilled to f...\n Don't listen to the many acerbic and derisory ...\n Seeing a photo of a man being attacked by zomb...\n caddyshack II does NO justice for the caddysac...\n When i come on IMDb boards,I'm always fed up w...\n I have waited for ages to comment on this prog...\n I would imagine that if Steve McQueen knew he ...\n \"Christmas in Connecticut\" is an absolute gem,...\n Wow...not in a good way.<br /><br />I can't be...\n After slightly over 50 years of avid film watc...\n Director Jonathan Lynn has made some underrate...\n I couldn't help but look at the time every 5 t...\n This show is up there with the best Comedys ma...\n Oh, boy, God bless the 1970's, we got some of ...\n I don't doubt that the critics panned this mov...\n A man (Goffredo Unger) is found floating in th...\n Okay, so the movie went straight to video. If ...\n First of all, I really can't understand how so...\n Lot of silly plot holes in the film. First we ...\n Isabel has just gone out of jail. She is decid...\n There was a video out in America called 'Carto...\n If I had never seen an episode of the original...\n \"I went to the movies, to see 'Beat Street' / ...\n This is one of those movies that you watch bec...\n I quote below words from my favor writer, Paul...\n The movie is boring, the characters and scenar...\n Alright normally i am not as harsh on sequels ...\n I have to confess right off that I have never ...\n This was not the worst movie I've ever seen, b...\n This is a bizarre oddity, directed by the guy ...\n \"Who Done It?\" contains many surefire laughs a...\n Although the beginning of the movie in New Yor...\n Big (and we mean plus sized big) baddie Sebast...\n I grew up watching the \"Bowery Boys\" on the we...\n Extremely poor action film starring the ever w...\n More eeriness and dark secrets released in the...\n A must see film with great dialogues, great mu...\n I love this film. There is something for every...\n I used to write comments at IMDb, but I don't ...\n During my childhood time I have seen the first...\n Oh my god, WHY, did I waste my precious time o...\n A Chicago couple, Dillon and Dougherty, are fa...\n This a rip roaring western and i have watched ...\n This is a great movie. In the same genre of th...\n I honestly want the last 30 minuets of my life...\n There have been some great television movies i...\n One of the worst theatrical movies of the year...\n What an awesome mini-series. The original TRAF...\n This is perhaps the best rockumentary ever- a ...\n \"Best in Show\" is certainly Christopher Guest'...\n I found this a good movie to pass your time, b...\n This movie is funny in more ways than one. It'...\n Page 3 is one of those films Madhur Bhandarkar...\n Everyday we can watch a great number of film, ...\n The art of the absurd is alive and thriving in...\n Please! Do not waste any money on this movie. ...\n this is an entertaining movie. actually might ...\n Predictable parody, just about failed to impre...\n I read the book written by Bill Carter on whic...\n <br /><br /> What can I say? This is one of th...\n I just saw this on TCM tonight and was shocked...\n BLACK WATER is a thriller that manages to comp...\n Roommates Sugar and Bobby Lee are abducted by ...\n First of all, i am from munich, where this mov...\n The film opens with the director talking to th...\n It would be wrong and reprehensible of me to a...\n William Haines sparks this tale of a brash cad...\n I first heard about Commander's Log when I was...\n I have only see three episodes of Hack, starri...\n I can't say this is the worst movie ever made,...\n This movie should be called Blame it on the Sc...\n This has to be the worst movie I have seen. Ma...\n I don't honestly know what legal or illegal su...\n Without effective indulgence of the supernatur...\n All the comments so far about this movie are n...\n This is simply another bad Chuck Norris movie....\n It's hard for me to criticize anything that Mi...\n <br /><br />This movie sucks. Ridiculous \"scho...\n This short has all the elements of a great mov...\n Niagra Niagra was certainly not the best movie...\n I had seen this movie long time back, but foun...\n Some movies you watch and you say, \"Well, that...\n I have seen over 2000 Studio-Era sound films--...\n Critters 4 ranks as one of the greatest films ...\n What is supposed to be a simple generic myster...\n I never really understood the controversy and ...\n I must say that I had wanted to see this film ...\n Comparable to Fight Club, The Matrix, A.I., Si...\n OK, first of all, Steve Irwin, rest in peace. ...\n \"Quit while your ahead\" is a phrase they never...\n OK, I normally don't add comments on movies, b...\n I saw this film right in the middle while goin...\n A group of young adults open a plain of escape...\n I'm a historian. This movie is so wrong it hur...\n I don't see how this show is like the OC at al...\n It was almost unfathomable to me that this fil...\n Sherman Hemsley was great in the Jeffersons an...\n Amando DeOssorio was never one to let a lack o...\n I actually didn't mind the Geico commercials t...\n Director John Schlesinger's tense and frantic ...\n I lived during those times and I think the pro...\n \"Loonatics Unleashed \" is the worst thing that...\n What's wrong with this film? Many, many things...\n This could be a cute movie for kids My grandso...\n At the start, this one is from England, so, of...\n I was surprised by how emotionally invested I ...\n The adaptation of Will Eisner's SPIRIT to the ...\n In a Morocco completely invaded by Europeans a...\n I liked most of this film. As other reviews me...\n If you are 10 years old and never seen a movie...\n Those who are not familiar with Cassandra Pete...\n Bored and unhappy young babe Zandalee (a winni...\n A very refreshing story, the life of a parrot ...\n Over acted, heavy handed, full of speeches, pr...\n This deceptively laid-back, low-key, casually ...\n It's a poor film, but I must give it to the le...\n Although not the best Anime I have ever seen b...\n A lovely librarian, played by Playboy model Kr...\n This, like Murder She Wrote, is one of those s...\n I did here this movie was good from various pe...\n I don't know who got the idea that orcas go ar...\n This is a nice little movie with a nice story,...\n This is from much of the same creative team be...\n Most of the critiques on this flick have been ...\n This is a charming movie to say the least. The...\n Even without speaking a word, Billy Connely is...\n i have to rate this movie at a 10. i'm sorry b...\n Vivacious & irrepressible, ANNE OF GREEN GABLE...\n The Kinks warned about media heroes. Outside t...\n I'm usually not inclined to write reviews abou...\n Prom Night 2 is an OK horror movie but prom ni...\n Well, \"Cube\" (1997), Vincenzo's first movie, w...\n It's really a shame there was so much controve...\n Ah, Domino is actually a breath of fresh air, ...\n What a waste of great acting talent. This is a...\n Although it isn't half as hilarious as \"Chicke...\n I am usually disappointed by network movies. E...\n Quite simply this shouldn't have been made. It...\n By some happy coincidence the same year that J...\n Wow, praise IMDb and Google, for I have been t...\n A real disappointment from the great visual ma...\n This was the worst film i have seen for a long...\n The Director of Kannathil Muthamittal directed...\n Put this movie out of it's misery and burn the...\n I read nothing but good things about this movi...\n I really liked this movie.<br /><br />Everyone...\n The beginning of this movie had me doubting th...\n Film version of Sandra Bernhard's one-woman of...\n This is amazing-looking movie with the whole t...\n This movie is beautifully designed! There are ...\n In addition to his \"Tarzan\" series, the prolif...\n House of Games is a wonderful movie at multipl...\n This is a film that I keep coming back to, for...\n A terrific comedy-drama about the powers of fr...\n Where do you begin with a movie as bad as this...\n I think Gerard's comments on the doc hit the n...\n I wasn't sure how to rate this movie, since it...\n A great suspenseful thriller the acting is fir...\n I am an avid B-Rate horror film buff and have ...\n This was a riveting film, one that really drew...\n This is a complex film that explores the effec...\n I cannot believe that the actors agreed to do ...\n Adam (Eric Jungmann) and obnoxious best friend...\n An Inconvenient Truth is as entirely simplisti...\n This movie was so awful that I can't even desc...\n This tatty am dram adaptation scrambles soules...\n The movie opens with Charlie (Jeff Daniels), a...\n I saw the short titled \"The Reader\" recently a...\n This film has the kernel of a really good stor...\n Jim Brown stars and produces a tale set in the...\n The Five Deadly Venoms is easily the most memo...\n There is certainly emotion between the two mai...\n A great film in its genre, the direction, acti...\n Yes, this is one of the great musical movies I...\n This is one of the best and most under rated t...\n As a fan of the old series I must say that thi...\n Square pigs as a way of efficiently utilizing ...\n They had me from the first show.<br /><br />We...\n Wow! It's hard to put into words my feelings f...\n The writers of lost have outdone themselves. S...\n Movies like these are to the originals what Al...\n OK. Who brought the cheese. I love it. During ...\n I put this film in the queue on a whim after a...\n One comment said it wasn't a comedy...Mistake!...\n You know, before seeing this film I had little...\n I am right now in front of the tv, watching Ca...\n Brothers with psychokinetic powers (yes, reall...\n A good cast... A good idea but turns out it is...\n Stack should have received the Academy Award f...\n This film is a study piece for my english clas...\n Well the previews looked funny and I usually d...\n The Mascot is Ladislaw Starewicz's masterpiece...\n I wish there was a category to place this in o...\n Two things are changed from then.First of all ...\n i love this film. the songs and story lines ar...\n Darkly comic serendipity about a cosmetics sal...\n Before viewing, please make sure you have seen...\n As a comic book reader, who still sees myself ...\n I am from Romania ... and for that i apologize...\n First separate the story from the film. The st...\n A brilliant Sherlock Holmes adventure starring...\n 11:11 a.k.a. Hell's Gate (2004) is another bad...\n A bare-faced rip-off of Se7en and not fit to c...\n There are no spoilers for this film as nothing...\n What starts as a homespun comedy-drama and the...\n A true hero of modern times , Chuck Norris has...\n I personally hated this movie because it was p...\n I didn't know whether to laugh or cry at this ...\n Eddie Murphy for best supporting actor??? What...\n So one day I was in the video store looking fo...\n I knew little of this movie when I entered the...\n OK here is how I do this. I grade movies on 10...\n This is a complex documentary that shows many ...\n No, not the administration of GWB, the Decider...\n I first saw this film in the late 60's, and tr...\n While it was filmed at a Florida National Guar...\n I just rented this movie to see Dolph Lundgren...\n Some movies you'll watch because they touch yo...\n Okay, I seriously CAN'T think of anything wors...\n I am listening to Istanbul, intent, my eyes cl...\n I have nothing to comment on this movie It is ...\n Oh man, this movie was toe-cringing bad. Bad l...\n I remember when this show came out. It was ori...\n his costume drama is ill cast and without char...\n Oh dear!What a disappointment. I've been watch...\n While this isn't one of Miss Davies' very wors...\n I've been largely convinced to write this revi...\n Try as I might, I just simply couldn't get int...\n 1940. - A visit to the Lodz ghetto in Nazi-occ...\n This early version of the tale 'The Student of...\n This film was very interesting to me, virtuall...\n As I reach the \"backside\" of 35 I find myself ...\n The movie held my interest, mainly because Dia...\n SOME NOT-SO-SPOILY SPOILERS AHEAD<br /><br />W...\n I came across this movie while channel surfing...\n A Frank Capra WONDERS OF LIFE film.<br /><br /...\n I can't remember the series, I believe it may ...\n This is, in my opinion, much better than eithe...\n If \"Love Me Tonight\" is \"the musical for peopl...\n Is this your typical women in chains navy tran...\n A little girl's dead body is found stripped of...\n I was a bit surprised to see all of the hate c...\n Well, let me start off by saying how utterly H...\n Have to be honest and say that I haven't seen ...\n 2005 Toronto Film Festival Report It is offici...\n We taped this when it aired on TV back in 1995...\n Very strange screenplay by Cameron Crowe (foll...\n I was just a bit young for this one, but I had...\n Quite average even by Monogram standards, this...\n I adored this movie. Not only because I am a b...\n Foley's noir quality in this saturated and int...\n Avoid the USA version. It is with added US foo...\n I first played this around 98' or 99' when I w...\n The screenwriter poorly attempted to re-create...\n And a few more \"no\"s on top of that. Voodoo Ac...\n As a Dane I'm proud of the handful of good Dan...\n At the beginning we get to see the start of a ...\n While the story is sweet, and the dancing and ...\n \"Everything a great documentary could be\"?? Ye...\n Yikes. This is pretty bad. The play isn't grea...\n I rented this film yesterday mostly due to the...\n Jacknife is a masterpiece of the 80's. It's a ...\n Latter days is the best gay movie of the homos...\n This movie features some of the best ensemble ...\n I was intrigued by the nasty boss character as...\n Luscious Candace Bergen as a prim Victorian be...\n Pure crap, decent cinematography... I liked so...\n its too bad that no one knows anything about t...\n Nicely done evil little comedy pitting the FBI...\n When I first saw the poster of this movie, I d...\n Yes, Marie Dresler drinks prune juice that she...\n I picked this one up because the music was don...\n I rented this movie because it supposedly take...\n I try to watch it everyday most of the time, a...\n I was surprised at the low rating this film go...\n This movie is far better than the original The...\n This is the only movie that my wife and I have...\n If you have plenty of time to waste ... it's O...\n \"A total waste of time\" Just throw in a few ex...\n I was expecting a B-Movie French musical. Afte...\n ....so why on Earth would I see 'Sex Lives of ...\n I should never have started this film, and sto...\n Inept, boring, and incoherent supernatural \"th...\n National Lampoon's Dorm Daze is easily the wor...\n John Ford paid the wagons his tribute of a spe...\n I think this show is definitely the greatest s...\n While traveling by train through Europe, the A...\n It seems that several of the people who have r...\n This is a very interesting acquaintance! \"Two-...\n I love Eddie Izzard. I think this is awesome, ...\n I enjoyed this movie. Haven't seen Andy Griffi...\n This educational show focused on emotions, int...\n I am decidedly not in the target audience for ...\n There are many things to admire about this fil...\n I have lately got into the habit of purchasing...\n \"Margaritas and Cock...\"<br /><br />This treme...\n Having long disdained network television progr...\n This is an excellent movie that tackles the is...\n One of the most boring,pointless movies I have...\n This is perhaps the most ridiculous crap I hav...\n Glacier Fox is one of the most heartrending an...\n i love this film!! maybe it is my generation b...\n No, this has nothing to do with the sitcom \"Se...\n Otto Preminger's \"Porgy and Bess\" stands, to d...\n This movie is of interest to the fans of the f...\n I don't pretend to be an authority on actors w...\n Time travel is a fun concept, and this film gi...\n I know the girl who did the figure skating for...\n I always loved this film. The music,story and ...\n George Burns returns as the joshing Almighty a...\n This is the biggest Flop of 2008. I don know w...\n I hate to say it, but I really do think this o...\n Mirage (1990) is a very rare horror/chiller fr...\n This is one of my all time favorites.<br /><br...\n My goodness. And here I thought that there wer...\n What a delightful film...<br /><br />Accompani...\n I saw Soylent Green back in 1973 when it was f...\n I think the consensus is pretty unanimous abou...\n This has to be the all time best computer anim...\n This is my favorite movie of all time. I just ...\n I have searched for this movie for years. I ha...\n First of all i'd like to say that this movie i...\n This is one of the funniest movies ever made. ...\n A 14 year old girl develops her first serious ...\n The Little Mermaid is one of my absolute favor...\n When I first popped in Happy Birthday to Me, I...\n Is there a book titled \"How to Make a Movie wi...\n Hm. While an enjoyable movie to poke plot hole...\n Teresa Pavlinek was a popular member of the To...\n If ever I was asked to remember a song from a ...\n Here's how you do it: Believe in God and repen...\n really awful... lead actor did OK... the film,...\n More and more french cinema demonstrates that'...\n Never mind if 'National Velvet (1944)' is a bi...\n I feel that this movie is different from so ma...\n One of the most popular rentals at my local vi...\n This is one of my favorite \"Capra-esque\" comed...\n Ladies and Gentlemen,please don't get fooled b...\n Picked this up for 50 cents at the flea market...\n Somebody could probably make a great documenta...\n I think the best way for me to review this tit...\n to start off, i'm easily pleased. i'm in no wa...\n The German regional-broadcast-station WDR has ...\n I am a Christian and I say this movie had terr...\n Blythe Danner and Judith Ivey deliver wonderfu...\n Gargoyle starts late one night in 'Romania 153...\n basically, i like Verhoeven film because in hi...\n Unbelievable. Great cast, fair acting, interes...\n I watched pp the other night. I have to say I ...\n GUERNSEY (Maria Kraakman - Belgium/Netherlands...\n I know i loved this movie when i was 12-14 yea...\n Since I am required to write minimum of 10 lin...\n \"The Vicious Circle\" is a very unknown British...\n MGM hodgepodge of Jimmy Durante throwing a big...\n Extremely tense thriller set in the urban chao...\n The Story line for this game is very jerky whe...\n One of those TV films you saw in the seventies...\n It's rare for a movie to both encompass the pr...\n The Drug Years actually suffers from one of th...\n I loved this movie from the opening sequence r...\n Whether one views him as a gallant cavalier of...\n This is an absolutely true and faithful adapta...\n This is a typical low budget 1970's mess. It's...\n <br /><br />Robot jox is a great little film o...\n I thought it was one of the best sequels I hav...\n Enchanting. The best time to see this movie is...\n The Good Earth is perhaps the most boring film...\n I'm rather surprised that no reviewer so far h...\n Not every line in a comedy is funny. This movi...\n \"Sorte Nula\" is the #1 Box Office Portuguese m...\n ...but I would be lying. A relative was a crew...\n The movie took a new angle to Gandhi's life, w...\n This is one of the greatest films I have ever ...\n The four LA cops in fedoras driving around in ...\n This warning against anti-semitism is well-mea...\n One of the best movies out there. Yeah maybe t...\n Earnest effort which achieves some success to ...\n Another \"oldie but goody\" from about the same ...\n Jörg Buttgereit goes a bit too far with his mo...\n I don't much mind the factors that others here...\n While I have a great respect for Disney's anim...\n This is indeed one of the weakest films based ...\n The books of James Michener taking readers to ...\n WWF Survivor Series 2001<br /><br />This was a...\n Camp Blood looked great when I was buying it, ...\n I actually went to see this movie with low exp...\n I am a big fan of \"Auntie Mame\" with Rosalind ...\n Kind of hard to believe that the movie from th...\n I just saw this movie, and I have to say that ...\n I'm a fan of independent film. Dialogue driven...\n This whirling movie looks more like a combinat...\n Now infamous Western that was (at its time) th...\n I'm a big fan of Patricia Hodge and Mariam Mar...\n Not high art, not even exceptionally innovativ...\n I'm not going to waste my time writing an essa...\n Beautiful to watch, but what would be the firs...\n I saw this film at its premier at Sundance 09....\n This series is vastly underrated. Like many ot...\n Towards the end of this thriller Ally Sheedy's...\n I sat through all 2 hours. I do not know what ...\n After watching this movie once, it quickly bec...\n After seeing this film, I did not want my mone...\n Though the Our Gang comedies still have their ...\n This is the worst movie I have ever seen. I wa...\n I love military comedies (Sgt. Bilko, Stripes,...\n So, Madonna isn't Meryl Streep. Still, this is...\n I really can't say too much more about the plo...\n At a time when Hollywood thinks that louder, f...\n By the late forties the era of the screwball c...\n That's right, we've got a 2008 film using them...\n This is probably the best movie from director ...\n This movie has a slew of great adult stars but...\n I have never danced flamenco before, but someh...\n Soylent Green I found to be an excellent movie...\n You know, I really hate IMDb's censor system, ...\n RAINBOW BRITE AND THE STAR STEALER, in my opin...\n For a Norris movie this is pretty tame. For an...\n I had high expectations for this indie having ...\n I have watched this movie quite bemused. I am ...\n Charleton Heston wore one, James Franciscus wo...\n Robert Forster, normally a very strong charact...\n After CITIZEN KANE in 1941, Hollywood executiv...\n First off, this is the worst movie I've ever s...\n Fun, entertaining movie about WWII German spy ...\n Give me a break. How can anyone say that this ...\n This movie is a bad movie. But after watching ...\n This is a movie that was probably made to ente...\n Smashing film about film-making. Shows the int...\n \" While sporadically engrossing (including a f...\n A French novelist, disgusted by his wife's soc...\n It must be remembered that the Gammera movies,...\n I gave this film 8 out of 10, reserving 10 for...\n Cheap, gloriously bad cheese from the 80's, th...\n This had the promise of being an interesting f...\n Another example that we should stay away from ...\n It could have been a morbidly fascinating look...\n When I say worse, I mean less entertaining. To...\n My former Cambridge contemporary Simon Heffer,...\n \"This Man's Navy\" is, as other comments have i...\n SPOILERS<br /><br />*<br /><br />*<br /><br />...\n I was pleasantly surprised to find that How to...\n This is a very moving film that takes a new tw...\n Apart from the beautiful imagery thanks to New...\n This is a perfect series for family viewing. W...\n A really very bad movie, with a very few good ...\n The story is incredible, it begins with a new ...\n Ted Danson was a great choice to play Gulliver...\n *Possible Spoilers* Although done before (and ...\n Although i watched this film by myself(thankfu...\n Did anyone else feel as betrayed as I did? The...\n This film, which is based on a true story, com...\n I've also been looking to find this movie for ...\n Painful. Painful is the only word to describe ...\n Recipe for one of the worst movies of all time...\n What should have been a routine babysitting gi...\n I have just seen this movie and have not read ...\n Now, I am going to do this without putting spo...\n I had somewhat high hopes for this since I lik...\n First of all, the nature in the movie is beaut...\n Everyone told me to see \"Cactus Flower,\" and I...\n I saw this film at Telluride Film Festival in ...\n If it had not been for Christopher Guest's hil...\n I must not have seen the same movie as the one...\n \"I hate you, you hate me, Barney stole your SU...\n Even though the story is light, the movie flow...\n A lot of people seemed to have liked the film,...\n It SURPRISINGLY had a plot! ;) I've seen movie...\n I suppose I'm supposed to take something like ...\n This greatest movie gives us clue to the depth...\n I wasn't expecting much from this tale of a ki...\n Although this film is set amongst the sophisti...\n I cannot say this movie is a disappointment be...\n This is strictly for Pryor fans. Just because ...\n The Buddy Holly Story opens on a shot of a yel...\n What starts out as a very predictable and some...\n The only saving grace of this movie is that it...\n This may contain ***SPOILERS***<br /><br />Whe...\n A great opportunity for and Indy director to m...\n This begrudging and angry film is against not ...\n I can't get over how lazy the director is with...\n Scary in places though the effects did leave s...\n I am glad being able to say almost only positi...\n I've been strangely attracted to this film sin...\n This film has a powerful philosophical ending....\n There are good ways to make a movie and bad wa...\n i rate this movie with 3 skulls, only coz the ...\n I just saw the movie, through Netflix. I was i...\n This documentary is not only one of the best d...\n Why it's none other than Ator played hilarious...\n When the Bicentennial hit, I was in Hershey, P...\n i saw switching goals ..twice....and always th...\n i can't believe how dumb this movie truly is. ...\n Why can't more directors these days create hor...\n Everyone has already commented on the cinemato...\n ... but I enjoyed this show anyway. I've been ...\n I have never known of a film to arouse such de...\n Like many, I first saw The Water Babies as a c...\n This movie could have been so much better, esp...\n Not for the first time, I'm out of kilter with...\n Ughh this movie is awful. The script is stupid...\n The inspiring story of Carl Brashear (Cuba Goo...\n Four Guys (Jacks) go into the restaurant busin...\n This may be all you need to know in order to d...\n It was Libby talking to Desmond in the flashba...\n I loved this mini series. Tara Fitzgerald did ...\n A strange mix of traditional-80s, smartassy, C...\n ***SPOILERS*** ***SPOILERS*** Some bunch of Af...\n I first saw this movie in the theater when I w...\n This Hal Roach comedy short, A Tough Winter, i...\n I of course saw the previews for this at the b...\n Let me see...I've seen every film Lou Ferrigno...\n Campfire Tales (1997)<br /><br />An excellent ...\n As a child of the 80's like so many of the oth...\n I could not even bring myself to watch this mo...\n Zeke Rippy (Mic) is great, you totally believe...\n Eddie Monroe is Hooooot. He is a great actor a...\n In an apparent attempt to avoid remaking the o...\n This show is a perfect example of how the CBC ...\n A boat builder in a sleepy town in Maine is go...\n I found the episodes to be fascinating and wel...\n Well, one has to give the director credit for ...\n Every great once in a while, you stumble upon ...\n CLASS OF '61 <br /><br />Aspect ratio: 1.33:1<...\n I thought that Baseketball was one of the most...\n To all the miserable people who have done ever...\n Seems like M.Hazanavicius is back!The man behi...\n Whatever happened to Keaton is what I want to ...\n You would probably get something like this. I'...\n First of all, this movie is gross to the point...\n A sequel to (actually a remake of) Disney's 19...\n 'The English Patient' can rightly be compared ...\n I found this film to be quite an oddity. From ...\n I wasn't expecting \"Citizen Kane\" but I was ho...\n didn't sound like it was from a fantasy film. ...\n This is a pale imitation of the Die Hard franc...\n As someone who's never been into sports, it se...\n 1959 was a landmark in the world of film. Seve...\n I am a huge fan of the first four Ju-on projec...\n This film was utterly horrible. Stupid premise...\n All right, let me start by saying I love the o...\n I thought this was a very good movie. Someone ...\n I have to totally disagree with the other comm...\n Pistol-packing Pam Grier takes names and kicks...\n for all the subtle charms this student film ma...\n Found this film for one dollar ($1.00) and the...\n When I saw the Dentist, I thought it was very ...\n I like to keep my reviews short and simple, bu...\n The name \"cult movie\" is often given to films ...\n I would rather have 20 root canals than go thr...\n What a tedious turgid boring mess. This is a c...\n I quite this Anne Rice book adaption. While mo...\n I began watching a replay of this TV movie on ...\n Rollerskating vampires?! I'm sorry but even fo...\n - Let me start by saying that I understand tha...\n Here is the explanation screenwriter Pamela Ka...\n A great animation movie that really gets up to...\n A mock documentary about a pair of Canadian pr...\n What do you do with all the material that does...\n Well, on the endless quest for horror, we will...\n Well, after the hype surrounding the film and ...\n Winning 26 out of the 28 awards it was nominat...\n I had fun watching Red Eye. It's not a masterp...\n Lucasarts have pulled yet another beauty out o...\n OK, a film about a film that takes a crack at ...\n This movie is a laugh and a half. From the fir...\n There are two distinct ways to enjoy this snap...\n Maybe people do like having the devil around m...\n This movie is probably the worst I have seen. ...\n There's nothing left undone about this Perry a...\n I think the filmographic lineage may run like ...\n When I rented this movie, I had very low expec...\n After growing up in the gritty streets of Detr...\n I'm racking my brain, but I can't seem to thin...\n I would not hesitate to put this adaptation of...\n Intriguing. Exciting. Dramatic. Explosive. Com...\n Come on? FANTASTIC DRAMA ON SCREEN? Are you jo...\n After seeing this film I feel like I know just...\n This is one heck of a sleazy film. Like so man...\n This movie appears to have been made by someon...\n This was Hitchcock's third Hollywood feature, ...\n My wife and I really had high hopes for this f...\n what ever you do do not waste your time on thi...\n While others may contend that by viewing other...\n Firstly, I would like to point out that people...\n The most disposable movie in the history of ci...\n After watching Oldboy I was a little disappoin...\n Like the first film in this series (SLAUGHTER,...\n The most disturbing thing about this film is n...\n i saw this movie when i was 13 and i really li...\n I rented this movie last week. I saw Kevin Spa...\n I am a big fan of the 1995 version, which I ha...\n when I first heard about this movie, I noticed...\n the first Child's Play was an original and eff...\n Shlock-merchant Leo Fulci takes a change of pa...\n Let me begin with a personal note as a film an...\n The easiest way to describe this movie is as a...\n I felt last night's episode was slow and kinda...\n I seemed to find the trailers better than the ...\n I know what most of people will think about th...\n I don't know where to begin. The cast is full ...\n This was a great book and the possibilities fo...\n Wow! My mom bought me this movie because it wa...\n Marlon Brando and Frank Sinatra HATED each oth...\n In the 50's, a gay photographer called Bob Miz...\n Relentlessly stupid, no-budget \"war picture\" m...\n I was unsure whether or not Andy Sidaris could...\n I just saw this film last night, and I have to...\n A few days ago, I watched a documentary called...\n I was really beginning to enjoy this show. It ...\n A great movie, rather challenging than really ...\n Jimmy Dean could not have been more hammy or a...\n Featuring some amazing and wonderful character...\n This is one of those films the British Lottery...\n Gosh, I am learning pretty fast that sometimes...\n But even caricatures need a plausible plot lin...\n Once upon a time there was a science fiction a...\n This excellent movie starring Elizabeth Montgo...\n 1st watched 5/26/2002 - 4 out of 10(Dir-Michae...\n The plot of 'House of Games' is the strongest ...\n The best British Comedy Film ever! For years E...\n I have never seen this in the theater, my seco...\n I watched this movie only because I was under ...\n This movie was craptacular. I was so emotional...\n I only gave this film a 4 because I saw it in ...\n This totally UNfunny movie is so over the top ...\n Holy cow, what a piece of sh*t this movie is. ...\n This is without doubt Rajnikanth's worst movie...\n Watching Showtime I got the impression that th...\n Into a happy household comes the gypsy girl, p...\n It's hard to believe that oprah winfrey produc...\n This movie is pretty cheesy, but I do give it ...\n This is one great, sweeping, movie you will re...\n Sure, this one isn't really a blockbuster, nor...\n Let's be honest. As a film school project, mad...\n Kids - of whatever age - do not want to know a...\n Yes, this was pure unbelievable condescending ...\n John Holmes is so famous, he's infamous (as th...\n hg is normally exploitive, and it's never real...\n I first started watching this show probably ar...\n There is an old saying that relates to the rou...\n I can't say too much about Kalifornia as sadly...\n \"Home Room\" like \"Zero Day\" and \"Elephant\", wa...\n And one of 'em are bad movies. The title, as i...\n This movie makes Canadians and Brits out to be...\n Finding this piece sandwiched between a stale ...\n I saw this turkey in the theater, but I had a ...\n Inglorious Basterds makes no apologies, asks f...\n First an explanation on what makes a great mov...\n She's the Man was the funniest movie I have ev...\n Jimmy Stewart and Anthony Mann teamed to do so...\n This film was not nearly as much of a chore as...\n This is just about one of the dumbest things I...\n First of all I've got to give it to the people...\n One of the most nihilistic and brutal films I'...\n When Wallace and Gromit burst onto the scene i...\n Spoilers? Maybe a few details, but nothing too...\n This is a brilliant, lavish Czech film from th...\n Boasting some pretty good Rick Baker-esque spe...\n I wanted to see an action comedy with a satiri...\n This movies shook my will to live why this abo...\n The silent film the Pride of the Clan starring...\n Right, here we go, you have probably read in p...\n So I had heard from a few people that this fil...\n This film has me seriously doubting again whet...\n I was very surprised how bad this movie was. N...\n What to say about this movie? A married couple...\n David Burton(Richard Chamberlain, quite good)i...\n I recently bought this movie and I do not regr...\n I am a fan of Ed Harris' work and I really had...\n Roman Polanski has made many, many movies that...\n This is one of the worst movies I have ever se...\n When this film opened back in 1976, legend has...\n This is one of the movies one has to start wat...\n \"Tart\" is a good illustration of old the Yogi ...\n How much do I love this film?! Now I'm not a f...\n To the guy who hatched the idea for Lifeforce ...\n Any film with a title as ridiculous as \"The Ba...\n Not the best of actors' movies.The director ha...\n 80's comedies (especially ones with John Cusak...\n The version of this film I saw was titled 'Hor...\n this is a wonderful film, makes the 1950'S loo...\n Meryl Streep may be the greatest actor working...\n Having seen Charley Boorman in Long Way Round ...\n \"One True Thing\" puts Zellweger in the midst o...\n I saw this movie for the first time a little o...\n Eh, not a particular good slasher flick. So-so...\n This was probably the worst movie ever, seriou...\n The movie isn't too bad, up until...<br /><br ...\n This film features Ben Chaplin as a bored bank...\n If you like film, don't miss this one. If you ...\n I found this movie to be suspenseful almost fr...\n I believe Cockpuncher to be the best piece of ...\n Pretty disappointing prequel to the first two ...\n This movie stinks! You will want back the two-...\n Anybody who has ever been a fan of the origina...\n Honestly, this may be the worst movie I've eve...\n But the rest of us, who love a good sentimenta...\n Michael Rooker is a decent actor, but he has n...\n After the glories of The Snare, it was unlikel...\n This is one of those films that, for whatever ...\n If \"The Cabinet of Dr. Caligari\" is the father...\n Director Douglas Sirk scores again with this, ...\n The Italian Job is a real blast to watch. It's...\n Of those comments here before mine, I mostly a...\n I'm a pretty old dude, old enough to remember ...\n the only reason i bought this DVD is because c...\n Where do they get the money to make films like...\n eXistenZ combines director David Cronenberg's ...\n I don't think I really have any spoilers in he...\n not to long after Jeff Jarrett left the WWF fo...\n This is an excellent film. The aerial scenes w...\n \"2001: A Space Odyssey\" is set in 2001 and the...\n I didn't like this film at all! First of all,I...\n Action, violence, sex and coarse language are ...\n There were a lot of 50's sci-fi movies. They w...\n I saw this movie at a screener and its the bes...\n I first saw Robin Hood: Men in Tights back in ...\n This movie is painful. That's probably the bes...\n One of the last great musicals of the 60s. I w...\n In 1979, I was a boy of 12 years old, My paren...\n I HATE plane crash movies...ALL of them! In fa...\n Good (not great) little horror film with a hig...\n Colleges, High Schools, Fraternities and Soror...\n Well i do disagreed with the other comment pos...\n The plot is very basic, but acceptable: A youn...\n Not to be mistaken as the highly touted Samuel...\n Eyes of the Werewolf (1999) is a really bad mo...\n I love the series! Many of the stereotypes por...\n No doubt Frank Sinatra was a talented actor as...\n In 2004, I liked it. Then it became very stupi...\n It is a story of Siberian village people from ...\n This is standard fare from a director who as l...\n When I first bought this movie, I had my doubt...\n Don't you just hate it when you order steak bu...\n I have no idea what people are complaining abo...\n I keep waiting for Peter Fonda to start acting...\n I haven't seen this movie in years, the last t...\n Quite simply, i was tickled pink watching this...\n Chaplin was great a silent comedian, but many ...\n The tighter the drama, the better the film of ...\n I'll be brief: I normally hate films like this...\n envy is not as funny as i thought it would ini...\n After the opening credits, there's a black scr...\n After being hugely entertained by Mr. Brosnan'...\n This film may have been the first Puppet Maste...\n This is such a great movie to watch and all th...\n I haven't liked many TV shows post 1990, but T...\n i think the title of the movie describes it we...\n When I saw that IMDb users rated this movie th...\n It's impossible to make a film based on such a...\n The year is 1896.Jeff Webster (James Stewart) ...\n SPOILER WARNING<br /><br />I got this dino-doc...\n Verry classic plot but a verry fun horror movi...\n Once a year in America, Saturday morning would...\n I rented this movie the other night because ne...\n I found this movie hilarious. The spoofs on ot...\n Kudos to the writers of this film for creating...\n There is no way to put into words just how bad...\n Sadly, Marry Harron decided to do a fictional ...\n What is \"Cry Freedom\" like? It is simply great...\n Can't get much eerier than Flatliners. This de...\n That movie while slightly flawed was entirely ...\n I'm sorry but I just honestly cannot see why a...\n At the end of the film I just asked myself :\"i...\n absolutely trash. i liked Halloween and from t...\n Several features of this film immediately date...\n I had the privilege of attending a regional pr...\n OK, I saw this in the theaters when it came ou...\n Beautiful images, propaganda and history as to...\n I really enjoyed this. I got it thinking it wa...\n Sort of family parody blending \"An Officer And...\n this movie scared the hell out of me for no go...\n Supercraptastic slasher fare, which feels over...\n This is one of a very few movies with terrific...\n Using tons of stock footage, not only from Tra...\n Fat Man And Little Boy were the code names of ...\n Often considered Argento's last \"great\" film, ...\n When I was very young, my mother had a series ...\n This little cheapy is notable only because it ...\n It's a short movie from David Lynch with just ...\n Movie watchers often say great movies must hav...\n Words cannot describe how asinine, juvenile,an...\n I don't know if I'm just weird, but I thorough...\n I hate films about sports. I guess the pre-fab...\n Final Score...who cares - it's a reality show....\n One of the most boring movies I've ever had to...\n This movie was ridiculous from the start. Let ...\n Watching David&Bathsheba is a much better way ...\n I rarely write a negative review for this site...\n This was actually my favorite series of Scooby...\n This film takes you to another time when there...\n Here are the matches . . . (adv. = advantage)<...\n Absolutely fantastic trash....this one has it ...\n The only print of CHIKAMATUS MONOGATARI I've b...\n Simply put this movies is without any substanc...\n Hard to get in-depth with this kind of stuff s...\n For those who are too young to know this or fo...\n Northanger Abbey is not my favorite Jane Auste...\n \"Anchors Aweigh\" is the product of the classic...\n What made the French Connection work so well w...\n What Irving Thalberg did in making this film t...\n I rated this a 3. The dubbing was as bad as I ...\n Kurt Thomas stars as Jonathan Cabot some kind ...\n I know that so many reviews on IMDb are extrem...\n When you read the summary of this film, you mi...\n This version of ALICE IN WONDERLAND is truly o...\n I opted to see the film at the recent Dubai Fi...\n This movie has great style, fantastic visuals ...\n After watching the movie a few times, I found ...\n I have really enjoyed several movies by Gérard...\n I watched this short moments ago on the Sundan...\n You do realize that you've been watching the E...\n ***Possible spoilers***<br /><br />I recently ...\n If I could give this movie less than a 1, I wo...\n I have seen all the films directed by Robert R...\n This film enhanced my opinion of Errol Flynn. ...\n This is my favourite kung fu movie. It has a v...\n I'm certainly glad that a film was made about ...\n This weekend just passed I watched \"28 Weeks L...\n Like so many other reviewers on here, my memor...\n Reporter Kimberly Wells presents the minor sid...\n ATTENTION, SPOILER!<br /><br />Many people tol...\n Incredibly, \"Vampire Assassin\" is significantl...\n After Watergate, Vietnam and the dark days of ...\n Billy Wilder created a somewhat conventional b...\n I watched this film with a group of friends at...\n The memory of the \"The Last Hunt\" has stuck wi...\n It's a shame Barry Humphries infamous Sir Les ...\n I remember watching this film as a kid and I w...\n I believe there are two angles to the story, f...\n This movie totally sucked!!! Don't even rent i...\n I'm writing this 9 years after the final episo...\n This movie is so over-the-top as to be a borde...\n Oh dear lord. This movie... It was horrible. I...\n Almost every plot detail in this movie is illo...\n The lines in the title of this review are the ...\n Given this film's incredible reviews I was exp...\n This is the kind of movie that people of a cer...\n I was expecting \"Born to Kill\" to be an exciti...\n What Is It? is a mish-mash of bizarre recurrin...\n Married To The Mob was one of the first VHS ta...\n This show had a promising start as sort of the...\n Here's a well-made war story, nicely shot and ...\n My wife is a teacher and she is very familiar ...\n I tried to be patient and open-minded but foun...\n Marigold is by far the best \"outsider's\" take ...\n I went to go see this at the Esquire Theatre i...\n it's a beautiful film.the scenes are well pict...\n This was okay, but really a bit disappointing ...\n This is by far the most incredible movie I hav...\n I believe, that this is a heart tugging film. ...\n I have to agree with the other two comments. I...\n Don't get me wrong, I assumed this movie would...\n Ever since 1981, Nintendo has been making grea...\n This almost unknown gem was based on a French ...\n I had to register for IMDb just to post a comm...\n Frank Tashlin's 'Censored' is a so-so Private ...\n The Straight Story is a multilevel exploration...\n I loved this movie! I'm shocked and disappoint...\n What a HUGE pile of dung. Shot-on-video (REALL...\n Not only was this film exhilarating, but it to...\n While not as wild and way out as some of Takas...\n Well where to start here? Straightheads presen...\n I thought Sliver offered the most boring and t...\n I saw this movie in its own time period, when ...\n I was duped as well. Here I was expecting all ...\n Not being the least bit familiar with the char...\n Peter Lorre was born to play Stephen Danel wit...\n After the success of the second instalment, Ri...\n Viewed this the other night on cable on-demand...\n CyberTracker is set in Los Angeles sometime in...\n I happen to have read all of Junji Ito's Engli...\n I put this movie on not expecting much, other ...\n This is one of the worst films i've ever seen,...\n I saw this on Sci Fi, and in retrospect, I'm n...\n I gave this 3 stars out of a possible 10 - bec...\n Two funeral directors in a Welsh village? Engl...\n I just found the IMDb and searched this film a...\n **SPOILER ALERT** W. Somerset Maugham classic ...\n Why the crap is this movie rated so low?! I've...\n Saw it at the Philadelphia Gay and Lesbian Fil...\n 1st watched 12/6/2009 - 4 out of 10 (Dir-Walte...\n What a GREAT British movie, a screaming good l...\n I originally saw this film while I was working...\n What has Rajiv Rai done to himself? Once a hit...\n In these modern times (as subject known quite ...\n This is one of the best Czech movies I have ev...\n Wow. The storyline to this was just incredibly...\n I stumbled on this series rather by accident. ...\n This movie tells the story of nine ambitious t...\n Although this film changes reality to make it ...\n Rififi deservedly gets a lot of mention for th...\n The Polar Express. Director Robert Zemeckis, I...\n We see at the beginning of Little Dieter Needs...\n Tho 35 years old, Groove Tube looks a lot like...\n The 1970's saw a rise and fall of what we have...\n Plenty has been written about Mamet's \"The Hou...\n I like Noel Coward, the wit. I like Noel Cowar...\n Love and war did happen on the other side of t...\n To describe this film as garbage is unfair. At...\n Designed only to annoy (or amuse) any self-res...\n After losing the Emmy for her performance as M...\n After reading the reviews, it became obvious t...\n This is possibly the worst fencing, sword-figh...\n I am a big fan of the original book and this a...\n This film is a stunning piece that will convin...\n Noting the cast, I recently watched this movie...\n Well there's a few things about this movie. Ev...\n ...means \"take up and read\", which is precisel...\n It's too bad iameracing wants to deny the real...\n I have a nice collection on movies going, and ...\n A cheesy \"B\" crime thriller of the early '50, ...\n Excellent episode, showed Dean has not only go...\n The whole Biker Movie genre has to be made up ...\n The film opens in a stuffy British men's club ...\n The potential movie extravaganza, set during t...\n Well, I am SO glad I watched this on HBO inste...\n Doug McClure has starred in a few of these Bri...\n THE KING MAKER will doubtless be a success in ...\n I first saw \"Breaking Glass\" when it was relea...\n I watched 'Envy' two nights ago, on DVD, at a ...\n One question: Why? First off, the premise is n...\n Jack Frost returns with an army of Styrofoam b...\n I'd be hard pressed to say what is it that mak...\n Preston Waters, a 11 years old boy,has problem...\n This is not horror, as the first part was: Thi...\n Like 'Singin' in the Rain', 'Cover Girl' has a...\n I love this movie. I watched it over and over ...\n This was a really nice surprise. I was up late...\n I felt that this movie had a lot of heart and ...\n One of the things about the film that warmed m...\n This is one of the oddest films of the Zatôich...\n Unlike others, I refuse to call this pitiful e...\n This show probably won't appeal to everyone. S...\n Is this the same Kim Ki Duk who directed the p...\n Ben Thomas (Smith) plays an IRS Agent who prac...\n This film has not exactly remained fresh in th...\n Up to this point, Gentle Rain was the movie I ...\n I really don't understand all these positive u...\n This 3 hour epic (seems much shorter) explores...\n I was very concerned about this film, it was s...\n I am a fan of the paranormal and I love Ghost ...\n I remember when they made a big deal about thi...\n David Lynch's crude and crudely drawn take on ...\n This is the story of two guys who found a copy...\n It doesn't take long to see why Code Name: Dia...\n I am a huge John Denver fan. I have a large co...\n I first saw this movie when I was very little....\n A slow, tedious, and one dimensional movie! Go...\n Divorced single mom in picturesque seaside tow...\n Reanhauer (Bill Roy) is the leader of a desert...\n Okay. This has been a favourite since I was 14...\n Well, if you are open-minded enough to have li...\n Despite its interesting premise, 'Sniper' is q...\n Most 70s (and 80s) Kong Kong martial arts film...\n Oh dear! What can I say about Half Past Dead? ...\n If there is such a thing as beautiful horror, ...\n why oh why did i ever waste my time watching t...\n What an entertaining movie. Astaire and Randol...\n And I am a Nicole Kidman fanatic. I would pay ...\n Scary Movie 3 is such a stinkfest its hard to ...\n Here's a decidedly average Italian post apocal...\n As a lesbian, I am sick and tired of being por...\n Dragon Ma (Jackie Chan)is back, having rid the...\n Dark Harvest 3: Scarecrow: 1 out of 10: In Ein...\n It is playing on SHOWTIME right now but is goi...\n Although \"They Died with their Boots On\" is no...\n The story-line of \"The Thief of Bagdad\" is com...\n I remember seeing this film when i was about 1...\n I just saw this movie the other day when I ren...\n Set in and near a poor working class town in t...\n I saw this DVD in my friends house and thought...\n After all these years, I am puzzled as to why ...\n Dear Movie Director:<br /><br />In the future,...\n \"A young man, recently engaged to be married, ...\n I saw this mini-movie when it first aired, and...\n A doctor who is trying to complete the medical...\n Wow I loved this movie! It is about normal lif...\n LAGE RAHO MUNNABHAI is really a disappointing ...\n Repugnant Bronson thriller. Unfortunately, it'...\n I've always enjoyed Kenneth Branagh's versions...\n This is one of those movies I watched, and won...\n This is one of the most irritating, nonsensica...\n I happened to see this movie twice or more and...\n Originally aired as an ABC Movie of the Week. ...\n K-PAX is exactly what a heart warming film sho...\n Pretentious storytelling such as this always u...\n First of all, I just wanna say that I'm a very...\n In a way this is the disaster Fellini has been...\n I'm relieved the later reviews have turned sou...\n A family with dad Louis (Dale Midkiff), mom Ra...\n Blonde and Blonder has Pamela Anderson and Den...\n Congratulations to Christina Ricci for making ...\n This is probably Wayne's poorest movie; at lea...\n I'm surprised that the comparison hasn't been ...\n This film was a critical and box-office fiasco...\n A fine performance by Vittorio Mezzogiorno and...\n Although she is little known today, Deanna Dur...\n It seems to be a common thing in the 90's to p...\n Having been forced by my children to watch thi...\n ...Or, more precisely, so bad that you are goi...\n Well, it is standard Hollywood schmaltz that y...\n First I must confess that A Separate Peace is ...\n This will be best known for the Ferrari that w...\n Unfortunately for Sarah Silverman this show do...\n This remake of the 1962 orginal film'o the boo...\n Anyone who's watched a few Lifetime Movie Netw...\n I was suckered in by the big names. Rob Lowe, ...\n Giving credit where it's due, only the technic...\n The stranger Jack (Matthew Lillard) arrives in...\n Enterprise, the latest high budget spin-off to...\n This is an entertaining surreal road movie. It...\n This is a neat little crime drama which packs ...\n With all of the films of recent,dealing with t...\n This movie fails to offer anything new to a ge...\n This movie has Richard Pryor, Rosey Grier and ...\n A year after the release of the average \"House...\n I thought this movie was horrible. I was bored...\n I have seen most of the Tarzan episodes. Certa...\n Bad Movie! Bad! Go stand in a discount bin. Ca...\n I think my summary sums it up. I found it inan...\n Broken Silence or \"Race Against Fear\"1998): St...\n I believe it has been over 40 years since I sa...\n (My Synopsis) Rae (Christina Ricci) was a high...\n I never thought I see a movie worse than \"Lisa...\n Man, this is a hard DVD to come by. I could on...\n Scarier than any horror movie ever made becaus...\n Yet another insult and slap in the face to gay...\n The costumes are outrageous and the Australian...\n If you have not heard of this film, it follows...\n I have heard that Novo was compared to Memento...\n The Fanglys is set in a small Texan town calle...\n This film fails on many many levels. The scrip...\n Where do I start. Do I say how great the cinem...\n Tim Krabbe is the praised author of 'Het Goude...\n Watch out! This is not a gross out comedy like...\n I hope, from his seat on Heaven's comedic thro...\n This movie has got to go down in the history o...\n You may say to yourself, \"Don Johnson as Elvis...\n This film was so bad it became enjoyable. If y...\n I am always impressed when a director (and thi...\n This movie probably had some potential for som...\n This movie has to be seen for the music, which...\n Another great musical from Hollywoods Golden A...\n Wrestlemania 14 is not often looked as one of ...\n It's difficult to decide who or what is the ta...\n This film is terribly bad. Kevin Spacey is a r...\n Time has not been kind to this film from the t...\n The Best of Times is one of the great sleepers...\n This movie was awesome...it made me laugh, it ...\n The narrative was clear and concise but overal...\n Coming at the end of the cycle of the Universa...\n Yesterday, I went to the monthly Antique Flea ...\n I thought I might be disappointed viewing this...\n Dull one-note characters with next to no devel...\n I watched this film because I noticed that it ...\n This is one of Cassavetes' best performances. ...\n I am normally a Spike Lee fan. It takes some t...\n We are not in the fairy tale of the naked empe...\n A bunch of kids set up a theatre to have an al...\n Just had to write that one liner, but it reall...\n I hand't seen the restored, or any version for...\n Meant to be some sort of a social commentary a...\n I read the book a long time back and don't spe...\n I've watched a number of Wixel Pixel and Sub R...\n I learned a thing: you have to take this film ...\n My wife received tickets for our family to att...\n This abomination and the sequel ONE MORE TIME ...\n What has Ireland ever done to film distributer...\n This often maligned movie is a must for fans o...\n I had to write a review for this movie based o...\n This must me one of the worst takes on vampire...\n I saw the movie in Izmir as the closing film o...\n As a Scot I find the idea of \"Macbeth\" shifted...\n Whoever says pokemon is stupid can die. This m...\n Unfortunately producers don't know when to lea...\n When you are in a gloomy or depressed mood, go...\n This film was a Mexican made horror film from ...\n I don't want to bore everyone by reiterating w...\n This film is absolute gold. If you haven't see...\n I don't know if it's fair for me to review thi...\n This is one of those films where it is easy to...\n A look at three geishas who are way past their...\n Lynne Ramsey makes arresting images, and Saman...\n Seriously, I couldn't find anything that const...\n how can this movie have a 5.5 this movie was a...\n One of the most appealing elements of a Gillia...\n The same difficulty I have with the musical ve...\n Very well done acting and directing. This is a...\n The villian in this movie is one mean sob and ...\n This movie is an obvious rip-off of Underworld...\n In THE FAN Robert De Niro plays Gil Renard . O...\n This is an interesting left turn for Reel 13 I...\n So, it has come to this. In the top-rated comm...\n This BBC series is excellent. I am no Paleonto...\n I think that this film is one of the funniest ...\n I enjoy all the versions of this story but thi...\n I was very excited when Paranormal State first...\n It is incredible!! ..yes, someone before me wr...\n Dull, predictable and uninteresting story of a...\n I work at the video store that rents this vide...\n A terrible movie as everyone has said. What ma...\n The danish movie \"Slim Slam Slum\" surprised me...\n This film is not devoid of charm and also show...\n Imagine watching a slide show where the projec...\n It took us a couple of episodes to \"get into\" ...\n Zipperface is the kind of experience one waits...\n I was looking forward to this movie. I like ro...\n Mario is invited to Princess Peach's castle fo...\n That is what this movie is. Good God the speci...\n OK, so this is a complete rip off of the first...\n I still can't describe what to feel when I rec...\n Let's face it-- if you rented a STDVD sequel o...\n Imagine an exploitive remake of The Defiant On...\n Before Stan Laurel became the smaller half of ...\n I scooped up this title by accident with the G...\n **** = A masterpiece to be recorded in the boo...\n To call a film about a crippled ghost taking r...\n Another direct to video movie from Disney, tha...\n What can I say? The little kid inside has alwa...\n This was an excellent 2-part episode, although...\n I thought this movie was going to be good. It ...\n This is a pretty good thriller at a nuclear po...\n In the film, Lumumba, we see the faces behind ...\n I saw this when it premiered and just re-watch...\n Overall, this is entertaining and odd film. Do...\n This is one of the most boring films I've ever...\n How has this piece of crap stayed on TV this l...\n I've seen all 3 now. I just can't believe how ...\n A very gritty, gutsy portrayal of a part of wo...\n I was not expecting much from this movie. I wa...\n BONJOUR, MONSIEUR SHLOMI is simply a wonderful...\n If you need a clue as to whether Playmaker is ...\n Putting the UFO \"thing\" aside. This was the be...\n OK maybe a 13 year old like me was a little to...\n Let me get this straight:<br /><br />\"Hotshot ...\n The Lone Ranger was one of my childhood heroes...\n The DVD for \"Danaza Macabra\" (Castle of Blood)...\n this could be one of the worse movies i've eve...\n My God, Ryan Gosling has made a lot of deep ch...\n This was just an awful movie. I've watched it ...\n I bought this DVD for $1 at Walmart. After see...\n It's just breathtaking in it's awfulness-- you...\n This movie is not a remake of She's all That (...\n when this show first came to Disney, i love it...\n Worst movie of all time? Wow, whoa now. You ca...\n This film is truly a sorry excuse for film mak...\n Human pot roast Joe Don Baker (MITCHELL) stars...\n I would recommend this as the most successful ...\n I'm a huge fan of Ivan Reitman-I loved Evoluti...\n As a kid, I loved computer animation although ...\n While Watching this movie you notice right awa...\n THE MERCHANT OF FOUR SEASONS was Rainer Werner...\n I bought this DVD without any previous referen...\n Garden State must rate amongst the most contri...\n this is a great movie for all Corey Feldman fa...\n Leslie Nielsen is usually someone whose movies...\n Did Beavis and Butthead make this movie? It is...\n This Movie had some great actors in it! Unfort...\n Perhaps one of the best movies ever made. Orry...\n This was one of the biggest pieces of crap I h...\n Based on the novel by Michael Chabon, The Myst...\n Alone in the Dark is Uwe Boll's kick in the nu...\n Now, I like the Bollywood films and I'm very g...\n /*may contain SPOILERS, but of course it does ...\n The discussion has been held a thousand times....\n The world is facing imminent destruction and a...\n This movie is about a group of women (perhaps ...\n This is the kind of movie England can do in it...\n Anyone who has ever doubted Ingrid Bergman's a...\n The movie started off strong, LL Cool J (Deed)...\n This is the best mob film ever made. It deserv...\n Moonwalker by Michael Jackson is a real advent...\n Home Room really surprised me. In comparison t...\n This film features two of my favorite guilty p...\n It really amazed me to see that someone would ...\n I saw this movie yesterday night and it was on...\n A documentary filmmaker explores seemingly unr...\n i, too, loved this series when i was a kid. In...\n Casting aside many of the favorable comments t...\n This for me was a wonderful introduction to th...\n This movie was pretty bad. Sci-fi is usually m...\n $25,000 Pyramid Clues: Deep Blue Sea. Tremors....\n Ronald Colman plays a famous Broadway actor wh...\n I agree strongly with some of the other critic...\n Maybe if you've never read any English literat...\n Closet Land. The title itself conjures up thou...\n Sometimes, you're up late at night flipping th...\n i don't believe it sixty percent of voters vot...\n updated January 1st, 2006<br /><br />Parsifal ...\n NOTHING (3+ outta 5 stars) Another weird premi...\n The film \"52 Pick Up\" simply does not work. Se...\n I must admit that this is one of the few Lou C...\n Woody Allen has lost his ability to write dial...\n 'The Cell' is a journey into the mind of a ser...\n The Thing has to be one of the all time great ...\n This is one of the few comedies I can watch ag...\n Good films cannot solely be based on a beautif...\n This time the hero from the first film has bec...\n This isn't the best Bigfoot ever made, but by ...\n I grew up with scooby(kinda the re-runs of whe...\n I have not figured out what the chosen title h...\n I have read each and every one of Baroness Orc...\n Hey if you have a little over an hour to kill ...\n When I first saw the Romeo Division last sprin...\n OK... this movie so far has been slated by cri...\n One of the worst movies I've seen this year. E...\n Neal N Nikki is voted on of the Worst films of...\n This movie was not made by Who fans. Most of t...\n I saw this movie awhile back and can't seem to...\n Well, this movie wasn't as horrible as I thoug...\n This movie was such a waste of my money. it wa...\n Wow, here it finally is; the action \"movie\" wi...\n I saw this in theaters and absolutely adored i...\n This movie looked like it was rushed to releas...\n The plot outline of this movie is similar to t...\n This work is less about Steve Martin's charact...\n In this film, we're invited to observe the des...\n If I could say it was better than Gymkata, I a...\n I unknowingly had this movie on my shelf for a...\n Why a film maker with a track record like Wes ...\n COULD CONTAIN SPOILERS.....I'm surprised by th...\n If you have few expectations, then this will e...\n And I am afraid that I cannot imagine why. It ...\n This is the first of these \"8 Films To Die For...\n ****SPOILER ALERT**** All throughout Australia...\n There should be a rule that states quite clear...\n I loved this movie from beginning to end.I am ...\n This movie is one of my all time favorites. Ca...\n This in my opinion is one of the best action m...\n When we talk Hollywood Hotel we could be talki...\n Dear SciFi Channel: How have you been? How was...\n The story at the outset is interesting: slaver...\n I'm sure some people will enjoy it, and find i...\n OK. Well, I guess it was worth my time sitting...\n As much as I hated the movie that this series ...\n What is about mathematical geniuses that get t...\n The Sopranos is perhaps the most mind-opening ...\n Without Peter Ustinov and Maggie Smith, this c...\n watch a team of bomb disposal experts in Iraq ...\n It is not often I watch a film that is as drea...\n I'm not sure under what circumstances director...\n If you like \"Othello,\" you'll love this flick ...\n This film turned up on local TV here in South ...\n I really wanted to like this movie. A film wit...\n On June 22nd, 1941, the city of Przemysl, Pola...\n me and my sister use to rent this every time w...\n Seriously, Why do American and Frech actors pr...\n Fata Morgana, the 1971 documentary-like film b...\n (some spoilers) - as if you wouldn't know how ...\n For once a story of hope highlighted over the ...\n Although I have to admit I laughed more watchi...\n Within 15 minutes, my whole family was rooting...\n At my local video rental store, they have a sp...\n This one hardly compares to the space adventur...\n I had always been a big Lynda Carter-Wonder Wo...\n Complete waste of time.... This movie is not c...\n I saw this movie yesterday and can't stop thin...\n It's here. finally a movie comes out that I ca...\n This interesting feature has a very fine story...\n I wish I could give this movie a zero, or even...\n Knute Rockne led an extraordinary life and his...\n Doghi is a wonderful movie and Renuka Daftarda...\n i really did not watch this show as often when...\n WOW is all i can say if your reading this is e...\n I wonder who was responsible for this mess. Th...\n I go to the cinema to be entertained. There is...\n There have been far too few mainstream films s...\n It is always sad when \"fringe\" movies such as ...\n Imagine you're a high-school boy, in the back ...\n Before I begin, let me tell you how GREAT this...\n Normally I try to avoid Sci-Fi movies as much ...\n I first saw this one afternoon in the 80's on ...\n By 1971 it was becoming more and more obvious ...\n For the first couple of seasons, I thought The...\n I saw this movie on TV late one night years ag...\n Distasteful British film from a Japanese novel...\n Mas Oyama was the most successful karate maste...\n If you thought Herbie trying to kill himself b...\n I run a group to stop comedian exploitation an...\n Every once in a while the conversation will tu...\n This movie had so much potential to be hilario...\n This is an hybrid creature born at Carl Macek ...\n I don't watch much porn, but I love porn stars...\n This thing was bad. Really bad. I mean, low bu...\n Right... so you have a dam, tons of water (tha...\n I still find it hard to believe that a fine - ...\n It was poorly shot. Looks Like a rush job, las...\n OK, this movie wasn't good at all. Video games...\n Antonioni was aiming for another hip masterpie...\n I seriously enjoyed watching this movie for th...\n This movie is truly a classic 80s movie! A mus...\n What looks like a ho-hum Porky's rip-off turns...\n (aka: TRINITY IS STILL MY NAME) This sequel lo...\n So often with Stephen King adaptations, you ju...\n Sideshow is a good example of a basically inte...\n Love it, love it, love it! This is another abs...\n oh well... its funny. should have been a sadis...\n This was shown as part of the 59th Edinburgh I...\n Well, magic works in mysterious ways. This mov...\n If you thought Day after tomorrow was implausi...\n At the least some of the sitcoms that churn en...\n When I first heard about the title, I thought ...\n I didn't like this movie for so many reasons I...\n Like almost everyone else, I became aware of t...\n To start out with, the script is immitative an...\n This movie is a joke. I mean a \"ha ha\" funny j...\n Gena Rowlands plays an actress who loses her g...\n How does a Scotsman in a kilt make love in the...\n Captain Corelli's Mandolin is a beautiful film...\n \"Haaaarrrryyy!\" <br /><br />The amplified, dis...\n A magical journey concocted by Alexander Korda...\n God this film was just so boring apart from th...\n Well the story is a little hard to follow the ...\n This is the best movie I've come across in a l...\n This is one of my favorites along with the Mar...\n Two movies back to back which dealt with India...\n There are many reasons to watch this movie: to...\n THE LADY FROM SHANGHAI is proof that the great...\n I really looked forward to seeing Nana after s...\n Semana Santa is jaw-droppingly bad. It's so wr...\n Working-class romantic drama from director Mar...\n For me, this movie just seemed to fall on its ...\n This film gave me probably the most pleasant s...\n I watch this movie at the start of every summe...\n It's hard to imagine that anyone could find th...\n If you want mindless action, hot chicks and a ...\n Even though Ian Kershaw distanced himself from...\n The Reader is an exceptionally well done and v...\n This is a dramatic film in the whole sense of ...\n There is nothing in this that the viewer could...\n But certainly a serious contender for one of t...\n Marvelous film again dealing with the trials a...\n I just saw this at the 2006 Vancouver internat...\n A clever script from the late SEBASTIAN JAPRIS...\n While it's generally acknowledged one of the f...\n Not a bad film. Somehow I was made to actually...\n This movie had some andrenaline kickers, but i...\n The only redeeming quality of this movie is th...\n Before watching this film I had very low expec...\n In order to hold the public's attention for th...\n Hi all I am a chess enthusiast since the age o...\n The movie gets a score of 3 because it dared t...\n I laughed my ass off for an hour. I had no ide...\n Very lovely love story between Brenda Blethyn ...\n Just emailed a friend who's in film school abo...\n I'm surprised with the amount of negative revi...\n Imagine pulling back the mask of a lethal assa...\n We rented five movies for New Year's Eve weeke...\n The core message is strong, the cast has given...\n Snap, crackle, pop! The jarring sound of every...\n First, a word of caution. The DVD box describe...\n This short was the first short released by Par...\n There were times during the movie I wish I had...\n It is a damn good movie,with some surprising t...\n If this is not my favorite movie of all time, ...\n A lot of people are saying that Al Pacino over...\n Developing movies that are based on actual eve...\n SPOILERS (ALTHOUGH NONE THAT AREN'T REVEALED I...\n The first word which comes into my mind after ...\n Apparently, a massive head wound is the cure f...\n \"Most of us at least inhabit two worlds , the ...\n Oh dear. good cast, but to write and direct is...\n After all, you do not go to an Orson Welles mo...\n This film predates the Australian films Road W...\n There is not a single sympathetic character in...\n The opening shot of the Consequences of Love p...\n This is the latest entry in the long series of...\n 1957's Edge of the City, directed by Martin Ri...\n Ahhhh, 1984.... I was young and stupid, and ju...\n imagine \"24\" completely uncensored, given free...\n Penn takes the time to develop his characters,...\n I walked into a book store in Brentwood, Tenne...\n The ending of this movie made absolutely NO SE...\n I wish I could tell you that this film is as e...\n There are some really terrific ideas in this v...\n \"Perhaps we can arrange a meet. \" \"Where are y...\n This may not be the most exiting or incredible...\n I am a Shakespeare lover since childhood. I am...\n This movie was so bad I couldn't sit through i...\n this is an excellent movie i have been watchin...\n It would be so easy to dismiss an alien abduct...\n Tea Leoni plays Nora Wilde, a serious photogra...\n I just watched \"return from lonesome dove\" and...\n I'm a great admirer of Lon Chaney, but the scr...\n \"They Are Among Us\" is poor science fiction at...\n First of all, this is an art film and a good o...\n In The Line of Fire gives us a great game of c...\n Who's the man~~~ what's that I hear? A resound...\n Every year I watch hundreds of films, includin...\n Standard \"Disease outbreak in remote area; exp...\n WARNING **SPOILERS**<br /><br />Lord knows I h...\n dear god where do i begin. this is bar none th...\n I saw this movie with my girlfriends and we al...\n It is always great to see a movie that teaches...\n STRANGER THAN FICTION angered me so much, I si...\n Never see this movie.<br /><br />It tries to b...\n Watching this was like getting a large mackere...\n So, Todd Sheets once stated that he considers ...\n Black Day Blue Night was actually good modern ...\n Although inevitably linked to the 70's decade,...\n This is a terrible movie, don't waste your mon...\n A sharp political comment posturing as a comin...\n The saddest part of this is the fact that thes...\n I absolutely hate this programme, what kind of...\n I was lucky enough to win free passes to the s...\n This movie was awful! Ashley Rose Orr, while a...\n what a waste of a film once again the film ind...\n I stole this movie when I was a freshmen in co...\n I absolutely loved this movie! It's my number ...\n This film takes place in the 1950s. According ...\n Considering that I felt like picking up a new ...\n I think I should start this in saying that nea...\n Its not the cast. A finer group of actors, you...\n I went in to this movie thinking it was going ...\n Sitting in a big wing chair with a huge book i...\n I work at a Blockbuster store and every week w...\n Why? Because for one reason, there has never b...\n I just want to make one thing clear- I love Mi...\n Based on Ray Russell's dark bestseller, this J...\n I feel at a loss, so brilliant is this film. K...\n Having read the reviews for this film, I under...\n I watched both Bourne Identity and Bourne Supr...\n Title: Zombie 3 (1988) <br /><br />Directors: ...\n Prison is set in Wyoming where work on a new p...\n First I bough this movie on VHS than I just ha...\n I read one other review that expressed the vie...\n Justine cannot find the perfect mate to make h...\n In our household, we are enormous fans of A Ch...\n Disney? What happened? I really wish the movie...\n A friend told me of John Fante last summer aft...\n In Frank Sinatra's first three films, he was p...\n I saw this movie in September with my mother. ...\n The funniest thing about Fortunes is that one ...\n This movie seems to send the wrong message. Th...\n This is first of all a good, exciting story, w...\n I'll tell you a tale of the summer of 1994. A ...\n Just seen Which Way to the Front? on TCM (UK) ...\n This Movie is complete crap! Avoid this waste ...\n Zentropa is the most original movie I've seen ...\n I watched this basically for the sole reason t...\n Off the blocks let me just say that I am a hug...\n When the Italians and Miles O'keeffe work toge...\n This adaption contains two parts: <br /><br />...\n As other reviewers have noted the film dies in...\n I should admit first I am a huge fan of The Da...\n Irwin Allen, past master of cinematic schlock,...\n This is so embarrassing. It's a REMAKE of The ...\n First of three Aztec Mummies film is the only ...\n I think this still is the best routine. There ...\n Many animation buffs consider Wladyslaw Starew...\n OK this movie was by far worse then the first ...\n I feel like I've been had, the con is on, don'...\n Tatie Danielle is all about a ghastly old hag ...\n ... or maybe it just IS this bad. The plot is ...\n Again, it seems totally illogical, to me at le...\n Mel Brooks is a great writer,director and acto...\n \"Crossfire\" feels like an underdeveloped maste...\n This was alright. It was one of those We Gotch...\n First of all this movie is not a comedy; unles...\n Just saw the World Preem of Fido at the Toront...\n Zentropa has much in common with The Third Man...\n WARNING:I advise anyone who has not seen the f...\n Ego. Seems it's the only reason this movie was...\n This is meant to be a comedy but mainly bad ta...\n Typically, \"kids\" films have some annoying qua...\n Bullets may not have bounced off his chest, bu...\n This movie wasted 2 hours of my time and just ...\n A gentle story, hinting at fury, with a redemp...\n The title of worse film of all time is one tha...\n after seeing this film for the 3rd time now i ...\n I remember thinking that due to the cast, the ...\n The proverb \"Never judge a book by it's cover\"...\n I saw this movie a few years back on the BBC i...\n Cradle of Fear<br /><br />This isn't a movie w...\n This movie looked as if it might be good at th...\n The movie is truly poignant, unique and uplift...\n Well, as Goethe once said, there really isn't ...\n I'm a big fan of the true crime genre, but I c...\n Did anyone else notice whenever they are in th...\n Way back in 1996, One of the airliner pilots w...\n Tromeo and Juliet (1996) is another jewel in t...\n This is the weepy that Beaches never was. As m...\n Geoffrey Wright, the director of \"Romper Stomp...\n **SPOILERS**This was an ugly movie, and I'm so...\n Another movie that relies upon the trite, worn...\n Drum scene is wild! Cook, Jr. is unsung hero o...\n I agree with most of the critics above. More y...\n Ben Stiller doesn't so much act as react. And ...\n In one of her first movies, Romy Schneider shi...\n Despite its low-key release in this country, a...\n Hmmm, not a patch on the original from Shaw Br...\n I have three comments to make about this film,...\n A rare exception to the rule that great litera...\n The only good thing that this movie created wa...\n I hate a movie that doesn't have an ending. I ...\n The only thing about this film that bums me ou...\n I personally found the film to be great. I had...\n if you watch this at home on DVD or Bluray! be...\n A really cool flick. A must for any music snob...\n I only watched this because I saw a couple of ...\n No, this is nothing about that fairy tale with...\n This is a great TV movie with a good story and...\n I give this movie a 3 as it is worse than the ...\n With the exception of FAMILY, this new season ...\n This movie was such a blast! It has that feel-...\n Dire. Just dire. The script is contrived, the ...\n If you like movies about creepy towns, hotels,...\n This proved to be a rare case of a poliziottes...\n Shameless waste of my time as a viewer. This i...\n This has got to be the most god-awful piece of...\n This film has a lot of strong points. It has o...\n How hard is it to write a watchable film with ...\n The problems with Nikhil Advani's Salaam-e-Ish...\n I'm thinking of some things for this movie: Fi...\n Cheers to all the wonderful fans of this film ...\n I really like this film... when I started to w...\n I found this film to be one of those great hea...\n I don't see the sense in going through so much...\n This is one of the most boring horror films I ...\n I am almost tempted to demand my money back fr...\n Between the ages of 30 and 51, when he died of...\n Broad enough for you? Wait till you see this h...\n Steve Carrel Proves himself to be a great lead...\n I admit, the first time I watched Even Cowgirl...\n This movie is a very poor attempt to make mone...\n while being one of the \"stars\" of this film do...\n This movie is an incredible piece of work. It ...\n I thought this movie'd be totally different th...\n I am a fan of Jess Franco's bizarre style, and...\n **** Possible Spoiler **** <br /><br />If you ...\n Like many other people, I've heard about \"more...\n I did not like the idea of the female turtle a...\n after seeing this excellent film over 100 time...\n This film is an excellent example of what an i...\n If you think it's beautiful to be obsessive ab...\n I just came back from the Montreal premiere of...\n After having spent a lot of my youth watching ...\n I can't believe the positive reviews of this m...\n My friend & I rented this movie and within the...\n Let me start out by saying i will try not to p...\n I was hardly aware of the time in history depi...\n This show will succeed because it appeals to a...\n Everyone does things that they later regret. T...\n Film makeovers of old TV shows seems to be the...\n As much as I like Japanese movies this one did...\n Well, I had seen \"They all laughed\" when it ca...\n I saw this movie as a child and it broke my he...\n Jean Rollin artistic nonsense about vampires, ...\n I love occult Horror, and the great British Ha...\n By-the-numbers, Oscar-hungry biopic about the ...\n Why is this movie not in the 250 best? This mo...\n I had a bad feeling ten seconds into the film ...\n While not the first movie I've purchased for m...\n My comment is limited generally to the first s...\n I don't believe this was an acting challenge f...\n This guy is a real piece of work. An angry, im...\n A great gangster flick, with brilliant perform...\n Working with one of the best Shakespeare sourc...\n I consider myself a fan of Jess Franco and his...\n Everything in this film is bad , the story , t...\n that Welles said was that he's been in decline...\n I found it almost impossible to empathize with...\n I watched this cooking show for a few times be...\n Nazarin is some kind of saint,he wants to live...\n Pink Flamingos is a movie no word can explain....\n ... but you probably have seen it or else you ...\n Laughed a lot - because it is so incredibly ba...\n \"Smithereens\" is the kind of worthless flick w...\n I love love love this show. Whether you say it...\n I grew up watching Scooby and have been a fan ...\n Surprisingly well made little movie. Short in ...\n Besides the fact that this guy is a liar, he i...\n Have you ever had a cool image in your mind th...\n At first I didn't like the movie cause of it b...\n I have not seen and heard the original version...\n Yesterday I saw the movie Flyboys and my girlf...\n This movie could be likened to \"comfort food\" ...\n Lillian Hellman's play, adapted by Dashiell Ha...\n Wow! the French are really getting the hang of...\n I caught this at a screening at the Sundance F...\n I think that people are under estimating this ...\n ABC has done more for this show by allowing te...\n Personally, I regard \"The Egyptian\" in an extr...\n I saw this movie last month at a free sneak pr...\n An absolute steaming pile of cow dung. It's mi...\n While this movie won't go down in the annals o...\n Disney, the film name that once stood for all ...\n I'll say one thing for Herman, USA: it will pr...\n When I went to the cinema, I expected not much...\n Barman directed Any Way the Wind Blows as he w...\n Now either you like Mr Carrey's humour or you ...\n \"Father is still away on business\" was headlin...\n If you've read the original novel, as I did, y...\n Agreed this movie is well shot,but it just mak...\n This film is about the life of Queen Victoria ...\n *** Spoiler in fifth paragraph *** This was an...\n The movie begins with much voice-over, a bad s...\n \"Creepshow 2\" is little more than a pale imita...\n Much in the same way Frank Miller and his Sin ...\n I was looking for a cute, simple comedy to pas...\n Just got back from the European Premiere of Th...\n \"Children of wax\" also shown as \"Killing groun...\n This is just a joke of a movie,they lost me al...\n This great film is composed mostly of document...\n This timeless proverb reverberates in this mov...\n Fans of Gerry Anderson's productions will reco...\n Anatomie isn't very unique in horror genre, in...\n This was my very first \"Bollywood\" movie and I...\n Young spinster, who doesn't associate with wom...\n When i finally had the opportunity to watch Zo...\n When DEATHTRAP was first released, the poster-...\n I watched this movie on HBO and I had a good t...\n The Hookers was to me a great everyday people ...\n The positive reviews on this page are planted ...\n i saw this with my with my kids they love it b...\n ORCA is not exactly bad, but it's not really R...\n I first saw this film about 11 years ago when ...\n I felt duty bound to watch the 1983 Timothy Da...\n History teacher Mrs Tingle seems to have it in...\n Being a genre film fan, a child of the 80's AN...\n 'Metamoprhis' is the story of a dashing young ...\n All my friends and various other coworkers thi...\n This intensely involving 2007 character-driven...\n It seems evident from this adaptation that he ...\n Words cannot express how poor this film is.<br...\n ...Ever. This is the bottom. I am not joking. ...\n My roommate had bought this documentary and in...\n One: Richard Pryor and Jackie Gleason, two gre...\n I don't even like watching those late night ta...\n now don't get me wrong, i do enjoy christmas m...\n A gruelling watch, but one of Bergman's finest...\n Lady in Cement - PI spoof with ole Blue Eyes.F...\n This is the type of movie where it actually hu...\n Any screen adaptation of a John Grisham story ...\n Bellocchio refers to this as a mainly politica...\n This quirky and watchable film is the story of...\n A friend and I went to see this movie. We have...\n Lost holds something interesting for everyone....\n The relationship between the main characters I...\n My friends and I were just discussing how frus...\n So I guess that Bud and Lou just liked to mess...\n Really bad movie, the story is too simple and ...\n This would have to rate as one of the worst fi...\n This for one has nothing to do with the absolu...\n John (Ben Chaplin) is a lonely bank clerk who ...\n Shakespeare said that we are actors put into a...\n I just discovered this film and love it. Just ...\n Second movie in the boxset. Originally titled ...\n THE GREATEST GAME EVER PLAYED (TGGEP, 2005) is...\n The Emperor's (Richard Haydn) dog is betrothed...\n I'm not saying that just as a Chris Rock fan, ...\n This film was just on two nights running on IT...\n I have grown up reading Modesty Blaise, both t...\n Street Fight is a brilliant piece of brutal sa...\n What does the \" Executive producer \" do in a m...\n What is this crap? My little cousin picked thi...\n Memoirs of a Geisha is a beautifully filmed mo...\n Terry Gilliam's fantastic, twisted story of a ...\n I enjoyed the movie and the story immensely! I...\n For those viewers who thought the 1979 film \"A...\n I will admit, I had the opportunity in the pas...\n A very different Jerry Lewis film, not like al...\n In Joel Schumacher, you have one of the most i...\n The effects of job related stress and the pres...\n Best Cinematography I have ever seenConsideri...\n That's a weird, weird movie and doesn't deserv...\n I'd been following this films progress for qui...\n At the bottom end of the apocalypse movie scal...\n This is a good enough movie and you probably w...\n The sitcom revolved around a girl who must lea...\n Seriously, all these Satan comes to Earth movi...\n Funny that I find myself forced to review this...\n This is a mildly interesting late 80's gore fe...\n I love the Satan Pit!!! David Tennant is such ...\n I have seen the freebird movie and think its g...\n Rent this, I own the DVD, got it for $9.99. A ...\n Michelle Rodriguez is a well-built high-school...\n I had never heard of Silverwing before, then I...\n Jean-Claude Van Damme plays twin brothers Alex...\n There must have been a lot of background info ...\n The beginning of the movie was confusing and t...\n Remember the early days of Pay Per View? I do,...\n God! Where do I begin? From start to finish, I...\n Granted, HOTD 2 is better than the Uwe Boll cr...\n If Mr Cranky had rated this, I'd be tempted ju...\n This must be the dumbest movie I've ever seen ...\n Cashing in on the \"demons-meets-clergy\" trend ...\n One of my favorite movies I saw at preview in ...\n \"The Gig\" is a tight, funny and poignant littl...\n Not \"confusing\" in the sense that, \"Gee, this ...\n Due to a very misleading advertising campaign,...\n me, my boyfriend, and our friend watched this ...\n It's funny. I've seen a bunch of Fassbinder fi...\n Okay, I rented this movie because of the direc...\n Life Stinks (1991) was a step below Mel Brooks...\n Answer: despite that fact that this film was w...\n The Rookie kept me smiling from beginning to e...\n First of all, i have nothing against Christian...\n Yowsa! If you REALLY want some ACTION, check o...\n when the gilmore girls started in Germany i di...\n The director tries to be Quentin Tarantino, th...\n I really enjoyed this movie.I was fifteen when...\n As I understand it, after the Chinese took ove...\n One of the worst films I have ever seen. How t...\n I had the pleasure of seeing this short film a...\n I cannot say that Aag is the worst Bollywood f...\n I really liked the idea of traveling between d...\n Oh My God, this is so idiotic. Completely poin...\n This movie makes a promising start and then ge...\n I can imagine what happened for this film to c...\n REIGN OVER ME (2007) *** Adam Sandler, Don Che...\n `Shadow Magic' recaptures the joy and amazemen...\n What a joke. I am watching it on Channel 1 and...\n How do you make a totally unappealing movie ou...\n In my line of work, I occasionally get contact...\n Which do you think the average person would kn...\n John Carpenter's brilliantly suspenseful flick...\n GBS wrote his own screen adaptation of this No...\n This amazing documentary gives us a glimpse in...\n I think Downey was perhaps inspired by French ...\n The plot was predictable, and fighting with gu...\n When you think 'Oliver Stone' the movies that ...\n Though I strongly feel that SITR is the best G...\n I rented Zero Day from the local video store l...\n I thought this movie was pretty good!OK, so ma...\n I won't go into detail about why this movie de...\n I think that just sums up this film. Watch it ...\n Nick Millard aka Nick Phillips should have lef...\n Refreshing `lost' gem! Featuring effective dia...\n I can't believe I'm wasting my time with a com...\n This movie was an all around uninspiring film....\n Dictated by thin experience (of both life and ...\n This must have been one of Chaplin's most ambi...\n Fairly good romantic comedy in which I don't t...\n Dumb is right: Tom and Jerry reach their goal ...\n This is the worst movie I ever paid to see and...\n Diora Baird is absolutely hot as hell in this ...\n This movie reminds me old B movies, but not in...\n \"GOOD TIMES,\" in my opinion, is a must-see CBS...\n Horror/Sci-Fi that is interesting as it is lau...\n someone needed to make a car payment... this i...\n The cover of box of this movie has Kyle Minogu...\n The second half of Steven Soderbergh's revolut...\n This is the last film of a trilogy by the bril...\n There's not really that much wrong with Crash ...\n Looking for a movie for your Turkey Film Festi...\n This movie is not worth a descend review, it j...\n Another movie to suffer without an adventure t...\n If you read Errol Flynn's autobiography, My Wi...\n OK, so I admit that it often seems like most o...\n This is kind of a weird movie, given that Sant...\n Just how exactly do gay Asians manage in a cul...\n I've seen a lot of crap in my day, but goodnes...\n I saw this film at school and absolutely loved...\n He is very good in this role as a disaffected ...\n The plot of GOODNIGHT MR TOM on paper makes it...\n The most positive points in this film were the...\n 2 stars for Kay Francis -- she's wonderful! An...\n Liked Stanley & Iris very much. Acting was ver...\n This is not really a zombie film, if we're def...\n Four things intrigued me as to this film - fir...\n QUESTION: How does a film merit two different ...\n Good work by everyone, from scriptwriters, dir...\n I saw this movie by accident yesterday at a ci...\n Young Michael Dudikoff like young Lord Greysto...\n The movie contains a very short scene of Deneu...\n H.O.T.S. is a fun film for a trip back to when...\n As I sat subjected to this televised mediocrit...\n I sense out there a mix of confusion and varyi...\n First: a warning.<br /><br />I recently saw th...\n ....as to the level of wit on which this comed...\n Much of \"Over Her Dead Body\" is so painfully u...\n This movie is the next segment in the pokemon ...\n This is an absolutely charming film, one of my...\n This was recommended to me by a friend that sa...\n Great party movie, following the adventures of...\n During the opening night of the Vanties a woma...\n Just once I'd like to see a version of Beowulf...\n Anyone find it interesting that the Ood look s...\n Clearly, Andreas Bethmann would like to wear J...\n Freddy's Dead: The Final Nightmare, the sixth ...\n If you are a fan of either of the two origin f...\n It was life-changing, IT REALLY WAS!!!The Man ...\n I caught this movie right in my eye when I was...\n The ENTIRE MOVIE is flashbacks from the first ...\n The Sentinel features a sort of run of the mil...\n Funny how many of the people who say this is f...\n This movie brilliantly captures the atmosphere...\n The thing that makes this movie so scary is th...\n How offensive! Those who liked this movie have...\n This show is just annoying!!! I feel sorry for...\n I have no words to really describe this series...\n Forget that this is a \"B\" movie. Forget that i...\n This World War II film, set in Borneo, tries s...\n The violent death of Fernando Ramos Da Silva o...\n A sadly predictable, clichéd story about a wom...\n Tonino Valerii's \"Il Prezzo Del Potere\" aka. \"...\n First i have to say that i don't like since fi...\n I am a kind person, so I gave this movie a 2 i...\n The screen writing is so dumb it pains me to h...\n According to the budget information given on t...\n This is supposed to be Charlie's masterpiece, ...\n This is an outstanding criminal thriller, and ...\n With a title like that, you will be forgiven f...\n Having dabbled in the modeling industry (as a ...\n Well...overall, this movie was pretty much wor...\n If the myth regarding broken mirrors would be ...\n The movie blood and chocolate is NOTHING like ...\n I watched this movie with my boyfriend, an avi...\n This is very much a television version of the ...\n I saw this on the Accent Underground release w...\n Even though I tried to avoid German films rece...\n I agree with everyone who says that this serie...\n Oh, boy, it's another comet-hitting-the-earth ...\n It breaks my heart that this movie is not appr...\n This was so poor I had to turn it off in the e...\n The first feature length Muppet Movie, and exc...\n Admittedly, I didn't have high expectations of...\n This showed up on a DVD a buddy of mine bought...\n I can only say this: ee03128 from Portugal, I ...\n Well, would firstly like to clarify that Kaakh...\n Pretentious horror film that looks like a soap...\n Anyone giving this movie a good review obvious...\n Linda Lovelace was the victim of a sadistic wo...\n Bizarre horror movie filled with famous faces ...\n This movie is about a very sexy Olympic track ...\n I liked Antz, but loved \"A Bug's Life\". The an...\n OK, If you're looking for another Bastketball ...\n not really sure what to make of this movie. ve...\n De Grot is a very good film. The great plot co...\n The fact that I did not like the music is a ve...\n CUJO is a movie adaptation of a novel of the s...\n 'Renaissance (2006)' was created over a period...\n I stumbled across this movie late at night on ...\n there is no suspense in this serial! When one ...\n I saw this movie in the Rotterdam Film Festiva...\n I watched this movie on video the other night ...\n Michelle Pfeiffer stars as a mob widow who see...\n \"The Evil That Men Do\" begins with a truly rep...\n Is this movie as bad as some claim? In my opin...\n Great drama with all the areas covered EXCEPT ...\n Sorry for all you guys that are not family wit...\n There are some great philosophical questions. ...\n Terrific film with a slightly slow start - giv...\n \"Queen of the Damned\" is one of the best vampi...\n I have never seen the first Killjoy film, and ...\n This movie appears to have designed as a Fred ...\n I loved \"Flash Gordon\" as a child and watching...\n Anyone who appreciates fine acting and ringing...\n This movie obviously had good intentions. At t...\n Well, I hate hollywood, but love cinema so i h...\n A quiet, sweet and beutifully nostalgic movie ...\n Norris plays a Chicago cop who stumbles upon a...\n Do not watch this movie, go see something else...\n this movie begins with an ordinary funeral... ...\n I was invited to an early screening of the mov...\n Trapped: buried alive brings us to a resort th...\n I was in 6th grade and this movie aired on PBS...\n Despite of the success in comedy or drama, the...\n The Theory Of Flight is an engaging character ...\n I watched this on tv in 1989 and regretted not...\n Badly made. Dreadful acting and an ending that...\n Addle-brained stupidity that the cartoon \"Bull...\n One of those classics, held up next to \"Deep T...\n Director F.W. Murnau wisely stuck with the sil...\n Tenacious D: in The Pick of Destiny tells the ...\n One cannot help but admire Mike Judge for his ...\n I realize that alot of people hate this movie,...\n !!!! MILD SPOILERS !!!!<br /><br />With the ex...\n this show is one of the worst shows of ALL TIM...\n Director Lo Wei was known to read the racing p...\n Platoon is to the Vietnam War as Rocky IV is t...\n Produced by Nott Entertainment, this movie is ...\n This film is an interesting take on the killer...\n This was a sad waste of two such promising act...\n In 1978 a phenomenon began. The release of Joh...\n If there's anything worse than this movie I do...\n It is noteworthy that mine is only the third r...\n Watching TRUTH ABOUT LOVE (is this a double en...\n Unbelievably bad acting, a no good, unclear st...\n All right, let's be realistic about this. Nobo...\n When voting I was going to give a 2 but when s...\n And that is the only reason I posses this DVD....\n It is hard to put the devastating beauty of Tr...\n A group of teenagers discover a bootleg video ...\n The production values in this video are so poo...\n Team Spirit is maybe made by the best intentio...\n Firstly let me say that I didn't like the fact...\n The famous international conductor Daniel Daré...\n My skateboarding career ended in 1974 when my ...\n A very good story for a film which if done pro...\n Next to \"Star Wars\" and \"The Wizard of Oz,\" th...\n Peter Ustinov plays an embezzler who is just g...\n Yowza! If anyone who loves Laurel and Hardy ca...\n At the time, \"My Left Foot\" was the little mov...\n This is my first comment! This is a fantastic ...\n To be as honest as I possibly can, The Devil's...\n Marked for Death (1990) spends more time on ac...\n I knew full well when I rented this DVD that i...\n The first thing that struck me about this movi...\n This derivative erotic thriller remains watcha...\n This is one of the worst film adaptations of a...\n Absolutely the very first film that scared me ...\n This is a FUNNY film. It has all the usual Dis...\n I've seen about a half dozen of the low budget...\n RENDITION is a film not to miss with solid wri...\n I have spent the last 5 years in the entertain...\n Wow, what a waste of acting talent. My husband...\n Worth the entertainment value of a rental, esp...\n Christophe Lambert once said he was still maki...\n To remake \"Lost Horizon\", as a musical, the ne...\n i saw this film by accident and this movie was...\n Like most sports movies, it's not surprising t...\n The Violent Men is a good western. Perhaps the...\n do you still love woody allen's humor and sens...\n I must say one big reason why I thought the Ar...\n This movie looked like it was rushed to releas...\n This movie travels farther on 8 gunshots, 2 ki...\n This movie was o.k. but it could have been muc...\n I hate how this movie has absolutely no creati...\n For persons of a certain age, W.W. II was the ...\n This 1-hour 30-minute inside joke is best unde...\n This 1959 soap opera film takes us into the li...\n \"Death Bed:The Bed That Eats\" is a supremely b...\n This was thought to be the flagship work of th...\n Bridges of madison county is a better made ver...\n Hundstage is an intentionally ugly and unnervi...\n There really wasn't much of a story in this fi...\n \"The Violent Men\" marked the finest collaborat...\n I enjoyed the film, and the fact that it aimed...\n This is the most boring, pretentious, and stup...\n I guess there are some out there that remember...\n As a former submariner, this was one of the wo...\n Nintendo!!! YOU #%$@ERS!!! How could you do th...\n \"Shall We Dance?\", a light-hearted flick from ...\n There are many so-called anti-war/anti-govt. p...\n This is just about in the same league as `The ...\n Wow this movie sucked big time. I heard this m...\n You will marvel at the incredibly sophisticate...\n (Possible *SPOILERS* warning)<br /><br />You n...\n It's a difficult movie to classify \"10 Items o...\n Jerry Lewis was marginally funny when he didn'...\n This was by far one of the worst movies Sandra...\n While some performances were good-Victoria Row...\n I have to admit that I approached this movie w...\n William Cooke and Paul Talbot share director/w...\n This is a witty and delightful adaptation of t...\n For some reason, various young couples hiking ...\n Steven Segal has done some awful films, but th...\n Like other people who commented on \"Fräulein D...\n Another review likened this troupe to a cross ...\n I was forced to watch this film for my World R...\n There are no spoilers in this review because e...\n I have seen it & i like it Melissa plays her p...\n This movie is just crap, I cant put it differe...\n Another of many nearly forgotten movies cranke...\n Exceptionally silly actioner with braindead le...\n This is the fifth part of 'The Animatrix', a c...\n Is this a bad movie? Don't take my word for it...\n I believe an entire book can be written about ...\n The Sopranos (now preparing to end) is the ver...\n having never actually seen anything by this be...\n A kind of road movie in old-fashioned trains i...\n The special effects of this movie are, especia...\n My family (two 40-somethings, an 8 year old an...\n The two most noteworthy things about \"I Won't ...\n If you're looking for a kung-fu action movie, ...\n The impossibly sexy Rosie Holotik plays Charlo...\n Just watched this movie and it's not bad; ther...\n Lou Costello (sans Abbott) plays a small town ...\n Ronald Coleman had been a star of the screen f...\n I bought this at tower records after seeing th...\n And the Oscar for the most under-rated classic...\n Renoir's tale of Paris,the Cancan,a washer-gir...\n With all of the violence on TV and in the loca...\n If I wouldn't have had any expectations of thi...\n This is a splendidly done simplistic film that...\n Example of how a World War 2 documentary shoul...\n Not since \"8 Heads in a Duffel Bag\" and the \"H...\n Steve Carpenter cannot make horror movies. Fir...\n DIG! is funny, fun, amusing, interesting, styl...\n I don't know what else to say about this horri...\n Very bad but watchable science fiction film th...\n Why bother, ITV? Admittedly, Mansfield Park is...\n It's very sad that Lucian Pintilie does not st...\n Film about the failure of government and the s...\n I have always liked this film and I'm glad it'...\n I'm a fan of Jeff Bridges so I snapped this up...\n Men, do I love police movies filled with actio...\n I remember this movie when i was 13 (seems a l...\n awful, just awful! my old room mate used to wa...\n Well I'm not the world's biggest Sondheim fan,...\n Even not being a fan of the \"Star Trek\" movies...\n This film limps from self indulgent moment to ...\n This is the worst movie I've ever seen in my l...\n Some very interesting camera work and a story ...\n I could have done with the seven gunslingers j...\n I've been waiting since last October to see th...\n An enjoyable Batman animated film. Not on par ...\n The film starts with promise because there is ...\n I've been disappointed, if not surprised, at t...\n \"A Slight Case of Murder\" is an excellent TV m...\n quote by Nicolas Martin (nicmart) from Houston...\n not too much top's the classic \"top gun\" or \"i...\n The third collaboration for Karloff and Lugosi...\n A good movie for horse enthusiasts and most ot...\n There are a few scripts like this one floating...\n Slaughter High is about a boy named Marty. He ...\n Richard Linklater's beautifully directed mixtu...\n If you think Hannah Montana or the Suite Life ...\n In 17th Century Japan, there lived a samurai w...\n Before George Clooney directed Sam Rockwell in...\n (Sorry for my faulty language, i am no native ...\n As winter approaches, our state-owned broadcas...\n A mix of Ninja stuff mixed with a sub-James Bo...\n Loved the shots of airports -- Dallas, Phoenix...\n This was a really funny movie.<br /><br />Ever...\n As long as you can get past your puritanical i...\n An allegation of aggravated sexual assault alo...\n Surprisingly well-acted, well-written movie ab...\n here, let me wave my hands over the keyboard, ...\n When I saw this movie a few days ago, my eyes ...\n This is a very moving picture about 3 forty-so...\n I'm giving it only 9 out of 10, because I need...\n While this outing certainly doesn't live up to...\n It finally hit me watching my VHS of Christmas...\n This is one of the best films we watched in my...\n Along with Cops, The Goat is one of Keaton's t...\n Yes, I watch this show. Because my girlfriend ...\n Good exciting movie, although it looks to me t...\n Seeing Les Amants Reguliers calls immediately ...\n The first bottom movie was an absolute laugh f...\n Primal Species comes from B Movie legend Roger...\n You want to know what the writers of this movi...\n Neatly sandwiched between THE STRANGER, a smal...\n It is not surprising that this film was made b...\n \"Eh-heh eh-heh hey, dude - look at these alien...\n Anne Brontes epic novel THE TENANT OF WILDFELL...\n The Dune miniseries opens with a \"flashforward...\n Rumor has it that when the NASA Technical Advi...\n Simple story... why say more? It nails it's pr...\n 1st watched 6/24/2007 - 4 out of 10(Dir-Stefan...\n Sorry, not good.<br /><br />It starts out inte...\n A killer, wearing a plastic white mask and bla...\n Gee, what a heck of a movie!... I said I wante...\n There's a great deal of material from the Mode...\n It seemed as though the year 1984 was anything...\n Let's get the flaw out of the way right off th...\n A young man kills a young woman for no reason....\n I have to agree with the previous reviewer. Al...\n For years I thought this knockabout service co...\n ******SPOILERS******<br /><br />The unfunny ra...\n Being Belgian myself, I take interest in the h...\n If you want a film with the full range of emot...\n This movie is a hard-to-find gem! It is the st...\n Colonel Chabert is one of the best adaptations...\n How did I ever appreciate this dud of a sequel...\n My website (theflickguy.org) lists \"Michael\" a...\n Many funny scenes about the people that you do...\n This was an absolute disgrace! The worst drama...\n This Don Siegel/Clint Eastwood strange and hyp...\n This movies is the best movie to watch for com...\n I'm not a massive Disney fan, but my 7 year ol...\n Great acting on the part of Gretchen Mol. This...\n Dominion tank police is an exercise in contrad...\n Well, I have finally caught up with \"Rock 'N' ...\n \"Darius Goes West\" is the touching story of a ...\n The curse of Monkey Island is a brilliant vide...\n There is something about Doug McLure's appeara...\n It all starts with a suicide. Or is it a car c...\n ... what a porn movie would look like if you t...\n It is the best movie on acting I have ever see...\n No offense to anyone who saw this and liked it...\n This film about secret government mind experim...\n Guy Ritchie's noble effort is beat up, knocked...\n I feel very generous giving this movie a 2 out...\n A typical old b&w film. The dialogues are some...\n To this day, there isn't a movie I've seen mor...\n I feel like I've just watched a snuff film.......\n DANGER: Watch for falling spoilers...<br /><br...\n I saw this film 12 years ago on TNT. It was Su...\n Famed filmmaker Werner Herzog's \"Fata Morgana\"...\n Whenever someone tries to tell me that they th...\n During my struggle to stay awake during this b...\n This movie will undoubtably not go over well w...\n Aimless teens on summer break in a small Ohio ...\n The plot sounded like it had promise. To be ho...\n Horrible film with bits of the Ramones strewn ...\n **May Contain Spoilers**<br /><br />A dude in ...\n This movie blows - let's get that straight rig...\n I tried. Lord help me, how I tried. But there ...\n Oh, Sam Mraovich, we know you tried so hard. T...\n The premise of the story is simple: An old man...\n For those who never saw A CHORUS LINE onstage ...\n Nell Shipman must have been paid a hefty sum o...\n I remember when this came out a lot of kids we...\n This is a most handsome film. The color photog...\n This movie is terrible. TERRIBLE. One of the w...\n After watching this, I had lost a little respe...\n > What a dud. It began with some promise, then...\n Film starts off great in 1872 with a violent, ...\n I really like this movie because in Australia,...\n As essential a part of British pop culture as ...\n I like this movie much, it's special type of h...\n Wow, this was a very bad movie... as read in o...\n am i the only one who saw the connection betwe...\n The promise of Martin Donovan playing Jesus wa...\n There are bad movies, terrible movies even bor...\n Oh just what I needed,another movie about 19th...\n If you make a suspense movie it is kind of imp...\n it's movies like these that make you wish that...\n As I don't have a TV, and had never heard of t...\n Wow, where to begin with this one. Well, if yo...\n I've just lost 2 hours of my life watching thi...\n I liked this quite a bit but I have friends th...\n Wildman head counselor Tripper Harrison (Bill ...\n Beyond The Clouds is a hauntingly beautiful, e...\n This is a 'sleeper'. It defines Nicholas Cage....\n I loved this movie and i never knew it was thi...\n Reba is a very dumb show. You can predict pret...\n Michael Bennett and Nicholas Dante's Broadway ...\n Twelve years ago, production stopped on the sl...\n Body Slam (1987) is a flat out terrible movie....\n I'd heard a lot of bad things about this film ...\n Since the advent of literature, people of all ...\n There's a good movie lurking here, but this is...\n I find myself wondering what the people who ga...\n I may be a sentimentalist. But i found this mo...\n Atmosphere and droll dialog don't redeem this ...\n This is another of John Travolta's \"come back\"...\n Even though it has one of the standard \"Reveng...\n I saw this film shortly after watching Moonlig...\n Mean-spirited, ugly, nasty retro-action thrill...\n My husband and I were intrigued by the spectac...\n This is the type of film that makes you questi...\n In 1983 two Bond movies was made, one was the ...\n I remember when I first saw this movie, I was ...\n Also known as \"Stairway to Heaven\" in the US. ...\n <br /><br />This is without a doubt the funnie...\n This is certainly a quality movie with a class...\n The story is quite slow at the beginning excep...\n This film is utterly amazing. From the perform...\n If you like shoot em up westerns this is a kee...\n I didn't agree with any of the theology in the...\n this movie is made for Asian/Chinese market, t...\n Jeopardy has the feel of being a stock movie o...\n There are many problems with Mystery Men. Firs...\n I am having a hard time finding the words to e...\n The film is very fast-moving, bizarre and colo...\n This has to be the greatest practical joke eve...\n This film is a portrait of the half-spastic te...\n Jack Lemmon and Walter Matthau have got to be ...\n This is one of those films that makes you want...\n This movie is surprisingly good. The ninja fig...\n Let me start out with saying I was VERY surpri...\n There are rumours that a fourth Underworld is ...\n It is the first time I can recall where an ada...\n Well when watching this film late one night I ...\n I managed to catch a late night double feature...\n First of all I would like to point out that th...\n This movie is amazing. You will NEVER laugh ha...\n The first Shiloh film was enjoyable by adults ...\n Based on Tom Wolfe's satirical novel that was ...\n I tend to like character-driven films. I also ...\n Pitch Black is a survival story. It's about ho...\n If you're a layman interested in quantum theor...\n I love bad movies: Showgirls, Plan 9 from Oute...\n Guinea Pig: The Devil's Experiment is without ...\n Here's a spoof that's guaranteed to entertain ...\n This is one of the most anti-traditional war m...\n This wonderful 3 part BBC production is one of...\n Do you know when you look at your collection o...\n I really enjoyed this movie. Typically Ron How...\n I've been on a bad run of films. This is a cli...\n I've just watched this with my three children ...\n This is a wonderful film as a film - it gets a...\n As a fan of old warner brothers gangster movie...\n \"Cry Freedom\" is not just a movie. It is a his...\n A Christmas Together actually came before my t...\n If you suffer from insomnia then Radiant would...\n There are two ways to regard 'Head'. Either it...\n Pun intended. This low budget action/horror ve...\n A fun filled romp, full of silly if not someti...\n Jean Claude Van Damme tries to rescue his care...\n #1 Vampires vs. Humans<br /><br />#2 Military-...\n \"D.O.A.\" is a non-thrilling thriller from dire...\n Anarchy and lawlessness reign supreme in the p...\n Polanski returns to the themes of solitude and...\n This is a movie about how men think women thin...\n This is a cute little French silent comedy abo...\n This film, I thought, was the great journey th...\n OK, a slasher movie. a very, very stupid slash...\n The first two sequences of this movie set up t...\n I was drawn to this movie the moment I saw a p...\n This is a great example of a rather simple Fil...\n Somewhat funny and well-paced action thriller ...\n This is definitely the worst movie Adam's ever...\n This film is exactly what its title describes-...\n What would you say about a man who was about t...\n Sad to say this is one of the sillier of John ...\n I was at a friends house for Thanksgiving and ...\n Seeing Laurel without Hardy in a film seems st...\n I thought that the love letter was a pretty go...\n I'm not quite sure why, but this movie just do...\n When someone remakes a classic movie, the rema...\n You have to like baseball, and you have to at ...\n This year's Eurovision was to me a big disappo...\n And you know why? Because they thought (or at ...\n Sorry everyone,,, I know this is supposed to b...\n This is an Emperor's New Clothes situation. So...\n Well OK, I've seen Wrath of the Ninja.<br /><b...\n Aunt Cora had always been tactless, and her we...\n To regard the film as nothing more than a docu...\n While I am not a big fan of musicals, I have l...\n This was without a doubt the best of the \"Dirt...\n Amy Heckerling's second film Johnny Dangerousl...\n Sharky's Machine is a crime drama set in early...\n Cassidy(Kacia Brady)puts a gun in her mouth bl...\n Asia Argento is a sexy beautiful woman who lik...\n MY BROTHER TOM <br /><br />Aspect ratio: 1.85:...\n OK so i am like most people, give me free tick...\n With no fault to the actors (they all put on g...\n When i was told of this movie i thought it wou...\n What's the point of reviewing a movie like thi...\n Being a huge fan of hip-hop and turntablism to...\n Ghost Train is a fine and entertaining film, t...\n I will not vote this movie as an awful one, ma...\n 1st watched 12/24/2009  4 out of 10 (Dir-Robe...\n Michael Jackson would have claimed a spot for ...\n For sci-fans this will be better than anything...\n I carefully checked if there's another movie n...\n This movie is very good and the whole family w...\n \"Sky Captain and the World of Tomorrow\" (an am...\n In spite of the great future-design touches, t...\n Never before have the motives of the producers...\n Ghoulies IV may not be the best out of the ser...\n I am surprised that everyone (even the critics...\n i realize this review will get me bashed by th...\n When I watched L'Appartement with my girlfrien...\n Sometimes I just want to laugh. Don't you? No ...\n The film did what it set out to do: show how a...\n This film was set, filmed, and premiered in Ox...\n I just saw the third week of Stephen Kings' Ni...\n An incredible performance! This is one of the ...\n A classy offering from Amicus, producer Milton...\n At first i didn't like they way the director w...\n Let's set one thing straight: this movie does ...\n Chan-wook Park, you have to hand it to the guy...\n I could not agree more with the quote \"this is...\n I thought the movie (especially the plot) need...\n Some fraud girl tries to compete in the big le...\n This 1970 hit film has not aged well, but fran...\n The world now seems to be in an odd stage of d...\n This movie was heavily marred by the presence ...\n This is a good blueprint for a study of corpor...\n I just saw this on a local independent station...\n Such great actors such a disappointment. Marlo...\n <br /><br />This movie really has nothing goin...\n Fires on the plain directed by Kon Ichikawa an...\n \"Le Locataire\"(\"The Tenant\")is without a doubt...\n You know, I went to see \"The Hills have eyes 2...\n A group of young travelers that just ran out o...\n I bought Bloodsuckers on ebay a while ago. I w...\n really excellent movie, one of the best i've s...\n Just in time to capitalize on the long-awaited...\n This is a beautiful movie that is wonderfully ...\n Well.....horror this ain't, but.......!!!??? A...\n I had known Brad Linaweaver at Florida State U...\n John Cassavetes is on the run from the law. He...\n If Ashanti had been a serious attempt at a fil...\n Ray is one of those movies that makes you paus...\n John Scott (John Wayne) and partner Kansas Cha...\n Yes AWA wrestling how can anyone forget about ...\n saw this in preview- great movie- wonderful ch...\n A great film. Every moment masterfully conduct...\n I enjoyed this movie,and after watching it,it ...\n After some internet surfing, I found the \"Home...\n Sensitive, extremely quiet paced love story be...\n I'd love to give this movie a 10/10, but in it...\n As an old white housewife I can still apprecia...\n I think it took a lot of guts for her to come ...\n The best film on the battle of San Antonio, Te...\n I must admit, ashamed though I am, that as an ...\n They probably could have skipped some of the b...\n This movie was filmed in my hometown and I was...\n This is one very dire production. The general ...\n If there is one film which is the worst of thi...\n Here's why this movie fell very short of its p...\n What is this ? A low budget sex comedy ? Anywa...\n I thoroughly enjoyed this movie because there ...\n I was given a DVD of Public Enemies and was ex...\n I have only seen the minimum wage episode yet ...\n I'm torn about this show. While MOST parts of ...\n Late one night on Tom Snyder's \"Tomorrow\" Show...\n After seeing the low-budget shittier versions ...\n The premise of Bottom crossed with Fawlty Towe...\n This is one of those awful, sex-driven B-movie...\n i was part of the cast of Space Odyssey, playi...\n If you really have to watch this movie because...\n This movie was beyond awful, it was a pimple o...\n Despite the excellent cast and the potential o...\n Dreadful film about a doctor who goes fishing ...\n Howling II (1985) was a complete 180 from the ...\n This movie is a true reflection of the Austral...\n From the moment the film begins, already there...\n Boy oh boy oh golly gee,<br /><br />The most i...\n I just finished watching this movie and I must...\n I happened to borrow this movie from a friend ...\n Seagal fans beware- He does no action scenes u...\n Devin Hamilton is probably better known as the...\n Judith Ivey as the scamming old whore is aweso...\n Story of a wrongly executed prisoner who haunt...\n This is by far probably the worst film Al Paci...\n Like many people in my general age range, I re...\n OK, maybe it doesn't deserve an Oscar. Or a Go...\n Rosie wasted a lot of TV time talking about th...\n Quite possibly. How Francis Veber, one of the ...\n I only watched this movie because I was so imp...\n What can you say about a grainy, poorly filmed...\n ***SPOILERS*** Seething with hatred and reveng...\n It's only 2 episodes into a 5 part drama, but ...\n This is by far the worst movie I have ever see...\n E. Elias Merhige's Begotten is a one of a kind...\n H.G. Wells in 1936 was past his prime and the ...\n This is the thirteenth Falcon film. Tom Conway...\n I really hate this show! I had watched one epi...\n Writer/Director Peter Greenaway cements his ti...\n I didn't mind the film that much, but it was i...\n Then again, I like Rachael Ray. She is fun, sw...\n I guess it's Jack's great empathic ability tha...\n \"Blind Date\" is one of three stories-made-into...\n This movie was 100% boring, i swear i almost d...\n This movie, I would like to say, was completel...\n My 3 year old loved it. I loved it, my wife lo...\n What's happening to RGV? He seems to repeat hi...\n Fred Gwynne, Al Lewis, Sid Caesar, and Yvonne ...\n As has already been noted, the short film \"Eve...\n One of the dumbest movies in the history of ci...\n (I'll indicate in this review the point where ...\n What we have here is a film perfect for anyone...\n This horrible action  sci-fi movie is a crap....\n Natile Portman and Susan Sarandon play off of ...\n Anyone who has seen 'Shine',Scott Hicks film o...\n It is the best film i have seen in the last 5 ...\n One of the finest movies I have viewed...Good ...\n Okay, I sensed that a film by Mormons, about M...\n \"Rival reporters Pat Morgan (Ginger Rogers) an...\n First off, I must admit that both films I've s...\n This was such a funny movie, which was soon fo...\n Big rock candy mountain is amazing. i watched ...\n I gave this two stars for the awesome DV shot ...\n If you`re not old enough to remember Yoram Glo...\n If there's one thing you can count on Disney t...\n I wouldn't rent this one even on dollar rental...\n Is there anything else on earth to be more ent...\n There was a time when Joel Schumacher was rank...\n Governments are elected for three year terms, ...\n Oh, man, I hated this movie. Granted, the site...\n Was convincing the world that he didn't exist....\n My daughter already wrote a review of this mov...\n The Wicker Man Has Done The Impossible! It rep...\n Wow, I knew this film was going to be bad but ...\n After 30 seconds, you already realize that the...\n I liked this film very much. The story jumps b...\n I regret that I've seen this movie. Can't beli...\n I, like many other Bachchan fans, having been ...\n A couple of farmers struggle in life in a smal...\n \"Hitler, the rise of Evil\" is clearly produced...\n Though not a Greek I have had a lifelong inter...\n I come from Bangladesh, and here, C.C.Costigan...\n This movie is just too funny, a totally non-PC...\n This movie is not only boring, it is also real...\n They give you the set up then bore you to deat...\n This is one of the best movies I have ever see...\n I just got back from seeing, \"Comedian\". It wa...\n This is one of those movies when you are watch...\n I'm rating 'The Decline of the American Empire...\n Horrendous \"comedy\" in which a beautiful, craz...\n I really looked forward to see Planet of the A...\n I thought I had seen this film before as the p...\n This movie might not put the Catholic church i...\n A must for any die hard Carpenters fans!<br />...\n Ying, a Chinese girl who speaks Czech, invited...\n Sometimes good things happen by accident.<br /...\n As many agree, Origin is a beautiful anime art...\n Warning,contains spoilers!<br /><br />This is ...\n This film is so bad it's hilarious. I watched ...\n If you're a fan of Mystery Science Theater 3K,...\n A woman as rich as she is insecure has a histo...\n Well, I couldn't even enjoyed this movie much ...\n This film deals with the Irish rebellion in th...\n Don't be taken in because the premise of this ...\n It's Saturday, it's raining, and I think every...\n That pretty much sums it up ... corny. MacDowe...\n Sometimes I rest my head and think about the r...\n A teenager who seems to have it all commits su...\n Low-rent version of Ashley Judd's Double Jeopa...\n \"Alexander Nevsky\" marked director Sergei Eise...\n well,there isnt much to say about this movie. ...\n The book that this movie is based on seriously...\n Ronald Colman gives a terrific performance as ...\n a real hoot, unintentionally. sidney portier's...\n I have seen and enjoyed all of the Chameleon m...\n Definitely one of funny man Eddie Murphy's les...\n Meatball Machine is an amazing splatter film, ...\n When a stiff turns up with pneumonic plague (a...\n Hercules wound up falling into the same catego...\n \"The Student Nurses\" is an excellent film that...\n Every time I watch this film, it just really m...\n I liked this movie, Although halfway through i...\n Fido is a story about more well mannered zombi...\n 1st watched 2/28/2006 - 4 out of 10(Dir-Sydney...\n Barry Kane (Robert Cummings) is wrongfully acc...\n A strange relationship between a middle-aged w...\n Ohhh the brutality, ohhhhh the dying breed, oh...\n This is one of the most predictable movies I h...\n With Matthias Hues on the cover and only $3.00...\n UNCONDITIONAL LOVE is surprisingly entertainin...\n If you don't like Italian horror, you won't li...\n This movie was a rather odd viewing experience...\n Well, what can you say about a Barbara Cartlan...\n Keira Knightley and Sienna Miller stars in the...\n This is the Columbo that got directed by Steve...\n This movie had me smiling from beginning to en...\n In the title I write that the story is ludicro...\n This has to be one of the best movies we have ...\n 5 minutes into this movie I was hyperventilati...\n it's all very simple. Jake goes to prison, and...\n What a waste of time! I've tried to sit throug...\n This was an interesting movie...half-comedy, h...\n I am sorry but this is the worst film I have e...\n This is a documentary unlike any other. It has...\n There are many police dramas doing the rounds....\n Slaughter Trail is a B western with some grand...\n The title of this movie doesn't make a lot of ...\n Okay,I'm a history buff,and okay,I'm a action ...\n Only after some contemplation did I decide I l...\n When the British Film Institute asked Martin S...\n To be honest, I had to go see this movie backw...\n I saw this movie a couple years back. I could'...\n A brief history of time. The cosmological cont...\n I was looking forward to Dante's contribution ...\n There is absolutely no plot in this movie ...n...\n I found this movie boring, monotonous and quit...\n Chuck Jones's 'Odor-able Kitty' is the cartoon...\n I saw Crispin Glover's \"What Is It?\" at the An...\n I enjoyed Carax's \"Les Amants du Pont Neuf\" an...\n A fine Martino outing, this is a spirited and ...\n Brilliant Biographic FILM..<br /><br />Well...\n That distinction has to go to THE DUNGEON OF H...\n Maverick cop with family problems and fondness...\n While being a great James Arness western, this...\n It had its moments, but overall when I watched...\n Even if it were remotely funny, this mouldy wa...\n At 2:37pm in a bathroom at an Adelaide highsch...\n The headline describes it exactly. This dribbl...\n Based on fact, this is the story of a teenager...\n The only reason I saw \"Shakedown\" was that it ...\n This 1931 comedy gets better with every viewin...\n My guess is that this director/writer had some...\n As a kid, my friends and I all believed that G...\n Ursula Andress' naked body is one of those thi...\n Witticisms, colorful characters, family relati...\n Although Embryo could have been a potentially ...\n wow, this movie sucked.<br /><br />This movie ...\n I enjoy B movies. I think Bruce Campbell is a ...\n When HOPPITY GOES TO TOWN he discovers nothing...\n In the U.S., very few films have been made abo...\n This is one of the funniest movies I have ever...\n Only the glandular secretions -- and please do...\n Did anyone who was making this movie, particul...\n The opening shot was the best thing about this...\n Greyfriars Bobby was NOT a westie - Bobby was ...\n I've just finished viewing the 1st disc in a 4...\n I can't even begin to imagine why everyone hat...\n Best of the Best 4, is better than 3, but just...\n Milo is a complete rip off of the 1992 slasher...\n Hello. I am Paul Raddick, a.k.a. Panic Attack ...\n When I was a kid of 8, I always watched movies...\n The acting was horrendous as well as the scree...\n This DVD usually sells for around $20. I would...\n This film is just plain horrible. John Ritter ...\n Last week, I took a look at the weekly Nielsen...\n OK - as far as the 2 versions of this movie. T...\n Saw the movie today and thought it was a good ...\n I seriously don´t know why this movie got such...\n I hope the writer, director, editor, and compo...\n Weak, fast and multicolor,this is the Valvolin...\n I cannot vote on this because I wouldn't watch...\n I thought it would be more fantastic a tale. B...\n Pretty dreadful movie about several unbalanced...\n This film is predictable; it is more predictab...\n This movie is breath-taking and mind-blowing. ...\n If you repeat a lie enough number of times wil...\n this movie is a masterpiece a story of a young...\n A highly original film using a myriad of genre...\n To Die For (1989) was just another d.t.v. feat...\n Okay I must say that before the revealing of t...\n This movie is intelligent. That is, more than ...\n I just saw this at the Toronto Film Festival, ...\n I went to see this 3 nights ago here in Cork, ...\n This is one great show, that it makes me wonde...\n Pat O'Brien portrays Knute Rockne, the All-Ame...\n The Simpsons of course started off with Christ...\n Ah WINTER KILLS , based on the novel by Richar...\n At last, a great film that doesn't have to be ...\n I had always heard about this great mini-serie...\n One of the many Merrie Melodies cartoons that ...\n Despite Disney's best efforts, this is a rathe...\n Superb editing, outstanding acting, especially...\n There's nothing really to dislike about \"The O...\n Despite its New York setting & New York charac...\n We are taken to a convenience store where Nick...\n Kane is a killer named Jacob Goodnight, he liv...\n As an English teacher, I appreciate films that...\n Let me start by saying that there's really no ...\n Gloria Swanson (as Leila Porter) is an underst...\n o m g!!! did you ever think they would make a ...\n It's so sad that Romanian audiences are still ...\n All the pro comments about this movie claim th...\n This has to be one of the worst movies of all ...\n This film, originally released at Christmas, 1...\n I have seen many a horror flick in my time, al...\n This movie is a window on the world of Britain...\n This movie was so predictable. Its a complete ...\n Unfortunately, this movie is so bad. The origi...\n I loved the blood and gore. The kind of violen...\n Bad news for anyone wanting to film a full-len...\n Look no further, this is it, the worst movie e...\n This was a romantic, simple funny movie. I rea...\n This must be the worst thriller I have seen in...\n From the beginning of this film,with it's \"The...\n Watching it now it's still as skanky and sexis...\n You'll notice that the chemist, who appears in...\n I will admit my ignorance of this film's exist...\n \"Hit and Run\" is a shattering story starring t...\n This is definitely one of the weirder 70's mov...\n On one Thursday evening at 10:00pm, my local w...\n I generally love this type of movie. However, ...\n For starters, I didn't even know about this sh...\n This is definitely a stupid, bad-taste movie. ...\n This movie is a fantastic movie. Everything ab...\n This adaptation positively butchers a classic ...\n Started watching this but didn't believe in an...\n This is so bad I don't know where to begin.<br...\n i would like to comment the series as a great ...\n I'm sorry, but even TJ Hooker's Adrian Zmed co...\n When this showed at the Seattle Int'l Film Fes...\n It takes a very special kind of person to make...\n This was a disappointing movie. Considering th...\n This is a poor caricature of \"Lonesome Dove\" -...\n This film is a classic seventies cop flick tha...\n I was privileged to have seen some snippets fr...\n This is a very strange little short film that ...\n I saw Le Conseguenze Dell'Amore on the 2005 Ro...\n I enjoy the show Surface very much. The show i...\n Sequels hardly ever live up to the original. T...\n I'm a big fan of the TV series Largo Winch. Th...\n A chick flick that Guys still like - Yes! Wond...\n \"Cypher\" is a cleverly conceived story about i...\n Three story lines and not enough tying them to...\n This movie was very enjoyable, though you'll o...\n There is a reason this went straight to video-...\n I enjoyed this one, because I can relate to it...\n This entertainingly tacky'n'trashy distaff \"De...\n I was not entirely impressed by this film. It ...\n First of all I have to say that I'm a huge Luc...\n OK, I kinda like the idea of this movie. I'm i...\n If this is classed as 'real life' of London, t...\n Uncle Fred Olen Ray once again gives us a litt...\n I think I am some kind of Road Runner fan. I d...\n I can't help but notice the negative reviews t...\n quite possibly one of (if not the) worst film ...\n In this documentary we meet Roger, the rich ma...\n As a cinema fan White Noise was an utter disap...\n A clever, undeniably entertaining romp starrin...\n Good historical drama which is very educationa...\n I was very disappointed by this movie. I thoug...\n This P.of S. was highly recommended to me by t...\n After a brief prologue showing a masked man st...\n This might be unbelievable, but this movie has...\n I like the good and evil battle. I liked Eddie...\n Thanks to Kevin Smith, a bunch of geeks are ru...\n This film is great! Being a fan of \"The Comic ...\n I have a problem with the movie snobs who cons...\n This movie is probably my favorite movie of al...\n This is the kind of movie which is loved by 50...\n I know that there are some purists out there w...\n OK, so, Chuck Norris somehow found a way to ge...\n The plot of the movie is pretty simple : a vir...\n What the heck is this about? Kelly (jennifer) ...\n Reese Witherspooon's first movie. Loved it. Th...\n I thought the whole movie played out beautiful...\n Robert Jordan is a television star. Robert Jor...\n Stanley Kubrick, a director who I hold in the ...\n As a gamer, I can't say I like this film. Fact...\n 1st watched 8/3/2003 - 2 out of 10(Dir-Brad Sy...\n I'm originally from Brazil... the sad thing ab...\n I went into Deathtrap expecting a well orchest...\n Basic structure of a story: Beginning, Middle,...\n Do not watch this movie, or.. If you are reall...\n The viewer leaves wondering why he bothered to...\n I watched the first episode and I found it to ...\n The dancing was probably the ONLY watchable th...\n This TV production of 1970 starring Susannah Y...\n This is another fantasy favorite from Ralph Ba...\n I have a severe problem with this show, severa...\n 'A comedy of biblical proportions!' Those mast...\n I enjoyed the feel of the opening few minutes,...\n It has been so many years since I saw this but...\n I have to admit that when first saw Madonna pe...\n How does a movie become a Biblical epic? Simpl...\n This film is in a dead tie with the original f...\n Really, really bad. How does a film this bad g...\n I saw mommy...well, she wasn't exactly kissing...\n An Avent-garde nightmarish, extremely low-budg...\n Edge of Madness is a tale about a woman in the...\n Delightful Disney film with Angela Lansbury in...\n One of the most charming and, for me at least,...\n After the success of Star Wars, there was a bo...\n I was amazed at the quality of this film, part...\n Incident on and off a Mountain Road is Don Cos...\n In the first 20 minutes, every cliche possible...\n Well, if you are one of those Katana's film-nu...\n If you like bad movies, this is the one to see...\n Student Seduction finds Saved By The Bell Alum...\n Some sciencey people go down in a cave for som...\n This film is a tapestry, a series of portraits...\n I understand that Paramount wanted to film thi...\n I actually like this movie even though I don't...\n Shazam was okay, but Hero High was my favorite...\n \"Valentine\" is another horror movie to add to ...\n Well, that's what this should have been called...\n \"Who Will Love My Children\" Saddest movie I ha...\n The performances rate better than the rating I...\n I meant that in a GOOD way, believe me. True t...\n This show came to Canada via PBS in the mid 90...\n It's not Citizen Kane, but it does deliver. Cl...\n Back in 1995, Barry Sonnenfeld directed a movi...\n I thought it was a pretty good movie and shoul...\n Infamous for being \"brought to you by the digi...\n I took this out arbitrarily from the library t...\n I was electrified when I first saw this in 198...\n I went to see this movie with my boyfriend las...\n \"Against All Flags\" is every bit the classic s...\n Last of the Johnny Weissmuller Tarzan films an...\n It seems that Salvatores couldn't decide what ...\n I love cartoons. They can show things that fil...\n This ultra-low budget kitchen-sink yawn is the...\n I've had never been disappointed by a Kurosawa...\n THE INVADERS IS A FAST MOVING SCI-FI THRILLER ...\n Alien Express is one of the worst movies I've ...\n What a master piece. To take the cold war conf...\n WARNING!! This review may contain spoilers. Th...\n ...but the actress playing the daughter just d...\n I saw the film for the first time at BBC on Ju...\n There is no possible reason I can fathom why t...\n This is an astonishingly bad action film. I'd ...\n end of the world looks like a good movie on th...\n I cannot understand the need to jump backwards...\n Yes i really found this film distasteful. <br ...\n Honestly, when I went to see this movie at the...\n Just watched it then. It is pretty damn awesom...\n Good lord! This movie needs to have a new clas...\n This movie won a special award at Cannes for i...\n USA's AZN TV purchased the rights to this film...\n The person making taffy in this movie was so r...\n I have begun to melt so I will make this revie...\n This is an important film. It challenges the v...\n this movie is one that belongs on the cutting ...\n The movie takes place during the year 1940 and...\n I saw \"El Mar\" yesterday and thought it to be ...\n This film is about a group of five friends who...\n Reese Witherspoon plays Dani, a young country ...\n An exquisite film. They just don't make them l...\n THE CAT O'NINE TAILS (Il Gatto a Nove Code) <b...\n Put simply, this mini-series was terrible. Let...\n Altman and Scorsese have twisted sex together ...\n Camp Blood III is a vast improvement on Camp B...\n Because of the depth of his character studies ...\n As you may know Norway is the most developed c...\n This show should be titled, \"When Bad Writing ...\n This movie has got to be the worse movie i hav...\n Now, Throw Momma from the Train was not a grea...\n Really? Is this necessary? How can somebody ma...\n This series is formulaic and boring. The episo...\n Obviously Raw Feed Video is smarter than all o...\n I work in an office on weekends, and there is ...\n This comedy has some tolerably funny stuff in ...\n It probably isn't fair that I have got to see ...\n This is the story of Australian commandos who ...\n Of all the actresses in film today, Kristin Sc...\n Family Guy is THE best show on TV. EVER. It ha...\n La Petit Tourette is a pretty funny South Park...\n The plot sounds vaguely interesting ... a scie...\n I don't skateboard because I think it's gay bu...\n This is one of the very few movies out there w...\n This is what we can do to each other. This is ...\n This was one of those films that got a ton of ...\n Finally we have before us a Category III movie...\n Happy 25th Birthday to Valley Girl! Great soun...\n Living in the Middle East (in Israel), I was e...\n I saw Forgiving the Franklins at a Paramount s...\n The 4th Pokemon movie made me cry when Celebi ...\n I viewed The Reader at Sugar, which is not an ...\n Warner Brothers social responsibility at its m...\n One of the most provocative films ever with ex...\n the people who came up with this are SICK AND ...\n Everything about this movie is awful.<br /><br...\n The movie starts out with three people on a pl...\n How do comments like the one that was the head...\n I'm studying Catalan, and was delighted to fin...\n Seriously, I absolutely love these old movies ...\n This miniseries is a reasonable sequel to the ...\n The wonderfully urbane Ronald Coleman is show-...\n Since I watched it for the first time, \"Piedra...\n This movie was a riot, it pokes fun of \"Madonn...\n Mikio Naruse's examination of the lives of thr...\n NOTHING in this movie is funny. I thought the ...\n Mobile Suit Gundam Wing is the Fourth series i...\n This is not a film to impress you with high bu...\n CONTAINS SPOILER With the possible exception o...\n Watching The Tenants has been a interesting ex...\n I just finished watching this movie and am dis...\n I was looking forward to seeing this movie, un...\n \"Enter the Fat Dragon\" is one of the funniest ...\n At two and a quarter hours this is a sometimes...\n Late one night on a desolate road, in an empty...\n Two years before he wrote and directed \"Arthur...\n The movie has started, the wheels spin, your c...\n I happened to watch this movie by chance some ...\n 'Shock Corridor (1963)' was my first film from...\n I have never seen the 1973, older highly rated...\n the worst movie i have ever seen i didn't even...\n Much like Orson Welles thirty years earlier,Mi...\n If you want to watch a film that is oddly shot...\n This movie (with the alternate title \"Martial ...\n While it may not be his most laugh-packed film...\n I was hoping that Pulp would be a interesting ...\n I first heard of Begotten when a girlfriend of...\n Flatliners left quite a noticeable impression ...\n A shaky hand-held camera was used, presumably ...\n I first saw this movie when it was released in...\n Along with virtually every Republic Picture ev...\n I gave this movie a rating of 1 because it is ...\n i can't believe people are giving bad reviews ...\n A new wrestling show paves way for the most fe...\n I saw this film first on my way home from Pari...\n So this guy goes into a psychiatrist's office ...\n Without a doubt, the WORST movie I have ever s...\n How the Grinch Stole Christmas was a wonderful...\n \"Midnight Clear\" has a great premise. A group ...\n Being a huge street fighter fan and thoroughly...\n I've read all the complimentary posts on this ...\n As powerful as the true story of Phoolan is, t...\n I am a usually a very generous voter on IMDb a...\n At the name of Pinter, every knee shall bow - ...\n Skip all the subjective \"this is a great film\"...\n Everyone has a first love, and though it is ha...\n This film opened to poor showings in the first...\n This is one of my favorite T.V shows of all ti...\n A couple of days ago I saw the awesome \"House ...\n I enjoyed the film and would suggest to anyone...\n This series gets 2 stars solely because it put...\n The first part, Che in Cuba, is about that por...\n Wow, what a cheesy movie this is! It starts of...\n This is one of t.v.'s greatest mini-series! It...\n I remember seeing the trailer for this movie w...\n This movie could have been 15 minutes long if ...\n I would have given it a one instead of a two, ...\n Thomas Vinterbergs \"De Største Helte\" is yet a...\n Those of the \"Instant Gratification\" era of ho...\n At the beginning of this film, which I found m...\n I have to admit, I wasn't expecting much going...\n Clint Eastwood scores big in this thriller fro...\n Dramatic ? Yes......Historically accurate ? No...\n The plot for a movie such of this is a giveawa...\n I watched this film last night, i though i wou...\n This was so bad, I want God to give me an extr...\n After getting hooked on the mini series, \"Nort...\n this movie was so gay like its a mom and son c...\n I know this movie isn't for everyone, and I wo...\n Despite its flaws, I enjoyed \"Cigarette Burns\"...\n Mindless dribble about the second coming of Ch...\n It is fitting that the title character in Sydn...\n Four porn stars romping through the Irish wood...\n I watched this hoping to find out something I ...\n All I could think while watching this movie wa...\n 28 years before 9/11, there was another 9/11 w...\n Only the chosen ones will appreciate the quali...\n Melissa Sagemiller,Wes Bentley,Eliza Dushku an...\n SNL is pretty funny but people who say this is...\n Imagine a film the complete opposite of Lawren...\n There are a few spoilers in this comment!!<br ...\n well, what can i say. WHAT THE F**K? There rea...\n I cry at a lot of movies. Call me sentimental....\n I think if they made ANY MONEY make a complete...\n For starters I have always been a fan of the B...\n Uzumaki has a very unique story and I will nev...\n If I were to rate this movie based solely on t...\n Its almost embarrassing to say I even saw this...\n David Aames is a rich good-looking guy who liv...\n Never Been Kissed gives Drew Barrymore the cha...\n I sort of liked this movie, not a good one, bu...\n I saw this movie, just now, not when it was re...\n Jerk hazer Mike(David Zelina playing this coll...\n Looks as if the Robocop writer has been wholes...\n I had high hopes for this production, being on...\n In reply to \"State of Confusion\" The dogs inju...\n I loved \"The Curse of Frankenstein\" so much th...\n When great director/actor combinations are tal...\n Apart from the fact that this film was made ( ...\n A movie that makes you want to throw yourself ...\n Made me wish my own happy birds could talk. Ti...\n I feel totally ripped off. Someone needs to re...\n The only reason to give this movie even a sing...\n So Angela has grown up and gotten therapy and ...\n This film (like Astaire's ROYAL WEDDING - whic...\n This is a top finnish film this year,although ...\n I really have to disagree with guy-yardley-ree...\n This has just been broadcast on BBC and I am a...\n I didn't read the book \"Scarlett\" and when I w...\n This proves just how awful the WB Network was ...\n I really like this movie. Bozz is an ultra-coo...\n While the main story is supposed to take place...\n I love the so-called \"blaxploitation\" films an...\n This movie is... horrible and wonderful at the...\n I'd love to see some tie-in between NightBreed...\n Warning: If the Coen Brothers or David Lynch d...\n This is one of Disney's top five animated feat...\n I'm glad they finally released it on DVD. I bo...\n i found the story to be just enough of a thril...\n I like Fulci films, i really do and not in som...\n \"Medusa: Dare to be Truthful\" is an outrageous...\n The plot is tight. The acting is flawless. The...\n Anatole Litvak directed the 1959 film, \"The Jo...\n The TV guide described the plot of SEVERED TIE...\n If you are going to make a movie from any book...\n This is a quirky heist/caper film, one that se...\n For the uninitiated, almost any Andy Milligan ...\n \"Pixote: A Lei do Mais Fraco\" deals with what ...\n Audiences today will probably watch a film lik...\n Bela Lugosi plays Dr. Lorenz who loves his wif...\n The last time I saw the movie I was around sev...\n One thing I have noticed about British horror ...\n I have not seen such a stupid,dumb movie since...\n If you have any sort of appreciation for chara...\n What this movie does well is combine action an...\n I still count \"Police Squad!\" as the absolute ...\n How many fricken' times do we have to see a sp...\n This is one of those unique horror films that ...\n In 60s Hong Kong, a man and woman move in the ...\n We really enjoyed Grey Owl: a simple tale well...\n Michael is probably too cutesy for most action...\n Bette Midler is again Divine! Raunchily humoro...\n If anyone at National Lampoon is reading this ...\n There were only two things that kept me intere...\n Most Hollywood movies fail to capture the full...\n Sadly, it's true. \"Legiunea sträinä\" exposes w...\n What a weekend. Two days ago I watched the fir...\n This is a comedy based on national stereotypes...\n My wife spotted this film on the aisle at a lo...\n This is the last film of Krzysztof Kieslowski ...\n In my opinion, this film has wonderful lightin...\n The beginning of this film is a little clunky ...\n MST 3000 should do this movie. It is the worst...\n How many reviews of this film will I have to w...\n i'll admit. i think Uma Thurman is the most be...\n Alright, before we review, I have to ask: why ...\n I've seen some crappy movies in my life, but t...\n This film was more effective in persuading me ...\n The frustrating thing about a movie like this,...\n Weak start, solid middle, fantastic finish. Th...\n this movie probably had a $750 budget, and sti...\n Jane Austen would definitely approve of this o...\n Vic (Richard Dreyfuss) is a mob boss, leaving ...\n So forgive the *really* lame game-play scene, ...\n As someone who used to spend hours driving aro...\n This is obviously aimed at the same market as ...\n How I Spend My Vacation puts closure to the te...\n Looking back at the career of Alfred Hitchcock...\n I can't believe how bad this \"film\" is. For st...\n It is not uncommon for a celebrity to be faced...\n The 1990s film with Anthony Hopkins and Debra ...\n A Walt Disney MICKEY MOUSE Cartoon.<br /><br /...\n This film is the most impressing turkish film ...\n This contains some spoiler information, but th...\n Is this supposed to be serious? I hope not. Th...\n This is an incredibly fun action/exploitation ...\n I'm a sucker for a good romance, but this one ...\n Sitting down to watch the 14th season of the B...\n Tim (Gary Daniels) wants desperately to break ...\n Charlie Wilson (Tom Hanks) is a hard-partying,...\n ... so what's in those missing 10 minutes that...\n It is hard to describe Bug in words, it is one...\n This is absolutely the worst comedy I have eve...\n Ever since the cinema-loving universe made acq...\n ...at least during its first half. If it had s...\n The most moving and truly eye opening document...\n Clint Tollinger arrives in a small town lookin...\n <br /><br />Emilio Estevez takes the wonderful...\n This film was an interesting take by Hollywood...\n Recently finally available in DVD (11/11/08), ...\n With documentary films, the question of realis...\n Not only was this the most expensive Canadian ...\n I was enticed into watching Shark Hunter by th...\n I can't describe the feeling when I got this c...\n In an era where nearly every great horror film...\n I am the parent of a special needs child and I...\n I saw this movie on VHS some time ago (27 Jan ...\n First of all, it is sheer joy to hear the lege...\n The acting was bad, and the plot, well i don't...\n When it comes to Paul Verhoeven and erotic thr...\n I couldn't wait to receive the DVD after heari...\n This is a bad B movie masquerading as a mockum...\n I can count (on one hand) the number of good m...\n Great. Another foreign film that thinks it's F...\n First, let me say that Notorious is an absolut...\n This first installment of Crispin Glover's per...\n This film is likely to be a real letdown unles...\n Well...there were some great, creamy-smooth fa...\n The social commentary was way overblown and th...\n I found this to be a watchable all be it very ...\n I couldn't stop watching this movie, though it...\n Despite John Travolta's statements in intervie...\n I usually can tolerate twisted movies, but thi...\n This movie shows me, that americans have no kn...\n Well...I like Patricia Kaas. She is a beautifu...\n Ugh, what can I say other than, ugh. I rented ...\n I've seen this movie twice on Transilvania Int...\n A ridiculous comedy given an arms-flailing dir...\n This may not be one of the best movies ever ma...\n One of the earlier reviews of this movie ends ...\n Four or five episodes of Johnnie Socko and his...\n I felt a great joy, after seeing this film, no...\n A charming movie enhanced by the musical and v...\n \"Such a Long Journey\" is a well crafted film, ...\n By 1952 Hollywood decided to remake the Al Jol...\n The genius that is Stephen Sondheim was never ...\n *WARNING* Spoilers ahead... The writers of thi...\n Broadcast News {dir. James L. Brooks, 1987} <b...\n this was one of the worst movies I've ever see...\n The movie starts off with Reeve (Ekin) and his...\n In 1967 I visited the Lake Elsinore glider-por...\n This film was the worst film I have ever viewe...\n This movie, even though it is over 70 years ol...\n Philippe Garrel makes us breathe the forgotten...\n Jacques Audiard's directorial debut See How Th...\n It was very refreshing to watch this beautiful...\n This film captures the true struggle with iden...\n I've never been huge on IMAX films. They're co...\n This movie will send chills down your spine, e...\n Recap: A lone swordsman, living in the desert ...\n Superb story of a dedicated young teacher who ...\n Set in the mid 1800's when the British is clea...\n I have to admit that I had low expectations fo...\n In this installment of the series, Edmund Blac...\n Tedium as only the French can do it. I checked...\n Loved today's show!!! It was a variety and not...\n Remember those old kung fu movies we used to w...\n This twisted comedy is well acted and directed...\n I have seen this movie a while back, after ord...\n I enjoyed Albert Pyun's \"Nemesis\" for its chee...\n Basically the first two Critters movie were al...\n This film is terrible. You don't really need t...\n Lorenzo Lamas stars as Jack `Solider` Kelly an...\n We see a body of dead girl in a morgue with th...\n The first ever fully synchronized sound cartoo...\n This is on my top list of all-time favourite f...\n The problem I find with this title is that I a...\n \"The Cobweb\" is an example of many examples of...\n When I learned of Sir Alec Guinness' death, th...\n Darr, although a copy of some Hollywood flick,...\n I will be short...This film is an embarrassmen...\n \"The College Girl Murders\" is my first acquain...\n Michael Keaton is \"Johnny Dangerously\" in this...\n I saw this in 1993 on a VHS tape but have been...\n If you don't mind subtitles, you like comedy a...\n Lackawanna Blues is a touching story about Nan...\n As the title suggests there is a philosophical...\n It figures this is a French film, LOL, with th...\n Back in August, '81 there was a country-ish bu...\n This movie is so good! I first seen it when i ...\n This was supposed to be set in the \"Bible Belt...\n First some background; I am English and have l...\n This may have been based on historical events,...\n I didn't enjoy this film. I thought the acting...\n Though I never like to be the sort of person w...\n The Lady in Cement is a veritable course on so...\n I thought this movie was a lot better than mos...\n I was up late flipping cable channels one nigh...\n This film is one to spend the short while, ent...\n Rose and the good Doctor find themselves in a ...\n I'd have to admit that the draw of this movie ...\n I love Henry James books and Washington Square...\n I was under assumption that this was the cat a...\n Please, spare me of these movies that teach us...\n Great movie when I saw it. Have to say one of ...\n Beyond the excellent direction,production,acti...\n I first learned of the Wendigo many years ago ...\n I saw this movie when Mystery Science Theater ...\n My companions were astounded to find that this...\n At least I was able to enjoy mocking the movie...\n Veteran British television director Alan Gibso...\n Did you ever think, like after watching a horr...\n I grew up in Baltimore, so I was exposed to th...\n OK I watched this movie. Someone needs to kick...\n Sometimes a movie is so bad it's kind of good....\n The fact that this cruddy series could elicit ...\n I think the reason for all the opinionated dia...\n The saving grace of this film is its humour. P...\n This movie has not aged well. Maybe it's just ...\n Twenty five years ago, I showed this film in s...\n Plants in an ancient Mayan pyramid structure k...\n The producers of this film should be sued for ...\n Begotten is, no doubt, someone's attempt at or...\n The Japanese \"Run Lola Run,\" his is one offbea...\n Wow, after trashing the disk of Timo Roses \"Ro...\n I raced to the library to check out this minis...\n I walk out of very few movie screenings and th...\n There's only one thing I'm going to say about ...\n I know it's crude, and I know that it isn't at...\n This film may have a questionable pedigree bec...\n I really wanted to like this movie - the locat...\n This has to be one of the most powerful messag...\n Diego Armando Maradona was, and still remains ...\n I'd never heard of this, then found out it's t...\n GZSZ is the longest running daily soap in Germ...\n Back in the dark days of 1990, the hoped-for H...\n I, having both read and watched Gone With The ...\n Titanic has to be one of my all-time favorite ...\n I really do not joke when i can honestly submi...\n On the surface, this is an above-average post-...\n I accidentally caught this in the middle flipp...\n Naming the absolutely most pathetic piece of c...\n I have seen this film at least 100 times and I...\n This movie has very good acting by virtually a...\n I've seen a few bad action movies in my days, ...\n This film follows the life of a great guitar p...\n This movie has everything a fantasy movie shou...\n I saw Ray when it first came out. Why? Partly,...\n Claudine was one of the very first movies that...\n This movie is one of my favourites. It is a ge...\n This person is a so-called entertainer who has...\n Alex Winter and Keanu Reeves return as the two...\n This is the most messed up entry on IMDb that ...\n Kudos to Baxley's DP for making this look like...\n Italians movie-makers love to rip off American...\n WOW. One of the greatest movies I have EVER - ...\n Fans of Euro-horror flicks - Portland's video/...\n \"Elvira, Mistress Of The Dark\" is a sort of \"H...\n This is what movies should aspire to. Funny wi...\n Saw this at the video store and thought I'd gi...\n THE WATERDANCE (1991) The main character of Th...\n this is an alright show to watch, its not the ...\n \"Paula, I may be a bitch, but I'll never be a ...\n This movie is unworthy of the Omen title. It i...\n I really enjoyed The Patriot. This movie had l...\n I should preface this by stating that I am a D...\n My son, an avid skateboarder, sat me down and ...\n Positively ridiculous film.<br /><br />If Dori...\n And believe me that's a pretty stunning accomp...\n A real classic, ten out of ten! Every actor is...\n I saw this film with a special screening of th...\n Revolt of the Zombies is BAD. There is nothing...\n Bugs life is a good film. But to me, it doesn'...\n According to Milan Kundera, a porcelain-cat ho...\n This version of the Charles Dickens novel feat...\n Despite the fact that he worked for the worst ...\n this is the worst film I've seen in a long lon...\n I saw this movie when it was broadcast on tele...\n While Bondarchuk was by no means a young man w...\n Watched Uzumaki last night and right away was ...\n This film should never have been made! It stin...\n Titanic directed by James Cameron presents a f...\n I only gave this ridiculously titled comedy ho...\n I always knew the day was coming. We all knew....\n Wow, this film had a huge impact on me, it mov...\n I loved This Movie. When I saw it on Febuary 3...\n Lets put it this way. I actually get this movi...\n True, there are many movies much worse then th...\n Ronald Reagan and a bunch of US soldiers in a ...\n After a meteorite lands in \"Boston\" (really so...\n 'Capital City' fans rejoice! This first season...\n Isabelle Huppert is a wonderful actor. The dir...\n I had the opportunity to see this film debut a...\n How can any of you call this propaganda a fami...\n If you like cars you will love this film!<br /...\n I am afraid it was a movie that you have to AC...\n Okay, enough. Every time I think I've seen a f...\n \"The Lion King\" is without a doubt my favorite...\n This film is a work of pure class from start t...\n Clint Howard, brother of more talented Ron, st...\n Sighthe stupid government once again attempte...\n Well, that was sure a waste of Dave McKean's t...\n A reasonable effort is summary for this film. ...\n This is an entertaining look at the Gospel as ...\n Everything Is Illuminated A young Jewish Ameri...\n I generally loved the Carry on movies but this...\n OK, this 'horror' film was meant to be a joke,...\n This is screamingly funny (well, except when B...\n After reading the novel which is about a one h...\n I thought the racism and prejudice against Car...\n Having not seen the films before (and not bein...\n Hey, I'm a fan of so-bad-so-good movies but th...\n I get teased all the time by family and friend...\n Over 21 the film version of the Ruth Gordon pl...\n This movie would receive a much higher vote fr...\n For anyone who has only seen Disney Production...\n **SPOILERS** Simple movie about simple people ...\n I grew up watching this series. I was about se...\n Diane Lane is beautiful and sexy, and Tuscany ...\n This is the biggest pile of crap I have ever w...\n Skip Mission: Galactica and watch the original...\n Doris Day never lets a bad script get her down...\n This a lovely and charming epic fantasy with l...\n Where do I start? The plot of the movie, which...\n This movie is to Halloween what the hilarious ...\n WHITE FIRE was recommended to me by a guy who ...\n I tried. I really, really tried to think of so...\n The main criticism of AT THE EARTH'S CORE is t...\n Mighty Morphin Power Rangers came out in 1993,...\n I saw this movie with my family and it was gre...\n Richard Tyler is a little boy who is scared of...\n After watching this movie on a boring Saturday...\n I got some free tickets via the Times to see t...\n This film is like a 1950-version of Ettore Sco...\n Typical Steven Seagal fare: that is, it's crap...\n As a history nut who is particularly intereste...\n (spoiler) it could be the one the worst movie ...\n Whoa, this is one of the WORST movies I have E...\n The original Road House was a classic cheesy 8...\n Just saw this at the Chicago Film Festival - a...\n Originally, the Spiders was planned as a four-...\n This is a good family show with a great cast o...\n Captain Corelli's Mandolin is no Oscar contend...\n Probably the first Portuguese film I have seen...\n I came to watch Guerrilla, part two of Steven ...\n After the debacle of the first Sleepaway Camp,...\n Some directors take 2 and a half hours to tell...\n If you're interested in learning about the 're...\n Nothing in this film interested me. I thought ...\n Martin Sheen, Michelle Phillips, Stuart Margol...\n After a fairly lengthy partially pixelated nud...\n I get the impression that I was watching a dif...\n No gore, no blood, no gratifying death scenes....\n I consider myself a huge horror movie fan. One...\n TV News producer, Jane Craig (Hunter) meets To...\n There are a whole lot of movies, primarily fro...\n Watched both parts twice. Enjoyed the story an...\n Going by the good words of my friends, I hired...\n a fine romantic comedy. errol flynn shows what...\n Last year we were treated to two movies about ...\n I honestly can't believe what passes for enter...\n Michelle Pfeiffer is ideally cast as the frust...\n this is the worst movie ive ever seen. And i h...\n When Samantha Eggar (as Phyllis Dietrickson) a...\n Fantastic film! Wow - this is really a treat. ...\n This is by far the most vapid, idiotic, insane...\n Possibly the best John Travolta role ever. Sat...\n In New York, the family man dentist Alan Johns...\n Korea's answer to \"I Know What You Did Last Su...\n What a complete piece of trash. Plot notwithst...\n All these reviewers are spot on. I've seen man...\n I watched \"Deadly Voyage\" because David Suchet...\n A lot of actors have a multitude of good movie...\n Disney-like entertainment with some un-Disney-...\n In the early to mid 1970's, Clifford Irving pr...\n This film is a mediocre, low-budget flick. I'v...\n Take the secret agent / James Bond craze of th...\n North Africa in the 1930's. To a small Arab to...\n This is a horrible movie. All three stories ar...\n Unhinged follows the typical plot of the early...\n Short synopsis <br /><br />This film opens wit...\n There was absolutely nothing in this film that...\n I was never in the past interested in this pla...\n Although I have rarely flown myself, I am keen...\n Perhaps more than many films, this one is not ...\n How they got Al Pacino to play in this movie i...\n At times when I watch this movie i start to th...\n This long winded film turns out to be less abo...\n There are often badly-matched couples (in the ...\n The production year says it all. The movie is ...\n a great movie, with a rather unclear political...\n Robert Taylor and Stewart Granger switch the g...\n Dennis Patrick plays a man who accidentally ki...\n 'The Vampire Bat' is definitely of interest, b...\n what happened to Mathew Modine's career??? i c...\n Final Score (an average of various classic cin...\n This good-guy-vs-the-evil-tyrant story, set in...\n Can't say this wasn't made well. At a recent f...\n I must say THIS IS THE BEST MOVIE I HAVE EVER ...\n Sure, the history in this movie was \"Hollywood...\n The other reviewer was completely correct abou...\n The Good Earth is not a great film by any mean...\n This is another one of those 'humans vs insect...\n \"One shot, one kill, no exceptions.\" A must se...\n The Concorde ... Airport '79 starts in Washing...\n I thought \"What's New Scooby-Doo\" was pretty b...\n When you watch a Seagal movie, you expect good...\n I am surprised that so many viewers didn't fin...\n I must say that this has to be the best docume...\n I saw this movie for the first time on a sick ...\n For animation buffs it's a must, but even gene...\n The most beautiful film. If one is looking for...\n Both Disney and Bill Paxton did a fine job in ...\n This movie is so bad it's almost good. Bad sto...\n This film is about a party put together by the...\n They really can't get stupider than this film ...\n Following his role in the fine caper SEVEN THI...\n Two years after 'Airplane!' took off, Jim Abra...\n Awful, awful, awful.<br /><br />A condescendin...\n The story is somewhat stilted, what with the m...\n This is my FAVORITE ALL time movie. It used to...\n Another fabulous movie from Catherine Breillat...\n If they gave out awards for the most depraved ...\n This movie was extremely boring. It should lea...\n <br /><br />This movie is full of references. ...\n Shiner, directed by Christian Calson, centers ...\n One of the most pleasant surprises of this ear...\n I admit - I was lured to this one from the hyp...\n I've seen this movie at theater when it first ...\n This is a confused and incoherent mess of inte...\n It would be quite easy to make this movie soun...\n 12 year old Arnald Hillerman accidentally kill...\n sorry, sorry but sorry. nice, very nice produc...\n A few years ago I saw this remake of the sixti...\n Funny thing. Charlie Sheen, Donald Sutherland,...\n This is a terrible movie that only gets worse ...\n It really was that bad. On a par with the (mer...\n I'm giving it a three instead of the lower num...\n This movie is hilarious! I watched it with my ...\n This (allegedly) based-on-a-true story TV movi...\n The films of the Science Fiction Channel ( Sci...\n I was very unimpressed with Cinderella 2 and J...\n I was lucky enough to see a test screening of ...\n I'm sorry, but \"Star Wars Episode 1\" did not d...\n Was a college acting class exercise filmed and...\n I enjoyed the acting in this movie. Except for...\n I never saw the original 1954 version with Jud...\n Poor old Robert Taylor. Other than THE FEDS, n...\n There are two points I need to make clear righ...\n I just saw this movie last night, and after re...\n The Matador is a strange film. Its main charac...\n **SPOILERS** I rented \"Tesis\" (or \"Thesis\" in ...\n This movie does have some great noirish/neorea...\n The other lowest-rating reviewers have summed ...\n Adventures in Dinosaur City, though a creative...\n Interesting premise; interestingly worked out;...\n ... Bad at being intentionally bad...<br /><br...\n I have just written a comment to \"ACES HIGH\" (...\n this is the only movie i have ever walked out ...\n If the writer/director is reading this (and I ...\n This film lingered and lingered at a small mov...\n OK, I am a sucker. I loved it. I had no expect...\n Don't see this movie! It's... repulsive! The s...\n Ah, how refreshing to see a vision of 18th cen...\n This film is bad. It's filled with glaring plo...\n This movie provided NOTHING new or worthwhile....\n This has to be one of the funniest movies I've...\n I had seen this film many years ago and it had...\n I enjoyed this film far more than anything had...\n Thursday June 9, 6:45pm Broadway Performance H...\n This film show peoples in the middle of the ho...\n Why does the poster & artwork say \"Clubbed is ...\n I loved this movie! It's truly bizarre, extrem...\n I've spent a year deployed in Iraq, and amongs...\n I think it's time John Rambo move on with his ...\n This movie pops up now and again on the ABC in...\n What can have been on Irene Dunne's mind when ...\n <br /><br />As a Harold Lloyd fan, i agree wit...\n Excellent plot within a plot within a plot. Sh...\n Whoever wrote the screenplay for this movie ob...\n This movie has everything typical horror movie...\n If you \"been there\" and \"done that\" you will a...\n As many of the other comments I have read have...\n The war at home is a splendid television serie...\n Pertty Kiran comes back to home after completi...\n This movie is a good example of the extreme la...\n The reason this is such a bad movie is because...\n I love Morgan Freeman. Paz Vega is an attracti...\n i love this TV series so much. it contains ani...\n I have been looking for this movie for so many...\n For one used to the comedies on television now...\n Bear in mind, any film (let alone documentary)...\n I was wandering through my local library, brow...\n I really enjoy this particular production of \"...\n I can only believe that Garson Kanin must have...\n i have lost count as to how many times i have ...\n If a movie can't hold your interest in the fir...\n Army private Gene Kelly, who's also a talented...\n This was one of the few Norwegian movies I act...\n **Possible Spoilers**\\tFrom Dreamworks and dir...\n A very good movie about anti-semitism near the...\n If this guy can make a movie, then I sure as h...\n I have to say that this was not very exciting ...\n This movie is about 3 stories put together rev...\n An Epic Story of Hope constrained by budget an...\n This film came recommended as a good action fi...\n This is so bad, so very very bad. The acting i...\n ***MAY CONTAIN SPOILERS****<br /><br />I was s...\n It's difficult to find anything worth of prais...\n Whoever wrote the \"nice\" post about this must ...\n The Underground Comedy Movie, is possibly the ...\n Being a huge fan of Bergman I had to search li...\n For all those bewildered by the length and pac...\n I was looking forward to Kathryn Bigelow's mov...\n i read the book \"7 years in Tibet\" from Heinri...\n I had never seen Richard Thomas play a bad guy...\n I as a Christian am outraged after seeing just...\n People, please don't bother to watch this movi...\n The only possible way to enjoy this flick is t...\n I never seem to write a review on IMDb unless ...\n This movie is a cringe-fest of bad acting and ...\n In trying to keep up with the hipness of youth...\n This rubber monsters failed trying to be cool,...\n I saw this episode of Masterpiece Theatre and ...\n This movie is so daring it doesn't attempt to ...\n A sweet and totally charming film, Shall We Da...\n ...don't watch it. Here's a hint: tune in to t...\n Saw it at UCSB's reel loud festival and was *s...\n Billed as a kind of sequel to The Full Monty, ...\n A question immediately arises in this extremel...\n i just saw this movie on TNT and let me tell y...\n OK, if you are a fan of Mystery Science Theate...\n First of all, don't go into Revolver expecting...\n No cinematic achievements here, however that's...\n I, like many this evening braved the frigid wi...\n Up And Coming was a very positive sitcom, whic...\n When robot hordes start attacking major cities...\n Hello everyone, This is my first time posting ...\n For me this is a good series. I am kind of dis...\n I have probably seen this movie over fifty tim...\n The writers probably had no experience in the ...\n What can I say that hasn't been said about \"Th...\n The Ladies Man is a funny movie. There's not m...\n Well, sorry for the mistake on the one line su...\n Telemundo should definitely consider making a ...\n While the prominent and over use of the play-l...\n OK, first a correction to the tag posted on th...\n When The Spirits Within was released, all you ...\n This is what Disney Channel shows to kids who ...\n Who knew? Dowdy Queen Victoria, the plump Mona...\n During the Sci-Fi TZ marathon of January 31, 1...\n I wrote spoiler alert, but there's not really ...\n I believe John Houston's \"The Dead\" is a true ...\n Contrary to what those who hate Christianity, ...\n Put aside a Dr. House repeat that I had missed...\n Simply put, this is a simplistic and one dimen...\n This film is about Xavier, an Erasmus exchange...\n It started out slow after an excellent animate...\n 'Bloody Birthday' is an odd and, at times, hum...\n This tiresome, plodding Las Vegas casino heist...\n I could write a big enough comment on any one ...\n The concept of the legal gray area in Love Cri...\n Everyone has their choice for \"worst movie the...\n Like some of the other reviewers have alluded ...\n This movie certainly deserves to be placed wit...\n You know you're watching softcore with the wro...\n This Book-based movie is truly awful, and a bi...\n Do not rent this movie. I ended up buying the ...\n On March 17, 1974, a man is found dead in the ...\n Like \"My Sassy Girl\", this movie is based on a...\n Please, If you're thinking about renting this ...\n If Daphne Du Maurier had set REBECCA in 1950s ...\n Yes, at times \"Unconditional Love\" overwhelms ...\n Pleasant, diverting and charming. The best par...\n As a kid, this movie scared me green. As an ad...\n Critics need to review what they class as a qu...\n This is a great show, and will make you cry, t...\n The only redeeming scene in this movie is when...\n This noir may not be the best remembered film ...\n Wow, this is very unusual in one regard: usual...\n This film is a true and historical film. It is...\n Given Christopher Nolan's string of successful...\n I'm an atheist. To me history and truth mean a...\n Evil Behind You, was created for a specific pu...\n The only problem with Married to the Mob is th...\n \"Fraidy Cat\", the 4th of these cartoons, is a ...\n Albert Pyun presents his vision of the lost ci...\n Why oh why do people take good material and fe...\n When watching little man , you'll spend its ru...\n This is the first of \"The Complete Dramatic Wo...\n I saw this little magnum opus for the first ti...\n You can't take this movie seriously.....the pl...\n \"Ideas are dangerous.\" Comment by one intervie...\n I watched about the first 30 - 40 minutes of t...\n \"White Noise\" had potential to be one of the m...\n Sadly, every single person I ask about this se...\n What a perfect example of \"Less Is More...\" Ku...\n <br /><br />`The Last Frontier' is a superior ...\n I watched the first 10 minutes of this show I ...\n This is a great movie but there could be more ...\n This Academy Award winning short film can rank...\n A Jane Smiley novel, loosely based on Shakespe...\n What a crap that movie is. The script is simpl...\n Cinderella takes me back, when I was a little ...\n If you are a fan of Altman's large ensemble ca...\n hello boys and girls... this isn't your regula...\n I just discovered this obscure '70s horror mov...\n Why spend a moment slogging through this awkwa...\n I got to see this on the plane to NZ last week...\n This movie is now my gauge against which all o...\n I don't think a movie like this would be relea...\n This film was abysmal. and not in the good way...\n The film opens with Bill Coles (Melvyn Douglas...\n I love a cute heartfelt movie with a happy end...\n However closely the movie is to the comics, it...\n Sean, you know I think that you are absolutely...\n America's next top model is a good show, it he...\n I'm sure I saw FUTURE KILL for the same reason...\n This anime seriously rocked my socks. When the...\n I first saw the live musical at the Denver Cen...\n Actually, I am not narrating the main plot in ...\n I rented this movie primarily because it had M...\n Begotten.The magic.The Terror.The slight bored...\n Very rarely does Denzil Washington make a bad ...\n Mendez and Marichal have provided us with a se...\n I was one of many that expected to see a glori...\n I rented this movie because it sounded pretty ...\n When I first heard of this movie, I was mildly...\n The supposed writer and director Mr.Dhawan has...\n This hodge-podge adapted from a Gore Vidal nov...\n Okay, so I'm Singaporean and I would like to s...\n \"The Kennel Murder Case\" starts off at a run a...\n Well well, I had seen a lot of reviews on this...\n I purchased this DVD recently and I was totall...\n Horrible acting with the worst special f/x I'v...\n The film deals with universal themes, mentioni...\n I must say, this movie has given me a dual per...\n Yes, this gets the full ten stars. It's plain ...\n This show is really great. It's smart.It's fun...\n As in Amelie, recent French films seem to be t...\n Nothing dull about this movie, which is held t...\n What a film. Quite possibly the best I've ever...\n I first saw this film as a young boy and recen...\n This film was slow but tedious and the acting ...\n This is the best Chinese movie I have ever see...\n Jane Porter's former love interest Harry Holt(...\n with this ABC family attempt of the hit blockb...\n I have seen this movie many times and each tim...\n I can't imagine anyone would ever, in a millio...\n Very few so called \"remakes\" can be as good as...\n This movie is a must for all people that enjoy...\n An expedition led by hunky Captain Storm (Mark...\n A dreamy, stunningly atmospheric film takes pl...\n Does anyone else think that \"Reba\" is basicall...\n ''Ranma ½\" is my favorite anime by Rumiko Taka...\n Blue ribbon banners, stars and stripes forever...\n I used to watch this too at junior school in P...\n This film has renewed my interest in French ci...\n This 2004 Oscar nominee is a very short b/w fi...\n Now, for all of the cinematographical buffs ou...\n I obtained this little piece of scuzz on the V...\n As I sat watching this episode I kept glancing...\n This is a really good flick with awesome humor...\n What would it be like to be accused of being a...\n This is the magnum opus from the Swedish king ...\n This is a treat for fans of Z-grade movies. He...\n Even my five year old was bored.<br /><br />Ve...\n The movie is great for Venezuelan tourism, bir...\n It is a tricky thing to play a queen. On the o...\n Hynkel, dictator of Tomania, is a spoiled chil...\n I saw this film when it was originally release...\n I don't normally write reviews, in fact, I nev...\n Oh Mr. Carell! How far you've fallen! After a ...\n If you want to know the real story of the Wend...\n This movie kinda let me down. It seemed a lot ...\n \"The House That Dripped Blood\" is one of the b...\n I went to this movie expecting a concise movie...\n This movie is terrible. A true hockey fan woul...\n I do not even want to call this thing a film -...\n Tears of Kali is an original yet flawed horror...\n My age: 13<br /><br />Keats, played by Damon W...\n Brides are dying at the altar and their corpse...\n I normally finish every movie or book I start,...\n I think \"Anyway...\" is a kick-ass movie. Reall...\n If you are looking for a sonic-boom-special-ef...\n Multiply named and strangely casted, \"One Dark...\n I enjoyed the movie very much, emotionally, in...\n I was just looking up \" who will love my child...\n It must be assumed that those who praised this...\n Most war films made in the US during WWII were...\n One woman, by herself in a house for 45-minute...\n I was a sophomore in college when this movie c...\n I'm going to spend as much time on this review...\n I've noticed over the years that when a rock s...\n This movie is one of the funniest I have seen ...\n A great story, based on a true story about a y...\n It's the one film I almost walked out of, and ...\n This is probably my favourite TV show ever. I ...\n The End of Suburbia neatly collects many of th...\n This movie is watchable, but nothing special. ...\n Normally, I wouldn't even stoop to viewing tra...\n Despite the high ratings given to this film by...\n Changi has a delightfully fresh script, acted ...\n if my grandma did films they would probably do...\n This film has some nice special effects, teari...\n Dear Friends and Family,<br /><br />I guess if...\n I only voted excellent because this film took ...\n Without reiterating what was said above about ...\n This film offers many delights and surprises. ...\n I realize that living in the Western Plains of...\n Peter Hunt started out as a very gifted film e...\n This is a delightful, they-don't-make-em-like-...\n 'Thriller' remains the greatest of the pop mus...\n I consider Saboteur as Hitchcock's first \"Amer...\n *What I Like About SPOILERS* Teenager Holly Ty...\n Hey now, I can't claim to have seen all of the...\n This is a wonderfully goofy example of a self ...\n This is just a great, fun, lovely film. It cap...\n I... No words. No words can describe this. I w...\n I read in the papers that W.Snipes was broke s...\n I recently bought this movie on DVD at a disco...\n I first saw a track from this DVD at a hifi sh...\n Why do I constantly do this to myself? I mean,...\n \"Strangers on a Train\" was one of those film c...\n Even though there are no new episodes, and it ...\n I've been watching a lot of cartoon or animate...\n Pink Flamingos: A Representation of Society's ...\n The Dekalog 5 may be considered a violent accu...\n Hello - I normally love movies. I'm 19, I have...\n Dr. Markoff is a mad scientist who is experime...\n I'm a true fan of the original Cracker series,...\n This was the worst MTV Movie Awards EVER!!! I ...\n One of the worst movies I've ever seen with Ro...\n Conrad Radzoff(Ferdy Mayne), a hammy cult icon...\n At first glance this gives the impression that...\n Going for something far away from the delibera...\n This movie was quite a pleasant surprise. I ha...\n Final Solution is a powerful christian film th...\n A pretty average movie but a brave one from Ms...\n The Ealing Comedies constitute their own speci...\n Good grief.. to think I've seen it all.. Danny...\n Loosely intended as a satire of D.W. Griffith'...\n A below average looking video game is turned i...\n More suspenseful, more subtle, much, much more...\n I could barely keep myself from either nodding...\n Another too bad the lowest they can go here is...\n This is a great story and was just the beginni...\n Some people have stated that as of the 11th se...\n Very bad film. Very, very, very bad film. It's...\n I share the same opinion regarding Underworld ...\n Stargate SG-1 follows and expands upon the Egy...\n Apparently in early 2005, SciFi Channel threat...\n This all looked quite promising. An up-and-com...\n Wang Bianlian is an old street performer who i...\n First off, the lead, Brad Dourif is a KOOK. If...\n Paul Verhoeven's De Vierde Man (The Fourth Man...\n This film is so bad it simply defies reality. ...\n Let me tell you something about this movie. I ...\n A 10 year old kid fed up with his parents argu...\n Would somebody please explain why anybody woul...\n This is the best made-for-TV movie of all-time...\n This was yet another big screen outing for a U...\n I saw Insomniac's Nightmare not to long ago fo...\n I would like to know who conned the producers ...\n \"The Golden Child\" was Eddie Murphy's first fi...\n Melissa Joan Hart shines! This show is amazing...\n There are probably more people afraid of the d...\n Instead of watching the recycled history of \"P...\n I watched the Canadian videotape of this movie...\n yeah cheap shot i know, but this movie is a gr...\n This has to be the worst, and I mean worst bik...\n This one is just like the 6th movie. The movie...\n Am I the only one to think that this is a bad ...\n This is one of the classic TWILIGHT ZONE episo...\n Yes, the cameras were in the right place at th...\n No matter what anyone tells you, there is a me...\n I wasn't expecting a whole lot when I rented t...\n Sentimental and naive but undeniably affecting...\n Oh, those sneaky Italians. It's not the first ...\n Talk about false advertising! What was this do...\n This is a bit of a puzzle for a lot of the art...\n It's a rare sensation to come across a film so...\n I rented this film from Blockbust because of t...\n Wait till you watch this one.... I mean even a...\n I got hold of a discount copy of this. I had s...\n Have you ever wished that you could escape you...\n I wished I'd taped MEN IN WHITE so I could wat...\n The name Uwe Boll is automatically linked to b...\n this movie is the worst EVER!!! sorry but this...\n This movie is wonderful.<br /><br />I was 'enc...\n A great and truly independent film that hit mo...\n Have you ever sat watching a movie when 20 or ...\n This was not a good film. Poorly scripted and ...\n Definitely worth watching.<br /><br />Ten diff...\n I don't want to spoil the movie for anyone, bu...\n This is exactly the sort of Saturday matinee s...\n This is by far one of the best movies I have s...\n Not all movies should have that predictable en...\n First, I should say that I've seen the '39 ver...\n I've seen this movie countes times now and sti...\n My God, what an incredible movie it is! Remind...\n As a European, the movie is a nice throwback t...\n Recreation of 1950's (London) Soho and the up-...\n This is a short, crudely animated series by Da...\n this movie was fantastic great movie all throu...\n I was babysitting a family of three small chil...\n One thing about Hollywood, someone has a succe...\n I guess only a selected number of audience mem...\n Once again, there's dastardly government agenc...\n Guys, what can I tell you? I'm Bulgarian. I ca...\n just watched this \"film\" and it actually made ...\n I have been reading comments on IMDb for some ...\n Enjoyable in spite of Leslie Howard's performa...\n The use of the term 'comedy' with relation to ...\n Just bought the VHS on this film for two bucks...\n The most enjoyable parts of this film were the...\n An uninteresting addition to the stalk 'n slas...\n Hidden Frontier has been talked about and repo...\n I cannot believe that I wasted five hours of m...\n Damn, I thought I'd seen some bad westerns. Ca...\n ANOTHER great performance by Kiefer Sutherland...\n I wont take too much time here, just wanted to...\n This movie changes its way a third of the way ...\n Such a pretentious and lame attempt to hipness...\n I am so impressed, really. I expected cheesy g...\n The Evil is about a big house where a bad spir...\n I should've realised it was a sign of things t...\n I've felt that Rupert Grint has a lot of promi...\n This is better then the first. The movie opens...\n Gone with the wind is one of the most popular ...\n If an auteur gives himself 2 credits before th...\n A spin off comedy talk show from the creators ...\n The Scots excel at storytelling. The tradition...\n This vicious little film is horrendous. My low...\n Don't drink the cool-aid.<br /><br />This is a...\n ****Contains Spoilers****<br /><br />As a fan ...\n At first glance I expected this film to be cra...\n The '70s were a great time for horror movies. ...\n Ignore the comment before mine. The show is co...\n I saw this film via one of the actors' agents,...\n Surprisingly good film made in the wake of the...\n Bill Paxton has taken the true story of the 19...\n Two old men sitting on a park bench . I don`t ...\n A very delightful bit of filmwork that should ...\n This was by far the worst movie I have ever se...\n \"The King of Queens\" could be divided into two...\n Five years after she teamed up with James Cagn...\n In Brooklyn a century ago, the rivalry between...\n ROLL is a wonderful little film. Toby Malone p...\n Although I can see the potentially redeeming q...\n Director and co-writer Alejandro Amenabar didn...\n Count Laszlo (Ralph Fiennes) has just been tra...\n The peculiar charisma of Martin Kosleck brings...\n Two dysfunctional brothers (Philip Seymour Hof...\n After having read two or three negative review...\n And what is its genre? The backstage expose st...\n A very positive message for our youth is shown...\n This show was a really good one in many ways, ...\n this movie was just plain dumb i do not think ...\n A fashion designer trips over a cat and falls ...\n Just finished watching The Groove Tube which I...\n kite runner is undoubtedly one of the most ama...\n I see that the majority of the comments so far...\n From a modern sensibility, it's sometimes hard...\n \"Houseboat Horror\" is often regarded as the wo...\n I recommend that movie viewers if in the New Y...\n Fay Grim is the continuation of a story begun ...\n \"CIA Codename:Alexa\" is an absolute horrible r...\n A young Korean artist lives in Amsterdam. She ...\n For the attention of Chuck Davis and Emefy: I ...\n The movie was fantastic. If your a fan of Bams...\n As with many sequels, this one just doesn't ha...\n The Color Purple is a masterpiece. It displays...\n 7 if you're a kid- 6 if you claim to be an adu...\n Unfortunately, this movie is absolutely terrib...\n I saw this movie primarily to see Brooke Burke...\n The inspiration for the \"Naked Gun\" movies cas...\n What could have been a good story was destroye...\n On Halloween a town is terrorized by a lunatic...\n This show reminds me of an episode of \"The Sim...\n If you have never heard of Jane Austen, seen t...\n It's sometimes difficult to watch such self-av...\n Thinking that it could only get better was the...\n Though the movie may have been \"true\" to Lewis...\n I never really started watching the show until...\n From the upper shelf of great Classic Books, c...\n SPOILERS<br /><br />I love movies. I've seen a...\n Jack Lemmon and Walter Matthau began and endin...\n My mom and I, rented this movie. I mean, we lo...\n Divorced lawyer Rick Magruder (Branagh) stumbl...\n Although I have definitely read this particula...\n Now, I realize that most people on here trash ...\n This old stinker makes the Flash Gordon movies...\n Caddyshack 2 has a dreadful reputation, due on...\n My sisters and my cousin(female) forced me to ...\n I don't like this film, but then I didn't thin...\n When I saw this trailer on TV I was surprised....\n Would that more romantic comedies were as deft...\n After reading tons of good reviews about this ...\n This show comes up with interesting locations ...\n I saw 'I Smell the Dead' -- sorry, 'I SELL the...\n I wish Depardieu had been able to finish his b...\n It is a good film for kids who love dogs. It r...\n According to the director this movie was popul...\n Anyone who knows me even remotely can tell you...\n I had never heard of Dead Man's Bounty when I ...\n From a bare description of THE TOLL GATE's maj...\n The story of Macbeth was one of the most succe...\n Beginning with its long opening shot of seemin...\n One of the worst movies ever made. Let's start...\n Good: Engaging cinematic firefights, great pre...\n _Waterdance_ explores a wide variety of aspect...\n The story was well plotted and interesting by ...\n I'll be honest. I got this movie so I could ma...\n I remember hearing about this movie and how it...\n While this is a faithful adaptation, it is muc...\n Really, I liked it. The premise was good, the ...\n What exactly do people expect when they watch ...\n This film is about two horse traders who agree...\n This movie is about Tyrannus, a gladiator who ...\n This is one of the best films ever made. It is...\n How is it possible that a movie this bad can b...\n I saw this film in a London cinema in 1975 and...\n This is an \"odysessy through time\" via compute...\n This is probably one of the worst \"wanna be a ...\n This movie is just great... It starts out real...\n *****Classic ****Excellent ***Good **Fair *Tra...\n This is one of the worst movies i have seen to...\n Every motion picture Bette Davis stars in is w...\n It took me a while to find this movie since th...\n I'm not sure whether i like this film or not. ...\n A never ending frenzy of clever visual ironies...\n The characters are cliched and predictable, wi...\n After the SuperFriends and Scooby Doo left the...\n How sad it is when a film as wonderful as \"Jur...\n This wonderful film is a love story, and shows...\n Almost the entire film takes place in a public...\n I saw this film when it was released to theate...\n I think this cartoon is one of the worst carto...\n This is one of three 80's movies that I can th...\n First off, I saw another reviewer said this mo...\n This film was positively the worst film I have...\n Ordinarily, I love these \"Stranger Within\" thr...\n Sam Elliot is brilliant as a tough San Francis...\n First of all, I ain't American or Middle-Easte...\n Green Street, as it was called in the UK, or H...\n After erasing my thoughts nearly twenty-seven ...\n When people nowadays hear of a 1940s drama, th...\n imagination must of slipped Jim Wynorski mind ...\n This is a good film. This is very funny. Yet a...\n <br /><br />This movie is best enjoyed amidst ...\n I thought How The Grinch Stole Christmas was a...\n I will just start with some quotes from other ...\n The setting and actors make this television mo...\n I'm not American, but Meatballs still really h...\n I´ve been able to see this great movie at the ...\n Reasons to watch the movie:<br /><br />1) Bo D...\n One missed call, another Asian horror based on...\n Yes, definitely better than my viewing of Deat...\n From the director of movies 'Last Seduction' a...\n I first saw this movie on MST3K. And although ...\n I was always curious about this film because i...\n A majority of exclusively made-for-video low-b...\n The story is airtight from the beginning until...\n How 'Thursday' managed to avoid attention rema...\n This is by far one of the better made movies a...\n Can Scarcely Imagine a Better Movie Than This<...\n -SPOILERS------------ I am a fan of 60's-70's ...\n The acting is pretty cheesy, but for the peopl...\n It is terrible! It is like somebody gave a kid...\n Edith Nesbitt's best book has been adapted int...\n Yes, you guessed it. Another movie where ident...\n I've enjoyed this movie ever since I was a kid...\n I'm sorry, I had high hopes for this movie. Un...\n This movie is retarded a cheap movie that trie...\n I was quite pleased to find this movie in the ...\n Emotionally insecure Tom Russo (Asbestos Felt)...\n On this 4th of July weekend it's heartening to...\n First off...with names like Fred Olen Ray, Bri...\n This is a pretty good documentary. I'm not a s...\n This is a really well made movie. Sumitra Bhav...\n I was not making big assumptions on the fact t...\n The United States of Leland was an amazing mov...\n Admittedly, I know nothing about baseball, I'm...\n After a good start, it turned out to be the wo...\n The over-riding problem with this film is that...\n In 1974, the teenager Martha Moxley (Maggie Gr...\n I have NEVER EVER seen such a bad movie before...\n when i read other comment,i decided to watch t...\n This is a classic B type movie that you'd rath...\n A ridiculous movie, a terrible editing job, wo...\n This is very much not the sort of movie for wh...\n Woody Harrelson and Wesley Snipes team up as h...\n There's a \"Third Man\" look to the shadowy B&W ...\n This is my favourite movie of all time. And I ...\n Well we definitely did see and I and many othe...\n Wow! This is the movie that should be shown on...\n Seriously, what is THIS? Hooper has made such ...\n SPOILER Wolfcreek meets Texas Chainsaw Massacr...\n let's value it.<br /><br />entertainment: a tr...\n What a trip down memory lane.<br /><br />Do no...\n I watched a movie called Dark Talon, dated 197...\n Kenneth Branagh attempts to turn William Shaks...\n Disappointing film with Walter Pidgeon as a hu...\n THE NIGHT LISTENER (2006) **1/2 Robin Williams...\n *some possible spoilers*<br /><br />Of course ...\n If only Eddie Murphy were born 10 years later....\n The author sets out on a \"journey of discovery...\n The late 80's saw an inexplicable rash of supe...\n Nothing can prepare you for another lousy bimb...\n it was the worst ending i have ever seen if so...\n Honestly, Mr. Thalluri.... if you do a drama m...\n It's a tale that could have taken place anywhe...\n With nothing better to do I decided to check o...\n Really, REALLY... What pleases audience (ameri...\n I wasn't expecting a lot from a film directed ...\n I suspect there are several cuts of this doco ...\n A must see by all - if you have to borrow your...\n There are some Stallone movies I like, but thi...\n Not to be confused with the Madonna film \"The ...\n The Wind and the Lion is well written and supe...\n \"Private Practice\" is being spun off the fairl...\n I really am shocked to see the number of revie...\n After too many bad memories, I took to skippin...\n Badland is one of the worst movies I ever seen...\n I think the Croc Hunter is a pretty cool guy! ...\n THIS IS BY FAR MY MOST FAVOURITE MOVIE IN THE ...\n Secret Sunshine marks the return of director L...\n You loose 100 IQ points just for tuning in. Th...\n \"The Aristocats\" is classic Disney at it's bes...\n This documentary is absolutely fantastic. I wa...\n This was the second Cinemascope spectacle that...\n I saw this film back at the 2005 Palm Springs ...\n In \"Die Nibelungen: Siegfried\", Siegfried was ...\n This is the kind of movie that wants to be goo...\n I saw his movie in Dallas, Texas when it came ...\n So many literary adaptations are disappointmen...\n I gave this a 10 because it's the best film of...\n I normally am a glutton for poor movies, but t...\n This is a reunion, a team, and a great episode...\n There is so much bad to say about this movie a...\n I hated the way Ms. Perez portrayed Puerto Ric...\n The film really challenges your notions of ide...\n Another movie from Swedish hillbilly country, ...\n This mystery/psychological-thriller is I think...\n The theme is controversial and the depiction o...\n Son of the Mask is a terrible movie. I don't l...\n <br /><br />Back in his youth, the old man had...\n Unbelievable. I never saw something like that....\n I really have no idea how to comment on this m...\n Didn't the writer for this movie see the other...\n This Film Was One Of The Worst Films I Have Ev...\n Contain spoilers! These guys are total scam, t...\n There was nothing else on tv yesterday afterno...\n Tony Curtis and Skip Homier both are wearing b...\n You may be interested to know that BARRICADE w...\n Ms Aparna Sen, the maker of Mr & Mrs Iyer, dir...\n The bipolarity of this movie is maddening. One...\n I own this movie. I bought it for $3.99 at a f...\n The famous closeup of their breakfast meat, cr...\n A typical Clausen film, but then again not typ...\n Since I'd seen the other three, I figured I mi...\n This really is the worst film I have ever seen...\n The original story had all the ingredients to ...\n Several young Iranian women dress as boys and ...\n Sarah Silverman is like a totally manic Zooey ...\n -surprisingly enjoyable movie <br /><br />-A g...\n Another try, another miss. France may be doome...\n \"The Couch Trip\" is one of those silly comedie...\n Bad, a lot a crap. It copied simone, also a ba...\n I discovered this movie on IFC, and I thought ...\n I am very disappointed with \"K-911.\" The origi...\n The obsession of 'signifie' and 'signifiant' i...\n This is the single greatest movie I have ever ...\n I basically picked up this movie because I had...\n I do not recommend this movie , because it's i...\n There's nothing particularly unique or interes...\n Such pain! Pain in the shape that it had promi...\n Oh yes, Sakura Killers is a goofy, horrible ni...\n Okay, I'll say it. This movie made me laugh so...\n This movie is dated in so many ways, it's sens...\n Several story lines are interwoven here around...\n I am sick and tired of all these little weenie...\n As someone who was staggered at the incredible...\n Let me get the bad out of the way first, James...\n It is sad that some find this film worth watch...\n Zombi 3 starts as a group of heavily armed men...\n Very sadly, I can relate to this movie, as I'm...\n Sorry guys, I've already written my opinion of...\n This thought long lost flick sometimes comes a...\n Riding Giants is an amazing movie. It really s...\n While I'm normally a big fan of John Turturro'...\n As i watched \"Wirey Spindell\" i couldnt but la...\n This film is a jolt of punk rock fun, from sta...\n This is a really strange film--and that is NOT...\n Highly politically charged drama that, while b...\n Atlantis is probally the best Disney movie tha...\n What a wonderful film, filled with eccentric, ...\n From the weeks and weeks of promotion for this...\n This is the very first Three Stooges short wit...\n With all this stuff going down at the moment w...\n are you crazy or what? this movie has talent w...\n Nacho Vigalondo is very famous in Spain. He is...\n Since I'm from Norway (one of the top ten (or ...\n There have been many film and TV productions o...\n This movie was everything but boring. It deals...\n I heard and read many praising things about \"M...\n This movie took my breath away at some points,...\n This game requires stealth, smart, and a stead...\n Chris Rock stars in this remake of Warren Beat...\n This soap is worse than bad: it's poisonous. O...\n When i got this movie free from my job, along ...\n I was very impressed with with this film which...\n This is one of the worst movies I've seen in a...\n If the directors/producers/publicists wish to ...\n Charles McDougall's resume includes directing ...\n Because it came from HBO and based on the IMDb...\n Cardiff, Wales. A bunch of 5 mates are deeply ...\n At least for a half hour a week. I haven't bee...\n Detective Sergent Vince De Carlo (James Luisi)...\n I too saw this movie when it first came out. I...\n This film would have put the typical Hollywood...\n The show was amazing and very professional. Ma...\n Most American remakes of European films are pr...\n This is an enjoyable project, that is not a fi...\n The fun that was present in the other 'movies'...\n Sometimes Hallmark can get it right - like The...\n Being relatively young, I didn't know how bad ...\n This is a very difficult movie, and it's almos...\n I saw this at a screening last night too. I wa...\n An executive, very successful in his professio...\n A sprawling, overambitious, plotless comedy th...\n I watched this movie last night, and let me sa...\n Ah yet another Seagal movie.In no less than a ...\n I watched this series on TV in 1990 and absolu...\n The film is nothing else than an exposition of...\n The movie was a long awaited release, which wh...\n What I loved about the on-screen adaptation of...\n Superhero movies pretty much always suck, and ...\n This is a great film. From reading other revie...\n <br /><br />According to reviewers, the year i...\n Greetings again from the darkness. This one wi...\n For some reason, in the late 70's and early 80...\n At first, I hadn't read the novel so far and I...\n Slaughter High is intrinsically your emblemati...\n It's very very funny. You know, just like a co...\n ... I am left with little choice but to employ...\n I've seen many of Guy Maddin's films, and like...\n The plot, character development, and gags in t...\n Being a giant monster fan, me seeing \"Yeti\" wa...\n Any movie that portrays the hard-working respo...\n Being a science fiction fan from my early chil...\n This is one of the best movies I have seen in ...\n For me, reviewing movies is an extension of my...\n Sam Mraovich should never be allowed to touch ...\n Since this cartoon was made in the old days, F...\n Recap: Simon leads a little team of special ag...\n A slasher flick, made in the early 80's, has a...\n With stunning cinematography and a thread of K...\n Once a month, I invite a few friends over for ...\n Rob Roy is and underrated epic of passion and ...\n Excellent political thriller, played much quie...\n This is a low budget Roger Corman horror/creat...\n Great little ground-breaking movie (in 1955) a...\n John Thaw is a an excellent actor. I have to a...\n Watched this months ago on Netflix Instant and...\n Most definitely the saddest movie I have ever ...\n The performances in this movie were fantastic....\n What gives this movie its personality is the k...\n Right this moment I am watching this movie on ...\n Theodore Rex is possibly the greatest cinemati...\n Depressing black BLACK comedy about a woman (M...\n This movie has some of the best dialogue ever ...\n We don't know if Darlene loves all three gentl...\n Neil Simon had a knack for dialog and nowhere ...\n I saw this at the screening at GenCon in Indy....\n S.S. Van Dine must have been a shrewd business...\n This could have been a rather entertaining fil...\n The creators of this movie must have sat down ...\n I expected FAME to be an uplifting film but it...\n The plot here is simple. Country boy, Lem (Far...\n The basic plot in this movie isn't bad. A lady...\n My husband and I both loved this film. At firs...\n This is an excellent documentary about Amália ...\n Priyadarshan's HERA PHERI was a nice situation...\n I love Monte Carlo and thoroughly enjoyed this...\n Los Angeles physician Tom Reed (Vincent Ventre...\n This movie is a definitive 5. I finally caught...\n I'm a huge lover of really bad B movies. And I...\n Now I myself had previously seen a few episode...\n This film started off really tense when a poor...\n First off, this movie was a wild ride the whol...\n well-made documentary about a sailing race, sa...\n Some years back, this film had been scheduled ...\n Two adventurous teenagers, best friends, take ...\n This trash version of `Romeo and Juliet' passe...\n I just loved watching it though and having fun...\n Like for most women this movie is the ultimate...\n Actually, this flick, made in 1999, has pretty...\n I first saw this on the big screen with my gir...\n The first time I watched this movie I was ten ...\n I read somewhere that Hollywood should concent...\n For years Madonna has tried to prove not only ...\n I saw this movie when I was about 8-years-old ...\n This film is absolutely horrific. One of the w...\n Hey Yall! The best drama every is now on Gospe...\n With the amount of actors they have working on...\n Deathtrap gives you a twist at every turn, eve...\n I've noticed that a lot of people who post on ...\n Title: Opera (1987) Director: Dario Argento Ca...\n Undying is a very good game which brings some ...\n You play as B.J. Blazkowicz, a US secret agent...\n The fluttering of butterfly wings in the Atlan...\n This was truly a great movie. I loved Dennis Q...\n I love Julian Sands and will at least attempt ...\n Most of the films I really like are art-house ...\n \"Death Wish 3\" brings back Charles Bronson as ...\n After reading both _River_God_ and _The_Sevent...\n This is one of those Tweety and Sylvester cart...\n If it were possible, I would have given this s...\n \"Stealing Time\" actually dates back to 2001 wh...\n <br /><br />This movie is só incredibly unfunn...\n For a while when I was in-between jobs I had a...\n First of all, let me make it clear. This movie...\n Full Moon High (1981) 3 of 5 Dir: Larry Cohen ...\n I'll admit that I've never seen \"Waiting for G...\n One of the previous reviewers wrote that there...\n This movie i have been dying to see. Well it t...\n This movie leaves the intellectual mind thinki...\n How unfortunate, yet also fortunate, that two ...\n Sexy murderess Tiffany (Jennifer Tilly) still ...\n A demon, from a tree, removes itself in the fo...\n It is important to realise that Eisenstein was...\n This Swedish splatter movie tries to parody/im...\n I really enjoyed this movie and I usually don'...\n That's what one of the girls said at the end.<...\n {Possible spoilers coming up... you've been fo...\n Sure, you get to see some boobies, but if that...\n Atlantis: The Lost Empire has some of the best...\n \"Nuovomondo (2006)\" (shown in the U.S. as \"The...\n I LOVE Jack's jokes like 'The cliché is...' or...\n Swoon focuses on Leopold and Loeb's homosexual...\n I absolutely loved every minute of this film. ...\n Again, like many other TV Shows, a certain act...\n This is yet another pseudo-intellectual \"let's...\n Amazing acting, music. A simple and clear plot...\n Great Balls of Fire is the movie you show to s...\n This film was great.<br /><br />The plot was p...\n I am from Sweden and i have just seen this mov...\n OK - I ADORE this film...I will credit this mo...\n All I can say is, if you don't fall in love wi...\n where would one start a review of the film Sni...\n Two sisters, Su-mi (IM Soo-jung) and Su-yeon (...\n This is the most cliche ridden and worst roman...\n Was flipping around the TV and HBO was showing...\n My, how the mighty have fallen. Kim Basinger i...\n Midnight Madness is a movie that is unfortunat...\n The point of Wolfe's original novel -- indeed ...\n All the bare chested women in the world couldn...\n I was looking forward to seeing Bruce Willis i...\n Is it a murder mystery? Is it a police procedu...\n An unusual, revisionist western, well worth wa...\n Committed stars (Heather Graham) along with (C...\n I wasn't expecting much of this film- a fun li...\n A well put together entry in the serial killer...\n I picked up this movie because it caught my ey...\n It may be the remake of 1987 Autumn's Tale aft...\n Having low expectations going in, the opening ...\n This is definatley one of the best stand-up sh...\n I watched this movie once and might watch it a...\n I saw the 10p.m. showing and I must say that t...\n It takes a while to get adjusted to the sound ...\n Galaxy Express 999 (Ginga tetsudô Three-Nine)....\n What an awful show. Science Fiction fans seem ...\n Worst movie ever made!!! Please see the Real m...\n It's the single unfunniest thing I ever watche...\n Actually, I never bought into the metal was sa...\n Spoilers abound. You have been warned.<br /><b...\n I saw this series when I was a kid and loved t...\n I will leave it to my bettors, uhh, betters he...\n Recap: According to legend, the Valkyrie Brunh...\n When the folks at Kino Video assembled their f...\n first, someone mentioned here that because thi...\n Okay, let me start off by saying that, on the ...\n It hasn't even been two years since I first sa...\n Jeez, only in the 70's... Antonio Margheriti b...\n This is the worst hindi film I have ever seen....\n First of all, I firmly believe that Norwegian ...\n The TV announcer who introduced this late one ...\n [CONTAINS SPOILERS!!!]<br /><br /> Garfield an...\n The most bizarre of the cinematic sub-genres i...\n This might be the poorest example of amateur p...\n The cast really helps make this a pleasant sur...\n *SPOILERS* Four men, Ed (Jon Voight), Lewis (B...\n Darius Goes West is an amazing documentary abo...\n Island of Death is not really a good movie, by...\n I wish I would have read more reviews and more...\n I absolutely LOVED this movie when I was a kid...\n Violence whether real or not always has an imp...\n Unfortunately, this has been showing on Star M...\n I could tell this would be a bad one from the ...\n I really enjoyed this movie as a young kid. At...\n I rated Basic instinct 2 high, yet that movie ...\n To summerize this movie: nice for TV but too s...\n Such a highly-anticipated remake of a cherishe...\n This is a low budget stop motion monster movie...\n Melvyn Douglas and Joan Blondell co-star in \"T...\n I remember when this was in theaters, reviews ...\n In this day and age of incredible special movi...\n I have to say that this movie was really quite...\n WHO'S GOT THE GOLD? is (unfortunately) the las...\n I generally love these 1930 mystery/police Cha...\n You have to see this. I could not stop laughin...\n There's something wonderful about a \"revenge\" ...\n Probably the worst Dolph film ever. There's no...\n Witchcraft/Witchery/La Casa 4/ and whatever el...\n <br /><br />Charlie Kauffman has made weird me...\n Born in 1946 I was about eight years old when ...\n WWE's last PPV of 2006, proved to be a hit wit...\n Personally, I think Kevin Spacey is one of the...\n The good news for IMDb is that this movie was ...\n I saw this dull waste of time on HBO's Comedy ...\n All those who criticize The Sopranos for its s...\n I had no expectations other than to be enterta...\n This film has made e mad. I believe the origin...\n Many people have commented that this movie was...\n This \"movie\" and I say this lightly, is nothin...\n This movie is poorly written, hard-to-follow, ...\n I realize that bringing a novel to the big scr...\n Saboteur is a 1942 film, partly aimed at getti...\n I can't believe I am so angry after seeing thi...\n Wow! Where to start?<br /><br />This adaptatio...\n I was looking forward to seeing Amanda Peet in...\n When you actually find a video game to be scar...\n I actually saw this movie at a cinema. At the ...\n I'm a Black man living in a predominantly Blac...\n I don't even know where to begin on this one. ...\n Having seen the uncut version, I thought this ...\n I'll keep this one quite short. I believe that...\n Blond main character, always believes in every...\n My family watches this movie over and over. Ev...\n In case you're wondering the buffoonish Loren ...\n The first official release of World Wrestling ...\n Somerset Maugham's characters are brought to l...\n All in all, don't expect much and you won't be...\n Of the thousands of movies I've seen so far, t...\n For connoisseurs of bad movies, Galaxina is a ...\n This movie was by far the best ever... I think...\n This movie was pretty much a waste of an hour ...\n I caught this on the dish last night. I liked ...\n The film was okay, quite entertaining. The cas...\n I honestly didn't think at first that this mov...\n This Hitchcock movie bears little similarity t...\n This has got to be one of the worst movies I'v...\n I'm a Christian, and I have watched pretty of ...\n I've described this film as surprising... this...\n Animated shorts just don't get much better tha...\n I took my 19 year old daughter with me to see ...\n This movie is really BAD, there is nothing app...\n I grew up watching Full House as a child. I st...\n I loved this movie. It is a very simple plot a...\n This version is likely available at your local...\n \"Holes\" is my all-time favorite movie! So far ...\n Deranged and graphically gory Japanese film ab...\n Hey now, yours truly, TheatreX, found this whi...\n Hick Trek is clearly a film that is envious of...\n I just have to say, this is one of my favorite...\n Not a bad concept.I just wish they had taken i...\n Dirty Harry has to track down a rape victim wh...\n I checked this movie out based on a favorable ...\n >>> Great News there is a BBC DVD release sche...\n This is possibly the worst movie i've ever see...\n All of the great horror movies of the 70's, 80...\n Mel Brooks has really outdone himself on this ...\n A film by Almodovar- sends a tingle down my sp...\n I LOVE this movie. and Disney channel is ridic...\n I hate guns and have never murdered anyone, bu...\n I had a chance to see a screening of this movi...\n This film looks great, and that's about where ...\n This is easily one of the worst movies I've se...\n Revenge on us the viewing public perhaps. I sa...\n THE QUICKIE (1 outta 5 stars)<br /><br />Prett...\n I don't know how this movie received so many p...\n I truly despair for womankind when they discus...\n Although I do not recommend this film, neither...\n This film is absolute cinematic genius. It has...\n I hated this film. Simply put, this film is so...\n as a retired USAF MSG (aircraft maint. spec), ...\n Some may think Imaginary Heroes is a movie exa...\n I saw this in the summer of 1990. I'm still an...\n When Sam Peckinpah's superlative THE WILD BUNC...\n Let me begin by saying that this remade versio...\n I hope this isn't a portent of things to come....\n Daniel Percival's \"Dirty War\", a BBC productio...\n One of the those \"coming of age\" films that sh...\n I bought this thing used at a video game store...\n What can I say after I say the one line summar...\n Before Stan Laurel became the smaller half of ...\n This plot had more holes in it than an OJ Simp...\n I usually really like Lawrence and being in Au...\n The creative team that brought us Police Squad...\n Peter Falk shines as 90 year old Morris Appleb...\n What a despairing film. Dress actors in furry ...\n This su*k! Why do they have to make movies tha...\n This is a movie that will leave you thinking, ...\n As many reviewers here have noted, the film ve...\n I knew the premise of this film, and obviously...\n For the longest time, I liked this movie bette...\n Some gorehound-friends recommended \"Live Feed\"...\n Blackwater Valley Exorcism is a movie about a ...\n ..Oh wait, I can! This movie is not for the ty...\n In another of the dreadful horror films I seem...\n Batman and Superman. Iconic. The better part o...\n Add pure humor + quick and unique sentences + ...\n Many days after seeing Conceiving Ada, I am st...\n How did this film get into the Berlin Film Fes...\n I made a special effort to see this movie and ...\n This movie does an excellent job of taking us ...\n Amateur camera work aside, I thought this movi...\n I vowed a long time ago to NEVER, EVER watch a...\n All Risto Jarva's films are worth of seeing. S...\n What is this?! Is it a comedy, a horror movie ...\n I just saw this cartoon for the first time and...\n AALCC informs us that 14-year-olds can be pret...\n American playwright Howard W. Campbell, Jr. (p...\n I first saw Jake Gyllenhaal in Jarhead (2005) ...\n This horror tale takes place in the Namib Dese...\n This movie just stunk. I know that some people...\n This movie was a waste of the celluloid it was...\n One of the worst movies I've ever seen!!! Abso...\n This is surely one of the worst films ever mad...\n Jared Diamond made a point in the first episod...\n Although others have commented that this video...\n French horror cinema has seen something of a r...\n Jim Belushi is having a mid life crisis, nothi...\n This movie was terrible. It is not something t...\n Dean Cain, the one time Super-Man, plays Max H...\n \"Comanche Moon\" had everything going for it. F...\n Keenan Ivory Wayans is probably one of the wor...\n This was a pretty decent movie. This movie is ...\n shakespeare's plays have a way of transcending...\n I have some great memories watching \"Robin of ...\n gone with the wind and scarlett are two differ...\n This is one of my favorite films of all time. ...\n This movie is a picture perfect action/drama/a...\n Isabelle Huppert is a wonderful actor. The dir...\n Well, EYEboy, I must say that it pleases me to...\n Duckman was a show that used to be on during t...\n Though predictable and contrived, not a bad mo...\n This was terrible, mean-spirited, and full of ...\n Ok, so it's an adult movie. But it really is v...\n As myself and my other half are big fans of tr...\n The interaction between Portman and Sarandon w...\n I'm not a big fan of musicals, but I was alway...\n This movie wasn't too funny. It wasn't too hor...\n This movie is just plain dumb.<br /><br />From...\n I just recently watched this 1954 movie starri...\n Alice Dodgson,a New York doctor gets her licen...\n Daphne Zuniga is the only light that shines in...\n Bathebo, you big dope.<br /><br />This is the ...\n When I tell people that I review movies as a h...\n This film centers on four criminals, locked aw...\n Dark Harvest is a very low budget production m...\n As a Czech I am very pleased when I read these...\n I rented this DVD for two reasons. A cast of g...\n Ah, here it is! A movie, which is said by peop...\n Your first clue that this is a cheesy movie is...\n If John Thaw had never played \"Morse\", \"Kavana...\n So many people have taken shots at Platoon and...\n Lisa Grant (Adrienne Barbeau) is a real estate...\n Michael Jackson is not very popular in USA any...\n Red spectacles<br /><br />I loved Avalon, I th...\n I don't know who could find fault with a simpl...\n Yes it was a little low budget, but this movie...\n On the scale of 1 to 10, I gave this a 4. I th...\n Renting this direct-to-video film, I was not e...\n I never read the book. Now I don't really want...\n \"Shinobi\" is one of those movies that thinks t...\n The teasers for Tree of Palme try to pass it o...\n I've read comments that you shouldn't watch th...\n Near the closing stages of Baby Mama, one of t...\n This was really a very bad movie. I am a huge ...\n The only thing it has to offer is the interest...\n I have to admit I have always found it difficu...\n I have not seen this movie! At least not in it...\n \"Hot Millions\" is a delightful comedy that is ...\n A confusing, senseless script with plot holes ...\n Jack Palance,(John Witting), was usually a bad...\n I've been wanting to see this movie for a very...\n Bad Movie - saw it at the TIFF and the movie g...\n oh man, where to even begin.....<br /><br />dr...\n My first full Heston movie. The movie that eve...\n I rented this thinking it would be pretty good...\n Here's an excellent Barbara Stanwyck double bi...\n This has to be one of the most beautifully mor...\n I haven't read the source, Richard Brooks' nov...\n I am insulted and angry over the idea that a s...\n The history of TV to film adaptations are litt...\n I can appreciate satire that goes against my o...\n Nicole Kidman is a wonderful actress and here ...\n The atmosphere in this show is great. There's ...\n NBC should be ashamed. I wouldn't allow my chi...\n An extremely powerful film that certainly isn'...\n \"Die Sieger\" was highly recommended to be one ...\n Virgil Manoven is an old man who lives alone i...\n Ed Gein, one of the most famous serial killers...\n I actually belong to the demographic Zoey 101 ...\n While Boris(Aleksey Batalov)is off to fight in...\n a friend of mine bought this (very cheaply) an...\n John Carpenter's The Thing is hands down the b...\n Had a bad day? Dog bit the mailman? Car wouldn...\n I wanted to like this film, and certainly ther...\n By 1976 the western was an exhausted genre and...\n Horrible movie. This movie beat out revenge of...\n For those who like their murder mysteries busy...\n \"Best in Show\" is a often hilarious mockumenta...\n OK ... The end of this may be something of a l...\n This is how I interpreted the movie: First thi...\n Let's eliminate any discussion about the use o...\n First,I'll give my rating for the series overa...\n I don't know how or why this film has a meager...\n This show was a landmark in American comedy as...\n I loved this film almost as much as the origio...\n I saw FAREWELL TO HARRY at the Plaza Theatre w...\n Preston Waters is off to a bad summer. Besides...\n Cleopatra (the delicious Monica Bellucci) is c...\n I've seen some very terrible horror movies in ...\n I don't normally go out of my way to watch rom...\n You can do a lot with a little cash. Blair Wit...\n \"Classe tous risques\" feels like the granddadd...\n All the world said that the film Tashan would ...\n Good actors, good director, well acted, well d...\n \"Silverlake Life\" is a documentary and it was ...\n This movie was horrible and corny. James Agee ...\n A town in Japan is being taken over by a horri...\n A Cryptozoologist captures a mythical chupacab...\n Best animated movie ever made. This film explo...\n Yakitate! Ja-pan (translated as Fresh Baked! J...\n Movies seem to fall into two categories: films...\n Well, What can I say, other than these people ...\n More exciting than the Wesley Snipes film, and...\n What we have here is a compelling piece of low...\n If at all possible, try to view all five of th...\n ...but i expected better from Caroline Munro. ...\n I didn't know Willem Dafoe was so hard up for ...\n With a well thought out cast, this movie was a...\n If Bob Ludlum was to see this mini series, he ...\n *Contains spoilers due to me having to describ...\n This is a cheapy biography of a star of the bl...\n Andrew McCarthy played the role of an atheist ...\n Standard procedure for Swedish movies today se...\n Odd slasher movie from Producer Charles Band. ...\n This is the kind of film one initially selects...\n As a movie this barely rates a 4 but for movie...\n Kudos to Fawcett to taking on roles that, at t...\n This is a wonderful movie in a lot of ways. Ev...\n ...I cannot believe I was hooked on this show ...\n If movies where virtual reality characters com...\n **1/2 Elisha Cuthbert, Chad Michael Murray, Br...\n Christopher Nolan's first directorial effort, ...\n This is a very interesting project which could...\n At the end of the movie i still don't know whe...\n For those that were interested in knowing how ...\n I thought that One Dark Night was great! It de...\n I saw UZUMAKI about a year ago and was mesmeri...\n Almost certainly the best Three Stooges short ...\n Please do not blame Korea for this bad movie. ...\n Directed by Michael Curtiz, Four Daughters is ...\n That's right, you heard me. I am a huge fan of...\n Well,<br /><br />First of all, as many reviewe...\n This movie is very important because suggested...\n This is one of the funniest movies i've ever s...\n At first glance this documentary/fiction/carto...\n Three girls, the youngest descendents of the G...\n Robert Lansing plays a scientist experimenting...\n A beautifully photographed and paced short fil...\n Although this movie (and I use the term loosel...\n Although the movie was only so so the closed c...\n One of the most macabre, depressing, yet eye-o...\n Was this a comedy or was it a drama? I begin t...\n I've heard a lot about Porno Holocaust and its...\n All budding filmmakers should watch this movie...\n A disappointing film.<br /><br />The story est...\n this is without a doubt the worst most idiotic...\n Picture the fugly annoying goth kids from coll...\n weird.this is a TV movie,yet the rating on the...\n It is projected that between 2000 and 2020, 68...\n I rarely shut a movie off after the first 10 m...\n This reboot is like a processed McDonald's mea...\n There is nothing wrong with showing an old man...\n Yuck! And again I say...YUCK! The original ver...\n The only thing romantic about this movie is th...\n Italy produced a lot of really great and origi...\n This is an Arnold movie. Now that you know tha...\n Dolph Lundgren is back! Detention marks Dolphs...\n A horror picture set ultimately to parody but ...\n I loved it. Others have revealed spoilers, but...\n After the lush, inspiring aerial shot in fast ...\n I sat through almost one episode of this serie...\n The quintessential \"let's get ready for summer...\n Great subject matter, director, and cast someh...\n I will give it a 3 just because it showed hist...\n When I was a little girl (and my dad owned a v...\n Have no illusions, this IS a morality story. G...\n This film should have been only 10 minutes. I ...\n A man in blackface lands in a spaceship and me...\n OK me and a friend rented this a few days ago ...\n I saw this film at the London Premiere, and I ...\n Best Years of Our Lives is a film that slipped...\n The story was disjointed, the acting was not o...\n The premise of this film is the only thing wor...\n Steven Rea plays a forensic scientist thrust o...\n In 1692 Salem, a devious child's lies about a ...\n The only complaint I have about this adaptatio...\n One of the reviewers here wrote: \"Good acting,...\n Maybe some people may consider this a slow mov...\n Keep away from this one. The worst thing is th...\n I was not expecting the powerful filmmaking ex...\n The plot is simple: an American couple is in v...\n Two city guys are driving through Hicksville U...\n Too much stock footage (almost one third of th...\n OMG this is one of the worst films iv ever see...\n Watching this little movie is a sheer delight ...\n The Lone Ranger & Tonto set out to bring to ju...\n With actors like Depardieu and Richard it is r...\n I have not yet decided whether this will repla...\n I hated this movie. It was absolutely horrible...\n This is the worst movie I have ever seen. The ...\n You know that feeling of hilarity you get when...\n Bad acting, bad lighting, bad plot!! This had ...\n Strange but acceptable mob comedy that has an ...\n I saw this movie a few years ago, and man I ne...\n I was interested in the title and description ...\n Imagine a GILLIGAN'S ISLAND set in the African...\n I just want to say that I am so glad somebody ...\n This is definitely an appropriate update for t...\n After becoming completely addicted to Six Feet...\n It's hard to imagine that \"The Battle of Elder...\n \"One of Hung's better early efforts. The humor...\n There have been many movies about people retur...\n I'm also a SF buff, among other genres, and I ...\n I have seen \"Miracles Still Happen\" now at lea...\n Unconditional Love is one of the best movies I...\n this movie had more holes than a piece of swis...\n The following \"review\" is one from the wrong s...\n This film deserves a 10 for its brilliant port...\n This was my first look at this short-lived Bri...\n This is truly one from the \"Golden Age\" of Hol...\n There was a Bugs Bunny cartoon titled \"Baby Bu...\n This is one of the best Fred Astaire-Ginger Ro...\n Okay, so I don't understand why people are get...\n Note to self- just because a film is foreign, ...\n Recently shown on cable tv the movie opens wit...\n Possibly the worst movie I ever saw. The perso...\n This movie is an idiotic attempt at some kind ...\n All Grown up had a lot to live up to and there...\n A Chinese scholar who criticizes harshly the a...\n I would put this at the top of my list of film...\n <br /><br />I have seen this movie many times....\n After the lead actress of the opera is killed ...\n This is an attempt, by both author Edgar Rice ...\n This movie had a great ensemble of adult actor...\n I saw \"Mystery Men\" on my birthday in 1999 whi...\n After seeing this routine by John Leguizamo, I...\n The sopranos was probably the last best show t...\n The audience sat in silence through almost the...\n This movie is bad. I saw the rated and the unr...\n The best thing about this movie was, uh, well,...\n I happened to catch this on community TV a few...\n Back to the roots with \"like it is in heaven\" ...\n The Night Listener is probably not one of Will...\n This was an awful movie! Not for the subject m...\n 2/3 of this movie is recycled footage of the p...\n I have seen some pretty bad movies, and this i...\n I recently saw this at the 2009 Palm Springs I...\n I have to admit that I stuck this one out thin...\n Ignore everyone else's comments for this movie...\n I went to see this by myself first to make sur...\n Rented this one by mistake thinking it was ano...\n First of all I need to say that I'm Portuguese...\n This is a film that every child should see bef...\n In a movie that follows a struggling actor, pl...\n Totally forgettable. Specially because of the ...\n This 1950's howler is so bad it's unintentiona...\n During an eight-year stretch of the 1980s when...\n \"Kalifornia\" is one of my all-time favourite m...\n The only reason \"The Norliss Tapes\" deserves A...\n 1st watched 2/16/2002 - 4 out of 10(Dir-Arne G...\n I had never read much about (or even seen stil...\n In order to pull off a job like this caper in ...\n Honestly, people who gave this movie a ten wou...\n The season finale sent mix messages, I felt fe...\n I first saw this film on cable in the 80's and...\n Low-budget murder mystery about a Public Defen...\n It's not a brilliant idea to watch Hundstage i...\n This is a snuff movie. I'm shocked it is even ...\n I recently saw the Broadway revival of \"Blithe...\n I really enjoyed this movie. The script is fre...\n If you want to have a great time then this is ...\n My mother told me not to go to see \"Kadosh\" --...\n I have never read the book, but had always hea...\n An update of the skits and jokes you would hav...\n Steven Seagal appears to be sleepwalking throu...\n A very close and sharp discription of the bubb...\n This film was absolutely BRILLIANT!! Every per...\n I've heard about this documentary for so long ...\n Absolute garbage. The reason that this is so t...\n Oh dear. This sequel has a mirror, this time, ...\n Awesomely improbable and foolish potboiler tha...\n This James bond game is the best bond game i h...\n This movie is scary at times, perhaps no more ...\n If you've seen this movie, you've been to Puer...\n I really can't say anything bad *or* good abou...\n One of the more interesting films I've seen. L...\n I haven't been a fan of Madonna for quite some...\n I wouldn't go so far as to not recommend this ...\n My first opinions on this movie were of course...\n An absorbing (although repetitive and rather d...\n Musings: Pure delight from beginning to end. N...\n The first half of this movie is a pure delight...\n This is one of the worst pieces of cinema I ha...\n I know the people and I did some of the animat...\n I really hoped for the best with this one, but...\n The most interesting thing about Miryang (Secr...\n I love Movies that take you into them. A movie...\n I went to the movie as a Sneak Preview in Aust...\n I watched this movie when it was released and ...\n Anne (Natalie Portman) tells us about how much...\n What a horrible movie. I cannot believe i wast...\n The film is a gross misrepresentation of Ortho...\n A half-hearted attempt to bring Elvis Presley ...\n The Matador is a witty, dark humored and suspe...\n in his descriptions of CAA, platinum card lunc...\n This was a television show that I watched duri...\n Reed Hadley makes a better foppish Don Diego t...\n Another brilliant portrayal by Kiefer Sutherla...\n I had never heard of this film until I came ac...\n I found my tape of this long forgotten 'show'....\n I must say that I wasn't impressed at all, pro...\n I had high hopes for it when I heard that it w...\n There is a serious scene in this movie. A scen...\n If vampire tales are your cup of blood, then t...\n Thank goodness for the Coen Brothers. Their su...\n You're Dead is an indescribably awful attempt ...\n The incomparable Laura Gemser appeared briefly...\n After seeing this movie, I came to the realiza...\n Absolute grabber of a movie, and given its age...\n Is it a coincidence that Orca was made two yea...\n Scary Movie 2 was a grave disappointment. Simp...\n Random Hearts snuck up on me. Criticized for t...\n - Contains miner spoilers - <br /><br />I have...\n Ed Wood rides again. The fact that this movie ...\n Leave it to Braik to put on a good show. Final...\n There is not much more I can say about this mo...\n SWEET SIXTEEN (1983) **/***** 86 minutes Direc...\n I seen this movie when it came out. I thought ...\n I'm no horror movie buff, but my wife's nieces...\n i think south park is hilarious, and i have no...\n What a complete waste of time. The movie start...\n Wow. I watched One Night at McCool's yesterday...\n What can be said of this independent effort be...\n This is a copy of the 1948 Doris Day classic, ...\n My girlfriend picked this one; as a southern b...\n 15 years ago, Power Rangers was one of the sho...\n This film is strange, even for a silent movie....\n This movie was disappointing. It was incomplet...\n I can't believe that Isaiah Washington and Ice...\n Dr. Krellman wants to save his son Julio who's...\n I love the episode where Jim becomes the Green...\n If you want to see what could be classed as th...\n I really enjoyed this old black and white talk...\n When you make a film with a killer-kids premis...\n I just finished watching this movie. I was ver...\n This has got to be THE worst Steven Segal movi...\n I chose this movie because I was looking for a...\n Post 1988 after the disaster GJS Amitabh's fil...\n This movie sounded like it might be entertaini...\n Thanks to Warner Archive, I can once again see...\n Although I enjoy Steve Carrell's work, Evan th...\n I'm a fan of this generally excellent though s...\n This is the story of a guy who went up to see ...\n This movie will not be considered for an acade...\n First of all, I'd like to say that I really en...\n The comedic might of Pryor and Gleason couldn'...\n The most irritating thing about \"Dies d'agost\"...\n Bingo is the game, bullshit is the name. Rarel...\n Big fat liar is a pretty funny movie. But as I...\n This film tried, but ultimately it was a waste...\n This soap is worse than bad: it's poisonous. O...\n There have been some low moments in my life, w...\n First, what is really great about this movie: ...\n Robert Altman's \"Quintet\" is a dreary, gloomy,...\n This is a better-than-average entry in the Sai...\n I have nothing but good things to say about th...\n And the title says it all: a cheesy sounding t...\n The horrific production doesn't qualify as a \"...\n Radio is a true story about a man who did what...\n I and a friend rented this movie. We both foun...\n Bill and Ted's Bogus Journey is the sequel to ...\n I have seen this film only once, on TV, and it...\n Listen, I don't care what anybody says, as Cyp...\n This was, undoubtedly, the most disturbing mov...\n I saw this movie about 12 years ago and I can ...\n I'm sorry but this guy is not funny. I swear I...\n I had pleasure to watch the short film \"The Cu...\n Me and my roommate got free tickets for a Pre ...\n Fay Grim is, on its face, a tale of espionage ...\n This movie purports to show a middle class fam...\n This film would be particularly fun for anyone...\n I thought that this was actually the best vamp...\n \"Hotel du Nord \" is the only Carné movie from ...\n This film is to the F.B.I.'s history as Knott'...\n Thanks for killing the franchise with this tur...\n Im not a big Tim Matheson fan but i have to ad...\n These two men went thru hell and beyond and ha...\n OK, so I gotta start this review by saying i w...\n This is the second Eytan Fox film I have seen....\n This documentary was very amateurish. It could...\n Ever wonder where that episode, \"Tuttle,\" came...\n The Road Rovers was a great show about canine ...\n There was no need for this movie, plain and si...\n The acting is good, the women are beautiful, a...\n This film revival right march in a bad film in...\n This movie is one of those \"WOW!\" movies. Not ...\n An obvious vanity press for Julie in her first...\n Revenge of the Sith starts out with a long act...\n Let me start by saying that if you're expectin...\n This movie is one among the very few Indian mo...\n another eli roth in the making. self promoting...\n Suppose you've been on a deserted island the l...\n Nostalgia isn't always the best reason to watc...\n When I attended college in the early 70s, it w...\n This film is amazing, while not perfect by Hol...\n I remember the first time I saw this movie -- ...\n I remember seeing this film when it first came...\n The very first time I heard of Latter Days was...\n So Dark The Night poses a tough challenge: It'...\n Say what you will about schmaltz. One beauty o...\n Any Batman fan will know just how great the fi...\n ***SPOILERS*** ***SPOILERS*** It's easy to see...\n Have you heard the theory of cloning redundanc...\n There's not that much to say in the end. One w...\n ELEPHANT WALK may not be the acme of literatur...\n I think that the basic idea of any movie is to...\n First of all, even IMDb is slacking with this ...\n All I can say about the Necromaniac/Schizophre...\n <br /><br />Arriving by boxcar in New York Cit...\n Australia's first mainstream slasher film hits...\n Mickey Rourke is enjoying a renaissance at the...\n At first glance, this movie has got everything...\n Anthony Quinn was a legend of 20th century in ...\n I saw this superb documentary at the Santa Bar...\n Every now and then there gets released this mo...\n Wow. I thought this might be insipid but it wa...\n This movie started with some promise: big name...\n I debated as to whether or not I should tick t...\n This movie in away was super-clever. It's them...\n \"The Godfather\", \"Citizen Kane\", \"Star Wars\", ...\n Ever since I started visiting this site, and v...\n It used to be that video distributors like Sub...\n i was like watching it right and i was all lik...\n The Treasure Island DVD should be required vie...\n In the movie, \"The Falcon and the Snowman\", wh...\n This movie is a bad memory from my childhood. ...\n I saw this movie with some Indian friends on C...\n Oh dear. This movie could have been sub-titled...\n This isn't a bad TV movie. Shtrafbat is short ...\n I went to see Antone Fisher not knowing what t...\n It's hard to work up any enthusiasm for this a...\n 2 WORDS: Academy Award. Nuff said. This film h...\n Personally, while I'm able to appreciate reall...\n This film is described as a action/comedy. The...\n Has Al Pacino ever been in a bad movie? His na...\n Having recently purchased Universal's Marlene ...\n Intelligent, nail-biting drama came out of now...\n You expect it to be juvenile but you at least ...\n This British documentary was recently shown on...\n If you took all the stock elements of a Shrek ...\n I have been watching horror movies since I was...\n I had always eyed Italian horror maestro Dario...\n The film starts out with a narration of the pr...\n This movie has beautiful scenery. Unfortunatel...\n there is only way to describe this movie.<br /...\n It's a shame this movie is rated PG 13--it is ...\n Great show! About time a reality TV show comes...\n Well let me just say something about these act...\n After a few lean years, 1968 was a pretty swel...\n First of all, the entire script is mostly impr...\n A far as B-movies go, SCARECROW is one of thos...\n I was \"turned on\" to this movie by my flight i...\n If they could get Ed Asner why didn't they get...\n Two stars <br /><br />Amanda Plummer looking l...\n A dull stroll through the banalities of Mormon...\n Not as bad as you've heard. There are actually...\n Istanbul is a big , crowded city between Europ...\n This espionage melodrama has a nice, almost pr...\n Hobgoblins....Hobgoblins....where do I begin?!...\n \"Death Machines\" takes a fairly decent premise...\n Not as bad, as it's credited to being (Hooper'...\n I'm currently slogging through Gibbon's 'Fall ...\n The film was written 10 years back and a diffe...\n For most younger viewers out there, they proba...\n This movie stunk. There is not much more to it...\n The story of a little girl who was driven once...\n The Devil's Men represents what turned out to ...\n I can't believe this movie only scores 7.4! Th...\n Pretty lame and awful slasher about someone ki...\n This is a great movie, it shows what our gover...\n I first heard of this movie after purchasing t...\n I've always said that there's nothing to beat ...\n Opening scene 'explains' why Hurt is later 'im...\n I'm not surprised that this film did well at t...\n One Night at McCool's wants you to think it is...\n Dr. Seuss would sure be mad right now if he wa...\n This...... Movie.... Is..... Horrible!!!!!! Yo...\n Interesting how much more realistic Brosnan's ...\n Welcome back Kiefer Sutherland. it's been too ...\n This is a very realistic movie. It's the most ...\n Honestly, this is the best reality show anyone...\n Moonwalker is such a great movie, from start t...\n It is a great movie if you have ever named you...\n 1 is being pretty generous here. I really enjo...\n Well let me say that I have always been a Stev...\n CONTAINS \"SPOILER\" INFORMATION. Watch this dir...\n I own the miniseries on DVD because I love thi...\n A bunch of mostly obnoxious and grossly unappe...\n Charles Boyer is supposed to be Spanish, and h...\n This movie is so unreal. French movies like th...\n This was a pretty good episode. Though no \"Tra...\n I went to an advance screening of this movie t...\n This, and Immoral Tales, both left a bad taste...\n Definitely not a film to revolutionize the ind...\n Before I start, let me say that my experience ...\n It's 2 stars only because they put a lot of wo...\n After going for a bike ride that day, lying be...\n \"Pushing Daisies\" for sure is one of the best ...\n Is there any question that Jeffrey Combs is on...\n Am not from America, I usually watch this show...\n Excellent film that reveals how people are con...\n I saw this movie last night at the Berlinale a...\n According to me, a movie can be best rated by ...\n Soon after this movie was released,Salman Khan...\n This movie was, of the 67 of 71 best pictures ...\n In all this dogma fuzz, please note that this ...\n Let me start by saying at the young age of 34 ...\n Oh, those Italians! Assuming that movies about...\n This is not a very good telling of the Tarzan ...\n For those of you that don't that reference, cl...\n This Peabody Award winning episode is one of t...\n A true Gothic Horror Trash Classic!<br /><br /...\n This movie was laughably bad. A friend rented ...\n Stan as a bullfighter, and a good one, is quit...\n I enjoyed some of the older Doctor Who many ye...\n Believe it or not, this was at one time the wo...\n I must admit I do not hold much of New Age mum...\n There's nothing wrong with softcore but this o...\n This is by far my favorite action movie. But w...\n Normally I'm not motivated to write reviews. B...\n A touching movie about a talented woman who st...\n A simple comment...<br /><br />What can I say....\n This is one of those movies in which people ke...\n Please Note: I see from the various posts that...\n This game is amazing. Really, you should get i...\n It helps immensely if one is familiar with the...\n I've gotta say, I usually like horror movies t...\n How to summarize this film ? it is simply impo...\n And a hard spot somewhere else. I haven't seen...\n I loved the original P.H. and was somewhat sat...\n Anyone that has see Tammuz's Child Eaters know...\n For those of you who've never heard of it (or ...\n Although it can be VERY tedious at times, this...\n Academy Award winner Robert Redford (Best Dire...\n Based on a Stephen King novel, NEEDFUL THINGS ...\n What I got was something better.<br /><br />Ju...\n ....You get this stupid excuse of a Child's Pl...\n This movie was very good. I really enjoyed it....\n After seeing PURELY BELTER I came onto this si...\n The plot was not good.<br /><br />The special ...\n CARRY ON MATRON was released in 1972 and it's ...\n It really is that bad of a movie. My buddy ren...\n A brilliant professor and his sidekick journey...\n Some nice scenery, but the story itself--in wh...\n This straight-to-video duffer is another nail ...\n This film is about a deadly poison that is con...\n Okay, what the hell kind of TRASH have I been ...\n I think it's a great movie!! It's fun, maybe a...\n This is a bit of a first for me, the first tim...\n * Some spoilers *<br /><br />This movie is som...\n This movie is exactly the same as Ridley Scott...\n Following a car accident, a mad scientist(Jaso...\n Tony Scott can make good films and bad, person...\n Five across the eyes ain't worth one off the w...\n The final installment in the Karate Kid series...\n It's not unusual that Hollywood likes to pump ...\n This movie is a hidden gem. I can't understand...\n I was looking forward to this movie. Trustwort...\n This 1955 heist film follows Tony le Stephanoi...\n I cannot believe how this atrocity managed to ...\n A film written and directed by Neil Young, \"Gr...\n I'm still trying to decide if this is indeed, ...\n Attending this film was an excuse to escape th...\n Some films just fade away, but Tourist Trap ha...\n The scriptwriters, directors, and actors have ...\n The Monkees, surprisingly, are a big favorite ...\n (NOTE: I thought I'd be the only one writing w...\n The Grudge 2...Let's see. Don't get me wrong, ...\n I cannot believe I actually set up a 'season p...\n There is an awful lot wrong with this picture,...\n As I am no fan of almost any post-\"Desperate L...\n I just watched this movie last night, and I HA...\n Creative use of modern and mystical elements: ...\n I saw this title again on Shemaroo. I also ask...\n When a group of dumb kids (including an unlika...\n I thoroughly enjoyed Carmen, better than Origi...\n This movie attempts many things but never real...\n I can't remember the last time a movie was so ...\n Words almost fail me to describe how terrible ...\n Based on the memoirs of Gypsy Rose Lee, who pa...\n i originally seen the flash Gordon serial on P...\n How did this ripoff of \"Being There\" ever get ...\n *****WARNING, MAY CONTAIN SPOILERS WHICH WILL ...\n I am Curious (Yellow) (a film, in near Seussic...\n I can't say this is one of the best films I ha...\n Unfortunately, this film has long been unavail...\n The movie uses random events of historical sig...\n This movie is not for those expecting a martia...\n Not quite a bomb? The only thing missing was t...\n It's the old, old story : kids have a party in...\n I just can't get it, freaks out on the planet ...\n Perhaps the best movie ever made by director K...\n Today I had a real craving for a sci-fi movie ...\n One of the great things about The Best Years o...\n i think that this film is brilliant.there are ...\n Okay. So there aren't really that many great m...\n The Stock Market Crash of 1929 and the Depress...\n This is most likely the best picture not many ...\n Harmony Korrine - hate him or hate him? On thi...\n This film is not morbid, nor is it depressing....\n The Great Ecstasy of Robert Carmichael is bad ...\n I was thrilled to watch this movie expecting i...\n Tug-3 is absolutely right. Although I am sure ...\n Let me put it another way: balls. Or, how abou...\n ...through the similarly minded antics of Eric...\n Reading the book I felt once again drawn into ...\n Joel Schumaker directs the script he co-wrote ...\n This movie is a disgrace. How can you take one...\n Jon Voight plays a man named Joe. Joe is shook...\n Lordi was a major hype and revelation in 2007 ...\n Now that Che(2008) has finished its relatively...\n This movie was so weak that it couldn't even c...\n I don't understand why this movie has such a l...\n It follows BLOCK-HEADS and A CHUMP AT OXFORD, ...\n This experimental silent film, made in Switzer...\n Just about every commentator has mentioned the...\n A touching movie. It is full of emotions and w...\n I really like Miikes movies about Yakuza, this...\n ...as valuable as King Tut's tomb! (OK, maybe ...\n Saw this flick on ENCW last nite for the third...\n This film is advertised as a clever romantic c...\n Why do they keep making trash like this? becau...\n This is not a profound movie; most of the plot...\n \"The Luzhin Defence\" is, in the foreground, a ...\n This drama is unlike Sex and the City, where t...\n The worst movie I have seen in a while. Yeah i...\n Ernst Marischka, one of the most respected Aus...\n Those who love Elivra as I did in her late nig...\n I'm not here to tell you \"Armored\" is Kubricki...\n I've read the book 'Scarlett' and was expectin...\n RKS after the success of GHAYAL started work o...\n I think that most of the folks who have posted...\n This is a Laurel & Hardy comedy short with som...\n Set in the near future a dark stranger walks i...\n Flipping through the TV and saw that The Secre...\n I admit to having been a fan of the original s...\n This movie was a modern day scarface.It had me...\n this movie has a decent story in my opinion,ve...\n This 1955 Producers' Showcase version of the m...\n Hi folks<br /><br />Forget about that movie. J...\n Yes, indeed we have a winner- a winner in best...\n Oh the hilarity! Oh the joy! Another film that...\n You could see the final outcome from a mile aw...\n The only reason I know this film exists is bec...\n Now isn't it? Considering all the good work do...\n I have watched this movie twice in the past si...\n I just viewed Jean Renoir's wonderful film, Fr...\n The person who wrote the summary and rave revi...\n I have been watching this show since I was 14 ...\n I just rented Creep and was not at all impress...\n Such a BS movie. It's just some stupid anti-Ru...\n Hilarious, Sellers at his funniest ... a shame...\n There's an inexhaustible hunger for \"basic tra...\n I am still waiting for years a new DVD issue o...\n I checked this out as an impulse when browsing...\n End of Days is one of the worst big-budget act...\n Friday Night With Jonathan Ross must have thos...\n \"Metamorphosis\" hold a tiny bit of cult-value,...\n This film isn't a comedy, its an expose. I've ...\n I watched this AFTER seeing \"Death Tunnel\" (th...\n Man would expect that a movie shot with an app...\n First - nick-623, Pearl Harbor was bombed in 1...\n A somewhat fictionalized biographical portrait...\n 10 ITEMS OR LESS was made in two weeks on a sh...\n One of a few movies filmed at Coronado High Sc...\n After seeing Undisputed 2, I knew what to expe...\n this movie is practically impossible to descri...\n I saw this movie yesterday, and like most allr...\n Turned out to be a classy production with what...\n Entertaining Jim Belushi vehicle, a modern coc...\n I own this video as well as the concert versio...\n I saw that this movie was coming out and could...\n I just watched Atoll K-Laurel and Hardy's last...\n This is an extraordinary film, that tricks you...\n The way the story is developed, keeps the audi...\n This 'documentary' sheds absolutely no light o...\n This third Darkman was definitely better than ...\n A series of shorts spoofing dumb TV shows, Gro...\n One question that must be asked immediately is...\n Well I watched this last night and the one thi...\n I suppose that any novel that's as much of a d...\n I thoroughly enjoyed this made for TV movie. I...\n This is the second adaptation of Charlotte Arm...\n I rented this film to see what might be a bloo...\n Having read many of the other reviews for this...\n John Landis truly outdid himself when he direc...\n Tru Calling was good but it could have been gr...\n It was one of those late night \"It's there\" I ...\n one of the worst films I have EVER seen, but e...\n Yesterday, I went alone to the cinema, because...\n Along with having minor flaws to it, this film...\n What we've got here is a Situation. A man is f...\n This movie was terrible to say the least. I wa...\n \b\b\b\bA Turkish Bath sequence in a film noir loc...\n The movie doesn't take itself seriously, and i...\n An absolutely wretched waste of film!! Nothing...\n Dracula (John Carradine) visits Dr. Edelman (O...\n Every once in a while I will rent an action/ad...\n This film did not excite me. While on vacation...\n This is even worse than the original Game of D...\n One of the great tragedies of life is that Dis...\n One of the worst movies I've ever seen. Comple...\n This film is totally mindblowing. It manages t...\n This is a classic that will be able to hold up...\n ah man this movie was funny as hell, yet stran...\n I had to write a review of this film after rea...\n I missed the first 10 or so minutes of the mov...\n On the surface TMHS appears to be yet another ...\n Are you kidding me? The music was SO LOUD in t...\n If you find the hopelessly amateurish acting, ...\n After watching Desperate Living, I was hooked ...\n What I hate about this show is how poorly the ...\n There's been a spate of recent surfing movies ...\n Throughout this film, you might think this fil...\n With all due disrespect for this George Steven...\n It's interesting how the train of research can...\n especially when looking at the amount of crap ...\n Surprisingly effective British drama about two...\n I can watch a good gory film now and then. I'v...\n Horrible Horrible movie, i still can't believe...\n The only thing that makes this one watchable i...\n This movie was not only disappointing to the h...\n Fantastic, Madonna at her finest, the film is ...\n Aside from the fact that this movie was filmed...\n This is undeniably the scariest game I've ever...\n Okay, this film probably deserves 7 out of 10 ...\n Hi I have been looking 4 the soundtrack or a s...\n Alicianne (Laurel Barnett) becomes a live in b...\n Wow! In my opinion, THE NET is an excellent, n...\n Rabbit Fever is one of those film oddities. It...\n This movie turned out to be pretty much what I...\n Uneducated & defiant, beautiful TESS OF THE ST...\n Fun movie! The script is awful but the quality...\n Robert Duvall is a direct descendent of Confed...\n I hated the first movie is really boring and w...\n This movie is just great. It's entertaining fr...\n Time paradoxes are the devil's snare for under...\n I love this movie despite the fact it just mis...\n Good drama movie about a child custody case wi...\n By no means a masterpiece, and far from Errol ...\n This documentary is as unique as it's subject....\n That this poor excuse for an amateur hour show...\n TWINS EFFECT is a poor film in so many respect...\n ...but I've seen better too.<br /><br />The st...\n The movie was to be shown here in Bangkok with...\n You want to see the movie \"THE Gamers\" by Dead...\n This Night Listener is better than people are ...\n Excellent movie, a realistic picture of contem...\n This movie has some of the worst production va...\n I don't see much reason to get into this movie...\n I rated this movie a 3 and that was generous. ...\n Why is it that such \"romantic\" movies that nev...\n I agree with the previous comment, the beginni...\n Before I'd seen this, I had seen some pretty b...\n Shakespeare Behind Bars was the most surprisin...\n This movie got off to an interesting start. Do...\n Monstervision was a show I grew up with. From ...\n Not only was the plot of this film contrived w...\n This movie was recently released on DVD in the...\n Strange yet emotionally disturbing chiller abo...\n When people ask me why do I like movies so muc...\n I have an awful pan-and-scan videotape of \"Boo...\n Enterprise is the entertainment, but it is als...\n I get tired of my 4 and 5 year old daughters c...\n You don't have to be a fan of the cartoon show...\n When my own child is begging me to leave the o...\n I posted on IMDb on this series recently, givi...\n This was an awful short film that tries to be ...\n Written by the excellent McGovern and directed...\n I already loved \"How the Grinch Stole Christma...\n I don't believe it... Luc Besson is not only a...\n I saw this movie in 1976, my first year of liv...\n I was so looking forward to seeing this at the...\n Deepa has again tried to bravely bring out a s...\n The Good: I liked this movie because it was th...\n Very funny to watch \"Beretta's Island\" as kind...\n Weird with unnecessary singing and backdrops. ...\n If you are looking for a film the portrays the...\n It is rare that one comes across a movie as fl...\n Forgettable pilot that never really explains w...\n Dahmer, a young confused man. Dahmer, a confus...\n First of all, i must say i really enjoy watchi...\n For a low budget movie this was really good. I...\n You get an hour and a half of braindead i have...\n I just saw this at the Castro Theatre in San F...\n Do you like really inventive comedy or do you ...\n They have taken a story dear to the people of ...\n I caught this movie the other night on one of ...\n First i will say that i am going to be as subj...\n The movie is a happy lullaby, was made to make...\n Luis Bunuel has always been a filmmaker whose ...\n \"Gespenster\" Question of to be cool in the Ger...\n Although the plot was a bit sappy at times, an...\n Larry Bishop directs, writes, and leads this s...\n TACHIGUI: THE AMAZING LIVES OF THE FAST-FOOD G...\n Pluses: Mary Boland is delightfully on edge as...\n Simply put, there are two parts of this series...\n This movie is just truly awful, the eye-candy ...\n A brilliant portrait of a traitor (Victor McLa...\n Being stuck in bed with the flu and feeling to...\n I am a big fan of Fred MacMurray and Carole Lo...\n Angela Lansbury plays Eglantine a middle aged ...\n SPOILER NOTHING BUT SPOILER<br /><br />I have ...\n I loved this movie. It was so well done! Great...\n This is one of the best of the early \"Star Tre...\n The message of this movie is \"personality is m...\n Chuck Jones's 'Beep Beep' (so called despite t...\n This movie tells an amazing story with history...\n The video box for 'Joyride' says \"starring sec...\n not a Larry Mcmurty masterpiece but it stands ...\n I hired out Hybrid on the weekend. What a disa...\n Perhaps the biggest waste of production time, ...\n It's the story of three brothers pulling toget...\n Michael Haneke is known for his disturbing mov...\n Spheeris debut must be one of the best music d...\n In this swimming pool, this pond, there are wa...\n On the face of it, this should be a great film...\n A Nightmare on Elm Street: The Dream Child<br ...\n While watching a mundane modern movie (The Run...\n OK, let me start off by saying this isn't a ho...\n It was an excellent piece to the puppet series...\n This scene shows how Wallace's experiment by u...\n In spite of sterling work by the supporting ac...\n Unfortunately this is not as good as any of th...\n Well what do you know, I was painting my house...\n If I could give this film a real rating, it wo...\n This was a very nice concert by the one and on...\n What a waste of time and money! My hubby and I...\n Wow...where to begin...picked this up at Big L...\n This is my kind of film. I am fascinated by st...\n This frothy romantic comedy is based on the ki...\n Reading some of the other reviews of this film...\n excellent drama. very dark. i have never seen ...\n By my \"Kool-Aid drinkers\" remark, I mean that ...\n I was more entertained by watching my wife alm...\n I don't think the number of blunders militaril...\n Perhaps many viewers who got frustrated by thi...\n I remember reading the original Balzac story i...\n I am an atheist with little love for certain a...\n \"House of Dracula\" is a good sequel to \"House ...\n Eyeliner was worn nearly 6000 years ago in Egy...\n Rachel McAdams. Cillian Murphy. Wes Craven. Th...\n Sadly, 8 Simple Rules, for dating my teenage d...\n As an avid Disney fan, I was not totally impre...\n It'll be a blue Christmas indeed if you subjec...\n Yes, as the other reviewers have already state...\n I loved this movie and will watch it again. Or...\n till HBO began rerunning it this month. I reme...\n Partially from the perceived need, one feels, ...\n I really like this show. It has drama, romance...\n Sitting on the front porch of his Burbank home...\n I saw this last week after picking up the DVD ...\n A family looking for some old roadside attract...\n Truly, truly awful. I don't even know where to...\n What is happening to ITV Drama. First, \"Losing...\n This is just as good as the original 101 if no...\n Probably one of the most boriest slasher movie...\n Let's see... a couple dozen Gary Larson gags, ...\n Watching this film today I got the feeling thi...\n I didn't like this Bill Murray vehicle when it...\n The movie Heart of Darkness is an insult to th...\n The opening 5 minutes gave me hope. Then Meyer...\n I think the problem with this show not getting...\n I just watched this movie last night. Within 3...\n Niagara, Niagara is a stunning and heartbreaki...\n It Came from Outer Space II is a very good fil...\n You might be a bit confused if you watch this ...\n i love this show. i hate when it goes to seaso...\n This reminded me SOO much of Michael Winner's ...\n Chris Kattan is a great sketch actor on Saturd...\n I recently caught up with this little gem of a...\n How can a movie that features the singing of C...\n I enjoyed this movie as a kid when it came out...\n \"The Piano Teacher\" is all about Huppert's cha...\n What distinguishes some of the 'Lone Star' fil...\n I can't say if \"The Cavern\" is a ripoff of \"Th...\n I'm a fan of Get Shorty. This is the sequel fo...\n I rarely write reviews but this film simply de...\n As far as I know I've seen most of Lucio Fulci...\n You can call it a mystery, perhaps a small thr...\n The things that I find irritating on screen, t...\n Needless remake, and it can't come close to ca...\n There are so many more complexities to the plo...\n This was a nice attempt at something but it is...\n What a waste of time. I got about five minutes...\n The effect achieved in this story about a psyc...\n Straight from the brilliant mind of animation ...\n Once again, like Charlie's Angels, Inspector G...\n I wasted 5 dollars renting this complete piece...\n Here goes the perfect example of what not to d...\n Bone Eater is set in a small desert town in Al...\n The fact that this film was put out on DVD sti...\n Why this is called \"Mistresses\" is a puzzle, b...\n One Chinese gang attacks and wipes out another...\n I enjoyed \"American Movie\", so I rented Chris ...\n All Kira Reed fans MUST see this. The film's p...\n Since the Little Mermaid was one of my favorit...\n I'll probably get a lot of flack for hating th...\n Got the chance to see this at a friend's house...\n All Dogs Go to Heaven plays on the canine crim...\n In the third entry of the Phantasm series, Mik...\n This movie was horrible. I swear they didn't e...\n I watched this film recently on DVD and I have...\n I'm rather surprised that anybody found this f...\n Some of the greatest and most loved horror mov...\n And how it made it into production astounds me...\n Although Kris Kristofferson is good in this ro...\n This was a movie that could have been great if...\n A River Runs Through It is one of those movies...\n I went to see the movie because my boyfriend w...\n A fantastic musical starring Gene Kelly and Ri...\n A wonderful early musical film from Rene Clair...\n His John Dark-Kevin Connor fantasy adventures ...\n In it's time, this movie had controversy writt...\n Apart from the usual stereotypes of the thirti...\n If you are having a bad day,or bad week. If yo...\n This 22 minute short, short of a precursor to ...\n Firstly, let me make it clear that I love airc...\n Just kidding about the weight loss thing; well...\n I could crap a better movie. This is a waste o...\n I've always liked Barbara Stanwyck who was, pe...\n A stunning piece of art.You can watch every im...\n .. is the Princess Bride meets... well Trainsp...\n 'I don't understand. None of this makes any se...\n This film makes you really appreciate the inve...\n I saw this film awhile back (while working on ...\n Holy crap! What a terrible, terrible Spanish t...\n It is fascinating how this title manages to sl...\n Where the hell are all these uncharted islands...\n This is a very, very early Bugs Bunny cartoon....\n Honest young insurance agent Ronald Reagan (as...\n Any fan of Russian cinema will have great diff...\n A lot of people don't think Dan Aykroyd is fun...\n A friend of mine who has a mysterious knack fo...\n In the questionable comedy vein of Mel Brooks,...\n When Jan Svankmajer lets his imagination run w...\n Jesse yet again delivers, after almost 12 mont...\n This movie is one of the most awful movies eve...\n Sweeping and still impressive early Talkie Wes...\n \"The Hazing\" is one of them films I always wan...\n Please do not go see this. I did have several ...\n The Lion King series is easily the crowning ac...\n The first film was quite hip and had amusing m...\n The cast is OK. The script is awkward at times...\n If you never have read the book and never inte...\n I find it hard to understand why this piece of...\n The One and the Only!<br /><br />The only real...\n Ten minutes worth of story stretched out into ...\n My husband wanted to watch this film because t...\n The film successfully gives a graphic portraya...\n Sure it is a new take on vampires. Who cares. ...\n I and my brother are very big Asian movie fans...\n Jake's Closet has the emotional power of Krame...\n The 1986 TV movie of The Spirit was a pilot fo...\n Give H.G. Lewis points: He managed to incorpor...\n I love the way that this game can make you lit...\n Although this was a film of only less than for...\n This film, though, critically acclaimed, has o...\n I saw this very emotionally painful portrayal ...\n Let's face it: the final season (#8) was one o...\n The first one meant victory. This one means de...\n I've just seen a couple of Episodes of \"Eleven...\n A director and his crew head out to the isolat...\n I didn't think it was possible for a horror co...\n It is always satisfying when a detective wraps...\n I truly love horror films & try to give every ...\n This film is one of those nostalgia things wit...\n The opening scene makes you feel like you're w...\n \"The Man From Utah\" opens with a singing cowbo...\n As an avid fan of Cary Grant, I expected to wa...\n This movie had what sounded like a good premis...\n This movie is light, funny, and beautifully fi...\n Harlan Knowles (Lance Henriksen) brings a grou...\n This film is great - well written and very ent...\n In the last few years of Ron Miller's (son-in-...\n Yes, it's not a great cinematic achievement, b...\n I was half-dozing as I watched a late night se...\n All ambiguity about Michael Myers has withered...\n How unfortunate, to have so many of my \"a\" lis...\n One of the best movies for all ages. You will ...\n I saw this movie in Blockbuster and thought it...\n This movie . . . I don't know. Why they would ...\n Prom Night is about a girl named Donna (Britta...\n This typical teenagers movie is one of the bes...\n I recently got THE SEVEN-UPS on video and I mu...\n In these days of ultra-fast processors and the...\n The first collaboration between Schoedsack & C...\n The key to The 40-Year-Old Virgin is not merel...\n Munchies starts in deepest darkest Peru (looks...\n I have to hold my hand up and say that I was o...\n In what seemed like the longest 1hour 35 I've ...\n When I first saw the movie, I thought it was s...\n A group of people goes deep into the jungle fo...\n Polish film maker Walerian Borowczyk's La Bête...\n 0*'s Christian Slater, Tara Reid, Stephen Dorf...\n Would have better strengthened considerably by...\n Many American pea-brains who worship and suppo...\n I went to this movie only because I was dragge...\n Karim Hussain's masterpiece of art/gore--this ...\n Geez, as a Gay man who lives in NYC I can grat...\n First let me say that I am not a Dukes fan, bu...\n I thought maybe a film which boasted a cast in...\n In terms of the arts, the 1970s were a very tu...\n I've been surprised by the enthusiastic respon...\n There is something about true stories that mak...\n This is a classic example of an increasing pro...\n Finally watched this shocking movie last night...\n Ladislas Starewicz's curiosity with insects an...\n Orson Welles manages to knock me on my ass wit...\n In 1983, Director Brian De Palma set out to ma...\n (spoiler warning) I seem to keep giving this g...\n I guess I was prepared after all the years of ...\n According to most people I know that saw this ...\n This movie was unbelievably bad... It's gory b...\n This movie, based on a true story of Gerrit Wo...\n I haven't actually seen a lot of movies with H...\n What a stinkeroo this turned out to be!!! At o...\n I only watched the first twenty minutes of thi...\n Only one thing could have redeemed this sketch...\n I found this a very enjoyable light hearted co...\n I literally ran to watch it, expecting a film ...\n William H. Macy is terrific in this Alfred Hit...\n My favorite \"Imperialism\" movie and one of the...\n Midnight Cowboy opens with a run down Drive In...\n I have to congratulate the genius who approved...\n My first thoughts on this film were of using s...\n After reading many good things about it ,i fin...\n Don't be fooled by the silly title folks, this...\n Six students at a convent do the unthinkable -...\n I went into this movie with very little in ter...\n The worst movie ever made. If anyone asks you ...\n When going to see Rendition, I was expecting a...\n This movie is such a piece of unbelievable cra...\n I love Japanese movies--having seen at least 1...\n I have one word to someup this movie, WOW! I s...\n Director Ron Atkins is certifiably insane. Thi...\n There seem to have been any number of films li...\n Love this film also. Saw it when it was first ...\n Marlene Gorris has established herself as one ...\n This documentary makes you travel all around t...\n A holiday on a boat, a married couple, an angr...\n I also saw this movie at a local screening abo...\n There's so many negative reviews about \"Stay a...\n If you have ever shopped at Wal-Mart, then you...\n The scenes are fast-paced. the characters are ...\n When a BBC murder thriller is this rife with h...\n \"My Left Foot\" is a pretty impressive film tha...\n This movie is very modern and forward. It is a...\n IMDb lists this as 1972 for some reason, but t...\n Why Lori Petty was cast as tank girl, I'll nev...\n A real classic. A shipload of sailors trying t...\n Okay, I think we're all agreed that Michael Ja...\n This is a terrible film, and not one scene has...\n Truly awful nonsensical garbage. This movie do...\n It's unlikely that anyone except those who ado...\n I don't know how expensive was the creation of...\n I thought this was a wonderful movie. It touch...\n TV does influence society...just look at the s...\n 1st watched 5/17/2002 - 3 out of 10(Dir-Ewald ...\n Since I am not a big Steven Seagal fan, I thou...\n Ho, ho, homicidal maniac! This spirited tour-d...\n I cant go for long describing this tittle, sim...\n I know it is fashionable now to hate this movi...\n As an adventure mini-series, this is about as ...\n Like many western Pennsylvania history buffs, ...\n I would probably not have bothered to comment ...\n There are so many stupid moments in 'Tower of ...\n This movie is a rather odd mix of musical, rom...\n Director Michael Ritchie and actor Robert Redf...\n Most people (36) gave this movie a 10 and thos...\n I fell in love with Emily Watson in Breaking t...\n Have you ever wondered why these guys -- Seaga...\n 'Succubus', the edited version of 'Necronomico...\n Bruce Almighty is the best Jim Carrey work sin...\n A memorable line from a short lived show. Afte...\n This review contains a SPOILER---<br /><br />T...\n This was an interesting movie. I could have do...\n In short, this movie is a declaration of artis...\n A few years ago, while I was renting some movi...\n In a better civilization, this and many other ...\n In moments of desperation were willing to do w...\n Nice to see a comedy for grown ups. Masterfull...\n Working from a script written in part by Nicho...\n This movie really is a mixed bag. On the one h...\n I watched this movie for its two hours and hav...\n At first, I honestly thought it would be a cor...\n First off- What are some of you thinking? This...\n This movie is not about the soda nor is it qui...\n Well where do we start, there was a lot of pot...\n I went into this film thinking it would be a c...\n Maybe the greatest film ever about jazz.<br />...\n This is an odd movie. On the surface it's no d...\n I am a huge fan of the $5.50 DVD bin at my loc...\n An enthralling, wonderful look at the films th...\n Turd Pie:<br /><br />* Take x2 franchises * Pa...\n THE FOX AND THE CHILD is the latest film from ...\n The late Director John Frankenheimer directed ...\n Just finished watching American Pie: Beta Hous...\n The dehumanising effect of war is a much-studi...\n Yah. I know. It has the name \"Sinatra\" in the ...\n This movie is truly unbelievable, in every sen...\n Do people rate this movie highly because it's ...\n Look carefully at the wonderful assortment of ...\n The film begins with a dandy gunfight, where t...\n In a summer that also boasted such repugnant s...\n SPOILERS, BEWARE!!! Flashdance is a fair movie...\n Each of the major studios cranked out jazzy on...\n My Name is Earl(2005) <br /><br />Review:........\n As if the storyline wasn't depressing enough, ...\n This was probably intended as an \"arty\" crime ...\n Genius or utter madness? That depends on your ...\n First of all, when people hear 'GUY RITCHIE', ...\n Great movie - especially the music - Etta Jame...\n I found the first bit of stop motion animation...\n In a word - excellent. This is THE MOVIE. Go a...\n this film has no plot, no good acting, to be h...\n I totally disagreed with those comments which ...\n As I watched this movie, I felt as if a plasti...\n This is absolutely nothing like the WWF and th...\n This movie really left me thinking ... but not...\n Tarzan, the environmental awareness leader, fa...\n Before I forget, let me say the artwork in her...\n Highly suggest not to watch this film 'TV' if ...\n Fabulous, fantastic, probably Disney's best mu...\n Absolutely the worst experience I have ever be...\n I think this piece of garbage is the best proo...\n I picked this movie on the cover alone thinkin...\n I watched this movie with my mother. She is 81...\n THE IMMORTALIZER was, uh, interesting. It cert...\n 1st watched 12/7/2002 - 3 out of 10(Dir-Steve ...\n I know a lot of people don't like this movie, ...\n This is another of Hollywood's anti-communist ...\n 'Fame' (1980) is brilliant. It's got all these...\n Recap: Based on the true story of Charlie Wils...\n I saw this film much like Skywalker02 did, but...\n This was an excellent film. I don't understand...\n Having had more than a few mates suggest i che...\n American Graffiti is one of the best movies ev...\n Not an altogether bad start for the program --...\n I guess I should now comment upon a 4th flick ...\n The Sentinel i was hoping would be a good film...\n This is the second British Rank film to adapt ...\n This is movie is really bad. I like to flip on...\n Killer Flood: The Day the Damn Broke: 1/10: Fi...\n I absolutely loved this show. I watched it fro...\n My mom always told me to sit down and to actua...\n It's like this ... you put in the DVD and the ...\n A mix of comedy, romance, music(?!), action an...\n I see that someone already thought of a simila...\n Warm hearted flic depicting arch-angel Michael...\n I thought that it was a great film for kids ag...\n This should be my kind of movie. Even if it su...\n Out of any category, this is one demented and ...\n I gave this film 10 not because it is a superb...\n I saw this jolly little film at age 10/11 in 1...\n Final Justice has the great Joe Don Baker runn...\n If you like plot turns, this is your movie. It...\n I'm watching this film as I write this. It's a...\n As was mentioned by others, could there be any...\n especially considering I can count on one hand...\n I am astounded at the positive reviews for thi...\n I don't really know what it is about Dirty Dan...\n This is one of L&H's shorts most frequently ci...\n Miscast, badly directed and atrociously writte...\n Simply an amazing bittersweet movie that portr...\n An Italian/American co-production co-starring ...\n I think that this is one of my top ten worst m...\n (Spoilers warning) I cannot say enough good th...\n Creature Unknown is the right word for this mo...\n A girl is showering unknowing that a serial ra...\n This week's surprise screening at GV turned ou...\n A vampire prince falls for a human girl, unawa...\n a movie about the cruelty of this world. I fou...\n If the scale went negative I would be happier....\n This is a entertaingly bad b-movie. Actually i...\n It's rare that I come across a film this awful...\n This movie took me by complete surprise. I wat...\n Over the GW is a near failure of a debut featu...\n First, a warning. 'How to Marry a Millionaire'...\n How this film could miss so many of the fascin...\n A one is the highest rating I could have given...\n The critics are dumb. This movie is funny and ...\n The Forest isn't just your everyday standard s...\n The world is going to miss John Frankenheimer....\n Holes is a fable about the past and the way it...\n 10/10 for this film.<br /><br />i'm a british ...\n Before I begin, I want to briefly say that thi...\n Half Past Dead was unlike any Steven Segal fil...\n It's About Time \"Kate Jackson\" got her credit ...\n Engaging, riveting tale of captured US army tu...\n *** out of ****<br /><br />Yep! Dressed To Kil...\n Bobcat Goldthwait should be commended for atte...\n And it's not because since her days on \"Claris...\n A traveling couple (Horton and Hamilton)stumbl...\n This film is deeply disappointing. Not only th...\n The revelation here is Lana Turner's dancing a...\n This movie really shows its age. The print I s...\n The title should have been the walker. The guy...\n Sequels are a capricious lot with most nowhere...\n I really wish Hollywood would come up with som...\n I wasn't quite sure if this was just going to ...\n This movie came to me highly recommended by Ma...\n (Warning: spoilers! -- although it's hard to s...\n I am not understanding why people are praising...\n Due to this show getting cut early I never rea...\n If you've ever had a mad week-end out with you...\n Wow. I have seen some really bad movies in my ...\n Tia Carrere was the reason I decided to watch ...\n Jamie Foxx did an incredible job playing Ray C...\n Of course, by any normal standard of film crit...\n You'd be forgiven to think a Finnish director ...\n Today actresses happily gain weight, dye their...\n Think of it as an extreme form of detention wi...\n Demonicus is a movie turned into a video game!...\n This is a really great short from Hal Roach. T...\n I'm sure all of the Canadians on IMDb are all ...\n This probably ranks in my Top-5 list of the fu...\n I thought this is an unbelievable boring movie...\n Several things become apparent after the first...\n For weeks I had been looking forward to seeing...\n I liked Top Gun. It held my interest. Predicta...\n When a movie called Hell Ride comes out you ex...\n \"Panic\" is kind of a crime comedy-drama with W...\n Barbora Bobulova's portrayal of Valeria in thi...\n Jean Luc Godard's Marxist polemic is as close ...\n Bromwell High is a cartoon comedy. It ran at t...\n Subtle, delicate ,touching.<br /><br />A young...\n I got a chance to see this movie at an early s...\n This movie is simply rubbish. I have to say I ...\n If you like CB4, you have no idea what you're ...\n I've never understood the appeal of Garbo. She...\n This is not an entirely bad movie. The plot (n...\n I am a big MD fan. But, I call it like I see i...\n This is pure CRAP, and probably the worst Bibl...\n This is an OK film but lacks any real depth ei...\n I'm usually not one to say that a film is not ...\n I don't want to spend to long here rambling ab...\n I remember when THE GOLDEN CHILD was released ...\n \"Pearl Harbor, buddy.\" This movie is brilliant...\n Deep Blood... Its one of those movies you here...\n This movie is very scary with scenes where the...\n There's no better way to describe the HORRENDO...\n I saw this movie one time at a kiddie matinée ...\n This movie has a few good performances going f...\n In short:<br /><br />Spike Lee clearly has a l...\n I will always have a soft spot for this Disney...\n Honestly, this movie is weak. Very weak. Only ...\n I watched Cheats a few years ago with my frien...\n I saw this movie being a Jane Austen addicted ...\n If a joke doesn't offend anybody, it isn't fun...\n Wow! Stacy Peralta has followed up Dogtown and...\n Trite, clichéd dialog and plotting (the same k...\n The Russian movie, \"4,\" follows the lives of t...\n The key to the joy and beauty, the pain and sa...\n When a movie shocks you with it's disturbing, ...\n If there was a ZERO rating, I would give it to...\n There was a lot of hype of this movie and the ...\n This opens with the company credits informing ...\n Although i had heard this film was a little dr...\n During 1933 this film had many cuts taken from...\n This movie was pure genius. John Waters is bri...\n This movie actually hurts to watch. Not only d...\n A stupid rich guy circa about 1800 wants to vi...\n i thought it was pretty interesting my social ...\n Eastenders has gone full circle from unmissabl...\n First of all the story is not so simple as man...\n A group of people are invited to there high sc...\n For what it's worth, this is a fairly decent R...\n Set in 1962 Hong Kong (in turbulent times, as ...\n This film almost gave me a nervous breakdown. ...\n Shawn Michaels vs. Edge-8- Kind of hard to bel...\n It's interesting at first. A naive park ranger...\n This is easily a 9. Michel Serrault, known mor...\n In a world full of films -- like \"You Got Serv...\n Actually they could not have chosen a better d...\n It is quite rare that a movie comes along that...\n This film is bone chilling in a way that is ha...\n I started off being interested somewhat in the...\n Along with \"Aparadektoi, the best Greek Comedy...\n Yes, this movie was just hilarious and the act...\n My title ought to be enough.<br /><br />It baf...\n Ella was excellent, Franchot was unavoidably o...\n This is the second Animatrix short, and the fi...\n It's awful.<br /><br />Pretty succinct review ...\n Totally different, with loads of understatemen...\n Peter Segal's 1995 commercial hit & now cult-c...\n My personal favorite horror film. From the len...\n At the time I am writing this I see out of ove...\n One of the best romantic classic,teen deviyaan...\n \"Maximum Risk\" is a step sideways for Van Damm...\n Has anyone been able to buy this movie? My Unc...\n Is it just me or the fact that the evil racing...\n Honestly, how hard can it be to make a good re...\n This is a wonderful movie about a brothel in a...\n Just read through the other comments here, and...\n The production values for this film make it fa...\n I used to have a fascination with the cartoon ...\n No? Didn't think so! Well, in that case all yo...\n Excellent film from Thaddeus O'Sullivan featur...\n I give this five out of 10. All five marks are...\n This movie was poorly conceived, poorly writte...\n This TV movie goes to show that bad films do e...\n One of Frances Farmer's earliest movies; at 22...\n This film is so unbelievable; - the whole prem...\n I'm rating this pretty high just because of Sa...\n Once you can get past the film's title, \"Pecke...\n This film is superb, it has the same low-budge...\n Douglas Sirk's inaugural \"women's-picture\" wee...\n Dick Tracy was originally a comic book created...\n 1983 was a bumper year for Stephen King books ...\n A beautiful new print of \"Zabriskie Point\" is ...\n This is one of the best movies I have seen in ...\n ...for this movie defines a new low in Bollywo...\n One of the best! As being a fan of the civil w...\n This movie was released originally as a soft \"...\n Please, be warned: this movie, though a pretty...\n La Maman et la Putain has to be watched as a m...\n Supernanny Jo Frost, in each episode, gives a ...\n Bravo to Czechs, their once-powerful movie ind...\n <br /><br />..this movie being one of them.<br...\n It is incredible that with all of the countles...\n This comment is meant mainly as a warning to t...\n This movie is Wonderful! I can watch it again ...\n I really like slasher movies,but this one is t...\n There are places for political commentary in f...\n This movie is not so good as I thought it woul...\n It's not plot driven, OK; it's not a character...\n I can't say that I embrace this as a Romantic ...\n O my gosh... Just give me a minute to breath. ...\n \"Hood Rat\" is absolutely terrible. This is a u...\n Anybody who goes to the Manhattan Hospital Cen...\n I had to endure teen-aged, high school angst a...\n \"The Second Coming Of Suzanne\" is yet another ...\n Presenting Lily Mars may have provided Judy Ga...\n I was expecting this movie to be a stinker but...\n I'm the first to recognize that Chan-wook Park...\n I waited quite awhile till I was able to watch...\n While this film might not be the next Evil Dea...\n Jefferey dahmer was one sick guy. There's not ...\n I had heard about this movie through a friend,...\n Think of this pilot as \"Hawaii Five-O Lite\". I...\n But it does have some good action and a plot t...\n The story of Ned Kelly has been enshrouded in ...\n Whatever his name is (the writer and director)...\n I once promised never to walk out of any film ...\n The only good thing about this movie is, that ...\n Some of these viewer comments are just ridicul...\n For a movie that was PG, this is one fun film....\n I wonder how the actors acted in this movie. A...\n Comedy Central has had success with original p...\n Okay, so this was made way back in 1993. Direc...\n I had never heard of this film prior to seeing...\n Several weeks back I lost my beloved companion...\n ::POTENTIAL SPOILERS::<br /><br />Man, this mo...\n It came by surprise. . .the impact & resolouti...\n ***SPOILERS*** ***SPOILERS*** Continued...<br ...\n What a waste. John Travolta and Scarlett Johan...\n I loved this movie when I was a teenager. LOVE...\n But the opposite, sorry bud, i completely unde...\n This movie is an utter waste of time, the plot...\n I was a bit scared to watch this movie due to ...\n This is a feel good film, about one person's d...\n As if the world needed another Seagal movie. A...\n I saw this movie on Mystery Science Theater 30...\n \"Landscape after a battle\" opens with escaping...\n I enjoyed watching Brigham Young and found it ...\n I have seen this film 3 times. Mostly because ...\n *Hannibal SPOILERS* Hannibal Lecter (Anthony H...\n A rich old lady calls on a flirtatious divorcé...\n Faqrscape is truly one of those shows that jus...\n This movie is not for the faint or weak of hea...\n This will be a different kind of review. I've ...\n \"The Last American Virgin\", along with \"Fast T...\n This is a slightly uneven entry with one stand...\n I like Chris Rock, but I feel he is wasted in ...\n Early Hollywood at it's best!! A classic Kipli...\n This is one of the best lesbian films i have e...\n Mr Perlman gives a standout performance (as us...\n A deliciously nasty black comedy about a middl...\n Style but no substance. Not as funny as it sho...\n I cannot believe I never added my two cents ab...\n Italian rip off of Mandingo and The Drum is a ...\n OK, so I know of this movie because of a frien...\n This episode of Charmed changed everything! Th...\n I watched the Halloween episode...oh my god I ...\n I like Breillat's movies, but this one is the ...\n My wife, Kate and I absolutely loved the serie...\n Just after watching the first one and it is ve...\n It is hard to imagine anyone making a Tom Crui...\n My first impresson of the Saikano: Live Action...\n This film describes the experiences of a coupl...\n This is one of the worst movies I have ever se...\n I remember seeing this movie as a child in the...\n Loyalty to Peter Falk is all that kept me from...\n I remember watching this in the 1970s - then I...\n This comedy with much underlying pain and sadn...\n As far as films go, this is likable enough. En...\n I like this film for several reasons. I have a...\n Frank Sinatra starred in this odd little short...\n So when i was little i got this movie as a pre...\n I finally managed to get myself a copy of Dari...\n When I first found out that Brian Krause was g...\n Really, really bad slasher movie. A psychotic ...\n Spoiler alert  although I think this one was ...\n Never viewed this film and consider it a great...\n In Cinema Retro magazine #2,it is revealed tha...\n This is so incredibly bad. Poor actors. You ca...\n I saw this short film on the dvd for Ridley Sc...\n As shallow as it may sound, I actually delayed...\n Who likes awful \"comedy\" shows like Little Mos...\n \"Cooley High\" is one of my favorite movies EVE...\n I think 'Blackadder the Third' is the best one...\n Young, ambitious nurse Ms. Charlotee (Rosie Ho...\n The whole point of making this film, one of th...\n This movie was included in the Six Wives of He...\n A very comical but down to earth look into the...\n This movie was very very mediocre and very ver...\n Sorry, but aside from Kim Basinger doing a goo...\n This is an utterly forgettable picture. A frie...\n This hokey movie left me groaning after just a...\n If I'm going to watch a porn movie, I prefer i...\n This review contains what might be a spoiler i...\n You can't really call Roy Andersson prolific, ...\n After watching two of his silent shorts, 'Elen...\n The Fallen Ones starts with archaeologist Matt...\n This flick was a blow to me. I guess little gi...\n Like a relative that gives you a bad gift, Sou...\n Characters you don't care about, relationships...\n This movie works because it feels so genuine. ...\n Let me say first that this show was top tier w...\n This was one of the most mixed up films I have...\n I bought this 'film' from a gas station in the...\n As a kid, I never understood WHY anyone would ...\n What the hell is in your minds ? This film suc...\n I saw this movie on video with a couple of fri...\n I actually like the original, and this film ha...\n Yes, as unbelievable as it may be, in 1968 a m...\n OK,but does that make this a good movie?well,n...\n Any movie that offers Bonnie Hunt, Sarah Silve...\n Probably the two main significances of \"Elmer'...\n I bought this movie for 1 euro, not knowing wh...\n \"Let me ask you one more question\" Ha ! what a...\n I was never a big fan of horror movies. They u...\n can any movie become more naive than this? you...\n Unlike most people who've commented, I was bor...\n This is one of those movies you find when you ...\n This is a textbook example of how Hollywood di...\n I haven't read through all the comments, but a...\n This was a quite brutal movie. There were huge...\n Here's a couple of paragraphs out of an essay ...\n In my knowledge, Largo winch was a famous Belg...\n The Pallbearer is a disappointment and at time...\n The group of people are travelling to Belgrade...\n Why oh why don't blockbuster movies simply sti...\n I received this movie as a birthday gift becau...\n This was a better than average movie I thought...\n At last, a film to rival 'El Padrino' and 'Dar...\n \"Saving Grace\" is never riotously funny, but i...\n Whoever wrote the script for this movie does n...\n This movie started out with some semblance of ...\n Generally I don't do minus's and if this site ...\n Blue Monkey (1987) or 'Invasion of the BodySuc...\n Barry Champlain is a radio phone-in talk-show ...\n I'm sorry, but this is such a bad movie it's h...\n Peter is top notch, he is acting, and looking ...\n There's a part of me that would like to give t...\n Why watch this? There is only one reason and t...\n Good movie, all elements of a good movie was t...\n For sheer quality of performance and the \"thea...\n Without a doubt this is the WORSE comicbook mo...\n What a shame it is when a potentially captivat...\n Chick Flick? Of course.... Been done before? M...\n This is not a movie for fans of the usual eeri...\n This was the one movie to see about the Civi W...\n This movie is deeply idiotic. A man wants reve...\n Terrible acting, lame plot, stupid story and j...\n Yeah, right.<br /><br />I spent the first hour...\n I just finished a double feature night of An A...\n Amazing, amazing, amazing. What more can be sa...\n Across the great divide which we call understa...\n Oddball black-comedy romance featuring a great...\n While \"The Jackal\" [remake of the excellent \"D...\n I HATE MOVIES THAT END LIKE THIS!!!!<br /><br ...\n First of all, the release date is 2009, not 20...\n Very glad to see that this excellent film gets...\n Don't be fooled: this isn't yet another tired ...\n OK, I am not Japanese. I do know a little abou...\n I am a massive fan of Jet Li! He is THE best H...\n The Disney studios' remake of their own 1965 s...\n I thought this movie would be dumb, but I real...\n This is the kind of movie that I grew up on. I...\n Be very afraid of anyone who likes this film. ...\n I had absolutely nothing to do the past weeken...\n \"Written on the Wind\" is an irresistible, wond...\n I saw \"Into Pitch Black\" on t.v. and so I had ...\n THE FBI STORY (1959) was Warner Bros. 149 minu...\n Other reviewers seem to have held this film in...\n This movie deserves more than a 1. But I'm giv...\n I should have listened. I was warned, and stil...\n The acting in this film was of the old school:...\n There are a number of movies that my high scho...\n when I first heard about this movie, I noticed...\n I never expected such an old film to be as imp...\n This was the first PPV in a new era for the WW...\n I didn't expect much when I decided to watch t...\n I go to UCSB and take some classes with the ex...\n After reading other reviews on this site, we w...\n Why wasn't this voted for Best Picture of 1998...\n I don't know what the critics were viewing whe...\n *****probably minor spoilers******<br /><br />...\n At the beginning it was almost a shock to see ...\n I found Dominion to be a lousy attempt to cont...\n When I heard the plot for this movie I simply ...\n Bill Paxton, of Aliens, Near Dark, and Termina...\n `It's as if this town has the power to suck yo...\n At last - I've finally got round to it and man...\n Unlike many other films, which are disturbing ...\n This movie rips off of every mobster/gangster ...\n Like a great many twilight zone episodes, one ...\n Not only does this movie have a poor plot, bad...\n I was rather disappointed. The first Tetsuo ma...\n Despite the mysteriously positive reviews and ...\n Being a transplanted New Yorker, I might be mo...\n Mother Night is one of my favorite novels and ...\n This film is the proof that a good actor is no...\n This is an account of events that have been co...\n 'Leatherheads' tries so hard. Tries to be ligh...\n I am a guy, who loves guy movies... I was look...\n This scary and rather gory adaptation of Steph...\n I saw Borderline several years ago on AMC. I'v...\n La Antena, an audacious film by Argentine dire...\n A gritty Australian film, with all the element...\n I didn't think this movie was very good at all...\n First of all, this movie isn't a complete disa...\n That snarl...<br /><br />That scowl...<br /><b...\n This is absolutely the worst trash I have ever...\n This movie is so awful, it is hard to find the...\n There is a uk edition to this show which is ra...\n \"Plan B\" is strictly by-the-numbers fare excep...\n Quite typical for swedish movies of this type....\n If you've ever been to Ukraine, this movie is ...\n This movie is incomprehendably bad. It begins ...\n This is not a bad film. It is not wildly funny...\n (This review contains a huge spoiler, but I do...\n Sometimes, Lady Luck smiles on me. I had origi...\n This movie will go down down in history as one...\n To confess having fantasies about Brad Pitt is...\n I really wanted to like this film however afte...\n Having seen men Behind the Sun I guess I hoped...\n xica da Silva is one of the best Brazilians op...\n I have not read the novel, though I understand...\n \"Female Convict Scorpion - Beast Stable\", the ...\n Waitress: Honey, here's them eggs you ordered....\n Postwar England, the dawn of the \"atomic age\"....\n German filmmaker Ulli Lommel has managed a tas...\n <br /><br />I've seen this movie during a fest...\n I have always had this morbid curiosity when i...\n a movie that attempts to be far smarter than i...\n James Marsh's The King is a film that mystifie...\n This film flopped miserably in the UK, and it ...\n (***Minor spoilers***)<br /><br />If there's s...\n This movie is gorgeous. It's real and down to ...\n This was a very brief episode that appeared in...\n The rise of punk music was scarcely documented...\n A stupid movie, with a stupid plot. Feels like...\n I definitely recommend reading the book prior ...\n I saw this interesting film back to back with ...\n \"The sweet is never as sweet without the sour....\n As an indie filmmaker, I try to at least make ...\n What on earth happened to RGV? There are so ma...\n It was a fun film to look at. Though the chanc...\n I just want to comment to the woman above, tha...\n I went to see Fever Pitch with my Mom, and I c...\n This nifty little movie demonstrates the rock-...\n ...and I'm so disappointed because I can't see...\n Believe it or not, Inspector Gadget's Last Cas...\n Not sure why this film was advertised as a wil...\n This movie, quite literally, does not have one...\n Usually I don't really like Emma Roberts so mu...\n Abhay Deol meets the attractive Soha Ali Khan ...\n Bette Midler showcases her talents and beauty ...\n BARNYARD sucked! I saw this movie last week an...\n There are many different versions of this one ...\n I watched the world premiere of this on the St...\n ***1/2 Scarlett Johansson, Woody Allen, Hugh J...\n I really wanted to like this movie, but ended ...\n This is simply a good ole fashioned western..n...\n I saw the Messiah:- The First Killings and I t...\n Mary Haines (Meg Ryan) a rich woman discovers ...\n I rented this movie for a few laughs. I had ne...\n This is one of the best movies I have ever see...\n I spotted this movie in the video store a few ...\n Mom begins at night in the middle of nowhere, ...\n Even if you're a huge Sandler fan, please don'...\n I usually give horror films around 6/10, but t...\n I have read a couple of reviews of this film, ...\n Since I am so interested in lake monsters i re...\n So this is what actress Kim Basinger has succu...\n This picture is an interesting saga of the str...\n This was one of the worst movies that I have e...\n With so many good movies coming out in 1995 (p...\n I really enjoyed the film. It was really chees...\n This movie was disappointing for at least one ...\n Rendered in beautiful water colors, Ponyo At T...\n The Vietnam War era is certainly far before my...\n I know a lot of people would claim certain fil...\n Not as bad as some people say...This is a unof...\n If you want to make a movie like this, have th...\n Cult-director Lucio Fulci is probably most fam...\n Greetings again from the darkness. Director Al...\n The reason I am reviewing this is that the pre...\n This movie did attempt to capture the naive id...\n I couldn't believe how bad this film was, and ...\n INFERNO starts off with a fairly impressive fo...\n This movie is actually FUNNY! If you'd like to...\n I am ashamed to admit in public that I even he...\n I so wanted to believe in this movie after the...\n This story is about the romantic triangle betw...\n Sometimes you have to look back to go forward....\n Having decided some time ago to collect the fi...\n Bangville Police supposedly marked the debut o...\n We purchased this series on DVD because of all...\n When I was five years old, it was my favorite ...\n Okay. Look- I've seen LOTS and I do mean LOTS ...\n Okay, I know this does'nt project India in a g...\n Sir Arthur Conan Doyle wrote a fair number of ...\n One would think that a film based on the life ...\n Highlighting the acting of Sidney Poitier and ...\n Heard about this film a long while ago and fin...\n The Prophecy II, what's there to say about it?...\n Why on earth is Colin Firth in this pointless ...\n Wow. Watching this film today, you can't help ...\n This is a great Italian shark movie probably n...\n This is a VERY entertaining movie. A few of th...\n Bo Derek might have had a career had she not l...\n With the Nazi rise to power in Eastern Europe ...\n I'm not sure if these other people saw the mov...\n It is no surprise that writer/director Michael...\n I usually like comedy movies. I really enjoy t...\n \"Oh, you pilots are such men.\" \"They don't cal...\n It's hard to make a bad movie with the \"underd...\n \"TNT Jackson\" isn't completely unwatchable. Bu...\n The story is about a working girl (Ann Sothern...\n First a technical review. The script is so slo...\n This film had so much promise. I was very exci...\n Meaning: if this movie got pitched, scripted, ...\n At first you think another Disney movie, it mi...\n They played this on the July 4th Twilight Zone...\n One of master director Alfred Hitchcock's fine...\n I can't believe this terrible film was made by...\n I was enchanted by Niami's debut. I hope that ...\n The real life case of an innocent First Nation...\n I watched the MST3K version of the movie, and ...\n This is a weak film with a troubled history of...\n In a quiet town a couple of girls witness the ...\n The 1973 \"Day of the Jackal\", directed by Fred...\n I thought the movie was actually pretty good. ...\n Vadim changed Brigitte's image and way of life...\n This movie was beautiful. It was full of memor...\n Playwright Sidney Bruhl (Michael Caine) has ha...\n The BFG is one of Roald Dahl's most cherished ...\n My wife and I started to watch this movie with...\n Sending the Critters to space does seem like a...\n Now this is a real turkey by the overrated dir...\n I would hate to have anyone watch this \"inspir...\n What do you get if you cross The Matrix with T...\n I am disgusted and appalled by the positive re...\n Okay I saw the sneak preview of this stupid mo...\n Please avoid this movie at all costs. This is ...\n If Halloween 5 was a cruel joke to the fans of...\n I actually went into this film with some expec...\n As far as I am concerned this silent version o...\n We had to go to an appointment, so we turned o...\n I could not believe what i saw...(once) brilli...\n Great film. No gratuitous gimmicks like in mos...\n I just saw The Big Trail in Vienna's Filmmuseu...\n Frank Sinatra plays a no-goodnik ex-soldier an...\n \"It's all up to you, Ed?\" \"Now you get to play...\n The Italians are undeniable masters in the que...\n Set in South Africa, a young black guy tries t...\n SAKURA KILLERS (1+ outta 5 stars) Maybe in 198...\n I make just one apology for this film: there a...\n It's not well shot, well written or well acted...\n I wouldn't call \"We're Back! A Dinosaur's Stor...\n Upon completing this infernal piece of trash, ...\n ALL FOR LOVE ( as it titled when it was broadc...\n This movie is great, mind you - but only in th...\n Lon Chaney Jr returns to lumber along as the m...\n I have never seen a movie that annoyed me that...\n This movie was shot using a digital camera, an...\n I have seen some bad movies (Austin Powers - T...\n Travolta, Thurman, The Rock, Vaughn, Keitel an...\n The Man Who Knew Too Much{1956}is a remake of ...\n Leland P. Fitzgerald (Ryan Gosling) has commit...\n This is an irredeemably stupid, boring, unimag...\n I just came back from \"El Otro\" playing here i...\n The problem with making a movie like this, tho...\n I rented the movie and liked it so much that I...\n This Fox spectacle was a big hit when released...\n Old horror movies are interesting, plenty of s...\n I saw this film at the 2005 Palm Springs Inter...\n I attended one of the premieres last night and...\n I've seen soap operas more intelligent than th...\n Police Story is one of Jackie Chan's classic f...\n \"Cinema is dead, long live the cinema!\" said P...\n Some films that you pick up for a pound turn o...\n Some nameless aliens off on a distant ship fro...\n Antonio Margheriti's \"Danza Macabra\"/\"Castle o...\n I didn't expect too much from this movie, but ...\n I give this movie an A+ for the sheer camp of ...\n You'll notice by the stars I've given this GRE...\n In the sequel to the brilliant Bill and Ted's ...\n this isn't 'Bonnie and Clyde' or 'Thelma and L...\n I haven't seen this movie since it came out at...\n I guess this movie is a fitting tribute to the...\n I'm watching the series again now that it's ou...\n This was a watershed event in my movie watchin...\n Okay, I haven't read the book yet but I have t...\n The plot:Kurt Harris (Jeff Wincott), a bitter,...\n Mmm, doesn't a big stack of pancakes sound goo...\n WARNING:I advise anyone who has not seen the f...\n I first caught up with Jennifer years ago whil...\n I didn't even knew this movie existed until sh...\n \"Hatred of a Minute\" is a hauntingly beautiful...\n The worst part about this film is that it did ...\n So I rented this movie hoping to learn about t...\n It's a shame that Asterix and his buddy Obelix...\n I saw this movie at the 2005 Toronto Internati...\n This movie starts out as if it were a comedy. ...\n If you have ever read and enjoyed a novel by T...\n well i was a teenager when i saw the movie..th...\n This film gave me nightmares for months and I'...\n ...but it's certainly not without merit. Alrea...\n Cinderella was one of the first movies I ever ...\n We all know bits and pieces of Gulliver's trav...\n As someone who has lived with cerebral palsey ...\n In this film, made JUST as the production code...\n I just saw this movie for the second time with...\n Or released on DVD or screened on a cable chan...\n This movie's one of my favorites. It's not rea...\n wow! it's even better than I expected! the bes...\n The only reason I watched the movie till the e...\n In \"Red Letters\", Coyote is at the vortex of a...\n This film and the 1st AvP film both all over t...\n Right up until the end the bad guys have the u...\n I would love for members of the cast and crew ...\n Watching this movie, you just have to ask: Wha...\n This is another one of those movies that could...\n After seeing a heavily censored version of thi...\n There are movies like \"Plan 9\" that are so bad...\n This is one of my favorite movies of all time....\n \"The Phenix City Story\" is a brutal, hard-hitt...\n I wasn't particularly impressed by this movie ...\n This thing works on all levels -- it's intense...\n This short spoof can be found on Elite's Mille...\n A surprisingly good documentary. My surprise w...\n I was fortunate enough to see this movie on pr...\n After a man turns up dead, a soldier becomes t...\n Fast paced and funny satire about that origina...\n While both this movie and the signature car ch...\n It's really just terrible. Quaid overacts more...\n This is, in my opinion, a very good film, espe...\n WARNING: POSSIBLE SPOILERS (but not really - k...\n This is a film with a lot of potential, well d...\n A magazine columnist who writes about life on ...\n <br /><br />\"Burning Paradise\" is a combinatio...\n Heath Ledgers acting in this film really bugs ...\n As an avid cinema go-er i felt that whilst i w...\n Let's cut a long story short. I loved every mi...\n I have seen about five or six episodes of this...\n This is a movie you'll either love or hate. I ...\n I saw this movie recently because a friend bro...\n \"Any Gun Can Play\" (1967), directed by Enzo G....\n Is there anything worse than a comedy film tha...\n This movie has taken a lot of stick. It was sl...\n hi i am john and i would like to tell you all ...\n The Last Dinosaur is a film that is meant to b...\n Will Farmer (Lanter) plays a computer game tha...\n I'll admit that the first time I managed to ca...\n Most of the silent films I've seen have been s...\n When you compare what Brian De Palma was doing...\n An EXTREMELY fast paced,exhilarating, interest...\n This enjoyable Euro-western opens with a scene...\n As a popular sport, surfing was liked by many ...\n This is a romantic comedy, so it's really a fa...\n Students often ask me why I choose this versio...\n I had the opportunity to preview this film as ...\n Police officer Michael (Tomas Arana, \"The Chur...\n Very poor script and acting. I was very surpri...\n I lived in London most of my adult life before...\n I saw this movie when i was much younger and i...\n I think this has the potential of being the be...\n Other reviewers here seem to think this is an ...\n First off, I absolutely loved this movie. As a...\n It's not very often a movie can literally make...\n This movie is very well done although the endi...\n After seeing the movie, I feel the father and ...\n This was a highly original decent movie, and a...\n As I've hopped from film to film at the SXSW F...\n This is unique in films of Hitchcock's that I'...\n This game has cartoon graphics, not much viole...\n I watched this movie recently mainly because I...\n I first saw this when I was around 7. I rememb...\n Sogo Ishii has taken the old myth of Musashibo...\n Personally I think this show looks pretty chea...\n It's hard to believe that with a cast as stron...\n I saw this film in the worst possible circumst...\n A charming, funny film that gets a solid grade...\n ... but the keyword here is \"usually.\" I have ...\n Oliver Hardy awakens with a hangover and soon ...\n I am quite sure that this was the worst movie ...\n Surface is one of the greatest t.v. series I h...\n I taped The Morrison Murders on Lifetime Movie...\n I love this show. It's clever and very well ac...\n Set in Providence, Rhode Island, Feeding the M...\n \"East Side Story\" is a documentary of musical ...\n I heard a few friends one day saying that \"Sca...\n This was the first televised episode of the Co...\n Director Spike Lee is famous for making films ...\n This is the epitome of bad 80's film-making, u...\n Susan Sarandon and Natalie Portman play Adele ...\n OhMyGAWD!!! THE MAGIC GARDEN is perhaps one of...\n That someone could have conceived this nonsens...\n Since most review's of this film are of screen...\n The first \"side-story\" in the universal centur...\n 'The Student of Prague' is an early feature-le...\n Frailty is a non-gory horror film that achieve...\n Other reviewers have summarized this film noir...\n A painfully protracted, maudlin and predictabl...\n As romantic comedies go, this was a cute and w...\n As is well-known among long haired youngsters ...\n The best Laurel and Hardy shorts are filled to...\n Spike Milligan's books and plays have defeated...\n A longtime fan of Bette Midler, I must say her...\n In this episode, Locke and Eko go searching fo...\n I actually trawled through the entire set of r...\n Jim Henson as Kermit, Dr.Teeth, Rowlf and Wald...\n I have remembered this cartoon for over 50 yea...\n My first review at IMDB, after a few years of ...\n about a year and a half ago my dad told me abo...\n I had seen this film way back in the 80's and ...\n The entire 10:15 minute presentation is done i...\n I recently bought the DVD, forgetting just how...\n Just saw the movie, and the scary thing was, t...\n In 1850 in Yorkshire, a boy chimney-sweep is f...\n I have to say I am really surprised at the hig...\n This film was the most longest film and the re...\n Tex Avery's tenure as director of cartoons for...\n This has some excellent spots but the length o...\n Absolutely nothing. The movies that are great ...\n OK, I just flipped channels and caught DW3. I ...\n I've seen a lot of bad movies in my life. Date...\n The thing I remember most about this film is t...\n Well this movie actually made me feel so stron...\n Eric Valette is obviously a talented film-make...\n Mystery Men is one of those movies that gets f...\n Halloween:The Curse Of Michael Myers is probab...\n Full disclosure: I was born in 1967. At first ...\n This show is actually pretty good. Like all sh...\n This was a gem. Amazing acting from the leads ...\n This Hamlet made for one of the boringest MST3...\n As I'm listening to my parents watch this (aft...\n This interesting documentary tells a remarkabl...\n Especially after watching THE MATRIX RELOADED!...\n I read that Jessie Matthews was approached and...\n Honestly, this is a very funny movie if you ar...\n Lloyd Hamilton was one of the most imaginative...\n I'm not a big fan of musicals, although this t...\n Epic early film, directed by D.W. Griffith. Ma...\n A family (mother-Patricia Clarkson, father-Jak...\n Everything about this movie was bad, the actin...\n Yuck. I thought it odd that their ancient book...\n I stopped watching this POS as soon as the sna...\n A particularly maligned example of Italian cul...\n Mike Nichols in finest form. I was not a fan o...\n I´m only joking. This was potentially the wors...\n Maybe I saw a cleaned up version, but other th...\n This was an impulse pick up for me from the lo...\n The role of economics in the industrialized No...\n Part of what was so great about the classic Lo...\n I saw this when it first came out and have see...\n \"One True Thing\" is the kind of movie where th...\n This is the type of late-night cable flick usu...\n Affable aspiring cartoonist Hoops McCann (a wo...\n Critters 4 is a good movie. A bit of a twist t...\n ***SPOILERS*** Whatever else can (or can't) be...\n Saw this 'film' recently and have to say it wa...\n I waited long to watch this movie. Also becaus...\n Night hunter is a sold B style action movie. G...\n As an impressionable 10 year old, I liked the ...\n I am assuming that the rave reviews on this pa...\n Someday somebody is going to write an essay co...\n A respectable royal rumble event<br /><br />1....\n I have seen many - possibly too many straight-...\n There's nothing to say except I want my time b...\n I loved it. I had just sat through half of \"Th...\n In my opinion, a good documentary - especially...\n Sometimes I wonder if today's horror movies re...\n As you may or may not have heard, there is no ...\n Well, after long anticipation after seeing a f...\n Sandra Bullock paints a believable picture as ...\n In 1242, Russia in being invaded by two sides:...\n *SPOILERS*<br /><br />I don't care what anyone...\n A heap of human flesh lies asleep on a red pil...\n Well I just discovered IMDb from my twin siste...\n In 1858 Tolstoy wrote this in his diary: \"The ...\n 'Say Yes' is one of those flicks that you keep...\n Fay Grim is a true example of what I call a co...\n I was fortunate enough to record this wonderfu...\n Outside Sweden you are not expected have seen ...\n -only few can understand Leland's character, a...\n Leonard Rossiter and Frances de la Tour carry ...\n I just don't see how a Concorde-New Horizons f...\n This was a movie about infidelity and revenge....\n One more classic performance by Maniratnam and...\n After viewing this movie, lets say, around 8 t...\n The movie is wonderful. It shows the man's wor...\n This isn't exactly a complicated story. It's n...\n Prot (Kevin Spacey) is a mental hospital patie...\n Utterly pretentious nonsense. The material is ...\n Now for the truth, its very very weak storylin...\n This movie really shows its age. The print I s...\n This movie was one of the longest movie watchi...\n Ok, even if you can't stand Liza- this movie i...\n IMAGINARY HEROES is one fine little film! Writ...\n After sitting through the trainwreck that was ...\n Being a former MST3k watcher, even I found thi...\n The opening scene of this film sets the pace f...\n Greta Garbo stars in 'Anna Christie', a very e...\n Better than it has any right to be, this movie...\n A fantastic Arabian adventure. A former king, ...\n Considering that this movie had a serious and ...\n I really wanted to like this movie, but the pa...\n I really loved this movie and so did the audie...\n Spend your time any other way, even housework ...\n OK heres what I say: <br /><br />The movie was...\n I was pleasantly surprised by how good the mov...\n I found Grey Garden's to be a gripping film, a...\n Worst Bob Hope comedy ever(and that includes s...\n I was looking on Imdbs bottom 100 because i th...\n A group of friends come face-to-face with a fa...\n In the ravaged wasteland of the future, mankin...\n this is the 4th movie in the Karate Kid series...\n I didn't know it was possible to release a mov...\n I think a round of applause is in order for wh...\n As soon as I saw the ad for \"Changi\" on the Hi...\n This movie is nothing more than Christian prop...\n This is a refreshing, enjoyable movie. If you ...\n This movie was offensively PC, predictable and...\n While trying to build a major mall or complex ...\n I loved this film, Independent film-making at ...\n ...is the only way to describe this movie abou...\n This movie was sheer, slow, plodding torture. ...\n I don't usually comment, but there are things ...\n At times I really wonder when I look at the c...\n Although dated, this film is definitely worth ...\n The film-school intellects can drool all they ...\n I had high expectations for this movie and was...\n The DVD jacket in which this movie came descri...\n Cultural Vandalism Is the new Hallmark product...\n I'm not a big musical fan, but this is one of ...\n I have recently seen a string of caving movies...\n too bad this movie isn't. While \"Nemesis Game\"...\n \"Jaded\" offers a premise with potential as it ...\n ALICE is the kind of movie they made in the 30...\n THE ODD COUPLE (3+ outta 5 stars)<br /><br />L...\n Always enjoy great films which deal with the s...\n Edwin Porter's 1903 short film entitled \"The G...\n I enjoyed this film very much.Tobey Maguire gi...\n I have to admit that Purple Rain is one of my ...\n A wonder. One of the best musicals ever. The t...\n The centurions is one of the best cartoons eve...\n this was one of those $.50 cent deals of yore-...\n 'Traffik', despite its title, is not really ab...\n There are no flaws in this production. Perfect...\n Something not-so-great. \"Silence of the Lambs\"...\n This movie had mediocrity, laziness, and thoug...\n From the acclaim it got I was expecting more f...\n Greenaway's films pose as clever, erudite and ...\n AVP2 is an awful movie. The dialogue was point...\n If you have not seen this excellent movie abou...\n i stopped this movie at 48 minutes and change....\n Its a feel-good movie that made me feel good. ...\n I just saw this movie at the Berlin Film Festi...\n No, *Hitch* is decidedly NOT a romantic-comedy...\n A lot has already been said on this movie and ...\n Based on the Korean legend, unknown creatures ...\n I'm not a big fan of the Stooges' slapstick, b...\n I rented this flick for one reason Tom Savini,...\n Absolutely fantastic. <br /><br />Now, before ...\n OK, so this film is well acted. It has good di...\n This is a decent movie. Although little bit sh...\n Cops Logan Alexander and Debbie Rochon escort ...\n Once again seeing this kind of movies turns me...\n As a rule, there are few things more dispiriti...\n \"Wild Tigers I have Known.\" It will only be sh...\n After I first saw this, I thought, \"Wow, this ...\n Ever want to see a movie where Chuck Norris ta...\n In some scenes in the Rain People, Francis For...\n Usually, I know after the first minute of a mo...\n A great film this, and a shame that it will re...\n *May contain spoilers* *May contain spoilers*<...\n I saw this black and white comedy noir yesterd...\n Spoilers I loved the later episodes from colle...\n OK, what was this story about again? I am afra...\n Wasn't sure what to expect from this film. I l...\n Produced at a point in his career, where he ha...\n If we could have \"Separate Tables,\" why not \"S...\n This was a great movie! It was a completely en...\n It isn't the worst film ever made, the actors ...\n First, I must say that I don't speak spanish a...\n I have lost count of just how many times I hav...\n For people interested in business and the corp...\n Much of the commentary on this board revolves ...\n Thus starts \"One Crazy Summer\", the evil twin ...\n The movie starts with a board meeting at a maj...\n Watching the commercials for this movie, I was...\n I just attended a preview screening of this fi...\n Robin Williams is a genius. One of the best co...\n This movie is by far the cutest I have seen in...\n Is Thursday an original film? Heck no, but it ...\n This movie is a quite fair adaptation of the P...\n I thought this was a truly awful film--I found...\n Horrendous pillaging of a classic.<br /><br />...\n There's a group of Fox TV executives sitting a...\n While this movie isn't a classic by any stretc...\n As Muppet movies go, this is easily and clearl...\n This movie is about Viola (Amanda Bynes) and h...\n Since the start of her career in the 70's and ...\n If Dick Tracy was in black and white, the pope...\n Universal's answer to \"The Exorcist\" isn't a v...\n This is a depressingly shallow, naive and most...\n There is not much to say about this one except...\n Trash/bad movies usually ain't bad because I w...\n This is a real eye candy. A world made of floa...\n There are just so many things wrong with this ...\n Even Disney are guilty of the cash cow disease...\n \"They were always trying to get me killed,\" Al...\n This is possibly one of my favorite films. It ...\n We'll never see this movie broadcast by HBO in...\n Everyone agrees about the technical excellence...\n This is such a great movie \"Call Me Anna\" beca...\n I love this movie so much. It always makes me ...\n A very tired looking Burt Reynolds plays a mer...\n Before I start, I _love_ Eddie Izzard. I think...\n <br /><br />Back in his youth, the old man had...\n i saw this movie last night and even after a c...\n There are laughs in this film, that is for sur...\n For two of the funniest comedians, the movie w...\n A great slasher movie -- too bad it was the pr...\n I didn't approach \"Still Crazy\" with any real ...\n I am almost a two decade old human who's been ...\n If you've ever seen this movie, you'd know tha...\n I am a chess player and I wanted to like this ...\n When you wish for the dragon to eat every cast...\n I think this film has much to recommend it, pa...\n Rs.30/- is all I paid as rent for the DVD of t...\n Richard Dreyfuss is, indeed, in this flick, bu...\n When I saw this movie, I couldn't believe my e...\n this movie has a great chase scene, if you lis...\n This is a pretty interesting experiment to wat...\n I really, really wanted to like Julian Po. I t...\n Really, This movie should be released to DVD. ...\n In a year when \"Singin' in the Rain\" and \"High...\n To even say that this film is Sebastien's work...\n As a WWII naval history buff, and someone who ...\n After an astronaut dies in space, he is brough...\n I first saw this film in Austria when it first...\n The last film that provided a vivid and distur...\n a scarily real drama, there isn't another dram...\n I live and work in Lexington, Kentucky, the to...\n Many people thought that this is a good movie ...\n Evil warlord puts a town through pain and suff...\n Ettore Scola, one of the most refined and gran...\n Eleven different Film Makers from different pa...\n There are bad movies, then there are the movie...\n If this is a 2008 product from one of the bigg...\n I really liked this movie, and went back to se...\n Had I been familiar with the stage production ...\n ''Queen of the Damned '' is one of the worst a...\n I was so surprised by how great The Man In The...\n This is, without a doubt, the most offensive \"...\n Another Downey must-see! If you are an obsesse...\n I didn't know much about this movie going in- ...\n I must be that one guy in America that didn't ...\n I knew next to nothing about this movie until ...\n The Merchant of Venice 8/10<br /><br />(This r...\n The magnitude of the Stalingrad tragedy is con...\n Peter O'Toole is Arthur Chipping a Latin Teach...\n To quote the film, \"It's better not to know. B...\n Being a person who does not usually enjoy boxi...\n The most hillarious and funny Brooks movie I e...\n Tom is listening to one of those old-time radi...\n Easily the worst movie I have ever seen in my ...\n This turned out all right and looks interestin...\n I rented the film (I don't think it got a thea...\n Years ago \"MA2412\" the feature film tried to b...\n I fully agree with the previous reviewer. Ther...\n My brother brought this movie home from the re...\n THIS IS NOT A CHILDREN'S MOVIE!!!<br /><br />T...\n Aaran is one of the movies where you find the ...\n The storyline is a ticked off claim jumper mad...\n <br /><br />\"Bleak House\" is hands down the fi...\n Pat Conroy's autobiographical book \"The Water ...\n I've never really been sure whether I liked th...\n Even a decade after \"Frontline\" aired on the A...\n Any film which begins with a cowhand shagging ...\n This is one of the best bond games i have ever...\n De Sica is becoming one of my favorite directo...\n This is the fifth von Trier film I have seen. ...\n Checking Out will be released Friday September...\n I have always liked this comedy as one of the ...\n It is written in stone that Disney animations ...\n I rarely give ratings less than 5, but in this...\n 99.999% pure crap. And the other .001% was a b...\n This is horrific. No really, this is ,bar none...\n seriously i loved this film..i had started to ...\n This is definitely one of the best Kung fu mov...\n I agree with another user here and have to say...\n Yaaaaaaaaaaaaaawwwwwwwwwwwwwwwwwnnnnnnnnnnnnn!...\n This is probably the worst film I have ever se...\n This movie is so bad it's funny. It stars Scot...\n First I have to say that I have read everythin...\n This short, a formative cartoon featuring Pepe...\n Wow. I just saw Demon Wind a little while ago,...\n Flavia the Heretic is an undeniable work of ar...\n Firstly, I am not easily scared by... Anything...\n I won't spend a lot of time nor energy on this...\n There is nothing not to like about Moonstruck....\n That is the promise of the trailer I saw and b...\n I think that the shots and lighting were very ...\n This interesting Giallo boosts a typical but s...\n I've seen a great many films, but 'In Cold Blo...\n Thank god for this movie. It's a document of t...\n This show was crap when it first came on. The ...\n I saw this movie about a week ago and still ke...\n \"Please, don't kill me! I'm just an actor!\" \"C...\n This is the worst movie I have ever seen in my...\n This movie is one long chiche after another. F...\n I have no idea why everyone hates this movie t...\n This was pretty inevitable. This movie borrows...\n This movie is a perfect example of Barkers cin...\n This indie film is worth a look because of the...\n I usually talk a bit about the plot in the fir...\n The most embarrassing moment in this film is w...\n When the circus comes to town and places the l...\n Kahin Pyaar Na Ho Jaaye is a great family movi...\n Wow, Jeez, I don't even know where to begin co...\n This film is too good for words. Its so unbeli...\n This film, based on the book by Pascal Laime' ...\n COMING on the heels of that 1970's \"Blackploit...\n Well made and stylish while still ultimately m...\n i was lucky enough to read the book beforehand...\n Pepe Le Pew can either really creep you out or...\n Decent enough with some stylish imagery howeve...\n Some critics have compared Chop Shop with the ...\n when you get to the scenes that involve Albert...\n i had gone to the movies expecting to see a gr...\n <br /><br />In Japan and elsewhere in Europe n...\n What were they thinking at \"Cannes\"? One of th...\n I grew up in New York and this show came on wh...\n \"Moonstruck\" is a movie that I liked the first...\n I enjoyed this movie, granted it is mainly bec...\n Etienne Girardot is just a character actor--th...\n This silly movie is really fun for the younger...\n Betty Sizemore (Renee Zellweger) lives her lif...\n spoilers<br /><br />This movie is not action p...\n The production company for this film calls its...\n Hmm, IMDb rating of 7.5, good comments, bla, b...\n Poorly structured, badly written, loaded with ...\n I know this is a made for TV movie, and the ac...\n Angels who got a little icky were banned from ...\n There is no story! The plot is hopeless! A fil...\n Telly Savalas put on a passable (but no better...\n amazing movie I saw this movie for the first t...\n \"The Italian Job\" is a caper movie done by the...\n It would be unwise to judge that that either n...\n I watched this film for the second time tonigh...\n Dominick (Nicky) Luciano wears a 'Hulk' T-shir...\n Worth watching twice because of the rapid-pace...\n The most accurate description of how Billy Cry...\n I saw it in Europe-plex. Great movie!! <br /><...\n In the 1940s, Veronica Lake made a meteoric ri...\n That's a snippet of choice dialogue delivered ...\n The Young Victoria is a beautiful film and has...\n I can't say that this movie deserves a ten, be...\n Sylvester the cat stowaway upon a ship that Tw...\n OK, so Mr. Agrama's company (which is involved...\n I question anyone saying they don't care for t...\n Comic secret agents have made a comeback in re...\n Strange enough, shorts like this get a 10. Why...\n beautifully constructed, \"Traffik\" tells the s...\n Just re-saw this last night and to put it blun...\n This show was absolutely great, and I always l...\n Seriously - avoid this movie at any cost. I ju...\n Recap: Not entirely familiar with the Shakespe...\n It has been 16 years since it's original run, ...\n I'm an animator myself and an all around buff ...\n The movie had no excitement and does not have ...\n i just got puzzled why damn FOX canceled the s...\n This is definitely the biggest surprise of the...\n The First Power (1990) was a terrible film tha...\n I've always believed that David and Bathsheba ...\n I have recently gone to the movie theatres to ...\n Rose  Does anything actually happen in this e...\n No spoiler needed to steer you clear of this.....\n I was willing to go with the original _Cruel I...\n As I am from Hungary I have heard many people ...\n Movies just don't get worse than this. Horribl...\n A singularly unfunny musical comedy that artif...\n Predictable Unmotivated Pointless Caricatures ...\n An interesting period picec showing us what wa...\n This is a great example of a good, dumb movie....\n I laughed a lot while watching this. It's an a...\n I'm in Iraq right now doing a job that gives p...\n The week before I saw Iowa, I saw Art School C...\n If you want to see intelligent, philosophical ...\n There were so many things wrong with this movi...\n I am sitting here writing this review and the ...\n Yul Brynner was a symbol of villein in the tin...\n \"Boogie Nights\" is a masterpiece it tells a gr...\n A group of teens have their car break down in ...\n Most critics seem to have dismissed this film,...\n I can't believe I watched this whole movie. An...\n As most of you, I've watch a lot of great movi...\n Living just down the Hwy from Georgetown, Co.....\n ***Possible Plot Spoilers***<br /><br />I ador...\n The silent film masterpiece Battleship Potemki...\n After missing out on this innumerable times on...\n I did not think Haggard was the funniest movie...\n I saw this film (it's English title is \"Who's ...\n I'm kinda torn on DARK ANGEL. The film appears...\n The only reason I didn't fall asleep during th...\n After the turning point of NIGHT MUST FALL, Ro...\n Mr. Bean has shaped the face of British TV com...\n I love it when they actually do a sports story...\n Too Much of Something Borrowed Grade B-<br /><...\n \"Film noir\" is an overused expression when it ...\n With some films it is really hard to tell for ...\n .......Playing Kaddiddlehopper, Col San Fernan...\n The synopsis for this movie does a great job a...\n OK. First said, I just wanted to check whether...\n Home Alone 3 is one of my least favourite movi...\n Young Warriors (1983) <br /><br />While this i...\n Ladies and gentlemen, allow us to introduce to...\n gone in 60 seconds is a very good action comed...\n This is fantastic! Everything from the Score -...\n Once again Woody Allen seems to be completely ...\n OK..this movie could have been soooo good! All...\n When you typically watch a short film your alw...\n I have to say that there is nothing wrong with...\n Kind of a guilty indulgence nowadays, this use...\n As a fan of author John le Carre I've slowly b...\n This film is a powerful commentary on family l...\n This representation of the popular children's ...\n \"You know - I've been in some towns where the ...\n The movie has a good story line, the action is...\n The Andrew Davies adaptation of the Sarah Wate...\n I love Zombie-Movies and I love amateur-produc...\n I blubbered like a little girl during the endi...\n I was skeptical before going to this because o...\n Wha-BAM! Someone surely had fun devouring a wh...\n Jane Eyre_ is one of the greatest novels in th...\n Thank the Lord for Martin Scorsese, and his lo...\n Kirsten Dunst is terribly overrated as an actr...\n I caught this during a brief run in a Philadel...\n So far after week two of \"The lone of Beauty\" ...\n Spider-Man is in my opinion the best superhero...\n I noticed that this film has taken the brunt o...\n Frank McCarthy who produced the Academy Award ...\n Everyone's already commented on the obvious fa...\n There is great detail in A Bug's Life. Everyth...\n I saw the film yesterday and really enjoyed it...\n It's proof that movie makers and their financi...\n It is such a shame when actors and actresses o...\n It's rare that I sit down in front of the TV s...\n Advertised by channel seven in Australia as th...\n Having broken into a secret database file for ...\n In the beginning, with the careful, remote loc...\n This is a strange, little, forgotten movie fro...\n This has no relationship to Virtual Encounters...\n I've seen this film at least 4 times since '84...\n This is the only film I've seen that is made b...\n its great i loved it ha cause i love dinosaurs...\n First i gotta say that this film is way less p...\n Came across this film recently after so long h...\n No, this is not no Alice fairy tale my friends...\n Years after the fall of the last of the great ...\n Following the pleasingly atmospheric original ...\n It's not often I feel strongly enough to post ...\n Strummer's hippie past was a revelation, but o...\n I was very willing to give Rendition the benef...\n ZP is deeply related to that youth dream repre...\n What should i say? I only saw this flick for c...\n It worked! Director Christian Duguay created a...\n Robot Holocaust is about the lamest, most path...\n THE MATADOR is hit-man movie lite....if you ca...\n I have recently watched this movie twice, and ...\n \"Caribe\" is not a masterpiece in any of its st...\n Normally, I don't like revenge films....PERIOD...\n This movie almost has everything. The action i...\n Quite possibly the nicest woman in show busine...\n \"Emma\" was a product of what might be called b...\n I will confess that once I started watching th...\n a compact crime drama with a good amount of ac...\n stars: Danny Devito, Billy Crystal, Anne Ramse...\n I find it disconcerting that in an era when sa...\n It's really a shame to see so many talented pe...\n The only reason I give this movie 8/10 stars, ...\n Not sure if this counts as a spoiler or not, s...\n Writer/director Henry Brommel has done a wonde...\n Yes, this film gets a lot of attention and is ...\n Ah the sci-fi channel. How often do you disapp...\n Homicide: The Movie proved to be a good wrap-u...\n A 2006 online poll of Japan's top 100 favorite...\n Frankly I did not think there was anything hum...\n If Mulder was looking for his real father here...\n I watched the first 15 minutes, thinking it wa...\n This is possibly the worst of all the Columbo ...\n I am writing this review having watched it sev...\n This movie is hilarious, bright and insightful...\n it aint bad, but it aint good. it is just ente...\n Tarzan and his mate(1934) was the only Tarzan ...\n Okay,. so I went into this loving RuPaul. I st...\n Following the appalling Attack Force, chances ...\n Worse than mediocre thriller about an abused w...\n I can't say that this film deserves anywhere n...\n somewhere i'd read that this film is supposed ...\n Simply put, this is the worst movie since \"Pol...\n This is a great documentary and above comments...\n again such kind of zero-budget digital-video c...\n 'Iphigenia' is the great achievement of Michae...\n This is said to be a personal film for Peter B...\n I love Memoirs of a Geisha so I read the book ...\n UP AT THE VILLA (2000) **1/2<br /><br />WARNIN...\n Yikes! and we all thought Joan Crawford was TH...\n Although it was released way back in 1967, IN ...\n Henry Hathaway was daring, as well as enthusia...\n I have to say this is one of the worst films I...\n Just finished with Zombie Bloodbath part one o...\n In my opinion this is the best Oliver Stone fl...\n Tsui Hark's visual artistry is at its peek in ...\n The late Dudley Moore had the most famous role...\n When I heard this film was directed by Ang Lee...\n This movie was great don't understand the disr...\n Disappointing and irritating. The screenwriter...\n The problem with so many people watching this ...\n I will probably always go to see a Woody Alleb...\n Let me waste a moment of your time to explain ...\n Wow. What a terrible adaptation of a beautiful...\n Drivel. Utter junk. The writers must not have ...\n One of the last classics of the French New Wav...\n As it is often the case, the impressive and ex...\n I am a huge horror fan, particularly Spanish h...\n A bad rip-off attempt on \"Seven\", complete wit...\n I have seen bad movies before, but this one ta...\n The Underground Comedy movie is perhaps one of...\n I had the pleasure of seeing Saltimbanco live ...\n This movie was made for people who found Greml...\n i liked this movie a lot.I rented this expecti...\n I watched the movie with tears and smiles alte...\n This film is like marmite. You either love it ...\n James J. Corbett's autobiography \"The Roar of ...\n Growing up with the Beast Wars transformers, I...\n I don't mean to sound pretentious here, but to...\n Why does everyone feel they have to constantly...\n I pulled down a VHS box from my vast collectio...\n ...than you easily spot the biggest fault of t...\n I saw this movie at a 'sneak preview' and i mu...\n I bought this a while ago but somehow neglecte...\n If I had to decide which was the best Ernest m...\n This is absolutely the worst movie I have ever...\n I have waited a long time for someone to film ...\n In many ways DIRTY WORK is a predictable L&H s...\n What is wrong with American movies these days?...\n I ordered this extremely rare and highly overr...\n I can understand how fans of filmmaker Roman P...\n There have been very few great comedy films in...\n ......in a horror movie that is. Alright first...\n If you seen Rodney Dangerfield's previous movi...\n Wow, this film was just bloody horrid. SO bad ...\n Nothing to watch here. It's all been done (and...\n Film starts in 1840 Japan in which a man slash...\n Of all the movies I've seen, this one rates al...\n VERY BAD MOVIE........and I mean VERY BAD...TH...\n Actually, the movie is neither horror nor Sci-...\n I had never read Shakespeare's Hamlet before w...\n This movie was talked about in Fangoria where ...\n A bizarre and brilliant combination of talents...\n One of the most successful shows in television...\n This film is about a family trying to come to ...\n Let me start by saying that \"War, Inc\" is not ...\n This is a Black and White film from France,<br...\n This would have been my number one movie of th...\n Newly-pregnant Knight bolts from husband for n...\n This place in England during 1940. Three orpha...\n I did enjoy watching Squire Trelane jerk aroun...\n Wow. When I went to this film at the Toronto f...\n I though that it was hard, if not impossible, ...\n Poorly acted, poorly written and poorly direct...\n ...you know the rest. If you want a good zombi...\n I always look forward to this movie when its o...\n I like Billy Crystal, and I thought it would b...\n I had watched several days film shooting of th...\n Regardless of whether the predominant social m...\n First off, this is no where near as bad as som...\n As it is in Heaven {SPOILER WARNING)<br /><br ...\n First thing first . In this genre movie the fi...\n I saw the movie after checking its rating on I...\n I live in Missouri, so the direct effects of t...\n carrot top in a full length movie, enough said...\n Wow...what can I say...First off IMDb says thi...\n This is Not a Love Song.<br /><br />My one wor...\n The SF premise isn't unique (although it prett...\n In this film, the astronauts sent to explore a...\n this is an example of a movie that can have gr...\n ***SPOILERS*** Let's start with the \"good\" of ...\n Japanese animators have a unique freedom with ...\n I would like if they brought back surface. I r...\n This movie was, in one word, terrible. It was ...\n Sequels have a nasty habit of being disappoint...\n Black Candles is rather a muddled mess from th...\n what is wrong with you people, if you weren't ...\n With this topic, it is so easy to take cheap s...\n Below average blaxpoitation action / melodrama...\n If you have never read the classic science fic...\n It's interesting that someone made a compariso...\n one day someone said lets redo the mod squad w...\n I am compelled to write a review of this IMAX ...\n I have a high tolerance for the weird, but fra...\n Although this lovely work of art does use some...\n ***Might not consider this having a spoiler, b...\n I admit not being that fond of Oliver! as a yo...\n 'Steamboat Willie (1928)' is often erroneously...\n I am not sure who is writing these<br /><br />...\n This had to be one of the worst films ever. Wh...\n Like Steven Seagal I also am a big Van Damme f...\n Does anyone happen to know where this film was...\n OK, I really don't have too much to say about ...\n It's a shame House Calls isn't better known. I...\n So you might be reading some of the comments p...\n The dudes at MST3K should see this dog of a fi...\n This show is great. Not only is \"Haruhai Suzum...\n I just finished watching this on TV and what c...\n My friend and I picked \"Paperhouse\" out of a r...\n I've loved this movie for a LONG time. I hadn'...\n I really tried to like this movie. It deals wi...\n These two stars are the only iconic heroes/vil...\n I just saw a press screening of this film and ...\n In the winter of 1931, supposedly 12-year-old ...\n A blatant rip-off of \"Air Bud\", this movie is ...\n A chance encounter between a salesman and a hi...\n I have watched this movie on and off since it ...\n Having been born and raised in Odessa, and hav...\n Having enjoyed Jean Arthur in \"The Devil and M...\n no really, im not kidding around here folks, a...\n This is the first sci fi series that I have se...\n This movie is hilarious. The laughs never stop...\n This really is one of the worst movies ever ma...\n There are many mysteries in life. For example:...\n Despite the apparent structural similarity wit...\n Some news reporters and their military escorts...\n During the summer, the cue line for this attra...\n From what critics and audiences indicated, BIR...\n Sophmoric this film is. But, it is funny as al...\n Prolific and highly influential filmmaker Mart...\n If I remember, Ira Gershwin, the lyricist and ...\n A female ex-cop who was drummed out of the for...\n This is an excellent documentary, packed with ...\n Even though i am slightly older than the recom...\n George Barry's \"Death Bed: The Bed That Eats\" ...\n The gang is back for more! Ron Howard and Cind...\n Six for the price of one! So it is a bonanza t...\n Police, investigations, murder, suspicion: we ...\n Another American Pie movie has been shoved dow...\n The comparisons between the 1995 version and t...\n Altioklar's populist approach manifests itself...\n What's up with Robert \"Pretentious\" Altman? Wa...\n In keeping with Disney's well-known practice o...\n I had a lot of hopes for this movie and so wat...\n A movie that tries hard to say something and g...\n Amateur, no budget films can be surprisingly g...\n The acting in the film is really well done hon...\n China O'Brien (1990) was an attempt to make Cy...\n The King Maker is a film about a series of rea...\n Jay Chou plays an orphan raised in a kung fu s...\n The Good Thing about this movie: The concept i...\n Anywhere But Here is not exactly anything new,...\n This film is one of those that has a resoundin...\n To quote one critic's review of the movie, \"it...\n I've seen 'NSNA' just after I've seen all Roge...\n In Iran, women are not permitted to attend men...\n Robin Williams shows his stand-up talents and ...\n This absolute trash is based so closely on the...\n To many people, Beat Street has inspired their...\n The biggest problem that the TV program Key We...\n After reading through many of the reviews, I d...\n Paul Reiser is one of my favorite people in sh...\n Stifler, has finished running his naked mile a...\n This is an OK adaptation, but not as good as t...\n Although not the most technically advanced fil...\n I'm big into acting, writing, and directing, b...\n I bought this DVD for my young son who loves t...\n This is one of the worst films I've seen in ye...\n This is the worst film I've seen in a looooong...\n Take a look at those faces alongside the entra...\n I saw this movie in sixth grade around Christm...\n This is really a terrible film by any of the r...\n If you are wondering where many of the conspir...\n A March 1947 New York Times article described ...\n This Movie was Great and Funny. Pauly is Funny...\n Seriously engaging, intelligent and thought pr...\n In complete contrast to the opinions of the ot...\n When a friend gave me a boxed set of \"12 Amazi...\n \"Deliverance\" is a dead-on example of what won...\n Absolutely one of the worst movies of the year...\n The reason why people say that this movie scar...\n I have just managed to get hold of the Celesti...\n I honestly have to say that I could not stop w...\n We laughed our heads off. This script is so in...\n me and a coupla friends form university - albe...\n In the 1930s, Hal Roach Studios was on top of ...\n Well.....I wouldn't want to lecture anybody bu...\n Rented this tonite from my local video store. ...\n To be honest I knew what to expect before I wa...\n Madhur from CHANDNI BAR started making realist...\n Corniness Warning. As many fellow IMDb users a...\n A trite fish-out-of-water story about two frie...\n Some movies are not for everyone. This accurat...\n In an attempt to cash in on the success of Uni...\n Well, i thought the movie was blah 1/10.<br />...\n IVAN (Marco Ricca) and GILBERTO (Alexandre Bor...\n I sat through this at GenCon only because it w...\n Flesh Feast starts at Miami Airport, ace repor...\n The John Van Druten Broadway hit is brought to...\n Big disappointment. CLASH BY NIGHT is much to ...\n Loved today's show!!! It was a variety and not...\n This is without a doubt one of the best movies...\n I had high hopes for Troy and I am so bitterly...\n The first half of this version was the best I'...\n With WWII over, movie studios quickly rushed t...\n VAMPYRES <br /><br />Aspect ratio: 1.85:1<br /...\n If you are a six-year-old boy who's into dinos...\n You know those films that have you trapped in ...\n I don't even understand what they tried to acc...\n Five Fingers relies heavily on barbaric, shock...\n This is one of the best Jodie Foster movies ou...\n When just days away before the film's premiere...\n The movie starts quite with an intriguing scen...\n When In Rome is a definite improvement on Gett...\n Watching That Lady In Ermine I was wondering w...\n Anton Newcombe and Courtney Taylor are friends...\n It's depressing to see where Jackie Chan has e...\n I rated this film 7/10 which is an average of ...\n This film stinks more than limburger cheese! I...\n As everyone knows by now, 15 Park Avenue is th...\n This is movie is actually one of my all time f...\n Although the plot of Cover Girl is very flimsy...\n That is quite an outdated movie which aims to ...\n A youth gets a bad hair day, goes out on a hil...\n Well, you might not actually SEE any women in ...\n photography was too jumpy to follow. dark scen...\n What's that there in the skies? Is it a plane?...\n The second of the Why We Fight Series concentr...\n Full House came to me when I was about 9. I re...\n Oh, this is such a glorious musical. There's a...\n This movie wastes virtually every actor's tale...\n This movie is so good I could watch it all day...\n Excellent pirate entertainment! It has all the...\n I really can't remember who recommended this, ...\n I must give credit to Billy Dee for trying to ...\n In a performance both volatile and graceful, A...\n The growth of tax funds and sale-and-leaseback...\n To begin with its a rip off of the Japanese fi...\n Dreadful! A friend of mine (who obviously thou...\n I really loved this original screenplay and th...\n Thursday is clearly derivative of the 'new wav...\n Great ensemble cast but unfortunately a bunch ...\n The folks at Disney have a lot to explain. Fir...\n A single mom,her son and daughter and their hi...\n I was waiting to welcome Arnold Schwarzeneger'...\n This movie is about pathetic, spoiled, ego-dri...\n The acting is excellent in this film, with som...\n This is a brilliant and well made contribution...\n Everything about this film is hog wash. Pitifu...\n This movie was almost intolerable to sit throu...\n The trailer to this film focused so much on th...\n Wow - Thank god I was on an airplane and could...\n If you haven't seen ZOMBIE BLOODBATH, you have...\n I wouldn't recommend this to anyone, except ci...\n So fortunate were we to see this fantastic fil...\n Someone must have been seriously joking when t...\n Just Before dawn is an excellent horror movie....\n A strange role for Eddie Murphy to take at the...\n This latter-day Fulci schlocker is a totally a...\n If you had asked me how the movie was througho...\n Well I must say this is probably the worst fil...\n The 74th Oscars was a very good one. Whoopi's ...\n Lovely little thriller from Hitchcock, with lo...\n I can't see the point in burying a movie like ...\n David Mamet's film debut has been hailed by ma...\n This is the best thing Burt Reynolds ever did ...\n Combine good casting, bad writing, good orches...\n I absolutely LOVED this Soap. It has been one ...\n This is truly awful, the feeblest attempt at a...\n A demented scientist girlfriend is decapitated...\n J Carol Nash and Ralph Morgan star in a movie ...\n Gary Busey is the title character, Frank \"Bull...\n A good example of reversed, politically correc...\n I had to read I Know Why The Caged Birds Sing ...\n Where to begin? Anachronism? High tech cross b...\n The best Cheech & Chong movie so far!! Of all ...\n This is a terrible production of Bartleby, tho...\n I didn't know anything about this DVD when I h...\n John Huston's Wise Blood was a more horrifying...\n I was hoping for some sort of in-depth backgro...\n A very suspenseful giallo from the director of...\n this is a visual adaptation of manga with very...\n I agree with all aforementioned comments. This...\n I have always wanted to see the movie because ...\n The Coen's strike again. I had no presuppositi...\n In case you dear readers never heard, this mov...\n A handful of nonprofessional actors are terror...\n It seems like this is the only film that John ...\n This is an adaptation of an Edith Wharton work...\n I'm only rating this film as a 3 out of pity b...\n A while back I bought the Chinese box set of F...\n To think this film was made the year I was bor...\n Shintarô Katsu, best known for the Zatôichi fi...\n This movie sucked. The problem was not with th...\n Judging by the hype, and other reviews on this...\n It does come out of left field, and REALLY isn...\n ***1/2 Pierce Brosnan, Greg Kinnear, Hope Davi...\n In New York, in a morning close to Christmas, ...\n When the Legends Die is a powerful, moving sto...\n I went to see this movie expecting a nice rela...\n Writer/director John Milius takes a little-kno...\n Like most musicals of the era, one must check ...\n I thought that The sentinel was going to be a ...\n Sometimes, changes to novels when they're made...\n honestly.. this show warms my heart, i watch i...\n I really enjoyed \"Random Hearts\". It was shock...\n The magnetism radiated from Elvira, drawing he...\n Sweeping drama with great sets, costumes and p...\n ERROL FLYNN had one of his favorite roles as t...\n Well, what to say...<br /><br />Having seen th...\n It's amazing to think that this movie came out...\n Not the funniest movie ever.....but I have to ...\n I saw this on TV so long ago that I can't reme...\n Someone said that WEBS is a lot like an episod...\n When I heard that this movie was coming out th...\n Could easily have been better. In fact maybe s...\n I have very fond memories of this film, as I s...\n I was very excited about seeing this film, ant...\n I watched this movie after seeing it on Broadw...\n Since I had loved the Inspector Gadget cartoon...\n I wonder how someone could diss on this movie....\n Who knew they could be so funny?? Christopher ...\n This film was pure pain. Sitting in the theate...\n 'Rise of the Footsoldier' follows the unrelent...\n i have rated this movie a 1/10 and have done t...\n When Las Vegas came out one review described t...\n Absolutely awful movie. Utter waste of time.<b...\n Alien Warrior (or King of The Streets) is one ...\n Drug runner Archie Moses introduces his friend...\n Apart from the fact that this film was made ( ...\n as an inspiring director myself, this movie wa...\n I notice that the previous reviewer (who appea...\n After seeing the Harry Potter movies, I've bee...\n The IMDB plot summary erroneously makes it sou...\n \"Victor doesn't have much, but that's not stop...\n Trailers of this movie may show scenes of viol...\n I entered the theater to Sky Captain in 2004 e...\n At first look of the plot tagline I figured it...\n Writer/Director Bart Sibrel bases his work her...\n Although properly warned I actually sat down t...\n Some of those guys that watch films and compla...\n After some of the negative reviews i heard on ...\n I agree that Mary Woronov (Murdoch's secretary...\n This one gets better with each new look. Certa...\n Movie didn't have much plot and was uninterest...\n This is a film that revolves around two myster...\n This is a phenomenal movie. Truly one of the b...\n Although copies of this movie are hard to find...\n \"More\", maybe, is mostly remembered for the ex...\n I've never made one of these before, but this ...\n This is NOT as bad a movie as some reviewers, ...\n Imagine the worst skits from Saturday Night Li...\n I write this after just seeing the latest epis...\n A lot of people in the cinema enjoyed this fil...\n From the blocky digitised footage to the actin...\n Every time this film is on the BBC somebody in...\n This gripping tale of intergenerational love, ...\n MASSIVE SPOILERS AHEAD! OK the movie in a nuts...\n The quintessential Georgian film of Georgi Dan...\n After 2 years of using this site for movie rev...\n Just a stilted rip-off of the infinitely bette...\n Yes, Shakespeare would indeed have been proud....\n I must say it was a let down. Overall its grea...\n This docu-drama is what you would expect from ...\n This is one of the many Techno-phobic movies t...\n I'll start by admitting that I enjoy many movi...\n By the time it opened, \"Heaven's Gate\" had bec...\n Explores the frontiers of extreme boredom. Lif...\n This show is based on the concept that loud + ...\n I heard this film was much more stylistic than...\n \"Saratoga Trunk\" is a 1945 film starring Ingri...\n At least if you're a Disney fanatic (well, of ...\n I first saw a poster advertising this film on ...\n \"I have looked into the eye of this island, an...\n Recycled and predictable plot. The characters ...\n Vampires Vs. Zombies wasn't the original title...\n A great concept, a great cast, and what a pity...\n But George and Gracie's are not among them. Th...\n This film is much the same as Cannibal Holocau...\n Faith and Mortality... viewed through the lens...\n \"Maléfique\" is an example of how a horror film...\n Some describe CALIGULIA as \"the\" most controve...\n 'The Rookie' was a wonderful movie about the s...\n I ve finished seeing the movie 10 minutes ago....\n What is your freaking problem? Do you have not...\n With the badly injured Tony in an induced coma...\n It is very possible that I simply didn't give ...\n On seeing this movie, I didn't expect much. I ...\n Just plain good old stupid. <br /><br />I mean...\n A stunningly well-made film, with exceptional ...\n I always enjoy seeing movies that make you thi...\n First of all, I know almost nothing about rugb...\n If you have ever been, has a friend, or a kid ...\n I liked this probably slightly more than Terro...\n What can you say about a film that makes \"The ...\n I always wanted to see this film and when I fi...\n John Water's (\"Pink Flamingos\"...) \"Pecker\" is...\n In the light of the recent typhoon that hit th...\n Aro Tolbukhin burnt alive seven people in a Mi...\n As I sit and think about Poison for the Fairie...\n It occurred to me while the final scene of the...\n This is a strange sex comedy because there`s v...\n Oh so beautiful, oh so tearful and so gut-wren...\n I've become a big fan of the Carpenters, and I...\n Yeah, it's a chick flick and it moves kinda sl...\n Peter O'Toole is a treat to watch in roles whe...\n I absolutely love all of Tom Robbins books, so...\n This movie is a nice, cute family oriented fil...\n This film is justly famous as one of the most ...\n Barney and Friends is probably the worst kids ...\n Director Kevin Connor and wannabe action-hero ...\n Hellboy revolves around classic comic book/act...\n The Tooth Fairy is set in a small town somewhe...\n Charlie Chaplin's Little Tramp or Little Man c...\n If you loved the 1993 (erotic, sci-fiction)cyb...\n Perry Mason: The Case of the Glass Coffin find...\n Although this film put Davis on the map due to...\n The bad out takes from \"Reign of Fire\" strung ...\n Now, I've seen many many B-grade films in my 1...\n Were it not for the fact that this came as a 2...\n Just saw this movie today at the Seattle Inter...\n Skip McCoy is a three time loser pick pocket, ...\n Rich vs. poor. Big city vs. small town. White ...\n This movie was so awful, so boring, so badly m...\n Just finished watching this movie for maybe th...\n Both Killjoy 1 and Killjoy 2 stunk, but the fi...\n <br /><br />Spoilers<br /><br />I'm going to b...\n This movie was awful, plain and simple! The an...\n \"The Thing About my Folks\" came in as a surpri...\n They say that it is always better in horror mo...\n i loved catcher in the rye, it happens to be m...\n I saw it last night and I was laughing out lou...\n I agree with the majority of the comments I ha...\n Five fingers of death: Although previous Shaw ...\n May the saints preserve us, because this movie...\n A girl begins to notice that people in her sma...\n An original uncensored print of this amazing f...\n In a word...magical. And SO incredibly real. V...\n My goodness. This movie really really shows th...\n This may be one of the worst movies to ever ma...\n I am a big fan of the movie, but not for the u...\n Though I like E.E. \"Doc\" Smith's books and Dav...\n Why was this film made? Even keeping in mind t...\n Man, I really find it hard to believe that the...\n Stan & Ollie become SAPS AT SEA when their way...\n First of all, Ed Wood Jr. is not the worst dir...\n This 1988 movie was shown recently on a cable ...\n Seriously, I mean very seriously, when I first...\n One must admit, that Dev has an eye for beauty...\n I rented this back in the 80's and honestly ca...\n You know how Star Trek fans flocked to all the...\n For anyone who may not know what a one-actor m...\n Williamson's accent is tough to wade through. ...\n PRC which was the lowest of the low actually s...\n I sat through this turkey because I hadn't see...\n The subject of this movie is disturbing. How c...\n In the days before gore and sex took over, rea...\n Lauren Bacall was living through husband Humpr...\n According to IMDb, as well as to every other w...\n Alright lets break it down. Why is this one of...\n This is one of four 1970s movies by TV writer ...\n This movie is a gem! It is the story of Juliet...\n Oh Sex Lives of the Potato Men, what foul demo...\n Little did I know that when I signed up the th...\n I'm getting a little tired of people misusing ...\n Woah! Is one thing I can say about this movie....\n Why take a show that millions of us watched an...\n Yes, I know, Roscoe Arbuckle didn't like to be...\n TYSON <br /><br />Aspect ratio: 1.33:1<br /><b...\n Feeding The Masses was just another movie tryi...\n When I first read Hamlet, I couldn't help but ...\n The Knowledge is a typical British comedy for ...\n Time travel is theoretical, so I can give the ...\n **Possible Spoilers** Three young people on th...\n There was such a hype about a game show with B...\n The real Best Picture of 1947 also deals with ...\n Some of the acknowledged Altman \"masterpieces\"...\n Whatever the merits of the film, it is poorly ...\n Well to start off I was like, wow this is new,...\n Not so many people like the movies of Bertrand...\n Back in the 60's, this grim study of Joy, a yo...\n Wow, this movie is amazing. It is such an exce...\n A true stand out episode from season 1 is what...\n I thought this would be a fun comedy with no s...\n What's there to say about \"Pink Flamingos\"? It...\n Spending an hour seeing this brilliant Dan Fin...\n What can I say?? This movie has it all...Roman...\n SCARECROWS seems to be a botched horror meets ...\n What I liked best about this feature-length an...\n <br /><br />Giorgino is a strange, dark, obses...\n And I'm serious! Truly one of the most fantast...\n The movie is made in a style that resembles Lo...\n Some people have made a point of dissing this ...\n A sentimental story with a sentimental sound t...\n i can't believe that NONE of the official revi...\n The original \"les visiteurs\" was original, hil...\n I just saw \"Everything is Illuminated\" at the ...\n For the record, I am not affiliated with the p...\n This movie tackles child abduction from the po...\n After five years in prison, Tony le Stéphanois...\n Here's another Antonioni that will be rediscov...\n THE SOPRANOS (1999-2007)<br /><br />Number 1 -...\n The problem with this movie is that it is shot...\n NVA combines eastalgia-humor, military comedy ...\n I picked up this movie in the hope it would be...\n 6/10 Acting, not great but some good acting.<b...\n i love bed knobs and broomsticks so much that ...\n An actress making a movie in Africa is kidnapp...\n The basic hook here is: Lincoln Is Slow. It is...\n ** out of **** stars<br /><br />Let's see...14...\n Ok, where to start. I can't believe how many g...\n Some famous stories are prone to being moved t...\n first of all let's start out by saying that Ro...\n This film is pure Elvira and shows her at her ...\n One of the best movie-dramas I have ever seen....\n This film Oh my god this film is so poor , I'm...\n My wife and I have watched this movie twice. B...\n To me, this movie was just plain confusing, sl...\n I'm new to Argento's work, and if this and Sus...\n A talking parrot isn't a hugely imaginative id...\n Mr. Kennedy should stop ExPeRiMeNtIng with bad...\n Passport to Pimlico is a real treat for all fa...\n Professor Paul Steiner is doing research in ma...\n Curse of the Wolf starts as reluctant Werewolf...\n I was glad to watch this movie free of charge ...\n In Dublin, the crippled rebel Rory O'Shea (Jam...\n I just saw this film last night at Toronto Fil...\n This is by far the worst ever 'horror' movie, ...\n Ridiculous horror film about a wealthy man (Jo...\n Based on a True Story . . .<br /><br />The pre...\n I first saw BLOOD OF THE SAMURAI at its premie...\n Gilmore Girls is my favorite TV show of all ti...\n Hillary Swank is an unattractive piece of work...\n I loved this movie the first time I saw it. It...\n Another movie with a star of a wrestling. So f...\n I watched part one two days ago and today I sa...\n The main cast:<br /><br />Vlastimil Brodský .....\n 8 Simple Rules is a funny show but it also has...\n I won't lie, I rented this film because it was...\n Like almost everyone, I am familiar with the m...\n This is a 100% improvement over the dross of a...\n I have seen this wonderful production, and I w...\n I watch a lot of Vampire movies. I KNOW vampir...\n The Flock is unjustly maligned as a lesser \"Se...\n Steven Seagal is a thief who specializes in ro...\n Hines and Goforth, the perpetrators of this cr...\n I saw this movie in 1959 when I was 11 years o...\n If you take the Huxtable parents and blend the...\n i watched the longer version and could not tak...\n Hunk of trash only the Full Moon Studios could...\n German emigree and uber-hambone actor Paul Mun...\n people claim its edited funny but they had to ...\n This is one creepy movie. Creepier than anythi...\n Jordan takes us into the seedy crime side of S...\n Okay wait let me get this street, there are ac...\n This is by far my favorite film of all time. T...\n REVOLT OF THE ZOMBIES (2 outta 5 stars) No, th...\n At least among those movies with 100 votes or ...\n I rented this movie under the impression that ...\n Surreal film noir released soon after the \"rea...\n A very funny movie. Michael Douglas' \"do\" is w...\n Peter O'Toole gives a brilliant performance in...\n This was a dreadful, boring movie, even for a ...\n I have read several good reviews that have def...\n Considering its pedigree, this should be a far...\n The comments of the previous user are harsh in...\n Finally a thriller which omits the car chases,...\n The main complaint with this film is the fact ...\n THIS CONTAINS SPOILERS.<br /><br />I have rare...\n The significance of French title of this film,...\n This is a god awful Norris film, with one of t...\n If you ever see a stand up comedy movie this i...\n I got myself a copy of this film thinking it w...\n Cinderella is a beautiful young woman who is t...\n This movie has one redeeming feature. At one p...\n A group of four young men, attending a prestig...\n I was pretty enthusiastic about seeing this mo...\n This movie basically uses spousal rape as one ...\n Sigh I sincerely wonder why all the acclaimed...\n The widower family man Dan Burns (Steve Carell...\n Skilled professionals live it up in an exotic ...\n Can a mentally challenged black youth be a cat...\n This is both an entertaining and a touching ve...\n Ok i know the original Ghoulies aren't in this...\n This is a romantic comedy where Albert Einstei...\n With one of my very favorite actors, James Spa...\n You can't help but marvel at Hitchcock's early...\n This is a really great film! It gets you think...\n If you haven't seen this obscure little charme...\n This movie was rented by a friend. Her choice ...\n The Railway Children was on TV again this week...\n this was a thoughtful and well-shot and direct...\n The movie was very good when it came out, I at...\n The only time I have seen this movie was when ...\n Man on fire, is definitely one of the best dra...\n Overall, I thought it a very nice movie - I ha...\n Woody Allen has made some of the greatest come...\n I love the frequently misnomered \"Masters of H...\n There were at least a half dozen silent-film v...\n I feel Monarch Cove was one of the best writte...\n IT IS A PIECE OF CRAP! not funny at all. durin...\n Best-selling horror novelist Cheryl (a solid a...\n And that's saying a lot. Rent this if you want...\n Wow... what... a whirlwind. The 30's is a deca...\n Four words account for why this film was made ...\n Stewart's age didn't bother me at all in this ...\n or: It's a bird ? It's a plane ? No, look... I...\n As far as Spaghetti Westerns go, I'd put This ...\n I wasn't even born when this series was releas...\n boring stuff we got here. His 5 minute shorts ...\n This is one of the worst movies I have ever se...\n This film reminded me so much of \"A History of...\n I have vague memories of this movie being funn...\n This is perhaps the worst movie I have ever se...\n I have to finish watching a movie once I start...\n i've seen a movie thats sort of like this, wer...\n All the hype! All the adds! I was bummed that ...\n My children, DD 7 and DS 10, enjoyed the movie...\n Having watched this film years ago, it never f...\n I have seen the film a few days back on a vide...\n The implausibility of the plot has been noted ...\n Plot:<br /><br />- A Chair from EBay<br /><br ...\n Scott's collection of 80's icons cannot save t...\n This is officially the terrible, boring, corny...\n I watched fantabulosa! because over the last f...\n There is no director I like more than Mamoru O...\n Anna lives with her family in a new housing es...\n I first flicked onto the LoG accidentally one ...\n After being sent to prison for no less then 10...\n In 1930,Europe received quite a shock when Lui...\n What do you get when you have bad acting, bad ...\n The film had NO help at all, promotion-wise: i...\n I finally have seen the real reason why Peter ...\n Where to begin. This movie started out as some...\n I thought that Mr. Dreyfuss was perfect for hi...\n When setting out this film, director Mary Harr...\n Ali G was funny at first. His interviews were ...\n Surface is one of the best shows that I have e...\n What is it about the French? First, they (appa...\n This movie has problems in its presentation, m...\n A long film about a very important character f...\n **Possible Spoilers**<br /><br />This straight...\n This sad little film bears little similarity t...\n Crash is supposed to be a film about racism in...\n This movie is complex and interesting in so ma...\n Harry Langdon's \"Saturday Afternoon\" is often ...\n Had placed this on my TIVO for a rainy day due...\n Rated R for Strong Language,Violent Content an...\n I only gave this nine stars instead of ten bec...\n When I borrowed this movie from a friend (than...\n I wasn't expecting to much of this movie when ...\n A waste of time, talent and shelf space, this ...\n I am a big fan of British films in general but...\n This is the absolutely worst piece of crap I'v...\n Well I just paid a dollar for a DVD of this mo...\n The game of hockey I play and watch has someth...\n Awkward disaster mishmash has a team of scaven...\n THE DEADLY MANTIS certainly won't scare any on...\n Race Against Fear has to be one of the most mo...\n It was inferred by a previous poster that the ...\n It was simple and yet so nice. I think the who...\n This film entered production before WW2 began,...\n man was this hard to watch! it was not at all ...\n Sexo Cannibal, or Devil Hunter as it's more co...\n This is without question one of the worst movi...\n Although Lang's version is more famous,Borzage...\n If you really loved GWTW, you will find quite ...\n In the seemingly endless quest to find well ma...\n Even with all the cinema dealing with the trau...\n Seems everyone in this film is channeling Wood...\n Never have I seen a movie like this; didn't pl...\n I'm amazed that of all the reviews I've looked...\n If it were possible to award a 10+ .... this w...\n Revolution is a terrible movie, I don't care i...\n I would perhaps give 6 or 7 to this propaganda...\n It really isn't hard to understand this movie!...\n Will Smith is one of the best actors of all ti...\n I usually comment only on movies that I like, ...\n This was obviously the worst movie ever made.....\n I've watched hundreds of kung fu movies and I'...\n I liked the initial premise to this film which...\n What a terrible misfire. Not only the title bu...\n I was extraordinarily impressed by this film. ...\n This movie is sort of similar to \"Better Off D...\n You can't imagine how I looked forward to King...\n I was attracted to this movie when I looked at...\n i really liked the film.at ending i was in tea...\n It is so bad, I can not tear myself away. I ke...\n This series premiered on the cable TV station ...\n The pioneering Technicolor Cinematography (Win...\n Sherlock Holmes films from the classic Univers...\n While many pass this off as a B movie it is, i...\n Ostensibly a film that predicts the coming tre...\n I was recommended this film as one of the best...\n This is an Emperor's New Clothes situation. So...\n Maybe it is unfair for me to review this movie...\n Taking its cues from backwoods classics Delive...\n Of course, the original is better, but this is...\n This is a great movie for the true romantics a...\n The Cure is an outstanding real-life drama tha...\n This is not a good film.<br /><br />I can usua...\n Well, I watched this film expecting to be roll...\n Shrek, anyone? Well, imagine Shrek in the ice ...\n MAJOR SPOILERS!! THIS IS FOR PEOPLE WHO HAVE S...\n It doesn't take balls to make-fun of retarded ...\n The Battleship Potemkin is now the oldest film...\n I am one of those people that respect every fi...\n I don't watch a lot of TV, except for The Offi...\n I knew that 'Evening' was a girlie film, so I ...\n Since Douglas MacArthur affected more human li...\n Not everyone likes this movie. It is still one...\n That's a bad, raunchy, predictable, tacky, sal...\n I do not expect this film to be well understoo...\n I saw this movie in NEW York city. I was waiti...\n This film was strongly recommended by a friend...\n Lost is the best TV series there is.First of a...\n I rented this movie from blockbuster on a whim...\n ...without anything to walk away with. This mo...\n Since the title is in English and IMDb lists t...\n Interesting to read comments by viewers regard...\n The quote I used for my summary occurs about h...\n I cant believe some people actually like this....\n This was included on the disk \"Shorts: Volume ...\n Aksar is an awful movie. The script, the story...\n The second Care Bears movie is immensely bette...\n I saw Brigadoon on TV last night (12 Sept 2009...\n Lubitsch's last production but not his least i...\n Andy Milligan, the independent movie maker fro...\n In the '70s, Charlton Heston starred in sci-fi...\n I should know better. I've seen too many of Ro...\n Has to be one of the worst wastes of 35mm movi...\n If you haven't seen \"The War at Home\", let me ...\n Oh my God what the hell happened here?!! I'm n...\n In 2151, in Broken Bow, Oklahoma, a farmer sho...\n After clocking up five seasons on the small sc...\n How could they take such a beautifully animate...\n This is the worst movie I have ever seen. Ever...\n Having never heard of this film until I saw th...\n This must be accompanied by a special rating a...\n I'm not ruining anything when I inform you tha...\n Despite some moments in heavy rain, an encount...\n I read comments about this being the best Chin...\n The plot and characters are ridiculous and bar...\n From producer/writer/Golden Globe nominated di...\n You got to go and dig those holes. Holes only ...\n This movie is just lame. A total waste of time...\n \"Sweeney Todd\" is in my opinion one of a few \"...\n In this satire of the commercialization and 'l...\n Bad dialog, slow story, scenes that drag on an...\n Let me start by saying you know a film is poor...\n I find it rather useless to comment on this \"m...\n While not quite as monstrously preposterous as...\n Yong-ki Jeong's \"Puppet Master only with scary...\n Four stories about the drug trade in Europe be...\n Okay, if you discount the production value, th...\n This \"TFTD\" episode from season one titled iro...\n I thought this would be a sequel to the origin...\n \"The Notorious Bettie Page\" is about a woman w...\n it really is terrible, from start to finish yo...\n There is not much of a plot to this movie. The...\n This movie is a muddled mish-mash of clichés f...\n This is the best work i have ever seen on tele...\n <br /><br />Summary: Not worth the film<br /><...\n A bit too much Mediterrenean machismo for me. ...\n I really enjoyed BG Seasons 1-3 and really cou...\n On monday, earlier this week, sometime in July...\n In Mexico this movie was aired only in PayTV. ...\n There have been some harsh criticisms of Coman...\n I am so upset that ABC is giving up on yet ano...\n This movie is hilarious. I would say much more...\n This film tells the true story of escaped blac...\n I just read the comments of TomReynolds2004 an...\n If you're a a fan of either or both Chuck Norr...\n As I mentioned in other comments, I became a r...\n Despite having known people who are either gre...\n A novel by Remarque. A cast that looks great o...\n Like some other people wrote, I'm a die-hard m...\n I was blubbing like an idiot during the last t...\n An ensemble of uninteresting and unlikeable ch...\n Im a huge M Lillard fan that's why I ended up ...\n I registered just to make this comment (which ...\n This movie contains personalities that so deli...\n I had the distinct misfortune of catching up o...\n Ray Charles Robinson (Jamie Foxx) is a extreme...\n The director Godfrey Reggio must be a very cha...\n Great music, but ain't these people PATHETIC?!...\n As others have said, \"No, Luciano\" is a more a...\n \"Pecker\" is a young, unknown photographer from...\n Meatballs has been a main staple in my family ...\n Wow! This movie is almost too bad for words. O...\n Stephen Sondheim's SWEENEY TODD: THE DEMON BAR...\n Unreal !!!!!!!!. After reading the initial rev...\n My brain was screaming \"why do you keep watchi...\n Man with the Screaming Brain is a story of gre...\n This movie may bear some historical importance...\n Until now, the worst movie I had ever seen was...\n I have seen this movie but not in a single sit...\n Hercules the Avenger is by far the best single...\n The Thief of Bagdad is a treasure. First and f...\n About 12 minutes into the song, in the scene w...\n I have read the other comment about this movie...\n After having seen Deliverance, movies like Pul...\n This isn't art, it's inner-urban, politically-...\n ...dont read any plot summaries because in wor...\n So I was sick with the flu one Saturday and th...\n So don't even think about renting this from th...\n This was a horrible film! I gave it 2 Points, ...\n It's hard to believe an \"action\" packed Jet Li...\n 'Carolina Moon' is an adequate made-for-TV mov...\n I tried to like this movie. I love Kevin Space...\n This is a ripsnorting, old-fashioned adventure...\n I wanted to read the other comments before lea...\n for a movie like this little hidden gem to com...\n An excellent example of \"cowboy noir\", as it's...\n This film is like a dirge. UNTIL it gets to mu...\n One of the ten best comedies ever <br /><br />...\n George Lopez is a funny man even without the s...\n Being American, I have not been exposed to thi...\n I saw this film 2 weeks prior to going on a sn...\n At first sight, I must say already, watch The ...\n I'm not sure how the IMDb \"weighted average\" c...\n I was lucky enough to get a DVD copy of this m...\n Both visually and musically stunning. A treat ...\n I was going to bed with my gf last night, and ...\n The British noble Sir Ronald Burton (Richard G...\n hello everyone, all i have to say is that Huma...\n The \"all I have is 5 dollars and my wedding ri...\n Leave it to geniuses like Ventura Pons, the Sp...\n After \"Star Wars: A New Hope\" redefined scienc...\n The Messengers is a bad,generic and boring ''h...\n In the glory days of the 90s (god rest its sou...\n Generally I don't like films directed by Sydne...\n I saw this film with a live performance by the...\n Alter Egos do not come funnier than the creati...\n Terrible movie. Nuff Said.<br /><br />These Li...\n I initially tuned in to Paranormal State becau...\n I ended up watching this whole (very long) mov...\n Gary Cooper and a marshal change identities, s...\n The primary aspect of this film which most peo...\n Could possibly be the worst film ever made. At...\n This reminds me of when I was a born-again bel...\n I have seen many, many productions of The Nutc...\n The documentary revolves around Eva Mozes Kor,...\n Fine performances and art direction do not a g...\n I didn't know what to expect from this hugely ...\n How can you sum up just exactly how feelgood a...\n Jammin' the Blues is an Oscar-nominated short ...\n I caught this movie late at night on cable, an...\n Honestly I am not THAT impressed by it, it's n...\n OK, so I know better than to watch movies on S...\n Look, some film has got to the be worst ever. ...\n Though this is a good, enjoyable cartoon, they...\n Well Wright may have made a gritty depiction o...\n Film starts with 3 people meeting each other i...\n Wasn't quite sure what to expect with this one...\n Seagal was way off the mark with this film. I'...\n Jack Black is an annoying character.This is an...\n Who ever came up with story is one sick person...\n This film, with only two characters, takes you...\n Footlight Parade is among the best of the 1930...\n This is a bottom of the barrel type of B-film ...\n Both Jackie and Candice are terrific in this m...\n Man, this was hilarious. It should be under CO...\n Rocketship X-M should be viewed by any serious...\n well, this is an Ivan Reitman film. with the r...\n I saw this film tonight in NYC at the Landmark...\n I saw and have the original 1959 black and whi...\n Dark Remains is a home run plain and simple. T...\n For Daniel Auteuil, `Queen Margot' was much be...\n The Van is a feelgood movie about a guy who tr...\n Just a few words: it's a good thing George A R...\n I knew I was in for a LONG 90 minutes when the...\n This movie is one exception of the rule that a...\n Legendary pop star Steve Alaimo (\"Don't Let th...\n I have to admit, I'm not a big fan of Satanic ...\n Given the people involved, it is hard to see w...\n Don't worry when looking at the cover of the D...\n ROUEN PRIZES AND THE TRIUMPH OF \"VILLA PARANOI...\n Unless you are geeky film student who has to s...\n We viewed the vcr and found it to be fascinati...\n this has to be one of the best and most useful...\n In this glorious telling of a weekend shared a...\n This is, by all categories, the best movie I h...\n This film is an absolute classic for camp. Tha...\n The kind of B-movies from the 1950's that were...\n Dreadful horror sequel to \"The Howling\". This ...\n After I saw this I concluded that it was most ...\n So I finally saw the film \"My Left Foot\" last ...\n This movie blew me away - I have only seen two...\n While the prices have gone up a lot, and some ...\n Well, I've just seen Buster Keaton's film debu...\n Simply one of the best ever! Richard Brooks' a...\n Just watched this early Bugs Bunny (first time...\n This movie was the worst movie I've ever seen....\n \"Going Berserk\" is actually one of the funnies...\n \"World's Finest\" is an unique project. It's a ...\n A boy and a girl is chased by a local warrior ...\n Errol Flynn had quite a gift for comedy that w...\n Brain of Blood starts as Abdul Amir (Reed Hadl...\n If you value your freedom!<br /><br />I first ...\n Do not miss this picture that defies ages. Wit...\n The only reason i didn't delete this movie aft...\n Not much actually happens in this movie. There...\n The only reason for me for watching this littl...\n This 1919 to 1933 Germany looks hardly like a ...\n Operation Scorpio (AKAThe Scorpion King) doesn...\n This is one of the funniest movies I've seen i...\n I picked this film up from the local Family Vi...\n I have seen and liked the original film, and e...\n I was probably one of the few Australians not ...\n I think I laughed twice. The line where the ma...\n ...that the Bette Davis version of this film w...\n POSSIBLY VERY MINOR SPOILERS<br /><br />This m...\n I didn't expect to like this film as much as I...\n The unthinkable has happened. Having first wit...\n SPOILER ALERT!!!!<br /><br />I don't go into '...\n I have to admit, I picked this movie just for ...\n SPOILERS WITHIN.<br /><br />It appears that vo...\n A wonderful film version of the best-selling b...\n Even people who dislike the film, usually beca...\n I loved this film!! I have been waiting for th...\n I was expecting this to be the same kind of sc...\n Considering its popularity, I found this movie...\n I've read a lot of comments about the film and...\n I am truly beginning to believe that Seagal is...\n \"Delusion\" is what you experience when you wat...\n Nothing really unpredictable in this movie, bu...\n What movie is this??? A horrible movie with th...\n I love this movie, Jouvet, Arletty, Blier, Car...\n This was an 1970s-type irreverent comedy, poki...\n \"More\" is yet another addition into the countl...\n Have not watched kids films for some years, so...\n Rudy does it again with this hot off the stree...\n I gotta go with my boy Allen (who also reviewe...\n At last. Here's a movie that does as much for ...\n Despite the lavish production numbers and wond...\n Basically this is an overlong, unfunny, action...\n I saw this film at the Taos Film Festival last...\n Disappointing and undeniably dull true-crime m...\n I found this movie to be exciting right from t...\n David Cronenberg movies are easily identifiabl...\n What a fascinating film. Even if it wasn't bas...\n Rented the video for a slow Saturday night. Fi...\n This is a collection of documentaries that las...\n This movie deserved a working over on Mystery ...\n I don't buy kung fu movies for a plot. I buy t...\n What can I say about the series dubbed the NEW...\n With films like \"Wallace & Gromit\" and \"Chicke...\n Overall it was a watchable movie. I didn't pau...\n I went in not knowing anything about this movi...\n This film reappeared on channel 13 in the 1990...\n I first saw \"Breaking Glass\" in 1980, and thou...\n OK. I'm biased. I live near Shrewsbury in Engl...\n Logged on to the imdb to say what a charming f...\n Made at the height of the Black Power movement...\n When I saw the trailers for this movie, it loo...\n This is one of the most unoriginal, cliche-rid...\n OK look this show is the worst show on nick@ n...\n This is not a very good movie, but it's not a ...\n tries to be funny and fails miserably. The ani...\n I loved this show so much and I'm so incredibl...\n To keep it as simple as possible. This is a ve...\n Of all the directors ever to sit behind a came...\n Based on the Elmore Leonard novel of the same ...\n WHERE THE SIDEWALK ENDS deserves to be a bette...\n How can you gather this respectable cast of yo...\n This is the first non-zombie subgenre review i...\n After a promising first 25 minutes that makes ...\n Philo Vance had many affinities with Bulldog D...\n Plot is not worth discussion even if it hints ...\n The main problem with \"Power\" is that it featu...\n Julie Waters is outstanding and Adrian Pasdar ...\n Critics and audiences both pretty much panned ...\n i'm really getting old,,am in the midst of wat...\n Mean spirited, and down right degrading adapta...\n Following the whirlwind success of The Wrestle...\n The Man from Snowy River II doesn't reinvent t...\n The comic banter between William Powell and Je...\n That's what the title should be, anyway.<br />...\n Very interesting to find another reviewer who ...\n The movie was awful. The production company sh...\n A young woman, Jodie Foster, is witnessing a m...\n Someone asked why it was canceled I tell you w...\n One of the first OVA's (\"original video animat...\n The plot of this boils down to Ah-nuld versus ...\n This is superb - the acting wonderful, sets, c...\n This film could cure sleep disorders, thats ho...\n Last time I checked, the Nazis didn't win the ...\n I truly was disappointed by this film which I ...\n Visually disjointed and full of itself, the di...\n my wife is a fanatic as regards this show. Tha...\n Britain and France declared war on Germany in ...\n This is no art-house film, it's mainstream ent...\n I love the TV contest. Hate to see it end. The...\n Jim Carrey is good as usual, and even though t...\n Boston legal has turned its tail and is headed...\n I am currently 22 years old, and remember seei...\n I like this movie a lot, but it's a fact, that...\n The blame of this terrible flick lies with the...\n I just came back from the Late-night cinema an...\n I saw Winnie's Heffalump a couple of days ago....\n I think I usually approach film festival comed...\n This police procedural is no worse than many o...\n The Hollow is a wonderful murder mystery that ...\n The main problem I see with this film is its s...\n THE JIST: See something else.<br /><br />This ...\n \"The Honkers\" is probably Slim Pickens best pe...\n My family has watched Arthur Bach stumble and ...\n It's astonishing that some people saw this as ...\n It carries the tone of voice that narrates the...\n The first Disney animated film without the str...\n I've had a morbid fascination with tornadoes f...\n The reason why this movie sucks, have these pe...\n Well, I notice IMDB has not offered any plot i...\n GLORIFYING not GLAMORIZING World War II.<br />...\n I attended a screening of this film. Travolta ...\n Saw this last night at the 7th Annual NYC Home...\n This movie may be the best ever if you like wa...\n Paul Mazursky's Tempest - Interesting,odd and ...\n Giorgino is a long, excruciating journey from ...\n A tedious effort from not-yet great director B...\n I feel the movie did not portray Smith histori...\n Flat out the funniest spoof of pretentious art...\n Alone In The Dark is one BAD movie and tied wi...\n This is possibly the worst film I've ever seen...\n Shakespeare Behind Bars was a strangely uplift...\n I happened to catch this movie on cable one af...\n I saw this short film on HBO the other day and...\n Burt Kennedy both wrote & directed this wester...\n The film made no sense to me whatsoever. Good ...\n Tycoon will never be listed as one of John Way...\n This film illustrates the worst part of surviv...\n First, the obviousas a cop drama crossed with...\n The worst film I have seen in the last 12 mont...\n I don't know how to describe this movie. It's ...\n OK where do i begin?... This movie changed my ...\n I just didn't get this movie...Was it a musica...\n I wanted to like this film, yes its a SAW, bla...\n Barely three and a half years after just scrap...\n This Italian semi-horror movie starts out very...\n This movie is a shame especially considering A...\n I've always been a fan of Chuck Norris for wha...\n I laughed so much when I saw this film I nearl...\n I had to stop watching this film (a pseudo-int...\n 1937's \"Stella Dallas\" with Barbara Stanwyck h...\n After watching Avalon (which was decent only b...\n This German horror film has to be one of the w...\n With these people faking so many shots, using ...\n A few weeks ago the German broadcaster \"SAT1\" ...\n This movie had a lot of ups & downs...The stor...\n Dad (78) and I (46) both had a good time watch...\n I saw this on cable recently and kinda enjoyed...\n You get a gift. It is exquisitely wrapped. The...\n Slow-moving ponderous movie with terrible acti...\n Wow! i think they made this movie to torture p...\n Just saw this movie, and what a waste of time....\n Francis Ford Coppola's first 'personal' film, ...\n Entertainment Tonight has been going down hill...\n when i was a child this was the movie i watche...\n When I saw this film at a festival years ago I...\n What's Good About It: Some inventive and genui...\n I just love Malle's documentaries. They are so...\n I had never seen this movie before it aired on...\n I couldn't give this film a bad rating or bad ...\n When I heard that the Dukes of Hazzard was goi...\n A bondage, humiliation, S&M show, and not much...\n I saw this movie alone when i was an early tee...\n I just couldn't stop laughing!! This movie is ...\n This was the first feature film for just about...\n I am coming out fighting here because this fil...\n <br /><br />Not only do alien visitors look ex...\n Another black comedy that won an Oscar for Bes...\n Once upon a time in a castle...... Two little ...\n A movie of outstanding brilliance and a poigna...\n I can't figure out how anyone can get a budget...\n Charming in every way, this film is perfect if...\n For real though, this game is where it's at. I...\n This was a good movie. It wasn't your typical ...\n Presenting Lily Mars is a real pleasant little...\n Licence fees to watch this trash, And pay for ...\n Wow, what a bad film. Not frightening in the l...\n This movie earned every one of the ten votes I...\n Pumpkinhead was in itself a decent 80s horror ...\n This story had a different angle that intrigue...\n I saw this film at the Chicago Reeling film fe...\n In this movie, the old Amitabh Bachchan falls ...\n In all, it took me three attempts to get throu...\n Scandinavians are pretty good at making me lau...\n \"Pet Sematary\" succeeds on two major situation...\n This series, while idealized and fictionalized...\n I was impressed by the story. It had the \"typi...\n Always fancied this film from the video cover....\n An awful film; badly written, badly acted, cli...\n This film just goes to prove that not every fi...\n A mummy narrates vignettes about men, women, a...\n ...at least during its first half. If it had s...\n This is my favorite Jackie Chan movie and in a...\n Forget what I said about Emeril. Rachael Ray i...\n But a great cast! Jonathan Pryce, Kathy Bates,...\n I'm not sure how related they are, but I'm alm...\n I've got as much testosterone as the next blok...\n Touching Bollywood epic melodrama about a 10 y...\n Let me start out by saying that I am a huge fa...\n Until I did a Web search on \"What Alice Found\"...\n This was a random rental at the video store. B...\n What a great Barbara Stanwyck film that I happ...\n Well someone who enjoys traveling down the hig...\n Punishment Park is a brilliant piece of cinema...\n It's just one of those films, you're either lo...\n SPOILERS. Like other posters, I felt that the ...\n Laughably awful. One might think that all the ...\n \"Campfire Tales\" is basically made up of three...\n \"Ship Ahoy\" was probably made in order to show...\n This movie brought tears to my eyes; John Robe...\n Accepted is a 2006 teen flick that stars the g...\n The film attempts to be a mockumentary--shot i...\n I just saw \"Of Human Bondage\" for the first ti...\n The movie was very good. I'm an avid mystery f...\n Maybe here in Sydney we are all poop side down...\n It's amazing that from a good, though not wond...\n Where was this film when I was a kid? After hi...\n I just saw a terrible film called The Sleeping...\n This was painful. I made myself watch it until...\n This film was a new direction for Natalie Port...\n This movie is unbelievably ridiculous. I love ...\n This film is awful. Not offensive but extremel...\n I can't remember when I've seen a worse movie....\n 'A Tale of Two Sisters', or 'Janghwa, Hongryeo...\n It was harrowingly close, but The China Syndro...\n \"Curse of Michael Myers\" is a very frustrating...\n Great music, great dancing, a sexy star (Swayz...\n Hollywood Hotel was the last movie musical tha...\n It's weird, this film; you get the impression ...\n There are so very few films where just the tit...\n This is a nice little horror flick that fans o...\n I had seen this movie as a kid and loved it. I...\n I generally don't give worry much about violen...\n Why is it better? Because it's true to the dar...\n I liked this TV show because it was it's own t...\n The problem with this series is that it is too...\n Well, I must say, I initially found this short...\n I watched 40 minutes and couldn't bear it any ...\n Anyone notice that Tommy only has 3 facial exp...\n A truly dreadful film. I did not know initiall...\n This 1986 Italian-French remake of the 1946 fi...\n \"8 SIMPLE RULES... FOR DATING MY TEENAGE DAUGH...\n one of the best low budget movies from Germany...\n A complete waste of time<br /><br />Halla Bol ...\n You already know how painful to watch this mov...\n This film is exactly what you get when you rea...\n I just watched The Incredible Melting Man for ...\n Just saw this movie version of Frank Loesser's...\n A slight, charming little movie to be sure, bu...\n this movie is allegedly a comedy.so where did ...\n It was AMAZING. As a librarian and an attendee...\n Amongst the standard one liner type action fil...\n This movie was outright painful for me to watc...\n Inglourious Basterds IS Tarantino's worst film...\n At one point in this waste of celluloid, Charl...\n This movie was a disappointment. The story is ...\n *POSSIBLE SPOILERS AHEAD*<br /><br />I'll only...\n A few weeks ago, I read the classic George Orw...\n Early talkie feature based on a popular stage ...\n Flash Gordon was a first rate serial. I know t...\n I survived the first hour of this and came bac...\n A classic series that should be at least repea...\n The DVD version we bought had Sandra Bullock o...\n I like a lot of the actors/actresses involved ...\n After eight Moto films the series had run its ...\n Considering the subject matter, I thought that...\n Talk about your wild life. Barely a B-movie, b...\n Film can be a looking glass to see the world i...\n I am a music lover and was excited to see this...\n Bestselling writer George Plimpton(Alan Alda)t...\n The reality of the mafia environment is absolu...\n Okay. Yes, this was a very-tight-budget movie ...\n ** HERE BE SPOILERS ** <br /><br />Recap: Macl...\n Florence Vidor stars as the daughter of a stri...\n 10 respected directors each shot a short film ...\n William H. Macy always gives a good performanc...\n Frank Horrigan (Clint Eastwood) is being haras...\n Guys and Dolls is a unique play based on the c...\n Went to the Preview Engagement of \"Grand Champ...\n I can't give it less than a star, I tried. At ...\n Enormous suspension of disbelief is required w...\n With all of the \"R\" movies out today, it's har...\n I made it about halfway through this movie, an...\n I'm not a fan of the Left Behind book series -...\n I was impressed that I could take my 5 year ol...\n Did Francis Ford Coppola have a brain aneurysm...\n I give this a generous four out of ten stars, ...\n Why has this not been released? I kind of thou...\n Hello, I was wondering if anyone has a copy of...\n What a poor excuse for New Zealnd Movie making...\n A young scientist Harry Harrison is continuing...\n The only redeeming quality of this overlong mi...\n While this movie's style isn't as understated ...\n I happened to love the show growing up, along ...\n This was on odd film. I liked the adventure of...\n Julian Noble (Pierce Brosnan) is a hit-man. Or...\n Blade was a thrilling horror masterpiece and i...\n This would have been so much fun to see in a t...\n This movie contains real animals been killed, ...\n This review comes nearly 30 years late. Nevert...\n Roman Polanski masterfully directs this sort o...\n Very good \"Precoder\" starring Dick Barthelmess...\n Not only unique for its time but one of the gr...\n I know nothing of the Iliad so can not comment...\n How truly friendly, charming and cordial is th...\n Cheap and mind-blisteringly dull story and act...\n I was entertained to see that some of the revi...\n Honestly before I watched this movie, I had he...\n WALLACE & GROMIT: THE CURSE OF THE WERE-RABBIT...\n 25 August 2003 League of Extraordinary Gentlem...\n I remember this film from many years ago. Cert...\n This film has nothing whatever to do with the ...\n I couldn't relate to this film. It failed to e...\n When a loser teen is bitten by an insect, he b...\n This is arguably John Thaw's finest performanc...\n This was one of the slowest movies I have ever...\n Have you heard the story about the reluctant h...\n Barbershop 2: Back in Business wasn't as good ...\n This movie is so bad, I knew how it ends right...\n How come I've never seen or even heard about t...\n If movies like Ghoulies rip off Gremlins, then...\n After seeing the movie in a class of mine and ...\n After reading the reviews I decided to rent th...\n Though the story is essentially routine, and t...\n Hint number one - read the title as \"the Time ...\n If you are tired of films trying too hard to b...\n I'm one of those gluttons for punishment when ...\n This is what used to be called a \"women's pict...\n In the unlikely case that some aspiring direct...\n I really enjoyed this episode, which was a gre...\n 'The English Patient' is a love story set in E...\n That was definitely the case with Angels in th...\n This film follows a very similar storyboard to...\n Does anyone know what kind of pickup John T dr...\n When this first came out, my dad brought it ho...\n Using footage pillaged from Planet of Dinosaur...\n A film about the Harlem Renaissance and one au...\n I'm sitting here Nov 2006 and I still can't he...\n Perhaps the director was trying for another PI...\n Let me be really clear about this movie. I did...\n The Good Earth follows the life a slave girl a...\n Because others have gone to the trouble of sum...\n Actually I'll admit I'm a political junkie, so...\n I remember seeing this movie a long time ago, ...\n In the '60's/'70's, David Jason was renowned f...\n This film to me is a very good film!!<br /><br...\n After just finishing the book the same day I w...\n This is a well directed Columbo episode, with ...\n How dare you? Adam Low, without apparent shame...\n This 1977 cult movie has two crazed lesbians (...\n Valentine, a model in France is separated from...\n Before watching this film I had heard a lot ab...\n Following a sitcom plot is so mindlessly easy ...\n The Unborn is a Roger Corman production and as...\n Of course if you are reading my review you hav...\n I really wonder how this show plays in the U.K...\n When one watches romantic comedies, one knows ...\n You just got to love opening sequences like th...\n Jessica Alba's Max and Valerie Rae Miller's Or...\n I saw this movie years ago and I never forgot ...\n Women have never looked so attractive and path...\n Joan Fontaine here is entirely convincing as a...\n Sunshine is a European import set in Hungary b...\n This movie was the worst movie I have seen sin...\n I expected this to be a lot better. I love Tim...\n This is probably one of the worst French movie...\n First of all, this plot is way overdone - girl...\n I am a big fan of Lonesome Dove and all the bo...\n Two Hands restored my faith in Aussie films. I...\n An hulking alien beastie crash-lands on Earth ...\n Firstly, this movie works in the fact that it ...\n A seemingly endless movie that really deserves...\n Well, the Hero and the Terror is slightly belo...\n I must say, I was surprised with the quality o...\n NORTHFORK is above all a masterpiece of widesc...\n I bought my first Zep album in 1974 (at 17) an...\n What's with the murky video in the beginning a...\n I was really excited about seeing this film. I...\n In following the lines of the classic formula ...\n I love old Burt Reynolds movies. They're funni...\n Don't look for an overdeveloped plotline here....\n \"When I die, someone will bury me. And if they...\n The recent documentary \"The Adventures of Erro...\n Of all the 48 films of Brigitte Bardot, \"Une P...\n Except for the appearance of talented Austin P...\n All-Monster congregation in the final film in ...\n Lame plot and two-dimensional script made char...\n This movie is poorly conceived, poorly acted, ...\n The name of this film and the clips that I saw...\n This movie is the very worst that I have ever ...\n I tuned in to this movie because there was not...\n After apprehending the man responsible for the...\n Singleton has some serious issues he has to co...\n I have only recently been able to catch up wit...\n For those that might send me nasty e-mails, sh...\n It is important and only fair to remember that...\n Like his elder brothers, Claude Sautet and Jea...\n This movie is about a Dysfunctinal Family but ...\n It is a pleasure to see such creativity on TV ...\n Based on a self-serving novel by one-time girl...\n 2054. Paris is an Escher drawing with people a...\n Ray Bradbury, run and hide! This tacky film ve...\n We rented the DVD hoping for a good western. T...\n This owes a great deal to the plot of CAPTAINS...\n As a serious horror fan, I get that certain ma...\n I don't understand people. Why is it that this...\n First of all, this film is GLACIALLY slow-movi...\n Wesley Snipes latest straight to video film is...\n Essentially a story of man versus nature, this...\n While watching this movie I was frustrated and...\n I don't see enough TV game shows to understand...\n I can't understand all the hype about this mov...\n Did I miss something here? This \"adaptation\" h...\n 'Hitch' is a nice surprise: A romantic comedy ...\n This has got to be the worst piece of crap I h...\n Great \"documentary\" of how scientist's believe...\n I disagree with Anyone who done't like this mo...\n Maybe I'm a sap but this is the sweetest movie...\n I watched this movie to see the direction one ...\n Dolph Lundgren stars as Murray Wilson an alcoh...\n I first saw Thief as a child which makes me al...\n This film was sheer boredom from beginning to ...\n GOJOE takes a little getting used to at first,...\n A perennial fixture in the IMDb Bottom 100, up...\n This is an amateur movie shot on video, not an...\n For a series that was inspired by Kolchak, it'...\n That's how I was when I walked (staggered) out...\n I don't understand why the other comments focu...\n Having grown up a Mormon and grappled with the...\n Even 15 years after the end of the Vietnam war...\n A tale of a young boy, Dexter (Joseph Mazzello...\n A whole bunch of teenagers gather around to di...\n Hi To read the entire plot around \"OZ\" just lo...\n This is the start of a new and interesting Sta...\n Eliza (Elizabeth Moorman) is a farm girl from ...\n I have never seen a B movie like this one... o...\n Werner Herzog again explores the psyche of a m...\n Citizen X tells the real life drama of the sea...\n I'm not the biggest fan of westerns. My two pe...\n Even though this is the first film by the brok...\n i know technically this isn't the greatest TV ...\n I find it sad that Christians (and I am one) f...\n me and my sister saw the premiere last night.....\n Remember a film you seemed to enjoy in the pas...\n Nicolas Roeg's projects are variable to say th...\n Spanish horrors are not bad at all, some are s...\n Even if I had never seen or heard of Georgetow...\n \"Birth of the Beatles\", for being a US televis...\n A winters day, 28th December 1986, two bored 1...\n This Italian movie is basically a soap opera w...\n The first film I saw from these people was \"Ch...\n Not even Emeril Lagasse cooking can save this ...\n Directed by Govind Nihalani, this is definite ...\n One of the best musicals ever made, this is an...\n Perhaps this could be the best movie ever made...\n ***SPOILERS*** With a gathering of family memb...\n I thought this was a sequel of some sorts, and...\n I cannot believe that the Indian film industry...\n I just watched this, an early Harold Lloyd sho...\n Five years after the US Civil War, western fol...\n This is a lame comedy.<br /><br />Here's why: ...\n I only saw the first part of this and conclude...\n In & Out is a comedy with a simple premise. It...\n SPOILER!! Terrible camera work, horrible writi...\n The Hindi version of the film is 121 minutes. ...\n This film is pretty poor. The acting is abysma...\n Perry Mason: The Case of the Fatal Fashion fin...\n John Van Druten's \"Bell, Book and Candle\" is a...\n This movie surprised me in a good way. From th...\n In Halloween, three friends seek an ancient ce...\n The film revolves around a man who believes th...\n I really enjoyed watching this movie about the...\n I think Hollywood should seriously consider NE...\n This movie is absolutely pointless, one of the...\n i am amazed anyone likes this film. i never wa...\n The problem I have as a Finn is that most of t...\n I wouldn't recommend this unless you're keen o...\n So far I disliked every single Jean Rollin mov...\n Despite being quite far removed from my expect...\n Wasn't sure what to expect from this movie con...\n This is quite possibly the worst movie of all ...\n I like Arnold, and I love the subject matter, ...\n This is the greatest film I saw in 2002, where...\n I really enjoyed this movie for what it is: A ...\n ... or should I say unintentionally hilarious?...\n ROMEO AND JULIET had been interpreted in so ma...\n I saw the movie in original Italian. It must b...\n Late film critic Gene Siskel said that this mo...\n Even if I had not read Anne Rice's \"Queen of t...\n i think that new york is a big fake, i mean he...\n In a lot of his films (Citizen Kane, Confident...\n I have seen this show when I was younger. It i...\n Gloria Victor and Dolores Reed in space girl c...\n This movie was one of the greatest movies ever...\n As soon as I knew Keira Knighteley being in th...\n This movie was terrible. Throughout the whole ...\n The acting in this movie stinks. The plot make...\n No one in this movie has very much to do. This...\n \"De vierde man\" (The Fourth Man, 1984) is cons...\n True, this is not John Sayles finest film (Bro...\n for a lot of time I was looking forward to see...\n A potentially good idea gets completely let do...\n Carmen is one of the best films I've ever seen...\n Action. Comedy. Suspense. This movie has it al...\n Well, on the day that Rob Schneider plunges hi...\n STAR RATING: ***** Saturday Night **** Friday ...\n MAY CONTAIN SPOILERS...BUT DOUBT IT CAN ACTUAL...\n This was a \"cute\" movie at first, then then go...\n Lovely music. Beautiful photography, some of s...\n I loved this film because in my mind it seemed...\n Once you can get over Nic Cage playing an Ital...\n Certainly the highlight of this film is it's c...\n Spoilers ahead, but does it really matter? Hav...\n Giant crabs cursing in Japanese? What was in t...\n All I have to say is one word...SUCKS!!!!. The...\n I am a dumber person for renting the DVD REDLI...\n Director/lead Larry Bishop tried way, way too ...\n I saw Conrack on a night I couldn't sleep and ...\n This definitely the most tension filled X-File...\n Although it may not be Cassavetes' best work, ...\n Everyone is either loving or hating this film....\n Many people have the irritating habit of dying...\n My blurred childhood memories have kept the ec...\n Terminus Paradis was exceptional, but \"Niki ar...\n This is an apocalyptic vision of the hell of o...\n First off, to rent or watch this film you are ...\n After watching some of HBO's great stuff - Ban...\n This \"film\" is one of the most dreadful things...\n \"The Dead\" truly is a work of art. Clearly, Jo...\n Thankfully I watched this film alone, enabling...\n With few exceptions, most of George Bernard Sh...\n This is a really really bad movie. That may se...\n What a horrible comedy. Totally lame. The supp...\n This is an unfortunately unrecognized classic....\n The father of the Who's alcoholic drummer, Kei...\n With NBC's \"Thank God You're Here\", the networ...\n The potential was there. I saw Creep and thoug...\n I understand what this movie was trying to por...\n I know that Trey Parker and Matt Stone really ...\n So bad, it's entertaining, especially during c...\n I bellied up to the bar expecting this to be a...\n It's all about Mitzi. I loved her in this. And...\n This is easily one of my favorite musicals of ...\n I think it's one of the greatest movies which ...\n This is beyond stupid. <br /><br />Two high sc...\n This movie is simply far too long, far too rep...\n Traffik is an excellent miniseries dealing wit...\n I enjoyed every moment of this movie, even tho...\n I've seen plenty of Sci-Fi Channel Original mo...\n Occasionally I accidentally leave the televisi...\n The young lady's name is Bonnie (Polay). She's...\n A killer (John Karlen) with a penchant for rea...\n This movie was NOTHING like the book. I think ...\n I have made it my personal mission to go after...\n Sadly, this movie is relegated to 'curio' stat...\n I love horror movies. I can even appreciate mo...\n If you like Gary Cooper, this is one of his be...\n Here is a rundown of a typical Rachael Ray Sho...\n This is one of those cheaply made TV Movies we...\n The Kissing Bandit was the third and final fil...\n Hello there,<br /><br />This is my first post ...\n Trust me, this is one let down movie that you ...\n Anyone who has said that it's better than Host...\n This film is on my top 20 comedies list. This ...\n I will not even make any more comments about t...\n This early Warner Brothers talkie \"Son of the ...\n In 1982, two films were released within weeks ...\n My first Ichikawa in many years, and the first...\n \"Welcome to Collinwood\" is kind of a disaster....\n TIllman Jr.'s drama about the first African Am...\n If you have ever babysat in a house you didn't...\n ...On stage, TV or in a book, 'The Woman in Bl...\n From the opening shots of the lead actor, we a...\n The film begins with a little girl (Rita) seei...\n Woody Allen, when at his best, has one of the ...\n Very low-budget police procedural film about h...\n The most difficult thing about this movie is t...\n For the first time in reviewing films, I found...\n Clint Eastwood returns as Dirty Harry Calahan ...\n Perhaps you won't care for the social commenta...\n There is no denying it. Sci-fi on TV is diffic...\n Unless you are an Evangelical Christian then m...\n The premise of this movie has been tickling my...\n I unwittingly walked into this \"trap\" of a mov...\n it's unfortunate that many of the other detrac...\n The orders fatal flaw-besides an asinine plot-...\n This is the best Emma in existence in my opini...\n I know curiosity killed the cat, but I simply ...\n Chesty gringo Telly Savalas (as Frank Cooper) ...\n Tarzan the Ape Man is a remake of the 1932 fil...\n Chances Are uses that marvelous song by the sa...\n This hard-hitting, often violent western in th...\n This is one of my favourite books and I rememb...\n Alfred Hitchcock's \"Saboteur\" (1942) (not to b...\n Gorgeous bodies, gorgeous colors and camera wo...\n Okay, so maybe the acting wasn't bad, but I am...\n If you want to see a mystery, don't watch this...\n Boyle Heights, Los Angeles: legendary South Am...\n Oh my goodness. This was a real big mess that ...\n I got this movie from Netflix after a long wai...\n This film is, in short, a cinematic masterpiec...\n This movie is a horrible distortion of lies an...\n This cartoon is short on plot, but is a visual...\n wonderful movie with good story great humour (...\n Scary, but mostly in the sense that will it be...\n I think this is one of Burts top five movies, ...\n This movie is an eye opener for those who can ...\n This movie had a IMDB rating of 8.1 so I expec...\n This film is a delightful, light hearted look ...\n This had high intellectual pretensions.The mai...\n Charlie Wilson's war is an excellent example o...\n Oh dear we don't like it when our super-hero l...\n If you have read the book - do not set your ho...\n Unforgiven is Clint Eastwoods last tribute to ...\n It took me a few years to hunt down this title...\n I wasn't expecting much from this film, but wa...\n This movie has the made for TV stink all over ...\n R.I.C.C.O. is the STUPIDEST film ever made. I ...\n Are we allowed to interfere with our fellowmen...\n The film 'Nightbreed' is one of the best horro...\n I found the pace to be glacial and the origina...\n This movie was just terrible, the first movie ...\n Probably the worst film I've ever seen, the ac...\n A bloody gangster story which takes place in t...\n This movie is so bad it hurts. The car doing 3...\n Maybe I'm alone here, but this is a crap show....\n This is a movie that relies solely on the some...\n Last year was the 200th anniversary of Charles...\n Just finished watching the movie and wanted to...\n Mr Seagal has apparantly lowered his (already ...\n Return To The 3th Chamber is the comedic seque...\n This is one of the few movies of this type I h...\n A bad movie ABOUT a bad movie. Is that origina...\n I cannot believe this show was okay-ed. First ...\n This is almost typical Lynch. However, What ma...\n Just what the world needed-another superficial...\n This is an excellent movie. As a Canadian who ...\n I found it hard to care about these characters...\n This movie feels like a film project. As thoug...\n It's a shame that Deliverance is mainly known ...\n This is a cute little horror spoof/comedy feat...\n The story takes place on the streets of Sao Pa...\n This movie has bad writing and bad editing. It...\n The Big Knife, a movie about the dark side of ...\n The world of the 1973 sci-fi drama SOYLENT GRE...\n Man alive, is this game bad or what? The graph...\n Gypo Nolan (Victor McLaglen) is as poor as any...\n Oh dear, Oh dear! What were they thinking of? ...\n Out of all the parodies of Star Wars I've seen...\n Dead or Alive: Final, the movie that supposedl...\n This movie is one of the best ever produced by...\n you have loved The shawshank Redemption, Pulp ...\n Wow. I've never seen nor heard of this film. I...\n Throw Momma hasn't dated at all, it's as funny...\n Unlike some comments, mine is positive. This m...\n This was the best movie ever has seen on \"Germ...\n This film spends a lot of time preaching again...\n I have had the pleasure of reading Martin Torg...\n This movie is sweet - not cloying, just warm-s...\n Would be promising if it were a student film. ...\n This movie starts at A and never quite reaches...\n It is very unfortunate when a movie such as th...\n This is really bad, the characters were bland,...\n its been years since i have seen these shows. ...\n One of my co-workers recommended this one, imp...\n I loved this movie it was a great portrayal of...\n Just too many incidents of violence.<br /><br ...\n As a South African, it's an insult to think th...\n George and Kim are traveling with their young ...\n I rented this movie because I am a huge Dudiko...\n A pretty worthless made for television movie t...\n I don't know where to begin. Perhaps the whole...\n Unlike what one reviewer said this is NOT a ri...\n I always get frustrated by films that were obv...\n I was in this movie as an extra in the Dallas ...\n The Sea is Watching was an interesting film ex...\n ....because if I was, I may have wished it was...\n This ambitious film suffers most from writer/d...\n This film is a masterpiece to put it simply. E...\n Having seen most of the Coen Brothers previous...\n An entertaining kung fu film, with acting, plo...\n First let me say I am not from the south but I...\n In yet another miserable attempt to make a qui...\n The Three Stooges has always been some of the ...\n Before I saw this film I didn't really expect ...\n Wow...OK. So, after reading the little feud on...\n There won't be one moment in this film where y...\n First off - this film will not be for everybod...\n A good story about Rusty Parker (Rita Hayworth...\n Cabin Fever is the first feature film directed...\n Bridget Fonda has disappointed me several time...\n I really enjoyed North and South very much. I ...\n during eddie murphy's stand up a women from th...\n I got this movie because I worked at a movie s...\n I still don't know why I forced myself to sit ...\n I have to say that there is one redeeming spec...\n Definitely one of the most witty and twisted w...\n This is a Hollywood film. The credentials of t...\n I will not comment on the story as such. I agr...\n It's less visceral than the only other Tsai fi...\n MINOR SPOILER<br /><br />Underrated little Ste...\n Well our standards have gone into the toilet. ...\n This film coincides with Mike Allred's comic b...\n In the future of 2001, Freddy is after the las...\n BEWARE SPOILERS. This movie was okay. Goldie H...\n A simple and effective film about what life is...\n This so-called prequel is just a badly made re...\n First off, let me say I wasted Halloween movie...\n I actually had hopes for this movie since I've...\n HOUSE CALLS was an amusing 1978 comedy about a...\n Keanu Reeves stars as a friend of a popular hi...\n This epic brings together a superbly-gifted ca...\n SPOILER ALERT!!!<br /><br />You can listen to ...\n I've got 10 plus year old computer games with ...\n The Mummy's Tomb starts with a review of the e...\n Another rape of History<br /><br />This movie ...\n I can't believe that people thought this stink...\n **SPOILERS** A bit ridicules made for TV movie...\n This film is \"riveting\" but in much the same w...\n Aaliyah blows all the female cast members out ...\n \"A Mouse in the House\" is a very classic carto...\n King of the Underworld features an early role ...\n What I liked best in this film is that like th...\n When seeing this movie you should take notice ...\n After a love triangle story in Har Dil Jo Pyaa...\n An aging Roger Moore is back yet again as Bond...\n Hi, May be because I am not a Theater major or...\n The Calu-what now? Yeah, I thought it was a st...\n This movie is using cinematography fantastical...\n You gotta be a fan of the little man but I fou...\n I saw this movie at a college film festival ba...\n This is a fair movie, good for one-off viewing...\n \"Atlantis\" is a new and right step for a Disne...\n Viewing \"Impulse\" is a very satisfying experie...\n This DVD will be treated with indifference by ...\n Here is a movie of adventure, determination, h...\n German private TV is ill-renowned for copying ...\n Well...tremors I, the original started off in ...\n Dr Steven Segal saves the world from a deadly ...\n The thesis of Father Brown is that a good dose...\n This scared the hell out of me when i was a te...\n SEVEN POUNDS: EMOTIONALLY FLAT, ILLOGICAL, MOR...\n Danny Glover and Carey Elwes obviously forgot ...\n Went to see this as Me and my Lady had little ...\n I watched this movie alongwith my complete fam...\n This film makes \"American Pie\" a sophisticated...\n It's always a good feeling when a movie delive...\n There are way too many subjects avoided in cin...\n First off, I'd like to make a correction on an...\n A grumpy old baronet, happily unmarried, decid...\n I watched this one mostly to see Charlie Ruggl...\n This is another gem of a stand up show from Ed...\n The Hand of Death aka Countdown in Kung Fu (19...\n First of all, I would like to say that I am a ...\n im sure he doesnt need the money for a life sa...\n A warm, touching movie that has a fantasy-like...\n I was able to see \"Anywhere But Here\" last nig...\n Robert Jordan is a television star. Robert Jor...\n This movie has remained in my mind for years a...\n This movie was made because the concept transl...\n Return to Cabin by the Lake just.... was lacki...\n Hugh (Ed Harris) is a hotshot, bachelor senato...\n As I said, sometimes low budget is good. You g...\n Take a bad script, some lousy acting and throw...\n It was by accident that I was scanning the TV ...\n Considering the potential this move had, the r...\n I have to ask myself, do movies like this get ...\n It's 3:30am.<br /><br />I just saw this movie ...\n Often tagged as a comedy, The Man In The White...\n This is hands down the most annoying and frust...\n Back in the 70's, when I had first seen this, ...\n I don't see why all the people are giving this...\n This is one of the worst-written movies I've e...\n The Scottish artist Andy Goldsworthy fashions ...\n This clunker of a film sets a new standard for...\n Carole Lombard and James Stewart gamely try to...\n This movie represents the times it was made in...\n The great talents of Michael Powell and Emeric...\n George Brent is a reporter sent to interview a...\n Catherine Brreillat is a French director who l...\n I got this movie from the library, and saw it ...\n This sickly sweet and laboriously paced 5-reel...\n Way back at the dawn of human civilization cav...\n The concept for this movie was quite good. But...\n This is not a good movie at all. I cannot beli...\n One wonders how FLYNN could have failed so bad...\n Construction workers disrupt the Native Americ...\n I'm not entirely sure Rob Schmidt qualifies as...\n ***SPOIERS*** Atlanta crime auctioneer with Bu...\n The incomparable Paul Naschy, horror film icon...\n The second \"Mr. Eko\" episode has somewhat less...\n No message. No symbolism. No dark undercurrent...\n Nicely filmed, a little uneven, \"Nobody\" is a ...\n I thought this was a very good movie. It would...\n When \"Girlfight\" came out, the reviews praised...\n Almost in the same league as Yonfan's rather a...\n Witchcraft/Witchery/La Casa 4/ and whatever el...\n First a quick 'shut up!' to those saying this ...\n An on screen caption informs us that it is 'th...\n The antiwar musical \"Hair\" is my number one cu...\n **POSSIBLE SPOILERS**<br /><br />The biggest p...\n This film has a premise that is good enough to...\n It is playing on SHOWTIME right now but is goi...\n The head of a common New York family, Jane Gai...\n THE LATE SHIFT was an interesting made for HBO...\n I gave this 2 stars out of a possible 10.<br /...\n An actor's first film is usually something one...\n The movie is very realistic. Absolutely, it do...\n higher learning is a slap in the face for thos...\n We're in a not so distant future, globalizatio...\n If Western Union isn't exactly the real story ...\n This was an incredibly stupid movie. It was po...\n Holes, the novel, was forced on me in an educa...\n My top 2 actors happen to be in this film - Ro...\n A model named Laura is working in South Americ...\n Tyra & the rest of the modeling world needs to...\n I have always loved Brenda Blethyn and \"Undert...\n Yet another venture into the realm of the teen...\n The mere presence of Sam Waterston as an India...\n Oliver! the musical is a favorite of mine. The...\n This is a film about a six year old child from...\n First, let's all agree that Lorenzo Lamas coul...\n There's been a vogue for the past few years fo...\n Firstly, this is a very dated film, non-focuse...\n This movie had horrible lighting and terrible ...\n A stolen shipment of Vigoroso, the mexican Via...\n Al Pacino? Kim Basinger? Tea Leoni? Ryan O'Nea...\n I've just seen this movie for the second time ...\n I just finished reading a book about Dillinger...\n I found the one and only comment about this mo...\n This hugely entertaining short is considered o...\n One of the few best films of all time. The cha...\n Clair Denis again revisits her theme of estran...\n High energy Raoul Walsh classic from 1933, The...\n I must give How She Move a near-perfect rating...\n I absolutely love this show!!!!!!!, Its basica...\n I've read approximately 10 reviews of this fil...\n I viewed the movie for a second time on Septem...\n I too remember seeing this film as a youngster...\n Go immediately and rent this movie. It will be...\n I've never really considered myself much of \"s...\n The movie Haggard is one of the funniest movie...\n It was a fascinating story waiting to be told....\n I don't know what it is I find so endearing ab...\n This was the Modesty that we didn't know! It w...\n This episode so far is the best of the series....\n This movie is just plain bad. Weak story , wea...\n You've heard it said to live every moment as i...\n A serial killer , Carl Stargher , has been kid...\n I saw this film in the movie theater. I was ta...\n Well, i rented this movie and found out it rea...\n I grew up on Scooby Doo Where Are You, and I s...\n I bought this movie for about 2,5 dollars at a...\n I watched the movie while recovering from majo...\n THE GREEN BUTCHERS (Anders Thomas Jensen - Den...\n I've been watching this every night on VH1 thi...\n One of the most excellent movies ever produced...\n I want to say the acting is bad, but I think i...\n This film is so much of a rip-off of the maste...\n This movie is good for what it is, and unprete...\n Some may feel that the rating i have just give...\n I truly enjoyed this film. The acting was terr...\n I caught this for the first time a few nights ...\n Imagine the scenario - you are at the movie th...\n My original title for this review was going to...\n I didn't see this movie when it originally cam...\n A lot of people say the end did not make sense...\n There is nothing mean spirited or evil about t...\n What an incredible story and what a beautiful ...\n Our family (and the entire sold out sneak prev...\n I don't understand the many good reviews, here...\n Here I thought \"Nanook of the north\" was the l...\n The novel is easily superior and the best part...\n Minnie and Moskowitz is the most pathetic and ...\n Topical? Certainly. Entertainment? Probably - ...\n Tipping the Velvet (2002) (TV) was directed by...\n i loved this movie. you have to respect midget...\n Not having seen the 1936 version of this story...\n I don't get it! The teenage leads in \"Horror S...\n If you're coming to this film to learn somethi...\n Renee Zellweger absolutely shines as Nurse Bet...\n I like seeing Linda Blair playing in an actual...\n Ivan The Terrible is more a filmed stage play ...\n Produced by International Playhouse Pictures, ...\n This is quite a dull movie. Well-shot with rea...\n I got this for my birthday in a box set under ...\n I was entranced by this touching and hilarious...\n I really couldn't get into this movie. The plo...\n OK, the other reviewers have pretty much cover...\n The Fluffer may have strong elements of porn i...\n I have read the other user comments and I am h...\n Laughable would be a good term to describe thi...\n This is one of my favorite Mr. Motos, and I ha...\n Some saying about 'The Play is the Most Import...\n So what's the big fuss out of making an INDIAN...\n I lived in that area (Hoboken and Jersey City)...\n I don't know if it was the directors intent to...\n I was so excited to see this film because I ha...\n Something to Sing About was produced at Grand ...\n This film has gone in and out of fashion more ...\n I found this to be a charming adaptation, very...\n This movie was great the first time I saw it, ...\n Can there be a worst film? Even Ed Wood at his...\n I always loved that scratchy voiced guy in all...\n Julie (Meg Tilly) is a \"goody two shoes\" type ...\n I just saw Adam Had Four Sons for the first ti...\n Perhaps one of the first slasher film that cam...\n Just caught it at the Toronto International Fi...\n Only three words are really required for this ...\n 11 years after this film was released only 5 p...\n This movie spends most of its time preaching t...\n I was quite surprised to read some of the comm...\n It is quite a simple not very active but very ...\n A film as bad as this should be withdrawn from...\n I admit that for the first 20 minutes or so of...\n DO not take this film seriously, rent it with ...\n I saw Jack Frost for £4:00 at my local store a...\n The director infuses this film with false dept...\n I'm glad I rented this movie for one reason: i...\n There is this girl and she's running in the wo...\n I can't help but forget that incredible scene ...\n This movie is in the same league as Ishtar. Lo...\n As the front cover says \"The hamlet of our tim...\n The pre-release version of 1933's \"Baby Face\" ...\n While the British produced some hilarious and ...\n This is a FANTASTIC film. Hána is a very old g...\n Somewhere inside this movie is a half-hour epi...\n Only watched this to see Joe Morton in an earl...\n I went along to this movie with some trepidati...\n We all know what's like when we have a bad day...\n When my wife and I decided to watch this movie...\n This movie is highly improbable. Read the othe...\n This movie is probably for you. It had an over...\n The submarine used was NOT Varangian! 'It' was...\n I'm going to talk about this movie from two di...\n Insanely well crafted mini-series.<br /><br />...\n I loved Heavenly Creatures and make it a point...\n Compelling and Innovative! At the beginning of...\n This Kiyoshi Kurosawa ghost movie is pretty wi...\n This is one of the best horror movies i've see...\n Why has Ramón(Carlos Fuentes)brought his five ...\n because you can put it on fast forward and wat...\n Hindsight is a wonderful thing. Much reviled w...\n I mean, come on! Now my countrymen have starte...\n Most of what has been said about the negative ...\n Oh, man, they sure knew how to make them back ...\n I'm not sure why I disliked this film so much....\n If you've never been \"Tromatized\", this is the...\n This film is a very descent remake of the famo...\n I watched this film so many times through my c...\n It's been mentioned by others the inane dialog...\n SPOILERS Every major regime uses the country's...\n Contains spoilers I had it recorded a while ag...\n There were a lot of truly great horror movies ...\n I remember originally seeing this film at Radi...\n Alfred Hitchcock invented any kind of thriller...\n The 80s were overrun by all those HALLOWEEN/Fr...\n This 'schlock-buster' should carry a governmen...\n Great underrated movie great action good actor...\n Excellent entry in the RKO Saint series with w...\n La Teta i la Luna (The Breast and the Moon) de...\n My wife and I just finished this movie and I c...\n Don't quite know why some people complain abou...\n It's nothing brilliant, groundbreaking or inno...\n I may not be the one to review this movie beca...\n If you love Chan-wook Park, you know what to e...\n This movie should be number one on the bottom ...\n To make any film about the supposed end of the...\n It seems a shame that Greta Garbo ended her il...\n Please do not waste six hours of your life wat...\n Feeling Minnesota is not really a road movie, ...\n May contain minor spoilers.<br /><br />Dressed...\n This was a terrible film. There was no story l...\n I may be biased, I am the author of the novel ...\n I found this film to be a fascinating study of...\n IMDb lists this movie as a comedy. I have no i...\n I gave this movie a chance only because it had...\n Robert Altman is my favorite American director...\n (Spoilers)<br /><br />Oh sure it's based on Mo...\n Lifeforce (1985) was a Cannon funded film dire...\n What happened to Ava Gardner in the 1940s and ...\n I love watching early colour films - you mean ...\n I saw this film by chance on the small box. It...\n J.J. Jameson (from Spiderman 2) Quote ... Crap...\n Standard \"paint-by-numbers\" monster fare, fill...\n WORST MOVIE EVER!!!! Can't believe I wasted 90...\n Believe me, I like horror movies. I like scien...\n My only problem with The Curse of the Were-Rab...\n This documentary film is based on incomplete c...\n But sadly due to rights issues, that almost ce...\n I see that C. Thomas Howell has appeared in ma...\n I found the film Don't Look In The Basement to...\n This low budget crocodile movie really deliver...\n When you look at this now and hear all the lan...\n \"Nagisa no Shindobaddo\" or \"Like Grains of San...\n An odd beam of light penetrates the bedroom of...\n That's what I found myself saying time after t...\n Armageddon PPV<br /><br />The last PPV of 2006...\n First let me preface this post by saying that ...\n I saw this film for the first time not too lon...\n This movie makes you think. It shows how a wom...\n The folk who produced this masterful film have...\n It surprises me how much I love this movie des...\n Yes, talk about bad sequels. Rick Moranis star...\n I'm not the type of person to watch T.V. shows...\n Super-slick entertainment with a stellar cast,...\n I remember going to drive inn with my parent a...\n This is one of the most atrocious rewrites I'v...\n Wow....it's been a long time since I've last s...\n If you thought NBC's 10.5 was stupid, you'll b...\n Fate/Stay Night is an animated series inspired...\n Steven Seagal....how could you be a part of su...\n Fans of apocalyptic movies will savor this wel...\n \"Return of the Jedi\" is often remembered for w...\n F*ck Me! I've seen some incredibly horrific mo...\n This movie should not classify as cinema. Alth...\n I first watched this in black and white, circa...\n An extremely dark and brooding show with an ex...\n Luc Besson's first work is also his first fora...\n \"Problem Child\" was an okay movie, but did it ...\n This film essentially contains all the element...\n You can often tell a movie didn't turn out lik...\n i chose to see the this film on the day it ope...\n Oh. Good. Grief.<br /><br />I saw this movie t...\n Where to start, where to start....hmmm...well ...\n This is a great movie. The best role Peter Str...\n To a certain extent, I actually liked this fil...\n In the real world of art Elizabeth Wurtzel is ...\n I do not think that this movie deserves the lo...\n A light-hearted comedy, Nothing shows us a wor...\n The BBC surpassed themselves with the boundari...\n It's a funny business, reviewing movies. These...\n I have seen this movie many times and i never ...\n Night of the Demons (1988) was another in a lo...\n \"Der Todesking\" is not exactly the type of fil...\n First ever viewing: July 21, 2008<br /><br />V...\n The filmmakers apparently had enough money to ...\n Syriana swept the critics upon release and eve...\n Barney and friends...the Dora the explorer of ...\n Ponyo is a beautiful animated film with some d...\n Deep Water (2006) ****<br /><br />\"It is indif...\n OK...i have seen just about everything....and ...\n I was 15 years old when this movie premiered o...\n I watched this again after having not seen it ...\n Whoever wrote up \"Redline\" as a great car movi...\n The trailers for this film were better than th...\n A wide variety of snakes stage an uprising on ...\n One of the great mysteries of life, suffered f...\n For those of you looking for the crazy stunts ...\n This is surely one of the worst films ever mad...\n An underrated addition to the Graham Greene ci...\n I got to see an early preview of this movie an...\n I resisted watching 15 Park Avenue despite of ...\n Look, we rated this a 10 on entertainment valu...\n I'm starting to think that there's a conspirac...\n R Balki tries to tell you a story that had bee...\n The subject matter of this film is potentially...\n This movie is awful beyond belief. It's a low-...\n A fantastic cinema experience. I really enjoye...\n Alright, so not every Australian movie is all ...\n This movie is a great mocumentary. It follows ...\n A childless couple (Brooke Adams, Jeff Hayenga...\n I have watched this movie three times. The las...\n Robot Jox tries hard, but is fundamentally a s...\n While Aeon Flux was mildly entertaining and a ...\n The movie is plain bad. Simply awful. The stri...\n When I saw this movie, all I could think was: ...\n First of all let me say the first 20 minutes a...\n I finally purchased and added to my collection...\n An unpleasant woman and an equally unpleasant ...\n Don't think of this movies as just another kid...\n Oh dear - quite how Alfred Hitchcock (North by...\n many people said this was a great movie with H...\n The plot is real horrific, the atmosphere real...\n ***SPOILERS*** For some strange reason Oliver ...\n This is a whodunnit in the Hitchcock tradition...\n This is the best movie I've ever seen! <br /><...\n \"The Days\" is a typical family drama with a li...\n Aside from Frankie Muniz chattering too fast t...\n This film is based on a true story. The author...\n As I was reading through the comments, I was s...\n How powerful and captivating simple quality fi...\n A young woman, Nicole Carrow (Jaimie Alexander...\n I'm not even going to waste more time describi...\n 'Boogie Nights' uses its protagonist, Dirk Dig...\n To speak relatively, if one were only to see n...\n The best bond game made of all systems. It was...\n The back of the DVD for this movie raves, \"Che...\n It takes a little while to get used to Nick No...\n I had the dubious opportunity to view this mov...\n As I expected would happen, too many reviews o...\n I've watched many short films in my day. Often...\n There's no romance or other side plot to this ...\n While traveling by train, a woman (Stéphane Ex...\n looks like the bet movie I've ever seen. not t...\n Shes the man is great. its funny, original and...\n This is the kind of movie the US doesn't make....\n Head should have been a proud moment not just ...\n I saw this movie, when it first came out. Patt...\n Sensual and tough Maria Braun. (Hanna Schygula...\n Yikes, it was definitely one of those sleeples...\n The show is GREAT. No words to describe it. Wo...\n In my opinion, Flatley ruined the first show w...\n this film was totally not what i expected. <br...\n Opie, Tom Gilson,was my brother,so I went to s...\n Bring a box of Kleenex to this funny, engaging...\n 1 How is it that everyone can understand each ...\n I remember rather enjoying this a few years ba...\n It's interesting that all who (so far) seemed ...\n This film moved me beyond comprehension, it is...\n Oh my god. Obviously, when you rent or buy thi...\n This was one of those wonderful rare moments i...\n \"R Xmas\" peers into the lives of a middle clas...\n I'm seldom partial to movies about smart-assed...\n This was different, that's for sure. Just look...\n Wagon Master (1950) Dir: John Ford <br /><br /...\n It was clear right from the beginning that 9/1...\n In my opinion this has to be one of Barbara St...\n Having first achieved fame with Drunken Master...\n Dana Andrews is one of those actors that I've ...\n To those who have not followed the Anne Marie ...\n This film has been compared to the hilarious B...\n I´m from germany so please excuse my style of ...\n The script is very weak & there is no depth in...\n Obviously, this is not the \"Piranha\" directed ...\n I don't understand why so many of the comments...\n This is an absolute great show. Jessica Alba, ...\n In the early '80s, I recorded Honky Tonk Freew...\n There is something special about the Austrian ...\n Not one of the better pokemon movies.<br /><br...\n Seems to me that Joe Estevez spends most of hi...\n CIA analyst Douglas Freeman (Gyllenhaal) gets ...\n The scripting of the subtle comedy is unmatche...\n I remember all the hype around this movie when...\n Pickup on South Street (1953), directed by mov...\n Angels are a bit of an American obsession, but...\n I went in expecting not much from Human Traffi...\n Its a very good comedy movie.Ijust liked it.I ...\n Shame really - very rarely do I watch a film a...\n The major fault in this film is that it is imp...\n Okay, here's the deal. There's this American p...\n It is one of the joys of Shakespeare that ther...\n SPOILERS: I'm always surprised at how many peo...\n The Sea Is Watching has been made from an orig...\n I used to watch this show when I was a little ...\n John Leguizamo's one man show is both funnier ...\n Okay, when I came on the board for this movie,...\n There are movies that are awful, and there are...\n in a not so conventional sense of the word.<br...\n The story of Ed Gein is a disturbing and terri...\n Movie industry is tricky business - because de...\n This movie brings back so many memories for me...\n Hmmmmmmm - cheerleader massacre. Let me think ...\n This film is about a young man's painful journ...\n This movie is simply wonderful! It's got it al...\n My first 'Columbo'. Rather enjoyed it. Great f...\n This has to be THE WORST film I have ever seen...\n I have walked out of a Coen movie before and n...\n There are so many '10 Best' lists which could ...\n It's a shame this movie didn't get more play i...\n I had the pleasure of screening \"The Big Bad S...\n First of all I am a butch, straight white male...\n If you want Scream or anything like the big-st...\n I think this movie is the most misunderstood f...\n You'd think the first landing on the Moon woul...\n The opening sequence alone is worth the cost o...\n I love horror films, but I think they work way...\n Gandhi my father is like viewing a book, chapt...\n Aya! If you are looking for special effects th...\n Full marks for Pacino's rendering of the speec...\n There just isn't enough here. There a few funn...\n Ever since they first came to the Outer Banks ...\n It's not too bad a b movie, with Sanders, Barr...\n The plot of 'Edison' was decent, but one actor...\n This movie was a stupid piece of crap. Bad eve...\n By all accounts, this could have been an inter...\n The dialogue was pretty dreadful. The plot not...\n There isn't a whole lot going on in this story...\n I liked this movies. Its a another Yash raj fi...\n As a fan of C.J.'s earlier movie, Latter Days,...\n THE ENGLISH PATIENT not only has it all (doome...\n PLOT SPOILERS!!!! Dr. Boch (George C. Scott) i...\n Well this movie certainly was in keeping with ...\n This movie is Damian Szifrón's second immersio...\n Scientist Carl Lehman (well played by David Mc...\n Legendary hammy and arrogant horror movie star...\n I wasted enough time actually WATCHING this ch...\n This movie is a cinematic collage of gangster ...\n The greatest sin in life is being dull, and th...\n In a little town in Montana two brothers grow ...\n I was aware of Man of the Year's critical pans...\n This movie doesn't even deserve a 1/10 This mo...\n I won't say the show is all bad, because there...\n I'm not into reality shows that much, but this...\n OK, this movie was cool. I don't think it was ...\n Its a shame she didn't get screen credit , she...\n Antonioni really showed some 'cojones' when he...\n When i saw this movie the first thing that jum...\n The thirties horror films that are best rememb...\n Set in a post-apocalyptic environment, cyborgs...\n Oz was a fantastic show, as long as frequent m...\n Good movie, great story, great characters, I e...\n Might end up being the biggest disappointment ...\n How The Grinch Stole Christmas instantly stole...\n This film is about a young Indian guy who come...\n I can't say I was surprised at this atrocity w...\n Few films have left me with such a feeling of ...\n This is a very real and funny movie about a Ja...\n Bad, bad, movie, so bad it is worth watching. ...\n This is a truly abysmal `LOCK STOCK' clone wit...\n Who can watch a movie, look at Lucy Liu and no...\n Bronson took the money and ran with this film;...\n okay, my question; who's the idiot that wrote ...\n I just came back from seeing this awesome movi...\n While I agree that this movie lacks any real s...\n Uzumaki (that's Japanese for \"spiral\" or \"vort...\n The third Fred MacMurray/Carole Lombard film i...\n Some twenty or so years ago, Charles Bukowski ...\n Take a cliché story and insert Steve Guttenber...\n Red Skelton plays a radio detective known as \"...\n Would anyone really watch this RUBBISH if it d...\n WTF!! Do any of his books/movies end in a happ...\n \"The Deadly Look of Love\" is essentially \"Fata...\n This movie was like a bad indie with A-list ta...\n I have rarely laughed so hard at a movie. Noti...\n Whack!!! I got this movie because Elizabeth Ha...\n From the Star of \"MITCHELL\", From the director...\n Silent Night, Deadly Night 5 is the very last ...\n I myself feel this film is a rare treasure. No...\n I love pop culture, but I was a little apprehe...\n This movie was amusing at times, hell sometime...\n Let's get this out of the way, so the ones che...\n Talkshow with Spike Feresten is one of those s...\n Michigan, Edgar Allen Poe, a toaster, and a fr...\n Andie MacDowell's facial expressions are great...\n The Sunshine Boys is one of my favorite feel g...\n I loved the way EARTH is made. Its photography...\n This movie was extremely poorly conceived from...\n If you were born around the time this movie wa...\n Nothing's more enjoyable for me than a who-dun...\n Being a fan of silent films, I looked forward ...\n I saw this movie on it's opening night, and en...\n If you like a syfi soap opera this show is for...\n Despite the excellent cast, this is an unremar...\n Honestly awful film, bad editing, awful lighti...\n \"Eagle's Wing\" is a pleasant surprise of a mov...\n Return of the Jedi is certainly the most actio...\n It's not as good as the movie, that said it's ...\n This is a disgrace to the name of all of the l...\n The animation looks like it was done in 30 sec...\n Overshadowed by \"Braveheart\" released the same...\n OK, this simply is the worst movie ever made. ...\n I have screened this movie several times here ...\n It's always tough having a sibling doing bette...\n This two disc set is incredible! If you're lik...\n I wonder how much this movie actually has got ...\n Not as bad a film as i thought it would be.<br...\n As is frequently the case when Manga is transl...\n I've watched the first 15 minutes and I can te...\n Shame on you if you give this film a low ratin...\n I knew I was going to see a low budget movie, ...\n I'm not a big TV person... but when I saw the ...\n I borrowed (slightly modified) title from some...\n ALL GROWN UP is basically a spin off and not m...\n The same night that I watched this I also watc...\n God bless Joe D'Amato...I love Italian horror,...\n What a terrible sequel. The reason I give this...\n Having watched this movie several times, I hav...\n Main theme in this Dirty Harry is that revenge...\n After a decade of turbulent unrest, American m...\n As a mother of 2 young children who are or sho...\n This is a road movie. At least the movie is in...\n This movie was so predictable and poorly acted...\n I actually own this movie which is the MST3K v...\n I have heard an awful lot about 'The English P...\n Having developed a critical eye for film, and ...\n <br /><br />How this film ever got a 6 star av...\n The only reason I even gave it a 1 out of 10 i...\n I spied this short on a DVD of best new Zealan...\n This movie just screened on Channel Seven - Au...\n This was a excellent movie. I deal with a chil...\n The War At Home is so good it's become my new ...\n Having seen the Peter O'Toole version recently...\n Now, I am not prone to much emotion, but I cri...\n Here in Brazil is very rare to see a good Braz...\n I caught this movie at a small screening held ...\n Okay, the recent history of Star Trek has not ...\n Mani sir as usual brings out another amazing s...\n This film is really, really full of sex. Hot s...\n My tolerance for shlocky direction was overwhe...\n Chuck Norris stars as Danny, a cop who took do...\n The Blue Planet series is, without a doubt, on...\n Oh If any day u wanna see a supernatural thril...\n A fabulous film,which I have now watched sever...\n Years ago when I first read John Irving's The ...\n This movie was alright. Mary-Kate and Ashley p...\n The only reason I don't give this movie fewer ...\n I previously thought that this film was the la...\n After another raid in an empty village, the ch...\n Story about four teenage girls growing up in C...\n I'd give this film a zero if I could. How anyo...\n The second film about the adventures of the Ga...\n Even if Voskhozhdeniye was your favorite film ...\n It was pointed out in a now deleted post from ...\n I saw this movie when it came out when I was 1...\n \"Scoop\" is easily Woody Allen's funniest film ...\n This movie is an abomination, and its making s...\n While the acting and directing could be argued...\n The movie is a starter to what really happened...\n We all knew even before it aired, the Ron Moor...\n Who can ask for more? Taking my 2 and 4 year o...\n You know what they say about the 70's..if you ...\n As a child I was never in a situation where I ...\n First I was caught totally off guard by the fi...\n Cynthia Rothrock,(China O'Brien),\"Manhattan Ch...\n Only on a very rare occasion does an episode o...\n Let's just say that it might be the worst movi...\n iCarly is all that's wrong with the world. All...\n Ha. without a doubt Tommy's the evil one here....\n My friends and I have watched this so many tim...\n Idiocracy felt like Mike Judge took my thought...\n I don't care how many nominations this junk go...\n Neil LaBute takes a dramatic turn from his fir...\n If someone had nudged me about 15 minutes into...\n Last evening I had the remarkable pleasure of ...\n Kay Pollack (the man behind this movie) is a r...\n The Shining is a weird example of adaptation: ...\n Textbook example of an underestimated movie.<b...\n Yes, this film is another remake. Yes, this fi...\n Go to the video store and get the original. I ...\n Seeing this show gives me respect for MTV, tho...\n The book is better than the film mostly becaus...\n I looked forward to seeing this movie when it ...\n After watching the series premiere of Talk Sho...\n My Super Ex Girlfriend turned out to be a plea...\n This movie is the first time movie experience ...\n pokemon the movie was a terrible film. unlike ...\n This is a powerful documentary about domestic ...\n Like another reviewer, my wife bought this mov...\n Warning: mild spoilers.<br /><br />The story o...\n This is a genuinely horrible film. The plot (s...\n The only thing I knew about this film prior to...\n North And South (1985): Patrick Swayze, James ...\n Some time ago I saw this when HBO was showing ...\n \"Så som in himmelen\" was probably one of the 3...\n Mad Magazine may have a lot of crazy people wo...\n It's a good show, and I find it funny. Finally...\n Do not see this film. In most cases, such as t...\n This Stan Laurel comedy short is a cute little...\n Let's get things straight. I was raised Cathol...\n Unlike some of the reviews written here, I did...\n In the late sixties director Sergio Corbucci m...\n Heart of Darkness Movie Review Joseph Conrad's...\n I'll be blunt and to the point. This film is n...\n I was curious to watch this movie. A lot of pe...\n Summer Phoenix did a great performance where y...\n Brilliant and moving performances by Tom Court...\n Excellent performance by Mary KAy Place, Steve...\n Young writers, young auteur, young cast, buslo...\n Its a very sensitive portrayal of life with un...\n a very surprisingly underrated movie. very rea...\n I saw this in Detroit in what must have been i...\n I love this movie ! I think I've seen it 5 tim...\n I must have been around ten years old when my ...\n Fellow Giallo-fanatics: beware and/or proceed ...\n This movie is totally wicked! It's really grea...\n Since the past couple of days I'm really hooke...\n I myself am a big fan of low-budget 80's horro...\n This show was absolutely terrible. For one Geo...\n Give this movie a break! Its worth at least a ...\n Nothing about this movie is any good. It's a f...\n ...and normally i don't like surprises!! Watch...\n Obviously, Ponyo can be seen as just not anoth...\n On assignment in scenic Italy, beautiful lip-s...\n (Synopsis) In the year 2055, the rich are able...\n Saw the film at the closing gala of the Ealing...\n With looks that could kill, and a willingness ...\n Jeff Speakman never really made it beyond the ...\n This is a great flick! It is funny for everyon...\n A mercilessly corny and painfully unfunny atte...\n The characters are unlikeable and the script i...\n OUCH, No real need to say anything else. This ...\n I'm a writer working at home and Diagnosis Mur...\n Jeremy Northam struggles against a \"Total Reca...\n And I do not understand why the show gets so m...\n A picture starring Danny Devito and Billy Crys...\n Clint Eastwood is Bronco Billy, the leader of ...\n It's terrible how some people can get away wit...\n This takes place on Fire Island back in the 19...\n This movie is similar to the play entitled 'Bl...\n *****THIS REVIEW MAY HAVE SPOILERS - but that ...\n I worked on this atrocity ten years ago. Lucki...\n William (Nicholas Ball) and Emma Peters (Rache...\n I can't believe that I actually sat thru this ...\n Mud and Sand is one of Stan Laurel's spoofs of...\n If you described any of the scenes; nightmares...\n I f you thought Sam Mendes' first film, the mu...\n If you haven't watched the movie yet, but you ...\n No doubt about it, Rampling is gorgeous -- a c...\n DVD has become the equivalent of the old late ...\n I remember watching this as a child as part of...\n I can't believe how awful this movie turned ou...\n A fine ironic visual gag takes place in front ...\n I don't know what it is about the crew from CK...\n Personally, I LOVED TRIS MOVIE! My best friend...\n This film is worth seeing alone for Jared Harr...\n This series could very well be the best Britco...\n I must say, when I read the storyline on the b...\n I've tried to watch this film 3 or 4 times, bu...\n although i liked this Western,i do have to say...\n Don't be fooled by the nostalgic aura that sur...\n This is a low-budget spoof of the espionage ge...\n Jack Frost is about a serial killer who is sen...\n A paranoid scientist creates a wolfman by tran...\n This anime recounts the tale of the Battle for...\n Sure, for it's super imagery and awesome sound...\n I knew nothing of this film before I was convi...\n If you are looking for a modern film version o...\n Doctor Who is amazing. It is everyones 'cup of...\n A movie about a French girl who gets raped by ...\n This is the kind of movie that leaves you with...\n Every episode I saw when I was an innocent chi...\n ... You can't exactly shove her out of the way...\n Loved today's show!!! It was a variety and not...\n The story and music (George Gershwin!) are won...\n Okay, anyone looking to see a great work of ar...\n I live in Rome where the Turkish director of t...\n We can start with the wooden acting but this f...\n I've no idea what dimwit from San Francisco ca...\n While I totally disagree with one reviewer who...\n This doesn't quite plumb the depths of Creepsh...\n I just saw \"Behind Bedroom Doors,\" and this wa...\n The scariest thing about freshman director Car...\n The name \"Lucio Fulci\" congers up images of gr...\n The screen writers for this mini-series should...\n I remember when this came out it was the first...\n After renting One True Thing the other night, ...\n Smartly written, well acted, intense and suspe...\n first this deserves about 5 stars due to actin...\n Sweet young nurse Charlotte Beale (a charming ...\n This movie is very entertaining, and any criti...\n This starts out interestingly, as there's a ca...\n This film is outstanding! On this date of APR,...\n Okay like most Steven Seagal fans I know I not...\n The acting is awkward and creepy, and not in a...\n I bought this movie from a market stall three ...\n I was surprised how much I enjoyed this. Sure ...\n Sorry this movie did not scare me it just anno...\n It is nice to see the likes of Oliver Stone, B...\n Gung Ho is one of those movies that I never ge...\n This movie strikes me as one of the most succe...\n Dil was a memorable movie that bring to the ce...\n Uma Thurman plays Sissy, a young woman with a ...\n What horrible writing and acting. No personali...\n First, let's call this movie what it is:<br />...\n Hooper is Not Funny, Not Fasted paced, Not rom...\n THE FOURTH MAN (Paul Verhoeven - Netherlands 1...\n \"Grande Ecole\" is not an artful exploration of...\n What a wasted cast.<br /><br />This is one of ...\n You have to respect this movie. It may be \"jus...\n Within the realm of Science Fiction, two parti...\n WHAT AN AWESOME FILM!!!!!!!! I came out of the...\n Being a huge horror movie fan, one of the most...\n I would have liked to give this movie a zero b...\n Acolytes presents an interesting mix of origin...\n Corey Haim is never going to be known as one o...\n Just to let everyone know, this is possibly th...\n I had never heard about this movie when it was...\n I can appreciate movies with subtitles from fo...\n For those of us who are part of the real world...\n Cinematically, this film stinks. So does a lot...\n Taut, topical political thriller, taking squar...\n Yes, I give it a 10 because I compare it not o...\n After a string of successful 'a man and his mo...\n The only complaint I heard about this film was...\n I saw this movie on the BIFFF Festival in Brus...\n \"The Haunted World of Edward D. Wood, Jr.\" is ...\n Lisa is a hotel manager or owner and she gets ...\n I came across this film by accident and wish I...\n Although it doesn't seem very promising for a ...\n No, \"Lifeforce\" is not a great movie.<br /><br...\n It'd be easy to call Guys and Dolls great. It'...\n Seven Pounds stars Will Smith as Ben Thomas, a...\n I chose to watch this film because I am a Step...\n This movie is not just good, its amazing. Besi...\n Adored by fans for his unusually charming crea...\n I watched this film on Telly the other night a...\n The ultimate homage to a great film actress.Th...\n I can't express enough just how bad this film ...\n This film did well at the box office, and the ...\n It's not difficult, after watching this film, ...\n I voted 3 for this movie because it looks grea...\n I was raised in a \"very Christian\" household s...\n Freely, from one scene to another, from one st...\n On the bright side, it ended. That's the only ...\n \"Broadcast News\" is directed by James L. Brook...\n this movie is quite bad, aggressive, not playe...\n This Lifetime style movie takes the middle age...\n \"Fear of a Black Hat\" is a superbly crafted fi...\n Okay, some other people have commented that th...\n Without a doubt the most impressive recent gay...\n Really bad movie. Maybe the worst I've ever se...\n I am sorry to fans of this film but it is the ...\n When I was very young,on a local tv station,th...\n About the worst movie in distribution right no...\n Okay, so I love silly movies. If you enjoy sil...\n Fragmentaric movie about a couple of people in...\n A team of amateur journalists and tree-huggers...\n This series is set a year after the mission to...\n One of the best Tarzan films is also one of it...\n It is OK movie if it would be done by high sch...\n The very first time I saw this I recoiled in H...\n \"Dominion\" is a good movie,but not original.It...\n this film is in the MANDINGO & DRUM type<br />...\n ... and I DO mean it. If not literally (after ...\n well i wasn't sure what the film was going to ...\n I have a lot of time for all the Columbo films...\n YETI deserves the 8 star rating because it is ...\n I am and have been a serious collector of Chri...\n This year's Royal Rumble wasn't really bad, bu...\n Sometimes it's hard to judge how bad a film ma...\n The problem with THE CONTRACTER is summed up b...\n As low budget indies go, you will usually find...\n Even Mel Gibson couldnt save this slop of a mo...\n You've got to be kidding. This movie sucked fo...\n Jeff Wincott is not only a Hunk, he can kick b...\n The title of this film is taken from a party g...\n A mix of 70's drug humor along with parody of ...\n I have not seen a Van Damme flick for a while,...\n In terms of quality movies, this isn't one of ...\n THE SEA INSIDE a film by Alejandro Amenabar.<b...\n Airport '77 starts as a brand new luxury 747 p...\n I missed the beginning but I did see most of i...\n Considering the film’s reputation as truly the...\n Back in the forties, when movies touched on ma...\n After seeing several movies of Villaronga, I h...\n Strikes me as routine, as far as TV movies go....\n The young John Garfield turned in a fine perfo...\n This movie is total dumbness incarnate. Yet, i...\n Sometime I fail to understand what do the dire...\n This movie starts with interesting set design ...\n This film is excellent! Fear of watching docum...\n Despite much style, flash, and glitter, this F...\n Saw this Saturday night at the Provincetown Fi...\n I own this movie. I am actually from the same ...\n This amusing Bugs Bunny cartoon sees the retur...\n Drew Barrymore keeps seeing her alter-ego all ...\n All the right elements seemed to conspire here...\n This is a classic example of what happens when...\n A good friend of mine one said: \"A monkey is f...\n *** Warning - this review contains \"plot spoil...\n This movie is one of the most wildly distorted...\n This is one for the Golden Turkey book. It's a...\n I was geared up to not like this movie, and th...\n The Hebrew Hammer is a clever idea wasted, as ...\n I've read many negative reviews of this movie ...\n Looking for Quo Vadis at my local video store,...\n It's nice to see Julie Andrews trying a straig...\n This digital horror film brings us into the Mi...\n Darcy and her young daughter Pamela are headin...\n This is possibly the worst film I have ever se...\n This is a fine concept piece and the acting by...\n Its a sin how these things are made, but then ...\n Some illegal so-called asylum seeker comes to ...\n I was fortunate to attend the London premier o...\n This show has a few clichés and a few over the...\n THE RED CIRCLE (Jean-Pierre Melville - France/...\n Not bad but could be loads better, also seems ...\n I don't care what anyone else says, this movie...\n I'd been postponing purchasing this one ever s...\n i honestly think that that was the best versio...\n Following on directly from the last episode of...\n For 50 years after world war 2 the United Stat...\n It was a terrific movie! I like to watch it ag...\n Not many people have seen this film, and it is...\n Firstly I loved the book, more so than the mor...\n Okay, I admit I like Brigitte Neilsen in an un...\n Wow...I don't know what to say. I just watched...\n This film is moving without being sentimental ...\n Ever since I remember, I have loved airplanes ...\n May 2004, Wonderland is fairly new in the UK. ...\n Not sure if I'm referring to those who labeled...\n We went to see Manna from Heaven, my husband, ...\n As a fan of Notorious B.I.G., I was looking fo...\n The unpleasant \"home invasion\" genre can be tr...\n OK first of all let me say that i'm still amaz...\n Oh how awfully this movie is! I don't know if ...\n Movies like this make me wonder what modern ho...\n This movie was a classic. I would have to say ...\n I lay the blame for The Comebacks on anyone wh...\n or any stories reminiscent of the Leopold and ...\n In the only act of commonsense they have ever ...\n I just finished watching this film and WOW was...\n Went out with my friends and saw this movie la...\n A couple are split apart during a vacation. Ea...\n This movie is widely admonished as being a cop...\n An Intelligent and well obtained film worth to...\n I have seen this movie maybe a 100 times, neve...\n Hitchcock was of the opinion that audiences ar...\n It's so sad that Romanian audiences are still ...\n I had the great pleasure of recently viewing t...\n This film is an hour or so of good entertainme...\n This is widely viewed in Australia as one of t...\n So on the Chills Network on cable they are hav...\n I read so many comments that I, too, shared ab...\n A beautiful movie, especially if you like hors...\n The Custer Legend, a la Warner Brothers Epic. ...\n This comedy is really not funny. It' a romance...\n So I turned on the TV today at 1:00 PM on a Su...\n After reading the comment made about this movi...\n This is the third movie in a month I have watc...\n First Off, I am a huge fan of Robert Blake, al...\n Arthur Miller certainly knows. His stories giv...\n Corny and some really bad acting but for a Gol...\n I always thought my father had a second life a...\n Hollywood now has officially gone too far and ...\n This is one dreary, inert, self-important bore...\n The animal-eating (geek) scenes were not as ba...\n It's exactly what I expected from it. Relaxing...\n Long before \"Brokeback Mountain\" (about 23 yea...\n This picture seemed way to slanted, it's almos...\n I'M BOUT IT(1997)<br /><br />Developed & publi...\n When an orphanage manager goes on vacation, hi...\n This movie rivals \"Plan 9\" as one of the dumbe...\n I am a Shakespeare fan, and I can appreciate w...\n This started out slow, then got worse. The bes...\n My friends usually can put up with a lot of ho...\n Kudos to the patience of Paul Muni, who spent ...\n This is one of my favorite comedies ever. Not ...\n I have always loved bad creations, rhetorical ...\n My Caddy Limo was destroyed!!! Well, I had one...\n this movies is really special ! it's about a y...\n Garlin outdoes himself as writer-director-acto...\n Fox is pretty lame. They cancel the wrong show...\n Just had the misfortune to see this truly awfu...\n Even if you know absolutely nothing about Irel...\n First off, I would like to point out that the ...\n I don't think any player in Hollywood history ...\n From the beginning of the movie, it gives the ...\n Actress Ruth Roman's real-life philanthropic g...\n The major flaw with the film is its uninspired...\n Splendid film that in just eight minutes displ...\n Back in the day of the big studio system, the ...\n Blood Castle (aka Scream of the Demon Lover, A...\n All the other comments already said what I was...\n First I'd like to excuse my bad English.<br />...\n Well, some people might go to see this to watc...\n The best thing about \"The Prey\" is the tag lin...\n A wonderful television mini-series completely ...\n I had to watch this movie for professional rea...\n This is an Excellent little movie! The acting ...\n This is a great British film. A cleverly obser...\n Angels and Demons: 3 out of 10: Clearly someth...\n Meh, Sums it all up for me really. Boring stor...\n Schoolies is a pointless exercise... Go to Gol...\n I have not seen this movie in ages but figured...\n I'm sorry but this is just plain pathetic. The...\n The Western society has been fed ideas about I...\n I bought this because it was $1.99 and Harry C...\n Seeing the title of this movie \"Stupid Teenage...\n OK, so I'am chilling in my room when mom knock...\n I admit to being in awe of the Sea and have sp...\n It's a sad state in corporate Hollywood when a...\n Yes non-Singaporean's can't see what's the big...\n Sleepwalkers are creatures who drain the life ...\n I am a regular reader of Kathy Reichs' Tempera...\n This crap is like watching paint dry. I'm so d...\n After the already disappointing \"Final Conflic...\n I saw this movie years ago, and I was impresse...\n When I first saw a glimpse of this movie, I qu...\n This movie is an abortive, stillborn attempt t...\n Hello it is I Derrick Cannon and I welcome you...\n When me and my GF went to see this film, we di...\n <br /><br />This film is a summary of Visconti...\n I'm not even gonna waste time on this one; it'...\n I was disappointed with the recent (2000) Amer...\n Oh, dear! This has to be one of the worst film...\n War is hell. But this documentary of WWII is h...\n This film set the standard for all rock biopic...\n In this Muppet movie, Kermit, Miss Piggy, Fozz...\n This movie had all the potential and makings o...\n The original 1965 Japanese film \"Gamera\" http:...\n This production never really got off the groun...\n It's easy to forget, once later series had dev...\n The only reason I am giving a second star is f...\n As an ex Merchant Seaman I was really interest...\n I know it's not original, but what the hey? Wh...\n My wife and I never got into the movie.We thou...\n A good, but not great film, \"The Great Dictato...\n After seeing the trailer of this film in the c...\n I discovered this film after reading the book ...\n This formulaic film (hero's girlfriend marries...\n I have seen a few of Fred Carpenter's movies o...\n **SPOILERS**<br /><br />This is one BAD movie....\n This is a beautifully filmed movie that questi...\n Oddly, I have very little to say about \"The Bo...\n <br /><br />Human Body --- WoW.<br /><br />The...\n This ranks way up there on my top list of wors...\n This movie succeeds at being one of the most u...\n This movie have 4 parts and every is around 17...\n But this is a great martial arts film. Liu Chi...\n Pushing Daisies was a wonderful show. Much lik...\n Watching this movie, I can't help drawing the ...\n What a total lump of poopoo this was! You've g...\n This is one military drama I like a lot! Tom B...\n I know most of the other reviews say that this...\n Having known and loved this book since I was e...\n I became a fan of the TV series `Homicide: Lif...\n This film, like much of their music, is either...\n This film takes what could have been a good id...\n With a tendency to repeat himself, Wenders has...\n With the fairly recent release of Carlos Saura...\n This very finely crafted film commits the unfo...\n Poor Shirley MacLaine tries hard to lend some ...\n Okay at first this movie seemed pretty good ev...\n there is a story, but more essentially, the wo...\n Some of my old friends suggested me to watch t...\n An updated version of a theme which has been d...\n This film was not about stereotypes, nor dance...\n \"Unhinged\" is one strange little film, a forgo...\n Imagine that you are asked by your date what m...\n and parading around a 14-year-old girl in a th...\n I just watched this on Turner Classic Movies L...\n I went into this expecting not to like it; I f...\n This movie is a prime example of squandering g...\n Two years later... Bill (Alex Winter) and Ted ...\n I was so looking forward to watching the docum...\n Someone mentioned editing. This is edited badl...\n I gave it an 8 star rating. The story may have...\n Without \"mental anachronism\", this film which ...\n Fuckland is an interesting film. I personally ...\n I remember watching this movie on TV a few yea...\n I really have to say, this was always a favori...\n I went to the movies to see Claudine and loved...\n Giant Robot was the most popular Japanese TV s...\n I figured that any horror film with Orson Well...\n I first saw this movie in a queer film festiva...\n Writer-director Dean Bell offered many surpris...\n Enigma is a computer part which scrambles Russ...\n May or may not contain spoilers. <br /><br />I...\n The Capture Of Bigfoot is one of the silliest ...\n First, this film is not a \"thriller.\" Neither ...\n This is another of my favorite Columbos. It sp...\n There's something frustrating about watching a...\n Wendy Wu: Homecoming Warrior has a very good, ...\n I saw this at the 2004 Stony Brook Film Festiv...\n I saw this film at the Toronto International F...\n SPOILER ALERT--AND I REALLY MEAN IT!! READ NO ...\n Aside for being classic in the aspect of its c...\n For a movie with a plot like this I would norm...\n Damn, was that a lot to take in. I was pretty ...\n I absolutely love stand-up comedy. I love to h...\n One of the last films DIRECTED by Lionel Barry...\n Begotten is certainly an experience, and a out...\n I'm not going to tell anyone what happens in t...\n As I watched this movie I began to feel very n...\n This is just a very bad film. Miles looks as i...\n Jewish newspaper reporter Justin Timberlake (a...\n I cannot see how anyone can say that this was ...\n It has its merit's; Morvern Callar is both the...\n Of the ten actors who portrayed Philo Vance in...\n I remember when I first saw this movie. I was ...\n There's simply no redeeming quality about this...\n if you didn't live in the 90's or didn't liste...\n I Sell the Dead is a big, sloppy horror comedy...\n <br /><br />There is STAR TREK canon -- lots o...\n Fragglerock is excellent in the way that Schin...\n Believe it or not, at 12 minutes, this film (f...\n If Archie Bunker was armed, he may well have b...\n Well, what was fun... except for the fun part....\n I wasn't sure when I heard about this coming o...\n This movie was in a box set with 20 others, wi...\n When I saw 6.0 on IMDb, I was rather impressed...\n Its plain to see why the makers of Scary Movie...\n 'Take Fame' and 'You've Got Served' and roughl...\n Near-wonderful mixture of comedy, romance, and...\n Now, I watched this when I was hungover one Su...\n This is hands down the worst movie of all time...\n As I said the idea itself was great and it had...\n Yet again one of the most misunderstood Goddes...\n Alright, I have to admit that I have never see...\n I was China in this film. I choose the screen ...\n This movie is all about blaxploitation, there ...\n When I started watching the show I said \"Oh, n...\n When I saw that Mary Louise Parker was associa...\n Jean Seberg had not one iota of acting talent....\n This film's a big bore. It has a plenty of Pre...\n I had no idea what this movie was until I read...\n I have seen about a thousand horror films. (my...\n I saw Bogard when it was released in the 70s. ...\n I'm not going to say the story of the movie as...\n ...when he remade Broadway BILL (1934) as RIDI...\n This is the kind of film you want to see with ...\n Well, what's wrong with the title \"Separate Li...\n Slayer is a mindless vampire movie with a few ...\n There is only one problem with this website, y...\n I was not expecting a classic, but at least a ...\n This is an excellent example of what can be do...\n Believe it or not, the Mona Lisa actually got ...\n The basic plot is good and can be engaging. Th...\n Hello Playmates.I recently watched this film f...\n After a while I realized it was just my IQ slo...\n This one reeler produced by MGM in 1936 showca...\n I will start by saying I have always been a Bo...\n The screen-play is very bad, but there are som...\n Lucio Fulci was famous for his Italian splatte...\n Yesterday I attended the world premiere of \"De...\n Why do people make bad movies? Didn't anyone w...\n WEBS is a pretty odd movie, albeit slightly wa...\n The summer of 1979, when this flick was a stap...\n I should start off by saying I have something ...\n There really is only one reason to watch this ...\n I can fondly remember Bo Derek's heyday and th...\n Don't listen to the prissy critics who are pro...\n Gabe Ryan (Frankie Thomas) gets out of reform ...\n A pre-code stunner with Stanwyck playing a spe...\n For a film by a first time director, this is a...\n I like silent films, but this was a little too...\n Another attempt by modern Japanese directors t...\n This is a truly awful movie. The jokes are few...\n Intelligent, stylish, and compelling thriller ...\n This movie really sucks.<br /><br />Just try t...\n In modern day Eastern Europe life is hard and ...\n ...but a lousy film. As Maltin says this was C...\n I fail to understand why anyone would allow a ...\n Went to watch this movie expecting a 'nothing ...\n Yes, MTV there really is a way to market Daria...\n I love watching a good gory giallo. Unfortunat...\n If utterly facile, regressive, self-indulgent,...\n This is the most inaccurate and disgraceful bi...\n One of my favorite movies. Great cast, lead by...\n I first heard of Unisol 2 when I drove past a ...\n I thought I read somewhere that this was the l...\n A very bizarre bringing to the screen of Willi...\n First love. Teenage love. We all have experien...\n Random Hearts is a very well directed, well sc...\n Some might scoff, but there is actually a real...\n I thought watching employment videos on corpor...\n The main reason to check this one out is to wa...\n This sequel proves that Tim Burton was for all...\n I love Ustinov's distinctive, literate narrati...\n I am insulted and angry over the idea that a s...\n I really enjoyed watching Hell to Pay. I've be...\n Sure, this flick set in Eastern Europe is fill...\n Spoiler with plot explanation: a poor family i...\n I watched this episode a lot of times because ...\n I once thought that \"The Stoned Age\" was the w...\n Wonderful film, one of the best horror films o...\n The cult of personality has elevated the statu...\n Unless you are already familiar with the pop s...\n There are subtleties in this film that I think...\n Without a doubt this is one of the worst films...\n Four prisoners share a single cell: the domine...\n I thought this movie seemed like a case study ...\n Being a big fan of the \"other\" PLANET OF THE A...\n This game is from a genre of games that tried ...\n Walking With Dinoasaurs is a new and exciting ...\n Apart from the DA (James Eckhouse), and a brie...\n An interesting idea involving an alternative d...\n You don't review James Bond movies, you evalua...\n I was 10 or eleven years old when this movie c...\n Adam Sandler's movies are my favorite comedies...\n FAIL. I'd love to give this crap a 0. Yes, I r...\n In the XXII century an architect by the name o...\n Despite the rave reviews this flick has garner...\n This film is definitely a product of its times...\n with very little screen time and money, Dan Ka...\n I didn't personally know Karen Carpenter, nor,...\n This movie is one of the most awful I've ever ...\n Rock Star: INXS was the best music TV series I...\n A woman in love with her husband (he's suicida...\n I did not enjoy the film Eraser whatsoever. It...\n This is a very funny movie! I have no idea whe...\n For me this is Ealing Studio's most perfect fi...\n In 1989, Aardman Animations introduced the two...\n I remember seeing this film in the theater and...\n Early film directed by D.W. Griffith; it featu...\n \"They both believed that a hidden sentiment ha...\n I really can't see why people seem to dislike ...\n You might be tempted to rent this film because...\n 'Cry Freedom' is a movie about how far people ...\n Yesterday was Earth Day (April 22, 2009) in th...\n The House of the Dead was the worst movie I ha...\n Why didn't this pick up a bag full of Oscars? ...\n If, in the first 10 minutes of this film, you ...\n Inspector \"Dirty\" Harry Callahan once again an...\n \"Wired\" would have to rate as one of the ten w...\n Jeremy Northam's characterization of the stutt...\n TV director uses astral projection to kill peo...\n This is absolutely the most stupidest movie ev...\n This has the absolute worst performance from R...\n Laura Gemser plays a magazine photographer who...\n Dana Andrews stands \"Where the Sidewalk Ends\" ...\n I recently rented Twister, a movie I'd seen se...\n One of my favorite Twilight Zone episodes. And...\n It's very sly for all of the 60's look to the ...\n The bad news: the Canadian version of Beast In...\n I'm giving this movie a 1 because there are no...\n Aghhhhhh! What a disappointment. A perfectly g...\n This is a movie with an excellent concept for ...\n Martha Plimpton has done some prestigious movi...\n What can I add that the previous comments have...\n This is one of the all-time great \"Our Gang\" s...\n I missed the entire season of the show and sta...\n This movie is too stupid for words. Even if yo...\n This is almost the worst film you will ever se...\n I have to say, as a BSG fan I wasn't exactly s...\n Hey all you jive hustlers, you stone foxes, yo...\n The movie I received was a great quality film ...\n While everyone does a decent job in this film,...\n Sometimes realism can work against the effecti...\n First I must say that I enjoyed the first Unde...\n For all intents and purposes, Showtime was the...\n I felt it necessary to respond to the comments...\n I should have realized that any two-video set ...\n What a load of Leftist Hollywood bilge. This m...\n \"Death Wish 3\" is the movie equivalent of a sh...\n A friend of mine was in the cast as a FEDS age...\n Yes, it's Sean Connery playing Bond again, loo...\n This is a \"revised\" Riverdance presentation, s...\n When It Comes to ANY Movie that was made in or...\n This is the moving tale of Scotland's legendar...\n i didn't enjoy this movie at all.for one,i jus...\n Invasion of the Star Creatures would definitel...\n Hey Arnold! is a slow-paced and slightly borin...\n Yes, in this movie you are treated to multiple...\n I just spent the last half an hour reading thr...\n Poorly-made \"blaxploitation\" crime-drama aimed...\n I am very impressed by the reviews I've read o...\n I enjoy gay-themed movies where the characters...\n I got to see the movie \" On Thin Ice\" on the t...\n I feel this is one of the best movies I've see...\n Before seeing this movie, please check out rev...\n If you're the kind of movie-goer who enjoys or...\n This is an intimate movie of a sincere girl in...\n Wow! That James Purefoy looks exactly like Tho...\n Overall I found this film good: exceptional ac...\n In an interview, David Duchovny said he hasn't...\n Oscar Wilde's comedy of manners, perhaps the w...\n \"GEORGE LOPEZ,\" in my opinion, is an absolute ...\n Although I have not seen this mini-series in o...\n \"Wisecracker,\" the biography of actor William ...\n I rented this one to see Vanesa Talor one more...\n Insisting that Martin Luther King's inspiratio...\n High heels are tricksy things. They can elevat...\n This delightful movie tells the story of buds....\n Lolita is a rebel and she's going to share to ...\n From the first to the last scene of the movie,...\n It's very funny. It has a great cast who each ...\n What's there not to like?<br /><br />I caught ...\n I gave this a 10 out of 10 points. I love it s...\n First of all, I am not a huge fan of contempor...\n simply i just watched this movie just because ...\n This movie proves that good acting comes from ...\n Omen IV (1991) was a bad made-for-T.V. movie. ...\n Now being a fan of sci fi, the trailer for thi...\n This movie got better with time. I can't belie...\n Oh my god, this movie is incredible, it's the ...\n Wow. Uhm...well...wow! I guess I'll start with...\n I really wanted to like this movie. It has a n...\n I watched this movie and all I can say is this...\n As anyone old enough knows, South Africa long ...\n I'm an incorrigible skeptic and agnostic and w...\n OK - you want to test somebody on how comforta...\n It's a good thing I didn't watch this while i ...\n Please see also my comment on Die Nibelungen p...\n Though not exactly a comedy in the usual sense...\n The only pure life, is one that ends with a si...\n After spending half an hour examining Rumors, ...\n Lethargic direction ruins an otherwise compell...\n A lot of good things could have been done with...\n \"Everything is Illuminated\" is like viewing a ...\n **WARNING: POSSIBLE SPOILER**<br /><br />If yo...\n Revenge is the theme of this Denzel Washington...\n Yes, it's another great magical Muppet's movie...\n This is just the same old crap that is spewed ...\n This is probably the best movie filmed in at l...\n Oh, come on people give this film a break. The...\n I consider myself lucky that I got to view a w...\n David Lean's worst film. Even 'In Which We Ser...\n In what I can say was a theft of my time I was...\n I love this movie! 10 out of 10 hands down! It...\n When i went to see this i thought, i liked the...\n This is yet another tell-it-as-it-is Madhur Bh...\n Bonny Hunt scores a coup with her directorial ...\n An excellent thriller of all time. Vijay Anand...\n Daniell Steel's Daddy, what a refreshing story...\n I just saw this movie yesterday...I cannot bel...\n The story itself is routine: A boy runs away f...\n I found this movie to be preachy and unrealist...\n A female friend invited me to see this in the ...\n one of my favorite lines in Shakespeare.<br />...\n As a true lover of film I must advise you to a...\n What a class bit of British cinema! It's about...\n I watched this movie. To the end. And that was...\n Alfred Hitchcock's remake of \"The Man Who Who ...\n Looking at the ratings you would assume this i...\n I have to be 100% honest with you fellow IMDb ...\n No one would argue that this 1945 war film was...\n I just want to say that this production is ver...\n i am very disappointed with this movie because...\n No words can describe my utter hatred for this...\n There is more to this movie than meets the eye...\n 15 PARK AVENUE is the address \"Mithi/Mithali\" ...\n If you see this movie, you know you will see a...\n Not a very good movie but according to the inf...\n This sci-fi masterpiece has too many flaws aft...\n I have seen this film many times and I like al...\n If you like movies that will make you think, t...\n I havent seen that movie in 20 or more years b...\n This movie is great. Stylish, fun, good acting...\n Jackie Chan movies are typical examples of how...\n Henri-Georges Clouzot's film is quiet an examp...\n I have not seen this movie since 1979 when I w...\n One of those el cheapo action adventures of th...\n Hollywood movies since the 1930s have treated ...\n I think Shane Black is one of the all time gre...\n Imagine turning out the lights in your remote ...\n Not that I was really surprised....movies are ...\n This movie is well done on so many levels that...\n I saw this film at the Santa Barbara Film Fest...\n This being my first John Carpenter film, I mus...\n I remember I loved this movie when it came out...\n Christopher Lambert is annoying and disappoint...\n I have been watching \"LOST\" with my family sin...\n At the Academy Awards ceremony on March 27, 19...\n Oh man is this movie bad. It flows horribly. T...\n Working in a music store, my collegue first ti...\n If you've seen other movies like this, they're...\n just another showcase of led zeppelin at their...\n Prince of Central Park (2000) is so utterly ba...\n There is a reason to call this a teen flick. O...\n When I was in 10th grade me and my buddy were ...\n This was intolerable. (SPOILER #1) Protagonist...\n I saw this by chance showing on cable on wante...\n This is the kind of movie i fear the most. Arr...\n No. Just NO. That's all that needs to be said....\n I watch many movies, but presently my genre nu...\n When I saw this movie three years ago, I thoug...\n To like this movie at most you must be a)stron...\n Me and my sister rented this movie because we ...\n I was a Marine at Camp Pendleton when the D.I....\n Set in the Cameroons in West Africa in the 195...\n The main attraction of Anywhere but Here is th...\n First of all this movie is a piece of reality ...\n Ten minutes of people spewing gallons of pink ...\n This is supposedly a story in which a GROWN MA...\n This movie, even though is about one of the mo...\n My Name is Modesty is a low-budget film that t...\n I had quite high hopes for this film, even tho...\n The first half hour or so of this movie I like...\n For those who think of Dame May Witty as the k...\n Let's see. What annoyed me most? The extra lon...\n One of the most underrated movies I've seen in...\n I gave this movie a 5 out of pure pity. My int...\n Greetings from Lithuania.<br /><br />This is t...\n This is my all-time favorite Fred Astaire and ...\n There is only one film I can think of that mig...\n I remember that show. I still remember that ki...\n Bad editing, bad production values, bad contin...\n This film, for what it was set out to be, succ...\n This movie is very funny. Amitabh Bachan and G...\n I wasn't expecting much because of the harsh r...\n I tried restarting the movie twice. I put it i...\n I'm a Christian who generally believes in the ...\n All movies that contain \"goofy sound effects\" ...\n Quentin Tarantino's partner in crime Roger Ava...\n I suck at gratuitous Boob references, so i'm j...\n Although this small film kind of got lost in t...\n One of the most definitive gangster films of t...\n What's the point of this messages if not to di...\n When I saw this movie cover, the first thing I...\n I don't really mind the creative ideas interje...\n This is a slick little movie well worth your t...\n Being a great fan of Disney, i was really disa...\n I can only assume that the other reviewers of ...\n The first reviewer is right - In this movie we...\n In a way, this film reminded me of \"Jumping Ja...\n \"A Guy Thing\" may not be a classic, but it sur...\n This movie was extremely funny, I would like t...\n When I was young I had seen very few movies. M...\n I cherish each and every frame of this beautif...\n I find it difficult to comprehend what makes v...\n Michael Allred's comic book stories, particula...\n This movie is truly unique. It really captures...\n This movie was really stupid and I thought tha...\n Dumb is as dumb does, in this thoroughly unint...\n OK, so obviously ppl thought this was a good m...\n This movie is a great movie ONLY if you need s...\n Seldom do we see such short comments written b...\n Lots of singing and dancing in this one, espec...\n Poorly directed short \"film\" (shot on hi-def o...\n The Curse of Monkey Island. Released excactly ...\n this is a piece of s--t!! this looks worse tha...\n In my opinion dads army is thee best British s...\n ANCHORS AWEIGH is an entertaining MGM musical ...\n The late, great Robert Bloch (author of PSYCHO...\n Outside the household is a different world and...\n As I peruse through the hundreds of comments t...\n I saw this in the theater during it's initial ...\n This movie just didn't do it for me. I like ho...\n The question of whether or not one likes this ...\n 1928 is in many ways a \"lost year\" in motion p...\n You, know, I can take the blood and the sex, b...\n Based on the best selling novel by Khaled Hoss...\n We were excited to rent this one after reading...\n The story is shortly about the faith-lacking b...\n Never been kissed starring Drew Barymore as Re...\n So far Nightmares and Dreamscapes has been err...\n Okay, to be fair this movie did have an intere...\n I've been watching \"Dick Tracy\" for years, and...\n A good cast is appallingly wasted in this slow...\n This is an awful movie from just about every p...\n Well, shuck me sideways. I haven't seen a home...\n This is one cheap looking movie! A stripper ke...\n I grew up in Houston and was nine when this mo...\n \"RVAM\"'s reputation preceded it. I first heard...\n Yesterday was one of those days we decided to ...\n Extremely well-conceived - part whatever happe...\n Well, well... Even if you're a fervent admirer...\n I really don't want to compare Martin Scorsese...\n This movie was absolutly awful. I can't think ...\n Saw the film at the Hollywood Film Festival in...\n Being the sci-fi fan that I am, I was always c...\n This is the greatest example I can think of to...\n Probably one of his lesser known films, it suf...\n This is a poor excuse for a movie. A film noir...\n While this movie has many flaws, it is in fact...\n When I first read the plot of this drama i ass...\n Had this movie been made just a few years late...\n To the eight people who found the previous FIE...\n The anime that got me hooked on anime...<br />...\n I truly enjoyed the movie, however, I did not ...\n Once in a while you get amazed over how BAD a ...\n I was really excited when I read \"The Cantervi...\n I see what the director was trying to do but h...\n I was watching this with one of my friends, wh...\n We'll never know The Truth about 9/11. And thi...\n A female country singer nicknamed \"Big T\"--ser...\n This is a gripping story that borrows elements...\n Don't waste your time or money on this one. Th...\n Don't listen to the misleading title \"Werewolf...\n Mr Bean was great fun, i loved it, every episo...\n And my children love it now! Granted, I can wa...\n It's beyond my comprehension that so much rubb...\n A strangely enjoyable effort, combining an app...\n This game is an action/adventure with combat. ...\n It could not have come from a different countr...\n After sitting through this god-awful 82-minute...\n I loved the first two movies, but this movie w...\n I just watched Congo on DVD.In most cases I lo...\n I have to admit that I absolutely loved this m...\n Kevin Spacey is without a doubt one of the bes...\n This should have rocked. VH1 moved away from t...\n i have just seen the movie \"15 park avenue\" wh...\n I saw this movie many years ago, have tried to...\n Cliche romance drama movie with very simple pl...\n Unfortunately I have to agree with the critic ...\n My sister, a friend and I went to see this fil...\n \"The Thief of Bagdad\" is impressive in the sha...\n This was an excellent idea and the scenery was...\n I thought \"puppets making crank phone calls\" w...\n I watched full house when I was younger and I ...\n Beautifully photographed and ably acted, gener...\n Although I generally do not like remakes belie...\n The role of Buddy Ackerman is no stretch for K...\n Well, let me put it this way - I have always b...\n In my opinion, A GUY THING is a hilarious, wit...\n With boundless, raw energy and an uncompromisi...\n No idea how this is rated as high as it is (5....\n The film is bad. There is no other way to say ...\n Bette Davis' cockney accent in this film is ab...\n This is one of the best animated family films ...\n Very nice action with an interwoven story whic...\n In the first Howling, we are introduced to a w...\n I LOVED this program, and for years searched f...\n I've just watch 2 films of Pang brothers, The ...\n Radio was a very good movie, and honestly, i n...\n Felix Unger (Jack Lemmon) has just been dumped...\n Well not actually. This movie is very entertai...\n I have been an admirer of Edward Burtynsky's w...\n fulci experiments with sci fi and fails. usual...\n I instantly fell in love with \"Pushing Daisies...\n In a famous essay he wrote about Charles Dicke...\n Need I say more? The reason the GOOD Australia...\n Televised in 1982, from a Los Angeles producti...\n \"Dracula II:Ascension\" is the story of a group...\n AWFUL wot more can i say i remember seeing it ...\n I suffered the watching of this movie at Sitge...\n Even though this film is 11 years old, I just ...\n There was something about the original three f...\n This is one to watch a few times. The excellen...\n I provided location services on the this film ...\n Even in her glasses wearing geek mode Kathy Ir...\n The creators of south park in their own film h...\n Watched on Hulu (far too many commercials!) so...\n I Love this movie! I know some people might sa...\n I was very fond of this film. It kept me guess...\n The monster will look very familiar to you. So...\n Most people, especially young people, may not ...\n I was so excited when I discovered this was av...\n The original was a good movie. I bought it on ...\n This is the best version of Gypsy that has bee...\n I noted that the official IMDb review refers t...\n I watched this film without knowing anything a...\n hi, This is the worst movie I have ever seen i...\n 'This Is Not a Film' works because it is so tr...\n I bought this DVD for £1 and now i realise why...\n Hysterically painful; perhaps the kind of movi...\n First off I am in my mid 40's. Been watchin ho...\n The efficacy of this picture was best proven o...\n I went into this movie with low expectations, ...\n I really liked this movie. Of course the idea ...\n Okay, sorry, but I loved this movie. I just lo...\n \"Seed\" is torture porn...no doubt about it. Bu...\n The details in The Big Trail were so incredibl...\n This is without a doubt one of Neil Simon's be...\n Overall I'd call this a disappointing performa...\n Is it full moon tonight? OH! It doesn't matter...\n One of the best true-crime movies ever made an...\n Steely, powerful gangster supreme Frankie Diom...\n I just got home from seeing \"Radio.\" I've not ...\n This movie goes beyond just being bad, it is d...\n This rubbish excuse for television is the sing...\n I'm really disappointed by this piece of work....\n The good thing about this that's at least fres...\n ANCHORS AWEIGH sees two eager young sailors, J...\n I've been a fan of Larry King's show for awhil...\n Boogie Nights is one of the best films to come...\n A sweet funny story of 2 people crossing paths...\n I agree totally with the last commenter this c...\n It is difficult to compete against classic gre...\n First, I don't see how the movie is on any \"be...\n \"The Case of the Scorpion's Tail\" has all the ...\n I am so appalled by this documentary. I am dee...\n This film pulls you in from the get-go because...\n I always loved French movies because I think t...\n The female cast of this movie is terrific: you...\n I don't really know when it was that TV statio...\n I saw the biopic of Ed Wood many years ago. Ti...\n Most movies I can sit through easily, even if ...\n Acclaimed Argentine horror director Emilio Vie...\n The second in the Vacation series is easily th...\n actually... that \"video camera\" effect, is jus...\n This is the only movie I've seen Prince in but...\n Onstage John Osborne's adaptation of \"Picture ...\n I bought this movie because this was Shah rukh...\n I don't think I could have enjoyed it more, th...\n Nice attempt to bring Shakespearian language a...\n We see a man move from city to \"out-back\" and ...\n I had to give this film a 1 because it's that ...\n It was great to see some of my favorite stars ...\n Dreck about three beautiful women in Californi...\n I love his martial arts style, it is quick, cl...\n Excellence seems to come rare in Hollwood toda...\n \"The Classic War of the Worlds\" by Timothy Hin...\n This entry doesn't contain a spoiler. It doesn...\n ...there's no one else watching the movie. My ...\n Here you see Mr. Eastwood in all of his glory ...\n A year or so ago, I was watching the TV news w...\n This is listed as a documentary, it's not, it'...\n Without question, this film has to be one of t...\n Watching a videotaped replay of about 8 variou...\n What an insult to the SA film industry! I have...\n The views of Earth that are claimed in this fi...\n Ouch, what a painfully BORING Sci-Fi movie! An...\n Although I'm not crazy about musicals, COVER G...\n The movie is basically the story of a Russian ...\n This film is based on the novel by John Fante....\n I use IMDB very much. Mainly reading comments ...\n My only question is: Why did they make this mo...\n This was a first feature for Clinton, I was th...\n We screened this movie in a club as an example...\n Basil Rathbone and Nigel Bruce as Sherlock Hol...\n All Dog's Go to Heaven is an animated kid's mo...\n OK, most of us agree that this is a weak attem...\n I really should have learned more about this m...\n Even though there's a repertoire of over 180 f...\n In December 1945 a train leaves the central st...\n I view probably 200 movies a year both at thea...\n After seeing the previews awhile back, I looke...\n It has only been a week since I saw my first J...\n One of the greatest westerns of all time! But ...\n This is what makes me proud to be British. Thi...\n Many people are standing in front of the house...\n You can call this one a flop, and that's a ver...\n This supernatural Peter Weir thriller is truly...\n What Game Over: Kasparov and the Machine does ...\n My 15 year old daughter asked me to watch this...\n I am an addict of the TV show, the live shows ...\n Excellent film showing the pathetic lives of t...\n Frank Falenczyk: It isn't that I'm sorry I kil...\n Despite being released on DVD by Blue Undergro...\n Wow! So much fun! Probably a bit much for norm...\n Less than 10 minutes into this film I wanted i...\n Do not waste your time watching this! Unless y...\n honestly, i loved Michael. although there were...\n After his classic film noir homage Chinatown R...\n If you enjoy riddles and suspense, you will en...\n The philosophical, meditative tone of this mov...\n Bar some of the questionable acting (there mus...\n Over the many years, there are some films that...\n Somewhere in USA, the young Clair manipulates ...\n I don't usually like to see movies while they'...\n It never ceases to amaze me how you can take a...\n The feel of this movie was amazing. Adam Sandl...\n This film is about the encounters of 7 couples...\n This is quite possibly the most retarded 80's ...\n This film is close to be my favorite piece of ...\n I was pretty surprised with this flick. Even t...\n Ever have one of those sneezes that seems to b...\n Viewers gushing over everything including the ...\n Harlan Banks is thief at the top of his game, ...\n Just when you think that you've seen the worst...\n Leatherheads is an apt title, however a leathe...\n If I could give this movie a negative rating I...\n I realized a couple of days ago that the maker...\n This is one of those movies that you just don'...\n After cleaning up Dodge City (with a little he...\n Crossfire is one of those films from the Forti...\n Growing up in a multi racial neighborhood back...\n Hey, I know Angel isn't the kind of show that ...\n I'm sorry to say this but I didn't enjoy this ...\n How many times do we have to see bad horror mo...\n I'm not alone in admiring the first Superman m...\n I'll keep this short, as I know I don't need t...\n Astounding.....This may have been A poor attem...\n Where to begin? the special effects should be ...\n (A possible spoiler or two) <br /><br /> \"Soul...\n This show is verging on brilliant. It's a mode...\n Believe it or don't, i have my very own DVD co...\n There is a special heaven reserved for people ...\n This is a great movie to see with your girlfri...\n This is the worst waste of time I've ever expe...\n Unbelievably awful film. I watched part of thi...\n Simply, one of the funiest movies i've ever se...\n If you have trouble suspending disbelief then ...\n \"Eaten Alive\" goes down much easier than Rugge...\n The movie, although not faithful to the origin...\n Jean-Hugh Anglade is excellent as the teenaged...\n Childish storyline ripped off of a lame Hollyw...\n My wife did not realize what a gem this movie ...\n It was riveting. I just could not look away. A...\n I must say I was surprised to find several pos...\n If you like who-dun-its, you will like this fi...\n This movie isn't about football at all. It's a...\n My first post at the IMDb has to (unfortunatel...\n it's hard to make a negative statement here af...\n Ya know what? Family Guy started out as someth...\n This movie was terrible. John Wayne is a bruta...\n 2002's undeservedly popular \"I Love the 80's\" ...\n This movie was the second movie I saw on the c...\n Cult purchasers are unquestionably familiar wi...\n Why is impossible to write in french ? Very Ki...\n Why???? What a disgusting joke of a supposed m...\n It's good to see that Vintage Film Buff have c...\n They said it would be a film greater than Turk...\n The animation quality here is decidedly below ...\n Wanda Nevada is a pubescent fantasy movie usin...\n i liked this western Starring Randolph Scoot a...\n Meville's caper film is not as good as his mos...\n This is defiantly a DVD rental movie. I'm a bi...\n \"Flavia, la monaca muslmana\" aka. \"Flavia the ...\n It's got action and fantasy mixed all together...\n If you are studying Welles and want to see jus...\n I used to watch this show as a child, and I lo...\n Everyone else who has commented negatively abo...\n This is a semi fictional memoir of an \"interna...\n Nominated for best documentary feature at 2004...\n If there's one thing I've learnt from watching...\n Enchanted April is a tone poem, an impressioni...\n OK, I taped this off TV and missed the very st...\n As listed and stated in many previous comments...\n Infamous pre-code film, really the one film th...\n The movie started off o.k. A couple of tourist...\n In a lonely road in Cape Girardeau, Missouri, ...\n Pressburger and Powell's greatest movie. David...\n This is a very well-made film, meticulously di...\n <br /><br />I saw this on the Sci-Fi channel. ...\n It's hard for me to explain this show to my gr...\n Let me being by saying the I followed watching...\n The movie has one nude scene: A man sitting on...\n I'm not saying that because the production val...\n This film blew me away. I thought I knew a lit...\n This \"film\" is a travesty. No, wait--an abomin...\n CAT SOUP has two \"Hello Kitty\"-type kittens em...\n This film, as low budget as it may be, is one ...\n Difficult film to comment on, how do you say i...\n With a minimal budget, a running time of eight...\n I just saw \"If\" I can remember the advertisem...\n Can any one help find out the title and artist...\n Just plain terrible. Nick and Michael are WAY ...\n All I can say is, first movie this season that...\n I've now written reviews for several of the Mo...\n After hoo-hooing American Indians scalp number...\n For unknown reasons this beautiful masterpiece...\n I saw a lot films about Charles Dickens' Chris...\n I found this movie on one of my old videos, af...\n Following a mugging incident at New York's Gra...\n 'Crossing the Bridge: The Sound of Istanbul' i...\n This is a gently amusing coming-of-age comedy ...\n This film was amazing, it was extremely funny ...\n I found 'Still Crazy' to be marvelously entert...\n I always had this concept that Korean movies w...\n I am astounded that so many people find this f...\n I'm not a fan of Adam Sandler. In fact, I don'...\n Hollow point is an alright movie worth a half ...\n for many and many years, gaijin have visited j...\n Created by Dennis Spooner, 'Department S' was ...\n some funny lines are all what makes this movie...\n SPOILER AHEAD! The mummy (Lon Chaney Jr.) is o...\n This movie changed it all for me...I heard of ...\n I was in a bad frame of mind when I first saw ...\n I am not a huge fan of camp kitsch and the \"so...\n Except for the acting of Meryl Streep, which i...\n Occasionally on talk shows a good topical deba...\n This is my first Almodavar film. I'll confess ...\n Long ago and far away they knew how to make a ...\n The movie is nothing extraordinary. As a matte...\n I like movies about quirky people. \"One Flew O...\n 'Ned Kelly' is a wonderfully made Australian f...\n Director Paul Verhoeven's American vehicles ar...\n This is an extremely silly and little seen fil...\n Christopher Nolan's first film is a 'no budget...\n Son In Law didn't do so hot in the box office,...\n Written by brilliant Monkees' TV writers Geral...\n Finally a true horror movie. This is the first...\n This is such a fun and funny movie. Highly ent...\n yeah right. Sammo Hung already acted in the ma...\n Hearing about how hilarious this movie is, I f...\n While I understood, that this show is too weir...\n Not sure if it was right or wrong, but I read ...\n I have seen quite a few action thrillers in my...\n For those of you who think anime is just about...\n For readers who have already seen one of Miyaz...\n Wilson (Erica Gavin) is nabbed by the cops and...\n This movie is a mix of a dark comedy and a dra...\n Beyond Rangoon is one of the most emotional an...\n Andaz Apna Apna is a movie that I treasure and...\n Now, I know French inmates are unlikely to hav...\n There are very few performers today who can ke...\n I rented this film on Netflix after it won all...\n François Traffaut's \"Mississippi Siren\" had an...\n POSSIBLE SPOILERS --<br /><br />I love Dennis ...\n There was nothing about this movie that I like...\n This is a very mediocre Jackie Chan film and o...\n I purchased the BLOOD CASTLE DVD on eBay for a...\n This is a very touching movie. This is a story...\n It's true that \"They Died With Their Boots On\"...\n I've watched a lot of TV through the years. So...\n The only thing that kept me from vomiting afte...\n Before I begin, let me get something off my ch...\n It's interesting how 90% of the high-vote revi...\n When thinking about Captivity many words come ...\n An annoying experience. Improvised dialogue, h...\n My wife and I thought that with this cast and ...\n Tressa's vocal performance was Outstanding!! T...\n I'd liked the Takashi Miike films I'd seen so ...\n Despite reading the \"initial comments\" from so...\n This movie is not as horrible as most Sci-Fi C...\n Okay, I'll say it. This movie made me laugh so...\n The movie was a big Car Commercial. :-)<br /><...\n If you're one of those who recognise with plea...\n In 4 words, Captain Corelli's Mandolin was \"co...\n In late 1800s San Francisco, poor well-dressed...\n This is one of the finest TV movies you could ...\n I couldn't believe some of the horrible dialog...\n This is a good example of how NOT to make a fi...\n I could watch this movie ALL DAY! I LOVE it. P...\n I really loved the Millenium series, starred b...\n I don't know any idiotic rock'n'roll cliché no...\n I work in a library and expected to like this ...\n I will never forget this film or the events th...\n Stephen King movies are a funny thing with me....\n Maverick director Seijun Suzuki finally was ab...\n This is exactly the type of film that frustrat...\n A lot of people don't think Branagh's Hamlet f...\n This is a pale imitation of 'Officer and a Gen...\n Todd Sheets has created one of the greatest LO...\n I love this movie. <br /><br />Yes, the main c...\n Two years after this movie was made, \"The Juro...\n This has to be one of the worst films I have e...\n This was more of a love story than one about a...\n It was a sweet, intro for the most intelegent ...\n \"The Dresser\" is perhaps the most refined of b...\n I really thought this would be a good movie, b...\n They screwed up this story! In the end Nell is...\n This has got to be the worst show I have ever ...\n If I had never seen the first Road House, then...\n This is by far the worst version of William Sh...\n I had the privilege to see this movie at the I...\n I really don't get all the adulation that this...\n Terry Gilliam's and David Peoples' teamed up t...\n Apparently this was an award winner. Apparentl...\n I enjoyed the Mr. Magoo cartoons I saw while g...\n This movie was one of the funniest movie I've ...\n By the acting in this movie, it is sometimes h...\n This movie features several well known actors ...\n Last night, I saw A PECK ON THE CHEEK (KANNATH...\n of watching this as a child. Although I'll pro...\n What can you say about a grainy, poorly filmed...\n Whether this movie is propaganda or not (I fir...\n This is easily the worst, most offensive piece...\n I enjoyed this movie quite a lot. I have alway...\n This true story of Carlson's Raiders is more o...\n I had this DVD to watch, thinking that I would...\n Curiously, it is Rene Russo's eyes and mouth--...\n This puddle of derivative drivel stole from ev...\n I knew about but had never seen Grey Gardens, ...\n Any movie should have an idea; Simple or more ...\n One has to be careful whom one tells about wat...\n It must have been several years after it was r...\n This is the worst movie I've ever seen, and it...\n Rachel Griffiths writes and directs this award...\n This is a cult film for many reasons. First be...\n An offensively over-the-top action adventure,F...\n This one was marred by potentially great match...\n I first saw the opening of Otto Preminger's \"P...\n I am very sorry to say this but \"Thunderbirds\"...\n Excellent introspective / interpersonal piece ...\n the first Scanners may not have been a great m...\n OH WOW. I saw this film at the Irish Internati...\n STORY Chinese Tall Story tells the story of ri...\n I still can't believe how bad this movie was. ...\n Yet another foreign war movie that puts hollyw...\n David Zucker has directed one of the most enjo...\n For many years I thought I was the only person...\n Wealthy businessman's daughter, who as a young...\n It's so rare to find a literary work adequatel...\n Woody Allen's second movie set in London. Tha ...\n <br /><br />The play has been heavily edited a...\n Rarely seen a movie that deviates so much from...\n I viewed this movie at the Magnolia Theater in...\n I love Westerns. I could watch them all day. \"...\n I recently purchased this on DVD as I hadn't h...\n It should come as no shock to you when I say t...\n This movie is an extremely funny and heartwarm...\n Having never seen the original Dirty Harry, I ...\n I am commenting on this miniseries from the pe...\n Fear of a black hat is a hilarious spoof of Hi...\n Emma is my favourite Jane Austen novel - Emma ...\n I wouldn't give this movie a rating, it's not ...\n This movie captures the absurd essence of an o...\n I suggest that in the future, any movie made b...\n This film SUCKS!! It looks like they just chos...\n First off I'd like to point out that Sam Niel ...\n I pride myself in being able to sit through ev...\n Gene Kelly came up with some really grand idea...\n Ice Age is not only Animation of the Year (in ...\n I wouldn't have given this film such a low rat...\n I watched this movie last night and hoped for ...\n Alain Resnais films are uncanny in the way tha...\n I just got the UK 4-disc special edition of Su...\n Let me depart from many comments I've read her...\n People don't seem to agree with me that movies...\n Released just before the Production Code crack...\n Perhaps if only to laugh at the way my favorit...\n When I first saw this film in the 1980's, I wa...\n It's not just that the movie is lame. It's mor...\n This movie is so bad that I cannot even begin ...\n Not your everyday Tom and Jerry short for many...\n This third Pokemon movie is too abstract for y...\n This movie is fun to watch. If you liked \"Dave...\n **May Contain Spoilers**<br /><br />The main c...\n Though this movie has a first rate roster of f...\n I really enjoyed this debut by Ring director, ...\n This excellent musical movie, in beautiful Tec...\n The direction by Wong is perhaps the all time ...\n Being a history buff, I rented this movie beca...\n This film offers one of the greatest experienc...\n this cartoon is not right,lol I totally disagr...\n This could be a 10 if it wasn't for the quite ...\n This is the absolutely worst show in the histo...\n I couldn't help but laugh when I saw what the ...\n WARNING: This review contains SPOILERS. Do not...\n Filmed in a documentary style, but you can pre...\n I have to agree with most everyone's opinion t...\n My wife and I found this film to be highly uns...\n It should be noted that this movie was not \"im...\n In the movie several references are made in su...\n \"Love Life\" explores a very culturally relevan...\n Eaten Alive follows a young woman (Janet Agren...\n Tim Burton is in essence an expressionist film...\n This movie is cold, bare truth. Often we think...\n I saw the last five or ten minutes of this fil...\n This thriller has so many twists and turns it ...\n This piece of crap, since I can't call it a mo...\n Extremely good cinematic story of gay, embitte...\n This movie has two new features in relation to...\n One only has to read the cast list and credits...\n Hannibal must be the most God-awful movie I ha...\n All i hear about is how poorly the animation i...\n It starts quite good, but after a while you st...\n What the hell is this? \"Kooky drama\"? \"Lawyers...\n Well, not yet, at least.<br /><br />It's not l...\n Found this one in the video store and rented i...\n I was expecting to this to be hilarious and it...\n Bizarre Tobe Hooper exercise regarding an unfo...\n A bright youngster interested in \"serious\" mus...\n Meltdown opens on a scene of scientists prepar...\n This super creepy Southern Gothic melodrama st...\n hey i think this movie was great and it had gr...\n Almost no information is available about this ...\n HOW MANY MOVIES ARE THERE GOING TO BE IN WHICH...\n Intrigued by the synopsis (every gay video the...\n I happened to catch about the last 45 minutes ...\n This film is a twisted nonsense of a movie, se...\n I really like Richard Gere...I always have and...\n As hard as it is for me to believe, with all o...\n If you really loved GWTW, you will find quite ...\n I really loved this film, yes, I know it was f...\n i don't really know where to start here.just i...\n It's hard to say what was the worst thing abou...\n I collect Horror films from all over and I hav...\n Less self-conscious and much less pretentious ...\n Although it might seem a bit bizarre to see a ...\n Brilliant! My wife and I joined the sprawling ...\n Reading a wide variety of \"Scoop\" reviews over...\n This film concerns the story of Eddy as mentio...\n I rented this movie because I was browsing thr...\n this attempt at a \"thriller\" would have no sub...\n All right I recently got a chance to rent this...\n In Brooklyn, the nightclub dancer Rusty Parker...\n John Wayne is one of the few players in film h...\n This film was so bad i had to fast forward mos...\n As usual, Sean Connery does a great job. Lawre...\n I could not believe how terrible and boring th...\n SPLIT SECOND might have been a good movie. A s...\n A low point in human interaction was reached b...\n There's never a dull moment in this movie. Won...\n A blaxploitation classic, this movie was terri...\n Okay, I love this movie!!!!! I watched it over...\n Very poor quality and the acting is equally as...\n When I sat down to watch Greek for the first t...\n As you can read the only good comment about th...\n This movie was astonishing. It is beyond atroc...\n This pointless film was a complete disappointm...\n This movie is really genuine and random. It's ...\n Three Russian aristocrats soak up the decadenc...\n The most die-hard worshippers of John Wayne wi...\n I found this movie to be okay.<br /><br />On p...\n Midnight Cowboy made a big fuss when it was re...\n This movie is almost unknown, but it is very g...\n Follow-up to 1973's \"Walking Tall\" continues t...\n 'Nobody knows anybody' is a conspiracy theory ...\n E! TV is a great channel and Talk Soup is so f...\n Painfully bad Christmas film that has an equal...\n The hurried approach that Lewis Seiler takes w...\n We get to see who the good guys are. The union...\n This is quite possibly THE worst movie I have ...\n I am Black American and I loved this soap oper...\n After seeing the trailer for this movie and fi...\n Like most, I rented this after I heard the uni...\n I just recently discovered this fantastic seri...\n Over the last 20 years the majority of British...\n This is possibly the worst thing I've ever see...\n \"200l: A Space Odyssey\" is a supremely intrigu...\n I saw this movie in my childhood. And after 10...\n Two little girls strike a friendship. One trie...\n Remake of the classic 1951 \"The Thing From Ano...\n I came here for a review last night before dec...\n I think Dark Angel is great! First season was ...\n Okay, I'll admit it--I am a goof-ball and I oc...\n I first saw this absolutely riveting documenta...\n Well I would say that this is a very enjoyable...\n One of the most peculiar oft-used romance movi...\n Dreary. Schlocky. Just plain dreadful and awfu...\n Porn legend Gregory Dark directs this cheesy h...\n Bette Midler is indescribable in this concert....\n No, I'm not joking around. If you ever, EVER, ...\n I have been a fan of Amanda's since All That, ...\n I don't know about you, but what I love about ...\n Sure, I like short cartoons, but I didn't like...\n This is among one of many USA attempts of rema...\n Police officer Dirk Hendricks (Jamie Bartlett)...\n This movie was just heckled by MST3K and with ...\n The problem with so many people watching this ...\n Highly recommended!!<br /><br />A well written...\n OK ...I watch a lot of bad movies. I pride mys...\n A tender movie that represents how our daily l...\n 9, the film I've been looking forward to for m...\n I haven't really seen too many of the Columbo ...\n I have read both the book and saw the movie to...\n Saw this movie twice at community screenings a...\n OK everybody is so enthused by this film I har...\n With a special telescope, Dr. Janos Rukh (Bori...\n I don't know about you but i go to horror film...\n I've been working my way through a collection ...\n San Franpyscho: 1 out of 10: So you want to ma...\n Psychotic transsexual Bobbi murders the patien...\n This is a poor, poor movie. Full of clichés, u...\n Bette Davis' electrifying performance is such ...\n This movie i totally not funny, and I would im...\n I really did not want to write a harsh review ...\n There seems to be a surprisingly high number o...\n This could quite possibly be the worst movie e...\n I have seen films come and go in my years,and ...\n To make it short and not to spoil everything t...\n How did they get that cinematic shot of the ca...\n This movie is really funny!! The General is Ke...\n The 1st season was amazing, the whole idea of ...\n How do I describe the horrors?!!! First, some ...\n I first saw it at 5am January 1, 2009, and aft...\n This film is probably Hal Hartley's best one. ...\n This is probably the greatest war film and cer...\n This little short absolutely fascinates me.<br...\n You'll probably never see it, but the uncut ve...\n The best thing I can say about the American ve...\n For years I remember reading about this show \"...\n Story involves ancient demon being released up...\n Zodiac Killer (2005) was an interesting film f...\n This is a Very Very VERY bad movie !<br /><br ...\n You get 5 writers together, have each write a ...\n This movie was disgusting. Their should be a w...\n I got a free pass to a preview of this movie l...\n The plot line of No One Sleeps is not a bad id...\n The Plainsman is an entertaining western, no d...\n Saw this at Newport Beach Film Festival the ot...\n 'The Merchant of Venice' is one of Shakespeare...\n When I spotted that Noah Wyle and Ricky Schrod...\n To be honest, i'm surprised by the positive vo...\n Newly released on DVD in the US; just stay far...\n This series is one of the worst shows I have e...\n The main problem with the documentary \"Czech D...\n This movie is a sleeper - I've watched every m...\n One of the more satisfying Western all'italian...\n Although I was in this movie playing the part ...\n This film is a benchmark in non-mainstream cin...\n I saw this film at the 2005 Edinburgh Internat...\n I don't see how you can say that Freddy's Nigh...\n In a film as successful as this, it is difficu...\n Cult starts 20 years ago on the 'Quinling Moun...\n Cooley High is such a great film that even wit...\n Although this seems to be quite an old show (2...\n My husband brought this home from the video st...\n This sequel is brilliant and is the last film ...\n Bay Area residents probably remember Paul from...\n Killer Tomatoes movies have this special kind ...\n I can't actually think of one good point in th...\n Not for the squeamish, but the number of twist...\n This story is about a safari in Africa that me...\n This film does not fail to engage and move, ev...\n this movie is just great. if you have a chance...\n Ever since seeing this film as a child, over 3...\n Sadly a great opportunity to utilise a superb ...\n The Beatles had just done 'Magical Mystery Tou...\n An ultra-nervous old man, \"Mr. Goodrich,\" terr...\n This film, in my opinion, is, despite it's fla...\n Snakes on a Plane was such a well hyped film t...\n This is such a great film! Never mind the low ...\n I hate to admit it, but they were right to sac...\n *****Spoiler or two, not that is matters******...\n The spoof genre, which has lacked creativity a...\n I saw this movie when it was first released in...\n I'm not much for \"cop\" movies, but this one is...\n Al Pacino was once an actor capable of making ...\n Well, I finally saw it. I didn't go when it fi...\n Here we have a movie which fails in pretty muc...\n This movie is ageless and would probably appea...\n Paul Lukas played a Russian intellectual makin...\n Hmmmm. I'm kinda at a loss here. I mean, I kno...\n The worst movie in the history of cinema. I do...\n Can such an ambient production have failed its...\n Uh, oh! I just said the this \"classic\" film ha...\n Genteel, softly spoken drama from Steven Spiel...\n Arthur Bach is decidedly unhappy in his life a...\n Wretched. Talk about botched. BEYOND THE POSEI...\n Since growing up in Czechoslovakia I was follo...\n Koyaanisquatsi is simply the best film I've ev...\n While \"The Kiss of the Spider Woman\" cast Raul...\n A prison cell.Four prisoners-Carrere,a young c...\n Basil Rathbone and Nigel Bruce return as Sherl...\n It has been widely agreed that Hayao Miyazaki ...\n Pinjar is truly a masterpiece... . It's a thou...\n I love this movie because I grew up around har...\n This film started out very promising with the ...\n No matter what country your In you have to buy...\n This is only a response to the yahoo who says ...\n Words can't describe how bad this movie is. I ...\n I recently rented this film on DVD and thought...\n Vincenzo Buonavolunta, a man that has spent ye...\n I wasn't planning on watching wasted when I sa...\n During the Civil War, there were many cases of...\n Goodnight, Mister Tom begins in an impossibly ...\n In the fifties the age restrictions for films ...\n There are no reasons to watch this movie. Shou...\n At first I thought this film was going to anno...\n Let me state this right from the start. I do N...\n The premise is rather original and well though...\n when i watched this crap, it reminded me of th...\n In the original French version, the jokes of N...\n I saw this again today for the first time in a...\n THIS REVIEW IS MOSTLY ALL SPOILERS. IF YOU PLA...\n Movie based on Jacqueline Susann's best-sellin...\n This movie received a great write up in Blockb...\n Man, I never laugh so much this year, and it's...\n I stumbled upon Nine Dead recently and read th...\n Terrible story, poor acting and no humour at a...\n This love story between an American journalist...\n This is a well-worn story about a man who marr...\n This movie was rented for free, I had no misco...\n *SPOILERS*<br /><br />This is only the second ...\n Faith Domergue (better known as \"Dr. Ruth\" in ...\n Ah, such an original title for a very shoddy f...\n If you've not seen this then look out for it. ...\n Imagine the plight of Richard, a painter, whos...\n Movies like these do not need sequels. Part of...\n Uhhh ... so, did they even have writers for th...\n Well, I had to sit down at the computer and wr...\n By far one of the best sci-fi films out there....\n How can stuff like this still be made? Didn't ...\n this is the best sci-fi that I have seen in my...\n This movie was definitely scripted with FF VII...\n This game is one of the best RPG. Fist, It is ...\n I've seen a few of Mr. Boorman's movies and di...\n If I didn't know any better, it almost seems l...\n Okay, first I should say that I assume this wa...\n This movie starts out as if it were a comedy. ...\n Pay no attention to the comments behind the cu...\n A true comedy.The dialog is fast and very witt...\n I watched this last night after not having see...\n Pegg has had a few hits in the past few years,...\n I was sooooo excited to see this movie after f...\n One-note comedy that probably sets modern day ...\n Once upon a time there was a great American fi...\n Many people like this movie and many more love...\n This superb film draws on a variety of talente...\n Don't let any reviews (critics, IMDb users or ...\n Made the same year as the first Lumiere films,...\n To overcome the death of his wife, an old man ...\n This movie is terrible but it has some good ef...\n I'll admit that this isn't a great film. It pr...\n an excellent, thoughtfully produced historical...\n Firstly, I won't tell you WHY I rented this mo...\n This movie was absolute torture. First of all,...\n This is an excellent movie and I would recomme...\n Diane Keaton is a pathetic actress. She is so ...\n Harsh, yes, but I call 'em like I see 'em.<br ...\n Pam Grier is the super soul sister of the 1970...\n It's just stories, some we wish happen to us, ...\n This movie has no plot and no focus. Yes, it's...\n 2 stars out of a possible 10 - and that is bei...\n I am a big fan of Larkin's works, I believe th...\n I saw \"The Grudge\" yesterday, and wow... I was...\n Being a long-time fan of Japanese film, I expe...\n It is hard for a lover of the novel Northanger...\n Humm, an Italian movie starred by David hassel...\n I just viewed Detention last night and i liked...\n Like some of the other folks who have reviewed...\n I love all types of films, especially horror. ...\n This piece of crap might have been acclaimed 6...\n Spheeris debut must be one of the best music d...\n The story is being told fluidly. There are no ...\n This is one of those horror flicks where twent...\n My god this movie is awfully boring. I am a bi...\n girlfight is using a well-known formula as som...\n Honestly,the concept behind \"Masters of Horror...\n Dr. Stephens (Michael Harvey), head of a serio...\n I found the storyline in this movie to be very...\n I think the movie was pretty good, will add it...\n Topless touch football!! A wet t-shirt contest...\n This movie was billed as a comedy and a myster...\n what ends up killing this movie is its self-co...\n True, the idea for this TV series may have spr...\n Bottom-of-the-Freddy barrel. This is the worst...\n From it's uninspiring title to the flat acting...\n This movie is a coveted member of my movie lib...\n There is no reason to see this movie. A good p...\n Yahoo Serious is like a $3 bottle of wine - ha...\n Eric Clapton, Jack Bruce and Ginger Baker re-u...\n I saw this at a drive-in when I was 9. All I r...\n I love this movie, but can't get what is in th...\n I think this is Pauly Shore's best stuff, he p...\n I thought sleeper cell was interesting, and ex...\n Another popular screening for a British pictur...\n I love everything about family guy.<br /><br /...\n Joe (Wes) & Jim (Adam) re-acquaint us with the...\n This is a very good, made for TV film. It depi...\n Ernest P. Worrell comes through with his third...\n This movie is #1 in the list of worst movies I...\n There is so much that can be said about this f...\n Chilling, majestic piece of cinematic fright, ...\n Another masterpiece that needs a DVD release b...\n \"The Cave\" got released more or less simultane...\n A quite good film version of the novel, though...\n I wish I could use the time travel machine to ...\n I've seen this film three times and each time ...\n From the filmmakers who brought us The March o...\n During production, this LWT series was titled ...\n It's particularly hard for a director to captu...\n The acting, other reviews notwithstanding, was...\n I never much liked the Myra movie, tho I appre...\n I'm not a follower of a certain movie genre. I...\n It's funny how your life can change in a secon...\n What in the world! This piece of gambling cine...\n This is a really heart-warming family movie. I...\n This movie is about a cop (Ching Wan Lau) tryi...\n This movie was amazing. I was in tears by the ...\n The British Public School system did not evolv...\n What makes this movie so damn bad? Is it the l...\n I read a few reviews of this TV movie which al...\n An actor asks, \"What's my motivation?,\" to und...\n Teen Deviyaan is a great film. A very breezy e...\n The movie was a suspenseful, and somewhat dark...\n I found this flick enjoyable and involving to ...\n Jack London's life was certainly colorful enou...\n \"Pet Sematary\" is an adaptation from the Steph...\n What's in here ?! Let me tell you. It's the pr...\n It took 9 years to complete this film. I would...\n In case half of this film's footage looks stra...\n My main problem with the film is that it goes ...\n I saw this documentary film at the 2005 Slamda...\n Not wishing to give *anything* away here, I wo...\n With a title like that, it's above and beyond ...\n ...and in this series, I've been reduced to an...\n As with all environmentally aware films from t...\n This has to be my favourite film. The script i...\n A good entertainment but nothing more : in thi...\n And Gi Joe go stuck in the water, I die of lau...\n Five minutes in, i started to feel how naff th...\n Whoever gave this movie rave reviews needs to ...\n This movie is why I found this website. I coul...\n I thought I was going to see a UFO movie. Inst...\n This has got to be the best movie I've seen. Y...\n Sorry Fulci fans, but I could not get through ...\n I made a promise that if ever I posted a comme...\n Even though this was a made-for-TV production,...\n David Duchovny plays the lead role in this fil...\n Wow, I think the overall average rating of thi...\n It's easy to make really general comments abou...\n Sadness and nostalgia permeate Late Chrysanthe...\n I'm tired of people judging films on their \"hi...\n La Ragazza del Vagone Letto, or Terror Express...\n This is real character and story driven drama ...\n Pretty standard B-movie stuff. Seriously, anyo...\n I enjoyed this movie and I had very low expect...\n Project A II is a classic Jackie Chan movie wi...\n \"The Straight Story\" is a truly beautiful movi...\n This movie was one of a handful that actually ...\n I have found this show by accident and was sur...\n I thought Hugh O'Conor was astounding as the y...\n Taped this late night movie when I was in grad...\n This movie is a must-see movie for all. Congre...\n I saw the movie with two grown children. Altho...\n This one is a real bomb. We are supposed to be...\n Excellent special effects make this disaster m...\n This is seriously one of the best low budget, ...\n I went in expecting the movie to be completely...\n Superb and charming. Justin Henry is beautiful...\n In short, the movie had a little bit of a weak...\n The story goes something like this: A small-to...\n ok. for starters, taxi driver is amazing. this...\n It's sort of hard for me to say it, because I ...\n I still liked it though. Warren Beatty is only...\n We could still use Black Adder even today. Ima...\n This so-called \"documentary\" tries to tell tha...\n I am a huge fan of Northern Exposure. Men In T...\n I just watched this movie on Starz. Let me go ...\n The story for Hare Rama Hare Krishna actually ...\n Oddly enough, it's Fred MacMurray who plays th...\n Fans of horror comedy will like this one. Othe...\n Bergman's regular Max von Sydow and Liv Ullman...\n In this movie the year 2022 looks much like th...\n I watched this movie a couple months ago when ...\n Apparently this movie was based on a true stor...\n NOTE TO ALL DIRECTORS: Long is not necessarily...\n In \"Black Snake Moan,\" writer-director Craig B...\n These were over 80 minutes of semi unexpected ...\n I've seen this movie more than once and it's w...\n Well, it took them 4 tries, but they finally g...\n Bride of Chucky starts late one night as Offic...\n The plot of this film is not strong at all, lo...\n It is disappointing to see as talented an acto...\n This is one of the best movies out there and t...\n In my humble opinion, this movie did not recei...\n This delighted audiences at a number of film f...\n Not that \"a film by Ulli Lommel\" filled me wit...\n I sometimes enjoy really lousy movies....those...\n I saw the Korean version of Daisy first. It ca...\n if you are like me then you will love this gre...\n I can barely even remember what DECADE I saw t...\n Finally! Third time lucky. This film has been ...\n As an adult, I am grateful to have caught this...\n Chip Foose is an absolute genius and the end r...\n This was on Showtime the other night, and I fi...\n This film had some funny moments. Louie, the m...\n I never saw it on TV but rented the DVD throug...\n I saw the The Bourne Ultimatum last summer wit...\n Last night, I got bored and decided to watch a...\n This has to be one of the best, if not the bes...\n Poorly acted and poorly directed, \"Congo\" unsu...\n Best club scenes that i have seen in a long ti...\n The only reason I rated this film as 2 is beca...\n The Italian Job requires daylight hours and no...\n Just what is the point of this film? It starts...\n Movie had some good acting and good moments (t...\n This is a truly wretched little film. Admitted...\n This splicing of THE SEARCHERS is one of the w...\n Elfriede Jelinek, not quite a household name y...\n I had the privilege of seeing this film at a p...\n I went to see the Omega Code with a group of o...\n There's a lot the matter with Helen and none o...\n My God, the things that passed for entertainme...\n This movie was horrendous it was sorta like ac...\n I can't say what knowing the source for this m...\n I am very surprised to see such a high rating ...\n This is a very cheaply made werewolf flick. Th...\n First of all; it's very dilettantish to try de...\n I thought that for a first episode of a first ...\n It is an almost ideal romantic anime! MUST SEE...\n This has got to be one of the worst films I ha...\n Imagine that I was about to miss this great cu...\n Spiderman was one of the first comic books to ...\n I respect Alex Cox the filmmaker, I really do....\n In my mind the best of the Ealing comedies and...\n this 2.5 hour diluted snore-fest appears to be...\n And I'll tell you why: whoever decided to edit...\n Some of the films produced by Roger Corman's N...\n Every so often a movie comes along that knocks...\n What to say about \"Dead End Road\"...<br /><br ...\n When \"Deranged\" was made the film-makers saw f...\n Much like the early horror film The Boogens, t...\n As a former Highland Rugby(HR) player, I feel ...\n A surprisingly interesting meditation on the n...\n This is my favorite game for the Nintendo 64 p...\n Kurt Russell is so believable and the action s...\n My Take: A goofy, yet imaginative mess. <br />...\n This is at least very close to a perfect video...\n Man on Fire was hot. I love a classic tale of ...\n Thankfully brief mystery about a telephone ope...\n Don't pick this one. ****Spoiler Alert***** Th...\n This movie was excellent. I was not expecting ...\n No, it's just a cheap 1940s serial using the C...\n This movie is on the level with \"Welcome Home ...\n This show is awesome! I have been a fan since ...\n I am very diplomatic in my reviews, and as an ...\n Disappearance is about a couple who take their...\n I could not believe how awful this film was; I...\n \"A Tale of Two Sisters\" is a brilliant South K...\n Ben Stryker an ex-green beret stops off at a l...\n A well-intentioned movie about Sonja Horowitz ...\n OK, no one will confuse this with Citizen Kane...\n I watched the movie in a preview and I really ...\n Young, handsome, muscular Joe Buck (Jon Voight...\n This film offers absolutely no imagination in ...\n First things first, how can someone with his c...\n This movie is truly brilliant. It ducks throug...\n If you need that instant buzz that only late 6...\n This film has not been seen by me in quite a f...\n I was never quite sure where this thing was go...\n LA ANTENA (Esteban Sapir - Argentina 2005).<br...\n Having seen 'only' about 200 Hong Kong films i...\n Like the other guy said It sux , you can count...\n Okay, granted, I am a fan of low-budget horror...\n EUROPA (ZENTROPA) is a masterpiece that gives ...\n The character of Tarzan has been subjected to ...\n If you're after the real story of early Baroqu...\n This is the first movie I've seen from Singapo...\n As far as horror flicks go, this one is pretty...\n Whilst I have loved haunted house movies such ...\n The title refers not to a questionable poker h...\n I watched this movie with no idea what it was ...\n Forget every spy movie you've ever seen - this...\n Come on! Get over with the Pakistan bashing gu...\n Scenarist Frederick Fox's sometimes memorable ...\n Girlfight is like your grandmother's cooking: ...\n I read the book in 5th grade and now a few yea...\n When I saw this movie I was stunned by what a ...\n To \"Bend It Like Beckham\" may not mean much to...\n I'm not at all picky about horror movies, and ...\n This movie is extremely funny and it also cont...\n I watched this movie the other night, and I ha...\n Christopher Smith is an obvious horror fan and...\n This is one of the most overlooked gems Hollyw...\n Opera was filmed in synchronization with a var...\n I wonder what audiences of the day thought whe...\n Patty Chayevsky was years ahead of most succes...\n Its very tough to portray a Tagore novel along...\n The back of the DVD box says Ellen Page co-sta...\n Seriously, I can't imagine how anyone could fi...\n I think part of the reason this movie was made...\n That movie was awesome! I can't get over it's ...\n I love movies, all genres, and from big dollar...\n You know, this is one of those \"Emperor's New ...\n One of my favourite \"domestic\" movies. I don't...\n I am a fan of slasher movies, especially of Sc...\n When I first saw this film, I thought it shoul...\n Back in the 70's, a small-time Texas filmmaker...\n Pretty amusing spoof with great attention to d...\n There are people claiming this is another \"bad...\n You can generally ask two questions concerning...\n Mishima - a life in four chapters is in my opi...\n 'Ninteen Eighty-Four' is a film about a futuri...\n In 1967, mine workers find the remnants of an ...\n The original Trancers is not by any means a gr...\n As a true Canadian, I always avoid Canadian mo...\n For long time I haven't seen such a good fanta...\n This is short and to the point. The story writ...\n WOW, finally Jim Carrey has returned from the ...\n Let me get this out of the way before I trash ...\n This movie gets both a 6/10 rating from me, as...\n The tragedy of the doomed ship Titanic has ins...\n There is not much to add to what others have a...\n Here we go with other slasher movie, Good look...\n \"Masters of Horror\" has proved itself a poor a...\n Well, how to start? I saw The Italian Job for ...\n Slick, tidy, and well-made old school version ...\n When Ritchie first burst on to movie scene his...\n First off let me say that this movie is nothin...\n Standard rise to fame tale that has a few high...\n I can't believe that I let myself into this mo...\n While essentially a remake of the original Chi...\n IN LOVING MEMORY OF DAVID TOMLINSON (1917-2000...\n This movie gives golf a high mark, it was well...\n Yes, he is! ...No, not because of Pintilie lik...\n As spectacle, it's hard to fault Nihon chinbot...\n this movie is about people living at a trailer...\n After seeing the 1996 remake, I thought it was...\n Some things need to be clarified. The picture ...\n Emanuele Crialese did a fantastic job with one...\n Pretty darn good for a French film. I have not...\n Origins of the Care Bears & their Cousins. If ...\n The real star of the last of the Airport films...\n This adaptation for TV was a wonderful vehicle...\n After completing the lackluster novel, Heart o...\n I am quite a fan of novelist/screenwriter Mich...\n White Fire has so much going for it. With Larr...\n I don't know about the real Cobb but I got the...\n So, this movie has been hailed, glorified, and...\n An excellent movie about two cops loving the s...\n Intense actors like Bruce Dern, Jason Patrick ...\n I enjoyed the film very much, especially the p...\n Fado is a sad almost bluesy style of Portugues...\n This is my first movie review on IMDb. I was f...\n Eight Legged Freaks is a modern monster movie,...\n I really like Star Trek Hidden Frontier it is ...\n This demented left-wing wipe-out trivializes D...\n This movie is obviously low-budget & filmed in...\n This film is a great rampage of action and com...\n I feel extremely sad for some of the people wh...\n Ed Harris and Cuba Gooding Jr. where cast perf...\n By today's standards The DI might seem a littl...\n Wow, where do I begin? After suffering through...\n This joins the endless line of corny, predicta...\n I've never understood this type of spoof movie...\n When John Carpenter's masterly version of \"The...\n After watching a dozen episodes, I decided to ...\n Evocatively directed and slickly photographed ...\n I watched The Babysitter as part of BCI Eclips...\n The first two movies of this series excelled f...\n One of two movies I have actually thought abou...\n This BBC series is astonishingly good fun. I'd...\n Great cult flick for MST-3K types: Richard Boo...\n This is Jackie Chan's best film, and my person...\n If you enjoy films like American Pie, Road Tri...\n You gotta love the cheesy low budget movies. T...\n This movie is great entertainment to watch wit...\n A lot of the negative reviews here concentrate...\n It's so depressing when film makers try to be ...\n Sure, this film was retarded. But you expected...\n Anyone new to the incredibly prolific Takashi ...\n Okay, okay, maybe not THE greatest. I mean, Th...\n SPOILERS THROUGHOUT!!!!<br /><br />I had read ...\n THE PLOT: A trucker (Kristofferson) battles a ...\n I had the misfortune of seeing this crapulous ...\n Real-life husband and wife Paul Bettany and Je...\n CHEERLEADER MASSACRE (2003)<br /><br />starrin...\n Um... okay, this is very poor indeed if compar...\n All right guys, here's the deal with this movi...\n \"Julia Kerbridge (Catherine Mary Stewart) is w...\n This short was nominated for an Academy Award,...\n This is a docudrama story on the Lindy Chamber...\n Almost a masterclass in how not to direct a mo...\n Admittedly, I watched this piece with already ...\n Okay, so I'm a sucker for a good documentary, ...\n (Honestly, Barbra, I know it's you who's klick...\n Being an admitted chess addict, I was excited ...\n From the golden period of British films, this ...\n I wanted to watch this movie, but one bizarre ...\n Average viewers looking for any sense of inter...\n Sandra Bernhard's Without You I'm Nothing, the...\n Comes this heartwarming tale of hope. Hope tha...\n I don't play video games at all but my childre...\n Always enjoyed \"DOA\",1950,which starred Edmond...\n Well then, thank you SO MUCH Disney for DESTRO...\n I love this show. I watched every episode last...\n It is enjoyable and fast-paced. <br /><br />Th...\n Despite its age, this film retains its undoubt...\n Watching this movie and then listening to the ...\n Please...if anybody gets the chance to read th...\n GoldenEye is a masterpiece. The storyline is a...\n I read somewhere (in a fairly panning review) ...\n Comedy is a hard beast to conquer. Ishimoto fa...\n 'Ernest Saves Christmas' is comedian Ernest's ...\n This overrated, short-lived series (a measly t...\n With a cheap pound shop having just opened,i t...\n How can you go wrong with the amazing Ramones?...\n This movie is worth watching if you enjoy marv...\n Did the other reviewers watch the same movie I...\n When the movie was released it was the biggest...\n I'm really amazed that this got an 88% on Rott...\n This movie seems a little clunky around the ed...\n I have read the novel Reaper of Ben Mezrich a ...\n Daniel Day Lewis is one of the best actors of ...\n One would think that anyone embarking upon a f...\n Ironically, although he can do the \"splits\", T...\n A well written screenplay. A moving story show...\n I'm not a big fan of most anime, but Gundam Wi...\n This is one peace of art! If you like comedy y...\n This film was such a mess I actually reimburse...\n This film has, over the past ten years, become...\n Yes, that's true. That movie is a horrible pie...\n Excellent and moving story of the end of a uni...\n I went and saw Rivers and Tides again today. I...\n I caught this movie about 8 years ago, and hav...\n I have to say this, this is the first movie I'...\n i read the book before i saw the movie i knew ...\n In 2023, in a world ruled by the economical in...\n When plague breaks out in New Orleans, it's Ri...\n And again, Columbia Pictures decides to merely...\n I can barely find the words to express how utt...\n Los Debutantes is the story of two orphaned br...\n Mark Pirro's \"Deathrow Gameshow\" of 1987 is a ...\n This is one of those movies that, after watchi...\n As a huge fan of the original, I avoided this ...\n I don't know if the problem I had with this mo...\n It's one of my favorite movies as much because...\n its a gem movie if anyone who hasn't seen movi...\n Some would argue that Argentinean director Est...\n I first saw this movie when I was a little kid...\n You'd better choose Paul Verhoeven's even if y...\n I think that this is a disappointing sequel. I...\n Written by, directed by and starring the champ...\n Start of with the good bit: several times Sway...\n lets start off by saying that \"JAWANI DIWANI\" ...\n Basic meaning of the story is a reality. Cruel...\n I have to agree with most of the other posts. ...\n The Woman In Black was a British made for TV m...\n I must say, I thought I had seen it all. I am ...\n Accepted...let's see. The only reason why i ha...\n One of America's most brilliant film directors...\n algernon4's comment that Ms Paget's \"ultra lew...\n When people harp on about how \"they don't make...\n This movie has all the qualities to be good, S...\n Sometime in 1998, Saban had acquired the right...\n I just returned from viewing this academy awar...\n Terribly disappointed with CITY OF MEN after b...\n Rated TV-14 for Sexual Content and Language.<b...\n I've expected a comedy about the NVA, but this...\n The bittersweet twist to this movie contains a...\n When I saw Gone with the wind I thought that t...\n \"The Seven-Ups\" seems like a replay of \"The Fr...\n Everyone involved with this project should be ...\n The video opens with a scene from a horror mov...\n Hey, you are not alone! I remember Nichols! I ...\n I would like to know if \"The Outsiders\" (Austr...\n Walter Pidgeon is Braley Mason, a civil attorn...\n I believe that The Sopranos is an awesome show...\n I LOVED this movie. You can't buy it, rent it,...\n Despite this being one of John Cusack and Demi...\n It's awesome! In Story Mode, your going from p...\n This movie for what it is, may be one of the m...\n If you want to see a great little horror comed...\n I was adopted at birth and certainly did NOT h...\n Although this film was made before Dogme emerg...\n If you love Vampire lore and are a fan of Goth...\n Wrapped in gorgeous English country background...\n Loosely based on actual events, \"River's Edge\"...\n I can find no redeeming value to this movie. I...\n I really enjoyed this drama from Sidney Lumet....\n This stylistically sophisticated visual game p...\n Rabbit Seasoning is one of three cartoons that...\n Written, produced and directed by Charlie Chap...\n I was a little skepticle if I should watch thi...\n This was one of the most ridiculous and badly ...\n The title, although singular, will undoubtedly...\n Exquisite comedy starring Marian Davies (with ...\n Like The Jeffersons, Good Times was one of the...\n This film was very different form the previous...\n Some moron who read or saw some reference to a...\n Terrible. Absolutely terrible. Long, confusing...\n Hanna-Barbera sucks the life out of another fa...\n This movie is one of my very favorites. It's h...\n I started to watch this movie with high expect...\n Music that grinds on the nerves like fingernai...\n Hmmm! is it worst film ever? well sort of, for...\n That's about the only redeeming quality in a m...\n \"Secret of the Lens\" is perhaps a pretty campy...\n \"Hoods\" doesn't deliver the goods. This half-b...\n This afternoon we took the kids to the movies ...\n In answer to the person who made the comment a...\n This fanciful horror flick has Vincent Price p...\n Actually I'm surprised there were so many comm...\n This is an incomprehensible horribly low budge...\n Please be aware that this film has nothing to ...\n I love B movies..but come on....this wasn't ev...\n This collection really sucks!<br /><br />I ren...\n Steven Seagal is back! Here with his third fil...\n Cage plays a drunk and gets high critically pr...\n What can I say, it's a damn good movie. See it...\n Before watching this movie I thought this movi...\n I have anticipated the various Sci-fi and thri...\n In Chicago, four electricians leaded by Dean (...\n I read the book Celestine Prophecy and was loo...\n Enjoyable and watchable. Tim Meadows at his be...\n I try to be diverse in my movie watching. I ca...\n It starts really interesting - the story devel...\n The Psychopath (1973) A trip down memory lane....\n I rented this movie expecting it to suck, and ...\n There's a good story well hidden and never rea...\n The only entertaining thing that I found about...\n Scream was Wes Craven's last decent thriller. ...\n This is bar none the most hilarious movie I ha...\n Simply not the quality I expected from Morris ...\n *May contain spoilers*<br /><br />I bent over ...\n A year after losing gorgeous Jane Parker (Maur...\n The New Batman Adventures (also called Gotham ...\n I grew up in Winnipeg and saw the treatment of...\n \"Party Girl\" capitalizes on the tremendous cha...\n I went to see this movie simply to see what al...\n this film has it all; the deft camera work, re...\n For such films like `Anchors Aweigh', few have...\n The trio are a pleasant, nostalgic journey to ...\n Fear and Desire is of interest mainly to Kubri...\n This movie does not rock, as others have said....\n ....but at the same time part of you is thinki...\n I am huge movie enthusiast and also an active ...\n I'm a bit spooked by some of these reviews pra...\n I never dreamed when I started watching this D...\n Of life in (some) colleges. Of course there we...\n Stewart Moss stars as a scientist who is on a ...\n I chose this movie by the cover which was a ba...\n Over several years of looking for half-decent ...\n I didn't really get this movie because I'm not...\n In fact it was awful. The main chick in it who...\n If we consider three films with a similar subj...\n I have this movie on DVD and must have watched...\n Taylor Deemer Mrs. Drake English 10 PIB B4 31 ...\n My wife and I both thought this film a watered...\n A great movie. Lansbury and Tomlinson are perf...\n Legendary director Sidney Lumet gives us one o...\n The movie 'Heart of Darkness', based on the 18...\n Rented this out from my local because it was t...\n Here's a decent mid-70's horror flick about a ...\n What makes Midnight Cowboy into a successful m...\n Without question, film is a powerful medium, m...\n The Hospital is a movie that was made ahead of...\n <br /><br />I was fascinated to read the range...\n Rating: 8 out of 10. Directed by Alfred Hitchc...\n The story of the film was as simple minded as ...\n When I went to see Bon Voyage, I expected a go...\n This film is massively boring and pretentious....\n Normally, I don't watch action movies because ...\n This ranks as one of the worst movies I've see...\n This movie is definitely a case of style over ...\n \"Entrails of a Beauty\" features a gang of Yaku...\n Miles O'keefe stars as Ator, a loin-clothed he...\n Slow, boring, extremely repetitive. No wonder ...\n This is a standard action flick as we have see...\n You will recognize the plot immediately. Daugh...\n This film was one of three that were later com...\n \"Hell To Pay\" bills itself as the rebirth of t...\n \"The Blob\" qualifies as a cult sci-fi film not...\n The film was disappointing. I saw it on Broadw...\n I saw this movie literally directly after fini...\n I just can't understand why people are surpris...\n It's actually a good thing Sean Connery retire...\n I completely agree with the other comment some...\n Man, this would have been a bad episode of the...\n I watched this movie as I liked the plot, a gr...\n One of his lesser known films, many horror fan...\n I just saw Princess Raccoon at the Asian Film ...\n If pulp fiction and Get shorty didn't exist th...\n It's cheesy, it's creepy, it's gross, but that...\n I don't know what it is about Donald Sutherlan...\n I thought the movie was pretty good. I really ...\n This is a good movie, although people unfamili...\n Visitors is a hard, hard movie to enjoy. It's ...\n I love ghost stories and I will sit through a ...\n Although it's definitely an enjoyable way to s...\n Over the years I've seen a bunch of these stra...\n Laughable.<br /><br />Clichéd.<br /><br />Over...\n Couldn't go to sleep the other night. So I got...\n This film was a surprise. The plot synopsis so...\n I was sick one day and was skimming channels a...\n This review contains spoilers. I didn't have a...\n This Western was set in 1861 and had to do wit...\n Meryl Streep was incredible in this film. She ...\n Seldom do I ever encounter a film so completel...\n What a terrible film.<br /><br />It starts wel...\n Kon Ichikawa had lived through world war two, ...\n Shot in the Heart is wonderful. It brilliantly...\n It was awful plain and simple. What was their ...\n A documentary about two rocks bands, spanning ...\n WARNING - POSSIBLE SPOILERS!<br /><br />'Rock ...\n A film about an interesting and sensitive peri...\n Film certainly can be a narrative medium, but ...\n A great storyline with a message. Joan Plowrig...\n I absolutely loved this movie. Great, realisti...\n I do not think I am alone when I say that 2005...\n Jingofighter I agree with some of your comment...\n Well, \"built\" Doris Day (as Ethel S. \"Dynamite...\n The major flaw in this Spanish slasher/shocker...\n WARNING: Reading this entry after watching the...\n The opening of Imamura's masterpiece avoids me...\n This movie is so bad, you almost feel contamin...\n Similar story line, done many times before, an...\n Okay, I've tried and I've tried, but I STILL D...\n Simply terrible! Why wouldn't you use actual a...\n I have to say despite it's reviews Angels in t...\n Having previously seen the abridged print pres...\n The topic of religion in Buñuel films is a poi...\n Three of the things you can say about Spalding...\n I understand the draw and appeal to such a dif...\n The fine cast cannot uplift this routine tale ...\n This movie is just another average action flic...\n I have heard a lot about this film, with peopl...\n There have been several books that have cited ...\n The worst kind of film. Basically, the US Decl...\n ... for Paris is a moveable feast.\" Ernest Hem...\n This movie about a group of small town teens t...\n I recently watched the first Guinea Pig film, ...\n for people who have absolutely no idea of what...\n \"Raising Victor Vargas\" is one of those light,...\n One of the best of the Fred Astaire and Giner ...\n PROS: Akshay Kumar's performance(is it just me...\n This French film is supposedly about a creepy,...\n While not exactly offensive, the 1967 version ...\n This has got to be one of Australia's best pro...\n The Perfect Son is a story about two 30-someth...\n I wish I had read the comments on IMDb before ...\n The thirty years that have passed since the ma...\n I am a huge Michael Madsen fan, so needless to...\n I wasn't terribly impressed with Dante's 1st s...\n Oh my god. the idea that this movie is a thril...\n I saw this little Belgian gem two days after s...\n Passing stones definitely one of the best come...\n I have never seen a more unrealistic movie tha...\n The Oscar season has arrived so this means a s...\n the only thing that frequently pops into my he...\n planktonrules comments must've been written on...\n Ahh, yes, the all-star blockbuster. Take a so-...\n Shortly after seeing this film I questioned th...\n Oldboy is set in Korea & starts as a drunken D...\n You know the story..Pretty kids alone in the w...\n This movie is amazing. You will NEVER laugh ha...\n This is the greatest show ever made next to so...\n Jet Li, is one of the best hand to hand combat...\n The acrobatics mixed with haunting music, make...\n This film is just another distortion, among ma...\n Take a young liberal idealist Christopher Boyc...\n My friend had the idea of watching the animate...\n This film is an embarrassment. Nothing works o...\n I have never seen anything as awful as this mo...\n I would not deny that I have quite enjoyed wat...\n The Evil that Men Do (1984) was one of the few...\n I was extremely suspicious of the ideas presen...\n Rural family drama--with perhaps a nod to \"Ord...\n *****Spoilers herein*****<br /><br />What real...\n For those of you who have a few kind words for...\n I must say I didn't expect much about this mov...\n This is one of the few episodes (if not the on...\n Starts really well, nice intro and build up fo...\n The information contained in this movie is som...\n Jeux d'enfants or how the film was wrongly tra...\n The plot intellect is about as light as feathe...\n I was dreading taking my nephews to this movie...\n I saw this last night on Turner Classic Movies...\n After reading the first 5 reviews on IMDb I wa...\n I usually don't write reviews for shows unless...\n To me, the final scene, in which Harris respon...\n I didn't know what to expect from this. I alwa...\n It had potential...it really did. But there is...\n After \"A Dirty Shame\", I never thought that I ...\n Shame represents a high point in the career of...\n I am in a movie club at my school and I was fo...\n Others have harped here about James Stewart's ...\n My son Adam (5 years old) is a big Scooby Doo ...\n From watching only the trailer to Theodore Rex...\n Wow I really liked this movie, William H. Macy...\n Let me be the first non Australian to comment ...\n I don't know what the last reviewer is talking...\n New York I Love You just like its predecessor ...\n This crime thriller is sort of like a film noi...\n King of Queens is comic genius. Kevin James, w...\n This is one of the best comedy ever ! The writ...\n Countenance! Antoine Monot, in a copycat imper...\n This was one of the worst movies I have ever s...\n This movie is the only movie to feature a scen...\n I want to say I liked this film, I really do, ...\n Sometimes Full Moon makes entertaining movies....\n Well, this film came on on a workday at 230am....\n This could have been a good TV-movie, but the ...\n I saw this on sale - NEW - at my local store f...\n I LOVED this movie when I was younger, and I h...\n It just so happens that IVAN THE TERRIBLE, PAR...\n People expect no less than brilliant when Stev...\n At the time of writing this review it would se...\n Like the gentle giants that make up the latter...\n To fight against the death penalty is a just c...\n this was one of the most moving movies i have ...\n We start all of our reviews with the following...\n This film is amazing - it's just like a nightm...\n I went to this film having no idea what to exp...\n For those fans of Laurel and Hardy, the 1940s ...\n The Sentinel represents everything about the s...\n Good lord, whoever made this turkey needs to b...\n Rugged David Innes (solid Doug McClure) and do...\n From the start I knew I would be in for the be...\n Utterly tactical, strange (watch for the kinky...\n This film is one of the best memories I have f...\n Compared to director Kevin Connor's later ARAB...\n THE SECRET OF KELLS is an astonishing first an...\n As I have matured, my fascination with the Aca...\n It's partly bad luck for \"Illuminata\" that it ...\n I was brought up on Doc Savage,and was petrifi...\n I just finished \"Dark Chamber\" aka \"Under Surv...\n Am I the only one who thought the point of thi...\n Slasher movies started may be 30 to 35 years b...\n First off, I'm a huge Bronson fan, have been s...\n i saw this movie on cable, it was really funny...\n I'm gettin' sick of movies that sound entertai...\n 'Be With Me' is almost the ultimate wallpaper ...\n Being a slasher film aficionado, I typically w...\n Paul Thomas Anderson's stylish and compelling ...\n The boys are working outside a recording studi...\n Rosalind Russell executes a power-house perfor...\n I am a current A.S.L. Student & was forced to ...\n The year 2004 was the year of the biopic with ...\n A friend once told me that an art-house indepe...\n Plot is never the strong point of a Fred Astai...\n The Women (2008) by Diane English is sadly suc...\n The movie is an extra-long tale of a classic n...\n The movie goes something like this: Run around...\n This is a movie, that has all the basic elemen...\n I appreciate the effort that the filmmakers wa...\n If you want to enjoy the money you would spend...\n Any of Law & Order's, CSI (take your choice of...\n I have watched this film twice now and think i...\n I just saw \"A Tale of Two Sisters\" last night ...\n I was pleasantly surprised by the depth of sto...\n A comedy gem. Lots of laugh out loud moments, ...\n This movie is TRASH from the word go. First, i...\n Sporting a title seemingly more suitable for a...\n Terror in the Jungle is a real find. If you sa...\n I just cannot emphasize enough what a lovely m...\n The film moves along quite well but the acting...\n This amusing, sometimes poignant look at the H...\n This truly is an Australia cult classic. If yo...\n Cillian Murphy and Rachel McAdams star in this...\n I was skeptical when I first saw the Calvin Kl...\n This movie baffled me. I could not get a grip ...\n I finally rented this video after searching fo...\n I saW this film while at Birmingham Southern C...\n I just recently stumbled upon this show when A...\n Conrad Hall went out with a bang. The great fi...\n This movie features two of my favorite actors ...\n Some people think of Sweden in a negative way:...\n this movie is just an excuse for the writer to...\n Bo Derek will not go down in history as a grea...\n i watched this tape, immediately rewound it, w...\n Reda is a young Frenchman of Moroccan descent....\n The Bourne Ultimatum (2007) Review: After a th...\n I love this movie. It is great film that combi...\n \"Semana Santa\" or \"Angel Of Death\" is a very w...\n I watched this film in youth group, where my o...\n I'm not sure as to call this movie a children'...\n When will people learn that some movies are ma...\n ...about the importance of being young, having...\n This movie stinks. IMDb needs negative numbers...\n I made sure to see this film because it is a 1...\n Probably the worst Bollywood film I've seen.<b...\n Four Friends is one of those films that you go...\n This film was just absolutly brilliant. It act...\n Although I live in Minnesota, I have been stud...\n the government that he fought to establish to ...\n There is part of one sequence where some water...\n This really doesn't match up to Castle of Cagl...\n I am not going to lie, this is a great movie. ...\n I just watched this movie with a few friends t...\n With the rising popularity of the now iconic G...\n You know how everyone jokes about the acting i...\n Absolutely amazing! Humor, up-beat music and a...\n I have been trying to track The Age of Kings d...\n It is depressing that many people don't unders...\n A wonderful family movie & a beautiful horse m...\n This movie has it all. It is a classic depicti...\n I'll put this as plainly as possible for those...\n There was something here with the female lead ...\n Eve is an eye opener, because of the great sce...\n normally i'm not the sort to be scared by horr...\n I think I watched a highly edited version beca...\n Brian De Palma's undeniable virtuosity can't r...\n My friends and I saw the movie last night in A...\n With \"Batman Returns\", Tim Burton succumbed to...\n Hal Hartley's Henry Fool was an independent fi...\n What can I say? An excellent end to an excelle...\n Anyone who visited drive-ins in the 1950s, 60s...\n Made by french brothers Jules and Giddeon Naud...\n I'm afraid this one is pretty dreadful, despit...\n This movie lacks in everything. Except Bobby d...\n Dark Reality is a Saw like movie that is sligh...\n Shame Shame Shame on UA/DW for what you do! <b...\n This movie is a gem...an undiscovered Gerry An...\n This is one of the best movies I've seen. The ...\n The only other film besides Soylent Green that...\n \"Spaced Invaders\" is one of the funniest movie...\n Faces are slashed, throats are cut, blood squi...\n Each show is excellent. Finally, a show about ...\n I saw this film at the 2004 Toronto Internatio...\n There are two things that I like about Elvira,...\n I don't know what you guys are talking about, ...\n I like to think that I can appreciate a movie ...\n This is movie is garbage, it looked really fun...\n There is one really good scene in Faat Kine. T...\n I think the opening 20 minutes of this film is...\n As an Army veteran, I was deeply offended by t...\n This is a family movie that was broadcast on m...\n <br /><br />When I first heard about this back...\n TOUGH LUCK follows a homeless drifter as he be...\n I should explain why i gave this...\"piece of a...\n Sit in your basement with the light out for an...\n Early Jackie Chan film where there is no sign ...\n Ghost Story,(The New House) is a terrific horr...\n College students (who are actually in their la...\n Only seen season 1 so far but this is just gre...\n DER TODESKING is not one of my favorite Jorg B...\n I recorded this ages ago but only got round to...\n I love this show. It's truly unique. I was und...\n Brokedown Palace is truly a one of a kind. It'...\n I could not believe it. This film was a total ...\n Once I knew that Donald Sutherland, (Jack Shaw...\n A couple of teenagers have a little sex on the...\n This movie is traditional bollywood fare as fa...\n \"I'm a cartoon!\" \"You're an illustration!\" wha...\n I am very interested in animal children and I ...\n I liked all the Lilo and Stitch movies. The TV...\n I consider Stuart Bliss the worst movie I have...\n Yes, this show had a lot of male frontal nudit...\n Me and my girlfriend, Annette, watched this to...\n This Italian film from the '70's is NOT even i...\n Considering the appalling track record of Mick...\n Literally every aspect of this science-fiction...\n Pure schlock from beginning to end. The averag...\n Every Christmas eve I make my kids endure yet ...\n Yes, I did, as I sit here red-faced, rememberi...\n Of the four main players in here - John Candy,...\n First Off Acting Is So Terrible Except For The...\n This movie gives us some WWII history along wi...\n And with those words one of the great movie pu...\n I've watched this movie, after having seen the...\n First, I loved the documentary. It represents ...\n Black Scorpion is a fun flick about a groovy f...\n This is actually a brilliant movie. The story ...\n I'm not sure what HK movies the other reviewer...\n About 5 minutes into the movie you're thrown i...\n \"you can't take it realistically.\" -sheets<br ...\n It seems that the people behind Envy realised ...\n For a science scare movie to work well it has ...\n Something of a disappointment. Lee J. Cobb is ...\n Absolutely the most boring movie I have ever s...\n A nice and pleasant movie full of meditteranea...\n <br /><br />Worst. Movie. Ever.<br /><br />Wha...\n The film starts out very slowly, with the life...\n There is something kind of sad about seeing so...\n There's only 2 reasons I watch this show...I i...\n The Mother is one of those films that you know...\n One of the major successes to The Decline of W...\n Delightful minor film, juggling comedy and det...\n Eleven \"great\" filmmakers, eleven pieces of ga...\n I saw this film at our crossroads film festiva...\n I am a massive Hitchcock fan, ever since seein...\n I have waited a long time to see this movie. I...\n Moe and Larry are newly henpecked husbands, ha...\n SPOILERS THROUGHOUT:<br /><br />Not good. The ...\n Not much to it but a validation of small town ...\n What a great cast for this movie. The timing w...\n Not only is this film entertaining, with excel...\n The first movie of this series was well writte...\n This is a great film for McCartney's and Beatl...\n Chances are, you'll think this movie is incred...\n This movie (and yes, it's a movie - it was sho...\n It is more a subtle story of the fact that in ...\n I have to say I totally loved the movie. It ha...\n The movie was pretty bad. It's not so much a s...\n I adore Hedy Lamarr. I think she was vastly un...\n Maximally manipulative Anabel Sims (Betsy Drak...\n i can't figure out who greenlighted this thing...\n * Terrible * * Below Par * * * Not Bad * * * *...\n It's hard for me to assign the \"fair\" number o...\n David Morse and Andre Braugher are very talent...\n This is one of the funniest series ever! I lau...\n This is my favorite horror film, a close 2nd t...\n Being a HUGE fan of the bottom series i was re...\n After an intriguing start, this little drama q...\n I spent three months living in the East End of...\n I wish the series had not ended so soon. Altho...\n I am an avid fan of horrendous movies, anythin...\n Michael Radford has done an excellent job brin...\n Richard Attenborough is a director whose name ...\n This is a serious film about black revolutiona...\n So after the initial disappointment of the fir...\n Jim Carrey is a particular brand of humour and...\n A bunch of full-length movies featuring the Mu...\n This film works on a lot of different levels. ...\n Artemisia Gentileschi, the daughter of Orazio ...\n Lil Pimp is the story of a little boy who beco...\n This movie is an incredibly self-indulgent cha...\n Rarely has such an amazing cast been wasted so...\n I honestly had no idea that the Notorious B.I....\n Eric Rohmer's \"The Lady and the Duke\". could h...\n This is a script that Ed Wood worked over 10 y...\n Massacre is a film directed by Andrea Bianchi ...\n Susie Q is a great romantic prom Movie. Amy Jo...\n The Bothersome Man is one of the best foreign ...\n This is one of Peter Sellers' best movies. Why...\n this movie is sooooo bad that it forced me to ...\n Every Saturday morning at 11 a.m. I watched Su...\n This film was released soon after the Conan fi...\n I guess my husband and I are a little slow. We...\n Another big star cast, another glamour's set, ...\n I loved the first \"American Graffiti\" with all...\n With the release of Peter Jackson's famed \"Lor...\n This particular episode of Smallville is proba...\n Based on an actual mining disaster, this early...\n Someone reviewed this movie as a \"waste of tim...\n Sure I've seen bad movies in my life, but this...\n If you want to see how to ruin a film, study t...\n This was a rather unnerving look at an ostensi...\n Everyone knows that Lindburgh succeeded in the...\n In a word...amazing.<br /><br />I initially wa...\n This was Eisenstein's first completed project ...\n Where to start, this movie started badly and e...\n An intriguingly bold film weaves the seemingly...\n I saw this film at a store in the cheap sectio...\n This is the perfect example of how a great boo...\n I'm a fan of TV movies in general and this was...\n The Further Adventures of Ma and Pa Kettle alm...\n Most people who chase after movies featuring A...\n ...and that's saying something. No matter how ...\n Legend of Dragoon is one of those little-known...\n The Beloved Rogue is a wonderful period piece....\n Hard to believe this was directed by Fritz Lan...\n Seems like some of the previous reviewers has ...\n Having been brought up in Phenix City as a chi...\n I love these \"Diaper Baby\" movies! You couldn'...\n Now don't get me wrong, I love seeing half nak...\n I didn't watch this show that much when I was ...\n Quite a production from the director telling t...\n For those who expect documentaries to be objec...\n A beautiful film, cleverly shot with an eye to...\n A group of environmentalists travel to an isla...\n My friends and I saw this at the San Diego Bla...\n I saw this film on its release, and have watch...\n I rented this movie from the library (it's har...\n Wesley Snipes is perfectly cast as Blade, a ha...\n The best of the seven Sam Fuller movies that I...\n Red Eye is a thrilling film by the creator of ...\n Fun bad movie which should amuse. One of Joan ...\n This screened at Sundance last night to a rece...\n That's right. The movie is better than the boo...\n *Spoilers ahead, but that shouldn't matter sin...\n Christopher Lambert attracted me to this movie...\n \"Two Hands\" is a hilarious Australian gangster...\n This is the first recorded effort to put sound...\n The Emperor and the Assassin (w/English Subtit...\n A cheap exploitation film about a mothers sear...\n This was a less than exciting short film I saw...\n This little show is obviously some stupid litt...\n Nothing like this was seen on TV at that time ...\n Absolute garbage, worse fight scenes than a 20...\n A young solicitor in sent to a remote area to ...\n There really is very little positive that can ...\n I can't believe I sat through this garbage. Pa...\n The main problem of the first \"Vampires\" movie...\n As we all know the sub-genre of sex comedies i...\n I know I should like this film, and I do for t...\n Classic drama/action western with incredible c...\n With a cast list like this one, I expected far...\n <br /><br />What an absolutely crappy film thi...\n This is so bad it will be my contribution to t...\n How much longer are we to persist with this fl...\n I would agree with the comments already posted...\n Being the first feature film with Robert De Ni...\n This film is a very bad example of uninspired ...\n I'm not sure I understand where all these enth...\n Jennifer Jason Leigh and Mare Winningham are a...\n You just need to see this as a poorly executed...\n Lillian Hellman, one of America's most famous ...\n 60 minutes in the beautiful Christina Galbo tr...\n How can Barry Levinson possibly assemble white...\n The unthinkable has happened. Having first wit...\n Yes, people are racist. People are even racist...\n OK, my girlfriend and I rented the DVD and abo...\n Ouch! They don't come much worse than this hor...\n Miscasting happens. Susannah Yorke is a lumino...\n Sure, it has its pretentious moments, it plays...\n Every movie from the thirties is dated, but if...\n SLASHERS (2 outta 5 stars)<br /><br />Not real...\n Theo Robertson has commented that WAW didn't a...\n Second part (actually episode 4-8) of the hit ...\n I don't know why I'm commenting this stupid re...\n The Cell is weak on plot, filled with holes an...\n PLEASE?! If this is about technology and what ...\n The movie forever strong will never be nominat...\n Max had the V-8, Trace (Wheels of Fires last a...\n The Education of Little Tree is just not as go...\n One of the most notorious of the banned \"Video...\n The Coen Brothers have done it again. Three de...\n All the talent Mr. Sooraj Barjatya showed in h...\n There were good performances by Robin Williams...\n I found this film by mistake many years ago & ...\n ......... and you get Chori Chori Chupke Chupk...\n Since the 70s, writer/producer/director Charle...\n The 1935 version of \"Enchanted April\" manages ...\n I guess that this movie is based on some kind ...\n The case is the best part of the movie but it ...\n Though this may not necessarily be a so-called...\n Alfred Hitchcok is not my favorite director by...\n This movie was so dumb and slow was it ever sl...\n I first saw this masterpiece on VHS 10 years a...\n This unsung quiet gem tells the true story of ...\n Dominion Tank Police is without a shell of a d...\n I have seen Dolemite and also (Avenging) Disco...\n Watching film i was in very light mood and als...\n Years before pre-nuptial agreements became a r...\n My children just happened to stop at this movi...\n As part of our late 1950s vocabulary, we well ...\n This critique tells the story of 4 little frie...\n This is what they came up with for prop comedi...\n I hate over-long over-talky French movies, but...\n Anand is one of those low-budget but well take...\n The most enjoyable pet movie since Scooby Doo ...\n Early, heavy, war-time propaganda short urging...\n STAR RATING: ***** Saturday Night **** Friday ...\n This is definitely an excellent show. I don't ...\n Just watched on UbuWeb this early experimental...\n I bought this cheap from the rental remnant at...\n Awful! Awful! Awful! Drab, unimaginative, pred...\n I watched Peter Jackson version of Lord of the...\n Great horror comedy from Michael Davis.Iwas la...\n After my 6 year old daughter began taking ridi...\n While I hold its predecessor, \"Fast Times At R...\n What a snore-fest.<br /><br />Of all the bits ...\n This is a low-budget \"Scream\" style movie. \"Ma...\n From the English accents to the so unnecessary...\n It was a movie that made ya think a little. So...\n This movie was terrible. at first i just read ...\n Well, it's all been said about this movie and ...\n This story about a man's 28 year struggle for ...\n I have been watching movies from i think last ...\n The only good either of the Problem Child film...\n A really sweet movie that has some similaritie...\n Definitely not worth the rental, but if you ca...\n The '60s is an occasionally entertaining film,...\n Let's be honest here: the only reason anyone b...\n One of the worst movies I have ever seen. Seag...\n I tried to like this program; I really did. I ...\n Hard to believe, perhaps, but this film was de...\n Man, I really love the new DVD that Universal ...\n Screenwriter Lisa Lutz began writing the scree...\n \"Cement\" is a bad movie about a bad cop (Penn)...\n One of the major flaws in this film is that wh...\n Greetings again from the darkness. What ever h...\n The movie remains in the gray for far too long...\n I ran across this several years ago while chan...\n The three-part series ended last night on PBS,...\n Got to be one of the best political satires I ...\n I have loved the book \"A Little Princess\" for ...\n Apparently re-cut episodes from the Gangbuster...\n I remember watching \"Lost Missile\" (actually t...\n I do see what my forebears saw in the youthful...\n A pointless movie with nothing but gratuitous ...\n I first saw this movie at a Saturday matinee w...\n A rather mild horror movie; if not for a coupl...\n The only words you need fear more than Joe Don...\n I know John Singleton's a smart guy 'coz he ma...\n This film is essentially for those who have ha...\n Just when it was easy to assume that a costume...\n I just thought I would add another observation...\n As usual, another masterpiece in the Vice Acad...\n I thought this was a splendid showcase for Man...\n Once again, I am amazed that Thomas Gibson did...\n The many other comments about the film say it ...\n Indian cinema typifies cops of two broad categ...\n Andrewjlau, I could not agree more. My girlfri...\n A patchwork about 911. The 11 stories from 11 ...\n Of all the football films I have watched, this...\n I watched this film not expecting much and not...\n I had no idea what this film was about or even...\n I like the good things in life as much as anyb...\n Now I did watch this when it first came out on...\n This is a plain old spooky ghost story. I show...\n Debra Winger's 1987 \"Black Widow\" is MUCH bett...\n I've never been a big Larry Clark fan, but som...\n <br /><br />Presenting Lily Mars is one of a g...\n This movie is a bad to alright rip off of Frid...\n A British twist on Harold and Maude, Driving L...\n Aaron Sorking raises the same questions as Sha...\n I thought that the storyline came into place v...\n This film gives a look at the suffering a fami...\n If Sicily is a territory of the baroque, with ...\n After traveling around the world, it dawned on...\n This movie is horrible, but you have to see it...\n This film, along with WESTFRONT 1918, are my f...\n I am speechless, honestly I cannot understand ...\n I'm going to say first off that I have given t...\n The animation was fab and the film funny. The ...\n [Warning contains spoilers]<br /><br />I felt ...\n ** and 1/2 stars out of **** Lifeforce is one ...\n A bum gives a Secret Serviceman a tip about a ...\n It seems a lot of IMDB comments on this film a...\n This is pretty much the first Jason Scott Lee ...\n Most of the criticism of \"Attack of Show\" is f...\n Daisy Movie Review By James Mudge From beyondh...\n Heather Graham couldn't play a convincing lesb...\n this is another good western,which i enjoyed.i...\n I grabbed La Bandara because it reunited Jean ...\n This flick is TERRIBLE! It sets out to disgust...\n Enjoyed 'Den brysomme mannen' http://ow.ly/PTT...\n i have been watching this movie repeatedly, si...\n First of all, the only reason people keep bitc...\n Interesting cartoon, included on the DVD of \"T...\n Dan Burgess is a nice guy. He happens to be a ...\n Flight of Fury starts as General Tom Barnes (A...\n Paul & Grace Hartman are my husbands grandpare...\n First let me say that Before Sunrise, like all...\n This film is totally unbelievable. The only wa...\n Shazbot, is this embarrassing. In fact, here's...\n Every time this movie used to re-air on late n...\n First of all, DO NOT call this a remake of the...\n To say the truth, I went to see this movie onl...\n Just to save you money and time I will go ahea...\n Want a great recipe for failure? Take a crappy...\n Broadway and film actor-turned-director John C...\n are highlights of this 1917 feature. The Pride...\n The cast was well picked. Pauly Shore is hilar...\n Sure, 65 years have passed since Thalberg's la...\n There is a reason why the world forgot these c...\n This movie is pretty awful but I have some int...\n Here's a horror version of PRISCILLA: QUEEN OF...\n If you read the book before seeing the movie y...\n Who would have thought that a movie about a ma...\n This film grabbed me right from its start, whe...\n Going into Teaching Mrs Tingle, all I wanted w...\n Think of a no-budget version of China Syndrome...\n I never saw this when I was a kid, so this was...\n This movie typifies the early eighties as well...\n NB: Spoilers within. This great movie is \"abou...\n For those of you who've wondered what an art-h...\n This Movie Is Excellent The passion between Ja...\n I purchased this film on DVD for £4, but it wa...\n Congo is another multi-milion dollar adaptatio...\n Having just seen the A Perfect Spy mini series...\n Final Score: 1.8 (out of 10)<br /><br />After ...\n This movie had an interesting enough plot abou...\n As I write this in November 2005 I've become a...\n PEOPLE ARE STUPID.You shouldn't cheer when Par...\n Dick Foran and Peggy Moran, who were so good t...\n What can I say? You expect only the best in dr...\n Death in Venice is a movie I need to see once ...\n I waited a while to post a review of this docu...\n Gritty drama? Emotionally powerful? Blah! The ...\n Go up to any film fan and ask them the title o...\n I think this movie lacks so much of substance,...\n I have nothing against religious movies. Relig...\n I didn't know what to expect from 'Ned Kelly',...\n This movie really rocks! Jeff Wincott is terri...\n I watch bad movies.<br /><br />This movie is n...\n This is probably the most irritating show I ha...\n This is a candidate for the single most disapp...\n Crackerjack is a simple but feelgood movie whe...\n \"I just viewed this movie last night and I don...\n Since this picture is classified a \"pure enter...\n Taiwanese director Ang Lee, whose previous fil...\n The cinematography is the film's shining featu...\n I think the context of the story has been cove...\n Its like if you took the general themes of The...\n I won't repeat all that has been said already ...\n An unjustly neglected classic, \"Intruder in th...\n This is the official sequel to the '92 sci-fi ...\n It was so very long ago (1960), but I have nev...\n Othello, the classic Shakespearen story of lov...\n Julie Andrews plays a German spy who falls in ...\n a very good episode, although not as devastati...\n Perhaps I'm just a simple person, but I prefer...\n Watch On The Rhine started as a Broadway play ...\n Brilliant Aussie movie... A little slow at the...\n I gave this movie a rating of 1 (Awful). The o...\n Star Trek V definitely earns the dubious disti...\n Anyone who correctly identifies the opening im...\n This cheap, grainy-filmed Italian flick is abo...\n In watching how the two brothers interact and ...\n An obscure horror show filmed in the Everglade...\n I've now seen this film twice, and I must say ...\n I've been watching this movie by hoping to fin...\n The video quality is awful. The sound quality ...\n OK, so I loved Rachael Ray before, but now, I ...\n Brilliant. Ranks along with Citizen Kane, The ...\n This is an unusual Laurel & Hardy comedy with ...\n Christopher Boyce (Oscar-Winner:Timothy Hutton...\n Simply awful slasher, molded from the I KNOW W...\n Admittedly, before seeing House of Wax, I assu...\n I watched this movie expecting what I got: goo...\n Where oh where to begin in describing the comp...\n It's obvious that the people who made 'Dead At...\n I was recently at a sleepover birthday party w...\n This horror movie is really weak...that is if ...\n Though, short lived \"The Amazing Spider-Man\" w...\n My wife and I watched this marvelous movie thi...\n endearing tale........ voted ten against all a...\n i´ve seen this piece of perfection :-) during ...\n It begins with several of the principles on a ...\n As I was watching this movie I was thinking,OK...\n This movie started off great; the first 30 min...\n I saw this movie twice. I can't believe Pintil...\n This piece of Crap is actually the BOMB, as in...\n Thinly-cloaked retelling of the Garden-of-Eden...\n It is no wonder this movie won 4 prices, it is...\n What a long, drawn-out, pointless movie. I'm s...\n I'm Irish and I've been living in Denmark for ...\n STAR RATING: ***** Saturday Night **** Friday ...\n What a loss the passing of director Emile Ardo...\n Most predicable movie I've ever seen...extreme...\n When I first rented Batman Returns, I immediat...\n I've received this movie from a cousin in Norw...\n I liked this movie, not because Tom Selleck wa...\n Once again John Madden has given us a magnific...\n This movie has got to be one of the all-time l...\n I bought this movie for a couple of dollars at...\n Like many others have commented before me here...\n The first half of the film is OK, the second h...\n I cannot believe how unknown this movie is,it ...\n If you want to truly experience the magic (?) ...\n I have just read the lead comment for this fil...\n I have never seen a Barbara Steele movie that ...\n This is my all time favorite Looney Tunes cart...\n One of the weaker Carry On adventures sees Sid...\n I first saw \"Signs of Life\" on PBS as an Ameri...\n Film historians have said much about ancient e...\n This movie gets it right. As a former USAF Avi...\n This is a very odd movie for Harold Lloyd--at ...\n For that matter one of the worst FILMS ever ma...\n Yet another colourful excuse for men in rubber...\n The premise is amazing and the some of the act...\n First I liked that movie. It seemed to me a ni...\n Three flash-backs introduce the main character...\n I was especially delighted that in this movie ...\n A rousing adventure form director George Steve...\n I watched this movie last night and already I ...\n Scooby Doo is undoubtedly one of the most simp...\n I felt compelled to write about this movie aft...\n ... BREAKER MORANT and ROMPER STOMPER . It has...\n An anonymous film which could have been direct...\n I absolutely LOVED this movie! It was SO good!...\n I had never heard about this film prior to com...\n This is possibly one of the worst movies I hav...\n The opening scenes move as fluidly as frozen v...\n I was surprised to read the comments of the pe...\n This is a wonderful movie with a fun, clever s...\n Iam not sure if discussing the television seri...\n I am a longtime fan of the original of this mo...\n This cordial comedy confronts a few bizarre ch...\n I know when you buy a used (oops, excuse me, p...\n Because IT IS, that's why! This is the same je...\n I saw this movie with my friend and we couldnt...\n How low can someone sink while trying to recap...\n <br /><br />Since cats have nine lives, I'll g...\n This two and a half hour long film was shown r...\n Film follows four friends from the 1950s (when...\n Waco: Rules of Engagement does a very good job...\n <br /><br />Artisticly shot, actors portray ex...\n I give it 8 out of 10 because it is a cult cla...\n for those of you who love lord of the rings an...\n Each story has a lesson for young and old. But...\n Nice attempt and good ideas (redemption of the...\n \"Here On Earth\" is a surprising beautiful roma...\n Wow !! I didn't even know about this movie unt...\n As the jacket proclaims, this film is \"Gorgeou...\n Gwoemul (The Host) - Due to pollution in the H...\n A beautiful film. One that made me think of go...\n I haven't seen this in over 20yrs but I still ...\n The 60´s is a well balanced mini series betwee...\n This Asterix is very similar to modern Disney ...\n This film is not deserved of the next few minu...\n When the movie begins, it's obvious just how o...\n In New York, a group of freshmen join the High...\n Over the years I seemed to have missed this pi...\n This is the one movie that represents all that...\n This movie, one of the best I've ever seen, ta...\n As a South African, living in South Africa aga...\n This has to be one of the most awfully scripte...\n Rated E(Contains Violence).<br /><br />I had t...\n I love special effects and witnessing new tech...\n Nightscream is a TV Movie so it's bound to be ...\n i do not understand at all why this movie rece...\n Presenting Lily Mars (MGM, 1943) is a cute fil...\n \"In April 1946, the University of Chicago agre...\n It's exactly what the title tells you...an isl...\n I had seen 'Kalifornia' before (must be about ...\n I read the comment of Chris_m_grant from Unite...\n This movie was a brilliant concept. It was ori...\n Spoilers I guess.<br /><br /> The absolutely a...\n I like end-of-days movies. I like B-movies. I ...\n I am a HUGE Tenacious D fan, and I think this ...\n Who gave these people money to make a movie? T...\n This movie starts out brisk, has some slow mom...\n This is a very \"right on case\" movie that deli...\n Of all the reviews I've read, most people have...\n The trouble with this film, like so many other...\n \"A Minute to Pray, A Second to Die\" is a quali...\n I saw the film at the Nashville Film Festival....\n This is a true story of an Australian couple w...\n I felt this film did have many good qualities....\n This is te cartoon that should have won instea...\n Rarely do I see a film that I am totally engro...\n Well to start with Rajkumar Santoshi is not a ...\n Coyote Ugly might have been much more effectiv...\n I saw this movie yesterday on Turner, and I wa...\n I was honestly surprised by Alone in the Dark....\n Reports of this film's brilliance appear to ha...\n I know a lot of people like this show and i ap...\n I have been reading a lot of different opinion...\n The movie was surprisingly wonderful especiall...\n I have seen this movie more than 50 times in m...\n Either or, I love the suspension of any formul...\n For me, it just didn't seem like GI Joe at all...\n OK.. at the time of writing, 65 people voted f...\n Well, I do like the gore in this movie - it is...\n I don't understand how people could not like t...\n Some thirty years ago, Author Numa Sadoul publ...\n Proof if ever more was needed, that an action ...\n In Paris, the shy and insecure bureaucrat Trel...\n Johnnie (Bert Wheeler) is a would-be songwrite...\n Even if this film was allegedly a joke in resp...\n Written by Stephen King, but this treatment is...\n I just watched this movie. In one word: sucky!...\n Exceptionally horrible tale that I can barely ...\n How to qualify this film, simply HORRIBLE. It ...\n There is a need for this kind of entertainment...\n Additionally titled BURNING MAN and FLASH FIRE...\n This fabulous movie must be viewed knowing tha...\n To sum it all up, skip End of Days and watch r...\n I was so impressed with Doug McGrath's film ve...\n This movie shows how racist John Singleton is....\n I got a DVD of \"Bogeyman\" and this stunker was...\n I was at school in the late sixties and early ...\n I first saw this movie in the mid 80's and tho...\n When I go to see a movie about zombie's, I'm n...\n Thank God I was not operating any heavy machin...\n I have to agree that the movie is not the best...\n The opening of MORTE A VENEZIA resembles a Dur...\n Jolene (Heather Graham) operates a night club ...\n Imagine, its, say 12-1am - your at home, your ...\n I am beginning to see a very consistent patter...\n When I remember seeing the previews for this m...\n A man brings his new wife to his home where hi...\n `Our Song' gives us the lives of the three tee...\n \"Nacho Libre\" (2006) <br /><br />Directed By: ...\n Yet another \"son who won't grow up\" flick, and...\n This movie is about a side of Ireland that Ame...\n I am a firm believer that a film, TV serial or...\n Shown in Australia as 'Hydrosphere', this incr...\n At your video store, you might find this gem.<...\n A woman who deals in art starts to have a pass...\n taking into consideration the Chan films that ...\n I agree with the posters before that the chara...\n In terms of historical accuracy, this is the a...\n What is very French about this film is the tim...\n This may not be the worst comedy of all time, ...\n Recap: It's business as usual at Louche's casi...\n Cameron Mitchell plays an actor who is dating ...\n \"The Final Comedown\" wants to \"say something\" ...\n I managed to see the MTV premiere of this movi...\n I found the movie Judas Kiss excellent. Carla ...\n This movie is a farce! Names are grossly mispr...\n Oz is a great series, one of televisions under...\n One of the best comedians ever. I've seen this...\n I couldn't agree more. The book is one of Dean...\n Way back in 1967, a certain director had no id...\n It's funny, when you stop and think about it: ...\n \"Hollywood Hotel\" has relationships to many fi...\n Unlike most of the reviewers of this particula...\n I just finished watching Disappearances at AFI...\n 'You're in the Navy Now' is painfully bad: ver...\n Yes it is your typical direct to video action ...\n I usually seek to find good in movies, even th...\n I loved \"Dan in Real Life\". A wonderful journe...\n if i could rate it a zero i would , coming fro...\n It has been said that Deanna Durbin invented t...\n The thing that stands out in my mind in this f...\n Except for the Brady Variety Hour, this was so...\n Stanwyck and Morgan are perfectly cast in what...\n Truly this is a 'heart-warming' film. It won t...\n Stories about the possibility of a post-apocal...\n This film got roasted by the boys at MST3K, bu...\n Every once in a while, Eddie Murphy will surpr...\n Millions in gold is traveling by train to the ...\n I remember reading all the horrible, horrible ...\n I did not set very high expectations for this ...\n This movie tries to be artistic but comes acro...\n Hilarious hardly begins to describe this one o...\n Billy Wilder is co-credited for the story, and...\n Hello all you lovely Dirty Dancing fans!!!! I ...\n Unlike many, I don't find the premise or theme...\n I thought the movie was good, but I like to re...\n Why did I waste my money on this on the last d...\n I'm afraid that I have to disagree with the ma...\n This one's as cheesy as they come  the concep...\n It takes guts to make a movie on Gandhi in Ind...\n Very poor effort that offers pretty much nothi...\n There is really no way to compare this motion ...\n An absoloutely wonderful film that works on se...\n Five medical students (Kevin Bacon, David Labr...\n It's what you expect. It induces laughter, cri...\n Really, They spelled it BRAIN in the credits, ...\n What Hopkins does succeed at with this effort ...\n Flockhart's performance is very disappointing....\n 'The Dresser' is one of those films which are ...\n A Three Stooges short, this one featuring Shem...\n OK. A warning for anyone out there who is a pa...\n This could have been a very good film, if I ha...\n I saw this movie in Santa Monica on Aug. 23 an...\n This film has so little class in comparison to...\n As you may have gathered from the title, I who...\n The book on which this movie is based was exce...\n I've seen a lot of movies and rarely would I e...\n Thursday June 9, 9:15pm Egyptian Theater Satur...\n Awful film. Terrible acting, cheesy, totally u...\n Spacecamp is a movie that I plan to show my Da...\n This is not a story. It's a bunch of psychic n...\n This movie was a sicky sweet cutesy romantic c...\n I'm sorry but I cannot even partly agree with ...\n I've never seen the original \"House Of Wax\" so...\n I swear, I had never seen such a bad movie as ...\n I saw this at the Mill Valley Film Festival. H...\n The performances by the male leads make this l...\n Red Rock West is a perfect example of how good...\n I never like to comment on a good film but whe...\n This movie is mostly crap and the only reason ...\n This movie is a masterpiece of brilliant actin...\n This one is a poor attempt at spinning the old...\n \"La Furia del Hombre Lobo\" forms a completely ...\n Excellent documentary that still manages to sh...\n I know this film was shown on local TV when I ...\n In a near future, the ordinary man above any s...\n This is an odd film for me, as after I reviewe...\n When I rented Domino I was expected it to be v...\n Jon Cryer reprises his role as a neurotic guy ...\n This is one a most famous movies of the French...\n Excellent show. Instead of watching the same o...\n If you like detective and police shows and you...\n I couldn't make heads or tails out of this ter...\n This is a really cute movie. I had a massive s...\n Amitabh and Jiah Khan, raised great expectatio...\n I picked this movie up to replace the dismal c...\n I've seen worse, which is a backhanded way of ...\n Stylish, moody, innovative revenge-driven bloo...\n I think this movie is my favorite movie. I am ...\n Frank Capra's creativity must have been just a...\n I very much enjoyed this movie and I think mos...\n Looking all of 29 years old, Rob Lowe is a det...\n With an interesting premise (in the conflicts ...\n I'm working my way through the Horror Classics...\n Skenbart takes place in the 1940s, right after...\n real love. true love. mad love. beautiful love...\n I have seen this movie and anybody who has eve...\n Where do I begin with the Killing Mind before ...\n Well, what can I say, this movie really got to...\n Messiah was compulsive viewing from start to f...\n After just watching FIVE ACROSS THE EYES, I go...\n First of all, it is interesting to note that o...\n I vaugely recall seeing this when I was 3 year...\n METAMORPHOSIS I am working my way through the ...\n Rarely have I seen a work of literature transl...\n If you're into alternate realities, contemplat...\n Yes, absolutely dreadful, And this coming from...\n Personally, I can only but agree with Stephen-...\n In Northeastern of Brazil, the father of the t...\n I saw this at my in-laws' house one night when...\n This film is little more than an ersatz Verhoe...\n While it contains facts that are not widely re...\n Good Movie, acting was terrific especially fro...\n Two hard-luck but crafty ladies decide to act ...\n Recently I saw this movie again (after 25 year...\n Thunderball and Never are two of the biggest b...\n I only comment on really very good films and o...\n there should be a sub-genre in the Western cal...\n Lars von Trier's Europa is a worthy echo of Th...\n Written by a woman, and directed by another. W...\n This movie is NOT funny. It just takes the D&D...\n Seldom is seen a film sequel that surpasses or...\n I guess it wasn't entirely the filmmaker's fau...\n I realize the line on my summary is not too po...\n I kid you not. Yes, \"Who's That Girl\" has the ...\n Loved Part One, The Impossible Planet, but who...\n Suffice it to say that this substandard B has ...\n My teacher taped this and showed it to us in C...\n The main achievement of this film is that thou...\n Another Priyadarshan/Vohra flick another movie...\n I can't comment on the accuracy of this produc...\n Having worked in downtown Manhattan, and often...\n Ed Wood is eclipsed and becomes Orson Welles. ...\n I am terribly sorry, I know that Faßbinder sti...\n I am sorry folks, but I have to say I really c...\n The fourth in the \"Dirty Harry\" series, this f...\n This is my opinion of this movie, expressed in...\n This movie is really good. The plot, which wor...\n Despite being a 2001 movie, the direction is t...\n Although this movie is inaccurate overall, the...\n This film is a tour de force from Julie Taymor...\n This movie was disturbing, not because of the ...\n This must rate with the worst films I have eve...\n \"Catchfire\" or \"Backtrack\" as it is sometimes ...\n Yes, some people have said that this movie was...\n I waited and waited for this film to come out,...\n It stars war correspondent William Holden sepa...\n WESTERN UNION tells in melodramatic fashion th...\n Those reviewers who have complained that this ...\n After having problems in Chicago, the Solomon ...\n ...but this just isn't working and I am surpri...\n Hmmmm, want a little romance with your mystery...\n Last Christmas, I was lucky enough to receive ...\n A light, uplifting and engaging movie. Watchin...\n I had never heard of this film when a good fri...\n Heavily re-edited and often confusing, the ori...\n A Great show.<br /><br />First, to the people ...\n After watching this movie I was honestly disap...\n A Delta Force Army unit, assigned to find a ba...\n This is a wonderfully gritty drama, detailing ...\n One of the best films I have seen in the past ...\n I enjoyed Ramin Bahrani's Man Push Cart, and t...\n This was Laurel and Hardy's last silent film f...\n I'm gettin' sick of movies that sound entertai...\n As an avid Gone With the Wind fan, I was disap...\n Yet ANOTHER movie about a group of less-than-i...\n This movie is essentially shot on a hand held ...\n I must admit that this is the type of film tha...\n This is arguably the best film director Haim B...\n Well, finally got to see the remake last night...\n A group of forest rangers and scientists go in...\n Sometimes, but very rarely, a movie tells a st...\n This was a great movie that had a lot of under...\n This film says everything there is to say abou...\n The entire series, not just The Blue Planet, i...\n SPOILERS <br /><br />As you may know, I have b...\n First of all, I just have to say that I'm a hu...\n The surprise nominee of this year's Best Anima...\n I thought the film could be a bit more complex...\n This week, I just thought it would be fun to c...\n Some changes for the better (the special effec...\n I think I win the \"bargain\" contest for this m...\n Yeah sure it's cheesy, it's not Zombie, but it...\n Even if you do not typically enjoy documentari...\n I really did like this show, once upon a time....\n Possibly the finest moment of TV, at least in ...\n As a bit of a Michael Dudikoff fan I sat down ...\n The filming is pleasant and the environment is...\n This film has its detractors, and Courtney's f...\n Usually I have a lot of luck with these small ...\n I recently had to watch this for a project in ...\n Well first off I'd like to add that I myself i...\n This movie is over hyped!! I am sad to say tha...\n Along with 2 days in the Valley, I think this ...\n I saw this film at the Sundance Film Festival ...\n The Italian concept of \"sprezzatura\" was the g...\n Bled is a very apt title for this As you watch...\n I first saw this when it came out in the theat...\n The trouble with the book, \"Memoirs of a Geish...\n i see there are great reviews of this film alr...\n \"Traffik 1989\" is an Emmy award winning six pa...\n Those wishing to see film noir remakes, should...\n The movie starts off in a classroom setting wh...\n Bergman and comedy don't quite go together. So...\n One can always tell if I'm enjoying a movie by...\n Two horse traders arrive in a town and meet up...\n \"9/11,\" hosted by Robert DeNiro, presents foot...\n An archaeologist (Casper Van Dien) stumbles ac...\n Frankly I'm amazed to see that this movie is g...\n **** MILD SPOILERS _ BUT YOU PROBABLY KNOW THE...\n Having not read the novel, I can't tell how fa...\n Though not a fan of Sam Rockwell, I was surpri...\n What a outstanding movie is this i have not wo...\n This is one of the most awful movies I've had ...\n My local PBS station WHYY Philadelphia recentl...\n There were some decent moments in this film, a...\n First of all let me say that I had to think a ...\n REnted this one accidentally, it was behind th...\n ...apparently Bernard Cribbins ad libbed nearl...\n Having seen just about every movie on record t...\n This movie was so bad it looked like a home mo...\n A warning to potential viewers of this experim...\n a bit slow and boring, the tale of an old man ...\n Although this movie has a slow, dream-like, al...\n I don't recall walking out of a movie theater ...\n I am so disappointed. After waiting for 3 year...\n It's always nice to see Angela Bassett getting...\n Far from providing the caffeine kick you'd exp...\n Just okay film about a woman who is a twin hav...\n Set in 1945, Skenbart follows a failed Swedish...\n i was a projectionist while in the U.S.A.F. an...\n The master of movie spectacle Cecil B. De Mill...\n The Caprica episode (S01E01) is well done as a...\n For my humanities quarter project for school, ...\n After watching \"A Texas Tale of Treason\" you f...\n Edward Dmytryk's \"Crossfire\" is a rare film co...\n Coming from the same director who'd done \"Cand...\n Diana Muldaur appears on Star Trek for the sec...\n This is a great movie, I did the play a while ...\n I love this movie. My friend Marcus and I were...\n This short movie intends to focus on one issue...\n I purchased this video on VCR tape in a good-w...\n This 30 minute documentary Buñuel made in the ...\n This film is remarkable in how unremarkable it...\n I absolutely love Promised Land. The first epi...\n \"Two Hands\" is an entertaining, funny story ab...\n Mix exotic tropical locations, babes in skimpy...\n I was very interested to see this movie when i...\n I read a viciously hidden remarks on a previou...\n I am a big movie fan. I like movies of all typ...\n I saw MESSIAH 2 a few months ago and didn`t ge...\n A propaganda film for the Palestinian \"cause\"....\n In Moscow, the priest Owen (Vincent Gallo) hir...\n If it was possible to give negative stars I wo...\n \"One Dark Night\" is a staple in the 1980's low...\n of Adam's apple and With Your Permission. I di...\n After seeing the credits with only one name th...\n I couldn't believe this terrible movie was act...\n As gently as I can, I sincerely believe this m...\n I wasn't expecting to be so impacted by this f...\n I thought this movie was awesome and the two g...\n Though a bit more polished technically than th...\n http://video.google.com/videoplay?docid=211772...\n The scene where Sally Field and Whoopi Goldber...\n I watch this movie every time it plays on TV. ...\n This flick, which is a.k.a. \"Life In the Fast ...\n My title above says it all. Let me make it cle...\n I had seen this movie just days before Hallowe...\n if you are going to see this movie, by all mea...\n Malefique pretty much has the viewer from star...\n I have been familiar with the fantastic book o...\n A very attractive and capable cast is lost in ...\n Bug Juice changed my life. I Know it sounds st...\n This movie is a Gem because it moves with soft...\n This final entry in George Lucas's STAR WARS m...\n Okay now this movie is a piece of work. It's f...\n David and Bathsheba is a lavish Hollywood Bibl...\n Well, I thoroughly enjoyed this movie. It was ...\n I don't know why this has gotten any decent re...\n This has to be one of the most sincere and tou...\n This is something new.<br /><br />There's a co...\n This is, in simple terms, one of the worst fil...\n I don't really know why but I watched this wit...\n So first things first..<br /><br />Angels and ...\n Boring and appallingly acted(Summer Pheonix). ...\n This is one of Crichton's best books. The char...\n Encompassing virtual reality, the potential of...\n Miyazaki has been doing his mojo since the 70s...\n While I suppose this film could get the rap as...\n This is definitely one of the ultimate cult cl...\n This film is the freshman effort of Stephanie ...\n The threesome of Bill Boyd, Robert Armstrong, ...\n This movie is without a doubt the worst horror...\n I had never heard of this Adam Sandler movie u...\n One night, barkeeper Randy (Matt Dillon) rescu...\n Good old Jess Franco! The always-reliable choi...\n _The Wild Life_ has an obvious resemblance to ...\n A nurse travels to a rural psychiatric clinic ...\n This is one of my all time favorite movies, it...\n This had to be one of the worst movies I've ev...\n Let's start this review out on a positive note...\n As a big fan of gorilla movies in general, I a...\n This intelligent, moving and beautiful film is...\n It's a good thing The Score came along for Mar...\n This film is bundled along with \"Gli fumavano ...\n Death Wish 3 is exactly what a bad movie shoul...\n I loved this movie. I knew it would be chocked...\n I was a child when I saw this serial, a bit af...\n When I saw this film on FearNet, I thought it ...\n James Stewart stars in a classic western tale ...\n In this era when almost everything makes it on...\n This is a movie that will brighten up your day...\n By now you should already know about this film...\n This film is scary because you can find yourse...\n The movie is okay, it has it's moments, the mu...\n I remember when I first saw this short, I was ...\n Crude, some times crass - to me that's the sum...\n This video has heartfelt memories. It has a gr...\n I will never forget the utterly absorbing effe...\n I've always thought that Cinderella II was the...\n Being that I am a true product of the hip-hop ...\n Yet another \"gay\" film ruined by asinine polit...\n This first part of the BRD Trilogy has more pa...\n I attempted to watch this film without being a...\n Susie Q. is one of those rare, and sweet movie...\n POSSIBLE MINOR SPOILER<br /><br />It's not a t...\n \"Show People\" is an absolutely delightful sile...\n The C class cast and poorly transitioned scene...\n I knew it wasn't gunna work out between me and...\n Roomies is the story of a guy who loses everyt...\n This is one of those movies that are very unde...\n Personally I would advise people to stay clear...\n For the people who have compared this TRASH to...\n Billed as a romantic comedy set against the ea...\n I'm so sorry, but I have to tell this film was...\n Rather annoying that reviewers keep comparing ...\n \"Black Water\" is a movie that in a way surpris...\n The National Gallery of Art showed the long-th...\n Recent years have seen a number of biopics of ...\n Riding Giants is a brilliant documentary that ...\n The people who bash this movie were looking fo...\n ELEPHANT WALK was a thoroughly dull film and I...\n You know I only watched 15 minutes of this fil...\n I kinda liked the film despite it's frenzied p...\n I've only seen about a half dozen films starri...\n Less Than Zero could have been the 80s movie t...\n A hilarious Action comedy in which Damian Szif...\n This is my favourite Columbo. Martin Landau (e...\n Sometimes laughter in the middle of a horror f...\n There is a complete copy now available at the ...\n Five guys who were in the cub scouts together ...\n One of the best lesser known occult oriented h...\n This movie needs to come out on DVD cause that...\n I settled back to watch \"Read My Lips,\" a plat...\n I really liked this movie. I've read a few of ...\n Excellent comedy starred by Dudley Moore suppo...\n Dracula 3000 is the epitome of painfully chees...\n \"Pandemonium\" is a horror movie spoof that com...\n This is Classic Disney at its live action cart...\n This is an astonishing film: a romantic thrill...\n The Honey, I Shrunk the Kids franchise was a h...\n I enjoyed a lot watching this movie. It has a ...\n Unfortunately, many great films on IMDb such a...\n Holly addresses the issue of child sexploitati...\n Try to look for another movie that is such a t...\n If you are viewing this show for the first tim...\n I first saw this movie around 1968 and if I do...\n Hurrah! A space film that doesn't take itself ...\n Put a DVD of this flick in a time capsule, and...\n Weak scripts at times? Yep! Cheesy special eff...\n One of the worst Arnold movies I've seen. Spec...\n This is the worst film I have ever seen, bar n...\n Once you pick your jaw up from off the floor f...\n This movie was highly entertaining. The soundt...\n Without being one of my favorites, this is goo...\n I saw this ages ago when I was younger and cou...\n 1) If you want to make a movie that deals with...\n *Could contain spoilers, read only after seein...\n Given that this movie was put together in less...\n A great addition to anyone's collection.<br />...\n Every time I by pass this show on TV, I absolu...\n I'm not sure how I missed this one when it fir...\n I'm guessing the writers have never read a boo...\n One of the movies i just DIDN'T want to see. I...\n this western/musical/comedy is not one of the ...\n Renny Harlin's first American film was one of ...\n I first saw this movie back in the early '90's...\n Richard Pryor's early 80s running down the str...\n Ah yez, the Sci Fi Channel produces Yeti anoth...\n In a way, Corridors of Time is a success story...\n Does exactly what you expect, and then some. T...\n Time does extraordinary things. It's the ultim...\n Jonathan Demme is such a character-oriented di...\n Pierce Brosnan the newest but no longer James ...\n A terrible storyline (Amis at his worst), poin...\n I remember seeing this movie for the first tim...\n Part II or formerly known as GUERILLA, is also...\n This film is really terrible. terrible as in i...\n Farley and Spade's best work ever. It's one of...\n Marco Poloni (Costas Mandylor) was born into a...\n When i found out there was a Christmas Vacatio...\n There were so many reasons why this movie coul...\n Peter O'Toole is a treat to watch in roles whe...\n Chris Ricci sleepwalks her way through most of...\n I think Micheal Ironsides acting career must b...\n \"The Thomas Crown Affair\" is a terrible remake...\n Racing enthusiast Fabian (as Tommy Callahan) s...\n One of THE comedies of the 1970's. Also has th...\n Michael Williams, who works for BBC, finds a s...\n I have seen this movie last week during the Be...\n A film that can make you shed tears of sadness...\n This has got to be one of the weakest plots in...\n Portrays the day to day stark reality of survi...\n We've all been there, sitting with some friend...\n Stephen King was raised on flicks like this. -...\n Great softcore sex, revealing and sexy, and pl...\n First off, I'm a huge fan of 80s movies, and o...\n This is an EXCELLENT example of early Bette Da...\n The title tells it all -- Ed Gein, the butcher...\n I watched the first 10 minutes and it bored me...\n i bought this rental return for $1.99 at holly...\n Anyone who could find redeeming value in this ...\n Having been a Godzilla fan for many years, Gam...\n In 2054 Paris, Avalon, a computer generated sy...\n This was one of the most boring \"horror\" movie...\n The only reason I even watched this was becaus...\n Just saw this film and I must say that althoug...\n A famous show master enters the elevator with ...\n I saw this film a while back and it's still at...\n I missed the full four hour version when it wa...\n Four lovely young nurses in their last year of...\n 1993 was the year. This was long before Philli...\n Deanna Durbin, then 14 and just under contract...\n On their way to a country house to hear a new ...\n This is just typical Bruce Willis, action movi...\n I do love B- horror films. I however, am gener...\n I will repeat - what a stupid scenario.<br /><...\n Certainly not a great show, but better than mo...\n i still can't belive that starevich made this ...\n Ohhh man! Now this is what I'm talking about! ...\n With an opening segment that imitates the musi...\n This film has all the size and grandeur of man...\n To those of you who've made comments on this f...\n ...there was \"Broadcast News,\" and what a good...\n The movie is not as funny as the director's pr...\n Maaan, where do i start with this god awful mo...\n I really didn't like this film~!!!! it was bor...\n I think this is almost all I need to say. I fe...\n It would be great if a discussion on this medi...\n This film is so bad and gets worse in every im...\n An MTV-style film crew consisting of American ...\n I didn't give this movie a perfect score in or...\n i love watching the Jericho mile. i mean watch...\n Critics claim that this film is one of the wor...\n My mistake for thinking this was a serious war...\n This was a truly insipid film. The performance...\n This was no Trainspotting or Guy Ritchie film....\n Between 1937 and 1939, Twentieth Century-Fox m...\n Saw a trailer for this on another video, and d...\n Wow-this one sucks. I'm gonna sum it up as qui...\n The story and the show were good, but it was r...\n The original with Barbara Stanwyk is saved onl...\n I usually don't comment anything (i read the o...\n Like I said at the top, four stars just aren't...\n What a waste of energy and money. What a waste...\n 1st watched 2/9/2008, 4 out of 10(Dir-J.S. Car...\n Running Man isn't a great movie, in fact it's ...\n I saw \"Rachel's Attic,\" thinking that I would ...\n When I watched this film the first time, it wa...\n Young Erendira and her tyrranical Grandmother ...\n These days, you rarely come by a kid's show th...\n The movie starts with a nice song Looks like a...\n \"Crush\" examines female friendship, for the mo...\n Anthony Minghela's (writer/director) Cold Moun...\n It is difficult to rate a writer/director's fi...\n Pity the poor reviewer who disliked / didn't u...\n Jeff Garlin's film is filled with heart and la...\n OK, OK, don't get bent out of round. I was kid...\n I've never found Charley Chase very funny, eve...\n The \"House of Dracula\" really has nothing new ...\n This is a terrible film. Angie Dickenson is a ...\n Not as well known as the English, American, Ge...\n A cannibalistic backwoods killer is on the pro...\n If you are home on a weekend, very bored and l...\n More of a mystery movie with some gratuitous h...\n I would like to start by saying I can only hop...\n Somewhere on IMDb there is a discussion about ...\n I was totally impressed by Shelley Adrienne's ...\n Low budget, mostly no name actors. . . this is...\n This movie could had been an interesting chara...\n This movie was way too slow and predictable.I ...\n Since THE MAGUS is a confusing puzzle that rea...\n Ernest Borgnine was so wasted in this movie.Th...\n Yes, let's get this out of the way before we b...\n (spoilers)The one truly memorable part of this...\n WARNING: POSSIBLE SPOILERS (Not that you shoul...\n I tried to watch this movie three separate tim...\n The problem with \"The Killer Elite\" is that ju...\n What a stunning episode for this fine series. ...\n Mixing small town sheriffs, high-school studen...\n JUST CAUSE showcases Sean Connery as a Harvard...\n I watched this film in shire joy.<br /><br />T...\n Though the pieces are uneven this collection o...\n This is one of the best sequels around and a v...\n Todd Rohal is a mad genius. \"Knuckleface Jones...\n An excellent film depicting the cross currents...\n In The Book of Life, Martin Donovan plays Jesu...\n For all its visual delights, how much better R...\n This is the latest Ghibli movie and it is also...\n Unbelievably disappointed. The pace was slow. ...\n Spike lee has to be one of the most over rated...\n Mr. Mike was probably the most misanthropic co...\n Anyone who does not find this movie funny, doe...\n \"Subspecies,\" like many other horror films, ge...\n I speak badly of G.I.J.:T.M. mostly because I ...\n This movie was poorly written, poorly acted an...\n I came into this movie really wanting to line ...\n Well, I can once and for all put an end to the...\n hey community! my question is about the song, ...\n I'd have to agree with the previous reviewer: ...\n One of the greatest film I have seen this year...\n This, despite not being the original - it bega...\n I haven't laughed so much in a theater in year...\n A warm, sweet and remarkably charming film abo...\n I saw this recent Woody Allen film because I'm...\n In the trivia section for Pet Sematary, it men...\n **SPOILERS** Beautifully photographed slice of...\n Some films are just plain silly beyond explana...\n Ever wanted to eat worms? Here's a 'documentar...\n I've waited 9 years to watch this film, simply...\n This is not my favorite WIP (\"Women in Prison\"...\n Not only is this a very interesting exploratio...\n As an earlier reviewer said, Travolta stole ev...\n I really liked this movie I saw the original c...\n I sat down to watch \"Midnight Cowboy\" thinking...\n AntiTrust could have been a great vehicle for ...\n Reading some of the other comments, I must agr...\n Contrary to my principles, let me first come u...\n To me this was Colin Farrells best movie evr! ...\n You ever sit through a movie and after it's al...\n While I watched this movie, I tried to figure ...\n Saw this movie when it came out in 1959, left ...\n I was supposed to review this for a website, a...\n Greetings again from the darkness. What a reli...\n This woman is a terrible comedian. She can't c...\n The Frogs Who Wanted a King or Frogland is Lad...\n Batman Returns is to be considered quality whe...\n An old high school teacher of mine used to bra...\n I first saw this film when released in 1980. F...\n My house mate and I foolishly purchased the vi...\n Its obvious ESPN drools whenever Knight is in ...\n For all of you that don't speak swedish: The s...\n I am seldom motivated to write a review unless...\n I very nearly did not see 'Hi-De-Hi!'. I think...\n Why a good actress like Elizabeth Berkley star...\n I saw this series on PBS in 1980 in college an...\n This movie starts really good.<br /><br />Afte...\n with two old friends.<br /><br />I've always e...\n ........and an extremely bad one at that!!! Ho...\n Something surprised me about this movie - it w...\n I first saw this on Demand. Or on TV. I'm not ...\n It must be said that the director of The Cell,...\n Turkish culture is complete with lots of diffe...\n I saw this movie over 20 years ago and had rat...\n The first time I saw a commercial for this sho...\n OK, now at first i thought this was going to b...\n This is a very funny movie. There is a self de...\n The movie is pretty funny and involving for ab...\n If You can watch a film without worrying about...\n <br /><br />The first thing I have to say is t...\n Purportedly this is the final film of the Left...\n Synopsis: the sequel to the acclaimed Silence ...\n Cheaply-made, poorly acted, and unimaginativel...\n Although little more than a pleasant 11-minute...\n This film may seem dated today, but remember t...\n If you have seen the Telugu version of Gilli \"...\n I first saw this movie at a premiere-party in ...\n Michael Sheen shines like the afternoon sun in...\n The minutiae of what's involved in carrying ou...\n As a fan of author Gipharts lightheaded and hu...\n The main reason people still care about \"Carlt...\n Vincente Minnelli directed some of the most ce...\n The funky, yet strictly second-tier British gl...\n This isn't a movie. It is a collection of unre...\n This is quite possibly the worst film I have e...\n This movie is one of the poorest adaptations o...\n Great acting, great production values, good di...\n This is probably one of the worst movies I hav...\n I liked the quiet noir of the first part, the ...\n Tony Arzenta, a Sicilian hit-man or profession...\n Audiard made here a very interesting movie. It...\n Someone actually gave this movie 2 stars. Ther...\n The highlight of this movie for me was without...\n When dirty dancing was on TV in the middle of ...\n I really thoroughly enjoyed this movie. For on...\n River's Edge is an excellent film and it's a s...\n This film plays really well with an audience. ...\n First off, this movie leaves you in a limbo mo...\n I love this movie and all aspects of it, well ...\n quite good, don't expect anything high culture...\n The movie starts out with its most intelligent...\n Yeah. Pretty sure I saw this movie years ago w...\n Peter O'Toole, one of our finest actors, is ma...\n A few months ago, I was involved in a debate w...\n This movie \"Joshua\" is extremely disturbing, a...\n This installment of Masters of Horror was terr...\n I was shocked at how bad it was and unable to ...\n I get the feeling that Lisa Krueger is easy to...\n This movie is excellent in how it portrays the...\n I think that the movie was kind of weird. In t...\n I have only praise for this film. From start t...\n This is probably one of the worst movies I hav...\n Why me? Why should I be subjected to such slau...\n Nice movie. At the begining, i thought it's a ...\n Ever sense i was a kid i have loved this movie...\n What the hell of a D-Movie was that? Bad actin...\n Therefore it is important to talk about the DV...\n Based on the true story of the FBIs hunt for t...\n Truly flatulent script, and I was very disappo...\n OK, the box looks promising. Whoopi Goldberg s...\n I'm not a big fan of rom/coms at the best of t...\n This movie is a should-be classic. It's not pe...\n Anatomie (Anatomy) is an entertaining and enga...\n \"The Color Purple\", is truly amazing. There is...\n honestly, if anyone has a brain, there's not 1...\n Overall, the movie \"Heart of Darkness\" was pit...\n Generically speaking, Fay Grim is a highly ent...\n I found this movie to be charming. I thought t...\n Bela Lugosi as creepy insane scientist who use...\n Excellent P.O.W. adventure, adapted by Eric Wi...\n This is a very amazing movie! The characters s...\n I'm surprised over the number of folks that ha...\n An absolutely atrocious adaptation of the wond...\n I just finished watching this movie and largel...\n This movie was so bad and so cheap and so corn...\n Titanic is a classic. I was really surprised t...\n I saw this movie in its brief run in \"art hous...\n I should have never watched this movie. The st...\n This is one of the bleakest, the most harrowin...\n *spoiler* *spoilers* *spoilers* I found the fi...\n CCCC is the first good film in Bollywood of 20...\n The US appear to run the UK police who all run...\n Perhaps, we are too much attached to great spe...\n There comes a time in every big name actor's c...\n This movie makes no sense at all, there are pl...\n Gundam Wing is an amazing show from start to f...\n This is a wonderful new crime series, bringing...\n i found this movie to be a complete waste of 9...\n Comedies often have the unfortunate reputation...\n This film is bad, yes, but had the producers u...\n I loved The Real Mc Coys (1957-1963) It is too...\n Morris and Reva Applebaum had been the toast o...\n Oh my god, what a horrible film. The film has ...\n While there aren't any talking animals, big la...\n \"Sharky's Machine\" is clearly a Burt Reynolds ...\n This movie was bad and the movies about how so...\n I could never imagine I would start loving mov...\n how many minutes does it take to paint a poem?...\n If you would like to see a film of different k...\n Mild Spoilers<br /><br />....and that's 'top t...\n Blue monkey is actually mentioned in the film ...\n I have to admit, before i watched this film i ...\n I never intended to see Venom, but I caught it...\n VERY dull, obvious, tedious Exorcist rip-off f...\n Wow. I thought, Eskimo Limon was the most awfu...\n This feels like a feature-lenght treatment of ...\n If I had not read Pat Barker's 'Union Street' ...\n This is Lucio Fulci at his best. If only all t...\n \"Mechenosets\" is one of the most beautiful rom...\n \"Hollywood North\" is an euphemism from the mov...\n This is possibly one of the worst movies I hav...\n All the characters in this cartoon were hilari...\n Frankly I'm rather incensed that on the basis ...\n I never saw Doctor Who before (at least not in...\n The Invisible Ray is an excellent display of b...\n After having watched Darwin's Nightmare, one m...\n George Zucco was like Boris Karloff in the fac...\n A very engaging, intelligent, and well-made fi...\n demonicus rocked, you guys need to understand ...\n What would happened when a depressed cop works...\n I only rented this movie because of promises o...\n Never even knew this movie existed until I fou...\n Rented 3 bad movies to watch with my friends i...\n dark angel rocks! the best show i have seen in...\n TV movie about an ancient Egyptian curse broug...\n This movie follows in the tracks of The Riddle...\n Glenn Ford is hired by a crooked bank owner an...\n First of all I'd like to start by saying it's ...\n Something strange is happening in remote areas...\n the film looks like as if the director was for...\n The first 30min of the flick was choppy and ha...\n I saw this when I was 17 and haven't seen it s...\n NYC model Alison Parker (Cristina Raines) rent...\n DeNiro is a master...one of my favourites. And...\n I am a fan of the previous Best of the Best fi...\n I caught this filmshow about the most unlikely...\n Sometimes it is funny to watch films implode f...\n This movie is horrendous. Decent fight scenes ...\n God, that sucked. You can't end a horror movie...\n Stephen King TV movies can go 5 or 6 parts and...\n I had read online reviews praising this obscur...\n This movie could have been so much better with...\n Alfred Hitchcock shows originality in the rema...\n Though not seen in too many films prior, you h...\n A THIEF IN THE NIGHT is an excellent fictional...\n Olivia D'Abo in a wet T-shirt is the only thin...\n The Merchant of Four Seasons isn't what I woul...\n Cheech & Chong's Next Movie (1980) was the sec...\n There's not a drop of sunshine in \"The Sunshin...\n I am not sure who is having more fun, the peop...\n This is one of those landmark films which need...\n The 60s (1999) D: Mark Piznarski. Josh Hamilto...\n Cheesy 80's horror co-starring genre favs Ken ...\n After reading previews for this movie I though...\n OK, it's a piece of historical film making tha...\n There be very little doubt that HG Wells is th...\n Old People Show???? I'm 15 and have been watch...\n Has some really good music and performances; K...\n Despite the lack of logic present in the story...\n If you were brought up on a diet of gameshows ...\n I have just finished watching this film and I ...\n I decided I need to lengthen up my review for ...\n If you wondered whether Disney could broadcast...\n An insane assault on viewers senses. This is a...\n I watched this film recently for the first tim...\n When Jean seduces the young gardener for the s...\n Inappropriate. The PG rating that this movie g...\n This is one of the best films I've seen in the...\n bottom at its absolute highest perfection. who...\n Yes! this movie was just bad in every way in t...\n I don't think anyone besides Terrence Malick a...\n I was actually satisfied when i played this ga...\n I first watched this film when I was a kid and...\n The person who wrote the review \"enough with t...\n I must say I thought the show Greek would be r...\n This B&W film reached the spartan movie house ...\n It came before \"the ten commandments\" \"land of...\n The Turner Classic Movie Channel has spent the...\n There are so many logical errors in this show ...\n A western through and through. As the title ch...\n Most of this political thriller presented as a...\n Ru Paul plays a secret agent called Starrbooty...\n Interesting characters, lots of tension. As cl...\n This should have been a short film, nothing mo...\n My spoiler is in my pants because thinking abo...\n I guess when people say this is beautifully fi...\n The recent boom of dating show on U. S. televi...\n Aim For The Top! Gunbuster is one of those ani...\n First off, I'd like to say that the user comme...\n I think a lot of people just wrote this off as...\n Fulci is one of my all time favorite Italian s...\n I say sadly because if you see this movie now,...\n This film is hilarious, original, & beautifull...\n I watched this on the movies with my girlfrien...\n Passion In The Desert exemplifies spatial gran...\n I won't lie, I rented this film because it was...\n Without a doubt, Private Lessons II is the gre...\n There's about 25 years worth of inspiration pa...\n The other day I showed my boyfriend a great mo...\n This is speculation. This movie could of inspi...\n If anyone thinks this is a great sports movie ...\n I found this movie to be a big disappointment,...\n had some lovely poetic bits but is really just...\n \"Panic\" is a captivating, blurred-genre film a...\n I've seen Jimmy Stewart in all the regular rol...\n What's in a name? If the name is Jerry Bruckhe...\n From the director of Oldboy comes this slick v...\n John Cassavetes' 1977 film Opening Night is, w...\n the fact that the movie is predictable is not ...\n For a film about a killer this is surprisingly...\n I would just like to say that The Cure was a f...\n Chapter One: Once Upon a Time At A Table (194...\n I won't bore you with any synopsis, chances ar...\n The funniest scene of this movie is probably w...\n I can find very little thats good to say about...\n I don't usually watch Hollywood dribble, but I...\n This film is one of the historically most accu...\n Thomas Edison had no other reason to make this...\n Bela made 9 pics for Monogram, but it was only...\n I remember being so excited on Saturday nights...\n I thoroughly enjoyed this film when it was fir...\n This was a very nice soft-core movie for both ...\n Sleeper Cell is what 24 should have been. 24 i...\n \"The Great Dictator\" is, arguably, one of Char...\n Recently I was looking for the newly issued Wi...\n Wynorski films are always excreble. This is ju...\n OK, this has got 2 be one of the worst excuses...\n The most worthless film of the decade. The res...\n I was born in 1982. Most of my childhood memor...\n Avoid this one, unless you want to watch an ex...\n Now I'm a big animation fan -- love Svankmeyer...\n Now I do understand that this film was not mea...\n Lipstick is another glossy movie failure.I am ...\n This is a lovely, spirit-restoring movie. From...\n Could not understand why Jeremy Irons felt it ...\n This is a story of the Winchester Rifle Model ...\n What a bad, bad movie! I tried watching withou...\n The third and last film of this trilogy is fin...\n A meteorite falls in the country of a small to...\n What's the most violent movie of all time? Ram...\n I was given the solo \"Summertime\" in 5th grade...\n Why would any legitimate actor having read the...\n This movie gives you more of an idiea how Aust...\n The ship may have sunk but the movie didn't!!!...\n Or vice-versa.<br /><br />This is a French fil...\n I've enjoyed watching Lost from the beginning ...\n I loved the first Grudge, I watched it in an e...\n Caution: May contain spoilers...<br /><br />I'...\n (Spoilers) \"Cash Crop\" goes something like thi...\n SPOILERS. Strange people with generous tastes ...\n (Warning: Some spoilers ahead.)<br /><br />Wha...\n After having red the overwhelming reviews this...\n One of the worst things a film studio can do i...\n Zoey 101 is such a stupid show. I don't know i...\n I just saw this film at the 2001 Toronto inter...\n I watched this movie tonight and I do need to ...\n This has got to be the most appalling abuse of...\n What we have here is a classic case of TOO muc...\n \"Two Hands\" is a good addition to the Australi...\n Instead of writing a paragraph, I'll give four...\n I am a big Gone With The Wind nut but I was di...\n Acting, of course! Think about it, Closet Land...\n \"Murder Over New York\" is fun, but not as good...\n This U.S soap opera, 'Knots Landing' has all t...\n Some time ago, we read of the results of a pol...\n no, this is not supposed to be a high budget b...\n We open in a doctors room of some sort. A girl...\n This could well be the worst film I've ever se...\n There is only one thing essential to thorough ...\n It's a bad, very bad movie.<br /><br />Well, f...\n It's a long time ago I saw this movie and stil...\n I just took my 11 year old daughter and 8 year...\n This film makes a strong comment about the Ita...\n Odd but wonderfully original movie. Genuinely ...\n This is yet another bad movie that you should ...\n This is one powerful film. The first time I sa...\n I acquired this, one of my all-time favourite ...\n What an excellent movie, made even more so by ...\n The Japanese cyber-punk films have never reall...\n It may not be Oscar material, however this was...\n This movie stars Emily Watson, of Breaking the...\n What can I say...not much to this one at all. ...\n Yet another forgettable Warners foreign intrig...\n Chicago reporter Frank Quinlan decided to go t...\n ONE GOOD THING: This hidden treasure of a crim...\n I've seen this film because I had do (my job i...\n For me, North and South (Books I&II) is the ul...\n This is one of the most beautiful films I have...\n Though I can't claim to be a comic book fanati...\n I'm not sure where to start with this. In shor...\n I've always been fascinated by ninjistsu, who ...\n It was surprising that a silent film could be ...\n Very outdated film with awful, cliché-ridden a...\n Ah, the sex-and-gore movie. It's too bad they ...\n To be honest, I thought this movie would be a ...\n i'm ask... what a f*** are whit the real-TV ne...\n Now, let me see if I have this correct, a luna...\n the only word i can think of to describe this ...\n I was really geared up to watch when two of be...\n I recalled watching this program as a young bo...\n I haven't watched the movie yet, but can't wai...\n Bwana Devil is reputedly the first major studi...\n After a lively if predictable opening bank-hei...\n Wow, what exciting visual effects. I also love...\n This is one of my most favorite movies of all ...\n I was browsing through the movies on demand an...\n It is a story as old as man. The jealousy for ...\n Where do we start with an offering like this? ...\n To grasp where this 1976 version of A STAR IS ...\n how can a director that makes such great films...\n Brian Dennehy, Bill Paxton, Joe Pantalino and,...\n The thought of Sarah Silverman having her own ...\n Free Willzyx (Stupidest name/title ever) is th...\n This is full of major spoilers, so beware.<br ...\n I would list this film under the horror film g...\n Payback is the game being played in this drama...\n I remember seeing the very first trailer for U...\n Although I use this site quite frequently to s...\n The movie is nice Well pictured, but no origin...\n i was disappointed. the film was a bit predict...\n if you're a sucker for corny movies and are lo...\n Branagh and Fishburne deliver excellent perfor...\n This movie is very scary with scenes where the...\n This film was amazing. It is an inspiring piec...\n Stanley Kramer directs an action thriller and ...\n There are moments in this unique cartoon of pu...\n I thought this movie was going to be a disgrac...\n Man this thing bites! I am sorry I ever sat do...\n Ewww! A Disney sequel that is rubbish! Who wou...\n Going to need to take a deep breath for this o...\n This spectacular film is one of the most amazi...\n I gave Timecop a perfect 10, I gave this 1<br ...\n And I mean ultra light. This film features fou...\n I couldn't believe this was the same director ...\n Is this the \"worse\" Star Trek TOS episode? May...\n I watched this movie, or part of it, in hope t...\n I rented this on DVD and I kind of feel bad si...\n Henri Verneuil represented the commercial cine...\n THE JIST: See something else.<br /><br />This ...\n I really liked the idea of traveling between d...\n Ah, noir. My favourite genre. Otto Preminger's...\n One of the Message Boards threads at IMDb had ...\n This is another Alien imitation and not a very...\n I just don't get these reviews! I can't help t...\n *Warning: 1 tiny inconsequential spoiler* You'...\n Ok, first the good: Cher's performance and the...\n Imagine that in adapting a James Bond novel in...\n wow! this is a good movie! The acting wasn't g...\n I think James Cameron might be becoming my fav...\n After being a big fan of the ten minute T.V ep...\n Jenny Neumann (from the sexploitation flick MI...\n For those of you unfamiliar with Alisdair Sims...\n This movie had a very convoluted plot and very...\n The movie, which was directed by Alfred Hitchc...\n Paul Telfer, who plays Hercules in this TV fil...\n Imagine spending the summer without your famil...\n The trailer is so deceiving... I thought this ...\n ...from this awful movie! There are so many th...\n Oh boy, oh boy. This movie is something for th...\n Ostensibly this is a Z-grade DTV horror film.<...\n This is the kind of movie Hollywood needs to m...\n All internet buzz aside, this movie was god aw...\n Korine's established himself, by now, as a tal...\n People love the original story for its ending....\n Basically an endearingly chintzy and moronic $...\n Any child old enough to sit up in front of a s...\n Honestly, I have to admit that I go and see ce...\n So I turned on HBO which I just got thinking t...\n Ah the Outer Limits. I love that show. It was ...\n The quality you're likely to remember after vi...\n This marvelous short will hit home with everyo...\n Rich, alcoholic Robert Stack falls in love wit...\n In an era of such awful cartoons, I am rather ...\n Well, at least this was the last sequel that I...\n Oh my God... where to begin? \"Chupacabra Terro...\n This movie is extremely boring, it tells a sto...\n so halfway through the season, i got so caught...\n radio is possibly one of the best films i have...\n A poorly written script with no likeable chara...\n As the maker of \"This Darkness,\" I admit we ne...\n John Candy was very much a hit-or-miss comic a...\n The beautiful, charming, supremely versatile a...\n Sudden Impact is the 4th of the Dirty Harry fi...\n Hrm-I think that line was from the old movie p...\n I sat through this movie expecting a thought-p...\n On the 1998 summer blockbuster hit BASEketball...\n The Vindicator opens with the memorable scene ...\n This Is one of those classic American made for...\n New York I Love You is full of love and power....\n The fact that the movie is based on a true sto...\n In Truffaut book-length interview with Hitchco...\n Having grown up with GWTW, I shunned both the ...\n I would like to thank you for giving me a chan...\n After his career as a romantic leading man end...\n Thank God I didn't buy this movie myself! I bo...\n Sly's best out and out action film. It is a su...\n With a title \"borrowed\" from Werner Herzog and...\n The fully rounded character of the principal r...\n I recently stumbled across this film on TNT fi...\n Outstanding performance by Tantoo Cardinal. Sh...\n No likeable characters (the lead is a combinat...\n Especially if you love horrible movies. When I...\n Love trap is a \"must see\" independent film. Wh...\n Life in some future fascist or near fascist st...\n This is a film that in no way reflects the rea...\n Well, I'll be honest: It is not exactly a Shol...\n I am a fairly big fan of most of the films tha...\n I'm very disappointed. First of all, the Germa...\n Oh yeah, this one is definitely a strong conte...\n Paris, je t'aime (2006) is a film made up of 1...\n In my personal opinion - «The Patriot» is one ...\n I love how everyone treats this show like it w...\n I saw this in a sneak two days before the offi...\n George Sluizer's remake of his own - superior ...\n This is possibly the single worst film i have ...\n What can i say about a tale such as this? This...\n I really didn't have high expectations and I m...\n When you have a disembodied skull, an empty ma...\n The Lady From Shanghai is weird even by the st...\n There were but two reasons for me to see this ...\n To make a good movie you either need excellent...\n From reading all of the comments posted here o...\n As social satire, Idiocracy is just as good as...\n Fata Morgana is an absolute masterpiece. It's ...\n Pyare Mohan can be safely included in the blac...\n By no means is this movie as bad as 'Perfect S...\n They used footage of some real protest spliced...\n There is this private campground in Plymouth, ...\n What are the movies? I mean.. what are movies ...\n If you enjoyed films like Pulp Fiction, Reserv...\n i taped this as a teenager in the mid 80s base...\n I always thought the Batman Returns was a grea...\n One of the best movies I ever saw was an Irish...\n I was pleasantly pleased with the ending. I ju...\n I don't know what the rest of you guys watch S...\n This is one of nine shorts on the anime disk, ...\n I've never been to Paris, but after seeing \"Pa...\n This is one of my favorite movies. The perform...\n This is without doubt the most exciting and sa...\n This ludicrous and inept film is certainly the...\n Made the unfortunate mistake of seeing this fi...\n Now I've always been a fan of Full Moon's pupp...\n I love this film (dont know why it is called P...\n Personally, I have no problem with the acting,...\n How would you feel if you had only a few weeks...\n I'm a fan of the 1950's original and about 20 ...\n A great British Indy movie! Fantastic chemistr...\n Oh dear Gods, this is awful. Stay away, just s...\n 'Gross Misconduct' was one of a series of text...\n This film deals with two ex-football players w...\n When I refer to Malice as a film noir I am not...\n I feel like I have some uber-rare disease that...\n The Motion Picture Association of America has ...\n I just wanna say that amongst all the so-calle...\n This documentary is a reenactment of the last ...\n Well, this stripped my nerves raw, they got th...\n I'm feeling a little protective of this film b...\n Creepy facemasks and slasher movies have gone ...\n I saw most of the episodes of RMFTM as a teena...\n Wow, this movie is bad. Think \"Flashdance\" wit...\n I saw this in the summer of 1990. I'm still an...\n Rajkumar Santoshi tries his hands at comedy an...\n I went into this movie hoping for the best. I ...\n \"Envy\" is bad for a number of reasons. Yes, th...\n As other reviews have said, another of the cou...\n I AM NOT LYNNE BATES MY NAMES IS RITICHIE BUT ...\n Johnny Dangerously falls completely in the hit...\n This film is overblown, predictable, pretentio...\n Peter Sellers plays Dick Scratcher (ha,ha), a ...\n <br /><br />JURASSIC PARK III *___ Adventure <...\n Hello all! I went to this movie without any ex...\n The plot involves a new, hipper franchise barb...\n Oh man, I know what your thinking: \"With a tit...\n I'm going to go on the record as the second pe...\n This movie starts out with a certain amount of...\n Never I have seen a movie so terrible that i'v...\n Soul's Midnight stars Armande Assante (Simon) ...\n Audio:<br /><br />Seriously I've never seen a ...\n This film is to my mind the weakest film in th...\n A wonderful story that should be seen by all f...\n Roeg's take on Conrad's \"Heart of Darkness\" wa...\n As a person who sought out an existence as a '...\n An assassination thriller in the mould of Day ...\n Okay so I went into this movie not really expe...\n Ok. I'll admit it. I'm a huge fan of b-movies....\n Page 3 is most definitely a very enthralling a...\n Contains Spoilers<br /><br />Luchino Visconti'...\n This movie is about a female rape victim/comic...\n Before seeing this picture I was quite skeptic...\n Go, Igor, go, you are the proof that Slovenian...\n Well I just gave away 95 minutes and 47 second...\n Easily the greatest low budget horror film of ...\n This movie is very disappointing for one who h...\n Alan Curtis has a loud, violent sounding argum...\n -So the weak excuse for a story in the generic...\n This is based on Michael's life from 1983/4 ti...\n So you think a talking parrot is not your cup ...\n 78 years ago...the premiere of \"Anna Christie\"...\n It is quite simple. Friends is a comedy of ver...\n Well I'd have to say that I do own this film a...\n This movie is certainly one of the greatest fi...\n Basically, this was obviously designed to be p...\n Devil Hunter gained notoriety for the fact tha...\n <br /><br />In 1970, after a five year absence...\n Harmony Korine. I'm not sure what he was tryin...\n I picked this movie up because it sounded like...\n A wonderful film, filled with great understate...\n I just saw this movie for the second time. I f...\n Forget any angst-ridden documentary! This film...\n Darr is an brilliant movie..It is 1 of my favo...\n Falsely accused, skirt-chasing chums John Wayn...\n If you didn't know better, you would believe t...\n I caught this a few times on TV in the late 19...\n A bland title disguises this solidly-carpenter...\n T.Z. Post, college professor, receives a false...\n I have no read the novel on which \"The Kite Ru...\n Thursday June 15, 9:30pm The Egyptian<br /><br...\n I did not like Chandni Bar from the same direc...\n Simon Wests pg-13 thriller about a babysitter ...\n Snake Island is one of those films that, whils...\n The stage star Grace Hayes stars in this obscu...\n I bought the DVD version of this movie on the ...\n Caution-possible spoilers ahead.. Just watche...\n DARK REMAINS is a low budget American horror m...\n Straight to the point: \"The Groove Tube\" is on...\n This film is excellently paced, you never have...\n From rainy, dreary late winter England of earl...\n Friz Freleng's 'Speedy Gonzalez' was the secon...\n THE GIRL FROM MISSOURI arrives in New York Cit...\n Anemic comedy-drama, an unhappy, seemingly rus...\n Life Pod is one of those movies that you just ...\n This movie was very, very strange and very, ve...\n MPAA:Rated R for Violence,Language,Nudity and ...\n My overall feeling about this film is that it ...\n Most horror movies are in fact horrible movies...\n A true anomaly in the French cinema ,this desp...\n I am a big fan of this film and found the TV m...\n This movie awed me so much that I watch it at ...\n For a film that got little publicity, and few ...\n All those that identify this as a simple rip-o...\n 'Holes' was a GREAT movie. Disney made the rig...\n I am working my way through the Chilling Class...\n It is is very sad to see someone of the calibr...\n Sometimes you ignore that little voice in your...\n Carl Panzram lived an amazing life and scribbl...\n Lana Turner proved that she could really dance...\n The series does not start as it means to go on...\n I'll bet I watch this film 4 or 5 times a year...\n I watched 'Speak Easily' one night and thought...\n You have to understand, when Wargames was rele...\n Another go round with the monkey king going we...\n I can laugh at just about anything, but unfort...\n This is a very engrossing BBC-TV mini-series w...\n Wow! All I can say is that if Elizabeth Montgo...\n After a group of young friends experience car ...\n I had some time to kill before watching footba...\n wow is all i could say i really loved the movi...\n This is a Japanese film but there is quite a b...\n People need to give this show a chance. The pe...\n Bravestarr was released in 1987 by the now def...\n Maybe our standards for Vientam movies have in...\n I usually don't consider turning a movie off u...\n This film, recently voted as an audience favor...\n I know I'm in the minority, but...<br /><br />...\n A long time ago, in a galaxy far, far away.......\n I don't know why IMDb lists all the Ghoulies f...\n This movie is another horror anthology. It is ...\n Very sweet pilot. The show reeks of Tim Burton...\n Following a roughly 7 year rocky road on NBC, ...\n Its a spoof, its an intelligent comedy, it has...\n that kid a is such a babe; this movie was no T...\n The only reason I watched this film was becaus...\n This is a hard film to rate. While it truly de...\n I rented this on DVD yesterday and did not rea...\n One of the genres that flourished during the d...\n As the above suggests, I was ultimately unimpr...\n Awful. This thriller should have buried. What ...\n I can't believe that Steven Segal's career has...\n The banter and humorous rescue scene help to m...\n Be warned: Neither Zeta-Jones nor McGregor pla...\n I had fun watching this movie, mainly due to S...\n I'm really surprised this movie didn't get a h...\n Jacqueline Susann wrote several novels all inv...\n As much as I love the story of David Copperfie...\n In print this is one of the greatest short sto...\n This is another Universal fun filled fright fe...\n Psycho criminal pure by Carl Schenkel, who is ...\n First off just let me say that I live in South...\n I'm from Ireland and I thought this film had t...\n This movie is about a group of four friends wh...\n This film got terrible reviews but because it ...\n what can i say?, ms Erika Eleniak is my favori...\n This is my favorite Hal Hartley movie. All his...\n This is a very sad movie. Really. Nothing happ...\n <br /><br />The movie starts out as an ordinar...\n Okay, so writer/director Larry Bishop obviousl...\n If there is a hell, it contains a screening ro...\n Set during WWII, Bedknobs and Broomsticks is a...\n I love movies...and rarely do I see a movie th...\n I honestly don't understand how tripe like thi...\n The Net is a movie I never saw upon release, I...\n The opening sequence is supposed to show the L...\n Take a pinch of GOODFELLAS, mix it with THE GO...\n Nothing but the void, a pleasant one for those...\n This movie was so bad I don't know whether to ...\n This is one of my favorite Govinda movies of a...\n I am not a movie maker but I know it is hard t...\n The writer came up with a pretty decent idea f...\n Harrowing series about life in Oz--an experime...\n I saw this movie late at night on a free-to-ai...\n I was completely drawn into the story, but I w...\n the movie is simply horrible (2/10). Although ...\n The 3-D featured in \"The Man Who Wasn't There\"...\n Dr. Paul Flanner (Richard Gere), a successful ...\n 18 directors had the same task: tell stories o...\n Possible SPOILERS: Not Sure<br /><br />While w...\n <br /><br />The main question I pose concernin...\n The script is so so laughable... this in turn,...\n I got this movie with my BBC \"Jane Austen Coll...\n This is the prime example of low budget, winni...\n Dressed to Kill starts off with Kate Miller (A...\n This movie looked fun on the cover and I hones...\n It doesn't surprise me that the makers of this...\n This story of the troubles caused by an over-p...\n Mario Van Peebles tries to go the Jean-Claude ...\n I have to admit that Tsui Hark is one of a kin...\n \"At the Earth's Core\" was on television yester...\n My God, was this the \"Run, Lola, Run\" adaptati...\n This movie is an evolutionary piece - from Ter...\n THE FALCON AND THE SNOWMAN is a superb example...\n Jason Alexander is a wonderful actor, but it's...\n Protégé runs in a linear fashion; expect no fa...\n This is a excellent start to the film career o...\n Recap: Doctor Markov has developed a new theor...\n I saw two movies over the weekend, One was \"ka...\n Take this movie for what it is, not a remake, ...\n This was one of the lamest movies we watched i...\n I think Phillip Kaufman read the cliff's Notes...\n This is probably one of my favorites so far, a...\n This film is like an allegory of the gospel. I...\n Unlike http://www.imdb.com/title/tt0098238/ th...\n In Lizzie Borden's \"Love Crimes\" (1992), Sean ...\n This romantic comedy isn't too bad. There are ...\n If Andrei Tarkovsky had been a hack, he would ...\n This is a film about deep and unspoken human r...\n The word in the summary sums it up d'oh ;) Fiv...\n This small, quiet, harmonious movie grows into...\n ***SLIGHT SPOILERS*** This installment of the ...\n SPOILER ALERT.<br /><br />This movie will spoi...\n I was sadly disappointed by this film due to t...\n I'm a horror/gore movie freak and this flick w...\n If there was ever a call to make a bad film th...\n I am so glad when i watch in every time the mo...\n I had neither read any of the books nor seen t...\n Ostensibly, Hans ' isolation and despair are c...\n I first saw this movie on cable about 5 years ...\n As I said in my comment about the first part: ...\n If this movie was made two years earlier it co...\n I just saw this movie on Showtime in the wee h...\n It amazes me that anyone would find Pauly Shor...\n Absolutely corrosive! Director Arthur Hiller a...\n I saw this movie once a long time ago, and I h...\n This is indeed a funny show, done in a creepy ...\n This certainly isn't a comedy - I don't know w...\n \"Dressed to Kill\" is surely one of the best ho...\n seriously, if i wanted to make a movie that ma...\n I felt Rancid Aluminium was a complete waste o...\n Shot in my former home town by a couple of col...\n French production in which leading film direct...\n Slaughter High starts like any other day at Do...\n This is simply the funniest movie I've seen in...\n Ladies and gentlemen: the show begins with thi...\n I first heard of this one while searching the ...\n this movie really SUCKS, SUCKS REALLY REALLY H...\n This is a cartoon series where most of the act...\n (Spoilers)<br /><br />Oh sure it's based on Mo...\n The opening scene really got me into watching ...\n This film is supposed to be about the frustrat...\n Over the years, I've come to be a fan of direc...\n Star Wars: Episode 4 .<br /><br />the best Sta...\n Before I comment on this movie I just watched ...\n Watching \"Cold Mountain\" gave me the impressio...\n Do not expect a depiction of the \"truth\". Howe...\n Brilliant book with wonderful characterization...\n Rachel, Jo, Hannah, Tina, Bradley and John are...\n HORRID!!<br /><br />The special effects make t...\n I must say, every time I see this movie, I am ...\n Although there are a lot of familiar \"televisi...\n This show was a pleasant surprise after watchi...\n I watched this movie the night it premiered on...\n Graphics is far from the best part of the game...\n I have a high tolerance level for crap, so I w...\n SERIES THREE- BLACKADDER THE THIRD \" If you wa...\n To have to actually own up to making such a ho...\n The first film had little ambition so nothing ...\n THis was a hilarious movie and I would see it ...\n You could tell from the opening shot of the co...\n I have to admit that I am disappointed after s...\n Hollywood will stop at nothing to make money o...\n If The Lion King is a serious story about a yo...\n So me and my friend are carousing our local mo...\n The title overstates the content of this movie...\n This is what happens when you're living in Chi...\n I saw this movie about 5 years ago, and the me...\n I happened across this movie while channel-sur...\n A great performance by Clint Eastwood and part...\n I've given up trying to figure out what versio...\n The line is funnier in England, where, away fr...\n Like the characters in this show, I too was a ...\n From the acting to Cardone's direction, this n...\n The plot of this movie is set against the most...\n My friends and I walked out after 15 minutes, ...\n The movie shows many feelings and emotions tha...\n Valliant effort to use a mining catastrophe as...\n As always, controversial movies like this have...\n Dennis Hopper must've been really hungry to do...\n The story overall, though quite graphic, is ac...\n I think that FARSCAPE is the best scifi since ...\n Ingrid Bergman (Cleo Dulaine) has never been s...\n I just saw this movie. I liked the soundtrack....\n The first time I saw this, I didn't laugh too ...\n This comic book style film is funny, has nicel...\n After the failure of \"Hellraiser III: Hell On ...\n Oz, was the first original television show tha...\n The events of September 11 2001 do not need ex...\n Sherlock Holmes (Basil Rathbone) and Professor...\n Susan inadvertently stumbles onto a drug smugg...\n The first time I saw this film in the theatre ...\n Having seen and loved Greg Lombardo's most rec...\n Amazing, Astounding, Brilliant, Superb. Those ...\n After the failure of \"The Crusades\" at the box...\n A truly terrific, touching film. Female melodr...\n With this movie being the only Dirty Harry mov...\n The first of the Italian rip-offs of the Frenc...\n I was thirteen years old, when I saw this movi...\n Hadn't really heard too much about this movie ...\n This is without doubt my favourite Le Carre no...\n \"Footprints (on the Moon\") is almost certainly...\n Very possibly one of the funniest movies in th...\n Get ready for it: This is one of my favourite ...\n I remember really liking BATMAN RETURNS when i...\n This film is terrible. I was really looking fo...\n Mr. VanHook took a good idea and kicked like a...\n I waited ages before seeing this as all the re...\n I had only written one review on IMDb prior to...\n If you love the book, as I do, stop watching t...\n An excellent film with great performances from...\n Panic delivers the goods ten fold with Oscar c...\n OK i will admit, it started out very pleasing ...\n I simply never tire of watching FREEBIRD. My h...\n I was very surprised with this film. I was tou...\n Seriously, this film is not. Steve Guttenburg ...\n This had to be one of the most god awful wrest...\n Paris is the place to be to enjoy beautiful ar...\n This series doesn't present the British view o...\n In 1942 a film TALES OF MANHATTAN told a set o...\n OK, we were going along with the stereotypical...\n Two sailors are on leave--ladies man Joseph Br...\n Even as a big fan of the low to no budget horr...\n Joe Don Baker is one of a handful of actors wh...\n This is a VERY good movie. I give it a 10.<br ...\n Alien body-snatchers in the desert. Little blu...\n did anyone notice?when miss brook went skinny ...\n The absolute summum of the oeuvre of that craf...\n As big as a Texas prairie and equally as borin...\n What was the deal with the clothes? They were ...\n Hilarious, laugh out loud moments ... and yet ...\n Here's yet another film from the 80's that mos...\n This is a film that has to be taken in context...\n I saw this movie when I was very young. It is ...\n I love this movie very much i watched it over ...\n Received this DVD from the ACCENT range which ...\n My wife and I rented this movie because some p...\n The horror of this made for TV film was that i...\n Serials were short subjects originally shown i...\n The film picks up after last years remake with...\n If you can make it through this flick without ...\n Little Gus is a ten year old delinquent. He ru...\n Inspired by Hitchcock's STRANGERS ON A TRAIN c...\n Many accuse Rod Steiger of overacting, and any...\n This movie was pathetically awful. The sound w...\n First and foremost, speaking as no fan of the ...\n I've just seen it....for those who don't know ...\n Two years after leaving the small town of Grov...\n The sun was not shining, it was too wet to pla...\n George C. Scott gives his finest and funniest ...\n I'm allowed to write 1000 words about this fil...\n Perhaps I was just in a really good mood when ...\n Watching the first few moments, you realize it...\n \"Tales from the Crapper\" is gory, disgusting, ...\n <br /><br />to make this short and sweet: i ho...\n In 1454, in France, the sorcerer Alaric de Mar...\n In nineteen eighty two when it was announced t...\n As a devotee of Ms. Frank, I remember being so...\n National Lampoon was once a funny magazine. Wh...\n There's considerable amount of money behind th...\n Someone should tell Goldie Hawn that her caree...\n Boy what a dud this mess was.But it only lasts...\n 'In the Line of Fire' is one of those Hollywoo...\n I just bought the DVD and i must say, (after s...\n I was unfamiliar with this film, until I saw i...\n Dresden had great expectations because of its ...\n That's pretty much all I can say about this fl...\n I really should have learned more about this m...\n WONDERBIRD, certainly an unbelievably refined ...\n Zero Day is a film few people have gotten to s...\n Antarctica, winter 1982. The team on an Americ...\n Sometimes when I hear an A-list cast will be b...\n The title sequence shows the credits written o...\n This is a fantastic film. The acting is some o...\n I was kinda surprised by the PG rating on the ...\n \"Curacao\" is a foreign intrigue drama set on t...\n To me this just comes off as a soap opera. I g...\n This telecast of the classic musical \"Sweeney ...\n With a name like \"10 Commandments\" you would e...\n This movie sucks. It's horrible. If anyone lik...\n This film was made right in the area where I g...\n Brilliant actor as he is, Al Pacino completely...\n Great actors, good filming, a potentially inte...\n The selection of the bloated, boring, and raci...\n The original title always struck me as a rathe...\n Well, I was hoping I'd heard wrong about this ...\n Boring, badly written Italian exploitation fli...\n I suppose that to say this is an all-out terri...\n It's the best movie I've watched this year! Ex...\n I am the sort of person who never, ever watche...\n I've come to realise through watching this sor...\n This is one entertaining flick. I suggest you ...\n The mountainous woods, young happy campers, a ...\n Absolutely nothing happens in this sloooow, an...\n In her autobiography,Laureen Bacall reveals th...\n Calling this film a decent or enjoyable horror...\n The Gun is probably the worst film I've ever s...\n I can't really condemn the movie because it do...\n I understand this film to be a debut feature a...\n I am a big fan of the Spaghetti Western Genre,...\n I happened across \"Bait\" on cable one night ju...\n Uproarious no-brainer comedy in which comedian...\n My short comment for this flick is go pick it ...\n Marjorie (a splendid and riveting performance ...\n I personally watched this to see the footage o...\n Susan Sarandon is, for lack of a better word, ...\n I am very open to foreign films and like to th...\n I am sad that a period of history that is so f...\n An excellent film for those who simply need to...\n If you find yourself in need of an escape, som...\n When a group of businessmen start dying in the...\n Dirty Dancing - I think everyone has seen this...\n No, it's not the horror movie...This one is ac...\n This movie is the best one forever upon the wa...\n I think the \"Bone Snatcher\" should go after an...\n The large bell in a bar intermittently rings f...\n My taste in films continues to astound me and ...\n I think a several of America's baseball movies...\n Dark Wolf (Quick Review) Let's get right to it...\n I had tried to rent this on many occasions, bu...\n This film is a perfect example of how to take ...\n There's a major difference between releasing a...\n This was a truly epic production that had all ...\n A great film. The acting - from the doctor to ...\n Hard up, No proper jobs going down at the pit,...\n In The Book of Life, Martin Donovan plays Jesu...\n Saw this movie in an early preview, and I cann...\n Two warring shop workers in a leather-goods st...\n This is, by far, the best movie I've seen in a...\n Much like Final Fantasy, if you look at a stil...\n I didn't really care for this. Had they gotten...\n This is a pretty bad movie. The plot is sentim...\n This film is good,but not Schaffner`s best. My...\n A young woman who is a successful model, and i...\n I finally got hold of the excellent Sazuma DVD...\n <br /><br />I still can't belive Louis Gossett...\n There is a running thread in film comedy that ...\n I thought maybe a film which boasted a cast in...\n What's the matter with you people? John Dahl? ...\n I liked this movie. It was pretty cool. It has...\n Minor Spoilers will follow.<br /><br />This mo...\n The first time you watch this movie you may ha...\n This wasn't what i wanted to see. I bought thi...\n I recently saw House of Wax and must say i rea...\n It's hard to tell if this ham-brained B-movie ...\n This movie was the most out of line and libera...\n \"The Bank\" (1915, Chaplin) \"The Bank\" was one ...\n \"Handsome Guys With Bad Haircuts !!\" \"Beautifu...\n First of all, I have watched this show since I...\n Hated it. If you believe that everyone in the ...\n My left foot is an epic outstanding film expla...\n Six GIs, about to be send home and discharged,...\n The title creatures wreak havoc at a peaceful ...\n In his 1966 film \"Blow Up\", Antonioni had his ...\n Fans of creature feature films have to endure ...\n The British horror film was in terminal declin...\n Monster is a mind numbingly awful movie about ...\n DEATHSTALKER is perfect for B-fantasy movie fa...\n Why isn't this movie on the bottom 100? Raptor...\n This is a great horror movie. Great Plot. And ...\n Seeing this movie, as I just did for the first...\n After Disney's witty live-action George of the...\n What a disappointment, especially in light of ...\n I know that many people will/have automaticall...\n Fans of goremeister Herschell Gordon Lewis sho...\n haggard doesn't even need to be graded, since ...\n I found 'Time At The Top' an entertaining and ...\n You don't see the meaning of the title till mu...\n \"Women? They're all scrubbers...!\" <br /><br /...\n This is a new approach to comedy. It isn't fun...\n Yes there are great performances here. Unfortu...\n After reading some of the earlier nasty remark...\n My first Fassbinder was a wonderful experience...\n When I first saw this film it was not an impre...\n This film is the smartest comedy I have ever s...\n Some weeks ago, at a movie theater, I saw a mo...\n The China Syndrome is a perfectly paced thrill...\n My first warning should have been that this dv...\n What's the point of this film? It's totally fo...\n Evening is the beautiful story of the flawed l...\n I was 12 years old when I saw the original fil...\n SPOILERS BELOW<br /><br />`A Dog's Life' was m...\n This movie was good. I can't say it was one of...\n Actually, they don't, but they certainly did w...\n This movie is an insult to ALL submariners. It...\n Film noir meets anime... brilliant! This was o...\n This movie has the feel of a college project o...\n The Write Word<br /><br />What you see is what...\n Screenwriters Peter Viertel, Joan Harrison, an...\n I sell the dead revolves around convicted grav...\n This is an enjoyable movie. Its very realistic...\n The one sheets and newspaper campaign suggeste...\n John Singleton's finest film, before blockbust...\n I saw the film at the Brooklyn International F...\n I remember viewing this movie when I was a kid...\n This movie is one reason IMDB should allow a v...\n This is truly terrible: painfully irritating s...\n I have used this movie in my college Ethics co...\n Normally I hate period films. Living in Englan...\n GONE IN 60 SECONDS / (2000) *** (out of four)<...\n \"The Good Earth\" is a great movie that you don...\n The Other Boleyn Girl - not to be confused wit...\n I cringed all the way through this movie. Firs...\n This is about as pretentious a movie as a shal...\n Everybody's got bills to pay, and that include...\n I would ward off any temptation to view this m...\n Even if 99,99% of people that has seen this mo...\n This is precious. Everything Is Illuminated is...\n ROCK N ROLL HIGH SCHOOL holds a special place ...\n Bizarre, trippy, forget-about-a-story-and-full...\n The Girl in Lovers Lane is one strange little ...\n No one would ever question that director Leos ...\n This is the absolute worst movie I have ever s...\n Now, I know that Sandra Bullock produced this ...\n This definitely is NOT the intellectual film w...\n This movie was thoroughly unwholesome, unsettl...\n \"Dr. Cameron, a discredited scientist succeeds...\n ..but unfortunately no one thought about havin...\n That's the sound of Stan and Ollie spinning in...\n A root canal without anesthesia is more amusin...\n After watching about half of this movie I noti...\n Rachel and Chuck Yoman (Valerie Harper, Gerald...\n Finally I discovered what I thought I remember...\n Caught this by accident on a t.v. showing - an...\n As you can see I've submitted 2 comments about...\n I got this as a turkey movie and was I not dis...\n I love this movie. It's wacky, funny, violent,...\n This movie is easily the worst of the series. ...\n I too was quite astonished to see how few peop...\n First: The recent campaigning of this movie is...\n i watched this movie 10 years ago. and have wa...\n This is by far one of the worst movies i have ...\n Mon Oncle Antoine observes the craggy face of ...\n When John Wayne filmed his Alamo story he had ...\n Just after the end of WWII Powell & Pressburge...\n As noted in other comments here, the camera-wo...\n This film was the recipient of the 1990 Academ...\n During the cheap filmed in video beginning of ...\n I read the reviews for this and while not expe...\n This is a fabulous film.<br /><br /> The plot ...\n This movie was a dismal attempt at recreating ...\n Start with the premise that you will do anythi...\n This is one of the few movies that was recomme...\n Enjoy the opening credits. They're the best th...\n Dreaming of Julia was the title of the origina...\n In 1943, a group of RAF Officers, including Er...\n I saw this movie with my dad. I must have been...\n Awful! Absolutely awful! No plot, no point, no...\n This is a great movie. I read the brief synops...\n I enjoyed this film immensely. I'm really into...\n Or listening to, for that matter. Even the sou...\n War, Inc. - Corporations take over war in the ...\n After sitting through this film, I have decide...\n I couldn't believe how lame & pointless this w...\n I am going to go out on a limb, and actually d...\n Sorry folks, I love Ray Bolger's work but the ...\n I don't pretend to be a huge Asterix fan, havi...\n I used to always love the bill because of its ...\n I can enjoy a guilty pleasure vigilante flick,...\n I was really, really disappointed with this mo...\n As an ex-teacher(!) I must confess to cringing...\n Even after all these years, this remain \"a per...\n I've tried watching it twice, though I haven't...\n OK, I don't kid myself that this is the typica...\n If you are looking for eye candy, you may enjo...\n What can i say about Tromeo and Juliet, other ...\n Jason Bourne sits in a dusty room in with bloo...\n Julie Andrews satirically prods her own goody-...\n Why is this film so bad? Well, if being so stu...\n Sarafina was a fun movie, and some of the song...\n This, which was shown dubbed in Italian at a R...\n Combining the conventions of both Western and ...\n If you are like me and observed the original \"...\n This film reeks of production line planning. I...\n Have you ever in your life, gone out for a spo...\n This movie is pretty good. Half a year ago, i ...\n An interesting idea for a film, both showing t...\n Ok, I will make this review short and to the p...\n Matthau is a widowed hospital doctor enjoying ...\n I've been looking forward to the release of th...\n Let this serve as a warning to anyone wishing ...\n \"Welcome to Collingwood\" offers some of the mo...\n On his recent maligned reality-show, Mr. Shore...\n The horse is indeed a fine animal. Picturesque...\n Bank heist / Cop thriller sounds OK right?<br ...\n I'm astounded and dismayed by the number of re...\n This flick reminds me some really bad science-...\n I do not know which one was first released ear...\n Any horror film that casts Robert Englund (Fre...\n The first ten minutes of this movie about maki...\n Odd one should be able to stumble into \"Classe...\n I first saw this on Thames television and love...\n I can't say I'm all that experienced in misty ...\n Anyone who loved the two classic novels by Edw...\n I just saw this movie last night at a midnight...\n This was, so far, the worst movie I have seen ...\n I saw 'Begotten' last night, and I'm of two mi...\n I watch Lackawanna Blues every time it comes o...\n Pam Grier stars as Coffy. She's a nurse who se...\n This is the second movie based on the life and...\n Govind Nihalani's directorial venture of Vijay...\n before seeing this film, the 1998 version was ...\n Boogie Nights was without a doubt the best fil...\n Something I really love about this woman's sho...\n This movie was so good. Leon Phelps is hilario...\n This film was okay, but like most TV series it...\n Ulysses as a film should in no way be compared...\n This is Christmas time! A nativity in terms of...\n To start off with, since this movie is a remak...\n I know Gerrit. He presently lives in the U.S. ...\n I'm starting to wonder, after reading some of ...\n I just recently watched this on the Sundance c...\n This movie was the best movie I have ever seen...\n Wow, I can't believe people consider this a 'g...\n I saw this film a few years ago and I got to s...\n I'm a big fan of horror flicks, and zombie fil...\n I was only cautiously enthusiast when renting ...\n Simple, meaningful and delivers an emotional p...\n Unimaginably stupid, redundant and humiliating...\n Just picked up this film for a buck at Nationa...\n This show was incredible, but too esoteric for...\n When Paris is Burning came out, I totally dism...\n This must be one of the funniest Danish movies...\n Though the title includes the word \"zombies\", ...\n This movie was not very entertaining, certainl...\n One: your screen will be filled with beautiful...\n Had she not been married to the producer, Jenn...\n ...cause they're both pretty lousy. I think th...\n I enjoyed, appreciated, will view this movie a...\n I wouldn't say this is a bad movie; in fact it...\n Incredibly intriguing and captivating, I found...\n Warning! Spoilers!<br /><br />This is your typ...\n Ty Cobb is, by far, the most interesting and b...\n This is an OK early 80's horror flick in which...\n Once upon a time, way back in the 1940's, ther...\n Wow this really is stereotypical, terrible tra...\n Wolfgang Peterson's In the Line of Fire is cun...\n In short this movie was awful.<br /><br />I un...\n I actually have a fondness for Christopher Lee...\n My entire family enjoyed this film, including ...\n I give this a 10 out of 10, not because the pl...\n Eros and Thanatos, Love and Death command the ...\n **SPOILERS BELOW!!!**<br /><br />Cabin Fever h...\n How can ANYBODY give this anything higher than...\n A wonderful movie! Anyone growing up in an Ita...\n Myron Breckinridge (Rex Reed!!!) gets a sex ch...\n WHAT WAS HE THINKING?!?!?! How sad an actor as...\n i cannot believe i wasted 80 minutes of my lif...\n This movie is just brilliant, SRK's acting is ...\n This film so NOT funny - such a waste of great...\n This is a cult classic for sure!!<br /><br />I...\n Roman Polanski plays Trelkovsky who rents an a...\n Paulie was cute, cool, enjoyable and quite ful...\n Unlike some movies which you can wonder around...\n It's a colorful slasher movie. That's about it...\n Martin Lawrence could be considered a talented...\n Tony Scott destroys anything that may have bee...\n One of the greatest movies to come out of the ...\n If it wasn't meant to be a comedy, the filmmak...\n Ridiculous, nauseating doggerel with terrible ...\n i haven't seen this in years but when i was ab...\n OK, here is the deal. I love action movies and...\n Of all the E.R.Burroughs screen adaptations th...\n There must be an error. This movie belongs wit...\n Picture the classic noir story lines infused w...\n A young basketball-playing professor of geneti...\n Although, I had no earthly idea on what to exp...\n For those of you who like stand-up comedians y...\n OK so there's nudity, but hey, there's free po...\n Three tales are told in this film, that seemed...\n Trying to conceive of something as insipid as ...\n The supernatural, vengeful police officer is b...\n Why did they have to make such a dreadful adap...\n EARTH is a must see for children and adults. M...\n For a movie that gets no respect there sure ar...\n Will all of you please lay the hell off Todd S...\n There is a word for this sort of film, and tha...\n I love the music of the Clash and I love the m...\n Another Asian horror movie packed with intense...\n Just saw this tonight at a seminar on digital ...\n This is the first Pepe Le Pew cartoon and in s...\n I read the negative comments before viewing th...\n Labeling this film a \"lesbian love story\" is a...\n MY LEFT FOOT, in my opinion, is a great biopic...\n Anna (Ursula Andress) is brought in as an offi...\n Well, there you have it, another disillusion o...\n This movie seems on the surface to be a run of...\n Firstly this has nothing to do with the much b...\n So Mary and Rhoda have aged--who hasn't? I was...\n This movie is standard goofy sci-fi fare from ...\n I watched the movie \"The Flock\" because of the...\n The Legend of Zu, as I saw it, was a very inte...\n Ghost Town starts as Kate Barrett (Catherine H...\n The back cover of the DVD (missed this one whe...\n I came out of \"Rendition\" with a list of flaws...\n Title: Robot Jox (1990) <br /><br />Director: ...\n Excellent story with supperb acting by all of ...\n Set in Bam Margera's hometown of Westchester P...\n To understand \"Crash Course\" in the right cont...\n Shaggy, friendly yet frustrating film has the ...\n I'm not really sure where to begin. From start...\n There are few uplifting things to say about th...\n There are times when, less than halfway throug...\n I created my own reality by walking out of the...\n I saw the *star* of this movie on The Daily Sh...\n i went into watching this movie knowing it was...\n I was really surprised when I came across this...\n The first (and only) time I saw \"Shades\" was d...\n It's been a while since seeing this the first ...\n I consider this film to be the best one about ...\n Nothing revolutionary here; just impeccably el...\n This seemed to be a good movie, I thought it w...\n If I could give this excuse for a film a 0 or ...\n Peaches is truly a marvelous film. I write thi...\n I typically don't like reality shows, particul...\n Crazed Shotgun toting-incest driven-revenge se...\n This is an excellent film!Tom Hanks and Paul N...\n Oh my god! This movie insults the intelligence...\n This is possibly the worst of the cockney gang...\n Very tightly written, acted, and filmed. Viole...\n Bernard Rapp passed away last year and was a v...\n Hummmm,...ANOTHER Keystone comedy set in the p...\n I saw this recently with my wife and discovere...\n I'd never walked out of a movie before this on...\n Although this was the first Hunter S. Thompson...\n A coming-of-age story about a teenager rebelli...\n Wow, I can't believe I waited so long to see t...\n As it is generally known,anthology films don't...\n I seem to notice that a lot of people have nev...\n The Great Caruso displays the unique talents o...\n Where to begin? This film is very entertaining...\n Hilary was great as julie, and Pat was once ag...\n European Vacation (aka National Lampoon's Euro...\n may contain spoilers!!!! so i watched this mov...\n Most critics have written devastating about th...\n Although nothing can compare to Vampires Vs. Z...\n it's hard to tell you more about this film wit...\n \"Some day, we'll walk in the rays of a beautif...\n George Barry is a genius. \"Death Bed: The Bed ...\n Hammerhead is a combination between the mad sc...\n I am looking at all the good reviews about thi...\n I saw this movie once, and I thought it was OK...\n Deliverance is the fascinating, haunting and s...\n With the MASSIVE advertising this is getting o...\n The premise of this movie is revealed on the D...\n LACKAWANNA BLUES is a fine stage play by Ruben...\n Cash (Now played by Khrystyne Haje in for Ange...\n When I saw the poster at the theater, I though...\n Wow, what a strange film. It's a David Lynch m...\n The direction had clearly stated that this fil...\n 1993 was a time of change in the WWE but for t...\n Very interesting and moving documentary about ...\n I watched this movie also, and altho it is ver...\n This film biography of early rock and roll sta...\n This movie has to be my favorite of all time. ...\n I thought this was movie was great, Richard Gr...\n this film was a major letdown. the level of re...\n Beautiful and touching movie. Rich colors, gre...\n I don't want to seem too much of a nitpicky sp...\n **SPOILERS**KHAMOSH is totally unrealistic, la...\n Compared to the competition, soul calibur 3 is...\n Flash Gordon is, undoubtedly, the best of all ...\n It as absolutely incredible to me that anyone ...\n En route to a small town that lays way off the...\n Viewers of independent films know that once or...\n This is one of the creepiest, scariest and mos...\n The back of my DVD describes the plot of \"El C...\n It's frequently said that movies can never equ...\n Even in the 21st century, child-bearing is dan...\n This show is absolutely ridiculous. Yes, of co...\n The only reason I'm giving this a 9 is that th...\n I went into this movie with an open mind. I ha...\n I just found the entire 3 DVD set at Wal-Mart ...\n Almost four years after the Iraq war started a...\n This Is Pretty Funny. \"Saturday The 12th\", a?....\n I own Ralph Bakshis forgotten masterpiece Fire...\n Peter Fonda is so intentionally enervated as a...\n Honestly, I didn't really have high expectatio...\n This searing drama based on a true incident co...\n It is not known whether Marilyn Monroe ever me...\n Just after I saw the movie, the true magic fee...\n I love full house so much that i couldn't live...\n Father of the pride is a pleasant surprise: It...\n Terrible movie. If there is one Turkish film y...\n What a clunker!<br /><br />It MUST have been m...\n *May Contain Spoilers*<br /><br />The first ti...\n CAROL'S JOURNEY is a pleasure to watch for so ...\n My dear Lord,what a movie! Let's talk about th...\n Don't let the rating of 5.9 (as of this writin...\n I agree with most of the Columbo fans that thi...\n Knowing what to expect (on the whole) from a D...\n I was true to my regard for Mr. Glover and Ms....\n During filming, was Vanessa Redgrave taking mo...\n (Some Spoilers) It took some 19 years for Bruc...\n Sorry, gave it a 1, which is the rating I give...\n A group of young adults get stranded in the ba...\n What can I say about this band, I was hooked i...\n To me Bollywood movies are not generally up to...\n \"Rattlesnake! Look out!\" \"Is that a bra you're...\n Shot on an impossible schedule and no budget t...\n \"This film is great! I watched it with some fr...\n You know the saying \"Curiosity Killed The Cat\"...\n Had the fun pleasure of viewing a new independ...\n The first murder scene is one of the best murd...\n I am testing myself to watch 3 bad movies in a...\n The original exploitation classic-though far f...\n I saw this in a preview and it seems to have n...\n I was talked into watching this movie by a fri...\n I rented this film because it was a documentar...\n Silly, hilarious, tragic, sad, inevitable.<br ...\n I originally caught this back in 1996 in its o...\n I can't believe I missed this one. Made in 197...\n I picked up this movie for $5 dollars at a dis...\n A friend of mine gave me this movie. A friend ...\n Ann-Margret did the best job she has ever done...\n As much as the movie was good, i have nothing ...\n It's perfectly ok that people dies in an anima...\n One can deal with historical inaccuracies, but...\n Oh Gawd. I want to time travel back to Monogra...\n I was watching the beginning of this on a Frid...\n Mr. Bug Goes to Town was one of those films th...\n In the late 1940s there was a short film serie...\n Unimpressive and extremely low budget sci-fi w...\n Everyone told me this movie was downright not ...\n Samuel Fuller's Pickup on South Street is anom...\n It has to be said that this film is definitely...\n **MAY CONTAIN SPOILERS**<br /><br />The titula...\n I joined this site to see what comments people...\n This is one of my favourite films; a delightfu...\n I am and was very entertained by the movie. It...\n I'm going to keep this review short and sweet....\n This film is pretty good, it actually is like ...\n This is probable one of the worst movies i hav...\n If you want to laugh like crazy, rent Cage. Ca...\n I would give this movie a good strong 7. While...\n I saw this movie last night at the Phila. Film...\n how does anyone keep on seeing horror movies a...\n The fact that after 50 years, it is still a hi...\n My giving this a score of 3 is NOT what I woul...\n Here's one of the more pleasingly scuzzy 70's ...\n This movie was just so utterly horrible that I...\n Of all movies (and I'm a film graduate, if tha...\n The evil bikie gang in this movie were called ...\n I've been using IMDb for a few years now, but ...\n This wretched movie shows that not even some o...\n What do you get when you put Lou Diamond Phili...\n well, the writing was very sloppy, the directi...\n The world of the Dragon Hunters is a 3D gravit...\n <br /><br />Never ever take a film just for it...\n This movie was in a sci-fi 50-pack a friend of...\n I saw this film when it was first released. Th...\n This film has its share of negative comments a...\n This is one of my favourite kung-fu films and ...\n Sergio Martino's The Case of the Scorpion's Ta...\n This foolish, implausible tale is redeemed onl...\n ASTROESQUE (2 outta 5 stars)<br /><br />I have...\n Altman's Quintet has to be considered more tha...\n This is possibly the most boring movie in hist...\n Watching this film made me wonder, just why wa...\n Before 'Zavet' there was similarity between Ti...\n What a dog of a movie. Noni Hazelhurst's perfo...\n Faith Akin has made me realize once more the d...\n This, I think, is one of the best pictures eve...\n Don't let my constructive criticism stop you f...\n Since \"Rugrats\"' falling from the category of ...\n If you were enjoyed by watching \"Guinea Pig\" -...\n Before I saw this masterpiece I never would ha...\n This is my favorite classic. It was filmed a l...\n OK, so this is horror? I get horror - but I do...\n Native Chief's son is wrongfully accused for t...\n Clearly this would have had potential in more ...\n I am a huge fan of Vonnegut's work and I'm ver...\n I love MIDNIGHT COWBOY and have it in my video...\n Seriously, can you imagine such a spread of ta...\n I saw a version of this in a 4 DVD Mafia colle...\n I saw Peter Watkin's Culloden and The War Game...\n I have been a huge Errol Morris fan ever since...\n Please do not let the cover of this movie fool...\n Babyface - Notorious Barbara Stanwyck flick wh...\n Nine out of nine people who watched this have ...\n In need of work, straight man Bud Abbott (as J...\n One of the less widely lauded of recent Asian ...\n After reading some of these reviews, it is app...\n I am a relative latecomer to the transcendent ...\n I work as a hotel concierge in Washington DC a...\n Simply the best and most realistic movie about...\n If any style of film could be called my \"guilt...\n Of all the movies I have seen, and that's most...\n Considering it was made on a low budget, THE D...\n Just finished watching this movie as it were p...\n This has got to be one of the most magnificent...\n Suburban kids meet the forest. Killjoy is bett...\n After seeing this piece of crap you will know ...\n I absolutely LOVED this movie! Since I don't w...\n One of Disney's best films that I can enjoy wa...\n No day passes without a new released computer ...\n This was essentially a remake of \"Diagnosis Mu...\n Doe-eyed high school student Kathleen Beller i...\n Based upon the recommendation of a friend, my ...\n I like \"Hack.\" Think the \"Lone Ranger\" reincar...\n \"The Man Who Knew Too Much\" falls into that Hi...\n Eh. I watch this movie in class because someon...\n This 1939 film tried to capitalize on the much...\n I saw this movie when it was first released an...\n I generally LIKE Sion Sono's work, but this mo...\n This short film (and the poem which is behind ...\n I went to see this because of snipes / statham...\n was this tim meadows first acting role in a mo...\n I borrowed this on DVD from a friend the other...\n I know some people think the movie is boring b...\n This movie doesn't have any pretense at being ...\n Perhaps Disney was hoping for another Mary Pop...\n I can't believe they do this kind of filth out...\n I love Korean films because they have the abil...\n ***SPOILERS*** Feeling alone and needing compa...\n Halloween is not only the godfather of all sla...\n Jack Frost 2 is out of the question, I'm actua...\n Though this movie is cheesiness at its best, i...\n Imagine you have just been on a plane for 18 h...\n I gave Soul Plane the benefit of the doubt and...\n I don't know why I'm taking the time to review...\n WARNING: I advise anyone who has not seen the ...\n This film is definetly Fonda's best film. The ...\n I had no expectations when seeing the movie be...\n The Secret of Kells is one of the most unique,...\n Early 80's creature feature concerns a long ab...\n Apart from some quite stunning scenery, this S...\n One wonders why anyone would try to rehash suc...\n conventional and superficial ,Claude´s portray...\n I've read up a little bit on Che before watchi...\n ... sings David Bovie in this movie. BUT IT IS...\n ...But it definitely still only deserves 4/10 ...\n As others have noted, this movie is criminally...\n As Joe Bob Briggs would say, this movie relies...\n A bus drops off a nameless man outside a run-d...\n How LIVING THE DREAM managed to get into the L...\n I entered my first comment on this film almost...\n This is the movie that finally pushed me over ...\n Like most of the festivals entries Hamiltons m...\n Four holy young men from Mormon country go to ...\n Having searched for this movie high and low, I...\n I agree with the user \"SpecialAgentFoxMulder\" ...\n \"Mr. Bean\", starring the legendary Rowan Atkin...\n (aka: The Bloodsucker Leads the Dance)<br /><b...\n I can't get over the quality of the score, the...\n I thought this movie was amazing. I was a bit ...\n Guys, you got to watch this awesome movie. At ...\n I really have problems rating this movie. It i...\n Yes, I was lucky enough to see the long-runnin...\n Roman Polanski is considered as one of the mos...\n \"What would you do?\" is a question that will s...\n This movie was awful, especially considering t...\n I'm far from a Sylvester Stallone fan and I gu...\n ...but of course I was wrong.<br /><br />Now, ...\n Lucio Fulci's Cat in the Brain is an inventive...\n Bronson and Ireland, in their last film togeth...\n Ain't it hilarious when an average schmo leadi...\n If only the writer/producer/\"star\" had the sli...\n This is one of those \"family\" movies that I ca...\n What if Somerset Maugham had written a novel a...\n I saw this movie two weeks ago at the \"festiva...\n I always thought this would be a long and bori...\n OK, I've now seen George Zucco in at least fou...\n This film to me deserves a lot of praise, beca...\n Having seen the full length film Kieslowski ma...\n This motion picture comes straight out of the ...\n The wit and pace and three show stopping Busby...\n Totally ridiculous. If you know anything about...\n Insane really. Even if you haven't seen the or...\n As with all Haneke films, make your own decisi...\n I'm a big fan of Lucio Fulci; many of his Gial...\n This is a harrowing movie, and it moves relent...\n We all know that some of the greatest movies o...\n Suzumiya Haruhi no Yuuutsu is a very high-rate...\n Having enjoyed Mike Myers previous work (Wayne...\n One of my best friends brought this movie over...\n In this movie \"Virtual Sexuality\" the 17 year ...\n If you thought this is the french The Mummy an...\n i like full house and step by step the same. i...\n Being a freshman in college, this movie remind...\n Ned Kelly (Ledger), the infamous Australian ou...\n 80 minutes, and it felt twice that long! Brief...\n This is the question that astronauts Roy Thinn...\n From a military historian's standpoint, nearly...\n After reading some very good reviews about thi...\n This movie is definately one of my favorite mo...\n Things I learned from \"The List\".<br /><br />A...\n This drama apparently caused a bit of a stir s...\n Romuald et Juliette is one of those French rom...\n American icon Henry Fonda portrays \"Elegant\" J...\n Christ, oh Christ... One watches stunned, incr...\n Like Tarzan the Ape Man (1932), only more so. ...\n The plot in Petites Coupures certainly left th...\n **SPOILERS** The third and mercifully last of ...\n This film was just painful to watch... not in ...\n `Stanley and Iris' is a heart warming film abo...\n After Dark, My Sweet is a great, modern noir, ...\n The 1979 film musical of HAIR was loosely base...\n I understand that this was Llyod Kaufman's att...\n This little seen movie is a languid and laid-b...\n Yes, commitment. Let's say \"Fever Pitch\" might...\n This is a funny movie. The Bob & Eddie Show fe...\n h.o.t.s. is one of those sexy 70's drive in mo...\n I can see where the film makers were going wit...\n In the changing world of CG and what-not of ca...\n What a pathetic movie.<br /><br />I won't wast...\n This working girls go to hell soap is a time c...\n \"Tourist Trap\" is a bizarre, great horror film...\n I think there's a reason this film never came ...\n In the seedy streets somewhere in New York Cit...\n When I first saw the trailer for this film, I ...\n Although the movie is clearly dated, audiences...\n i'm gonna give it to ya straight...this movie ...\n They probably should have called this movie Th...\n Soon after watching this film you will realize...\n Where to start? This is probably one of the wo...\n I have seen this movie a number of times and f...\n This was a silly movie with a predictable stor...\n I thought the children in the show did a very ...\n Deep Water examines the pressures and ambition...\n The story of Tom Garner opens with his grand f...\n Very funny film with some of the best swedish ...\n I'm not quite sure if the term \"serious comedy...\n An interesting change from the first one. ther...\n Peter Coyote was the only name that I recognis...\n I hate it when people in the movie theater tal...\n no movie with dennis hopper, gary busey, erika...\n save your money. i have been a fan of fullmoon...\n This film is just a kids against evil genre. T...\n This movie narrate the story of John Belushi,b...\n After her Oscar-nominated turn in \"Secrets & L...\n There are so many episodes that make me howl o...\n ....CAUSE IT'S CRAP! The kind of movie that ma...\n This film is about the unlikely friendship bet...\n Well, I'm not about to add to the diatribe tha...\n I think this movie had to be fun to make it, f...\n I can honestly say that \"Death Bed: The Bed Th...\n This is a painfully slow story about the last ...\n This was a pretty dull movie, actually. I thin...\n I am sligthly biased because I appear in this ...\n I really liked this movie! Even though it wasn...\n I own this movie and I love Canadian Movies bu...\n i didn't even bother finishing the movie becau...\n I can get very tired of murder mysteries with ...\n terribly underrated with matt dillon and tom s...\n The original Body and Soul (1947) is a masterp...\n If you're actually reading this review, I give...\n I see this movie as a poor tribute to the old ...\n After repeatedly saying how brilliant so many ...\n I must say I was impressed the cinematography ...\n If this film won the Lumiere Award for Best Fr...\n Alright this was quite a sensitive little numb...\n One of my favourite films, whenever it is on, ...\n Jack Frost 2. THE worst \"horror film\" I have e...\n \"Big Fat Liar\" comes as a welcome -- shallow, ...\n There's a theory of time that posits that all ...\n I watched this movie yesterday and was highly ...\n Just got through watching this version of \"Sam...\n We loved the movie. I am a mother to two littl...\n This film was not all that bad as the story we...\n \"Ahh...I didn't order no amazing hit show\".......\n The first mystery is to guess what Welles' ori...\n Director Vincenzo Natali first showed his penc...\n Why all the negative reviews??? You didn't exp...\n This is of of Sammo's great early comedy films...\n Viewing both of these films concurrently is no...\n Made in 1946 and released in 1948, The Lady an...\n This was a cute movie until the ending. The en...\n This movie definitely made me laugh but that d...\n I would strongly recommend this film for any m...\n ...out of this movie.<br /><br />Sorry to say,...\n This is a very bad western mainly because it i...\n ..that separate good, memorable movies from mo...\n Robert McKimson's 'Acrobatty Bunny' is one of ...\n This zany film rivals the Ghost and Mr. Chicke...\n Don't spend your money or your time on this pi...\n I was laughing so hard most of the time I had ...\n The original WASC isn't by any means a must se...\n Director Fred Schepisi(Roxanne) directs this w...\n One of the better kung fu movies, but not quit...\n I loved Dedee Pfeiffer (is that spelled right?...\n What a nasty cynical film. Apparently this sad...\n I'd love to sit down and write an intelligent,...\n A trio of low-life criminals, led by Matt Dill...\n There is a key aspect of film that Jobson seem...\n This film quite literally has every single act...\n I'm only going to write more because it's requ...\n Last time I checked in here I think there was ...\n I first read Pearl S Buck's splendid novel in ...\n The words \"Swedish\" and \"Action movie\" do not ...\n The DVD release of this superior made for TV B...\n What? - that was it? The town sheriff (John Ag...\n I've sat through several Pauly Shore movies, b...\n Jealous husband holds car dealership hostage w...\n A straight-forward X File that shows that acti...\n This \"movie\" is such a bad work! Nothing seems...\n Overall, I agree wholly with Ebert's review. I...\n This four-hour miniseries production is about ...\n So I caught this one afternoon as \"What Lies A...\n I find it hard to believe this could happen at...\n I saw this movie as a teenager and immediately...\n This is a really amazing story and the most am...\n Three businessmen are involved in a bar fight ...\n My fondness for Chris Rock varies with his mov...\n \"Return of the Seven\" has a few good action sc...\n I remember watching this film on Saturday afte...\n This movie was made in 1948, but it still ring...\n The only reason I watched this movie a second ...\n Well I have to admit this was one of my favori...\n I had a personal interest in this movie. When ...\n It ends with the declaration that \"the film yo...\n I caught this movie a few years ago one night,...\n In 1937 Darryl Zanuck, who had recently moved ...\n *** This comment may contain spoilers *** Warn...\n I have seen this film several times, and watch...\n This movie is really bad, trying to create sci...\n For the life of me, I cannot get why they woul...\n The movie has a distinct (albeit brutish and r...\n Note to Horror fans: The only horror here is w...\n Probably not the same version as most of the o...\n This is one of the most underrated masterpiece...\n Billy Hughes is a mute young lady working for ...\n This series is formulaic and boring. The episo...\n I'm really not too sure why people are being s...\n This movies made me suffer and I LOVED IT! LOV...\n I have seen tons of trash, in every language, ...\n Possibly one of the best, most horrible b movi...\n Downhill Racer is essentially, a movie to see ...\n Oh God,what an idiotic movie!Incredibly cheap ...\n I did not expect a lot from this movie, after ...\n I was a kid .. crazy about Michael Jackson. Hi...\n This is a beautifully-made film, finely balanc...\n I've seen this movie after watching Paltrow's ...\n Everyone in the cast, from Sugiyama to Aoki an...\n This was the most thought-provoking capital-pu...\n What a truly moronic movie, all I can say is t...\n Very curious that Nichols and Hanks would team...\n My personal feeling is that you cannot divorce...\n A guy, with the unlikely name of Shy Walker, l...\n I thought this movie was quite good. It was on...\n I don't see why everyone is bombing this so mu...\n Me and my mates used to gather together in one...\n It's a talking, trigger happy, alcoholic ASS C...\n This is a very strange film by director/animat...\n I was really surprised with this movie. Going ...\n I'm a big fan of the first Critters movie. The...\n The idea is not original... If you have seen s...\n Laughed my ass off but probably because I was ...\n A MUST SEE documentary.-----This movie had so ...\n This was longer than the Ten Commandments, All...\n This complicated story begins fairly simply, w...\n An unusual movie, which starts off with the cl...\n In the same vein as Natural Born Killers, anot...\n I and a friend rented this movie. We both foun...\n Subject matter: Worthwhile Acting: Fair (some ...\n Before going any further, I have to admit that...\n Patsy Kensit and some random Australian bloke ...\n to movie,this movie felt like one of those aft...\n Mr. Accident is a deliberate series of non-sto...\n Actually one particular person/character isn't...\n Crackerjack is a hit and miss film set in the ...\n In The Ring, it was a videotape; a website was...\n The plot was dull, the girls were sickening an...\n After seeing \"Driven\" on a plane flight to Ame...\n I had high hopes for this one until they chang...\n The real star of this ridiculous story is glor...\n I was young film student in 1979 when the Unio...\n The case history of 'Mulholland Dr.' is known:...\n Pere is an idiot, but he is aware about it and...\n \"Nuts in May\" may be one of the worst films i ...\n The Class is a comedy series that portrays a b...\n This film is a load of crap. It's quite distur...\n Honestly, I find this film almost too depressi...\n I have no idea why this flick is getting such ...\n I had a bit of hope for this hour long film ma...\n Just think, it cost a total of $250,000 to mak...\n As a lifelong fan of Dickens, I have invariabl...\n The first review I saw of Page 3 said \"what is...\n All Dogs Go to Heaven is, in my opinion, the b...\n I don't understand why people would praise thi...\n I wasn't expecting a great deal from this film...\n Total Garbage!!! No reflection to Washington h...\n I chose \"The English Patient\" for a history ex...\n This was one of the worst movies I've ever see...\n During the brief period between Clint Eastwood...\n I watched the movie about 13 yrs ago while liv...\n where do we go from here? that is the overridi...\n I cant put it any simpler than that, this is a...\n This movie is so cool. It told me to enjoy eve...\n Swift's socialism and pacifism come through ag...\n You like beautiful girls? Yeah me too. What is...\n I just saw this episode this evening, on a rec...\n At least it is with this episode. Here we have...\n My brother plays \"Moose\" in this film. Althoug...\n Purportedly made back to back with 'Erotic Nig...\n I have just watched this \"latest\" version of M...\n Being that I am not a fan of Snoop Dogg, as an...\n The minute the forward started, I knew we were...\n Just saw Baby Blue Marine again after 30 years...\n I normally wouldn't waste my time criticizing ...\n This homemade horror movie tells the story of ...\n In an earlier comment I mentioned how much I e...\n The US State Dept. would not like us to see th...\n To be fair, I expected car chases in this film...\n I remember watching this movie over and over a...\n It is difficult to evaluate this or any other ...\n MINOR SPOILERS<br /><br />Misunderstood classi...\n Following the success of \"Paris, Je T'Aime\", a...\n *Please note: (The below text is taken from th...\n What can I say? An excellent end to an excelle...\n ...And that's why hard to rate. <br /><br />Fr...\n Luchino Visconti, the artist with the sword. C...\n A great concept gone wrong. Poor acting, even ...\n I saw the movie recently during the Boston Fil...\n Hollywood had a long love affair with bogus Ar...\n This is a really good film and one that I've e...\n This movie shows that the free enterprise syst...\n First of all, I think the below comment is unw...\n Just watched this after hearing about how bad ...\n The selection of Sylvester Stallone to perform...\n Another great Tom Wilkinson performance punctu...\n If you haven't seen the first one you have to ...\n BE WARNED. This movie is such a mess. It's a c...\n I just saw this film @ TIFF (Toronto Internati...\n Very good political thriller regarding the aft...\n Henry Sala's \"Nightmare Weekend\" is a rotten p...\n Buford's Beach Bunnies gives B-grade T&A films...\n Xiao Chen Zhi Chun is a great movie, not only ...\n And I may be being generous. The overwhelming ...\n If you are a fan of early Duke movies, this Lo...\n I just saw this recently, after an interval of...\n If you made the mistake of seeing the movie be...\n I made it through half of this, but was not en...\n This movie has Wild Bill Hickok, Calamity Jane...\n Otto Preminger was one of the great maverick f...\n I'm a big fan of Naruto, even though I haven't...\n Piece of subtle art. Maybe a masterpiece. Doub...\n What a fun movie experience! I was expecting a...\n A very unique Sci-Fi animated film, and frankl...\n I won't waste your time by describing the plot...\n Savage Island's raw savagery will scare the he...\n Lucille Ball cannot sing or act or dance. This...\n Vicente Aranda has made a terrible historical ...\n Oh what the heck, I'll reveal the secret: this...\n A quite usual trashy Italo-Western, stupid sto...\n It was on at 7:30am, too close to school to se...\n after just having watched The Deer Hunter,whic...\n (Spoilers more than likely... nothing really i...\n In Extramarital we see B-actress Traci Lords a...\n I was kinda looking forward to Man of the Year...\n Okay, I'll admit that if I didn't have kids, I...\n I saw (unfortunately) the dubbed version on En...\n Sorry about that. But if you have seen this \"e...\n This film was rather a disappointment. After t...\n This is not the worst movie I've ever seen. I ...\n I think I've seen this sort of thing before: c...\n Basic slasher movie premise, 3 young ladies wr...\n ...Ok I have read about this film somewhere in...\n Supposedly, a movie about a magazine sending j...\n CAUTION: Potential Spoilers Ahead!<br /><br />...\n Corridors of time. The movie you can watch if ...\n Simply put: the movie is boring. Cliché upon c...\n This isn't a bad movie... but it's the type yo...\n Make no mistake about, High School Bigshot is ...\n Snuggle down in your favourite chair and switc...\n Putney Swope is the story of a token black man...\n Larry is a perfect example of the Democratic P...\n \"Vanilla Sky\" was a wonderfully thought out mo...\n it doesn't matter whether drew or leelee are t...\n I finished watching Mandy Lane about an hour a...\n I don't think I've yet seen a movie in my whol...\n The whole movie made me think of the first cir...\n Sarah Plain and Tall's Winters end was the bes...\n I didn't really know what this movie was about...\n I love the 80s slasher flicks and I remember w...\n Saw this for the first time on UK TV, with goo...\n Perfect double bill for the horribly corny \"Be...\n Oh where to begin. The cinematography was grea...\n I saw that when I was little and it was excell...\n The laughs are few and far between in this dul...\n Deathtrap runs like a play within a movie abou...\n Whoopi was the only reason I watched the Oscar...\n I can't believe others took such a serious vie...\n Why do people who do not know what a particula...\n A previous IMDb reviewer has stated that 'Raft...\n Most of the comments so far have nailed this o...\n The story is a little slow and a little stupid...\n There are too many people on this board who ha...\n I must say that I was disapointed with this fi...\n Paul Naschy as a ghostly security guard in thi...\n Tom and Jerry are transporting goods via airpl...\n I wanted to like this movie. I really, really ...\n After seeing this film at the SF Independent F...\n It seems like people are attracted to shows th...\n OK, I saw this film through Mystery Science Th...\n Just a warning... This is the worst movie I ha...\n What a mess of a movie! If it wasnt for Eric R...\n Doctor Feinstone is a dentist.He has a beautif...\n I can remember reading that Darwin had a pivot...\n This was just a terrible movie. It hurt me to ...\n ***SPOILERS*** ***SPOILERS*** Well, seeing as ...\n A long overdue concert release, Rush-in-Rio DV...\n Hoot was terrific. The owls are adorable and t...\n On a distant planet a psychopath is saved from...\n How could anyone who liked the previous JP mov...\n Lately I have been watching a lot of Tom Hanks...\n A team of tough rogue New York cops led by the...\n This complicated western was a milestone in th...\n I don't think it really matters too much what ...\n Dakota Incident is a curiosity for several rea...\n this one of the best celebrity's reality shows...\n With my two stars I will probably make it to t...\n The 1977 animated-live action hybrid version o...\n Mighty Like A Moose is one of many short films...\n This low budget B horror's plot comes with all...\n Cimarron was painful to sit through. Although ...\n This movie is one for the ages. First, I have ...\n I remembered the title so well. To me, it was ...\n This is the biggest piece of lamo I've ever wa...\n I've read all the rave reviews here and am imp...\n This movie is extremely funny - the character ...\n A true yawner and a bad film even for the Chan...\n This is possibly the worst of the worst. I am ...\n This is a good family movie with a few laughs....\n I caught this on HBO under its category of \"Gu...\n For such a great classic tale, the setting (lo...\n David Suchet,(Poirot),\"FoolProof\",'03, gave an...\n I'll be honest with yall, I was a junior in hi...\n The extraordinary Rosemary Forsyth is the main...\n All in all, an excellent movie from that time ...\n First of all. Should Cameron Diaz ever be allo...\n Totally forgettable movie but an unbelievable ...\n On 24 October 1955, the hard-work geologist of...\n I must have seen this movie about four or five...\n I saw this on a screener DVD a couple months b...\n Originally I wrote what was a sarcastic,scathi...\n Just PPV'd this. I don't want to waste too muc...\n Whenever Hayao Miyazaki does the \"tri-fecta,\" ...\n Along with \"Brothers & Sisters\", \"Six Degrees\"...\n for whoever play games video games here did an...\n Poor Bela Lugosi. Just another day at work. A ...\n It's not often I feel compelled to give negati...\n A sentimental school drama set in Denmark, 196...\n WARNING: SPOILERS Dear Roger,<br /><br />Durin...\n I caught \"On the Run\" at the Screening Room in...\n Jack Frost 2. THE worst \"horror film\" I have e...\n Ghost Story (the TV Movie--1972) was the pilot...\n This version moved a little slow for my taste ...\n Woody Allen made \"September\", proving that eve...\n My cousins and I have watched this movie ever ...\n I have never seen \"American Werewolf in London...\n Lost, probably the best t.v series ever made. ...\n This film did a wonderful job of capturing NYC...\n It is a nice comedy. It has the great features...\n *Warning! Some spoilers!*<br /><br />Matt, a r...\n Wonderfully put together..I wish there was a f...\n It was a disappointment to see this DVD after ...\n That this film has such a low IMDb rating is n...\n When I began watching The Muppets Take Manhatt...\n This film could be one of the most underrated ...\n I don't know how this film went unnoticed for ...\n The Good:<br /><br />Effective color scheme. G...\n Its perhaps unfair of me to comment on this fi...\n Normally, movies stay out of the realm of \"dom...\n BASEketball is an extremely funny movie that d...\n There seems to be only two types of reviews of...\n I've always liked this John Frankenheimer film...\n This is exactly what Australian Television and...\n Stylishly directed, picturesquely photographed...\n i found this movie to be mostly a P.O.S.it was...\n I will admit, I thought this movie wasn't goin...\n Cujo is a giant, lovable, gentle and affection...\n Nevsky is one of the great epic war films. Sur...\n While the overall idea of Escape from Atlantis...\n Luckily, not knowing anything about this movie...\n Based on Robert Louis Stevenson's St. Ives, th...\n A common plotline in films consists of the mai...\n it was a very well written movie, and the acto...\n What happens when you give a free man just eno...\n From what I've read a lot of people were disap...\n A short review but...<br /><br />Avoid at all ...\n I saw this film while I was in France and I mu...\n Man stop making sequels to great movies. The o...\n I thought the movie \"I Do They Don't\" was fant...\n I consider this film to be a complete masterpi...\n A sign of what to expect in this film came whe...\n There's tons of good-looking women in this fli...\n [possible spoilers] <br /><br />The sixth \"Hal...\n So after years and years I finally track this ...\n **Maybe spoilers** **hard to spoil this thing ...\n These reviews that claim this movie is so bad ...\n When ever a film is produced or directed by Me...\n Like most people out there who have watched Ja...\n First, IFC runs Town and Country, and now this...\n This thing, directed by french sensation Patri...\n Finally I got to see the infamous \"Ice Age\". A...\n Usually, I don't think Hollywood productions a...\n Do the following: Get a copy of this movie and...\n Yet again, Madhur Bhandarkar takes you on a ri...\n I saw this film after watching Capote and Infa...\n Eric Bogosian's ability to roll from character...\n I found this movie thought-provoking, and its ...\n Kristy Swanson plays an elite hitwoman who is ...\n I have seen a number of horror movies to know ...\n The extraordinarily adorable Suzy Delair plays...\n I mean, really... either i suddenly lost my se...\n This is one of the worse movies that I have ev...\n A bunch of sorority girls make a new pledge sp...\n Being a retired medical/health field \"toiler i...\n Honest to God, the Outline pretty much says it...\n I love Juan Piquer-Simón! He's my absolute fav...\n I am a big 1930's movie fan and will watch mos...\n The producers of this picture are Hungarians. ...\n The director seems like a good, solid man. His...\n _Les Acteurs_ is the absurd story of Jean-Pier...\n I wonder who, how and more importantly why the...\n An excellent \"sleeper\" of a movie about the se...\n As a kid I grew up with the chintzy 60's TV se...\n Let's face it; some lame kid who dies and has ...\n King of Masks (Bian Lian in China) is a shocki...\n When I first watched the show, the first few e...\n Billy Crystal normally brings the crowd to lau...\n Years ago, I didn't love and respect the films...\n This movie stars Jay Leno as a Detroit cop, To...\n since this is part 2, then compering it to par...\n Personally, the book was a very well written, ...\n It's been a long time since such an original, ...\n Maybe \"Presque Rien\" is not the best movie eve...\n I watch most movies that Nick Mancuso is in be...\n Wolfgang Petersen (Das Boot, Air Force One) gi...\n I´m glad that someone has made a movie about h...\n Johnny Knoxville has gone insane.<br /><br />I...\n This is a good movie, but it is not recommende...\n It's difficult to express how bad this movie i...\n It is amazing what you can see if you wake at ...\n Reviews for this film were lukewarm at best wh...\n Don't let the premise fool you--this was one f...\n \"Stairway to Heaven\" is a outstanding inventio...\n I watched this a few days ago, so details are ...\n Every American who thinks he or she understand...\n This may be the worst film adaptation of a Bro...\n I do not know what today's movie goers expect,...\n I was initially excited about this movie and f...\n \"Tourist Trap\" is a genuinely spooky low-budge...\n Another very good Mann flick thanks to the fat...\n I used to watch this show when I was growing u...\n Ron Hall pulls a triple threat as he writes, d...\n Revolt of the Zombies starts with Armand Louqu...\n For all intents and purposes, 'Teen Devian' mi...\n Perhaps the worst thing about Carlos Mencia's ...\n What can I say about this movie that has not b...\n The idea is nice. Bringing so many stars in on...\n I have been looking for this film for ages bec...\n Look...I've come to expect this level of actin...\n The End of Suburbia is an important documentar...\n I saw this movie recently. 2 hours later, my h...\n Bud Abbott and Lou Costello always had a good ...\n This is a film I saw when it first came out, a...\n Another day stuck indoors, another film to wat...\n Out of all the Princess stories Disney has put...\n Slow and nice images changed one another, with...\n Well I watch tons of movies and this one reall...\n This is a quirky little movie, and I have to a...\n Crazy Scottish warrior race, stranded deep in ...\n I would be interested to hear from the directo...\n I heard an interview with the main actor who s...\n I really truly enjoyed this movie. (Which is w...\n There's nothing I hate more than self-congratu...\n The premise and subject about making a crimina...\n While this was a better movie than 101 Dalmati...\n I have read reviews of this film that found it...\n As talk-shows go, Larry King Live is not bad, ...\n ONCE UPON A TIME, there were different types o...\n This Showtime movie really deserves a far bett...\n Watching Tom Hanks as a hit man for the Irish ...\n A group of us watched this film are were reall...\n This really is a great movie. I don't think it...\n Gung Ho was a good idea, however it is to much...\n This movie was a really great flick about some...\n Movie: There are some very interesting comment...\n The summary is only for those who hate this mo...\n A Brief History of Time is not only a document...\n This film has a rotting core of flexible moral...\n C'mon people, you can't be serious, another ca...\n Excuse me if I'm wrong, but \"Cronica para un d...\n Jack Black and Kyle Gass play fantasy versions...\n Sunny, a cocktail waitress in the D.C. area, i...\n Movies aren't always suppose to be about deep,...\n An old man is riding his bike down a village r...\n Greetings again from the darkness. Stunning ph...\n Semper Fi! I saw \"The D.I.\" in 1957. Two-and-a...\n \"Der Todesking\"-Jorg Buttgereit's second full-...\n Trying to cash in on the success of Deal Or No...\n The Internet is a wondrous thing is it not? I ...\n What? Is Jamie Foxx supposed to be funny?Does ...\n Well I have to say that I have waited for it t...\n Relative to other Columbo movies, this can onl...\n This early Anime movie was a rather good film ...\n PLEASE TAKE A MINUTE TO READ MY ENTIRE REVIEW....\n \"Bela Lugosi revels in his role as European ho...\n Family Guy is easily one of the worst shows I'...\n This was truly dreadful! It had a terrible sto...\n This film was pure trash. Not the worse film e...\n If you're looking for a not-so-serious mob mov...\n Fox's epic telling of one a America's greatest...\n It's certainly a direct-to-video, but the stor...\n When Northfork debuted at the Cannes Film Fest...\n I am stunned at the negative comments that I h...\n Very nice movie! I was browsing the channels o...\n Cracking good yarn with all the actors giving ...\n I had read the newspaper reviews of this film ...\n I bought a DVD collection (9 movies for 10 Eur...\n this was a fantastic episode. i saw a clip fro...\n To be honest, I didn't like \"Executive Decisio...\n When one of the stars of a movie is named Stic...\n If (as I just pointed out in THE GOAT) Keaton ...\n WEEE this is still jolly good fun! As with mos...\n No redeeming features, this film is rubbish. I...\n Take an utterly stupid story. Couple it with u...\n I give this movie 3 out of 10 because I have w...\n When a small town is threatened by a child kil...\n Thanks to this fungal film I do NOT want my Ma...\n this movie was one of the best disney movies i...\n If you're a fan of the original series, do NOT...\n \"Magnolia\" is a preposterous, bewildering acti...\n Eugene O'Neill is acclaimed by some as America...\n Leno talks through his punch lines. This spoil...\n I was around 7 when I saw this movie first. It...\n Alejandro (Alejandro Polanco), called Ale for ...\n This would probably be a good film to see....p...\n Once in a while i like a good horror movie, so...\n Ok, where do we start with this little gem? Mu...\n I never trust the opinions of anyone regarding...\n Spielberg's first dramatic film is no let-down...\n The action scenes was quite good. But the plot...\n I saw this movie today and I have to say, it w...\n I wanted to see it because of two reasons. One...\n I saw this movie when it first came to the the...\n Ok, so there's always people out there that se...\n Military training films are becoming so common...\n Where is it written that sequels must suck? Sc...\n When teenagers go on a trip in a camper van th...\n Anthony Wong plays Lok,a husband whose wife is...\n May I please have my $13.00 back? I would have...\n First, let me confess that I have not read thi...\n This movie is another fine example of what Jer...\n I can't really remember any details of this mo...\n A four-and-a-half-hour O'Neill play gets boile...\n In the midst of a documentary about his parent...\n Buddy Holly was a pioneer and victim of the ea...\n The film begins with a 30 minute explanation a...\n i know you've read that before, on countless o...\n When I saw this movie I think I was a freshman...\n My Santa Lucia Choir was chosen to be in this ...\n I have seen the trailer for this movie several...\n Ten years before \"The Matrix\" and hot on the h...\n Jason Lee's pecks are back! If that's what you...\n Bo Derek's beauty and John Derek's revolutiona...\n My title just about sums this heap of crap up ...\n Mating Game is a charming, wonderful movie fro...\n Leni Riefenstahl would be embarrassed by the d...\n An expedition party made up of constantly bick...\n It's funny because I read all the reviews on t...\n Wallace & Gromit have been around for some tim...\n The Merchant of Four Seasons is a film about a...\n A battleship is sinking... Its survivors, hang...\n It's probably a cultural thing---somehow, the ...\n When I see a movie, I usually seek entertainme...\n I was attracted to seeing this movie because o...\n If you like your films to pull your emotions o...\n Have just seen this film, in Australia on sate...\n The mystery and its solution was a great noir ...\n Can I just start by saying I'm a fan of bad mo...\n I spotted this film in a branch of the Duane R...\n Jim Henson's Muppets were a favorite of mine s...\n Somewhere near the bottom of the film studio l...\n The only thing that prevented this flick from ...\n Earth has been destroyed in a nuclear holocaus...\n Having discovered the Ring trilogy, I have bee...\n You got it right! Bobby was Mike's imaginary f...\n A friend and I went to see this movie. We have...\n A note to all of you budding film writers: Stu...\n Hubie -- like Stanely the troll from Bluth's A...\n This film has a weak plot, weak characterizati...\n I love foreign films and this is among the bes...\n This is easily the best of the summer camp mov...\n Just okay horror film about a nice suburban fa...\n A woman (Sylvia Kristel) seduces a 15 year old...\n The 12th animated Disney classic is a reasonab...\n Another good animation from Disney. Sequels ar...\n This is a pretty simplistic romance. Girl find...\n am a hardcore horror/thriller fan...when i was...\n \"Once upon a time there was a charming land ca...\n Forgiving the Franklins is the best film I hav...\n Okay, this may not be the most sophisticated m...\n Another nice entry in the Crime Doctor series ...\n I came across An Insomniac's Nightmare while l...\n I don't know if I'd go as far as to say that t...\n The only way this is a family drama is if pare...\n Probably the most whimsical installment of the...\n Let me give a quick summery of the film: A rot...\n I've seen three of the Animatrix episodes, and...\n for my opinion, the middle of the film, specia...\n Historically awful. Scarcely an accurate momen...\n \"Bedknobs and Broomsticks\" is a magical advent...\n I have absolutely no idea why I watched Ali G ...\n If you are hoping for ANYTHING new, you have c...\n What can I say about Cruel intentions 2? Well,...\n The original \"les visiteurs\" was original, hil...\n I hesitated seeing this movie, having really e...\n While out divining for water, a young psychic ...\n There is no way to avoid a comparison between ...\n I won't spoil it for you. Although you probabl...\n One of the great things about many of the supe...\n If asked how I would define the word \" Shallow...\n This film, for an after school special, isn't ...\n I heard they were going to remake this French ...\n First off, I'am a horror fan. But this \"Tobe H...\n This movie is everything but the true story of...\n Much like Tinto Brass (\"Caligula\"), the people...\n My main criticism is quite simply that it isn'...\n I went into this movie after having read it wa...\n I agree totally with another of the reviewers ...\n This movie is written by Charlie Higson, who h...\n This movie really is that bad, and I'm normall...\n Johnnie To's ELECTION has some cool music on t...\n Boring, utterly predictable soap opera. Mary T...\n I've been waiting years for THE DEAD to come o...\n Set in the 1970s Los Angeles, Christopher Boyc...\n Ravi Chopra wrote this film 40 years back, wan...\n Tom Wolfe's sprawling, brilliantly observed sa...\n The Gospel of Lou was a major disappointment f...\n I was pleasantly surprised I quite liked this ...\n This is one of the strangest things on TV. It ...\n I have no idea what these people were thinking...\n I waited almost 25 years to see this movie, th...\n A somewhat dull made for tv movie which premie...\n The Movie Freddy's dead the final nightmare is...\n when i first saw that this movie was going to ...\n The summary provided by my cable TV guide made...\n Yes, Keaton looks like he really did enjoy mak...\n WHEN FRIENDSHIP KILLS, in my opinion, is a ver...\n When this movie was made in 1980, I was a teen...\n If you thought \"ROSEMARY'S BABY\" was bad, this...\n Christ. A sequel to one of the most cloying fi...\n Anna (Charlotte Burke), who is just on the ver...\n This movie scared the crap out of me! I have t...\n This film was really bad whether you take it a...\n I can't see how a film of this quality only ge...\n Maybe the best part of the show is the fact th...\n While the 3-D animation (the highlight of the ...\n I'm all for a \"bad\" horror movie but this was ...\n When the long running 'Happy Ever After' came ...\n These critics need to find a new job!!! This m...\n Okay, I like to give the benefit of the doubt....\n This movie displays the kind of ensemble work ...\n It's 1978, and yes obviously there are too man...\n I first saw this film when it aired on the now...\n I watched this film many years ago on TV and t...\n I'm actually watching this film as I write thi...\n I honestly had somewhat high expectations when...\n I don't know what Chasidik movement was this f...\n This movie tries its darndest to capture that ...\n Well........how and where do I start to descri...\n A brash, self-centered Army cadet arrives at W...\n Although I was born in the year that this movi...\n After seeing MIDNIGHT OFFERINGS I am still con...\n Because it's late and i'm running short on voc...\n The Beguiled is a pretty satisfying film for t...\n One of director Miike Takashi's very best. It'...\n This show is pathetic. I can't even begin to i...\n I liked this movie.<br /><br />No one I know l...\n Tacky, but mildly entertaining early 90's soft...\n I watched this last nite with an open mind. So...\n I absolutely recommend this movie to anyone wh...\n Unusual film about a man who befriends his soc...\n I happened to see this film on a flight from P...\n Man, even Plan 9 From Outer Space is better th...\n If this is what's best in the Finnish cinema a...\n Now, I like sci-fi cartoons. However, when \"Ro...\n It happens often, while growing up, a Hollywoo...\n I attempted watching this movie twice and even...\n One thing is for sure...you should not watch t...\n I like the time period, I like the attempt, bu...\n Two teenagers in the north-east of England are...\n The box for \"To Die For\" suckered me in -- a s...\n In this election year, where so much idealism ...\n Holy crap this movie was bad. I watched it jus...\n A fabulous film. With everything you could wan...\n \"The polar Express \" was an awful movie .What ...\n Ah yet another Seagal movie.In no less than a ...\n I first saw this film in 1980 and it touched a...\n But at least this movie got what it deserved -...\n Ted Nicolaou made a lot of great horror and fa...\n What garbage, is there actually no part II? If...\n Alice (Florinda Bolkan), a translator living i...\n Of course, how could he. He obviously co-opted...\n I thought this movie was really good. It ends ...\n In Hazzard County, Georgia, cousins Bo and Luk...\n ...now please move on because that's getting o...\n Melvyn Douglas once more gives a polished perf...\n The comparison to Sleuth, the earlier stage-pl...\n The story told by The Cranes are Flying is not...\n When I stepped into the theater, I thought thi...\n If I have to give this movie a score on a line...\n Wayne Wang's direction may be the ingredient w...\n This is supposed to be the story of the life o...\n So what is one to do if you are a porno star w...\n and rent a GOOD horror movie. It's like the wr...\n Dreamgirls, despite its fistful of Tony wins i...\n OK I went to this website before I watched thi...\n During university, our Philosophy professor, M...\n Absolutely enjoyable singing and dancing movie...\n After a few misfires, we are still waiting for...\n I had a really hard time making it through thi...\n Lauren Himmel's debut movie is well directed w...\n It is a surprising movie that gets you in your...\n My bad film guru (and the president of the Exp...\n The writers and producers of this little outin...\n Ettore Scola is one of the most important Ital...\n This piece ain't really worth a comment.. It's...\n I hadn't heard about Brashear before I watched...\n Lucille Ball tries to look 30 years younger th...\n I'd never heard of this Aussie horror prior to...\n This is why i so love this website ! I saw thi...\n Don't waste 90 minutes of your time on \"Fast F...\n Unless there's some huge ironic conspiracy goi...\n \"Gandhi as a husband and father?\" has always b...\n The movie contains a very short scene of Deneu...\n Recently I borrowed a copy of this mess of a m...\n Now we were chosen to be tortured with this di...\n This movie was SO stupid I couldn't believe wh...\n This movie is maybe the most touching and upli...\n This movie was horrid and at the end made me w...\n I usually enjoy films like this. It's shot doc...\n Great movie, enough laughs and action for any ...\n With a cast like this, I knew the acting would...\n I was very impressed with this small, independ...\n A neat 'race against time' premise - A murdere...\n I have just started watching this show. Its ai...\n Jack and Kate meet the physician Daniel Farady...\n Very silly high school/teen flick about geeks ...\n It looked cool from the movie sleeve, but afte...\n Arguably the most disgusting thing to come out...\n I am guessing the reason this movie did so wel...\n I have just seen this delightful classic again...\n This film, like the first one (\"The Man From S...\n First off, I would just like to say what a big...\n John Cassavette's decided as his first film, o...\n When Uwe Boll, cinema con man extraordinaire, ...\n A swedish splatter movie? Has the world gone i...\n Butter Battle is an entertaining story about t...\n I never really thought about watching this fil...\n I think that this film has become an important...\n What we know of Caravaggio suggests a struttin...\n Nightmare Weekend stars a cast of ridiculous a...\n I saw this film when it first came out and hav...\n I took a group of young people who were the sa...\n Up until the sixth and last episode of the Sta...\n I really enjoyed this movie. During the movie,...\n This was fun to watch, spookily atmospheric an...\n How to lose friends and alienate people is dec...\n The combination of Dan Haggerty (Elves) and Li...\n Have you ever read a book, then seen the movie...\n Ok, first I have to point the fact that when I...\n This is without a doubt the most stunning and ...\n I wouldn't say this is a *bad* movie. Unfortun...\n Giorgino can to some people look a bit long bu...\n Well, I've watched this movie for over 25 year...\n The spoilers in this review are offered as a p...\n First of all, despite the low rating on this s...\n Watching It Lives By Night makes you wonder, j...\n Watching Smother was perhaps the longest not-q...\n I saw this movie the other day in a film schoo...\n Following the disasterous Revolution, this fil...\n The last (I believe) of the movies The Boys ma...\n I have watched Farscape from first episode to ...\n Director and playwright Richard Day adapted hi...\n I'll tell you what happened, some people with ...\n Accepted is one of the best teenage comedies I...\n Randolph Scott is heading into Albuquerque to ...\n In reality that happened: the royal mother in ...\n First let me say the director has some wonderf...\n Stewart is a Wyoming cattleman who dreams to m...\n A genius. My genius. I remember the exact seco...\n I guess if a film has magic, I don't need it t...\n I wonder sometimes if maybe Meryl Streep has b...\n In the classic sense of the four humors (which...\n I loved the Batman tv series and was really lo...\n I loved the first \"Azumi\" movie. I've seen Ms....\n ***SLIGHT SPOILERS***<br /><br />A hunchback 1...\n I am appalled and dismayed that the Network ha...\n This is s superbly crafted top-notch Washingto...\n First, nobody can understand why this movie is...\n Despite the fact that there were aspects of th...\n This is a bizzare look at Al's \"life\", back wh...\n this movie is extremely funny and enjoyable,wi...\n I saw this movie at the 18th Haifa film festiv...\n Gene Tierney and Dana Andrews, who were both s...\n I saw this only because my 10-yr-old was bored...\n What a good film! Made Men is a great action m...\n Fifteen years later and Paris Is Burning is st...\n My parents took me to this movie when I was ni...\n Truly amazing film, the concept as a possible ...\n I have been using IMDb for years and I never w...\n I watch LOTS of bad films, LOTS!!!!!! It's kin...\n There is only one word that describes this fil...\n Don't read anything about this movie (especial...\n This film has got so much in it. Prehistoric s...\n A very interesting plot of the film based on t...\n A great performance by Emily Grace! I stumbled...\n what can i say about this film that hasnt alre...\n Like \"The Blair Witch Project\" before it, \"Hat...\n This movie is not only about feelings and huma...\n Transcendental, sophisticated, incisive, emoti...\n A boring movie about a miserable loser...that'...\n This series it's \"something different\". Someti...\n A less than redemptive hunka junk that is merc...\n <br /><br />***************************MILD SP...\n There is no denying that Ealing comedies are g...\n Upon the first viewing, I found this tale to b...\n I love a good Western movie, but this was more...\n I haven't seen a film in a long time that move...\n Made it through the first half an hour and des...\n Batman Returns is a really dark movie, that sh...\n ANY GUN CAN PLAY (2 outta 5 stars) Totally rou...\n The Mod Squad isn't a movie, it's a void. That...\n Watching this film caused quite an emotional r...\n Page 3 is a great movie. The story is so refre...\n Eaten Alive plays out like a bad rehearsal for...\n This is a delightful movie that is so over-the...\n Zeoy101?? Really, this has to be one of the mo...\n Anyone who has watched Comedy Central around m...\n I've always knew Anne DeSalvo was a great char...\n It's some years since I've seen this movie, so...\n This is according to me a quite bizarre movie ...\n I enjoyed this programme immensely. It is exce...\n I can't say this is the worst film of all time...\n Thirst<br /><br />I found that this film was b...\n I've waited a long time to see DR TARR'S TORTU...\n Maybe one of the most entertaining Ninja-movie...\n Richard Norton really lights the screen up in ...\n I don't understand why this show didn't go on ...\n If the redundancy of getting off the boat, on ...\n Tom Stern and Jeremy Slate are swing bachelor'...\n If you are the sort of person looking for a re...\n Certain elements of this film are dated, of co...\n The first and second seasons started off shaki...\n Great comedy from Charlie Chaplin. I've seen C...\n For the viewer who comes upon it long after it...\n There are some bad movies out there. Most of t...\n This is only the fourth effort I’ve watched fr...\n As many others have stated, this is a terrible...\n If you find the first 30 minutes of this film ...\n it would be a shame if one has yet to watch sp...\n \"Magic\" isn't too strong a word for the spell ...\n Madhur Bhandarkar has given it all raw. But th...\n What more could anyone want? He's a history le...\n If you are having trouble sleeping or just wan...\n From the start you will like Sam Elliott's cha...\n After watching this film I experienced a new s...\n Don't get the impression from other reviewers ...\n I can imagine why he'd want to die, after star...\n Plot: an amorous couple decide to engage in so...\n People tend to complain about the number of fi...\n The traditional Western is synonymous with wid...\n This movie is based on the art of Frank Frazet...\n Lucio Fulci's \"Don't Torture a Duckling\" paint...\n When this cartoon first aired I was under the ...\n <br /><br />As usual, I was really looking for...\n The creature? Yeah, it and the movie it stars ...\n Very businesslike authority with little respon...\n This is an early film \"Pilot\" for the hit Cana...\n Now before I tell you the synopsis this is a n...\n A cheap and cheerless heist movie with poor ch...\n I have always enjoyed the Pokemon movies. Yes,...\n Idiotic hack crooks, a babe, a safe, a plan an...\n Jessica Bohl plays Daphne, the sexually precoc...\n Oh my gosh i live in Kentucky and when Mellisa...\n Chi-hwa-seong (Painted Fire) recounts the life...\n \"Half Empty\" is a hilarious musical about the ...\n This film is quite boring. There are snippets ...\n Ok, so I saw this movie at this year's Sundanc...\n Based on a William Faulkner short story, Two S...\n Seeing the names of the starring actors (Stath...\n One of the most unheralded great works of anim...\n I love movies. I love independent efforts and ...\n This film is full of charming situations and h...\n I don't know if this is one of the SyFy Channe...\n I just read the plot summary and it is the wor...\n Maybe it's unfair to dislike a movie for what ...\n Growing up as of child of the movies, one of t...\n I just sat in the theater bored as hell, i wan...\n Will Smith is smooth as usual in the movie Hit...\n At last! A decent British comedy that isn't ce...\n Sometimes, things should just not be made. And...\n Walking With Dinosaurs is an amazing Documenta...\n Victor Nunez imbues this unsentimental tale of...\n The Sarah Silverman program is very similar to...\n My friends and I rented this from Blockbuster ...\n \"Crimes of Passion\" is a film that is disappoi...\n Unusually cold and silly drama from director S...\n I love the newer episodes with CJ and Grandad ...\n \"Subconscious Cruelty\" has to be one of the mo...\n From the epicenter of the cultural globe, four...\n I'm certain that people from USA don't know an...\n The best thing you can say about this movie is...\n Again, I've read all of the comments posted he...\n This movie probably began with a good idea but...\n I went to the cinema to watch a preview of thi...\n Enchanted April was one of Harry Beaumont's la...\n I've seen Mystery Men cop a bit of stick in th...\n I guess when \"Beat Street\" made a national app...\n This is a by-the-numbers horror film starring ...\n Sandra Bullock is my favorite actress..... But...\n I should have figured that any movie with the ...\n If Deborah Messing were not already cast as \"G...\n i was having a horrid day but this movie grabb...\n EARTH (2009) ***1/2 Big screen adaptation of t...\n So, Wynorski remakes Curse of the Komodo a sec...\n This short was in part four of the \"Short Cine...\n Stan Laurel and Oliver Hardy are the most famo...\n but it's worth watching for Boyer, Lorre and P...\n This subject matter deserves a much better scr...\n I was expecting a lot better from the Battlest...\n This has to be one of the WORST movies I have ...\n Marjorie, a young woman who works in a museum ...\n It would seem a given, but if a viewer forgets...\n I was overtaken by the emotion. Unforgettable ...\n I despise horror movies, that is no secret. No...\n my friends and i saw this film about a week ag...\n It resembles so much to movies like PULP FICTI...\n Jean-Jacques' career began with his essay answ...\n COME ON!!! They did that on purpose!! Two of m...\n Like one of the other reviewers (might have be...\n One of those movies in which there are no big ...\n One word: suPURRRRb! I don't think I have see ...\n Betty is an understudy for the lead in a produ...\n This film, won't win any awards for greatness....\n I had been avoiding this movie for sometime......\n Most of these reviews are dead on, so I'll cut...\n I really tried, but this movie just didn't wor...\n This movie is about human relationships. Charm...\n I went to see \"Evening\" because of the cast. I...\n I have seen virtually all of Cynthia Rothrock'...\n Well, i must admit, when i saw the trailer for...\n Oh, the sixties. There were some interesting f...\n I saw this Documentary at the Cannes Film Fest...\n Notice that all those that did not like and en...\n I really enjoyed this movie. It challenged my ...\n Don't get me wrong, I'm a huge fan of many of ...\n THE ALARMIST is so abysmally scripted that you...\n Bizarre. This movie is supposed to be based on...\n This is an extremely dense, somber, and compli...\n It may be a little creaky now, and it certainl...\n I was quite a fan of the series as a child and...\n Excellent view of a mature woman, that is goin...\n I sincerely consider this movie as another poo...\n Great movie. Good acting ,a wonderful script. ...\n I remember seeing this movie when I was about ...\n Normally, I have much better things to do with...\n Having lived in Japan for several years this m...\n Take your basic Frankenstein flick, inject som...\n There is nothing unique in either the TV Serie...\n This is the finest film ever made to deal with...\n i have seen this movie about 50 times already ...\n The film had some likable aspects. Perhaps too...\n Computer savvy John Light (as John Elias) goes...\n <br /><br />First of all, I reviewed this docu...\n This film screened at the American Cinemathequ...\n This is a long lost horror gem starring Sydney...\n For awhile I was hooked on shows like Ghost Hu...\n I cannot accept the negative comments of other...\n I just saw the DVD and loved it. In particular...\n As a Pagan, I must say this movie has little i...\n I saw the omen when i was 11 on tv. I enjoyed ...\n It is not obvious from viewing this film (so I...\n you can tell they spent 5$ making this.it is a...\n Even a awful 1 is to much for this film, every...\n Walker Texas Ranger is one of the worst shows ...\n There is nothing remotely scary about modern \"...\n Unfortunately, due to a sluggish start, I can'...\n A hit at the time but now better categorised a...\n When a small glob of space age silly putty lan...\n I'm not sure how this could have been better, ...\n As a child I always hated being forced to sit ...\n The Plot: A group of young people with ridicul...\n Having enjoyed Koyaanisqatsi and Powaqatsi I w...\n I was in my early 20's, just graduating from c...\n Totally brain-dead actioner made in the Philip...\n Carnosaur 3 is bad... awfully bad. Bad to the ...\n I just spent about 1.5 hours waiting for the m...\n This movie has no heart and no soul; it's an a...\n The Booth puts a whole new twist on your typic...\n When I found this film in my local videostore ...\n Herman has made northern drama his own with Li...\n The plot: A crime lord is uniting 3 different ...\n In light of bad reviews - or car crashes - I f...\n Don't kill me fans but I have something to say...\n This documentary was nominated for an Oscar an...\n Simply delightful claymation feature from Nick...\n I simply love this movie. It is a perfect exam...\n Someone once defined what is the definition of...\n WWE Armageddon, December 17, 2006 -- Live from...\n Thats right I can't watch Comedy Central anymo...\n This horrible! The acting, costumes, productio...\n The great James Cagney, top-billed in big lett...\n All credit to writer/director Gilles Mimouni w...\n 'Tycus' is almost as bad as a science fiction ...\n This was such a great series for Black folks a...\n If there was a scale below 1, it would get a -...\n I always wrote this series off as being a comp...\n The most agile fat guy in martial arts does it...\n A beautiful reflection of life's desperation a...\n The master of cheap erotic horror, Rolfe Kanef...\n Over the past year, Uwe Boll has shown margina...\n I really loved this movie. I thought it was ve...\n What the movie The 60s really represents (to t...\n Here's yet another blasphemous European story ...\n One doesn't get to enjoy this gem, the 1936 In...\n An interesting and involved film about a \"life...\n This is just my all time favorite movie. Nothi...\n I have the entire Weissmuller Tarzan series on...\n Now here is a movie that does something that h...\n First of all, what is good in the movie ? Some...\n This film is terrible. Not only is the story u...\n Welcome to Collinwood is one of the most delig...\n Having had a great grandfather be captured and...\n At times, this overtakes The Thing as my favou...\n The Museum of the Moving Image here in New Yor...\n A scientific experiment designed to create a s...\n My friend recommended this movie to me.Is shou...\n I entered the theatre intending to pass a plea...\n Erroll works for The Department of Public Safe...\n I watched this movie in the wee hours of the m...\n This movie clearly has an agenda, which could ...\n \"The death of a performer at a Broadway stage ...\n I like to think I have seen it all. SS DOOMTRO...\n Couple having financial trouble gets a box del...\n David Mamet is a very interesting and a very u...\n At first sight The Bothersome Man seems like s...\n This film is the best film Jim Carrey has ever...\n When Tsui Hark experiments, nothing and no one...\n Wow, what a snoozer. Definately one of bacon's...\n Mario Van Peebles pops up for less than a five...\n Poorly acted, poorly written and poorly direct...\n I rented this film for $5 and felt sorry I did...\n (Only minor spoilers except as noted).<br /><b...\n What surprised me most about this film was the...\n \"Ko to tamo peva\" is one of the best films I e...\n The form of the film is that of a suspense sho...\n This is a badly made, poor remake of Bimalda's...\n I have to differ from the other comments poste...\n I've rented and watched this movie for the 1st...\n You may consider a couple of facts in the disc...\n I liked Timothy Dalton very much even though h...\n This isn't quite the best Canadian film ever, ...\n When I first saw the cover of this movie (a gi...\n I just don't understand why this movie is gett...\n It is not generally my practice to review movi...\n ** WARNING - CONTAINS SPOILERS! **<br /><br />...\n Scanning through the comments, there doesn't a...\n This film was quite a surprise. I wasn't expec...\n Compared to Battle of Britain, this is a real ...\n Young beautiful Eva (Hedy Lamarr) marries an o...\n I found this very touching as Spike and Heaton...\n One of the myths of the early sound era is tha...\n **1/2 for this Diane Keaton farce.<br /><br />...\n Take a SciFi Original Movie and mix in a littl...\n The person who wrote the glowing review of thi...\n this is not just a bad film, it's one of the w...\n I remembered this awful movie I bought at Came...\n Another of those flimsy stories coupled with m...\n I've been reading through some of the other us...\n Countless TV displays and the memorable appear...\n Kirk and crew land on a lonely planet where th...\n If you take the films, Mad Max, Beyond Thunder...\n Even duller, if possible, than the original (I...\n Although i am inclined to agree with the other...\n There are two things that I noticed in this fi...\n Like classic Hollywood musicals, the plot is j...\n This is by far the worst thing I have ever see...\n I had never seen a silent movie until July 24,...\n The title is onomatopoeic, the sound of a stre...\n Scary Movie 1-4, Epic Movie, Date Movie, Meet ...\n I saw \"The Reader\" at a film festival in Manha...\n Terrible. The only way I could even begin to c...\n This was Chaplin's first all-talking picture, ...\n By all the fawning people have been doing over...\n With the current trend of gross out humor, thi...\n I made the mistake of watching \"Dark Star\" (19...\n Since musicals have both gone out of fashion a...\n As soon as I heard about this film I knew I ha...\n This is the classic case of an excellent film ...\n In the immediate aftermath following World War...\n While not as famous as some of their other col...\n Pinjar is one of the few movies that really le...\n This is a very sweet coming-of-age movie, very...\n ***SPOILERS*** ***SPOILERS*** If one were to r...\n It is difficult, today and in the US, to under...\n I thought it was a very funny movie. I love do...\n This film seems to be completely pointless. Th...\n I know it was supposed to be a long walk, but ...\n If Fassbinder has made a worse film, I sure do...\n i bought this DVD because it has kari in it an...\n I wasted my time and gave this show a chance. ...\n This movie is simply incredible! I had expecte...\n Having endured this inaccurate movie I will ad...\n This is a great movie for all Generation X'ers...\n Not the most successful television project Joh...\n *SOILER* It's fake! The whole thing is a fake!...\n The worst film ever, with characters from Carn...\n I'm very surprised that so many people don't l...\n Note: I've tried not to give away any importan...\n Hahahahah Probably one of the funniest movies ...\n George Cukor directs a brooding and cynical cl...\n One of the worst movies I've ever seen. Yes, I...\n I saw this when it was in the theater, it star...\n This is a great idea for a film but it, unfort...\n \"Lion King 1 1/2\" is the funniest non-theatric...\n wow, i just got one watching this.<br /><br />...\n This was painful! Recently given away as a fre...\n \"Only the Valiant\" qualifies as a gritty good ...\n \"The Shooter\" was a different type of film for...\n This production was quite good. The usual fabu...\n It seems there's a bit of a curse out there wh...\n Steve Carell plays Dan Burns, newspaper agony ...\n I remember watching this movie when it came ou...\n This has an interesting, albeit somewhat fanci...\n This is a family movie set in 1950's rural Ame...\n Russell T Davies has been tasked with re-creat...\n What was Franco Zeffirelli thinking? Was Holly...\n In Rosenstrasse, Margarethe von Trotta blends ...\n I've given 'Kôhî jikô' a low score not because...\n A DOUBLE LIFE has developed a mystique among f...\n I think it was a pretty good film. It shows ho...\n Did you know, that Anthony Kiedis, (singer fro...\n Considering all of the comedies with a militar...\n In the 60's, having as the background the rehe...\n My family and I enjoy this show and find it a ...\n It took me years to finally catch this gem of ...\n This documentary (or I should say mockumentary...\n iCarly is about a teenage girl named Carly Sha...\n So unfortunately me and my mate watched this!!...\n Being the Beatlemaniac that I am, I approached...\n If you want to see a Horror Film which is Horr...\n I read a few reviews of the movie and got the ...\n Thank you Mario Van Peebles for informing us o...\n I was lucky enough to see this at a pre-screen...\n I have to say it is a sign that this film appe...\n You can tell a Lew Grade production a mile off...\n To watch this film from start to finish withou...\n A Kafkaesque thriller of alienation and parano...\n This film is so 1980's and that is what I like...\n This may not be the worst movie to ever win be...\n The \"old dark house\" sub-genre that dominated ...\n For the knowledgeable Beatles fan, the main va...\n Carrot Top's \"Chairman of the Board\" and his A...\n This was a new alltime low among westerns. The...\n While most of Wayne's B efforts are entertaini...\n After consuming \"Human Pork Chop\" and properly...\n I saw this fine flick shortly leaving college....\n I am currently watching this movie and I have ...\n There are so many good things to say about thi...\n This is so to say a sequel to batman the anima...\n Once again I took a chance and rented this bag...\n An egotistic major league baseball player is f...\n This movie was lacking in a lot of areas. It's...\n \"Wild Rebels\" was probably a fun second film a...\n Just as the whole cast and crew knows f*** all...\n Two great stars and a legendary Director creat...\n Wow...sheer brilliance.<br /><br />Turning a t...\n After the death of all senior officers, Comman...\n As a Sci-fi movies fan I also like Alien. But ...\n A very well directed version of Eric Bogosian'...\n I wish I could laugh again as much as when I s...\n Everyone knows the so-called plot, so let me c...\n I watched this film last night with anticipati...\n I like all different types of movies, so this ...\n It is such a shame that so many people \"love\" ...\n To be fair, I couldn't bear to watch this movi...\n Rowan Atkinson's Mr. Bean ranks right up there...\n Watching this again after a gap of many years ...\n It's really too bad that John Candy wasted his...\n I picked this one up on a whim from the librar...\n drss1942 really took the words right out of my...\n Did the movie-makers even preview this before ...\n Admittedly Alex has become a little podgey, bu...\n If you saw the grudge, a another mediocre ghos...\n I was out-of-town, visiting an old friend. Aft...\n If I compare two films with Sacha Cohen, Borat...\n Nothing great here but a nicely acted story ab...\n Uninspired, pretty much all around. The only e...\n When you read about this film you wanna cringe...\n The Russian space station 'Avna' with a crew o...\n This movie had so much potential - a strong ca...\n Any person, claiming this movie to be a ninja ...\n THE SUNSHINE BOYS was the hilarious 1975 scree...\n Somebody needs to send this Uli Lommel guy bac...\n Revenge is one of my favorite themes in film. ...\n It's another variation on the oft-told tale of...\n That this film flopped at the box office, and ...\n I reached the end of this and I was almost sho...\n There are three movies with this animation sty...\n Note: I will reveal a key part of the plot, bu...\n The original Airport (1970) was a classic of i...\n This home movie is basically scandalously rubb...\n I think it was François Truffaut who said that...\n Ripping this movie apart is like shooting fish...\n First there was Tsui Hark's Zu Warriors (2001)...\n zero day is based of columbine high school mas...\n This looks so good on paper - Matt Damon, Lawr...\n In the Realm of the Senses is a beautifully fi...\n This movie and several other movies from the 1...\n THE PERVERT'S GUIDE TO CINEMA (2007) **** <br ...\n For those of us that lived thru those weeks of...\n Being a fan of Andy Goldsworthy's art for a wh...\n When will the hurting stop? I never want to se...\n This movie takes the psychological thriller to...\n So many great talents were utilized in \"The Be...\n this is a dreadful adaption of Charles Kingsle...\n Pointless, humourless drivel.....meant to be a...\n Laurence Fishburne is a fine actor, and deserv...\n I was interested in seeing this movie because ...\n This is easily one of the best movies of the 1...\n The reason I think this movie is fabulous is t...\n About time they released this movie on DVD. I ...\n Yes, this is one of the better done television...\n WRITTEN ON THE WIND, directed by Douglas Sirk ...\n The DVD version consists of 2 episodes, the pa...\n I thought this movie was great, not only becau...\n I've had a lot of experience with women in Rus...\n 'This Life' is truly as bad as it gets. Its ca...\n I always liked listening to Buddy Holly and fe...\n This movie was made-for-TV, so taking that int...\n This excellent series, narrated by Laurence Ol...\n I loved this movie since I was 7 and I saw it ...\n Like in \"Les amants du Pont-Neuf\" two outsider...\n Latest attempt to revive the series actually b...\n I grew up in Brazil and I used to visit and ma...\n I had the pleasure of viewing this movie early...\n I just watched it. A couple of laughs, but not...\n Before watching this film, I could already tel...\n Based on what little i have seen of this show ...\n It may interest people to know that this film ...\n Yeah, a long time ago it turned into a tourist...\n LOC could have been a very well made movie on ...\n Sorry, I don't have much time to write. I am n...\n I like Dylan Moran from his work in Black Book...\n I would say that this film is disturbing. The ...\n Peter Weir's first international success, THE ...\n George Sluizer's original version of The Vanis...\n Unremittingly bleak and depressing, the film e...\n \"A young woman unwittingly becomes part of a k...\n Shahrukh Khan and Yash Chopra films have never...\n The 1983 BBC production of \"Jane Eyre\" starrin...\n Let me start by stating that I usually do like...\n Very literate, intelligent drama about a group...\n This unassuming, fairly routine series deserve...\n I have always liked Bill Murray in films like ...\n This episode is a bit confusing. Some people s...\n Updating of the Bliss theme is merely the late...\n The minute you give an 'art film' 1/10, you ha...\n This film tells the story of a romance between...\n Booted out of heaven, a gang of horny naked fe...\n Like many situation comedies, \"The War at Home...\n I Caught This Movie On T.V. Last Night And You...\n Well, first of all, it's not a bad movie. It i...\n Around the late 1970's, animator Don Bluth, fr...\n The filmmakers neglected to connect the dots--...\n I first started watching The Outer Limits back...\n A group of cavers with a sad history take an a...\n The Story: Alain, a French policeman, is shock...\n I won't say this movie was bad, but it wasn't ...\n Yul Brynner is Major Surov, a singing, dancing...\n I couldn't agree more with another reviewer th...\n UP AT THE VILLA fooled me into thinking I`d be...\n End Game started well, the least said about th...\n Repetitive music, annoying narration, terrible...\n First be warned that I saw this movie on TV an...\n What do you do with a 14-inch cocked porn star...\n I remember the original series vividly mostly ...\n This movie was much better than I expected. Af...\n There is indeed much to complain about this mo...\n \"The Thing\" is John Carpenter's best movie. Me...\n Perhaps I'm not a sophisticate. This and Close...\n ******WARNING: MAY CONTAIN SPOILERS***********...\n I don't think I can add much more to what has ...\n There's some nice scenery to look at here,if y...\n It is not un-common to see U.S. re-makes of fo...\n Four teenage girls in a suburb of Los Angeles ...\n I thought the kids in the movie were great. I ...\n First off, I'm an American -- I haven't seen a...\n This film is on my list of worst movies ever m...\n This movie was a very good Universal Monster m...\n The movie was completely misleading and the bo...\n It's 1913. A studio prop boy spies the actress...\n This is right up at the top of my list of the ...\n Distributor: GOODTIMES home video <br /><br />...\n When the young Kevin gets the boat of his dead...\n This is probably the worst excuse for televisi...\n The makers have chosen the best people for the...\n Offside is the story of teenage-girls who trie...\n The message of Hero is quite clear: the idea o...\n I have been eagerly anticipating the opening o...\n If I were to create a movie thermometer, this ...\n 2003 was seen as the year of the Matrix, with ...\n \"Head\" is a film that has held up well since i...\n I couldn't keep from commenting after reading ...\n Like many people here, I started out finding m...\n If you want to see the true, vile nature of Co...\n I've read all the comments on this film. I am ...\n Though often considered Peter Sellers' worst f...\n Valentine is now one of my favorite slasher fi...\n Yes, that's right, it is. I firmly believe tha...\n This film is one giant pant load. Paul Schrade...\n Despite the other comments listed here, this i...\n As someone already said the Living Dead Dolls ...\n it brings to mind the writings of Stephen King...\n I haven't seen the original, but just wanted t...\n This is truly an awful movie and a waste of 2 ...\n The subsequent two seasons of this original se...\n After watching this film, I was left with a tw...\n \"Ordinary Decent Criminal\" is sort of based on...\n Ah, classic comedy. At the point in the movie ...\n This is the most confronting documentary I hav...\n These days Spielberg's \"The Color Purple\" is m...\n The scenery is pretty and the dog is cute. Oth...\n I can't remember exactly where i heard of them...\n I was lucky enough to have seen this film at i...\n Now first let me say I love god awful movies. ...\n Kevin Spacey is very talented, but unfortunate...\n This is absolute drivel, designed to shock and...\n This film is so bad I can't believe it was act...\n I'd read about FLAVIA THE HERETIC for many yea...\n The earlier part of the film was rather enjoya...\n I have it on VHS but its not a great copy as I...\n This has become one of my favorite movies and ...\n It's pretty good, all things considered. A mus...\n i loved this movie it was one of the years bes...\n This film is really something of a curate's eg...\n It was only the second year of the Academy but...\n I bought this movie sight unseen at a sci-fi c...\n Have wanted to see this for a while: I never t...\n These cartoon writers are unrelenting with the...\n This was one of the best war movies I've seen ...\n Doc Savage: The Man of Bronze is a horrible mo...\n Nothing new in this hackneyed romance with cha...\n the movie is precious, and cage is a babe. <br...\n I only watched the first 30 minutes of this an...\n \"Arahan\" adds nothing positive to the Kung Fu ...\n There was a time in the US that everything was...\n Anatomie was a German made Movie and subtitled...\n The characterization in this movie is among th...\n A precursor to \"Citizen Kane\" in its analysis ...\n This film seems to be well remembered as the t...\n I know, it's a movie. But when it comes to por...\n an very good storyline, good thrill to it ... ...\n Russian emigrant director in Hollywood in 1928...\n One of the worst romantic comedies (nay, worst...\n My wife and I like to rent really stupid horro...\n Being S Club Seven, the film already boosts an...\n Are we really making 'video nasties' again? In...\n That's what I thought, when I heard about the ...\n A heist film with Jean Reno, Matt Damon and La...\n I've heard that this move was put together by ...\n Jess Franco makes exploitation films, and he h...\n Really enjoyed this little movie. It's a movin...\n I read several mixed reviews and several of th...\n Absolutely one of my favorite movies of all ti...\n True stories make the best stories don't they?...\n I saw The Big Bad Swim at the 2006 Temecula fi...\n Actually I'm still in doubt if there's anythin...\n Let me say first off that I am a huge fan of t...\n I write this review just after hearing of Stan...\n The odd mixture of comedy and horror sometimes...\n Most movies I can sit through easily, even if ...\n I caught this on Showtime tonight and was amaz...\n I have seen this movie when it was released an...\n Mysterious murders in a European village seem ...\n \"It's like hard to like describe just how like...\n It's a simple fact that there are many of us f...\n Indian Summer! It was very nostalgic for me. I...\n In my work with the only nationwide non-profit...\n This sorry excuse for a film reminded me a gre...\n I caught a bit of this concert on public telev...\n Usually, when we use the word \"escapist\", we m...\n Watching Cliffhanger makes me nostalgic for th...\n The definition of an abomination as defined by...\n I agree with the previous comment, what a disa...\n I think that this was one of the most trite fi...\n This was a very disappointing movie. I would d...\n After a long run in the West End this charming...\n Just finished watching, can't say I was impres...\n Based on the actual event , this epic, is set ...\n Why is it that a woman cannot be a strong char...\n I kind of like JAG. It do have it´s charm but ...\n I don't really know whether Cabin Fever is sup...\n Richard Brooks' The Last Hunt was a film star ...\n There's hell to pay when you cross Nami Matsus...\n A series of vignettes, most of them spoofing t...\n When his in-laws are viciously murdered by a g...\n Dreamy young Ashton Kutcher (as Tom Stansfield...\n Great job! Was very exciting and had great stu...\n OK I for one thought the trailer was quite goo...\n So it might not be entirely historically accur...\n As Betty Sizemore (Renee Zellweger) secretly w...\n This is a truly wonderful love story. I liked ...\n What a sucky movie. This is without a doubt a ...\n Big splashy film of the Broadway music. Nathan...\n I saw this film early one morning in the early...\n \"A research scientist is experimenting with hu...\n In one of the best of Charlie Chaplin's length...\n Arthur Askey's great skill as a comic was in t...\n I had heard news about this film from anime-le...\n The central theme in this movie seems to be co...\n I don't know where to begin. Tara Reid needs t...\n I couldn't believe I spent $14.00 on this. The...\n There are some good things about the movie. Th...\n If you like horror or action watch this film A...\n To anyone who likes the TV series: forget the ...\n Dr. Marnie Bannister (Magda Konopka) is a horr...\n OK...ths film (like Segal's last few films) on...\n if.... is the cinematic equivalent of Sgt. Pep...\n Was there a single positive to this film? Crit...\n If you have seen this movie, then you will kno...\n Caught this movie on the tube on a Sunday. I t...\n All of the reviews here about how much ZP lack...\n Time travel into the past is tenuous at best a...\n Sure it takes place in the west, but the title...\n Writer-director Tony Piccirillo adapted his ow...\n This film was great!Tangi Miller and Flex did ...\n No spoilers here but I have been a fan since W...\n I just saw this film yesterday.<br /><br />My ...\n While the \"date doctor\" concept is the one thi...\n Oh My God! Please, for the love of all that is...\n Easily one of the ten best movies of the 20th ...\n The idea was awesome, the actors were incredib...\n There was not one single redeeming factor in t...\n There are many different versions of this one ...\n Let's see, here are the \"highlights\" of The Br...\n The accounts seem real with a human factor add...\n oh god where to begin......bad acting....chara...\n Thanks to the BBC for this show. I used to suf...\n I read James Hawes book. It was pretty neat, n...\n At first i thought that it was just about Eddi...\n The characters are annoying, immature, and fla...\n Demi Moore's character in the movie was select...\n I can see that the ratings for this film aren'...\n Based on Christy Brown's autobiographical nove...\n It's Valentines Day and we decided to stay in,...\n Mr. Carlin left our common forum in June of 20...\n Punctuating the opening credits sequence is a ...\n This film had all the ingredients of a good ad...\n \"Ruby in Paradise\" is a beautiful, coming-of-a...\n This movie has to be the worst film of 2007, i...\n Tian's remake is no good at all. I only click ...\n This is such a fantastic movie, a Western abou...\n The Kid - At 39 years old Russel Duritz has a ...\n Here's another of the 1940's westerns that I w...\n On my continuing quest to find the worst movie...\n The concept of this made-for-TV horror movie i...\n There's nothing particularly original about th...\n what a great little film, lots of good roles f...\n If anything, William Girdler was an opportunis...\n Before the Internet this movie could never hav...\n This film is definitely an odd love story. Tho...\n Real cool, smart movie. I loved Sheedy's color...\n I will never be a member of any club that woul...\n If, like me, you like your films to be unique,...\n I've watched this movie twice, and I plan to s...\n It is fitting on a musical Sunday to get your ...\n Because some people, like me, like to know EVE...\n Time line of the film: * Laugh * Laugh * Laugh...\n I think it was an overrated PG-13 crap! At lea...\n \"A Cry in the Dark\" is a masterful piece of ci...\n I am a huge Charlton Heston fan. He is without...\n This lesser known film starring Roy Thinnes (F...\n I liked this movie a lot. The animation was we...\n Marlon Brando had long since lost interest in ...\n I don't know much about the Rat Pack, and Fran...\n I thought this was a great action flick. A ver...\n I forsee many students now signing up for stud...\n The good news: the director is reportedly comm...\n I have a deep liking for this film despite it ...\n Yes, it's flawed - especially if you're into H...\n An entertaining first draft for \"North By Nort...\n It' s easier to watch this film if one views i...\n Out of all the Bat-films, Batman Returns is my...\n Disappointing film. Performance of actors is w...\n I have read all of Jane Austen's novels right ...\n This movie was probably one of the worst movie...\n This is not exactly what I would call a Mad Ma...\n This movie lacked... everything: story, acting...\n This sad romance is untellable because the dir...\n Any movie that shows federal PIGs (Persons In ...\n There is a really good movie lurking just bene...\n This an free adaptation of the novels of Clare...\n Okay. Who was it? Who gave Revolver 10 out of ...\n People talk about how horrible the script was,...\n Man, what the hell were the people who made th...\n Can this \"film\" be considered as a film? Imagi...\n A ruthless assassin has been hired to eliminat...\n This is probably one of the best thrillers I h...\n This must be the first movie I've rented and n...\n Plunkett and Macleane is an entertaining, fast...\n The Columbia Pictures Short Subject unit never...\n Burt Reynolds came to a point in his career wh...\n I anticipated the release of the film as much ...\n Great cast. Great acting. Unpredictable story ...\n A black guy fights ..... and supposedly wins ....\n I suggested renting this movie to my friend an...\n Somehow a woman working with a scientist puts ...\n Okay, so, someone, somewhere, a few years ago,...\n Since I am a fan of Natalie Portman, I had to ...\n A ham actor without a penny. Who better than M...\n 089: Footlight Parade (1933) - released 9/30/1...\n 1st watched 12/26/2008 -(Dir-Eugene Levy): Cor...\n Alexander Lou, star of classics such as 'The S...\n While Fred Schepisi's \"I.Q.\" doesn't really ha...\n I do not know if this movies problems are more...\n To anyone not familiar with c.S. Forrester's b...\n I sat through this movie this evening, forcing...\n Seeing as I hate reading long essays hoping to...\n This was touted as a sequel to Crash Dive, whi...\n So what is 'Batman Returns', anyway?<br /><br ...\n This is a awful re-make of a very good movie c...\n I thought it was an extremely clever film. I w...\n I just saw this at the Philadelphia Film Festi...\n This HTV series is beautiful. I strongly recom...\n \"Tank Girl\" was, I suppose, meant to be the \"B...\n I absolutely loved this show. Never understood...\n Man, I really enjoyed this, if only for Fred W...\n PUT THE CAMERA ON ME is a deceptively cute fil...\n One type of western I greatly enjoy is when th...\n Henry, a veterinarian (Paul Rudd), and his bos...\n I was hugely impressed with this movie, if for...\n Father of the Pride was the best new show to h...\n This is a well done action movie. There are pl...\n With a cast of stalwart British character acto...\n At the point in time that The Lady from Shangh...\n As a serious marathoner, I was seriously disap...\n Simply great movie no doubt about it. Great st...\n Not only did the effects and acting in this mo...\n Taylor Hackford wanted to make this movie for ...\n ELVIRA, MISTRESS OF THE DARK (1988)<br /><br /...\n This show was incredible!!! I've seen all thre...\n Being Cornish and brought up with the history ...\n Like its near contemporaries \"The Great Race\" ...\n I liked this movie for the most part, but have...\n To sum this documentary up in a few words is n...\n The earlier review is pretty much on target, w...\n An absolute classic of 80's scare flix. This o...\n This is the worst show. Buntch of grown up act...\n Okay, I had reasonably high expectations for t...\n Despite the potentially fascinating premise, S...\n Think Pierce Brosnan and you think suave, dapp...\n the director of this movie must have been ment...\n I rented this film purely on the fact that the...\n I have been meaning to see this flick for the ...\n Maximum risk is quite surprising to a person t...\n Thorn-BMI is out of business, before they stop...\n This movie didn't do it for me, an avid SNL fa...\n Does any one know what the 2 sports cars were?...\n Story-wise this isn't among the best or most c...\n Sorry this movie was a bad made for TV movie. ...\n This would've been a sure fire classic had the...\n The animation was good, the imagery was good, ...\n Cybil Richards directs another Full Moon/Surre...\n They had an opportunity to make one of the bes...\n I watched to movie today and it just blew my m...\n I am not a parent, neither am I a male. But I ...\n This shorter movie is the epitome the expected...\n Dead Gentlemen Productions has put together a ...\n This movie caught me by surprise. For years I ...\n There are many illnesses born in the mind of m...\n This is my first \"awful\" rating ever on IMDb a...\n The photography of this bid-budget production ...\n Scary.. Yes Scary!! Jam-packed with nudity (fr...\n This is one of the worst anime series I have e...\n It must say something about the state of our n...\n From the mind of Harry Alan Towers comes anoth...\n i will like to order this movie for the women ...\n The third and last part of the Bourne trilogy ...\n When I was little my parents took me along to ...\n A movie has rarely left me as cold as this one...\n The Western can be divided into many sub-genre...\n A very good film, focusing on a very important...\n Bravo! Morgan Freeman is an actor, who researc...\n An intense, dark action drama with unusually r...\n The story of Cinderella is one of my favorites...\n I was thinking that the main character, the as...\n Some good set design. Good songs, though like ...\n To anyone who hasn't seen this film yet, I hav...\n Portly nice guy falls for a luscious blonde; s...\n Not only was this movie better than all the fi...\n Warning: This review contains minor spoilers.<...\n 'Identity . . . . I am part of my surrounding...\n At one end of the Eighties Warren Beatty creat...\n I so love this movie! The animation is great (...\n This is a Very Very Boring and uninteresting a...\n I haven't laughed that much in a long time - a...\n If the Australian Post Office ever needed a pr...\n This film is a pure failure. I am a Steve Mart...\n This is a wonderful movie...it's funny, dark, ...\n Chalk this one up in the win column, this was ...\n The Life and Time of Little Richard, as told b...\n A very enjoyable film that features characters...\n If the movies are to be believed, Chinese ghos...\n ultra cheezy soundtrack. vinnie tries really h...\n ...the child actors were annoying. Also it see...\n I saw this at the Edinburgh Film Festival. It ...\n I've taken another look at this film and still...\n I remember the trailer for this infamously wea...\n OK, so i have recently been collecting a lot o...\n Goldrush: A Real Life Alaskan Adventure is a g...\n I love this show! Mr. Blick, Gordon, and Waffl...\n This film is not even worth walking to the mov...\n Based on its current IMDb rating as well as se...\n Not the greatest film to remember Paul Naschy ...\n I am a 58 year old man.On a rainy afternoon my...\n Ossessione<br /><br />Luchino Visconti's debut...\n \"Lonely among us\" definitely is one of the bes...\n I rented this movie this past weekend, cranked...\n The idea had potential, but the movie was poor...\n Before Dogma 95: when Lars used movies as art,...\n I watched the premiere of \"Path to Paradise\" w...\n I would hope so and how can I get involved?<br...\n The Paul Kersey of DEATH WISH 3 is very far re...\n The movie starts off as we see a footage of a ...\n To begin with, I have to admit I've never been...\n My friends and I rented this for \"Bad Movie Ni...\n It is always a well-known, and important direc...\n Users who have rated this movie so highly simp...\n Kurosawa weaves a tale that has a cast of char...\n I'm not a Disney fan at all, but I happen to b...\n Beyond a shadow of a doubt Mysterious Planet i...\n Thank God for the Internet Movie Database!!! W...\n This film is what most of the industry has for...\n Another classic study of the effects of wealth...\n hair, the movie based on the broadway hit,fail...\n And the worst part is that it could have been ...\n Whoa nelly! I've heard a ton of mixed reviews ...\n The Emperor's New Groove was a great twist for...\n Comedy works best when it relates to stuff tha...\n I came across this film by accident when listi...\n What a turd! I like John Leguizamo but man thi...\n Don't Look in the basement is actually a very ...\n I viewed the first two nights before coming to...\n Just after having moved into his new cottage i...\n I have read all of the Love Come Softly books....\n Kurt Russell is strong and (mostly) silent in ...\n A spoiler.<br /><br />What three words can gua...\n A boy who adores Maurice Richard of the Montre...\n Cameron Diaz is a woman who is married to a ju...\n Mild spoilers below.<br /><br />The prospect o...\n This is not a good movie. It is a tried remake...\n Maybe it's because I saw the movie before read...\n I never quite understood the popularity of Sab...\n If you took a really good jack black movie, ad...\n To all the haters out there: condemning a TV s...\n King Vladislav (Angus Scrimm) of Romania is a ...\n Don't get me wrong, I love most of Paul Schrad...\n Drab, dreary and a total waste of my time. The...\n Man, was I disappointed.<br /><br />1) Adam Ar...\n This is a very dull film with poorly developed...\n You have to admire Brad Sykes even if you don'...\n Though Frank Loesser's songs are some of the f...\n This movie is amazing! While being funny and e...\n SCHIZOPHRENIAC: THE WHORE MANGLER is another e...\n `Europa' (or, as it is also known, `Zentropa')...\n I saw this movie in the theater when I was 14 ...\n This movie probably would only get a 7 or 8 fr...\n This movie is one of the sleepers of all time....\n I have seen this movie and even though I kind ...\n Tom Hanks has been in such hit movies as Forre...\n This movie was advertised on radio, television...\n This movie sucked wind. I imagine that the oth...\n To compare this squalor with an old, low budge...\n If I had realized John Wayne was in this movie...\n Hey look, deal with it, there are much better ...\n Why, oh, why won't they learn? When you've got...\n The Marquis De Sade, Egypt, ancient Gnostic cu...\n I've recently went back and watched this movie...\n I thought this series was going to be another ...\n A friend brought me this movie and at first I ...\n I may have seen worse films than this, but I i...\n The cast for this production of Rigoletto is e...\n John Carpenter's Halloween is quite frankly a ...\n Rendition presents a very topical matter in th...\n Not that I dislike childrens movies, but this ...\n Really, everybody in this movie looks like the...\n I've seen this movie at least fifty times and ...\n Released as Zentropa in North America to avoid...\n Bill Rebane's \"The Capture of Bigfoot\" is one ...\n Rock Star is a \"nice\" movie. Everyone is nice....\n Philip. K. Dickian movie. And a decent one for...\n This movie was painfully awful. Most of the mo...\n I admit I have a weakness for alternate histor...\n This would have worked a lot better if it had ...\n Personally I couldn't get into 'This is Not a ...\n Oh God. Why is it that Nickelodeon has such a ...\n 1) Bad acting.<br /><br />2) For a bunch of ca...\n The use of \"astral projection\"(wandering soul)...\n Wow, I can't believe i'm the first and only on...\n I can't believe anyone liked this movie. I've ...\n Normally, I am a pretty generous critic, but i...\n Horrible film. About an old crusty painter who...\n The movie is more about Pony than Grey Owl. It...\n Rented this from my local Blockbuster under th...\n I still find it difficult to comprehend that a...\n This movie must have looked when it was being ...\n What a terrible movie. The acting was bad, the...\n This is yet another gritty and compelling film...\n Stinger starts '3 Months Ago' on the submarine...\n The first thing I thought when I saw this film...\n Leonard Maltin must've been watching some othe...\n This movie is spoofed in an episode of Mystery...\n An accurate review of nuremburg must consider ...\n Without doubt, GRAND CHAMPION has the most imp...\n Excellent story about teenagers, leaders, high...\n **SPOILERS** Looking for a little more excitem...\n Admittedly, when the chance to see this horrib...\n I absolutely love this film and have seen it m...\n To put in simple words or rather a word, would...\n We all want to fall in love... The experience ...\n If there was anything Akira Kurosawa did wrong...\n I've enjoyed this movie ever since I first saw...\n God Bless 80's slasher films. This is a fun, f...\n The film has so much potential which was not d...\n I don't know why I like this movie so well, bu...\n When i looked at this years Wrestlemania's mat...\n I saw \"An American in Paris\" on its first rele...\n I am not going to spoil the contents to anyone...\n River's Edge is an extremely disturbing film w...\n This film is a fine example of why the Shaw Br...\n Spoiler Alert Well I think this movie is proba...\n The premise of this movie is ugghhhh. The guy ...\n I remember trying a few minutes of this film, ...\n There's a lot of movies that have set release ...\n fascinating look at fascist italy and the peop...\n This is a film of immense appeal to a relative...\n I wish I could have met Ida Lupino. When peopl...\n Grand Canyon falls under a very scarce categor...\n Dr. McCoy and Mr. Spock find themselves trappe...\n John Carpenter's \"The Thing\" is undoubtedly on...\n I think this could've been a decent movie, and...\n This film plunges headlong into the realm of t...\n Let me tell you a story.<br /><br />One day on...\n STAR RATING: ***** The Works **** Just Misses ...\n I like the shepherd! Sure the acting wasn't go...\n Didn't really know what to expect from this mo...\n This story has held a special place in my hear...\n The Incredible Melting Man plays like an exten...\n This esteemed production has it's fans. But to...\n This outlandish Troma movie is actually a very...\n MR. BASEBALL is a film of paradoxes. Written a...\n My all-time favorite movie. Oscar-caliber work...\n I have to say, when \"Pushing Daisies\" came out...\n This is a made for TV movie by Hallmark. Hallm...\n It's a refreshing breath of air when a movie a...\n If there's one thing I want to distinguish mys...\n What a cast of actors and actresses in this Co...\n ...this one just isn't worth the cost of a mov...\n This movie must be exported to the rest of the...\n Star Trek Hidden Frontier will surprise you in...\n OK by the time you read this I MIGHT have stop...\n Greetings, Moviegoers! As I watch Octopus II, ...\n Having spent the six years previous writing an...\n Whereas the movie was beautifully shot and rea...\n In the first one it was mainly giant rats, but...\n The Master Blackmailer, based off of Sir Arthu...\n No doubt that the indie flick Eddie Monroe is ...\n Having obtained a copy of Bostocks Cup I must ...\n Millie is a sap. She marries a rich guy named ...\n A very charming film with wonderful sentiment ...\n This film is a joy to watch and should do well...\n This is just Art house rubbish. I sat watching...\n Lotsa action, cheesy love story, unexpected ac...\n Now, I loved \"Lethal Weapon\" and \"Kiss Kiss Ba...\n After a long hard night being partied away at ...\n i think this one sucked on ice, because it lef...\n I saw this movie in the theater when it came o...\n Anthony McGarten has adapted his play, Via Sat...\n I have seen this movie at the cinema many year...\n This movie was a real torture fest to sit thro...\n John Wayne & Albert Dekker compete for oil rig...\n Tarantino once remarked on a melodrama from th...\n Aah yes the workout show was a great. Not only...\n This film should have never been made. Honestl...\n This movie was bad from the start. The only pu...\n God, I never felt so insulted in my whole life...\n Not being a fan of the Coen Brothers or George...\n The movie Andaz Apna Apna in my books is the t...\n I have to say I was really looking forward on ...\n This film powerfully demonstrates the struggle...\n The first 10 minutes of the movie makes fun of...\n Susie Q is an original and isn't like those ot...\n This series when the Dinosaurus lived for 65 m...\n STUDIO 666 (aka THE POSSESSED in the UK) is an...\n Election is a Chinese mob movie, or triads in ...\n Utterly brilliant. Powerful and evocative. The...\n When I saw this film in the 1950s, I wanted to...\n Kurt Russell is at his best as the man who liv...\n \"Man of the Year\" tells the story of Tom Dobbs...\n I happened upon this movie as an 8-10 year old...\n Re: Pro Jury<br /><br />Although the lead actr...\n First off, let it be known that I came into th...\n I really don't understand who this movie is ai...\n My god ! Buttgereit's masterpiece is one of th...\n \"The Bourne Ultimatum\" begins recklessly mid-c...\n I mean of all the obscure, overlooked, low bud...\n Im gonna make this short and sweet because i d...\n Absolutely inane film starring Abbott and Cost...\n Yes, I loved this movie when I was a kid. When...\n I have previously seen Zu: Warriors from the M...\n Previous comment made me write this. It says t...\n Although Super Mario 64 isn't like the rest of...\n I'm a sucker for mob/gangland movies, so I ren...\n This show is what happened to The Screen Saver...\n One more of those brilliant young men who went...\n Mickey Rooney (as Mi Taylor) is a young man dr...\n There's something about every \"Hammer\" movie I...\n I was able to watch this movie in its entirety...\n Having read so much negative press on this mov...\n This is the only Pauly Shore movie you should ...\n There are bad movies and then there are movies...\n I probably give this more credit than it deser...\n Tim Robbins makes a wonderful film. His wife (...\n I foolishly read the back of the DVD cover of ...\n As someone else has already said here, every s...\n Make no bones about it. There are a lot of thi...\n <br /><br />One of the best films I've ever se...\n The Israeli/Palestinian conflict persists and ...\n This is probably the best cinematic depiction ...\n A beautiful woman, a backwoods, inbred monster...\n I have no idea what the other reviewer is talk...\n A man arrives in a strange, beautiful, sterile...\n There's nothing new for me to say: 4 hours of ...\n As one other IMDB reviewer has remarked, this ...\n If you're a North American 'TOURIST' looking f...\n I am a college student and I bought this movie...\n This is a truly terrible sci-fi/horror film fr...\n Without question one of the most embarrassing ...\n jim carrey rocks! if he's in a movie its bound...\n Stupidly beautiful. This movie epitomizes the ...\n the tortuous emotional impact is degrading, wh...\n I remember seeing this when it was released, i...\n This is a delightful film. Elizabeth Taylor do...\n Richard Dreyfuss stars in \"Moon Over Parador,\"...\n This film is a massive Yawn proving that Ameri...\n \"Imperium Nero\" is the second movie of the ser...\n Alright, we start in the office of a shrink, a...\n I am not a fan of musicals, but I am a huge fa...\n A touching documentary that puts a human face ...\n I own this movie on DVD and I have watched it ...\n As someone who has seen and followed Hartley's...\n I first read the book, when I was a young teen...\n \"The Wizard of Menlo Park\" was deeply responsi...\n It is not only difficult to comment separately...\n The first mistake you make in titling a film i...\n Hey people, what's up. It's me man, the one an...\n This is a decent effort for a B-Movie Martial ...\n An adaption of the book 'Finding Fish'. This s...\n Back in 1983, Michael Jackson's popularity was...\n \"Hitler: The Rise of Evil\" was shrouded in con...\n Perhaps one of the most overrated so-called ho...\n I don't know what you guys are inhaling, but p...\n I loved this film, seen this evening on a movi...\n I liked this movie. I wasn't really sure what ...\n I enjoy films of various kinds and qualities. ...\n Good story. Good script. Good casting. Good ac...\n This is a sprawling (4 hours) remake of the Ri...\n \"The Muppets Take Manhattan\" is different in a...\n For a good take on the Roman Empire watch the ...\n 'Una Giornata Particolare' is a movie that has...\n Luchino Visconti was light years ahead of his ...\n Wow! I truly regret watching this picture... F...\n Of all the films I have seen, this one, The Ra...\n When I went to see this movie it was already a...\n While killing time on a Saturday morning, \"Loo...\n How did such a terrible script manage to attra...\n this is a great film!!!<br /><br />I first saw...\n I have no idea how IMDb sorts reviews but I do...\n That hilarious line is typical of what these n...\n \"Who Loves The Sun\" works its way through some...\n A hundred miles away from the scene of a grizz...\n Batman: Mystery of the Batwoman is the latest ...\n Maybe television will be as brutal one day. Ma...\n So keira knightly is in it...So automatically ...\n Even with only 6,000 bucks and a cast of part-...\n \"Footlight Parade\" is just one of several wond...\n Mike Brady (Michael Garfield who had a minuscu...\n Every country which has a working film industr...\n This is the biggest piece of crap ever. It loo...\n My introduction to a lifelong love of Shakespe...\n 1st watched 8/26/2001 - 3 out of 10(Dir-Tobe H...\n This is one of the most touching films I had e...\n I watched the Pie-lette last night and the wor...\n The movie has taken a little flack for playing...\n Excellent movie about a big media firm and the...\n talk about your waste of money.. im just wonde...\n Witchy Hildegard Knef traps a group of people ...\n Flat, ordinary thriller about a conniving woma...\n Stunning blonde Natasha Henstridge is the youn...\n This movie was just plain bad. I can forgive l...\n Just given the fact that it is based on the mo...\n The only thing worse than surfers without any ...\n I saw \"Shiner\" on DVD. While I was watching it...\n \"I Am Curious: Yellow\" is a risible and preten...\n Hilarious, evocative, confusing, brilliant fil...\n There are very few films that are able to tell...\n I thought that the interplay between Crystal a...\n Hard to describe this one -- if you were a fan...\n This is one of the worst movies I've seen in m...\n After watching this for 15 minutes I knew how ...\n One thing I'm sure everyone who has seen this ...\n I watched this expecting to see the usual Brit...\n I really enjoyed this movie. Yes there was dis...\n Some films are so bad that they're good. This ...\n I was one of the few who went out of my way to...\n No movie I've ever seen before has even come c...\n as a habit i always like to read through the '...\n did anyone notice?when miss brook went skinny ...\n I remember watching this film in the eighties ...\n So, I know that I voted 1 out of 10 but really...\n Arthur has always been a personal film for me ...\n This piece of crap doesn't worth a critical re...\n The creativeness of this movie was lost from t...\n I first encountered Arthur Penn's \"Four Friend...\n This extremely weak Australian excuse for a mo...\n I only watched this because it starred Josie L...\n Name just says it all. I watched this movie wi...\n Born, raised, and educated in Scotland, I was ...\n Final Fantasy: Advent Children is and will rem...\n Just above the box i am typing in now, i was r...\n This movie felt so real. I actually felt all o...\n Unfortunately, the director Amos Guttman died ...\n In the Comic, Modesty is strong. Alexandra Sta...\n If I guess your \"palabra\", will you let me go ...\n A bigoted soldier kills a man for being Jewish...\n The beginning of the film is promising. When J...\n Words alone cannot describe the sheer beauty a...\n I have seen the recent Region 2 DVD of this mo...\n Updated from a previous comment. The great and...\n Dude, I thought this movie rocked. Perfect for...\n This is a dumb movie. Maybe my judgment wouldn...\n This movie should have NEVER been made. From t...\n Ok - I admit. I think Kenny Doughty looks amaz...\n Strange, almost all reviewers are highly posit...\n Claustrophobic camera angles that do not help ...\n This flick is sterling example of the state of...\n Don't tell me this film was funny or a little ...\n I watched the presentation of this on PBS in t...\n Another \"must have\" film. Henry Brandon is a f...\n Other than cop rock and that show where the ki...\n Last night I finished re-watching \"Jane Eyre\" ...\n It ran 8 seasons, but it's first, in early 195...\n one of the most awaited movie!i thought himesh...\n This isn't one of Arbuckle's or Keaton's bette...\n To start with, I have done some further resear...\n Pushing Daisies is just a lovely fairy tale, w...\n (Note: I saw I SELL THE DEAD at the Glasgow In...\n One of several musicals about sailors on leave...\n Envy stars some of the best. Jack Black, Ben S...\n Dr. Ben McKenna (James Stewart) and Jo McKenna...\n SPOILERS<br /><br />I love the Simpsons, and I...\n The lavish production values that you generall...\n THE NOTORIOUS BETTIE PAGE (2006) ***1/2 Gretch...\n A refreshing black comedy starring some of Aus...\n what a waste of time! i expected better from c...\n For me this movie was powerful. I don't want t...\n This movie is horrendous. The acting is cheesy...\n This is simply the most astonishing movie you ...\n As a great admirer of Marlene Dietrich, I had ...\n When I saw this movie, I was amazed that it wa...\n The undoubted highlight of this movie is Peter...\n Cuba Gooding Jr. is back on top! Jesus, he did...\n As an avid reader of Clive Barker, I truly ant...\n If this book remained faithful to the book the...\n I'm really surprised seeing all these positive...\n Well, okay, maybe not perfect, but it was pret...\n I love bad movies. Not only, because they ofte...\n Don't Change Your Husband is, on the one hand,...\n this is a really great series. i love the show...\n Oh dear. I was so disappointed that this movie...\n I am probably a little too old for this movie,...\n I didnt think it was possible, but i have foun...\n This star-studded British/Spanish co-productio...\n i honestly dont know why so many people hate t...\n During the final throes of the Vitnam war, our...\n Why did it sound like the husband kept calling...\n My wife and I struggle to find movies like thi...\n A truly excellent look at the world and the re...\n Oh dear! ohdear!ohdear!ohdear!<br /><br />I lo...\n Is this the future that awaits us? An overpopu...\n Steve Carell once again stars in a light roman...\n They don't make movies like this anymore  tho...\n I just saw this movie on HBO, and it was reall...\n It was good to see John Denver again though he...\n THE HOUSE THAT DRIPPED BLOOD is the third in a...\n If this film had been directed by DW Griffith ...\n In the wake of Lock, Stock and Two Smoking Bar...\n CANNIBAL FEROX (1+ outta 5 stars) Miserable ex...\n THE FEELING of the need to have someone play t...\n Bloody marvelous. Recommended by a friend who ...\n The 70s were without a doubt the golden age of...\n If you were ever sad for not being able to get...\n I went into the movie expecting a little actio...\n Like many Americans, I was first introduced to...\n I saw \"Fever Pitch\" sort of by accident; it wa...\n Last night, I am sitting in my TV room, beer i...\n I'm afraid I did not like this adaptation. Whe...\n A special unit of four police detectives are d...\n \"For a Squadron Leader - normally the only guy...\n The 3rd and last big screen spin off from the ...\n This movie shows how savage the troubles reall...\n Except for the better than average acting skil...\n Some people might call \"Paulie\" a kids' movie,...\n When I read the synopsis for \"Messiah\" in the ...\n Debut? Wow--Cross-Eyed is easily one of the mo...\n For starters and for the record, the term \"Nec...\n Chan Wook Park is nothing if not inventive. I'...\n From director Billy Wilder (Double Indemnity, ...\n I have never read Sarah Water's book. Although...\n A movie you start watching as a late night cab...\n Remember when Harrison Ford was the biggest st...\n Wicked Little things was a really good movie.I...\n I am a fan of Randolph Scott Westerns. While s...\n There are worse ways to spend an evening than ...\n CREEP is a straight up serious horror film set...\n Netflix should mention this short feature on t...\n Joseph Conrad's novel, Heart of Darkness is a ...\n ** HERE BE SPOILERS ** <br /><br />Recap: Mia ...\n After seeing the \"Batman Dead End\" short, I di...\n i thought this was a beautiful film. it is not...\n \"Kramer vs. Kramer\" is a terrific drama about ...\n Jeanette MacDonald and Nelson Eddy star in thi...\n Nurse Betty has that odd but winning combinati...\n This must be one of MGM's and FRANK SINATRAS w...\n Nearly everything that Stephen King has ever w...\n Oh my GOD ! I can truly say that Maya Angelou ...\n For some perverse reason best known to themsel...\n Wladyslaw Starewicz was a Russian-born animato...\n I know a couple people who look just like the ...\n **********POSSIBLE SPOILER********** Madonna p...\n This film was full of suspense and was well di...\n Super Mario 64 is undoubtedly the greatest gam...\n I didn't really know what to expect when going...\n The bottom line is: if you come looking for a ...\n Every time I watch this show I just want to tu...\n This is one lowly film. It has no real plot. W...\n A child-like puppeteer, for a public access ch...\n I started watching this expecting the worst, i...\n Could anyone please stop John Carpenter from c...\n I originally gave this episode a rating of two...\n Having been pleasantly surprised by Sandra Bul...\n \"Happenstance\" is the most New York-feeling Pa...\n This is the worst film I have ever seen, so ba...\n Although the casting for this film was admirab...\n Watching Fire and Ice for the first time remin...\n This movie is another Christian propaganda fil...\n Mostly uninvolving biblical mumbo-jumbo that d...\n I'm not looking for quality; I'm just trying t...\n The simple hand camera both gives some almost ...\n This movie was total cheese. It stank. The onl...\n There is a lot of talk of torture these days. ...\n This is my favourite film and I think it is pe...\n This is far worse than those awful Laurel and ...\n I went straight to the big screen to view this...\n Corey Haim plays a kid who teams up with a dog...\n I'm seeing a pattern here. If you see a movie ...\n No sense going over the story since enough rev...\n I, like most other people, saw this movie afte...\n But I still enjoyed watching her, so I gave it...\n I'd never heard of this film before I caught i...\n Must every good story be \"improved\" with added...\n Eisenstien's \"Potempkin\", (Bronenosets Potyomk...\n As a long time Red Sox fan, I just had to go s...\n I saw this years ago, and it's entertaining, b...\n This is a wonderful film... First impressions ...\n You need to watch this show once to have seen ...\n Well acted drama based on a novel by Arthur Mi...\n I can't understand why many seem to hate this....\n This movie started out as a quite decent-looki...\n The War Between the States was perhaps the dar...\n I remember years ago BBC1 used to show this mo...\n Some spoilers**** A Soap has some wonderful mo...\n Saw this piece of work at a film fest in CA. M...\n This film, winning Im Kwon-Taek the Best Direc...\n Steven Seagal movies have never been Oscar mat...\n This movie had potential. The script was not b...\n This movie was an attempt to go into places mo...\n Went with some friends and one of my friends m...\n I woke up and it was a beautiful day; the sun ...\n Michael Winner is probably best known for his ...\n Outstanding film of 1943 with Paul Lukas givin...\n I remember being forced (yes--literally FORCED...\n After some quite OK Dutch action flicks, like ...\n Thelma Ritter did steal the picture. I just fi...\n This is one of those movies which get better w...\n Although I don't usually go for relentlessly h...\n Terrible writing, highly contrived, from a \"do...\n Yumiko (Wakana Sakai), the pretty adopted daug...\n Another violent, angry fantasy from Paul Verho...\n I can't say this show is perfect. Perhaps all ...\n The Twilight Zone has achieved a certain mytho...\n The more I analyze this film, the worse it bec...\n STAR RATING: ***** Saturday Night **** Friday ...\n WE FAW DOWN <br /><br />Aspect ratio: 1.33:1<b...\n I cannot believe how uneducated this movie is....\n This is, without doubt, one of the worst films...\n I don't understand this movies distinctly aver...\n The movie itself is so pathetic. It portrayed ...\n If you're amused by straight-faced goings-on t...\n This movie wasn't that bad when compared to th...\n If this movie as meant to discourage people fr...\n I'm a huge classic film buff, but am just gett...\n I can't believe that so many are comparing thi...\n The movie is absolutely silly.<br /><br />But ...\n This was a pleasant musical about the creation...\n This was one of those films I probably never w...\n It's funny. It's not Arthur Miller or T.S. Ell...\n My 10/10 rating of course applies only if you'...\n Sure, there's stuff here that the Coens and El...\n This movie is great! Brad Pitt will never be a...\n \"A truly nice story with a moral about brother...\n ....ripoff of a dozen better films. Particular...\n A ditzy girl (yes, ditzy is about as complex a...\n Johnny and Jeremy are vampires of sorts. Minus...\n I would highly recommend this movie! And I cer...\n Ham-handed homage to honest hacking. Felt good...\n I loved this film!!! It was so easy to become ...\n I think if you are into the sixties kind of th...\n A film starring Salma Hayek and Colin Farrell,...\n Certainly when I saw this movie at HBO, I was ...\n This movie is so bad it's worth seeing. This m...\n A funny and scathing critique of Russian socie...\n This film is fantastic. Finally well-written c...\n I have no idea what idiots gave this movie a P...\n I was excited about this movie after reading o...\n If you like bad movies (and you must to watch ...\n Bad bad bad....<br /><br />This is another stu...\n Youth, sexuality, and the French countryside -...\n OK firstly, if your not a fan of the whole low...\n This movie is really not all that bad. But the...\n As a veteran screen writing instructor at Rich...\n Dr. Franz Tobel, a Swiss scientist, is smuggle...\n The author of numerous novels, plays, and shor...\n Don't listen to what the critics have always s...\n Why did I have to go out and buy (yes buy!) JA...\n OK, if you would judge the movie to now a days...\n In Iran, women are not admitted to soccer game...\n (This is a review of the later English release...\n \"Graduation Day\" is a result of the success of...\n As a Mystery Science Theatre 3000 fan, I can w...\n When I first started watching this movie I was...\n All in all a good film and better for the fact...\n I couldn't find anyone to watch DiG! with me b...\n A schizophrenic has escaped from a NYC mental ...\n Larry Fessenden has been thrashed by most of t...\n After having seen the Canadian/Icelandic/Briti...\n I finally saw this on video, after years of he...\n >>>>>>>>>>>>> >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>...\n The last sentence of this review is a major sp...\n I just had the opportunity to see 'Nuovomondo'...\n this is an honest attempt to make a bewitching...\n While amiable and amusing for gay audiences, F...\n This movie moved much too slowly for my taste....\n It's a shame that by garnering a restricted ra...\n A thematic staple of cinema since its inceptio...\n I only hope that no classicists/ancient histor...\n I remember following the case of Andre Chicati...\n I wish Hollywood would make more movies like T...\n There is no relation at all between Fortier an...\n A ridiculous, badly acted Mini Cooper infomerc...\n Disowned by Richard C. Sarafian, this disaster...\n When I caught a glimpse of the title I thought...\n Where do I start? First off, the story sucks. ...\n For starters, I once met the director when he ...\n Very good film. Very good documentary.<br /><b...\n Sacchi is the best Bogart impersonator ever......\n The stars and the planets must've all been in ...\n Movies like this give independent films a bad ...\n it's the best movie i have ever seen!!!!!! i j...\n Well, I read the other comments. Didn't think ...\n First, I'm a huge Buddy Holly fan. I grew up k...\n Eddie Murphy put a lot into this movie by dire...\n I've seen just about all of the Coen brothers'...\n Obviously made on the cheap to capitalize on t...\n Just saw this movie 2 days ago. A very interes...\n I adore this film. The chemistry between the t...\n Fantastic series, one of my few favorites (Mia...\n I don't know what has happened to director Abe...\n This film was made in 1943 when i think Judy w...\n heres a fun fact, I was the baby in the movie,...\n Believe me I wanted this series to work, but t...\n I loved this exiting republic serial! The stor...\n Ron Howard directed this? The 1966 cartoon is ...\n Belonging to the subgenre of post-apocalyptic ...\n I rented this one by accident. I lifted the vi...\n I liked this movie. I'm not a big horror movie...\n This 1996 movie was the first adaptation of Ja...\n I went and saw this movie last night after bei...\n I heard about this series in 2001 which a frie...\n While i read all of the complaints about this ...\n Peter Yates film from the pen of Steve Tesich ...\n This movie has everything. Emotion, power, aff...\n This movie is just plain dumb. Don't bother wa...\n This very loose retelling of Carmen begins on ...\n Way, way back in the 1980s, long before NAFTA ...\n I haven't been able to decide if this movie is...\n `Skenbart' is one of the funniest movies to no...\n As everyone knows, nobody can play Scarlett O'...\n I really, really don't understand how that mov...\n Much underrated camp movie on the level of Cob...\n I was treated to a viewing of Cracker Bag last...\n I had already heard of Ali G in Madonna's musi...\n DOWN TO EARTH / (2001) * (out of four)<br /><b...\n I am surprised people, after such lousy movies...\n The Love Letter (1999): Starring Kate Capshaw,...\n ... with a single act.<br /><br />Charlie Wils...\n I just finished watching one episode(S1-#5 A b...\n This is a truly terrible film.<br /><br />I'm ...\n Do-It-Yourself indie horror auteur Todd Sheets...\n First of all I thought it was naughty of them ...\n Having seen CUBE, I've been a fan of Vincenzo ...\n Though not a huge fan, I am a Three Stooges pu...\n ... So some people might argue that this can't...\n \"The next Karate Kid\" is an outstanding movie ...\n this film sucks a big one. so many holes in th...\n It's possible to have a good time with this fi...\n If you are French native, then you find this m...\n I have decided to flush this show from my memo...\n I was expecting to love this movie--film noir,...\n I saw this independent film when it was in Phi...\n Election marks the 2nd trial society theme mov...\n Today's sci-fi thrillers are more like Rambo i...\n Zachary Scott does what he does best, i.e., pl...\n Mitchell Leisen's fifth feature as director, a...\n By far the most important requirement for any ...\n Although not a big Coen brothers fan, I am an ...\n In what is arguably the best outdoor adventure...\n this is the first time I'm writing a comment o...\n I originally saw this on its premiere in the U...\n The movie begins a with mentally-challenged gi...\n I couldn't wait for the end. This is absolutel...\n Joseph L. Mankiewicz is not remembered by most...\n Battlestar Gallactica was so great because it ...\n On his birthday a small boys tells his mother ...\n Lucio Fulci was one of the most prolific Itali...\n I have to admit when I went to see this movie,...\n Ewe, The opening screams zero budget. The titl...\n While the original 1932 version, with Preston ...\n Have you ever tried a kind of food that your f...\n Val Kilmer... Love or loath him, sometimes he ...\n This is an interesting treatment of a subject ...\n Alright, this film is the representation of se...\n It's hard to believe a movie can be this bad, ...\n I remember watching the Disney version and wat...\n I discovered this late one night on Turner Cla...\n I just can't imagine any possible reasons why ...\n This has got to be one of the worst movies eve...\n The Curse of Monkey Island has always been my ...\n The time is the future and for many not aware ...\n My curiosity and patience to finally see this ...\n Creakiness and atmosphere this film has, but s...\n I just wanted to leave a quick comment as its ...\n Okay. This Movie is a Pure Pleasure. It has th...\n I just finished watching Following and I thoug...\n A somewhat typical bit of filmmaking from this...\n Yes!!!! Fassbinder and Ballhaus are at the top...\n This movie is awful. If you're considering to ...\n I'm Italian and when I've recently looked agai...\n This was the best documentary I've ever seen!!...\n One of the most poetic narrative films ever ma...\n Every second of the film is gorgeous. And that...\n Well the film starts good, but after half an h...\n I think the weighted average for this film is ...\n Dumb excuse for a thriller with absolutely zer...\n I knew this film was supposed to be so bad it ...\n A blind person could have shot this movie bett...\n From the get go, you won't be able to look awa...\n So, back when Herbie made his first appearance...\n Do you know what farmers spray on fields ? Tha...\n I would firstly say that somehow I remember se...\n Do you like stand up? Then stay away from this...\n This surrealistic, absurdist movie is the firs...\n Two things can happen when an ensemble cast is...\n Cut tries to be like most post-Scream slashers...\n To say that this is a good show is not to say ...\n As I said, the book was pretty good and this m...\n I usually steer clear of TV movies because of ...\n Yet another early film from Alfred Hitchcock w...\n Well let me go say this because i love history...\n With all the dreck out there, this is a gentle...\n Lonely, disconnected, middle-class housewife i...\n Clive Barker of Hellraiser fame has written an...\n this movie absolutely terrible ..not only was ...\n I must pat myself on the back for watching thi...\n Continuing with the exclusive film programme a...\n This film is about a mysterious love letter th...\n This typically melodramatic Bollywood film has...\n In light of the recent and quite good Batman t...\n \"Fame\" is a very well done portrait of the stu...\n At first glance, it would seem natural to comp...\n I actually had quite high hopes going into thi...\n I recently saw this at the 2007 Palm Springs I...\n Although the video box for many copies of this...\n almost 4 years after the events of 911, if ask...\n have just got back from seeing this brilliantl...\n This is definitely one of the weaker of the se...\n Murder and insurance fraud take an adulterous ...\n This has to be one of my 3 favorite Episodes f...\n \"Ghost of Dragstrip Hollow\" appears to take pl...\n this movie takes the voice of terror and makes...\n I remember seeing this film at the West End th...\n This film is basically two hours of Dafoe's ch...\n A film, first and foremost, should be good sto...\n I had high hopes for this one after reading ea...\n You know, I was very surprised when watching t...\n When I was a kid, I remember watching this whi...\n Imagine a world, in which everyone treats anyo...\n I found it a real task to sit through this fil...\n After watching this film last night on Sundanc...\n Be warned, the next time you see \"Richard Kell...\n My girlfriend and I saw this movie when it was...\n ''The 40 Year Old Virgin'''made me laugh a lot...\n I've read \"Anne Frank: The Diary of a Young Gi...\n Being both a Dario Argento fan and a Phantom o...\n The Beguiled is one of those under-seen films ...\n Why would this film be so good, but only gross...\n I just watched I. Q. again tonight and had for...\n Movie about a small town with equal numbers of...\n America's Next Top Model is a great reality sh...\n I had the privilege to watch Mar Adentro last ...\n Indian Summer is a warm, multi-character film,...\n Two Hands is a highly enjoyable Aussie crime c...\n THE HAND OF DEATH most definitely rates a ten ...\n After the success of the first two 'Godfather'...\n Russian actress TATIANA SAMOILOVA reminds me s...\n As a long time resident of western Pa I have a...\n Let's get right to the heart of the matter...T...\n The film released at the start of 2000 alongwi...\n This could be a strong candidate for \"The Wors...\n The humor in Who's Your Daddy is such poor tas...\n I was very moved by the gentle power of this m...\n There is no \"fun\" poking fun at the desperate ...\n So many great actors, so little worth watching...\n From what I understand, Fox was embarrassed th...\n What an uninteresting hodge-podge. It could ha...\n Being the second last of Chaplin's Essanay fil...\n Nothing is fantastic! Simple as that! It's a f...\n - When the local sheriff is killed, his wife t...\n The story line was very straight forward and e...\n I wanted to love this movie. Everything seemed...\n I initially bought this DVD because it had SRK...\n Travis (James Franco) is a young man riding a ...\n Whether or not this adaptation of the Marvel c...\n This is a great Western story with outstanding...\n Story of a good-for-nothing poet and a sidekic...\n I have never before seen a movie quite like th...\n <br /><br />Average adventure movie that took ...\n OK, it's not a perfect movie by any means but ...\n Just listen to the Broadway cast album and to ...\n After watching this I thought to myself, there...\n My flatmate rented out this film the other nig...\n The best that I can say about this film is tha...\n WOW, a masterpiece of a movie not to be missed...\n I absolutely hated this movie. Even though the...\n The creative team behind Evan Almighty really ...\n Not to mention easily Pierce Brosnon's best pe...\n A true dark noir movie and a very graphic film...\n On the face of it this film looked like it mig...\n Oscar-caliber performance by Peter Falk in an ...\n Don't even waste your time, let alone pay rent...\n (Avast, slight spoilers ahead) I got this tape...\n A bumbling error at the Ministry Of Education ...\n Back when I was working person, I remember hav...\n Mediocre at best. Slow, but probably more ente...\n Quentin in my opinion has written and directed...\n I stumbled onto this movie when I was eBay'ing...\n STAR RATING: ***** Unmissable **** Very Good *...\n I liked SOLINO very much. It is a very heart-r...\n I could have liked this if I didn't like Diane...\n After I watched this movie, I came to IMDb and...\n I'm not bothered by the sleazy hosts, nor am I...\n Horror movies can be a lot of fun with low bud...\n OK, lets get one thing straight, i love dinosa...\n Thankfully as a student I have been able to wa...\n I didn't expect much from this, but I have to ...\n The story of dirty fat filth-like middle-age w...\n Nothing to spoil here at all but this could be...\n This film has slipped through the cracks of fi...\n The \"Men in White\" movie is definitely one of ...\n First of all, Katherine Hepburn is badly misca...\n Sure, it was cheesy and nonsensical and at tim...\n <br /><br />**********SPOILER ALERT***********...\n A wealthy Harvard dude falls for a poor Radcli...\n This movie made me want to bang my head agains...\n Call me old fashioned, but I like movies with ...\n DarkWolf tells the tale of a young waitress na...\n Not that I tinkle myself with glee at the sigh...\n \"Dance, Fools, Dance\" is an early Crawford-Gab...\n You know you're in for something different whe...\n The parallels between this film and \"Captain W...\n When I was flicking through the TV Guide, and ...\n I think this movie can be called the movie of ...\n If this series supposed to be an improvement o...\n Hardware Wars is a hilarious, 12 minute short ...\n This is ten times better than \"Who Wants To BE...\n And it falls squarely into the category of \"aw...\n WAQT is a perfect example of a chicken soup no...\n It's rare for a film to sweep you away within ...\n I attended a screening of this movie. It was w...\n I wasn't really hoping for much when I went to...\n MONSTER - He was great; I loved the special-ef...\n A sick man Carleton Hendricks (Dee Snider), cr...\n Like most people I was intrigued when I heard ...\n I only saw this movie once, and that was enoug...\n If I look hard enough, flaws can be found in t...\n I am very tolerant of really bad sci/fi and ho...\n When I watch a low budget film I know what to ...\n THE GOOD: The acting were great especially Ter...\n My first attempt at watching this ended in 8 m...\n Once again the two bickering professors must j...\n This could have been so much better than it tu...\n The Poverty Row horror pictures of the 1930s a...\n It was the Sixties, and anyone with long hair ...\n Good action show, but nothing new. This one to...\n Hilariously obvious \"drama\" about a bunch of h...\n I approach films about talking animals with ca...\n The cliché of the shell-shocked soldier home f...\n I first saw this as a child living in East Lon...\n What the *bliep* is it with this movie? Couldn...\n This is a wonderful movie, and I still love it...\n This movie was bad to say the least!!! The ple...\n Although a made for cable film by HBO, it is a...\n Back when Alec Baldwin and Kim Basinger were a...\n December holiday specials, like the original F...\n Someone here actually compared this movie in s...\n \"Graduation Day\" was released in May 1981, dur...\n All Dogs Go To Heaven Is The Most Cutest Anima...\n This is an action Western. James Steart leads ...\n I'm still new to the Krimi genre and the only ...\n Once upon a time Theresa Russell made a few ha...\n It's not real flashy, but this movie does a gr...\n Ah yes, the VS series, MVC2 being the pinnacle...\n How is it possible to like and dislike the sam...\n Lets enter the world of this movie for a secon...\n I remember seeing this movie shown several yea...\n It has very bad acting. Bad story lines. Bad c...\n Who wrote this flick? An uninspired 15 year-ol...\n the only enjoyable thing about this highly moc...\n eXistenZ was a good film, at the first I was w...\n And yet another run of South Park comes to an ...\n Seagal needs to get back to basics breaking bo...\n This movie had an excellent premise, and could...\n Series as a whole - Jim Henson's best work. Jo...\n Mishima: A Life in Four Chapters is an art-hou...\n !!!! MILD SPOILERS !!!!<br /><br />The premise...\n IF ANYONE IS INTERESTED IN OBTAINING A COPY OF...\n this film was brilliant! i absolutely loved it...\n I used to enjoy \"Happy Ever After\", but was ab...\n I saw this movie by luck, just because I was g...\n Don't let the title trick you into watching th...\n It was the tag-line \"in the tradition of Ameri...\n William Shakespeare's plays are classified as ...\n I saw the trailers of this movie and found the...\n Blank Check is easily one of the worst films o...\n Story starts slow and nothing funny happens fo...\n ****SPOILERS**** The film \"Sniper\" is undoubte...\n The Youth In Us is a pitch-perfect gem. I saw ...\n Maléfique is a very interesting movie. It is a...\n This is a great, dark, offbeat little film, a ...\n Being a big fan of Stanley Kubrick's Clockwork...\n Sophia Loren plays Aida, in one of the worst f...\n I switched this on (from cable) on a whim and ...\n I mostly rented this movie to see Shannon Eliz...\n Who in their right mind plays a lyrical song a...\n I find it rather useless to comment on this \"m...\n in fact,it's basically the same movie.and they...\n Japanese indie film with humor and philosophy ...\n I kind of consider myself as the #1 fan of Hid...\n I'll admit to being biased when I reviewed thi...\n Everything a musical comedy should be. Gene Ke...\n This is surprisingly above average slasher, th...\n While the premise of the film is pretty lame (...\n Hey what a great idea to open a film - show so...\n After a chance encounter on the train, a young...\n This show is so incredibly hilarious that I co...\n Bill, Jeremy Theobald, is an inspiring writer ...\n Saw this movie when it came out and then a cou...\n I really enjoyed this film, it definitely keep...\n Very violent and nicely filmed movie. Paulina ...\n It seems to me that Stephen King's \"Bachman\" p...\n I was wondering if there was a place or a link...\n I occasionally see some of this show because m...\n This could have been a very good film, a very ...\n \"Sex and the City\" has some great things going...\n Ah, the 1970's. A time when it was in to be a ...\n I saw this film yesterday. I must admit, it we...\n After seeing all the Jesse James, Quantrill, j...\n If you know anything about the Manhattan Proje...\n Has this ever happened to you? I go into my lo...\n I just sat through a very enjoyable fast paced...\n I saw bits and pieces of this on TV once, and ...\n \"Flashdance\" meets \"Meatballs III\" or maybe it...\n When I saw this \"documentary\", I was disappoin...\n Since frame number 1 you know the good guy in ...\n Not as bad as some are making it out to be, th...\n The United States was still fighting World War...\n I wish more movies were two hours long. On the...\n This documentary is at its best when it is sim...\n Cary Grant, Douglas Fairbanks Jr. and Victor M...\n D'Amato's hardcore/horror hybrid doesn't reall...\n What the (beep) is going wrong with Disney the...\n This is probably one of the worst movies I hav...\n I just saw this movie tonight, opening night. ...\n Just as a reminder to anyone just now reading ...\n Very well done and spooky horror movie from po...\n Okay, here's what I think about Jack Frost. I ...\n I was very pleased to go and see a \"Milanese\" ...\n Not since Caligula have I considered turning o...\n Whoa boy.<br /><br />Ever wanted to watch a do...\n Renowned Czech actor Vlastimil Brodský, mostly...\n This film screened last night at Austin's Para...\n Now I myself am a lover of the B movie genre b...\n Ossessione is in very bad state but is now und...\n I attended a screening of 'The Cooler' at the ...\n jeez, when i heard this movie was a NATIONAL L...\n If you have seen the Sholay of 1975, Don't wat...\n Silly comedy casts an embarrassed-seeming Ray ...\n Its not sophisticated, and nobody in the credi...\n I saw this movie twice through a pentecostal c...\n This movie looked like it was shot with a vide...\n Just looking at the sets, staging and editing ...\n I find Alan Jacobs review very accurate concer...\n Anybody interested what black film making was ...\n The film begins with Vincent Price about to be...\n The film was shot at Movie Flats, just off rou...\n Eddie Murphy's \"Delirious\" is completely and t...\n I saw Roger Moore huffing it on the scenes tha...\n As a fan of nearly any period drama, and at th...\n So I was energized during my Snakes on a Plane...\n If people didn't know who Barbra Streisand was...\n I will begin by saying I am very pleased with ...\n I last read a Nancy Drew book about 20 years a...\n I finally got to have a look at this experimen...\n Everybody who wants to be an editor should wat...\n Rita Hayworth plays a Brooklyn nightclub dance...\n I'm not much of an expert on acting or other m...\n I thought it was going to be a lousy movie, ho...\n This movie is not as good as all the movies of...\n As I work at a video store, I found it to be m...\n Well, I don't think the picture is as bad as m...\n It is nice to see Suraj Barjatya back at what ...\n I agree with the last reviewer that this movie...\n This movie was horrible and the only reason it...\n At long last! One of Michael Jackson's most we...\n Clara Bow (Hula Calhoun) is daughter of planta...\n This film is a refreshing change of pace from ...\n \"The Love Letter\" is one of those movies that ...\n Except for acknowledging some nice cinematogra...\n My friends and I went into this movie not know...\n Visually stunning and full of Eastern Philosop...\n Exclusively for Coop's lovers, though Clint Ea...\n \"With all the misery in the world, how can we ...\n If you would have asked me 1 month ago how thi...\n This, the direct-to-video death rattle of the ...\n Wow. After seeing this film, you will know why...\n I saw this on cable. Someone had to lose their...\n I watched this because of the description and ...\n First of all, Riget is wonderful. Good comedy ...\n <br /><br />First of all, I reviewed this docu...\n In one sense, I kind of liked this movie becau...\n When I was chairman of our college's coffeehou...\n I love this film...! I've seen it 1000 x on dv...\n It was 9:30 PM last night at my friend's campi...\n Thanks should be given to the Hong Kong VCD/DV...\n A really wonderful cast and very talented tech...\n There's really no way to beat around the bush ...\n A man discovers that his parents were part of ...\n I couldn't wait to get my hands on this one, w...\n i enjoyed this film immensely, due to pungent ...\n Overall, this is a pretty bad film. But for $5...\n First off - there's absolutely no flirting goi...\n 'Illuminata' has expanded the limits of John T...\n Well, the Sci-Fi channel keeps churning these ...\n The debut that plucked from obscurity one of t...\n From the second the music swelled (second one ...\n Where's Michael Caine when you need him? I've ...\n Who could possibly have wished for a sequel to...\n Anyone who has spent time working in a hospita...\n This may not be a memorable classic, but it is...\n This was really one of the most enjoyable spec...\n Left Behind is the kind of \"we know what we kn...\n The Detonator is set in Bucharest where some s...\n hello all Denver fans!<br /><br />i couldn't a...\n Samuel Fuller knows war, and is one of the onl...\n James Aaron, a chubby actor living in Chicago,...\n The BBC and HBO teamed up to create \"Dirty War...\n Ok I will sum up this movie... A bunch of skan...\n The only notable thing about this film is that...\n This is the worst movie I have ever seen in my...\n Les Visiteurs, the first movie about the medie...\n A study of one of those universally familiar, ...\n Why this movie has all but disappeared into ob...\n this particular title is very interesting. the...\n It's really unfortunate that most people outsi...\n We tend to forget that the master/slave contex...\n This must have been an embarrassment to every ...\n The biggest tragedy surrounding this thoroughl...\n Jack Brooks' quirks are, at first, somewhat ch...\n I recall years back, Michael Douglas wanted hi...\n Hollywood has made a lot of strange movies ove...\n Sweet, entertaining tale of a young 17 1/2 yea...\n I don't understand all these bad reviews. I be...\n To start this movie was sick. Here your wife i...\n I have just watched this movie for the first t...\n The 1970s are often regarded as a golden age o...\n Solino really moved me with its deeply drawn c...\n Crazy Six is torture, it must be Albert Pyun´s...\n I am not one of those people who just go onlin...\n The husband-and-wife team of Bennie Fields and...\n I am a VERY big Jim Carrey fan. I laughed my A...\n As a movie critic for several Dutch websites, ...\n Well, AWFUL is just the first name. This movie...\n Tarzan and Jane are living happily in the jung...\n Fairly appalling enterprise suggests Welsh to ...\n Although at one point I thought this was going...\n Of all the episodes of all series, this one ho...\n this is the first of a two part back-story to ...\n I am very surprised to see the good ratings fo...\n This is probably one of the worst movies ever ...\n You don't need to write a script for this tras...\n This movie is the final straw. As two dedicate...\n I saw this movie because it had a giant person...\n Not your ordinary movie, but a good one. Billy...\n ... Oxford, Mississippi, at least. Okay, the P...\n Admittedly, the only reason I watched this fil...\n Gene Hackman is a former Marine Corps colonel ...\n It's interesting to see what the director trie...\n This movie is bad. If you are thinking about w...\n I don't know whether to recommend this movie t...\n One of the worst movies I've ever seen. When I...\n Antwone Fisher's story of childhood neglect an...\n Negative numbers are not available to convey h...\n \"Congo\" is based on the best-selling novel by ...\n \"Showtime\" is a funny film starring funnymen R...\n I got seriously ripped off with this purchase....\n End of the World is an uneventful movie, which...\n I've always been a big Cybill Shepperd fan, ev...\n Wow. So my boyfriend and I went to the movie s...\n This film is not one of those films so bad you...\n I can't really say what I think about this mov...\n Let me start by saying I don't recall laughing...\n I have seen previous movies from Cédric Klapis...\n Universal Soldier: The Return is not the worst...\n I saw Dick Tracy when I was very young. I didn...\n I was disappointed with the third film in the ...\n Everyone is surely familiar with this most fam...\n This is a film that belongs firmly to the 50's...\n This movie lost me with the crossbow RPG (rock...\n I guess I only have myself to blame for the gi...\n Pity the Monkees. People always accused them o...\n I don't know how people can watch this - the o...\n The Running Man is one of those films that if ...\n Paul Verhoeven has one of the strangest oeuvre...\n If you're as huge of a fan of an author as I a...\n I have Never forgot this movie. All these year...\n This movie should be nominated for a new genre...\n Geniuses William Cameron Menzies and Herbert G...\n Reading the other comments here at the IMDB, I...\n This movie could very well have been a propaga...\n While this movie is not the most entertaining ...\n I saw \"Brother's Shadow\" at the Tribeca Film F...\n Saw this film in August at the 27th Annual Nat...\n When I was a kid I watched this many times ove...\n I was completely mislead by the comments on th...\n After the wife of a plastic surgeon dies, he g...\n In theory, 'Director's Commentary' should have...\n I give this marriage 3 years and thats stretch...\n I recently found this movie on VHS after looki...\n I bought this game on eBay having heard that i...\n Tom & Jerry are visiting Africa and disguise t...\n I must admit I did enjoy the earlier episodes,...\n I liked Half-Life. I am still it's fan. It was...\n LACKAWANNA BLUES is an entertaining, engrossin...\n The positives: It's shot pretty well. Has some...\n It is sad what they are letting into film fest...\n An American In Paris is an integrated musical,...\n Virile, but naive, big Joe Buck leaves his hom...\n SOME MAJOR SPOILERS, YOU'VE BEEN WARNED<br /><...\n I'm a big time horror fan, and I bought this m...\n I went to see this movie at the theater and pa...\n Let me begin by saying that I had been eagerly...\n Simply miserable Lana Turner-Ezio Pinza vehicl...\n This film definitely gets a thumbs up from me....\n Not having read Nabokov, and knowing nothing a...\n One of the flat-out drollest movies of all-tim...\n This is the third Three Stooges short that the...\n \"New Best Friend\" is another entry in the \"ste...\n I love the beach boys and their music. So, bei...\n I wasn't expecting this to be a great movie, b...\n Sean Bean returns as Napoleonic hero Richard S...\n Several stowaways get on a Russian ship bound ...\n The Movie is okay. Meaning that I don't regret...\n The autobiography on which this movie is based...\n This slightly ponderous late 50's sci-fi-horro...\n I saw the world premiere at the Toronto Intern...\n R O B O T J O X.<br /><br />Burn the master.<b...\n Watching \"The Fox and the Child\" was an intoxi...\n This is one of my favourite comedy films. Chri...\n The actors were not believable, The story was ...\n Michael Myers, the deranged, not-so-young-anym...\n After Racism, Rural exodus -also known as migr...\n Famous and mysterious recluse Raymar, who's so...\n A stunning and thoughtful observation on moder...\n Having looked at some of the other comments he...\n I saw this film at the 2002 Toronto Internatio...\n \"The True Story Of The Friendship That Shook S...\n A wonderful Christmas story on the moving them...\n This God forsaken film is about three dumb mil...\n In defense of this movie I must repeat what I ...\n This was one of those times when I had nothing...\n This movie used to be played constantly on the...\n This much anticipated DVD memento of Rush's vi...\n As if reality shows like \"American Idol\" weren...\n An orphan boy named Tom (Tommy Pender), who wo...\n Wow what an episode! After last week seeing Me...\n Complete entertainment! Although there are man...\n I found this movie on Netflix and had to add i...\n Uzak (2002), a Turkish film shown in the U.S. ...\n I go this game and it is alright I guess. I ju...\n Someone definitely has it in for The Wind and ...\n Time for Hollywood to sit up and take notice! ...\n All that talent.....but when ya have poor dire...\n This is one of the weirder movies I have recen...\n Miyazaki's Studio Ghibli shows his wonderful t...\n The first half of this movie was quite good. I...\n When originally screened in America in 1972, '...\n Contains spoilers<br /><br />\"Hollow Man\" is p...\n Spoiler warning.<br /><br />When the main char...\n I give this film 8/10 overall. Visually, a gre...\n Mary Pickford (\"Born on the Fourth of July\" as...\n In the spirit of the Great Space Coaster, but ...\n This apology for a movie is about absolutely n...\n Highly memorable, intelligent and suspenseful ...\n This movie was release when I was 15 and I cou...\n Firstly, this is NOT an adaptation of a Stephe...\n Tierney's an authentic tough guy, but this mov...\n This movie brought together some of the old Sp...\n This was the best film of 1998 and one of the ...\n I've seen this movie and I must say I'm very i...\n Without doubt, this is the worst movie I've ev...\n If you love cult 70's Sci-fi the way I do, or ...\n The subject of children being terminally ill i...\n I mean, come on! This movie had such nice pote...\n First off, the alien saves a little black boy ...\n This is one of those movies that you happen ac...\n This video was my first exposure to Eddie Izza...\n There are a number of things that are not corr...\n Saw this movie the first time while drunk at a...\n I've just seen this movie, and it made me cry....\n If it had been made 2 years later it would hav...\n I absolutely LOVE this movie and would really ...\n Being a fan of movies like \"Fire Sale\", \"Where...\n The one-liners fly so fast in this movie that ...\n I couldn't believe the eye candy from start to...\n Key West, for too short a time was \"appointmen...\n I really wanted to like The Pillow Book. Intri...\n The seasoned actors in this do know how to act...\n All in all, this is a movie for kids. We saw i...\n MONKEY is surely one of the best shows to have...\n Easily one of my three or four favorite films....\n Good action and interesting plot. Having seen ...\n One of the better made for TV biopics, I just ...\n Give me my money back! Give me my life back! G...\n The Kite Runner should win an Oscar! It's perf...\n I have watched my fair bit of Bollywood films ...\n CAMP BLOOD <br /><br />Aspect ratio: 1.33:1 (N...\n . . . and never, ever see it. Now, I've been w...\n Okay, so I have come a long way from Houston b...\n A group of model-caliber San Francisco women w...\n remember back when this movie was made by robe...\n The wind and the lion is a marvelous sweeping ...\n Low budget, but still creepy enough to hold yo...\n First, let me state that I have no idea who No...\n HBO created this show for purposes of making u...\n As a another reviewer states Hanna's War is an...\n This film makes Clooney. All his films combine...\n It's a shame that someone so idolised by many ...\n Imagine you have the opportunity to see yourse...\n I see a lot of really negative posts by people...\n Rainbow Brite and the star Stealer is not for ...\n I grew up Baptist and I know the story this mo...\n When I first saw Colleen Moore it was in the e...\n I loved this film and recommend it to anyone w...\n H.G. Wells story the shape of things to come w...\n It helps if you understand Czech and can see t...\n Of all the seasons and episodes of THE TWILIGH...\n I really enjoyed this movie. Britney is an exc...\n This is a great little movie, full of interest...\n This movie is a lot of fun. The actors really ...\n The feature length CGI movie has just been rel...\n WOW! What a horrible, hideous waste of time th...\n Dillon, Fishbourne, Reno, should have teamed u...\n I saw a special advance screening of this toda...\n As long as there's been 3d technology, (1950's...\n For a movie like this, there's always somethin...\n I have found this movie available for streamin...\n This is one of the best reunion specials ever,...\n This is my second time through for A Perfect S...\n I had read an article about Dan Jansen's Olymp...\n This is one of the oddest movies I have watche...\n Honestly, I can't be bothered to spend my time...\n I always enjoy watching this cartoon, with Syl...\n I know that Chill Wills usually played lovable...\n TIGERLAND / (2000) ***1/2 (out of four)<br /><...\n Two popular actors are paired in showtime like...\n I will never forget the wit and great comedy o...\n I need help identifying an episode of King of ...\n After being off the air for a while, Columbo r...\n If you loved the early-60's version of \"The Ti...\n This HAS to be the worst movie I've ever attem...\n I think I truly love this film . \"Prix de Beau...\n The Last Hunt is one of the few westerns ever ...\n This is a catastrophe movie set in London . St...\n An annoying and talentless American documentar...\n When Melville's \"Pierre; or The Ambiguities\" h...\n There was a time when the Alien series was a s...\n This is a movie that really makes you think ab...\n It is cheese. If all you want is a video game,...\n First of all i want to say Ang Lee Did a very ...\n I really like 101 Dalmations when it came out ...\n OK, I admit I watched this movie on Mystery Sc...\n tom had a wish to make film for a long time an...\n very disappointing and incoherent - every now ...\n I'm not sure what version of the film I saw, b...\n I have a 4yr old daughter, and before this mov...\n I never actually thought that a film could be ...\n I love the depiction of the 30s and 40s in fil...\n Oh Dear, Jerry may be the undisputed king of t...\n \"Power Play\" starts off interesting but it goe...\n Because Mr. Bean almost never speaks, I hearti...\n Royal Rumble 1988 bored me pretty damn good. T...\n That's not the sound of bees, that's the effec...\n Nuri Bilge Ceylan's 2002 film Distant (Uzak)- ...\n So much for JUDGE AND JURY, which lives up to ...\n I highly recommend this movie to everyone. My ...\n Well , I come from Bulgaria where it 's almost...\n I liked the film. Some of the action scenes we...\n I'm not in favor of death penalties but in thi...\n Pufnstuf is what it is. I saw this in the cine...\n This is the most saccharine romance I ever sat...\n I get the feeling a lot of people liked this m...\n This movie was amazing!!!! From beginning to e...\n WHEN I first saw this film, in London, in 1958...\n One of the most pleasurable aspects of movie v...\n Bollywood fans pretty much hold Amitabh Bachan...\n Yes, a true classic! This is what British dram...\n Don't know what film or version Jeff saw, but ...\n \"A Gentleman's Game\" uses the game of golf in ...\n Ride With the Devil has something rich and spe...\n What a ridiculous waste of time and money!!!! ...\n The performances were superb, the costumes del...\n The movie is about a day in the life of a woma...\n \"Little Man\", now on DVD, is a Wayans Brothers...\n I hardly know where to begin.<br /><br />Huge ...\n The movie starts off promisingly enough, the u...\n the movie touches the soul of the audience ver...\n Playing out as a sort of pre runner to The Gre...\n Three teenage girls in an incomplete triangula...\n Cruddy, innocent..no smoking, drinking or bike...\n Well this is the first post am ever commenting...\n You have to acknowledge Cimino's contribution ...\n This has got to go down as almost one of the w...\n Because Disney more often than not, ignores th...\n Terry and June was one of the classic British ...\n The \"Confidential\" part was meant to piggy-bac...\n \"Rififi\" is a terrific heist movie, and one fr...\n Bette Midler is the best thing about this movi...\n More than just a \"kids' movie\", \"Holes\" looks ...\n I've never given a movie a ten out of ten befo...\n Way back in 1955, the British made a comedy ca...\n I wanted to vote zero or lower. I loved the co...\n Non existent plot, tons of poorly directed / s...\n When I was younger I saw the end of HAIR on TV...\n The Academy Award winning 'Kramer vs. Kramer' ...\n This film is a travesty, and isn't fit to keep...\n I have been known to fall asleep during films,...\n Shakespeare's \"The Tempest\" is a model for thi...\n I finally got myself set up on mail order DVD ...\n Sudden Impact is a two pronged story. Harry is...\n Until today, I thought there only three people...\n When you want to celebrate life and love, espe...\n Comparison with American Graffiti is inevitabl...\n No,I'm not a radical feminst bashing the henta...\n Needful Things was one of my favorite Stephen ...\n Normally I would have given this movie a 6. It...\n It's very easy to figure out why The New Profe...\n Boring, cliched and predictable. The only orig...\n It was \"The Night HE Came Home,\" warned the po...\n If you are ever in the mood for a truly terrib...\n Growing up in NYC in the late 80's/early 90's ...\n Man, what an awful film. As with many terrible...\n To call this episode brilliant feels like too ...\n I wasn't alive in the 60's, so I can't guarant...\n Barricade finds Alice Faye without any songs a...\n I'm sure to people watching this move outside ...\n The English are a little too evil, the Scots a...\n This was an excellent movie! I saw this at the...\n Loved it but still have nightmares over the ho...\n \"Back in the Day\" is an interesting, but flawe...\n I saw the MST3K version of this film and it is...\n I guess this is meant to be a sort of reworkin...\n Where the Rivers Flow North is a well-told sto...\n - A Mexican priest becomes a wrestler to save ...\n I saw this video at a friends house, and it wa...\n I saw this last night and voted it an \"8\". Sin...\n This movie is VERY LONG, but totally worth spl...\n The director states in the Behind-the-Scenes f...\n Surprisingly enough does movie does have some ...\n \"Cat In The Brain\" is a series of extremely vi...\n A coach who used to be good, but has had to mo...\n Im still in doubt if this is just a horrible m...\n Me being of Irish origins, loved this movie, N...\n \"The big goodbye\" introduces us to the first h...\n I saw it in a posh movie theater where the aud...\n Ghilli is the best movie of vijay & one of the...\n There are enough sad stories about women and t...\n I really liked this movie. Kurt manages to act...\n I just bought this movie yesterday night, and ...\n Sometimes there's a film so bad that you just ...\n A Damsel in Distress is a delight because of t...\n I think that would have been a more appropriat...\n Rented the video with a lot of expectations, b...\n Gritty, dusty western from director Richard Br...\n This is one of Stan Laurel's best solo comedy'...\n I didn't like Underdog!I mean it was really un...\n Great entertainment from start to the end. Won...\n ...........as I was when I saw this movie) I w...\n Although I like Kurt Vonnegut, I'm not particu...\n Another comedy about a plucky little country s...\n Two days ago I got a chance to watch this movi...\n The creator of Donnie Darko brings you a twili...\n The VHS cover for The Evil Below makes it look...\n My God. This movie was awful. I can't complain...\n First and foremost this movie has the stupides...\n Alice enters in a world of wonder... but not t...\n I saw this on a boring Sunday morning just thi...\n I watched this on a whim because it was availa...\n The Nutcracker has always been a somewhat prob...\n Kurt Russell is at his best as the man who liv...\n This movie reminds me of 'Eternal Sunshine of ...\n This is an excellent film dealing with a poten...\n I'm a huge fan of the Dukes of Hazzard TV show...\n I could not, for the life of me, follow, figur...\n This is a must-see movie. You will laugh, you ...\n I was recently online looking at a site that f...\n Seriously the only good thing about this year ...\n One of the latest (disaster) movies from York ...\n I was an usherette in an old theater in Northe...\n Remember the name Kevin Lime - and please, ple...\n Please -- if you haven't attempted to sit thro...\n ... and if you're very, very good it will rese...\n Just watched this film on TV and it was awesom...\n The Ali G character works brilliantly within t...\n I watched this video at a friend's house. I'm ...\n I appreciate movies like this: smart and well-...\n Wow, this film was terrible. It is as simple a...\n I saw this on Zone horror and fully expected i...\n i saw this before 'bubba ho-tep' at the fantas...\n Ko to tamo peva is the best comedy of all time...\n This belabored and sloppy spy melodrama featur...\n This movie is one of my favorites because it m...\n If this movie had a point I never discovered i...\n My 7-year-old daughter loved it, as Disney exe...\n Ocean's twelve is probably better than Ocean's...\n Granny is definitely one of the worst horror m...\n Saw this on French TV today and was most disap...\n not your typical vamp story, not bram stoker o...\n I will be honest, i rented this movie solely o...\n I think that this movie is actually entertaini...\n To put it simply, Mind of Mencia is the worst,...\n We actually watched this twice in the theater ...\n Propaganda pro-American war effort film that c...\n I did not like this film at all: The scenario ...\n King's Solomon's Mines brings us Patrick Swayz...\n Without a doubt, this is one of the worst pict...\n EDDIE MURPHY DELIRIOUS is easily the funniest ...\n OK, I am not a professional movie critic but c...\n In Reunion Island in the Indian Ocean, the own...\n I may very well be one of the few who really s...\n Yep, lots of shouting, screaming, cheering, ar...\n This should have been a moody, gritty, movie w...\n yeah..that's what the station disclaimer state...\n The movie had a cute opening, I truly believed...\n After watching the Steven Spielberg version of...\n /The first episode I saw of Lost made me think...\n DOC SAVAGE: THE MAN OF BRONZE (1 outta 5 stars...\n I just finished a marathon of this series, and...\n Having the opportunity to watch some of the fi...\n Drawing Restraint 9. dir: Matthew Barney.<br /...\n Excellent performances and a solid, but not ov...\n When I bought this film, I expected to get a f...\n Wow.. I just saw this movie on the Sundance Ch...\n WHENEVER an idea was successful during those \"...\n In Luchino Visconti's film Death in Venice, it...\n I hate this movie. I hate the show. i hate jus...\n While I do not think this was a perfect 10, I ...\n This movie was astonishing how good it was! Th...\n Why are the previews so blah for a movie that ...\n SPOILERS AHEAD------------------------- Mel ha...\n I bought this a year or more ago for $2 (yep, ...\n The Blob is a classic 1950s B-movie sci-fi fli...\n Wow, I was told this would be a B movie worth ...\n Excellent Piece of work!<br /><br />I am not a...\n This picture hit the movie screens on June 6th...\n Maybe this movie was actually intended to be s...\n Well, the big money machine has done it again!...\n Beautifully made with a wonderful performance ...\n Dull, cheap sci-fi thriller, made with an almo...\n In the last 10 years I have worked in 3 differ...\n I actually first watched One Dark Night in the...\n Working the night shift in a seedy police stat...\n Like another reviewer said, this movie is not ...\n Mind, my friends and I saw the movie based off...\n Now, this movie is the worst i have ever seen!...\n \"Autumn Spring\" tells of the misadventures of ...\n - The Best Bit : When the dull mobster (Nichol...\n This movie was kind of interesting...I had to ...\n I expected this film to be a run-of-the-mill 1...\n In England we often feel very attached to Brit...\n This film is one of the classics of cinema his...\n The pakage implies that Warren Beatty and Gold...\n With No Dead Heroes you get stupid lines like ...\n STAR RATING: ***** Saturday Night **** Friday ...\n Why are there no good reviews? Because this fi...\n Ho hum. Rich good looking kid gets in trouble,...\n This is a great concert which featured the bes...\n This is mostly a story about the growing relat...\n MY Father the hero is sweet, funny and cute. G...\n I actually didn't enjoy this movie.<br /><br /...\n I saw this movie in 1979, I was 17 or 18, when...\n Oh dear, Oh dear. I started watching this not ...\n If you are a Catalan nationalist anarcho-socia...\n I saw this play on Showtime some years back in...\n I loved this movie when I was a kid. I saw it ...\n Hey there Army Sgt. I'm sorry dude but being a...\n Just kidding, I rented 12 Monkeys the other da...\n I did my best to watch this two hour fiasco. I...\n I have an affection for these twists on Britis...\n Nemesis Game is a mind-bending film filled wit...\n I registered at IMDb solely for the purpose of...\n This movie is almost never seen today - the on...\n THE ZOMBIE CHRONICLES <br /><br />Aspect ratio...\n Forget the lousy acting, that can be forgiven ...\n Admirable but weak James Bond film mainly beca...\n It's so rare to find a film that provides a pl...\n The events of the 11th of September 2001 cast ...\n This is a true gem of corny sci-fi! Peter Cush...\n OK...time for a bit of a rant I think. It's be...\n Is torture ever right? No The answer is simple...\n I never finished this movie for a reason, it w...\n This movie is bufoonery! and I loved it! The \"...\n What a real treat and quite unexpected. This i...\n Lots and lots of information to digest, and if...\n \"Kicked in the Head\" is all about the Corrigan...\n There was not one original idea in this story....\n This independent, B&W, DV feature consistently...\n What can you say about a movie whose funniest ...\n Okay maybe it was because I happen to be in Ya...\n Is this a bad movie?<br /><br />Of course, wha...\n This movie is apparently intended for a young,...\n I'm so happy I recorded this on VHS tape when ...\n Remade today, this film would be a very creepy...\n slow moving but smart. passes you by as if you...\n A best-selling book about honour killings in J...\n I watched 'Ice Age'in the movie theater and I ...\n Despite of all the negative criticism I really...\n While filming an 80's horror movie called 'Hot...\n A gang of bandits lead by the shrewd, rugged, ...\n This film has all the earmarks of too many coo...\n It looks to me as if the creators of \"The Clas...\n What of Domino did I hate over everything, and...\n Now after watching The Advent Children twice, ...\n It is always a nice suprise when a film made f...\n magellan33 said: \"You can only do so much when...\n A professional production with quality actors ...\n ...a film comes along that manages to be absol...\n In a very-near-future world, a corrupt governm...\n This movie is worth seeing for the visual beau...\n This has to be the best movie of all time (in ...\n A young man, named Danny, has run away from ho...\n I rented this movie from my local library and ...\n I have recently found this film on one of my h...\n I know this film has had a fairly rough ride f...\n Suffice to say that - despite the odd ludicrou...\n I've seen various Hamlets, and I've taught the...\n American movies about war and Nazis simply can...\n I saw this many years after the television ser...\n Wouldn't it be great if Not Another Teen Movie...\n This is not so much film as big budget childre...\n I just finished watching this movie and I foun...\n i love horror films, low budget, 50's, 60's, 7...\n To call a film boring is not something I would...\n Screening as part of a series of funny shorts ...\n This movie could have been a decent B-movie if...\n First off I'll be the first to admit that the ...\n I've now watched all four Bo Derek vehicles di...\n Nothing more than a soccer knock-off of The Mi...\n Toy Soldiers is an okay action movie but what ...\n Not that much things happen in this movie but ...\n While my kids enjoyed the movie (and announced...\n I have seen this movie since I was a little gi...\n Its unfortunate that someone decided to spin o...\n Back when in the States, I was like about 7 or...\n As with many other pop-culture franchise serie...\n I agree that this film achieved its goals perf...\n Imaginative, quick-paced, satirical! Americans...\n Good drama/comedy, with two good performances ...\n The Play Macbeth was written by William Shakes...\n I went to see this movie not expecting much, b...\n When I saw the trailer for this film, I said o...\n I always said that the animated Batman movies ...\n Clever, gritty, witty, fast-paced, sexy, extra...\n Now what's wrong with the actors that took par...\n Randolph Scott is leaving the USA for the gree...\n Family Guy has been hilarious for so long but ...\n Gordon goes over the top in typical Full Moon ...\n Time paradoxes are the devil's snare for under...\n Part of the enjoyment that I took from this fi...\n A surprisingly complex and well crafted study ...\n Years ago, I used to watch bad movies delibera...\n I own almost every Seagal movie (yes even ones...\n This film is really cool. every thing looks li...\n In a farcical key, Gaudí Afternoons can be tak...\n This movie's one redeemable quality (besides A...\n Am glad that i am not the only one to find thi...\n When you think of brilliant Australian comedy ...\n 'Iedereen Beroemd' has everything we can expec...\n The movie gets to the guts of the tension betw...\n Just Desserts was, I must say, one of the wors...\n The sun was not shining, it was too wet to pla...\n Every time I hear Karen Carpenter's voice, the...\n This low-budget film about a writer who goes t...\n Bam Margera of the Jackass fame is back with h...\n Riding Giants<br /><br />This documentary trac...\n There's something about a movie that features ...\n When Nathaniel Kahn embarked into this voyage,...\n I decided to watch this movie in order to fall...\n This comic classic of English school girl anti...\n Why review good movies when you can review \"Tr...\n This film deals with the atrocity in Derry 30 ...\n Admittedly, there are some scenes in this movi...\n This movie was so bad, outdated and stupid tha...\n I've only seen this film once when it was show...\n In spite of its high-minded ambitions, Zurlini...\n Oh... my... god... this is without a doubt the...\n I won't go to a generalization, and say it's t...\n This movie was a disappointment. I was looking...\n \"Ghost Son\" is Lamberto Bava's best film and, ...\n This was the typical women prison movie. I tho...\n Isabel Allende's magical, lyrical novel about ...\n I didn't know what to expect from the film. We...\n The Women is a cute movie about women at all a...\n The bad news is it's still really dreadful. I ...\n This movie was a poor movie. The plot was poor...\n This movie tries to rip off Predator, but that...\n ... just look at the poor Robert Webber charac...\n This was a great movie! Even though there was ...\n I own this movie. I've seen it over 20 times a...\n Honestly, the only reason I picked up this mov...\n I just watched this movie today and not only i...\n Aside from Frank Kress (who played Abraham Gen...\n Before I saw this film, I read the comment of ...\n Whoa!Terrible, terrible, terrible, terrible, d...\n Walter Matthau is best remembered for the long...\n Prisons are not exactly renowned for their kin...\n You'll feel like you've experienced a vacation...\n This film was terrible. I thought it would be ...\n Jack Frost returns with an army of Styrofoam b...\n 'Presque rien' is a story of two young boys fa...\n I watched the entire movie recognizing the par...\n So often a band will get together for a re-uni...\n I couldn't believe my eyes once I've watched t...\n A great idea: 11 stories about 11 September. 1...\n The biggest reason I had to see this movie was...\n I first watched this show hoping for a few lau...\n in one of Neil Simon's best plays. Creaky, cra...\n Hilarious show with so many great stories, tha...\n One of the best movies ever, the idea of a dou...\n Why do people bitch about this movie and not a...\n If you expect that this movie is full of actio...\n I found the movie to be very light and enjoyab...\n I rented this movie on DVD. I knew that the mo...\n What I wouldn't do to give this film a re-writ...\n The trouble with this sort of lyrical film-mak...\n This is a good example a film that in spite of...\n Lackawanna Blues is a very moving film depicti...\n I was one of those \"few Americans\" that grew u...\n Fact: Stargate SG-1 is a cheesy sci-fi TV seri...\n It doesn't even merit a review, other than as ...\n Yet another cookie-cutter movie about a harden...\n I just finished watching this film and think i...\n For me every piece of art is to be judged by t...\n Carly Jones (Elisha Curtberth), her bad boy br...\n Is there a fire fighter cliché that is NOT use...\n A Classic Hollywood Biopic is the best sense o...\n There's only one thing I need to say about thi...\n I hafta watch crap like this all the way throu...\n This is a funny, intelligent and, in a sense, ...\n This movie isn't terrible, really. Somebody co...\n Dreamquest is by far, the best porn movie I've...\n I've discovered this movie accidentally and it...\n I saw this film at the 3rd Adelaide Internatio...\n My god, what's going on? a Uwe Boll film and p...\n I can't believe this show is still rating a 9 ...\n Consider \"I Know All\" Action hero is lighting ...\n If you're looking for a typical war movie, thi...\n This is a typically fast-moving entertaining m...\n Not being a particular fan of westerns, I watc...\n 2 deathly unfunny girls stays a their deathly ...\n (Rating: 21 by The Film Snob.) (See our blog W...\n Sisters In Law is made by the same directors o...\n Watching this PPV, I had high expectations for...\n I was a hippie age 22 in 1965, have seen the p...\n Tigerland is one of the finest films that i ha...\n DeCoteau has to be one of the worst \"directors...\n This is one of my favorite family movies. Love...\n Thankfully I watched this film alone, enabling...\n I still remember watching Satya for the first ...\n I rented this film out of the local video stor...\n Expecting to see a \"cute little film\" from mai...\n Well, I had to be generous and give this a 2. ...\n Boogie Nights is full of surprises, nothing qu...\n While the 'special effects' and technical attr...\n OK, so the FX are not high budget. But this st...\n I saw this film last night (about 102 minutes)...\n This is a big disappointment. The main problem...\n Otto Preminger's noir classic works almost as ...\n Corridors of time. The movie you can watch if ...\n In my opinion, this is a pretty good celebrity...\n Despite the overwhelming cult following for th...\n Fires on The Plain (1959) ****<br /><br />You ...\n Eric Rohmer's 'The Lady and the Duke' is based...\n Leos Carax has made 3 great movies: Boys Meet ...\n Let me start by saying that I'd read a number ...\n First and foremost I would like to say that I'...\n May be I don't get it right. I mean the movie....\n Based on the 1952 autobiography \"A Many-Splend...\n This is a movie about making a movie. Such mov...\n Ridiculous-looking little boogers that spawn f...\n This movie is a classic in every sense of the ...\n Randall \"Memphis\" Raines is a retired master c...\n I'm not usually one to slate a film . I try to...\n I've been looking forward to watching \"Wirey S...\n The short that starts this film is the true fo...\n We don't have this on television in England bu...\n I was very impressed with this film from newco...\n If Todd Sheets were to come out and admit that...\n I don't know, but the movie was just too simil...\n The premise is ridiculous, the characters unbe...\n Who was George C. Scott? George C. Scott was a...\n I must say I'm an avid horror movie fan, and c...\n Saw it as many times as I could before it left...\n I went to see this movie with a crowd that con...\n The Grudge 2 is one of the films that makes me...\n One of the better teen comedies to be filmed d...\n Mixed group of \"experts\" (explorers, divers an...\n THE SEA INSIDE (2004) **** Javier Bardem, Bele...\n I was a junior in high school when \"Flesh\" hit...\n Lame, ridiculous and absurd. My 6 year old son...\n i usually don't write reviews but i can't unde...\n ===========BIG SPOILER========================...\n I turned this off about 50 minutes into it! Wh...\n What can one say about Elvira that hasn't alre...\n Words fail me.<br /><br />And that isn't commo...\n This was an appallingly bad film! Ashley Rose ...\n I purchased the DVD set on a recommendation fr...\n In the previews, \"The 40 Year-Old Virgin\" boas...\n This is a new Barbie movie. The graphics were ...\n I began watching this movie on t.v. some weeks...\n This film has the look and feel of a Student f...\n National Lampoon's Class Reunion is a classic ...\n I went to see Hamlet because I was in between ...\n *SPOILERS AHEAD*<br /><br />Great WrestleMania...\n This film is an attempt to present Jared Diamo...\n This should have been a short film, nothing mo...\n I've seen this movie a few times and with each...\n This movie is astonishingly poor. It was on te...\n I didn't have very high expectations about Jus...\n ****Excellent<br /><br />***Good<br /><br />**...\n There are shows and films I've seen and subseq...\n This is one of the most horrible 'scary' movie...\n Stalker is right! Girl sees guy, girl wants gu...\n On the face of it a film about women wanting t...\n One of the most frightening game experiences e...\n I first saw this when it was picked as a sugge...\n This is a ravishing, yet spare adaption of Tho...\n Serum starts as Eddie (Derek Phillips) is deli...\n Although I really enjoyed Jim Carrey's latest ...\n The movie is just plain fun....maybe more fun ...\n This is a really stupid movie in that typical ...\n One would have to be very jaded indeed not to ...\n After watching many of the \"Next Action Star\" ...\n Prominent attorney Walter Pidgeon takes a murd...\n Most of Kieslowski's films seem like puzzles t...\n Just saw the movie, it's actually pretty good....\n I saw the movie recently and really liked it. ...\n Simply awful. I'm including a spoiler warning ...\n Okay, now what the hell is this supposed to be...\n Super original. Really great movie! James Fran...\n This is a gorgeous movie visually. The images ...\n For years, I've been a big fan of Park's work ...\n ****MINOR SPOILERS*** As a bad movie connoisse...\n A terrible film which is supposed to be an ind...\n I finally got a chance to settle in and compar...\n Wowwwwww, about an hour ago I finally finished...\n i love this show! it is amazing...i can never ...\n Sharky's Machine finds Burt Reynolds as a narc...\n American expatriate Jules Dassin makes an awar...\n ***Spoilers ahead*** My late childhood had two...\n I could not take my eyes off this movie when i...\n The Unborn is a pretty good low-budget horror ...\n I went to the cinema with two of my friends, a...\n I was lucky enough to watch this film in the r...\n \"The missing star\", who competed for the Golde...\n \"Dead Man Walking\" is a piece of incredible fi...\n It has to be admitted that the best work of Ha...\n It is really a shame that IMDb doesn't let you...\n This starts off bad, what with the three women...\n Sam Firstenberg's \"Ninja 3:The Domination\" mix...\n I will start this off by saying I couldn't get...\n National Lampoon's Christmas Vacation 2: Cousi...\n I haven't written a review on IMDb for the lon...\n 20th Century Fox's ROAD HOUSE 1948) is not onl...\n I wish I could have given this a Zero. Sure I'...\n I like British humor, I believe it's one of th...\n I was a fan of the book ever since third grade...\n Dakota Incident has to be one of the strangest...\n What a great cast and what a pathetic attempt ...\n This is one of the most calming, relaxing, and...\n I watch a TON of movies and enjoy the occasion...\n I got in to this excellent program in about se...\n I read this Thornton Wilder play last year in ...\n OK, admittedly as an Orthodox woman who LIVES ...\n didn't know anything about the film or that it...\n The idea of making a miniseries about the Berl...\n Dull haunted house thriller finds an American ...\n Edge Vs. Michaels-Boring in general (loved the...\n LIVE A LITTLE, LOVE A LITTLE is one of Elvis' ...\n An excellent story well told by the film maker...\n I feel privileged to have accidentally seen th...\n The dog can act...unfortunately nobody else in...\n This movie is George C. Scott at his very best...\n I really liked this movie. One thing I have no...\n What was the point of this movie? What was the...\n Burt Reynolds' riposte to Clint Eastwood encro...\n The problem with family dramas is that, outsid...\n Somehow, somewhere, someplace.. you GOTTA see ...\n I thought this was one of the best movies I've...\n I was aware of Rohmer's admiration for the lat...\n Great battle finale and nice sets help keep th...\n The director Sidney J. Furie has created in Ho...\n I was forced to see this because a) I have an ...\n Ok i am a huge Traci fan so her just being in ...\n I saw only the first part of this series when ...\n Duncan Roy's writing and direction is really, ...\n I couldn't. I was bored, not just because the ...\n Some have praised -Atlantis:-The Lost Empire- ...\n lovely. i just love the movie. i want to see t...\n Bedrooms and Hallways is the kind of film that...\n As a kid I remember being nine or ten and lovi...\n I thought that this was the most interesting f...\n Something I think some people miss about great...\n It is wonderful to watch Roshan Seth (the stri...\n Of the spate of Austen films from the 1990s, t...\n I saw Fame when it first came out. It deals wi...\n This movie was completely stale and uninspired...\n It is hard to know what category to put this f...\n Made one year before ILSA, SHE-WOLF OF THE SS,...\n A kinda remake of PLANES TRAINS AND AUTOMOBILE...\n I just watched the documentary \"Fog City Maver...\n I think Samuel Goldwyn was trying to accomplis...\n Ben a out-of-town cop is convinced his sister ...\n A linear travel within a non-linear structure....\n I have seen both the MST3K version and the unc...\n David Bryce's comments nearby are exceptionall...\n Arguebly Al Pacino's best role. He plays Tony ...\n I know that Full Moon, or any other film studi...\n I work at Memorial Hermann Hospital (TMC) and ...\n When the word \"presents\" finds its way into a ...\n This film was so well-paced that I don't think...\n This movie is ridiculous. Anyone saying the ac...\n just saw this film at resfest and was floored....\n beyond the fact crazy people exist and there a...\n This film's trailer interested me enough to wa...\n In the tradition of G-Men, The House On 92nd S...\n We bought the DVD of \"Walking with Dinosaurs\" ...\n This movie is everything a Tenacious D fans ca...\n OK, I am blessed. I have seen two very strong ...\n Terrible terrible movie for Television. Once a...\n I already know that critics and some audiences...\n Unlike most reviewers here, I hated this movie...\n it was very sensitive very deep. It's my favor...\n This movie was thought to be low budget but it...\n As a big fan of most modern fantasy movies, I ...\n As usual, i went to watch this movie for A.R.R...\n This television show, is a idiotic waste of ti...\n In general, I prefer horror movies that creep ...\n I wouldn't call it awful, but nothing at all s...\n Now this is more like it! The first movie had ...\n I was bored one night and Red Eye was on and t...\n The world at war is one of the best documentar...\n Abe Zwick perfected the one-off, beautifully. ...\n What a load of rubbish.. I can't even begin to...\n I can't believe I bought this movie on DVD. I ...\n If you have plenty of time to kill and the DVD...\n Predictable plot. Simple dialogue. Shockingly ...\n There is a phrase by the experimental filmmake...\n probably the worst creature feature ever,boa v...\n That's the only word I can think of to describ...\n I have seen a lot of PPV's in the past but thi...\n The first half of this film held some promise ...\n If you rent a movie titled \"Exterminators of t...\n Nurse Betty is really an interesting movie. I ...\n I'm really tempted to reward \"The Case of the ...\n I personally LOVE this film amidst the Hallowe...\n I loved Complete Savages! Why did they cancel ...\n This is a sort of hidden gem. It has little to...\n The documentary presents an original theory ab...\n One of the scariest movies I have ever seen wa...\n The main character Lance Barton gets killed an...\n I just want to say that Chris Diamantopoulos's...\n Ok, needless to say, this film is only going t...\n Top gun without the in-house animosity. Or cla...\n This is one of the greatest movies ever maybe ...\n Shame to see an interesting story diluted into...\n I saw this at The Tribeca Film Festival, in th...\n Clearly rips off Hideo Nakata's Ringu (Ring, 1...\n Although coming after three Star Wars, Krull &...\n This movie has a lot to recommend it. The pain...\n the more i think about it, there was nothing r...\n Where Da Vinci code introduced us to Dr. Rober...\n Its a good thing I rented the movie before see...\n This is a fan-made short film that pretends to...\n Everything was better in past days. Even child...\n I just watched this yesterday and wanted to re...\n BTK Killer, Green River Killer, Zodiac Killer;...\n This animated feature (a co-production between...\n Three girls (an all-female media-crew, includi...\n Bottom of the barrel, unimaginative, and pract...\n Well...i was going to wait till this came out ...\n Can they possibly get any worse than this? Pro...\n I found this a very entertaining small kids mo...\n This is a VERY underrated movie to say the lea...\n This movie was so bad, I thought I was going t...\n Like all Carnosaur movies, this is a joke. The...\n With the exception of the sound none of the ab...\n When I reviewed the video for a local magazine...\n There are questions that sometimes hover over ...\n I can't believe that the City of Muncie is so ...\n Ghosts That Still Walk is one of those films t...\n Great artists, always suffered while they were...\n I challenge you to watch this film and deny th...\n Reba is , without a doubt , one of the worst \"...\n About 1986 I saw this movie by accident on TV ...\n Oh yes, I have to agree with the others who de...\n This is a very modest, very lovely movie with ...\n Nice combination of the giant monster and samu...\n I sit through movies like \"Tiempo de valientes...\n i watch this film with horror in my heart beca...\n A depressed creepy teenager does many bad thin...\n Knowing how old a film is, ought to prepare th...\n The late 30s and early 40s were a golden age f...\n I expected a comedy like the \"Big Mama\" movies...\n Bonjour Tristesse covers similar ground as 'Th...\n The combination of the superb black and white ...\n For my money, probably the best film - or at l...\n I thought that this film was very well made, H...\n Genre: Dinosaur, animation, New York, time tra...\n If you like films that ramble with little plot...\n I am surprised that this, well above average 8...\n I saw this film as it was the second feature o...\n I have just wasted my Saturday night watching ...\n Extremely pinching vision of a war situation w...\n Caught this recently after noticing James Earl...\n The House of the Spirits is a gripping tale of...\n I love exotic science fiction/fantasy movies b...\n I have heard about this novel a long time ago,...\n This is certainly one of the most bizarre film...\n The movie is more of a mockumentary of corrupt...\n Jeremy Brett is simply the best Holmes ever, n...\n After reading the other reviews for this film ...\n Terry Gilliam's stunning feature-length adapta...\n A woman left alone after the death of her husb...\n Kazan's early film noir won an Oscar. Some of ...\n This show is dull, lame, and basically rips of...\n I made it about 8 minutes into \"Steel Frontier...\n This movie should have been called \"The Eyes o...\n Hood of the Living Dead and all of the other m...\n I'm a big mark for the music of Neil Young, an...\n Only a 9/10 from me, a perfect ten would have ...\n I'm going to make this short and sweet. It's n...\n NATURAL BORN KILLERS (1994)<br /><br />Cinema ...\n Now i like Johnny Vegas which is a good start,...\n The film starts in the Long Island Kennel Club...\n I saw this movie on TV back in the 60s and it ...\n Cecil B. DeMille directed a series of domestic...\n As a single woman over 40, I found this film e...\n Regarded by many critics as one of the biggest...\n This is not a movie you watch for entertainmen...\n After seeing Jeremy Brett as Sherlock Holmes, ...\n My mate and I chose to watch this obvious piec...\n It was the first action movie made in banned i...\n Considering that they wanted to do a vampire m...\n - Contains 1 spoiler, market with: ***** -<br ...\n Back in the days before the Toxic Avenger, the...\n When its DVD was released i came to market and...\n I loved this movie, it was cute and funny! Lau...\n I wonder how many MINI Cooper automobiles were...\n I'm not surprised that so many people fell for...\n Apparently there's a very good reason why I ne...\n As being selected during the Quinzaine des réa...\n If you pack all the clichés about city firefig...\n I have read a lot of books in my short lifetim...\n Of all the film noirs of the 1940s and 1950s, ...\n I liked this show a lot - we got the first and...\n They call this film \"euro trash horror\". <br /...\n With a film starring the Twins, Ekin Cheng and...\n Please, even if you are in the worst of the mo...\n I was not impressed about this film especially...\n I really enjoyed this movie. I have a real sen...\n Currently playing at the 2007 German Film Fest...\n I love and admire the Farrelly brothers! How c...\n A trio sit at a restaurant table and stare wor...\n Gary Cooper is a cool headed guy. Always liked...\n 'Helen of Troy' follows the story of Helen and...\n It may not be a 10 out of 10 but for me the jo...\n We've been served - a terrible film.<br /><br ...\n After seeing this movie, I have no choice but ...\n Being a big fan of horror films and always man...\n When Pam Grier made COFFY in 1973, it was an e...\n This film just goes around in circles, and the...\n I saw this movie with an open mind, not knowin...\n European films may be slower-paced and less pl...\n Robin Williams gave a fine performance in The ...\n Every one should see this movie because each o...\n Though I really didn't feel anything for Lance...\n Contrary to most of the comments in this secti...\n I was just watching a Forensic Files marathon ...\n Legendary movie producer Walt Disney brought t...\n I think Trash really sucks. I watched it a cou...\n This is a great late night movie! What I mean ...\n The case of the Scorpion's tail is a highly st...\n Truly one of the most dire films I've ever sat...\n Irene Jacob is mesmerizing in this final insta...\n Made me think about it for days after seeing i...\n It's a hideous little production, apt to give ...\n David Chase's \"The Sopranos\" is perhaps the mo...\n \"Son of the Mask\" is a terrible excuse of a mo...\n <br /><br />I understand that people have diff...\n Cummings is falsely accused of sabotage and go...\n I saw this movie with the intention of not lik...\n I thought the original of this film was quaint...\n If I heard the male lead say \"This is madness!...\n ***SPOILERS*** This movie - called EATEN ALIVE...\n Here's example number 87,358 of Hollywood's an...\n A really good Australian film .Beautifully rec...\n I must first mention that as a group of mates,...\n Another awful movie about hockey. I if never w...\n I don't understand the humor in this film. I a...\n The Maxx is a deep psychological introspective...\n An old saying goes \"If you think you have prob...\n Carlos Mencia was excellent this is hour speci...\n I started to take a critical view on this adap...\n A film about the relationship between a man an...\n its not as good as the first movie,but its a g...\n Awful! Awful! Awful! No, I didn't like it. It ...\n I absolutely positively can't believe my fello...\n \"Destroy All Planets\" winds up settling for 'd...\n As I write this review in 2008, we are mired i...\n Short, but long enough, Cat Soup is a very wil...\n Not only is this movie a great film for basic ...\n Truly awful film made by cinematographer-turne...\n Some might say something like \"Baby Geniuses\" ...\n I enjoyed this film, perhaps because I had not...\n Tenshu is imprisoned and sentenced to death. W...\n this was a real guilt pleasure ... i saw the t...\n My boyfriend and I went to watch The Guardian....\n This entry is certainly interesting for series...\n STAR RATING: ***** The Works **** Just Misses ...\n Larry Bishop is 60-years old, dirty and not go...\n When I first heard that Hal Hartley was doing ...\n One reason Pixar has endured so well, and been...\n **Warning! Spoilers Ahead!**<br /><br />This s...\n Hollywood, the home of hype, glamor and the se...\n Eisenstein's first sound film retells the batt...\n i got a copy from the writer of this movie on ...\n When someone refers to the independent cinema ...\n Best thing I can say about this porno-horror f...\n I'm not sure what the appeal of this movie is,...\n Now don't get me wrong. If you need an insight...\n This is the second movie I saw for Horrorfest ...\n 'Anita and Me' is a drama about growing up in ...\n Last year's remake of 'The Hills Have Eyes' wa...\n I saw this show about 3-4 years ago. It was da...\n What happens when someone has so much social a...\n This typical Mamet film delivers a quiet, even...\n This movie is so dull I spent half of it on IM...\n I saw this movie while it was under limited re...\n Personally, I enjoyed Cut thouroughly. It was ...\n This movie truly captures the feeling of freed...\n OK, so maybe it's because I'm from the North E...\n Really started the 80s trend of disgusting vio...\n 'Grey Gardens'(1975) is the Maysles' brothers ...\n This is some of the worst acting I have ever s...\n Oh man, this s-u-c-k-e-d sucked.... I couldn't...\n This film was shot on location in Gerard Garde...\n I rarely even bother to watch comedic movies o...\n I watched this on cable because I was a big Le...\n Now look, I won't lie to you, but I only got t...\n EXTREMITIES is the disturbing, yet riveting sc...\n I had heard that this film was stylish and int...\n Andreas arrives in a strange, inhuman place, w...\n and it doesn't help rohmer's case that a few y...\n Before this little black-and-whiter, the touch...\n Red Rock West is one of those rare films that ...\n Just Before Dawn really surprised me when I sa...\n OK, I overrated it just a bit to offset at lea...\n In the ever growing film genre of comic book a...\n I really enjoyed the reunion a lot! I would ha...\n As a big Dostoyevsky fan, I had always been di...\n By the end of the first hour my jaw was nestle...\n It's worth boning up on the Hindu pantheon bef...\n Prix de Beauté was made on the cusp of the cha...\n In the film Kongwon-do ui him it features a re...\n Okay, during this past thanksgiving break, whi...\n I rarely make these comments but I felt compel...\n I've just seen The Saint Strikes Back for the ...\n \"Snowball Express\" from the Disney Studios isn...\n Absolutely the best thing I have ever seen on ...\n Wow, what an overrated movie this turned out t...\n Those who know who know the Kelly \"legend\" & a...\n ***SPOILERS*** Even though the movie \"They Mad...\n <br /><br />A few years ago I bought a movie c...\n This film recreates Lindbergh's historic fligh...\n I'm glad that I saw this film after Mr.Sandler...\n Most of this film was okay, for a sequel of a ...\n Sean Astin pulls off another amazing performan...\n No Holds Barred is a movie that should in no w...\n Ecstasy (1933) (USA 1940) Starring Hedy Lamarr...\n As Jack Nicholson's directorial debut, Drive, ...\n I like the show, but come-on writers, get some...\n The premise of the film was very promising - s...\n I was all ready to pan this episode, seeing th...\n I totally agree that \"Nothing\" is a fantastic ...\n My wife and I watched this abortion from its b...\n I saw this movie so long ago, but it remains i...\n Six stars for Paul Newman's portrayal of Gener...\n I would have given this movie a 1, but I laugh...\n I have fond memories of watching this when it ...\n It's been quite some time since I've watched t...\n In France, it's considered polite from French ...\n My, my, my: Peter Cushing and Donald Pleasance...\n Despite having 6 different directors, this fan...\n HOLLOW MAN is one of the better horror films o...\n does anybody know why this movie is called the...\n The first look on the cover of this picture, i...\n I went to see this film because it was recomme...\n *some spoilers*<br /><br />I was pleasantly su...\n This was the first of Panahi's films that I ha...\n German nut case Jörg Buttgereit apparently has...\n Before I sat down and watched this film on HBO...\n I had suspicions the movie was going to be bad...\n This movie is based on the game series: Final ...\n \"Horrible People\" ought to be the subtitle of ...\n the IMDb guidelines state that you have to dec...\n Not long enough to be feature length and not a...\n STAR RATING: ***** Saturday Night **** Friday ...\n I took my 4 year old twins to see this movie t...\n Patricia Hunter: Oh, professor, do you also ma...\n For real film people, this film is a must, sin...\n It's strange, while the film features full X-r...\n Yes!! They finally got it down to perfection. ...\n I only saw this recently but had been aware of...\n This is the final episode we deserved. At the ...\n Almost 30 years later I recall this original P...\n A couple of days after writing about how garba...\n I had the pleasure to view this film when I wa...\n ABC's version of the life of the late Pope: Th...\n Although many Billie Dove fans are delighted w...\n I dislike this movie a lot. If you've read the...\n This work is striking in its accurate depictio...\n \"Classes tous risques\" is one of the best \"gan...\n This movie which was released directly on vide...\n Having loved 'Paris, Je T'aime', I highly anti...\n I saw Chan Is Missing when it first came out, ...\n Do not see \"Mr. Magoo.\" It is one of the worst...\n All I can say after watching Snitch'd is pleas...\n I can always tell when something is going to b...\n I hope she can keep acting and directing. She'...\n Improvisation was used to a groundbreaking deg...\n This is a classic continuation to Bleu, the li...\n This show is terrible. I cannot get over the c...\n I can't believe currently this movie is rated ...\n I'm having as much fun reading the user commen...\n I came home late one night and turned on the T...\n This film is probably pro-Muslimization. <br /...\n what a preposterous story ,murder blackmail,ch...\n After seeing a preview for this film at my loc...\n Leonard can write lyrics, but he sure can't si...\n This is really terrible.<br /><br />The only r...\n Since Siskel's death and Ebert's absence the s...\n The perfect 6 step recipe for a boring middle ...\n I first heard of this film from a friend. She ...\n Watching John Cassavetes debut film is a stran...\n The Midnight Hour AKA: Tell Me No Lies (as fou...\n Really bad shot on video \"film\" made by not on...\n The problem with this movie is that it is tryi...\n I read that this did not well, that the story ...\n This movie is the second worst film that I hav...\n My wife and I loved this film. Smart dialogue,...\n Will they ever make movies without nudity and ...\n Not wishing to repeat what everyone else has n...\n Do not be misled. This is NOT a zombie movie. ...\n I would not like to comment on how good the mo...\n Simply put, Oliver! is one of the greatest mus...\n This is a poor film by any standard. The story...\n \"I'll Take You There\" tells of a woebegone man...\n Despite the all-star cast, this attempt at epi...\n \"Dogmatic,\" as another reviewer described this...\n I've watched this movie twice now on DVD, and ...\n This was a great show...I don't remember much ...\n This is a great premise for a movie. The overa...\n Ali G Indahouse has got to be one of the funni...\n A dark, yet humorous tale involving a cop who ...\n It is well known that Irene Dunne could sing s...\n Unique movie about confused woman (Lindsay Cro...\n I have tried watching this show on several dif...\n First of all my heartfelt commiserations to an...\n True, the setting in Paris is great. The actor...\n Frank Langella steals my heart in everything h...\n The killings in this movie isn't that bad, but...\n Absolutely one of the worst movies of all time...\n Having been a fan of 'Columbo', I was sorely d...\n Private Practice is supposed to be a medical d...\n I didn't understand what that line meant... I ...\n The movie starts in Mexico where a girl has be...\n As with most viewers of this film, I'm an avid...\n In fact, everyone responsible for this dreck o...\n In watching this early DeMille work, it was on...\n OK. Finally, a horror film that's done well. A...\n Hope the summary line won't irritate you that ...\n Superb! Even the Author was laughing at the en...\n Mat Spirogolou's (Toby Malone) family know he ...\n Oh God! It could be a very interesting film an...\n First, there is NO way the remake can be as go...\n Henry (Don Ameche) turns up at the entrance to...\n (This review will have some very obvious spoil...\n In the aftermath of September 11th in New York...\n I must tell you the truth. The only reason I w...\n This movie deserves a 20/10 if I could give on...\n I thought this was a very good TV series and I...\n A still famous but decadent actor (Morgan Free...\n When it comes to movies, I don't easily discri...\n A skillfully directed film by Martin Ritt wher...\n James Cagney plays Richard Gargan (nicknamed \"...\n Here we are: two travelers from a distant futu...\n What could have been an engaging-and emotional...\n Murder By Numbers is one of those movies that ...\n I just watched \"The Last Wave\" in my school's ...\n I am a German student so sorry for eventually ...\n Pretty good picture about a man being in the w...\n The threesome of Bill Boyd, Robert Armstrong, ...\n This one is tough to watch -- as an earlier re...\n I've been hearing a lot of this new bird flu t...\n I saw this movie when I was in Israel for the ...\n Horrendously acted and completely laughable ha...\n The movie is a total crap. We have two good ac...\n My Take: Typically routine and lazy straight t...\n My, Kasi Lemmings certainly is a fair looking ...\n This movie is \"the\" stupid comedy of the year,...\n I think \"The Best of Times\" was a lost cause f...\n Generally, I've found that if you don't hear a...\n Brooke Shields -- in a departure from her \"Sud...\n \"Shadows and Fog\" is surely one of Woody Allen...\n Dreamland started out moderately interesting b...\n MELTDOWN is pretty interesting SCI-FI. No majo...\n My goodness is this movie bad. I was totally m...\n AWiP tries to be funny, scary, tense, and roma...\n This was an atrocious waste of my time. No plo...\n In the tradition of \"neo\" film noir flicks lik...\n Michael Kehoe has accomplished quite a feat, e...\n I bought this out of curiosity. How did John C...\n I very much enjoyed Bruce Almighty but the min...\n This movie i've loved since i was young! Its e...\n I found Code 46 very disappointing. I thought ...\n I saw this movie because every review I read o...\n This movie will confuse you to death. Furtherm...\n Jamie Foxx absolutely IS Ray Charles. His perf...\n I found about the movie \"Holes\" by hearing fro...\n What does this movie have? Lots of gunfire and...\n <br /><br /> It's common knowledge and has bee...\n Just about everything in this movie is wrong, ...\n How can you tell that a horror movie is terrib...\n The Chinese film title of \"In the Mood for Lov...\n When I first saw this movie in the theater I w...\n I would give this movie 5 rather than 3 if it ...\n With the exception of the main character, the ...\n The title comes from an alteration an adolesce...\n Alright, let me break it down for ya... Haggar...\n No one is going to mistake THE SQUALL for a go...\n We all know what Chan-wook Park can do. If you...\n This is a perfect example of the 90's mainstre...\n Greg Davis and Bryan Daly take some crazed sta...\n Horror omnibus films were popular in the seven...\n I actually saw THE EVIL on the big screen. I s...\n My gosh, this movie was nothing more than film...\n This is good movie that is flawed in many ways...\n This was truly a heart warming movie. It is fi...\n This movie is bad.<br /><br />This movie is RE...\n As a former Erasmus student I enjoyed this fil...\n An interesting TV movie based on true fact, be...\n This movie was really interesting... it also i...\n Many believe this movie is a baseball movie. S...\n Not even the most ardent stooge fan could poss...\n this movie is certainly worth a watch. it's fu...\n ...the world may never know. (The film that di...\n Scott Henderson (Alan Curtis) is unjustly accu...\n Before I speak my piece, I would like to make ...\n I love the movies and own the comics, the comi...\n May (Anne Reid) and Toots (Peter Vaughan) are ...\n More of a near miss than a flop, MR. IMPERIUM ...\n Red Rock West (1993)<br /><br />Nicolas Cage g...\n I don't think I'll ever understand the hate fo...\n In the Old west there are always the men who l...\n Very resistible but ultimately harmless film v...\n Following my experience of Finland for slightl...\n Eytan Fox, whilst generally leaning on the apo...\n As much as I respect firefighters for what the...\n And I don't say it in a bad way.<br /><br />I ...\n I think every critic who panned \"Tommy Boy\" wh...\n Cute Movie feel good movie I had never heard o...\n Kurt Russell's chameleon-like performance, cou...\n Minor spoilers follow, but nothing you won't h...\n I watched this....let me rephrase...suffered t...\n And unfortunately, so did I. ANY movie that re...\n House of Dracula works from the same basic pre...\n This is a true \"80's movie\": Back then they ma...\n I've seen this story before but my kids haven'...\n Even worse than the worst David Lynch \"confusa...\n Steve Martin looks like he's had a face lift. ...\n This is a horrific re-make of the French movie...\n Rozema's 1999 adaptation of Mansfield Park is ...\n I have little to no interest in seeing another...\n The saddest thing about this \"tribute\" is that...\n A young man discovers that life is precious af...\n BRIEF ENCOUNTER is a ghastly and pointless rem...\n I work at a movie store, and as such, I am alw...\n For producer David O. Selznick, no one directo...\n There are few movies that appear to provide en...\n \"Beyond the Clouds\" is an over-the-top artsy g...\n In addition to being an extremely fun movie, m...\n Expecting a combination of scifi and period fi...\n This is the middle cartoon of the three (betwe...\n This movie is directed by Renny Harlin the fin...\n Finally, an indie film that actually delivers ...\n I remember watching this film back in 86' when...\n I spent eight years running movie theatres in ...\n Doesn't this seem somewhat familiar? Oh wait, ...\n \"A scientist has developed a serum which grote...\n Summer season is here when the choices in the ...\n Watchable but pretty terrible. How shocking th...\n If you are under the age of 6 or 7, then you'r...\n Wow! I'm shocked to learn that it's a small wo...\n When i first saw the movie being advertised i ...\n my friend made me watch this awful film.. ugh....\n This is the true story of how three British so...\n \"Fever Pitch\" isn't a bad film; it's a terribl...\n Terry Cunningham directs this Sci-Fi Network o...\n I absolutely fell in love with \"Living in A Bi...\n With this cast and budget you will expect more...\n You've got to watch this movie! It is so bad i...\n WORTH IT FOR: If not for Mick Molloy's work, t...\n Enhanced by the expressive cinematography of A...\n YOU BELONG TO ME (1941) is a example of the 'S...\n Serendipity. I thought I was off to a bad star...\n This looks like one of these Australian movies...\n \"The King is Alive\" is a flawed and contrived ...\n `Rock star' is not on its way to any `stairway...\n I've read the comments on Las Vegas and do agr...\n I've seen other Guinea Pig films, like Mermaid...\n This film is a perfect example that a movie ca...\n One minute into THE UNTOLD and it`s already ri...\n I do not generally appreciate light-weight att...\n CAUTION SPOILER: At the end of the movie it is...\n This short was nominated for an Academy Award ...\n My life is about saving animals. I do voluntee...\n Can this really be a Troma movie? Some scenes ...\n I once lived with a roommate who attempted sui...\n One can only imagine the film Mr. Welles might...\n Production line collection of fart jokes that ...\n This film may have been the biggest let-down I...\n Like another user I got this cheap - I thought...\n Guy is a loser. Can't get girls, needs to buil...\n Casting Jack Cassidy as Ken Frankin was sheer ...\n I can't remember many details about the show, ...\n This was the third remake of SLEEPING WITH THE...\n 1992's \"Batman Returns\" was Tim Burton's secon...\n \"Duckman\" is a great show. I first saw it when...\n I didn't really go into \"Reign Over Me\" knowin...\n Robert Aldrich's brutal, quasi-black comedy \"T...\n As the one-line summary says, two movies have ...\n An Arab American man is kidnapped from an Amer...\n Apart from being a clever and well-marketed va...\n I think Homegrown is a bit of a misnomer for t...\n I was so entertained throughout this insightfu...\n I decided to watch this ultra-low budget film ...\n I found this movie to be a great idea, that di...\n Don't waste your time and money on it. It's no...\n Ruthless mercenary Bruno Rivera (Paul Naschy i...\n I watched this last night for the first time i...\n Hardly the stuff dreams are made of is this pu...\n The documentary begins with setting the perspe...\n This is the story of a young woman seduced and...\n Well it's been a long year and I'm down to rev...\n The last couple of weeks in the life of a dead...\n Corean cinema can be quite surprising for an o...\n The Love Letter is one of my all-time favorite...\n I like Tom Hanks, and he is one of few actors ...\n I love Sabrina! Its one of my fave shows!! My ...\n Did anyone read the script. This has to be som...\n In & Out was a funny comedy with good performa...\n This movie is a complete and utter waste of ti...\n I think Crewes did her evil part very well she...\n In the small American town of Meadowvale Dr. A...\n In watching this off and on for a few seasons,...\n You may not believe this, but when the credits...\n this movie, i won't call it a \"film,\" was basi...\n This movie is the worst movie i have ever seen...\n It seems the makers of this film had trouble d...\n I bought a tape of this film based on the reco...\n This is awful, you just could't believe it. Th...\n I'm usually not too into a specific show (save...\n I read on the web that this film is being rema...\n How can anybody say that this movie is a comed...\n This movie is just so awful. So bad that I can...\n I loved this movie - the actors were wonderful...\n Didn't know anything about the movie before wa...\n When you come across a gem of a movie like thi...\n I could not believe the original rating I foun...\n bad acting, bad southern accents, inconsistent...\n \"Look, I know this may suck right now, but pai...\n I am very disappointed because I expected a re...\n Most people get the luxury of typing in the ti...\n I was only fourteen when I first saw the Alien...\n An older man touches a flower in his wife's gr...\n I saw this movie once a long time ago, just on...\n I gave this film a 2 mostly because it does ac...\n Years ago, I caught a fairly well made TV movi...\n Wealthy psychiatrist Lindsay Crouse has just p...\n The last good Ernest movie, and the best at th...\n This animation TV series is simply the best wa...\n This movie is now appearing on digital TV at l...\n The star of this film is the screenplay. Atten...\n Saw this film when it was an entry in Santa Fe...\n Cheap, mediocre sequel to the successful \"The ...\n I wasn't surprised to read a comment by the di...\n Rupert Friend gives a performance, as Prince A...\n I rented this movie for two reasons. The first...\n While driving in a highway to the wedding of h...\n Bizarre take on the Cinderella tale. Terribly ...\n The movie is incredible, it has a sound track ...\n For many the hit series was ten years of pitch...\n The Gang of Roses. \"Every rose has its thorns....\n Don't pay any attention to the rave reviews of...\n So there's an old security guard and a guy who...\n I felt that the movie was dry... very disappoi...\n The original is a relaxing watch, with some tr...\n This was a wonderful little film that truly wa...\n This is a great film in many different ways......\n Think of this film as a Saturday morning live-...\n 'Baptists at Our Barbecue' is the best film ev...\n This film was excellent - the emotional power ...\n This movie features a gorgeous brunette named ...\n These three directors are off to Good Beginnin...\n I saw this movie for a first time years ago, w...\n Like a lot of series pilots, Dark Angel's open...\n Good attempt at tackling the unconventional to...\n Never having read or seen the Bard's original ...\n I've read some terrible things about this film...\n This movie is a fine example of what happens w...\n Seemingly intended to be a thriller of a movie...\n The most positive thing I can say for this dul...\n I think the biggest failing something can have...\n I loved this movie for two reasons: 1) Jeff Co...\n \"The New hope of Romanian cinema\"...if this is...\n This movie is probably one of 3 worst movies m...\n This movie is bad. I don't just mean 'bad' as ...\n I spent 5 hours drenched in this film. Nothing...\n Four best friends young male chauvinist pigs (...\n Tracy and Matt, Michelle and Sebastian: these ...\n I really miss the production of good old fashi...\n This outstanding Argentine independent film is...\n I never wanted to see this film, then one day,...\n Well, maybe I'm just having a bad run with Hin...\n Don't really know where to start with one of t...\n What starts off fairly well (and quite disturb...\n Synopsis: Kid is not accepted into any college...\n Being a huge Laura Gemser fan, I picked this u...\n \"Four Daughters\" introduced John Garfield to a...\n The story of how the (communist) leader who fr...\n The concept is excellent. The execution typifi...\n Evil Ed is a Swedish film about a man named Ed...\n Well, well....Roeg touched a bit of a nerve th...\n I just wish I was eloquent enough to say how G...\n This show was great, it wasn't just for kids w...\n One of the greatest crimes made against Sci-fi...\n What is there to say about an anti-establishme...\n People comparing this movie to big blockbuster...\n Jon Good's Wife (simply one of the worst title...\n Since this is Black History Month and I'm revi...\n I'm normally a fan of Mel Gibson, but in this ...\n Ever wanted to know just how much Hollywood co...\n Unlike other commenters who have commented on ...\n Another \"end of the world\" film that begs comp...\n Elephants Dream was supposed to be the flagshi...\n BROADCAST NEWS opens with a series of brief vi...\n Aside from the horrendous acting and the ridic...\n Within the first few minutes of this Dutch thr...\n Shall We Dance is an excellent film because it...\n A fun romp...a lot of good twists and turns! (...\n I saw this film at the Toronto International F...\n I didn't think the French could make a bad mov...\n Ever had one of those nights when you couldn't...\n This movie is not only a very bad movie, with ...\n A multi-millionaire marries a female doctor. H...\n Ruthless evil warlord Samanosuke (superbly pla...\n this movie is so bad. but its so bad that i wa...\n I liked this movie sort of reminded me of my m...\n Rohmer strays from his usual portraits of fren...\n The retelling of a classic story is set to the...\n I really wanted to like this film, especially ...\n Brainless film about a good looking but brainl...\n After the superb AANKHEN(2002) which was a rem...\n As much as I like Walter Matthau, I felt that ...\n William Hurt scuba diving scientist??? US agen...\n In this 4th Child's Play film, Chucky gets luc...\n A young American woman visits her Irish roots ...\n The producers made a big mistake casting Mark ...\n Dolph Lundgren stars as a former cop/boxer who...\n You do realize that you've been watching the E...\n A lot about USA The Movie can be summed up in ...\n This is good little shocker; not perfect by an...\n Im not usually a lover of musicals,but if i ha...\n only if its the last thing yo do and your humo...\n A low budget effort from Texas that's at least...\n Even though this was a well-told story, I foun...\n If you like Madonna or not, this movie is hila...\n I've seen this movie about 6 times now. And ea...\n My Take: Routine political thriller with medio...\n Being half-portuguese doesn't render me half-b...\n Katharine Hepburn as a mountain woman who mixe...\n If they had a Zero out of 10 I would of entere...\n Where to start...Oh yea, Message to the bad gu...\n Everyone wants Duvall and Jones back, come on!...\n Omigosh, this is seriously the scariest movie ...\n IT was no sense and it was so awful... i think...\n I think that it's great how Chiller picked up ...\n What about DJ Cash Money??? This film fails in...\n As embarrassing as it is to admit, I was liste...\n I went through boot camp at MCRD Parris Island...\n As a Genghis Khan \"fan\" I was looking forward ...\n It has taken me about a year now after seeing ...\n This movie is as unique as it is overlooked......\n Maybe the target audience of this Disney Chann...\n I really liked this movie because I have a hus...\n If in the 90's you're adapting a book written ...\n This film is simply appalling, how the talent ...\n \"Tourist Trap\" is an odd thriller that came ou...\n Career criminal and crime boss, Abel Davos (Li...\n \"The Bubble\" is an effort to make a gay Romeo ...\n I was excited to discover this late sixties co...\n This was disappointing. It started well enough...\n Not as bad as 1992's \"Nails\" (where Hopper pla...\n I did it too. When i first saw the band, i dis...\n they have sex with melons in Asia.<br /><br />...\n They did it. And, boy, did they do it fantasti...\n I can't understand what it is that fans of the...\n Basically the exact same movie as \"House of Wa...\n Shower keeps within itself in so many ways. Al...\n Mimicking its long title the movie finds ways ...\n \"The Invisible Mouse\" is a delightful and diff...\n I watched this film with a group of Nazis, a F...\n I bought the video rather late in my collectin...\n I really liked this movie. Number 5, the star ...\n I can watch B,B&C and feel all the emotions I ...\n This film is really unbelievable. I've seen so...\n He-he-hello!! This is a really fun movie. Basi...\n This movie is perfect for any aspiring screen ...\n This is a great entertaining action film in my...\n The movie was slow, the dialogue between actor...\n The director does not know what to do with a c...\n this movie was horrible. I could barely stay a...\n I got this movie out of Blockbuster in one of ...\n \"Footlight Parade\" is fascinating on so many l...\n When George C. Scott played the title role in ...\n Playwright Sidney Bruhl (a wonderfully over-th...\n I like dark humor and non-PC stuff, but not if...\n I cannot comprehend how this picture was allow...\n Along with \"King of the Rocket Men\", this was ...\n Milo is an overlooked & underrated horror flic...\n Berlin-born in 1942 Margarethe von Trotta was ...\n This is one of those rare comedies where try a...\n Its too bad a lot of people didn't understand ...\n This movie kept me constantly entertained. In ...\n Yes, you can look at Babette's Feast as some s...\n I saw this movie when I was very young living ...\n The Russian space station 'Avna' with a crew o...\n It's been said several times - not least by me...\n Two years ago at Sundance I loved Josh Kornblu...\n If you cannot enjoy a chick flick, stop right ...\n It's hard to write 10 lines of copy about this...\n This movie was in one word. Terrible. First of...\n There I was on vacation when my host suggested...\n Carlo Verdone once managed to combine superb c...\n I don't give a movie or a show ten very often ...\n After reading previews for this movie I though...\n I'm into bad movies but this has NOTHING going...\n Yes, it can be done. John De Bello and Costa D...\n Most of other reactions by subscribers to this...\n I saw 2 hour version of Choker Bali. I cannot ...\n This is blatantly a futuristic adaptation of J...\n This movie blew me away. If you can see only o...\n There's the danger with the critic/philosopher...\n Trilogies are very interesting. Some go out wi...\n Everyone knows about this ''Zero Day'' event. ...\n Just watched this movie over the weekend, and ...\n this was pretty bad. pedestrian work or worse....\n Jewel Thief is *THE* crime thriller of Bollywo...\n Lindsay Anderson was very much a European film...\n The 1980's 'My Dinner with Andre,' with Wallac...\n This was a complete disappointment. The acting...\n I absolutely love the first three movies, they...\n It's a movie with a theatrical message blended...\n Although many audio recordings of great musici...\n This was without a doubt the WORST movie I hav...\n Catscratch is the best thing to come out of Ni...\n I finally got hold of a DVD copy of this produ...\n You should know that I am the type of person t...\n A Brazilian cable television is presenting \"Ya...\n This movie was a great disappointment for me. ...\n It goes without saying that a modicum of allow...\n After spotting the high rating on IMDb, I deci...\n STAR RATING: ***** Saturday Night **** Friday ...\n Pathetic. This is what happens when director c...\n This is one of the worst movies I have ever se...\n this movie wasn't absolutely atrocious, but it...\n Ok, after reading a couple of reviews on Atlan...\n What seemed as a good premise for a movie...un...\n TROMEO & JULIET - 10TH ANNIVERSARY EDITION<br ...\n When I rented this movie to watch it, I knew t...\n Imagine turning the American national anthem i...\n \"The Man in the White Suit\" is another feather...\n The storyline seemed fine, the actors seemed f...\n \"A Family Affair\" takes us back to a less comp...\n Maggie Smith and Peter Ustinov as a very unlik...\n I agree with what so many others have said abo...\n I went to a prescreening of this film and was ...\n I thoroughly enjoyed A Man Called Horse when i...\n After reading Fool For Love in a Drama class o...\n The best of everything. Just what is the best ...\n OK I saw this movie to get a benchmark for bad...\n \"Five Fingers of Death\" started the American k...\n I think it was way back in 1987 that we had ou...\n I really liked the Far Cry game, nice graphics...\n Mel Brooks really outdid himself with this hil...\n I caught this stink bomb of a movie recently o...\n The only reason I checked this film out was to...\n I just saw this at SIFF, and I absolutely love...\n This has to be one the best movies about seria...\n Citizen X tells the story of Andrei Chikatilo,...\n To summarize, my group of friends and I spent ...\n i wont go and give them my 10 bucks i went and...\n This was the first Chan film made by Monogram....\n I thought this movie was excellent,for the fac...\n George Sanders playing the Saint for the penul...\n I have not read the novel from which the film ...\n One of the major aspects of \"Malenkaya Vera\" (...\n ***SPOILERS*** ***SPOILERS*** Wow, what a pred...\n Pakeezah is in my mind the greatest achievemen...\n Mulva is put in a sugercoma by Teen Ape. When ...\n This film is totally garbage. Some imbecilic i...\n I enjoyed this film. It was lighthearted, deli...\n If this movie was about a fictional character,...\n I must say that, looking at Hamlet from the pe...\n A snore gore. I saw this piece of horrible, st...\n The first \"Home Alone\" was one of the funniest...\n You probably heard this phrase when it come to...\n \"Tumbling Doll of Flesh\" by Tamakichi Anaru is...\n I was particularly moved by the understated co...\n When you put this DVD into your player and hit...\n \"Antwone Fisher\" tells of a young black U.S. N...\n I just saw this Movie on a local TV Station (T...\n I don't know what it is about this movie- dire...\n It's difficult to make it through this movie w...\n Some of the filmmakers who are participating i...\n \"Changi\" is an Australian comedy/drama set in ...\n LOL!!! delirious was so funny.. i was in tears...\n I bought this from Blockbuster for 99p. The gu...\n This film is something like a sequel of \"White...\n Bring Back The A-team was a hour- long special...\n Fire And Ice is an animated film set in a fant...\n The funniest show ever on TV, albeit the humor...\n OK, I'm 26 so I've been thru all the action he...\n Spoilers ahead JEEEEEEEESUSSSSSSSSSS.... I hav...\n SPOILERS: The original Road House is one of th...\n The family happiness is crumbling when, the fr...\n It's really good to see Van Damme's film are s...\n This movie was seriously awful. The acting was...\n I figure this to be an \"alternate reality\" tee...\n \"Kalifornia\"is a great film that makes us look...\n During the making of this movie I once caught ...\n Take someone you love or want to love and go s...\n It's one of the imponderables of low-budget in...\n Joan Cusack steals the show! The premise is go...\n When the scientist and family man Matt Winslow...\n With its ww2 timing, falling in and out of lov...\n The first in the series was brilliant, easily ...\n *WARNING* Possible spoilers below<br /><br />T...\n \"Carlito's Angels\" is a spoof of \"Charlie's An...\n When anti-bush jokes get really easy to do, a ...\n OK this movie was made for one reason and one ...\n Firstly, this is simply the funniest movie I h...\n I can accept the fact this was the NEXT karate...\n Wow, here is another great golf movie. That's ...\n Unhinged was part of the Video Nasty censorshi...\n (Synopsis) Graduating high school senior Bartl...\n I don't recall a film which so deftly shows th...\n Just to clarify, Matthew Poncelet wasn't a rea...\n Miike makes a children's adventure film, not u...\n Nothing will ever top KOMODO with the lovely J...\n First and foremost, Zorie Barber (Zeke), might...\n along with it's partner, this is the greatest ...\n I won't bore you with story and plot lines, as...\n There are so many \"Hollywood\" movies made now ...\n This movie was trying to something, but failed...\n The first time I saw Brotherhood of Satan I wa...\n Nine out of ten might seem like a high mark to...\n The visuals and effects are up to par with the...\n Spoiler!! I love Branagh, love Helena Bonham-C...\n To solve a challenging problem, you need to st...\n This movie sucks from beginning till (especial...\n Okay,<br /><br />I realize that there are some...\n I appear to be in the minority on this one, bu...\n First of all, let me say this film isn't for e...\n An airplane transporting some scientists and a...\n It's a genuine shame that this spin-off TV ser...\n Oh, well, this movie starts off well. It's kin...\n This is my first comment on a movie in here. I...\n There is good. There is bad. And then their is...\n This is just what we need, a show about the pe...\n <br /><br />After the wit and liveliness of Hi...\n Do you liked \"Dead Man don't wear Plaid\"? What...\n Did not know what to expect from from Van Damm...\n William Wellmann, who directed one of the most...\n I've heard nothing but great things about the ...\n Carlos Mencia is not funny. From his stand up ...\n I have never seen such terrible performances i...\n Neil Simon has quite a body of work, but it is...\n Boogie Nights follows a theme that is extremel...\n \"Chairman of the Board\" is a ridiculously stup...\n The part where Meg visits the mechanic and he ...\n After looking at monkeys (oops apes) for more ...\n This film gives new meaning to the term \"uneve...\n The Journey of Hope (1990) is about a trek tha...\n Well, after seeing \"Beginning\" I thought why t...\n This movie forever left an impression on me. I...\n I just rented (yes! I paid money to see!) this...\n Dante would of been mortified, if he knew that...\n Although I rated this movie a 2 for showing a ...\n One of the most disturbing and tragic periods ...\n OK. Is Barney the best children's show of all ...\n Ruth Gordon at her best. This episode is my fa...\n The main problems of 'Saw' are related to the ...\n This is one of Alfred Hitchcock's best films, ...\n Last night, I attended a screening of Badland ...\n From the acting, direction, scriptwriting and ...\n This one man show may be the most fantastic sh...\n I remember watching this as a child in the UK,...\n I really liked BATMAN: DEAD END, I thought tha...\n This movie is not about entertainment, or not ...\n Let me start by saying I have never reviewed a...\n The greatest Tarzan ever made! This movie is d...\n Nishabd means wordless. This must be the condi...\n If you want to see a true thriller, rent this!...\n Following the advice of a friend, I got myself...\n This is a sad film made for sad people. I was ...\n Now we know where they got the idea of Snakes ...\n This is one of those movies where you have to ...\n Spawned by the same Monty Berman / Dennis Spoo...\n This film marked the end of the \"serious\" Univ...\n If you've seen Atlantis 1, then you'd know tha...\n This is one creepy underrated Gem with chillin...\n If you like the standard Sly flicks that invol...\n Well, for this abomination of a film, I wasn't...\n This Movie has great fight scenes. Now its tru...\n                  Read the book, forget the movie!\n Ettore Scola's masterful rendering of this epi...\n Religious bigotry is rampant everywhere. Austr...\n I realize it's not supposed to be BSG and I ca...\n Everybody who wants to be an editor should wat...\n holy sweet murder this is quite possibly the l...\n Like NIGHT STALKER and then X-FILES, the show ...\n This is yet another pseudo-intellectual \"let's...\n Yes this a B- grade horror. But at least the p...\n This movie is very very very poor. I have seen...\n This movie is of almost generation-defining im...\n This movie can't decide what it is -- a soft p...\n \"The Brotherhood of Satan\" is a stupefying com...\n Based on one of the books by Gabriel Marquez a...\n When I saw this on TV I was nervous...whats if...\n \"It appears that many critics find the idea of...\n I really liked this movie despite one scene th...\n This is a great family film dealing with down ...\n On first viewing this movie seems to be some k...\n Having not read the original book or seen the ...\n When I saw the film for the first time in the ...\n I bought this DVD from Walmart for cheap, thin...\n This show made me feel physically sick, and to...\n Horror movie??really???? i cant believe how ba...\n I love this movie/short thing. Jason Steele is...\n It's taken years for cult icon Bruce Campbell ...\n This movie is not at all like City of God, you...\n As a biographical film, \"The Lady With Red Hai...\n This is by far the worst movie I have ever see...\n I absolutely, positively loved the movie. I ju...\n My opinions do not flow with the majority in m...\n I had the privilege of watching \"Holly\" at the...\n Here we go another pop star breaking in to the...\n Oh God,what an idiotic movie!Incredibly cheap ...\n Alright, how someone can actually think this m...\n Worst pile of drivel to date! Everyone involve...\n Surely one of the most ill-advised remakes of ...\n I happened to catch this on TV, and wanted to ...\n This film isn't just about a school shooting, ...\n Not a good one. -Not at all.<br /><br />This i...\n Set in the Philipines, Lethal Panther 2 is a d...\n If Hollywood is to be believed, being in the t...\n Uuuuaaa! Barf! Yuk! Yuk! Disgusting! Puke City...\n I'm a nice guy, and I like to think of myself ...\n Always enjoy the Classic Horror films, however...\n But to be a little more precise I do not think...\n I came in in the middle of this film so I had ...\n I just viewed the film two days ago, and I was...\n Poor Casper Van Dien, his career has slid a lo...\n I was expecting the movie based on Grendel, th...\n Had no idea what I was going to experience vie...\n We've all seen bad movies, well this one takes...\n Before I talk about the ending of this film I ...\n I've seen comments from Turkish people (which ...\n Watching this on Comcast On-Demand.<br /><br /...\n Tourists head to Ireland for a school trip to ...\n No, I haven't read the Stephen King novel \"Thi...\n Despite what a lot of other people thought abo...\n This Wrestlemania just didn't do it for me. Wh...\n OLIVER TWIST was to have controversy as well a...\n In my opinion, National Velvet is one of the t...\n I think that there was too much action in the ...\n When I typed Savage Intruder into the IMDb's s...\n Yet another example of what British cinema can...\n This service comedy, for which Peter Marshall ...\n Bette Midler is again Divine! Raunchily humoro...\n Before seeing this movie, I was expecting a fi...\n Danny is beyond sorry.<br /><br />He keeps mak...\n With Oliver Hardy bedeviled by the sound of ho...\n Recently had the pleasure of seeing this emoti...\n Ron Howard and his \"editors\" only had one job ...\n Before you dismiss my post as \"not getting it\"...\n I watched the un-aired episodes online and I w...\n I would almost give it 10 out of 10. However, ...\n I saw the film twice in the space of one week,...\n This movie completely ran laps around the orig...\n First, let me say that I find films like Shaws...\n Clayton Moore made his last official appearanc...\n A Nightmare on Elm Street: The Dream Child, th...\n I think the biggest disappointment in this fil...\n Enter the Ninja (1981) was the first of severa...\n As with so many modern US films, there has to ...\n Walt Disney & his 9 Old Men put their own 1950...\n I just saw this delightful Japanese feature fi...\n Fantastically written, acted, and produced! Lo...\n She may have an Oscar and a Golden Globe, but ...\n In a word, god-awful... too many plot holes.. ...\n I used to watch this show when I was growing u...\n I knew about this as a similar programme as Ja...\n A competent comedy that delivers the laughs fo...\n Fabulous actors, beautiful scenery, stark real...\n My Favorite part was when the credits started ...\n It was a doubly interesting experience. For so...\n This was one of the first color films I have s...\n Id just like to say that the film was good and...\n No artful writeup here because it doesn't dese...\n I suspect this board will soon be full of comm...\n I really liked this movie, it totally reminds ...\n This is the third parody of the scary movies a...\n Hello, I was alanrickmaniac. I'm a Still Crazy...\n When watching this show you are not quite sure...\n In the 70's in Afghanistan, the Pushtun boy Am...\n The series finally hits rock-bottom with this ...\n Charlotte's deadly beauty and lethal kicks mak...\n How is it possible that no journalist or criti...\n Words fail me whenever I want to describe my f...\n Oh dear oh dear. It really gets on my nerves w...\n Obviously, there wasn't a huge budget for this...\n \"You can survive anything\". Anything except a ...\n I'd have to say this is one of the best animat...\n Watched this with my girlfriend after stumblin...\n This is one of the very, very few films that a...\n Seven months since a revelatory viewing of Fac...\n Poor Jane Austen ought to be glad she's not ar...\n Annoying, static comedy with a painfully misca...\n This is supposed to be well-researched and bas...\n One of the worst films of it's genre.<br /><br...\n The movie's premise is spooky: a woman gets pr...\n This movie is engaging from start to finish wi...\n I was reticent to see this flick before readin...\n The plot doesn't begin to describe the film: a...\n This movie is a brilliant lesson on Japanese h...\n First off, I want to say, \"Thanks, Disney, for...\n This film has to be as near to perfect a film ...\n This film just doesn't work. No two ways about...\n One of those Thank-God-I-don't-live-there docu...\n While most movies that pit humans against horr...\n In the past 5 years I have rented some bad mov...\n Unfortunately, because of US viewers' tendency...\n Forget the campy 'religious' movies that have ...\n I was lucky enough to see this film at a festi...\n Cassandra Peterson originally created Elvira a...\n So, Americans make t.v. series based on movies...\n This film is so wonderful it captures the gami...\n Principally it is the story of two men who wer...\n How pointless, hideous characters and boring f...\n Gadar is an example of one of Bollywood worst ...\n This is one of those little Christmas movies f...\n This movie should be required viewing for all ...\n Being a Harrison Ford fan I am probably being ...\n I first caught the movie on its first run on H...\n Usually when I don't see a show on an original...\n OK, I read the director's comment about this m...\n ...and even then, even they can live without s...\n I just watched this for the first time in a lo...\n In this flame of emotion we are introduced to ...\n i just got done watching this movie and i have...\n The majority of Stephen King's short stories a...\n Wow this was a movie was completely captivatin...\n This is a low budget, well acted little gem. A...\n One look at the rating ought to tell you this ...\n Well I had the chance to view this film the ot...\n When this show began it was fairly interesting...\n I say this. If you want to see art, you go to ...\n A lawyer is drawn into a deadly game of cat an...\n Simon's carefully written dialogues are truly ...\n I've read the positive comments on this movie....\n How I got into it: When I started watching thi...\n Using Buster Keaton in the twilight of his car...\n This is a great movie. Too bad it is not avail...\n I am from the Dallas/Fort Worth area and lived...\n First of all, I saw this movie when I was 7 ye...\n Directed by the same Jin Ishimoto that put Neo...\n Well, I suppose the good news concerning Willi...\n I really really love this show! I have always ...\n If you want to really terrify people, choose t...\n Xizao is a rare little movie. It is simple and...\n Sundown - featuring the weakest, dorkiest vamp...\n City Hall takes on the politics of a city rath...\n The main reason for watching this picture is t...\n This film is without a doubt the worst action ...\n ...about this film was the title song. After 3...\n I love the other reviews of this movie. They m...\n I was to young to ever know much about prince ...\n Lost has been one of the most mesmerizing and ...\n Walking with Cavemen, hosted by Alec Baldwin, ...\n Vanilla Sky is a 2001 remake of the 1997 movie...\n As Alan Rudolph's \"Breakfast of Champions\" sli...\n Dallas stars Gary Cooper, Ruth Roman, Steve Co...\n Man, did this film stink! It's obvious this fi...\n If there were a movie that deserved a 0 out of...\n \"The Cell\" is a rather difficult film to class...\n This movie is like so many biopic TV movies I ...\n Okay I had heard little about this film, so wh...\n This 1997 film-blanc classic tale of smolderin...\n This film starts with a pedestrian setup befor...\n This wretched psychodrama uses every shabby de...\n I don't think this cartoon was as bad as some ...\n The little girl Desi is so adorable... I cant ...\n I began riding horses fairly recently, and, as...\n I loved the movie \"Northfork\". I knew nothing ...\n This is the movie for those who believe cinema...\n I gave this movie a very fair chance, and it b...\n I would like to say that I absolutely loved Ca...\n Remakes (and sequels) have been a staple of Ci...\n Maybe I'm missing something because I've read ...\n I saw this piece of pseudo-intellectual crap a...\n Pixar has had massive success over the years w...\n Eva (Hedy Lamarr) has just got married with an...\n Excellent farce! Which, of course, is all it i...\n By 1909, D.W. Griffith had been directing film...\n Another cult strikes again. This isn't a spoil...\n I am deeply disturbed by some posts I am readi...\n The nearest I ever came to seeing this was a c...\n Sorry this was a woeful excuse for a film.. a ...\n This film should be seen by as many people as ...\n After a big tip of the hat to Spinal Tap, this...\n this is the worst film I've seen in a long lon...\n I'm so glad I only got this movie for $5. Anim...\n this film was almost a great imaginative film....\n SPOILERS AHEAD For the first ten minutes or s...\n Kirk and the crew are visiting a federation mi...\n I just realised I've been using IMDb for years...\n I do try not to take IMDb ratings to heart, bu...\n I had been looking forward to seeing this film...\n This is the first movie I ever owned on video,...\n What should have been a dramatic tale of life ...\n Now, I'm a bit biased, since I'm a big fan of ...\n Spanish films are into a, if not Golden, defin...\n This is by far the worst film i have ever seen...\n This Batman movie isn't quite as good as Batma...\n Maybe I'm really getting old, but this one jus...\n This is my fourth review of a Charlie Chan mov...\n Apparently the writer and director of this dir...\n I gave this movie a 10 because it needed to be...\n Only a handful of the segments are engaging he...\n Great fun for an evening on the sofa. Don't ex...\n (spoilers?)<br /><br />I've heard some gripe a...\n I was surprised that I liked this movie. But i...\n A film that tends to get buried under prejudic...\n Let me first state that while I have viewed ev...\n Boasting the title for the sickest film ever m...\n Lost isn't the greatest TV show in history, bu...\n In 1993, \"the visitors\" was an enormous hit in...\n You may have serious doubts about watching the...\n I saw this film in its entirety in the 1960s &...\n El Padrino :The Latin Godfather - while this s...\n The first hour of the movie was boring as hell...\n When i first saw this film i thought it was go...\n Not having seen the film in its commercial deb...\n 8 points for take on probably what really kind...\n A pale shadow of a great musical, this movie s...\n Checking the spoiler alert just in case.<br />...\n This is a rip off of the old Frankenstein prem...\n Now, I have seen a lot of movies in my day, bu...\n I have been an avid Jane Austen fan for many y...\n My website (www.theflickguy.org) lists this pi...\n This movie is still an all time favorite. Only...\n It is so nice to see Bruce Willis come down of...\n At this point it seems almost unnecessary to s...\n Zombie Planet seems like an example of good id...\n THE RUNNING MAN, along with TOTAL RECALL, is m...\n I caught the North American premiere of this a...\n This film is the best kung fu film of all time...\n This is one of those feel good, Saturday after...\n What a mess!! Why was this movie made? This, a...\n Although Never Say Never Again (NSNA) has a we...\n Much like the comedy duo of its title, \"The Su...\n Very disappointing film. By the end I no longe...\n An okay film, with a fine leading lady, but a ...\n Drones, ethnic drumming, bad synthesizer pipin...\n What a shocker. For starters, I couldn't stand...\n Until the 1990s there had never been a film ba...\n The visual effectiveness of this film is unmat...\n Although I had seen \"Gymkata\" in a theater way...\n Silly and violent thriller that is a rip - off...\n I really didn't expect much from this movie, b...\n First, I am a big fan of Alien and Alien II - ...\n Beating the bad guys... Again is the tag line ...\n The title pretty much lets you know what you'r...\n In a world in which debatable and misunderstoo...\n This forth film in the \"Angel Guts\" saga, whic...\n First off, this is not supposed to be a brilli...\n In the 1930s studios would use short films lik...\n This is perhaps the television series with the...\n \"In the world of old-school kung fu movies, wh...\n Typical De Palma movie made with lot's of styl...\n What can I say? I know this movie from start t...\n I had not seen the movie trailer when I went t...\n I tend to fall in and out of love with anime, ...\n My girlfriend once brought around The Zombie C...\n I think that COMPLETE SAVAGES is a very good T...\n When I was 11, Grease 2 was like crack. It was...\n Peter Boyle was always a great actor and he pr...\n My girlfriend wanted to see this (lol this is ...\n I must admit when I saw the preview for \"Inglo...\n Airplane apart, I don't think I've ever laughe...\n What a crappy movie! The main character in thi...\n and what a combo. Two of the century's great s...\n OK so this is about 30 minutes of gore with no...\n Watching the first 30 minutes of Sands of Obli...\n I have two good things to say about this film:...\n Being a fan of Billy Bob Thornton, and the div...\n This started bad, got worse, and by the time t...\n This is a bigger budgeted film than usual for ...\n I didn't expect a lot when i went out to see t...\n If you haven't seen the gong show TV series th...\n I just finished watching this horribly depress...\n The plot of this enjoyable MGM musical is cont...\n Closet Land is an amazing, terrifying piece of...\n As a Native film professor, I can honestly say...\n My wife and I both agree that this is one of t...\n This is a very low budget film, set in one loc...\n The video case for this film reads \"a story of...\n Stereotyped, derivative, unoriginal and boring...\n All you really need to know about this movie c...\n I saw this film at the NY Gay & Lesbian Film F...\n I caught this film at an OutFest screening in ...\n (The beginning might be a spoiler...)<br /><br...\n For me the only reason for having a look at th...\n About halfway through, I realized I didn't car...\n Just reading the reviews of this wonderful BBC...\n Red dust is both well acted and well made but ...\n What a wonderful documentary - I sat down thin...\n It's not hard to imagine what the main problem...\n Muscular 'scientists', unpleasantly thin femal...\n Bloodsuckers has the potential to be a somewha...\n I really wish that when making a comedy, the p...\n As a Long Island independent film maker myself...\n I haven't yet read Kurt Vonnegut's Mother Nigh...\n About two hundred members of a Cleveland, Ohio...\n For a film that's ostensibly about sex and lea...\n Thank God! I didn't waste my money renting it ...\n I watched the film recently and it poorly rese...\n Remembering the dirty particulars of this insi...\n Maybe I've seen one too many crime flick, or m...\n It's as if the editor and screenwriter only ha...\n For the record, I hate spoof movies. Except fo...\n As a child the first installment (\"The Little ...\n True, there are some goofs, for the one who wa...\n I think I found the most misogynistic film of ...\n This is a pretty run of the mill family move t...\n I was invited to view this film at a small art...\n Okay, I remember watching the first one, and b...\n ***One Out of Ten Stars*** <br /><br />Because...\n A gave it a \"2\" instead of a \"1\" (awful) becau...\n How many centuries will pass until the Japanes...\n This episode from the first season slightly ed...\n \"Ashes of Time\" was an audacious project but e...\n It opens - and for half an hour, runs - like a...\n I don't know what it is with these Brady kids....\n I would like to tell you just a few things bef...\n Obviously the previous reviewers here are not ...\n Why should you watch this? There are certainly...\n I have just watched the season 2 finale of Doc...\n 49. PAPERHOUSE (thriller/horror, 1988) Sick in...\n I didn't feel as if I'd been raped like I did ...\n A fine effort for an Australian show. which is...\n Watching this odd little adventure movie, it's...\n One scene demonstrates the mentality of \"Termi...\n This is a film about 17th Century Italian arti...\n This is probably the only film I've seen where...\n This movie should not be viewed unless you are...\n Nobody could like this movie for its merit but...\n Eddie Murphy and Richard Pryor team up in this...\n Really. Does any week go by that Oprah doesn't...\n With a cast of mostly lesser-tiered stars (Ala...\n I hadn't seen this in many years. The acting w...\n Im usually wary of movies hovering around the ...\n This is a very moving movie about life itself....\n The cast and crew of this cheap horror potboil...\n I know a few things that are worst. A few. It ...\n Had never heard of The Man in the Moon until s...\n Remember the chain-smoking channeler exposed o...\n This is a wonderful new movie currently still ...\n I wasn't sure at first if I was watching a doc...\n \"Purple Rain\" has never been a critic's darlin...\n I remember when this piece of trash came out, ...\n This was another great episode from season 11 ...\n My first review of 2010 is \"Into The Blue 2: T...\n Right there. Good, entertaining and accurate e...\n This is a delightful gem of a movie, unfortuna...\n after my daughter was born in 1983, i needed t...\n Very strange. But meant to be. This director i...\n I cant believe blockbuster carries this movie....\n This was without a doubt the worst thing I hav...\n This is the award that made me lose all respec...\n the movie sucked, it wasn't funny, it wasn't e...\n <br /><br />If you're at all interested in pir...\n I have had the chance to watch several movies ...\n Having been pleasantly surprised by Sandra Bul...\n I tried as hard as I could to sit all the way ...\n Twist endings can be really cool in a movie. I...\n I recently rented this promising mini series, ...\n I saw this film last night and came online spe...\n Some martial-arts purists think that comedy wa...\n The first Home Alone was a decent enough film....\n When I was a kid I remembered this show but th...\n I have to admit that in spite of all media pro...\n What. Uh...<br /><br />This movie is so dissoc...\n The poster who called this \"Plotless and point...\n Don't watch this movie expecting the Jane Aust...\n I'm glad that users (as of this date) who like...\n The English Patient is one of those films that...\n I saw this movie considering this as a normal ...\n How Tasty Was My Little Frenchman tells a stor...\n I just wanted to say that I was very disappoin...\n It wasn't the most pointless animation film ex...\n A great film requiring an acquired taste. If y...\n There are two reasons why I did not give a 1 t...\n This is one of Michael Jackson's best music vi...\n Having just watched this film again from a 199...\n Well, I have been to a British University, in ...\n One of the best western movies ever made. Unfo...\n When I watched this movie in my adolescence, I...\n Films starring child actors put themselves on ...\n I watched this movie for the first time the ot...\n George Hearn really went all out and over the ...\n I haven't seen so many people packed outside a...\n Of course I'm a bit prejudiced but for the tim...\n Excellent drama about 2 alienated, spoiled pun...\n What \"Noise\" fails to do is get us to understa...\n This film's premise seems to be that the passi...\n I've been a fan of all things Bill Maher for 1...\n I watch movies for a living, picking out which...\n Five Fingers is so bad, that I hardly know whe...\n A text prologue warns us that we should not al...\n I've come to realise from watching Euro horror...\n This is definitely the worst bigfoot movie I'v...\n This movie was on the pay channels today and I...\n Parts: The Clonus Horror is not that bad of a ...\n Gerry Anderson's first live-action foray in th...\n For the big thinkers among us, \"The Intruder\" ...\n THis is a bewildering, Absurdist Short. A mill...\n The Running Man is often dismissed as being ju...\n I gave it a 2 just because Natassia Malthe (as...\n 20 people rated this a 10! That ballot box was...\n Where do I begin? The story was so bad, it mus...\n What you bring to the movie influences your vi...\n Absolute masterpiece of a film! Goodnight Mr.T...\n Forever strong is one of those sports movies y...\n When one of my friends recommended this to me,...\n This is a cheap-o movie made by Al Adamson--a ...\n If any show in the last ten years deserves a 1...\n The title song for this movie ...........is th...\n I saw the trailer for this film a few months p...\n Why would a person go back to a person, who ki...\n This isn't a film, it's a 111-minute Evangelic...\n The premise of Bottom crossed with Fawlty Towe...\n What was there about 1939 that helped produce ...\n If you're watching this movie, you're either a...\n I've seen a lot of Seagal movies, and while mo...\n Well, some people would say that this particul...\n I had heard some bad things about Cabin Fever ...\n Just recently, I've been obsessing over and an...\n Firstly, I am a huge fan of crap films. B grad...\n This might be the worst film ever made, and is...\n Filmed in Arizona by a mostly-foreign crew, \"N...\n Nowadays it is sort of a trend to look upon al...\n \"Saturday Afternoon\" is one of Harry Langdon's...\n This game is not exactly the best N64 game eve...\n Return To the Lost World was filmed back-to-ba...\n Yep, you read that right, kids. Michael Bay sh...\n honestly, i don't know what's funnier, this ho...\n The Devil Dog: Hound of Hell is really good fi...\n This movie can best be described as a very lon...\n Oh man , this movie is amazing, It's very good...\n First things first, I was never once scared of...\n I have a letter from Ms. Knight, who went to c...\n Probably Jackie Chan's best film in the 1980s,...\n Where should I begin with this movie. All I kn...\n This movie is specially for children and I thi...\n Death bed: The bed that eats.<br /><br />Judgi...\n I also saw this amazingly bad piece of \"anime\"...\n I truly despised this film when i saw it at th...\n The first thing you should know about \"Zipperf...\n One of the finest pieces of television drama o...\n This is one of the greatest love story movies ...\n This is a very light headed comedy about a won...\n This is an excellent modern-day film noir....\"...\n Well, what can it be said about this disaster?...\n This film has an amazing cast. MGM took some o...\n Dakota (1988) was another early Lou Diamond Ph...\n Keeping all political views aside, Feroz Khan ...\n A quick glance at the premise of this film wou...\n Okay, so the previews to this film only tells ...\n Oddly enough, the Independent Film Channel sho...\n Even for a 17 year old student who loves histo...\n Like many others, I had been attracted to the ...\n Out of all the Mafia movies i have ever seen t...\n This movie was made only 48 years after the en...\n Let's cut to the chase: this movie is softcore...\n Although the film is the adaptation of the Fre...\n Flawless writing and brilliant acting make thi...\n After being bitten by a bat in a cave,a doctor...\n This is by far the worst British comedy ever, ...\n Directed and written by the famous/infamous Ed...\n This movie will kick your ass! Powerful acting...\n Happy Go Lovely is a waste of everybody's time...\n This was stupid funny movie.. Cheech and Chong...\n After Mrs and Mr. Iyer this is yet another ver...\n Caught part of GEORGE 2 on TV recently, but co...\n I was ten years old when I saw Subspecies, I i...\n Hello all--for what it's worth, I'm in a docto...\n Seeing this movie was the most fun I've had at...\n Well, I fell for it. I saw the box for this at...\n Having seen Versus previously I had high hopes...\n When I started watching this movie I saw the d...\n This was the second of the series of 6 \"classi...\n Director and FX man John Carl Buechler doesn't...\n I tried to watch this adaptation, but it was j...\n This is truly abysmal. I just got a copy of \"D...\n Trey's favourite from the first run of Season ...\n Even an old cynical DOCTOR WHO fan like myself...\n The only reason there is a question mark in pa...\n I found this to be the most enjoyable Muppets ...\n If the crew behind \"Zombie Chronicles\" ever re...\n I saw this movie in 1969 when it was first rel...\n First the easy part: this movie is pretentious...\n For fans of Troma or the Cyberpunk genre mixed...\n If you like Deep Purple, you will enjoy in thi...\n As a total movie geek with the fortunate job o...\n No spoilers here but I have been a fan since W...\n In Russia, the ordinary teenager Vera (Natalya...\n This is one gripping movie, reminiscent of the...\n Craig Brewer grew up in Tennessee, it is evide...\n I mean, nothing happens, 5 dumb kids go to Okl...\n I took a flyer in renting this movie but I got...\n This first-rate western tale of the gold rush ...\n \"Bend It Like Beckham\" is a film that got very...\n There is a great danger when you watch a film ...\n A group of human looking aliens going to Earth...\n I was fortunate enough to catch a midnight scr...\n One two three four five six seven eight and ba...\n If you're watching this without an inkling of ...\n Just awful. It's almost unbelievable that, wit...\n Surprising, witty, funny and totally engaging,...\n First of all, I must say that I love this film...\n For those of you who don't remember movies -- ...\n Will Smith delivers yet again in a film about ...\n I loved the first 15 minutes, and I loved some...\n I really enjoyed this film. All aspects of the...\n I guess I was attracted to this film both beca...\n This is quite a bad movie but oh well, this mo...\n This is an old fashioned, wonderfully fun chil...\n I was utterly disappointed by this movie. I ha...\n This movie exemplifies a certain brand of come...\n Fascinating and amusingly bad, Lights of New Y...\n Ray is interesting in parts, and technically i...\n All day now I've been watching dinosaurs, and ...\n This movie is once again, one of those movies ...\n What do you mean son of actor, not an actor. Y...\n the acting itself wasn't even that bad, since ...\n This was one of the most emotional movies I ha...\n Let me start by saying that I totally agree wi...\n As someone who was in a Pan-Hellenic sorority,...\n I liked this movie. Many people refer to it as...\n A genuinely creepy ghost story, full of chills...\n This is one of several period sea-faring yarns...\n The name of Nick Stahl, the young cast and the...\n Coonskin might be my favorite Ralph Bakshi fil...\n The 1998 Michael Keaton kiddie comedy of the s...\n This is the kind of movie which shows the pauc...\n My father has worked with top secret informati...\n New rule. Nobody is allowed to make any more Z...\n At first, I thought the Ring would be a more t...\n I didn't expect much from this film, but oh br...\n After Chicago, I was beginning to lose all res...\n I once saw a bit of this film, and was interes...\n I used to review videos for Joe Bob Briggs' le...\n Except for an awkward scene, this refreshing f...\n This movie looked like the out-takes of the de...\n Awful, confusing bit of crap from South of the...\n All those who are into the PC culture are agha...\n This movie was long and boring. Surprising tha...\n Wesley Snipes is James Dial, an assassin for h...\n This is one irresistible great cheerful- and t...\n Well, SWORD IN THE MOON finally got a DVD rele...\n 'Water' (2005), the final part of Toronto-base...\n Suggesting nothing less than a movie-length ve...\n This Documentary (Now available free on Video....\n A struggling actor finds the best way to break...\n In this extremely low-budget ( I've seen home ...\n This film moves the Cinderella story forward t...\n Thank goodness not all Dutch people are that r...\n I wrote a review of this movie further down af...\n In a college dorm a guy is killed by somebody ...\n I feel very sorry for people who go to movies ...\n This movie is excellent ( i watched the French...\n Watching this Movie? l thought to myself, what...\n Ahhh...the '80's. 1982 makes me think back to ...\n A favourite of mine,this movie tells of two fe...\n I haven't read this book, but all through the ...\n This movie had the potential to be a decent ho...\n I watched this movie after watching Practical ...\n ** Black Dragons (1942) William Nigh ~ Bela Lu...\n I don't usually comment on films or TV shows b...\n I recently saw this film and enjoyed it very m...\n PEP SQUAD is at a very low point with its conf...\n yeesh,talk about craptastic.this thing is brut...\n I loved the movie. I loved Timothy Dalton and ...\n when you add up all the aspects from the movie...\n I read the reviews of this movie, and they wer...\n This movie really proves that the world is all...\n Sometimes a film comes along that is unique. T...\n Zombie Review #3<br /><br />**Spoilers**<br />...\n I was once a big Olsen fan. I received this mo...\n this movie, while it could be considered an al...\n One day a red alley cat is fed up of being kic...\n This movie made me very happy. It's impossible...\n I don't normally feel much of an incentive to ...\n Wonderful actors. <br /><br />Lousy script and...\n I saw this film when I was a young child on te...\n A documentary about a nomadic tribe in Tibet g...\n Matt Saunders (Luke Wilson) thinks he has foun...\n I show this film to university students in spe...\n Who said it had to be believable? Do yourself ...\n Enjoyed this film which deals entirely about a...\n When I was younger, and today, Mr. Bean is a w...\n \"La Lupa Mannara\" aka. \"Werewolf Woman\" of 197...\n Rebecca De Mornay can be a fascinating beautif...\n Based on the personal experiences of director ...\n Very funny film. Classic film funny Eddie Murp...\n I'll start by relating my first encounter with...\n \"The Planet\" is an astounding piece of film ma...\n THE LAST WAVE is never going to win over the m...\n Jason Lee does well to give this doggy movie f...\n I am very sorry that this charming and whimsic...\n One of a multitude of slashers that appeared i...\n A `Wacky Chick' flick. A beauty contestant win...\n A fierce, shockingly intelligent piece of work...\n This film is one of my favorite Christmas clas...\n Weak plot, predictable violence, only semi int...\n Palwol ui Christmas is very Korean, if you hav...\n This is a rather tame fluff piece concerning W...\n Stephane Rideau was already a star for his tou...\n This is quite an entertaining B-flick in the U...\n This was a strange film. A bit horror and cert...\n Story about a widowed father (Claude Rains) br...\n When the budget doesn't allow for a Cadillac o...\n This second film is just as interesting as the...\n It is truly saddening to see a once-great dire...\n This was a excellent back when it came out. It...\n The most amazing, spiritually uplifting movie ...\n With all of mainland Europe under his control ...\n The \"gangster\" genre is now a worn subject one...\n This sounded like a really interesting movie f...\n Whenever I see a video like this, I have to as...\n I had to watch this movie for a film class, I ...\n If you haven't seen this film, do it. Its a ge...\n Reign Over Me (titled after the who song) is a...\n I watched this movie knowing that it would be ...\n One of the best love stories I have ever seen....\n I can not believe I even wasted a NetFlix rent...\n I appeared as an extra and was on location as ...\n Poor Ivy: Though to the manner born, she had t...\n I just rented and watched this movie just to s...\n I was a fan of Buffy and hoped it would come t...\n Superb. I had initially thought that given Amr...\n If you can imagine Mickey Mouse as a New York ...\n I don't understand your objections to this mov...\n A few years ago I added a comment to the IMDB ...\n Well. this was not a surprise. many people wil...\n Shot into car from through the windscreen, som...\n There is not a speck of entertainment in this ...\n How sad there is no option to post a mark lowe...\n Don't get me wrong, I love Stephen King! And t...\n Wow, there are no words to describe how bad th...\n Proudly and defiantly working class porter Per...\n I finally saw this film tonight after renting ...\n This movie is one of the worst remakes I have ...\n OK - say some college in southern California h...\n I'm too old to know (or care) exactly what the...\n Five teens set out to do some camping in the O...\n Oz is set in Oswald State Correctional Facilit...\n I have watched thousands of movies in my life ...\n \"The Moon Is Blue\" director Otto Preminger tac...\n I watched this with a growing sense of unease....\n Brendan Filone is the absolute best character ...\n This is the worst ripoff of Home Alone movies ...\n This two-character drama is extremely well-act...\n I saw this film back at the 2005 Palm Springs ...\n I saw this one on the late, late, late, late s...\n I am very into Waverly Hills and first watched...\n In THE BARBARIAN AND THE GEISHA, John Wayne pl...\n When a bomber, a patricide, a pornographer, an...\n Watch The Beguiled because it's a good place t...\n And maybe, as Fred Sandford used to say, \"one ...\n Words can't simply describe how awful this fil...\n Did I waste my time. This is very pretentious ...\n Most of us kids growing up in the 40's or 50's...\n The problem with this movie is that it isn't f...\n I saw this movie a few days ago... what the he...\n One can only sit in utter amazement at this me...\n This movie was boring. Very much like Underwor...\n When I read the synopsis - 3 people lost in th...\n Brutal, emotionless Michael Myers stabs his si...\n A couple of clarifying comments are in order. ...\n Komodo vs. Cobra is not going to set the world...\n I wanted to dog this movie, but somehow I can'...\n Okay, my title is kinda lame, and almost sells...\n Lame is really the best way to describe this m...\n Probably the biggest thing about Wild Rebels t...\n I figured that it's about time I let this one ...\n Bounty killer George Hilton, smooth Mexican ba...\n Was lucky enough to be an extra in this great ...\n The movie actually has a fairly good story, bu...\n If ever anyone queries whether cinema is an ar...\n The movie is about two stories: one is a polit...\n If you really enjoyed the 2002 Resident Evil m...\n This documentary was interesting, but it was a...\n Okay, truthfully, I saw the previews for this ...\n Nicolas Mallet is a failure. A teller in a ban...\n you know, i always fancy disturbing or strange...\n I haven't seen a lot of episodes of \"Family Gu...\n I'll keep this short as a movie like this does...\n This was another obscure Christmas-related tit...\n When i heard about this movie it was supposed ...\n As I post this comment, IMDb currently rates A...\n A movie about Vixen (Erica Gavin) who has a Mo...\n One True Thing may have seemed like a horror m...\n I can only agree with taximeter that this is a...\n The scintillating Elizabeth Taylor stars in th...\n There could be some SPOILERS AHEAD but I doubt...\n I saw \"Sweeney Todd\" on Broadway in 1980. It s...\n Emilio Estevez actually directed a good movie-...\n I've found the movie offensive for Americans w...\n 1st watched 8/26/2001 - 8 out of 10 (Dir-John ...\n What happens when the average joe finds out he...\n Like his earlier film, \"In a Glass Cage\", Agus...\n Two films are useful for scaring people to God...\n I went into this movie with high hopes. Normal...\n William Powell is a doctor dealing with a murd...\n The longer this film went on-and it seemed to ...\n I saw this the week it opened four years ago a...\n This movie is not only the funniest film ever ...\n No serious spoilers, but some very minor ones....\n It's a really cheesy parody of Tomb Raider and...\n Okay, if you've seen The Ring, you've basicall...\n This is quite possibly the worst documentary I...\n Lost is one of a kind...its so enchanting and ...\n Elvira Mistress of the Dark is just that, a ca...\n The only good part of this movie was the endin...\n I saw this on DVD ( It`s known as CORRUPT in t...\n This film isn't a little bad. It's not even ki...\n When The Matrix appeared in 1999 and questione...\n Hi everyone my names Larissa I'm 13 years old ...\n No, it's not Citizen Kane. But would you expec...\n For all that has been said about the subject m...\n Rating: 7 out of 10. Directed by Barbet Schroe...\n Why did they unleash this movie upon us? It se...\n President Harry S. Truman once said that the o...\n Dean Koontz's book \"Watchers\" is one of the fi...\n There is such rubbish on the cable movie chann...\n I'm a fan of the series and have read all 7 bo...\n I cannot for the life of me explain what the p...\n Being an otaku since the days of Robotech, I c...\n (SPOILERS IN FIRST PARAGRAPH) This movie's ant...\n I was one of the lucky people to be invited to...\n Diego Armando Maradona had been sixteen years ...\n My mom brought me this movie on a DVD. A guy i...\n Okay, the film festival crowd probably loved i...\n I know this movie is a low-budget horror movie...\n Cam Archer's lyrical Bobbycrush boldly capture...\n Being an independent filmmaker and a huge fan ...\n I love this movie... it can make me laugh! =^_...\n This has one of the more unusual plots I've se...\n Anyone who doesn't laugh all through this movi...\n What-ho! This one is jolly good. I say jolly g...\n I've seen this movie more than once. It isn't ...\n Wow, another Kevin Costner hero movie. Postman...\n I can't believe I watched this expecting more....\n I have wracked my brain for another film that ...\n There is a LOT of repetitive dialogue in this ...\n I was worried that my daughter might get the w...\n I find it terribly ironic that \"left wing\" Hol...\n Honestly, when I saw this movie years ago I im...\n I've never seen a Bollywood film before but I ...\n So I flipped on the digital subscriber channel...\n I agree with the Aussie's comments for the mos...\n OK, first, to all the haters: Get a life! I do...\n Being in the suburbs of New York when the Z-Bo...\n Tyrannosaurus Azteca is set during the sixteen...\n I saw this film many years ago, and absolutely...\n This will be somewhat short. First, don't list...\n Years ago I did follow a soap on TV. So I was ...\n \"Happy Go Lovely\" has only two things going fo...\n In Holland a gay writer Gerard (Jeroen Krabbe)...\n It's not often I give two stars to a horror mo...\n To my surprise, I really enjoyed Disney's late...\n I remember this show as it became a regular vi...\n This is an excellent, heartbreaking movie. It ...\n This film is one of the finest American B-movi...\n The Tempest has been interpreted in many diffe...\n There is a lot of obvious hype associated with...\n Straight up, I love this film. I love everythi...\n This movie shows us nothing original. Every id...\n I gave it a 2 instead of a 1 because I think \"...\n This is an in-name-only sequel to \"A Christmas...\n It actually pains me to say it, but this movie...\n Every movie I have PPV'd because Leonard Malti...\n I felt drawn into the world of the manipulatio...\n As I sit back after watching Wong Kar-wai's 19...\n The Elegant Universe brings to light many idea...\n What is most striking about this semi-musical ...\n Home Room deals with a Columbine-like high-sch...\n I love this movie! When I saw this movie on TV...\n The only reason I came across this movie was t...\n Very smart, sometimes shocking, I just love it...\n A lot of talk has been made about \"psychologic...\n This could have been a great movie with plenty...\n Garlin is unquestionably a comedian's comedian...\n I'm surprised with the questions and issues th...\n The only thing more full of holes than this mo...\n A retired diplomat, played nicely by Michael Y...\n SPOILERS CONTAINED IN ORDER TO MAKE A OBSERVAT...\n Perhaps it's just me, but this movie seemed mo...\n If you want to know what kind of music white p...\n One True Thing rises above its potentially sch...\n Okay...so i've seen a lot of really odd/unusua...\n I felt brain dead, I'll tell you. This is the ...\n Based on a true story of how a man ahead of hi...\n By far the most racist and ghettoish cartoon f...\n In fact, it never was. I'm not sure why Billy ...\n Okay , so this wasnt what I was expecting. I r...\n This is possibly the hands down worst movie ev...\n Yes it may be goofy and may not seem as funny ...\n Christopher Lee is one of my favorite actors! ...\n I can't believe the likes of Guillermo del Tor...\n I watched the pilot and noticed more than a fe...\n Empty shortening of John Irving's novel strive...\n This movie is beautiful in all ways. It is vis...\n I had the \"privilege\" of attending a special s...\n This movie was not that good at all. Here is t...\n This has got to be one of my very favorite Twi...\n Okay , so this wasnt what I was expecting. I r...\n It's always a pleasure to see characters in a ...\n What a bloody nuisance! You can't get on subje...\n this movie is the best movie ever it has a lot...\n I am wanting to make a \"Holmes with Doors\" pun...\n I have not seen it since 1998 and yet I STILL ...\n It's funny... one day before i have seen this ...\n All I can do is echo the sentiment already exp...\n I really enjoyed this episode. Seeing The Flas...\n \"Shuttle\" is/was more than a boring movie that...\n Rented(free rental thank goodness) this as sup...\n Very intelligent humor Excellent performing I ...\n Extremely thin 'plot' of satanic rituals or so...\n I should say right away that I checked the spo...\n This \"movie\" is more like a music video. Kustu...\n I thought the movie was great. I thought Krist...\n Famous was \"famous\" for their tension and rele...\n It's too bad these guys, the so-called judges,...\n This BBC version of an Agatha Christie book sh...\n Do you like explosions? How about fighting? We...\n This is the first movie I have watched in ages...\n I was first introduced to \"Eddie\" by friends f...\n Sniffing girl's panties kills a guy...and a st...\n As a reviewer has already commented, this made...\n In Panic In The Streets Richard Widmark plays ...\n <br /><br />I watched this movie just a little...\n You can't really go far when the initial story...\n Every once in a while you stumble across a mov...\n I just picked this up in a decent if not outst...\n What a joy to watch this family grow up and se...\n I saw this movie on the lowlands festival (23,...\n Friz Freleng's 'Rumours' is an excellent Priva...\n \"A stage company cast finds themselves terrifi...\n Perhaps this movie is a little too long, but i...\n I didn't know what to expect when I started wa...\n If you have ever seen a movie by Brian Avenet-...\n This one grew on me. I love the R.D. Burman mu...\n I suppose if you like pure action... you'll fi...\n Not a balanced point of view. The director sho...\n Incredibly muddled, off-putting and ultimately...\n This 60min film shows just how much fun filmma...\n I thoroughly enjoyed this movie and to date, t...\n Human Traffic is without a doubt the most orig...\n If you like to comment on films where the scri...\n Truly shows that hype is not everything. Shows...\n Half a dozen short stories of varying interest...\n The final chapter in the Hanzo the Razor trilo...\n wow...I just watched this movie...American peo...\n Moonchild is a very difficult movie to categor...\n I read the book after seeing the movie and did...\n I guess this goes to prove that Joe Don Baker ...\n The Sopranos stands out as an airtight, dynami...\n Hulk Hogan plays Rip a professional wrestler w...\n An average TV movie quality, totally formula s...\n PUBLIC ENEMIES is a kind of throw-back to thos...\n Leslie Nielson is a very talented actor, who m...\n I had VERY low expectations for this alleged \"...\n I would love to have that two hours of my life...\n Despite the fact that the plot follows the wel...\n all i can say about this film is to read the b...\n Have never understood why the MacDonald-Eddy s...\n No wonder so many young people have Attention ...\n Who wrote the script for this movie, the staff...\n From 1950 comes a neat thriller about a couple...\n LIFEFORCE was one of Cannon Films' biggest flo...\n The Seven-Ups is a good and engrossing film. I...\n How is this a documentary? Much more like a wa...\n An incoherent mess with a gratingly deafening ...\n That shall be a documentary? I saw it (which i...\n Director J.S. Cardone presents something a lit...\n Plato's run is an entertaining b movie with Ga...\n Rodney Dangerfield is a great. He has done a l...\n Damn, I've seen this movie for at least 4 time...\n \"Out to Sea\" is a fun movie starring that wond...\n The most horrible retelling of a great series....\n Read This:<br /><br />BOYZ 'N THE HOOD IS A SC...\n Like most people, I've seen Jason Priestley on...\n Brass pictures (movies is not a fitting word f...\n I watched the McCoys reunion and was glad to s...\n The film starts with a voice over telling the ...\n \"Bon Voyage\" has the fast pace that in some wa...\n Exceedingly complicated and drab. I'm a bright...\n First, they ruin it with the uniquely bad anim...\n Well, I saw this movie during the last San Seb...\n Where to begin.... This hideous excuse for a m...\n Many have stated that Orca  Killer Whale is a...\n My suggestion..... This movie was really inten...\n Barney is that idiot dinosaur who (unfortunalt...\n This is comedy as it once was and comparing th...\n Susan Slept Here turned out to be Dick Powell'...\n After an initial release of 4 very good Eurotr...\n The world may have ended. Unfortunately this f...\n I caught this movie late one night and never k...\n Let me begin by saying I am a big fantasy fan....\n I had seen Rik Mayall in Blackadder and the Ne...\n This movie is one of the worst ones of the yea...\n Lets be realistic here. This is one of the wor...\n I have to hand it to the creative team behind ...\n I would say that this film gives an insight to...\n This Blake Edwards film isn't too sure whether...\n the most amazing combination of love and psych...\n I grew up with the Abbott and Costello movies,...\n I give it a 2, because of the beautiful Medite...\n I am completely into this type of story line b...\n Apparently this Australian film based on Nevil...\n Poor action films are the graveyards for aging...\n When it comes to those eerie and uncanny littl...\n Like a latter day Ayn Rand, Bigelow is la majo...\n About one step above an Olsen's twins film, th...\n I watched about 30 minutes into this film befo...\n This movie cannot be serious because it has a ...\n Could this be by the same director as Don't Lo...\n Discovery Channel/Animal Planet must be ashame...\n There are few films that deal with things that...\n Great film from the late 1970's. Says much abo...\n There is one great moment in *Surviving Christ...\n Had the pleasure to see this film at the Big B...\n Georgia Rule has got to be one of - if not the...\n After receiving a DVD of this with a Sunday ne...\n What is the deal with all these ethnic crime g...\n I'm a fan of the old SCTV show from the late 7...\n In my opinion, the movie is an excellent examp...\n Although I can understand the bad things someo...\n Radiofreccia is a movie about all of us, about...\n This movie, as my Chinese girlfriend informed ...\n That's what my friend Brian said about this mo...\n There is something that one of the characters ...\n This movie was cheesy and it was more than tha...\n A dreary, hopelessly predictable film set in a...\n There's no use trying to describe in detail th...\n Why Hollywood feels the need to remake movies ...\n I picked up this DVD for $4.99. They had put s...\n Salesman Lenny Brown (Woods) is fast losing hi...\n What an awful movie. Full of cliches, perplexi...\n Stay Alive is a bland horror movie about a vid...\n *****SPOILERS*********<br /><br />This movie w...\n After viewing this film, I felt the compelling...\n From very long, we are seeing movies on Gandhi...\n You can't hold too much against this knowing t...\n Why would anyone want to see this?! If this wa...\n I saw this film at the Rhode Island Internatio...\n I've read plenty of Jane Austen in my time and...\n Yes, this movie is bad. What's worse is that i...\n This film is brilliant it has cute little dolp...\n I was surprised by how great Black Snake Moan ...\n Spoilers Following: I picked up the book \"Evil...\n Emilio Miraglio's \"The Red Queen Kills Seven T...\n This is one of the dumbest ideas for a movie. ...\n Of all the movies in the history of movies I c...\n I have to be honest and admit that this movie ...\n Eisenstein created the Russian Montage Theory,...\n I thought Godzilla 2000 was the worst movie ev...\n This 'Movie' has to be the biggest pile of ste...\n Of the two Slaughter movies, this is the bette...\n From the beginning, 'Til There Was You was on ...\n What annoys me with so called 'science' progra...\n This is one of those movies that I can watch a...\n Nobody said movies had to be realistic did the...\n (You'll know what I mean after you've seen Red...\n Extremely entertaining mid-1950's western that...\n And, finally, old, old Michael Corleone falls ...\n To anyone who is interested, I have managed to...\n I'm sorry to report that I have seen this film...\n OK, fans, it's out on DVD. But the only reason...\n The subject is banal, even in 1942. It is war ...\n I am not going to lie. Despite looking interes...\n The premise may seem goofy, but since Murphy's...\n This movie was exactly what I expected, not gr...\n Even though this movie came out a year before ...\n Beautifully done. A lot of angst. Friendship m...\n Three children are born during a solar eclipse...\n This is an embarrassment to everyone and every...\n Corny! I love it! Corny - just as the TV show ...\n The beginning of this movie was good. It start...\n Obviously, a number of agents didn't see beyon...\n A woman finds herself caught up in an apparent...\n A wonderful surprise of the Spanish cinema. I ...\n This has to be one of the best movies to come ...\n I absolutely fail to see what is funny in this...\n Jim Carrey is back to much the same role that ...\n The only redeeming qualities this movie has ar...\n Jeff Powers (Lou Diamond Phillips, \"Young Guns...\n OK let's get right to the point. We have five ...\n While \"Santa Claus Conquers the Martians\" is u...\n It was fabulous! The photography, editing, cin...\n How can anyone DARE say anything BAD about thi...\n In War, Inc we find the logical extension of t...\n Proof that not everything Tarantino touches tu...\n Due to its predictable, second-rate title, (th...\n There isn't one decent scene.<br /><br />Amy A...\n I have to admit I have a particular penchant f...\n As soon as I began to see posters and hear tal...\n Let me tell you something...this movie exceeds...\n I think I read this someplace: Joe Johnston (d...\n Branagh is one of the few who understands the ...\n Licence fees to watch this trash, And pay for ...\n SPOILERS Many different comedy series nowadays...\n Nigel Balchin's maze-like novel 'A Way Through...\n I'm a HUGE fan of the twin sisters. Although t...\n This is one of my favorite horror films of all...\n I am actually outraged at the comment I read s...\n In Canadian director Kari Skogland's film adap...\n The three main characters are very well portra...\n The plot is straightforward an old man living ...\n Honestly, who in God's name gave this movie an...\n I have watched 3 episodes of Caveman, and I ha...\n This movie is an exact copy of a TV series on ...\n I like bad films, but this thing is a steaming...\n This movie had to be the worst horror movie I ...\n Need I say--its a stinker! (I gave it a rating...\n OK so Paris Hilton sucks in it (typical Malibu...\n Normally I dont have a problem with gratuitous...\n \"Jag är nyfiken  Yellow\" is a lot of fun. Lik...\n First off, let me say I have wanted to see thi...\n You can tell that this is the first offering b...\n This is exactly the reason why many people rem...\n I think the problem with some reactions to thi...\n \"Solomon and Sheba\" was the kind of film that ...\n I LOVED this movie. Not as great as \"50 First ...\n This is a more interesting than usual porn mov...\n If you were a director that was looking to cas...\n Although Casper van Dien and Michael Rooker ar...\n A really great movie and true story. Dan Janse...\n This one is a hilarious diamond in the rough. ...\n \"Robin Hood: Men in Tights\" has received no re...\n 1891: Stalwart, morally upright military docto...\n In this Silly Symphony, a mouse from the count...\n In the film \"Brokedown Palace,\" directed by Jo...\n This early film from director Bob Clark (\"Pork...\n I wish Spike Lee had chosen a different title ...\n My God, this was a fantastic film. Every time ...\n This film offers you a fascinating trip throug...\n Post-feminist depiction of cruelty and sadism....\n Antonio Margheriti, director of the enjoyably ...\n This film is so copy-cat, cliché-ridden, clums...\n Think Jumanji but with a death curse. A bunch ...\n I first heard about White Noise when I saw the...\n Let us begin by saying that this film's Englis...\n The Perfectly Stupid Weapon. I think the guys ...\n It's not like an historical movie, it's not a ...\n This film sold for one-dollar at Wal-Mart on a...\n When the film started the first 4 minutes seem...\n My room-mate ordered this one off of the web a...\n I feel it is my duty as a lover of horror film...\n Travolta and Thurman deserved a better movie. ...\n Saw it first in 1975 on some German TV channel...\n Before you watch this movie - clean your ears,...\n It is amazing to me what passes for entertainm...\n Myself and my groovadelic 20-something pals ju...\n Being that I loved the original \"Caligula\" eve...\n One of the enduring classics from MGM came out...\n This budget-starved Italian action/sci-fi hybr...\n I went to see this movie tonight, trying to ke...\n This SOFT soft-core/sci-fi B-movie is what you...\n Though Stephen Gyllenhaal is a good TV directo...\n Loopy, but shrewd and formidable mob boss Vic ...\n New York playwright Michael Caine (as Sidney B...\n A brilliant film by the great John Waters. The...\n I've read some of the other comments and I do ...\n This was the first Ewan McGregor movie I ever ...\n When we are young, we all pick out an ideal oc...\n It was an interesting and entertaining movie w...\n SLOOOOOOOW, tepid, poorly produced 70's schloc...\n I really wanted to like this movie, because it...\n This very unfunny failed TV Pilot can be found...\n I've never been a huge fan of Almodovar, but, ...\n Something very strange happens when you talk a...\n First of all: I love good Splattermovies and a...\n It's not just the plot alone that makes this m...\n It could have been a better film. It does drag...\n Three young movie theater employees are given ...\n What a great movie this was. Is it heaven? hel...\n I don't know if I'm wrong or everybody els'es ...\n I've got a question for those who thought of t...\n This is certainly one of my all time fav episo...\n This movie is so cheap, it's endearing!!! With...\n This is one of the most amazing stories I have...\n I have watched this show from the beginning, a...\n Very interesting. The big twist wasn't as big ...\n Jack Frost, no kids it's not the warm hearted ...\n In an otherwise good review, loleralacartelort...\n Wracked with guilt after a lot of things felt ...\n When I saw Birthday Girl I liked it so much I ...\n I have never seen any of Spike Lee's prior fil...\n An excellent movie. Superb acting by Mary Alic...\n Nope, I am just not going to get with it here....\n 'They All Laughed' is a superb Peter Bogdanovi...\n Unfortunately, in cases such as these, there a...\n Very intelligent language usage of Ali, which ...\n Cliffhanger is what appears to be Slyvester St...\n The first time I've seen this DVD, I was not o...\n I think that my favorite part of this movie, t...\n This is one of the worst movies EVER made. I c...\n Although films about Edgar Rice Burroughs famo...\n Tim Meadows has to be the most underrated of S...\n Return to Me is a movie you will want to own. ...\n This movie must have been the absolute worst m...\n About three minutes into this thing I started ...\n Du Rififi Chez Les Hommes/Rififi(1955) can on ...\n Russians never dropped children's toys filled ...\n I will say that at least the movie makes sense...\n This film is absolutely stunning. A new Blade ...\n Quai des Orfevres takes too long getting going...\n This movie makes me want to fall in love all o...\n What we're given in this trying-to-be trendy f...\n One of Warner Brothers best and highest grossi...\n I remember when \"The Love Machine\" was first r...\n This movie may superficially appear to be flak...\n A family of dirt-farmers moves out west.<br />...\n It's a short movie for such immense feelings. ...\n Nothing Carson Daly has EVER said or done on t...\n This is awesomely bad and awesomely embarassin...\n what a relief to find out I am not imagining t...\n I thoroughly enjoyed this film for its humor a...\n Julie Andrews and Rock Hudson were great in th...\n I got this movie in the $5 bin at walmart. I w...\n No movie could ever do justice to Faulkner's c...\n Ok, at the beginning it looked like \"Shrek\" - ...\n ***SPOILERS*** ***SPOILERS*** Packed with memo...\n It's been nearly 30 years, and I STILL hate ev...\n I wish I could have voted this movie a ten, it...\n Quite simply the best reality show ever made. ...\n Terrific, deeply moving crime thriller starrin...\n As a fan of Dan Aykroyd, I watched this film w...\n Shemp finds out that he stands to inherit a mi...\n The only thing that \"An Inconvenient Truth\" pr...\n Before I see on this film, I see a lot of comm...\n Now, the sci-fi channel original company has m...\n I did not quite get Barnens O  it is one of t...\n Ever went on Youtube? Well, the definite quest...\n This movie, \"Desperate Measures\", was.... I'm ...\n If you like films about school bullies, brave ...\n I saw this in the theater when it came out, an...\n Sadly IMDb does not allow me to rate Judges lo...\n Erich Rohmer's \"L'Anglaise et le duc\" makes a ...\n This is actually a very good surreal mystery m...\n By reading the box at the video store this mov...\n Even if one didn't realize that Sellers was in...\n First off, I've read the comments by the direc...\n Overall this movie is dreadful, and should hav...\n Wirey's journey through the final days of bach...\n IN & OUT, in my opinion, is a very hilarious m...\n This movie is just as bad as it gets. If you l...\n Canto 1: How Kriemhild Mourned Over Siegfried ...\n These guys are excellent and anything they put...\n Out of all the films I could have chosen, it h...\n Terry West had a good idea w\\ this movie. He j...\n Here's what's good about \"The Slaughter Rule:\"...\n I guess if you like snow boarding you may get ...\n ...This would be the worst film i'd ever seen....\n I was initially forced to attend by my wife as...\n This is by far the worst movie i have ever see...\n \"Moonstruck\" is one of the best films ever. I ...\n ALIEN LOVE ( As this movie is known in Britain...\n Mae Clarke will always be remembered as the gi...\n I hadn't heard of Soap Girl but I saw a poster...\n I quite enjoyed The Wrecking Crew (1999), whic...\n Yes, the video cover of this movie made me wan...\n If you're like me and you occasionally enjoy w...\n Generally political messages are done on telev...\n This film is about a single mother who is happ...\n I feel much less generous with this film than ...\n These kind of movies where a psycho of one var...\n Certain DVD's possess me until I just have to ...\n Steven Seagal played in many action movies. Mo...\n This movie did not give Mr. Bachchan justice. ...\n I found this movie immensely interesting yet a...\n Famous words of foreign nightclub owner Roman ...\n Most people know Paul Verhoeven as the directo...\n OK, it's easy not to confuse this with the lam...\n I HATE THIS MOVIE!!!!!! I have never seen such...\n Leonard Nimoy directed Star Trek III, which wa...\n This short, which won an Oscar, spawned two se...\n I enjoy a good, slow-moving drama. Christmas I...\n This is a baffling film. <br /><br />The beaut...\n The title is a misnomer:the movie depicts bare...\n For all its wonderful images, for all of its g...\n Shirley Temple's films for Twentieth Century F...\n This Raggedy Ann and Andy Movie is so adorable...\n Who votes in these ratings? \"Jacknife\" is a be...\n I have seen this film numerous times and for t...\n I was searching through Hollywood video last n...\n Chokher Bali  A passion play.<br /><br />Base...\n Valley Girl will always hold a special place i...\n Having some idle time before going to work, I ...\n I purchased this film for $5 in a bargain bin ...\n scarlet coat like most revolution flicks wasnt...\n After seeing the terrible, terrible, terrible ...\n it's been awhile since i've seen Cold Mountain...\n Well, because I'm a musician I thought, maybe ...\n Oh mY God That has got to be one of the Most U...\n As I recall, my family made a point to stay ho...\n Normally when I write a review for a movie onl...\n full of surprises, beautiful, cruel at times. ...\n Uwe Boll has done the impossible: create a gam...\n This story is an excellent tale of two boys th...\n Where the hell did VH1 find the scriptwriter f...\n This is a movie which attempts a retelling of ...\n LORD PROTECTOR is kiddie fare, but for whose k...\n I must be getting old because I was riveted to...\n I got a kick out of Reynolds saying to his att...\n A long time ago, way back in the early '80s, a...\n When I saw previews of this movie I thought th...\n The film is almost laughable with Debbie Reyno...\n Yes, he is! ...No, not because of Pintilie lik...\n Well, the artyfartyrati of Cannes may have lik...\n Any time a movie is so myopic in its desire to...\n Sorry, but I will spoil both the plot line and...\n Blood Legacy starts with the arrival of lawyer...\n I've watched a bunch of episodes of Cold Case ...\n If the answer to this question is yes, then yo...\n The Director loves the actress and it shows. T...\n Rented it last night. The opening(2001) ran WA...\n This is a wonderful old fashioned Christmas fa...\n The primary plus for this movie is the combina...\n I went into The Straight Story expecting a sad...\n If you are looking for a film that is quick wi...\n When I played the first Soul Calibur on dreamc...\n If it wasn't for the very attractive Jennifer ...\n Sit back and let Director Bharatbala lead us i...\n Let me start by saying how much I love the TV ...\n brilliant screenplay..<br /><br />the screenpl...\n I am really shocked that a great director like...\n This movie was sooooooo sloooow!!! And everyth...\n This early Pia Zadora vehicle followed a famil...\n I think I can safely say (without really givin...\n I still can't believe that computer graphics a...\n This is a German film from 1974 that is someth...\n Yes, some plots are a bit hard to follow, and ...\n A young Frenchman uproots himself as he become...\n This movie made me really mad because the main...\n This brief review contains no spoilers since t...\n Does anyone else cry tears of joy when they wa...\n Oh my. Started out with such great potential -...\n Sisters in law will be released theatrically o...\n My Wife and Kids was billed as the 00s very ow...\n ok, i am really into King's stuff, but this is...\n What makes this low budget production one of m...\n Savage Steve Holland wrote and directed his se...\n The weakness of this comes from the confusing ...\n A very early Oliver Stone (associate-)produced...\n I can't believe anyone thought there was anyth...\n While some of the things in Haggard are dumb a...\n This isn't the worst movie I've ever seen, but...\n Wrestlemania 2 is the only Wrestlemania|thank ...\n Well, you know the rest! This has to be the wo...\n At the beginning of the movie, the beautiful p...\n Being a big fan of Corman's horror movies I ex...\n This is one really bad movie. I've racked my b...\n Some sort of accolades must be given to `Hellr...\n I watched this film a few times in the 90's an...\n In the aftermath of Watergate, a number of con...\n Gender Bender the Limerick:<br /><br />A man o...\n Seems Sensei Seagal is getting more and more m...\n I bought Unhinged because I got suckered by th...\n Blackadder 3 is probably the Blackadder series...\n It is one of the worst movies i've ever seen, ...\n \"El Mar\" directed by Catalonian director Agust...\n Like all cult TV shows, there is a group of pe...\n I walked out of the cinema having suffered thi...\n The cast although nothing special, all do an O...\n everyone is a genius in something. Albert Eins...\n From a poorly contrived plot line that makes a...\n I don't understand the exaggerated good critic...\n I can't believe that they took this off the ai...\n There is an interesting split in the voting fo...\n What a strange atmosphere is being created in ...\n The appeal of ancient films like this one is t...\n Okay, now I am pretty sure that my summary got...\n Riff Randell is a wildly, obsessed fan of the ...\n I'm a big fan of fan of film noir, and this fi...\n I was lucky enough to attend a screening in St...\n This adaptation of Pearl S. Buck's film is cer...\n \"Music and lyrics written and performed by Cha...\n This movie doesn't have an awful lot to do wit...\n I recall so many things about seeing this movi...\n I remember watching this when it was made and ...\n I watched this film based on the very favorabl...\n This film was so amateurish I could hardly bel...\n First of all, I believe that this movie is muc...\n You know what kind of movie you're getting int...\n \"The Intruder (L'Intrus)\" is a visual pilgrima...\n Wow, this film was terrible. It is as simple a...\n Joe Rogan's whole act is profanity laced with ...\n This movie was like a bad train wreck, as horr...\n Not a box office success; no-one really knows ...\n There's a legion of Mick Garris haters out the...\n OK, I love bad horror. I especially love horro...\n If you like silly comedies like Airplane you'l...\n Faithful to the work of Pearl S. Buck whose ye...\n Me and a group of friends rent horrible videos...\n Robert Jannuci,Luca Venantini, Venantino Venan...\n Big fat slob 'Uncle Buck', played by John (eat...\n Pretty poor Firestarter clone that seems more ...\n I awarded this presentation 4 stars. They are ...\n One thing that astonished me about this film (...\n It does touch a few interesting points.. But! ...\n This movie stars Ben Kingsley as Frank, a hit ...\n Poorly written conspiracy drama/mystery about ...\n What could ever happen in a dull Texan town in...\n I was lucky enough to get a free pass to an ad...\n \"Opera\" is one of the greatest achievements in...\n I was lucky enough to watch this without any p...\n Rumour has it that around the time that ABBA ...\n at last, a movie that handles the probability ...\n As others have noted, this should have been an...\n The subject notwithstanding, this is an amateu...\n Paul Armstrong is a liberal, Scottish-born, pr...\n I just saw \"Checking Out\" at the Philadelphia ...\n It's a pity to throw away such a good idea. Th...\n Woeful and unnecessary sequel to a bonafide cl...\n This show is awesome. I thought that the two e...\n Many critics have felt offended that R.W. Fass...\n If this is supposed to be a portrayal of the A...\n (SPOILERS IN THIS)<br /><br />\"Rosenstraße\" is...\n I was fascinated as to how truly bad this movi...\n The film gives a rather condensed version of w...\n My husband and I watched this last night...It ...\n Derek Jarman has shown us time and time again ...\n I absolutely hate it when a film completely fa...\n I particularly enjoyed Delly's review of this ...\n In Landscape after the Battle, Andrzej Wajda i...\n Different film directors from different countr...\n I have so much hope for the sequel to Gen-X. L...\n Agreeable \"Boy's Own Paper\" nonsense with a sp...\n A raw edgy thriller that aimed for great philo...\n I got a few laughs out of this one, more than ...\n Thanks to this film, I now can answer the ques...\n I have to say I was very curious on viewing th...\n A bit of a disappointing film, I'd say: the ac...\n i love this movie. it focuses on both issues: ...\n Very different topic treated in this film. A s...\n What makes watching and reviewing films a plea...\n Every Sunday, a trio of buds get together at a...\n I've never seen the original movie others have...\n a really awful movie about a 30 meters long sh...\n From the portrayals of Andy Warhol in the film...\n I looked forward to seeing this movie, because...\n For the life of me I can't understand the good...\n I didnt know what to expect . I only watched i...\n It's a waist to indulge such great actors in s...\n This movie is beautiful in many ways: the plot...\n This movie is just plain terrible. Poor John S...\n This is a truly awful film. What they have don...\n Who? What? Where? When? Why? The acting was te...\n This has to be one of, if not THE greatest Mob...\n this is a movie which reminds me of avatar- st...\n This is one of those films that's more interes...\n i think dirty dancing was a great movie, they ...\n _Saltmen_ is a long film for its genre, and qu...\n I'm not sure why Spike Lee made this train wre...\n Now this is a bad movie if I've ever seen one....\n for me,this is not a good TV show,animated or ...\n This great TV movie told of the 1975 murder of...\n Julia Stiles is a talented young actress, who ...\n I adored this, but I am an 80's kid. I loved R...\n I remember watching this late at night on blac...\n A meteor crashes into Crater Lake, the heat fr...\n It does not seem that this movie managed to pl...\n Bobby and Mikey are two little boys who move a...\n I being of Puertorican descent, had mixed fill...\n I first saw this movie here in the U.K. in Dec...\n Charles Bronson continued his 80's slump with ...\n FATTY DRIVES THE BUS is simply the funniest, m...\n Ira Levin's Broadway smash comes to the screen...\n I watched this film few times and all i can sa...\n A wonderful story about the consequences of ob...\n Im watching it now on pink (Serbia TV station)...\n This is a story of a Jewish dysfunctional fami...\n I saw this film purely by chance. It was shown...\n This is a truly heartwarming film not just abo...\n The only reason I rented this was because of t...\n Early 1950s Sci-Fi directed by Lesley Selander...\n This movie is so bad they should burn the mast...\n Primary plot!Primary direction!Poor interpreta...\n I'm not sure what it is but there seems to be ...\n I have only seen this once--in 1986, at an \"ar...\n Steve Carell stars as a person who you can rel...\n The horror. The film about the Nazis - the Ger...\n I was lured to see this movie by its starpower...\n This is an absolutely incredible film. It show...\n Circus could have been so much better if they ...\n Mildly entertaining and self consciously cheez...\n Who made this film? I love this film? Somebody...\n I didn't like \"As Good as it Gets\" very much, ...\n This is the best movie ever, but that is my op...\n This is a movie that has a lot of things that ...\n I first was made aware of this film when I saw...\n This movie still chills me to the bone thinkin...\n I have been collecting Iron Man comics since t...\n I used to watch this show when I was a little ...\n \"Dominique\" is one of those films that the exp...\n By no means my favourite Austen novel, and Pal...\n As with most of Eleanor Powell's films, this o...\n Like many, this dung heap caught my eye while ...\n I saw this in a theatre back in 1982. I expect...\n The efforts of a new group of young talent bol...\n Attend the tale of Sweeney Todd...The stranges...\n If I had never read the book, I would have sai...\n This is an absolutely horrid excuse for a show...\n I am a big fan of cinema verite and saw this m...\n Imagine the most depressing winter you will ne...\n This movie was the most horrible movie watchin...\n Great little short film that aired a while ago...\n I find it hard to believe that this movie has ...\n Those two main characters Erkan and Stefan are...\n I can see why Laurel and Hardy purists might b...\n This was a really cool movie. It just goes to ...\n i really liked the first 2 seasons. because a ...\n American boy Jesse took the train to Vienna in...\n As I have said before, I am NOT a fan of Tweet...\n In a bizarre experiment, an astronaut is aband...\n Loved this film. Real people, great acting, hu...\n Sadly, this movie did have potential with such...\n This is actually the first movie I ever saw in...\n This game was made by Sega. Being made by Sega...\n Ida Lupino is trapped in her own home by crazy...\n I think Walter Pidgeon was badly miscast in th...\n Seriously, Sci-Fi needs to stop making movies....\n So one person says, \"This movie is a beautiful...\n I just adore this film! I love all characters ...\n This was the very first kung fu movie that I h...\n I went to see this movie at our college theate...\n This film makes several nods to various scienc...\n This was a movie that, at the end, I thought \"...\n Superb cast, more please!<br /><br />If you ca...\n I have to say that I really liked UNDER SIEGE ...\n Made in the same year as \"Vertigo,\" this is an...\n First of all , you should watch this only if y...\n Victor Mature, as a barely civilized and mostl...\n A team of archaeologists uncover a real treasu...\n I can confidently say that this is the worst f...\n James Stewart and Margaret Sullavan play co-wo...\n I saw this film again and noticed how close it...\n Touching and sad movie. Portrays the trials an...\n In the history of cinema, every great film-mak...\n The credits come from the Sandy Frank stitchin...\n I've only ever seen this film once before, abo...\n This movie started out confusing and grew into...\n This film, though ostensibly a comedy, is dead...\n Don't be swayed by the naysayers. This is a wo...\n Let me state first that I love Westerns & Civi...\n The brief existence of The Sex Pistols and the...\n Now, many would think to stay away from this m...\n Well, on it's credit side (if it can be said t...\n This movie was my first touch with Mr Sica so ...\n This is my fourth Joe McDoakes short that I've...\n It all started with True Heart Bear & Noble He...\n On the Opening night of the San Francisco Sile...\n Mansfield Park, in its second half, is my favo...\n The great thing about Thirst, Chanwook Park's ...\n Fascinating downer about a would-be male hustl...\n If you think piano teacher Erika Kohut (Isabel...\n This is a rather dull movie about a scientist ...\n A Lassie movie which should have been \"put to ...\n This is an excellent movie. There were several...\n This is not the best movie you might ever see,...\n The first time I watched this show it was OK. ...\n Preposterous twaddle executed in a bewildering...\n Trying to compare or represent this \"swill\" as...\n Okay, I'm not sure if this counts as a spoiler...\n This is a worthless sequel to a great action m...\n Writer-director Brian De Palma is best known f...\n This is shallow hedonism and/or social comment...\n What a production, what a waste of screen-time...\n \"Ask the Dust\" looked intriguing from the trai...\n Enchanting, romantic, innovative, and funny. T...\n Quite liked Flesh and looking forward to Heat ...\n You better see this episode from the beginning...\n I went to see this film yesterday and although...\n I got to see this film at a preview and was da...\n Forgive me, but this work of director Peter Ha...\n First of all - I'm not one to go all sappy ove...\n Chucky (the murderous doll from \"Child's Play\"...\n 1st watched 8/31/1996 - (Dir-Tim Robbins): Ver...\n She is such an extraordinary singer, who cares...\n James Franco is totally cool in this movie. No...\n As a \"cusp-pre-baby-boomer\"...born in 1944, IN...\n The best screen performance ever by George C. ...\n A true story about a true revolution, 25 of Ap...\n Lavish production values and solid performance...\n Hal Hartley has been likened to a modern day W...\n First of all, if you'r a fan of the comic, wel...\n I found this dvd in the store and figured, why...\n I really wanted to like this, but in the end i...\n I found The FBI Story considerably entertainin...\n Before I begin, you need to know that I am a h...\n Given that Roger Corman attached his name to t...\n I remembered this show from when i was a kid. ...\n Still funny after all these years. Midnight Ma...\n \"Four Daughters\" begins as just another clone ...\n Can I be as simple and primitive in my evaluat...\n The \"good news\" is that the circus is in town....\n The basic premise of Flatliners is fairly simp...\n Tom Fontana's unforgettable \"Oz\" is hands down...\n I remember my parents not understanding Saturd...\n I first rented this movie on the infamous day ...\n I really enjoyed this movie. The script is fre...\n Dr. Pena (Giancarlo Esposito), a \"crypto-zoolo...\n I rented this film courtesy of Netflix, thinki...\n Stupid horror film about five 20 somethings (3...\n I love horror movies that brings out a real am...\n I thought this was one of the most depressing ...\n This movie is inspiring to anyone who is or ha...\n This movie is an amusing and utterly sarcastic...\n I rented End Game, having never heard of it, b...\n I've seen thousands of movies and have never w...\n This is an excellent B-film horror movie that ...\n Just to save you the $3, or whatever it costs ...\n This is my first CG animated film that I've ev...\n This is a run-of-the-mill nature porn movie. B...\n The critics were like \"a movie that will break...\n i was extremely excited for this movie! my exp...\n LIGHTS OF NEW YORK was the first \"all-taking\" ...\n Sadly,this is not 'the best British gore film ...\n I give this nonsense a 2 instead of a 1 becaus...\n I'm warning you -- this movie is not scary. If...\n Where to Begin, I like the scary snow-monster ...\n I'm surprised to read all the positive comment...\n I sought out this film for one reason--Al Adam...\n Sleeper Cell attempts to swim both sides of th...\n I kind of liked The Lonely Lady. Give Pia a br...\n First of all I must admit Batman: The animated...\n What a surprise this film was. I've seen a goo...\n The original show was so much better. They sho...\n The Patriot is a well thought out, well produc...\n James Bishop (Matt Stasi) goes to a `mental il...\n This film was great! I love the way it mixes d...\n 2001 wasn't perhaps Eric Roberts best year. Bo...\n BEING Warner Brothers' second historical drama...\n I noticed with some amusement that in the end ...\n A serial killer dies in a snowstorm and gets m...\n The fight scenes were great. Loved the old and...\n Kolchak is sheer entertainment. Great stories ...\n I can't explain it, but I find this movie not ...\n I would of given this film a zero out of ten, ...\n Trifling romantic drama directed by Clint East...\n How to lose friends and Alienate people came o...\n This movie is by far the worst movie ever, The...\n I found this movie at the flea market for chea...\n When I was a kid in the 50's and 60's anything...\n Firstly, there are some good things about this...\n Man To Man tries hard to be a good movie: it h...\n I love Stephen Kings work and the book was gre...\n Old Jane's mannered tale seems very popular th...\n First of all, 'St. Ives' the film is only fair...\n Marlene Dietrich and Charles Boyer give solid ...\n I am willing to tolerate almost anything in a ...\n \"Girlfight\" follows a project dwelling New Yor...\n The sword fighting was out of this world, the ...\n Of the three remakes of this plot, I like them...\n I can't for the life of me remember why--I mus...\n As a nice anecdote to one of the above comment...\n 'The Mill on the Floss' was one of the lesser ...\n This film must have done well in the box offic...\n This movie was fabulous. It is definitely a to...\n This film goes into my \"Worst Films Ever Made\"...\n slow, incomprehensible, boring. Three enthusia...\n I have seen nearly all the films of Kurosawa a...\n I have to confess I fell into the cynical trap...\n This Columbo is unique in that we don't really...\n It was a bit bizarre and evil and i enjoyed it...\n I was lucky enough to see the \"Horror Classics...\n I must I was a little skeptical when I entered...\n As a Southern Baptist, it pains me that I must...\n i have to say that this was the worst film of ...\n Some will say this movie is a guilty pleasure....\n I had been waiting eagerly to see this movie, ...\n I was browsing through Netflix and stumbled up...\n This is truly an excellent film with a revolut...\n A very accurate depiction of small time mob li...\n I bought this DVD as part of a set of 50 \"hist...\n Aside from a few good moments of fairly raw vi...\n Shopping, sunny skies, beaches, boarding schoo...\n This is possibly the worst movie I have ever s...\n Sickening exploitation trash plays like a bad ...\n Acclaimed director Mervyn LeRoy puts drama on ...\n Her bit-part as a masseuse, in the lurid seque...\n I took my younger niece to an early showing an...\n Please, why on Earth did Bava had to add insul...\n Yes I know \"talkies\" had just been invented fo...\n One of the more 'literate' Lone Stars, with ti...\n I have enjoyed Criminal Intent series of Law a...\n This jingoist outing concerns the usual battle...\n A Movie about a bunch of some kind of filmmake...\n A wonderful movie about people. I first saw Fo...\n There are many familiar Hitchcock elements (of...\n When I first saw \"Race Against Fear\" (don't yo...\n I agree that this film wasted my time and my m...\n Not too long ago I bought a cheap VHS tape ent...\n Based on the average short story by horror wri...\n Six different couples. Six different love stor...\n Camera work - Why is the camera work in this m...\n Like last year, I didn't manage to sit through...\n If this film is an accurate display of J. Smit...\n A very good offering from HBO. Traci Lords is ...\n I can't say how many times that one line has m...\n This film is about a struggling actor trying t...\n Five passengers at a bus depot tell each other...\n I honestly believe that ANYONE considering fil...\n This movie is incredible.With great characters...\n Or at least one of the best. I think this is a...\n I really enjoyed this movie. It took a pretty ...\n An absolutely brilliant show. The second seaso...\n I have given this show (I have only watched se...\n When I saw this film the first time I was very...\n I'm still laughing- Not! I'm still asking my m...\n \"Hollywood Hotel\" is a fast-moving, exuberant,...\n Riget II is a good sequel, but not quite as go...\n After working on 7 movies with director Mickae...\n I just don't understand why anytime someone do...\n CREEPSHOW 2 is the ill-fated sequel to the Geo...\n directed by albert pyun in his inimitably awfu...\n This is a sublime piece of film-making. It flo...\n This is so overly clichéd you'll want to switc...\n Sammo Hung's 1989 film Pedicab Driver is consi...\n The Ten Steps has basically a reasonably good ...\n I thought that the nadir of horror film making...\n Ghoulies IV starts in a museum storage facilit...\n I can't help but be completely annoyed by this...\n I recommend families if possible,to show this ...\n Ya know, I have no idea how everybody else's t...\n After losing his cattle herd to a dishonest la...\n This movie has a twist that caught me off-guar...\n This movie is horrible- in a 'so bad it's good...\n \"Soul Plane\" is a horrible attempt at comedy t...\n This movie has more on its plate than a sumo w...\n Maureen O'Hara is always beautiful and appeali...\n I gave 9 of 10 points. I was sitting in tears ...\n What can I say about this movie, it really is ...\n This movie is a haunting telling of the life o...\n The Concorde:Airport'79, Is for now, the last ...\n This movie doesn't even have the saving grace ...\n I first saw this film in the early 80's on cab...\n A friend of mine decided to rent this thing, l...\n What a gargantuan pile of malodorous ordure! Y...\n The Golden Era of Disney cartoons was dying by...\n If you can make it thru \"classic Meyer\" titles...\n Love the TV show. Was hooked first time I saw ...\n A boring movie about a boring town in the 50's...\n This miniseries/movie was so terrible at times...\n I really liked this version of 'Vanishing Poin...\n (A possible minor spoiler) The first \"Jurassic...\n Every great romantic comedy needs conflict bet...\n If you have ever wanted to know more about cab...\n The thing which makes \"Fire\" even more appeali...\n The summary was promising but watching the mov...\n \"Shivering Shakespeare\" could be considered th...\n I have seen over 1000 movies and this one stan...\n I admit it's very silly, but I've practically ...\n i went to watch this film with my family who w...\n A show about an incredibly dumb, man-child and...\n What network was , Diagnosis Murder on? I thou...\n I must admit I burst out laughing when I saw o...\n Kris Kristofferson, at his drugged-out peak in...\n There's something frustrating about watching a...\n This film immediately catches the eye, with th...\n ... when we all know, no one does it like the ...\n Lord Alan Cunningham(Antonio De Teffè)is a nut...\n Pretty awful but watchable and entertaining. I...\n Lord have mercy! Why was this film made? Why d...\n I saw this movie for the first time in 1988 wh...\n I just watched this film at an advanced screen...\n What can I say, this is a piece of brilliant f...\n Let's see...I'm trying to practice finding the...\n Robin Williams is a national treasure, special...\n Holy crap, the beginning picked up where the f...\n My Take: Steven Seagal is obviously too boring...\n H.G. Cluozot had difficulties working in Franc...\n Black and white satire of a Madison Avenue ad ...\n I was blown away when I saw \"The Best Years of...\n I thought this movie was very well put togethe...\n This film is an absolute disgrace! I thoroughl...\n **SPOILERS** Shocking yet true story of the ho...\n This movie is good for TV. I like it because I...\n what was the quote by archbishop tutu at the e...\n I recently purchassed the very underrated Drea...\n I really liked this movie. I watched it last n...\n Run, don't walk, to rent this movie. It is re-...\n It's simply ridiculous how underrated this mov...\n I have this movie on a collection of inexpensi...\n Having just seen this, I find it hard to belie...\n It's hard to comment on this movie. It's one o...\n This is a flic that you can safely avoid. chil...\n I have a completely biased point of view mainl...\n Vipul Shah has done some really impressive wor...\n I am a pretty much a sucker for those Ghost Hu...\n I can't count the times I have watched this, a...\n The movie is about a girl who's not going to a...\n Society heiress Susan Fletcher (Hopkins) and h...\n I really enjoyed this film. I'm not usually on...\n 1 Bolo Yeung is in the movie ten minutes altog...\n Surprised to know that the director (Sebastian...\n In another one of Bugs Bunny's hare-raisingly ...\n Bertrand Blier is indeed l'enfant terrible of ...\n \"In the sweltering summer of 1958, the Deuces,...\n Have just seen the last episode, No 32, (thoug...\n The true story of a Spanish paraplegic, Ramón ...\n My comment would have been added to the RELEAS...\n Years have past since Alex Rain (played by Oli...\n 79/100. Fred Astaire and Ginger Rogers never m...\n This series was CBS networks answer to the suc...\n 2005 will go down in 'Dr.Who' history as its m...\n The 1997 low-key indie dramedy Henry Fool woul...\n This this coming of age dramedy set in Chicago...\n Sure this was a remake of a 70's film, but it ...\n Since Wesley Snipes descended(or Ascended)to t...\n This is a truly great and beautiful movie. The...\n It's very sad that Lucian Pintilie does not st...\n This is almost like two films--one literate an...\n Saw this as previous viewer by accident, I hav...\n Scarecrow Gone Wild starts as high school teen...\n I have to say I hated this movie. I don't like...\n Shame Shame Shame on UA/DW for what you do! <b...\n Bridget Fonda is the sexually satisfied wife o...\n 50 years old, this musical comedy fantasy migh...\n In Don Siegel's 1971 masterpiece \"Dirty Harry\"...\n Being a fan of the series I thought, how bad c...\n For Muslim women in western Africa, married li...\n Seth McFarlane is a true genius. He has crafte...\n Eddie Murphy plays Chandler Jarrell, a man who...\n I saw this movie originally in the theater, wh...\n This movie was terrible not only was the plot ...\n When it comes down to fairy tales, Cinderella ...\n Cafe Lumiere is a beautifully photographed nul...\n The fact that this movie made it all the way t...\n This movie is all about subtlety and the diffi...\n Elvis has left the building and he's lucky bec...\n One of the best records of Israel's response t...\n It was praised to be a fast paced screwball co...\n I just finished watching the 139 min version (...\n On the day of the California Presidential Prim...\n Thanks to silly horror movies like \"Troll\" and...\n i almost did not go see this movie because i r...\n This \"tragicomedy\" written by famous Serbian t...\n At the very beginning, the look at a control p...\n This movie starts off somewhat slowly and gets...\n this film is basically a poor take on the old ...\n First off, I can remember vaguely being told t...\n Not to be confused with the 1943 George Zucco ...\n I always wondered what happened with that magi...\n Boring, ridicules and stupid \"Submerged\" is a ...\n I saw this movie in the early 1990's when it h...\n This movie is a vehicle for Schwarzenegger-clo...\n SPOILERS FOLLOW - and I haven't even seen it.<...\n This is the best movie I've ever seen. And I'v...\n This is the first Michael Vartan movie i've se...\n good lord! (and that coming from an atheist), ...\n I saw this movie with hopes of a good laugh bu...\n New York, I Love You is a collective work of e...\n Reading through most of the other reviews, I t...\n It takes a lot for a movie to reach the alread...\n It is characteristic that this film is not bet...\n Yes it's a Fast Times wannabe, but it's still ...\n Ouch! This one was a bit painful to sit throug...\n When I was six yo, I learned about a series ca...\n In a time when the constitution and principals...\n This is one of the most outstanding horror mov...\n very badly made film, the action/violence scen...\n I happily admit that I'm a sucker for a beauti...\n Weaker entry in the Bulldog Drummond series, w...\n Not a bad martial arts film. Fight scenes were...\n This is one of those westerns that, well, stan...\n Izzard was both hysterical and insightful in h...\n You might think that a show about regular teen...\n I wanted to love this film so badly...I really...\n Intense domestic suspense with the mistress of...\n I mean really, really, REALLY high and this mo...\n Well, I have to say, this movie was probably t...\n The acting in this movie was superb. As an ama...\n Straight to video and with good reason. Its li...\n This movie was absolutely one of the worst mov...\n After a cold sex scene, between Andy and Gina,...\n Why is it that virtual \"x-rated video game\" wo...\n since the plot like Vertigo or Brian DePalma's...\n The van trotta movie rosenstrasse is the best ...\n 1989 was already a year in where Eddie Murphy ...\n Yes...I'm going with the 1-0 on this and here'...\n Alfred Hitchcock invented any kind of thriller...\n Jean-Pierre Melville is a director I've only r...\n I originally scored Sarah's show with a nice f...\n This cartoon documents the second encounter be...\n I just watched National Lampoon's Christmas Va...\n About a year ago I finally gave up on American...\n OK, people, honestly... this gotta be one of t...\n To me movies and acting is all about telling a...\n Like the Arabian Nights this film plays with s...\n the writing of the journalists and the require...\n There are several ways to misunderstand this m...\n The Bourne Ultimatum - Jason Bourne (Matt Damo...\n A story of love between two people at the end ...\n I saw this movie the day it came out last year...\n Who is minding the store here? How could any p...\n The 3 stars are for Phillip Seymour Hoffman. N...\n Ok, I did think that it would be horrible. But...\n I love all of the movies by Michael Landon Jr....\n There's a good running bit about the price tag...\n \"Written on the Wind\" was an enormously succes...\n Jennifer Egan's novel was brought to the scree...\n I just recently viewed Shame which is directed...\n I am NOT one to like those Anime Cartoons (eg....\n I have nothing at all against Paul Schrader. I...\n FOUR FRIENDS was first billed on HBO in 82 as ...\n this is the result. A piece of trash movie tha...\n I caught this movie by accident on cable in th...\n The Choke starts as a rock band known as The C...\n This movie is my families favorite Christmas m...\n John Wayne is without a doubt one of the most ...\n 'Stanley and Iris' show the triumph of the hum...\n Robert Jordan is a television star. Robert Jor...\n Following the brilliant \"Goyôkiba\" (aka. \"Hanz...\n this movie had a fairly good sounding plot, bu...\n Young Elijah Wood and Joseph Mazzello are outs...\n OK, the portrayal of the stereotyped 'indians'...\n mature intelligent and highly charged melodram...\n I loved this film! It has a great heart and gr...\n Normally I don't bother wasting my time writin...\n After watch this movie I was surprised that so...\n OK I haven't read the book And maybe the boo...\n How bad idea was to remake an almost Oscar -wo...\n This film is probably the worst film that I ha...\n The box at my video store is why I rented this...\n Okay, this show is nothing but AWESOME! It has...\n This short deals with a severely critical writ...\n Direction must be the problem here. I recently...\n Nurse Betty was definitely one of the most cre...\n I know the film snobs are snorting. But if you...\n Nicolas Roeg ? He directed the classic superna...\n I watched this movie purely for the setting. I...\n Hey, this Ralf Westhoff seems to knows a lot a...\n After hearing raves about this movie for years...\n never before have i seen such a tale of such t...\n This indie film looks at the lives of a group ...\n Lucy Alexis Liu and Cillian Murphy are both ex...\n There are a lot of pretentious people out ther...\n (Some possible spoilers)<br /><br /> I'm not t...\n At first I didn't think that the performance b...\n When Underdog the cartoon debuted in 1964, at ...\n An absolutely atrocious adaptation of the wond...\n Saw this movie in my English class this aftern...\n Wow, I haven't seen a movie this bad since \"Fi...\n If you like the 80's rock, you should definite...\n As a Hammer completist I was dreading the time...\n This is a hard-boiled Warner Brothers film sta...\n An unusual take on time travel: instead of tra...\n What would you expect from a film titled 'Surv...\n Jeffrey Combs is an insane scientist whose ste...\n A May day 1938 when happen a huge rally celebr...\n The movie was much better than the other revie...\n Fred Astaire and Ginger Rogers, Hollywood's pr...\n I'm not exactly sure why I ordered \"Fingersmit...\n The BFG is one of Roald Dahl's most cherished ...\n Brian Yuzna is often frowned upon as a directo...\n One thing I always liked about Robert Ludlum t...\n This movie plays out like an English version o...\n Not a film to be taken seriously, but a great ...\n I must tell you right up front, I am certainly...\n Why you ask does this man claim to have the tr...\n This film is one of Tom Cruise's finest films....\n This is a special film if you know the context...\n If you are in to bad movies for the entertainm...\n THE MAN IN THE MOON is a warm and moving comin...\n How? I wondered why I hadn't seen this in thea...\n I am ashamed to say it, but I have to admit, t...\n This bright hilarious English comedy about sch...\n While the design and locations and photography...\n TO all of yall who think 1.This was a boring t...\n I rented this because I couldn't pass up the c...\n When young Frances 'Baby' Houseman goes to sum...\n Horrible waste of time - bad acting, plot, dir...\n This movie is a bizarre fantasy tale, that I'm...\n I really wanted to like this movie. Great cast...\n This Alec Guinness starrer is a very good fun ...\n The League of Gentlemen is one of the funniest...\n This work is a bold look into the mindset of m...\n A Chinese Ghost Story stars the late, great Le...\n Maybe the movie itself isn't one of the best J...\n How does an usual day start in Point Place, Wi...\n They made me watch this in school and it was t...\n By 1987 Hong Kong had given the world such fil...\n I have seen a lot of bad films. Most of the ti...\n For what it is, this is a pretty good movie. I...\n Each guy Liv Tyler meets loses their head over...\n Maybe, like most others who have seen this fil...\n I love most movies and I'm a big fan of Sean B...\n The movie never claims to be something spectac...\n Prom Night is shot with the artistic eye someo...\n Following a 19th century gun dual that goes aw...\n honestly, where can I begin! This was a low bu...\n I finally managed to sit through a whole episo...\n the first time I saw this movie, I just though...\n I saw this on a flight over to the U.S and was...\n The reviewer who called this movie a bust has ...\n Financially strapped Paramount pulled out all ...\n I saw this movie a long time ago... luckily it...\n I saw that \"The Foreigner\" was ranked in the \"...\n I really enjoyed this -- I'm a big fan of movi...\n Higher and Higher was one of Rodgers&Hart's le...\n I think that \"Key West\" might do well as a DVD...\n After going to sleep out of sheer loneliness, ...\n During my trip in a youth leadership forum, I ...\n This obvious pilot for an unproduced TV series...\n Get Shorty was an excellent film. It was funny...\n This movie is humorous, charming, and easily b...\n Crispin Glovers' way of acting (and not only h...\n ...that seem to be fooling people into seeing ...\n If you loved Deep Cover, you might like this f...\n While flipping through the channels on a late ...\n Yes there are worse movies out there. Most of ...\n Heftig og Begeistret (Intense and Enthusiastic...\n i wrote an essay in 1981, the year i graduated...\n ***SPOILERS*** ***SPOILERS*** I loved the set-...\n Someone release this movie on DVD so it can ta...\n This is really one of the worst movies i have ...\n A masterful treatment of James Caine's \"The Po...\n ...I saw this movie when it first came out in ...\n Let me start off by saying I am not a fan of h...\n The silly saying, \"You can't touch this\" surel...\n History and experience over the past couple of...\n Guy Richie's third proper film (not counting t...\n I'm all about the walking dead, but my mind is...\n Not being familiar with US television stations...\n \"The fallen ones\" falls under the waste of lif...\n this is a film about life, the triumph over ad...\n After I've seen this movie I find it hard to u...\n I've heard a lot of different opinions about t...\n This is truly a funny movie. His dance scene d...\n I love sharks. And mutants. And explosions. Th...\n This movie had the potential to be a very good...\n Colman's performance is aided by the brilliant...\n Panic In The Streets opens in high noir style,...\n Saying this movie is worse than asphyxiating o...\n This movie was released in all major cinemas i...\n A young and seemingly promising college gradua...\n After seeing Arthur on TV numerous times I lau...\n I saw the movie as a child when it was release...\n I can't stand it when people go see a movie wh...\n This is the dreary tale of the self absorbed a...\n It´s long time that I and my wife didn´t see s...\n This movie is one of those I regret having inv...\n Like an earlier commentor, I saw it in 1980 an...\n I actually liked this movie. Sure, the acting ...\n I don't recommend you watching this movie if y...\n This is not a good movie. Too preachy in parts...\n 36/100. This is not to be confused with the de...\n I've loved this movie since I was a little kid...\n I have seen this movie and the other one. Trin...\n I felt compelled to write a review after seein...\n This movie is the absolutely perfect way to ex...\n This is one of the best movies I've ever seen....\n Art imitates life imitates art. Atticus Finch ...\n That's right. A movie written, directed and pr...\n I have rarely been subjected to such outright ...\n Dolemite is one of the best movies featuring a...\n Every time I've seen this movie I get the same...\n Who the hell rests at night whilst walking in ...\n The '7' rating is not necessarily a smear-- th...\n First one has to take into account the time pe...\n I have just seen this broadcast on Channel 4. ...\n The Lubitsch's Touch is more than ever in this...\n This was a fantastically written screenplay wh...\n This may be the most tension-filled movie I ha...\n The Ali G show was really something amazing - ...\n This movie catches a lot of flak, but this is ...\n This version is very painful to watch. All of ...\n It is an excellent thriller from Turkey which ...\n this really is an \"okay\" series.. everyone in ...\n this is what you would get if you allowed a 10...\n Having been driven out of the house and into t...\n Barry Kane is an aircraft factory worker.Sudde...\n Sometimes it's hard to define what separates a...\n A young solicitor from London, Arthur Kidd is ...\n This movie was different in that it didn't sho...\n A lot of my childhood was spent lying in front...\n As a spiritualist and non Christian. I thought...\n I'm no slouch at finding \"redeeming social val...\n Mark Frechette stars as Mark, a college radica...\n I caught this film at the Edinburgh Film Festi...\n Also titled--> The Magical Castle--> This one ...\n \"Challenge to be Free\" was one of the first fi...\n I Loved this movie. Mark Blankfield was perfec...\n An axellent second installment that manages to...\n This movie was amazingly bad. I don't think I'...\n Tobe Hooper is quite possibly the biggest fluk...\n \"Lights of New York\" originally started out as...\n Ever wonder why Pacific Islanders seem to auto...\n IF you are planning to see this movie, please ...\n You do not get more dark or tragic than \"Othel...\n Coltrane and Idle are members of a bank robber...\n Sure it was well shot and made, very well shot...\n Jim Henson's The Muppet Movie is a charming, f...\n Come on now. How did all of these talented act...\n When I was younger, I thought the first film w...\n I'm surprised this movie is rated so highly, a...\n I've seen Director's Cut version and can be no...\n At the rate these movies are ploughing through...\n I sat through this film and i have to say it o...\n I loved the original. It was brilliant and alw...\n Mr Baseball was a fun video rental with my Fia...\n If you liked this movie, be sure to check out ...\n This is another case of Hollywood Arrogance pr...\n I saw this movie after i saw Blue Crush and ot...\n I grew up watching the original Disney Cindere...\n I had been wanting to see An American Werewolf...\n I watched this movie again yesterday with a 20...\n Well, where to start? I stumbled across this o...\n Despite what others had said (*cough*), this i...\n Love is overwhelming... In all it's manifestat...\n The movie invites comparisons to Shakespeare. ...\n On the face of it, any teen comedy runs the ri...\n I mistakenly thought that this neo-noir effort...\n This insipid mini operetta featuring a Eddy-Mc...\n The subject is certainly compelling: a group o...\n Or at least forceable retirement! This movie i...\n Caught this film at the Arizona International ...\n After some difficulty, Johnny Yuma arrives at ...\n I thought this movie was absolutely hilarious....\n This film was absolutely awful, I even feel un...\n In what attempts to be a positive story, Dolph...\n The five or so really good westerns that Mann ...\n I would say to the foreign people who have see...\n Take one look at the cover of this movie, and ...\n Dreadful, stupidly inane film dealing with cor...\n This movie was nominated for best picture but ...\n Although the production and Jerry Jameson's di...\n I was really surprised to see that unlike most...\n Nobody, but nobody, could chew the scenery lik...\n A super comedy series from the 1990s (Two seri...\n I watched this out of curiosity. I enjoyed Sta...\n This is 30 minute show about one joke. The jok...\n Dodgy plot, dodgy script, dodgy almost everyth...\n A by-the-numbers exorcism exercise with a disa...\n This film had everything i need in a film: - W...\n This is Paul F. Ryan's first and only full-len...\n Ever watched something so awful you just have ...\n This is the classic western. The good, Glenn F...\n The good news is a movie was made, drawing on ...\n Almost as tedious to watch as it was to read, ...\n action packed,with my favorite type of creatur...\n I really liked this one. (SPOILERS??) It had a...\n I saw this in the theater and I instantly thou...\n I think the movie was one sided I watched it r...\n Ah, Channel 5 of local Mexican t.v. Everyday, ...\n From the beginning this movie did have a few f...\n This is an excellent film. No, it's not Mel Gi...\n Though several scenes of Wirey Spindell can be...\n This is a brilliant film. The story starts off...\n From 1936-1939, Peter Lorre made a string of h...\n A sober, reflexive piece, a little miniature w...\n Mild Spoilers<br /><br />In the near future, A...\n \"Cover Girl\" is the best musical Rita Hayworth...\n The 1970s opened the door to the largest, most...\n Trekkies is really not a movie about Star Trek...\n How many of us have read a book or seen a play...\n This was on at 2 or so In the morning one Satu...\n In August 1980 the disappearance of baby Azari...\n I've seen a lot of TV movies in my time as a s...\n Greystoke is without doubt the best tarzan mov...\n I really don't think producer George Lucas did...\n This is one of those games where you love it t...\n When I first heard about this movie, I eagerly...\n Watching this movie all I could think of was, ...\n Nikki Finn is the kind of girl I would marry. ...\n I got to watch this one without commercial int...\n This is truly the greatest Swedish movie of al...\n This movie could have been very good, but come...\n Vampires, sexy guys, guns and some blood. Who ...\n The only redemption was the small part by Larr...\n Almost certainly staged montage of women readi...\n Uzumaki is a visually astounding film however ...\n I'm not going to bother mentioning any of the ...\n [POSSIBLE SPOILER ALERT]<br /><br />It's unlik...\n This Christmas gift arrived courtesy of TCM. W...\n Helges best movie by far. Very funny, very sur...\n I saw this film and heard the writer-director,...\n The strange people living in a town go about t...\n The ultimate goal of Big Brother, that we know...\n My father took me to see this film when it was...\n That song keeps humming in my head. Not the gr...\n Frankly I met real Han Su Ying before and seei...\n Cor blimey. This film really surprised me as i...\n Have not seen this 1958 film in a very long ti...\n What offends me most about the critics followi...\n My boyfriend and I rented this because we thou...\n This is a gem of a movie not just for people w...\n The Cure is a fantastic film about a boy with ...\n Fascist principal Miss Togar(Mary Woronov, who...\n I'm watching this on the Star World network ov...\n The acting is bad ham, ALL the jokes are super...\n I saw this when it first came out, and found i...\n ...had I watched it in my teenage years. This ...\n Who are these \"They\"- the actors? the filmmake...\n Despite strong performances by Minnie Driver a...\n Gilmore Girls is one of the funniest, most cle...\n very straight - not happy with the movie.<br /...\n This show is awesome! and I've seen it about 6...\n the only thing great about the movie is its ti...\n I was absolutely mesmerised by this series fro...\n As you can tell from the few comments posted h...\n When I first watched Zoey101 with my sister we...\n The first two Bring It On movies were both qui...\n A tragically wonderful movie... brings us to a...\n so... it's really sexist, and classist, and i ...\n This movie is so bad it's good -- in an uninte...\n EIGHTEEN as written and directed by Richard Be...\n I saw this movie as part of the Midnite Madnes...\n The 2005 edition of the Royal Rumble came live...\n Other than it reassembled the characters from ...\n Lock Up Your Daughters is one of the best high...\n So, Prom Night was supposed to be a horror and...\n Let me just say I loved the original Boogeyman...\n Enjoyed the movie very much. Certainly will le...\n This film has a decidedly weird setting, takin...\n I watched Pola X because Scott Walker composed...\n One of the best documentaries released in rece...\n How on earth this film isn't more widely regar...\n Bradford Dillman plays a scientist who wakes u...\n I really enjoyed the first episode and am look...\n I went to see Vanilla Sky with a huge, huge, h...\n This movie is flawed on many fronts. Like many...\n Well, the episode I just watched had the older...\n I found Horrorvision almost unwatchable. While...\n This junk bore as much resemblance to the nove...\n A great combination: - Chabat's humor - Uderzo...\n For the most part, romance films were never my...\n I'd heard of the case, but hadn't really paid ...\n William Russ is the main character throughout ...\n To start, I'm not a person to rate movies that...\n I'm no Jane Austen purist but why make a film ...\n Lee Chang-dong's exceptional \"Secret Sunshine\"...\n Heavy-handed moralism. Writers using character...\n This film sat on my Tivo for weeks before I wa...\n This movie is a very enjoyable homage to the B...\n Well...the movie was a fun watch. The main pro...\n I had high hopes for this film, because I thou...\n In this early Fulci work the director shows hi...\n Sheba Shayne (Pam Grier) receives a telegram i...\n With all of its technical flash, the 1993 \"Sta...\n This is a film about loneliness and how the di...\n I didn't have much high hopes for this one. Be...\n It wasn't good. The characters were underdevel...\n This film brought back a lot of good memories ...\n <br /><br />I take issue with the other review...\n The first installment of this notorious horror...\n Loosely based on the James J Corbett biography...\n How anyone can praise this crude film version ...\n I consented to watching this movie with a grou...\n G&M started a the odd couple downstairs in Man...\n Felix in Hollywood is a great film. The versio...\n This was a very thought provoking film, especi...\n Now I've seen it all. Just when I thought it c...\n Of course, all this nonsense begs the question...\n Just like all of Mel Brooks' other comedies, M...\n I'll give it a two because it has a lot of mus...\n I was one of quite a few extras in this big bo...\n Well... What to say.<br /><br />I think i shal...\n A fantastic show and an unrealized classic; Th...\n Having just seen this on TMC, it's fresh in my...\n 1983 was \"the battle of the Bonds\". That year ...\n Fellow noir devotees, be not deceived, this is...\n Ben Affleck, about to be married, is shaken up...\n This program didn't do it for me, although I'm...\n For people who are first timers in film making...\n I think this is one of those few movies that I...\n Ignore the extreme votes about \"House of Wax\",...\n This is a tough film to review, since several ...\n SPOILER ALERT!!!!<br /><br />I had just watche...\n As a professional poker dealer for over 25 yea...\n This is a cherished movie from my childhood!! ...\n When watching this movie, with it's determinis...\n this is one of the stupidest movies ever, not ...\n Margret Laurence probably didn't intend on hav...\n This film is more than the story of Danton. It...\n Despite looking dated, \"Inki and the Minah Bir...\n This movie treads on very familiar ground -- t...\n I'll say this much--This director is all about...\n I remember disliking this movie the 1st time I...\n This is a excellent series. You will laugh, yo...\n Lackawanna Blues is a moving story about a boy...\n This film may be great, but it is a complete r...\n I'm pleased that this was the work of foreign ...\n (originally a response to a movie reviewer who...\n I watched it with my mom and we were like...<b...\n Contains Spoilers<br /><br />This is a Peter W...\n Im really addicted to Caprica, because it's a ...\n I think i would rather have my piles clipped w...\n There is nothing at all redeeming about this f...\n First off, I never got into Dr. Who until rece...\n The Danes character finally let's Buddy have t...\n A question for you : A family go to a new hous...\n Well now this strange movie. It was listed as ...\n I've read innumerable reviews talking about th...\n I caught this movie on TV yesterday. I had a c...\n I wasn't born until 4 years after this wonderf...\n Inspired by True events, Radio is one of the b...\n I can't believe how anyone can make a comedy a...\n Hilarious from start to finish, there's got to...\n This was another great Tom Berenger movie.. Bu...\n It is such a strange movie, you can call it aw...\n As a zombie fan, I really love these types of ...\n Return to Frogtown was a hard film to track do...\n Just saw this at the cinema. I haven't read th...\n An example of all of the worst gay stereotypes...\n All logic goes straight out of the train windo...\n Even by 1942 standards of movie-making the set...\n I bought the DVD of this movie because I am a ...\n Even thought I'm not the biggest of Cher fans,...\n While researching Susan Harrison (The Ballerin...\n Like a lot of horror fans out there that went ...\n When Precious Bane aired in America, I was stu...\n If you're going to look after a child, make su...\n I'm a fan of Matthew Modine, but this film--wh...\n Naruse is typically considered one of the 3 ma...\n Just as Tom Berenger put you into the soul of ...\n This one stood out for it's originality. I'm s...\n Being from the Buffalo area I was well aware o...\n Jack Frost 2, is probably the most cheesiest m...\n Perhaps the wildest outlier in Alfred Hitchcoc...\n My favorite part of this film was the old man'...\n Kurosawa is a proved humanitarian. This movie ...\n Paris Je T ' aime is a movie that explores the...\n I saw the German version of the movie in Germa...\n Writers and directors, by the nature of their ...\n Remarkably well done, but under-recognized bec...\n I just saw this at the Toronto International F...\n How this movie got made with a supposedly $70 ...\n Man! I remember this show with nostalgic... I ...\n WOW. If you think that a film can't fatigue in...\n Gamera vs Viras was made lazily and much of it...\n Andaz Apna Apna is my favorite comedy movie of...\n Reality before reality TV? Copy of \"Fast Times...\n This is an extremely boring film. If you grew ...\n This could have been a good movie if more thin...\n From the opening shot of the meteor falling to...\n It's a road movie, with a killer on-board. Bri...\n i think that it was just like Lizzie McGuire e...\n This movie, which starts out with a interestin...\n It's rare that I get the opportunity to review...\n \"It's funny your worst nightmare always seems ...\n overrated, poorly written, badly acted. did th...\n I don't see how anyone who even likes Van Damn...\n I have grown up with Scooby doo all my life, M...\n MY EYES! IN THE NAME OF GOD AND ALL THAT IS HO...\n It is a very great film (documentary) about Is...\n I really enjoyed this one, and although the en...\n This is just another one of those \"American fi...\n Well, I am delighted to hear a rumor that this...\n This movie is about sexual obsession. Bette Da...\n Of course this came out right at the beginning...\n \"The first war to be 100% outsourced.\" Dan Ack...\n Kathryn Bigelow and Mark Boal are already prep...\n The only reason I saw this movie was because i...\n Thank G_d it bombed, or we might get treated t...\n I remember liking this more than Nausicaa of t...\n This movie is awesome due to the fact that it ...\n Take away all parts of the movie that were \"pr...\n I was first introduced to this movie while in ...\n This movie may seem scary on commercials, but ...\n I sat through both parts of Che last night, ba...\n Somebody mastered the difficult task of mergin...\n stars: Julianna Donald, Lonny Price and Louis ...\n I was going through a list of Oscar winners an...\n I was VERY disappointed with this film. I expe...\n This was very energetic and well played show. ...\n This is a beautiful, rich, and very well-execu...\n Twenty years ago, the five years old boy Micha...\n I must confess to not having read the original...\n I must admit - the only reason I bought this m...\n I am amazed at the amount of praise that is he...\n ...was so that I could, in good conscience, te...\n Many reviews here explain the story and charac...\n One can only assume that Robert Osborne is con...\n Visconti's masterpiece! I admit that I am unfa...\n When I started watching \"Fay Grim\", I had no i...\n This film appears to draw a borderline - on on...\n STMD! is one of the most fun and enjoyable low...\n at least for me. and rather unexpected -as sub...\n Cult classics are nearly impossible to predict...\n First of all, I apologize for my English. <br ...\n One of the worst movies I ever saw. My only th...\n WOW! What - a - movie !!!!!!!!!!! I'm not at a...\n Chris Rock, apparently desperate for a cozy st...\n I saw this movie as a very young girl (I'm 27 ...\n Directed and co-written by Eytan Fox the write...\n The Contaminated Man is a good film that has a...\n This movie is terrible. The suspense is spent ...\n It's said that this film is or was banned in t...\n A thin story with many fine shots. Eyecatchers...\n Red Eye starts in Texas where hotel receptioni...\n I actually though that Black Snake Moan was gr...\n This movie was terrible. The acting was awful....\n Following the collapse of Yesilcam (Turkey's a...\n People criticise Disney's animated features of...\n Even if it's not labeled as a Slasher flick, i...\n It may be difficult to believe, but the basic ...\n I'll have to add dissenting comment here. Vari...\n Step Up is a fair dance film about some kids t...\n I have just seen Caribe a couple of nights ago...\n The movie is based on a Jules Verne book I act...\n These writings write about the end of the plot...\n I've read a few of the reviews and I'm kinda s...\n I'm all for the idea of a grand epic of the Am...\n I guess I wasn't sure to what to expect from t...\n It's a rather good movie, but too Americanised...\n Need a lesson in pure, abject failure?? Look n...\n I understand the jokes quite well, they just a...\n I approached this movie with the understanding...\n Oh, I heard so much good about this movie. Wen...\n This movie is one big stereotype. The acting (...\n Strange things happen to Americans Will (Greg ...\n I saw the film in its original theatrical rele...\n Read on and take note - you could save 88 minu...\n This must be one of the most overrated Spanish...\n The prerequisite for making such a film is a c...\n When I had first heard of \"Solar Crisis\" then ...\n When I saw that Icon was on TV, I was surprise...\n This story takes place in Wisconsin. I was hal...\n I get it the Diehl character is s'posed to be ...\n I've rent the movie because i'm very fond on w...\n In a college dorm a guy is killed by somebody ...\n The excruciatingly slow pace of this film was ...\n I loved \"Anchorman; The Legend of Ron Burgundy...\n I couldn't even...I mean...look....okay...<br ...\n my friends and i watched this movie last night...\n Saving Grace is a feel good movie with it's he...\n I first saw the film when it landed on US cabl...\n The Nun is a revenge picture whereby a very st...\n Joe Don Baker. He was great in \"Walking Tall\" ...\n This series was just like what you would expec...\n ---------SPOILER ALERT------------------------...\n The Leap Years stars some heavy hitters in the...\n Police Story is a stunning series of set piece...\n I awake suddenly, aware that I'm drooling onto...\n Probably Bigas Luna's finest achievement for i...\n GRANNY IS THE BEST MOVIE EVER Ganny is the bes...\n I think that it was just pointless to produce ...\n Finally i thought someone is going to do justi...\n The movie starts out with a bunch of Dead Men ...\n The funniest movie from Britain I have ever se...\n Though the video technology may be dated, this...\n This film starts out with all the moody promis...\n My mom would not let me watch this film when I...\n Gere and Danes star as 2 workers for the depar...\n \"I remember waiting to be born...\" <br /><br /...\n Naach would have won an Razzie for the Worst F...\n ...Heads, Hands, and Feet - a band from the pa...\n Well I'm probably about to be lambasted by eve...\n Wow probable the worst movie i have ever seen!...\n One day I thought to myself....what is the wor...\n I won't describe the story, as that has been d...\n Vincent Price's follow-up to HOUSE OF WAX (195...\n \"Rock 'n' Roll High School\" will probably have...\n An unflinching descent into psychological and ...\n Quirky, vulnerable, raw, honest and a treat to...\n Mr. Brento wonders if this movie was produced ...\n This is a rip-off from Cellular. <br /><br />B...\n Every new fall line-up show deserves, at least...\n From the start of \"The Edge Of Love\", the view...\n I think this programme is a load of rubbish. A...\n 'Home Alone 3' is the first of the Home Alone ...\n All but the youngest Americans are probably fa...\n Despite an overall pleasing plot and expensive...\n Unless somebody enlightens me, I really have n...\n Although it has been a failure in movie theate...\n In this TV special Jon is the one who needs a ...\n Silly, often ridiculous romp involving the lan...\n Try not to see this one. I thought it was goin...\n I do not have much to say than this is a great...\n This is how movies are supposed to be made: a ...\n As a \"Jane Eyre\" fan I was excited when this m...\n Years ago, I found a \"bargain bin\" copy of thi...\n Charles Chaplin's 'Shoulder Arms' of 1918 was ...\n Jim Wynorski strikes again with the very liter...\n Anybody who thinks this film is great, despera...\n As others have pointed out this movie is a loa...\n A dying Kung Fu master sends out his last stud...\n This movie is one of the worst I've ever seen....\n There ought to be some kind of prosecution to ...\n I saw this movie at an advance screening and f...\n OK I caught this film halfway through, but.oh....\n How pointless, hideous characters and boring f...\n This is just short of a full blown gore fest b...\n The first full-length film featuring the Aardm...\n BASEketball is one of the funniest movies I ha...\n I went to this film full of hope. With so many...\n Yes I AM a FF7 fan, but how many people who wa...\n Shame on Fox for dumping this movie. It was a ...\n It's about time for a female boxing flick, but...\n This was the first regular filmed Columbo movi...\n Watching this stinker constitutes cruel and un...\n This is a wonderful film taking place during t...\n In reaction to the dullness of the films of ac...\n I'll have to admit that I'm at a disadvantage ...\n There's potential in there with \"Tell No-one\"....\n Dan Dailey gives a sincere and colorful perfor...\n I was fooled to rent this movie by its impress...\n \"Haggard: The Movie\" is well written, well dir...\n The whole movie was done half-assed. It could ...\n I actually was looking forward to this movie. ...\n It seems there are two kinds of people in the ...\n This is one of my favorite James bond in games...\n This movie was, perhaps, one of the most unori...\n I was really looking forward too seeing this m...\n If you are a weirdo who thinks it's \"romantic\"...\n David Webb Peoples meets Paul Anderson...if it...\n An excellent depiction of one of the more unwh...\n Tis is a farly typical Tom and Jerry short-a s...\n Look, if I were interested in a Nancy Drew boo...\n I am a huge Eric Roberts fan, I collect his mo...\n It may be, although there are still two or thr...\n \"Three\" is a seriously dumb shipwreck movie. M...\n All the folks who sit here and say that this m...\n First, I want to clear a common misconception:...\n Let me start off by saying that I didn't watch...\n Low budget \"films\" like this just give me hope...\n Oh my, from the box description I thought it w...\n \"Amazing Grace\" has a languid feel to it as it...\n This is Peter Falk's film. Period.<br /><br />...\n As a huge fan of only the first 2 seasons of B...\n Who could possibly sympathize with these two o...\n While I recently gave OPERATION PETTICOAT a po...\n Just utter trash. I'm a huge fan of the Cusack...\n Buyer beware. The Alpha Video release uses a p...\n Well well well. As good as John Carpenter's se...\n How many times must I write the words boring a...\n The only time I seem to trawl through IMDb com...\n Muscular man-ape in the jungles of Africa is h...\n When I went to see this movie i thought that t...\n I saw this 25 years ago on PBS. It was very di...\n Now, admittedly, I'm no ardent student of the ...\n This film is, far and wide and beyond any shad...\n I always hated this retarded show .I liked the...\n The acting was bad, the script was bad and the...\n Wow... what would you do with $33m? Let me giv...\n The Sensuous Nurse (1975) was a Italian sexual...\n In the bygone days of the Catholic Church, a s...\n For the main criticisms of the movie... The lo...\n This is one of my all-time favorites. Great mu...\n In the same tune as his Americana Drums Along ...\n This move is bad on so many levels I don't eve...\n I am not one of those who think King is a grea...\n This early Adam Sandler film could be compared...\n The twins effect is a vampire martial arts mov...\n There are many film now on DVD, but producers ...\n This is a terrible movie, that is barely recog...\n I am only 11 years old but I discovered Full H...\n You know, this movie reminded me so much of so...\n Wow, this was another good spin off of the ori...\n I enjoyed the first \"Toxic Avenger,\" but the s...\n New York, I Love You finally makes it to our s...\n This movie makes you wish imdb would let you v...\n Space Camp, which had the unfortunate luck to ...\n Octavio Paz, Mexican poet, writer, and diploma...\n Having watched 10 minutes of this movie I was ...\n One of quite a few cartoon Scooby Doo films, \"...\n This is one of the silliest movies I have ever...\n For some reason my father-in-law gave me a cop...\n It may be hard to explain how, but this film i...\n This show is the worst show ever! Norris and h...\n This only gets bashed because it stars David H...\n Was curious to know the name of the Tuscan vil...\n Just saw the film tonight in a preview and it'...\n London 1862, a young orphan named Susan Trinde...\n The movie uses a cutting edge title for a lame...\n College girl Joanne Murray takes on the unenvi...\n In a genre by itself, this film has a limited ...\n This is one of the great modern kung fu films....\n I for one was glad to see Jim Carrey in a film...\n This \"screwy comedy\" seems very forced. Indeed...\n Time and time again, it seems that the comedic...\n HUNT FOR JUSTICE is a Canadian television dram...\n This is a pretty faithful adaptation of Masuji...\n The play Bell, Book, and Candle was a favorite...\n Gday Mates! just watched Croc Hunter the movie...\n As someone who lives near Buffalo, New York, t...\n This film exceeded my expectations. I thought ...\n Even though this is one of the worst movies I ...\n I felt cheated out of knowing the whole story....\n The '80's were the best of times and worst of ...\n If it would of had Jack Black listed as the le...\n Maslin Beach is a real nudist/naturist beach s...\n I found this to be a profoundly amusing dark c...\n Hm. Where do I start? I usually ignore whateve...\n Just about everything in this movie is wrong, ...\n We're living in sad times today, in which it s...\n This is what I was expecting when star trek DS...\n I watched DVD 1 only. The program proper may h...\n This movie's heart was in the right place, no ...\n Bottom has been my favourite sitcom ever since...\n This movie was great! It was an excellent rend...\n I won't go into too much detail about the plot...\n This is one of the first films I can remember,...\n This film is about so many things. Most obviou...\n This TV adaptation of Sarah Waters' novel was ...\n This movie was absolutely terrible. I can't be...\n I bought this movie just to see Bam because i ...\n I used to love Sabrina The Teenage Witch and h...\n This movie looked good - good cast, evergreen ...\n Admittedly, I watched the MST3K version of thi...\n Since the day I saw this film when it came out...\n Robin Hood; Men in Tights is worth watching, I...\n Yet again, director J. Lee Thompson unites wit...\n This movie is an example of small budget,ineff...\n After, I watched the films... I thought, \"Why ...\n It used to be my thinking that movies required...\n If you haven't seen this movie than you need t...\n This is a truly remarkable piece of cinematic ...\n I didn't expect much from this TV movie. You h...\n Badly shot, badly edited, clumsy dialogue, fla...\n There's something rotten about this film, and ...\n I mean really, how could Charles Band the head...\n From the acting, direction, scriptwriting and ...\n I don't know if I hate this movie as much as I...\n Kudos to director and cast for such a realisti...\n A very funny movie. It was good to see Jim Car...\n Visconti's first film has all his trademark vi...\n Let's think people , quit bad-mouthing the ori...\n Combining serious drama with adequate comedy i...\n Five Across the Eyes starts as five young teen...\n From the mind of Robert Bloch, of \"Psycho\" fam...\n I saw Wicked Little Things as part of the \"8 F...\n This is about some vampires (who can run aroun...\n This film really disappointed me. The acting i...\n Well, I saw this movie yesterday and it's - un...\n So much great chemistry between Kristen Scott-...\n JAMES STEWART plays an FBI agent who began wor...\n I really wanted to see this film - I thought t...\n It is important not to be insulted by lack of ...\n While its not the masterpiece that \"Le Samoura...\n Decent animation and some workable character d...\n Not well done at all, the whole movie was just...\n Plunkett and MaCleane are two highwaymen that ...\n Despite excellent trailers for Vanilla Sky, I ...\n I thought this was a really well written film....\n We picked this up as a part of a Brentwood set...\n Director: Tay Garnett, Ford Beebe, Cast: Mike ...\n Going into the movie with the right expectatio...\n This disaster flick is a remake of a 1973 movi...\n My only reason registering to this site was fo...\n There were some scary scenes, which I've alway...\n This movie is wonderful. It always has been al...\n The premise of the story is common enough; ave...\n A comedy of epically funny proportions from th...\n To Be Honost With you i think everything was s...\n I saw the trailer of the film several times at...\n Based on the excellent novel, Watchers by Dean...\n The movie is about two brothers that are suppo...\n I deliberately did not read any reviews of thi...\n This film had a couple of funny parts,but for ...\n Poor geeky Marty (Simon Scuddamore) gets horri...\n How in the world does a thing like this get in...\n Joyce Reynolds seems a might grown-up for the ...\n I love camp movies, believe me and the usual t...\n Higher Learning says its OK for blacks to torm...\n I saw this movie on TV and loved it! I am a re...\n What a clunker!<br /><br />It MUST have been m...\n Although the film does have a fairly stylish l...\n and possibly closest to the Dickens story line...\n John Waters most accessible film to date is on...\n Why was this movie ever made?They have tarnish...\n My husband and I bought the Old School Sesame ...\n I really enjoyed this movie. I have probably w...\n What a movie! It has undeniably entertaining s...\n When one thinks of 1950s science fiction films...\n Maiden Voyage is just that. I'd like to say st...\n Although a film with Bruce Willis is always wo...\n The chupacabra, according to this mockumentary...\n Caught this film on TCM in the early A.M. It w...\n Set in 2017 (although one might easily mistake...\n My first clue about how bad this was going to ...\n The basic plot of this film has already been d...\n This movie contains one of Richard Dreyfuss's ...\n To be honest i had heard this was pretty bad b...\n (No need to recap the plot, since others have ...\n A very moving and thought provoking film that ...\n There are only two movies I would give a 1/10 ...\n After Matt Dillon's phenomenal performance in ...\n clara bow's beauty and wonderful appeal are th...\n i expected this movie to be absolutely god awf...\n First off, I'm not some Justin Timberlake fang...\n Going into seeing this movie I was a bit skept...\n This odd little film starts out with the story...\n A film about wannabee's, never-were's and less...\n The cat and mouse are involved in the usual ch...\n I heard the stories of the ravers in the movie...\n It's official, folks -- Hou Hsiao-Hsien doesn'...\n I agree with Jessica, this movie is pretty bad...\n This movie is the most moving and funny movie ...\n What a disappointment... admittedly the best o...\n There are very few movies that are so funny as...\n This film has a clear storyline, which is quit...\n Dick Clement and Ian La Frenais have a solid h...\n I think that most everyone wants to believe th...\n I cannot believe that this movie was ever crea...\n This one kind of is like an earlier movie from...\n As the film reviewer for a local gay magazine ...\n There are few really hilarious films about sci...\n Wow, \"The Curse of Michael Myers\" what a great...\n When I found the movie in the schedule for Chr...\n This is a great movie to watch with a good fri...\n what can i say, this film is amazing. it has i...\n Very stark, very drab, no real drama. Why not ...\n (mild spoilers)<br /><br />This movie was filt...\n The only good thing about this film is they ma...\n This is what the musical genre was made of. Hu...\n What the ........... is this ? This must, with...\n This movie is so, so, so horrible, that it mak...\n I admit the problem I have with the much-celeb...\n We should all congratulate Uwe Boll. He's done...\n It a bit peculiar that a story that is placed ...\n \"Casomai\" is a masterful tale depicting the st...\n The film begins with people on Earth discoveri...\n Going into this movie, I was a bit cautious. I...\n Ok with this film there are a number of ingred...\n I was really disappointed with this film. The ...\n `The United States of Kiss My Ass'<br /><br />...\n In following Dylan Moran's star from the charm...\n I found this movie to be educational, entertai...\n David Duchovney creates a role that he was to ...\n I really wanted to like this film but it barel...\n I have always been a huge James Bond fanatic! ...\n This film has some flaws, and most of those fl...\n Sometimes it takes a film-making master like K...\n This is an absurdist dark comedy from Belgium....\n As for many on here I can't help but praise th...\n The plot is rocky. The acting is somewhere sou...\n I's a big struggle. As a story that is surreal...\n Anyone who critiques 'Jacqueline Hyde' as anyt...\n Viewing DE VIERDE MAN (aka THE FOURTH MAN) is ...\n Worst. Movie. Ever. I can't believe they had t...\n Cheaply pieced together of recycled film foota...\n After Kenneth Opel's rousing story of the invi...\n Words cannot describe how utterly abysmal this...\n THE CRIMSON RIVERS is one of the most over-dir...\n \"Dead Man Walking\" is one of the most powerful...\n It's one of my favorites TV series. A wonderfu...\n This movie is a lot of fun. What makes it grea...\n This film is a good start for novices that hav...\n Gregory Peck gives a brilliant performance in ...\n A very slick modern (keeping it sensually hip)...\n You've seen the same tired, worn out clichéd s...\n Red Rock West is one of those tight noir thril...\n The film is hugely enjoyable with a great cast...\n Forever Strong is a type of film we've seen ma...\n A beautiful and touching movie that deserves a...\n The film was half over before I managed to fig...\n I was lucky to see \"Oliver!\" in 1968 on a big ...\n This is a fascinating film--especially to old ...\n The price of a dream - and some dreams can be ...\n Watching QUINTET is not unlike watching a grou...\n ... or was Honest Iago actually smirking at th...\n Took a chance to see if perhaps a really good ...\n THE TOY BOX (1971) BOMB<br /><br />Sure, I lik...\n Legend of Zu<br /><br />I remember well Tsui H...\n The summary line above, spoken by James Cloud ...\n \"In 1955, Tobias Schneerbaum disappeared in th...\n Great Woody Allen? No. Good Woody Allen? Defin...\n The aftermath of World War Two almost resulted...\n Jack Lemmon was one of our great actors. His p...\n Dear me. Where do I start? The dad isn't anywh...\n This one took me by surprise because i had oft...\n I saw this version about a decade ago, and hav...\n I first saw this film when I was about seven y...\n War Inc. is a funny but strange film. The acto...\n Stupid, mindless drivel about a jet assembled ...\n I haven't seen any other films by Antonioni an...\n Another Excellent Arnold movie. This futuristi...\n Being a Film studies graduate I would like to ...\n Nick Cage is Gates, a treasure hunter (oh, exc...\n This film has got several key flaws. The first...\n I didn't even watch this whole movie. Now, I l...\n This is just a butchering of a wonderful story...\n This movie sucked. The acting sucked, the scri...\n The people who are bad-mouthing this film are ...\n Oh, brother. The only reason this very irritat...\n Van Sant copies Hitchcock's masterpiece shot f...\n <br /><br />\"After dark, my sweet\" is a strang...\n Jon Voight is brilliant in Midnight Cowboy, bu...\n There's no way to confront 'Zabriskie Point' f...\n I like animated shows. I enjoy the Nick fare p...\n Although Twenty Minutes of Love is a harmless ...\n Sergio Martino has impressed me recently with ...\n I've heard about this movie for many years, an...\n Roy Anderson's film 'You, The Living' comprise...\n A plane carrying employees of a large biotech ...\n I'm usually quite tolerant of movies, and very...\n OK.... I just have 3 words - cheesy, cheesy an...\n Got to this show late - believe it was the 3rd...\n It was dumb. Sort of like an Adam Sandler movi...\n Amen to Magsel. There was a lot of confusion g...\n Hi! I'm Sheena, an African (yet white!) jungle...\n Lately they have been trying to hock this film...\n Princess Tam Tam is without the trappings of r...\n The recent history of Hollywood remakes of gho...\n After having seen the movie the first question...\n What is enjoyable about watching random movies...\n Very good western.This was the first time writ...\n I used to love watching this. I had no idea it...\n Here's my first David Mamet directed film. Fit...\n Canadian director Vincenzo Natali took the art...\n In a very short time, the movie showed a boy's...\n As cute and adorable as they are, the story of...\n A very young Ginger Rogers trades quick quips ...\n This movie is awful, I'm SORRY. I bought this ...\n I'll never understand why when a studio like U...\n First saw this half a lifetime ago on a black-...\n This is better then the first. The movie opens...\n The Violent Men is pretty good western that ce...\n This movie is well done. It really attempts to...\n I think that movie can`t be a Scott`s film. Th...\n Though it's a Christmas movie, \"Christmas in C...\n To anyone who might think this show isn't for ...\n This is one of the anime films from The Animat...\n I wasted 5.75 to see this crappy movie so I ju...\n This is a truly classic movie in its story, ac...\n Start with the script. I have seen cartoons wi...\n This is the greatest movie if you want inspira...\n This is an excellent film, with an extraordina...\n Cinematography--Compared to 'The Wrestler,' a ...\n Another bad spanish picture. This is very baaa...\n Holes, originally a novel by Louis Sachar, was...\n In this first episode of Friends, we are intro...\n Where the Sidewalk Ends is quite a good film-n...\n This movie is a great film. The movie shows so...\n Disappointing, predictable film in which a wom...\n Did this gem go direct to video? Fabulous art ...\n It seems that it is becoming fashionable to ri...\n its a totally average film with a few semi-alr...\n A worn-out plot of a man who takes the rap for...\n [WARNING: Some spoilers included, though it is...\n So far Miguel Bardem's career it's been one of...\n Does anyone care about any of the characters i...\n I was eager to see \"Mr. Fix It\" because I'm a ...\n My Take: A funny take on THE LION KING, posing...\n The BBC and the Arts & Entertainment Network s...\n I live in Ottawa where this film was made and ...\n Alan Alda plays real-life \"Sports Illustrated\"...\n Red Skelton was still another major star who m...\n This could have been a breakout role for Valer...\n I somehow failed for a few years to see this f...\n this has by far been one of the most beautiful...\n Chloe is mysteriously saved from Dr. Caselli, ...\n Calling all D-sciples! Grab your friends, hit ...\n If you want to watch a good film about how wom...\n this episode is not incoherent like another pe...\n When a friend once lambasted me for my first m...\n First of all, season 1 is intolerably bad. The...\n Geordies...salt of the earth characters...bric...\n Like most sports movies which have come out in...\n I love this film. Tense with great characters....\n I actually liked certain things about this gam...\n Okay, so it starts very unimaginatively with a...\n Five-year-old Michael sees his mother getting ...\n Terminus Paradis was exceptional, but \"Niki ar...\n (May contain spoilers) I find myself disappoin...\n Well I guess I know the answer to that questio...\n Long before Tim LaHaye and Jerry B. Jenkins wo...\n I liked this film a lot. The actors were great...\n So umm this woman has a vagina that sucks peop...\n This Horror movie is definitely one of the bes...\n Investigative reporter Darren McGavin (as Carl...\n Fred Williamson, one of the two or three top b...\n I first seen this movie like a year and a half...\n The Lack of content in this movie amazed me th...\n It's pretty surprising that this wonderful fil...\n Whether you watch the regular version of this ...\n I fail to see how anyone who has actually read...\n Anyone who has seen this movie and reviewed it...\n To paraphrase the previous reviewer's comments...\n I had high hopes for this movie, because I enj...\n I saw this movie on Thursdays night after havi...\n I first saw this movie on some movie channel (...\n In Cold Blood was one of several 60s films tha...\n \"The Leap Years\" is a movie adapted from an e-...\n Although the director tried(the filming was ma...\n This is actually an insult to the victims and ...\n This TV-made thriller is all talk, little acti...\n I give \"Flashdance\" a lowest rating of 1 out o...\n I had lost faith in Sooraj R. Barjatya after t...\n \"Black Angel\" is minor whodunit, with June Vin...\n When I rented this I was hoping for what \"Reig...\n This is the best direct-to-DVD effort from Van...\n You gotta love the spaghetti western universe....\n Do not see this movie if you value your mind. ...\n OK the director remakes LOVE ACTUALLY The dire...\n The barbarians maybe´s not the best film that ...\n Reading my review of THE HOUSE THAT SCREAMED, ...\n \"The Running Jumping & Standing Still Film\" is...\n Anyone who knows anything about evolution woul...\n There is one good thing in this movie: Lola Gl...\n Oh man, does this movie ever bite! If you were...\n A friend of mine, who is even more into 1970s ...\n My first question, is NOT about the horrible a...\n I hadn't heard of this film until I read an ar...\n A pig-tailed Linnea Quigley drinks milk, strip...\n Caught this 1969 film on cable TCM one night. ...\n WARNING! This review will reveal the ending of...\n Witchy Hildegard Knef traps a group of people ...\n Born Again the Limerick: <br /><br />If a man ...\n So we're supposed to find it funny that this w...\n Buddy Manucci(Roy Scheider, solid in a chance ...\n In a movie that follows a struggling actor, pl...\n Koyaanisqatsi and Powaqqatsi are both Beautifu...\n An unusual film from Ringo Lam and one that's ...\n This was obviously a low budget film. It shows...\n I usually enjoy watching Laurel and Hardy, but...\n Despite gorgeous and breathtaking animation, t...\n Kid found as a baby in the garbage and raised ...\n The definition of a vampire is an inhumane cor...\n The film is about the battle of Stalingrad. Fo...\n My mother and I rented this gem a few years ag...\n Sometimes a movie is so comprehensively awful ...\n Tipping the Velvet has just three weeks ago be...\n Surprisingly well done for an independent film...\n Inspired by a true story tale is full of 1970'...\n One of Chaplin's longest films up to that poin...\n I was prepared for a bad movie, and a bad movi...\n Wow this was a great Italian \"ZOMBIE\" movie by...\n I always try not to be harsh while criticizing...\n The tragedy is that this piece of rubbish was ...\n OK I had higher hopes for this Carnosaur movie...\n This movie is really sick, and funny. I have m...\n Sometimes you get exactly what you expect. A f...\n This was the most uninteresting horror flick I...\n It's the nature of businesses to try to capita...\n Diagnosis Murder is one of the only programs i...\n I rented this movie not knowing what to expect...\n As always Joan Hickson is wonderful as Jane M....\n I was really looking forward to seeing this fi...\n Even though we know how the story ends, this i...\n I was 19 or 20, years old at the time and livi...\n When we started watching this series on cable,...\n At the beginning of the movie, Ramgopal Verma ...\n I had numerous problems with this film.<br /><...\n I don't mind the odd artsy film. But when they...\n A team varied between Scully and Mulder, two o...\n I *loved* the original Scary Movie. I'm a huge...\n Oh, God! Why didn't you give this money for ch...\n Background info - The movies Octopussy & Never...\n Fairly interesting exploitation flick in black...\n This is a great adaptation and a great miniser...\n Joe was first released in the US in the summer...\n In the era of the Farrelly Brothers and the Ja...\n This is the most compelling and excellent perf...\n The brilliance of this movie is that even a co...\n This has got to be one of absolute worst movie...\n I rented this because I'm a bit weary of '80s ...\n Even Steve Martin and Dan Aykroyd couldn't sav...\n This is a film that had a lot to live down to ...\n A 1957 (yes, that's the correct date) J. Arthu...\n This video contains an outsmart way to confuse...\n After being forced to sit through some real st...\n I love this movie. I mean the story may not be...\n Really good horror flick featuring to of the g...\n So pathetic its not even funny. From the first...\n A craven, cowardly film. Director Boorman show...\n The only aspect of this film that saves it fro...\n I also saw this upon its release in '56, and h...\n This movie was a complete waste of time.<br />...\n I'd heard of Eddie Izzard, but had never seen ...\n Stephen King is generally known for the morbid...\n I was bored, around 10pm, so I watched this mo...\n Letting the class watch this in English was a ...\n My mom, my cousins, and I are pretty big Jane ...\n I really wanted to like this film as I have ad...\n If you want to see a retarded homosexual Karat...\n A SOUND OF THUNDER. One of the greatest short ...\n A pre-Nerd Robert Carradine, a pre-Automan Des...\n I was looking forward to this ride, and was ho...\n Mr. Moto's Gamble has a fairly straight forwar...\n OK, aside from the psychedelic background imag...\n Black Snake Moan is uproarious. It is over-flo...\n As a community theater actor who works hard at...\n I was delighted to see this gem of a film avai...\n I thought that this was an absolutely charming...\n Some guy named Karl Rhamarevich learns how to ...\n \"THE KING OF QUEENS,\" in my opinion, is a pure...\n This show has everything you could ever want f...\n Doppelganger has its moments, but they are few...\n No,<br /><br />Basically your watching somethi...\n This movie is a lot better than the asylums ve...\n I spotted in the guide to films list for the S...\n this movie is not good.the first one almost su...\n This thing is really awfull. There´s no charac...\n After seeing NAKED CITY and NIGHT AND THE CITY...\n I saw this movie a few months ago on cable, an...\n Although Cameron Grant was clearly hired to re...\n One of the more prominent/popular episodes, bu...\n I was a still photographer working in Europe t...\n I find myself comparing all stand-up acts to t...\n I watched this movie purely for the setting. I...\n This movie is just downright horrible, the mov...\n Burt Reynolds directed this action movie and (...\n It was full of plot holes, inaccuracies (doesn...\n Here is proof of why Mary Pickford was `Americ...\n I used to think that \"It Came from Hollywood\" ...\n There are a few things in life that we can't e...\n Actually I feel like having my review be that ...\n Retitled from its original Japanese name of LA...\n No shortage of female flesh but still not inte...\n This movie just pulls you so deeply into the t...\n In this tense and character-driven romantic tr...\n Don't let the wildly varying reviews of the mo...\n Having just borrowing the Series one DVD colle...\n I blind bought this movie and am pretty upset ...\n When a comedy movie boasts its marvelous sound...\n \"Fever Pitch\" is a sweet and charming addition...\n The 221 episodes of \"The Lone Ranger\" were ori...\n I would like to make it very clear that I am n...\n I can't believe I rarely ever see this title m...\n This movie gives a cinematic example of the wo...\n Once big action star who fell off the face of ...\n It's interesting to see what shape Pierce Bros...\n This documentary is such a wonderful example o...\n \"Once in the life\" is a very good movie. Howev...\n Watchable little semi-soaper, but hardly capti...\n I'm always interested to see neglected movies ...\n A have a female friend who is currently being ...\n It's really too bad that nobody knows about th...\n Subspecies is set in Romania where two America...\n It's interesting that a novel with no plot has...\n A small funny film. It is totally incredible, ...\n When it was released, in the beginning of the ...\n This is one of my favorite sports movies. Denn...\n The story: Young-goon is a girl whose family h...\n A Cinderella story made for adults who live in...\n This is a funny movie, there's not a lot of th...\n -it has Carla Gugino *yay* and a crappy ending...\n Greetings;<br /><br />I never thought I would ...\n Let me start off by saying that after watching...\n In this 1943 film, Judy Garland is deemed not ...\n Lucille Ball was a mighty power in television ...\n I was duped into watching this by the many fri...\n I am not a usual commenter on this website but...\n If you're going to spoof James Bond it's a bri...\n The creepy demons \"The Gentlemen\" capture the ...\n Piper, Prue and Phoebe bring Dr. Griffiths to ...\n This two-parter was excellent - the best since...\n Call me stupid, but I absolutely loved the 200...\n In 1968, Stanley Kubrick made this historic fi...\n The Matador is better upon reflection because ...\n This has to be one of the worst movies I've ev...\n I mean let's face it, all you have to do in mo...\n I really liked this movie ... but the ads I sa...\n The final frames of the original \"American Gra...\n This movie was awful. The ending was absolutel...\n You want a movie that'll take you places? Well...\n don't mind the soundtrack, which is played out...\n This movie sucked plain and simple. Okay so it...\n This movie is brilliant in every way. It touch...\n Oh my god. oh my god, i cant get over this mov...\n \"Live Together, Die Alone\" is divided into thr...\n The first time you see The Second Renaissance ...\n If you know the story of Grey Owl, you'll love...\n Since I am required to write minimum of 10 lin...\n From \"36 Chowringhee Lane\" to \"15 Park Avenue\"...\n A serious comedy. Ross Hunter-produced movie v...\n A very cheesy and dull road movie, with the in...\n Hey, it's only TV. Sure, it's STAR TREK, the m...\n The thing that really gets me about this movie...\n First of all, this movie reminded me of the ol...\n Look it's Eva Longoria and Paul Rudd in a movi...\n What exactly was going on during World War 11 ...\n Oh god, what a horrible, horrible film. Meant ...\n This is one of the most spiritual movies I hav...\n David Attenborough brings his fascination of w...\n 'The Adventures Of Barry McKenzie' started lif...\n Hot Millions is a great movie in every way. A ...\n Bad. Personal opinion? The folks who made it? ...\n Johnny Weissmuller's final film as 'King of th...\n John Candy. Need we say more? He is the main r...\n From the crash of the opening theme, \"The Man ...\n Flat characters that you do not and never will...\n A moderately interesting start, some pretty sc...\n Intelligent, wry, and thrilling, \"The Invisibl...\n I'm from Texas so I thought I knew big hair, b...\n The whole set-up of this contrived Disney fami...\n Perhaps the most personal of David Lynch's wor...\n This movie is a blatant attempt by the left in...\n Ugh, bad, bad, bad, but I have seen worse whic...\n In the history of movies based on comic books,...\n As so many others have written, this is a wond...\n From the Q & A before and after, this is what ...\n I saw this film when I was 10 or 11 years old,...\n His music, especially what we hear of it here,...\n Wow... 5 more hours of Riget. Lars continues t...\n I watched this on a weekend afternoon as there...\n The film begins with a cranky old Broadway pro...\n A lot about USA The Movie can be summed up in ...\n This film actually starts out pretty interesti...\n Even in a bad film, there is usually some rede...\n Personally, I don't like a lot of b/w movies, ...\n An inspired choice of director for this latest...\n New York, 1953. One hot night, four famous ico...\n It is only Robert De Niro film which I really ...\n There's this whole theory of horror that some ...\n When I first saw a small scene of it in some a...\n This movie was so ridiculous i never even fini...\n This film was filled with great acting, great ...\n I can just picture how this movie came to be:<...\n Having heard so much about the 1990s Cracker s...\n OK... so... I really like Kris Kristofferson a...\n Kureishi hasn't exactly been blessed with movi...\n Shiri Appleby is the cutest little embodiment ...\n The guy did a lot of title design for a bunch ...\n You want the worst horror movie of the 21st ce...\n Even if it won't give one more than previous p...\n Not being a movie aficionado, I am not familia...\n Alain Chabat claims this movie as his original...\n Chris Smith is a superior filmmaker with the s...\n It is an extremely difficult film to watch, pa...\n I saw this last night in Fort Lauderdale. In g...\n I had to call my mother (a WASP) to ask her ab...\n Our imp of the perverse did good his first tim...\n this is one of my all time favourite films. it...\n I haven't written a review on here in ages but...\n It's a strange, yet somehow impressive story, ...\n \"Land of Plenty\" is not a film. It is a tombst...\n I found \"The Arab Conspiracy\" in a bargain bin...\n I was prepared to love \"Where's Poppa\", it fea...\n Imagine the most cliche ridden b-movie horror ...\n \"The Beautiful Country\" is a big disappointmen...\n It was high time a movie about the situation i...\n It's a kinder, gentler Cyborg movie with a lov...\n Titanic is a long but well made tragic adventu...\n I saw this movie in the first couple of weeks ...\n Altioklar: Master of the thieves. <br /><br />...\n Olivier, Kosentsev, Richardson, Coranado, Zeff...\n With Knightly and O'Tool as the leads, this fi...\n this movie let me down decidedly hard. it was ...\n I feel terribly sorry! Where the Lubitsch-pic ...\n Having a close experience with one such patien...\n After 10 years, it is finally save to say that...\n Not like I went in expecting a lot out of it, ...\n I won't give anything away by describing the p...\n Like a few people I know, I came in late on 'S...\n In a really neat spin on Hitchcock, Larry (Bil...\n Roy Rogers stars as Jesse James and his look-a...\n Elizabeth Ward Gracen, who will probably only ...\n Maybe it was the excessive weight gain Seagal ...\n I found the Movie very interesting. I really e...\n I just saw this film in Austin Texas at the Au...\n Just as the new BSG wasn't what fans of the or...\n Fairly good movie, but not a true story.<br />...\n It's a shame this movie is so hard to get your...\n SPOILER ALERT ! ! ! Personally I don't underst...\n One of Bolls better attempts. Just shows that ...\n One wonders about the state of a society that ...\n Watch the 1936 version. As personally annoying...\n Another example of the women-in-prison genre. ...\n This is the lamest, crappiest, idiotic, stupid...\n This is my favorite of the three care bears mo...\n If you like Pauly Shore, you'll love Son in La...\n The animation in this re-imagining of Peter & ...\n As someone who has never condescended Adam San...\n My Super Ex-Girlfriend is an entertaining movi...\n Symbolism galore, great tunes, this film crush...\n A very realistic portrait of a broken family a...\n This movie has been poorly received and badly ...\n ...\"Inglorious\" as our local theater decided t...\n The year 2000 had been a bad year for indian f...\n A brilliant animated piece that was far ahead ...\n I only recently found out that Madeleine L'Eng...\n A harrowing masterpiece on the sheer madness a...\n Oh my, where to start... this movie was just a...\n This is a terrible remake of a marginal, but w...\n ...and not in a good way. BASEketball is a was...\n Richard Schickel's 1991 documentary about Gary...\n This is what happens when a franchise gets laz...\n I really thought they did an *excellent* job, ...\n If you are looking for a phony Hollywood actio...\n 54 is a film about a club with that very title...\n I really looked forward to this program for tw...\n An illegal immigrant resists the social suppor...\n I have seen this movie twice, once a few years...\n Most italian horror lovers seem to hate this m...\n I haven't seen this movie in 30 years so I don...\n This show makes me(and many others) hate their...\n The plane is a 747 Jumbo. The cockpit is locat...\n When I saw the first preview for this, I nearl...\n Frank Sinatra has one of his best roles as a r...\n The most remarkable thing about \"Talk Radio\" i...\n I think I agree that a lot of the comments her...\n Thre isn't a single Scorsese movie I'd place o...\n The setup for \"Nature of the Beast\" is ingenio...\n So the wife and I just finished it despite sev...\n This movie doesn't even deserve a one. This wa...\n Really, it's nothing much. I only recommend wa...\n ... Once. \"Manos, the Hands of Fate.\" That was...\n The whole town of Blackstone is afraid, becaus...\n yes barney is nonsense now but when i was a ki...\n Well, at least we have to acknowledge the big ...\n ***SPOILERS*** ***SPOILERS*** Well, seeing as ...\n Inglorious Basterds is a dark and violent comi...\n Robert Altman shouldn't make a movie like this...\n I'll preface my review by stating that I am no...\n I was lucky enough recently to see Ingrid Berg...\n There is some spectacular, heart stoppingly be...\n Very entertaining, and a great cast as noted. ...\n Just Before Dawn is one of those really good s...\n Who the heck is responsible for this terrible ...\n This is a review of The Wizard, not to be conf...\n After watching KHAKEE i felt i'll get to watch...\n in a time of predictable movies, in which abou...\n Okay. So I just got back. Before I start my re...\n This Schiffer guy is a real genius! The movie ...\n Oh dear. this was quite possibly the worst fil...\n Ah, clichés, clichés, clichés; They're a main ...\n Istanbul is another one of those expatriate fi...\n let me first say, i watched this movie around ...\n Satya was excellent.... Company was just as go...\n I normally only write reviews for movies I rea...\n Loved today's show!!! It was a variety and not...\n This makes the third Errol Morris movie I've s...\n Gayniggers from Outer Space is a short foreign...\n A chemical spill is turning people into zombie...\n ...but it'll make you wonder if we had any in ...\n Oh, man, how low serials had fallen as by 1952...\n Criticism of the film EVENING, based on the no...\n I would just like it to be known, that I do no...\n Its a truly awful movie with a laughable story...\n He's not your conventional cab driver.<br /><b...\n Another sadistic and ultra-sleazy late 70's/ea...\n If good intentions made a film great, then thi...\n To begin with, I loved göta kanal 1, it had a ...\n First of all there wasn't really anything in t...\n I'm from Australia and have watched with respe...\n This film was different. It took a sort of typ...\n This film is chock-full of little surprises, m...\n It was hard to watch this film and be totally ...\n Bette Davis turns in a coldly amusing performa...\n Rating: *1/2 out of ****<br /><br />\"The Net\" ...\n What a fantastic premise: A movie about the Be...\n This movie is masterly directed by Clive barke...\n Once again Canadian TV outdoes itself and crea...\n The intricate plot, great visuals, the world's...\n In 1984, Edgar Reitz surprised film-lovers all...\n A pot - boiler if ever I saw one. A supposed t...\n Worst movie ever!! Its not clever or funny or ...\n How can you go wrong with a film that mixes th...\n many people have said that this movie was not ...\n I watched DEATH MACHINES as part of BCI Eclips...\n Poor Robert Englund makes another flop and to ...\n I was thrilled by the fresh (pun intended) syn...\n Franco Rossi's 1985 six-hour Italian mini-seri...\n As a forty-something urban explorer/photograph...\n A genuine screaming situation comedy farce of ...\n This is a great movie for first time ninjas wh...\n Just saw this at the Madison Horror Film Festi...\n This morning, I found myself unexpectedly reme...\n I am marking this as a \"spoiler\" only because ...\n Very unnecessary movie with characters that ar...\n This stupid, anti-environment wannabe \"Jaws\" i...\n This movie was God-awful, from conception to e...\n A friend of mine showed me this film yesterday...\n Although I saw this movie in Korea, in Korean,...\n The makers ask for a huge suspension of disbel...\n it´s a movie to see on tv and only once.. i me...\n This was so much better than i expected, the f...\n This was, without a doubt, the worse horror mo...\n This film is actually pertinent even today giv...\n Watching this last night it amazed me that Fox...\n Quite a ways away from \"Go Fish\". Both were go...\n While the idea is more original than most Sci-...\n The infamous Ed Wood \"classic\" Plan 9 From Out...\n Miriam Hopkins is \"The Lady with Red Hair\" in ...\n I'd have to say that I've seen worse Sci Fi Ch...\n ...a true geek-girl's dream: high tech, high d...\n \"Absolute Beginners\" was a film for the younge...\n This is a good movie, a good family movie to w...\n According to this board, I guess either you lo...\n Lance Henriksen has a knack for being the top ...\n As horror fans we all know that blind rentals ...\n It seems at least vaguely possible that this m...\n I could not agree less with the rating that wa...\n This is a brilliant sci-fi movie that is very ...\n Oh I remember watching this show at 4:00 p.m. ...\n Usually musicals in the 1940's were of a set f...\n The Woman in Black (1989) is a TV adaptation o...\n It's been a long time since I last saw a movie...\n 2:37 is an intense and fascinating drama which...\n all i have to say is if you don't like it then...\n This movie was a total yawnfest that took fore...\n This movie was better than I expected. I don't...\n This is a decent little flick made in Michigan...\n The thing viewers will remember most is the ba...\n 'Never Been Kissed' is a real feel good film. ...\n This is a quite slow paced movie, slowly build...\n I usually don't walk out of a movie, but halfw...\n Journalist Bob Woodward's blistering, scatters...\n This crew-versus-monsta has been done a hundre...\n This movie is the first of the six infamous Gu...\n Contains *spoilers* - also, my quotes may not ...\n Perhaps, one of the most important and enjoyab...\n First, an explanation: Despite my headline, I'...\n There were so many classic movies that were ma...\n Another movie that makes the story of The Beac...\n Some critics found this film bleak, but for me...\n Unless you are between the ages of 10 and 14 (...\n I'm serious as well, I mean don't get me wrong...\n For the record, I am a Curly fan through and t...\n If you fast forward through the horrible singi...\n I'm not a fan of scratching, but I really dug ...\n Pros: Nothing<br /><br />Cons: Everything<br /...\n Worthless movie. A complete waste of time and ...\n OK. So it's a low-budget \"film\" (I used the qu...\n The silent one-panel cartoon Henry comes to Fl...\n The film is about a sabretooth on the lose at ...\n Good show.<br /><br />The basic background is ...\n According to the article at http://blog.ifeng....\n This is the first and as far as I can tell, th...\n This film is a complete re-imagining of Romeo ...\n In the immortal \"Shaun of the Dead\", we are in...\n warning:It contains spoilers. If a movie start...\n A small-town schoolteacher (Geena Davis) slowl...\n Golden Boy is in my opinion one the sleeper / ...\n This review contains a partial spoiler.<br /><...\n Just love the interplay between two great char...\n As much as I love Rodney Dangerfield, this was...\n This movie could have had a lot of potential. ...\n PLOT IN A NUTSHELL: Dave Seville, father figur...\n I loved this film because of the dialog and su...\n Excellent movie, albeit slightly predictable. ...\n Hey everyone...<br /><br />There really isn't ...\n Imagine being so hampered by a bureaucracy tha...\n I preface by stating I am a big fan of JJL and...\n I enjoyed it. In general, I'm not a fan of com...\n I love oddball animation, I love a lot of Asia...\n What could be expected from any Adam Sandler-p...\n Cat Soup at first seems to be a very random an...\n This very strange movie is unlike anything mad...\n This movie could have been summed up in about ...\n I admit I go more for the traditional vampire ...\n Three delinquents disturb the tomb of an ancie...\n This Movie as the 1st KSA's movie should be ac...\n The Shirley Jackson novel 'The Haunting of Hil...\n New York police detective Mark Dixon (Dana And...\n I was lying on my bed, with a really bad cold ...\n \"Dressed to Kill\" is Brian DePalma's best film...\n First of all, this is a low-budget movie, so m...\n EL MAR is a tough, stark, utterly brilliant, b...\n On the positive, I'll say it's pretty enough t...\n Joe Buck (Jon Voight) decides he's going to le...\n Following the success of the (awful) Gilligan'...\n The Great War breaks out and Daddy is a brave ...\n Arg. The shuffling dinosaurs are back to take ...\n Missed it at the cinema, but was always slight...\n My friends and I rented this movie mistaking i...\n I recently rented this doc, having remembered ...\n Although I am very familiar with poet Dylan Th...\n I got Mirror Mirror mainly because Yvonne De C...\n 'How to Lose Friends and Alienate People' is a...\n I was surprised at just how much I enjoyed thi...\n (This is a review of the later English release...\n the boys were the most appealing things in the...\n OK..... This is the third in the series of car...\n Plodding, maybe that should have been the titl...\n Hare Rama Hare Krishna was the biggest hit mov...\n The beautiful story of Stardust is written by ...\n Major Payne was really not very good at all. D...\n Every scene was put together perfectly.This mo...\n Tenants Two writers struggle to complete their...\n I've heard people compare this movie to Sidewa...\n I remember this movie from when i was 12, it w...\n This movie is wonderful. What separates it fro...\n The film is side spliting from the outset, Edd...\n I was drawn to this movie, curious to see how ...\n Ringmaster, Jerry Springer's pathetic excuse f...\n Red Eye is not the kind of movie that's going ...\n I must admit that I didn't get around to seein...\n 2005 gave us the very decent \"gore porn\" flick...\n Complete drivel. An unfortunate manifestation ...\n \"Algie, the Miner\" is one bad and unfunny sile...\n I remember hitch hiking to Spain at 25, gettin...\n The film tells you to be aware and conscientio...\n Simon West's remake of the 1979 horror classic...\n Everything about this film is simply incredibl...\n This movie is, in all likelihood, the worst fi...\n This is one of the funniest shows on TV today....\n A genuinely odd, surreal jumble of visual idea...\n I'm actually too drained to write this review ...\n Frank Horrigan (Clint Eastwood) is a secret se...\n This is by far the most vapid, idiotic, insane...\n IS there any reason to revive characters 10 ye...\n This 1939 film from director John Ford and wri...\n This is a silly spoof of private eye thrillers...\n The show start out with the boat. Desmond was ...\n It is great to see a new batch of puppets crea...\n A very insightful psychological thriller! Foot...\n To be frank, this is probably the best version...\n ***SPOILERS*** ***SPOILERS*** Are all teen sla...\n OK, as everyone has pointed out, this film is ...\n I saw this movie when I was little - It was ca...\n I love this Disney Movie! Its a real cute movi...\n Thomas Mann's controversial novel is the basis...\n It's hard to imagine a director capable of suc...\n This game is fun and it has a plot that you co...\n I saw this at an arty cinema that was also sho...\n For all the Homicide junkies out there, this m...\n ...but this has to be the worst A Christmas Ca...\n Yes, The Southern Star features a pretty forge...\n Adam Jones has a brilliant sense of humor. The...\n The detective story is not typical for the Mat...\n After spending five years in prison, Dr. Thoma...\n If only to avoid making this type of film in t...\n Ever read Jim Thompson? He's hard-boiled noir ...\n Maybe you have to be a former hippie to fully ...\n I saw the trailer and read some reviews, and I...\n I first saw this film two years ago in the cin...\n My Age: 13<br /><br />James Cole, played by St...\n Just too many holes in this movie to be enjoya...\n The first 4 episodes of season 6 are just to t...\n This is one of those films with a great potent...\n I'm not kidding about that summary and vote! T...\n \"Radio Flyer\" is one of my most loved American...\n The dominating conflict is between a couple of...\n This movie describes the life of somebody who ...\n The third part of Miike's Dead or Alive trilog...\n I was watching this when my wife called to inq...\n Leslie Carbaga's excellent book on the Fleishe...\n OK, well, no one in their right mind(s) would ...\n My wife and I are semi amused by Howie Mandel'...\n If this movie were more about Piper Perabo's c...\n I'll say this first...the film would've been a...\n When you see Barry Corbin in the cast of a mov...\n I have walked out of very few movies before th...\n I have seen a lot of bad movies with big actor...\n I thought that this movie might be a good spoo...\n This film provides us with an interesting remi...\n (May contain spoilers) This movie is the epito...\n This movie was so awful i don't even know wher...\n I had to watch this film because the plot was ...\n This is the worst movie ever made. The acting,...\n My family and I have viewed this movie often o...\n An MGM MINIATURE Short Subject.<br /><br />The...\n Adapting his own novel \"Cabal\" for the screen,...\n BABY FACE is one of the better of the \"forgott...\n Love the TPB's but this was a lame episode. Di...\n Being a middle aged mom myself, I very much ap...\n Can it ever be said that there are some movies...\n Regardless of what personal opinion one may ha...\n Today if someone mentions the name Victor McLa...\n What more could I say? The Americans totally h...\n The movie is apparently based on a popular Fre...\n Four unhappy women leave dreary London to spen...\n This ranks as my favorite movie of all time. I...\n Wes Craven, you are having a laugh... at our e...\n I did not watch the entire movie. I could not ...\n This is the kind of movie that BEGS to be show...\n ...this would have been what you got.<br /><br...\n I've joined IMDb so people know what a great f...\n I am definitely not a gamer, but a couple peop...\n This takes place in 1920s Harlem. A black owne...\n I first came across this film when I read a bo...\n If one overlooks the technical problems of thi...\n I had no idea what the film is about before I ...\n This was a bold movie to hit Indian cinemas wh...\n Rohinton Mistry's multi-layered novel seemed i...\n Red Skelton (in his first starring role) plays...\n You know all those letters to \"Father Christma...\n Inspector Gadget was probably my all-time favo...\n The film's tagline is \"You think you know who ...\n Somehow, I missed many of the early Farscape e...\n This is the movie that, pretty much, sounded t...\n Honestly, buying this movie was a waste of mon...\n Perhaps the last film you would expect to come...\n To call a movie like \"Thinner\" bad is like cal...\n This son of a son of a sequel was terrible to ...\n I remember a certain Tuesday, the morning of 1...\n I watched this because a friend told me it was...\n i liked this film a lot. it's dark, it's not a...\n Not just because of that theme in the movie. W...\n Please let me know of any versions of Precious...\n I remember stumbling upon this special while c...\n RKO studios decided to borrow both William Pow...\n I remember seeing this one when I was seven or...\n I think that Elisabeth Rohm, though she may tr...\n First off, I had my doubts just looking at the...\n I saw the movie while I was in a class a few y...\n This is simply one of the finest renditions of...\n This movie will always be a Broadway and Movie...\n I was watching this movie on Friday,Apr 7th. I...\n Lovingly crafted and terribly interesting to w...\n By 1950, John Ford had already fully-developed...\n I'm generally not a fan of high school comedie...\n Awful in a bad/good way...this movie has offic...\n As someone who has read all of Baroness Orczy'...\n If you enjoy the original SNL cast and shows t...\n I realize why people hate this film. And, I ha...\n Julien Hernandez is certainly an attractive an...\n Anyone who enjoyed this series when first broa...\n Question: how does a bourgeois director treat ...\n Before Barton jumps all over my remarks, let's...\n Barbara Payton is the suppose-to-be sultry sex...\n So we compromised. This was a fairly charming ...\n This was one of the best movies you could find...\n She has been catapulted from 13 to 30, with ma...\n As a psychiatrist specialized in trauma, I fin...\n Along with Darkwing Duck this is unfairly canc...\n I am really sad that that this film has got so...\n This movie was so very badly written. The char...\n this movie is another on the list that i did n...\n Relying on the positive reviews above, we saw ...\n I tried to like this slasher, like I try to en...\n So many consider The Black Cat as the best Kar...\n This episode was boring and was not even in th...\n I don't remember \"Barnaby Jones\" being no more...\n To call this anything at all would be an insul...\n This is one of those movies that made me feel ...\n Continuing in the string of \"stalker/slasher\" ...\n This show has a great storyline! It's very bel...\n Now I understand that this took two months to ...\n I've been a fan since his first album. This fi...\n 'De Grot' is a terrific Dutch thriller, based ...\n Honestly, one of the worst written, directed a...\n I don't normally write reviews, but for this f...\n Forget Samara/Sadako and Jason...<br /><br />H...\n In the spirit of the classic \"The Sting\", this...\n SHOWTIME is a mess, but it's an entertaining m...\n This was such a great film. It was done with s...\n Riccardo Freda may have a good reputation; but...\n A question for all you girls out there : If a ...\n 2001 is one of those movies where, if you don'...\n It is very hard to rate this film. As entertai...\n For those who have enjoyed the Asterix books a...\n I can remember this movie from when i was a sm...\n This is the movie that is somewhat based on th...\n Previous commentator Steve Richmond stated tha...\n I have never missed an episode. David Morse is...\n I hope Robert Redford continues to make more f...\n Holes (2003, Dir Andrew Davis) <br /><br />Whe...\n I'm a Jean Harlow fan, because she had star qu...\n 'Flood' is a prime example of how throwing goo...\n Andy Lau stars in another cop undercover tale....\n This movie was very funny, I couldn't stop smi...\n This is a great Valentine's Day gift. A gorgeo...\n La Chute de la Maison Usher, or The Fall of th...\n I have seen the movie at the Viennale a few ye...\n Over the years, we've seen a lot of prepostero...\n Suraj Barjatya is best in movies on marriage. ...\n This is a weird movie about an archaeologist s...\n Before all, I'd like to point out that I have ...\n I know that movies aren't necessarily supposed...\n I first saw this video 15 years ago. I thought...\n i should qualify that title, now that i think ...\n I saw this movie twice. I can't believe Pintil...\n Jacqueline Hyde is a good quality film and doe...\n <br /><br />In the process of boring you with ...\n I don't get it. I just don't get it. \"Barney a...\n This is the greatest movie ever. If you have w...\n It is a well known fact that when Gene Roddenb...\n Once upon a time Quentin Tarantino was a relat...\n This one probably does not fit in the bottom o...\n I recently purchased the complete American Got...\n About the discussion on the South, the redneck...\n First off, this film has no story. It's obviou...\n A bunch of teen dirt bikers are out in the for...\n Shakespeare would have been outraged. The writ...\n Hunters chase what they think is a man through...\n One thing that came across to me in watching t...\n like i'm sure other people have said this guy ...\n Stephen Feinberg, who Played the Proctologist ...\n I do get irritated with modern adaptations of ...\n In short, this movie is completely worthless.<...\n This film is easily one of the worst ones I ha...\n As the Godfather saga was the view of the mafi...\n After World War II the ungoing crime in Phenix...\n Disney goes to the well one too many times as ...\n In my opinion, this is a good example of the m...\n The prior comments are way to generous. This m...\n After Garbo's introduction to sound in Clarenc...\n I saw a sneak preview of this Tuesday night wi...\n This could have been the best game ever!! But ...\n **Possible Spoiler*** Adam Sandler is usually ...\n The story of pre-unified China must be a popul...\n I rated this movie as AWFUL (1). After watchin...\n One of, if not the worst film to come out of B...\n This is a CGI animated film based upon a Frenc...\n OK this movie had a terrible premise. Be serio...\n This movie is one of my favorite comedies of a...\n I'm not really sure what to make of this movie...\n I remember watching this film in 1981, when I ...\n We thought this was one of the worst movies ev...\n I read the book and really enjoyed it from beg...\n I rented this film in DVD form without knowing...\n The material in this documentary is so powerfu...\n <br /><br />Well, great costumes and a wonderf...\n A definite no. A resounding NO. This movie is ...\n Low-budget but memorable would-be shocker that...\n A friend of mine recommended this movie, citin...\n The reviews for RENDITION generally haven't be...\n I never saw any of The League's work until ear...\n The only scary thing about this movie is the t...\n I have seen the movie Holes and say that it ha...\n When you have two tower house of performers pi...\n The show had great episodes, this is not one o...\n Has anyone ever read or heard comments by Scor...\n This may just be the worst movie of all time. ...\n I am very surprised by the positive comments b...\n My name is Domino Harvery. {EDIT *dizzying* CH...\n I imagine that the young people involved in th...\n Serge Farnel made a very precise critics of th...\n I have seen this movie about 4 times and every...\n I bought this video at Walmart's $1 bin. I thi...\n This is a film that the mainstream market will...\n A rare lengthy Kinski feature role as Crazy Jo...\n I finally got my wish to see this one in a cin...\n Starring: Ann-Margret, Frederic Forrest, Cathr...\n My friends and I have just finished seeing a p...\n This is a great story. Although there are some...\n Why, oh why, is this trash considered a classi...\n This is one of those wonderful martial-arts mo...\n When I first watched this film, I thought that...\n this by far one of the worst movies I have eve...\n A remarkable documentary about the landmark ac...\n People with an aversion to gore may find some ...\n I thought this movie was great! I saw this whe...\n This an extremely horrible movie. And if your ...\n This film was terrible. I have given it the hi...\n Manoj Agrawal after the failure of PARDESI BAB...\n Sherlock Holmes (Basil Rathbone) begins this s...\n Can anyone give me a reason why only one Ameri...\n I thought this movie was very well done. Takin...\n Jon Stewart (aka John Liebowitz) constantly ri...\n The movie \"Frailty\" is actually more of a psyc...\n First of all, I'd like to say that I love the ...\n         What a script, what a story, what a mess!\n What a disappointment. The story line is so si...\n Staten Island filmmaker Andy Milligan is well ...\n I'll try to use words to describe this on.... ...\n Carlos wants to make fun of affirmative action...\n The premise of the film is that Thomas Archer'...\n Thomas Archer (Ron Eldard) has his child kille...\n I want to clarify a few things. I am not famil...\n You have to hand it to writer-director John Hu...\n well, i hated knocked up, i despised 40-year-o...\n This is one of the best martial art(Kung-fu) m...\n This seventh (yes you read right - the seventh...\n I don't know who financed it, or why, but this...\n This is an Oriental fantasy about ¨thousand an...\n This movie kicks ass, bar none. Bam and his cr...\n I caught this film late at night on HBO. Talk ...\n An extremely gentle retelling of the Shakespea...\n This is not a good movie but I still like it. ...\n I love the absurdity and biting humor of Buñue...\n This is probably the most boring, worse and us...\n It's the 1920s. And a man named Walt Disney wa...\n Aside from the horrendous acting and the ridic...\n There isn't more I can say that saying this fi...\n At the beginning of the film we watch May and ...\n Love Rosario Dawson, think she's one of the fi...\n What a bad movie, the premise was all there, t...\n For a made for TV movie I thought that it was ...\n So terrific, so good. I have never seen a man ...\n Inarguably one of the most interesting filmmak...\n Practically the only other actor who would be ...\n Okay, it was very good...but Best Picture? Ple...\n I suppose this movie is not your typical Spani...\n First of all, I have to say I have worked for ...\n Channel zapping one night I just caught the st...\n I've commented once on this Chucky great, but ...\n Throughly enjoy all the musical numbers each t...\n i went into this hoping it would be the \"thoug...\n I just went to see this movie with a friend. I...\n I am not a fan of Sean Penn, but in contrast t...\n \"The Gingerbread Man is the first thriller I'v...\n This is not a commentary on the actual movie, ...\n This really is an incredible film. Not only do...\n Though I'm not the biggest fan of wirework bas...\n I just rented this movie from the video store ...\n If you like adult comedy cartoons, like South ...\n Now I had the best intentions when watching th...\n I read the half dozen other user comments on t...\n I remember back when I was little when I was a...\n Even after nearly 20 years apart, the original...\n It was very heart-warming. As an expatriated f...\n I did not expect the performances of Gackt and...\n I had the pleasure of witnessing this brillian...\n Wow.this is a touching story! First i saw 'Res...\n I have to say that this TV movie was the work ...\n If the very thought of Arthur Askey twists you...\n I liked the movie, first of all because it tol...\n Hard to believe - but it is! I shouldn't be su...\n Whenever Ida Lupino appeared or directed a fil...\n I went into \"Night of the Hunted\" not knowing ...\n The problem with this- and with all Vietnam Wa...\n I must admit, there are few books with corresp...\n I don't know why, but for some sick reason, I ...\n I watched Pola X because Scott Walker composed...\n I'm a huge Zack Allan fan and was disappointed...\n Spirit: Stallion of the Cimarron is an overall...\n I suppose you could say this film has a grain ...\n I have loved One True Thing since the first ti...\n Elderbush Gilch was a big disappointment for m...\n A classic cartoon, always enjoyable and funny....\n I was looking over our DVD tower last night fo...\n I have read all of the reviews for this direct...\n From the awful death scenes to guns that fire ...\n The truth is that a film based on a Harold Rob...\n Kathy Ireland: the body of a goddess, the face...\n \"Pink Flamingos\" is a cult classic.The plot of...\n I saw this because my cousin is an extra in on...\n I think that Pierre Léaud, or his character, t...\n I am not a big fan of the Spielberg/Cruise ver...\n How has this piece of crap stayed on TV this l...\n Valentine \"Dogkiller\" Dussaut and Joe \"The Jud...\n I just saw this early this morning on the Fox ...\n This little-appreciated movie is one of my fav...\n ... when dubbed into another language. Let's f...\n I have been looking forward to the release of ...\n I rented this shortly after renting Ben Stein'...\n I am currently sitting here, forcing myself to...\n In contrast to my fellow reviewers, I always t...\n An ok movie about downs syndrome. A mother has...\n In Sweet Water, the ambitious entrepreneur Dic...\n John Travolta reprises his role as Chili Palme...\n This movie is simply one of the best movies I ...\n I enjoyed Longstreet, which followed in the st...\n Okay, this movie starts out and it *looks* lik...\n Una giornata particolare is a film which has m...\n After watching about half of this I was ready ...\n This is why I still have nightmares.<br /><br ...\n Three writers made a valiant attempt to adapt ...\n Steve Smith has finally run a fairly weak seri...\n As is nearly always the case, when Britain com...\n My ex wife and I saw and were intrigued by the...\n I was not expecting much going in to this, but...\n The movie seemed to appeal me because of the n...\n Watching this several times as a child was qui...\n No real plot, no character development, no Sco...\n (very serious spoilers)<br /><br />this movie ...\n When I saw this movie at age 6, it was in the ...\n Really for a short film that looks high budget...\n I can't understand why IMDb users would rate t...\n This film reminds me of how college students u...\n Scientist working frantically in seclusion fin...\n Generally speaking, the plot was much better t...\n Probable reasons why so many people on this si...\n I had no expectations (never saw previews for ...\n I gave it a 10, since everyone else seemed to ...\n I'm amazed how many comments on this show are ...\n I don't understand why critics would bash this...\n Do NOT judge this production by the 2-hour ver...\n The duo of Abbott and Costello lives on in thi...\n By far this is the worst Halloween movie ever ...\n Carmen is a prostitute that lives seducing and...\n I would give this television series a 10 plus ...\n Just like Final Fantasy brought CG to a whole ...\n This is such an exciting documentary, it was b...\n House of Dracula was made towards the end of U...\n Holes is a wonderful film to see. It has good ...\n I watched this on the tube last night. The act...\n Taking old collection of stories poses a chall...\n This was Barbra Streisand's first television s...\n Korean \"romance\" about the owner of a camera s...\n This was the worst movie my wife and I have ev...\n Artemesia takes the usual story about the art ...\n For those who like their films full of explodi...\n Another stupid \"movie\". The quality of image i...\n Tromeo and Juliet is perhaps the best Shakespe...\n A lonely depressed French boy Mathieu (Jeremie...\n This is one of the worse cases of film drivel ...\n As with FOOTPRINTS (1975), I became aware of t...\n Allow me to just get to the bottom line here: ...\n I just checked out Northanger Abbey from the l...\n Actor turned director Bill Paxton follows up h...\n This film failed to explore the humanity of th...\n I've never been compelled to write a review ab...\n This film aka \"the four hundred blows\" is a mi...\n A recent survey of children in the UK re-enfor...\n I'd have little to add to bowlofsoul23's bull'...\n `In the tradition of 'Carrie' and 'Heathers'? ...\n This is a classic action flick from the '80s f...\n Take young, pretty people, put them in an exot...\n This film is horrible. Bad acting, bad writing...\n John Waters has given us a genuinely enjoyable...\n The actresses bra in a changing room--well I g...\n Kitten Natividad, of Russ Meyer film fame, pla...\n Billed as the story of Steve Biko -- played ex...\n Loving the Andersen fairy tails as a child and...\n I'm a fan of arty movies, but regretfully I ha...\n The planning episodes were a bit dull, but whe...\n When they announced this movie for TNT I was e...\n being a fan of Bela Lugosi,Boris Karloff,and L...\n I love Ben Kingsley and Tea Leoni. However, th...\n I didn't really think this movie was bad. Sure...\n I originally saw this very dark comedy around ...\n There were nice characters in here, played by ...\n An updated version of a theme which has been d...\n A very enjoyable french film. This film has ma...\n North and South is a miniseries from the \"gold...\n A Time To Kill is based on John Grisham's firs...\n THE GOLDEN DOOR (NUOVOMONDO) is for this viewe...\n I really can't believe this movie is not in th...\n (Some spoilers included:)<br /><br />Although,...\n Very bad. Very, very bad. As a fellow who aspi...\n I thought the film was good in parts.the start...\n We first watched this film as part of a festiv...\n This is the last time I rent a video without c...\n This movie is a must see for any war movie buf...\n Although Bullet In The Brain is, without quest...\n i am rarely moved to make these kind of commen...\n This was a letdown in many ways. The location ...\n I agree that the movie is a little slow at spo...\n Gene Kelly, Frank Sinatra, Kathryn Grayson, an...\n This film is bad. Not so bad it is good. Just ...\n For starters, I would like to say that I'm a f...\n A number of brides are mysteriously murdered w...\n When I saw this movie i expected it to be a ch...\n Vince Lombardi High School has a new principal...\n What is it about drug addiction that so draws ...\n One of the worst films I have ever seen. Got s...\n This young filmmaker has a talent for capturin...\n It's a shame that such a lame plot should be h...\n This movie was extremely disappointing, I thou...\n \"French Cancan\" is one of my favorite all time...\n Making a film based on a true story, particula...\n This is an excellent tub-thumper from the war ...\n The usual cat and mouse antics abound until Je...\n Jim McKay has made one of the best films you w...\n Gerald McRaney,(Dave Morgan),\"War Crimes\",'01 ...\n What the hell is this!? That was my first reac...\n This is, arguably, the worst of the major Ava ...\n I've read most of the comments on this movie. ...\n HLOTS was an outstanding series, its what NYPD...\n It's times like these I truly wish I was a mor...\n wow i payed £3.50 to go see this movie at the ...\n And here's yet another piece of evidence to cl...\n I'm overwhelmed by the work of Jim Carrey. I k...\n This review may contain some SPOILERS.<br /><b...\n There are not many movies around that have giv...\n The director and two stars of LAURA (1944) wer...\n Seriously, folks...I was getting ready to actu...\n Everyone we meet influences our thinking, modi...\n Look,I'm reading and reading this comments and...\n This is an awful film. Yea the girls are prett...\n Here's another pleasant surprise. Whenever I h...\n Not much to say other than plenty of Wire-fu a...\n I'm usually a fan of \"art\" and \"foreign\" films...\n Okay, first of all, I missed like the first 15...\n You know you've got a bad film when you hear t...\n \"Why?\"<br /><br />That simple question had to ...\n Let's face it, romantic comedies are considere...\n I wonder if I could take sitting through a who...\n It, at all, you have seen when harry met sally...\n Holy Schnikey! This Movie rocks! The duo of Ch...\n This is an extraordinary film. As a courtroom ...\n \"Beyond Rangoon\" is simply marvelous. From the...\n In 1988, Paperhouse was hailed as a \"thinking ...\n While it was nice to see a film about older pe...\n Oh man, it is amazing how somebody can claim g...\n Considering how much money was budgeted for th...\n There is so much wrong with this movie. Greico...\n Every child experiences trauma growing up and ...\n This is, quite literally, the worst movie I ha...\n I really enjoy this genre but The Cell was one...\n I could not believe the low 5.6 rating on IMDb...\n I would not consider myself as one of Leonard ...\n I'm sure that the folks who made this movie th...\n Well this was the WWF's last pay per view even...\n There's perhaps a special reason why The Fox a...\n I decided to watch this serial after seeing th...\n The Deadly Wake is THE PERFECT MOVIE for film ...\n it's a very nice movie and i would definitely ...\n In Mexico City, the former CIA assassin and pr...\n This movie was childish in its writing and lau...\n I know that this is an unpopular position conc...\n Stunning. Absolutely stunning. This is a movie...\n ...Or is this another way below the bottom-of-...\n Haggard: The Movie is the real life story of R...\n Slow and riddled with inaccuracy. Over-looking...\n Being raised at the time this movie was releas...\n I can't decide whether this is one of my favou...\n This movie needs to be put on DVD. It was so f...\n Farrah Fawcett is superb in this powerful 1986...\n On paper this movie has some chops: a street k...\n It's hard to say sometimes why exactly a film ...\n To start with, I have to point out the fact th...\n *SPOILER ALERT: I wish I could discuss this wi...\n I happened to leave HBO on last night followin...\n When I went to see this documentary on Communi...\n I absolutely fell in love with this girls. let...\n This is without a doubt the worst movie I have...\n Definitely the worst movie I have ever seen......\n It's hard to decide what to say about this one...\n I will never forget the night I saw this movie...\n A terminally dull mystery-thriller, which may ...\n When an attempt is made to assassinate the Emi...\n Those engaging the movie camera so early in th...\n I've seen this movie twice already and am very...\n This has got to be one of the better post-Asta...\n I loved this movie. My daughter is 3 1/2 and a...\n God, I was bored out of my head as I watched t...\n it's a weekend i've been watched this funny fi...\n Level One, Horror.<br /><br />When I saw this ...\n I understood before watching this film that it...\n Guess a few upscale film directors were sittin...\n Ummm, please forgive me, but weren't more than...\n I'm one of those people who usually watch prog...\n I appreciate a think positive feel good about ...\n This must be one of the worst movies I have ev...\n I saw this film over Christmas, and what a gre...\n The Shining, you know what's weird about this ...\n I am really amazed how little fame this film h...\n If I hadn't read his name on the DVD cover, I ...\n As a late-going patron of the drive-in thearer...\n mondovino is a moving and rewarding documentar...\n This is a great movie from the lost age of rea...\n I love Meatballs! Terrific characters and poig...\n I liked this show from the first episode I saw...\n The 3rd in the series finds Paul Kersey (Brons...\n (No spoilers, just plot details) I can't under...\n This film and it's sequel Barry Mckenzie holds...\n The third entry in the \"Stepford\" franchise, b...\n Zombie Bloodbath is a movie made by zombie fan...\n SPOILERS AHEAD<br /><br />This is one of the w...\n Wow, its been quite a while since I've watched...\n As a dedicated lover of all things Egyptian th...\n I managed to tape this off my satellite, but I...\n I watch Cold Case because of the real life exp...\n This film was released in the UK under the nam...\n the movie is great, like every other internati...\n Believe it or not, \"The Woodchipper Massacre\" ...\n This is the best French movie of the year ! I ...\n Currently on METOO's new schedule at 4 pm on w...\n This film reminds me very much of the later Ro...\n The plot it's not so original. If someone saw ...\n The first time I saw this film it was with thi...\n This is without a doubt the funniest of the Cu...\n Lots of scenes and dialogue are flat-out goofy...\n I saw this film a couple of weeks ago, and it'...\n This whole movie is just so terrible it is a c...\n There are certain scenes in this film (like th...\n I've been trying to track down this film just ...\n This is definitely one of the greatest Disney ...\n <br /><br />Paul Verhoeven finally bombed out ...\n First off, this movie is not near complete, my...\n Pitch Black is a surprisingly good movie. I wa...\n Why do people need to follow the opinion of th...\n What an awesome movie! It was very scary, grea...\n First there are some plot holes in this movie....\n This whole film should have lasted 45 minutes ...\n Larry Bishop, the Writer/Actor/Director, focus...\n Inferno gives Los Angeles what it deserves-- a...\n Moonwalker is a Fantasy Music film staring Mic...\n The main character of this sex-filled drivel, ...\n For a long time i haven't seen so beautiful an...\n This is one of the best films I've seen from t...\n I saw this back in 99 and I remember loving it...\n Bedrooms and Hallways gives its audience a loo...\n I first saw the movie a couple of years ago an...\n If you liked watching Mel Gibson in Million Do...\n Anyone who finds this film boring is a hopeles...\n This movie is not realistic at all, more of a ...\n I love the munna bhai MBBS but \"Lagge raho...\"...\n is it just me or have all \"horror\" movies beco...\n I first saw this movie at least thirty years a...\n There is a bunch of movies that we say must be...\n I always follow the Dakar, so when my husband ...\n This is horrible even for a TV movie. I can't ...\n This movie is witty, watchable and utterly tou...\n (There isn't much in the way of spoilers, sinc...\n After wasting 2 hours of my life watching this...\n Thanks to a dull, dimensionless screenplay by ...\n This is one of the best \"Bloke\" movies from th...\n While watching this film recently, I constantl...\n I've been waiting almost 25 years to see this ...\n That was great fun! I never read those Chester...\n Though this film destroyed Director and Screen...\n The Soap is an interesting movie and very bril...\n This tale of the upper-classes getting their c...\n and not in a fun-to-watch way. it's just bad. ...\n Watching Before The Devil counts as one of my ...\n \"Igor and the Lunatics\" is a totally inept and...\n Every boy eventually learns the lesson that ju...\n This one came out during the Western genre’s l...\n Since others have complained about putting She...\n I've read the book 'Scarlett' and was expectin...\n This classic has so many great one-liners and ...\n Overall I found this movie quite amusing and f...\n This is a \"docu-drama\" of (mostly) the later y...\n i was lucky enough to see A Chorus Line when i...\n in this movie, joe pesci slams dunks a basketb...\n The warmest, most engaging movie of its genre,...\n For some strange reason the film world is driv...\n The mere fact that I still think of the movie ...\n A long time ago, I watched this movie from the...\n I first saw this movie at a festival. There we...\n I watched the Malayalam movie \"Boeing Boeing\" ...\n This was so lame that I turned the DVD off...m...\n Back in the mid/late 80s, an OAV anime by titl...\n As a lover of bad movies, I definitely hit pay...\n I saw this film in a sneak preview, and it is ...\n You talking' to Me? (1987) is a pretty bad mov...\n First thing I note is the music. It's nothing ...\n When one watches the animated Superman shorts ...\n I'm a rather pedestrian person, with somewhat ...\n \"Heartland\" is a wonderful depiction of what i...\n usually I support independent art and i try to...\n Ok, so, this is coming a few weeks late, but i...\n If anyone tells you this picture is just terri...\n too predictable for spoilers, but i'll not be ...\n Like a terrible cancer raining out of the sky,...\n This movie has many problem associated with it...\n Ridiculous. This movie is actually a vehicle f...\n Gotta start with Ed Furlong on this one. You g...\n Zombie Nation 2004 R<br /><br />Hey, I was bor...\n \"The Bat People\" is a really bad film that des...\n Why oh why did they have to try and make a seq...\n This film is terrible. The story concerns a wo...\n Forbidden Planet rates as landmark in science ...\n Friz Freleng's 'Snafuperman' is one of the les...\n Being a fan of time travel stories I was surpr...\n If your looking for a movie with fantastic mus...\n In all, it took me three attempts to get throu...\n I absolutely LOVED this movie as a child. I ca...\n I would have left the movie halfway through if...\n I'm not usually a fan of strictly romantic mov...\n This German documentary, in English, is about ...\n HOOT is about these three teenage kids who try...\n It's so fake! The plot seems like a generic ad...\n What could possibly go wrong with a movie that...\n You should not take what I am about to say lig...\n It is not the same as the other films about da...\n I can't recommend this film as a date movie. G...\n This is a really interesting movie. It is an a...\n Three giant sabretooth tigers(..created in a l...\n Wakayama Tomisaburo's portrayal of fugitive ex...\n The Outer Limits is a brilliant show that for ...\n Well the plot is entertaining but it is full o...\n I finally sat down and saw this film the whole...\n Wealthy businessman Bill Compton (played by De...\n Although John Woo's hard Boiled is my number 1...\n This was a very enjoyable film. A humorous, bu...\n I found this movie in the 'horror' section of ...\n Match 1: Tag Team Table Match Bubba Ray and Sp...\n Gerard is a writer with a somewhat overactive ...\n this movie was downright awful. most of the co...\n A group of models is seeking an apartment to l...\n What a waste! This movie could have really bee...\n I went into this movie thinking that it would ...\n Take:<br /><br />1. a famous play<br /><br />2...\n \"Three\" is a seriously dumb shipwreck movie. M...\n Grand Central Murder (1942) Dir: S. Sylvan Sim...\n I've spent years looking for a copy of this fi...\n This review may contain some spoilers.<br /><b...\n The first time I saw this episode was like a s...\n I love it! I love Pauly Shore. It seems some p...\n Understand i'm reviewing the film I have seen....\n I think together all the reviewers have captur...\n The only reason i am bothering to comment on t...\n As a writing teacher, there are two ending I n...\n During a sleepless night, I was switching thro...\n Three years ago, Rachel(Therese Fretwell) was ...\n Closet land is not at happy movie. Neither is ...\n I watched this film a long time ago (aprox 10 ...\n Rosario Dawson stars as a girl who is date rap...\n This is the worst imaginable crap. The novel b...\n The most attractive factor that lies in this m...\n One of the worst films ever. Not funny, poor T...\n This is a poem on film, wonderfully presented ...\n This is truly one of the worst films I have ev...\n What a movie! I have always liked the Asian st...\n I remember seeing this years ago, It had a rea...\n First off I want to say most of the people who...\n Having read the novel before seeing this film,...\n I saw this film at the 2005 Toronto Internatio...\n Didn't Mystic Pizza win the Oscar for that yea...\n Formulaic slasher film, only this one stars th...\n A good cast (with one major exception) pushes ...\n This was a decent movie for the first half. To...\n I saw Bandit Queen in 2005, over a decade afte...\n The first two-thirds of this biopic of fetish ...\n As a young boy, I always sort of hated \"Cinder...\n This is the last of four swashbucklers from Fr...\n Still Crazy has been compared to the Spinal Ta...\n I was quite excited when I saw this film in co...\n After Loomis gives a quick recap of Micheal My...\n A great story, although one we are certainly f...\n I had read up on the film and thought it would...\n What you saw in BULLITT and THE FRENCH CONNECT...\n This the the final feature film that Michelang...\n Vulpine Massacre should have been this movies ...\n I saw it on video. Predictable, horrid acting,...\n Obvious tailored vehicle for Ryan Philippe. It...\n So I rented \"Still Crazy\" instead. When I desc...\n This movie has some of the worst acting I've e...\n \"Problem Child 2\" was a complete waste of my t...\n I read the above comment and cannot believe it...\n Anyone interested in pop music, and not famili...\n What a movie! I never imagined Richard Attenbo...\n This was Gene Kelly's breakthrough, and that a...\n While in her deathbed, Ann Lord (Vanessa Redgr...\n my friend bought the movie for 5 (its is not ...\n Okay, sure, this film will never win an oscar....\n A bickering, American family, vacationing in t...\n \"Glen or Glenda\" was Edward D. Wood Jr's first...\n Another horror flick in which a goof-ball teen...\n All right, I'll grant you that some of the sci...\n I saw this film opening weekend in Australia, ...\n Bela Lugosi is not typecast in this fantastic ...\n The fact that I watched this entire movie says...\n It's a shame. There's an interesting idea here...\n i just saw this film, i first saw it when i wa...\n Nagra comes from conservative Indian family th...\n There are some films that every Horror fan owe...\n This movie was slower then Molasses in January...\n The 1963 version of \"The Haunting\" has been on...\n I like Money! I stumbled on this brilliant fil...\n This film was so unfocused, rambling and uneve...\n Many neglect that this isn't just a classic du...\n What a fun movie! If you're a Giallo fan, Red ...\n Perspective is a good thing. Since the release...\n It amazes me that production companies will su...\n I would like to know the real name of the Lodg...\n Mockney comes to Brighton; despite a poor rece...\n Doll Master is an example of a lousy horror fi...\n When you first sit down to watch this movie, k...\n The film tackles the here and now horror of \"r...\n Never realized that Charles Boyer, (Luis Denar...\n Terry Gilliam gives a stunning movie, which I ...\n This series adds new information and backgroun...\n Yes, it's \"Flipper\". But writer/director Alan ...\n Normally I wouldn't feel qualified to review s...\n Jane Austen's Emma is an extremely enjoyable s...\n I saw this film in my cinema class. I am glad ...\n This is a really fun movie. One of those you c...\n sure this movie may have had its funny moments...\n First things first, Edison Chen did a fantasti...\n I thought Harvey Keitel, a young, fresh from t...\n I SELL THE DEAD (2009) **1/2 Dominic Monaghan,...\n Michelle Rodriguez plays Diana, a high school ...\n Uggh! Hanna-Barbera of the 60s and 70s! What l...\n 35 years after this was made, Castro still rei...\n George Carlin is probably my favorite comedian...\n KING KONG VS. GODZILLA (1963; which I recall h...\n Lucio Fulci, a director not exactly renowned f...\n The Stepford Children is the second best Stepf...\n This is Jonas Quastel debut as a director and ...\n The book is fantastic, this film is not. There...\n I tivo'd this on Turner Classic just because i...\n This was probably one of the most well-made fi...\n When my six-year-old fell asleep at the theate...\n I'm amazed that Memento (which is an excellent...\n Chen Kaige gives us magnificent depth of atmos...\n This was in short a terrible disappointment. B...\n I liked Batman: Dead End. A dark edgy film-noi...\n Allegedly the \"true story\" of Juana de Castill...\n OK. So it can be done! We have here the perfec...\n I was seriously looking forward to seeing this...\n I like a good novelty song. No, I take that ba...\n All of the trials and tribulations of making a...\n Extremely funny. More gags in each one of thes...\n If this film had been made in the 50's or 60's...\n Note to all mad scientists everywhere: if you'...\n To be brief, the story is paper thin and you c...\n I have never been a great fan of Oliver Stone,...\n Offering a killer combo of terrible writing, t...\n A surprising misfire from the usually reliable...\n Horror Gods Boris Karloff and Bela Lugosi shou...\n This movie had the potential to be far more th...\n A great production, that should be revived/reb...\n After reading over all these reviews I'm very ...\n The Stone Boy is an almost forgotten drama fro...\n Seriously, I don´t really get why people here ...\n <br /><br />SPOILERS IN THIS REVIEW<br /><br /...\n Pete's Meteor. I seen this referred to as \"aut...\n This movie will promote the improvement of the...\n MAJOR LEAGUE: BACK TO THE MINORS (1998) ½* <br...\n I purchased this film on the cheap in a sale, ...\n While the romance in this film is an important...\n Pathetic is the word. Bad acting, pathetic scr...\n Considering 'A Star is Born' had been made twi...\n \"What symbolism!\" exclaimed a woman as we exit...\n I cannot stay indifferent to Lars van Trier's ...\n OK, forget all the technical inconsisties or t...\n Personally, this is one of my favorites of all...\n Just like Al Gore shook us up with his painful...\n This movie is possibly the cheapest, cheesiest...\n I saw this movie when I was a little girl. And...\n There are 3 of these movies, all similarly cra...\n Ever since I first played it in 1998, GoldenEy...\n I think that this movie was reasonbaly good. I...\n i recently went to a free screening of soap gi...\n I saw this film premiere Friday (1/19) night i...\n I've sat through less painful operations than ...\n ****SOME SPOILERS****<br /><br />There's nothi...\n I must admit I'm a little surprised and disapp...\n This movie was well done. It covers the diffic...\n As a fan of Paris Je'Taime, I went to see New ...\n I noticed \"Fire\" was on cable the other night ...\n Freddy Krueger the dream stalker from elm stre...\n The movie is about Anton Newcombe. The music a...\n This is a very well done film showing the life...\n An interesting pairing of stories, this little...\n Susan Swift is an appealing youngster, a flowe...\n Lifetime did it again. Can we say stupid? I co...\n Couldn't believe it! Clipped sentences? Good g...\n What this movie is not: Cool, Entertaining<br ...\n Greetings again from the darkness. How rare it...\n This is movie is very touching. I don't care w...\n A community pool in Connecticut is the setting...\n I was sorely disappointed in this movie. Twice...\n This movie is really bad. The acting is plain ...\n I received this movie in a pack called \"50 all...\n On an overnight flight from Los Angeles to Mia...\n I came across this movie in an Australian hote...\n Mina Kumari exhibits more style and grace just...\n \"The Mother\" tells of a recently widowed mid-6...\n Three words: What a pile..... Two words: Don't...\n As we all know Hollywood enjoys changing histo...\n When you're used to Lana Turner in the Postman...\n I did not know for some time in my youth all t...\n You don't expect much from a PRC picture, and ...\n This is the first Tom Hanks movie I have gotte...\n Cant believe it.... after all these years fina...\n Indeed, Cynthia Watros is in this movie as Eli...\n The main aspect about the Superstar's movies a...\n Spoilers ahead if you want to call them that.....\n I've seen this about 2 or 3 times and haven't ...\n I have read modesty Blaise for several years n...\n Follows the same path as most sequels. First o...\n I am quite the Mitchell Leisen fan so it was a...\n I could see this film is super He didn't surpr...\n After hearing the word of mouth of just how ba...\n I enjoy the National Anthem. I enjoy the Natio...\n André Roussin was a specialist of what the Fre...\n First off, I refuse to even consider this piec...\n Two years after this short, the last \"Our Gang...\n I am at a loss to find the words to express ho...\n I picked out this DVD out of the cheepo bin at...\n \"The China Syndrome\" launched a whole string o...\n Ok, so it's not a masterpiece like the Godfath...\n I began watching this movie with my girl-frien...\n -A very pretty red headed woman waiting for he...\n Worst.film.ever Nothing more needs to be said....\n \"Pink Flamingos\" was revolutionary for its tim...\n The Time Machine starts in New York during 189...\n I want to preface this review by saying that I...\n This is very dated, but that's part of the cha...\n \"Five Characters in Search of an Exit\" has to ...\n Yep.. this is definatly up there with some of ...\n Good Film.<br /><br />I managed to pick this u...\n I didn't hate this movie as much as some on my...\n I am still shuddering at the thought of EVER s...\n THE TENANTS began as a 1971 short novel by the...\n Great film, a very worthy 7/10.<br /><br />Tom...\n When I was in 7th grade(back in 1977), I was a...\n This is an incredible comeback from movie dire...\n It's \"The F.B.I.\" starring Reed Hadley, with a...\n Difficult to call The Grudge a horror movie. A...\n Nothing to say but Wow! Has anyone actually ha...\n I have just started watching the TV series \"Wh...\n The first time I saw this was when I was with ...\n This movie serves up every imaginable Greek st...\n ... and the series lets you forget all that. I...\n I thought that i wrote a comment on this movie...\n Interesting? Hardly. The 'scientific evidence'...\n *Minor spoilers* I just wanted to say that for...\n \"Darkness\" was entertaining to some degree, bu...\n Positively awful George Sanders vehicle where ...\n Biographical tale of the life of Charles Lindb...\n Basically, this is a very good film. It is ver...\n Frustrating to watch because of one man's stub...\n This movie sucks so bad. Its funny to see what...\n Had this film been put together a tad better, ...\n What a sad surprise.<br /><br />Being a die-ha...\n Number 1 was really great summer popcorn fun. ...\n Predictable, cliche, unbelievable, boring...wh...\n I was excited to hear that someone had made a ...\n Cliffhanger is a decent action crime adventure...\n About 4 years ago, I liked this movie. I would...\n I originally saw this movie as a Blockbuster V...\n At first I was convinced that this was a made-...\n I'm sure there is a documentary amongst the ru...\n First of all sorry for giving even a rating of...\n \"The 700 Club\" has to be the single most bigot...\n This neo-film noir is one of a genre of late t...\n At a time in our culture where reality exposed...\n All films made before 1912 really need to be v...\n Horses on Mars is a wonderful journey taken by...\n Another Son of Sam is definitely not an Oscar ...\n OK, so I'm not usually one that runs out and r...\n I am finding that I get less and less excited ...\n 1st watched 6/18/2009  2 out of 10 (Dir- Pete...\n ...this is a classic with so many great dialog...\n I sat glued to the screen, riveted, yawning, y...\n Stan Laurel, it's been noted, first made a rea...\n Challen Cates does a wonderful job depicting a...\n I suppose I always felt that Hotel du Nord was...\n Fascinating yet unsettling look at Edith Bouvi...\n I absolutely could not believe the levels of i...\n Of all the breakdancing / hip-hop films releas...\n I saw this movie on videotape with my younger ...\n Bonfires of the Vanities is a film drenched in...\n This film by the well-known Czech director and...\n Seriously, if you want to see a cliché horror ...\n Although this was obviously a low-budget produ...\n I've seen tons of science fiction from the 70s...\n Having ran across this film on the Fox movie c...\n I saw this back in '94 when it was finally rel...\n \"Hey, I didn't order no cab!\" \"Yeah, well you ...\n Call me adolescent but I really do think that ...\n This is by far one of the best biographical fi...\n OK we all love the daisy dukes, but what is up...\n There really isn't much to say about this movi...\n When HEY ARNOLD! first came on the air in 1996...\n I was given this film by my uncle who had got ...\n How can anyone even begin to like this film is...\n Victor Sjostrom, who is the grandfather of Swe...\n Once again Almenábar has provided us with a to...\n The original GRUDGE (the original American rem...\n The stuff dreams are made of. A complete retel...\n I had low expectations for this movie, but I w...\n I really can say I felt the movie in its right...\n Ming The Merciless does a little Bardwork and ...\n I caught a screening of this at the True/False...\n I think Dolph Lundgren had potential at being ...\n Writer/Director Michael Hurst's Sci-Fi Channel...\n This movie blows you off your feet. This debut...\n ...the first? Killjoy 1. But here's the review...\n Adapted from Sam Shepard's play, this movie re...\n One of the many speculations about Y2K was tha...\n Superbly crafted low-budget thriller with more...\n I have just sat through this film again and ca...\n i don't care if you'd like my comment or no bu...\n Like CURSE OF THE KOMODO was for the creature ...\n I seem to be disagreeing with a lot of folks h...\n \"Father Hood\" is an overlooked little gem of a...\n I recently bought this movie with a bunch of o...\n I can't disagree with a previous comment that ...\n I loved so much last Bellocchio's movie, the m...\n Somehow, this movie manages to be invigorating...\n First off, I really loved Henry Fool, which pu...\n The John Goodman program was pretty awful, but...\n An uptight voyeur who wants to commit suicide ...\n It's also the best book I've ever read. Karl U...\n The Last Dinosaur was one of those \"out of now...\n Great story and great lead actors (Quaid and R...\n This film has a really weird mixture of genres...\n In the funeral of the famous British journalis...\n Before I had seen this film, I had heard some ...\n We still really love the movie and soundtrack ...\n I was going to use 'The German Scream' as a su...\n The film looks super on paper. A romantic come...\n Age of Steel follows up the previous episode, ...\n I was all ready to hate this but it turned out...\n I was a huge fan of Asterix comics when I was ...\n Pick a stereotype, any stereotype (whether rac...\n I hate to say I enjoyed this movie as the subj...\n Oh my. I decided to go out to the cinemas with...\n Looking at some of the negative posts, you rea...\n There is a version of \"Nevsky\" that is shown w...\n The connection with James Dean?In a short plan...\n I caught the last half of this movie on cable ...\n I'm guessing that the movie was based on a hef...\n This is part one of a short animation clip sho...\n When i first saw this show advertised to be on...\n I am a back Batman movie and TV fan. I loved t...\n While HOUSE OF WAX will never be mistaken for ...\n If you can believe it, *another* group of teen...\n It's a good movie maybe I like it because it w...\n I enjoyed the cinematographic recreation of Ch...\n This film wasn't good at all. I was able to ca...\n \"Foxes\" is a serious look at the consequences ...\n This show is non Stop hilarity. the first joke...\n The plot is plausible but banal, i.e., beautif...\n A vg Brit rom-com, one to watch if you can get...\n I enjoyed the story by itself, but the things ...\n I found myself at sixes and sevens while watch...\n This film had a lot of promise, and the plot w...\n The Captain and Tennille have released a very ...\n Here's a rare gem for those of you that haven'...\n I thought this was a really cute movie - inspi...\n This was a pathetic movie. The Alien was decen...\n The copy of this movie that I have seen is not...\n For his last film, John Huston directed his da...\n I used to work in a video store. I saw this ti...\n First of all, I am a huge fan of Madeleine L'E...\n The most satisfying element about \"Dan in Real...\n I have never observed four hours pass quite so...\n It's just a bad film.Not as bad as R.I.C.C.O. ...\n This was the film that started that the cinema...\n It feels like swedish movies are trying to bec...\n Wimpy stuffed shirt Armand Louque (blandly pla...\n I originally reviewed this film on Amazon abou...\n Boy, this movie is bad. And not in a good, che...\n What's the best way to start a review of a mov...\n This is a movie that demonstrates that mood an...\n I couldn't believe that this movie dates from ...\n The Cavern: 2 out of 10: Blair Witch meets The...\n Steve Carell comes into his own in his first s...\n It's a bit easy. That's about it.<br /><br />T...\n This movie is SOOOO funny!!! The acting is WON...\n This is classic 80's humor. If you were a teen...\n I am 17, and I still like most of the Scooby D...\n Inappropriate. The PG rating that this movie g...\n I haven't seen many movies worse than this one...\n Updating of the Clare Booth Luce play and the ...\n They missed up the film when the tried to use ...\n Oz, is one of the most mind-blowing and addict...\n Miss DeCarlo's starring debut has everything t...\n For some reason, TV Guide gave this two and a ...\n I admired Rob Marshall for Chicago, but Memoir...\n A surprisingly good movie! It has quite a few ...\n Besides the comments on the technical merits o...\n Look, there's nothing spectacularly offensive ...\n In what would be his first screenplay, based o...\n The movie is steeped in religion, so it is imp...\n ...the last time I laughed this much. It's a t...\n This adaptation of M.R. James's short story 'A...\n <br /><br />An old man works as a janitor in a...\n I have to vote this 10 out of 10 in the rare c...\n Takashi Miike is one of my favorite directors ...\n Even before this film it is clear to see that ...\n What to say about this movie. Well it is about...\n I was looking forward to this based on the rev...\n James Dickey is a wonderfully descriptive auth...\n Sam Lion (Jean Paul Belmondo) discovers he nee...\n I usually like hongkong - martial arts - fanta...\n Lots of reviews on this page mention that this...\n Plot: Ed and Alice are engaged. They live toge...\n I first saw this movie on a local station on t...\n I remember seeing this 1978 comedy at one of t...\n I've watched this movie a number of times, and...\n I have no qualms with how the movie does NOT c...\n Channel surfing and caught this on LOGO. It wa...\n Thanks to some infamous home video distributor...\n Let's cut through everything in the first para...\n Quentin Crisp once stated that when things are...\n It's hard to believe that a movie this bad was...\n Many reviewers seem to prefer the original ver...\n THE SEVENTH SIGN has a great opening hook as t...\n The new celebrity deathmatch is terrible. They...\n This zippy and fun short from 1916 - the time ...\n Chucky is back but this time he is not scary (...\n The film listed here as having been made in 19...\n Jack-O (1995) was a really bad movie, we are t...\n The first and only time I saw the woman in bla...\n Terrific production and a good comedic perform...\n The figure of empress Elizabeth of Austria (18...\n Deliverance is John Boorman's 1972 horror/thri...\n Quite one of the worst films I have ever seen....\n What's inexplicable? Firstly, the hatred towar...\n I really loved seeing this movie. I think it's...\n After watching Awake,I led to a conclusion:dir...\n I recommend Idiocracy to everyone. Luke Wilson...\n Found a copy in a bargain bin sale of this old...\n This is a wonderful comedy short--one of Keato...\n I am partly a fan of Miyazaki's work. I say \"p...\n So the WWE has done it. They have poured over ...\n Billy Chung Siu Hung's (the bloody swordplay f...\n *MILD SPOILERS*<br /><br />In this would-be sa...\n I saw this movie years about 8 years ago when ...\n Why such a generic title? Santa Claus??? So bl...\n Talk about a blast opening, \"Trampa Infernal\" ...\n I am surprised that so many comments about thi...\n I'm a massive fan of prison dramas which is re...\n Rowan Atkinson's creation Mr.Bean has stood th...\n While I loved this movie, the trailers that ci...\n I cannot say enough bad things about this trai...\n Well, I'm a few days late but what the hell......\n Brilliant over-acting by Lesley Ann Warren. Be...\n Dexter (Kurt Russell) returns from The Compute...\n Eddie Murphy really made me laugh my ass off o...\n Alfred Hitchcock has made many brilliant thril...\n I am completely baffled as to why this film is...\n In Thailand, the Americans Connor (Colin Eggle...\n These guys are anything but the Usual Suspects...\n I loved this movie 10 years ago when I was abo...\n I give it a 2 - I reserve a 1 rating for Guy R...\n Yes,the movie is not a piece of art but the fi...\n Indeed: drug use, warehouse shoot-'em-ups, 'Ma...\n My girlfriend and I are really into cheesy hor...\n SPOILER ALERT!!!! This was my son's review of ...\n I don't know...Maybe it's just because it's an...\n The first thing you see in this film is a stat...\n Well, I remember when the studio sacked Schrad...\n I was happy to find out that at least now this...\n A touching story told with tenderness: awkward...\n It was a saturday night and a movie called BAS...\n This movie was awful, plain and simple. It wil...\n The story line has been rehashed a number of t...\n This movie was awful and an insult to the view...\n Would it surprise you that my ears and eyes al...\n I didn't expect Val Kilmer to make a convincin...\n I found it charming! Nobody else but Kiarostam...\n This is one of the most god-awful movies ever....\n A true classic. Beautifully filmed and acted. ...\n This woman who works as an intern for a photog...\n SWING! is an important film because it's one o...\n This movie is not just bad, not just corny, it...\n POSSIBLE SPOILERS<br /><br />The Spy Who Shagg...\n I've seen all kinds of \"Hamlet\"s. <br /><br />...\n Cameron Diaz, James Marsden, Frank Langella: t...\n This movie is not as good as all think. the ac...\n A hugely enjoyable screen version of Rona Jaff...\n I'm a big fan of Troma but I can't figure out ...\n Many reviews I've read reveals that most peopl...\n When I heard there was to be an ABC [Australia...\n > This show is the single greatest thing to co...\n If you're a science fiction fan, and you've on...\n This movie was physically painful to sit throu...\n Some of the best movies that are categorized a...\n I first saw Martin's Day when I was just 10 ye...\n \"Tipping The Velvet\" is one of the modern day ...\n This film was original in an unoriginal way. A...\n Love Jones is one of the best movies I've expe...\n Well then, what is it?! I found Nicholson's ch...\n This was the most visually stunning, moving, a...\n The remake of H.B. Halicki's classic seventies...\n Emilio Miraglia's first Giallo feature, The Ni...\n Might contain possible spoilers (Not that anyt...\n After the unexpected accident that killed an i...\n This should be re-named \"Everybody Loves Sebas...\n Some ugly weirdo who had three families, cheat...\n This is a pretty lousy picture.It offers nothi...\n This is one of the worst movies I saw! I dunno...\n This is one of my all time favourite movies, i...\n Is it a poorly acted, cliche-ridden pile of tr...\n All good movies \"inspire\" some direct to video...\n Secret Service agent Jay Killion (Charles Bron...\n I have to say when it comes to Book to Movie A...\n I only rented this stinker because of its rela...\n There are plenty of reviews that describe this...\n 'Book II' isn't a film, it's a sermon. This na...\n Released in 1965, but clearly shot years earli...\n I gotta be straight-up - I haven't seen a film...\n Charles Bronson is back in his most famous rol...\n This movie could have been great(cause its got...\n I personally have a soft spot for horror films...\n The DVD was a joke, the audio for the first fe...\n Really enjoyed Manna From Heaven. If you liked...\n Connie Hoffman is very pretty and is attractiv...\n The story and the characters were some of the ...\n that's incredible! Fidani (who he was also a s...\n I just got through watching this DVD at home. ...\n Blademaster is definitely a memorable entry in...\n In Hong Kong, 1962, the editor Chow Mo-wan (To...\n Rebar is an astronaut who goes on the world's ...\n Terrible movie. Just terrible. The start of th...\n I should put out an alert all over saying that...\n This version of Bleak House is the best adapta...\n I watched this movie probably more than 20 tim...\n I think this movie is well done and realistic....\n Wow, Kiss the Bride wasn't that bad, but it wa...\n How many monster tree movies can you see in a ...\n First off I'd like to say that if I had to hon...\n This 1934 adaptation of Somerset Maugham's nov...\n I just love this movie and I have my TV progra...\n George P. Cosmatos' \"Rambo: First Blood Part I...\n The first movie is pretty good. This one is pr...\n Pierce Brosnan will probably be the only thing...\n We loved School of Rock and Jack Black. We cou...\n I think this is the worst movie I have seen si...\n Simon Pegg stars as Sidney Young, a stereotypi...\n For anyone who has seen and fallen in love wit...\n I think that a lot of friends of people who ac...\n Orson Welles' \"The Lady From Shanghai\" does no...\n 1956 was the 20th Congress of the Communist Pa...\n What a dreadful movie. The effects were poor, ...\n This was a disappointing film. The people seem...\n \"San Francisco, Oh you marvelously desolated t...\n My comments on this movie have been deleted tw...\n Awesome Movie! Great combination of talents! I...\n If you are in search of a masochistic thrill, ...\n The chaser's war on everything is a weekly sho...\n This movie is so bad, they wouldn't buy it bac...\n According to IMDb Takashi Miike's Master of Ho...\n This is what James Cagney is all about, wisecr...\n The film disappointed me for many reasons: fir...\n During the early 1980's, Kurt Thomas was somet...\n A whole lot of the people that have seen this ...\n I kind of like JAG. It do have it´s charm but ...\n I just want to say that I was thrilled to find...\n Sheesh! What a dreadful movie. Dodgy camera wo...\n If you are among the IMDB audience that put Hi...\n Having read some good reviews about this film ...\n This is a classic British comedy-thriller I ha...\n Masterpiece. Carrot Top blows the screen away....\n ...if only Disney had stayed away from it. See...\n Her Deadly Rival (1995): Starring Harry Hamlin...\n I rented this movie today... worst movie EVER....\n I really wanted to like this movie a lot more ...\n \"Moonstruck\" is a lovely little film directed ...\n This was one of the lamest movies we watched i...\n I was born in '68 with not much parental guida...\n My commentary has nothing to do with the polit...\n The Claude Lelouch's movie is a pretty good mo...\n It is not as great a film as many people belie...\n This movie is based on a play, and is the seco...\n How much could the general Hollywood director ...\n The first time I had the window of opportunity...\n Freddy's Dead: The Final Nightmare starts as d...\n Solid comedy entertainment, with musical inter...\n This film attempts to cash in on the success o...\n I normally like Casper in his movies, a real c...\n Well, my Dad drove Lee Evans back and forth th...\n Uggh! I really wasn't that impressed by this f...\n The book is great. It's one of my favorite boo...\n I fell in love with this silent action drama. ...\n I watched the first few moments on TCM a few y...\n As you might not know Eça de Queiroz is one of...\n With various Bogdanoviches and Gazzaras scatte...\n When I was younger I really enjoyed watching b...\n Having the opportunity to watch some of the fi...\n I have never panned a film on-line, but I felt...\n While driving in a dangerous zigzag manner on ...\n This is a film.., not porn.<br /><br />This is...\n I agree with the previous comment in naming th...\n Bridgette Bardot, looking as sexy as ever, pla...\n This show comes up with interesting locations ...\n Although the acting was excellent, I spent the...\n Went to the premiere at the Tribeca Film Festi...\n Peter M. Cohen has a winner satire on the mati...\n What do you call a horror story without horror...\n A number of Richard Attenborough's films as di...\n I have to say, from the beginning, when i watc...\n Brilliant acting, excellent plot, wonderful sp...\n He's stocky, sweaty, slightly cross-eyed and r...\n -Facts (I): \"Mar Adentro\" relates the well-kno...\n The freedom of having your own Sea Going Power...\n This has to be the worst movie i've seen this ...\n Pushing Daisies truly is a landmark in Televis...\n EXCUSE ME!!! HellOOOOOOOOOO!!!!!!!!!!! CUBA GO...\n This isn't among Jimmy Stewart's best films--I...\n The Priest, into profound love and suffering s...\n A doctor and a policeman in New Orleans have o...\n I was very disappointed by this movie. Ms Engl...\n ...but you can see it from here.<br /><br />I ...\n This was the worst movie I have ever seen and ...\n This only gets bashed because it stars David H...\n If you are looking for the feel-good hit of th...\n The bevy of box office big league stars is phe...\n THE RIDDLE was written and directed by Brendan...\n FULL OF SPOILERS.<br /><br />This is a pretty ...\n Hollywood is one of the best and the beautiful...\n The Unborn tells the tale of a married couple ...\n Having seen both \"Fear of a Black Hat\" and \"Th...\n And I gave it a high 7.....<br /><br />Why? Be...\n i wish i could find some good things to say ab...\n I love this movie. It is one of those movies t...\n Fred Olen Ray is a lousy director, even as far...\n \"The Dream Child\" of 1989 is the fifth film in...\n The film begins in Latvia just after WWI. Bein...\n Whoever likened this one to RAIDERS OF THE LOS...\n So many of these types of movies out these day...\n Superb comic farce from Paul Mazursky, Richard...\n I can't believe the high marks people have giv...\n Director and auteur Jean-Pierre Rappenau was 8...\n I have a strong feeling that what you think of...\n I had to shut this off after about 15 execrabl...\n I'm starting to wonder if all these PG-13 horr...\n The early to mid 90s were a high point, in my ...\n The Beauty. The Terror. The Poetry. The Horror...\n The shame of it! There I was, comfortable in t...\n This is the worst movie I have ever seen, and ...\n This isn't a dreadful film, merely insipid. Th...\n This film has been receiving a lot of play lat...\n This was a strong Poirot/Suchet, television my...\n This show is my absolute favorite. This show i...\n Man On Fire tells a story of an ex-special for...\n I saw this film at the Edinburgh Film Festival...\n This movie is a perfect portrayal of The Nutcr...\n Hands down the worst movie I have ever seen. I...\n Noll's comfortable way of rolling out blunt co...\n Dave (Devon Sawa) and his friends Sam (Jason S...\n \"The Lady in Question (1999)\" starring Gene Wi...\n I always found Betsy Drake rather creepy, and ...\n I don't know who to blame, the timid writers o...\n I think this movie had really bad production v...\n Being a huge die-hard Monkey Island fan, I fug...\n Shinjuku Triad Society, albeit from perfect, i...\n Absolutely one of the best aviation movies of ...\n Luchino Visconti was and is one of the most in...\n If you are one of the people who finds \"Accord...\n This may not be regarded as a review on any fi...\n Someone told me that Pink Flamingos was, in a ...\n A real sudsy soap opera here as Spencer Tracy ...\n As an American fan of The League of Gentlemen ...\n My qualifications for this review? I own all t...\n This is a classic war movie. One of the best, ...\n I've just purchased the restored version of a ...\n Cheezy? Yep. Poorly filmed? You betcha. Zero b...\n Brando plays the ace jet pilot, just back from...\n Back in the day, I was one of the RN's in the ...\n What I miss most of all in this film is that i...\n I will stat of with the plot Alice, having sur...\n An annoying group of ex-students from 'Monte A...\n I found the first 90 minutes of this film to b...\n When all we have anymore is pretty much realit...\n I saw this movie as part of a Billy Graham pro...\n Usually I do not like movies with/about aliens...\n See No Evil With Kane. The Movie Has a great s...\n Made in 1931, this foreign film should be seen...\n Not to be confused with Michael Ritchie's nast...\n Hee hee hee. This movie is so bad that it does...\n I am surprised than many viewers hold more res...\n The 60s (1999) D: Mark Piznarski. Josh Hamilto...\n This is an engrossing woman's drama that men c...\n This could have been interesting  a Japan-set...\n Awww, I love this! The Tale of the Cat and the...\n Not sure why it doesn't play in Peoria, appare...\n This \"space snippet\" was kind of dumb. I guess...\n This delectable fusion of New Age babble and l...\n Had I known to what I was submitting myself, I...\n This film was actually shot and made in 1987 b...\n Detective Russell Logan(Lou Diamond Phillips)h...\n I remember first watching Sabrina when it came...\n Well, i could nt get into the plot, but thats ...\n Was it foreshadowing when Tori complained that...\n Oh a vaguely once famous actress in a film whe...\n H.G. Wells is spinning. No doubt about it.<br ...\n Can I Do it 'till I Need Glasses? at the very ...\n USA The Movie is like this: You take a nap on ...\n This is the best television series for childre...\n This movie is goofy as hell! I think it was wr...\n Pet Sematary is a very good horror film and be...\n I watched this movie recently together with my...\n Purple Rain is a great film if you are a 40-so...\n Spoiler This is a great film about a conure. H...\n First off, I am a huge fan of Tolkien, and as ...\n I am a huge Stooges fan but the one and only r...\n Milos Forman's original HAIR was the perfect m...\n It's a gentle, easy-going 1950s comedy. Kim No...\n What can I say ? An action and allegorical tal...\n There is no way on earth you are going to care...\n This is just a long advertisement for the movi...\n Well, this was one of those films I caught on ...\n First of all, yes, animals have emotions. If y...\n Life's going not to badly for Harry Mitchell, ...\n The first time I saw this film I was a kid. I ...\n Having no knowledge of this film prior to seei...\n Actually I liked this movie very, very much. N...\n I am an avid movie watcher and I enjoy a wide ...\n You MUST be kidding!!!! Let's entertain the po...\n In one word... abysmal. I give it one star for...\n Well, the Hero and the Terror is slightly belo...\n George Cukor is and always will be one of my f...\n I always enjoy this movie when it shows up on ...\n Another in the long line of Conan wannabes tha...\n Leslie Charteris' series of novels of the adve...\n I used this film in a religion class I was tea...\n Okay so i found out about this movie and I wat...\n Movie \"comedies\" nowadays are generally 100 mi...\n Lloyd Bridges as Mike Nelson and his boat were...\n This Cecil B. DeMille epic of the old West con...\n Detective Burt Williams has been on the trail ...\n Big hair, big boobs, bad music and a giant saf...\n Reading the other two comments, I had to wonde...\n I was about 12 years old when I saw this class...\n What I've seen of Wolfgang Petersen's films ha...\n This has to be the best adaptation I have seen...\n I have never seen the first Killjoy film, and ...\n Brilliant adaptation of the novel that made fa...\n Zatoichi The Outlaw was the first film made by...\n This was not a very good movie, the acting pre...\n 'Loulou' delights in the same way an expensive...\n Diane and I saw this fabulous film today in Fr...\n I didn't want to write this movie off on the r...\n My boss at the time and showed it to us at a H...\n May Contain Spoilers.<br /><br />An innocent t...\n Three zany couples, all SIX OF A KIND, become ...\n I loved this show growing up and I still watch...\n This is a hard movie to come by in the US, but...\n I usually really enjoy Steven Seagal movies. T...\n Dirty Harry goes to Atlanta is what Burt calle...\n John Huston made many remarkable and memorable...\n I admit I've only seen about three of Shakespe...\n It's not often that a TV series grabs me right...\n First off let me say that this has to be on th...\n ] Haven't seen this film? Haven't even heard o...\n A truly scary film. Happening across curmudgeo...\n exquisite!! in simple words... both Aparna Sen...\n So lame it isn't even funny. A zombie infectio...\n What gives Anthony Minghella the right to ruin...\n The film was made in 1942 and with World War 1...\n This one is one of those classic B movie follo...\n While not for everyone, Crackerjack is a delig...\n This trashy B movie attempts to masquerade as ...\n I love the book, \"Jane Eyre\" and have seen man...\n We know that firefighters and rescue workers a...\n I had the misfortune to watch this rubbish on ...\n imagine if you took the Christ myth, mixed it ...\n See Dick work.<br /><br />See Jane work.<br />...\n 4 realz son my game iz mad tite yo I cant wait...\n Okay first of all, I didn't sit down to watch ...\n Even with it's low budget this movie could hav...\n But, lets face it... it got a few nostalgic si...\n \"Chinese Ghost Story\" is one of the most amazi...\n I am generally more willing to be open minded ...\n The whole shorthand for supposedly being more ...\n This is a small film , few characters ,theatri...\n This certainly is one of the best western movi...\n As other reviewers have noted, this is an unju...\n This movie is nothing like \"Office Space\" exce...\n Put the film down and back slowly away. The ac...\n a timeless classic, wonderfully acted with per...\n I saw this at my city's independent cinema - n...\n I couldn't have been more thrilled; Just eight...\n This is not a movie. This is a collection of r...\n This film easily rivals the emotional strength...\n Savaged when it came out, this film now looks ...\n When I found out there was a movie that had bo...\n loved the story of a guy that tries to get his...\n THE DEVIL'S PLAYTHING is my second attempt at ...\n I have never felt the need to add a review to ...\n This is probably the best documentary I have s...\n -love is hard to find in this fast food societ...\n Another silent love triangle film from Hitchco...\n I saw the second part of this beautiful period...\n There seems to have been some money behind thi...\n First of all, just let me say this... Ghost St...\n *** Spoilers*<br /><br />My dad had taped this...\n 'Dead Letter Office' is a low-budget film abou...\n What a thrill ride! Twisted and thought provok...\n 'Felony' is a B-movie. No doubt about it.<br /...\n Just like wine, \"Johnny Dangerously\" gets bett...\n You would have thought, given how much this ov...\n For a TV movie this was definately worth seein...\n I thought that this movies was a letdown I exp...\n Really, when it comes down to it, this movie i...\n I was really looking forward to watching this,...\n I'd heard this Japanese flick is edgy, creativ...\n It's been a long time since I last saw a movie...\n I bought this movie and after I watched it I d...\n I would watch this movie every time it was on ...\n Ashanti is a very 70s sort of film (1979, to b...\n After \"Central City\" loses its mob boss to mur...\n I just watched this film, and I have to say it...\n Junior and his dad start a new life in a new t...\n My brother is an avid DVD collector. He took o...\n Another gray, horrible bit of schlockiness fro...\n This Is one of my favourite westerns. What a c...\n I wandered into this movie after watching the ...\n River's Edge is more than just the story of a ...\n In all the episodes, I never saw any real acti...\n Caught this movie on DD while flipping channel...\n \"Fame\" had been one of my favorite movies for ...\n I want to warn you that there is a very bitter...\n Rather than move linearly from beginning to en...\n Canadians are too polite to boo but the audien...\n This series, produced at probably the most pro...\n Before writing this review, I went back and re...\n Screened at the San Francisco International Fi...\n Nana Patekar once again proves that he is the ...\n I tried twice to get through this film, succee...\n Just exactly HOW director John Madden come to ...\n Renee Zellweger is radiant, but the rest of th...\n I felt sorry enough that this film is not popu...\n Picked up the movie at the flea market for 4 b...\n With a Bo Derek movie, the audience get just w...\n Storyline: The film spanning 4-odd hours cover...\n I think this movie more than any other shows w...\n I remember this movie from the 50s when I was ...\n I'm not sure why this little film has been ban...\n Rounding out the 1929-30 all-talkie \"Our Gang\"...\n As a documentary, this is laughable in a campy...\n I generally find Loretta Young hard to take, t...\n TV version of \"Twister\" springs a few leaks bu...\n I agree with \"johnlewis\", who said that there ...\n I liked this show! I think it was nothing with...\n I suppose JEDI is now chronologically to be co...\n Director Warren Beatty's intention to turn Che...\n One of my favorite \"bum\" actors, C. Tom Howell...\n Beauty in Trouble (Kráska v nesnázích) is not ...\n Whoo-boy, that was definitely one of the worst...\n I had watched this film from Ralph Bakshi (Wiz...\n Definitely spoilers in this review! I **adore*...\n A gritty presentation of the decay of family v...\n Errol Flynn's roguish charm really shines thro...\n Much said without words.<br /><br />This is an...\n The movie opens with a scene that simply could...\n I am a big Beatles fan. My favorite Beatle is ...\n Anne Bancroft plays Estelle, a dying Jewish mo...\n Soulless milking of cash cow franchise. Generi...\n The Melancholy of Haruhi Suzumiya is an anime ...\n I just don't know how this stupid, crap, junk,...\n The only remarkable fact is the participation ...\n I've been reading posts here concerning Wonder...\n My wife and I saw this in the theater when it ...\n The four signs on the road say \"If You're Look...\n It's been over 30 years now but I still rememb...\n Before I begin, a \"little\" correction: IMDb st...\n Found an old VHS version of this film in my pa...\n Tom Hanks returns as Dan Brown's symbologist R...\n Overall, I enjoyed the movie Scarlett. I am a ...\n This movie was so bad that my i.q. went down a...\n When i went to the video rental shop to get a ...\n good movie, good music, good background and an...\n Ivan (Valeri Nikolayev) is a bitter, cynical j...\n I was forced to watch 'Changi' last year in ye...\n The TV productions at the 2000's start were be...\n I absolutely adore this movie! I had never hea...\n Seriously. If this had been the first Shack mo...\n Although the story is good and portrayals what...\n This is another North East Florida production,...\n This extraordinary pseudo-documentary, made in...\n When THE PUFFY CHAIR beckons, beware of its so...\n Worth the admission price for the Rock-off alo...\n Spike Milligan was one of the funniest men I'v...\n A comedy that spoofs the inspirational sports ...\n Watching \"Baghban\" is the movie equivalent of ...\n Excruciatingly slow-paced, over-scripted black...\n It's interesting to watch how late 1950's soci...\n I seriously love this film so much, I never ge...\n This looks decidedly like \"the amateur\" hour. ...\n I rented \"The China Syndrome\" recently mainly ...\n This is an all-around superb film. A moving ex...\n At the time of this writing (January 25, 2006)...\n This is an excellent show! I had a US history ...\n Marie: You are smooth. Dan: No, I'm not smooth...\n OK, ill be brief. This film wasn't just bad it...\n ...I normally hate puns, but this seems the on...\n This is more than just an adaptation of Bond: ...\n Spunky journalist Holly Hunter produces invest...\n This was indeed an amazing adaption. I missed ...\n Colombian terrorists hold hostage a military s...\n The revisionist history -- making the evil Mar...\n Well this movie is amazingly awful. I felt sor...\n Although THE FLOCK has some pretty good acting...\n \"Cavemen\" exceeded my expectations, and not in...\n This version of David Copperfield is dreadful ...\n first watched this film years ago with my daug...\n It is impossible to avoid comparing Zhang Yimo...\n \"The Gay Desperado\" is wonderful throughout. T...\n I really wanted to like this movie, but I just...\n I must have seen a different version than the ...\n Please make me forget. Please. Please. This is...\n If I assume that you know what this film is ab...\n This movie is finally out on DVD in Italy (com...\n Sorry my fellow Nevada City neighbors, but thi...\n This is only somewhat attractive for fans of \"...\n SPOILER!!!! Mind Ripper hmmmm.... I had just w...\n OK, it was a good American Pie. Erick Stifler ...\n This movie begins with a man who appears to be...\n For those who like depressing films with sleaz...\n Lupin sets off for Morocco, looking for a lege...\n I love these awful 80's summer camp movies. Th...\n I must confess that I've been a huge fan of th...\n There is a lot to like here. The actors are fi...\n Liv Tayler in her sexiest movie! <br /><br />S...\n I gave this film an 10/10 with some reluctance...\n After watching Revolt Of The Zombies starring ...\n Yesterday I watched this tv production, and I ...\n 'The Shining' has wit, visual flair and an ico...\n I first saw this film in 1980 in the midday mo...\n First saw this movie in about 1990, and absolu...\n \"Meatball Machine\" has got to be one of the mo...\n When this movie came out, I had seen Geena Dav...\n Misty Ayers had a smoking body, and that's all...\n From beginning to end, this is the most emotio...\n I'm not particularly fond of remakes, or to st...\n Was this supposed to be funny? This is one of ...\n This is one of those films that I could only s...\n I read Rice's novel with interest, and became ...\n This movie was horrible.<br /><br />They didn'...\n Hoo boy, this was a real trial to get through....\n After watching this film, I thought to myself,...\n this film is so unbelievably awful! everything...\n George Zucco was a fine actor, often playing g...\n This movie examines the now infamous Wannsee C...\n My two daughters (ages 11 and 13) and I were l...\n Continuing his comeback, John Travolta played ...\n Although the word megalmania is used a lot to ...\n Nightbreed blew my mind the first time I saw i...\n It's refreshing to see a movie that you think ...\n I think that the movie was really good. Subjec...\n BEFORE THE DEVIL KNOWS YOU'RE DEAD starts off ...\n A mediocre Sci-Fi Channel original picture. A ...\n Interesting topic. Pathetic delivery - script ...\n \"The Quickie\" tells of a decadent Russian mob ...\n Alone in The Dark is one of my favorite role-p...\n Admittedly, Parsifal is not an opera that can ...\n \"Nothin'. There ain't nothing' in Room 237. Bu...\n This is by far the worst adaptation of Jane Ey...\n Why do I watch movies like this ? - other than...\n I liked nearly all the movies in the Dirty Har...\n It's clear that for this film they wanted to h...\n A ragtag collection of Western tourists in Afr...\n I had recently been watching Johnny Test in an...\n When this initially aired in 1984, my wife and...\n I am sitting here watching the film, Tango and...\n I tend to be inclined towards movies about peo...\n Pulling in 2.6 million viewers, one has to won...\n This was really a pleasure to see; the dialogu...\n I actually intended to see this movie in the t...\n OK. Who ever invented this film hates humanity...\n I don't know what it is exactly, but the film ...\n On October of 1945, the American German descen...\n If the themes of The Girl From Missouri sound ...\n My original review of this film was simply the...\n I generally love SRK as a villain (how can you...\n Not even Goebbels could have pulled off a prop...\n This was a shockingly bad movie and I literall...\n If you don't have anything better to do, then ...\n HANDS OF THE RIPPER <br /><br />Aspect ratio: ...\n It has past almost 25 years since I saw this m...\n I have seen this movie three times. Going back...\n Jewel Thief is a rare breed of film - complete...\n This completely forgotten slasher flick is one...\n I read somewhere that when Kay Francis refused...\n A very interesting addition to the Scandavian ...\n Perhaps not Miyazaki's best work, but I couldn...\n A very cute movie with a great background prov...\n I knew my summary would get you. How is this m...\n This is by far THE WORST movie i have ever wat...\n This movie had such a good premise to start wi...\n Obvious attack on Microsoft made by people who...\n Bad. Bad. Bad. Those three lines sum up this c...\n I really really liked this one. I know, it's r...\n Having the In-Laws over for the weekend? Then ...\n This was a delightful presentation. Hemo (bloo...\n *Warning - no plot spoilers ahead, but movie s...\n Mark Blankfield (from the old late night TV sh...\n Yeah, there's a \"sleeper\" watching Sleeper Cel...\n I can honestly say I never expected this movie...\n Larisa Shepitko's THE ASCENT (1976) is an extr...\n If you watch this movie you'll be quoting it a...\n This is one odd film. It seems to be aimed at ...\n \"Uzumaki\" takes place in a small Japanese rura...\n \"Icky Flix\" is an excellent starting point for...\n With its rerelease by ADV Films, I've had a ch...\n I am definitely in the minority opinion on thi...\n This movie maybe really bad, but it is alot of...\n As a modern Marco Polo, from Venice to China, ...\n When I went to the video rental store, back in...\n \"Slaughter High\" is a totally ridiculous slash...\n I didn't see such a movie where the creators p...\n one of the worst excuses for an irish accents ...\n Not exactly my genre, this straight-to-DVD str...\n It is inconceivable to me how ANYONE could hav...\n How can they from Joe Don Baker (as Bufford Pu...\n This may actually be the worst movie that I ha...\n If you hit your head with a shovel, write the ...\n I've read through a lot of the comments here a...\n I saw a screening of this movie last night. I ...\n This is a film that has garnered any interest ...\n The movie had so much potential, but due to 70...\n This is not especially well written. The songs...\n The kids I took to this movie loved it (four c...\n Hollywood has turned the Mafia in to a product...\n Ah, the spirit of '68. The streets of Paris we...\n Stay away from this movie! It is terrible in e...\n Before seeing the sneak preview today of Angel...\n Relish every moment of this languorous spectac...\n The story idea behind THE LOST MISSILE isn't b...\n I totally disagree with the comments of one of...\n Jamie Foxx is fun but this movie has been done...\n I rented the video of \"The Piano Teacher\" know...\n You can take the crook out of the joint, but i...\n Amazing movie that, in theory, should be borin...\n These writers are trying to re-create the char...\n I watched this in July and even with the Chris...\n When I first saw this on tape, about 10 years ...\n It holds very true to the original manga of th...\n I see a lot of folks on this site wishing AG w...\n \"Night of the Hunted\" stars French porn star B...\n How this film gains a 6.7 rating is beyond bel...\n This film was slated to be a blockbuster film,...\n Extremely slow movie.There are fine performanc...\n This movie is basically a documentary of the c...\n This movie is not a comedy. It is not even fun...\n Horrible waste of talent. Not even worth watch...\n \"Hundstage\" is seidl's first fiction film (bef...\n Okay, you have:<br /><br />Penelope Keith as M...\n The only other review of this movie as of this...\n Its the best movie I have seen in 2000, it has...\n I see where a few people involved in this deba...\n This is a great TV miniseries of a classic nov...\n This is by far one of the best films that Indi...\n I did not know what to expect when I decided t...\n This well-meant film falls just a bit short, a...\n Alright, so I've been dying to see this movie....\n When you think of golf movies, you think of Ca...\n This is one of my favorite films of all time. ...\n It says that a girl named Susan Montford both ...\n I dug out from my garage some old musicals and...\n The storyline of this movie is cliché and obvi...\n Documentaries in which sons and daughters seek...\n This movie includes 2 well known actors I have...\n this seemed an odd combination of Withnail and...\n Spoiler for anyone who is lucky enough to ever...\n Kramer vs. Kramer is the story of a marital br...\n One of Scorsese's worst. An average thriller; ...\n Shtrafbat - Penal Battalion is a moving, and m...\n This is a superbly imaginative low budget Sci-...\n \"Home Room\" came as a total surprise. Not havi...\n This film is truly pathetic in every conceivab...\n \"A Christmas Story\" is one of many people's al...\n TEP is like a long cool drink of water after c...\n I find this film meretricious, tentative, leth...\n I just have watched Icon on DVD and despite be...\n We chose to see this movie as an alternative t...\n I try to be very objective when I view a low b...\n I am extremely picky about the films I see. I'...\n This one features an interesting way of handli...\n Carla works for a property developer's where s...\n Being a long-time Steve Martin fan, it hurt to...\n \"The Patriot\" staring Steven Segal is a late 9...\n Hotel Du Nord is a gripping drama of guilt in ...\n I have no idea how anyone managed to stay awak...\n Nay Sayers of this film are likely bitter from...\n My brother was working at a movie theater when...\n If you go to this movie expecting something it...\n I have never seen so much talent and money use...\n When I first saw this film on cable, it instan...\n I think this movie got a low rating because it...\n Was the cast and crew on drugs before they sta...\n WINCHESTER 73 is the story of a man (Jimmy Ste...\n My parents may enjoy this show, but I fail to ...\n I just saw this stinky old boiler on TV. Best ...\n Starting where the last AVP left off, an Alien...\n As others that have commented around the web.....\n This was on TV last night. I painfully forced ...\n I have never really been interested in canniba...\n Of course I am going to think it was a great m...\n Didn't have much aspiration for this film, but...\n Before Last Call w/ Carson Daly, my local NBC ...\n WWE was in need of a saviour as Wrestlemania 1...\n Well, this might be one of the funniest movies...\n I have to admit right off the top, I'm not a b...\n it's amazing that so many people that i know h...\n I wasn't aware of Steve McQueen in 1958. I onl...\n I'm sorry, but they did leave the impression t...\n I have enjoyed both of the Van Dykes over the ...\n This concert is the type of concert that only ...\n I liked it! The plot was weird, Drew Barrymore...\n There's a unique place in the pantheon of John...\n I've been trying to write a plot summary for s...\n I watched SHORE LEAVE the other day. I've seen...\n Abderrahmane Sissako may have known what he wa...\n I tried watching this movie, but I didn't make...\n \"Hoppity Goes to Town\" was the second and last...\n midnight madness is the ultimate scavenger hun...\n This is a superb TV series, it's sympathetic a...\n Though the plot elements to \"The Eighth Day\" s...\n I watched two very different Holmes adventures...\n Tempo Di Uccidere (Time To Kill) by Guiliano M...\n Ugh! Where to begin ... first, Campbell Scott'...\n What is it now-a-days that minority comedians ...\n I felt like I was watching the Fast and the Fu...\n I found it hard to care about these characters...\n I felt that the film was rushed, and the actin...\n Notice I have given this 1 star if the option ...\n As others have mentioned, all the women that g...\n Raising Victor Vargas: A Review<br /><br />You...\n After leaving TV's popular \"The Andy Griffith ...\n Spoiler warning!!!<br /><br />This is probably...\n I give this film it's props that it is very we...\n I got this movie out a week after the death of...\n Skip this Hollywood version, a real piece of g...\n I can't believe this is on DVD. Even less it w...\n Unreal \"movie\", what were these people on?? A ...\n There's something strange about the antisocial...\n My wife and I met doing a professional product...\n Buffs of the adult western that flourished in ...\n Wow what a great premise for a film : Set it a...\n Something does not work in this movie. There a...\n While listening to an audio book, Cambpell Sco...\n When I first heard about \"Greek,\" I figured I ...\n Saw this at Sundance one of the first years I ...\n This movie was just down right bad. I love war...\n This movie was a waste of 3 hours of my precio...\n The first von Trier movie i've ever seen was b...\n Of course, \"Flatley\" is already not exactly th...\n This is definitely one of Jet's best efforts. ...\n If you've ever wondered why they don't make po...\n This movie wasn't awful but it wasn't very goo...\n Pixote is directed with barely a shred of sent...\n I'm not sure how I can make ten lines out of t...\n \"I didn't want this to get complicated, Leese....\n When it comes to movies I can be pretty picky,...\n This is one of those movies that apparently wa...\n My impression, having seen this documentary, i...\n I watched this movie for the first time around...\n I can't think of much to say about this film. ...\n I read the book in a summer book club, and all...\n I was surprised as I watched this movie, how m...\n This is a story about a journey made by a man ...\n The actresses are cute and the sets, while sim...\n It was only on my second viewing, years later,...\n Having read the comments on the site I feel co...\n MAY CONTAIN SPOILERS For about the last four y...\n Kate Gulden, played by one of the most nominat...\n This is one of those made-for-TV B movies that...\n Even Sophie Marceau's presence and the few (ve...\n I loved this movie!<br /><br />Movies and play...\n \"Distant\" is a slice-of-Turkish-life flick whi...\n The Intruder (L'Intrus), a film directed by Fr...\n This one is considered a key Pre-Code film  f...\n In Tweety's S.O.S, Sylvester goes from picking...\n Salvage is the worst so called horror film I'v...\n A group of teens decide to take their slumber ...\n Yes, why? Among the filmmakers that came out i...\n On Humphrey Bogart's first trip to Hollywood, ...\n A reporter, Craig Milford, who works for The J...\n This movie was so bad! It was terrible! It was...\n There have been many excellent comments about ...\n I watched this years ago on television when I ...\n I thought that Zombie Flesh Eaters 2 was quite...\n What can i say about the first film ever?<br /...\n This is a film that was very well done. I had ...\n I first saw this movie as a teenager when it c...\n Now this is one of Big's Best, Jack Hulbert's ...\n Perhaps being a former Moscovite myself and ha...\n I had the misfortune to sit through the full 1...\n Once again, Bugs Bunny sacred home is violated...\n Pokemon 3 is little more than three or four ep...\n I can pretend no knowledge of cinematography o...\n 20 years ago Dr Chopper(yes, he is driving a c...\n Wow! The sort of movie you could watch ten tim...\n I saw the trailer for this film before watchin...\n There have been numerous productions that tell...\n Steven Spielberg (at 24) had already directed ...\n Some TV programs continue into embarrassment (...\n Brainy, cross-dressing little boy finds succes...\n Jackie Chan's classic directorial feature POLI...\n The story is about the life of common people f...\n In the European TV industry, movies like this ...\n This movie had very little good points, the sp...\n Sweet romantic drama/comedy about Stewart and ...\n All of those who voted less than 5 are obvious...\n Now, I won't deny that when I purchased this o...\n Extraordinary Rendition is a frightening pract...\n The Man with the Golden Arm, Otto Preminger's ...\n A man and his wife get in a horrible car accid...\n Nahhh! Leila (Grace Mills) is a teenager turne...\n This wasn't the major disaster that I was expe...\n Don Wilson stars as Jack Cutter (Ooh real toug...\n Okul is the first of its kind in Turkish cinem...\n I recently waisted 8  by going and see this m...\n I have watched this movie well over 100-200 ti...\n A resurrected wrapped monster goes on a murder...\n I usually like movies about animals or reptile...\n One of my favorites non-MGM musicals, it's a c...\n If you're a fan of Gothic horror, then you're ...\n I just saw it at the Toronto International Fil...\n You looking for a comic drama with suspense an...\n This Chinese movie made me feel so many simila...\n Oh my GOD this was so bad! The story was weak ...\n The pros of this film are the astonishing figh...\n Other than John Krasinski, this movie was abso...\n This late-ish effort from Freda plays as a mod...\n I watched it last night and again this morning...\n Boring, long, pretentious, repetitive, self-in...\n I have recently watched this film, and have de...\n My son was 7 years old when he saw this movie,...\n I found the movie very real just as much as Sa...\n \"L'appartement\" has to be among the best Frenc...\n Carlos Mencia continually, violently, hatefull...\n I went into this movie knowing nothing about i...\n Ooof! This one was a stinker. It does not fall...\n Crossfire is a fantastic film noir that is bot...\n White man + progress + industrialization = BAD...\n Sports movies have never been my thing, but a ...\n The film that gave us John Waters is one of th...\n Four young grade-school girls witness the murd...\n Call it manipulative drivel if you will, but I...\n This movie is visually stunning. Who cares if ...\n For me an unsatisfactory, unconvincing heist m...\n La Sanguisuga Conduce la Danza, or The Bloodsu...\n A repressed housewife (an annoying lisping Ang...\n THE STAR PACKER is one of about 152,000,000 we...\n I had never heard of this one before it turned...\n A nicely evoked 1930s setting provides much in...\n The 63 year reign of Queen Victoria is perhaps...\n There has been a lot of love that has been put...\n I watched this movie on TCM last night, all ex...\n *****Spoiler Ahead*****<br /><br />I suppose t...\n At initial thought, the concept of this show s...\n The only film I've ever walked out on. Amazing...\n Watch this movie .....only to truly appreciate...\n I tried to love this movie. I really did. Kevi...\n Jack Frost is Really a Cool Movie. I Mean....I...\n In the twilight years of his career, Charles B...\n I saw this movie with my girlfriend. It was a ...\n The British claymation series putting \"witty\" ...\n Caught this on IFC yesterday, and can't believ...\n Kingdom County, Vermont, 1927. Noel Lord (Rip ...\n This movie is very good. The screenplay is enc...\n WWII veterans return home and find it hard to ...\n Please, for the love of God, don't watch it. N...\n I watched this film because I'm a big fan of R...\n 30 years after the original film, \"Goodbye, Mr...\n I was told about this film from a friend who s...\n This is an embarrassing nth rehashing of the s...\n At 20 years old, Francis Ouimet (Shia Lebouf) ...\n and I still don't know where the hell this mov...\n A chilling and gory tale of a couple inheritin...\n This film should have been fun. A young Lea Th...\n A very weak movie, mainly because of a poor st...\n I vowed some time ago to never get another Joe...\n S l o w, l o n g, d u l l. . .<br /><br />Oh m...\n I wasn`t expecting much with HARLEM NIGHTS but...\n The problem with TV today is that people have ...\n This is one of the better comedies that has ev...\n I'll give it a two for Denis Leary. He had som...\n There aren't too many times when I see a film ...\n I bought this movie hoping that it would be an...\n Do you get it? Like the car. These are the jok...\n On the pure theatrical side, Last Stand was gr...\n A woman and her aunt go to Scotland to locate ...\n Gene Hackman gets himself busted out of prison...\n This show demonstrates the depths to which UK ...\n I watched this film on ITV and I enjoyed it a ...\n This was one of the worst movies I have ever s...\n Do yourself a favor and stay away from this fi...\n For every series that makes it to television, ...\n Finally got to see this movie last weekend. Wh...\n The dead spots and picture-postcard superficia...\n The only reason anyone remembers this steaming...\n A fascinating look at the relationship of a si...\n *****I reveal two 'twists' at the end of the f...\n When you go at an open air cinema under the Gr...\n The filmmakers try to paint the influence of t...\n As I watched this movie, and I began to see it...\n This movie is really bad. The hero can't play....\n ...and I Bought A Vampire Motorcycle staggers ...\n As their entire career was a pale impersonatio...\n Lil Bush is a 30 minute cartoon show comprised...\n Well acted, yes. Very well, I must say, even t...\n One word for it. Hilarious. I haven't watched ...\n Set in a post apocalyptic future, the new high...\n i've discovered that this film gets rented bas...\n Black and White film. Good photography. Believ...\n This movie starts off as a college T'n'A flick...\n I saw this movie thinking that it would be one...\n this film had a lot of potential - it's a grea...\n Wow, this is anti-Christian bias big-time! Thi...\n I had the (mis)fortune to see this film at a s...\n I work at a movie theater and every Thursday n...\n One Stinko of a movie featuring a shopworn plo...\n Why did I enjoy the show to the last episode? ...\n This centers on unironic notions of coming to ...\n ....is where I'm assuming this movie came from...\n A milestone in cinematic history, 'Bronenosets...\n This film does not have the outstanding visual...\n While I am not a woman, I can enjoy a chick fl...\n I had to get this movie, since it didn't come ...\n This piece of garbage belongs in the basement ...\n I rented this movie roughly 4-5 years ago and ...\n The Aristocats is really quite charming, and i...\n As if the world hadn't already got enough chea...\n Revisiting old films that you thought were ave...\n We also found this movie on the discount rack ...\n This movie is just horrible. It's boring, it's...\n it is of course very nice to see improvements ...\n One of the intriguing aspects of this historic...\n One of the most disgusting films I have ever s...\n Amateurism best describes the film adaptation ...\n As someone who was born to a German mother and...\n This is my favorite love story it has every el...\n Dani(Reese Witherspoon) has always been very c...\n Tom the cat, Jerry the mouse, and Spike the Do...\n Many of the reviewers have made it a point to ...\n I have been a fervent Hal Hartley supporter si...\n The strong points in the film were clear for t...\n The Brain That Wouldn't Die is one awful piece...\n I have seen my fair share of comedy and standu...\n I tried to watch this movie in a military camp...\n I will give it a second chance but was very di...\n Shallow, shallow script ...stilted acting ...t...\n Witty. Quirky. Genuine. Surreal. Butterfly win...\n I saw the premier of this movie during the 200...\n this is the perfect example of something great...\n Seriously, I've read some of the reviews on th...\n ba ba ba boring...... this is next to battlefi...\n Filmed by MGM on the same sets as the English ...\n I came to NEW PORT SOUTH expecting a surrogate...\n A suspenseful thriller that bears some resembl...\n I turned 13 when Elvis hit the big times in 19...\n Typically elaborately crafted HBO production w...\n This film is one of the best of 1986 with cree...\n The Night Listener held my attention, with Rob...\n I saw this movie and thought it was a sleeper....\n As we all know a romantic comedy is the genre ...\n The story is similar to ET: an extraterrestria...\n Two qualifiers right up front: I actually thin...\n This is one of those movies that's trying to b...\n This excruciatingly boring and unfunny movie m...\n This movie is rated a classic on sentiment not...\n This is truly truly one of the best movies abo...\n The big names in film tried to do their part f...\n Hard to categorize the film - perhaps it's an ...\n It seems that there is great potential for the...\n The problem this film has is the same problem ...\n I think that this movie is very neat. You eith...\n if filming is about vision and real life this ...\n I MAY have seen an episode or 2 when the show ...\n Ok, I like B movies...I know what B movies are...\n Are you a giraffe?... ask John to Nadia, and s...\n Let's face it.<br /><br />This movie is incred...\n I am a huge fan of warrior movies. Some of my ...\n (spoilers)Wow, this is a bad one. I did a doub...\n Going into this movie you know that this is mo...\n Atlantis was much better than I had anticipate...\n One of the best horror/suspense movies I have ...\n While the camerawork was certainly \"funky\" - p...\n Oh, I'm mostly not the kind of person to give ...\n Excellent Hitchcock thriller with Robert Cummi...\n When Philo Vance (Edmund Lowe) is standing pre...\n Most of the Atomic Age monster movies I saw on...\n I watched this movie at a party, we were very ...\n *BE WARNED OF POSSIBLE SPOILERS*<br /><br />A ...\n A fairly interesting look at some characters f...\n Oh-so-familiar comedy story about low-key nice...\n What was the aim here...I started to have a lo...\n Having read another review, I thought this mov...\n As I am not a blood and guts fan I found the g...\n To put it simply, I enjoyed this film. The rea...\n Forget about the plot of this movie. Forget ab...\n This is an unusual film because although it wa...\n For anyone who cares to know something about t...\n I swear if I did ever tried cocaine I'd be abl...\n Tony Scott has never been a very good director...\n This is one of those movies that you wish you ...\n Hard Justice is an excellent action movie! The...\n Not that many films have truly exploited the f...\n I enjoyed this film, which offers a variety of...\n The very few reviews I could find online of Ba...\n In my opinion of this movie the entire video p...\n Ronald Colman won a Best Actor Oscar for showy...\n Naturally I didn't watch 'GI Jane' out of choi...\n so altogether i found this documentary to be s...\n The film adaptation of James Joyce's Ulysses i...\n This show is freaking hilarious! the jokes are...\n This is the worst movie I have seen to date. 8...\n As I watch this film, it is interesting to see...\n Wow, was this version of THE RACKETEER tough t...\n Now I know why this movie can be bought for so...\n For those who commented on The Patriot as bein...\n Proof why Hollywood conventions are in place. ...\n It is true that some fans of Peter Sellers wor...\n American-made final entry in the \"Blood Island...\n The power rangers is definitely the worst tele...\n It seems on the surface to be a romantic _plan...\n Being a completely broke film buff with a hous...\n A MUST SEE! I saw WHIPPED at a press screening...\n Masters Horror: Sounds Like is set in Seattle ...\n If I write a review about a movie, maybe it wi...\n Writer & director Robert Downey, Sr., a pionee...\n I caught this movie on Sci-Fi before heading i...\n Brief summary: This movie demeans everyone it ...\n After coming off the first one you think the w...\n This performance leaves you with no wishes. We...\n This movie is a great attempt towards the revi...\n <br /><br />Although the lead actress is STRIK...\n Unlike one of the reviewers below, I don't thi...\n If Monte Hellman's legendary early 70's road m...\n My take on the ending. Bobby died at the hands...\n Abbott and Costello's talents shine in the hap...\n I grew up with H.R. Pufnstuff and the dashingl...\n This picture was banned from American movies h...\n Takashi Shimizu had a great opportunity with a...\n Way back when, the X-Files was an intelligent,...\n I saw this film at the Boston Internation Fest...\n The auteur of \"Prince\" manages to take an exce...\n This is the biggest load of crap that I have s...\n I have a two year old son who suffers from the...\n This is essentially a variation on House Of Wa...\n I borrowed this movie because not only because...\n UGH!...this is the worst Wrestlemania hands do...\n Strange, often effective hippie zombie flick, ...\n Richard Dix decided to retire and so Michael D...\n I shudder to think what people must have thoug...\n I was 19 in 1970 when it came out and having h...\n This, along with \"Hare Tonic,\" ranks as one of...\n 42/100. Often referred as \"Tarzan with clothes...\n Hahahaha!!!!!!Funny-that sums this movie up in...\n What can be said about one of the greatest N64...\n Sometimes, making something strange and contem...\n \"Cinderella\" is a film about a young girl whos...\n Though this film doesn't stand out particularl...\n The idea behind this film was a good one. Too ...\n This film is NOT about a cat and mouse fight a...\n Hellraiser: Bloodline is where the sequel medi...\n While he was great in Boogie Nights, I think t...\n <br /><br />Once I ignored some of the implaus...\n I think that saying this film has too many is ...\n <br /><br />Summary: Not worth the film<br /><...\n What are the odds of a \"Mermaid\" helium balloo...\n Sidney Stratton is having trouble maintaining ...\n Forget all those sappy romantic movies involvi...\n Though it pains me to some degree that I'm bot...\n Watching this movie was the biggest waste of t...\n I'm sorry for Jean, after having such a good o...\n My Tutor Friend is a well scripted romance com...\n I really enjoyed this movie, and I'm not a cla...\n Touching; Well directed autobiography of a tal...\n I watched it subtitled as it was in Russian, b...\n I've seen (far too) many flicks from this comp...\n This movie is about a young girl who goes to l...\n Man, I can't believe the largely harsh and neg...\n While Leon is cute on SNL, he's only on for a ...\n If I could i would give ZERO stars for this on...\n If you've ever listened to any of the James Le...\n While it has been many decades since I last re...\n Two old buddies are sent to Japan to get back ...\n I absolutely hate the idea of made for televis...\n A perfect little atrocity...I doubt if a singl...\n Yeah i saw the rough cuts. The unedited sex sc...\n I remember this show from Swedish television. ...\n This film derives from a Long Running ITV sitc...\n Being a fan of the game and watching this film...\n \"Twelve monkeys\"'s got all the elements to bec...\n This is the most disturbing film I have ever s...\n I usually much prefer French movies over Ameri...\n The casting of Robert Culp is probably the onl...\n Business Executive is kidnapped, made to wande...\n This film has a lot of raw potential. The scri...\n This movie fully deserves to be one of the top...\n After all these years, of Peter O'Tool's brill...\n This woman never stops talking throughout the ...\n After reading some quite negative views for th...\n With all the excessive violence in this film, ...\n Undoubtedly one of the best episodes ever, Bal...\n I find it hard to believe that anyone would pu...\n Wonderful family drama/comedy starring MacClai...\n The last reviewer was very generous. I quiet l...\n This movie portrays Ruth as a womanizing, hard...\n From the writer of \"What Ever Happened to Baby...\n Apparently Ruggero Deodato figured out, early ...\n The 700 Club gives a great perspective on worl...\n I was a fan of the AMERICAN WEREWOLF IN LONDON...\n The arrival of an world famous conductor sets ...\n A new creative team emerged in 1950 when brill...\n There are lots of extremely good-looking peopl...\n I miss Dark Angel!..<br /><br />I understand n...\n OK, it's very rare that I complain something I...\n This film is slow. This film is cheap. This fi...\n The best independent film of 2001 - I went to ...\n You've been fouled and beaten up in submission...\n Felix is watching an actor rehearse his lines:...\n ***SPOILERS*** ***SPOILERS*** THE CELL / (2000...\n A fine young cast is wasted in this empty, maw...\n this movie scared me so bad, i am easily scare...\n i am totally addicted to this show. i can't wa...\n A typical Lanza flick that had limited audienc...\n When this film was originally released it was ...\n -might contain spoilers... but believe me, thi...\n Lindy (Meryl Streep) and her husband Michael (...\n Are you kidding me?! A show highlighting someo...\n On a routine mission in Iraq a group of Delta ...\n At the end, it is clear that the murderers pla...\n This was a pretty good movie. I love fighter j...\n This show sucks. it was put on fridays on roll...\n Why do I like DISORGANIZED CRIME so much? Why ...\n Like 'First Blood', this attempts to make a po...\n Ask yourself where she got the gun? Remember w...\n This \"Debuted\" today on the SciFi channel and ...\n I was very excited when this series premiered ...\n Warning Might contain spoilers<br /><br />i ju...\n I remember watching ATTACK when it first came ...\n I was permanently scarred by this terrible fil...\n I have seen it. It's not \"good\" but interestin...\n The first one was the best. The second one suc...\n Set in Paris in the year 1910, a retired old r...\n OK, this movie, was the worst display I have s...\n Things that are only just now \"news\" were take...\n Most awful casting I've ever seen. Clark Kent ...\n getting to work on this film when it was made ...\n After his success with A Nightmare on Elm Stre...\n I can't help but laugh at the people who prais...\n In my opinion, this movie is not good. I hardl...\n Emma is a true romance. If you love the soppy ...\n I would have rated the series a perfect 10 for...\n As a Pokémon fan I enjoyed this movie very muc...\n Watching this movie is like eating a banquet o...\n Although it's not as creepy as it's cult class...\n You can read all kinds of references into the ...\n I happened to see a promo for this movie on Sp...\n Playwright John Osborne's (Look Back in Anger,...\n I saw an interview with Rob Schneider (who pla...\n A compelling, honest, daring, and unforgettabl...\n Pretty bad. This film about a grizzled(and fra...\n Terrific little film that stars Mary Astor as ...\n '1408' is the latest hodge podge of cheap scar...\n Guy walking around without motive... I will ne...\n Belushi at his most ingratiating and Courtney ...\n This is a very enjoyable, fluffy, glamorous mu...\n Casting bone to pick: David Jannsen was 38 pla...\n Anyone that is looking for an episode of \"Law ...\n I've just been at the cinema in down town Prag...\n The Best of Everything is a high gloss large s...\n This mindless movie is a piece of crap and bor...\n Bergman is a sublime comedy director and write...\n Warner Bros. made many potboilers in the 1930s...\n First, let me review the movie. This movie cre...\n I have never been as surprised by a film that ...\n This is a so called 'feel-good' movies, howeve...\n Okay, maybe this movie not a revolution. But i...\n All the actors in this film seem bored. They a...\n I'm writing this as I watch the DVD. I grabbed...\n This movie is ridiculous! That's exactly what ...\n Clean family oriented movie. I laughed, I crie...\n Canadian filmmaker Mary Harron is a cultural g...\n All you need to know about this film happens i...\n ...this film noire set piece suffers from murk...\n A little girl lives with her father and brothe...\n Airwolf The Movie, A variation on the original...\n I saw part of this film on the Sci-Fi Channel,...\n I just saw the movie on tv. I really enjoyed i...\n typically, a movie can have factors like \"arou...\n Carlos Mencia just plain isn't funny! His show...\n One of the first of the best musicals, Anchors...\n I hadn't planned on leaving a review, but seei...\n The one line summary is actually the punch lin...\n Well I too had heard read all the breathless r...\n I remember loving this show when I was a kid. ...\n Billed as Takashi Miike's \"first family film\" ...\n I can't believe we watched this total piece of...\n If there was a God, he would have made sure th...\n Hi! Being able to speak Cantonese, I found thi...\n From the title, the tag-line, the plot summary...\n i was glad that this movie did without all the...\n Walt Disney's CINDERELLA takes a story everybo...\n Seriously, I don't even know where to begin. I...\n Now, I love bad, old skifee movies as much as ...\n Writer & director Jay Andrews, a.k.a. Jim Wyno...\n This is the slowest \"film noir\" film I've ever...\n This is basically your run of the mill violent...\n I sat last night to see this film being played...\n What can I say about this film other than the ...\n I looked forward to watching this film since I...\n One unfortunate reality of post-Soviet Russia ...\n This movie is so bad, it can only be compared ...\n Live! Yes, but not kicking.<br /><br />True st...\n Two college buddies - one an uptight nerd, the...\n ... why watch a TV drama (billed as a comedy) ...\n It's hard to believe that this is a sequel to ...\n I've seen this film so many times, It's that g...\n I couldn't stop laughing, I caught this again ...\n This film is harmless escapist fun. Something ...\n Exceptional movie that handles a theme of grea...\n Words can scarcely describe this movie. Loaded...\n Can the intensity of a husband's love for his ...\n Van Dien must cringe with embarrassment at the...\n We so often talk of cinema landmarks - Kane, T...\n Awwww....yes, it is heartwarming and all that ...\n \"It's not like that big mechanical toy\", says ...\n This has to be one of the most outrageously st...\n If the Lion King was a Disney version of Hamle...\n Years ago a movie going friend and I went to s...\n I'd never seen an independent movie and I was ...\n Fun With Dick and Jane failed to entertain on ...\n Finally, after years of awaiting a new film to...\n I watched this movie a long time ago, but I've...\n Thanks to a smart script and a steady hand fro...\n Loved the movie. I even liked most of the acto...\n I do not write reviews here often but I can no...\n When I saw the commercial for this, I was all ...\n The main reason I wanted to see this movie was...\n This is a classic movie that dramatizes the pl...\n I don't watch very many 'horror' movies, but o...\n Here's the skinny, it seems that this is much ...\n This could have been a good episode but I simp...\n From the first time I saw the box cover of the...\n This Charles outing is decent but this is a pr...\n I know if I was a low budget film maker I woul...\n The movie starts out fine. Widower out with ne...\n Chang Cheh's \"Shaolin Temple\" might very well ...\n May contain spoilers<br /><br />This historica...\n Three kids are born during a solar eclipse and...\n To heighten the drama of this sudsy maternity ...\n It is easy for a movie that tries to be suspen...\n `Bruce Almighty' will sweep the Academy Awards...\n A mild-mannered NY lawyer (George Segal) is sl...\n Not near as well made as the \"Guinea Pig\" flic...\n The main word that comes to mind when consider...\n What can i say about this movie that hasn't be...\n Model Chris McCormack (Margaux Hemingway) is b...\n An OK flick, set in Mexico, about a hit-man (S...\n Creep is the story of Kate (Potente), an inten...\n Evil never looked so bad. They meant it.<br />...\n This is a really really bad movie. However It'...\n I gave this movies a 7 out of 10. I think the ...\n Words can't describe how utterly stupid this s...\n Running out of films to rent, I picked up Free...\n This movie should have been named Need For Spe...\n Stay FAR AWAY from this film. The fact that yo...\n If you first saw this movie with Mary of the F...\n \"Twelve Monkeys\" is odd and disturbing, yet be...\n After watching this thing, then reading the su...\n Spoilers - in as far as I describe characters ...\n K, one day my father picked up a movie with a ...\n If you're a fan of film noir and think they do...\n 1. The Largest Amount of Money Spent was on th...\n First off, I dislike almost all Neil Simon mov...\n Den Brysomme Mannen is one of the better films...\n Kim Basinger stars as Della, a housewife who h...\n It was only when I saw Napoleon Dynamite that ...\n Not entirely sure how I stumbled upon this mov...\n The movie had a lot of potential, unfortunatel...\n I wanted to see this movie because I am a very...\n I thank god I didn't go to cinema for this fil...\n My favorite show of all time! Yeah, I thought ...\n This is indeed a god adaptation of Jane Austen...\n Not even the Beatles could write songs everyon...\n Isaac Florentine has made some of the best wes...\n My first hugely disappointing BBC/Jane Austen ...\n 1985 was a good year for films - maybe even gr...\n Wow. I do not think I have ever seen a movie w...\n When King Kong stripped her of her top in the ...\n Sure, the film is full of black militant stere...\n I saw this movie once as a kid on the late-lat...\n This is one of the most stupid and worthless m...\n Aileen Gonsalves, my girlfriend, is in this fi...\n Much to your presumable happiness fair readers...\n This film was utter tripe. Possible that it is...\n Just as in Rififi, the most compelling scene i...\n This documentary is rife with problems.<br /><...\n This film is about a male escort getting invol...\n \"Johnny Dangerously\" is a sort of hit and miss...\n Barry, a medical transcriptionist has his mind...\n I just watched it for the second time today an...\n People say that this film is a 'typical teen h...\n Given its time of release, the story that unra...\n SPOILERS All too often, Hollywood's Shakespear...\n Sad story of a downed B-17 pilot. Brady is sho...\n Finally, the uncut version of \"Baby Face\" surf...\n For a kid's movie, this is great. As an adult ...\n I just saw this film again, I believe for the ...\n Adolf Hitler's maniacal desire to impose his w...\n I really enjoyed The 60's. Not being of that g...\n Okay, if this film had been made much later in...\n Nothing I dislike more than a kung-fu movie th...\n This movie is one of my all time favorites. I ...\n OK, I didn't know what to expect when I saw th...\n \"A Girl's Folly\" is a sort of half-comedy, hal...\n I wish I had something more positive to say ab...\n Gómez Pereira is the responsible for some of t...\n This review has been written by someone who ha...\n W. Somerset Maugham's Of Human Bondage is supp...\n It's not really about wine. No, Nossiter's rea...\n The show is really funny. Nice theme. Jokes an...\n <br /><br />Oh my word!! I have never seen a f...\n As you can guess by my rating and my title of ...\n ....is the boob in the pie. Every thing else i...\n Here is what happened:<br /><br />1) Head of B...\n The always delightful Kevin Spacey makes us on...\n I wouldn't call myself a big fan of the genre ...\n I was pulled into this movie early on, much to...\n I thought I was wasting my precious 50 bucks g...\n Before we begin, I have a fear of dentists. Th...\n Ealing Studios, a television and film producti...\n This is the kind of movie that could have ruin...\n Before this clip, music videos were merely to ...\n The concept of this movie is pretty compelling...\n good job.that's how i would describe this anim...\n Somewhat too long and going over the top towar...\n And thus was born the most amorous skunk ever ...\n John Knowles modern masterpiece, A Separate Pe...\n I had never heard of Robert Roy MacGregor befo...\n Let me start off by saying I love Japanese cin...\n It's a while ago, that I have seen Sleuth (197...\n Judging by some of the comments in IMDB, I was...\n The cast of \"All That\" returns for good humor ...\n Knowing when to end a movie is just as importa...\n Well, I'd heard from somewhere that Ossessione...\n What a shame that some good talent was wasted....\n I saw this television version of a Christie my...\n Beware, My Lovely came on TV on BBC2 recently ...\n My Architect is a great film about Nathaniel K...\n I had high hopes for this movie I even gave up...\n The Man with Bogart's Face sets it self up to ...\n For anyone who has trouble with naughty, mad o...\n This is a perfect example of a Classic Full Mo...\n I recommend watching this film with your signi...\n This movie has lots of action and little heart...\n My friends and went through a period of time w...\n Nemesis 3 is the worst movie what I have ever ...\n Well, this film is a difficult one really. To ...\n It's that film that loads of people hail as a ...\n The storyline of \"The Stranger\" mirrors somewh...\n Whew! What can one say about this bizarre, stu...\n Documenting a documenter. That's one way to de...\n First, I'm sorry for my English. Second, the t...\n After reading the mostly glowing comments abou...\n I like monster movies, generally. Even if they...\n Good film. Tells a boyish fantasy story, telli...\n I was surprised when I saw this film. I'd hear...\n Pretty terrible, but not entirely unwatchable....\n If I was still 5 I might find it scary. It is ...\n After watching \"The Bodyguard\" last night, I f...\n A journey of discovery, this film follows the ...\n It is beyond me why two million Danish people ...\n Usually, any film with Sylvester Stallone is u...\n I have copies of both these Movies the classic...\n The Stepford Children, besides being a very go...\n At the first glance of this film the camera an...\n Richard Donner shows off his liberal credentia...\n 1939 is universally accepted as the greatest y...\n Class Reunion is a very underated comedy gem. ...\n What a wasted opportunity to actually make an ...\n This was the third time I tried to watch this ...\n Tara Reid as an intellectual, Christian Slater...\n When I saw Lon Chaney, Jr. and Boris Karloff i...\n I watched Asterix and Obelix in Operation Cleo...\n Sammy Horn (Michael Des Barres) is the head ch...\n Since this show was changed from TSS (the scre...\n It might be a little erroneous to open a revie...\n Maybe this isn't fair, because I only made it ...\n The Last of the Blond Bombshells is an enterta...\n I can't believe I wasted my time with this mov...\n The obvious parallels between Walt Disney's ch...\n Awful, dreadful, terrible. The actors are bad,...\n The most stupid of Seagal's movies I've ever s...\n Back in 2002 when Matthew Lawrence did The Hot...\n Centres on Czech WW2 pilots  the older Franti...\n Other than some neat special effects, this mov...\n I saw \"Paris Je T'Aime\" because a friend reall...\n An end of an era was released here in the Stat...\n For those of you who have never heard of the m...\n Even though an animated film it really bored e...\n Liked Stanley & Iris very much. Acting was ver...\n The worst thing about Crush is not that it's a...\n Well I'm blowed, a Woody Allen film that I wal...\n OK, I could only find three reasons to conside...\n It has taken several viewings for me to fully ...\n I have been a \"huge\" rush fan ever since \"movi...\n Bad, bad, and did I mention bad? Aside from th...\n I think this is what this movie wants us to sa...\n <br /><br />Attack Of The Killer Tomatoes is a...\n Along with the \"Maratonci trce pocasni krug\" f...\n I saw this movie when it was first released in...\n Froggie is upset that he never has a big party...\n I'm so glad I happened to see this video at th...\n From the first to the last scene, this film is...\n I loved this movie and I watch it everyday. I ...\n Too much added with too much taken away from a...\n I saw this late at night on a minor channel an...\n This movie is maybe one of the most boring mov...\n I was speechless and devastated after my first...\n I have a lot of respect for Mr. Argento's work...\n Unusual? Yes!<br /><br />Unusual setting for a...\n I know slashers are always supposed to be bad,...\n Mind-numbingly boring, utterly predictable and...\n Val Kilmer is almost nowhere in this film -luc...\n I wouldn't be so sure to accept the DNA tests ...\n I found this movie to be one of the best for t...\n I saw this film last night on cable and it is ...\n The first of the Tarzan movies staring Johnny ...\n I still can't believe this movie. They got so ...\n Having been a faithful Asterix fan all of my l...\n Vivah is by no means a classic. However in the...\n An inventive, suspenseful exercise in claustro...\n A typical 70s Italian coming of age film, orig...\n Perhaps one of the worst teenage slasher films...\n This is definitely a movie that will make you ...\n Superbly developed characters into the lots of...\n \"Caligula\" shares many of the same attributes ...\n I love All Dogs Go to Heaven even though I'm a...\n I've just visited Russian forum of our TV-chan...\n ****Probably will contain spoilers****<br /><b...\n Soul Calibur is more solid than it ever was......\n As several posters have \"hinted,\" this is a so...\n The acting in this movie was superb, but mixed...\n Jameson Parker And Marilyn Hassett are the scr...\n I somehow managed to make it all the way throu...\n The big bad swim has a low budget, indie feel ...\n twenty years later, this movie still remains a...\n Movies like this one, and C.R.A.Z.Y., make me ...\n Every now and then a film maker brings to life...\n This movie tries to be more than it is. First ...\n Oh,God! Book II is more of a bad remake of the...\n The (DVD)movie \"The Tempest\", directed by Jack...\n I kind of had somewhat high expectations for t...\n Shaggy & Scooby-Doo Get a Clue. It's like watc...\n Picking this up along with the rest of the Mar...\n A simple movie in the beginning, a simple movi...\n By the time this film was released I had seen ...\n I didn't know anything about this movie before...\n Stan Laurel and Oliver Hardy had extensive (se...\n I love this show. Now, I'm not a big fan of ma...\n In my case I liked this movie because when I s...\n Modern, original, romantic story.<br /><br />V...\n The story of a woman (Ann) on her death bed, h...\n I still haven't gotten to see all of this; it'...\n This is just one of the hundred million movies...\n (BIG SPOILERS) I've seen one other Takashi Mii...\n Ridiculous film where two swinging college gra...\n Look, I've practically lost all hope in Nickel...\n Here's an oddity: a modern-day film about a se...\n I cannot see why anyone would make such a movi...\n I've read other hacks' reviews of this movie, ...\n The Joe Cool Review - Hellraiser: Bloodline<br...\n I saw Heaven's Gate on its opening week nearly...\n The Argentinian music poet, Atahualpa Yupanqui...\n Who wouldn't want to go on road trip with Pete...\n My daughter gets really put out at me when I r...\n Starting on or around 1965 American movies too...\n A romanticised and thoroughly false vision of ...\n (r#88) Brilliant, very entertaining show with ...\n I had been waiting to see this movie for so lo...\n While Hollywood got sort of stagnant during th...\n If you consider yourself a horror movie fan, c...\n I watched this movie after seeing other commen...\n OK, here it is: \"Nazi mountaineer befriends th...\n While the premise of the film sounded unique a...\n The previous poster obviously worked on the mo...\n How can you resist watching a film with some s...\n I'm absolutely disgusted this movie isn't bein...\n I don't want to go off on a rant here, but.......\n Night of the Demons is a great movie and an ex...\n 'Steamboat Willie' is the first cartoon with s...\n Irwin Allen was great. All of his TV shows had...\n This film struck me as a project that had a lo...\n This film as it is now is far shorter than it ...\n I was at the premier of the movie last night i...\n This is a great example of very none Hollywood...\n Remember - before there was Sidney, there was ...\n Being a filmmaker myself, and possessing a som...\n May 2nd: someone clicked 11 NOs, and then proc...\n I've heard many things about Beowulf, maybe be...\n I am not quite sure I agree with the director ...\n The inherent problem with any staging of 'The ...\n Although Flatliners is 15 years old, tonight w...\n Whoever filled this stupid idea of acting and ...\n To this day, I have never seen Elizabeth Shue ...\n This third installment in the Scarecrow series...\n \"Hey everybody! I've got an idea, we found thi...\n \"A Texas community is beset with a rash of mys...\n Ms. Stowe is sensational in this power drama a...\n I saw this movie yesterday. I must admit - I l...\n i've watched this movie (movie?) casually and ...\n Well, the movie is basically about the last da...\n I saw this mini-series when I was in high scho...\n In a small, picturesque Sicilian village, some...\n There is something about this show that keeps ...\n I realise that the US Army was demoralised by ...\n This was my late wife's favorite film. I'm sor...\n A charming little film set in the UK about the...\n This film is so bad, it made me want to vomit....\n This film was really a breath of fresh air fro...\n The DVD sleeve explains the premise: \"Three pr...\n Lucille Ball's version of \"Mame\" in my opinion...\n <br /><br />When I first started watching this...\n Words can hardly describe what Blue Planet bro...\n this flick is strange but i liked it a lot. it...\n Archbishop Desmond Tutu, who is seldom a favor...\n I wish I'd known more about this movie when I ...\n This Movie is really an entertaining, good cle...\n From the makers of Underworld, we have, by far...\n FLIGHT OF FURY takes the mantle of being the v...\n This World War II Popeye cartoon had some very...\n Two years after the success of 'Airplane', Jim...\n When I took my seat in the cinema I was in a c...\n I'm one of the millions of Columbo addicts all...\n Another pretentious film from Vicente Aranda. ...\n \"After the atomic bombs carried by a shot-down...\n Steven Spielberg wanted to win an Oscar so bad...\n Mark Hamill should have felt mighty embarrasse...\n Vodka Lemon is a charming, yet extremely uneve...\n If you ask me the first one was really better ...\n Junior high and high school teachers will find...\n Strange enough, all the previous comments mere...\n The Ruth Snyder - Judd Gray murder in 1927 ins...\n Pretty, stereotyped, good looking cast, the st...\n Oh boy. Films like this really bother me. If t...\n breathtaking, this is without doubt the best a...\n REALLY??? <br /><br />I am truly amazed to see...\n A lot of people unfairly sh!t on this series b...\n Ignoring Rocky 3, this is easily Hulk Hogan's ...\n James Cagney is best known for his tough chara...\n THis movie shows us once again, how genius the...\n Elizabeth Rohm was the weakest actress of all ...\n Hilarious, clean, light-hearted, and quote-wor...\n I had the PRIVILEGE of attending the UK premie...\n This great movie has failed to register a high...\n The photography and editing of the movie is ex...\n I see that C. Thomas Howell has appeared in ma...\n If you have seen Friends, the writing will fee...\n CONGO is probably the worst big-budget movie o...\n The only way to truly understand and relate to...\n Description: Corny, utterly stupid and worthle...\n normally,i would say i loved this movie.not fo...\n Charmed was awesome!!!! I don't get how Pheobe...\n I saw this bomb when it hit theaters. I laughe...\n This film certainly wasn't very sophisticated....\n this is just usual Indian garbage that gets tu...\n This mini-series is iconic of the Australian s...\n this could have been good,but sadly,its too in...\n Anyone not aware of the 1973 original British ...\n Not a movie, but a lip synched collection of p...\n Rififi is a great film that is overlooked. It'...\n It's always difficult to put a stamp on any fi...\n Does this film suck!! Horrible acting, horribl...\n I think this movie is underrated. To me it fel...\n Did you ever see the film \"Marathon Man\"? The ...\n Saw this on SBS TV here in Australia the other...\n Three young college women, Simona (Iva Krajnc)...\n Maybe I'm biased because the F-16 is my favori...\n This is not only one of the greatest Jackie Ch...\n was sort of enjoying this movie until the issu...\n I haven't seen this fine movie in 50 years but...\n This made-for-TV film is a brilliant one. This...\n I also attended the RI International Horror Fi...\n he is the quintessential narcissist and manipu...\n that got destroyed quickly by the poor quality...\n I am completely appalled to see that the avera...\n When I was a teen-ager seeing this film for th...\n It's a soap-opera drawing upon an applied ethi...\n An obsessive love story, where the characters ...\n This was the greatest movie I have ever seen i...\n I get a kick out of the new Who fans who call ...\n Oh dear, oh dear, oh dear. My lifetime was dra...\n La Coda Dello Scorpione (a.k.a. Case of the Sc...\n <br /><br />I just bought this movie on DVD an...\n This was the stupidest movie I have ever seen ...\n There are other reviews here so I don't need t...\n Robert Altman, Nicolas Roeg, John-Luc Goddard-...\n I enjoyed this film. It was a joy to see a ver...\n You think the police are always right.<br /><b...\n The Waiting Womans Ward of a large lying-in ho...\n Now I love Bela Lugosi,don't get me wrong,he i...\n I am a big fan of The ABC Movies of the Week g...\n A very potent drama of Faulkner's small town s...\n Four teenage girlfriends drive to Fort Laurdal...\n A Bug's Life is a very good animated feature. ...\n I have never been one to shy away from saying ...\n I went to see Ashura as 2005 Fantasia Festival...\n I caught this movie at the Glenwood Cinemas at...\n Jimmy (Heath Ledger) is given a simple job by ...\n Maybe James P. Lay knows what do to in the sou...\n Paranoid Park is about Alex, a 16 year old ska...\n OK, Number one-this \"film\" is a \"90's\" version...\n The Good<br /><br />Carrey is good actor and h...\n I was very interested in seeing this movie des...\n I'll say it again: this movie was totally lame...\n Although, this episode was offensive to the To...\n I didn't know if i would laugh or cry seeing t...\n This was one of the worst movies i have ever s...\n i just finished watching Dressed to Kill,which...\n This movie made me so angry!! Here I am thinki...\n This movie is so bad that it actually gets fun...\n Although it got some favorable press after pla...\n I'm not really much of an Abbott & Costello fa...\n Do you guys wanna know a secret?. This movie s...\n Boring. Minimal plot. No character development...\n Okay, you have:<br /><br />Penelope Keith as M...\n A student filmmaker enlists a B-grade actress ...\n Kinda boring, kinda gross, kinda unsettling, t...\n ... and I actually gave it a ZERO on my person...\n This is an awesome action film with great one ...\n You know what you are getting when you purchas...\n I think i was one of the people who found this...\n I love all his work but this looks like nothin...\n I watched this movie, and hoped for something ...\n As it was already put, the best version ever o...\n This is the first time I'm entering a comment ...\n This movie starts off promisingly enough, but ...\n This is on my TV right now... but only long en...\n We rented the movie and it maybe the worst mov...\n I was recently given this film on DVD as a gif...\n This movie was a mess. It had the absolute wor...\n John has made two One man shows. Spic O Rama a...\n I heard so much about this movie how it was a ...\n Forget the recent dire American remake which s...\n Perfect cast for a few-person drama. Simon is ...\n China White (1989) was Ronny Yu's first intern...\n This is really really bad. Lamas shows just ho...\n The scariest thing about this horror movie is ...\n What was always missing with the Matrix story ...\n Impressive vision indeed, and some hot chicks ...\n Tony Scott directs a thriller sports flick tha...\n James Stewart plays Johnny Mason, lawyer. Caro...\n Personally, I didn't really gain a whole lot f...\n Oh My Gosh!!!! This was the first movie Broken...\n The daytime TV of films. Seldom have I felt so...\n Clark Gable plays a con man who busts into the...\n Gandhi, the Great :<br /><br />Greatness in th...\n I guess you have to give some points for the s...\n A brilliant chess player attends a tournament ...\n Kinda funny how comments for this film went co...\n E. Elias Merhige's existentialist experiment i...\n This film is one of the worst adaptations of P...\n I saw this movie previewed before something el...\n SPOILERS A Jewish Frodo? Yep, that'll be Elija...\n Very touching film, a great surprise to come u...\n A must see movie for anyone who ever went to c...\n Perhaps the best Isabel Allende's book, House ...\n It's such a shame that because of it's title t...\n Stealing is a crime, and these guys, Kenny Yak...\n I can not believe such slanted, jingoistic mat...\n Let's face it; Nancy Drew was never great lite...\n I attempted to watch this, and was highly disa...\n Brand Hauser (John Cusack) is an assassin for ...\n There is NO Esperanto in this movie<br /><br /...\n What is really sad, shows like Six Degree's an...\n Any film that deals with bigotry in a positive...\n The Brain (or head) that Wouldn't Die is one o...\n by TyNesha Mells. In this drama, Ja Rule, who ...\n I'm always suprised on how different all peopl...\n i was intrigued to see how a little-seen 2008 ...\n SPOILER ALERT<br /><br />A cliché-riddled film...\n Picture the scene: A bored student with an emp...\n Hooray for Korean cinema! Last year I saw \"Chu...\n Documentary about nomadic Persians making a tr...\n Winter Kills is a terrible, incoherent and ver...\n OZ is an old TV series released by HBO. It sho...\n I saw this movie today on the big screen and i...\n I won't claim to be a fan of Ralph Bakshi, bec...\n When I saw the preview, I thought: this is goi...\n Disney has yet to meet a movie it couldn't mak...\n Tourist Trap (1979) is an entertaining horror ...\n If you watch this series you will get an inter...\n I really liked this Summerslam due to the look...\n Far by my most second favourite cartoon Spielb...\n Ever notice how so many really bad films attra...\n Imagine that \"Dragnet\" episode where Friday an...\n Opening the film with a Bach Toccata is an aur...\n No rubbish - no where even near rubbish. Not a...\n A truly remarkable film that takes you on a jo...\n Hey if people thought ed wood was a bad direct...\n While traveling with a team of misses for the ...\n This is a very dramatic and suspenseful movie....\n I'm not usually into dark/psychological thrill...\n Townies is the laziest movie I have ever seen,...\n Somebody decided to make a \"black version\" of ...\n I am not from America and I know what 'Wife Sw...\n this is the 1990's TV show,not the movie from ...\n A sentimental, heart-tugging family film set i...\n Very odd, this seems like a very average movie...\n SPOILERS HEREIN<br /><br />My High School did ...\n I thoroughly enjoyed this movie...and I watch ...\n Many of us find art agreeable only when the ma...\n I had to watch this in school. And to sum it u...\n A crackling and magnificent thriller about a c...\n This British film version of the stage play I ...\n I found parts of this movie rather slow, espec...\n This is a pretty bad movie. But not so bad as ...\n I am really at a loss as to how anyone could g...\n If you are looking for a movie with beautiful ...\n This could be difficult to for some people to ...\n pretty disappointing. i was expecting more of ...\n Even though this movie starts off with the usu...\n Batman Mystery of the Batwoman, is, in a word,...\n And I do. Peter Falk has created a role that w...\n I was given the opportunity to see this 1926 f...\n I found this a bit hard to follow to the exten...\n This movie was terrible. It was so very terrib...\n Certainly not a bad little low budget film, th...\n Some unrealistic movie spoilers included.<br /...\n I'm a collector of films starring Ms. Weaver, ...\n What often threatens to turn into a soppy and ...\n First off there is nothing wrong with studying...\n I haven't watched this show in months, but for...\n The charm of Otto Preminger's grandiose, visio...\n This movie is Hilarious what is better than wa...\n SEPARATE LIES is such an elegant, intelligent ...\n This movie was like a gathering of people that...\n A friend gave me this movie because she liked ...\n If my expectations weren't exceeded, they were...\n For me this movie is essentially like a featur...\n Ugh. This movie has so many unbelievable plot ...\n Spoilers<br /><br />Wow, END OF THE WORLD is a...\n \"Tragic Hero\" is a film that is most definitel...\n People have often been uncomfortable with \"The...\n I've seen some bad things in my time. A half d...\n Controversial German journalist Jutta Rabe who...\n Flipping through the channels I was lucky enou...\n I didn't feel that this film was quite as clev...\n As predictable as a Hallmark card, but not wit...\n This episode introduces us to the formal dress...\n I've had a thing for this Kari chick for a whi...\n This does give away some of the plot, by the w...\n Hold Your Man finds Jean Harlow, working class...\n I watched the movie, and was dismayed to say t...\n Dear reader, Watch out! This movie is not real...\n The original Vampires (1998) is one of my favo...\n **Warning! Slight Plot Spoilers Ahead!**<br />...\n We went into this movie because my husband had...\n I agree with the other 9 and 10 star reviews. ...\n The Toxic Avenger, hideously deformed creature...\n Almost no cinema experience can beat a good th...\n When I decided to watch THE BARBARIANS, starri...\n I really only watched this movie because it ha...\n I honestly found Wicked Little Things to be a ...\n This covers just about every area of the creat...\n The Black Castle is one of those film's that h...\n Devil Dog sets your heart racing. It's brillia...\n This made for television version of the legend...\n When I think of Return of the Jedi I think epi...\n The last Tarzan film starring Johnny Weissmull...\n Shame on Yash Raj films and Aditya Chopra who ...\n A failure. The movie was just not good. It has...\n while watching this piece of crap! The Day aft...\n In director Sooraj Barjatya's Vivah,20-somethi...\n Occasionally one is served a new entrée from f...\n Spin-offs, for somebody who don't know, are no...\n > Contrary to most reviews I've read, I didn't...\n This is, without a doubt, the most hilarious m...\n I was drawn to DAN IN REAL LIFE from the excel...\n Uzumaki succeeds as at plunging you into a biz...\n ...an incomprehensible script (when it shouldn...\n A British teen movies which centres around a g...\n This Movie was amazing, it is the kind of movi...\n 86 wasted minutes of my life. I fell asleep th...\n Prof. Janos Rukh (Boris Karloff) discovers Rad...\n I loved this movie so much. I'm a big fan of A...\n This Paramount version/ripoff of OKLAHOMA!/ANN...\n Worst De Niro Scorsese collaboration in this h...\n I had no idea who Bruce Haack was before seein...\n Worst show I've ever seen. The story is about ...\n I know, I know: it's childish. But I just love...\n I'll bet none of you knew that the famous Conq...\n Before this, the flawed \"Slaughterhouse Five\" ...\n Fabulous cinematography from Sergei Urusevsky ...\n I'm from Phoenix city and the first time i saw...\n Blood Surf AKA Krocodylus is a fair film that ...\n Having watched both the Lion King and Lion Kin...\n This is a strong recommendation to anyone who ...\n OK now, lets see. What was funny in the first ...\n I just viewed Eddie Monroe and I was very impr...\n Based on a true story, this series is a gem wi...\n This is another one of those films that I reme...\n I remember seeing this film when I was 13 year...\n I highly reccommend this movie. It blurs the l...\n AAAAAAAAAAAAHHHHHHHHHHHHHH!!!!!!!!!!!!!!!! WHE...\n I think that this is a fabulous movie... I wat...\n When i was told about this movie i wasn't too ...\n Well, sadly, I can't help but feeling a little...\n A fine line up of actors and a seemingly nice ...\n An incredible little English film for so many ...\n This 2003 made for TV movie was shown on a wom...\n Don't be deceived as I was by the 'glowing' re...\n Successful self-made married businessman Harry...\n The Killing Yard is a great film, although une...\n This was a very good movie and is absolutely u...\n I agree with other users comments in that the ...\n Killjoy 2 surpasses the first movie by just a ...\n I think this movie is amazing but there is one...\n This was basically an attempt to do the same t...\n This movie was exactly what I expected it to b...\n I watched this over the Christmas period, I do...\n Now, lissen you guys, I LOVED THIS FILM, thoug...\n Let me start out by saying this movie has 1 fu...\n Mishima is one of the greatest films ever made...\n It pains me to write such a scathing review bu...\n Obviously, the the responses here were written...\n i really wanted this to be good as i am from L...\n This is the sort of unknown and forgotten film...\n I picked up the movie with no cover and not ev...\n Famous for introducing the world to Hedy Lamar...\n The first time I saw this film, I was in shock...\n In recent times I have been subjected to both ...\n Ramsay  the kings of comedy (or was it horror...\n I looked forward to spending part of my Indepe...\n This superb 40's post war classic, tends to be...\n This was just another marvelous film of the Be...\n Tripping Over. I must say at first I was a lit...\n This is no doubt one of the worst movies i hav...\n I actually saw the movie before I read the boo...\n This effort was like a glitzy TV movie...I don...\n Watching this movie made me think constantly; ...\n The Andrew Davies adaptation of the Sarah Wate...\n Its not Braveheart( thankfully),but it is fine...\n i found it highly intellectual and artistic in...\n I grew up with this as my all-time favorite fi...\n Humphrey Bogart clearly did not want to be in ...\n This film is really bad,so bad that even Chris...\n It is by far the most definitive film on the p...\n Frantic, somewhat mean spirited, infantile hum...\n Having finally been able to get the DVD of thi...\n (possible spoilers)<br /><br />Someone once as...\n This show is awful. How is George wanting the ...\n It's a great American martial arts movie. The ...\n \"La Maman et la putain\" is the beautifulest fi...\n This is a really dark movie. Noir indeed. The ...\n If you look at Corey Large's information here ...\n Charlotte Beal arrives at an isolated country ...\n Here he is. A new horror icon for the new mill...\n Oppenheimer was a GREAT series (it was the fir...\n Disappointing comedy-drama with sentimental co...\n I love this episode of Columbo. Maybe it's bec...\n It's a strange feeling to sit alone in a theat...\n John Hughes wrote a lot of great comedies in t...\n Where to even start? The horrendous acting? Th...\n <br /><br />I would highly recommend seeing th...\n I first saw this when it premiered more than t...\n The first question that springs to mind after ...\n We have reached the ceiling of implausibility ...\n I was at first disgusted with director Sun-Woo...\n Being a wrestling fan, movies about wrestling ...\n \"They All Laughed\" is one of those little movi...\n i'm not sure if it is available worldwide - bu...\n The numbers don't lie, 109 people have voted f...\n (This might have a spoiler)<br /><br />When I ...\n For all the Homicide junkies out there, this m...\n Sublime--perfect--profound--a true lesson on t...\n A nice, humorous mix of music hall (in the fir...\n I've seen tons of HK actioners, and this one i...\n This is a very amusing and sometimes quite cre...\n What was this supposed to be? A remake of Fish...\n Did anybody succeed in getting in this movie?<...\n There have been some funny movies about spirit...\n When George Sluizer was told he could direct a...\n This agreeably perverse and oddball early 80's...\n I am not one of those people that will walk ou...\n I have always wanted to see this because I lov...\n Latcho Drom, or Safe Journey, is the second fi...\n This is a romantic, albeit cheesy movie that i...\n Sadness was the emotion I felt, after the scre...\n Reading the other user comments, the review by...\n It's a bit difficult to believe that this came...\n Oh, dear lord.... They've turned what was a fa...\n James Joyce, arguably, could write some of the...\n Saw in on TV late last night. Yeah, I can hear...\n This film is replete with sentimentality, unpr...\n This is one of the few movies released about a...\n Where this movies differs from traditional Hol...\n This is a sad movie about this woman who thoug...\n On the eighth day God created Georges. But the...\n You know you're in trouble when John Cassavete...\n Julia Roberts obviously makes a concerted effo...\n I was pretty young when this came out in the U...\n This was truly the most painful experience I h...\n It ran from 1959-1973. Its more than its longe...\n This movie made my face hurt. I don't understa...\n A very good adaptation of the novel by amrita ...\n I thought this to be a pretty good example of ...\n When I saw the preview for this movie, I figur...\n What a fine film! Unfortunately, being 1947, t...\n Turner and friends are closing in on HBO for t...\n After seeing A Texas Tale of Treason, the meas...\n I loved this movie!!! The characters were peop...\n This relic of a short film starts with a teen ...\n Although my exposure to world cultures is limi...\n This is about as good as gone with the wind wa...\n the most \"spiritual\" film I have seen in a lon...\n A beautiful film, touching profoundly up the s...\n Veteran director and producer Allan Dwan, whos...\n We saw this at one of the local art movie thea...\n <br /><br />Dull Demi, going thru the motions....\n From the start this film was awful! Why was it...\n If you r in mood for fun...and want to just re...\n There is simply no use in trying to glorify an...\n Lazy movie made by a lazy director. The charac...\n While I don't claim to be any sort of expert i...\n I'll make this brief. This was a joy to watch....\n A very strange, disturbing but intriguing film...\n I have seen all the film interpretations of Ha...\n This Game is a good looking First Person Shoot...\n Cosimo (Luis Guzman) ends up in prison for car...\n I loved this movie, and I am one of the older ...\n Seeing that this movie was on the IMDB Bottom ...\n First let me say I'm not someone who usually c...\n I have seen most of John Waters' films. With t...\n I actually saw China O'Brien II before I ever ...\n This...thing. oh god this thing. i can't even ...\n I like this presentation - I have read Bleak H...\n As most other reviewers seem to agree, this ad...\n Women will like this movie better than men. Of...\n Worst movie I have seen since Gingerale Aftern...\n This movie is about a young scientist who crea...\n 'Thunderbirds' was an immensely popular Sixtie...\n While it would be easy and accurate to go into...\n Well, this is probably one of the best movies ...\n This was very funny, even if it fell apart a l...\n I guess my biggest mistake was to watch this r...\n OK, what to say about Actium Maximus...<br /><...\n Q.E.D. was a brilliant TV series and it truly ...\n An unbelievable plot, laughable characters, an...\n Little Dieter Needs To Fly is another in the r...\n This is a kind of movie that will stay with yo...\n I enjoyed Erkan & Stefan  a cool and fast sto...\n The idea of In the Name of the People is good,...\n Words can hardly describe it, so I'll be brief...\n The Five Deadly Venoms is a great kung-fu acti...\n In the 1980s in wrestling the world was simple...\n \"Sandra, the Making of a Woman\" is a standout ...\n We've all seen this story a hundred times. You...\n This grainy film has a cult following and one ...\n Oh, where are you going, my little one, little...\n I actually went to see this film in a theater,...\n What an absolute pile of pants. Having read Ch...\n A German freshman, Stefan hitch hikes to Paris...\n I don't know if I should be amused or insulted...\n \"A Town Called Hell\" (aka \"A Town Called Basta...\n This film, once sensational for its forward-th...\n I watched this movie because of Costas Mandylo...\n I'll be quick to address the matters of the fi...\n I just rented Blackwater Valley Exorcism becau...\n One of the best sitcoms to run on Indian telev...\n God I love this movie. If you grew up in the 8...\n When I first saw \"Before Night Falls\", Javier ...\n From the first 10 seconds of Pitch Black I was...\n I Remember That Hey Hey Fuss & I Saw The Jacks...\n Meryl Streep as Kate, a woman dying of cancer,...\n Going' Down To South Park is a 1hr long docume...\n I can sit through this movie once, but I doubt...\n Pretty lousy made-for-TV sequel to the Roman P...\n The name of this film alone made me want to se...\n I thought this movie was pretty good. Some par...\n When it came out, this was pretty much state o...\n I liked this comedy so much. Will Smith does n...\n Done on a spare change budget of twenty bucks ...\n One would think that a film about a young pers...\n I am never a big fan of Taiwan movie productio...\n Whew. What can be said about Gymkata that hasn...\n If you like subtle psychological dramas/thrill...\n Run away from this movie. Even by B-movie stan...\n If I didn't know any better, I would have thou...\n This is my favorite show. I think it is utterl...\n Wow...<br /><br />I picked this up at the loca...\n This feeble attempt at veering your typically ...\n In post civil war America the President, (Van ...\n Well another shootem up. Typical run around fi...\n This isn't a life-changing movie; it's not an ...\n I was in Blockbuster and I saw a film called \"...\n this movie made me watch Paul W.S. Anderson's ...\n Michael Feifer writes and directs this fictiti...\n Isabelle Huppert portrays a talented female pi...\n \"Why are there so many songs about rainbows, a...\n Thanks Jymn Magon, for creating Disney's 2 bes...\n I admit to being somewhat jaded about the movi...\n This is the only David Zucker movie that does ...\n In my opinion, the movie was laughable--bad di...\n Hulk Hogan and Zeus are horrible wrestlers and...\n The minute I started watching this I realised ...\n This show is not clever. That's basically what...\n Although I gave a rating of \"9\", my expectatio...\n I can give you four reasons to see this movie:...\n A superb and compelling drama about the hunt f...\n My name is John Mourby and this is my story ab...\n This was one of the dullest movies I have seen...\n This is a very entertaining film which follows...\n This TV film tells the story of extrovert Fran...\n I am so glad that i got a chance to see this r...\n Excellent film featuring Anthony Wong that cer...\n I'll keep the review of this program as short ...\n \"Dick Tracy\" is one of our family's favorites ...\n It's not the most well made slasher movies of ...\n If this movie would have been in English, all ...\n My wife and I saw every episode in this series...\n As Salinger's \"A Perfect Day for Bananafish\" e...\n This movie is awful. At the end of it you will...\n Is it just me or are most of the actors in thi...\n Every time I see a film like this I get sick t...\n The Battleship Potemkin was said to have been ...\n Take 4 couples whose relationships were alread...\n This is clearly a French film. It is about you...\n This lasted several years despite the late hou...\n This is an excellent stand-up DVD! Eddie Izzar...\n and quite frankly that just sums it up.<br /><...\n Anyone who has seen the piece of steaming smel...\n This horrendously bad piece of trash manages t...\n On the cusp of being insufferable. Somehow I s...\n 1975's MASTER OF THE FLYING GUILLOTINE is an a...\n I wouldn't dare say this film is better than t...\n I watched this movie on the grounds that Amber...\n Spoiler Alert I worked as an extra on this Lif...\n Like many a child born in the 1980's, I grew u...\n Released some months before the end of the war...\n \"Pixote\" is the one of most powerful, shocking...\n One thing i can say about this movie is well l...\n This was a blind buy used DVD. It totally kill...\n This movie is not the scariest of all time, bu...\n Yes this movie is obviously trying to be a Con...\n Hartley on low-key form: Martin Donovan, born ...\n This is quite possibly the worst sequel ever m...\n I am not so much like Love Sick as I image. Fi...\n An excellent performance by Alix Elias highlig...\n I must admit that I had my doubts about this m...\n The majesty of Ramin Bahrani's second feature ...\n Well,this movie is really \"PLUMPED\" HAHA Get i...\n This is a low budget film with a cast of unkno...\n Someone has already mentioned \"being at the ri...\n I believe that war films should try to convey ...\n This unintentionally amusing mid-80s TV movie ...\n You don't have to be a tamilian to appreciate ...\n This is one of the most awful movies I've ever...\n At first I couldn't tell if it was an art film...\n 17/02/09 \"More\" (1969) Dir: Barbet Schroeder <...\n Welcome to Collinwood is a lot of things, but ...\n \"The Falcon & the Snowman\" offers some of the ...\n I have yet to watch the first entry in this se...\n i think this show is awesome!!! i love it, and...\n Just been on sci-fi channel UK, 5th July, its ...\n This movie was lame, lame, lame. What a build ...\n \"Gaming? Nicotine? Fisticuffs? We're moving in...\n Just an hour ago I finished watching this my f...\n I didn't think this was as absolutely horrible...\n After reading about this documentary, I rented...\n This version of \"The Magic Flute\" is not only ...\n Ken Loach showed the world the down-and-out fl...\n First of all, I'd like to say I'm just an amat...\n wow! this was a great movie! i just got it fro...\n This movie has always been my favorit Disney m...\n One of the best of the 'kitchen-sinks'. Fantas...\n Seen this one in a Sneak Preview yesterday and...\n The Book of Life was rather like a short snack...\n I wondered why John Wood was not playing Dr. F...\n Still love it 17 or so years after the first t...\n Red Skelton was still another major star who m...\n I saw it, I agree with him 100%, but I didn't ...\n this is a TV movie based on the murder of Mart...\n Normally I would never rent a movie like this,...\n Gillian Holroyd (Kim Novak) is a witch. Secret...\n I almost called HBO and demanded my money back...\n ...but other than that, there's almost no rede...\n I have viewed this cartoon as a child, a fathe...\n If one would see a René Clair film with the ki...\n Treat Williams reached a degree of stardom wit...\n I'd never thought that I would be caught sayin...\n i'm being generous giving this movie 2 stars. ...\n `An Itch In Time' is one of a string of home r...\n This movie is excellent. I found it very inter...\n Let me first start out by saying 1 out of 10 i...\n I love low budget independent films and had hi...\n I am normally skeptical about watching films o...\n In my personal opinion i think this is the gre...\n Beautiful, emotional, and subtle. I watch this...\n I am surprised by the relatively low rating th...\n The TV guide calls this movie a mystery. What ...\n This is easily the best cinematic version of W...\n Since Crouching Tiger Hidden Dragon came along...\n Hi Y'all,<br /><br />I bought this on DVD from...\n The first 1/3 of this movie I loved and though...\n The zenith of two brilliant careers. David Lyn...\n Kept my attention from start to finish. Great ...\n I saw this movie many years ago and it has nev...\n Retro Puppet Master is complete and utter CRAP...\n This film was probably inspired by Godard's Ma...\n Some genre films need to be dressed up. This o...\n The Man (Gaston Modot) and the Young Girl (Lya...\n Come on, let's get real. The Knights of Christ...\n Fritz Lang's German medieval saga continues in...\n I loved this movie! It was adorably touching a...\n Bad. Bad. Bad. Those three lines sum up this c...\n I have read the last comment made on this film...\n How awful is it? Let me count the ways: 1) It ...\n (Some Spoilers) PRC quickie that has J. Carrol...\n (Some spoilers) I have not read the James M. C...\n I don't think I've ever been so bowled over by...\n For me this movie was a disappointment. Someho...\n Kirstie Alley, looking a bit slimmer, but only...\n Interesting twist on the Vampire yarn - fast, ...\n I had never thought the standard of Yashraj fi...\n Assuming this won't end up a straight-to-video...\n I don't remember a movie where I have cared le...\n Little Mosque is one of the most boring CBC co...\n The Man with the Golden Arm was one of the fir...\n The one thing I really can't seem to forget ab...\n Five years on from the Tenko survivors returni...\n The year 1934 was when Shirley Temple played t...\n I was lucky enough to have seen this on a whim...\n One of the first things I noticed that allowed...\n Idiots go camping and act like idiots before t...\n Aparna Sen's 15 Park Avenue is a film about na...\n The preposterous premise of this flick has to ...\n Manna from Heaven is heavenly. This is a movie...\n Ugh. This is a terrible film, full of disastro...\n Being a gay man who lived through the time per...\n I cannot believe how perfect this movie is. Gr...\n This movie seems to have a lot of people sayin...\n Forget about Donnie Darko. I open with this be...\n How this movie escaped the wrath of MST3K I'll...\n We all create our own reality, or do we? That ...\n Keys to the VIP, an original series by the Can...\n S. Epatha Merkerson shines as Nanny in this to...\n All I can say is I really miss this show!! My ...\n The Second Woman is about the story of a myste...\n If he wanted to be accurate, he should have ch...\n I have yet to watch STARCRASH (1979) - that no...\n Pat O'Brien had his best role ever as Notre Da...\n This movie rates as one of my all time favouri...\n I felt I had to add a comment after seeing the...\n The story isn't very strong. Don't expect a \"B...\n Vaguely reminiscent of great 1940's westerns, ...\n On the 26th of September 1983 a short dumpy 60...\n When a film has no fewer than FIVE different t...\n A delight mini movie, a musical short based on...\n \"The Puffy Chair\" was a supreme waste of 84 mi...\n OK, let me again admit that I haven't seen any...\n This is just a bad movie. With what seemed to ...\n When Hollywood is trying to grasp what an \"int...\n A unique blend of musical, film-noir and comed...\n First of all - I hardly ever watch Swedish mov...\n I first saw this movie in my plays & playwrigh...\n I am giving this movie Vampire Assassins a \"2\"...\n Nynke is a classy filmed movie in the same sty...\n Really no reason to examine this much further ...\n Collusion Course is even worse than the typica...\n Clint Eastwood plays a wounded Union soldier f...\n I was extremely amused to read some of the bad...\n The literary genius of Vladimir Navokov is bro...\n After reading the comments to this movie and s...\n The lousiest of all lousy Jaws rip-offs was re...\n This is a film about passion. The passion it d...\n It may have not been up for academy awards and...\n Now this is what I'm talking about. Finally, a...\n As a writer I find films this bad making it in...\n The movie Night Crossing captures the feelings...\n This thing is horrible. The Ben Affleck charac...\n This is far the most worst film I've seen this...\n I was never a big fan of television until I wa...\n What a self-indulgent mess! Duncan Roy's film ...\n A beautiful postcard of New York. The thing I ...\n This film is terrible - honestly. The acting i...\n This movie was different from most of Jimmy Ca...\n Bubbling just beneath the surface of Showtime ...\n First off, I agree with quite a bit that escap...\n The Film must have been shot in a day,there ar...\n This is the first time I ever saw a movie with...\n This was one film i wanted to watch always whe...\n (There are Spoilers) Homicidal nymphomaniac ho...\n Ugly shot, poorly scripted and amateurishly pa...\n A difficult film to categorize. I was never gi...\n This movie was one of the worst I have ever se...\n This movie is an almost forgotten gem from 197...\n \"Go Fish\" garnered Rose Troche rightly or wron...\n honestly I don't know why this show lasted as ...\n I was lucky to see this sequel before the orig...\n I thought I was going to watch a scary movie.....\n The Priyadarshan/Paresh Rawal combo has been g...\n this is complete crap do not watch the main ch...\n Naturally Sadie sucks big time, I have no idea...\n If you think about it, it's nearly unbelievabl...\n This movie is a mess, but at least it's not pr...\n i just get exited when the movie start(because...\n Minor Spoilers<br /><br />In Chicago, Grace Be...\n In a nutshell the movie is about a gang war in...\n The great Yul Brynner, who won an 'Oscar', and...\n Acting This film is a very well acted film. I ...\n This movie was okay, but it certainly defeats ...\n The only thing that The First Power really has...\n \"The Man In The Attic\" is a movie set in the 1...\n Being from a small town in Illinois myself, I ...\n The past creeps up on a rehab-addict when he r...\n This is just flat out unwatchable. If there's ...\n Cute idea to have Dionne Warwick do the song v...\n I have to admit I've caught this one a few tim...\n This movie had a IMDB rating of 8.1 so I expec...\n This movie was terrible. The acting was lame, ...\n \"How many ppl know about this?\"...\"Lets keep i...\n I've watched it plenty of times and I'm planni...\n I saw the original rough screen showing 4 time...\n I liked this movie I remember there was one ve...\n In spite of many positive reviews this is a ve...\n The movie has several story lines that follow ...\n Paul Mazursky misfires on this film. The writi...\n If you loved \"Pulp Fiction\" and like hand held...\n The film transported everyone back to October ...\n This is fairly typical for the Sci-Fi Channel:...\n This film was both entertaining and thought-pr...\n I remember seeing the trailer for this film an...\n When I was younger, I liked this show, but now...\n The romance of the movie, which is also its ma...\n Alright, I got passed the horrible acting. I g...\n Kareena Kapoor in a bikini hmmmmmmmm.<br /><br...\n I read all of Nancy Drew as a preteen and coll...\n What could have been an excellent hostage movi...\n We have all been asking ourselves \"why don't t...\n This movie is one of the most memorable films ...\n SPOILERS Sex huh? It's one of the most basic p...\n After having seen a lot of Greek movies I feel...\n A friend of mine once rented this, thinking si...\n Apparently, this is what happens when a direct...\n I am a fan of the Nightmare series but this on...\n This mini-series is actually more entertaining...\n (contains slight spoilers)<br /><br />It's int...\n What a dreadful film this is. The only reason ...\n A charming romantic comedy. The plot is a litt...\n This film was screen as part of the 2007 Sydne...\n This movie was a waste of time. It looks nice,...\n OK so a 10 for a 2 1/2 star movie you ask?...w...\n I'll be honest, this is one of the worst movie...\n This is one of the best movies to come from Bo...\n This Canadian \"movie\" is the worst ever! Stunn...\n I'm Mike Sedlak. I co-wrote the score for this...\n The one thing that occurred to me after watchi...\n This is a fact that this is the 1st Saudi feat...\n Computing . Can there be anything more boring ...\n I am a film directors nightmare... especially ...\n Meet Cosmo (Jason Priestley), a nerdy young bo...\n Rita Hayworth as Rusty Parker is the COVER GIR...\n This movie sucked. From beginning to end it wa...\n John Leguizamo's one man shows are hit or miss...\n The first thing I thought after watching \"Myst...\n The only way to get anything out of this film ...\n \"Graduation Day\" - <br /><br />i bought this m...\n I'll come clean. The only reason I even found ...\n Lady and the Tramp II is very colourfully anim...\n I have to start saying it has been a long time...\n Girlfight is a story about a troubled teen nam...\n This film is good in it's genre and that genre...\n With the Terrible acting, the awful dialog, th...\n Inside I'm Dancing (Rory O'Shea Was Here)is th...\n i was given the book version of Kazaam for my ...\n Was'nt really bad for Raw's first PPV of 006. ...\n I have to agree with what many of the other re...\n Resident Evil:code veronica is a great well ma...\n This movie was obviously made with a very low ...\n Well, it is a Monogram quickie from the dreade...\n I used to always love the bill because of its ...\n Footprints is a very interesting movie that is...\n I expected a bad movie, and got a bad movie. B...\n Even though this was a disaster in the box off...\n I jotted down a few notes here on THE FIRST PO...\n There have been very few films I have not been...\n Return of the Boogyman is a dreadful movie whi...\n I will admit that this movie was awful, cheesy...\n High school female track star dies of a blood ...\n The movie that i am going to review is a littl...\n On top of the fact that Skylar is a complete d...\n Jimmy Cagney races by your eyes constantly in ...\n Homegrown is one of those movies which sort of...\n Hilarious, clean, light-hearted, and quote-wor...\n I'm not sure this review contains spoilers, bu...\n Although the beginning suggests All Quiet on t...\n Impactful film of four city slickers in crisis...\n It's a bad movie, it seems like there is only ...\n Noni Hazlehurst, Colin Friels, Alice Garner, C...\n The only good thing of this movie is its final...\n Dogtown and Z-Boys<br /><br />Summary: Dogtown...\n I've seen this movie today for the first time ...\n Funny, yes. A Freleng classic! To watch Sylves...\n Oh, there are many worse Wayne movies. This mo...\n At first I thought that this one was supposed ...\n A bit quirky and bordering bad taste; but inte...\n First I want to clarify that the average user'...\n Good to see I'm not the only person who rememb...\n does anyone know where i could get my hands on...\n Trot out every stereotype and misrepresentatio...\n In watching Enterprise for the first time, as ...\n This movie is brilliant. The comments made bef...\n Gulliver's Travels is, at the beginning, a sat...\n Priyadarshan- whenever a person heard his name...\n I found this show really late at night, and ga...\n Much to her adult children's chagrin & nearly ...\n The banner says it all, this is one really bad...\n This movie was very disappointing, and except ...\n Oh man, what was Sam Mraovich thinking? What w...\n Saw the movie last night w/o knowing anything ...\n I was very curious to see this Wajda-Depardieu...\n The second live action outing for Asterix is f...\n After watching the first movie in BCI's new Az...\n The emotional impact of this movie defies word...\n A film without conscience. Drifter agrees to k...\n I remember that i was a child when i first saw...\n Way too many Christian films become centered a...\n When Kristy Swanson gets an attack of the guil...\n Gotta add a comment to this one!!!<br /><br />...\n I saw this film yesterday on TV. I had just fi...\n Strangler of the Swamp was made by low budget ...\n for everyone who has read this book, Fanny Pri...\n I saw this film a week ago and I had to persua...\n This film is about a man who has been too caug...\n How wonderful. Yet another movie about America...\n First, what I didn't like. The acting was not ...\n I usually enjoy Loretta Young's early movies: ...\n Ah, Hitchcock! It's hard to find a bad Hitchco...\n This movie shows what you can create if you ha...\n Being a great fan of horror, especially Asian ...\n As a big fan of David Mamet's films and plays,...\n I watched this today, partially attracted to t...\n This film is fantastic as it explores storytel...\n This version of \"Moby Dick\" insults the audien...\n This was the third Muppet movie and the last o...\n The only real highlight in the movie is the de...\n <br /><br />When I unsuspectedly rented A Thou...\n Oh Geez... There are so many other films I wan...\n Edward Furlong and Christina Ricci are an exce...\n Well, 1st off I haven't seen \"Silence of the L...\n A fascinating slice of life documentary about ...\n Shecky, is a god damned legend, make no mistak...\n Lifeforce is certainly one of Tobe Hooper's be...\n I rented Boogie Nights last week and I could t...\n i saw this film over 20 years ago and still re...\n A photographer in the small city of Gunsan in ...\n His choice of films, the basic 'conceit' of th...\n This was a very funny, fast paced movie. I wat...\n I can only echo the praise of the other review...\n This is the best movie I`ve ever seen !!! Thom...\n I love this freekin movie! Walsh is a true mas...\n A remake of a successful movie can be a tricky...\n That film is absolutely fantastic!! If you wat...\n I laughed twice watching this movie and in cas...\n At first I didn't think I would like this movi...\n Good times working with the Quiroz Brothers, a...\n If you love The Thin Man series, you will love...\n Okay, like many other such films, spawned out ...\n Hello again, I have been thinking about this m...\n This second full-length Lone Ranger feature do...\n I might not be a huge admirer of the original ...\n We have moved far beyond this tentative foray ...\n When it comes to the erotic genre, I'm lucky t...\n Before I start to tear apart this movie, mark ...\n this movie simply does not work. The action sc...\n This incredibly overrated anime television ser...\n \"Clubbed\" is yet another 'will-this-do?' entry...\n **** SPOILER WARNING ****<br /><br />Absolutel...\n Went looking for this movie after i read Tom C...\n One of John's Funniest, Eugene Levy is great i...\n This movie is just a lot of fun. I've seen it ...\n Brilliant film! I am sorry to say that it rese...\n Usually I love Lesbian movies even when they a...\n When I first watch this series, the impression...\n How a director of Altman's experience could ev...\n Would you like to know why French and Italians...\n This film was so disappointing. From the blurb...\n Jim Henson always seemed to put out wonderful ...\n I really enjoyed this movie. The humor was a b...\n I can see the guys doing the budget preparatio...\n This is a movie about people receiving a love ...\n Coming from the \"druggie\" generation, I though...\n This film is truly execrable in all department...\n This movie was messed up. A sequel to \"John Ca...\n After all these years I still consider this se...\n Jason Lee does his best to bring fun to a sill...\n This movie deserved better. Mike Judge's satir...\n OK, so I am an original Wicker Man fan and I u...\n Fairly funny Jim Carrey vehicle that has him a...\n I can't believe that this movie even made it t...\n Already his first claim, that desires are alwa...\n This film very succeed in the Film festival in...\n This movie, while seemingly based off of a mov...\n A little while ago, I stumbled upon this DVD w...\n Cosimo (Luis Guzmán) is told in prison about a...\n This movie was a pleasant surprise for me. In ...\n I must admit that I have been a sucker for Sam...\n This film was sourced from my friends mum who ...\n This movie was bizarre, completely inexplicabl...\n Just the fact that the cover is a drawing, lik...\n William H. Macy is at his most sympathetic and...\n I was shocked to read all these wonderful comm...\n Director/screenwriter Diane English's 2008 upd...\n This is the worst movie of all-time, no doubt,...\n I tend to like Historical (period) films and g...\n There can be no worse criticism for a movie th...\n I liked this movie,,cute and funny.I found thi...\n i was very impressed with this production on l...\n When you see this movie you begin to realise w...\n Sorry if I disappoint anyone about what I am a...\n This movie wants to elaborate that criminals a...\n Waters's contribution to the world of cinema h...\n I'm not prone to ranting and my expectations w...\n I remember watching this film, thinking was so...\n Raising Victor Vargas is a movie you definitel...\n The movie was not a waste except for some bori...\n Like a lot of films from the early sounds days...\n Superman and the Mole Men is quite possibly Su...\n This movie should be shown to film school stud...\n I have watched quite a few Cold Case episodes ...\n This period melodrama is one of Griffith's ear...\n ...in our household. Like everyone else who ha...\n The acting is some of the worst I've ever seen...\n It's rare to see film that strikes out in ever...\n The episodic version of Robert Heinlein's Star...\n Disclaimer: During my ventures into foreign ci...\n UC 0079, the One Year War is almost at an end....\n When you pick a movie I hope one factor you wi...\n It's difficult to decide whether this movie su...\n This film got less attention than \"League of T...\n I don't normally give movies a \"1.\" Although I...\n I've seen this movie, when I was traveling in ...\n I was first introduced to John Waters films by...\n The first season told pretty much how all elem...\n I'm going to recommend putting this one in the...\n Six months after high-school sprinter Laura di...\n Just got into viewing program for the first ti...\n Once again, the posters lied to me.<br /><br /...\n This version of Anna Christie is in German. Gr...\n De Grønne slagtere or The Green Butchers as it...\n This is a great movie that everyone should see...\n There's only one thing I'm going to say about ...\n Dear Readers,<br /><br />With High Expectation...\n I never understood why some people dislike Bol...\n Only in the Hollywood audiovisual fiction worl...\n This is one of those unfortunate films that su...\n I picked this film up based on the plot summar...\n I normally have no problem walking away from a...\n Spencer Tracy and Katherine Hepburn would roll...\n A heartwarming film. The usual superb acting b...\n Ultra-grim crime drama from Pou-Soi Cheang, th...\n If I were to pitch this movie idea to some Hol...\n **MAJOR SPOILERS** Watchable only for the acti...\n This film brought a whole new meaning to that ...\n I have wanted to say this since I first saw th...\n Whenever I see most reviews it's called 'a mis...\n The reviewer in Variety said this was \"overwri...\n I reflect back to the days when I held my boyf...\n In reviewing this film I can only go by my exp...\n Akin's prize-winning 2004 movie Head-On/Gegen ...\n Mario Racocevic from Europe is the only user w...\n Zero day has a purpose and this is not simply ...\n When I first saw \"A Cry in the Dark\", I had no...\n A young woman leaves her provincial life for a...\n Mel Gibson's Braveheart was a spectacularly ac...\n This was the second entry in the regular Colum...\n how can you take her hard-living, glamorously ...\n In Sri Lanka, a country divided by religion an...\n Not good. Mostly because you don't give a damn...\n Some time in the late 19th century, somewhere ...\n I've always enjoyed seeing Chuck Norris in fil...\n I've recently seen An zhan. Not because it was...\n Little Vera is the story of a Russian teenager...\n I remember seeing this at my local Blockbuster...\n A very engaging documentary about Scottish art...\n I saw this at the BendFilm Festival Friday ami...\n The Movie is not bad in itself...till you see ...\n A terrific, fast-paced screwball-like comic st...\n For anyone who wishes to get an impression of ...\n Yeah, that's right. If I were to ask my friend...\n The clichéd Polynesian males drink, fight and ...\n *MANY MANY SPOILERS IN THIS REVIEW* This movie...\n Why am I so convinced there's actually another...\n Going into this I was expecting anything reall...\n Watchers is a fun movie if it's not taken too ...\n I am fifteen years old and have seen thirty-th...\n Surviving Christmas (2004) Ben Affleck, James ...\n I just saw \"Eagle´s wing\". I do not really kno...\n This movie surprised me! Not ever having heard...\n Overall, a well done movie. There were the par...\n And look how a true story, \"... with a little ...\n Kill the scream queen may sound like a good sl...\n My teacher did this movie. It's a new beginnin...\n This movie is the first of Miikes triad societ...\n After watching Ingmar Bergman's Skammen, I had...\n The mind boggles at exactly what about Univers...\n This is another film where the cinematography ...\n It's been close to ten years since I've seen e...\n Eugene O'Neill's 4 and a half hour 1927 play b...\n The release of TARZAN THE APE MAN, in 1932, ca...\n \"The Last Big Thing\" is a wonderful satirical ...\n Don't get me wrong, I love the TV series of Le...\n This movie has everything you want from an act...\n I watched this show and i simply didn't find i...\n Michelle Rodrigez was made for this movie, whe...\n Ok so I was bored and I watched it all the way...\n !!!!! POSSIBLE SPOILER !!!!!<br /><br />You`d ...\n I have yet to see a film with Nolte in it that...\n Another comment about this film made it sound ...\n this dolph lundgren vehicle is a fun die hard ...\n Charles \"Chic\" Sales is absolutely terrific as...\n How do you know if a movie is good or not? It ...\n Story about three eclipse (maybe even Indigo, ...\n I watched this film, along with every other ad...\n \"Kolchak\" was a TV series that really didn't f...\n Some will say this movie is a guilty pleasure....\n I rented this movie because it falls under the...\n This film was bad because there was nothing in...\n When I first watched Flatliners, I was amazed....\n This was a funny movie. Just having seeing the...\n Obsessed!!!!! I have every season of Gilmore G...\n What attracts a man to military service? What ...\n A sexually obsessed chef leads a duplicitous l...\n I loved this film, the audience I was part of ...\n \"Panic in the Streets\" is a fairly unknown lit...\n Clossius says that \"Baltic Storm\" is banned in...\n This movie has inspired me to be a better pers...\n Shohei Imamaura's Black Rain was released in 1...\n A wonder. My favorite film. The most important...\n First off, anyone looking for meaningful \"outc...\n I finally watched these episodes in 2008 and I...\n I would have to say this is a great movie. <br...\n The first season was great - good mix of the j...\n seriously what the hell was this movie about,,...\n This is a film exploring the female sexuality ...\n This movie tries hard, but completely lacks th...\n Worst movie on earth. I don't even know where ...\n The best Modesty Blaise movie I have seen so f...\n In the Hollywood west those trail hands were a...\n Those familiar with the two previous Cube film...\n I caught this Cuban film at at an arthouse fil...\n In the mountains of Japan, forlorn young artis...\n Coinciding with the start of the baby boom, th...\n I pretty much liked every character on this sh...\n This movie embodies the soul of modern \"elite\"...\n See Three Colors: Blue and Three Colors: White...\n ... or an audience. A quick recap....<br /><br...\n This movie is a little unusual in that it's go...\n Went to Wal-Mart and found this film on DVD an...\n Fantastic documentary of 1924. This early 20th...\n Low budget horror about an evil force. Hard to...\n Simply put, I was amazingly disappointed. I'm ...\n If you have enjoyed the Butterfly Effect, Donn...\n A recent re-issue of the French crime film (or...\n I've seen the previews everywhere before decid...\n This was a great movie with a good story. My c...\n Admittedly, I tuned into this in the hopes of ...\n I read a couple of good reviews on this board ...\n The legendary Boris Karloff ended his illustri...\n This is a gem. As a Film Four production - the...\n ~~I was able to see this movie yesterday morni...\n There are a lot of highly talented filmmakers/...\n THE ITALIAN is an astonishingly accomplished f...\n I was delighted to finally see the release of ...\n A toothsome little potboiler whose 65-minute l...\n The idea of young girl, who gets pregnant at t...\n This movie has been made by one of the most ab...\n I am frankly surprised how little has been don...\n SERIES 1<br /><br />As the UK eagerly awaits t...\n Laurence Olivier, Merle Oberon, Ralph Richards...\n When evaluating documentaries that focus a rel...\n I thought I was going to watch another Friday ...\n This is one of the best made movies from 2002....\n Yep. Those of my generation who grew up watchi...\n All i can say is that, i was expecting a wick ...\n this is really films outside (not in a motel r...\n Excellent film dealing with the life of an old...\n I know one is not supposed to comment on other...\n Seeing this movie always reminds me of what I ...\n The acting made you feel like you were watchin...\n I have to agree with all the previous commente...\n Until today I had never seen this film. Its wa...\n This is the first American film I have seen at...\n Somewhere, buried very deep inside this film i...\n This movie packs a punch. There are a few ever...\n Some people thought this was funny because the...\n It is said that David Lynch's films and shorts...\n The film begins with a dowdy housewife (Norma ...\n For the initial 20 minutes or so (I was watchi...\n One of the best TV shows out there, if not the...\n Joan Fontaine is swept off her feet by the sua...\n I've been a huge fan of the Cky videos, Jackas...\n Serious HOME ALONE/KARATE KID knock off with e...\n I LOVED this movie! I am biased seeing as I am...\n This movie deals with one of the most feared g...\n I consider this a breathtaking but deceptive f...\n The arrival of White Men in Arctic Canada chal...\n New York City houses one man above all others,...\n The Forgotten (AKA: Don't Look In The Basement...\n This UK psychological thriller is known in the...\n You know? Our spirit is based on that revoluti...\n Not sure I've ever seen a black comedy from De...\n The Evil Below starts on 'The Straits of San S...\n When I was at the movie store the other day, I...\n Drew Latham(Ben Affleck)is determined not to b...\n Beginning with the poster (featuring only Morg...\n I don't think anyone sitting down to view this...\n A warning to you not to be seduced by the name...\n Preposterous sequel stretches credibility to a...\n \"The New Twenty\" is one of the worst films I h...\n Guys and Dolls is a movie itching for a remake...\n Fatal Error is a really cool movie! Robert Wag...\n Seriously, I'm all for gooey romantic comedies...\n This is probably the best television show I've...\n The really sad thing is that this was supposed...\n The fact that this film was distributed free w...\n This is indeed a spectacularly bad film, but i...\n I enjoyed The Night Listener very much. It's o...\n This movie was yet another waste of time... Wh...\n \"Western Union\" is something of a forgotten cl...\n The original Australian Kath & Kim is brillian...\n The very first talking picture has returned fr...\n On the night of his bachelor party, Paul Colem...\n My family and I normally do not watch local mo...\n I am a lover of bad movies. I own \"R.O.T.O.R.\"...\n 'The Mother' is that extraordinary piece of fi...\n I was but a babe in arms when George Lucas was...\n I cringed when I heard the first canned laugh ...\n Earth Final Conflict began like a new world, a...\n Anyone who gives this movie less than 8 needs ...\n This movie is one of the worst movies I have e...\n For many years, Samuel Goldwin tried to bring ...\n After you have seen enough movies, there is ve...\n I cannot stand this show! Has there ever been ...\n Tweety is sent in his cage on a train by his o...\n Since I first saw Anchors Aweigh in 1945, view...\n By many accounts, Stu Ungar was not a very nic...\n all the acting done in the first season has be...\n In 1970, feminists invaded the 'Miss World' be...\n Having not seen the previous two in the trilog...\n I've never actually seen this film but can tel...\n Pauline Kael gave this movie a good review but...\n ***SPOILERS*** ***SPOILERS***<br /><br />This ...\n Yes, a tap dancing horror thriller........with...\n There is no reason to watch this film.<br /><b...\n this movie isn't that great...at all but it's ...\n I desperately need this on a tape, not a DVD, ...\n The stranger Jack (Matthew Lillard) arrives in...\n This is a superb film and was immediately put ...\n Oh boy! I really trashed Manhunt in Space. I t...\n Kevin Kline and Meg Ryan are among that class ...\n The only good thing about this unfunny dreck i...\n I went to see this with my wife and 3 yr old s...\n I have been wanting to see cut since the day i...\n If there's one genre that I've never been a fa...\n This movie makes a statement about Joseph Smit...\n There are many, many older movies that deserve...\n First of all, write the script on a napkin. Wh...\n Okay this is gona be short and sweet review......\n This is one of the periphery stories told by t...\n Opulent sets and sumptuous costumes well photo...\n Soderbergh is a fabulous director, but nothing...\n Sorry about the \"extremely clever\" summary phr...\n The Dinner Party could quite possibly be in my...\n At first glance, this film looks like the Keif...\n This move was on TV last night. I guess as a t...\n It's dreadful rubbish. I liked 'How Do You Wan...\n \"I know I'm human. And if you were all these t...\n La Teta y la Luna is a symbolic spain film. Ev...\n This movie is a great way for the series to fi...\n When one considers that Carson McCullers is on...\n This film is one of the more risqué black and ...\n Sunday July 16, 8:00pm The Castro, San Francis...\n My wife and I enjoy bad science fiction movies...\n I must warn you, there are some spoilers in it...\n \"The Notorious Bettie Page\" (2005) <br /><br /...\n I saw this recently on a faded old VHS tape, a...\n Although I haven't seen it yet, I know that Ch...\n I'm surprised at the comments from posters sta...\n Barbra Streisand is a tour de force in this Ho...\n This movie had me going. The title was perhaps...\n the intention the directors has for this films...\n those people,who told me\"this movie is good\"-s...\n Not too bad entry in the series, heavily ladle...\n This program is really overrated. A detective ...\n As a young teenager at the time, Airwolf was c...\n I viewed the original Outer Limits in real tim...\n While thinking of \"The Great Escape\" I allowed...\n This movie was very funny with just a bit of g...\n Honestly, I don't really understand why there ...\n Given the subject matter of drug addiction Dow...\n This movie is hilarious. The problem is that i...\n Steve Biko was a black activist who tried to r...\n Storyline: Max von Sydow's voice-over narratio...\n I do miss the company Vestron, they sure had t...\n Most definitely the worst Columbo ever dreamt ...\n with a title like this, you know not to expect...\n You don't have to spend much time watching thi...\n Far richer in texture and character than even ...\n This film should be called adventures in Cinem...\n The premise for this movie is simple and so is...\n OK..you people need to settle down! This movie...\n I was surprised, \"Once More, My Darling\", had ...\n Dr Mordrid is terrifying. I would not recommen...\n This, for lack of a better term, movie is lous...\n For those of you who have no idea what Bug Jui...\n Upon renting this, I wasn't expecting to be bl...\n Eric Bogosian gives as great a performance as ...\n This film is enjoyable if you like poverty row...\n I saw this movie with low expectations and was...\n Sure, I like some indie films. A lot, actually...\n I'll get to the movie in a minute. First, some...\n Mike Judge's Idiocracy is an interesting film,...\n Episode No. thirteen of the fanciful (excuse t...\n My Take: A tired formula Christmas comedy. The...\n Taking over roles that Jack Albertson and Sam ...\n I was about thirteen when this movie came out ...\n Oh yeah! Jenna Jameson did it again! Yeah Baby...\n An elite American military team which of cours...\n This is probably the second best of the Death ...\n The true story of a bunch of junkies robbing a...\n This is only related to the first movie by the...\n HOLES is not your average Disney stuff- it's v...\n Sydney Lumet hasn't had a box office hit in 20...\n If you have a chance, see this Russian(how sho...\n The film, Heaven's Gate, was a good view, alth...\n Saw this film ran in the wee hours on TCM. Sev...\n After Harry Reems' teenage girlfriend is raped...\n Carla Gugino literally melts the screen in thi...\n question: how do you steal a scene from the ex...\n The first half hour of the movie had a steady ...\n First the premise stinks...little boy likes to...\n My friends and I have often joked about movies...\n I wish kids movies were still made this way; d...\n I find I enjoy this show, but the format needs...\n I dunno what the hype around this is... This i...\n Not even Timothy Hutton or David Duchovny coul...\n Supreme Sanction is a movie about a female ass...\n This rip off of the 1984 hit \"Gremlins\" is qui...\n I usually like period films but this one just ...\n I wanted so much to enjoy this movie. It moved...\n Many of the American people would say...What??...\n From the pen of Richard Condon (The Manchurian...\n One of the most common entries in the 'goofs' ...\n They prove that the cops, when they can't find...\n i'm not even sure what to say about this film....\n Jack, Sawyer and Sayid swim to the boat and fi...\n I generally won't review movies I haven't seen...\n Death Camp Opera: Right Here, Right Now!<br />...\n (David H. Steinberg)'s script seemed initially...\n It's hard to tell if Noonan and Marshall are t...\n I cant help it but i seem to like films that a...\n Unless you're interested in seeing 2 hours wor...\n With awful movies like this one being even con...\n I saw this film on True Movies (which automati...\n In this Dream-Come-True, I found myself loving...\n While many people found this film simply too s...\n This is one of the first and best Columbos, st...\n I have bought the DVD of this version to compa...\n An overblown melodrama typical of its period (...\n As a study of the frailties of human nature in...\n Incredible documentary captured all the frenzi...\n This film, released in 1951, has the usual ele...\n I liked this movie very much because it is a t...\n I seriously can't believe Tim Burton and Timur...\n This movie maked me cry at the end! I watch at...\n I sympathized with the plight of the first man...\n THE SCREAMING SKULL (1 outta 5 stars) This mov...\n Just imagine what school would have been like ...\n \"Committed\", as in Heather Graham being COMMIT...\n A couple of friends and myself visited the vid...\n Hybrid starts as water treatment planet securi...\n This is one of the best looking films of the p...\n I want to say that I went to this movie with m...\n I'm actually surprised at the amount of good r...\n The directors cut version, which was the one I...\n First off, I'm in the U.S.<br /><br />When I f...\n Bromwell High is nothing short of brilliant. E...\n \"I fear you speak upon the rack, where men enf...\n The directing behind this film was fantastic f...\n I'd love to give Kolchak a higher rating but t...\n In fact, these young people were so distastefu...\n I stumbled across this film while channel surf...\n I had a VERY hard time sitting through this fi...\n While the movie has its flaws, it brings to li...\n In fact, parts of it I liked a lot. It had som...\n Ed Wood is rolling over in his grave. He could...\n a hilariously funny movie! of course u gotta h...\n Wow, pretty amazing that something this bad co...\n This movie was one of those movies where it co...\n This film fails on every count. For a start it...\n I guess if you are into the sci-fi and horror ...\n I would like to say that unlike many of the pe...\n From 1996, first i watched this movie, i feel ...\n When Stanwyck's husband-to-be is murdered on t...\n this movie is such a good movie shah ruck khan...\n This movie was the beatliest mormon movie made...\n Do the writers that conjure up these type of \"...\n OK first of all the video looks like it was fi...\n Salvage: 4 out of 10. Groundhog Day meets a Ch...\n \"Son you must stop the experiments I have star...\n This trio of 30-minute short films on gay-rela...\n I am a huge Gone With the Wind fan, and I read...\n This film is too skeletal. It's a fairly low-b...\n I saw this film on the History Channel today (...\n Looking for proof that real life is more enter...\n I saw this film when it first came out in 1978...\n First, This movie was made in 1978. So that te...\n Just like most people, I couldn't wait to see ...\n This is one of the funniest movies I have seen...\n Cute and playful, but lame and cheap. 'Munchie...\n I happened upon this flick on a rainy Sunday, ...\n I can't really think of any redeeming features...\n I recently watched this movie because I'm a bi...\n This film is absolutely awful, but nevertheles...\n With lots of sunshine, gauzy light and shadow ...\n This movie is one of the worst movie i have ev...\n Antonioni's movies have aged not well. What al...\n This is not \"direct cinéma\", as a matter of fa...\n Poor Jane Austen. This dog of a production doe...\n This is the definitive movie version of Hamlet...\n The film is a great watch very thoughtful.I be...\n While watching BLACKWATER VALLEY EXORCISM, I e...\n One of those films that I happened across thro...\n This is a little-seen anti-war film that has b...\n Just get it. The DVD is cheap and easy to come...\n Honestly, I was disappointed in \"Expiration Da...\n Oh boy! Oh boy! On the cover of worn out VHS h...\n Sorry Randy. I love your comedy but in this ca...\n I'll be short and to the point. This movie was...\n I chose to see this movie because it got a goo...\n **SPOILERS** Extremely brutal police drama set...\n Walt Disney's \"The Rookie\" is based on the sto...\n I went to see this a few days ago, and it's ha...\n This movie should go down in the annals of fie...\n This is another of the many B minus movies tag...\n Mona the vagabond lives on the fringes of Fren...\n Well, here we have a zombie movie that perhaps...\n Decent but overrated dramatic thriller, film a...\n If you like occasional nudity with junior high...\n I found this movie at a XXX store for $1 on VH...\n I agree with Andy, this is a good movie. Kevin...\n I saw this film on the same night I saw 6 othe...\n Jackie Chan's Police Story is a landmark film ...\n Houseboat Horror is a great title for this fil...\n Hellraiser: Bloodline is only a so-so film. I ...\n Just kidding! This was one of the worst movies...\n This movie has some of the worst acting that I...\n I thought this was a very clunky, uninvolving ...\n I watch this movie all the time. I've watched ...\n Despite being a huge fan of Fred Astaire and G...\n Too bad somebody did not have the smarts to re...\n The storyline was okay. Akshay Kumar was good ...\n This film is about a grieving wife who lost he...\n This is actually great fun. I really enjoyed i...\n this short film trailer is basically about Sup...\n Madhur Bhandarkar directs this film that is su...\n Committed doom and gloomer Peter Watkins goes ...\n In America, the Jewish Jonathan Safran Foer (E...\n I am a big fan of sci-fi movies. So, when I sa...\n Interesting film about an actual event that to...\n Wow! What a movie if you want to blow your bud...\n The only redeeming quality of this film is the...\n What can I say about a movie as bad as this? T...\n As much as 'The Beginning' showed that we're s...\n The most obvious flaw...horrible, horrible scr...\n With the sun shining brilliantly on a quiet Su...\n This one tends to get slighted by a lot of cri...\n this movie is simply amazing.. unfortunately i...\n The best thing about the movie is the name, as...\n Once the slow beginning gets underway, the fil...\n Dragon Hunters has to be the best-looking anim...\n It's remarkable that for 'Young Mr. Lincoln's'...\n This is a well made informative film in the ve...\n This movie is utterly hilarious. Its cast clic...\n this film really tries to hard. if your going ...\n For me this is a story that starts with some f...\n Quality entertainment all around. The spectacl...\n I watched Written on The Wind starring Rock Hu...\n I thought Nick Gomez's look at the gritty stre...\n I saw 2:37 at the Toronto International Film F...\n If you want a horrible interpretation of \"MacB...\n This is a rotten movie.The cast seem to know j...\n In this forgettable trifle, the 40-ish Norma S...\n Maybe this was *An Important Movie* and that's...\n The humor is non-existent in this loser of a m...\n I am a big fan a Faerie Tale Theatre and I've ...\n Having endured this film last night, I turned ...\n For romantic comedies, I often judge the quali...\n The latest film by the Spanish director Agusti...\n I just watched this movie and have to say, I w...\n Twelve Monkeys is an insane time-travelling, a...\n It definitely fits the time period as the Axis...\n This move is slow, plodding, cold, dark, and w...\n This movie is from the 80s, but it looks like ...\n This film is not at all as bad as some people ...\n I remember seeing this years ago when it first...\n Just caught \"The Rain People\" on Turner Classi...\n \"A little nonsense now and then, is cherished ...\n I absolutely loved this movie. It met all expe...\n Red Sonja is a career-step-in-the-wrong-direct...\n \"An album of songs so old everyone thinks they...\n Michelle, Anicée Alvina, was so nice, and I re...\n When the remake of When A Stranger Calls was o...\n I also saw The Last Stop at the Moving Picture...\n In April 1947, New York City faced an epidemic...\n It would help to know why it took so long for ...\n OK so I hear about this new Justin Timberlake ...\n How bad can you make a film. A good question w...\n Greetings from this Portuguese guy :)<br /><br...\n This movie was so unrelentingly bad, I could h...\n And she really was beautiful (Laraine Day, tha...\n According to the blurb on the back of the DVD ...\n The story is about a little girl growing up in...\n In Theodore Rex poor Whoopi Goldberg is set up...\n Whattt was with the sound? It sounded like it ...\n They just don't make cartoons like they used t...\n Universal studios. The name conjures up so man...\n I hope we never become to cynical as a society...\n My favorite movie. What a great story this rea...\n This is the only movie that I can think of whe...\n If there is one thing to recommend about this ...\n \"Unconditional Love\" starts with great promise...\n Anupam Kher is an excellent actor, he debuted ...\n From start to finish, I laughed real hard thro...\n I am one of Jehovah's Witnesses and I also wor...\n Tom Clancy uses \"Alesandr Nevsky\" in his book ...\n Given the chance to write, direct and star in ...\n This is a great film Classic from the 40's and...\n A few things to touch on as a response to the ...\n Usually when BBC releases a TV series one is u...\n Wow, I forgot how great this movie was until I...\n It seems no matter what I see her in, Christin...\n This is the first film of the Horrorfest I hav...\n I agree with all the accolades, I went through...\n \"Zabriskie Point\" (1970): This was especially ...\n The plot of Corpse Grinders 2 is very much sim...\n Anyone who thinks this film has not been appre...\n THE HAND OF DEATH most definitely rates a ten ...\n ===minor spoilers=== <br /><br />I am, like ma...\n No reason to bother renting this flick. From t...\n I can't believe I actually bought this movie! ...\n Spoilers!! Bruce Willis, the part-time Comic a...\n I read that \"There's a Girl in My Soup\" came o...\n Being too young to have experienced the Hammer...\n Comment this movie is impossible. Is terrible,...\n I haven't reviewed anything on here for quite ...\n Paul Naschy made a great number of horror film...\n Back in 1997, do I remember that year: Clinton...\n Would someone tell shaq to stick to what he is...\n what a shame our first movie is so bad ..........\n This movie should be retitled: Sex in the 70s ...\n I go to blockbuster, pick out a random movie, ...\n I live in Salt Lake City and I'm not a Mormon,...\n Well This was a complete waste of celluloid. T...\n I don't know how this DVD made its way into my...\n The title says it all. \"Tail Gunner Joe\" was a...\n I just watched this movie at the Santo Domingo...\n I'm intrigued by the strong sense of favour to...\n - The movie opens with a meteor crashing into ...\n In the New Year's Eve, the tuberculous sister ...\n It starts slowly, showing the dreary lives of ...\n This, the finest achievement from Georg Wilhel...\n I knew this would be one of the worst movies I...\n This movie is phoniness incarnate, a straight ...\n This movie had great production values, good l...\n When the new Outer Limits first started, the e...\n OK, so the Oscars seem to get hyped just a lit...\n Flatland is one of my favorite books, thus I w...\n Interesting idea and storyline which didn't qu...\n THE ASCENT is a very worthwhile addition to re...\n A nice Shirely Temple short. Child actors scre...\n I like to think of myself as a bad movie conno...\n This is the second and best in the Hunting Tri...\n This movie is about a man who likes to blow hi...\n The monster will look very familiar to you. So...\n The Unseen is done in a style more like old Ho...\n Out of these Pokemon films (which are in order...\n Agree that this was one of the best episodes o...\n It is first and foremost a chick flick, it is ...\n I think \"Rosemary's Baby\" is the most overrate...\n I was looking forward to watching this movie, ...\n Having heard so many people raving about this ...\n I'm just filling this comment out, because I c...\n \"National Lampoon Goes to the Movies\" (1981) i...\n What has hurt this film is everyone and their ...\n This is my favourite Indian movie of all time....\n \"Tale of Two Sisters\" has to be one of the cre...\n This is one of the worst films I've ever seen....\n That is no criticism of the film, but rather a...\n Moving beyond words is this heart breaking sto...\n When Jurassic Park first came out, it was revo...\n Two years ago I watched \"The Matador\" in cinem...\n Director Brian Yuzna has had an uneven career ...\n I've now seen this one about 10 times, so ther...\n Robert De Niro, Cuba Gooding Jr., Hal Holbrook...\n Spoilers will be in this. The movie could have...\n Like most people I love \"A Christmas Story\". I...\n A SUPERMAN Cartoon<br /><br />A huge shipment ...\n I was surprised and impressed to find out this...\n As a physics student, I've become aware of man...\n \"Washington Square\" is a flat, shabby adaptati...\n Brilliant kung-fu scenes, loads of melodrama, ...\n He seems to be a control freak. I have heard h...\n Good grief I can't even begin to describe how ...\n Welsh poet Dylan Thomas excused from serving i...\n This is the most boring worthless piece of cra...\n Jake Speed is a film that lacks one thing  a ...\n We expected something great when we went to se...\n Once again a film classic has been pointlessly...\n It infuriates me no end that, now and forever,...\n I had watched this on Italian TV as a kid and ...\n The secret is...this movie blows. Sorry, but i...\n i expected something different:more passion,dr...\n I'll say this to begin with:...Why, oh why, ca...\n So many films are now in a Genre described as ...\n Down To Earth is the best movie!!! It is SO fu...\n This movie is a 90 minute Ramones concert with...\n Today, I visited an Athenean Cinema with my tw...\n Phew--I don't what to say. This is a film that...\n I kept waiting for this film to improve, but, ...\n i checked this one out on DVD for a dollar so ...\n After reading the book, I loved the story. Wat...\n Gymkata is without a doubt one of the worst mo...\n It opens with your cliche overly long ship fly...\n In the animated series: <br /><br />Aeon Flux ...\n A great movie. The movie was even better then ...\n The first review I saw of this on IMDB says th...\n Talented detective Mr. Philo Vance (William Po...\n I love ghost stories in general, but I PARTICU...\n Italian soft X Exorcist clone.<br /><br />Woma...\n Sorry, I just didn't find the subject matter a...\n For those of you who are not aware with the th...\n First of all, I personally adore Demons and De...\n This is an excellent film, and is the sort of ...\n This film has absolutely no redeeming features...\n I thought this was a very daring representatio...\n Oh man! This series has to be the worst possib...\n This is the worst movie I have ever seen. I wa...\n I first saw this in the 70s on syndicated TV a...\n I decided to write a comment on this amazing m...\n John Huston, actor and director better known f...\n totally genius film from the CKY crew......(no...\n Alexandre Aja's remake of The Hills Have Eyes ...\n Marvelous cult film from 1979 in which the stu...\n Not a film of entertainment, but of real lives...\n If ever there was a film that can be considere...\n This game was really great and quite a challen...\n sammo has to have a 10 out of 10 for this movi...\n 30 seconds into the opening credits, I had thi...\n While I agree completely with drvn below about...\n at first i thought 'nasaan ka man' might be on...\n I'm 15, usually not kids my age usually watch ...\n Talk about marketing. The poster/home video co...\n I think the deal with this movie is that it ha...\n I saw this movie not knowing anything about it...\n Is it just me or is that kid really annoying?<...\n This movie is funny and suitable for any age. ...\n Navy Seals is an ignorant, racist and complace...\n Wow! I just don't even know where to begin wit...\n It does seem like this film is polarizing us. ...\n At first I didn't didn't like it that much, al...\n The title of this obscure and (almost righteou...\n Well, I've read the book first and thought: wo...\n This is a masterpiece footage in B/W 35mm film...\n When I am watching a film, I am aware that it ...\n I got interested in this movie because somebod...\n This is a great movie, a must own. I really li...\n MINOR SPOILERS!<br /><br />Well i just sat up ...\n Finally, I can connect the dots between Return...\n The Secret of Kells is a film I've been waitin...\n Great piece of fiction played as if factual. T...\n Although this show has been off the air since ...\n As an early representation of the turmoil of t...\n Black guy becomes rich white guy, and rich whi...\n Christina Raines plays a lovely model in New Y...\n John Travolta was excellent as \"Michael\" in th...\n As it turns out, Chris Farley and David Spade ...\n This is not a \"loose\", but a precise, faithful...\n College student Alex Gardner (Nicholas Celozzi...\n Being an Elvis fan, I can't understand how thi...\n As I was watching it, I was getting ready to c...\n ...let me count the ways.<br /><br />1. A titl...\n So this made for TV film scores only a 7.6 on ...\n \"I Love New York\" is another entry by VH-1 (MT...\n I would have liked to put 0.5 but unfortunatel...\n I don't go for that many \"heist\" comedies, and...\n Although Cinderella isn't the obvious choice f...\n Very enjoyable 50's Western. I have it in my c...\n One of the things that interested me most abou...\n The finest short I've ever seen. Some commenta...\n Two years passed and mostly everyone looks dif...\n I've always thought that most huge box-office ...\n I have to say that I haven't expected that thi...\n Jodie Foster, Cherie Currie (the former lead s...\n Matthew Aldrich. This is a name worthy of reme...\n There may be spoilers!<br /><br />Charlie Fine...\n A talented high school graduating senior with ...\n Kurt Russell (as Steven Post) works as a mail-...\n Michael Caton-Jones's Scottish period piece be...\n Do you know that they want to escavate the Moo...\n If it wasn't for the performances of Barry Dia...\n Do we really need any more narcissistic garbag...\n This movie displayed more racial hatred of Jew...\n I saw this film at the Adelaide Film Festival ...\n When the film started I got the feeling this w...\n Compared to the acclaimed Hollywood remake, th...\n By God, it's been a long time since I saw this...\n Koen Wouters is a flemish singer and presenter...\n This film is great with some of the best songs...\n \"That 'Malcom' show on FOX is really making a ...\n When I was 8 years old, and going through my M...\n I rented this film when my girlfriend was away...\n This interesting film noir features three very...\n \"Dolemite\" is the touching story of Dolemite (...\n I just want To say that this movie was excelle...\n \"Strike Force\" or \"The Librarians\" is a fun ac...\n This really is a great movie. Some of the song...\n I know what you're saying, \"Oh man, Pinochio i...\n Deep Sea 3D is a stunning insight in to an und...\n I first watched this movie in Istanbul Film Fe...\n He who fights with monsters might take care le...\n I'm a male, not given to women's movies, but t...\n Awful, Awful, Awful show. \"Real world\" issues ...\n I like action movies. I have a softspot for \"B...\n It begins on a nice note only to falter quickl...\n Aardman does it again. Next to Pixar, Aardman ...\n This movie made me laugh so much. It was a blo...\n Just don't bother. I thought I would see a mov...\n Be careful with this one. Once you get yer mit...\n Chili Palmer is tired of doing movies and know...\n Following is a little-known 1998 British film,...\n Dark Angel is a cross between Huxley's Brave N...\n This is the kind of movie that's so extremely ...\n This film IS brilliant...... without a doubt. ...\n This is one of the most guilty pleasure movies...\n Loved this movie! Kicking it old school! Love ...\n A charming boy and his mother move to a middle...\n Chris Smith's American Movie is an insightful ...\n This is an excellent anime movie. It is well a...\n I never met a single person (out of hundreds) ...\n I have absolutely no knowledge of author Phill...\n I have certainly not seen all of Jean Rollin's...\n This film is right up there with The Oscar and...\n When I first saw this I thought bits of it wer...\n This is a true \"feel-good\" movie, full of genu...\n I don't know what some people were thinking wh...\n As someone else commented, this is a feel-good...\n I thought of this movie when i watched pluto n...\n I've seen some Bible-based trash. This one top...\n In the mid-1930s Hollywood was regaining its c...\n While Urban Cowboy did not ooze with the same ...\n Hobgoblins is a very cheap and badly done Grem...\n this movie is funny funny funny my favorite qu...\n If your a child of the 80's and have not seen ...\n I bought this while I was playing chess in Has...\n A horrible, horrible, horrible film. I saw the...\n Dark Angel is a futuristic sci-fi series, set ...\n Out to Sea was a great movie. I expected comed...\n This is a superb game for the N64 with superb ...\n Each year the company called Nu produces coupl...\n If there's one word I can associate to this mo...\n After mob boss Vic Moretti (late great Anthony...\n The Human Tornado is a campy 70's Blaxploitati...\n In a style reminiscent of the best of David Le...\n This show is perhaps one of the most boring, m...\n This is a fantasy movie for kids based on the ...\n \"Pandora's Clock\" is a gripping suspense/thril...\n \"National Lampoon Goes to the Movies\" (1981) i...\n I have seen a lot of movies in my life, but no...\n \"I moved out here to get away from this kind o...\n Pacino, and Maconadump really hit the mark wit...\n I really wanted to like this film, but so much...\n I remember that the trailer for Legend of Zu w...\n This is really a very bad movie. Why? First of...\n Imagine The Big Chill with a cast of twenty-so...\n Marlene Dietrich is magnificent as Concha Pere...\n This movie really starts strong. We know that ...\n I would just like to state that this may be bi...\n I thought it would at least be aesthetically b...\n \"Triumph of Love\" is proof that not every Comé...\n For Anthony Mann the Western was 'legend'- and...\n This is seriously the worst movie I have ever ...\n Director Edward Montagne does in a little more...\n Battleship Potemkin is a celluloid masterpiece...\n This is a very intriguing short movie by David...\n Well, what can I say having just watched this ...\n If you haven't seen Eva Longoria from the TV s...\n I wish there were more films about middle aged...\n Another outstanding foreign film which thoroug...\n Jiøí Trnka made his last animated short an ind...\n Rarely will anyone deny that Hitchcock remains...\n I thought this was an awesome movie. The theme...\n Five years after the original Creepshow, anoth...\n I watched, entranced and mesmerized, by the vo...\n I thought maybe... maybe this could be good. A...\n Barney is just awful. As many of the other rev...\n While it's early to say how the series will ev...\n If you are a fan of really bad movies, and you...\n There have been many people that have tried to...\n Creepy & lascivious wolf. The young \"Red\" is w...\n This eloquent, simple film makes a remarkably ...\n This has got to be the worst show I have ever ...\n Even if you're a fan of Jean Rollin's idiosync...\n Cuore Sacro combines glossy film effects with ...\n Valeria, an elegant and pretty young lady live...\n I don't understand what the big hype was about...\n The quintessential housewife and perfect mothe...\n \"Cinema is the ultimate pervert art. It doesn'...\n I enjoyed this movie. Unlike like some of the ...\n After looking for this Bruceploitation for mon...\n Running only seventy-two minutes, this small, ...\n I'd never heard of this movie, but boy was I s...\n This is absolutely the dumbest movie I've ever...\n So boring you'll fall asleep after the 20 firs...\n Obviously made to show famous 1950s stripper M...\n I would just like to say, that no matter how l...\n When I first saw this movie, it was titled TER...\n While the David Lynch version of Dune is chopp...\n You've gotta hand it to Steven Seagal: whateve...\n with that, carry the same dark weaknesses we a...\n Hitchcock's original classic benefited tremend...\n Yes, Be My Love was Mario Lanza's skyrocket to...\n This was the best Muppet movie I've seen ever!...\n The reason why this movie isn't any better kno...\n The Unborn is a very, very different film. Jam...\n Paul (Jason Lee) is an underachiever who just ...\n The movie starts out with some scrolling text ...\n Worst movie, (with the best reviews given it) ...\n I can get over the political parody; even if t...\n This is,in short,the TV comedy series with the...\n In the year 2006, \"In Cold Blood\"-a riveting t...\n Ride with the Devil, like Ang Lee's later Brok...\n I rented \"New Best Friend\" hoping for a movie ...\n I attended a screening of \"Fierce People\" at t...\n Intriguing premise should have been a 20 minut...\n This movie was really well written and was ver...\n I've seen most of Ryuhei Kitamura's work and I...\n I watched this movie on march 21 this year.Mus...\n If you're looking for an accurate portrayal of...\n I really thought this wasn't that bad. Not a g...\n Definitely at the top five of best John Garfie...\n I really wanted to like this film for all sort...\n Wes Craven has been created a most successful ...\n \"Marathon\" has a very interesting premise, exc...\n There is a fantastic song in Killjoy 2 that go...\n This, unfortunately, is a little-known film......\n First of all, let me just say that after watch...\n I don't believe I've seen a horror movie this ...\n \"What's his name?\" \"Loudon.\" \"Loudon what?\" \"C...\n Dr Stephens (Micheal Harvey) runs a mental asy...\n OK this movie was really \"unique\" shall we say...\n It is one of the best of Stephen Chow. I give ...\n This movie has been promoting in everywhere in...\n I think that Never Been Kissed was a totally a...\n Being a music student myself, I thought a movi...\n This movie seems as if someone had a cute idea...\n Made after QUARTET was, TRIO continued the qua...\n I wasn't entirely sure what to expect from a C...\n The Secret Fury, in many ways a run-of-the-mil...\n As I write this, no user reviews are in yet, b...\n Fatal Contact: Bird Flu in America: 3 out of 1...\n Your average garden variety psychotic nutcase ...\n I saw the film at the Belgrade Film Festival l...\n Martino, a young teacher in the island of Elba...\n Don't waste your time. The plot drags, the cha...\n If you can get past the slow start and bad act...\n For all of us American Deneuve fans, this litt...\n Dooohhh! My Bwainn Hurrrts! Well it certainly ...\n 1st watched 8/7/2004 - 3 out of 10(Dir-Brett T...\n A great look at the 60s through the eyes of fo...\n For the life of me I can not understand the bl...\n I came across this movie on TV. I hadn't heard...\n My wife and I watched this after DVR'ing it of...\n ....Rather well done, actually--attack the evi...\n EPSILON, a.k.a. ALIEN VISITOR, is not what I e...\n This was an excellent movie with good acting a...\n Robert Montgomery-Myrna Loy farce about Loy (I...\n The first thing I wanted to do after watching ...\n even though this movie is quite old, no matter...\n I watched the trailer on the DVD after seeing ...\n This movie was difficult for me to watch. Stan...\n This Harold Lloyd short wasn't really much; no...\n I'm desperately trying to stay awake while wat...\n I was subjected to this terrible excuse for a ...\n Stewart Kane (Gabriel Byrne, VANITY FAIR) head...\n I have to give this movie a 4 because of a cou...\n I could only get through about 25 mins of it. ...\n I, for one, absolutely loved this movie.<br />...\n This one is a real stinker.<br /><br />The sto...\n A real insult to the original \"Spoorloos\", whi...\n * Firstly, although many say it is the worst o...\n When I sat down to watch 'Largo Winch' I expec...\n The Child's Play series isn't a favourite of m...\n This blaxploitation classic about a kung fu ma...\n What a great film! I never knew much about Bud...\n Intelligent summary, isn't it?<br /><br />If M...\n Jack Bender's \"The Tempest\" is an adaption of ...\n After watching this movie, I have nothing but ...\n Roger Spottiswoode isn't the worst director, a...\n Action & Adventure.Billie Clark is twenty year...\n SO good, the acting, cutting, directing in the...\n I, also having endured hundreds of children's ...\n I had no background knowledge of this movie be...\n This was not enjoyable to watch. Frank puts al...\n Where to begin? How about with the erroneous s...\n I still wonder why I watched this movie. Admit...\n The movie shocked me. Personally i had herd mo...\n I second the motion to make this into a movie,...\n End of Days, starts off pretty well, Arnie pla...\n There is no doubt that Halloween is by far one...\n This \"film\" is the culmination of everything t...\n This is a wonderful family sitcom. Rowan Atkin...\n Okay, so it was never going to change the worl...\n This movie has always been a favorite of mine ...\n great mystery, but the film goes down hill fro...\n I love Claire Danes, and Kate Beckinsale looks...\n Being a \"Wallace and Gromit-fan\", I was lookin...\n 'Northfork' is what is wrong with indie films....\n Dear dear dear dear dear...me! I had the stren...\n This apocalyptic zombie film tries to be vicio...\n Darr (1993) was an incredible movie. In my opi...\n This has been one of my favorite movies for a ...\n I would bet a month's salary \"The Magnificent ...\n This movie is AWFUL. I haven't laughed so hard...\n First off, I knew nothing about 'Mazes and Mon...\n I learned much from previous viewer reactions....\n Recap: Zandalee is a young woman that feels mo...\n This is an extremely competent movie technical...\n I don't see that much wrong with this movie. G...\n Overrated and only for those people in their 2...\n First off, the initial concept of a lost fortu...\n I own a copy of this film and have always love...\n The first few minutes showing the cold and cru...\n Read a biography of the late George C. Scott a...\n I like the movie. Twisted Desire had Jeremy Jo...\n By watching this film you will not only explor...\n I LOVE this movie....one of my all-time favori...\n As far as Asian horror goes, I have seen my sh...\n I just watched Descent. Gawds what an awful mo...\n First things first, the female lead is too gor...\n I really like this movie. I like it not just b...\n I first viewed \"They Died With There Boots On\"...\n I'm gonna tip the scales here a bit and say I ...\n I saw Dark Harbor at the '98 Seattle Film Fest...\n \"The Cat's Meow\" contains a few scenes that bo...\n SPOILERS!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<br />...\n I watched \"9 souls\" in Athens' 12th Internatio...\n The French film \"Extension Du Domaine De La Lu...\n the town of Royston Vasey is a weird, but wond...\n I wish it were \"Last Dumb Thriller\". But thril...\n I saw it last week and the sketch about the Ko...\n Superman II - The Richard Donner Cut should be...\n John Boorman's \"Deliverance\" concerns four sub...\n Well unlike most people.... I went into this m...\n This movie isn't very good. It's boring, and n...\n This is the best comedy period. It is so under...\n Acidic, unremitting, and beautiful, John Schle...\n Well, they say nymphomania leaves you unsatisf...\n Horrible, Horrible, Horrible do not waste your...\n 29 Sept 1990 marked a small but important mile...\n I can't believe the amount of reviewers who pr...\n This show is quick-witted, colorful, dark yet ...\n Have to disagree with people saying that this ...\n We sought out this hard-to-find VHS after watc...\n i must say this movie is truly amazing and hea...\n In my opinion, this is one of the greatest mov...\n An excellent series, masterfully acted and dir...\n Don't get me wrong this was fun to watch. It h...\n Stephanie Meyer is going to be so ticked! Now,...\n What can I say about this film that won't give...\n Watched this on DVD in original language with ...\n I really loved it although while reading the r...\n This is a direct sequel to 'The Mummy's Hand' ...\n The story has little to do with Jack London's ...\n I am a happily married 49 year old female, who...\n This has been one of the best vampire movies t...\n When I saw this movie first, it was long ago o...\n The whole movie seemed to suffer from poor edi...\n Mario Lanza, of course, is \"The Great Caruso\" ...\n This movie was one of the worst I've ever seen...\n the 25th hour was a movie i just chanced upon....\n I must say that I didn't expect much sitting d...\n First of all for this movie I just have one wo...\n One of the classic low budget 70's movies, thi...\n It is a rare occasion when I want to see a mov...\n This is one of the funniest movies that I have...\n In film, I feel as though it should be more th...\n I am proud to say I own an uncut copy of this ...\n This might not have been as horribly bad as it...\n This was the biggest disappointment of a movie...\n The Ring was made from the only screenplay Hit...\n The poor DVD video quality is the only reason ...\n This highly derivative film will be entertaini...\n I do not want to go into a criticism of the mo...\n This is the first time I have commented on a f...\n \"Let's Bowl\" started out on local television i...\n The sole reason for someone wanting to see thi...\n Wow, this was a real stinker. This early sci-f...\n I don't know if this is a sitcom or not, but I...\n CAUTION: SPOILERS<br /><br />Although this fil...\n This movie masquerades as a social commentary,...\n I was wondering when someone would try turning...\n \"Journey to the Far Side of the Sun\" (aka \"Dop...\n As a big Jim Carey fan I took my seat in the c...\n \"A scientist discovers signals from space that...\n A labor of love. Each frame is picture perfect...\n RKO had a reputation for making folksy, homesp...\n Director Otto Preminger reunites with his Laur...\n First at all: If you like watching movies I re...\n (aka: BLOOD CASTLE or SCREAM OF THE DEMON)<br ...\n I don't think most of us would tend to apply t...\n Seldom do I give up on a movie without seeing ...\n I don't care if this show is suppose to be com...\n I was laying in bed, flicking through the chan...\n I recently watched this again and there's anot...\n This show is not in my opinion, good,Then agai...\n Watching this again recently, I found it heart...\n Simple-minded but good-natured drive-in movie ...\n I really wanted to like this film, but the sto...\n I grew up watching this movie ,and I still lov...\n Hitokiri (which translates roughly as \"assassi...\n Murder By Numbers is one of those movies that ...\n \"Kolchak: the Night Stalker\" is a hugely enter...\n If you want to learn the basics of quantum mec...\n The people of my generation and those who are ...\n Why is it that everyone who has seen this movi...\n During the 1990's, several attempts have been ...\n this is a terrible, terrible film!!!!!!!!!<br ...\n This film could well have been one of those or...\n The film is poorly casted, except for some fam...\n The original \"Psycho\" (1960) is widely conside...\n This is a better than average silent movie and...\n How you could say that Peaches, with its compl...\n The Gilmore girls is about a mother who had a ...\n supposedly based on the life of Domino Harvey ...\n Audrey, I know you truly cherish your husband ...\n It starts out looking like it may be going som...\n I can only guess that this movie was an experi...\n I kind of liked the film, it's just that the c...\n Well, I like to be honest with all the audienc...\n I was lucky enough to get to see this film man...\n Two years ago, on Berlin Film Festival we watc...\n No! no - No - NO! My entire being is revolting...\n I just wanted to say that I am watching Nation...\n Don't get me wrong. I've got a considerable so...\n do not ever watch this film...it is the bigges...\n THE PROTECTOR. You hear the name. You think, \"...\n the only word that sums up this movie is quirk...\n I have to agree with Cal-37 it's a great movie...\n Spoilers... if such a thing is possible... . ....\n Welcome to movie 17 on the chilling classics 5...\n Saw this as part of the DC Reel Affirmations F...\n Larry Burrows has the distinct feeling he's mi...\n This is a smart drama about the way of life in...\n Once in a while one come across a movie that f...\n Told in flashback, the film opens in 1989 with...\n What on earth was that? My family and I just w...\n I'm accustomed to being patient with films bec...\n I heard about this movie when watching VH1's \"...\n This documentary is the most hypnotizing film ...\n Before starting to watch the show, I've heard ...\n This movie is a mystery. It's not scary, it's ...\n It has a great name, but thats it and you wont...\n Whether it's a good movie or not, films of thi...\n Having seen \"Triumph of the Will,\" I can only ...\n Eaten Alive is a little film that opens in New...\n This was filmed back-to-back with the 1992 re-...\n This was another one of those shows that I wat...\n This was a typical grade B movie in 1940s Holl...\n I can't come up with appropriate enough words ...\n Wave after wave of directionless nausea - this...\n This is the best series of its type I've seen ...\n Solo is an action movie about a Terminator-lik...\n I think that New York Times film critic Elvis ...\n When I first saw this film in cinema 11 years ...\n \"Driving Lessons\" sees two middle class quinte...\n Well, I have to admit that this movie brought ...\n I gave this movie a 10 simply out of my sick o...\n Why a stupid, boring, crappy overrated film se...\n Over the years I've watched this movie many ti...\n OK this will contain spoilers. Now I have neve...\n Historical drama is one of the areas where the...\n I have watch this movie almost every night tha...\n This story was probably one of the most powerf...\n Story of an ex-Navy Seal who is now a combat m...\n Last fall (of 2001), I took a film class that ...\n I was required to watch the movie for my work,...\n A grade-Z horror filmmaker Carl Monson was one...\n Certainly any others I have seen pale in compa...\n This is an amazing movie and is very clever at...\n This was the funniest piece of film/tape I hav...\n The brilliance of this story delivers at least...\n This is a good movie, I won't go into any deta...\n I'm easily entertained. I enjoyed \"Hot Shots\" ...\n Dolph Lundgren broods and scowls his way throu...\n I have watched this movie time and time and ti...\n Oh God, Why? I am aghast at the sheer ineptitu...\n This is one of the best military films ever ma...\n This was a painful example of a cheap, boring ...\n The worst movie I have seen since Tera Jadoo C...\n Unfortunately, SpaceCamp came out about the sa...\n I suppose that in 1997 Hollywood wasn't quite ...\n I rented this tape a couple of years ago, and ...\n Save some very early Norris, \"Breaker, Breaker...\n If ever a potential movie must've sounded like...\n Of the many problems with this film, the worst...\n Disney's Buena Vista Pictures presents a wonde...\n I downloaded this movie yesterday through an i...\n I just saw this movie tonight. Coming into it ...\n Although there were a few rough spots and some...\n The competition for the worst Warner Bros Kay ...\n The director, outfitted in chains and leather,...\n Bad movie for sure. It's such a ridiculous fan...\n I rented this movie tonight because it looked ...\n This agreeable French movie deals about a mill...\n First off, I didn't know what to expect when I...\n From what I understand, Mr. Bava abandoned thi...\n Another laughably lame and senseless low-budge...\n Bit of a curate's egg, this one. I started off...\n The Battle at Elderbrush Gulch was Griffith's ...\n ...said a couple exiting the movie theater jus...\n Reading web sites on Bette Davis one can find ...\n After watching \"Waco: The Rules of Engagement\"...\n For me it's a case you'll never understand if ...\n I was blown away by the re-imagined Battlestar...\n This is undoubtedly the most harrowing black-a...\n Boogie Nights is perhaps one of the greatest e...\n A woman asks for advice on the road to reach a...\n My dad had this movie as an 8mm reel. I loved ...\n I admit, having come of age in the hippie-dipp...\n Man, I had my doubts. I love Kathy Bates, but ...\n I first didn't want to watch this film, for th...\n Snow White, which just came out in Locarno, wh...\n One of the finest musicals made, one that is t...\n Magnolia presents itself as a wall to wall can...\n There's more to offer in the opening of The Od...\n To suggest Anton Newcombe of the Brian Jonesto...\n I thought this would be funny. I did. I don't ...\n You can survive Surviving Christmas. I thought...\n I debated quite a bit over what rating to give...\n Pointless and pretty silly film that is just b...\n I get really fed up with sitcoms; you feel you...\n How on earth can you have such fantastic actor...\n One of Alfred Hitchcock's three greatest films...\n Watched this French horror film last night and...\n There have been \"race\" pictures almost from th...\n Over the weekend i watched the movie Tipping t...\n THE STUDENT NURSES is not a typical sexploitat...\n Weak plot, unlikely car malfunction, and helpl...\n What an appalling piece of rubbish!!! Who ARE ...\n I rate movies on this site all the time, but I...\n That was one of the worst movies I've ever see...\n 'Blade' would be an extremely above-average co...\n I first saw the trailer for Frailty on Yahoo M...\n I really love this movie. It has a very real f...\n This movie is amazing for several reasons. Har...\n Jerome Crabbe has the lead role in this movie....\n I had expected a fairly straightforward R-rate...\n This film is exceptional in that Marlene & Ray...\n I was lucky enough for this film to come on TC...\n This was playing at our theater in Amsterdam a...\n THE EXPERT, starring Jeff Speakman, is the def...\n To say I wasn't expecting much sitting down to...\n The Gymnast (2006) was written and directed by...\n Chris and Andre are two average, ordinary teen...\n Matt Cordell is back from the dead for a third...\n Yeah, I know the girls are hot and the scenery...\n Painful to watch, and not entirely for empathy...\n This is my first comment on IMDb website, and ...\n *WARNING. THERE MIGHT BE SPOILERS AHEAD, IF YO...\n Having been raised in Canada, I saw this short...\n The problems with this film are many, but I wi...\n Certain aspects of Punishment Park are less th...\n Kate Beckinsale is excellent as the manipulati...\n Have I seen a worse movie? No I can't say that...\n I saw this movie on PBS the first time. Then I...\n No, this wasn't one of the ten worst films of ...\n I recently read the story to see how these two...\n I really think this movie deserves some Oscars...\n With the obvious exception of Fools & Horses, ...\n Despite some negative comments this film has g...\n What is often neglected about Harold Lloyd is ...\n Although Robert \"Knox\" Benfer has his fans, I'...\n Where on earth do I start with the mess that i...\n This movie has all the ingredients of a great ...\n It's very hard to say just what was going on w...\n The opening scene of the beach at Fircombe whi...\n In most parts a lethally dull venture, Naach i...\n This is possibly the best short crime drama I'...\n (r#64)<br /><br />Unredeemable, merit-less, an...\n All the elements for a bad night at the movies...\n I had never heard of this film until it came t...\n Heartland was in production about the same tim...\n Julia Ross (Nina Foch) agrees to take a positi...\n \"Fly Me To The Moon\" has to be the worst anima...\n This review owes its existence entirely to a r...\n An stunning look at the ocean and the life in ...\n I have to admit I had never heard of this movi...\n The film belongs to Inventor - Underdog genre....\n Even if Ryan wasn't such of an annoying person...\n 1980 was certainly a year for bad backwoods sl...\n As bad as they get. This film commits the fata...\n When i got this movie free from my job, along ...\n This movie is a waste of film stock. Do you be...\n Generally, I am not a huge fan of stop-motion ...\n So, finally I know it exists. Along with the o...\n My favorite Jackie Chan movie will always be \"...\n This one was a surprise and better than most f...\n Twisted, bizarre, enchanting, and hilarious! I...\n i was a huge fan of this series. Yesterday i w...\n \"Addictive\" is an adjective I've heard many ti...\n Seriously. This is one of the most stupid fami...\n This is a documentary I came across by chance ...\n The first DH wasn't that great, but I really d...\n Obviously it seems many people really enjoyed ...\n On MTV cribs all the ballers and shot callers ...\n As a kid I thought this movie was great. It ha...\n Nurse Charlotte Beale(the lovely Rosie Holotik...\n Here's a real weirdo for you. It starts out wi...\n Let's not fool ourselves, okay? We all know th...\n This movie only got a 1 because you can't give...\n i paid $2.00 for this piece of crap, i want my...\n I'd like to start by saying I would not go see...\n \"Yesterday\" as a movie, is hard to rate. The c...\n If you read the plot summary for \"Mad Max,\" yo...\n The director of this waste of celluloid specia...\n Before seeing this, I was put off by the subje...\n I wrote this as a two part review. Part two ha...\n I originally came across Linda Feferman's Seve...\n This movie is a great movie, however it is, as...\n There's no getting around it-- this movie is t...\n The Last Hunt is the forgotten Hollywood class...\n *may contain a spoiler of sorts?* The mere men...\n I went into this with my hopes up, by twenty m...\n Great movie. I was laughing all time through. ...\n When I bought my Toy Story tape when it came o...\n I first saw this movie about 3 years ago. I wa...\n In complete contrast to the previous correspon...\n Personally, I think Sayonara was the greatest ...\n It is a shame that the Gershwin family and Gol...\n This was another World War II message to the s...\n is seismic activity with little or negligible ...\n One of my favorite films for a number of years...\n I won't be too hard on this show because I enj...\n I think it's the first time that I go inside a...\n This is one of those inoffensive and mildly en...\n Normally for movie reviews, I try to be constr...\n This movie reminds me of great movies that tem...\n If you put Seinfeld aside, this is The Best Co...\n Camp North Star and it's Camp counselor extrao...\n I've seen many horror shows over the years, li...\n Despite a silly premise,ridiculous plot device...\n His first movie after longtime friend John Bel...\n Red Eye is a good little thriller to watch on ...\n This might very well be the worst movie I've s...\n Definitely the product of young minds, this pi...\n Damn straight.....this show was kick ass back ...\n ... because while I thoroughly enjoyed this fi...\n Universal Studios version of \"Flipper\" (1996) ...\n This show stinks. For parents, they usually wa...\n When I think of the cheesiest guilty pleasure-...\n I was delighted when I saw that my husband ren...\n In what must be one of the most blood-freezing...\n From the brilliant mind that brought us \"The E...\n Extremely boring..I don't care how many avant-...\n Anyone who loves the Rheostatics' music is goi...\n I suppose the ultimate curse of attending the ...\n It's the early 80s. There's a group of suspici...\n Carlos Saura's Carmen is one of the finest ach...\n Sugar &Spice is one of the worst movies of 200...\n Bottom line - best romantic comedy ever. This ...\n I saw this obvious schlock fest on a video sto...\n ...then you'd better not watch this movie. The...\n Sure, most people will designate \"Island of th...\n There's a certain irony in a parody of the Got...\n Just the ultimate masterpiece in my opinion. E...\n A Give this Movie a 10/10 because it deserves ...\n Fame is one of the best movies I've seen about...\n This film always hits me hard emotionally at t...\n First of all..I've seen better acting and more...\n Some Janapese modern horror movies are very go...\n I was so moved by this film in 1981, I went ba...\n hi.. I consider Just Cause one of my favorite ...\n Back (again) in Scotland, Lassie is (again) on...\n This series just gets worse and worse. Poorly ...\n well I'd probably agree with all the bad comme...\n Sadly not available on DVD as yet, but worth p...\n Me and a buddy rented this movie the other day...\n While the writing was terrible, the acting was...\n I found myself watching Sex Lives Of The Potat...\n I was at the world premier of this movie, and ...\n in 1976 i had just moved to the us from ceylon...\n Let's describe Larry as an interviewer: a comp...\n Logan Lerman & Dean Collins III of Jack & Bobb...\n I realise it's very hard to live up to the fir...\n I just don't get it. Why call this a sequel to...\n In Carmen, Saura once again seeks to establish...\n Amy Poehler and Rachel Dratch are among the fu...\n This film is just another waste of time. The p...\n Seeing all of the negative reviews for this mo...\n Ice-T stars as Mason a homeless African-Americ...\n More of a Frisbee like turtle with fangs that ...\n Luckily I did not pay to see this movie. Also,...\n Mike Hawthorne(Gordon Currie)is witness to the...\n I found this movie to be very funny, I loved h...\n Leos Carax has made 3 great movies: Boys Meet ...\n Once I heard that the greatest and oldest pres...\n It's a good movie if you plan to watch lots of...\n Avoid this film if you are looking for enterta...\n Burt Kennedy used to be a very good director, ...\n I've loved this movie since the first time I s...\n Lackawana Blues An impressive HBO movie about ...\n Ti%s and As*, lots of boobies. Some great char...\n I don't have a really solid thesis here, so I'...\n There isn't enough space to explain the many w...\n This is a great film!! The first time I saw it...\n Set in Hungary in November 1956, this is the s...\n Barbet Schroeder's \"Murder by Numbers\" starrin...\n Based on Stephen Hawking's \"A Brief History of...\n I had to see this gem twice to really apprecia...\n This is an interesting little flick made in 19...\n Pola X is a beautiful adaption of Herman Melvi...\n The third installment of the \"Carnosaur\" trilo...\n Oops. I hired this because I thought it was Bi...\n this is by far the most pathetic movie Indian ...\n This movie is some of the worst crap I have ev...\n this show is pretty alright and fun to watch, ...\n This movie was simply amazing.The writing was ...\n This is a magnificent, and in many ways impres...\n The greatest tragedy man faces is that, capabl...\n What can I say about Kramer vs. Kramer? On the...\n I want to believe all new horror films coming ...\n A very good wartime movie showing the effects ...\n \"The Duke\" is a film based in the heart of the...\n Wow, I just LOVED watching all these hot babes...\n It's hard to say anything about a movie like t...\n Its no surprise that Busey later developed a t...\n i am in a vast minority here. i also didn't mu...\n Where would Hollywood have been without Fredri...\n Satisfying fantasy with ships sailing thru clo...\n I'm accustomed to being patient with films bec...\n I enjoyed the prequels, and found the relation...\n I've read many unflattering comments regarding...\n There are three main problems with the film. O...\n Up front, if you're tired, the first hour coul...\n IN THE LINE OF FIRE, in my opinion, is an exce...\n this movie was banned in england? why? tom sav...\n This story is a complex and wonderful tale of ...\n Well, first of all - i am a big fanatic of hor...\n Anthony Minghella's 'The English Patient' is a...\n Irwin Allen's first venture into all star spec...\n I caught this movie on my local movie channel,...\n I can't believe that someone actually paid to ...\n Unfortunately there was not a 0 for a rating o...\n This is a failure so complete as to make me an...\n I had to compare two versions of Hamlet for my...\n I was still living with my parents when they a...\n Castle of Blood is a good example of the quali...\n Just getting released from a six month drug re...\n Waldemar Daninsky (Paul Naschy) travels to Tib...\n Monster of Mexico I do agree is the weakest of...\n Don't get me wrong, this is a terrible, cliché...\n This film has scenes that come back to me at t...\n Throughout the 1950s and into the 60s, 70s and...\n This movie appears to have been an on the job ...\n This sequel to Problem Child is just as bad as...\n Previous Tarantino movies were from a guy in l...\n Adela is a rebellious teenager with the attitu...\n This episode of Twilight Zone combines a silen...\n After the success of Scooby-Doo, Where are You...\n A wounded Tonto standing alone to protect thre...\n This is a perfect example of why many people s...\n The premise of this anime series is about brea...\n \"Bullfighter\" was made in 2000 but it is being...\n At first sight this is yet another highschool ...\n We just saw this film previewed before release...\n We stumbled across this show one Sunday mornin...\n No one would ever question that director Leos ...\n Although there were some amusing moments, I th...\n 1st watched 5/27/2009 - 4 out of 10 (Dir - Har...\n ...which isn't exactly a ringing endorsement. ...\n Corben Bernsen directed horror film about a ch...\n This is an interesting idea gone bad. The hidd...\n I would say 'Bride of Chucky' is a \"return to ...\n This movie has been a favorite of mine and is ...\n Bell, Book and Candle was one of the great pop...\n I picked this DVD up at the Dollar Store. The ...\n This bogus journey never comes close to matchi...\n and it did. It is through my experience that w...\n This is what I call a growth movie. Every char...\n My Brother And I Have Pokemon 4Ever On DVD. We...\n Never posted anything here before, but after w...\n one may ask why? the characters snarl, yell, a...\n There seem to be many fans of this movie here,...\n Oh dear! The first time I heard of this bad sh...\n Dee Snider is the villain in this movie and hi...\n There are two groups of people...those who lov...\n WARNING! SMALL PLOT DETAILS REVEALED!<br /><br...\n This film would be considered controversial to...\n This flick reminded me of those lame \"erotic t...\n I don't remember when I first heard about this...\n i first saw this movie back in the early 90's,...\n Many people know how it feels when a loved one...\n I can't believe this movie has an average rati...\n A film so insecure the creaters perhaps hoped ...\n Your ability to enjoy The Ashes of Time may de...\n Jack Webb's portrayal of the Marine drill inst...\n Sean Connery is very good as the Great Raisuli...\n Michael Caine's character has problems. He's a...\n I voted excellent for how well the acting was,...\n I'm a huge space buff, and at nearly 44, I've ...\n i'm not going to ramble on about it but i'm ju...\n THE MELTING MAN...a tragic victim of the space...\n Richard Farnsworth is one of my favorite actor...\n There's nothing wrong with a popcorn movie to ...\n Cannot believe a movie that can be made that g...\n Obviously, I didn't care for Things to Come (a...\n Okay, so I've read most of the reviews on this...\n Rivalry between brothers leads to main story l...\n but just as entertaining and random! Love it o...\n It's hard to watch this movie without thinking...\n [CONTAINS SPOILERS!!!]<br /><br /> Timon and P...\n This is the kind of film that I am wondering w...\n I swear when I first saw this movie,I cried my...\n I actually caught an ad for JAPAN SINKS in a J...\n A somewhat awkward spy mystery with a predicta...\n Carole Lombard stars in this transition period...\n Czech cinematography is traveling through dark...\n In order for a thriller to elicit fear, suspen...\n In a not totally successful attempt to be take...\n This film has the language, the style and the ...\n That is the only thing I can positive to say a...\n At first the movie seemed to be doing great, t...\n I'm grateful to Cesar Montano and his crew in ...\n 1st watched 8/29/2009 - 7 out of 10 (Dir-Sidne...\n Alexandra Maria Lara: A very beautiful and ent...\n So it has come to this. Fast, expensive cars t...\n A wonderful film in the best Scandinavian eldr...\n The Giant Claw is in fierce competition with f...\n BLACK EYE (2 outta 5 stars) Unimaginatively-fi...\n When I first saw this show i thought to my sel...\n This was a very good 1950s western, one of the...\n A beautifully constructed and brilliantly acte...\n May 1938. Hitler in Italy. Preparations for hi...\n This video has audio that is meant for someone...\n This movie is one of the best and moving I hav...\n Daniel Auteuil's Bruno in Petites Couperes is ...\n As I write this user-comment, Tim Burton's int...\n True, it does not follow the book very closely...\n Soapdish may go down as one of the single most...\n Okay this movie fine like I said but you surel...\n I agree with \"Jerry.\" It's a very underrated s...\n before watching this movie my thoughts were li...\n Very simply, they are all the syndicated episo...\n In general I like dinosaur movies but this one...\n The Radar Men from the Moon is a pretty typica...\n \" Domino \" has been widely condemned on this s...\n Great actors, an oscar nominee actress, stunni...\n just saw this exquisite 1982 movie Return of t...\n Kim Novak's a witch on the prowl for a mortal ...\n My yardstick for measuring a movie's watch-abi...\n I'm really suprised this movie didn't get a hi...\n Dan Finnerty and the Dan Band are so-o-o-o-o-o...\n Eddie Izzard is a one-in-a-million comic geniu...\n Mere thoughts of \"Going Overboard\" (aka \"Babes...\n I love those kind of movies. Blood, Revenge, A...\n Two houses, one street, one phone booth, one c...\n This 8 minute gem is not only timeless, but it...\n Deeply humorous yet honest comedy about a bunc...\n This is one of the weakest soft porn film arou...\n I have to say although this movie was formulai...\n Coming from Kiarostami, this art-house visual ...\n It really doesn't matter that Superman comic b...\n amazing movie. Some of the script writing coul...\n This is one of the best romantic movies I have...\n This film contains the one ingredient that all...\n This movie dethroned Dr. Giggles as the best h...\n I mean, you just have to love the Italian film...\n This is my favorite movie EVER. I have watched...\n If ever there was a film that deserved a big f...\n A friend and I went through a phase some (alot...\n \"The Lady from Shanghai\" is well known as one ...\n I rented this movie because I hoped it would b...\n I basically found Eden's Curve to be a very po...\n On the outside, this film is better because of...\n This movie deviated from the Bible and fell so...\n I saw this film at the Seattle International F...\n From the opening scenes of FIERCE PEOPLE (an i...\n Fame was released in the U.S. a year before I ...\n This movie is BRILLIANT.<br /><br />I don't re...\n This was an awful movie. Basically Jane March ...\n This series would have been a lot better if th...\n This has some of the stupidest fight scenes of...\n This kind of angst can only be inside a young ...\n Alejandro Amenabar, the young and talented Spa...\n When i first saw the title i was already deduc...\n I caught this on late, late Mexican cable and ...\n After watching this film I decided that it was...\n I was dragged to this movie about four years a...\n I quote Oedpius Rex because it is a tragedy th...\n I believe this is the most powerful film HBO P...\n A movie best summed up by the scene where a vi...\n Title: Dracula A.D. 1972 <br /><br />Director:...\n (r#97)<br /><br />There is one good thing abou...\n The biggest surprise in this movie was the per...\n There's been a whole lot made about Carlos Men...\n Spoilers!!<br /><br />I hate this one, but it ...\n I'm sorry to see that it has been rated that l...\n This movie is awesome for three main reasons. ...\n This happy-go-luck 1939 military swashbuckler,...\n This low-budget erotic thriller that has some ...\n DRIVING LESSONS is a little film that sneaks u...\n I have not seen the first film and if it anyth...\n Probably the finest fantasy film ever made. Su...\n I'm sorry to say that this movies was one of t...\n SO THIS IS where Columbia's head of their Shor...\n ### Spoilers! ### <br /><br />What is this mov...\n Although it's an R rated movie, I really doubt...\n For shame, for shame that a fine actor such as...\n No doubt about it. This is the animated short ...\n This was shown on the biography channel and wa...\n I have been watching King of Queens from the b...\n Wow, I can't believe i'm the first and only on...\n I think it was Ebert who gave Stella four out ...\n Gary Cooper, (Michael Brandon) played the role...\n The concept of this movie is unique, however i...\n This Film was done in really poor taste. The s...\n Once upon a time some evil people made a movie...\n There are certain horror directors for whom I'...\n I think its safe to say that if you only reall...\n This is no walk in the park. I saw this when i...\n Yes, I spelled that right. This movie is so pr...\n I had never seen the original Death Wish in th...\n I've rented this gem several times! It's a sma...\n Many of the classic films of the late '60s hav...\n Let's see. This movie is many things to differ...\n I really wanted to like this movie because the...\n i just wanted to say that when i was young my ...\n The Mad Monster starts in Dr. Lorenzo Cameron'...\n First of all, this movie is so confused that i...\n Let me start out by saying I can enjoy just ab...\n This is the worst exercise in middle class pre...\n I suspect there's some revisionist history goi...\n In the middle of The Hole I e-mailed a friend ...\n Given how corny these movies are, you gotta fi...\n I truly hate and despise this film and the fil...\n A really terrible movie, really low-budget, wi...\n I'm a big fan of Italian films from the sevent...\n Brilliant movie. The drawings were just amazin...\n I saw this movie when I was a child. It blew m...\n The stories in this video are very entertainin...\n Oh my god what a story! This movie is very goo...\n Zombie Chronicles isn't something to shout abo...\n This movie is BAD! It's basically an overdone ...\n Saw this movie recently and had higher hopes. ...\n This film made me so angry because of its stup...\n A vehicle for Michael Caine. Its fairly well w...\n That's the question you have to ask yourself w...\n Look, this film is terrible... the \"plot\" invo...\n For all viewers out there who have slammed Joh...\n To me this film is just a very very lame teen ...\n Kramer vs. Kramer is one film to hold on too a...\n No movies have grabbed my attention like this ...\n If this movie proves only one thing, it's that...\n I don't ever remember reading Sarah, Plain and...\n If you didn't enjoy this movie, either your de...\n Seeing Gary Busey in a G rated film was a firs...\n This movie has some beautiful sets and Albert ...\n Jeff Morrow is Leslie Gaskell, Barbara Laurenc...\n Uncle Frank is everyone's uncle. This document...\n Can you capture the moment? When first you hea...\n One of the better musical bios. Dennis Morgan ...\n \"Shadows\" is often acclaimed as the film that ...\n Somewhere in the dark recesses of my brain cel...\n Essentially plotless action film has two good ...\n Jeff Fahey has such alert eyes and a smudgy, i...\n This seems like one of those movies that we th...\n this movie just goes to show that you dont nee...\n And thats about all that is. This thing is slo...\n I just saw this at the Venice Film Festival, a...\n I rented this pile of sewer waste hoping for a...\n Wow. I read about this movie and it sounded so...\n If this is not heavily featured on every list ...\n The Best Years of Our Life is often compared t...\n Umm.. I was quite surprised that someone actua...\n Here is a film which clearly banks on being ma...\n This is arguably the worst film I have ever se...\n After seeing Shootfighter 1, and the buckets o...\n This film reminds me a lot of the anti-drug fi...\n ... when this movie so well proves that they i...\n I saw this movie a while ago and I was looking...\n I am not a fan of the original book but was ex...\n Hard to believe that director Barbet Schroeder...\n Sorry I couldn't be more expressive in my summ...\n They're showing this on some off-network. It's...\n A film destined to be on late-night TV long af...\n I have to say I quite enjoyed Soldier. Russell...\n I cannot stop saying how much I loved this mov...\n I have no idea how accurate the portrayal of F...\n I watched this series on PBS back in the eight...\n These days, Ridley Scott is one of the top dir...\n The title is the sound that one of the charact...\n Why remake the original \"Assault\"? To my mind ...\n Journey to the Far Side of the Sun is about th...\n Gwyneth Paltrow is absolutely great in this mo...\n With the exception of the fine rack on Clara E...\n Oh, what a bad, bad, very bad movie! Cowritten...\n I had nowhere to go. I was on a flight to Vanc...\n The most vivid portrait of small-town oddity I...\n I must admit, at first I was worried about Far...\n After the usual chase scene, Jerry accidentall...\n Separate LIES changed my life. Actually, the Q...\n \"Prom Night\" is a title-only remake of the 198...\n CAT SOUP is a short anime based on the legenda...\n I'm dumbfounded. Yes that's right. I'm really ...\n *SPOILER ALERT!! PLEASE DON'T READ IF YOU DON'...\n Carlos is perhaps not the most original comic,...\n \"The Grudge\" is a remake of Shimizu's own seri...\n Vampires Vs. Zombies starts with the breaking ...\n From the moment Christopher Lee puts on a pair...\n The over-heated plot of \"Bonjour tristesse\" is...\n i was hoping this was going to be good as a fa...\n If Jacqueline McKenzie and John Lynch weren't ...\n Imagine this...<br /><br />Whenever two people...\n Just ingenious enough to be plausible and stil...\n I only saw this film once a quarter of a centu...\n I first saw this movie back in the 1980's and ...\n Animation always seems to be fringe. In Japan,...\n When I go to see movies I would stay up and wa...\n As the story in my family goes, my dad, Milton...\n Its Christmas Eve and lazy and submissive hous...\n I saw this movie many years ago, and just for ...\n This one has a lot going for it - Sinatra, Sty...\n Cute film about three lively sisters from Swit...\n Just so that you fellow movie fans get the poi...\n Certainly NOMAD has some of the best horse rid...\n Dick Tracy wasn't the best for many comic book...\n Wesley Eure is young inventor Brian Foster, wh...\n Loki, Norse god of mischief, creates a mask th...\n I don't know what it was about this film that ...\n While this is horribly dated, I MUST insist......\n This series got me into Deighton's writing and...\n Visually speaking, this film is stunning. It h...\n In the wake of my personal research into the p...\n The movie is actually too slow. There are some...\n Banned as a 'Video Nasty' in the UK, Unhinged ...\n Zeppelin is my favorite band, so when I heard ...\n This is an amazing movie and all of the actors...\n On the plus side this does contain interesting...\n I had this movie given to me, and have to admi...\n Want to watch a scary horror film? Then steer ...\n What a stinker!!! I swear this movie was writt...\n On this site I've often lambasted the American...\n This is one of those so-called \"Hollywood Soci...\n I'm a big fan of camp, but when every plot 'tw...\n Yeah,it's low budget. Yeah,it's one of Candy's...\n I thoroughly enjoyed this film. I had read the...\n Superbly trashy and wondrously unpretentious 8...\n While on a vacation at the beach, red-haired b...\n Drew Barrymore plays young Holly Gooding, who ...\n There are about ten minutes about half way thr...\n I like the earlier description of this movie a...\n I'm a huge fan of both Emily Watson (Breaking ...\n Another Pokemon movie has hit the theaters, an...\n Spoilers ahead -- proceed at your own caution....\n There wasn't a 0 in the voting option so i was...\n One of b- and c-movie producer Roger Corman's ...\n Normally I am a typical \"creepy-crawly-hatin'\"...\n I was an extra on this film, in the part shot ...\n No budget direct to video tale of aliens in Ar...\n I watch a lot of films, good, bad and indiffer...\n So you're a giant mantis and you've been hangi...\n Errol Flynn is \"Gentleman Jim\" in this 1942 fi...\n Maybe if you smoked enough weed this would see...\n When THE CHINA SYNDROME was released, plenty o...\n SPOILERS 9/11 is a very good and VERY realisti...\n Steven Spielberg produced, wrote, came up with...\n A £3.50 DVD can be a gamble and this was one t...\n Hmph. Soul Plane supposed to be a \"black comed...\n I've long heard that to get their start in 'le...\n This is a very bland and inert production of o...\n After getting thrown out of their last job and...\n To those who say that this movie deserves anyt...\n Watching beautiful women sneaking around, play...\n Peter Lorre gives one of his most evil perform...\n My introduction into Yoji Yamada's cinematic w...\n This was just plain terrible. I read this book...\n One of the all-time great science fiction work...\n This is a piece of Hollywood product that shou...\n Yes, this film has many gay characters. It als...\n The acting was flat (at least none of the acto...\n \"Head\" is one of those films you'll have a lot...\n In the 3rd installment of \"Left Behind\" the ma...\n It has been about 50 years since a movie has b...\n I was really looking forward to seeing this mo...\n As many have detailed here with a level of ser...\n This anime was underrated and still is. Hardly...\n I'm just starting to explore the so far wonder...\n Relesed from Troma (which is my favorite movie...\n let me first just say that in the past, i have...\n Save the $8.97 you'll spend at Walmart to buy ...\n my friend and i rented this one a few nights a...\n Steven Speilberg's adaptation of Alice Walkers...\n I read the reviews before i watched this movie...\n Like his early masterpiece \"The Elephant Man\" ...\n Wow You guys are way too nice!!!Corny,Corny,Co...\n This is a candidate for worst films I've ever ...\n Paul Muni and Bette Davis overact monstrously ...\n Having previously seen this short on VHS tape ...\n I'm one of those people who'd crawl a mile thr...\n I had the good fortune to be at Perris Island ...\n I'm a big fan of the demonic puppets. Looking ...\n Unless you are petrified of Russian people or ...\n I like a lot of Myrna Loy movies. This film wa...\n SEX WISH was actually released (minus ten minu...\n What was I thinking when I rented this one? Wh...\n I know this sounds odd coming from someone bor...\n The film is visually stunning: from the dusty ...\n Before Lost everything shown on TV was predict...\n I've finally seen THE INCUBUS after waiting 20...\n Many moons ago when I was seven years old, I c...\n This is the ultimate Kung Fu movie! This is th...\n \"Snow Queen\" is based, of course, on the fairy...\n Confounding melodrama taken from a William Gib...\n After all these years, of Peter O'Tool's brill...\n \"What happens when you give a homeless man $10...\n I read the comments about this movie before wa...\n Swinging bachelor Matthau, a successful dentis...\n I haven't seen Ishtar, but I did have the misf...\n Such an awesome movie -- I was transfixed the ...\n A surprisingly effective thriller, this.<br />...\n Tim Curry was the reason I wanted to see this ...\n Well where do i start? i think it's very insul...\n If you're in the mood for a really bad porno w...\n It's a deeply stupid humor... but I loved it. ...\n a mesmerizing film that certainly keeps your a...\n Watching the preview of Armored I thought the ...\n It is a shame that such a great book was turne...\n This movie includes one of the best characters...\n i was enjoying this movie most of the time, bu...\n Wow. I went to the video store tonight because...\n Captivating tale of backstabbing behind the cu...\n I couldn't believe the comments made about the...\n Jesus Christ, what the hell happened here?. Th...\n Ridiculous thriller in which a group of studen...\n ...and I love it. Lots of special effects, and...\n Come on. The new twist is nearly ok, but from ...\n Hayden Christianson and Jessica Alba two of my...\n I watched this film in the theater in Edinbour...\n Certainly one of the dozen or so worst movies ...\n I have 2 complete sets from time life, This is...\n What a waste of talent -- although it appears ...\n Without a doubt one of the worst movies I've s...\n I just can't believe that these games can get ...\n Beside the fact, that in all it's awesomeness ...\n I just saw this movie for the first time ever ...\n This could have been the gay counterpart to Go...\n I loved this movie! So worth the long running ...\n Based on Neil Simons play of the same The Odd ...\n This film is worthwhile despite what you may h...\n I LOVED this flick when it came out in the 80'...\n First of all no adaptation is ever as good as ...\n I struggle to see the point of this movie. It ...\n Having just recently re-viewed \"Lipstick\" for ...\n We fans of Ed Wood tend to be an obsessive bun...\n This was the WORST movie I have ever seen! Mol...\n The film has no connection with the real life ...\n What made me track this movie down was the vie...\n What happened? 'Doubt' had so much potential t...\n They sell it as a horror movie, it's supposed ...\n Writers Perry and Randy Howze crafted a very e...\n Here's another film that doesn't really need m...\n Cliff Robertson as a scheming husband married ...\n Every time I watch Larry King Live, he rolls o...\n On a second viewing, this is still a wonderful...\n Frankly I don't understand why this movie has ...\n Good footage of World War I-era ships and plan...\n Streetfight (aka Coonskin) is a very unique fi...\n A SPECIAL DAY (Ettore Scola - Italy/Canada 197...\n I don't understand why it is so underrated on ...\n I haven't read a single IMDb comment for this ...\n If it were not for the \"Oh So Gourgous,\" Natas...\n ...when this movie was on.<br /><br />What a b...\n I think it's the sort of film you either love ...\n If you are looking for a definitive biography ...\n If the term itself were not geographically and...\n Reasonably effective horror/science-fiction a ...\n This is absolutely beyond question the worst m...\n Contrary to its title, this film offers no spi...\n Kojak meets the mafia. Telly Savales is one of...\n Having seen the original when I was 13 (and, y...\n \"Confirmed Dead\" is an important episode in th...\n To be a Buster Keaton fan is to have your hear...\n This film reminds me of 42nd Street starring B...\n If you really want to know how most of the act...\n I watch a lot of movies. A LOT of movies. Gett...\n Robert DeNiro and Eddie Murphy, what a team. W...\n There is no doubt that the Kokoda Trail depict...\n I have seen every episode of this spin off. I ...\n Even though this film's trailer and poster imp...\n What can be said about THIS? Truly one of the ...\n This movie was boring! <br /><br />Yes, there ...\n This is one of those movies that has everythin...\n I chose to watch this film at Tribeca based on...\n Following the movie that represents the pinnac...\n *** May contain spoilers. *** <br /><br />If L...\n This film is about a man's life going wrong. H...\n Hmmm, started well, like a hybrid of X-Files &...\n This is one of the Stooges best shorts. It was...\n It is unsettling seeing so many people giving ...\n Let's see: there's a civil war, a lost city, a...\n Richard Dreyfus is not the star here. He has a...\n i just saw this movie on TV..<br /><br />i've ...\n I am a member of a canoeing club and I can tel...\n Stylized Hollywood Westerns, full of familiar ...\n Rating-10 Classic Waters! One of his best and ...\n I have to say that this movie was not what i e...\n I saw this regurgitated pile of vignettes toni...\n For some reason, this film has never turned up...\n In France, Xavier (Romain Duris) is a young ec...\n You could stage a version of Charles Dickens' ...\n This film ends with a speech in which the narr...\n This movie is more deceiving than ever, using ...\n Three horror stories based on members of a tra...\n i have to admit thanks to this movie i'm now a...\n I rented this DVD having seen it while looking...\n I've long wanted to see this film, being a fan...\n Excellent exercise on multiple plans:<br /><br...\n I was really surprised, that my mom watched wh...\n See No Evil is the first film from WWE films. ...\n Goldie Hawn's depiction of a simple young lady...\n OK. I think the TV show is kind of cute and it...\n If this was nominated for a screenwriting awar...\n How to Lose Friends & Alienate People is in al...\n Although Stardust seems to be a fantasy film w...\n The film as entertainment is very good and Jim...\n This is NOT your run-of-the mill police story ...\n I got Monster Man in a box set of three films ...\n Ouch!! What a mess we have here. Not so much o...\n Interesting plot but painfully dull. The scrip...\n The movie was awful. The theater was dead with...\n Dear Richard, I know we all loved you on Home ...\n I love dissing this movie. My peers always try...\n This is easily one of the worst films I've see...\n Trudy Lintz (Rene Russo) was one very fortunat...\n Pier Paolo Pasolini, or Pee-pee-pee as I prefe...\n Fred \"The Hammer\" Williamson delivers another ...\n The year still has three weeks to go but unles...\n I saw this film on 19SEP2009 at the Cambridge ...\n FREDDY FORSYTH has come up with a storyline wh...\n How do I begin to review a film that will soon...\n Ten years after the first movie, James Belushi...\n If you havn't seen this movie I highly recomme...\n Hard Justice is an excellent action movie! The...\n This movie is very similar to Death Warrant wi...\n Criminally Insane 2 is included on the new DVD...\n Though for most of us, sexiness is a variable ...\n I know it's hard for you Americans to find Eur...\n Sequel to \"The Kingdom\" is bloodier and even m...\n I originally saw this movie in a movie theater...\n You cannot be seeing the same movie if you did...\n I'm hearing rumors of an upcoming \"Leonard Nim...\n Yeah, Madsen's character - whilst talking to t...\n this movie has a great message,a impressive ca...\n The acting was terrible, the cheesy, fake, CHE...\n Take a subject I didn't know much about and ma...\n Rated PG-13 for violence, brief sexual humor a...\n I went into this film thinking I wasn't going ...\n Even for sci-fi this movie is movie is a littl...\n I had stifled high hopes for this David Lynch,...\n Necessary Roughness (1991) was a bad comedy/ d...\n I've always been enthusiastic about period dra...\n 'SherryBaby' is quite a painful and sordid mel...\n Sorry, but I usually love French thrillers - e...\n Detective Dave Robicheaux is trying to link th...\n It's possible that A Man Called Sledge might h...\n GoldenEye 007 is not only the best movie tie-i...\n I have watched Grand Champion all the way thro...\n I cannot believe the number of people referrin...\n After a very long time Marathi cinema has come...\n There are movies that are leaders, and movies ...\n When a group of escaped convicts manage to fle...\n Volcano is set in Los Angeles where a minor ea...\n Possible spoilers.<br /><br />Although there w...\n This was one of the worst films I have ever se...\n I saw this movie the first time at about twelv...\n Something that really does not go down right w...\n This movie seemed to have it all going for it ...\n Having first watched the movie at 14, I rememb...\n I had been long awaiting this movie ever since...\n Simply put, Paul Bettany and Jennifer Connelly...\n Unfortunately, I've never seen the full versio...\n I had a different experience with this movie -...\n Well, I must say that this was one hell of a f...\n I began watching this movie with low expectati...\n Many have disparaged Never Say Never Again bec...\n Esther Williams gets her first post MGM starri...\n This movie was a long build-up with no climax....\n This film is by far the worst film I have ever...\n First, let me make it clear that I'm a big fan...\n The delivery of some very humorous rude lines ...\n Check out the two octogenarians who review Lea...\n Night Of The Demons is definitely one the defi...\n \"Yagyu ichizoku no inbo\" (let's just say \"The ...\n !!!!! OF COURSE THERE'S SPOILERS !!!!! I'm sur...\n If you delete the first twenty minutes or so o...\n Here's another of these modern-day ultra-sleaz...\n I had a feeling that after \"Submerged\", this o...\n This movie was so bad If anyone out their who ...\n We've just watched the last of the series show...\n An unusually straight-faced actioner played by...\n This movie is a mess. I'm surprised it even ha...\n There's nothing quite like watching giant robo...\n It's one of the paradoxes of Basil Rathbone's ...\n Dynasty Revisited in Hawaii... Full of clichés...\n I must admit, I didn't expect this to be as go...\n Oliver Gruner is totally unknown to me. My fri...\n Eddie Murphy spends his time looking for lost ...\n If you like stupid jokes and a terribly predic...\n I recently watched Spirit and enjoyed it very ...\n I came to Nancy Drew expecting the worst...bec...\n All Dogs go to Heaven was a quirky, funny movi...\n I don't usually like TV movies, I reckon that ...\n This film is about the complicated friendship,...\n Frightmare begins with a horror movie icon kil...\n I had a video of the thing. And I think it was...\n What an appalling film. Don't get me wrong, Ge...\n Orca starts as crusty Irish sea captain Nolan ...\n What a boring movie. While it did have humorou...\n \"House of the Damned\" (also known as \"Spectre\"...\n In my opinion this movie advances no new thoug...\n This movie is like the thousand \"cat and mouse...\n It's pretty bad when the generic movie synopsi...\n This is one of the best presentations of the 6...\n If this is classed as 'real life' of London, t...\n So the other night I decided to watch Tales fr...\n Okay, I can sit through almost any movie, and ...\n I do not remember, at least in the last ten ye...\n Thomas Ince always had a knack for bringing si...\n this was a favorite Christmas Special that I w...\n The movie is a bit \"thin\" after reading the bo...\n I actually liked this movie even though this m...\n Usually, any movie with Steve Railsback in the...\n The cast is different and now they took a diff...\n Aliens let lose a giant monster named Zarkorr,...\n I thought Rachel York was fantastic as \"Lucy.\"...\n The theatrics and the drama included in the mo...\n I agree with msinabottle; this is a great movi...\n I haven't for a long time seen such a horrible...\n The Three Stooges are arguably the greatest co...\n ...for one of the worst Swedish movies ever......\n I just finished watching this (last weekend) a...\n Man oh man, this was a piece of dog sh#t. I re...\n I recently decided to revisit The Omen trilogy...\n Sjöströms masterpiece and a movie that capture...\n I love this show and my 11 year-old daughter a...\n The biggest problem with \"In Search of Histori...\n I had to suffer through this movie three times...\n \"The Egyptian\" is set during the reign of one ...\n \"Japan takes the best from around the world an...\n I am glad to read so many negative comments ab...\n THE DECOY is one of those independent producti...\n In my opinion, the ending is what completely r...\n Largely dense road movie with some comic relie...\n This really is the most dreadful film I have e...\n I had high expectations following \"My Beautifu...\n Don't ask me why I love this movie so much...M...\n I am writing this with 10 minutes left before ...\n I consider myself to have a decent sense of hu...\n The British 'heritage film' industry is out of...\n This is beyond a shadow of a doubt the absolut...\n Years ago many big studios promoted serial fil...\n I'm 14, so you probably would think I have nev...\n Nightbreed is not only great, it is also uniqu...\n This movie is one of the worse movies of all t...\n Fred Carpenter screened Eddie Monroe at Boston...\n This movie was made for fans of Dani (and Crad...\n I don't need to say much about how good this d...\n Emily Watson's Natalia is absolutely the most ...\n Safer indeed. Hitchcock is cinema's all time p...\n \"Gespenster\" (2005) forms, together with \"Yell...\n Anurag Basu who co-directed the flop KUCCH TO ...\n this is the worst movie in the world. the only...\n I'm a 55-year-old fairly jaded gay white man. ...\n There are only a handful of movies that were m...\n I love this movie. I just saw it for the first...\n as a fan of robocop, i always loved this movie...\n Probably because this is Columbia's first film...\n The action in this movie beats Sunny bhai in G...\n This is so poor it's watchable.<br /><br />The...\n Video Vault By Shawn K. Inlow<br /><br />My Ar...\n LES CONVOYEURS ATTENDENT was the first film I ...\n I've watched a few episodes of this show and h...\n Even those of us who like cute animal pictures...\n ...would probably be the best word to describe...\n I have not managed to completely block out thi...\n This is a well-crafted piece from everyone's f...\n the movie is far more sophisticated and intell...\n ********Spoilers--Careful*********<br /><br />...\n I can admit right away that this is one of the...\n This film easily rivals the emotional strength...\n Falls into the film category of \"Way too ridic...\n I guess this is the first time I have seen a R...\n I must confess, I was surprised at how good th...\n It's a ghost story. It's a cannibalism story. ...\n The combination of amazing special effects and...\n With all the shoot em up, blood horror movies ...\n Saw this in the theater in '86 and fell out of...\n The movie has an excellent screenplay (the sit...\n I have watched this movie over and over since ...\n This movie is an embarrassment to film-making....\n I was really excited about seeing \"Cold Mounta...\n This is not a good film by an standards. It is...\n Zombi 3 has an interesting history in it's mak...\n I expected so much more than what I received f...\n A true masterpiece of the Soviet cinematograph...\n Voor een verloren soldaat , for a lost soldier...\n That's all I can really say about this film. I...\n I jumped for joy to learn this show ended. Thi...\n The film gets my stamp of approval. The scene ...\n This movie set out to be better than the avera...\n L'Hypothèse du tableau volé/The Hypothesis of ...\n Pictures that usually glorify a hero have mean...\n I rented this film from Netflix for two reason...\n Roopa (Kamalinee Mukherjee) loses her parents ...\n In A Woman Under the Influence Mabel goes craz...\n I look around in the video store still in shoc...\n \"Eighteen\" (2004) tells the story of Pip Ander...\n I don't know why all of the critics say this w...\n This is a \"B Series\" Film Noir, and my vote re...\n My all-time favorite movie! I have seen many m...\n Problem with these type of movies is that lite...\n Where do I begin? I sat down ready to laugh a ...\n Well, Dude Where's My Car might be at least a ...\n Chris, an adopted son of a moral family, a los...\n I was born in Beijing, China and moved to the ...\n Typical 90's comedy, situational comedy simila...\n \"War is in your blood\" Rambo says early in the...\n <br /><br />Ok, well I rented this movie while...\n If there are people that don't like this movie...\n I have read with great interest the only avail...\n How do stories this bad get made. That's not a...\n Terrfic film with a slightyly slow start - giv...\n Anyone who doesn't like this film is one who i...\n Disappearance is set in the Mojave desert as J...\n This film makes about as much sense as an 'Ozz...\n Half the reviews were good so i took a chance ...\n A criminally short lived show that went on to ...\n This is almost Ed Wood territory. Yeah, that r...\n The sequel is exactly what you will expect it ...\n Not much to say on this one. A plot you can pr...\n Despite the fact that this was a Made-For-TV m...\n SHRIEKER is a Full Moon production. I knew wha...\n This is an excellent movie. The cast is a grea...\n I watched this film not knowing anything about...\n This movie contains no humor for anyone who ha...\n Hollywood's misguided obsession with sequels h...\n I have lost count of how many reviews I've wri...\n When you see the cover of the DVD you're convi...\n I never was an avid viewer of \"Crocodile Hunte...\n I know no one cares, but I do. This film is hi...\n Most successful comic book movies usually depe...\n What can I say about Ocean's Twelve? Who thoug...\n I saw this film on TV many years ago and I saw...\n Oh, come on, learn to have a little fun. When ...\n The acting is generally pretty weak. The dialo...\n **Possible Spoilers Ahead**<br /><br />\\tJason...\n Something happens to Sondra Pransky when she e...\n This film was the one of the first, of the 70s...\n Ignore the bad reviews on here, this film is a...\n When I look for new cars, I expect not to be s...\n The rating is only a 5 because it's a movie th...\n This TV show is possibly the most pathetic dis...\n A documentary without a loss for words... ever...\n Rob Schneider is a famous comedian cause of hi...\n Scooby Doo and the Monster of Mexico was no do...\n Japan 1918. The story of 16-year old Ryu begin...\n This film starts as it ends and ends as it sta...\n Can you people please stop believing everythin...\n Two actors play rival gangsters in three films...\n This is one of my favorite movies of all time....\n Ocean's 12<br /><br />'If you steal fifty mill...\n Remember those terrible war movies your grandm...\n Körkarlen (1921), a classic film with cult sta...\n yeah, it's a bit of a silly film, so if you ar...\n We all have seen some unending epics in our ti...\n to make up a movie-going audience - I'm certai...\n Enjoyed viewing this film on TCM and watching ...\n In Pasadena, Mrs. Davis (Joanna Cassidy) sends...\n Being born in the 1960's I grew up watching th...\n if you have a chance of seeing this film do se...\n If you want Scream or anything like the big-st...\n Hell to Pay is a bit bloody for my taste, even...\n As I sat in front of the TV watching this movi...\n Time spent watching this film was time wasted....\n Great cast, great acting, great music. Each ch...\n I just watched this horrid thing on TV. Needle...\n A Sci-Fi Network original. Not the best. Not f...\n Anyone who has a remote interest in science fi...\n The part of The Grinch was made for Jim Carrey...\n I was on a British Airways flight from London ...\n CHANCES ARE is a charming romantic fantasy abo...\n As has been stated countless times, \"The Hills...\n Everywhere I hear that people are calling this...\n It's the same old, \"If I can't get the funding...\n I rented this for my son who is recently found...\n The best thing about this flick is that it see...\n The entire movie, an artful adaptation of one ...\n Renee Zellweger is a Kansas housewife whose do...\n Well... easily my favourite TV series ever. Ca...\n I'm watching this on the Sci-Fi channel right ...\n How poor is this movie? Well, I got it less th...\n The only reason I bought the DVD was to satisf...\n Raising Victor Vargas fails terribly in what i...\n This isn't so much a review of A Tale Of Two S...\n I didn't know this was a silent movie with nar...\n Most college students find themselves lost in ...\n I've recently watched this movie, in a lazy Su...\n Gandhi My Father is a well made movie. It nice...\n A study in BAD. Bad direction, bad acting, bad...\n I would have given this film a one star vote h...\n I too was intrigued by the high (8.5) rating f...\n As with a bunch of guys at school we must give...\n i thought this movie was really really great b...\n Thomas Clay has been mixing with the wrong typ...\n wow, the Naked Brothers Band. What should i sa...\n This may sound crazy to even the people who re...\n I must admit a slight disappointment with this...\n Having read some of the other comments here I ...\n This may be the only film that actually comes ...\n I think the show had a pretty good concept to ...\n Words are seriously not enough convey the emot...\n It says a lot about the United Kingdom when te...\n Director John Madden, of Shakespeare in Love f...\n At a panel discussion that I attended after vi...\n Uma and Travolta were very good together, but ...\n Even if you're not a \"theatre person,\" I highl...\n You have to be awfully patient to sit through ...\n A lot of themes or parts of the story is the s...\n A beautiful, sensitive film that brings home t...\n One of the few reasons to make these pointlss ...\n It's been 19 years since Gordon Gekko used \"Wa...\n This has the funnist jokes out of all the Chee...\n The GREAT NEWS is that this film is now AVAILA...\n Bette Midler showcases her talents and beauty ...\n Much better than it is generally given credit ...\n Bill Paxton stars in and directs this highly o...\n About the movie itself, there are ample commen...\n This movie is one of the worse examples of hyp...\n I gave this a 2, and it only avoided a 1 becau...\n I really liked this movie. If other people wan...\n Robin Williams and Kurt Russell play guys in t...\n Got this the other day from the Creators on DV...\n I guess I am coming late to the party. I just ...\n I recently rented this video after seeing \"Fin...\n My first question after seeing this film was, ...\n Rise of the Undead starts as some huge nuclear...\n One of the best parts of Sundance is seeing mo...\n Jane Eyre has always been my favorite novel! W...\n I saw this cinematic wretchedness in a dollar ...\n Yep, this has got to be one of the lamest movi...\n Loosely based on novels by Earl Derr Biggers, ...\n This is one awful movie!! Some people told me ...\n That's My Bush is a live action project made b...\n Full disclosure: I'm a cynic. I like my ending...\n I didn't catch Gilmore Girls when it first cam...\n I had high hopes going to see this, as I alway...\n A pleasant surprise! I expected a further down...\n To quote Flik, that was my reaction exactly: W...\n Daniel Day-Lewis is Christy Brown, a victim of...\n I think this movie is a very funny film and on...\n (Contains spoilers)<br /><br />People who put ...\n I love Umberto Lenzi's cop movies -- ROME ARME...\n The Last Station, director Michael Hoffman's m...\n This cheapo remake of the terrific Five Star F...\n The film Torrent was a first and a last for Gr...\n I know I've already added a comment but I just...\n Alain Delon visits swift, sure vengeance on th...\n I enjoyed this show for two reasons 1. Richard...\n \"Angels in the Outfield\" was originally a 1951...\n William Lustig's followup to \"Maniac\" proves c...\n Can't liberals like Alec Baldwin get it throug...\n East Side Story entertains and informs about a...\n This is a brilliant documentary that follows t...\n Come on Tina Fey you can do better then this. ...\n Terry Gilliam traveled again to the future (he...\n I have only had the luxury of seeing this movi...\n Frankly, this movie has gone over the heads of...\n Speed which I believe is direct copy of the Ho...\n ... And boy is it soft <br /><br />I saw this ...\n Five Deadly Venoms is not as bloody and violen...\n I did not enjoy the film, Joshua, at all. Perh...\n I grew up on the 'Superman II' theatrical vers...\n Today, Bea Arthur died so I was cruising aroun...\n I really love the sexy action and sci-fi films...\n I stumbled on this late last night n TCM.<br /...\n Nick Nolte gives an excellent performance in K...\n Don't let the name of this film deceive you, I...\n *MINOR SPOILERS*<br /><br />Need any further p...\n I saw this movie at a drive-in in 1959. Until ...\n This was one of the funniest and greatest sitc...\n I also just got back from an advanced screenin...\n ...they bothered making this movie? Anyone? I ...\n What is there to say about this movie? This mo...\n Evan Almighty continues the mainstream Bruce A...\n Bloody Birthday is a totally rubbish slasher m...\n I suppose it's quite an achievement to be able...\n Dysfunctional family goes home for the holiday...\n Yes, this is one of the greats of the black ac...\n It's a strange thing to see a film where some ...\n Finding the premise intriguing, and reading th...\n Without question, the worst ELVIS film ever ma...\n If derivative and predictable rape-revenge thr...\n I first saw this film when it was transmitted ...\n Felt mine was while watching this...but it see...\n Well, i expected, for all the hype and Oscar n...\n Richard Brooks excellent 1967 film of Truman C...\n A delightful gentle comedic gem, until the las...\n <br /><br />I saw once No Man's Land (1987) - ...\n This film is wonderful example of the quality ...\n This film is superb! Wesley Snipes Plays Blade...\n Rainy day with not much to do. We were surfing...\n Herbet Clutter, wife Bonnie, and their teenage...\n A real surprise. Not exactly family entertainm...\n Victor Sjöström was quite the master in this f...\n 'The Fox and the Child' is the new film by Fre...\n And it got it in France ! Why not in the rest ...\n I'm not sure that this comment contains an act...\n I watched this movie by chance, get curious by...\n I cannot get over how awful this movie was. My...\n I find it almost touching how Star Trek fans t...\n Beyond dirt cheap, this shot-on-video exercise...\n I find this movie very enjoyable. The plot is ...\n The fifth \"Black Emanuelle\" I've watched has, ...\n Klatret©ªsen(Catch That Girl) is really great ...\n Bad plot (though good for a B-movie), good fas...\n I have been an environmentalist for years and ...\n Fun mix of vampires and martial arts is a bit ...\n I spent many a sleepless night after watching ...\n For those who remember this video's initial im...\n This movie could have been great. It is not in...\n It's one of the funny things about being young...\n I would have given this otherwise terrific ser...\n \"The Groove Tube\" was initially shown on video...\n Viva La Bam was one of those shows that I didn...\n In the area of movies based off of screenplays...\n Very rarely does one come across an indie come...\n This is the worst film I have ever seen.I was ...\n Not having any idea what this film was about, ...\n Cleopatra 2525 is a very funny, entertaining s...\n This is an excellent, little known movie. Tom ...\n If anybody really wants to understand Hitler, ...\n Even the Maria Montez/Jon Hall technicolored b...\n This film marked the end of the \"serious\" Univ...\n I rented this film about a month ago when I ha...\n Teenager Tamara (Jenna Dewan) has it rough. Sh...\n Colorful western.<br /><br />Wyoming cowboy Ja...\n Waiting to go inside the theathre with tickets...\n No wonder this was released straight to DVD he...\n I have just recently seen Heaven's Gate. After...\n The second episode of the new \"Lost\" gives you...\n So I'm at home, flipping channels one night, a...\n I loathed this film. The original Phantasm had...\n I think the romance of this movie helps couple...\n Kubrick again puts on display his stunning abi...\n \"Labyrinth of Passion\"--with the possible exce...\n I simply cannot believe the folks that made an...\n This wasn't really a very good movie. There we...\n How is it possible to make such a bad movie wi...\n Thank God that there are films out there that ...\n This movie reminds me of \"Irréversible (2002)\"...\n I love this show. My girlfriend was gonna get ...\n I have found this epic to be of an astonishing...\n Cheerleader Massacre was supposed to be the fo...\n I first discovered Alexander Korda's (1940) Fa...\n As I write this, Norman Wisdom is a very confu...\n Fassbinder's most lavish production sacrifices...\n this is the worst movie i have ever seen in my...\n Cuba Gooding,Jr. will win the Oscar for BEST A...\n The Christmas Secret was touted as a wonderful...\n Paul was totally ripped off by someone at para...\n When a dowdy wife (Shearer) loses her husband,...\n This failed exercise in satire or commentary o...\n I know Terry Gilliam is considered as a good d...\n Mild SPOILERS contained herein. I'm spoiling t...\n It's initial premise is based on the American ...\n \"Tesis\", \"Open your eyes\" and \"The Others\" wer...\n The glorious Edward gets to move up in the wor...\n I was a schoolboy when I watched this film for...\n And I absolutely adore Isabelle Blais!!! She w...\n 1st watched 3/17/2002 - 2 out of 10(Dir-Mario ...\n Slasher films are often seen as the derivative...\n Normally I wouldn't go to the trouble of comme...\n I have to tell you, this is a great movie. It ...\n Seriously. I just wrapped up my first viewing ...\n It's become extremely difficult to find a good...\n As I stated earlier this year, in my review of...\n I don't know why I even watched this film. I t...\n The best thing -- and that's pretty good -- ab...\n Are you kidding that was AWFUL!!! <br /><br />...\n During the first 3 seasons Fairly Odd Parents ...\n First of all, this film can be divided into th...\n 1/10 and that's only because I don't go lower ...\n If this awful film moved at a snails pace it w...\n The Monkees \"Head\" is one of those peculiar ph...\n I just got back from \"AGS\". After seeing it, I...\n You know the people in the movie are in for it...\n The Ogre doesn't seem to have won itself a ver...\n I wanted to like this film, I really did. It's...\n This is the second addition to Frank Baum's pe...\n \"Don't Change Your Husband\" is another soap op...\n Before this was shown on MTV or VH1 it was at ...\n Just saw this at the 2003 Vancouver Internatio...\n This has to rate as one of the cheesiest of TV...\n Audrey, I know you truly cherish your husband ...\n Lee hosted the 100 Years of Horror for Ted New...\n There are moments when you don't want those de...\n What another reviewer called lack of character...\n By the mid 1990s, the career of animator-direc...\n Seen all 4 installments, this one is by far th...\n The dubbing/translation in this movie is downr...\n So, American Pie: Beta House is the 6th Americ...\n The first time I had heard of Guest House Pari...\n I followed this entire series when I was a chi...\n Rickman is sexy and good, but the \"stranger\" i...\n My girlfriend and I have a thing for Robots. S...\n I couldn't believe it. I had to rub my eyes a ...\n It is said that there are some people out ther...\n As one of the few commentators not to have see...\n I'm a large scarred heterosexual male ex-bounc...\n Bloody Birthday plays on the assumed innocence...\n Horrible movie. This movie beat out revenge of...\n DEAD HUSBANDS is a somewhat silly comedy about...\n To be honest, I've never been to the Congo or ...\n Bo Derek's debut film remained unseen for eigh...\n his has to surely be one of the worst gay-them...\n If you live in the suburbs, are relatively wel...\n Since the characters begin with \"Unknown\" iden...\n Every once in a while, an indie comes along th...\n I loved this film. I first saw it when I was 2...\n How sheep-like the movie going public so often...\n Just saw this movie on TV and I have to admit,...\n Morgan Freeman and Paz Vega are the mismatched...\n When I watched this movie when I was a kid I d...\n Stephen Hawking has one of the greatest minds,...\n It is a Frank Zappa axiom that \"music journali...\n Truly terrible, pretentious, endless film. Dir...\n Fortunately, I haven't seen this film in a mov...\n I personally thought the movie was pretty good...\n In a critical scene, as Katharine Clifton (Kri...\n It doesn't matter whether you've experienced t...\n First off, if you want to make a good film, do...\n As a former Kalamazoo resident with a fondness...\n I don't understand jokes. I do believe this is...\n This film, by Oscar Petersson, is unique. Its ...\n I LOVE THIS MOVIE!!!<br /><br />This beautiful...\n I saw this film when it first came out in the ...\n All I can say is, this movie is made for the L...\n Poor acting, no script, no plot, no convincing...\n Kannathil Muthamittal was simply one of the mo...\n This game is very good for the n64. You can sk...\n This film, also known as \"don't look in the ba...\n MANNA FROM HEAVEN is a terrific film that is b...\n I have to say that I had low expectations for ...\n Axel Nordman (Cassavetes) shows up on the New ...\n Eddie Izzard is genius with his non-stop humor...\n What a terrible movie! The acting in this film...\n I love this film. The noir imagery combined wi...\n My boyfriend and I decided to go see this movi...\n A Formula For Murder isn't a well known Giallo...\n I was deeply moved by this movie in many respe...\n Despite the title, The Sword Bearer, and the D...\n Good for an evening's entertainment - but the ...\n What really stood out to me about this movie w...\n I am truly sad that this is the first bad revi...\n Too bad, I really like Kristen Cloke and Gary ...\n Good old black and white Graham Greene based p...\n I was also on hand for the premiere in Toronto...\n Oh boy. Where do I begin on this piece of slim...\n The king is dead long live the King! The triad...\n What i like about you is one of those series y...\n This movie is one of the most Underrated movie...\n In Spain, the former sailor Ramón Sampedro (Ja...\n In fact, the nature of the whole series is irr...\n A few words for the people here in germen's ci...\n Kramer Vs. Kramer is a near-heartening drama a...\n I simply could not finish this movie. I tuned ...\n I know my summary sounds very harsh, but this ...\n ***SPOILERS*** ***SPOILERS*** This is without ...\n Saw this movie at a Saturday matinée with a fr...\n Monika Mitchell's showbiz satire has some laug...\n A small town kid working in a big city becomes...\n Picture the scene: a mountainous alien landsca...\n This is a very grim, hard hitting, even brutal...\n Frailty--8/10--It's non-sensical title and \"Bi...\n OK the plot is, wait you got me there is no tr...\n I cannot see why filmmakers remade this movie....\n As an engineer, I must say this show's first s...\n I loved this film. It was so intelligent but i...\n <br /><br />This is the best mock documentary ...\n A unique film...one of the best of all time. A...\n This movie is absolutely terrible... Definatel...\n There are so many things wrong with this movie...\n What a shame. This could have been good. The m...\n An American family moves to the countryside of...\n I would probably want to give this movie a zer...\n I read John Everingham's story years ago in Re...\n The team of Merian Cooper and Ernest Schoedsac...\n A fun romp...a lot of good twists and turns! (...\n One of the biggest hits of 1926, Brown of Harv...\n OK, the story - a simpleminded loony enters a ...\n Although I totally agree with the previous com...\n This is a wonderful movie about the struggle o...\n Belmondo is a tough cop. He goes after a big-t...\n After seeing the DVD release of the Blues Brot...\n Here's another entertaining Clint Eastwood act...\n Every time I watch this movie I am more impres...\n When you get ahead of a film, you know you are...\n I first watched Kindred in 1987 along with ano...\n - Having grown tired of the rat race and cramp...\n Musical bios are all cut of the same cloth. Ho...\n Never, ever, have I been as impressed by a fil...\n I can not say this movie was a hilarious, but ...\n You all know the story of \"Hamlet\". I do. <br ...\n I have to say, its not very good. Polly Bergen...\n It is an interesting exercise to witness the e...\n To surmise, this film involves two actors (Cai...\n There are a few aspects to Park's movies, and ...\n I've just finished seeing the film for the fir...\n This has to be one of the worst movies I've ev...\n Has anyone found a way to purchase copies of t...\n Oh dear. While Chevy Chase and the gang at SNL...\n Nothing is worse than the genocides of our wor...\n Look, I'm sorry if half the world takes offens...\n This movie was sadly under-promoted but proved...\n Joseph Conrad's novel, Heart of Darkness, had ...\n A case of being in the right place at the righ...\n I was an extra on this film but wish i wasn't ...\n This might contain a spoiler, so beware.<br />...\n Oz is without a doubt my favorite show of all ...\n This film does for Infantry what Das Boot did ...\n Our reviewer from Toronto told you what you ne...\n This film fails to capture any of the mystery ...\n I do not fail to recognize Haneke's above-aver...\n \"Two wildlife photographers are traveling thro...\n The Three Stooges has always been some of the ...\n I saw this film when it came out. Let me see n...\n We saw this on the shelf at the local video st...\n OK, first of all, ignore the last person' revi...\n Man am I stoked I can leave feedback for this ...\n Every time I think about this film I feel phys...\n So when I first saw commercials for Greek I di...\n I saw this film at a time when I was timidly t...\n I liked this movie, the second Naruto feature ...\n ...this is, above all else, the typical Crown ...\n I'll give it this: I didn't stop watching, and...\n I remember seeing this movie 34 years ago and ...\n A horribly pointless and, worse, boring film. ...\n at the beginning i was happy to know about a n...\n The prey has an interesting history, unless yo...\n Okay... she's on the boat with this guy, reali...\n Dark comedy? Gallows humor? How does one make ...\n Completely agree with other review.<br /><br /...\n It was so BORING! No plot whatsoever! Basicall...\n Let me be up-front, I like pulp. However it is...\n Well I guess it supposedly not a classic becau...\n I am Puerto Rican and this is one of the worst...\n These writers are trying to re-create the char...\n Once again, Pia Zadora, the woman who owes her...\n Here is one the entire family will enjoy... ev...\n My wife and I endorse all the positive comment...\n This may not be the worst movie ever made, but...\n Honestly, my expectations for Little Bush were...\n This movie is a great example of how even some...\n I haven't seen the original \"Incredible Journe...\n **************Possible spoilers********** Ther...\n Beaudray Demerille(a weak Peter Fonda, who als...\n I watched the unrated version of this movie an...\n A man named Jerry comes into possession of an ...\n Seriously, where is Al Pacino's Oscar nominati...\n toplines this ok comedy about an aging father ...\n In this tale of a tightly wound Christian fami...\n There are so many goofy things about this movi...\n Right at this moment I am watching this movie ...\n The Darkling was a very interesting and entert...\n For what it is, \"Raising Victor Vargas\" is abo...\n This is not a bad movie. It follows the new co...\n I'm not a huge Freddy Krueger fan,but that doe...\n This film would be a great piece of history if...\n Well, at least my theater group did, lol. So o...\n While I score the movie a 7, I also should poi...\n I wonder why I haven't heard of this movie bef...\n Tiny Tweet and Sly the sneak are locked up in ...\n I finally watched the third film in Mehta's tr...\n \"Atlantis: The Lost Empire\" was everything the...\n OK, I didn't have high expectations but this f...\n The film begins with promise, but lingers too ...\n Let's go straight to the point: this is The Mo...\n \"De Dominee\" is based on the life of a real du...\n Bunny Comes Home 'This Man's Navy' deserves mo...\n **Spoilers contained**<br /><br />I'd heard fr...\n You know, I'm sure the boys were sitting aroun...\n This was/is an incredible movie, with incredib...\n Its Hollywood imitating Daytiem Soap Operas at...\n There I am sitting at home in the morning, sud...\n At first,this movie seems so bad that i almost...\n And so the great rewriting of history continue...\n This movie is by far the worst movie ever made...\n Just when you thought it was safe to go back i...\n I rented it because the second segment traumat...\n ***Possible Spoilers***<br /><br />When I saw ...\n An old man who lives in the mountains wakes up...\n I really enjoyed this movie. It succeeded in d...\n I wouldn't be surprised if Soderbergh was pres...\n I would like to comment on how the girls are c...\n This is yet another gem from the pen of Daniel...\n My summary refers to the fact that this film h...\n If you are planning to rent or buy this movie ...\n Realistic movie,sure,except for the fact that ...\n I can't believe I waste my time watching this ...\n I'm biased towards any movie that paints a lux...\n My father was the warden of the prison (he is ...\n Oh, CGI. A blessing when used properly. A sin ...\n When I first saw this I thought it was a joke....\n Shuai is a burly and uncouth young Beijinger w...\n But it's not. The plot isn't all that bad, the...\n I love a good war film and I fall into the \"be...\n This conglomeration fails so miserably on ever...\n Admittedly, you can put a model airplane again...\n Against All Hope is a very poorly made, someti...\n CRY FREEDOM is an excellent primer for those w...\n Not only have I read the book and watched the ...\n This musical is decidedly mixed, and none of t...\n I loved the first season. The quality went dow...\n This movie has no story. It's only about a bun...\n This story of a teacher who has a relationship...\n Just saw it at as closing film of Austin Film ...\n THE CHIPMUNK ADVENTURE <br /><br />There are s...\n I have not seen a better comedy than the King ...\n Ninja Hunter (AKA Wu Tang vs Ninja) is pure en...\n The problem with other actors cast in the rôle...\n Following is an intriguing thriller that requi...\n A delightful if somewhat predictable TV movie,...\n What the hell is this movie about? Well, if I ...\n If we compare the movie industry with an ocean...\n OK so it's not great either, but only because ...\n I LOVE this movie! Beautifully funny and utter...\n This movie was more of a passage into manhood ...\n For many year I saw this movie as a real movie...\n Granting the budget and time constraints of se...\n Why bother seeing this movie, if you have grea...\n As the 2000's came to a close, king Kong's ado...\n An intelligent summation of Cold War era mutua...\n Lucky me! I got a sneak peak at this pathetic ...\n and shot in Vancouver with the 'mountains' of ...\n This film is a calculated attempt to cash in t...\n Hearing such praise about this play, I decided...\n The motion picture was, in all likelihood, mad...\n Saxophonist Ronnie Bowers (Dick Powell) wins a...\n The main point of the movie, IMO, is the fact ...\n     Film auteur Stephan Woloszczuk explores th...\n I get the feeling that those involved in makin...\n Im a huge M Lillard fan that's why I ended up ...\n This wonderful movie really takes the time to ...\n DO NOT WATCH THIS MOVIE IF YOU LOVED THE CLASS...\n We're talking about a low budget film, and it'...\n This seemed really similar to the CHILD'S PLAY...\n Edward Dmytryk directed this shadowy movie abo...\n Breaking Dawn starts in a Californian college ...\n There's something going on in this film direct...\n Often when TV series are transferred to the bi...\n OZ is the greatest show ever mad full stop.OZ ...\n Gorgeous Barbara Bach plays Jennifer Fast, a t...\n This is the only full length feature film abou...\n I was absolutely blown away by John Cassavetes...\n The Crater Lake Monster is easily one of the m...\n Everything about this movie is bad. everything...\n Troma founder, Lloyd Kaufman is The Crapkeeper...\n As said before, the visual effects are stunnin...\n George Scott gave the performance of a lifetim...\n Claire Booth Luce's \"The Women\" shows relation...\n I grew up watching sitcoms such as Seinfeld, R...\n This review contains MILD SPOILERS, but not en...\n Just got out and cannot believe what a brillia...\n You wouldn't expect a movie like this to be go...\n I disagree with previous comment about this mo...\n What bird is that ? A maltese falcon. The only...\n Thats what this movie really takes. A big piec...\n Uh oh! Another gay film. This time it's showin...\n Im sorry to myself, you know why. I feel paine...\n Adult version of the classic Lewis Carroll tal...\n How did this ever come into existence? I gener...\n Hilarious!! I would have sworn Ed Wood wrote t...\n you have a strong stomach. Holden was actually...\n Harvey Keitel gives a typically top-rate perfo...\n Thank you Hollywood. Yet another movie classic...\n This film essentially deals with Inspector Gad...\n Mislead by the terrible lie on the cover, \"fun...\n Brett Piper again makes a very good film that ...\n Madonna has been rocking the boat for over 20 ...\n Out of the top 24 lesbian films in my library,...\n While the dog was cute, the film was not. It w...\n \"The Godfather\" of television, but aside from ...\n This movie was one of the best I have ever see...\n A so common horror story about a luxury buildi...\n I really enjoyed Fierce People. I discovered t...\n I had the misfortune of wasting 10 quid buying...\n Domini Enfilren (Marlene Dietrich) has spent m...\n Master Kieslowsky came with an idea in 1993, t...\n Seems like a pretty innocent choice at first- ...\n Or \"Marlowe At Sea\". Yet another ridiculously ...\n Return to Me is a charming gem of a movie. Wit...\n \"Season on the Brink\" is one of my favorite bo...\n Perhaps I would have liked this film more if I...\n I think Josh Duhamel is so great!! The rest of...\n I think vampire movies (usually) are wicked. E...\n I really love anything done by Savage Steve Ho...\n Up until the last 20 minutes, I was thinking t...\n this film takes you inside itself in the early...\n Drew Barrymore is such a great actress when it...\n Rigoletto is Verdi's masterpiece, full of dram...\n We watched this in my Women's Health Issues cl...\n First off, I would like to make it clear that ...\n WARNING: MAY contain some minor spoilers.<br /...\n First time I saw this great movie and Alyssa, ...\n A pretentious but - to varying degrees - watch...\n OK, Anatomie is not a reinvention of the Horro...\n I seldom see a film with such a cast, such a p...\n This Santa movie starts off strange and I thin...\n This would have to be one of the funniest TV s...\n i expected it to be good, after i'd seen some ...\n This is probably Karisma at her best, apart fr...\n Recently, I had opportunity to view a working ...\n I must admit, I was against this movie from th...\n What starts out as a passable movie degenerate...\n Spoilers ahead.<br /><br />2001: a Space Odyss...\n This is hands down the worst movie I can ever ...\n I've read one comment which labeled this film ...\n A big disappointment for what was touted as an...\n \"Tart\" is a pathetic attempt at film making wh...\n This is a thoughtful film that lays bare the i...\n Sorry to repeat myself over and over, but here...\n The cover case and the premise that write ther...\n I wanted to like this movie, but many elements...\n I am going to keep this short.This \"adaption\" ...\n Walking home after the film, I was humming the...\n This movie was well done in all respects. The ...\n I ran across this movie at the local video sto...\n Despite its ultra low budget, \"Sorte Nula\" is ...\n In the \"goofs\" section for this film there's a...\n hello. hello and goodbye. but, before i go, i ...\n I would like to vent my displeasure at NBC Can...\n Okay, I just had to sound off on this one... L...\n I really tried to like this movie but in the e...\n I don't have much to add to my summary, this f...\n Soap Opera about a small town married woman (K...\n Loretta Castorini (Cher)is a woman in her late...\n Maybe it's because I read Peter Straub's wonde...\n A top contender for worst film ever made. Joan...\n If you've got a box of tissues, a comfy couch,...\n Marilyn Miller made only three films before he...\n The film is worth watching only if you stop it...\n Hmmm, yeah this episode is extremely underrate...\n Husband-and-wife doctor team Carole and Niles ...\n I was lucky enough to grow up surfing in San D...\n YES, the plot is hardly plausible and very thi...\n A pretty average scifi film. The plot was more...\n I watched the version with pathetic American o...\n I am a fan of animal movies. If you can take a...\n I thought the movie was OK but very disappoint...\n Louis Creed, a doctor from Chicago, moves to a...\n This movie was disaster at Box Office, and the...\n Man kills bear. Man becomes bear. Man/bear mee...\n That word 'True' in this film's title got my a...\n I saw this movie and was bored out of my mind!...\n <br /><br />The movie \"Slugs\" is unique becaus...\n This was awful. Andie Macdowell is a terrible ...\n *****Warning: May contain SPOILERS********* My...\n This was a \"sleeper\" for sure!! Much better th...\n Whoever wrote the screenplay for this movie ob...\n Irene Dunne finished her illustrious career wi...\n If you're a fan of the late Gram Parsons then ...\n This is a multi-faceted, insightful and bold s...\n Two years after its initial release, Goldeneye...\n Even a bad Julie Andrews Musical is worth watc...\n The first 30 minutes of Tinseltown had my fing...\n I remember when this film came out, and watche...\n I'm probably one of the few people who defend ...\n This is one of Julie's greatest tributes to mu...\n To tell you the truth, I do not speak Tamil, a...\n This is one of the best movies I have seen in ...\n Being a big fan of the romantic comedy genre, ...\n Dr. Seuss would sure be mad right now if he wa...\n A terrific B-feature. A virtual two-hander and...\n One commenter said if you like Austin Powers y...\n This second pairing of Wile E. Coyote and the ...\n This little picture succeeds where many a big ...\n Films such as Chocolat, Beau Travail, and othe...\n It was just a terrible movie. No one should wa...\n A malfunction in space sends astronaut Neil St...\n Critics are a strange kind of people. Some of ...\n This is really a great unknown movie.Perfect d...\n First off, I just watched a movie on SHOWTIME ...\n This movie is AWFUL! I don't even know where t...\n No that its sick. It's not sick. It made me wa...\n I was really disappointed in this movie. Those...\n I have seen Dirty Work several times and is pr...\n Well, I just ordered this on my pay-per-view a...\n Four years after making his directorial debut ...\n I'm a big fan of Pacino movies. He's one of, i...\n Just saw this film at the Fantasy Filmfest BER...\n Quite the most boring nonsense I have seen in ...\n First of all I just want to say that I LOVE th...\n As a history of Custer, this insn't even close...\n I had never heard of this flick despite the co...\n I've seen this movie at least 8 times, and I s...\n Iron Eagle has always been one of my favirote ...\n Trading on the success of the 1975 hit, this f...\n \"Scarecrow Gone Wild: He's the Death of the Pa...\n I've seen this movie more than once. It was on...\n A cowboy sympathetic to the plight of a nearby...\n This came as a huge surprise for me. I had nev...\n This has to be one of the worst films I have e...\n You think you've had it tough? You should chec...\n Richard Chamberlain is David Burton, a tax law...\n For a country that has produced some of the wo...\n We all seem to be in agreement. It was an exce...\n I really liked the Movie \"JOE.\" It has really ...\n With great expectations I went to see this fil...\n This glorified discovery channel documentary, ...\n Tobe Hooper has made great movies so I was cer...\n Bamboo House of Dolls (1973, 1974 or 1977, var...\n You can see that if the flick ain't directed b...\n My Take: The silliest of the AIRPORT movies, a...\n I loved the film \"Eddie Monroe\". The film had ...\n We enjoy a film like \"Fame\" because we imagine...\n This movie about a man on the run for killing ...\n Director Delbert Mann was a much better direct...\n \"What the Bleep Do We Know!?\" was one of the w...\n I saw Hurlyburly on Broadway and liked it a gr...\n I agree that this movie is about sex without a...\n I used to work at the company that originally ...\n An Epic Story of Hope constrained by budget an...\n Magnificent and unforgettable, stunningly atmo...\n The Haunting, if you have seen the original, y...\n Plot Synopsis: Hong Kong, 1966. Paul Wagner, t...\n Classe Tous Risques (The Big Risk) is repeated...\n This movie grabbed me with the incredible open...\n In a series chock-full of brilliant episodes, ...\n Help, I've ended up in cinema hell! What a com...\n This is the last episode of the Goldenboy OVA ...\n Historical movies always take liberties -- con...\n without a doubt, one of the most racially prej...\n Mel Welles, you might remember him as Mr. Mush...\n I am very unpolitically correct guy, so when I...\n Man has been to the farthest reaches of the ea...\n This is a very unusual film which starts out w...\n I saw Riverdance - The New Show and loved it f...\n We have a lake. We have an animated meteor cra...\n I saw this last night at a screening for a mar...\n I really wanted to like this western, being a ...\n To answer the question of a previous reviewer ...\n Fascinating I approached I Am Curious (Yellow)...\n One of the most boring movies I've ever seen. ...\n This is, without a shadow of a doubt, one of t...\n No wonder a lot of us hate classical music; an...\n So it's not an award winner, so what? Have you...\n It's not like I have overwhelmingly fond memor...\n Dashing Errol Flynn brings his usual flair for...\n Even though many people here praises this movi...\n You know the story - a group of plucky no-hope...\n I was reviewing some old VHS tapes I have and ...\n Every review I have read so far seems to have ...\n Arrrrrggghhhhhh, some people take life far too...\n This wonderful movie captures so many elements...\n My 2nd favorite film of 1970 (after Five Easy ...\n I admire the effort of trying to reach out to ...\n This movie was so terrible it was almost good....\n I have loved this book since my 5th grade teac...\n There have been several films about Zorro, som...\n Two page boys working at a radio network go fr...\n This movie was a heart-felt piece of cinema th...\n To truly appreciate this film you had to be th...\n It has been almost 50 years since I saw \"Jenni...\n It is a risky business to film such a lavish p...\n You got to love this movie! I mean, what other...\n OK i gave this a three A three! It deserves on...\n Having watched this after receiving the DVD fo...\n This was pretty bad - from bad acting, bad tec...\n I always enjoyed watching this when it came on...\n Kusturika made it again. Another masterpiece. ...\n This movie is sad. According to my fellow IMDb...\n hi for all the people who have seen this wonde...\n John Barrymore plays a gentleman who is also t...\n Police Squad! (1982) was a funny show that end...\n Spanish horror icon Paul Naschy stars in this,...\n I love John's work as a singer, but the movie ...\n Have just finished watching this film, which u...\n Alright, I'm 12, so this is where you get to s...\n The good things first: I agree with another vi...\n This series was a cut above the rest of the TV...\n This Film exhibits dear irony, shaggy-dog roun...\n This film, was one of my childhood favorites a...\n Now please don't start calling me names like, ...\n I recently was lucky enough to see \"The Kite R...\n \"Side Show\" is one of the weirdest Horror movi...\n If it's action and adventure you want in a mov...\n Note to previous reviewer: This movie is \"scie...\n This film is a spicy little piece of film-maki...\n After seeing the trailer for Evening, you will...\n This is one of the funniest and most excellent...\n When I first saw this movie, I said to myself,...\n The reason I intended to give this movie a cha...\n Oh Dear Lord, How on Earth was any part of thi...\n Kannathil Muthamittal is for sure a great movi...\n I never saw the other two \"Ninja\" movies and f...\n ... with a 500$ budget and a bottle of ketchup...\n This movie is awful, just awful. Someone bough...\n Last November, I had a chance to see this film...\n Alive<br /><br />Alive is a very entertaining ...\n See.. I really wanted to enjoy this movie. The...\n I can't remember when was the last time I have...\n This movie is crappy beyond any limits. It's i...\n It's difficult to express how bad this movie i...\n This is the funniest sequel I have seen in a l...\n Watched this piece ONDEMAND because the descri...\n Now I love American Pie 1 and 2 while 3 was gr...\n This is an abysmal piece of story-telling. It ...\n Acclaimed Japanese director Takashi Miike can'...\n The recent death of Stephen Bach, one of the p...\n The movie opens with beautiful landscape shots...\n Perhaps not my genre but plot was horrible as ...\n It might not be the best movie of 2006 but it ...\n I caught 2:37 at the AFI Fest in Los Angeles. ...\n THE NEXT KARATE KID, in my opinion, is an exce...\n This norwegian movie is so crap, the actors ca...\n There should be more movies about our Native A...\n This a good episode of The New Twilight Zone t...\n This movie was definitely not one of Mary-Kate...\n This was an absolutely terrible movie. Don't b...\n This is what I wrote to some friends earlier:<...\n This is one of the most putrid movies of the 9...\n Chaplin stars in a dual role as a jewish barbe...\n it's the best film that takes the first place ...\n This was a must see documentary for me when I ...\n let's face it, you know what to expect when yo...\n With the war not going well for the Soviet Uni...\n I first saw this film 40 years ago on N.Y. tel...\n This movie certainly is a weird one to say the...\n Surely this deserves to be in the bottom 10 fi...\n I'm sorry, but this may have been scary in 197...\n 'Radio' is a beautiful movie based on a real s...\n How sad to see the beautiful and talented Tina...\n UK-born Australian helmer Alex Frayne calls fo...\n I'm in a film class and i know that i don't kn...\n I would put Death Wish 3 in the same box as St...\n A young boy comes into a lot of money and prom...\n What keeps us going - or at least what I feel ...\n I feel very fortunate to have the chance to no...\n When I went to see this film, let's not say th...\n If folks were really this stupid I could be th...\n Malcolm McDowell diagnoses Megan Gallagher's d...\n This was the first Mickey Mouse cartoon releas...\n A train holding union soldiers is transporting...\n I'm 35. Bruce was THE man in Evil Dead, and I ...\n Just saw it yesterday in the Sao Paulo Intl Fi...\n I first saw this film when i was around 6 or 7...\n This was the worst movie I've ever seen in the...\n A good old-fashioned flight-and-revenge wester...\n publicity got me to the theatre<br /><br />adv...\n Sadly I don't remember the book anymore, but I...\n Care Bears Movie 2: A New Generation isn't at ...\n The annoying mouse and lullaby really got to m...\n I contend that whoever is ultimately responsib...\n Unfortunately I made a mistake and I paid 7 Eu...\n Just as in \"Columbo\" we see the fatality occur...\n This movie is somehow showing 6.2 stars, It se...\n but there are not too many of them. Probably t...\n I had to watch this one for my Canadian cinema...\n As Steven Segal movies go this one is bottom o...\n I have never seen one of these SciFi originals...\n I simply love this movie. I also love the Ramo...\n The third film based on Charles Belden's play ...\n This \"movie\" will give me nightmares, I will w...\n Double Shock is one of the many good Columbo e...\n WOW, I'd hate to sound opinionated, but anyone...\n The first series of Lost kicked off with a ban...\n I really enjoyed this movie and it was a littl...\n ...though for a film that seems to be trying t...\n This movie endorses self-justice! It grants fr...\n Rosie Perez is the lead in this very engaging ...\n This is surely British humour at its best. It ...\n Here's the spoiler: At the end of the movie, a...\n Better than I expected from a film selling its...\n The Closer She Gets... is an artful documentar...\n As a flagship show, Attack of the Show (AOTS) ...\n I agree with one commentator who says that it'...\n Yup, that's right folks, this is undoubtedly t...\n \"If I wanted to dribble, I'd call a nurse.\" <b...\n This very low budget comedy caper movie succee...\n I enjoyed Oceans 11, I thought it was quite en...\n Dane tries to hard and is to extreme with all ...\n I was looking at the external reviews (Ebert, ...\n My husband rented this from a video store thin...\n This is an excellent film and one should not b...\n Let me preface by stating that I have lived in...\n :Spoilers:<br /><br />I was very disappointed ...\n Renee Zellweger is Betty, a Kansas waitress wh...\n This is perhaps the worst attempt at a Zombie ...\n I've been intending to write a review of this ...\n Gadar is a really dumb movie because it tells ...\n Spoilers in this review! Despite a few highly ...\n In all my years of film-going, only once have ...\n When is ART going to overcome racism? I believ...\n I'm a big fan of movies that make you think. I...\n I didn't particularly like Sliding Doors or Tw...\n -=contains spoiler from both original and movi...\n Um, hello.. Rainbow Brite.. the name alone is ...\n I have seen poor movies in my time, but this r...\n Outrageously trashy karate/horror thriller wit...\n If you have any clue about Jane Austen´s produ...\n 'Volcano' is a B-movie at best, and at worst i...\n very few chess movies have been made over the ...\n 'Midnight Cowboy' was rated X with the origina...\n This is a documentary that came out of the spl...\n i found the film a bit predictable and boring ...\n I turned this on to see the incredible Ethel W...\n Noel Coward,a witty and urbane man,was friends...\n I don't see the point. It's ponderous. The ani...\n I will keep this as short as possible as this ...\n This movie was sweet. The main character lady ...\n I learned little of significance from this fil...\n I knew it was going to be awful but not this a...\n This move reminded my of Tales from the Crypt ...\n How can a movie have Ozzy Osbourne and still s...\n How could I best express my feelings about thi...\n Someone should teach the people who made this ...\n As a Canadian History major, my first thing to...\n This film is a bad film but to gain any nutrit...\n Grand Canyon is a very strange bird. It's a co...\n \"The Garden of Allah\" was one of the first fea...\n The story turns around Antonio 'Scarface' Mont...\n This film is a wonderful movie based on the li...\n At times, the mainstream news media seems to b...\n I will never go to another Tarantino movie aga...\n Before this made for TV movie began, I had rel...\n I agree with Vince, this movie paved the way f...\n I am obviously disappointed so I'll be brief a...\n After reading several comments, I felt I had t...\n Here in Germany \"King of Queens\" has a big big...\n Back in 1994 the Power Rangers had become a hu...\n I had an uncle who committed suicide after ser...\n I think it is a brilliant show with cool talki...\n I should have known better..the clues were all...\n I can think of no movie that better captures t...\n I thoroughly enjoyed this film overall, but fo...\n I have nothing but praise for this mini series...\n Ed Wood, perhaps the worst film maker of all t...\n Having watched this film strictly on the stren...\n Chokher Bali was shown at the (Washington) DC ...\n Buy this if you like rock, led zep or just wan...\n When one stops to recollect upon the frequent ...\n What can you say after watching this movie? Th...\n Due to rather dubious plate tectonics, Japan s...\n I'm writing this note as a chess player as wel...\n If you are a pretentious person, it would soun...\n This film is a cash in. A cash in reliant on a...\n Soldier may not have academy acting or Lucas s...\n Michael Cacoyannis has had a relatively long c...\n With \"Anatomy\" the german film producers have ...\n There are only a few movies which can be calle...\n What if someone made a horror movie that was c...\n MacBeth, I've always thought, is the most acce...\n Who'd a thought suicide could be dealt with in...\n Hair is one of my favorite movies of all times...\n I remember having a pretty low regard for a ve...\n OK we have 4 city electricians who find a mini...\n Somehow, this film burrowed it's way into the ...\n As far as the Muppet line goes, however, this ...\n American Pie: Beta House is sort of in limbo b...\n This movie was very cute and totally little gi...\n This film hits the heart with a reality like n...\n Eight Simple rules started as a very entertain...\n A huge disappointment from writer Hamm and dir...\n Please humour me if you will, for a minute whi...\n Hadnt heard a lot about this movie, except it ...\n I'm sure a lot of guys will love this movie. T...\n Everything I can say, is that it's one of the ...\n I described Woody Allen's Manhattan as perfect...\n John Voight plays the title character in this ...\n I am trying to find somewhere to purchase a DV...\n I first saw this film on hbo around 1983 and I...\n I have to say this movie is absolutely amazing...\n I gave this movie a single star only because i...\n Soon Americans would swarm over a darkened, da...\n I had the pleasure of viewing this beautiful f...\n I see absolutely nothing funny---even remotely...\n Wonderfully funny, awe-inspiring feature on th...\n Ladies and Gentlemen.. Be sad (or be glad !).....\n This is a masterful piece of film-making, with...\n This movie is a absolute masterpiece!, 'Tromeo...\n Okay, I struggled to set aside the fact that i...\n That was the first thing that sprang to mind a...\n This is a clever and entertaining film about t...\n This is a taut suspenseful masterpiece from Br...\n The original \"Vanishing Point\" was a great fli...\n Is it a remake og the Thing (1982/1951), i thi...\n \"JB\" (Jack Black) runs away from home after be...\n The wife of a stage producer in London hopes t...\n Cocky medical students play chicken with proce...\n This obviously was a pretty low budget product...\n What was this, a Zucker brothers movie? I don'...\n Previous comments encouraged me to check this ...\n Buster Keaton was arguably at his most enjoyab...\n This rather poorly named western series won an...\n In fact, Marc Blitzstein's off-Broadway adapta...\n If your a hard core Freddy fan then you might ...\n This is one of the worst B slashers I've ever ...\n I loved this. It starts out as a fairly normal...\n When I saw that this film was only 80 minutes ...\n Sorry for any spoilers that this contains. But...\n There are other reviews here expressing simila...\n Gilles Mamouni is playing with the audience wi...\n I loved Adrianne Curry before this show. I tho...\n Hideously bad movie purportedly about a croupi...\n There are few comedies like this, where almost...\n I bought this movie from Gamestop's discount u...\n \"Jaded\" takes on the complex question of abuse...\n I was pleased with the cast of reputable playe...\n Written and directed by Steve Gordon. Running ...\n Jessica is a young, virginal and very innocent...\n Denzel is about the only thing that is right i...\n I am having a holiday in hong kong now, and i ...\n The ending made my heart jump up into my throa...\n I saw this for free, thankfully, and wish it w...\n \"Lackawanna Blues'is so emotionally powerful i...\n I caught this a few months ago on Family Chann...\n This is the worst kind of film.<br /><br />The...\n After a long wait, \"Bedrooms and Hallways\" mad...\n I gotta admit it, I love horror films...especi...\n In 1594 in Brazil, the Tupinambas Indians are ...\n I bought this video on a throw-out table at th...\n Beloved tale of hero \"Benji\" (\"Higgins\" the do...\n ...But not this one! I always wanted to know \"...\n Why in the world would someone make this piece...\n Yes, I couldn't stop yawning, nor could my par...\n *Spoilers herein* <br /><br />Where do I begin...\n This was a great movie and the sequel should k...\n wow this is the worst movie ever. the only rea...\n It's common practice for a film about repressi...\n This must be one of the worst movies I've ever...\n My father, Dr. Gordon Warner (ret. Major, US M...\n generally speaking I don't make negative comme...\n This is not Bela Lagosi's best movie, but it's...\n Feisty Dianna Jackson (a winningly spunky perf...\n I gave this 9 stars out of a possible 10. If i...\n Paul Greengrass definitely saved the best Bour...\n This production of Hamlet, Prince of Denmark i...\n In the beginning of this film, one of the comm...\n I always feel strange and guilty saying it (be...\n This reworking of Anthony Shaffer's classic pl...\n Before I continue forth with the new millenniu...\n Crossing the Bridge: the Sound of Istanbul rec...\n Years ago I read the book 'A Máquina' (The mac...\n Sigrid Thornton (SeaChange) was seemingly born...\n Antonioni, by making this film, had assumed th...\n Like all the Taviani Brothers films, this one ...\n Hello. This movie is.......well.......okay. Ju...\n An utterly beautiful film, one of a handful of...\n The only thing in \"Sudden Death\" that outdoes ...\n You'd think a movie about incestuous sisters w...\n Spoiler!!! This movie is based on the concept ...\n <br /><br />Upon concluding my viewing of \"Tra...\n I just came back from Hong Kong on my summer v...\n Rudy Rae Moore is getting out of prison and ge...\n One of the unsung gems of the 1980's, Scenes.....\n I picked this up at the video store because of...\n This movie is pretty good as it is, but the un...\n Hard to believe that director Barbet Schroeder...\n Anything Park Chan-wook creates is guaranteed ...\n I love this movie!! Sure I love it because of ...\n N.B.: Spoilers within. Assigning an artistic d...\n Actually, Son of the Mask did make me laugh a ...\n It became apparent in the first 25 mins of wat...\n i thought this movie was wonderfully plotted i...\n When the employees of a theater find an old re...\n I first saw this film in video form. Even on a...\n For the first three seasons, Sabrina was a gem...\n Afraid of the Dark left me with the impression...\n I make a point out of watching bad movies freq...\n This movie was great and I would like to buy i...\n This remake is entitled \"That Darn Cat\", but D...\n The movie is a fantasy. The story line is thin...\n The only time I ever actually laugh while watc...\n 'Five Days' is billed as something special, a ...\n ... and yet, we were told, there was another h...\n There are two ways to turn a TV series into a ...\n For a long time, I, a fan of \"The Monkees\" TV ...\n I guess I have to write something here, althou...\n I can only assume the previous posts came from...\n This movie, to me, is about family. Jimmy Morr...\n I actually quite enjoyed this show. Even as a ...\n This movie stands for entertanment. Its the fu...\n I saw \"Myra Breckinridge\" when it first came o...\n We know from other movies that the actors are ...\n There's so many things to fall for in Aro Tolb...\n Put yourself into Carla's shoes. She is an ove...\n \"Stick Around\" is one of the brief series of f...\n A true wholesome American story about teenager...\n I, like many die-hard Trekkers (or Trekkies, i...\n Writing something genuine and true is challeng...\n Don't worry - no spoilers here, just saying th...\n I'm not going to approach and critique the the...\n Stripes, an army training camp comedy starring...\n This movie worked for me because I see this mo...\n I felt that way when I saw the episode in its ...\n While the sparkling chemistry between Ryan and...\n After two brief scenes that at first seem unre...\n hi<br /><br />Blade is an sensational action m...\n A young couple decides to runaway to sunny Cal...\n Those who have given this production such a lo...\n Although recognized as the best film treatment...\n I would never have thought I would almost cry ...\n Dumland focuses on the lives of one (American?...\n Kim Basinger and Mickey Rourke star in this co...\n This movie should go down as one of the funnie...\n Probably this is the best film of Clint Eastwo...\n Half a mystical thriller and half the fracture...\n This is one of the best and moodiest Vampire T...\n One of Keli McCarthy's best. This movie is fil...\n OUR GANG got one chance at a feature film in i...\n I had the privilege recently of viewing what i...\n This movie is one of the worst comedy movies i...\n - SMALL SPOILER HEREIN! - <br /><br />When I l...\n For anyone that loves predictable movies with ...\n My dad is a fan of Columbo and I had always di...\n Does anything at all happen in this movie. The...\n I think I've finally seen the Worst Movie Ever...\n Seriously what were they thinking? Over the co...\n So, it's Friday night and you want to go watch...\n i first saw this movie at the sundance film fe...\n \"Knute Rockne All American\", the biopic about ...\n In this desperate and thoroughly silly attempt...\n As you know \"The Greatest Game Ever Played\" is...\n This is slightly less sickening than the first...\n This film is so bad and gets worse in every im...\n Scott Henderson, the engineer that employs Car...\n This is a absolutely masterful stroke of geniu...\n If you like to be entertained, do not go see t...\n I don't mind some adult humor, but this featur...\n If you are uninitiated to the Gundam world, th...\n What reviewers and MST3K left out is the best ...\n I'm never much for classic films. Movies like ...\n This was my favourite film as a child, and I h...\n \"Mistress of the Craft\" Celeste works as an ag...\n You know those films that are blatantly awful ...\n In my mind, this remains one of the very best ...\n If you are like me and you bought the new Tena...\n The filmmaker stayed true to the most accurate...\n The story centers around Barry McKenzie who mu...\n Credited by Variety to be one of the greatest ...\n I loved this masterpiece and quite frankly I, ...\n \"Iowa\" wants to be \"Requiem for a Dream\" for M...\n The movie is a real show of how unemotional an...\n This is not the worst film I have seen of Pete...\n I saw this movie over 5 years ago and the subj...\n Follow-up to 1973's far better \"Cleopatra Jone...\n I like my Ronald Colman dashing and debonair, ...\n I watched Cabin by the Lake this afternoon on ...\n Powers Boothe turns in a stellar performance a...\n I thought the movie was fairly well done for a...\n Every Sunday is an eleven minute short subject...\n Jean Renoir's homage to the Paris of the late ...\n This movie was a low point for both Jason Roba...\n I loved this movie when it first came out(but ...\n Anyone who thinks anime is nothing but sex and...\n Nico Mastorakis's banned movie was quite disap...\n Second Nature will not go down as one of the w...\n I noticed at once that this movie really wasn'...\n Okay, first of I hate commenting on this thing...\n After a long period in the space, looking for ...\n The only redeeming quality of this film is tha...\n The director spent a lot of time making the sc...\n Where to Begin, I like the scary snow-monster ...\n Despite all it's trappings of style and cinema...\n A man readjusts to life alone after 45 years o...\n I was truly surprised when I first saw this mo...\n The Eternal Jew (Der Ewige Jude) does not have...\n Okay, I've always been a fan of Batman. I love...\n Two of Hollywood's great child stars (Elizabet...\n One way or the other, you can't get away from ...\n Farrah Fawcett has spent the better part of he...\n Having seen many of Wong Kar-Wai's other movie...\n Thankfully you don't need a lot of \"book learn...\n Glenn Close is back as Sarah Plain and Tall, a...\n Except for the glossy look, this show had litt...\n When the episode was made and aired Eisenhower...\n I can't figure out what Jon Voight could POSSI...\n -me and my sister have right now watch that mo...\n Another tiresome bore from Anthony Minghella, ...\n I am so glad Zac was in 'The Suite life of Zac...\n THE CELL fascinated me at first glance. I was ...\n Like most other reviewers, I really enjoyed th...\n Simon's best comedy is superbly crafted by dir...\n I can not believe the positive reaction to thi...\n \"Heaven Can Wait\" is a crushing bore and a can...\n Offbeat and rather entertaining sleeper concer...\n it's embarrassing I had like 3 minutes on my w...\n As a lesbian, I am always on the lookout for f...\n Hitchcock once gave an interview where he said...\n This film came out 12 years years ago, and was...\n I am a Maharashtrian, a teenager living in the...\n I Think It's a great movie. because you get to...\n I teach Japanese for an online high school and...\n OK I'm not an American, but in my humble Scott...\n Easily the best known of all the Shakespeare p...\n For once a sequel to \"The Karate Kid\" without ...\n It' just funny, watch it!!! <br /><br />OK the...\n OK, I knew this would be a back alley F-film (...\n When converting a book to film, it is generall...\n Hong Kong, the 1920s. A young man from poor be...\n i have one word: focus.<br /><br />well.<br />...\n When I read the summary of the movie, somethin...\n Once upon a time, Troma, the company that brou...\n This movie was utterly and unequivocally terri...\n Guys who-ever even THINKS about watching this ...\n OK, normally I am fascinated by Z movies. Some...\n \"Shower\" is an story about loyalty, about the ...\n My Take: Yet another lame PG-13 horror movie w...\n This movie is so wonderful, it's hard to find ...\n High school friends Andre Kriegman and Cal Gab...\n ***SPOILERS*** On of the first WWII movies com...\n I wanted to see Sarah Buffy on the big screen,...\n Tonight's film course film was The Legend of t...\n This is probably one of the worst films i have...\n Maybe it's just that it was made in 1997, or m...\n I've never written a comment on IMDb before, b...\n A formulaic story with all the tired cliches. ...\n For their credit, this is one of their more co...\n If \"B\" movies, tired and corny scripts, and go...\n I only watched this film from beginning to end...\n The Most Fertile Man in Ireland revolves aroun...\n This is an interesting series that takes real ...\n I love Seth Green. His appearances on THat 70s...\n First off... I have to say acting isn't very g...\n Highly implausible, unbelievable, and incohere...\n The movie had a good concept, but the executio...\n Just want to inform you guys that this movie w...\n It seems ever since 1982, about every two or t...\n Terrible adaptation of Heminway's low key love...\n Still haven't read a single Dan Brown book, bu...\n If you lived through the 60s, this film can be...\n One of the best (if not the best) Stephen King...\n I have seen this play many times, from Olivier...\n What a stupid waste of money! 30,000 square fe...\n OK the box look interesting, the opening have ...\n This is being commented on only because Serge ...\n Okay, note to the people that put together the...\n REALLY? REALLY???? I know if you make a politi...\n Most people who have seen this movie thinks th...\n This enchanting movie is based on a novel by A...\n Kubrick proved his brilliantness again, now in...\n I had such high hopes for Teletoon Retro to ai...\n I thought I should qualify my position after r...\n I enjoy watching western films but this movie ...\n I watched \"Elephant Walk\" for the first time i...\n Mickey Mouse is now 75 years old. He was creat...\n This movie is the worst thing ever created by ...\n i love bad shark movies. i really do. i laugh ...\n This long episode packs amount of astounding o...\n James Bridges' \"The China Syndrome\" is a first...\n Snakes on a Train (2006, Dir. The Mallachi Bro...\n Maybe it's because I'm no fan of the comics (b...\n Irvine Welsh's follow up to Trainspotting hits...\n This movie has everything! It has a good story...\n Monty Berman and Dennis Spooner followed up 'T...\n At first it seems the topical romance movie wh...\n I was very excited to see Rock Star because I ...\n Eric Idle, Robbie Coltraine, Janet Suzman - it...\n A confused mess from start to finish. Like the...\n This film tries hard but fails. Perhaps to non...\n After watching the rather sloppy WW1 spy thril...\n Great, great, great! That is all I can say abo...\n Most of the French films I've seen - and enjoy...\n I'm sick and tired of people complaining that ...\n What some mistake for stilted dialog and/or di...\n The first of two films by Johnny To, this film...\n A detective (Dana Andrews) with a reputation f...\n I already gave my comment on this movie under ...\n Travis and Sandy(Ben Johnson and Harry Carey, ...\n Artimisia was on late last night. At first I d...\n The Dentist starts on the morning of Dr. Alan ...\n I rarely write reviews for IMDb.com, but I fee...\n Excellent, pre-code amoral tale with Barbara S...\n there are those movies that are bad they are f...\n Yeah, I made it all the way to the end. It was...\n As the first of the TV specials offered on the...\n and forget this. Completely. If you really nee...\n Looking back over the past 28 years (since my ...\n A bad one.<br /><br />Oh, my...this is one of ...\n I really enjoyed this thriller! I wanted to se...\n This was Bollywood's answer to Fatal attractio...\n Initially I was put off renting this movie due...\n We all enjoyed the movie. It is a very charmin...\n \"The Secret Life\" starts with the worst possib...\n I just finished watching the movie tonight and...\n This movie has great stars in their earlier ye...\n First of all when I saw the teaser trailer for...\n ****SPOILERS**** Powerhouse movie that shows h...\n I was so disturbed by the real footage at the ...\n I feel blessed to own what is known as the wor...\n First of all, I'd like to say I am a teenager ...\n C'mon, let's put aside the sophomoric humor th...\n keys to the VIP is BS.<br /><br />rob cavalier...\n Since Educating Rita, Julie Walters has been o...\n I'm a big fan of B5, having caught on only at ...\n I don't know who Sue Kramer, the director of t...\n This is a very bad movie. I laughed once or tw...\n I have been a fan of the Carpenters for a long...\n Buster Keaton was finding his feature length v...\n I watched this series after Tipping the Velvet...\n I watched this movie as a preview of a Matthew...\n This is not a good movie. It's disjointed, all...\n a friend gave it to me saying it was another c...\n Misfits at a military school? Hmmmm, sounds fu...\n Sharpe's Honour for the uninitiated, is the fi...\n It is pretty surreal what these flies can do.....\n Antonioni with Wim Wenders --some of the best ...\n As a convert into the Church of Jesus Christ o...\n This film was a waste of time, even rented on ...\n Two movies: \"the fifth element\", \"armageddon\"....\n Depardieu's most notorious film is this (1974)...\n This is a wonderful thriller I watched many ti...\n Although the recent re-telling of part of Home...\n I still remember when Frog Baseball first aire...\n MYRA BRECKINRIDGE is one of those rare films t...\n Dick Tracy is easily the best comic book based...\n WARNING!!! SOME POSSIBLE PLOT SPOILERS, AS IF ...\n I was talked into seeing this by a girlfriend....\n I would like to say that curiosity got the bes...\n This has got to be one of the worst movies I h...\n For some reason, some shows just fail...some d...\n First it was Jack The Ripper, now it is Alan F...\n DIRTY WAR <br /><br />Aspect ratio: 1.78:1<br ...\n The Sopranos is probably the most widely accla...\n Holy @#%& this movie was still warm and juicy ...\n If this is all the Watchowski's have to offer ...\n I think Hollow Point is a funny film with some...\n OMG, another bad film by Larry Buchanan. That ...\n This movie certainly proves, that also the goo...\n I have rarely emerged from viewing a film with...\n A remake can be successful. An adaptation can ...\n Every time I watch this movie blood comes gush...\n I agree with everything people said on this on...\n I have seen this movie when I was about 7 year...\n I gave it a seven only because the acting is g...\n The perfect space fantasy film. a group of kid...\n Surprisingly good made for T.V. Thriller. I wa...\n As a fan of the Sookie Stackhouse books, I fin...\n I only went to see this movie because I have a...\n NBC was putting out a lot of good product when...\n Although some may call it a \"Cuban Cinema Para...\n Popular radio storyteller Gabriel No one(Robin...\n Although this movie has some weaknesses, it is...\n I really like this show. I can readily see how...\n Critics love this movie. I personally found it...\n I don't know whether this film hits my heart t...\n I found this film to be an utter dissapointmen...\n This is more of the same thing that made this ...\n Yet another TV show becomes a movie. Steve {Th...\n I saw this movie back in 1984, we first starte...\n They're not jawing journalists Cary Grant and ...\n i can't say i liked this movie very much.it ha...\n I will admit that I'm only a college student a...\n This movie's origins are a mystery to me, as I...\n Pathetic NRI Crap.....Appeal to all who are no...\n As a native of the city where the story takes ...\n After searching for 6 months, I finally found ...\n Not being a fan of first person shooters I was...\n \"Cherry\" tells of a naive, unmarried virgin wh...\n The Finnish version of Robert Altman's \"Short ...\n The novel WEAPON which serves as the basis for...\n The 1960's were a time of change and awakening...\n I knew I was going to see this when I saw the ...\n Think a darker version of one of those kid sho...\n A bad Quentin Tarantino rip off, at least I ho...\n If Corky St. Claire in WAITING FOR GUFFMAN had...\n This is it. This is the one. This is the worst...\n Ironic that Dr. Seuss' fable emphasizing the n...\n I can't believe this movie is getting the rati...\n I would assume that this film would get rave r...\n This is a beautiful, yet simple movie about on...\n The strawberry blond has a great script, But I...\n Long on action and stunt work, but so short on...\n There were very few good moments in this film....\n This murder mystery with musical numbers is lo...\n Saving Grace is surely one of the leading cont...\n Just watched this today on TCM, where the othe...\n I too have gone thru very painful personal los...\n \"Menace\" is not funny. It tries hard - too har...\n Yeah, the poster is quite a horrible piece of ...\n I just saw Mar Ardentro and felt that I had to...\n I had never heard of this film and only got it...\n I'm new to gaming, but I would have started MU...\n Sometimes I watch a movie and am really impres...\n Two Soldiers is an excellent example of fine f...\n A bus full of passengers is stuck during a sno...\n I...I don't know where to begin. Dragon Hunt m...\n I watched FIDO on some movie channel and I hav...\n I watch a lot of movies - DVD, features, and c...\n When I think of a 1970s-period film, this is n...\n Lars Von Trier is never backward in trying out...\n OK, I have watched the original French version...\n I have always had the philosophy that every si...\n This film is the most traumatising and painful...\n This was a great movie. Something not only for...\n Wait, don't tell me... they threw out the movi...\n Behind the nostalgic music, we see a young boy...\n I am a huge fan of Simon Pegg and have watched...\n First of all, the genre of this movie isn't co...\n Domino is a great movie. It's about a young wo...\n A very promising directorial debut for Bill Pa...\n I am currently doing film studies at A.S level...\n I, myself am a kid at heart, meaning I love wa...\n Tom Cutler (Jackson) is a retired policeman wh...\n well, i said it all in the summary, i simpley ...\n jim carrey can do anything. i thought this was...\n I sat down to watch this film with much trepid...\n ...and my reasons for which are simple- there ...\n As a baseball die-hard, this movie goes contra...\n Heh...I'm surprised this movie still exists in...\n This is a film that on the surface would seem ...\n The gimmick, as it were, of this 1934 Paramoun...\n My grandmother took me and my sister out to se...\n I consider myself to be a bit of a snob when i...\n The cinematic interests in the British monarch...\n Diane Lane, Mickey Rourke, Rosario Dawson & Th...\n About five years ago, my friend and I went to ...\n I would rather of had my eyes gouged out with ...\n Another entertaining Travolta dance flick! GRE...\n The Korean War has been dubbed Americas's forg...\n If I had just seen the pilot of this show I wo...\n I have NEVER fallen asleep whilst watching a m...\n Well, where to start describing this celluloid...\n Thankfully saw this on a plane to Singapore re...\n First of all this was not a three hour movie -...\n This is by far the funniest short made by the ...\n In a phrase, moral ambiguity. In the Soderberg...\n Well they've done it again a new pumpkin head ...\n Tagline: the lucky ones died...before watching...\n Spike Lee has been in a decline since his earl...\n Stefan is an x-con that five years ago got mar...\n Fantastic Mr. Fox is a comedy based on the cla...\n I just saw this movie in a sneak preview and b...\n Most reviews say that this is the weakest poin...\n Granted I had seen some \"Speed Racer\", but I n...\n I remembered this as being one of my favorite ...\n Many people here say that this show is for kid...\n \"My child, my sister, dream <br /><br />How sw...\n Another entry in the Pacino-As-Mentor sub-genr...\n **Spoiler* It gives away the very irrelevant e...\n The tagline for this show is, \"He's speaking h...\n Skip McCoy (Richard Widmark) pick-pockets Cand...\n Only if you are crazy about Amber Smith should...\n I was blown away by this film. I'm one of thos...\n A quick, funny coming-of-age matinée romp appe...\n While not truly terrible, this movie is still ...\n Medical student Paula Henning wins a place at ...\n A Vietnam vet decides to take over a backwater...\n Now I know that a lot of black humor pokes fun...\n Sweet, rich valley girl develops crush on a pu...\n Entertaining musical where Nathan Detroit need...\n I hate to admit it, but I didn't find it to be...\n It just seems bizarre that someone read this s...\n Perhaps not the absolute greatest entry in the...\n What a bad movie. I'm really surprised that De...\n I have witnessed some atrocities of cinema. In...\n Inherited this from my x's DVD collection when...\n In order to avoid confusion, let me clarify a ...\n The sounds in the movie were so mundane and ri...\n As the mom of a 3 year old and a 2 year old, I...\n Sandwiched in between San Francisco and Captai...\n This HAS to be my guilty pleasure. I am a HUGE...\n American Movie is a wonderful documentary. It ...\n I saw the movie and really could not stop my t...\n This has to be, hands down, hats off, one of t...\n More of a character study then a movie, COMMIT...\n This is, without a doubt, the single worst mov...\n This is without doubt the worst film in the Ha...\n This timeless summer love story is a classic a...\n This particular Joe McDoakes short subject was...\n While not as bad as some movies (like the horr...\n The early career of Abe Lincoln is beautifully...\n Family guy. When the show first aired, it was ...\n There are one or two other Shemp-era shorts I ...\n Yet another movie with an interesting premise ...\n Ahh this film had so much potential! A good ca...\n I remember watching this movie many years ago ...\n I absolutely loved this movie. I bought it as ...\n Dubbed beyond comprehension, the HBO version o...\n This is a classic street punk & rock movie. If...\n Director Raoul Walsh was like the Michael Bay ...\n Fever Pitch is a fun enough movie. It has a lo...\n This recreation of the infamous 1959 murders i...\n I frequently comment on the utter dirth of tru...\n This is a very old and cheaply made film--a ty...\n I'm no fan of newer movies, but this one was a...\n Well, I'll start by admitting I'm not a John F...\n I was very surprised to learn that Goldie Hawn...\n I was cast as the Surfer Dude in the beach sce...\n GEORGE AND MILDRED was a spin off from the mid...\n I've seen the Gator Bait films, and this is al...\n This movie is possibly one of the most creativ...\n I loved this movie!! Jack Black and Kyle Gass ...\n It is a truism that it takes a lot of effort t...\n After viewing several episodes of this series,...\n How on earth can people give this movie a low ...\n I must admit, I liked this movie, and didnt fi...\n Unashamedly ambitious sci-fi from Kerry Conran...\n I'm a big fan of Nicolas Cage and I never thou...\n by Dane Youssef<br /><br />I was kind of looki...\n Some of the worst, least natural acting perfor...\n We really don't know where to begin when talki...\n Oh my gosh! this was one of the best Sci-fi mo...\n I've seen Foxy Brown, Coffy, Friday Foster, Bu...\n As I've noticed with a lot of IMDb comments, c...\n A typical romp through Cheech and Chong's real...\n Yeah it may not be for adults, and some adults...\n We all know that special effects cost money, b...\n This is a powerful film which seems to have ne...\n Hak hap(Black Mask)is what I'd like to call a ...\n This film story is bad enough, which can happe...\n Robert Wuhl is teaching a class of film studen...\n In one word: excruciating. I was advised to re...\n usually a movie that starts bad stays bad in a...\n I think the majority of the people seem not th...\n To be fair, it has been several years since I ...\n Looking back on Jim Henson's works years after...\n The sitcom \"The league of Gentlemen\" follows t...\n It is sad to have to say that a film is truly ...\n We always watch American movies with their par...\n What is it about certain films that generates ...\n In this film we have the fabulous opportunity ...\n The brilliant Chuck Jones, master of Warner Br...\n Picture this. Someone makes a film about the C...\n This is the first time I feel the need to comm...\n the single worst film i've ever seen in a thea...\n Delirious, near plot-less mood piece and if it...\n ..IT'S THIS ONE! Very cool premise, right off ...\n Although this is generally a cheesy jungle-adv...\n In a future where an industrious travel agency...\n There is no such a thing as perfect murder.Lie...\n To start off, this happens to be my favorite o...\n The story of Sweeney Todd evokes memories of t...\n I think that the costumes were excellent, and ...\n I love this movie. At first, I didn't expect m...\n Others have already commented on the \"decline\"...\n Okay, the story makes no sense, the characters...\n I really didn't see this one coming. Roy Ander...\n This movie was Hilarious! It occasionally went...\n When Family Guy first premiered, I was not in ...\n I can't say how closely the film follows the n...\n First off, I would like to point out that whil...\n A stupid young man becomes obsessed with a wom...\n I found this DVD in the library and based on t...\n I agree with all the comments posted so far: T...\n It's great to hear the 3 or so comments, that ...\n This is breezy highly entertaining drama with ...\n While this film certainly does possess the ste...\n This movie starts out the way every movie shou...\n I really enjoyed the pilot, it was as amazing ...\n The night of the prom: the most important nigh...\n \"Holly\" is an issue-driven film, but it is nei...\n And this somebody is me. And not only me, as I...\n This adorable dog (called various names during...\n Boston Blackie movies have some strengths -- m...\n Hulk Hogan stars as a champion wrestler (A rea...\n \"Tourist Trap\" is among my favorite late 70's/...\n After a long hard week behind the desk making ...\n When I first heard that this movie was going t...\n This is a story of a long and awkward love. Th...\n This sequel is a total rehash of the first fil...\n I just purchased An Zhan (Running out of time)...\n In the periphery of São Paulo, the very low mi...\n I first saw \"The Knowledge\" during a Thames Te...\n Not often it happens that a great director´s l...\n This movie is being shown over and over on cab...\n My Comments for VIVAH :- Its a charming, ideal...\n OH MY God I am lost Now I know everything this...\n Picture Bride has an excellent look into Hawai...\n How can anyone not love this movie ? I think i...\n <br /><br />Very good 1970s movie about mob op...\n Worry not, Disney fans--this special edition D...\n I was so disappointed in this movie. I don't k...\n This movie had no parts that were hilarious, m...\n After you've seen this small likable and comic...\n Someone told me that this was one of the best ...\n Wish it would be released, as I would love to ...\n 'Soapdish' is one of the best, yet least well ...\n I was p***ed when I couldn't see this one when...\n Making a film for under 1 Million might be a t...\n The thing with Ali G is that he takes the mick...\n Beware, My Lovely (1952) Dir: Harry Horner <br...\n at a Saturday matinee in my home town. I went ...\n Blank Check is a movie that I saw on TV one da...\n I was living in Barstow Ca. in 1968 when the m...\n I went to see this movie mostly because it loo...\n be warned: this movie tells lots of love stori...\n Sometimes the Academy doesn't recognize the po...\n One of the silliest movies of the 1940s, an un...\n With 'Twelve Monkeys' you need to pay attentio...\n This was what black society was like before th...\n This movie is difficult to watch in our fast-p...\n A notorious big budget flop when released. Thi...\n To me there is something so appealing and nost...\n This is possibly the worst version of the play...\n Whether you're a fan of the series which inspi...\n Um... Okay, I guess I get the whole shaky-cam,...\n Code 46 is one of those scifi movies where the...\n This is a truly hilarious film and one that I ...\n I lasted almost ninety minutes through this dr...\n This is probably the best of all of the Star W...\n I don't really know why so many persons love t...\n FLAVIA THE HERETIC is a strange entry in the n...\n \"Foxes\" is one movie I remember for it's portr...\n At the end of this episode Holmes asks Watson ...\n i came across this film on the net by fluke an...\n This is another of those rare movies one feels...\n Just a short comment! I want to say that I lik...\n I just blew four dollars renting this movie! W...\n I liked this movie. I saw it to a packed house...\n Yes, this movie make me feel real horror, when...\n WOW! Why would anybody make a sequel to an alr...\n \"Stripperella\" is an animated series about a g...\n The crew of an American submarine discover it'...\n I managed to sneak away one night and go to th...\n Have just seen this film for the first time af...\n I must admit this is one of Cameron Diaz's unh...\n ...well, pop this into the DVD, waste an hour ...\n This movie was bad on so many levels. The writ...\n I was expecting a documentary covering the 195...\n This well conceived and carefully researched d...\n I haven't seen this film for over 20 years, bu...\n whomever thought of having sequels to Iron Eag...\n I don't understand why this movie was released...\n The two leads, an Englishman and an Aussie fil...\n There is a scene near the beginning after a sh...\n Sandler is amazing again... I have already bec...\n this was made in that beloved age known as the...\n Yeah I watched this mini series with My Mom an...\n I was expecting a lot more of this film than w...\n 1 hour and 40 minutes of talking--boring talki...\n \"Christmas In Connecticut\" is a gem of a Chris...\n Allen and Julie move into a cabin in the mount...\n Pretty funny stuff. Charlie was still working ...\n Almost a two-person play, and as such the dial...\n Arnold once again in the 80's demonstrated tha...\n I only wish there was a grade lower than F to ...\n Fascinating look behind the scenes about how a...\n This British pot-boiler has one thing going fo...\n In many ways, the perfect movie. The \"Incredib...\n Respected western auteur Budd Boetticher is wo...\n Three scumbags get their just deserts after wa...\n I saw this in the theatre a couple decades ago...\n I know not why people considered it trashy or ...\n Exactly what you would expect from a B-Movie. ...\n After reading a biography on the last Russian ...\n Another case of a decent DVD case betraying th...\n I first saw this movie when it came out in 199...\n I enjoyed the movie and Kellie Martins perform...\n What can be said about Mr. Moore? He's the god...\n If there were two more charming performers tha...\n This brings back so many childhood memories. (...\n Shaky hand held cameras (this piece was shot f...\n I stopped watching this film half way through....\n The greatest games of Kasparov or Fischer can ...\n the real plot...<br /><br />A group of post-Ci...\n Columbo movies have been going downhill for ye...\n What the hell is this? Its one of the dumbest ...\n This really should have been a one star, but t...\n I had watched as much of the series as I could...\n There was a genie played by Shaq His name was ...\n I'm impressed that 'Hail the Woman' was made a...\n Lily Powers works at a speakeasy until her fat...\n It took me time to really appreciate John Carp...\n I have been a huge Lynn Peterson fan ever sinc...\n Scarlet Dawn casts Douglas Fairbanks, Jr. as a...\n Overall, I give this film a decent 7.6. To sta...\n This movie is hilarious, not in good way. The ...\n I got a chance to talk with the co-creator, Re...\n As a fan of Science-fiction movies, I have bee...\n Bogmeister and others have pretty much nailed ...\n This is a nicely-done story with pretty music,...\n Spoilers.....<br /><br />I saw the original on...\n this film needs to be seen. the truest picture...\n My sincere advice to all: don't watch the movi...\n This is one of the greatest films ever made. I...\n In the Belarus of 1942, two Soviet soldiers ar...\n This deserves a 12 out of 10. An absolutely re...\n I have seen this movie only once, several year...\n I had been interested in this film for a long ...\n More TV movies ought to be made like this one....\n I would like to submit the following goof.<br ...\n I stumbled upon this movie whilst flipping cha...\n On the surface, this movie would appear to dea...\n I saw this film recently in a film festival. I...\n Garson Kanin wrote and directed this look at \"...\n This movie is so predictable when you know the...\n I loved this movie. I'm a Mexican and was in t...\n This is a cut above other movies of the genre:...\n I had the misfortune to catch this on a flight...\n This was god awful. The story was all over the...\n There wasn't a dry eye amongst the audience ye...\n He now has a name, an identity, some memories ...\n As a massive fan of DM, it goes without saying...\n Having enjoyed Joyce's complex novel so keenly...\n This is without a shadow of a doubt the absolu...\n Good luck finding this film to even watch - it...\n Biodoc on the enigmatic singer/songwriter who,...\n Let me be clear. I've used IMDb for years. But...\n My God, this is funny stuff. Yes, it's puerile...\n \"The Incubus\" is a mix of the good (an interes...\n Nathan Detroit (Frank Sinatra) is the manager ...\n This is a fair little show about the paranorma...\n I'm not a fan of this brand of comedy - stereo...\n Too fractured to be enjoyable, too loose to be...\n What can you possibly say about a show of this...\n \"Murder by Numbers\" stars Ryan Gosling and Mic...\n Incredibly hilarious mid-70's Italian Rootsplo...\n Did we all see the same movie??? I can't belie...\n I liked this movie. When the guy who was in on...\n After finishing the Zero Woman series, I was l...\n What we have here the standard Disney direct t...\n I was surprised to like this movie since I'm f...\n The movie was a huge disappointment. Especiall...\n No matter how you look at this movie, it is ju...\n Ill-tempered, verbally abusive movie studio ch...\n For domestic audiences I can see how they woul...\n How many movies are there that you can think o...\n I got the first Bill and Ted movie for christm...\n Although written by Stephen King, an overrated...\n Princess Victoria (Emily Blunt) is in line for...\n A young woman (Jean Simmons) is convinced by h...\n The Cure uses voice over to create an intense ...\n Mom has to be one of the all time uncomfortabl...\n The only thing I remember about this movie are...\n i saw this movie at the toronto film festival ...\n Sudden Impact was overall better than The Enfo...\n I loved this excellent movie. Farrah Fawcett p...\n Great concept, perfect characterizations and v...\n Well well, at last a view of this underrated f...\n This turned out to be more of a women's romanc...\n Possibly not, but it is awful. Even the fantas...\n French Cinema sucks! Down with all these psych...\n Normally the best way to annoy me in a film is...\n First let me say that those of you that voted ...\n This Movie Was In My Opinion Very Ignorant! Th...\n I saw this on TV the other night or rather I ...\n Dylan and Bobby are boyhood friends and they a...\n I cant see how some people cant find this film...\n Being from the Philadelphia suburbs and extrem...\n The Tender Hook, or, Who Killed The Australian...\n This effort is based on the true story of Jim ...\n What an atrocity. I am not one to demand total...\n This movie I watched back in 1981 when it came...\n This mess is so bad it doesn't even qualify as...\n It's fun to watch a young James Cagney doing h...\n One of those beautifully intense movies that d...\n This sequel is thoroughly uneven, incoherent a...\n 'One-Round' Jack Sander is called that because...\n POSSIBLE SPOILERS<br /><br />No one is likely ...\n Too many sources routinely lump this thought-p...\n Do not waste your time with this movie. This i...\n There is a level of high expectation when you ...\n The way this story played out and the interact...\n Frank Tashlin's 'The Home Front' is one of the...\n It's nice that these three young directors hav...\n This movie never made it to theaters in our ar...\n This one is a bit more stylish than the averag...\n I don't think I've ever felt this let down by ...\n Not one of Monogram's better(not trying to be ...\n The H.G. Wells Classic has had several Incarna...\n Contrary to another reviewer, I think that thi...\n Don Wilson stars as a cop who enjoys the occas...\n Stodgy drama starring Pat O'Brien as a washed-...\n Nice movie and Nicholle Tom does a fantastic j...\n Eddie Murphy Delirious is by far the funniest ...\n This is one of the best Bollywood movies i hav...\n I've seen about four other Japanese horror fil...\n This is a great ending to the show. The fact t...\n This movie is not schlock, despite the lo fi p...\n by Dane Youssef<br /><br />A gang of crooks. T...\n The Adventures of Sebastian Cole is about a bo...\n As an animated film from 1978, this is pretty ...\n I have no idea why they made this version of \"...\n Martin Weisz, who directed the solid \"Rohtenbu...\n This is one very confusing movie. The film is ...\n I just had to add my comment to raise the aver...\n I liked some of the characters, but our lead r...\n I like movies that show real people \"Americans...\n This film is unbelievable on any level. It fai...\n There's no point in comparing this with the or...\n I found this to be an underrated, quietly comp...\n One reviewer notes that it does not seem to ma...\n This is no doubt one of the worst movies I hav...\n This is a warm, funny film, in much the same v...\n I found this to be a tremendously disappointin...\n Just saw Coronado... Around here the only line...\n I really love action/adventure films and this ...\n How can't you rate this movie with 10/10? I ad...\n In 1989 here in NZ wrestling was somewhat of a...\n Barely came trough the whole movie... Acting i...\n Based to some extent on writers, David Croft a...\n Those of you who, like me, were disappointed w...\n !!! Spoiler alert!!!<br /><br />The point is, ...\n I'm normally not a Drama/Feel good movie kind ...\n I looked at this movie with my child eyes, and...\n ***Tip: Have It Read To You, Heres How***<br /...\n A yawn-inducing, snail-paced disappointment, I...\n I have to say many people have argued that som...\n Over all, it was a real good movie. Though all...\n As much as I love trains, I couldn't stomach t...\n A lack of character development proves fatal f...\n This wonderful 1983 BBC television production ...\n If you want an undemanding and reasonably amus...\n I saw this film for the very first time severa...\n This movie is the proverbial 80s flick that sh...\n I was duped into seeing this movie after readi...\n Watching Josh Kornbluth 'act' in this movie re...\n this movie wasn't good. i thought it'd be a cu...\n Rip off of \"Scream\" or especially \"I know what...\n This is the worst war movie I have ever seen, ...\n I enjoyed this film. It was funny, cute, silly...\n This movie was two and a quarter excruciating ...\n Before she went into politics or public servic...\n The ruins is to Turistas as Deep Impact was to...\n When I was 10 (currently 14), I vowed to never...\n I know...I know: it's difficult (if not parado...\n Why would I say that? Because when the movie e...\n Close but no cigar! - that's what my opinion o...\n This film set the standard for African-America...\n This would definitely not have been my kind of...\n As a kid I did think the weapon the murderer w...\n Carson Daly has to be the only late night talk...\n Gregory Peck's acting was excellent, as one wo...\n At least the seats in the theater were comfort...\n Quite a heartwarming little film and not just ...\n Tired, garbled dreck. The chemistry between Ar...\n I notice that most of the people who think thi...\n I agree with most of Mr. Rivera's comments, an...\n Well, it was funny in spots. This film is a 4 ...\n I often wonder why this series was slammed so ...\n According to the book The Last of the Cowboy H...\n I only saw it once. This happened in 1952, I w...\n The film's executive producer is none other th...\n Maybe I'm reading into this too much, but I wo...\n Large corporations Vs. Conscientious Do good-e...\n A friend once asked me to read a screenplay of...\n I fail to understand why you would give this f...\n Of course, the story line for this movie isn't...\n The Thing is a milestone in movie-making and r...\n A really funny story idea with good actors but...\n This show has been performed live around the c...\n The greatest compliments to the other commenta...\n Once again, I was browsing through the discoun...\n As a long time fan of Peter O'Donnell's greate...\n It's like what other Dracula movies always do,...\n The world is a terrible place. But this movie ...\n Wow. That's about as much as I can say right n...\n Copy cats have copied this movie from a 1974 H...\n I'm a next generation person...i've never saw ...\n Well, it has to be said that Monster Man is a ...\n Carol, the young girl at the center of the sto...\n I couldn't not recommend a Christmas movie mor...\n Although I am sure the idea looked good on pap...\n Drew Barrymore gets second chance at high scho...\n Barbara Stanwyck plays Lily Powers. She's a wa...\n Any film in the early days of Orson Welles is ...\n Far from combining the best bits of Pontypool ...\n \"Dope Sick Love\" is a really remarkable docume...\n This film rocks...so hard...<br /><br />The ca...\n I have been a Star Trek fan for as long as I c...\n This was the first Mickey Mouse cartoon releas...\n This film starts out with a family who were al...\n Wilhelm Grimm (Alexander Knox) stands trial fo...\n Avoid this one! It is a terrible movie. So wha...\n This story is beautifully acted. It is both sa...\n Magicians is a wonderful ride from start to fi...\n Awful Star Wars knock-off with a slightly more...\n The story of Ed Gein is interesting, VERY inte...\n The often misunderstood Zabriskie Point is Ant...\n I remember this movie getting a lot of flak fr...\n For the first time in years, I've felt the nee...\n I went to the cinema in 1973 when the film was...\n Considered by many to be a strangely overlooke...\n My Mother Frank begins as a warm, amiable come...\n A group of adventurers travel to the 'dark con...\n This movie was a real disappointment to me. I ...\n Throughout this movie I kept thinking why on e...\n No this is not an Ed Wood movie. \"Angora Love\"...\n I am really surprised that this movie get a ra...\n Writer/Director Brian Burns has obviously seen...\n I sat (uncomfortably) through this film becomi...\n I've tried to reconcile why so many bad review...\n I thought this movie was great, if you didn't ...\n I guess if you like watching dudes get \"pumped...\n Umberto Lenzi hits new lows with this recycled...\n In a nutshell: this is a cookie cutter romanti...\n Pinocchio's revenge is not a good movie. Nor i...\n I saw Five Fingers at the Drive-In in...what, ...\n Even die hard John Wayne fans will have to con...\n I first saw The Buddy Holly Story when I was a...\n So ya think you've seen every Mafia movie ever...\n Artistically speaking, this is a beautiful mov...\n This exploration of a unique decade in US cine...\n Due to the invention of a \"The Domestication C...\n This Aussie flick filmed in 1999 does an OK jo...\n A complete and utter waster of my precious two...\n This movie is a real gem. The arc of the the p...\n Pinjar is a genuinely good film, with great ac...\n Don't even bother with this movie, it's bad wh...\n In this peculiar movie, the themes of the end ...\n I see that C. Thomas Howell has appeared in ma...\n Frequently voted China's greatest film ever by...\n The word \"boring\" gets thrown around way too o...\n Back when I was a kid and I lived with my sist...\n I'll keep this short; thanks to Greg for helpi...\n Eddie Fischer was simply bad. Possibly the wor...\n Garbo's first spoken words in this 1930 film e...\n Why aren't more films (especially American) mo...\n Well, I'm a huge fan and follower of Elizabeth...\n Why did I vote 10/10 for this movie that is ju...\n Hey all, I just wanted to give you all a few c...\n I watched Love Life on holiday, when it was fi...\n I think this is one of the best movies of all ...\n Ok, so it borrows a little from \"It's a Wonder...\n \"Dressed To Kill\", is one of the best thriller...\n For those deciding whether or not to watch thi...\n What a terrible, TERRIBLE, film! One of the wo...\n Bad script, bad direction, over the top perfor...\n (WARNING: SPOILERS!)<br /><br />Five young peo...\n What ever happened to Michael Keaton? What a g...\n It was everything this isn't: it had pace, pop...\n I've seen a fair few films from the Far East r...\n I grew up watching and loving TNG. I just rece...\n When my Mum went down to the video store to re...\n As many people know, Mexican cinema was very p...\n I remember seeing this a long while ago, and I...\n I have to agree with MR. Caruso Jr Lanza,s was...\n I originally watched this because I thought it...\n I just saw the movie in theater. The movie has...\n Pinjar by Mr dwivedi is an awesome movie. Its ...\n I found the writing in this movie absolutely t...\n Expecting to see another Nunsploitation movie ...\n I am appalled at how bad this film is. As a pa...\n I have read the book a couple of times and thi...\n When I saw this movie I heard all the hype, an...\n I'd like to point out these excellent points i...\n I was 12 when this film was released and adore...\n I watched the 1st scarecrow movie and didn't b...\n To me A Matter of Life and Death is just that-...\n I just cant see what everyone sees in this mov...\n How cynical are the writers, to pander so. I m...\n This is a wonderful movie. I've only seen it t...\n When Sabrina first came onto our screens i was...\n Well , of course everybody is entitled to have...\n In the rapid economic development of 1990's in...\n The only reason this show did not get a 0 is b...\n This movie is the best horror movie, bar-none....\n I'm not to keen on The Pallbearer, it's not to...\n Michael Curtiz directed this 1930 very-stylish...\n Great acting is best rewarded by pairing with ...\n Fairly amusing piece that tries to show how sm...\n The Beat was an exciting movie about a couple ...\n This movie is very bad. In fact, the only reas...\n <br /><br /> I suppose this is not the best fi...\n \"The seventh sign\" borrows a lot from \"Rosemar...\n For months I've been hearing about this little...\n I was unfortunate enough to see this movie at ...\n I absolutely hated this movie! I was 9 when I ...\n This is the kind of movie that you rent when y...\n Rosenstrasse is a touching story of courage in...\n This movie strayed too far from Straub's novel...\n Alas, it seems that the golden times of stylis...\n Let us assume for a moment that you haven't ex...\n well \"Wayne's World\" is long gone and the year...\n The jazz soundtrack makes this seem like a Cli...\n A different look at horror. The styling differ...\n I guess I do not have too much to add. I found...\n This film is a Pia Zadora special! When viewin...\n Reading the comments I am struck by the obviou...\n When the movie \"The Cure\" starts, we find out ...\n 1931 also presented \"an American tragedy\", the...\n But this movie was a bore. The history part wa...\n haha! you have to just smile and smile if you ...\n I feel like I've just watched a snuff film.......\n In this crackerjack noir thriller from Columbi...\n Just watched this after my mother brought it b...\n It's pretty clear that the director and produc...\n As Jennifer Denuccio used to say on Square Peg...\n If this film was just outrageously poor would ...\n I usually enjoy underground movies and antiher...\n Soldier isn't a great movie, and everyone that...\n \"The Man Who Knew Too Much\" (1955) is Alfred H...\n We don't have to lose this movie, this is one ...\n Pet Semetary (1989) 9/10 The Creed family have...\n Abysmal with a capital \"A\". This has got to be...\n Wow. Something of a surprise. Though flawed, i...\n When the American movie industry tries to crit...\n My Wife and I saw this movie once in 1989 and ...\n It's been said that some directors make small ...\n He only gets third billing (behind Arthur Trea...\n This is a typical example of technically highl...\n OK, lets start with the best. the building. al...\n I was hoping that this film was going to be at...\n <br /><br />Well-known comedians meekly admit ...\n I would rate this film high on my list of Ingr...\n Great book, great movie, great soundtrack. Fra...\n Wow, even American Idol and So You Think You C...\n Barbara Stanwyck as a real tough cookie, a wai...\n I was very excited about this film when I firs...\n This film seems to be a rip off of many movies...\n One should not be too critical about the direc...\n The authors know nothing about Russians prison...\n I just watched this move for the 5th or 6th ti...\n This review contains some small, yet significa...\n Dustin Hoffman's debut feature isn't as bad as...\n The fire gives all...<br /><br /> This is one ...\n Dr. Chopper starts shortly after teenager Nich...\n this is one of the more poorly made movies I'v...\n This is a superb movie, suitable for all but t...\n First of all, this film was not released to th...\n This is a fun movie with subtle intention. Its...\n I just called my brother Paulie on the phone a...\n Is this a good movie? It's hard to say -- but ...\n This pathetic excuse for a movie doesn't have ...\n 'Mojo' is a story of fifties London, a world o...\n Sick of the current cinema output, particularl...\n This is the story of a news investigator who h...\n The Bill was essentially a cultural fountain f...\n I am so disappointed in this movie I can't exp...\n I tried to watch this movie twice and both tim...\n I love this movie, but the music at all the al...\n The commercials for RAT RACE made it look too ...\n Shwaas may have a good story, but the director...\n Come on people. This movie is better than 4. I...\n I was really disappointed by this movie. Great...\n I have just recently been through a stage wher...\n I first see this film almost 21 years ago when...\n This is a film that everyone who lives in Swed...\n This little film brings back a lot of memories...\n CQ was the worst film I saw this year. Nearly ...\n After 66 years \"Flash Gordon\" still has an app...\n \"Bruce Almighty\" looks and sounds incredibly s...\n I too like Dafoe as an actor but i wasted a fe...\n Lauren Bacall and Charles Boyer do not provide...\n Bought for £1, Project Vampire is one of the w...\n I'm usually disappointed by what the media dub...\n A desperate attempt to make a \"film-noir\" sci-...\n Tess of the Storm Country was a Mary Pickford ...\n I got this on a double feature DVD called \"Scr...\n One of the five worst movies I have ever watch...\n Just got back from seeing Black Snake Moan. I ...\n I may not be a critic, but here is what I thin...\n Worse than the rating it has been given. This ...\n please why not put this fantastic film on DVD,...\n There is a point in the film where the female ...\n This unpleasant film has little to recommend i...\n Such a long awaited movie.. But it has disappo...\n Ever heard of a taiwanese horror movie? Or any...\n I am a huge Ziyi Zhang fan and will go to any ...\n The most intense and powerful film I have seen...\n Josie is a reporter from a newspaper is set a ...\n My friend's mom used to work at a video store ...\n This movie was on British TV last night, and i...\n From everything I'd read about the movie, I wa...\n It would be something to try and tell someone ...\n Lapyuta (Castle in the Sky), more than any of ...\n SAPS AT SEA is evidently a pun on a Gary Coope...\n Dwight Frye steals the show in this one as a f...\n What an incredible fall for Sean Ellis.<br /><...\n The film begins with Ingrid Bergman and her tw...\n Nothing special to see here, the animation has...\n I have been familiar with the fantastic book o...\n If you are looking for an erotic masterpiece t...\n Look, this is quite possibly one of the best m...\n I just read a review defending this film becau...\n That's a problem I have with movies that come ...\n Endless repetition about the evil World Bank, ...\n Paulie sounds like the most saccharine, lachry...\n i never made any comment here on IMDb, but as ...\n I am amazed that movies like this can still be...\n Did you find the title funny? Oh, you didn't? ...\n This film on paper looked like it could possib...\n Terrific acting by the 5 stars makes this one ...\n Awful in a whole new way, ANYTHING BUT LOVE pr...\n A rather lame teen slasher from Brisbane. Whil...\n Oh dear! Oh dear! Oh dear!<br /><br />To think...\n I grew up on this movie and I can remember whe...\n Strong evidences and it clearly shows governme...\n Really, I can't believe that I spent $5 on thi...\n I went to see \"TKIA\" with high expectations, w...\n This may just be the worst movie ever produced...\n In a up and down career with all sorts of movi...\n When two writers make a screenplay of a horror...\n Forced, cloying, formulaic. Do these adjective...\n Woosh! Man What can I say...?<br /><br />The...\n Undeveloped/unbelievable story line,(by the ti...\n Boy this movie had me fooled. I honestly thoug...\n ... because this is yet another dead one. Life...\n I'm glad this was the last of the '40's Univer...\n With Pep Squad receiving an average of 4.7 on ...\n Maybe it gets better. I wouldn't know. I made ...\n Unfortunately this is not one of those movies ...\n I have been learning about the Zodiac for four...\n Lisa Baumer (Ida Galli) is the adulteress wife...\n I saw this film as a sneak preview before the ...\n I had no expectations; I'd never heard of Jami...\n Cult film-maker Corbucci's rarest of his thirt...\n There isn't much that comes close to the perfe...\n In the dusty little town of Furlough in Texas,...\n Not having seen this film in quite some time, ...\n I recently had the idea to make a short film f...\n I don't know how I would feel if I lived in US...\n This movie is an awesome remake of the origina...\n I always tell people that \"Enchanted April\" is...\n This film is terrible. Every line is stolen fr...\n The premise of the movie has been explained an...\n The movie is powerful as a political statement...\n I only know of one other movie that could poss...\n Being a D.B. Sweeney fan, I've been on the loo...\n Solo is a poor film - that cannot be ignored. ...\n ***SPOILERS*** ***SPOILERS***<br /><br />I saw...\n I question its importance to Queer Cinema as i...\n The material is poor....the script's dreadful....\n Talk Radio sees a man somewhat accidentally st...\n This film was horrible. The script is COMPLETE...\n Of all the versions of the Odyssey (or of any ...\n This was a modest attempt at a film, though it...\n The basic idea for this movie was good, but th...\n You have to figure that when the star's name i...\n The notion of marital fidelity portrayed in th...\n This is a very good Spanish movie but I am wor...\n I really wanted to like this movie, because I ...\n I revisited Grand Canyon earlier this year whe...\n This movie was so bad I don't know where to be...\n five minutes after watching this i logged on t...\n I went into this film expecting a slasher, and...\n one of the worst films i have seen to date. Pa...\n Enjoyed this 1936 film with plenty of veteran ...\n This series has a lot going for it with beauti...\n I'm sure that Operations Dames was a favorite ...\n Wales seems to be turning out some quirky movi...\n Does anyone know, where I can see or download ...\n i hired this movie out from my local movie sho...\n This can't be Mandy Schaffer's last film. Some...\n \"I haven't laughed this hard since granny got ...\n One of low budget horror schlockmeister actor,...\n I respect the fact that this is a very popular...\n Wow. I saw this movie and \"Up\" on the same day...\n I sat down to watch a documentary about Puerto...\n \"Pickup On South Street\" is a high speed drama...\n There is a reason why certain films go straigh...\n I happened on \"Shower\" in the foreign film sec...\n I went to see Glenn McQuaid's \"I Sell The Dead...\n I have, \"Things to Come,\" on D.V.D. and it's v...\n From the point of budget 2.5m CAD isn't very m...\n Am i right in thinking i went to see the same ...\n The chemistry between Sally Hawkins and Elaine...\n The Robot vs. the Aztec Mummy was one of the s...\n This film surprised me a little. I watch a lot...\n Spirit of a murdered high school geek animates...\n The theme song often goes through my head afte...\n It's not quite the timeless masterpiece you wo...\n I can't believe that anyone would green light ...\n I wasn't expecting much out of this movie and ...\n I put this movie on in the hotel room to enter...\n Heart of Darkness, a short novel written by Jo...\n Despite the pans of reviewers, I liked this mo...\n Kalifornia came out in 1993, just as 3 of the ...\n Ever since he played a goon in Lone Wolf McQua...\n the costumes, the dialog, historical accuracy ...\n Well, this movie actually did have one redeemi...\n When I started watching this, I instantly noti...\n I haven't seen all Cage's works by any means b...\n 10/10<br /><br />PLOT DISCUSSION<br /><br />Th...\n Budget, decent actors ...who knew these things...\n This has to be one of the, if not the worst mo...\n With a story and screenplay that seems to have...\n Wow. What can I say? I was born in 1960. I lov...\n Talk about a bore-snore. This 3rd rate biker f...\n OK, it's watchable if you are sick in bed or h...\n What was with all the Turkish actors? No offen...\n I never intended to write a review of this mov...\n The Power of Kangwon Province is director Hong...\n Director Sam Fuller has something of a cult fo...\n This is a clever episode of TWILIGHT ZONE that...\n If you haven't seen this, you do not know what...\n Lonesome Jim is kind of like a romantic dark c...\n Another Norman Lear hit detailing the problems...\n Well, I think I've finally seen my last Woody ...\n I grew up watching, and loving this cartoon ev...\n Ever since I was eight years old I have been a...\n The premise, while not quite ludicrous, WAS de...\n This is probably the worst movie I have ever s...\n Definitely one of the lesser of the Astaire/Ro...\n This is a VERY bad movie. However, I read that...\n I was REALLY disappointed with this movie. I h...\n After I read that ''At the time of its release...\n I saw this once probably like most people my a...\n Oh, why did it have to end like this? Laurel a...\n If you've ever been harassed on the Undergroun...\n i watched this film many years ago and have se...\n I look at this page, and it seems disapproving...\n Yes, it might be not historically accurate(act...\n i consider this movie as one of the most inter...\n This show is terrible, the jokes are all terri...\n Who is Bettie Page? I certainly didn't find ou...\n This is a luminously photographed and unusuall...\n This is one of those movies that they did too ...\n I caught this movie on late-night TV. Honestly...\n The vampire \"craze\" has, in my opinion, actual...\n I first saw All the Rivers Run on TV when I wa...\n Everything that you need to know about the por...\n C'mon people, look at the title! LOL! I rememb...\n As usual, leader Leo Gorcey (as Slip Mahoney) ...\n <br /><br />There is something about seeing a ...\n This is a film that makes you say 2 things... ...\n This has always been a favorite movie of mine....\n Yeah, stupidity! I just finish watching and I ...\n MGM were unsure of how to market Garbo when sh...\n Robert A. Heinlein's classic novel Starship Tr...\n A fondly-remembered melodrama  thanks chiefly...\n When I first saw Stella on comedy central I th...\n Ghoulies 4 is pretty ghoulish sequel. The ghou...\n I recently watched this film at the 30'Th Goth...\n This was a weird movie. It started out pretty ...\n This movie had reminded me of watching the old...\n Before I explain the \"Alias\" comment let me sa...\n You'd think that with Ingrid Bergman and Warne...\n The Duke is a very silly film--a dog becoming ...\n I'm a pretty tolerable guy, when it comes to m...\n This 1981 comedy still sparkles thanks to the ...\n After the book I became very sad when I was wa...\n Beautiful story of Wisconsin native, Dan Janse...\n I am easily pleased. I like bad films. I like ...\n What the heck is this about? Kelly (jennifer) ...\n This is an action packed film that makes me fe...\n Well what I can say about this movie is that i...\n one of the best and most inspirational movies ...\n This movie started me on a Nick Cage kick. It ...\n I liked it but then I think I might have been ...\n \"The Desperadoes\" (1943) is a genuine classic,...\n This movie is all flash and no soul. The actor...\n I haven't seen the more recent 'Traffic' which...\n It is definitely not worth spending either mon...\n For quite a long time in my life, I either did...\n I give this movie 2 stars purely because of it...\n <br /><br />`<br /><br />5 Years ago if you we...\n I saw this film when it premiered in LA. I thi...\n I don't care if some people voted this movie t...\n Without a doubt, the biggest waste of film of ...\n Alas, poor Hamlet. I knew him, dear reader, an...\n I say remember where and when you saw this sho...\n \"An evil spirit takes over a girl and diffuses...\n this was a get up and go horror movie with an ...\n www.petitiononline.com/19784444/petition.html ...\n The plot was quite interesting, with the Russi...\n Venice, in 1596.Jews are separated from the go...\n It's a very good movie, not only for the fans ...\n How many disaster movies can there be before w...\n This is truly, without exaggerating, one of th...\n The tenuous connection between this film and t...\n Mystery Science Theater 3000 would have not be...\n I saw this film knowing absolutely nothing abo...\n When Ben (Red Foxx) discovers his wife Beatric...\n I would have been about 11 years old when this...\n What is it with studios like Paramount that ha...\n Wow! So much fun! Probably a bit much for norm...\n This movie is about a fictional soap opera. It...\n Half of the movie is is flashing lights and sh...\n \"Love and Human Remains\" is one of those obvio...\n Nothing positive to say. Meandering nonsense, ...\n It was so terrible. It wasn't fun to watch at ...\n This film is one of those that can't be regard...\n you must be seeing my comments over many films...\n This film with fine production values features...\n \"Men of honor\" - true story about a proud and ...\n This movie was a confusing piece of garbage. Y...\n Okay, so Robbie's a little hokey-looking by to...\n People call a 976 \"party line\" to talk dirty t...\n I had a vague idea of who Bettie Page was, par...\n A trash classic! Basically what we have here i...\n Yet again not quite bad enough to make it enjo...\n Seeing that this got a theatrical release nowh...\n I first saw this film in the mid 60's when I w...\n Here we have a miniseries, which revels in in ...\n The first half was OK, but the last half reall...\n Ah, Bait. How do I hate thee? Let me count the...\n Kol, space prisoner on space death row, manage...\n This movie is a perfect example of an excellen...\n The songs are fantastic and the story-line is ...\n Set in 1976 for no apparent reason other than ...\n This movie had potential, but what makes it re...\n I believe that this is one of Elizabeth Montgo...\n What an unfortunate mess is \"Shiner.\" I wanted...\n This film was released the year I was born and...\n The best thing about camp films in general is ...\n I watched this with my whole family as a 9 yea...\n I was fairly lost throughout most of this film...\n The kids, aged 7 to 14, got such a huge kick o...\n I saw this piece of garbage on AMC last night,...\n I have been waiting for this movie a long time...\n Maria Braun got married right in the middle of...\n A montage prologue, quite obviously manufactur...\n I'm a huge fan of zombie movies and this is ju...\n Peter Bogdonavich has made a handful of truly ...\n Well, what can I say.<br /><br />\"What the Ble...\n Director/screenwriter Allan Burns seems to hav...\n No words can describe how awful this film is. ...\n This film was so predictable, that during the ...\n This movie is one of the only historical docum...\n The Wicker Man. I am so angry that I cannot wr...\n This film took up three hours, including comme...\n It has started quietly. If your are looking fo...\n A lot of the problem many people have with thi...\n This show started out with great mystery episo...\n I can't believe that there are people out ther...\n I found this film to funny from the start. Joh...\n It has been almost 5 years since the release o...\n Set in World Depression Era Prague, this is th...\n This is one of the most enjoyable teen movies ...\n Another powerful chick flick. This time, it re...\n I can't add an awful lot to the positive revie...\n Normally i would applaud a movie that tries to...\n I just got back from a screening a couple of h...\n Like a lot of the comments above me, also I th...\n Not even 'lesser' Hitch, but simply a bad movi...\n Taken in the context of the time it was made, ...\n This movie was physically painful to sit throu...\n Blindingly stupid guff from the formerly talen...\n I can hardly call this a great film but it is ...\n Randolph Scott and Glenn Ford were once outlaw...\n Its time to pay tribute to the great Charton H...\n After what was considered to be the official D...\n OK if you are looking for a fun lesbian romp. ...\n Dark and bleak sets, thrilling music that cuts...\n As the metaphoric flies fled this steaming wat...\n This is by far the worst movie ever made. I ha...\n I play this game exactly after I watch the tra...\n I don't understand why everyone is hating on B...\n A movie/documentary about different people in ...\n Having seen Rush live, I'm able to appreciate ...\n I'm a huge Jane Austen fan and besides being a...\n A lot of things in this futuristic satire are ...\n This is a really funny film, especially the se...\n Stumbling upon this HBO special late one night...\n I went to see Random Hearts with 3 friends, an...\n THE SCREAMING is a very low budget horror movi...\n Hey what do you expect form a very low budget ...\n \"Cut\" is a film about some film students makin...\n 'Maladolescenza' has the air of a dark fairy t...\n An obvious cash-in on the *Insert Monster Here...\n Engrossing drama of four men on a canoing week...\n This film came as a gift - a late-night offeri...\n No, just kidding. It was God-awful.<br /><br /...\n Instead, go to the zoo, buy some peanuts and f...\n if u haven't seen Vijay in \"Ghillli\", \"Gilly\" ...\n As previously stated in one of my great review...\n This is a great movie for all ages. Its the st...\n I thought that Ice Age was an excellent movie!...\n 1st watched 10/29/2006 - 4 out of 10(Dir-John ...\n I have been looking for this mini-series for a...\n New York, I Love You, or rather should-be-titl...\n I had no problem with the film, which I though...\n 2:37 succeeds admirably at showing us what Aus...\n I am a huge Robert Taylor fan and I have been ...\n Definitely not only for urban legend aficionad...\n Icy and lethal ace hit-man Tony Arzenta (a div...\n Uzumaki has a formidable reputation within Lov...\n Claire Denis's Chocolat is a beautiful but fru...\n 102 Dalmatians (2000, Dir. Kevin Lima) <br /><...\n Now here's a film straight out of my childhood...\n Grey Gardens is shocking, amusing, sad and mes...\n <br /><br />Excellent ! I have to think back a...\n Although compared with \"Mad Max\", this film is...\n Leave Ed Wood alone. To call \"Plan 9 from Oute...\n Beautiful....that one word pretty much sums up...\n I saw this as a child in the late eighties and...\n I felt compelled to write a review for Space C...\n One night I was listening to talk radio and th...\n I was very disappointed in this movie. Plotwis...\n 'Oppenheimer' with Sam Waterston in the title ...\n Once in a while, a film comes along that raise...\n Sayles had a very interesting film on his hand...\n Dirty Dancing follows the story of Frances 'Ba...\n About five minutes in, and I saw where this wa...\n Buck's role as The Kahn brings to mind Bob Bar...\n I was very excited to see that they had made a...\n I found this film to be a bit too depressing. ...\n Frank Sinatra was far from the ideal actor for...\n I have to admit, I don't remember much about t...\n Well it was a nice surprise after all. its tra...\n Sam O'Steen, the film editor on the superlativ...\n OK, we got JP from Grandma's Boy and Chuck fro...\n I've liked Milos Forman's movies since I saw \"...\n Once in a while in Indian cinema there comes a...\n This is the fourth full-length feature film by...\n I had heard about \"gaming\" and \"Dungeons and D...\n The first word i can find to describe this mov...\n The Shining starts with Jack Torrance (Jack Ni...\n Like many here I grew up with Scooby-Doo. Unli...\n Anna Christie (1930)<br /><br />Anna Christie ...\n The first of five St Trinian's films (although...\n Imagine if you will an alternative universe wh...\n I have always liked Spike Lee's movies, but th...\n I suppose I like this film as well as any I kn...\n This has to be some of the worst direction I'v...\n I've seen this film on Sky Cinema not too long...\n If you go to the cinema to be entertained, amu...\n Leos Carax is brilliant and is one of the best...\n Due to budget cuts, Ethel Janowski (again play...\n Great just great! The West Coast got \"Dirty\" H...\n I am a great fan of Martin Amis, on whose book...\n After repeated listenings to the CD soundtrack...\n OK, I admit it, I'm 40 and still shed a tear e...\n A stupid show in the vein of the rest of them ...\n It's not so much that SPONTANEOUS COMBUSTION h...\n My girls 4 and 6 love this show. We stumbled a...\n Grim instead of amusing, mean-spirited instead...\n Not everything is said in this excellent first...\n \"Painting is seeing, then remembering better t...\n I'm working my way through the Horror Classics...\n After all the crap that Hollywood (and the Ind...\n Regarded as another one of the recent over-the...\n \"No one really knows how the Power came to be....\n \"Summer of My German Soldier\" was one of the m...\n I think a person would be well-advised to read...\n I first saw this movie as a pre-teen, about th...\n \"National Treasure\" (2004) is a thoroughly mis...\n A couple of cowpokes help a group of Mormons c...\n Everyone who has ever wondered how to make a f...\n I found the DVD version of this movie at a rum...\n Those who dislike this film seem to think that...\n What does the Marquis de Sade have to do with ...\n Altman is very proud of the fact that people i...\n This oddity in the new DORIS DAY COLLECTION do...\n well its official. they have just killed Ameri...\n Although I could sum this pathetic episode of ...\n There is only one reason this movie is watchab...\n Subject Matter: Cosmology, Quantum Physics and...\n By Hook or By Crook is a tremendously innovati...\n I think you would have to be from the USA to g...\n Went to see this finnish film and I've got to ...\n This film is a great example of fine storytell...\n RKO was trying to boost its starlet JOAN FONTA...\n This is one of the worst films I've seen. The ...\n Robot Jox doesn't suffer from story or bad eff...\n Cliché-avoidance is one of this film's main ac...\n I remember this film of old. It's a great, chi...\n I've seen this movie twice with my teenagers w...\n I cannot get past the message of this movie. I...\n (Spoiler included, some would say)<br /><br />...\n Joan Fontaine stars as the villain in this Vic...\n Oh dear, oh dear...<br /><br />For JM fans, th...\n This was on the 30th Anniversary DVD for Blazi...\n I saw this movie on the base movie theater whi...\n This film was one of the worst I've seen in a ...\n I'm grateful for one thing and one thing only ...\n Good show, very entertaining. Good marshal art...\n hello. i just watched this movie earlier today...\n \"54\" is a film based on the infamous \"Studio 5...\n I think several others have already commented ...\n Six teenagers go to an old remote abandoned sc...\n .... could it be that ITV wouldn't want to rel...\n I think Cliff Robertson certainly was one of o...\n This should be re-titled \"The Curious Case Of ...\n A poor basketball movie. A gruff coach with a ...\n 'Panic in the Streets (1950)' owes more to Bri...\n i remember watching an elizabeth montgomery mo...\n I was expecting this movie to suck, but what I...\n You have to have lived in Japan for awhile to ...\n I feel like I'm the only kid in town who was a...\n It sounds as if it should be a biography of Cl...\n Absolutely one of the worst movies I've ever s...\n I'll give credit where credit is due, and say ...\n Picking up right after the Moscow-showdown of ...\n so, being a fairly deep fan of horror movies, ...\n Having not seen all the films released in 2002...\n Remember these two stories fondly and in the f...\n I thought that Eastwood's most unusual role wa...\n A lumberman finds a young cougar in need of he...\n **** Spitfire (1934) John Cromwell ~ Katharine...\n SPOILERS AHEAD <br /><br />15 PARK AVENUE: My ...\n Unfortunately, this movie never made it to DVD...\n It was interesting to see how accurate the wri...\n Like a lot of movies involving little kids, th...\n Almost too well done... \"John Carpenter's Vamp...\n A real blow-up of the film literally. This Bri...\n I actually really like what I've seen of this ...\n I am so insulted by this movie, it's not even ...\n Anyone who has ever gone on an audition can ce...\n Mani is back wit a Rathnam(gem) he manages to ...\n There are no people like \"Show People\" Marion ...\n Purple Rain is so cool for the dad. We Are Tra...\n Right from the start you see that \"Anchors Awe...\n Is it possible to give a movie NO STARS? I sup...\n This has to be the ultimate chick flick ever. ...\n I've often wondered just how much CASPER was m...\n This movie could have been an impressing epic,...\n For all its many flaws, I'm inclined to be cha...\n I swear, that zombie was killed like twice, an...\n \"The Man in the Moon\" is a beautifully realist...\n Maddy (Debbie Rochon) is a mentally unstable y...\n This DVD appears to be targetted at someone wh...\n This is quite possible the worst movie ever ma...\n The violent and rebel twenty-five years old sa...\n Surprisingly good and quick-witted adventure t...\n We really liked this movie. It wasn't trying t...\n Another in a long line of flicks made by peopl...\n The movie is really cool, I thought. It sticks...\n A first time director (Bromell) has assembled ...\n (VERY mildly spoilerish)<br /><br />I must sta...\n The plot of this film might not be extraordina...\n weak direction, weak plot, unimpressive music,...\n Many people has got a film they think of as th...\n This is a pretty good made for TV flick of the...\n But if you like the muppets I defy you to disl...\n I saw one of the stage performances in Denver ...\n It looks b grade and you will probably think t...\n I think we are supposed to think what wonderfu...\n And so it started with \"Shreik\" a send up of h...\n I must have seen this on the television when i...\n This movie can be described in those 2 words \"...\n Brown returned to his role from the year befor...\n I admit that I am a vampire addict: I have see...\n I am a kung fu fan, but not a Woo fan. I have ...\n \"Dead Man Walking\" is a film not about the dea...\n If you ever watched the Dukes of Hazard you kn...\n This film was basically Velvet Goldmine if the...\n The centerpiece of Lackawanna Blues is the cha...\n I really hope the makers of these \"movies\" rea...\n This movie is like Happiness meets Lost in Tra...\n This is an awesome Amicus horror anthology, wi...\n Well, this movie started out funny but quickly...\n Some of my favorite Laurel and Hardy films hav...\n I'm not gonna lie. To say that this movie is c...\n I watched \"Fuckland\" a long time ago. I lied i...\n I didn't expect much from this movie, it was j...\n I first saw this movie about 20 years ago and ...\n Containing Billy's famous humor, this more mod...\n If you just want gore, and nothing but gore an...\n Well the name in the summary should tell you e...\n It begins with a couple of disgusting sex-come...\n This moody, creepy horror flick begins on a ca...\n Labored comedy has I.R.S. agent Tony Randall i...\n This is a dry and sterile feature filming on o...\n This movie was extremely depressing. <br /><br...\n The interesting aspect of \"The Apprentice\" is ...\n To my eternal shame, I've never seen a silent ...\n I think the film makes a subtile reference to ...\n Spoiler: Bunch of passive-aggressive people ha...\n There's nothing new here. All the standard rom...\n There is no reason to see this movie. A good p...\n The basic premise of \"Miami Golem\" most defini...\n When I first saw this movie back in the middle...\n Lately, I've been watching a lot of westerns f...\n David Lynch shot his first film, 'Erasurehead'...\n I cannot believe how bad this piece of garbage...\n A movie I've seen and enjoyed possibly more th...\n Well its about time. I had really given up any...\n \"Revenge of the Zombies\" is a pretty weak and ...\n I saw this by accident one lazy summer afterno...\n There are a number of problems with this movie...\n Well, the movie isn't exactly \"funny.\"<br /><b...\n I caught this one on cable and I was very surp...\n Oh, Man, talk about the effect of advertising....\n It's a shame that quality actors like Baldwin ...\n It is obviously illegal. Pedophiles pray on st...\n Wow. I thought, Eskimo Limon was the most awfu...\n I got this in The Horror Six-Pack from Echo Br...\n Not really all that much to this movie...eithe...\n We showed this movie at the local Film Society...\n I can't say that Wargames: The Dead Code is th...\n I agree with all the strenghts mentioned in th...\n I'ts like going around in a museum. You can ap...\n This movie is important to those of us interes...\n i really loved this version of Emma the best. ...\n People who say that some of what the Looney Tu...\n Age cannot tarnish the beauty of this East-wes...\n What can you say when you see a good French mo...\n The original Boogeyman was a silly but enterta...\n Schieder delivers a semi-believable part as th...\n \"Tapeheads\", a scrappy, intermittently funny s...\n Holy freaking God all-freaking-mighty. This mo...\n Why is it that Instant Noodles aren't instant,...\n Generally over rated movie which boasts a stro...\n Considering the limits of this film (The entir...\n Following on from the huge success of Nick Par...\n This is one of my all time favourites. All the...\n OK, so one night me and some friends decided t...\n Ok, basically this is a popcorn sci-fi movie, ...\n There's no shortage of bad dialogue in David a...\n This program was quite interesting. The way th...\n Other reviews have talked about how frank this...\n The Residents are a band known for their stran...\n Minor Spoilers<br /><br />Alison Parker (Crist...\n I am an avid Julie Andrews fan and I just watc...\n After viewing the film, I was truly shocked to...\n Bad movie. It´s too complicated for young chil...\n Yeah, well, I definitely had regrets about giv...\n An interesting animation about the fate of a g...\n This group of English pros are a pleasure to w...\n Having to have someone hold your hand whenever...\n The problem with the 1985 version of this movi...\n Another demonstration of Kurosawa's genius, hi...\n Czech movie goers may have enjoyed and rated t...\n This film tries to skewer the studio era in Ho...\n What happens when an army of wetbacks, towelhe...\n Visually interesting, but falls flat in the or...\n Sergio Martino is a great director, who has co...\n Its spelled S-L-A-S-H-E-R-S. I was happy when ...\n \"Tempest\" is a somewhat self-indulgent, uneven...\n hi I'm from Taft California and i like this mo...\n What can I say? This was one awful movie to wa...\n Dear Mr Ram Gopal Varma, I don't know in which...\n Yes, CHUNKY, this is the nick-name that Donna ...\n There are pretty landscape shots. Writers putt...\n I agree with what \"veinbreaker\" wrote with reg...\n This 3-hour made-for-TV miniseries came home w...\n Some spoilers If you are a big horror movie fa...\n Six Degrees is a wonderful show! I watched the...\n Well the previews looked funny and I usually d...\n A brilliant movie about family, guilt, sacrifi...\n I too had waited a long time to see this film....\n This film is just really Great. I don't know w...\n While Rome goes mad celebrating Hitler's visit...\n Cypher is a movie well worth seeing because it...\n Watching this movie was a waste of time. I was...\n Remember that this came out before Gulf War I,...\n Human Traffic is purely a `been there, done th...\n One of the worst shows of all time. The show w...\n Wow it's ironic since this movie has been out ...\n I thought this film was amazing and I laughed ...\n Now I had the pleasure of first viewing Contam...\n First off let me say, If you haven't enjoyed a...\n As a huge fan of the original Operation Delta ...\n This movie is a ripoff of James Cain's novel, ...\n From the first moment, this \"thing\" is just an...\n Okay...so I am gazing through my Mom and Dad's...\n When I read the back of the DVD case, I though...\n \"D.O.A\" is an involving and entertaining littl...\n this is quite possibly the worst acting i have...\n Highly recommended to all those who appreciate...\n I Liked this move when I was a kid, but now th...\n Thirty years prior to THE DEER HUNTER came thi...\n St. Elmo's Fire has no bearing on life after u...\n It's too slow paced and complex for children, ...\n Take it from me as a camera man who worked for...\n This movie is based on the series Street Fight...\n \"The Kite Runner\" is one of the most controver...\n I've seen 'nurse betty' twice in september 200...\n This was a very good show. I enjoyed the const...\n I have to say, Krasinski is the only reason I ...\n Good, funny, straightforward story, excellent ...\n But then again, what ever is? I picked this up...\n I remember seeing this in the early 90's on UK...\n Despite the (English) title, this seems to hav...\n The short film which got Gaspar Noe on the mov...\n Previous commentators have noted the similarit...\n What really amazed me about this film was that...\n I am a MAJOR fan of the horror genre! I LOVE h...\n I really refused to see this movie. I refused ...\n Robert Florey and James Wong Howe gave this a ...\n It's boggles the mind how this movie was nomin...\n This isn't the best romantic comedy ever made,...\n This was my second time watching the film (via...\n All I can really say is that I'm glad that I w...\n \"An astronaut (Michael Emmet) dies while retur...\n I'm sure that not many people outside of Austr...\n You've got to admire director Todd Sheets for ...\n If you are going to attempt building tension i...\n I was very disappointed in this 1970 film base...\n A hint I think may be gathered by the various ...\n the worst sequel I've ever seen. really awful ...\n There's a certain allure I've always found in ...\n Sammi Cheng & Andy Lau are coupled yet again i...\n A movie like this doesn't come along too often...\n I like Chris Rock, but I feel he is wasted in ...\n The original \"Cube\" is a fantastic B-movie ric...\n Jud Nelson is an aspiring actor who becomes in...\n For an indy film this is probably a bit better...\n This is not a movie that I would typically wat...\n This was the eighth and final Columbia Whistle...\n I agree with those reviews I have read here, a...\n When I first saw this movie,I also expected \"o...\n In my life I have seen many great and awful mo...\n I'm so glad I taped this film when it came on ...\n I saw the first House of the Dead and expected...\n Guy Pearce looks like and acts like a Calvin K...\n Plot Synopsis: When his wife, a news reporter,...\n I must have missed a part of this movie... I f...\n There is, as many reviews have observed, a str...\n Sorry, but Jacqueline Hyde (get it??? - Jack L...\n This is another one of those movies I just kne...\n This film is strictly for fans of Debbie Reyno...\n Let me state at the outset that I have Cerebra...\n I have seen this film on a Sunday evening and ...\n This film was a big disappointment.<br /><br /...\n Slackers is just another teen movie that's not...\n My dog recently passed away, and this was a mo...\n Holy cow, what a piece of sh*t this movie is. ...\n The extended nuclear family, united in busines...\n This is by the far worst piece of cr4p I've ev...\n This is a very rare example of a movie about t...\n The Regard of Flight and the Clown Bagatelles ...\n Warning: contains a spoiler. Corny plot and in...\n This happens to be one of my favorite horror f...\n My wife and I have watched this whole series a...\n As a teenager, I was pretty into the whole Big...\n I read about this movie in a magazine and I wa...\n WOW!<br /><br />I just was given this film fro...\n As has been noted, this formula has been filme...\n Has there ever been a movie more charming than...\n my name is Heather and i am the girl whose sto...\n I watched this movie, having never read the bo...\n The brilliance of this film lies not in the fi...\n I tired on several attempts to sit down and wa...\n Of the Korean movies I've seen, only three had...\n This is without a doubt the WORST sequel I hav...\n This movie was horrible, simply put. It was so...\n I fail to see the appeal of this series (which...\n Angel-A is a change of pace for Besson; monoch...\n Seriously disappointing performance by Brad Pi...\n Ah yes, it's yet another retelling of the clas...\n One of the many backwoods horror's that came o...\n \"Someones at the Door\". OHHH, How I miss this ...\n Three American lads are backpacking their way ...\n Bad acting. Bad writing. This was a poorly wri...\n This is an example of what film school lecture...\n Obviously a lot of talented behind the scenes ...\n This was quite possibly the worst movie I have...\n This really was the worst movie I have ever se...\n I imagine Victorian literature slowly sinking ...\n Polyester was the very first John Water's film...\n I'll be honest with you...I liked this movie. ...\n I tell you although it is funny how how this m...\n Sam (Thomas Cavanagh) and Gray (Heather Graham...\n Hello I am from Denmark, and one day i was hav...\n A satire about greed and money, what? There is...\n There were a lot of films made by Hollywood du...\n In the early 1970s, many of us who had embrace...\n As the '70's drew to a close, rumours began to...\n The film is based on a genuine 1950s novel.<br...\n The Cat in the Hat is just a slap in the face ...\n It's curious that the two stars of Meet The Pe...\n Okay, first off, Seagal's voice is dubbed over...\n Set in a middle class neighborhood in the imag...\n Talk about rubbish! I can't think of one good ...\n I watched the this the other night on a local ...\n This movie is very much like \"Flashdance\", you...\n I'm not a John Cleese completist (although I t...\n I am utterly astonished at how over-rated \"Cem...\n Since I first saw this in the theater it has b...\n You thought after \"Traumschiff Surprise\" that ...\n If you enjoy romantic comedies then you will f...\n First off, let's start with the negative point...\n After seeing You've Got Mail and feeling disap...\n ARMED AND DANGEROUS is not one of the greats o...\n I was excited to see this show when I started ...\n -may contain spoilers-<br /><br />Clearly, who...\n I think that that creator(s) of this film's co...\n What a waste of time to watch this movie. Poor...\n How can you make a joke about Mafia? It is not...\n I was hooked from beginning to end. Great horr...\n I've seen every episode, and the characters ha...\n Angela Johnson (Pamela Springsteen--yes she's ...\n I just have to throw my two cents in. Relax, i...\n I recently watched the '54 version of this fil...\n Excellent example of the disaster that happens...\n I originally saw this movie as a boy at the ol...\n The characters was as unoriginal it hurts. The...\n James L. Brook is one of those directors who a...\n I don't know what the previous reviewer was wa...\n Other than Susan Hayward's wooden delivery thr...\n Four macho rough'n'tumble guys and three sexy ...\n Elmer Fudd is laughing while lounging in his e...\n Although I think the reviewers who hated this ...\n For those of you still in the dark, I will not...\n Journey to the Center of the Earth is the stor...\n Since their nasty divorce from the Disney Comp...\n First off, the movie was not true to facts at ...\n Who ever wrote the two or three glowing review...\n The British production company Amicus is gener...\n So i had low expectations for this movie to st...\n This movie was directed by Victor Nunez who al...\n Zero Day leads you to think, even re-think why...\n And again, I find myself in the minority.<br /...\n My grandmother bought me this film when I was ...\n From a perspective that it is possible to make...\n This movie has received a lot of bad press fro...\n I came at this film with high expectations. I ...\n \"Diary of Sex Addict\" is a pathetic attempt at...\n Jamie Foxx is my favorite comedian. However, I...\n I saw this at the San Francisco Independent Fi...\n The third film in a cycle of incomparably bril...\n I'm normally a fan of Bruce Willis, and despit...\n I stopped watching lost at this episode becaus...\n I especially liked the ending of this movie--I...\n I have to say I was pleasantly surprised by th...\n This film has a special place in my heart, as ...\n It's hard to believe that in 1997 David Duchov...\n It was nice to see all the familiar characters...\n Sabrina the Teenage Witch was one of my favori...\n That's what I kept asking myself during the ma...\n go get your camcorder, your little brother, an...\n This movie is about three teens who have been ...\n I recently saw I.Q. and even though I'm not a ...\n This film actually manages to be mindless enjo...\n Persuaded by the 7.0 points in IMDb, which is ...\n I was 5 years old when I saw this musical movi...\n I have never seen such a movie before. I was o...\n All I have to say is that this movie is the bo...\n Though not in the whole film, Andy Griffith ag...\n Too bad neither the animals or Eddie Murphy ha...\n Kazuo Komizu, who hasn't made one decent film,...\n Seeing \"Moonstruck\" after so many years is a r...\n KK should stick to singing- this whole movie w...\n This has to be one of the best comedies on the...\n A vehemently cynical, sarcastic and intense fi...\n I think that this movie is very fun and horror...\n I saw this when on The Wonderful World of Disn...\n It surprises me that I actually got the courag...\n Roll up! Roll up! It's Big Gay Bruce and his B...\n Anyone remember the first CKY, CKY2K etc..? Ba...\n It was so disjointed - it seemed to jump from ...\n This is easily one of the worst 5 movies I've ...\n With that line starts one silly, boring Britis...\n Thankyou for making such a wonderful escape . ...\n There are so many comments on this film, yet I...\n I was really impressed with this film. The wri...\n I had my son for the weekend and my parent's c...\n You know, as you get older, you somehow think ...\n Am I the only person who believes this America...\n Where the heck is Andreas(Trond Fausa Aurvaag)...\n This film has an excellent premise and is real...\n Let me confess. I found this video used and bo...\n JUST CAUSE is a flawed but decent film held to...\n Hmm, is it right to compare Tiffani Thiessen a...\n Two young friends grow up together in Afghanis...\n Please, someone stop Ben Stiller from acting i...\n After viewing \"Whipped\" at a distributor's scr...\n This is one the worst movie I've seen and cert...\n Attention, possible spoilers<br /><br />This f...\n As a 90 minute experience, it is not up to the...\n 1930's comedy mystery about \"The Crooked Circl...\n William M. Thackeray once said \"A good laugh i...\n This is the best movie I've seen since White a...\n I have never seen a movie as bad as this. It i...\n I sought out a copy of The Forest because I wa...\n In his directorial debut, Denzel Washington ta...\n 'Anne Christie' was Garbo's 14th film and the ...\n Like the previous commentator on this film, I ...\n I really enjoyed the detail that went into the...\n Pretty good film from Preminger; labyrinthine ...\n This happened to be just starting on TV when I...\n This 1973 remake of the classic 1944 Billy Wil...\n This movie is little more than poorly-made, fe...\n This movie purports to be a character study of...\n For a teenager who has never read Austen, this...\n I liked this movie very much. Although this mo...\n After \"Beau travail\", everybody was waiting fo...\n The TV ads for this movie showed the warlocks ...\n I just happened to stumble to this film and ch...\n A rather charming depiction of European union ...\n (Spoilers)<br /><br />I was very curious to se...\n (Some Spoilers) Sweeping into New York City on...\n Too bad Mike Meyers picked this for his dramat...\n I just watched the movie tonight and i found i...\n spoiler--<br /><br />In 1993, African-American...\n I enjoyed this show, it was on in the uk, but ...\n If the only sex you've ever had is with a farm...\n Snakes on a Train starts as Mexican couple Bru...\n Jean Harlow and Clark Gable were a great on sc...\n I can remember seeing this movie as a kid in 1...\n The influences of other science fiction and th...\n There's nothing worse than renting an Asian mo...\n Ask a thousand people what the greatest uninte...\n In the year 2000 (keep in mind, this is two ye...\n \" I have wrestled with death. It is the most u...\n Based on the 2007 spy novel by David Ignatius,...\n Taking a break from his escapist run in the ea...\n A lot of the comments people have made strike ...\n This movie is just like every other dutch movi...\n I do not know what some of these filmmakers ar...\n One of the more obscure of Anthony Mann's West...\n A great, funny, sweet movie with Morgan Freema...\n THHE2 is entertaining in that you'll laugh a l...\n Are sea side resorts the sad, dreary places th...\n Heart of Darkness was terrible. The novel was ...\n Well, I just discovered that there is a show m...\n To me this was more a wake up call, and realiz...\n I'm a big fan of Thomas Harris,I read all his ...\n This film is another example of the curse of e...\n Adorable! I saw Domestic Import in Philly in O...\n I suppose this is what is called Southern Goth...\n All the Airport movies are stinkers, but this ...\n I think it definitely is. The writing is of su...\n I just watched this film again and remain dism...\n Smallville episode Justice is the best episode...\n This is the second part of 'The Animatrix', a ...\n Dan, the widowed father of three girls, has hi...\n Wolfgang Peterson directs this thriller that h...\n I watched this movie on a big screen a few mon...\n Even though this film was nothing special as s...\n Dire beyond belief. Obviously set on the Isle ...\n Who should watch this film? Anyone who has eve...\n Despite the gravity of the subject and probabl...\n With David Arquette starring you would immedia...\n Just watched it on the Hallmark Channel. I was...\n (This review does not necessarily expose the p...\n This movie is stunningly free from storytellin...\n This film has some rather shocking scenes and ...\n This is one of the most cerebral insightful mo...\n First of all.....<br /><br />What the hell? Wh...\n The skeleton of the story is that the main cha...\n I liked it, i really did. Please don't think t...\n I'm an action movie fan but until today I've n...\n THANK GOD YOU'RE HERE is painful, positively p...\n Horrendous! I'm a teenager and I don't mind te...\n Robert DeNiro plays the most unbelievably inte...\n Halloween is a film I have to get out and watc...\n I've had to change my view on the worst film i...\n The 1967 In Cold Blood was perhaps more like \"...\n This was one of the best shows ever made for T...\n This movie really has no beginning or end. And...\n I realize a period piece is expensive to make,...\n I had no idea of the facts this film presents....\n This is a tedious movie. The real villains are...\n Oh gosh,I'm really fed up with all these gener...\n I saw the movie on its North American premiere...\n OK, here is my personal list of top Nicktoons ...\n The actors did a really good job playing their...\n I read Tom Robbins' EVEN COWGIRLS GET THE BLUE...\n The beginning of this movie is excellent with ...\n Definitely a very good idea,screenplay was jus...\n An excellent cast who do their best with an aw...\n This is one of my favorite films, ever. The st...\n I have seen this movie. This movie is the best...\n I first rented this film many years ago, and w...\n I am not afraid of bad movies. I like bad movi...\n Not a stunner, but a good movie to see once or...\n Me and my friend rented this movie for $2.50. ...\n Most Christmas movies have a \"redemption\" them...\n I decided to watch this because of the recomme...\n Joan Fontaine is \"A Damsel in Distress\" in thi...\n Certain filmmakers can do no wrong in the eyes...\n I found West Point to be an agreeable film, al...\n i love this movie. is it on air anymore? what ...\n I had heard some not too good things about thi...\n I honestly don't know what words IMDB will all...\n It seems Hal Hartley's films are kind of hit o...\n The film begins with a bunch of kids in reform...\n This is a great little film, that's very uniqu...\n All right, there's no way to sugarcoat this. T...\n I wanted to see this movie because I liked \"Ka...\n Firetrap is yet again another bad action film ...\n I have given this film an elevated rating of 2...\n I had to see this on the British Airways plane...\n Everyone in this movie tells Raffy Carruthers ...\n Darius Goes West is a film depicting American ...\n First off, I would like to say that I am a fan...\n Tycus is one of the worst films direct to vide...\n \"Gunga Din\": one of the greatest adventure sto...\n I got this movie for fifty cents at a going ou...\n The Last Command (1928) is a silent film direc...\n This review took longer to write than I took t...\n Out of boredom and vast curiosity, I decided t...\n I do admit that my review is from a 2006 point...\n The Jaws rip off is the trashiest of the all t...\n I would like to say something different about ...\n Hey! The Grudge 2! What up, man? I have a frie...\n The powerhouse cast pulls the crowd in the the...\n I've probably been spoilt by having firstly se...\n I have recently become a huge fan of Patton Os...\n I was actually around 13 years old camping nea...\n This is one of the great movies of all time. T...\n Hi, I have to say you got some wrong informati...\n Sublimity is the way we have to reach for The ...\n this film is wonderful film for students of fi...\n Very bad acting, and a very shallow story. Not...\n I just read an extra long review on the front ...\n I do not watch much television and came across...\n I'm not sure what the point of making this fil...\n I remember watching this on prime time when I ...\n A high school principal (Keenan Wynn) with a l...\n Wow, I love and respect pretty much anything t...\n I was pleasantly surprised with this one. It's...\n While originally reluctant to jump on the band...\n Predictable, gory, over-gimmicky, mediocre. Do...\n An absolutely brilliant film! Jiri Trnka, the ...\n This film is mesmerizing in its beauty and cre...\n Let me start off by saying that this doesn't s...\n I paid attention and enjoyed the very rich exp...\n I was recommended this movie by one of my film...\n In this truly fascinating, dark film, a young ...\n The movie Razor Blade Smile has an interesting...\n With all thats going on in the world sometimes...\n I think it's incredibly hard to write any kind...\n Although there is very little plot and whateve...\n Let's get one thing straight; This was BAD! So...\n Linda Arvidson (as Jennie) and Harry Solter (a...\n Sly Stallone is hardly the finest actor in the...\n HAPPY DAYS was one of my favorite shows when i...\n This has to be one of the worst films of the 1...\n The Hamiltons tells the story of the four Hami...\n This show can most accurately be described as ...\n B.B. Thornton proves to be a great actor in th...\n When I went and saw this movie, I had great ex...\n This is by far the worst Hemingway adaptation ...\n 666: The Child starts as a plane crashes, the ...\n Arnold fans will holler in joy, fans of brainl...\n Having only seen five episodes of the show bef...\n When i started watching \"Surface\"for the first...\n \"Think like a Dinosaur\" was an well-produced &...\n Now all the kids and teenagers of Springwood, ...\n Mary Pickford becomes the chieftain of a Scott...\n Swayze doesn't make a very convincing Alan Qua...\n Algiers is not a classic, it is a perversion o...\n I like vampire movies, I like B-movies, I love...\n Even though i sat and watched the whole thing,...\n This movie was to me a fairly enjoyable watch,...\n If you haven't read Tolkien's masterpiece; pre...\n \"The Crush\" is a pleasant enough 40-something ...\n This documentary follows the lives of Big and ...\n The last film of John Huston, the great Americ...\n The Comebacks is a spoof on inspirational spor...\n Given the history of the director of this movi...\n Don't get me wrong. I really love the \"arena-m...\n Its really been a long time since the last tim...\n What's the point? Hasn't this been done before...\n This is absolutely awful. It's everywhere & no...\n Starring Tomas Milian and Manny Perez  'Washi...\n \"The Brak Show \" is good .Probably not in the ...\n PLAN B has the appearance of a quickly made, u...\n Strained comedy, a sketch-like revue which was...\n \"on our own\" is a touching story of four kids ...\n Manna From Heaven is a light comedy that uses ...\n I had several problems with the movie: <br /><...\n Allow me to start this review by saying this: ...\n A blackly comic tale of a down-trodden priest,...\n Terrible acting, terrible script, wholly unrea...\n I saw this picture in 1940 for $.11 and I woul...\n I absolutely love this movie. I just managed t...\n Non-stop action and just about every conceivab...\n OK, I wanted to see this because it had a few ...\n Poor Paul Mercurio. After landing the role of ...\n Well, I AM \"the target market\" & I loved it. F...\n I had never read any of Sarah Waters' novels, ...\n If you enjoyed the TV Series, Diagnosis Murder...\n I like the film, it´s the best pirate-movie I ...\n This is one of those movies that should have b...\n Canthony is correct that this little short is ...\n The St. Francisville Experiment claims \"this a...\n If this film was a comedy, I would have given ...\n Director Nico Mastorakis has made a cynical ca...\n What happens to washed up rock-n-roll stars in...\n The Egyptian Movies has A Lot Of Filmes With H...\n L'OSSESSA, also known as THE TORMENTED or THE ...\n Kurt Russell IS Elvis, plain and simple. His d...\n <br /><br />Won't be long on this movie. The f...\n Of course, he did have to INVENT EVERYTHING ab...\n The movie that would be included if Mystery Sc...\n I had been very curious to see the original si...\n I was initially interested in this film after ...\n Having lived in Michigan's Upper Peninsula (30...\n I truly wish I was not writing this review. I'...\n There are good-bad movies and bad-bad-movies a...\n The championship game is only a couple of days...\n so, i won't disagree with the critics but I re...\n This story starts at the end ! So the film's o...\n I think cheaters needs to be off the air and e...\n I'm gonna tip the scales here a bit and say I ...\n The film notes describe the main role family, ...\n John Pressman (Micheal 'I shoulda called Ditec...\n This wonderfully witty comedy-drama wowed the ...\n Have you ever wondered what its like to feel F...\n The story of a drifter, his sheep ranch boss, ...\n Ross Hunter's musical remake of the 1937 fanta...\n This sword-&-sorcery story of an appallingly b...\n This juvenile, bland flick is strictly for tee...\n When I was 13 or so I was lucky enough to find...\n Seriously Reality Charity TV These producers m...\n This is crap....utter crap. I cannot believe a...\n This is a difficult movie to watch, and would ...\n I cannot believe this woodenly written and dir...\n I liked Chiba in Street Fighter, and I figured...\n It was probably watching this TV movie that go...\n Well, what can you say about sitcoms. There of...\n This movie is proof that film noire is an endu...\n Mahatma has been depicted as a man who neglect...\n This film simply has no redeeming features. Th...\n Just another film that exploits gratuitous fro...\n Life is really too short for movies like this....\n I thought this movie was hysterical. I have wa...\n I never expect a film adaptation to follow too...\n It seems that the intention of the film was to...\n Quite frankly it seemed like seven hours of bo...\n Poor second-string feature from Universal Pict...\n Jamie Foxx leads a brilliant cast in this powe...\n From the What Was She Thinking? file: Whoopi G...\n This film deserves another bad review. Conside...\n I am appalled to see that so many people have ...\n With part reconstruction and part direct shoot...\n This is a generally nice film, with good story...\n I don't understand why everyone hates this mov...\n After 'Aakrosh' , this was the second film for...\n I will spend a few days dedicated to Ron Howar...\n Excellent story-telling and cinematography. Po...\n Chilly, alienating adaptation of Rebecca West'...\n As a big fan of Brian Yuzna and the majority o...\n if you are dating a girl that is into wicca!<b...\n If you can stomach the campiness, this movie s...\n I can see little girls enjoying this show, but...\n The only reason to see this movie is for a bri...\n The movie may be great. I just watched it last...\n But the fun is in the journey.<br /><br />I fo...\n This is one incredibly standard western, that ...\n The undoubted highlight of this movie is Peter...\n Quite honestly, The Omega Code is the worst mo...\n What can I say about it?It's another Hollywood...\n Being advertised as the most expensive movie e...\n There are some things I will never understand;...\n I commend pictures that try something differen...\n Okay, let's not get confused here. If this is ...\n This movie commits what I would call an emotio...\n With the death of GEORGE NADER, on 4 February ...\n Anna Kokkinos' success with' Head On' now begi...\n This is a quiet movie. It's a simple story abo...\n STAR RATING: ***** Saturday Night **** Friday ...\n This has got to be one of the worst fillums I'...\n François Truffaut, Young Jerk of the \"Cahiers ...\n Peter Falk is a diverse and accomplished actor...\n I was very impressed with this film. I would h...\n Well, this movie shows us that Mark Griffiths ...\n I know everyone said this movie was utter crap...\n The evil Professor Moriarty plots to gain cont...\n eXistenZ is an exploration of reality and virt...\n Chaplin is a doughboy in his final film of 191...\n This movie was a fantastic comedy. It had a lo...\n This was by far the worst low budget horror mo...\n My spouse & I found this movie to be very schl...\n ccmovieman-1 must be, as the reviewer in the N...\n I do not find this show at all funny. I actual...\n Karl Jr and his dad are now running an army on...\n I like films that don't provide the typical \"h...\n Here is another low quality movie from the \"Di...\n This is one of the best Hong Kong (action) fil...\n While some scenes of training were realistic, ...\n A middle aged man, Robert Jordan, set in his w...\n Here's the good news first. \"Spirit\" is the mo...\n Very shortly: a bad film. If you are looking f...\n I love buying those cheap, lousy DVD's from Al...\n \"FULL HOUSE,\" in my opinion, is an absolute AB...\n I loved this film, which I have just seen at t...\n As serials go \"Zorro's Fighting Legion\" is one...\n This is one of the worst movies I have ever se...\n This wonderful little film has all of the elem...\n In 1948 this was my all-time favorite movie. B...\n In the DVD era, you would think you could find...\n Love and human remains directed by Denys Arcan...\n I cannot understand why this 1971 Hollywood pr...\n I've read some grumbles about the court scenes...\n I just watched the DVD of this award winning f...\n This game was one of the main reasons I actual...\n I just saw this film on Turner Classic Movies ...\n In all the comments praising or damning Dalton...\n I spent almost two hours watching a movie that...\n The premise is simple. This movies starts out ...\n I gave this loooooooooooong film a \"2\" because...\n Yes its an art... to successfully make a slow ...\n I used to love watching \"Sabrina, the Teenage ...\n I find myself alarmed that people are not so c...\n For a while I was caught in the trap where I f...\n After watching this movie, I felt as if I had ...\n Ah, the infamous \"Guinea Pig\" series...I hones...\n Let's cut to the chase: If you're a baby-boome...\n I would have liked to write about the story, b...\n I have watched two episodes so far, I really l...\n I felt asleep, watching it!!! (and I had ticke...\n I first saw this film when I was about 6 ish -...\n Man I must say when I saw the trailer I was ex...\n Upon writing this review I have difficulty try...\n A powerful debut film from Murali K. Thalluri ...\n This is a great game! Okay perhaps it didn't h...\n House of Games is spell binding. It's so nice ...\n This is one of those movies - like Dave, Ameri...\n This one is quite a nice surprise. Cute little...\n This thrown together piece of fecal matter add...\n I thought this film would be a lot better then...\n Very much a film from the times -- extremely l...\n The writers and creators of this film should a...\n What a waste of a great cast. Figured I'd chec...\n I stumbled across this (Act-I) by pure dumb lu...\n ROCK STAR is a well-told Hollywood-style rendi...\n This movie starts presenting a somehow origina...\n Admirably odd, though mean-spirited comedy-dra...\n The film is annoying.<br /><br />Technically, ...\n this show just sucks. i don't think i even nee...\n at the story. It is reality mixed with America...\n This movie is at times a wild 80s college sex ...\n This was absolutely one of the best movies I'v...\n A few bratty kids unwittingly unleash an evil ...\n What more can I say? The acting was, almost wi...\n The entire thing is very beautiful to look at....\n This was on the Saturday before Halloween this...\n Expectations were somewhat high for me when I ...\n I liked this film very much, as I liked before...\n CRYSTAL VOYAGER is a strange documentary about...\n Have seen this movie today. Very disappointed ...\n It's been a long time since I have been in the...\n I really don't know why I'm writting this. I t...\n Nothing new is this tired serio-comedy that wa...\n A low-rent, cheaply made police thriller that'...\n Anyone who has seen Ali G before, should be we...\n London Dreams, directed by Vipul Shah, is a fr...\n Writer-director Patrice Leconte takes a univer...\n Walerian Borowczyks La Bete (1975) was obvious...\n How does this movie suck? As a fan of Michael ...\n I thought this film was quite good and quite e...\n This movie was recommended to me by several pe...\n When I heard Patrick Swayze was finally return...\n When i got this movie free from my job, along ...\n El Padrino has just been released in Europe an...\n Wow... I mean WOW this has got to be one of th...\n Jimmy Wang Yu, an authentic Asian superstar, d...\n It's hard to rate films like this, because do ...\n I saw this movie when I was a kid and have bee...\n \"My Blue Heaven\" is boring. The plot is insipi...\n One of the best war films I have ever seen, if...\n Okay it is terribly, and I mean terribly, easy...\n I just watched this movie, by mistake. What a ...\n In the future of 1985, a governmental committe...\n Hey; Belmondo! Look there's Anna Karina! Great...\n LATTER DAYS <br /><br />Aspect ratio: 1.85:1<b...\n One of the lamer wedding movies you'll see. Sm...\n What was the purpose of this film? I suggest i...\n Cecil B. deMille's 1922 parlor-to-prison tearj...\n This seems like two films: one a dreary, prete...\n Before I start...let me say that I fully belie...\n This snarky, homophobic thing was dated in 197...\n A meteor hit's Crater Lake (hence our title), ...\n Two women, sick of their controlling husbands,...\n Larry Donner (Billy Crystal) has a crazy life:...\n Well, if you like pop/punk, punk, ska, and a t...\n This film was on late at night when I saw it. ...\n If you want to be cynical and pedantic you cou...\n I am not a footie fan by any means but watched...\n A flesh-eating octopus, where does that guy Bo...\n An extra is called upon to play a general in a...\n I saw not so fabulous rating on IMDb, but I we...\n I shouldn't even review this movie, since it's...\n Yeah, I'm sure it really could be a nation . ....\n This show is like watching someone who is in t...\n Very dull show. Whats worse, its very racist. ...\n Well i am going to go against the grain on thi...\n I haven't reviewed on IMDb before but this doc...\n I will start by saying that this has undeserve...\n For those who'd like to see this movie? I'd sa...\n This really is a cringe making exercise. Dress...\n \"A Guy Thing\" tries to capture the feeling of ...\n Just saw ICE AGE, a very funny and especially ...\n I can't believe that in the 34 prior comments,...\n I am amazed at how this movie(and most others ...\n I watched this film mistakenly thinking that i...\n Look, this movie is obscure, brilliant, and a ...\n **** SPOILERS THROUGHOUT **** This is a very s...\n I went into this film expecting it to be simil...\n We all know that countless duds have graced th...\n It is not always certain that by mixing comedi...\n The Dukes of Hazzard will academy awards!! Bes...\n This movie is one of the worst movies I have e...\n Well executed old and very dark house horror. ...\n That's what I felt like yelling as well as sto...\n Laughs, adventure, a good time, a killer sound...\n As an ex (nuclear) submarine officer I must ad...\n Before films like 'The Texas Chainsaw Massacre...\n I need to be honest. I watched and enjoy this ...\n I can't understand why they decided to release...\n Despite some mildly thought-provoking oddities...\n Any movie in which Brooke Shields out-acts a F...\n \"Sasquatch Hunters\" actually wasn't as bad as ...\n Really a terrible movie. It's to be expected, ...\n The movie is very lengthy and unfortunately pr...\n This movie had potential. If it had been handl...\n Those childhood memories...when things were ne...\n on this quagmire of mediocrity? You are SO muc...\n The only reason I wanted to see this was becau...\n The Dirty Harry series began with very gritty ...\n I saw this movie with a bunch of friends and a...\n When A Killer Calls has got to be the biggest ...\n PRICE OF HONOR aka PRICE OF POWER is an ambiti...\n Interesting tale of giant mammoth elephants ru...\n The movie adaptation of Heart of Darkness is d...\n The question is, can a movie this entertaining...\n This was far and away the worst movie i've eve...\n Sherlock Holmes (Basil Rathbone) and Dr. Watso...\n It's a shame that they didn't trust the origin...\n Honestly, on the subject of the death penalty,...\n The alternate title of Ecstasy, is Symphony of...\n The Jungle is more of an adventure than a scie...\n Pretty decent for his early work and no Kokaku...\n Three part \"horror\" film with some guy in a bo...\n Blade Runner (Deckard is a Replicant!), <br />...\n Before the days of home video, Stan Laurel's p...\n Yes, the votes are in. This film may very well...\n .... this movie basks too much in its own inno...\n Clearly patterned after the first gangster mov...\n The Stunts sequences (as well as the Special E...\n Sure, if you ask any mom who's the most beauti...\n For years i've had a distant memory of watchin...\n Billy Crystal is Larry, a writer who hasn't wr...\n I put in the DVD expecting camp perversion fro...\n I was mad anyone made this movie. I was even m...\n I found it highly interesting that the film ac...\n This film by Friðrik Þór, director of Children...\n May and her husband go to visit their children...\n There are two kinds of characters on THE SHIEL...\n This is 2009 and this way underrated gem has l...\n It's got Christopher Lee, it's got huge banks ...\n Strangeland is a terrible horror/technological...\n \"Based on a joke once told by Jim Wynorski\"......\n This is definitely one of the better documenta...\n This movie was the biggest piece of garbage I'...\n Spoiler Alert <br /><br />I have never seen co...\n This was a very entertaining movie and I reall...\n When this film was released in 1997 the 'speci...\n definitely the best game for N64 ever. I most ...\n I was so disappointed in this movie. I am very...\n I happen to be the director's nephew. It's tak...\n Dryly irreverent, but sadly unfunny satire of ...\n So...we get so see added footage of Brando...i...\n While in one country, Spain, Luis Bunuel and S...\n It must be a long time ago that I have seen su...\n Surprised to see the rather low score for this...\n Spoiler This movie is about such a concept. Wi...\n In NYC, seaman Michael O'Hara (Orson Welles) r...\n The Great Dictator is a beyond-excellent film....\n Amazing documentary. Saw it on original airdat...\n Consistency is perhaps this movie its biggest ...\n 10 ITEMS OR LESS is one of those 'under the ra...\n I love musicals, all of them, from joyous Okla...\n I remember seeing this film years ago on, I th...\n A truly masterful piece of filmmaking. It mana...\n Terrible. There's no way to get around it. A s...\n Take a few dark and stormy nights, fog coming ...\n I enjoyed the beautiful scenery in this movie ...\n *********Ten out of Ten Stars********* <br /><...\n This film was total rubbish. I was sitting wat...\n Lady and the Tramp II: Scamp's Adventure is a ...\n I saw this film before two weeks. It's kitsch,...\n There have been countless talking-animal films...\n A quick resumé: Almost nonexistent, badly chos...\n Let me say this new He-Man cartoon is not dest...\n I grew up on this classic western series, and ...\n \"Jake Speed\" is a fine movie with a wonderful ...\n Not bad performances. Whoopi plays the wise/wa...\n The premise is a bit better than the execution...\n Hilarious and low-budget comedy at it's best. ...\n If you have ever seen a Bollywood movie, you k...\n A spaceship returns from Mars; about a couple ...\n Having first read the novel, I don't mind,for ...\n \" It had to be You\" is another sign that Holly...\n Helen (Kate Capshaw) owns a bookstore in the s...\n FORGET CREDIBILITY<br /><br />You must not exp...\n This film is about a Japanese woman who has an...\n This movie was absolutely ghastly! I cannot fa...\n I have copied my video of this on to DVD so th...\n I almost laughed out loud when during the comm...\n It's unfortunate that you can't go any lower t...\n This movie was OK, as far as movies go. It cou...\n I was so disappointed by this show. After hear...\n This was talked about to death by the critics ...\n Two things haunt you throughout L'intrus (The ...\n Easily Lucio Fulci's most respected film, \"Don...\n It is way beyond me how this script was ever s...\n Contrary to some people's summaries, the women...\n This is absolutely the best none-animated fami...\n I went to a small advance screening of this mo...\n A true masterpiece by Sorrentino and Tony Serv...\n When Patricia Newell is attacked after witness...\n First of all, as a long time student of the Ti...\n I've said this in other reviews, without a sto...\n an acted/manipulated documentary about one of ...\n I'm giving ten out of ten it's one of the best...\n My daughter liked it but I was aghast, that a ...\n Perhaps I couldn't find the DVD menu selection...\n John Leguizamo's \"Freak\" is one of the funnies...\n The filmmakers were clearly on drugs. That's t...\n I had high hopes for this film, even though I ...\n Clint Eastwood has definitely produced better ...\n This seemed to be a lackluster film to me that...\n This is the most difficult movie I have ever s...\n Sometimes, when seeking a movie nothing will d...\n Firstly,I must admit that it isn't a good movi...\n Fame, I think, was the best movie that I have ...\n As you can tell from the other comments, this ...\n A few summer space campers actually were accid...\n Abu, THE THIEF OF BAGDAD, helps King Ahmed reg...\n I'm no big fan of Martial Arts movies, but the...\n \"What Alice Found\" was a pleasant discovery. A...\n As some other comments show, this movie might ...\n Director Mikhail Kalatozov's film The Cranes a...\n Few movies have dashed expectations and upset ...\n This film, although not totally bad, should ha...\n Somebody called Howard Koch a schlockmeister b...\n Arthur is middle aged rich 'kid' who drinks li...\n this movie is such a moving, amazing piece of ...\n Poor Will would be rolling over in his grave i...\n I have read almost all the books by now, and h...\n This film is so bad, you can't imagine. The ac...\n The Dentist was made on the time when almost e...\n Wow. As soon as I saw this movie's cover, I im...\n Man, if anyone was expecting a great zombie mo...\n Fully deserving its prestigious Hollywood awar...\n I think not! I mean yeah if you compare this f...\n Here's what I knew about \"Atlantis\" before wat...\n This is a true gem of a TV film. Based on a co...\n Aubrey Davis (Amber Tamblyn) travels to Tokyo ...\n Perhaps it's just the format of this film, a d...\n B Movie? Yes. DIY? Yes. First Movie? Yes. But ...\n No one said that in \"The Big Trail\" and I thou...\n Certainly this proves beyond a shadow of doubt...\n If you are looking for a cinematic masterpiece...\n I was into the movie right away. I've seen the...\n I have been a fan of Without A Trace from the ...\n Strangely erotic schlock Gothic horror that wi...\n Unfortunately House of D is just awful, with a...\n Here it is.. the first EVER episode of Friends...\n The precise text of an ad (except the word Chi...\n It kept me on the edge of my seat. True, the s...\n This is a romantic comedy with the emphasis on...\n Im going to keep this fairly brief as to not s...\n I cannot believe I let myself rent that piece ...\n I got this movie in a bargain bin, hoping for ...\n Dr. Mordrid, what can I say? Jeffrey Combs has...\n Wow. Some movies just leave me speechless. Thi...\n There is a lot wrong with this movie. It can b...\n this is best showing of what i think jesus rea...\n I hate to be the one to rain on a parade (even...\n This is very nearly a perfect film. The ideas ...\n Don't waste time reading my review. Go out and...\n It reaches the minds and feelings of everyone ...\n I get to the cinema every week or so, and regu...\n Surely the best film directed by Claude Lelouc...\n I'll dispense with the obvious review of factu...\n With Al Jolson at the height of his popularity...\n Too many secondary plot lines without a primar...\n This is a solid underrated little thriller, th...\n First lesson that some film makers (particular...\n For your own good, it would be best to disrega...\n I've seen the movie only recently, although it...\n This movie is very difficult to understand, wh...\n This is an old-dark-house movie. A young coupl...\n I couldn't disagree more with those who says t...\n Fata Morgana is, by far, one of the weirdest a...\n I saw this movie the day it opened in NYC, at ...\n Many questions arise about the making of this ...\n This is one of the best musicals of the 1940s....\n I really wish i could give this a negative vot...\n In the first twenty minutes we are swept away ...\n I own this movie. And it is terribly hard to f...\n This Cannon Movie Tale is the worst of the lot...\n I saw it last night on TV, and was quite delig...\n Charlie Wilson (Two time Oscar-Winner:Tom Hank...\n I thought that this movie was going to be tota...\n Daffy Duck has signs hanging from every inch o...\n The costumes and make-up were grand, there wer...\n This is one of those movies that you keep thin...\n David Duchovny and Michelle Forbes play a youn...\n I rented The Matrix Revisited with a friend of...\n I was pleasantly surprised to find a very enjo...\n This early John Wayne Lone Star western has a ...\n I love watching Jerry as much as the rest of t...\n A great gangster film.Sam Mendes has directed ...\n This is a story of two dogs and a cat looking ...\n I enjoyed THE MUPPET MOVIE very much. It was t...\n I just watched the DVD version of BORN BAD and...\n I loved this movie, I'll admit it. This has to...\n This movie is very entertaining and is never e...\n Sex Lives of the Potato Men is about the sex l...\n This is Clive Barker's masterpiece in my opini...\n That's how I'd sum it up! There were other who...\n When I first started watching this anime I nev...\n Watching ALIEN EXPRESS inspired feelings of aw...\n Del - \"You are the dumbest smart person I've e...\n I just saw this film and I recommend it. It ha...\n It comes as no surprise that Larisa Shepitko w...\n Normally, I do not review online, but it's Sat...\n Released on DVD in the UK as Axe, The Choke is...\n I'll just be vague about my potential spoiling...\n As bad as this movie is, I really like it. The...\n \"The Charge at Feather River\" is a routine Wes...\n This is such a beautiful movie! Not only does ...\n Director Samuel Fuller concocts a brilliant vi...\n I read some previous comments stating that thi...\n Yes, about the only thing this film is memorab...\n This is the first Woody Allen film I've found ...\n When I first heard that Jack Black and Kyle Ga...\n If I had to pick the most depressing movie, tr...\n When you have waited years to see a film that ...\n This move is absolutely, most certainly one of...\n I left the theater, and I was only 10 years ol...\n The movie Titanic makes it much more then just...\n Night Hunter starts in '1968' as a young Jack ...\n This is the type of film that may need to be v...\n A stunningly harrowing account of two soldiers...\n Time has not been kind to this movie. Once con...\n The story of the bride fair is an amusing and ...\n Many of the criticisms on this thread seem to ...\n Michael Polish's hypnotic \"Northfork\" is a fil...\n A really realistic, sensible movie by Ramgopal...\n Marvin(Rob Schneider)does not have the ingredi...\n Please, help the economy - spend your money el...\n This is one of those religious horror films wh...\n Walker Texas Ranger is one of the worst shows ...\n I gave this 8 stars out of a possible 10. It h...\n A tough sell: British playwright Ronald Harwoo...\n Disappointing musical version of Margaret Land...\n When our local TV station first launched, it f...\n I'm still trying to figure out if there was a ...\n Macbeth is one of the most frequently told sto...\n Am I wrong,or is the 2007 version just a rip-o...\n 1. I've seen Branaghs Hamlet: Branagh is too o...\n As the film opens, two thugs kill another thug...\n I am Anthony Park, Glenn Park is my father. Fi...\n <br /><br />The author tried to make a Kevin S...\n The worst ever Korean movie! The plot is ridic...\n Actor turned director Liev Schreiber (The Sum ...\n When I saw this film, it reminded me of all th...\n Having set the sitcom world alight with 'Fathe...\n A mess of genres but it's mainly based on Step...\n I was interested in the topic, and only fans o...\n Not worth the video rental or the time or the ...\n Not only did they get the characters all wrong...\n A study in bad. Bad acting, bad music, bad scr...\n I was expecting a movie similar to Deuce Bigal...\n What a night. Perry Mason then Have Gun, Will ...\n Recently was traveling in Norway from Bergen, ...\n When I first saw this film it was not an impre...\n The game was made in 1996, but it is still goo...\n This movie is something horrible. I was laughi...\n This movie is the perfect illustration of how ...\n This was a crappy, miserably acted movie based...\n When people say children are annoying u think ...\n I'm not sure who should be blamed for this deb...\n This is a spin off of Pulp Fiction. I thought ...\n I just don't understand why anytime someone do...\n I was forced to watch this whole series of fil...\n There are no spoilers in this review. There's ...\n the fact that there was so much fuss is ironic...\n I cant understand at all why so many Godzilla ...\n Kim Basinger stars as Della, a desperate house...\n Redo the Oscars from 1992, and this film might...\n Watched this film having really enjoyed Gregor...\n I was so looking forward to seeing this when i...\n To identify this movie as a vampire movie woul...\n I think if you were to ask most JW's whether t...\n This movie literally had me rolling on the flo...\n I voted 8 for this movie because of some minor...\n Anyone who is a sucker for 1920s jazz, 1920s d...\n Rutger Hauer helps along a film that basically...\n Passionate, dramatic, riveting as Flamenco its...\n This movie was released by Roger Corman, so yo...\n Lensman is a rather lesser-known Anime gem fro...\n Three words: Piece of Art. This film is just g...\n This movie was worth five punches on my \"hurte...\n Excellent performance. There still are good ac...\n No wonder this movie never saw the light of da...\n *** SPOILERS *** <br /><br />this movie always...\n Another period piece for Chen Kiage... (can't ...\n Fantastic Russian WWII movie. Like most Russia...\n I am writing this review simply because I am a...\n Okay, 'enjoy' is a pretty relative term, but f...\n I will admit that I have seen maybe five minut...\n Typical story of an evil kid going after peopl...\n Robert Standish's novel is about a triangular ...\n Hammer House of Horror: Witching Time is set i...\n Although a tear jerker it is definitely a \"fee...\n I'd have given this film a few stars, simply b...\n I don't what that other review was talking abo...\n This motion picture has a steady, haunting pac...\n Here is an innovative television drama; which ...\n I taped this on Sundance and had no idea that ...\n This is a very cool movie. The ending of the m...\n Simon Pegg plays the part of Sidney Young, a y...\n This movie has successfully proved what we all...\n I had never even heard of ONE DARK NIGHT until...\n Face it, folks-- \"DK3\" is more challenging, in...\n Unlike Terms of Endearment and Steel Magnolia'...\n Curl up with this one on a dark and stormy nig...\n Tony Hawk's Pro Skater 2x, isn't much differen...\n Having majored in Western History when I was a...\n I am giving this pretentious piece of garbage ...\n Plot Synopsis: Los Angeles in the future. Crim...\n In terms of visual beauty this movie is outsta...\n I mistakenly thought this was the 70's art fil...\n Nothing could have saved this movie, not even ...\n Viggo Mortensen stars as a new inmate of a hau...\n This 1998 film was based on a script by the la...\n This is a thinking man's silly movie. If you d...\n *Possible Spoiler*<br /><br />'Return to Cabin...\n One of eastwood's best movies after he had sep...\n I really liked this film. All three stars(Conn...\n This movie was by far the worst movie I've eve...\n I really love this movie, saw it again last we...\n I for one was actually expecting this movie to...\n We all know that the world is full of dodgy, r...\n This film is awful. The CGI is the very cheap ...\n A warmly sentimental tale from the author of T...\n Kokoda was inspired by events on the Kokoda tr...\n Recap: Ron is about to marry Mel. They are dee...\n In this strangely-lackadaisical apocalypse, th...\n I love this show. Period. I haven't been watch...\n A delightful and wonderful film, which has ent...\n Prepare to meet your Messiah - they call him M...\n i have now seen the whole of season one and ca...\n \"Beowulf\" is like a very bad game : no charact...\n \"Flesh\" is hard to describe with a solid summa...\n This without doubt one of the funniest and mos...\n ^^contains spoilers^^<br /><br />This movie is...\n This movie is such a waste of talented people ...\n This film has to be the worst I have ever seen...\n I've often heard people express disappointment...\n ...and Ethel Merman buffs, too, will love her ...\n Follows the usual formula in putting a new rec...\n I managed to obtain an original BBC broadcast ...\n Rock star John Norman Howard (Kris Kristoffers...\n Just Cause is one of those films that at first...\n There is somewhere in here the makings of a de...\n Domestic Import was a great movie. I laughed t...\n This a Casper the Friendly Ghost short from my...\n THE 40 YEAR-OLD VIRGIN (2005) **** Steve Carel...\n * Some spoilers *<br /><br />This movie is som...\n It's a pretty good cast, but the film has nowh...\n I went into a Video Store and looked around to...\n Another example of the unique talents of Cary ...\n Spoken like a true hard-boiled u'an gangsta. T...\n The actors & actresses on this series are OK, ...\n Pretty bad PRC cheapie which I rarely bother t...\n Talk about rubbish! I can't think of one good ...\n Dr. Lucio Fulci (Lucio Fulci) is a director of...\n Yes I admit I cried during this movie. It was ...\n I've bought certain films on disc even though ...\n The final pairing of Nelson Eddy and Jeanette ...\n I watch romantic comedies with some hesitation...\n I usually check out the MTV movie awards to wa...\n I just saw this film at the phoenix film festi...\n This is still the benchmark to judge all Golde...\n This is easily the worst movie i have EVER see...\n During a Kurt Weill celebration in Brooklyn, W...\n \"Admissions\" is a fine drama even though they'...\n The movie started very well..so far Isabelle's...\n Now let me tell you about this movie, this mov...\n it's a good watch if u have time - deals with ...\n I never saw this movie until I bought the tape...\n In 1904 Tangier, a wealthy American woman and ...\n OK Hollywood is not liberal.<br /><br />Obviou...\n This is the result of the town of Milpitas Cal...\n Also known in a different form as \"House of Ex...\n It was (foolishly) with some degree of relish ...\n I wouldn't exactly call this a good movie, in ...\n This show lasted for most of the 1980s, and ha...\n I'm very interested in the overwhelmingly posi...\n Ghost of Dragstrip Hollow is a typical 1950's ...\n this movie has no plot, no character developme...\n Did Uwe Boll seriously just rip off the basic ...\n The movie wasn't all that great. The book is b...\n Here we have 2 misunderstood kids who never st...\n This project was originally conceived as the m...\n Not a bad MOW. I was expecting another film ba...\n Actually had to stop it. Don't get me wrong, l...\n To be honest at the time i first heard of this...\n I could not stand the woman who played the mot...\n I'll say one thing for Jeanette and Nelson--ev...\n I'm a big fan of Westerns but this one.... whe...\n Another entry in the \"holiday horror\" category...\n Most of the positive comments posted here are ...\n This is another example of a sucky sequel to a...\n A long-defunct prison, shut down for over 20 y...\n What an unusual movie.<br /><br />Absolutely n...\n This is an important historical film since it ...\n Well as you can see, I got to this party quite...\n Don't forget the lover on the side!! She is a ...\n Being a huge fan of Conte d'ete ( http://www.i...\n When you watch low budget horror movies as muc...\n To date this is still the worst piece of rubbi...\n ...then they will have a proper place to file ...\n Hayao Miyazaki has captured the imagination of...\n Another fantastic film from a country, where d...\n I'm surprised how many people give this move l...\n Uta Hagen's \"Respect for Acting\" is the standa...\n This is the first must see film I've seen in t...\n This is a really silly job of miscasting--abou...\n It's just that. Chucky 1 was good. Chucky 2 wa...\n If it smells like garbage and if it looks like...\n TDY is probably the single worst piece of tras...\n This comes close to the worst movie I've ever ...\n What a silly movie. While it looks nice, it do...\n The movie only enter the cinema in Indonesia t...\n I cannot believe I sat through this utter wast...\n I'm not sure why there are no articles or post...\n Some wonder why there weren't anymore Mrs. Mur...\n I can clearly see now why Robin Hood flopped q...\n The director of this movie is a famous french ...\n Anyone who actually had the ability to sit thr...\n I've been trying to remember the name of this ...\n The two new OSS 117 movies has a kind of humor...\n This was a well written tale of the Making of ...\n I approached this film with low expectations b...\n I was dying to see this once I saw the ridicul...\n Family Guy has to be my all time favorite cart...\n This was a marvelously funny comedy with a gre...\n There is no plot. There are no central charact...\n This show is awesome! I love all the actors! I...\n The fact that this movie has been entitled to ...\n I have to confess that I am severely disappoin...\n First off I want to say that I lean liberal on...\n I was excited to see a sitcom that would hopef...\n When you look at the cover and read stuff abou...\n Like many others, I counted on the appearance ...\n This movie was on t.v the other day, and I did...\n Hickory Dickory Dock was a good Poirot mystery...\n \"One Crazy Summer\" is the funniest, craziest (...\n Low-budget schlockmeister Herschell Gordon Lew...\n this was absolutely the most tragic pile of ci...\n I have never understood the appeal of this sho...\n \"Mr. Bug Goes To Town\" was the last major achi...\n This is one of my two or three favorite Stooge...\n This is supposed to be based on Wilkie Collins...\n Of all the British imperialist movies like Fou...\n James Cagney, racketeer and political ward hee...\n I loved this film. Not being a swooning Ed Woo...\n Having already seen the original \"Jack Frost\",...\n I had been subjected to this movie for a relat...\n This movie is stuffed full of stock Horror mov...\n There are times when finishing a film one wish...\n Another film to punish us for the crime of enj...\n When the Romulans come, they will not be beari...\n This was a movie that I had heard about all my...\n Let me begin by saying that there is no bigger...\n I wasn't really interested in seeing Step Up, ...\n I haven't seen BSG, I tried to watch it once i...\n Well, it turned out as I expected: visual over...\n Cooley High was actually a drama with moments ...\n This is a great movie for any fan of Hong Kong...\n I'm trying to understand what people liked abo...\n Loved the film! This was my first glimpse at b...\n Over Christmas break, a group of college frien...\n \"The Mayor Of Hell\" has the feel of an early D...\n This two-part TV mini-series isn't as good as ...\n The pilot is extremely well done. It lays out ...\n This miserable film is a remake of a 1927 film...\n I have to start off by apologizing because I t...\n This is Burt Reynolds'\"Citizen Kane\".Tragicall...\n Without a doubt, one of Tobe Hoppor's best! Ep...\n This must rank as one of Cinema's greatest deb...\n This anime is a must-see for fans of Evangelio...\n Don't see this movie. Bad acting and stupid go...\n I haven't any idea how commentators could rega...\n Office work, especially in this era of compute...\n This film was not only one of John Ford's own ...\n This familiar story of an older man/younger wo...\n I have to admit, that out of the many many thr...\n Andy Lau and Lau Ching-Wan are both superb in ...\n It Could Have Been A Marvelous Story Based On ...\n \"Speck\" was apparently intended to be a biopic...\n Fast-paced, funny, sexy, and spectacular. Cagn...\n as an actor I really like independent films bu...\n As much as I love Ellen Barkin (who is really ...\n While William Shater can always make me smile ...\n There seems to be an overwhelming response to ...\n Everyone likes the coolly created, memorable h...\n \"Quai des Orfevres\", directed by the brilliant...\n I admit I had some trepidation when I first sa...\n Once big action star who fell off the face of ...\n This film is just a shame. Orlando, Florida se...\n Brian Keith as Cole Wlikerson and Richard Jaec...\n You can find an anti-war statement here withou...\n Comedy Central has a habit of putting on great...\n Anyone who complains about Peter Jackson makin...\n This is pretty much a low-budget, made for TV,...\n This show seemed to be kinda good. Kyra Sedgwi...\n Had the League been unknowns pitching this scr...\n I am a huge fan of the comic book series, but ...\n Ride With The Devil directed by Ang Lee(Crouch...\n What could've been a great film about the late...\n Elisha Cuthbert plays Sue a fourteen year old ...\n I actually had seen the last parts of this mov...\n Woman with wig, who \"dyes\" her hair in the mid...\n It was 1974 and it starred Martin Sheen.<br />...\n I guess every time I see one of these old movi...\n Diane Keaton has played a few \"heavy\" parts in...\n The success of SCREAM gave birth to a whole ne...\n Despite unfortunately thinking itself to be (a...\n \"Shadrach\" was not my favorite type of movie. ...\n First things first! This isn't an action movie...\n In my review just submitted I referred to the ...\n I went to see this movie today, with hopes tha...\n The only previous Gordon film I had watched wa...\n This is a very dark movie, somewhat better tha...\n Based on the true story about Christopher Boyc...\n Many things become clear when watching this fi...\n I thought this movie was highly underrated. Th...\n I found this early talkie difficult to watch a...\n The good thing about this film is that it stan...\n Cutting to the chase: This is one of the most ...\n This is definitely one of the better Mel Brook...\n Still a sucker for Pyun's esthetic sense, I li...\n This is a beautiful film. The true tale of bon...\n turned out to be another failed attempt by the...\n It's quite simple that those who call this mov...\n Interesting story and sympathetic treatment of...\n This movie is my all time favorite movie! It h...\n I found this film embarrassing to watch. I fel...\n this took me back to my childhood in the 1950 ...\n This film suffers horrendously from its direct...\n Some people don't like the animation. Personal...\n \"Winchester '73\" marked the first of a series ...\n This is basically a goofball comedy, with some...\n If you're a fan of Turkish and Middle Eastern ...\n I don't know what it is about this movie, the ...\n The best way to have fun in this movie is to c...\n I went to see \"Quitting\" with high hopes, beca...\n This isn't the comedic Robin Williams, nor is ...\n This is one of THE century's best tv-series ev...\n Yes, Kazaam is one of those horribly bad movie...\n The film is very complete in what it is, keepi...\n I agree with \"johnlewis\", who said that there ...\n Another of my delves into the bargain bin, thi...\n Can only be described as awful. It is bad to s...\n I thought that this film was very enjoyable. I...\n Now before people start having a breakdown abo...\n Your mind will not be satisfied by this nobud...\n Engaging entry from Europe about Czech fighter...\n To be honest fellow IMDb reviewers, I enjoyed ...\n I am really surprised that this film only has ...\n The Late Shift is a great book, I read the boo...\n This movie is a terrible waste of time. Althou...\n After an undercover mission in Bucharest to di...\n Okay, so when a friend of mine told me he was ...\n First, a little summary. This reporter named T...\n Saw this last night and being a fan of the fir...\n Having seen the movie years ago and been disap...\n This is just a case of a previously worthless ...\n Otto Preminger, completing a noir cycle at Twe...\n I just got done watching \"Kalifornia\" on Showt...\n I thought this movie was good, I loved the plo...\n Just saw the movie this past weekend, I am ups...\n This is one of the best episodes of Doctor Who...\n No Strings Attached is one of Carlos Mencia's ...\n Let's face it, lot's of bad movies are made al...\n the movie is complete disaster. i don't know w...\n I'm afraid that you'll find that the huge majo...\n This was a crappy movie, with a whole lotta no...\n Las Vegas is very funny and focuses on the sub...\n \"Black Vengeance\" is an alternate title for \"Y...\n Abysmal Indonesian action film from legendary ...\n I throughly enjoyed this short, even as a Toro...\n This movie has it all. Great actors, good dial...\n While the original First Blood had its far-fet...\n In Cold Mountain, North Colorado, near to the ...\n I just came back from a pre-release viewing of...\n A horror movie is being shot and things aren't...\n My guide for the quality of the a movie is if ...\n There are moments in the film that are so drea...\n I should have known I was in trouble with Casp...\n Unfortunately for myself - I stumbled onto thi...\n i really like this series. its funny and uniqu...\n To begin with, I really love Lucy. Her TV show...\n As a lover of the surreal (in art and film) I ...\n This small John Ford western with no 'stars' b...\n This early film has its flaws-- a predictable ...\n I wondered why I didn't like Peggy Sue Got Mar...\n I used to love the Muppets. The Muppet Movie, ...\n This was obviously the prototype for Mick Dund...\n As this movie is completely in Swiss dialect, ...\n It is a shame that a movie with such a good ci...\n I am pretty surprised to see that this movie e...\n I LOVED this movie because Bobbie Phillips can...\n Michael Caine might have tried to make a large...\n This is one of the rare movies that I did not ...\n Although the likeliness of someone focusing on...\n I was so looking forward to seeing this film t...\n One of the more enjoyable aspects of Asian cin...\n First of all, I loved Bruce Broughton's music ...\n While John Garfield seems to get the bulk of a...\n A beautiful piece of children's cinema buried ...\n This is a really great film in the pulp fictio...\n Not a terrible movie... But there are monster ...\n Police Story is arguably one of the best works...\n The first episode of 'Man to Man with Dean Lea...\n If you weren't there, then unfortunately this ...\n Not too keen on this really. The story is pret...\n I saw this on a cheap DVD release with the tit...\n Jochen Hick wrote and directed this little thr...\n Seeing as Keifer Sutherland plays my favorite ...\n The Ascent (1977) <br /><br />Larisa Shepitko ...\n J.S. Cardone directed a little known 'Video Na...\n I couldn't agree more with the other comment, ...\n This film is available from David Shepard and ...\n I recently rented this movie as part of a nost...\n I have always been a great admirer of Nicolas ...\n One of the best memories of my childhood. Shou...\n Don't bother. A little prosciutto could go a l...\n Well, I have to agree with the critics on this...\n This film lacked something I couldn't put my f...\n I have seen this film only the one time about ...\n I haven't read a biography of Lincoln, so mayb...\n Le conseguenze dell'amore (2004)is a beautiful...\n Want a great recipe for failure? Take a s****y...\n I can't believe I am just now seeing this film...\n This movie is well made, it is beautiful and w...\n Every once in awhile I'll remember that I've a...\n Deathtrap is not a whodunit. It's a who gonna ...\n This thing takes the horny teenager genre, ver...\n One of the finest films ever made! Why it only...\n FIVE STAR FINAL was one of the best films of t...\n I cannot remember a more trivial, mind numbing...\n What do you do if you're Aishwarya Rai, coming...\n This movie could have been oh so much better. ...\n I'm sitting around going through movie listing...\n Wow, my first review of this movie was so nega...\n This movie features a pretty decent FX sequenc...\n We're a long way from LAURA. Once again Otto P...\n I don't care what some of the reviews said, th...\n Very slow-paced, but intricately structured an...\n Anyone with a young boy in the house who won't...\n It's not surprising that the majority of highe...\n Stay the hell away from this one... No, really...\n I first heard of this film when Patton Oswalt ...\n I have been a rabid Star Trek fan since 1966. ...\n So so special effects get in the way of recapt...\n Was this based on a comic-book? A video-game? ...\n Perhaps I'm being too generous when I give thi...\n I started watching this movie expecting some b...\n Gojoe is part of a new wave of Japanese cinema...\n Happened upon a copy of this. Not mine and if ...\n Whoever saddled this piece of drek with a titl...\n Flame in, flame out. That seems to be Gammera ...\n This tale set in Wellington, New Zealand subur...\n George Sluizer of THE VANISHING fame ( He made...\n I really liked the movie, thought it was very ...\n I've seen \"professional\" reviews claiming Juli...\n Fabulous costumes by Edith Head who painted th...\n My wife and I took our 13 year old son to see ...\n and this movie has crossed it. I have never se...\n it's amazing that so many people that i know h...\n And you'd be right. Black Mama, White Mama, al...\n The Rookie suffers from so much. There are the...\n Ashley Judd, in an early role and I think her ...\n Klaus Kinski popped up in a sizable number of ...\n Christopher Lloyd is funny and really believab...\n Watched this flick on Saturday afternoon cable...\n I almost saw this at an actual movie theatre (...\n It appears that there's no middle ground on th...\n FORBIDDEN PLANET is one of the best examples o...\n I did not read anything about the film before ...\n Another trashy Grade Z quickie from the prolif...\n I rented this movie, thinking it looked like a...\n Who else other than Troma can take the classic...\n Significant Spoilers! <br /><br />This is a si...\n I just watched Nightbreed for the first time s...\n How do I begin? This movie is probably one of ...\n That's right. Ohwon (the painter and the main ...\n I watched this movie at a Sneak Preview screen...\n The trailer for this film promised a new twist...\n I stumbled upon this movie by accident. I mean...\n The script for this Columbo film seemed to be ...\n Talk about a dream cast - just two of the most...\n When I think about TV movies, I always think o...\n When this movie was released, it spawned one o...\n What the heck do people expect in Horror films...\n A family (A teenage boy, his mother and a step...\n Rated NR(would be Rated R for Pervasive Strong...\n How, in the name of all that's holy, did this ...\n Is there any other time period that has been s...\n Sure this movie is not historically accurate b...\n A man by the name of Joseph Samuels is found b...\n i watched all of the doctor who episodes that ...\n I first saw this movie about 4 years ago and i...\n I was able to see a preview of this movie thro...\n This movie is not very bad tjough. But one can...\n Hell to Pay was a disappointment. It did not h...\n This is the most elementary sort of traditiona...\n I love science fiction, I am fascinated by Egy...\n This movie was a littttle confusing at first. ...\n Parsifal (1982) Starring Michael Kutter, Armin...\n The movie has a good start portraying an inter...\n I first saw this film when I was in the 8th gr...\n How can this movie be described? Oh yeah I've ...\n The worse film i have every seen. Like the oth...\n IQ is a cute romantic comedy featuring two gre...\n This movie was great and I was waiting for it ...\n In a word, this film was boring. It lacked lif...\n this is awesome!!! there is no partnership qui...\n I don't have words to describe how good this m...\n Wow! I loved this movie and LOVE Judy Marte!! ...\n In \"Anne of Green Gables\" (1934), Marilla Cuth...\n I must preface this comment with a sort of adm...\n I saw True Crime when it was first released ba...\n This has the logical consistency of marshmallo...\n I'll say one thing about this film: there are ...\n ...however I am not one of them. Caro Diario a...\n Ugh. Unfortunately this is one of the worst mo...\n Oh dear me! Rarely has a \"horror\" film bored m...\n The film has weird annoying characters, strang...\n If Hollywood had the wellbeing of the audience...\n I am partly a fan of Miyazaki's work. I say \"p...\n This is an excellent James Bond movie. Althoug...\n I watched this movie when I was a young lad fu...\n Bacall does well here - especially considering...\n The film largely focuses on a bullying Robert ...\n First off, I just want to say that this show c...\n This really is the worst movie I have ever see...\n Haven't seen the film since first released, bu...\n This is a bad movie in the traditional sense, ...\n I thought Anywhere But Here was a good movie.I...\n Richard Widmark is a tainted character in this...\n I believe the production value is OK..probably...\n I was not really a big fan of Star Trek until ...\n Okay, first of all I got this movie as a Chris...\n Stay Alive, Stay Alive, Stay Alive, I am calle...\n This might be my favorite so bad it's awesome ...\n If you still remember that summer when you had...\n As far as I can recall, Balanchine's alteratio...\n This movie about two Italian brothers who came...\n I have become quite fond of Laurence Olivier i...\n This movie probably seemed like a great idea i...\n This British-Spanish co-production is one of t...\n On the surface the idea of Omen 4 was good. It...\n This movie has got to be about one of the wors...\n I gave this movie a 2, and though I consider m...\n This movie was supposedly based on a non-ficti...\n Flavia(Florinda Bolkan of \"Don't Torture a Duc...\n I first saw APOCALYPSE NOW in 1985 when it was...\n Bob Clampett's 'The Hep Cat' is a distinctly a...\n I think this film version of NORTHANGER ABBEY ...\n Hercules' son gets severely wounded during a l...\n I loved the first movie, the second one was ok...\n I love Ashley Judd and think all of her movies...\n One of the BEST movies I have seen in a very l...\n this film was probably the best \"scary film\" i...\n Dooley and his canine partner, Jerry Lee are t...\n Jenny Lewis plays an awkward girl called Jade....\n I love this movie. It is the first film Master...\n To make a film straddling the prequels and the...\n I waited a long time to finally see what I tho...\n A very disappointing film from Oliver Stone wh...\n Being 15 myself I enjoyed this flick thourough...\n One of my best films ever, maybe because i was...\n OK, not possibly, honestly the worst movie i'v...\n I have been an avid chipmunk fan since the lat...\n Big S isn't playing with taboos or forcing an ...\n Lina McLaidlaw is a bright, solitary young wom...\n The movie was TERRIBLE!!! Easily the worst mov...\n Words fail me. This film was extremely difficu...\n We've all see the countless previews and trail...\n The movie was great and everything but, there ...\n I caught the first screening of Driving Lesson...\n I have always been a fan of the show so I'll a...\n Just the kind of movie I love. Some very good ...\n If you are a bit masochistic and like to waste...\n The worst movie I've seen in a long time. This...\n This must be one of the most horribly titled f...\n My husband received DVD of OBWAT for Christmas...\n Ah, McBain The character name is immortalized...\n I borrowed this movie from library think it mi...\n I strongly disagree with \"ctomvelu\" regarding ...\n I saw the capsule comment said \"great acting.\"...\n As a girl, Hinako moved away from her small vi...\n Anyone who enjoys the Lynchian weirdness of Tw...\n We were waiting in line to see The Good Girl, ...\n Seldom seen since theatrical release in 1970, ...\n Tiempo de valientes is a very fun action comed...\n In the old commercial for blank audio cassette...\n In 1961, this series was shown on local TV her...\n With the death of her infirmed husband, May, a...\n This movie is so aggrivating. The main charact...\n Wow... just... wow. There are a lot of reviews...\n \"Attack of the Killer Tomatoes\" consists mostl...\n As I've said in the title of this review, It p...\n This is a very strange product from Hollywood....\n It was extremely low budget(it some scenes it ...\n I love the book. It's full of passion, romance...\n Opera (the U.S. title is terror at the opera) ...\n After a day at work, I sat down to relax and t...\n Dolemite is, for me, an object of my deepest a...\n You've got to think along the lines of Last Ta...\n I read the reviews of this movie, and they wer...\n This is the biggest insult to TMNT ever. Fortu...\n I hate to sound like an 'old person', but fran...\n I really felt the movie was ahead of its time....\n My mother took me to this movie at the drive-i...\n All the ingredients of low-brow b-movie cult c...\n Warner Brothers tampered considerably with Ame...\n Making this short and to the point. This movie...\n My paraphrase above of the slogan on the back ...\n Please give this one a miss.<br /><br />Kristy...\n I realize several Ben Stiller movies are out o...\n This is one of Joan Crawford's best Talkies. I...\n This is an excruciatingly boring, slow-moving ...\n I thought this had the right blend of characte...\n I'm not sure why this film is averaging so low...\n First of all, before I start my review, I just...\n Justifications for what happened to his movie ...\n I like Peter Sellers, most of the time. I had ...\n I've seen the original English version on vide...\n I wasn't sure on what to expect from THE BOX. ...\n What percentage of movies does a person go to ...\n Warning: Avoid this super duper awful movie......\n Made only ten years after the actual events, a...\n This film never received the attention it dese...\n The story is: a turn-of-the-century troupe of ...\n As a cartoon, the Spytroops Movie was pretty b...\n Apparently a B movie ...B must stand for Bette...\n The murders in Opera are not actual murders as...\n Let me first start with the obvious: antisemit...\n This is your standard musical comedy from the ...\n terry and june in my mind, is a all time class...\n I came across this movie on DVD purely by chan...\n Apparently none of the previous reviewers,most...\n This movie is a re-write of the 1978 Warren Be...\n I believe that this was supposed to be shockin...\n The movie has only one flaw, unfortunately thi...\n I was disappointed with the sequel to the Swan...\n I seem to remember a lot of hype about this mo...\n This is one of those Film's/pilot that if you ...\n Now any Blaxploiation fan will recognise the i...\n When this show first aired I will admit to bei...\n This movie is the biggest steaming pile of you...\n A haunting piece that the discerning horror fi...\n This film has the guts to suggest that it migh...\n I stopped five minutes in when Beowulf was giv...\n First of all, I have to start this comment by ...\n Definitely not your typical Polizia, Redneck j...\n One Dark Night has a typical teen horror film ...\n Dramatic license - some hate it, though it is ...\n I've read most of the comments here. I came to...\n This was one of the worst films i have ever se...\n This is one of the funniest movies I have ever...\n Although I rarely agree with filmkrönikan, I h...\n As one of the victims of the whole Enron scand...\n I disliked this film intensely and left during...\n When I put this movie in my DVD player, and sa...\n i have just finished watching this film in my ...\n Roeg has done some great movies, but this a tu...\n Frank Sinatra took this role, chewed it up wit...\n Wow. We watched this film in the hopes that it...\n Bored Londoners Henry Kendall and Joan Barry (...\n An imagination is a terrible thing to waste .....\n I was just lucky I found this movie. I've been...\n When tradition dictates that an artist must pa...\n Why didn't critics like this movie?? I don't g...\n \"This Is Not A Love Song\" is a brilliant examp...\n Breaker! Breaker! has Chuck Norris as a truck ...\n Greatly enjoyed this 1945 mystery thriller fil...\n For years we've been watching every horror fil...\n Even if you subscribe to the knee-jerk anti-fr...\n \"After World War I, an expedition representing...\n ***Minor Plot Spoilers***<br /><br />I must co...\n Ulli Lommel's 1980 film 'The Boogey Man' is no...\n Live Feed is set in some unnamed Chinese/Japan...\n I have always been somewhat underwhelmed by Jo...\n This is one of the best films I have ever seen...\n Cooley High is considered one of my best all t...\n Though derivative, \"Labyrinth\" still stands as...\n Once in a great while I will watch a movie tha...\n We just finished screening El Padrino in Austr...\n Superdome is one of those movies that makes yo...\n Absolutely one of the 10 best music films Ever...\n I don't know what it is with this movies. But ...\n This film is a very beautiful and slow film. T...\n Rabbit Fever is a mockumentary collection of s...\n My kids loved this movie. we watched it every ...\n Like all good art, this movie could mean diffe...\n I have no idea what the budget on this movie w...\n There are a lot of people that put down on the...\n No one can argue with it. This IS and WILL BE ...\n This review is based on the dubbed Shock-o-Ram...\n Yeah...I read David Lee Roth's autobiography, ...\n I can't imagine why it hasn't been theatricall...\n Probably grossly underrated by all who never e...\n The best part of An American In Paris is the l...\n For late-80s cheese, this really isn't so bad....\n As a young black/latina woman I am always sear...\n Without a doubt, 12 MONKEYS is one of the best...\n The NYT review says that Sigourney Weaver's ch...\n This movie was *good* relatively during the fi...\n This movie is a cyborg in and of itself: half ...\n I tried. God knows I tried to like this Swiss ...\n \"Atoll K\" aka \"Utopia\" is one of Hollywood's s...\n This movie is so bad, it's comical. In fact, M...\n I've watched the first 17 episodes and this se...\n Well, maybe the PC version of this game was im...\n Yes, In 35 years of film going I have finally ...\n I was lucky enough to catch this film finally ...\n In São Paulo, the upper middle class teenagers...\n I saw House Party 1-3 and I loved them but thi...\n Rutger Hower fans Don't BE FOOLED - he only pl...\n I have never seen the original 1930s version o...\n Danton was a hero and one of the founders of t...\n Who doesn't love the muppets?! Impossible it i...\n I read thru most of the comments posted here &...\n I, like many horror fans, have been force fed ...\n This is a very strange film, with a no-name ca...\n it seems like if you are going to post here it...\n This movie is definately one of my favourite m...\n Film critics of the world, I apologize. It is ...\n My sister, dad, and I are really into D&D and ...\n Kate Miller (Angie Dickinson) is having proble...\n Rififi, directed by Jules Dassin, is in line w...\n For anyone who's judged others at first meetin...\n I couldnt believe how well this kid did on scr...\n OK, I have been a huge fan of the Black for a ...\n Lorenzo Lamas stars as some type of CIA agent,...\n MGM tried pairing up and coming young men with...\n Capt. Gallagher (Lemmon) and flight attendant ...\n I gave this film 2 stars only because Dominic ...\n The show itself basically reflects the typical...\n Seven pioneer kids strive independently across...\n This is as good as it gets.<br /><br />This is...\n Farscape is the best sci-fi show period, for o...\n I watched this flick yesterday and I have to s...\n Steven Seagal has made a really dull, bad and ...\n ... and I have seen some bad ones.<br /><br />...\n As I read the script on-line, I thought \"Capot...\n Note the wide release date of Aug 8, 1945 - ab...\n I almost burst into tears watching this movie....\n I watched the movie yesterday and for me it wa...\n This is NOT the masterpiece that is Snow White...\n I have recently seen this movie due to Jake's ...\n It has very little to do with the books: half ...\n The worst, and chock full of people who really...\n Sterling and younger brother try to survive on...\n \"Kids Like These\" could have been a decent fil...\n I saw this movie today (opened yesterday here)...\n SPOILER ALERT! This Movie, Zero Day, Gives An ...\n There's a sign on The Lost Highway that says:<...\n Okay, let's face it. this is a god-awful movie...\n Karen(Bobbie Phillips)mentions, after one of h...\n <br /><br />In anticipation of Ang Lee's new m...\n This is just the best movie of all times! Sorr...\n William Shakespeare would be very proud of thi...\n If you've ever heard the saying, \"the book is ...\n Bob Clampett's 'An Itch in Time' milks seven m...\n Have you seen all the big adventures of last f...\n In New York, when the shy and lonely project m...\n This game is very addictive, I kept playing it...\n This movie twists the facts of Anne and Mary's...\n This agonizing comedy-drama got surprisingly s...\n Although the figures are higher in proportion ...\n Roy Andersson has managed to craft something t...\n I stumbled on to this site while looking for a...\n The basic formula for the original series was;...\n Annie Potts is the only highlight in this trul...\n I saw the Mogul Video VHS of this. That's anot...\n When I first saw the preview for this movie, I...\n so yes it is quite nostalgic watching the 1st ...\n 'The second beginning' as it's title explains,...\n \"Thriller\" is brilliant. It is a long video, b...\n Stereotypical send up of slasher flicks falls ...\n I had some expectation for the movie, since it...\n Spoof films have come so far since Mel Brooks ...\n To be fair they did as well as they could with...\n As a Spanish tourist in Los Angeles and a fana...\n I was totally disgusted with this unnecessary ...\n Not much to say beyond the summary, save that ...\n There are some comments about this film that s...\n I gave this film my rare 10 stars.<br /><br />...\n I saw this a good while ago, but i just cant g...\n A milestone in Eastern European film making an...\n CACTUS FLOWER was a delightful 1969 comedy bas...\n Screamers is an Italian fantasy film (L'Isola ...\n An American Werewolf in Paris wasn't really th...\n This is a family film, which to some people is...\n From the nepotism capitol of the world comes a...\n I have a six month old baby at home and time t...\n My buddies and I spent the majority of a Satur...\n A group of douche-bag teenagers go up to an ol...\n I went to the cinema slightly apprehensive, I ...\n Spacecamp is my favorite movie. It is a great ...\n This thing, it shouldn't be called a film, is ...\n \"CASOMAI\" was the last movie I've seen before ...\n In the recent movement to bring Asian films ov...\n OK, so this film may not have won any Oscars, ...\n This movie is quite better than the first one ...\n I don't understand how some people can stand p...\n George Raft as Steve Brodie, the carefree, dan...\n I'm not picky with movies, oh I've seen so muc...\n This is definitely one of the best movies I've...\n I very much enjoyed \"The Revolution Will Not B...\n As good as Schindler's List was, I found this ...\n There are so many reasons as to why I rate the...\n As a grownup in my mid-40s, I am not even clos...\n The title is a reference to the destruction of...\n LOVE AT THE TOP--the utterly wrongheaded Ameri...\n Now, I haven't read the original short story t...\n Me and a couple of friends went to rent some m...\n The DVD for this film is by Alpha Video--a com...\n If this is your first time experiencing the wo...\n Let me first state that I rarely review movies...\n FINALLY!!!!!!!!!!! I've been waiting for this ...\n There was a stylish approach to this film on t...\n I felt as though the two hours I spent watchin...\n Yes, I know I'm one of the few people longing ...\n a very mediocre film based on a superb series ...\n This film, which I rented under the title \"Bla...\n Not only does this film have one of the great ...\n I'm rarely moved to make a comment online abou...\n There are few movies that have the massive amo...\n Wow! Wow! Wow! I have never seen a non-preachy...\n Crazy director....Yeah, you need to be crazy t...\n A highly atmospheric cheapie, showing great in...\n Atlantis was much better than I had anticipate...\n Have you ever watched a film, when after it's ...\n You'll either love or hate movies such as this...\n Late, great Grade Z drive-in exploitation film...\n B movie at best. Sound effects are pretty good...\n Night of the Comet starts as the world prepare...\n The snobs and pseudo experts consider it \"a fa...\n Kurosawa really blew it on this one. Every gen...\n 1996's MICHAEL is warm and winning comedy-fant...\n What did I just watch? I spent 90 minutes of m...\n Starting with a \"My Name is Joe\" like scene in...\n I liked how this started out, featuring some d...\n In Le Million, Rene Clair, one of the cinema's...\n To view the fictionalized biography \"The Pheni...\n Superficically, \"Brigadoon\" is a very promisin...\n When American author Edgar Allan Poe visits Lo...\n Near the beginning of \"The Godfather: Part III...\n This 1947 film stars and was directed and writ...\n The plot had some wretched, unbelievable twist...\n As other reviewers have noted, this movie is a...\n This movie is honestly one of the greatest mov...\n Shamefull as it may be, this movie actually ma...\n Possibly the best movie ever created in the hi...\n In Crystal City, a group of Mormons hire the h...\n I loved the the film. it beautifully analyzes ...\n \"Blame it on Rio\" is a romantic comedy 80's st...\n This was the very first movie I ever saw in th...\n This was a very good PPV, but like Wrestlemani...\n This film is absolute trash and proceeds to be...\n Fritz Lang directed two great westerns: \"Weste...\n Another variation and improvisation on the fam...\n Wow. Simply awful. I was a fan of the original...\n The End of Violence and certainly the Million ...\n The producer, Matt Mochary, stumbled upon the ...\n Anyone looking to learn more about the develop...\n The closing song by Johnny Rivers was the only...\n Co-directed by and starring Rutger Hauer, this...\n Together with the even more underrated , The S...\n Love hurts. That, I think, is the main message...\n Alright so this episode makes fun of Al Gore. ...\n A young doctor and his wife are suddenly expec...\n Ida Lupino was one of the few women to break t...\n This is what happens when you try to adapt a p...\n A scientist (John Carradine--sadly) finds out ...\n OK, so I just saw the movie, although it appea...\n We now travel to a parallel universe where the...\n There are interesting pieces here of and about...\n Gregory Peck and Gig Young are competing for t...\n Coming immediately on the heels of Match Point...\n If I watch a movie and don't once look at my w...\n Mullholland Drive proves once again that David...\n What a disappointment! I've enjoyed the Jon Cl...\n I'm trying to decide if jumping into a wood ch...\n Hoot is a nice plain movie with a simple messa...\n Gore hounds beware...this is not your movie. T...\n A gaggle of unpleasant city dwellers descend o...\n I can't really criticize this film. It is lite...\n This must be the most boring film I ever saw. ...\n Not just the money we paid to rent it or actua...\n The original review I had planned for this mov...\n First they came for the Communists, and I didn...\n Chillers starts on a cold, dark stormy night a...\n I saw this film in Winnipeg recently - appropr...\n Definitely the worst movie I have ever seen in...\n ***LIGHT SPOILER ALERT*** The story sounds goo...\n I firstly and completely and confidently disag...\n Working at a video store I get to see quite a ...\n This movie had very few moments of real drama....\n Completely worth checking out. Saw it on MLK's...\n Webs starts in 'Chicago: Present Day' as four ...\n When an actor has to play the role of an actor...\n Well, I don't normally think there's such a th...\n First off, I must say that I made the mistake ...\n We gave up at the point where George Clooney's...\n Got to confess right up front that I didn't wa...\n The Japanese have always had incredible ambiti...\n At first i didn't think that Ben Affleck could...\n Frankly i just enjoy watching James Caan. Wond...\n No one should ever try to adapt a Tom Robbins ...\n A widely unknown strange little western with m...\n note to George Litman, and others: the Mystery...\n I enjoyed the movie very much. Everything in T...\n When this show first came on the air, I saw it...\n This movie was pointless. I can't even call it...\n \"Cover Girl\" is a lacklustre WWII musical with...\n Well, Anne is way way too old. Wentworth looks...\n Seymour Cassel gives a great performance, a to...\n Kill Me Later\" has an interesting initial prem...\n Although I found the acting excellent, and the...\n -That's pretty much the whole soundtrack to th...\n An ex- informant of the East Germany finishes ...\n Okay, so I get it. We're supposed to be horrif...\n Boris Karloff is Matthias Morteval, a dying, l...\n Don't listen to fuddy-duddy critics on this on...\n I like Goldie Hawn and wanted another one of h...\n Well now, this was certainly a surprise episod...\n So it's a space movie. But it's low budget. Yo...\n An excellent family movie... gives a lot to th...\n Beautifully filmed, well acted, tightly script...\n <br /><br />It wasn't the worst movie that I h...\n I really liked this movie, it was good, and th...\n I love this movie like no other. Another time ...\n Englar Alheimsins are very good movie. She hap...\n Allison Dean's performance is what stands out ...\n I personally liked \"The Prophecy\" of 1995 a lo...\n Might contain spoilers.<br /><br />This is jus...\n I am uncertain what to make of this misshapen ...\n There is only one word to define the whole mov...\n Cinema, at its best is entertainment. If one i...\n In some ways, The Wrath of Kriemhild surpasses...\n ***SPOILERS*** ***SPOILERS*** After two so-so ...\n I saw this movie and I thought this is a stupi...\n Here's a review for people like me. This movie...\n Basically, \"Caprica\" is the Cylon origin story...\n I was on France, around March 05, and I love t...\n Have you ever seen one of those shows that bec...\n Those French and those Germans sure have a lon...\n Little Quentin seems to have mastered the art ...\n This is a good adaptation of Austen's novel. G...\n How truly sad that this sprung from the same m...\n Well as the headline suggests this is not the ...\n Hey look, you don't watch this movie to change...\n A man is builing a hotel with a partner. He fi...\n Bela Lugosi plays a doctor who will do anythin...\n Truly unique and stunning film of Jules Verne'...\n Definitely one of my favourite movies. The sto...\n This was a movie of which I kept on reading th...\n this a haunting piece of work.its only ten min...\n The only redeeming part of this movie was the ...\n Only saw this show a few times, but will live ...\n Greetings All,<br /><br />Isn't it amazing the...\n This film is really really bad, it is not very...\n Before I watched this film I read a review her...\n I just have to say that this was the third wor...\n DON'T LOOK IN THE BASEMENT This little forgott...\n Although I love this movie, I can barely watch...\n This movie is so great. Its set back in probab...\n I think this movie was made backwards, first t...\n I hate this programme: not only is the very co...\n What can be said about a movie about a cross d...\n There's not a dull moment in Francois Ozon's \"...\n I bought this movie at a garage sale when I wa...\n \"Toi le Venin\" is Robert Hossein's masterpiece...\n One of the worse gay-related movies I have eve...\n The first movie at the Fangoria Festival in Ve...\n Hopelessly inept and dull movie in which the c...\n A group of 7 gold prospectors head into a mine...\n Don't be fooled by the other reviewers. Althou...\n I found myself very caught up in this movie, a...\n Soldier Blue is a movie with pretensions: pret...\n A featherweight plot and dubious characterizat...\n While I am a long-time Shatner fan (since we u...\n NO WAY ! I hated Granny. First, she is way too...\n I ordered this movie on the Internet as it is ...\n Let me start out by saying I LOVE horror movie...\n I watched this movie by accident on TV and it ...\n I rented this movie and watched it 20 times be...\n The story, as I understand, is \"based on real ...\n I've already commented on this film (under the...\n Had this been the original 1914 version of TES...\n This is a lot of silliness about a woman from ...\n A well-made and imaginative production, refres...\n For the first forty minutes, Empire really sha...\n First of all, in defense of JOAN FONTAINE, it ...\n \"The Dresser\" is a small but absolutely wonder...\n A classic 80's movie that Disney for some reas...\n This movie is all about reality, submarine war...\n Having spent all of her money caring for her t...\n I haven't seen \"Henry Fool\", but after watchin...\n Begrudgingly gave it a 3 - one point each for ...\n The Power started off looking promising but so...\n Another FINE effort by America's most UNDERrat...\n Another first: this French movie is my introdu...\n One Night at McCool's is one of those films th...\n This is a must see for independant movie fans,...\n The plot of \"Sally of the Sawdust\" is the usua...\n This is the sequel to Octopus.<br /><br />Pff....\n This begins a wager between Edgar Allen Poe an...\n This is a wonderful look, you should pardon th...\n I actually saw this movie at a theater. As soo...\n In \"Lassie Come Home,\" \"National Velvet,\" and ...\n I can never figure if this is the Artiest Soap...\n This video was my first introduction to the Re...\n `The Matrix' was an exciting summer blockbuste...\n Most of the comments have been positive but I ...\n i totally loved this movie, tried to buy it an...\n I went to the pre-screening of \"Rory O'Shea Wa...\n My what a director's intuition can bring on ma...\n 'Bluff' has been showing for a good few months...\n I know it's a Power-Rangers gimmick and catere...\n I grew up watching the original TV series in t...\n Sorry did i miss something? did i walk out ear...\n Most Stoogephiles consider this to be the best...\n This is the touching story of two families in ...\n I love documentaries. The Andy Goldsworthy doc...\n Rush in Rio is simply an amazing DVD. This con...\n An example of genius filmaking. The epic story...\n For those with little time on their hands, I'l...\n I so much enjoyed this little musical fantasy ...\n A friend of mine asked: \"Doesn't one have to b...\n I had the good fortune of reading the book bef...\n This is not a new film. It is a re-cut of 1994...\n It's not really about gymnastics; swap out the...\n For movie fans who have never heard of the boo...\n If you enjoy sitting in the dark, both literal...\n If you would like to watch an example of how n...\n The final season of Roseanne was a roller coas...\n Ever notice how in his later movies Burt Reyno...\n Is this film a joke? Is it a comedy? Surely it...\n There was a great film to be made about Steve ...\n \"Citizen X\" tells the story of \"The Butcher of...\n When I first got wind of this picture, it was ...\n First off I really enjoyed Zombi 2 by Lucio Fu...\n Pleasant story of the community of Pimlico in ...\n The main reason for writing this review is I f...\n I had heard of John Garfield, but, didn't know...\n 1956's The Man Who Knew Too Much is exceptiona...\n I disagree in calling this a stoner movie just...\n I enjoy watching people doing breakdance, espe...\n This film is about a group of extra terrestria...\n I hope this group of film-makers never re-unites.\n It purports to be the life of Paul the apostle...\n While the film has one redeeming feature, name...\n The film isn't perfect by any means but despit...\n This is one strange hacked together film, you ...\n I was watching this movie and getting increasi...\n Someone says this anime could be offensive for...\n While in Madrid I was able to see a screener c...\n I can't seem to find anything that is good abo...\n \"Fear Of A Black Hat\" is everything the (much ...\n I have never commented on IMDb before, but I f...\n As of this writing John Carpenter's 'Halloween...\n Absolutely horrible movie. Not a bad plot conc...\n ok we have a film that some are calling one of...\n SPOILERS<br /><br />This movie was rented as a...\n I first came across 'My Tutor Friend' accident...\n despite the occasionally stilted acting and \"s...\n Now days, most people don't watch classic movi...\n \"Edge of the City\" is another movie that owes ...\n Did HeidiJean really see this movie? A great C...\n I don't know who wrote the script for this mov...\n I would say for it's time, this movie was awes...\n This movie is about basically human relations,...\n I'd first heard of this show in 2005, first on...\n For Columbo fans, such as myself, this is the ...\n There are no words to explain how bad NIGHTMAR...\n I just finished this movie and my only comment...\n \"L'Ossessa\" (released in English under many ti...\n A lot has been said about Shinjuku Triad Socie...\n is not a bad movie but the acting and the scre...\n This movie is completely ridiculous. Not only ...\n With an absolutely amazing cast and crew, this...\n I'm on the opposite end of the previous commen...\n As a helpful warning for others, I believe \"Sk...\n Dear Readers,<br /><br />I've found in my stud...\n Not good! Rent or buy the original! Watch this...\n - A film crew is shooting a horror movie in an...\n Considering John Doe apparently inspired Kyle ...\n I can appreciate what Barney is trying to achi...\n I ended up liking this movie but it was not th...\n The Haunting is yet another bad horror remake ...\n [WARNING: CONTAINS SPOILERS]<br /><br />I have...\n OK. I know that the wanna-be John Hughes movie...\n Joseph Conrad's timeless novel, Heart of Darkn...\n this one is about a homicide detective who bat...\n When I first watched this movie I thought it w...\n What a delightful romp  a very competently ma...\n With this movie, it's all about style, atmosph...\n Well-done ghost story that will give you the c...\n This film is pure 'Hollywood hokum'. It is bas...\n While I certainly consider The Exorcist to be ...\n Ultimately too silly and pointless. Yes there ...\n I don't care what anyone says, this movie was ...\n Back in 74 Eric Monte made the classic T.V sho...\n When I saw this as a child, it answered all of...\n I like a movie that has at least a vestige of ...\n As an ordinary movie-watcher I can't say I enj...\n This is a remake of the anime classic from the...\n Being quite a fan of Charlie Chaplin following...\n This is the \"Battlefield Earth\" of mini series...\n I recently started watching this show, and I h...\n A nicely paced romantic war story that should ...\n From the opening drum hit of \"We're Gonna Groo...\n This was a great movie. It had one \"sot-so-nic...\n \"It all depends on how you look at it we are ...\n This movie is really wack. There is really not...\n I have passed several times on watching this s...\n I was very disappointed in this film. The dire...\n THE RINGMASTER stars Jerry Springer as a TV ta...\n Thank God I have fast-forward. I think this is...\n This is a stupid movie. When I saw it in a mov...\n Unwatchable. You can't even make it past the f...\n This tough-to-see little picture played at the...\n Pearl S.Buck was a brilliant author that was a...\n No Strings Attached features Carlos Mencia doi...\n This was made in 2004 for gods sake, what happ...\n Wow. I felt like I needed to shower off after ...\n Well how can I categorise Farscape without res...\n In conception a splendid film, investigating t...\n I'm not from USA I'm from central Europe and i...\n I wish \"that '70s show\" would come back on tel...\n Alexandra Ripley wrote a horrible sequel to Ma...\n This movie is great fun to watch if you love f...\n The movie was supposed to release in 2002 and ...\n I heard many stories about this film being gre...\n This is the most depressing film I have ever s...\n These things have been floating around in my h...\n If you ever plan on renting (hopefully not buy...\n Aldolpho (Steve Buscemi), an aspiring film mak...\n I watched \"Gristle\" primarily for the presence...\n I think is a great and a VERY funny movie. The...\n The only reason to see this film is Sung Hi Le...\n Have you seen The Graduate? It was hailed as t...\n #3 in young John Travolta's trilogy of blockbu...\n This was the film that first indicated to me w...\n This film is an insult to the play upon which ...\n Conquerer of Shamballa shows what happens when...\n Quick and simple, I love this movie.<br /><br ...\n A party-hardy frat boy's sister is brutally mu...\n Ludicrous violations of the most basic securit...\n So, you wanna be a rock star? See this movie. ...\n The \"saucy\" misadventures of four au pairs who...\n i searched video store everywhere to find this...\n The main premise for this movie is every woman...\n This film broke a lot of ground and receives o...\n I think its pretty safe to say that this is th...\n I found this to be a so-so romance/drama that ...\n Well, how to make a movie as provocative as po...\n I searched for this movie for years, apparentl...\n STAR RATING: ***** Saturday Night **** Friday ...\n Just before dawn is an underrated horror film ...\n Alas, another Costner movie that was an hour t...\n I really enjoyed this movie. Most of the revie...\n Laputa: castle in the sky is the bomb. The mes...\n After I got done watching this movie I was so ...\n It is a wonderful film about people. Strange p...\n It is one of the better Indian movies I have s...\n Although it's most certainly politically incor...\n I want to start by stating I am a republican, ...\n Lost is an extremely well made TV series about...\n After watching this movie on DVD, I watched th...\n Murder Over New York is one of the better Chan...\n This movie is very good in term of acting and ...\n To put it simply, I am not fond of westerns. A...\n Somewhere, out there, there must be a list of ...\n Eskimo is a serious movie about the cultural c...\n PERHAPS SPOILER !! well, i ve seen it at the f...\n I couldn't make sense of this film much of the...\n A sequel to Angels With Dirty Faces in name on...\n Without a shadow of a doubt this is and probab...\n - A group of bandits rob a train of the gold s...\n It is Queen Victoria's misfortune to be define...\n Old movie buffs will know why I'd call this on...\n The only reason this movie is not given a 1 (a...\n A police officer (Robert Forster) in a crime r...\n I'm lucky enough to have a good quality copy o...\n Just once in a while you see a movie so mind-n...\n The story of an obsessed lover (Shahrukh Khan)...\n Having just watched Acacia, I find that I have...\n From 2002 on Dutch cinema finally got better a...\n A not bad but also not so great heist film. Ki...\n A cut above from the usual straight to video a...\n Every now and again you hear radio djs invitin...\n Bad Actors, bad filming, choppy dialog, shallo...\n Strangers with candy overacts in all the wrong...\n Jerry spies Tom listening to a creepy story on...\n I must say this movie is a Mork and Mindy knoc...\n A severe backwards step for the puppets in thi...\n Was in the mood for a French film and saw this...\n I hate this movie. It is a horrid movie. Sean ...\n This is a film for entertainment; I did not th...\n THE GOVERNESS is a moody period piece, the mea...\n I remember coming home from school to watch up...\n I bought this DVD after seeing it highly ranke...\n I am rating this an 8 because of the premise o...\n No matter what other people have said you can'...\n What a piece of stupid tripe.<br /><br />I won...\n This may be one of the best movies I have ever...\n This movie has a lot of comedy, not dark and G...\n SPOILERS!<br /><br />I gave this film 2 out of...\n I don't understand why making remakes has beco...\n I read the recent comments and couldn't wait t...\n Okay guys, we know why we watch film like \"The...\n How much do I love this film?! Now I'm not a f...\n I'm trying to picture the pitch for Dark Angel...\n I was excited to view a Cataluña´s film in the...\n CONTEXT is everything when one goes to rate a ...\n Dr. Hackenstein begins at the turn of last cen...\n This film is about a couple that decides to ta...\n Jarl and Moodysson are part of an dying breed ...\n This was a film based on the Novel written by ...\n The Thing About My Folks is a wonderful film a...\n I have just caught this Movie on TCM, and can ...\n This film is just as bad as \"The Birdman of Al...\n Still being of school age, and having to learn...\n Clint Eastwood would star again as the battle-...\n Some have commented on the subtitles not being...\n Well, of course not, women are overly sensitiv...\n One of the most sublime of American masterpiec...\n I honestly can't believe that this film isn't ...\n \"I am ... proud of 'Head',\" Mike Nesmith has s...\n I was 19 years old when I saw first saw this f...\n The only way I can feel good about having hand...\n This film is the worst film I have ever seen. ...\n Acting was weak, but in a horror flick, I can ...\n I just finished watching Going Overboard. I ha...\n Forbidden Planet represents the kind of scienc...\n This is one of Bruce's most underrated films i...\n Possibly John Cassavetes best film to date, an...\n I have watched this movie a few times and neve...\n I wonder if there is any sense of sense in thi...\n As much as we might welcome a film that deals ...\n Distortion is a movie that sort of caught me b...\n I watched this movie last night on one of the ...\n The Kid Power Hour featured two segments: Hero...\n In Budapest, Margaret Sullavan (as Klara Novak...\n I've just had the evidence that confirmed my s...\n I had been looking forward to How to Lose Frie...\n No, this isn't a sequel to the fabulous OVA se...\n Always enjoy the great acting talents of Harry...\n Old Ed was active back in the late 1950's He w...\n First, I did like this film. It was well acted...\n Some people like to tell you that Deep Space 9...\n Peter Jacksons version(s) are better films ove...\n Seven young people go to the forest looking fo...\n Jim Varney's performances as the Harem Girl an...\n This review is for the UK DVD three-disc box s...\n Hehehe. This was one of the best funny road mo...\n When I rented \"Unhinged\", I was expecting a go...\n I saw this film at the New Festival in New Yor...\n Wow -- this movie was really bad! You talk abo...\n This is a comedy/romance movie directed by And...\n OK, this is one strange film! Fans of Ed Wood ...\n This movie is about London and it's an amazing...\n When I borrowed this movie, I wasn't expecting...\n Imagine what it must have been like for John A...\n When it was announced the \"King of Pop\" was de...\n When I went to watch this movie my expectation...\n When a saboteur blows up a controversial gover...\n Chaplin enters the trenches of WWI in this spi...\n This movie is actually so poor in its desperat...\n This is quite an unusual and unique little wes...\n So you have the spoiler warning---but I would ...\n the characters at depth-less rip offs. you've ...\n When it opened in London during the Christmas ...\n hey ....i really do not know why this film has...\n GREAT movie and the family will love it!! If k...\n Anything that might have been potentially inte...\n After what I thought was a masterful performan...\n actually, it was pretty funny... in a \"god, ho...\n This film reinvents the term \"Spring Breakumen...\n It's been said that Batman Begins in the first...\n I once heard this movie described as either yo...\n I just saw this film in Santa Barbara. My frie...\n Personally, I absolutely love this movie and n...\n The 08th MS team features two hopeful romantic...\n You Belong To Me was the final teaming of Henr...\n IN COLD BLOOD is masterfully directed and adap...\n I usually give sequels the benefit of the doub...\n It's almost impossible for me to sit down and ...\n An adult, realistic, cruel, dark story, like a...\n I have not read \"A Time to Kill\" by John Grish...\n Well, no, not really. Its not really a good mo...\n This movie starts out very VERY slow, but when...\n Somehow, this documentary about Miles manages ...\n I'm not a big fan of slasher flicks as a genre...\n Don't get me wrong, the guy's a success dynamo...\n Forget the jaded comments that come before the...\n The plot starts out interesting, however, towa...\n Like several other reviewers here, I'm surpris...\n Facts about National Lampoon Goes to the Movie...\n I guess this would be a great movie for a true...\n I watched this movie last night, i'm a huge fa...\n The fact that this film was shown at London's ...\n **Warning - this review may contain spoilers *...\n A sweet-natured young mountain man with a sad ...\n <br /><br />Filmed just after the war, this st...\n This Tim Burton remake of the original \"Planet...\n OK, let's see... a handsome young stranger is ...\n When you read the comment on this film, that i...\n And I thought The Beach was bad, with the diff...\n Six degrees had me hooked. I looked forward to...\n Finally a gangster Movie worth watching!<br />...\n Most folks might say that if one were to spend...\n Why this film was only released in 4 states is...\n This may have been made for the hell of it, bu...\n It's one of the best movies that I have seen t...\n Winchester '73 was the film that moved Mann fr...\n I saw virtually no redeeming qualities in this...\n There's really not much need to begin this lit...\n I like to like movies, but I found nothing to ...\n This should have been a movie about Sam and hi...\n Well, if you set aside the fact that this movi...\n Outside of the fact that George Lopez is a pre...\n Wow. I don't even really remember that much ab...\n In Moscow, the young couple Veronika (T. Samoj...\n Think of an extremely low-rent version of \"Hea...\n My roommate got the No, No, Nanette soundtrack...\n To sat how awful The Shield is, you'd have to ...\n Medellin is a fabulous place to live, work, an...\n I have read the short story by Norman Maclean,...\n This is actually a pretty bad film. The ideolo...\n Giallo fans, seek out this rare film. It is we...\n I thought this movie was fun. I have never rea...\n \"Secret Sunshine\" reminded me of \"The Rapture\"...\n This movie possesses something most other movi...\n Just a dumb old movie. First Stanwyck's son ge...\n This version of Mansfield Park, while being ex...\n I chose this movie really for my husband-who w...\n I just viewed this great good-natured parody o...\n In Alfred Hitchcock's adaptation of Patricia H...\n Was this supposed to be a comedy? The black ca...\n Ever wanted to see how low a movie could sink?...\n Ram Gopal Verma has proved himself as a very i...\n Yes, it was an awful movie, but there was a so...\n I wholeheartedly agree with Greg in Ontario. I...\n The title of the film seems quite appropriate ...\n The only Riddle in this film was how it ever g...\n Wow, alot of reviews for the Devils Experiment...\n I did and I lost two and a half hours of my li...\n John Sayles, what have you done?<br /><br />\"S...\n There are movies that are so bad, they're good...\n Well, TiVo recorded this because of Angelina J...\n Boy, this was one lousy movie! While I haven't...\n I have seen several comments here about Brando...\n I appear to be in the minority, but I thought ...\n I've spent quite a while going through all the...\n When I first heard about Moon Child, I thought...\n Without saying how it ended, it is sufficient ...\n This belongs in their top tier, although there...\n Albert Pyun delivers a very good action/drama ...\n Oh dear. Some of the best talent in British TV...\n This movie is based on the novel Island of dr....\n An interesting idea (four African American wom...\n And one only, in my opinion.<br /><br />That r...\n The 14 year-old in me is immensely happy that ...\n I happened upon this by chance. I was at my fr...\n Many people judge it as a fan service film bec...\n The summer has been so full of Blockbusters an...\n I usually start by relaying the premise of the...\n Eager electronics whiz Brian Foster (a likable...\n This film would like to be the kind of shockin...\n ***BIG SPOILERS!*** \"Flesh Feast\" of 1970 is a...\n Admittedly, you can put a model airplane again...\n I bought the DVD of Before Sunset and saw it f...\n Years ago, with \"Ray of Light,\" Madonna broke ...\n This was a great 1981 film which had a great s...\n This film is one of the few quality films of 2...\n This movie has more goofs than any other movie...\n There are a number of reviews that comment on ...\n This is not a serious film, and does not prete...\n As I saw the movie I was really shocked to see...\n This superior inferiority to the original dumb...\n As a knowledgeable fan I recommend this film a...\n When the first trailer for this film was viewe...\n In addition to all the negative reviews: I was...\n I am still waiting for that dark muppet film w...\n I too must apologize for a somewhat biased opi...\n \"Trigger Man\" is definitely the most boring an...\n Fantastic documentary. A movie within a movie....\n Perhaps I missed the meeting when the meaning ...\n Tight script, good direction, excellent perfor...\n The year is 1964. Ernesto \"Che\" Guevara, havin...\n Just to mention one more thing about Gentleman...\n ...but memorable because it includes an actor ...\n I hadn't seen this film in probably 35 years, ...\n It's been 3 months and you know what that mean...\n I couldn't hold back the tears when I watched ...\n One piece of trivia that is often forgotten ab...\n Chase has created a true phenomenon with The S...\n THis movie may be the worst movie I have ever ...\n Not only the title, the film itself is a long ...\n Let's just say it in simple words so that even...\n First off let me say that this is probably in ...\n SPOILERS THROUGHOUT: <br /><br />The Gettaway ...\n This movie is bad. Just bad. In absolute terms...\n There's not much to say about this one. Gammer...\n Realistic Master-Piece. thirty years later, th...\n This almost perfect cinematic rendition of Edi...\n I am a huge horror/splatter fan, I even enjoy ...\n No matter how many times Wile Ethelbert \"Famis...\n I saw this movie on a westbound American Airli...\n A gem of a cartoon from the silent era---it wa...\n this movie was a horrible excuse for...a movie...\n He did one at Christmas to try and bring back ...\n The deceptive cover, title and very small hidd...\n I just finishing watching Goliath Awaits that ...\n This is an excellent film, full of complexity,...\n \"Watch the Skies\" (2005 - 60 minutes) is an ex...\n now we know radu munteans movies, the excellen...\n These are one of the movies that don't require...\n Bare Wench is another softcore parody of the B...\n This is a known fact, Mr. Seagal cannot smile,...\n \"Sundown:The Vampire in Retreat\" is a rubbish....\n This is one of those movies where I was rootin...\n A previous reviewer said the movie is not all ...\n What were they thinking when they made this tr...\n This movie's script is indistinguishable from ...\n Although the actors do a convincing job playin...\n The character acting is a little stiff, as if ...\n 20 out of 10 This is a truly wonderful story a...\n Believe me, I wanted to like \"Spirit\". The idi...\n I had the displeasure of watching this movie w...\n This is actually one of my favorite films, I w...\n My college theater just had a special screenin...\n I rented this movie because the cover was cool...\n I watched a made for television film about the...\n Seriously, the fact that this show is so popul...\n One would think (as I did), that with Steve Ma...\n Many more eloquent reviews than this have desc...\n I hoped for this show to be somewhat realistic...\n I really wanted to like this movie, but it was...\n If you get a chance to get a hold of this lost...\n All I could think of while watching this movie...\n I am curious of what rifle Beckett was using i...\n This was really the worst movie I've ever seen...\n <br /><br />This is definitely a 'must see' fo...\n The thing about calling \"House of the Dead\" th...\n \"Smokey And The Bandit\" wasn't exactly Shakesp...\n The film is about Sir Christopher Strong (MP--...\n This was a really interesting Halloween film. ...\n I don't see why everyone loves this film so mu...\n This is one of Chaplin's First National films ...\n This is an extraordinary film musically. It ma...\n An anthology is always risky business and I th...\n I paid one dollar for this DVD and at first I ...\n I'm starting to write this review during a bre...\n Fever Pitch has many of the clichés we have co...\n This movie has an all star cast, John Candy, R...\n Very good martial arts film and Jet Li is the ...\n John Carpenter's Halloween<br /><br />Is it th...\n As a film buff, I obviously had read all the e...\n For the record, the 1949 version of \"The Blue ...\n After seeing the poster from the film Smother,...\n This is an incredible piece of drama and power...\n \"What is love? What is this longing in our hea...\n Despite some really scenic locations in the or...\n I consider this movie a masterpiece, but it to...\n Well this just maybe the worst movie ever at l...\n Well... Vivah is quite a good, but typical Soo...\n I guess there are two ways to make a movie wit...\n Due to the fact that in 1976 there were no CGI...\n Was struck at how even the acting was througho...\n The plot doesn't offer any new excitements, it...\n Ordinarily I really enjoy movies like \"Chances...\n Though Cher and Cage are the focal points of t...\n Any one who saw the original would have to go ...\n To say that Thunderbirds is a horrid, forced, ...\n Conrad Phillips stars in the 1950s action adve...\n Reading through all these positive reviews I f...\n Footprints is a very interesting movie that is...\n this movie was really bad. it has that quality...\n I'm afraid that I didn't like this movie very ...\n I bought a DVD of this film for my girlfriend ...\n I saw most of \"My Bollywood Bride\" today at th...\n I too was fortunate enough to see \"Checking Ou...\n What a terrible movie this was! I made it abou...\n Maybe this wowed them in the 50's, but this is...\n I was quite impressed with this movie as a chi...\n Best fan boy movie I've ever watched save \"Fre...\n First than anything, I'm not going to praise I...\n Imagine if you will: four teen students have a...\n In a penitentiary, four prisoners occupy a cel...\n Oh if only I could give this rubbish less than...\n this film is what happens when people see like...\n I just finished up this unofficial adaptation ...\n Despite its budget limitations, this is a grea...\n This 1974 Naschy outing is directed by Leon Kl...\n Charles Bronson stars as Lt Crowe a police det...\n In his otherwise excellent book, Lincoln in Am...\n This is an excellent, fast paced thriller by W...\n Watched this when it was first screened and th...\n This movie came and went in the theaters. Due ...\n My family and I screened Underdog the night be...\n here in Germany it was only shown on TV one ti...\n OK, the very idea is ludicrous.<br /><br />1. ...\n Some funny bits, but come Bill! A film? Quotin...\n The opening was a steal from \"Eight-legged Fre...\n I felt this film - throughout. I waas impresse...\n The film maybe goes a little far, but if you l...\n i thought this movie was really really great! ...\n This film is a disaster from beginning to end....\n Much as we all love Al Pacino, it was painful ...\n Thank you The FilmZone for showing this sleazy...\n I had actually considered investing in this mo...\n what was Bruce Willis thinking when he signed ...\n This movie had the potential to be a decent th...\n This is a video version of a stage production,...\n I watched all three mad max films in successio...\n I once used Wesley Snipes' name as a clue to g...\n This has to be the WORST movie ever!!! The act...\n In the 1980's patriotism, and in some cases fl...\n I enjoyed this movie extremely. It was the las...\n First of all, I don't understand why some peop...\n The eighth, and thus second-to-last short of t...\n As good an advert for republicanism as you're ...\n Without doubt Beat Street is the best film abo...\n After reading so many glowing reports of 'To S...\n If you want to see a movie with nudity, sex, d...\n This movie truly shows the farce and hypocrisy...\n Even though I have great interest in Biblical ...\n \"Shuttle\" is an indie thriller about four youn...\n Why did I go to see this film? Honestly, becau...\n I enjoyed this film. But I was surprised to se...\n \"Ambushed\" is no ordinary action flick. It's m...\n If you want to learn something about the Spani...\n 'Arms and the Man' is one of Shaw's funniest p...\n <br /><br />\"step aside for hollywood veterans...\n This movie does not really promote kids to be ...\n This is, for different reasons, a very very ba...\n Very good point there : \"only an elite few (th...\n This one is a little better than the first one...\n I not only consider this to be the best film t...\n When recounting these events that took place s...\n Carl Brashear (Cuba Gooding, Jr.) was born to ...\n Film Noire is a genre that requires a certain ...\n Should we take the opening shot as a strange f...\n Trey Parker and Matt Stone, the creators of th...\n I like Christophe Lambert as an actor. He has ...\n Perhaps the weakest film in the \"Kharis\" serie...\n There have been so many many films based on th...\n We saw this film in Toronto at the Film Festiv...\n I was gifted with this movie as it had such a ...\n He plays straight but with a quiet intensity t...\n Although time has revealed how some of the eff...\n Imagine the worst skits from Saturday Night Li...\n Film noir at its best. Set in the immediate af...\n This was one of those films I would always com...\n Parker and Stone transplant their pacy expleti...\n Cavemen was by far the biggest load of crap I ...\n i totally disagree with the person who first c...\n As far as parody films go, there are few that ...\n I have been a huge fan of the original crew of...\n I enjoyed this film very much. Many Korean peo...\n Some war movies succeed where others do not, a...\n This show is my guilty pleasure all the way!! ...\n Awful, simply awful. It proves my theory about...\n This film is an excellent teaching tool as a p...\n This film was made and cast from my home town....\n I read some gushing reviews here on IMDb and t...\n Well, in all honesty it's beyond the boundarie...\n This show is without a doubt one of the greate...\n I was fully amped up to see this film. I had b...\n Oh boy, where do I go with this one? Herendous...\n Returning from 20 years in China, a young miss...\n Okay, so Ghoulies 4 is kind of bad. And it doe...\n \"Sleepwalkers\" is the first film which Stephen...\n After reading the previous comments, I'm just ...\n Good Folks, I stumbled on this film on evening...\n Just a comment on New Orleans accents...<br />...\n By convincing the Prime Minister to back the t...\n This splendidly-directed fantasy is the second...\n This is the first out of the Guinea Pig series...\n Well, what's to say. THE GOLDEN CHILD falls in...\n Don't Torture a Duckling is an absolutely stun...\n What could have been some majorly creepy stuff...\n While I was watching this movie I never though...\n Sloppily directed, witless comedy that suppose...\n \"Five Characters In Search of An Exit\" clearly...\n Gentleman Jim not really a boxing film. It is ...\n Anyone who has seen the trailer for this film ...\n An eye opening documentary about the 1993 sieg...\n I was very surprised how much I enjoyed this f...\n There was some hesitation from my part about w...\n Wow, I was really disappointed. I wasn't reall...\n You could get into the nitty gritty of this fi...\n Bad. Bad. Bad. Bad. Bad. What else can I say. ...\n There's nothing amazing about 'The Amazing Mr ...\n Warner Brothers produced this 3D extravaganza ...\n One night I stumbled upon this on the satellit...\n It aired on TV yesterday, so I decided to chec...\n On paper, this movie would sound incredibly bo...\n The worst film ever made, bar none. Give yours...\n One of the funniest, most romantic, and most m...\n This show is just another bad comedy which wil...\n No ,I'm not kidding. If they ever propose a mo...\n According to \"Lucien Rebatet\" in his \"Histoire...\n Well, how do you even rate a movie such as thi...\n As was to be expected, A Mazursky film made in...\n This movie has one of the best club scenes, ve...\n One of the funniest movies made in recent year...\n i think it is a nice movie; i think it is a ve...\n This was surprisingly intelligent for a TV mov...\n Really the tale of two cocky brothers and thei...\n Director Jeremiah Checheck who brought us big ...\n This movie was one of the rolling on the floor...\n This is a haunting short film. Both James Fran...\n Not knowing what this film was about, I checke...\n This film ain't half bad. It may be a little l...\n I expected to enjoy a romantic comedy featurin...\n What a pleasure. This is really a parody. Only...\n Yesterday I finally satisfied my curiosity and...\n please save your money and go see something el...\n Prior to seeing Show People, my impression of ...\n Overall, the Dad's Army movie is very funny, a...\n The Ancient Mariner is a truly classic piece o...\n Margaret Mitchell spins in her grave every tim...\n For those of you who have read Rohinton Mistry...\n This documentary was neither professionally no...\n The plot of the story and the performance of t...\n In Europe, it's known as Who Dares Wins; in Am...\n I really enjoyed this Minghella epic, thought ...\n It's hard to criticize this movie, because I d...\n I was expecting to view a more exploitation st...\n Decent action scenes, but the movie is saddled...\n MEN OF HONOR features Cuba Gooding Jr., in wha...\n I really must have caught a different film fro...\n At least for me. I have been following the car...\n Ali G earned his fame on the small screen - th...\n I loved this film when I was little. Today at ...\n I like The Wind and the Lion very much. It was...\n I wanted to punch the TV. Watching it was tort...\n This kid is rather bad, but in no way do they ...\n I won't argue with anyone who pronounces this ...\n Mr Michael Jackson is an artistic phenomenon. ...\n As we are well aware, movies are not set out t...\n Story of a strange love and a fall desire. Poe...\n I'm 60 years old, a guitarist, (lead/rhythm), ...\n Let me start off by saying that I loved the or...\n I once lived in the u.p and let me tell you wh...\n This film was made soon enough after Karen's p...\n You know a movie is bad when the highlight of ...\n You just cant touch NRFPTP! The new crop is ju...\n Stephen King adaptation (scripted by King hims...\n The script seems to have been wholesale (ahem ...\n I've never been a fan of Farrah Fawcett...Unti...\n But like the Disney film of two generations ag...\n \"Foxes\" is a great film. The four young actres...\n I disliked Frosty returns and this one. Both o...\n It's strange how the least known movies someti...\n You know this is gonna be a cheesy movie when:...\n This is not \"so bad that it is good,\" it is pu...\n I saw this film in a Cinema-Club in Germany in...\n Yep, Edward G. gives us a retro view of the cr...\n Dee Snider was inspired to do a two part song ...\n Shadows breathes the smell of New York's stree...\n This is a parody. That means, there are no cha...\n What makes this documentary special from a fil...\n The movie was certainly true to the real life ...\n This movie has made me a rugby -- and Coach La...\n The brilliant Australian comic genius Barry Hu...\n Watch this movie just to see Shahrukh Khan say...\n This was one of the best half-hour horror/susp...\n The story is quite original, but the movie is ...\n Was very fortunate to see the movie Hari Om at...\n watch this movie. it's truly a good ride throu...\n The film concerns a classic theme. In fact it ...\n I can't believe I've just spent one and a half...\n Hi, Everyone, If you saw \"Singing in the Rain,...\n 1st watched 2/2/2003 - 4 out of 10(Dir-Jim Kam...\n Andy McDermott (Tom Everett Scott) is a shy Am...\n A story of amazing disinterest kills \"The Psyc...\n This is the kind of film for a snowy Sunday af...\n The bearings of western-style Feminism on the ...\n This movie came aside as a shock in the eighti...\n Part Two picks up... not where the last film l...\n The worst movie I have ever seen. The sound qu...\n This is one of the better feel-good films of 1...\n ***SPOILERS*** ***SPOILERS*** There's not much...\n I'm a big fan of films where people get conned...\n This is a decent endeavor but the guy who wrot...\n I love this anime! I was laughing my head off ...\n Chris Gerolmo took care not to simply give us ...\n If you're in the mood for some dopey light ent...\n This film provides the saga of a legendary Wil...\n Of course, going into it, one would expect it ...\n I loved this movie. It was almost the same as ...\n I recently found a copy for $5 at a video stor...\n From start to finish, this 1926 classic two re...\n TV movies generally do not receive as much rec...\n Its hard to decide where to begin.I bought thi...\n Despite its many faults, Hallmark's 1995 versi...\n I saw the episode about living on minimum wage...\n Masters of Horror: The Screwfly Solution start...\n First love is a desperately difficult subject ...\n What is with all of the European (especially E...\n After watching Caddyshack 1 I'd heard there wa...\n Where this movie is faithful to Burroughs' vis...\n 9/11 is a classic example of cinema verite, a ...\n Not sure why the other comment on this film wa...\n blows my mind how this movie got made. i watch...\n I ran across this movie on a local TV channel ...\n I don't quite know how to explain \"Darkend Roo...\n this movie had a lot of blood in it when the s...\n NATIONAL LAMPOON'S CLASS REUNION was a flop wh...\n The EMPEROR'S NEW GROOVE cast returns for Disn...\n this is best comedy i ever seen! but not all c...\n Sheba Baby, is another Pam Grier Blaxploitatio...\n This documentary traces the origins and life o...\n The main reason I loved this movie is because ...\n Mr. \"Uwe Fail\" strikes again, transformed a cl...\n I'd read all the negative reviews for \"Anna Ch...\n If a movie has an unimaginative, hackneyed sto...\n This is one of the worst movies I have ever se...\n Help! Once again, Paul Schrader has sabotaged ...\n I was waiting for this movie for a time. In th...\n I was a huge fan of the original cartoon serie...\n Go way back to page ten of this review section...\n great historical movie, will not allow a viewe...\n I don't know how and where do the Iranian dire...\n When i heard they were making this i was quite...\n I am a HUGE Adam Sandler fan, and one day I wa...\n I had seen Lady with Red Hair back when it app...\n Wow.. where do I begin. I rented this movie be...\n This program was on for a brief period when I ...\n This was soul-provoking! I am an Iranian, and ...\n S.I.C.K. really stands for So Incredibly Crapp...\n In sixth grade, every teacher I had decided it...\n Goldie Hawn, in 1969, was best known for playi...\n so. i was completely in love with this movie. ...\n This program is a favorite of our family, and ...\n If you are expecting to see a lot in the bath ...\n I don't know why I keep doing this to myself!!...\n if you like gangster type of movies, then this...\n It was easy for Sir Richard Attenborough to ma...\n It starts off pretty well, with the accident a...\n I tried to remove anything that might be consi...\n If there was some weird inversed Oscar Academy...\n It is very rare for a film to appeal to viewer...\n Full House is a great show. I am still today g...\n This video nasty was initially banned in Brita...\n From the very beginning, the political theme o...\n The story starts off in the home of a little g...\n I had enjoyed the Masters of Horror Series unt...\n One of the great classic comedies. Not a slaps...\n A few buddies and myself have the strange hobb...\n This is a movie of tired, yet weirdly childish...\n A vampire's's henchman wants to call her after...\n This movie was quite a mess. There wasn't anyt...\n I am sorry to see that SURFACE has not been pi...\n I thought King Solomon's Mines was beautifully...\n I have no idea how anyone can give this movie ...\n The story is disjointed and poorly written. We...\n I let a friend talk me into viewing this movie...\n If you're looking for an original horror flick...\n My discovery of the cinema of Jan Svankmajer o...\n This relic from before the days of the Product...\n There's really not a lot to say about Las Vega...\n Be prepared for the Trip to Haneke's \"La piani...\n This is just one of those movies that continua...\n OK, the movie is good but I give it a 1 becaus...\n this was a fabulous adaptation of Jane Eyre. t...\n After seeing Meredith in \"Beyond the Prairie\" ...\n i should love this movie . the acting is very ...\n \"House of Dracula\" isn't all that bad of a fil...\n This episode introduced the Holodeck to the TN...\n I must have been in a good mood to give this s...\n I own this movie and have watched it several t...\n it was and a simpler time ( the seventies ), a...\n The story of this film is truly remarkable. A ...\n Peter Crawford discovers a comet on a collisio...\n Inventor Wayne Szalinsky (Rick Moranis) is pre...\n Yokai Monsters: Spook Warfare (Yokai daisenso,...\n This picture is a bad and blown up rip off of ...\n This movie is so stupid it simply goes around ...\n Nell Shipman attempted a plot to lead up to a ...\n Overlong drama that isn't capable of making an...\n I don't quite get the rating for The Amati Gir...\n I got lured by the title... I was expecting an...\n Being a self confessed slasher addict means th...\n I have just recently read the novel \"mother ni...\n I really like this movie. I can watch it on a ...\n \"Witchery\" is a decent little Euro-Trash horro...\n I have the good common logical sense to know t...\n Squeamish 11-year-old Luke Benward (as Billy \"...\n Morte a Venezia is one of my favorite movies. ...\n This movie was based on actual fact? I sincere...\n Solange is not a great Italian thriller. Get r...\n I hated the first episode of this show ( 'Prot...\n With Hong Kong heart-throb Andy Lau and vetera...\n This has got to be the most stupid film I have...\n Gary Busey did a splendid job playing the rock...\n I had the honor this evening to see a screenin...\n Here's what you have to remember about this mo...\n This movie was well done but it also made me f...\n I really wanted to love this movie, and not on...\n A slick production which holds the interest fr...\n I'm no director or writer or anything related ...\n I had seen Marion Davies in a couple of movies...\n this movie is a pile of rubbish , and to try a...\n What was an exciting and fairly original serie...\n If you enjoy the subtle (yes, I said subtle) a...\n I've seen this film more than once now, and th...\n I think this is a pretty good movie, but one t...\n Remember the good ol' animated batman show fro...\n I knew it would be a bad movie when I rented i...\n Madonna gets into action, again and she fails ...\n I have seen The Perfect Son about three times....\n Zane and Beringer will keep you on the edge of...\n I will warn you here: I chose to believe those...\n I've seen some terrible book-to-film adaptatio...\n The story: On the island Texel, photographer B...\n I doubt much of this film is based on a true s...\n I watched this last night on Sundance. Altman ...\n Not the best of the WIP's, but not the worst e...\n The film shows relations of the dying mother, ...\n Batman Returns is more Gothic and somber than ...\n This was a character's movie. The plot wasn't ...\n I knew absolutely nothing about Chocolat befor...\n Rita Hayworth is just stunning at times and, f...\n Antitrust falls right into that category of fi...\n **SPOILERS** Redicules slasher film that makes...\n This movie is great--especially if you enjoy v...\n I remember this movie. Quite intense for an 11...\n This was by far the best war documentary ever ...\n From hardly alien sounding lasers, to an eleme...\n This movie was terrific and even with a less t...\n I first saw this film around ten years ago and...\n This is my favorite of the older Tom & Jerry c...\n I was rather appalled to see the low rating th...\n Dripping with symbolism and filled with marvel...\n This movie wasn't just bad - it was terrible. ...\n Eddie Izzard is nothing short of a comedic gen...\n This is by far the worst movie I've ever seen....\n I admit creating great expectations before wat...\n This movie is actually worse than most movies ...\n Like Richard Pryor, Mason never got the materi...\n I guess those who have been in a one-sided rel...\n I give 3 stars only for the beautiful pictures...\n OK. There are people who should not see this m...\n When taken as a whole for its ideas and dissec...\n (First of all, excuse my bad English) Of cours...\n I'm sorry to say that there isn't really any w...\n ... and how they bore you right out of your mi...\n Did I step in something or is that bad smell c...\n Vertigo co-stars Stewart (in his last turn as ...\n While this isn't an all time classic comedy it...\n What an utter disappointment! The score of 6,1...\n As far as HEIST movies go, this one is pretty ...\n I saw the movie last night and I really wanted...\n I had the pleasure of watching this two chairs...\n The Odd Couple is a comic gem. One the funnies...\n Having read Diamond's book, I was slightly dis...\n It's amazing that this movie turns out to be i...\n Im a die hard Dads Army fan and nothing will e...\n Check out the film's website, more time was pu...\n I will keep it to bullet points so here goes: ...\n Being a fan of Marlene Dietrich's films, I was...\n \"Wagons East\" is widely known as John Candy's ...\n This horror movie starts out promisingly enoug...\n Johnathan Frakes is a good actor and, when he'...\n This movie was so heart warming. A true testam...\n Remember H.G. Wells' \"The Invisible Man\"? Well...\n This is a film that really makes me cringe. In...\n I've seen Lonesome Dove, Dead Man's Walk, and ...\n Both the book and the film are excellent in th...\n To some, this Biblical film is a story of judg...\n After just viewing the movie, I must say this ...\n Rajinikanth becomes born again after getting a...\n I love this show! It's like watching a mini mo...\n Haines is excellent as the brash cadet who thi...\n If you have not heard of this film from Walt D...\n Was it a thriller, as I thought when I saw the...\n The Reader is a perfect example of what a shor...\n The ghost of the Vietnam war has haunted the A...\n This has got to be the best movie I've ever se...\n The performance by Om Puri, Smita Patil, and S...\n Lucio Fulci, later known for his graphic horro...\n *SPOILERS*<br /><br />I don't care what anyone...\n The beginning of the 90s brought many \"quirky\"...\n So, where are the cannibals? Those intrigued b...\n This is a unique and bold film. It's energetic...\n My question is what was the worst element of t...\n Meek and mild Edward G. Robinson (as Wilbert W...\n The film is somewhat entertaining, but the gre...\n It's always interesting to view a horror movie...\n Boring as hell and kind of a chick flick.<br /...\n OK, so Soldier isn't deep and meaningful like ...\n The question, when one sees a movie this bad, ...\n Roy Scheider is not Steve McQueen or Clint Eas...\n This film was bad. Bad acting, bad directing, ...\n This is by far the WORST movie I have ever see...\n I'm glad I never watched this show when it cam...\n I really thought that this movie was superb. N...\n I don't recommend watching this movie. It's a ...\n This movie states through its protagonist that...\n On one level, this film can bring out the chil...\n this film is an undisguised attempt to appeal ...\n Really, I think this movie is more an example ...\n Dear friends, I've never seen such a trash mov...\n City girl Meg Tilly receives a horrifying phon...\n *May Contain Spoilers* A few weeks after I had...\n One is tempted to define the genre of Gert de ...\n A movie about dealing with the problems with g...\n Makes \"Invasion USA\" look like \"Apocalypse Now...\n The omission of Jazzy Jeff, the creator of the...\n I have to admit I did not finish this movie be...\n Scarecrows is one of those films that, with a ...\n \"Father of the Pride \" was another of those go...\n Melancholy of Haruhi Suzumiya is based on some...\n \"Quintet\" is definitely not a film most people...\n I also made the mistake of thinking that I was...\n \"Dahmer\" is an interesting film although I wou...\n I watched this movie really late last night an...\n Genre: Cartoon short with no dialogue, African...\n This cosy middle class sitcom became the subje...\n A scientist and his girl friend are out drivin...\n This has to be one of the top overrated anime ...\n I am one of the biggest fans of silent comedia...\n Aside from a few titles and the new Sherlock H...\n Richard Condie's utter maddness insanity carto...\n This movie was excellent, a bit scary, but exc...\n I think this programme is a load of rubbish. A...\n Recherche is a good word to describe this movi...\n All this talk about this being a bad movie is ...\n This movie is truly worth seeing - Robin Tunne...\n This sleek, sexy movie is a must-see. Only upo...\n This is one of the worst Sandra Bullock movie ...\n ....shut it off. The prologue with Fu Manchu's...\n Poor performances by Sinatra, Martin and Hyer....\n Following the World War II Japanese attack on ...\n I'll start by confessing that I tend to really...\n It is an interesting fact that metaphysics by ...\n What was this about ?? Pre-destination, you ca...\n - I had planned to write something explaining ...\n I bought this DVD set, sight unseen, and wish ...\n Conventional wisdom is that a sequel is seldom...\n This is a brilliant political satire. No wonde...\n I remember when I first heard about Jack Frost...\n Ponyo, written and directed by Hayao Miyazaki,...\n How do these guys keep going? They're about 50...\n I doubt Jigsaw was hip even at the time, the w...\n Is it just me, or is this an AWFUL film? I'm g...\n I like Kevin Bacon and Cathy Moriarty, and I l...\n \"In Love and War\" is a simple feel-good TV-fil...\n This movie is rich with action and gore. The s...\n Up until around 1970 Lucille Ball was one grea...\n I watched Lion king more times that all my fri...\n This movie changed the art of film making, tel...\n In the opening sequence of \"Where's Poppa?\", G...\n Power Rangers, the completely awful kid's show...\n Okay.. this wasn't the worst movie I've ever s...\n I have for years remembered a song \"JUST A COU...\n I have loved this movie since I saw it in the ...\n \"A Bug's Life\" is like a favorite candy bar --...\n This story had the potential of a good film. T...\n Even worse then the incredibly boring \"the Exo...\n I served as a Corpsman at Parris Island in the...\n The first time I watched it was when it came o...\n This was my first, and probably the last Angel...\n I had really only been exposed to Olivier's dr...\n and nothing else.<br /><br />One of my friends...\n I saw this movie years ago in a group traditio...\n Even though the plot was very well detailed,an...\n The Haunting. A remake, of course. The origina...\n Treading Water is a very beautiful movie. I wo...\n Not since J. Michael Straczynski's Babylon 5, ...\n One of the problems with popular culture, espe...\n If you value your life in any way, shape, or f...\n This film was hilarious. It provided a somewha...\n I loved this movie. The scenery was breathtaki...\n This is truly a kung fu classic. This film app...\n ...so where's my friggin trophy? I seriously e...\n Not sure if this is just a lousy movie or if i...\n There are many distinct problems with the movi...\n The Vampire Bat is set in the small German vil...\n Karen goes into a Japanese house as a substitu...\n This script was mildly original when it was wr...\n If you're a film student, or were one, or are ...\n I have seen Slaughter High several times over ...\n I´m from Germany and I love the mvovies. I go ...\n I don't know what would be so great about this...\n Some movies are repellent but still fascinatin...\n This movie is without a doubt the best I have ...\n My mother is as Gone With The Wind as one can ...\n This movie is a half-documentary...and it is p...\n I'm not a big fan of rom/coms at the best of t...\n the photography was beautiful but i had diffic...\n This American masterpiece came as near perfect...\n Legend has it that at the gala Hollywood premi...\n Let's Get Tough is one of those movies that pe...\n Elvira(Cassandra Peterson) is the host of a ch...\n This film requires a lot of patience. Because ...\n Does anyone remember BRAVEHEART ? It starred M...\n Note: I couldn't force myself to actually writ...\n This movie just seemed to lack direction. The ...\n Rock Hudson's second venture in the science fi...\n A few years ago, I bought several $1 DVD's tha...\n \"The Devil in the Dark\" is William Shatner's f...\n I enjoyed this film very much. It effectively ...\n People must learn to watch what is up there on...\n My very favorite character in films, but in ne...\n This movie will be a hit with those that enjoy...\n OK, OK, I must say I was impressed. It's hard ...\n this is a great movie. i like it where ning cl...\n My Super X-Girlfriend is one hell of a roller ...\n This was the worst TV movie I had ever seen. T...\n I had looked forward to viewing this movie, it...\n The Twilight Zone has achieved a certain mytho...\n This should be required viewing for all young ...\n Back in college I studied marketing and, even ...\n Having worked professionally with young girls ...\n Also known as \"Water Lilies\" this film tells t...\n I loved this movie. First, because it is a fam...\n A total and utter travesty of a movie.'Dark po...\n I grew up watching the old Inspector Gadget ca...\n There is little more that I would like to say ...\n David Mackenzie's follow-up to the brilliant Y...\n What in God's name happened here? How does one...\n Tintin and I recently aired as an episode of P...\n How better to describe it than scuzzy criminal...\n I think I've seen worse films, so I'm giving t...\n I would be one of the few people who owns a co...\n The real irony is this: Joe Besser was a top n...\n I just got back from the film and I'm complete...\n After the overrated success of Amenabar and Ba...\n When I heard Disney had the rights to \"Underdo...\n ý thýnk uzak ýs the one of the best films of a...\n I seems in the beginning a interesting film, a...\n I don't know why I picked this movie to watch,...\n PDQ Bach did it better. Much of \"Bach\"'s speak...\n This movie earns its 3 for lousy writing, poor...\n This story is told and retold and continues to...\n I am a huge fan of the original Assault On Pre...\n Legendary Cameron Mitchell turkey about an act...\n Sinnui yauman, is without a doubt one of the b...\n In Iran women are prohibited from attending li...\n This was a great movie for being only 67 minut...\n CQ could have been good, campy fun. But it com...\n James Bond in the wilderness? Well, that's the...\n This first (and hopefully not last) Wallace & ...\n This is going to be my first review on IMDb an...\n This movie was a thorough diappointment. There...\n I starred as Eugene Morris Jerome in my high s...\n We were excited to rent this one after reading...\n This is the crappiest film I have ever seen bu...\n This isn't a very good movie, but it is easily...\n I just watched this short at the PlanetOut Mov...\n The slightly overlong set up episode of the pr...\n STAR RATING: ***** Saturday Night **** Friday ...\n Who would have thought that such an obscure li...\n Why would anyone make a film like this? Why wo...\n Mary Poppins is definitely much better, but th...\n After I saw \"La Pianiste\" several years ago, I...\n A fantastic movie, and very overlooked. Gary h...\n It borrowed scenes from LOTR, Matrix, Star War...\n Note that I did not say that it is better...ju...\n Although it's been hailed as a comedy-drama I ...\n I've never been impressed by JD anyway, and Fi...\n I don't understand why some of you (or many) h...\n The mod squad gets started 'after' the formati...\n Japanese Tomo Akiyama's Keko Mask (1993) is ex...\n I don't understand why more people have not co...\n but I want to say I cannot agree more with Moi...\n Harry Knowles has a quote right on the front c...\n I've seen better production quality on YouTube...\n The Lifetime channel aired this in October but...\n Of course I was watching BG. I loved S1, I lik...\n I saw this when it first came to video, my lit...\n In this movie everything possible was wrong an...\n I'm seen this documentary in its feature-form,...\n Somehow they summed up the 60's, ten years tha...\n I had first watched this several years ago on ...\n David Lynch usually makes films that resemble ...\n I saw this film last night following a lot of ...\n When I was growing up, Voyage into Space was m...\n In this short an urban man and his wife have t...\n I actually found this movie 'interesting'; fin...\n This is only the second time I've felt compell...\n Michael Caine has always claimed that Ashanti ...\n This is a beautiful, funny, vivid film. It's e...\n SKELETON MAN was okay for the first 5 minutes ...\n The idea behind Dead Silence is great: zombie ...\n I love Sarah Plain and Tall:Winters End. Its s...\n Hallam Foe tells us the story about a boy who ...\n Master of Italian horror Dario Argento is call...\n I guess that after Leonard Nimoy had been succ...\n <br /><br />Have you ever felt like your being...\n I think this would have been a much better fil...\n This show has all the typical characters in a ...\n This appears to be two movies spliced into one...\n This show drives me crazy. It goes against eve...\n The movie is just as fun as staring at the sun...\n This show had a lot of hype but I didn't know ...\n This is the most frightening film ever made in...\n Albuquerque is a film that has all the element...\n I saw this Australian film about 10 years ago ...\n I have not watched every jackass episode. It w...\n This is the worst movie of ALL TIME! It's one ...\n If you feel Reshammiya as the singer is too mu...\n It's now 2005 and 15+ years since this cartoon...\n Neither the total disaster the UK critics clai...\n Former brat pack actor and all round pretty bo...\n I don't know why the critics trashed this movi...\n \"Miss Cast Away\" is an amusing trifle, which d...\n This movie over does it on the cgi i mean sci-...\n PLEASE people! DO NOT bother with this poorly ...\n Ken Russell directed this weird ( Not very ) e...\n There is the thrill of low-budget film noir. A...\n After tracking it down for half a year, I fina...\n This is one of those movies that make better t...\n This was perhaps the worst movie I've seen in ...\n Spoiler below, but read on or you'll never kno...\n I've seen about 820 movies released between 19...\n The 1930s. Classy, elegant Adele (marvelously ...\n The idea for the movie wasn't too bad: a horro...\n This movie was by far the worst movie that I h...\n I'm from Romania i'll try to speak in English....\n This usually all sounds a lot better in my hea...\n Stilted, stagy, strange and opaque, if visuall...\n I've seen many Dustin Hoffman's movies like St...\n I watched this movie \"miniseries\" on televisio...\n It is so rare that I get to rate a movie witho...\n No movie with Madeleine Carroll in its cast co...\n I have seen bad films but this took the p***. ...\n Robert Culp (they call his character \"doctor\"....\n A large part of the scenes should be cut off. ...\n The Horror Channel plays nothing but erotic so...\n Water shows the plight of Indian widows in the...\n this moving was intriguing and absorbing; howe...\n The morbid Catholic writer Gerard Reve (Jeroen...\n The film exposes the blatant exploitation of t...\n If you and your friends find as much humor and...\n Normally, I have no problem with a movie or st...\n I really disliked this movie....mainly because...\n This low-budget indie film redefines the word ...\n This movie makes \"Glitter\" look like \"Schindle...\n The Book gets 10 out of 10 stars...<br /><br /...\n In what could have been an otherwise run of th...\n From what I remember seeing of this film, it w...\n This \"horror\" movie lacks any horror or even m...\n A much undervalued film that tells the story o...\n Absolutely putrid slasher film has not one red...\n This is the funniest movie I have ever seen. H...\n 'Til There was You is one of the worst films w...\n Eisenstein describes his collaboration with Pr...\n Somehow, I really thought that I was going to ...\n Watched this on KQED, with Frank Baxter commen...\n Convoluted, infuriating and implausible, Fay G...\n When A Stranger Calls is actually a pretty goo...\n Essentially this is a dreadful film with a few...\n \"Seeing Other People\" is a daring romantic com...\n I rented this some years ago, the video store ...\n First of all, really Kim Basinger? Your rich b...\n Welcome to a bad ghost story and someone's nig...\n I don't usually like this sort of movie but wa...\n Well, I can honestly say that this is the firs...\n If I'm to like a movie, I need to care about t...\n \"Goodbye, Mr. Chips\" is a superbly written and...\n This movie was suspenseful and fun to view. As...\n I saw this film at the 2001 Toronto Internatio...\n DR. SEUSS' HOW THE GRINCH STOLE CHRISTMAS / (2...\n \"The Beguiled\" is one of my favorite Clint Eas...\n David Beckham is a British soccer star and the...\n Veteran sleazeball Bruno Mattei is at it again...\n Jungle Fever is too highly stylized, stereotyp...\n This movie is a perfect example of a film that...\n 210 minute version (extremely hardcore, or so ...\n I cannot believe the same guy directed this cr...\n I was wrapped to see many other people also en...\n Brilliant technology. But what good does it do...\n This is one of those movies where the acting, ...\n I found the film quite good for what I was exp...\n Parker (Johnathan Schaech) is an aspiring writ...\n Cusack does his best David Niven in this one, ...\n Where do I begin? I first saw this film in 199...\n Songwriter Robert Taylor (as Terry) is \"dizzy,...\n I have spent the last week watching John Cassa...\n This film is about a bunch of misfits who are ...\n This movie was produced by the biggest produce...\n With Adam Sandler.<br /><br />This is without ...\n Gruveyman2 (comment below)you are a complete i...\n When THE MAGIC OF LASSIE opened at Radio City ...\n I like underground films when they have someth...\n I'd heard about this movie, but didn't see it ...\n A man is wrongfully accused of killing his fri...\n i believe that this movie was a terrible waste...\n I would think that this was one of those films...\n My wife and I watched this movie because we pl...\n So, Steve Irwin. You have to admire a man who ...\n I got the DVD very cheap and I'm a total Drewb...\n You may like Tim Burton's fantasies, but not i...\n Who were they kidding with this? There was jus...\n I have read all of Shakespeare's plays, seen p...\n This series has its ups and occasional downs, ...\n After reading all of the rave reviews about th...\n James Stewart plays Dr. Ben McKenna, who, with...\n Grand epic as it is, Kenneth Branagh's monumen...\n never before has a film driven me to write a r...\n Jude Law gives his all in this beautifully fil...\n I haven't seen all of Jess Franco's movies, I ...\n I watched this movie with some friends a coupl...\n I first saw this movie in Papua New Guinea in ...\n Sometimes I think that somewhere in the \"Lifet...\n Sorry - this movie is just a cheap TV-Producti...\n For a brief moment. The opening scene with Tra...\n ... It even beats the nasty \"raw\". Almost twen...\n I saw Saving Grace right after it came out on ...\n Set in the 70s, \"Seed\" centers around convicte...\n This is one of the best Non-English series I h...\n \"Thieves and Liars\" presents us with a very na...\n ***SPOILERS*** When undercover Brooklyn North ...\n This movie was marketed extremely well. When i...\n It's amazing what you can do with little money...\n 'I'm working for a sinister corporation doing ...\n Who will love my children has changed my heart...\n Yeah, it is. In fact, it's somewhere in my top...\n Stupid, Stupid, Stupid. I think that Angelina ...\n Mount Godwin-Austin (otherwise known as K2) is...\n Boy-girl love affair/sequel with songs, only t...\n I can understand how Barney can be annoying to...\n Part of the BBC filming of all of Shakespeare'...\n I guess I have still enough brain left to NOT ...\n It's incredible how a movie can take so much t...\n Frankie Muniz plays Jason who is a high school...\n This is probably the fastest-paced and most ac...\n Chop Shop is a hidden treasure out in theaters...\n I was at this film's premiere at the Toronto F...\n I watched this film with high expectations but...\n Took a very good book and completely butchered...\n Being from Canada, I cannot say whether this f...\n With all the hype surrounding the stars of the...\n just watched it on sky TV missed the first hal...\n As an employee of the Swedish Air Force I enjo...\n A sincere tribute to Suzy Parker, who's just p...\n I admire 'Kissing on the Mouth' for its frankn...\n Although I brought this film by accident (I th...\n When I first watched this, we borrowed it from...\n \"Who do you dream of? Hoot Gibson ... Howdy Do...\n This movie is powerful. I watched this movie a...\n For the 1980s, this is a very dark movie. At t...\n When the Bourne Identity arrived five years ag...\n It is ironic that during the '50s, when Dougla...\n I have seen this movie many many times and I w...\n The premise was intriguing, but sadly this fil...\n Sure Star Wars (a movie I have seen at least f...\n Betty and Boris eye each other at a junior dan...\n I'm a fan of low budget B-movies and campy hor...\n Steve Martin has always had my respect for bei...\n This is a cute little movie that provides pret...\n Forest Whitaker's performance is all the more ...\n \"Rich in Love\" is a slice-of-life film which t...\n Reviewing KAZAAM and saying it's a bad movie i...\n This was a great movie, and safe for the entir...\n several years ago i saw this film, without sub...\n This movie is available as a special \"bonus\" f...\n I at first thought this little fantasy excursi...\n Misguided, miscast, murky, interminable lunacy...\n I hadn't planned on watching O12 because I did...\n I've known about Bettie Page for many a year n...\n It is a great tragedy that both Richard Harris...\n A good film, and one I'll watch a number of ti...\n Okay, just by reading the title you would thin...\n Just went on YouTube and finally watched this ...\n Found this film in a DVD discount rack for $10...\n I was one of the few non-liberals who showed u...\n Life is too short to waste on two hours of Hol...\n I have always been fascinated by silent films....\n This film is bundled along with \"Gli fumavano ...\n The plot of this movie is as dumb as a bag of ...\n By mistake, I ordered a series from the BBC, t...\n I watched this episode with high hopes after s...\n First of all, I'd like to tell you that I'm in...\n Look, I loved the PROPER Anchorman film, but t...\n My partner and I had never heard of this movie...\n A strong pilot, this two-hour episode does an ...\n Making a book into a movie by following the st...\n \"Mr. and Mrs. Smith\" is one of the not too wel...\n This Royal Rumble basically had the message of...\n How this character ever got hired by the post ...\n Cameron Grant is one of the best directors doi...\n It is not every film's job to stimulate you su...\n From actor and independent writer/director Joh...\n Deformed, aged female scientist kills fellow s...\n When \"Good Times\" premiered in 1974, it was on...\n The original Road House is by no means an awar...\n I doubt this will ever even be a cult film. I ...\n I attended the premier last night. The movie s...\n One Night at McCool's is a very funny movie th...\n I almost never comment on movies, but I saw th...\n Well, was Morgan Freeman any more unusual as G...\n This was unusual: a modern-day film which was ...\n Curly Sue is a 6 year old with an abundance of...\n Lord David Cecil wrote an interesting book in ...\n In today's world of digital fabrication, there...\n the movie opens with a beautiful lady in a tat...\n I have nothing against a fast-paced fright-fli...\n Think 'Charmed' with testosterone instead of e...\n Zodiac Killer. 1 out of 10. Worst acting ever....\n I was very excited to see a documentary on one...\n Hi:<br /><br />I heard about lost from a co-wo...\n The best part in this movie is the first one, ...\n \"You were on your way up and you tripped on a ...\n I loved this film! I'm a true Tom Hanks fan, a...\n This movie is like real life, by which I mean ...\n Best Stephen King film alongside IT, though th...\n Following their daughter's brutal murder,Julie...\n This movie starts out with kids telling each o...\n I just watched this movie and I've gotta say t...\n This film is my favorite comedy of all time an...\n This show was laughably bad. The writing sucke...\n The success of the original French \"Emmanuelle...\n \"Five Fingers of Death\" is a classic of 70's k...\n Burlinson and Thornton give an outstanding per...\n Man oh man... I've been foolishly procrastinat...\n It was like someone was trying to make a scary...\n Huge, exhaustive and passionate summary of Ame...\n Full House was and still is a great show. It's...\n I Won't say anything about music, because this...\n i was one \"chosen\" to see this movie in a snea...\n Much can usually be forgiven in period pieces ...\n (spoilers) Horrifyingly enough, I have actuall...\n I'm amazed we see even one nay-sayer criticizi...\n This is a family comedy -- in the very best se...\n Updated version of a story that had been turne...\n Corny and horrible, I was not surprised this s...\n Walt was particularly fond of quality. So how ...\n Bedknobs & Broomsticks is another one of Disne...\n This is the epitome of fairytale! The villains...\n My friend gives me these 3 huge boxes. \"They'r...\n If it's an art and essay film, there is not en...\n This movie is just funny. mindless, but funny....\n Yep, it's me again! Mr 'I sit through crap so ...\n 007's Goldeneye is one of the best N64 release...\n After three outstanding BBC television series'...\n What else is left to say?<br /><br />I've read...\n This movie is horrible if you pay attention to...\n I saw this movie back in 1954 on a double-bill...\n Along with Patrick McGoohan and Robert Culp, J...\n This is one of the best movie I have ever seen...\n It's true that this is not realistic story, bu...\n I don't think you can get much worse then this...\n Now this show looks like most of the other sho...\n This film is about a gap that exists between t...\n Rented a batch of films from Blockbuster last ...\n I think a great many viewers missed entirely t...\n In a sense, this movie did not even compare to...\n Now this is what a family movie should be! The...\n Hobgoblins... what a concept. Rick Sloan was a...\n This beautifully filmed and scripted episode w...\n I first saw Ice Age in the Subiaco Cinemas whe...\n Although this isn't a \"great film,\" there's so...\n This movie was great. It had everything a true...\n This lame Harold Lloyd sound film has nary a l...\n This film directed by George Fitzmaurice, who ...\n I went looking for this movie in typical fan o...\n Ramin Bahrani sets up a scene early on in Chop...\n The appeal of this film has to be the artsy Eu...\n Bettie Page was a icon of the repressed 1950s,...\n L'Humanité is a murder mystery. These movies t...\n When I voted my \"1\" for this film I noticed th...\n Undoubtedly one of the great John Ford's maste...\n This is a good episode, but it's not my favori...\n I had the misfortune to see this film recently...\n Darling Lili is fantastic! Its by far one my f...\n I'm basing this on my observations of one epis...\n As long as you keep in mind that the productio...\n A short review without any spoilers follows.<b...\n I did not see this film in the theater. I conf...\n Of all of the post-1985 Perry Mason movies I h...\n I can't believe people are looking for a plot ...\n Friday the 13th meets the Matrix. As with all ...\n I remember this show being on the television w...\n I must admit that I am a fan of cheesy '80's c...\n Watched this film with an audience of....5 in ...\n A tough life gets tougher when the three child...\n The problem is that the movie rode in on the c...\n How do you spell washed up fat Italian who can...\n This movie is perfect for all the romantics in...\n If you're a fan of Jackass, Viva La Bam or the...\n Why this worthless piece of French cinema has ...\n This is not as funny and gory as the DVD box c...\n Timeless musical gem, with Gene Kelly in top f...\n \"Voodoo Academy\" features an \"Academy\" like no...\n What I think I'll probably like best about the...\n I LOVED GOOD TIMES with the rest of many of yo...\n Ho humm - - - More of nothing. If you are a lo...\n I am a great fan of David Lynch and have every...\n I'm pretty sure Poe would have considered this...\n this movie may not have seemed like much to so...\n In Stand By Me, Vern and Teddy discuss who was...\n I absolutely loved this movie. I am not even s...\n A review I have put off for far too long....<b...\n In 1954 Marlon Brando was THE hot actor after ...\n After reading several good reviews as well as ...\n The Bothersome Man is a smart, surreal movie t...\n The Haunted World of Edward D. Wood, Jr. isn't...\n Clara Lago is wonderful as the title character...\n This movie is a journey through the mind of a ...\n I've written at least a half dozen scathing re...\n Why did this movie fail commercially? It's got...\n Robert Stack never really got over losing a Be...\n I watched this film when I was a kid, and I th...\n I confess--Emma, in my opinion, is the single ...\n When you watch the making of with this DVD - t...\n This is one of the worst movies I have ever se...\n Frankie Dio (Lee VanCleef) is a high-ranking m...\n Full House is a wonderful sitcom that is about...\n ...not to waste your time watching this vanity...\n My best guess is this piece of work will come ...\n I had high hopes when I went into the theatre-...\n or anyone who was praying for the sight of Al ...\n I've bought, \" The Feast of All Saints,\" and i...\n If you watch the documentary extra, you'll not...\n One of the perks of my job is that when things...\n i was kinda interested in this movie as a tras...\n Born Again is a okay episode of Season 1. The ...\n Well, first off, if you're checking out Revolt...\n This movie was recommended to me by a friend. ...\n For those expecting the cover art and story ou...\n The seven collaborations between director Jose...\n I thought that I was never going to find a hor...\n An Insomniac's Nightmare was an incredibly int...\n This movie sucked. It really was a waste of my...\n I caught this movie on FX last night, and as I...\n The director was probably still in his early l...\n I first saw this mini-series a number of years...\n Had the original casting idea been kept (hunti...\n Chupacabra: Dark Waters has to rank as one of ...\n I have some of the older videos and dvds of Dr...\n Richard Willaims is an animation god. He was h...\n Riveting drama, scripted by William Mastrosimo...\n My husband dragged me to this film as I had no...\n ((NB: Spoiler warning, such as it is!))<br /><...\n Oliver Stone, always ready to make politically...\n This film just won the best film award at the ...\n In 1925, childhood friends Marie Dressler (as ...\n After the atomic bomb hits Hiroshima, charred ...\n This film is unusual and bizarre, and it is ne...\n ** May contain spoilers ** Horrible. Just horr...\n Well, I guess I'm emotionally attached to this...\n When this film plays on television you might w...\n My main comment on this movie is how Zwick was...\n Why is it that any film about Cleopatra, the l...\n This movie is chilling reminder of Bollywood b...\n Great book, poorly done movie. Cheesy performa...\n Once again I must play something of the contra...\n This flick is worse than awful! It took a good...\n Yet another version of mother of all gangster ...\n This film is terrible, and don't blame Jesus F...\n Eleven years ago, Stanley Ipkiss released his ...\n I nominate this and BABYLON 5 as the best tele...\n Another exquisite taste of what a superhero mo...\n The worst Wrestlemania ever.<br /><br />This h...\n The famous French detective Henri Cassin takes...\n Just lovely. It is long. No climax. Don't wait...\n Well, it's safe to say that Subconscious Cruel...\n Danny De Vito shows us here he is definitely, ...\n I first saw this docudrama in the UK in the 19...\n Pointless movie about making a movie. No where...\n Mr. Destiny - 3.5/5 Stars<br /><br />\"Mr. Dest...\n The French Babbette appears at the modest hous...\n This is quite the gripping, fascinating, tragi...\n I had borrowed the three Sarah movies from a f...\n Dressed to Kill understandably made a bit of a...\n To the small minority seen here praising this ...\n Show favorites Green Arrow (introduced this se...\n A realistic depiction of young love for the co...\n I loved this movie but then again I am a big C...\n Clint Eastwood reprises his role as Dirty Harr...\n Unless the title is supposed to be some kind o...\n Jack Webb's movie 'The D.I' came about from th...\n FBI Agents Mulder and Scully get assigned to p...\n The movie was actually not THAT bad, especiall...\n the usual disclaimer - I do not give 1 star ra...\n With Iphigenia, Mikhali Cacoyannis is perhaps ...\n I saw this at my local supermarket and I knew ...\n this fourth installment of the series is the l...\n The acting wasn't great, the story was full of...\n Playing a character from a literary classic ca...\n The filming is cheesy. Some of the actors over...\n <br /><br />my favorite science fiction, incre...\n AKA <br /><br />Aspect ratio: 3 x 1.78:1 withi...\n Hargh... this film is so bad it's almost good....\n Moonwalker is absolutely incredible !!!!!!! Wh...\n I'll start with what I liked.<br /><br />I rea...\n Not only was this movie better than all the fi...\n What made the idea of seeing this movie so att...\n Creep - \"Your journey terminates here.\" Some v...\n This anime series starts out great: Interestin...\n So many times, Bollywood has tried to remake H...\n It is unfortunate that between this film, In t...\n Small college town coed OD's? (Why do we care?...\n Gorgeous Annie Belle in her prime stars in thi...\n In the opening scenes of this movie a man shot...\n I just saw this on cable. I liked it. It held ...\n 039: Anna Christie (1930) - released 2/21/1930...\n If one wants to have a character in a movie ha...\n The story takes place in rural Germany on the ...\n A drama at its very core, \"Anna\" displays that...\n I have to admit, this movie moved me to the ex...\n Spectacular Horror movie that will give you th...\n Brian (Wesley Eure) works for a security firm ...\n You have GOT to see this movie... I saw it, as...\n I had to lower my rating of this movie to a 4 ...\n One of Cary Grant's most enduring comedies is ...\n I'll be honest,I finally checked this movie no...\n ONE NIGHT AT McCOOL'S / (2001) *** (out of fou...\n Jamie Foxx was the epitome of Ray Charles. Aft...\n We toss around the term \"superstar\" way too li...\n All right - it was in black and white and prob...\n Do all spoof films require pure stupidity and ...\n Nut case is murdering college students, can ne...\n Okay, it's a movie for children, and it's not ...\n I'll keep it short and brief, the people who w...\n What a powerful start to a film when Julia Rob...\n With a title like \"Attack of the Killer Tomato...\n This was a popular movie probably because of t...\n This movie was awful. It centered too much aro...\n I think Purvis starts out to do a gay \"Gone Wi...\n Jim Belushi is terrific as the \"Average Joe\" w...\n I think that Vanessa Marcil is the best actor ...\n In the many films I have seen Warren Oates, I ...\n Countless Historical & cultural mistakes 0/10<...\n I don't have much to add to what has been said...\n <br /><br />I recently viewed this atrocity in...\n I saw this movie at the theaters when I was ab...\n This Movie is a warning to all people sat surf...\n By the numbers story of the Kid (Prince), a si...\n I'll admit that I don't expect much from a Rog...\n Strangeland seems to have a love/hate relation...\n This is not a 'real' James Cagney vehicle sinc...\n Lance used to get quality support work from Ja...\n Krajobraz po bitwie like many films of Wajda i...\n Thsi is one great movie. probably the best mov...\n There are too many new styles of the sitcom bu...\n A complete zero out of four. One worst sums up...\n I watched this movie at the first showing avai...\n <br /><br />As a fan of bad movies (and MST3K,...\n In Manhattan, the American middle class Jim Bl...\n This movie is about six men who are assigned t...\n Latcho Drom is a cinematic survey of Gypsy mus...\n I see it when I was 12 year old and I dream to...\n I have just returned from Santa Fe. NM. I visi...\n It was easy to get lost in the simplicity and ...\n I'm not even going to comment on what piece of...\n irritating, illogical flow of events. pretty m...\n It is a rare and fine spectacle, an allegory o...\n This musical was not quite what I expected, fo...\n The Jazz Singer is one of a number of films ma...\n Directed by Jacques Tourneur (Cat People, Out ...\n Hooray for Title Misspellings! After reading r...\n A spaceship in some unspecified future where h...\n Featured in 1955's THE COBWEB is an all star c...\n An hilariously accurate caricature of trying t...\n I'm beginning to see a pattern in the movies I...\n As a teenager, I watched this movie every time...\n On account of my unfortunately not being able ...\n The original The Man Who Knew Too Much brought...\n As was mentioned before in other comments, the...\n Hello, this little film is interesting especia...\n This is halfway to being a top movie. The open...\n \"Stella\", starring Bette Midler in the title r...\n I can hardly believe that this inert, turgid a...\n No way this overly simplistic script, with bas...\n when i first saw this movie i was literally ro...\n ...instead, watch it as a great coming of age ...\n Well...it's about time! Van Damme is back and ...\n What is worth mentioning that is omitted in th...\n I am very impressed with the acting in Comanch...\n Director Alfred Green's melodrama \"Baby Face\" ...\n Yeah, what did I expect? I thought this would ...\n This film does a superb job of depicting the p...\n That's not just my considered verdict on this ...\n In this grim melodrama, Barbara Stanwyck plays...\n \"The Gymnast\" unfolds in short shots and short...\n This is another of those films I can remember ...\n please don't rent or even think about buying t...\n Needed an excuse to get out of the house while...\n Add this little gem to your list of holiday re...\n I only voted it 2/10 mainly because Hitchcock ...\n In its depiction of a miserable Milanese under...\n The best thing I can say about this film is th...\n An interesting premise, and Billy Drago is alw...\n ***SPOILERS*** ***SPOILERS*** There must have ...\n This is species already hatching into a beauti...\n The Three Stooges has always been some of the ...\n The only connection this movie has to horror i...\n What can i say, i have grown up watching Hum S...\n The net is an excellent movie! It's about Ange...\n I took my family to see Barnyard this past wee...\n I usually steer clear of Film Festivals and do...\n I know it's rather unfair to comment on a movi...\n Tediously long dreary cinematic waffle. I coul...\n \"Dangerous Offender\" is the story of a seeming...\n I used to watch this on either HBO or Showtime...\n I rented this movie simply because Rosario Daw...\n I was literally preparing to hate this movie, ...\n This movie is a modest effort by Spike Lee. He...\n <br /><br />I didn't see They Call Me Trinity,...\n A meteor drops from the sky and reawakens a pl...\n This \"film\" attempts to follow the genre of lo...\n After you see Vertigo, then watch Bell, Book a...\n I thought this movie was cleverly written and ...\n David Arquette is a young and naive home secur...\n Version: Universal / Hong Kong Legends R4 DVD ...\n I just finished watching this film and found i...\n Pretentious claptrap, updating Herman Melville...\n I've seen this movie twice already and am very...\n I just accidentally stumbled over this film on...\n There are some great Canadian films. There are...\n I barely remember this show, a little ,but I r...\n Franco films can be divided into 4 categories-...\n For those who still prefer films focusing on h...\n When people ask me whats the worst movie I've ...\n This is complete and absolute garbage, a fine ...\n An apparent vanity project for Karin Mani (who...\n A 1957 Roger Corman non epic in which a sundry...\n It is a strangely powerful and moving experien...\n About as hilarious as 50s British comedy can g...\n Nu Image, UFO and others produce films for the...\n Terence Stamp can carry off anything, but this...\n As a collector of movie memorabilia, I had to ...\n We start all of our reviews with the following...\n The weakest of the 'old' crew Star Trek films,...\n Recension: Angels & Demons<br /><br />The movi...\n This film doesn't know what it wants to be: is...\n Ok, I'm normally pretty open minded about movi...\n I watched this movie with some curiosity. I wa...\n When I first watched this movie, in the 80s, I...\n this movie was definitely the worst movie i've...\n Estevez, Martin Sheen and Kathy Bates are supe...\n It took a loan out film to Columbia for Gene K...\n In the late eighties and early nineties the de...\n Would it be too trite of me to create a review...\n <br /><br />It sucked.<br /><br />I returned t...\n this movie was incredibly stupid with meaning ...\n i bought this in the budget department last we...\n Like one of the previous commenters said, this...\n I went to see this film with low expectations,...\n If you ever hear these three words uttered to ...\n Nothing like a movie about a group of friends ...\n I spotted the DVD on a store near my home, and...\n Based on a Ray Bradbury story; a professional ...\n My original comment on this particular title w...\n Starring: Kelsey Grammar, Rob Schneider, Laure...\n My husband and I are the parents of an autisti...\n What did producer/director Stanley Kramer see ...\n This video rocked! Eddie is one of the funnies...\n I love movies, and I'll watch any movie all th...\n My wife and I couldn't even finish the film. T...\n I watch the show every day and it is very ente...\n ***SPOILERS*** ***SPOILERS*** From its very op...\n Franco Nero stars as Cole a ninja who comes to...\n Documentary content: Amazing man, amazing move...\n I can't believe it! Were they crazy in filming...\n I'm a big Porsche fan, and the car was the bes...\n You gotta wonder how some flics ever get made....\n Star Pickford and director Tourneur -- along w...\n From the late teens to the 1920s, Stan Laurel ...\n I realize it's a small statistical sampling (8...\n Soultaker was written by and starred Vivian Sc...\n When I first saw the ad for this, I was like '...\n I liked the whole set up with Ceasar's Palace,...\n I watched this movie for a project on love. pl...\n I read most of the comments here were everybod...\n ...and it is this film. I imagine that if inde...\n WAR, INC. (2008) **1/2 John Cusack, Marisa Tom...\n 'O Brother, Where Art Thou' is a gleeful retel...\n I loved this movie. In fact I loved being an a...\n There aren't many overcoming-the-odds stories ...\n Roy Rogers and company try to bring \"Sintown\" ...\n What I expected: A rather lame overly-stereoty...\n A girl named Isobel becomes possessed by a dem...\n Whenever I make up a list of the absolute wors...\n Seriously i thought it was a spoof when i saw ...\n A film of high intelligence and activity. As w...\n I don't particularly care from Michael Jackson...\n **SPOILERS** Since the disappearance at sea of...\n (Some Spoilers) Early 1930's educational movie...\n What ever happened to one of the most innovati...\n Hoppity is a charming if slightly phycadelic a...\n This movie was clearly an early attempt for a ...\n I watched this movie every chance I got, back ...\n I endured this film just to satisfy my curiosi...\n This movie was an absolute waste of time. It's...\n Alright if you want to go see this movie just ...\n 1927, and Hollywood had been on the map as the...\n The Good Earth is a great movie!!!Everybody mu...\n Another awful movie from Hollywood. This time ...\n Beware the Scottish Play! In his riveting and ...\n (Caution: several spoilers)<br /><br />Someday...\n This is a very strange series with Dean Learne...\n \"Where to begin, where to begin . . ?(Savannah...\n May contain spoilers.<br /><br />I say that, b...\n This is probably one of the most original love...\n I'm normally a sucker for romantic films which...\n An overlong, but compelling retelling of the f...\n I am a history teacher and overall I was pleas...\n I loved the first Little Mermaid. I know the s...\n High school. Years and decades later, some loo...\n I saw this movie on a night i couldn't sleep, ...\n This tender beautifully crafted production del...\n Born Bad is a well put together crime drama ab...\n A Thief in the Night has got to be the best ou...\n Story of Ireland in the 70/s. This film is a b...\n I saw this movie at the Locarno Film Festival ...\n VERY memorable comedy. It's fun to watch the m...\n This is simply a classic film where the human ...\n *** THIS CONTAINS MANY, MANY SPOILERS, NOT THA...\n Imaginary Heroes, the remarkable work of the t...\n Though I liked On the Town better I really lik...\n No scenario, bad actors (poor Melissa Gilbert)...\n I saw this film last night, a satire of the re...\n Maniratnam, who in India, is often compared wi...\n Freeway Killer, Is a Madman who shoots people ...\n Very slow, dull, enigmatic film. MAybe the kin...\n Count me as being one who is happy to see no H...\n I know, that's not what you expect from a film...\n I don't care how many bad reviews purple rain ...\n This Norwegian film starts with a man jumping ...\n Oh boy ! It was just a dream ! What a great id...\n I have seen the short movie a few years ago. A...\n i really liked this film.it features John Wayn...\n This film, an early William Wellman, has an im...\n Remember when Rick Mercer was funny? 22 Minute...\n The best way for me to describe Europa, which ...\n Unlike other commentaries, I found this film f...\n Routine suspense yarn about a sociopath (Dillo...\n This episode is certainly different than all t...\n I personally liked this movie and am alarmed a...\n I'm not sure why I picked for a borrow from mo...\n This was a superb episode, one of the best of ...\n What was the worst movie of 2003? \"Cat in the ...\n I found this episode to be one of funniest I'v...\n Beat a path to this important documentary that...\n All of you who despaired looking at the emptin...\n forget the over-rated \"Batman Begins, THIS is ...\n If I accidentally stumbled across this script ...\n An entertaining and substantive film, Non-Stop...\n This movie re-wrote film history in every way....\n For those of you out there who have seen this ...\n It saddens me to rate a movie with a lot of my...\n This is a movie I had never even thought of se...\n This film is a great comedy drama. Christopher...\n Joan Crawford had just begun her \"working girl...\n Bad script? Check. Awful effects? Check. Horri...\n I mean seriously what group would sing about a...\n In September 2003 36-year-old Jonny Kennedy di...\n Fortunately for us Real McCoy fans (most likel...\n I watched this as part of a vampire movie mara...\n Ok, when I rented this several years ago I had...\n There have been several comments already on th...\n This movie started slowly, then gained momentu...\n This movie was so horrible...I want to beat th...\n An excellent documentry. I personally remember...\n I remember seeing a clip of this movie on HBO ...\n \"Fred Claus\" somehow avoids becoming this year...\n A rich experience is to be gained from watchin...\n It has been recorded that John Ford made the \"...\n There's enough star power in THE HOUSE OF SPIR...\n Though I had sort of enjoyed THE SATANIC RITES...\n I have always admired Susan Sarandon for her i...\n Hmmm...where to start? How does a serious actr...\n I remember watching Police Squad! when it firs...\n I'm not going to go into too much depth, but S...\n bad acting , combats are very awful , 3-4 seco...\n The movie was very good. I'm an avid mystery f...\n This is a nice piece of work. Very sexy and en...\n Tyra Banks needs to teach these girls that it'...\n I registered for IMDb just to comment on this ...\n This film has possibly, the worst title for a ...\n This movie should have been billed as three mo...\n **** WARNING: here be spoilers **** Why do I w...\n This was the first directing job by Sebastian ...\n First I have to say that I really love Udo Kie...\n I picked this up in the 'Danger After Dark' bo...\n This movie would have been alright, indeed pro...\n A conversation about how Jan-Michael Vincent i...\n Kenneth Branagh shows off his excellent skill ...\n I saw this movie at the 2006 Palm Springs Inte...\n Talk Radio is of course, probably not the most...\n This movie is the biggest waste of nine dollar...\n God cuts himself with a straight razor, afterw...\n It's fun and fast paced, as one falsehood lead...\n This enjoyable minor noir boasts a top cast, a...\n Yes. Watch this movie if you like brave films....\n \"The Snow Queen\" is based on the famous and ve...\n What can I say. A Kamal Hassan movie being hor...\n The plot of 7EVENTY 5IVE involves college kids...\n I just saw \"Valentine\" and I have to say that ...\n Friday the 13th step over! There is officially...\n Kimi wa petto is a cute story about a girl who...\n Much more than ANY other film from that period...\n I know that actors and actresses like to try d...\n Lights of New York was the first all-talking f...\n I think it great example of the differences be...\n Recently, a friend and I were discussing educa...\n Some things just won't stay dead. They just ha...\n This movie is pathetic not because it's poorly...\n There are times I am convinced that The Mikado...\n As an avid fan of the Flashman books by George...\n Remember Greg the Bunny? It was this show that...\n What a bad, bad film!!! I can't believe all th...\n The word Ghilli actually means a small sharp w...\n Ah, the best and funniest movie about female f...\n Very suspenseful, surprisingly intelligent fil...\n The big problem I had with this movie was that...\n Think \"stage play\". This is worth seeing once ...\n I saw this film on television years ago, but h...\n One of my favorite movies, with a very nostalg...\n Everybody seems to compare this to The Matrix ...\n I would say this is a background movie. Play i...\n The Salena Incident is by far the director, Du...\n This movie is such cheesy goodness.<br /><br /...\n This is a great example of what could have bee...\n Done in a mock-documentary style, late 60's su...\n One wonders how the script came to be written....\n Another B-movie for teenagers, based mainly on...\n It's remarkable and quite praiseworthy how wri...\n I'm a big fan of the \"Vacation\" franchise, and...\n I saw this a couple of nights back, not expect...\n The film is not visually stunning in the conve...\n This was a sordid and dreary mess. I needed a ...\n 25 sitcoms had big screen spin-offs. Most of t...\n Powers Booth is hypnotic as cult leader jim jo...\n Where do I start? The box should have been eno...\n it's a super movie!!!! i only seen it once but...\n Elegance and class are not always the first wo...\n Dave is going through a divorce and his mind w...\n In all truth, this really isn't a \"movie\" so m...\n I Love Ernest Goes to Jail. It's one of my top...\n Kevin Kline offers a brilliant comic turn in t...\n Quintet marks the only venture of both Paul Ne...\n Go see this movie for the gorgeous imagery of ...\n I started to watch this movie expecting nothin...\n After too many years of waiting, Anne Rivers S...\n I watched this movie with my mother when I was...\n as can be read in many reviews here it is a mo...\n 1981's Just Before Dawn is one of the best tal...\n This is one of the finest music concerts anyon...\n I had no real expectations going into this mov...\n When I was driving home after work, I bought s...\n Trite and tiring, the one-liners almost made m...\n That's what I kept asking myself while watchin...\n If you have never viewed this film and like ol...\n Though not a complete waste of time, 'Eighteen...\n ******************SPOILER********************S...\n First of all, I have to say that I am not gene...\n no comment - stupid movie, acting average or w...\n I really do fail to see the actual surplus val...\n As part of the celebration of the release of C...\n There are many kinds of reunion shows. One kin...\n Swift's writing really has more in common with...\n Blade is probably one of the best vampire/acti...\n Curiosity led me to this \"masterpiece\". Unfort...\n This is a movie that I watched when I was a yo...\n This movie is told through the eyes of a young...\n This is a love story set against the back drop...\n Most movies about, or set in, New Orleans, tur...\n What a crappy movie! The worst of the worst! T...\n It is to typical of people complaining about s...\n A very funny look at some of Australia's curre...\n What I love about this show is that it follows...\n Father Hood is an entertaining tale of an unwi...\n This movie is simply awesome. It is so hilario...\n If it wasn't for Colin Firth, the movie would ...\n I've never read a good review for \"Vanity Fair...\n There's an underlying current in all the posit...\n You've never seen anything like it. Once the c...\n THE VAN is a simple teensploitation picture ma...\n This has got to be one of the best episodes of...\n What I came away with after watching this movi...\n Barriers seems to be one of those series that ...\n It's not awful but what a waste... Lousy gags,...\n This movie reminded me of the live dramas of t...\n Ah Animorphs. I loved the book series and eage...\n Considering the risk of showing same-sex relat...\n More wide-eyed, hysterical 50s hyper-cheerfuln...\n I've seen worse films. This is bad but at leas...\n I thought Hedy Burress (who managed to escape ...\n One has to take Martin & Lewis like a dash of ...\n First of all, I too was expecting another Hero...\n I must have been only 11 when Mr Peepers start...\n After just 15 minutes into this film, I began ...\n As a recreational golfer with some knowledge o...\n WOW I Love this movie. This is definitely adde...\n It's hard and I didn't expect it... But it's r...\n There was a time when not all animation was Di...\n This is really the only chance to see the magi...\n <br /><br />This movie is by far one of my fav...\n The joy and tragedy of the Christmas Season li...\n I love this movie. Even though I rated it a \"4...\n I got to say that Uma Thurman is the sexiest w...\n What can be said about a movie that makes two ...\n Wrestlemania 6, is an entertaining Wrestlemani...\n Many King fans hate this because it departed f...\n The Pickle was the most underrated film of the...\n Ten out of the 11 short films in this movie ar...\n No plot, crappy acting, and pointless gore.......\n This film is undoubtedly one of the greatest l...\n This movie was funny from START to FINISH. Eve...\n Narratives  whether written, visual or poetic...\n First of all, no one with any law enforcement ...\n In the future, a disparate group of people asl...\n I was going to give it an 8, but since you peo...\n I caught this movie on IFC and I enjoyed it, a...\n I should have known when I heard Anne Rice lef...\n A weird, witty and wonderful depiction of fami...\n Superhero Movie (2008) is the most recent in t...\n Wait... wait... wait... wait... wait... wait.....\n Beginning where it left off, Doctor Who, Rose,...\n I was looking through TV Guide last night and ...\n I have seen a lot of movies. In fact I love B ...\n No, I have not seen the original series and I ...\n With such actors as Ralph Richardson, Raymond ...\n I missed the beginning of the film. I came in ...\n The music is by Stravinsky (and not by stupid ...\n Movies are something you see on Saturday night...\n I would most definitely have to say that this ...\n Those who love the book Jane Eyre as I do (it'...\n This is one of the greatest child-pet movies e...\n This movie is about the crew of a spaceship wh...\n Found this flick in a videostore, it cost $2 t...\n I really enjoyed this movie about a dog who be...\n Störtebeker is truly one of the worst TV mini-...\n Daniella has some issues brewing under her att...\n Paul Schrader and his brother Leonard wrote Mi...\n Yes, it's a SBIF (So Bad It's Funny) classic. ...\n Michael Kallio gives a strong and convincing p...\n Breathtaking at it's best, intriguing at it's ...\n This film was really terrible.<br /><br />Howe...\n When I was a kid it was Lex Barker's time as T...\n I enjoy Ralph Bakshi films (\"Wizards\", \"Cool W...\n I remember watching the BSG pilot. I can descr...\n This movie has a very Broadway feel - the back...\n Not me.. If it came down to it, I could kick a...\n Cinderella is one of Disney's greatest films, ...\n My parents used to rent a lot of horror movies...\n Special effects? Good.<br /><br />Script? Terr...\n I gave this a 3 out of a possible 10 stars.<br...\n I´ve seen this at the Fantasy Filmfest in Colo...\n When it comes to horror movies, I am more than...\n This movie is so misunderstood it is not even ...\n i LOVED THIS MOVIEE well i loved the romance p...\n This film was choppy, incoherent and contrived...\n If one were to return to the dawn of the talki...\n I've watched this movie on a fairly regular ba...\n The Cat in the Hat is just a slap in the face ...\n I'm not going to bother with a plot synopsis s...\n I watched this movie last night and was a bit ...\n Welcome to the Plan 9 From Outer Space of Star...\n An object lesson in how to make a bad movie wh...\n Unlike the many who have posted here, I'm not ...\n I was subjected to this atrocity by my wife, t...\n This movie was supposed to have depicted a 'la...\n I didn't know the real events when I sat down ...\n I'm not going to say too much as this movie is...\n This is not a good film. The acting is remarka...\n The whole exercise is pointless. Why make the ...\n Did you ever wonder how far one movie could go...\n It's utterly pointless to rate this film. It's...\n This movie is such a total waste of time. I ca...\n Considered by almost all the critics to be the...\n I first read \"Lorna Doone\" about 20 years ago ...\n I was actually looking forward to this movie. ...\n I thought this was a really great movie especi...\n I am watching the series back to back as fast ...\n OK, so this film is well acted. It has good di...\n Homecoming; what a HUGE disappointment!! After...\n The third and final Female Prisoner Scorpion f...\n 'Presque Rien' is a beautifully observed portr...\n I saw this movie yesterday on a public service...\n I'm glad that I did not expect too much when I...\n The Woman In Black is fantastic in all aspects...\n While the movie does feel a bit long at times,...\n I had never heard of Leos Carax until his Merd...\n There's so little here of the fantastic Anne R...\n There are movies that are just a different ver...\n Nickelodeon has gone down the toilet. They hav...\n Jesse and Celine (Ethan Hawke and Julie Delpy)...\n I don't understand why the reviews of this fil...\n Hollow Point, though clumsy in places, manages...\n About the baby: Why wasn't big brother assumin...\n The Falcon and the Snowman is based on a true ...\n The only redeeming feature of this movie is St...\n Despite its rather salacious title, this is a ...\n Although its plot is taken from the history of...\n The movie is not halve as bad as people want t...\n It looks like the brilliant team of Shonda Rhi...\n When my 14-year-old daughter and her friends g...\n Okay, I absolutely LOVE Ben Stiller, although ...\n If there was a 0 stars rating i would gladly h...\n This line is a good summary of this movie. If ...\n Words really can't describe how bad this film ...\n Great 1980s Comic Strip comedy set in the Sout...\n I was unsure what to expect from \"driving less...\n I remember this series so well. It was excelle...\n Thomas Capano was not Anne Marie's boss Tom Ca...\n If this had been done earlier in the Zatoichi ...\n This is one excellent Sammo Hung movie. Actual...\n Spoilers!<br /><br />From the very moment I sa...\n The music of Albeniz pervades this film. Once ...\n \"A Fare to Remember\" is a totally derivative, ...\n This animated short is a remake of one of Tex ...\n I had never heard of \"The Clearing\" until I wa...\n In his brief 40 years on Earth, author Jack Lo...\n Tiempo de Valientes fits snugly into the buddy...\n No. I'm not kidding with this one. He was a gu...\n Damp telling of the American Revolution.<br />...\n When at the very start of the film Paleontolog...\n The title is from a passage in the Bible (Deut...\n I saw this film on TV in the UK some 25 years ...\n 108: Tarzan and His Mate (1934) - released 4/2...\n A riotous farce set in the world of glamorous ...\n Deepa Mehta's \"Fire\" is groundbreaking, bold, ...\n This is a complete Hoax...<br /><br />The movi...\n 1999 will go down in history as the year the m...\n This film is completely underrated.<br /><br /...\n I saw this trailer and thought to myself my go...\n Great movie, great actors, great soundtrack! I...\n \"La Bête\" by Walerian Borowczyk is based on th...\n I watched part of the first part of this movie...\n During WWII, there were a bazillion movies cre...\n Evidently lots of people really like this, but...\n This coming from an adult who happened to come...\n Deaf secretary Carla (Emmanuelle Devos) is bul...\n Okay, \"pretty good\" doesn't scream rent me but...\n An Insomniac's Nightmare is the story of a man...\n This is easily one of the worst martial arts f...\n When I first saw this movie I was only a littl...\n Beautifully filmed, acclaimed director Hugh Hu...\n This piece of filth is virtually impossible to...\n Samuel Fuller is an interesting filmmaker, mai...\n If you just watched All Dogs Go To Heaven, and...\n Assy McGee is an out-of-control, hard-nosed de...\n Please do not waste +/- 2 hours of your life w...\n <br /><br />Man, I just cant believe this movi...\n This movie didn't really surprise me, as such,...\n This is a strange, cerebral, surreal, esoteric...\n What crack are you smoking? This movie, while ...\n Sorry, after watching the credits, I thought t...\n After not having much luck at selling his scre...\n This film really misses the mark on most front...\n I can't believe I actually sat through the who...\n Cannibalism, a pair of cinematic references to...\n *spoliers* do not read any further if you have...\n Fidois a very odd film. And in many ways, a ve...\n Another double noir on one disc from Warner Ho...\n This is a weak throw-together of just about ev...\n The film's subject is poignant and very real. ...\n For the love of god please don't see this movi...\n Huge, waddling, grimacing tree trunk menaces f...\n Terry Benedict (Andy Garcia) catches up with D...\n Today, being President's Day, my wife and I ha...\n With a relatively small budget for an animated...\n In Fassbinder's earlier films, his ideas somet...\n This show is beautifully done. When it first c...\n The movie that shoots scenes of a scenic caver...\n I just recently watched Ed Wood Jr.'s autobiog...\n This movie is a joke and must be one of the wo...\n I was looking forward to seeing this movie aft...\n A famous orchestra conductor, Daniel Dareus, s...\n The original Lensman series of novels is a cla...\n Given the acting roles he played in the 1940s ...\n The film-makers went well out of their way to ...\n Enjoyable film that gives you romance, women-o...\n Shepitko is the wife of Russian filmmaker Elem...\n Although this starts out promisingly, a woman ...\n East Palace, West Palace reminded me somewhat ...\n i had been looking for this film for so long b...\n I couldn't help but relish the entire premise ...\n It's painfully clear that all effort in this f...\n Nobody truly understands the logic behind the ...\n It wasn't until I saw Sidney Pollack in the pi...\n Gender Bender sexes things up a bit for the x-...\n I mention that there may be a spoiler here jus...\n Mexican 'classic' was the third entry in the A...\n The most misogynistic movie of all time? Not t...\n 1) Men over the age of 25 that refer to themse...\n My mom and I have just recently become addicte...\n SYNOPSIS The future as seen from 1939 England....\n This movie had potential to be a good little h...\n This movie is pretty predictable nuff said.......\n Quite a lot has been said about this film and ...\n Uninspired direction leaves a decent cast stra...\n The acting was horrible. The special effects, ...\n I watched this movie 11 years ago in company w...\n It kicks you in the stomach. There are other f...\n In an industry dominated by men and in lack of...\n I admit that I almost gave up on watching TV s...\n Brought to you by the following among others:<...\n This isn't the video nasty Night of the Demon ...\n \"The Man In The Moon\" is a pretty good movie. ...\n I have watched this movie on DVD a couple of t...\n I absolutely adore the 'Toxic Avenger' series,...\n foywonder's review of this cheap STV hits the ...\n Creature Comforts in America should have been ...\n This one surprised me.<br /><br />I read a few...\n Way back when I was renting videos for free I ...\n Pretty crazy whodunit featuring an all black c...\n Okay, where to begin. Did you know that the pa...\n I have no idea who these others are but this m...\n This movie sucked ! They took something from m...\n Well here I go with another B industry movie. ...\n I saw this movie by accident while in Paris. I...\n I find this movie the best movie I have ever s...\n let me say first off I didn't go in expecting ...\n 1958. The sleepy small Southern town of Clarks...\n The story of the untouchable who acted like a ...\n I really liked this film about love between tw...\n This was a modern TV classic! The story goes l...\n Not to be confused with the British black come...\n I guess this is the first movie that made me a...\n Thats My Bush is first of all a very entertain...\n This movie is a bad attempt to make original f...\n this is a below average martial arts films whi...\n I can't agree with any of the comments. First ...\n Surface, from the day its teaser first showed ...\n Every once in a while a film comes along with ...\n Having read the book prior to watching this ad...\n I adore the Ln Chaney version of \"Phantom\" and...\n Normally I try to avoid Barbie films, but this...\n This short film certainly pulls no punches. Th...\n Hearkening back to those \"Good Old Days\" of 19...\n I loved this movie. I totally disagree with so...\n The '60s is an occasionally entertaining film,...\n I just saw this movie and it turns out to be p...\n drab morality tale about a high school kid who...\n Lemuel Gulliver (Ted Danson) is a doctor who g...\n There is only one racist joke in this Daffy Du...\n I understand that the budget was low on this f...\n As a Turkish man now living in Sweden I must c...\n I saw this film first in the Soviet Union and ...\n does anyone think that this show actually help...\n Christopher Durang must have been taught by a ...\n This movie was like \"The Disney Channel after ...\n A fine story about following your dreams and a...\n A giant praying mantis is awakened from its sl...\n \"Hollywood Cavalcade\" is a mildly entertaining...\n No, not really, but this is a very good film i...\n I don't remember ever seeing this one before t...\n I went to the movie theater this afternoon exp...\n MY DINNER WITH JIMI is a glimpse at Howard Kay...\n This movie bombed at the box office and in the...\n Set in Japan, Ashura is the story of Demons ta...\n I remember this movie with feelings of sheer ....\n I was curious to know how critics responded to...\n I loved the episode but seems to me there shou...\n Even 20+ years later, Ninja Mission stands out...\n I thought this was one of those really great f...\n Terrible!!! I don't want to be too negative bu...\n Ironically for a play unavailable on film or v...\n This movie has it all, action, fighting, danci...\n *** Possable spoiler but probably not ***<br /...\n I thoroughly enjoyed Gabrielle Burton's story ...\n A cranky police detective suspects a French du...\n This movie, without doubt is the best I have s...\n Cuban Blood is one of those sleeper films that...\n This film concerns a very young girl, Cassie, ...\n The movie begins almost achingly slowly, a \"ro...\n The name of Bad Company's greatest hits album ...\n Slasher sequel (fourth SLUMBER PART MASSACRE f...\n I haven't seen this, & don't plan to see this ...\n (48 out of 278 people found this comment usefu...\n I say \"flick\" because this doesn't deserve the...\n I think this is a lovely family movie. There a...\n What an awful movie! The Idea of robots fighti...\n Awlright, damn it, the MooCow will grudgingly ...\n By now you've probably heard a bit about the n...\n In a far away Galaxy is a planet called Ceta. ...\n Wonderful songs, sprightly animation and authe...\n I saw this movie a million years (5 years to b...\n I saw a trailer for this on Afro Promo, the co...\n I have just seen Today You Die. It is bad, alm...\n Since many other users have already explained ...\n Was this the greatest movie that I have ever s...\n This movie was fun! Especially if your between...\n It is extremely rare that I see a movie from 1...\n Man I loved Ocean's 11.<br /><br />Smart movie...\n As an native of Bolton, this film has obvious ...\n I wasn't expecting much, and, to be honest, I ...\n I couldn't even sit through the whole thing! T...\n For me, a ten-star film is one that never dies...\n Half Past Dead, starring Steven Seagal in the ...\n This is one of the worst movies i've ever enco...\n You can only describe this with one word and t...\n I'm somewhat of a fan of Lynche's work, so I w...\n I had to do a search on the actresses to find ...\n I loved this film. It manages to make the char...\n A female vampire kills young women and paints ...\n There is a story (possibly apocryphal) about a...\n Riding Giants is an incredible documentary det...\n I have been getting into the Hitchcock series ...\n \"Hardbodies 2\" is harmless, aimless and plot l...\n This has to be the most brutally unfunny \"come...\n A few years back the same persons who created ...\n Please don't waste your money on this sorry ex...\n Okay, we've got extreme Verhoeven violence (Al...\n This is absolutely the worst movie I've seen a...\n This movie is exciting,daring and the music is...\n The hero John Keem is going after some drug de...\n When I tuned in to my local PBS station last n...\n I absolutely love this game to death. Ever sin...\n This is about a mad scientist who creates a ha...\n This movie is bad news and I'm really surprise...\n I thought it was an original story, very nicel...\n I recently had the pleasure of meeting Mr. Hau...\n In the areas where they overlap this fine movi...\n i wasn't sure whether to laugh or cry. Porrett...\n I don't know why all the previous comments are...\n The 1990s was a great decade for British sitco...\n 'Major Payne' is a film about a major who make...\n I saw this film at the International Film Fest...\n This ensemble piece about adults who return to...\n Everything about \"Choose Connor\" was top=drawe...\n Going into this movie, I had heard good things...\n The lovely Danish actress Sonja Richter steals...\n I think that this is possibly the funniest mov...\n I have watched every version of this play that...\n My comment is for the Russian version of Space...\n Not a bad word to say about this film really. ...\n After 30 minutes..mostly fast forwarding, dele...\n They do... Each sequel is worst. You, who thin...\n This movie was pretty good. The acting was gre...\n \"There are some things you just don't do\" so s...\n I watched this film early 70's.It is the best ...\n Having seen, and loved this film in Australia,...\n I wish I had my rental money back from this pi...\n Do NOT avoid this movie. Simply because it is ...\n I saw this film on the A&E channel this past w...\n Dr. Sayer(Philippe Leroy), a wealthy physician...\n Some of the acting was a bit suspect. I rememb...\n Saw this today with my 8 year old. I thought i...\n *Minor Spoiler* <br /><br />Inhabited isn't sc...\n I recently viewed Manufactured Landscapes at t...\n A huge hit upon release with Australian audien...\n RKS films always have been commercial films wh...\n This is an excellent movie with a stellar cast...\n A remake of the superb 1972 movie of the stage...\n It seems to me that a lot of people don't know...\n This final Voyager episode begins 23 years in ...\n I loathe, despise, and hate this film with a p...\n Great British director Christopher Nolan (Mome...\n I am a Sociologist/Anthropologist specializing...\n John Parrish is an ex Union officer who plans ...\n I chanced upon this movie because I had a free...\n Although I agree that it's a good but not grea...\n This is the worst italian movie ever, quite po...\n So your bairns are away on a sleep-over ? The ...\n I'm grading this film on a curve, in other wor...\n Being a fan of the first Lion King, I was defi...\n Over-powered mobile suits that can annihilate ...\n I cannot comment on this film without discussi...\n This film is a great fun. I recommend you watc...\n The movie was very sweet and heartwarming! I c...\n Paperhouse is the most moving and poignant fil...\n And also a wonderful beginning, a real quick s...\n I am surprised that there is confusion over th...\n Such a masterpiece as the first of these two S...\n As a physicist, talk about blackholes and cosm...\n This film has a special place in my heart as t...\n This one of those social dramas that WB knew h...\n I enjoyed this film and after it finished it s...\n At first glance of this mini... I was a bit di...\n It's amazing to see how Nikhil Advani manages ...\n It was a Sunday night and I was waiting for th...\n Like all of the very earliest films, this \"mov...\n This film is stale, and misses the mark. It is...\n By far this has to be one of the worst movies ...\n I'd just like to say that i've seen this film ...\n The big problem is where to begin as this movi...\n Weak Bobby \"Pineapple Salsa\" Flay and Mario Ba...\n The first time my best friend and I sat down t...\n I haven't seen this movie in a while, so I'm a...\n Live action version of Dragonball via Taiwan.<...\n My favorite quote from Crow was, when the car ...\n This film is cringingly bad. You can tell that...\n Be warned! <br /><br />This is crap that other...\n The most impressive thing about 'Anemic Cinema...\n An American woman, her European husband and ch...\n Films about the mundane are often the most int...\n Josh Hartnett's dead eyes, the thick writing o...\n At least the jingle by Tim Finn was melodic. R...\n If you've ever seen the trailer for the film \"...\n I'm a Don Johnson fan, but this is undoubtedly...\n Thank god ABC picked this up instead of Fox. T...\n I didn't buy this, I didn't rent this, it was ...\n I caught this movie on local t.v. at about 4:3...\n To be honest, this film is another in a series...\n This is one of those movies that you and a bun...\n When it first came out, this work by the Meyse...\n *spoiler alert!* it just gets to me the nerve ...\n Ohhhh MAN this movie is awful!!<br /><br />Thi...\n I recently purchased Lost Horizon on ebay, hav...\n Gayniggers from Outer Space is pretty much sum...\n I really wanted to love this film. I have read...\n I first saw this movie back in 1994 or '95 dur...\n I was blown away when I saw \"The Best Years of...\n I will admit that I did not give this movie mu...\n A wonderful film to watch with astonishing sce...\n I watched this movie on LOGO television today....\n This is one of the best crime-drama movies dur...\n How Irish critics rave about this movie is bey...\n Taste is a subjective thing. Two people can wa...\n 80's sleazy (glam)rock is like 90's house musi...\n What we have here is a film about how the purs...\n ... and in *no way* as clean, logical, and und...\n I loved this movie. Not because of the romanti...\n I hardly know where to begin in writing about ...\n One of my all-time favourite movies. Nothing c...\n The film, a Universal release of a Protelco-ML...\n THE YOUNG VICTORIA is a elegantly costumed and...\n I guess by the time I saw this episode, I had ...\n One of the best comedy series to ever come out...\n Everybody loves to see a really bad movie some...\n The last of the \"Airport\" sequels. This has Al...\n \"Throw Momma From the Train\" is a simple dark ...\n I was a huge fan of the original Robocop.<br /...\n Even if you're not a big Ramones fan, Rock 'N'...\n Unremarkable and unmemorable remake of an old,...\n This is a skillfully crafted piece of cinema t...\n This flick is a waste of time.I expect from an...\n Walter Matthau can always improve a mediocre f...\n When I saw this movie in the theater when it c...\n I enjoy movies like this for their spirit, no ...\n One night I was waiting for my friends to come...\n This was one of the most dishonest, meaningles...\n If you like to get a couple of fleeting glimps...\n jeez, this was immensely boring. the leading m...\n I saw this movie at the Edmonton International...\n Naturally, along with everyone else, I was pri...\n A group of evil businessmen need to knock down...\n In April of 1965, CBS broadcast the first of B...\n I really enjoyed this both times I watched it....\n This isn't one of those reviews about poor spe...\n \"In 1927 a young man, alone in a single engine...\n Rules of Engagement is one of the best documen...\n The goal of any James Bond game is to make the...\n This movie had it all,action,comedy,heroics,an...\n Perhaps I'm one of the only avid horror fans w...\n The Mummy's Curse is the last in the series of...\n I saw the movie in 1972, and like other people...\n I bought Dark Angel seasons 1 & 2 two weeks ag...\n Sadly, the print of the film we were going to ...\n I originally watched 8 simple rules on the Dis...\n This is a forgotten classic of a film, and Har...\n So we saw this on DVD at our apartment here in...\n This is the forty minute film that introduces ...\n I have mixed emotions about this film, especia...\n Steven Seagal's intent is to be commended, and...\n This is one of my personal favorites, a rare l...\n Othello is set to burn the eyes of the viewers...\n Chayanne is beautiful enough, Vanessa is beaut...\n I first saw this movie with my fiancée many ye...\n This guy has no idea of cinema. Okay, it seems...\n Born Again is a sub-standard episode from seas...\n When a film is independent and not rated, such...\n THE. WORST. FILM. EVER. MADE.<br /><br />After...\n I've seen my fair share of badly thought-out e...\n This is such a great movie to watch with young...\n This movie was horrendous... It had absolutely...\n I had the pleasure of attending a screening of...\n Watching some of the sequences (err, the entir...\n One IMDb reviewer calls Eaten Alive a passable...\n Where was his critique of democratic administr...\n Once upon a time in the mid 1990s I used to wr...\n I just purchased and viewed the DVD of this fi...\n When my own child is begging me to leave the o...\n The title says it all.<br /><br />I'm not a fi...\n This movie really, i mean REALLY, sucks. Its g...\n I must admit that at the beginning, I was sort...\n Effect(s) without cause is generally not possi...\n Norm(an)ally I don't mind remakes. There are s...\n This landmark film can now be seen in two diff...\n Lazy writing, bad acting and wooden direction ...\n Mary Tyler Moore and Valerie Harper still can ...\n Flipper is a nice heartwarming movie for whole...\n I loved it! Fred MacMurray is wonderful as Ski...\n I've been a classic horror fan my entire life....\n Amazing performance from Simon Pegg who just g...\n Delightful! It never pretends to be a masterpi...\n Chris Rock deserves better than he gives himse...\n The Ghost Train is a treat to those who apprec...\n I have not seen many low budget films i must a...\n Perhaps it's about time we declare 2007 to be ...\n The book, while not particularly great, was de...\n It just seems to run true to form, any movie s...\n I've tried to remember the name of this movie ...\n I watched this film awhile ago and the only th...\n EVAN ALMIGHTY (2007) ** Steve Carell, Morgan F...\n *SPOILERS INCLUDED*<br /><br />Alfred Hitchcoc...\n Don't know if this contains any spoilers or no...\n Well, I have to say, this movie was so bad tha...\n C.H.O.M.P.S. is very much like any number of c...\n Can a film be too faithful to the book upon wh...\n Just a few words.... This movie really sucks. ...\n An independent feature can now be seen as both...\n Yes, I had the misfortune of watching this fil...\n What can I say? This was hands-down the worst ...\n Yes, I realize that half a dozen other reviewe...\n The operative rule in the making of this film ...\n First of all this movie starts out on a really...\n I admit, I was taken in by the provocative sti...\n Did you ever watch a really bad movie and get ...\n I have just seen this film, and fallen in love...\n Oh, my. Poor Jane must have done the old rolli...\n One of the best ever. Direction, fotography, a...\n This is an above average Jackie Chan flick, du...\n This is a must see for anybody who loves thril...\n Hi<br /><br />my name is Jessica, i'm Italian!...\n Michael Bassett's film 'Solomon Kane' (based o...\n \"Fanfan la tulipe\" is still Gerard Philippe's ...\n Much has been written about Purple Rain, the a...\n John Travolta, the biggest honkeytonk in the w...\n I, as a teenager really enjoyed this movie! Ma...\n Well it is a good movie. However, you have to ...\n Intergalactic criminal Kol (Ross Hagen) has be...\n by Dane Youssef <br /><br />\"Coonskin\" is film...\n Otto Preminger's Dana Andrews cycle of films n...\n The London Underground has something inherentl...\n There isn't much to say about this film, it is...\n Victor Sjöström's \"Körkarlen\" plunges the view...\n I rated this a ten just because I find it so i...\n As with most of the reviewers, I saw this on S...\n Kate Beckinsale is as good if not better than ...\n I saw this performance on TV and taped it. My ...\n Noel Coward is perfectly cast as a suave, vain...\n Things to Come is an historic film. Along with...\n After 7 years of watching that dreadful nonsen...\n Jennifer's Shadow is set in Argentina & starts...\n The main portion of this lightweight musical s...\n There I was sitting alone in my flat on a Satu...\n I know many people have a special fondness for...\n <br /><br />Entrails of a Virgin is so bizarre...\n This movie had terrible acting, terrible plot,...\n Even for the cocaine laced 1980's this is a pa...\n This film exhibits artful cinematic techniques...\n this movie is the worst ive seen.. nicole kidm...\n Ocean's Twelve: just plain stupid, bad and not...\n I remember vacationing in Florida when this mo...\n Horrible Script, which was apparently directed...\n I didn't think it could be done, but something...\n I became a fan of the TV series `Homicide: Lif...\n What did the director think? Everybody who has...\n This film is the greatest ninja film ever made...\n I first saw this film when i was about 13. It ...\n I agree with one of the other comment writers ...\n I might not have been the biggest Blair Witch ...\n America. A land of freedom, of hope and of dre...\n The original movie, Man From Snowy River, is o...\n The brands in this film, like Suit Supply, tak...\n I turned this off within the first five minute...\n This film is a perfect example of the recent c...\n <br /><br />This movie (not a film -- clearly ...\n Just as \"ITS A MAD, MAD, MAD, MAD WORLD\" is at...\n I keep watching this movie over and over and o...\n During the 13 years of schooling I had from Ki...\n It is so refreshing to see a movie like this w...\n I should say at the outset there are many, man...\n I have to say, I loved Vanishing Point. I've s...\n As B movies go, it was well above average (I w...\n And I love it!!! Wonder Showzen will pick up a...\n The film My Name is Modesty is based around an...\n The premise of this movie, of a comedian talk ...\n PERHAPS in an attempt to find another \"Hot Pro...\n A bunch of popular high school students play a...\n Horrible writing, directing and acting! The wr...\n German filmmaker Ulli Lommel has managed a tas...\n Although critically maligned, Johnny Dangerous...\n This is probably the best horror film made sin...\n This is not the kind of movie that really meri...\n Truly a great film... I stumbled onto it at th...\n Like with any movie genre, there are good gang...\n I have in the past loved Tim Burton. I loved E...\n \"When I die, someone will bury me. And if they...\n Many horror fans complain that horror has scar...\n This movie was packed pull of endless surprise...\n I first saw this in the theater in 1969 when I...\n Where to start? OK, don't compare this film to...\n I am a huge fan of David Lynch. This film, how...\n At least the under ten year old set will stay ...\n Like most other reviewers I have first seen th...\n THE ATTIC starts off well. The somewhat dreary...\n You can debate Prince's acting talent, or even...\n Beginning in 1942, the Sherlock Holmes charact...\n Oh but this is woeful. One good actor after an...\n This film is one of my fondest childhood memor...\n This film was reeeeeeallyyyy bad! Was it meant...\n After the suicide of his father, Charlie 'Kid'...\n A very high-standard Columbo story which was a...\n This is a simple episode ad so far after watch...\n Because of all the negative reviews of this fi...\n I had high hopes for this one after reading th...\n It's not just that this is a bad movie; it's n...\n This is a new Barbie movie. The graphics were ...\n You ever get that itch to just kill an hour or...\n Last week on Friday, I went to see \"Snakes on ...\n I've read all the Dave Robicheaux novels and c...\n I saw this when I was twelve. It was the movie...\n The box to this movie totally misrepresents it...\n This is the worst movie I've ever seen. Boring...\n I have always been keen on watching Hong Kong ...\n When I first heard about this series on AnimeT...\n Joseph H. Lewis was one of the finest director...\n inspite of many movies dealing with great arti...\n One of the more sensible comedies to hit the H...\n This review applies for the cut of the film th...\n I read Angels and Demons about 3 years ago, an...\n Ever since I first encountered the Divine Ms M...\n This movie was disappointing. After 15 years, ...\n If one sits down to watch Unhinged, it is prob...\n What is he supposed to be? He was a kid in the...\n A made for television version of the Heart of ...\n The Lion King 1 1/2 is a very cute story to go...\n Having read most of the comments I feel like I...\n Having reviewed 3 of the 4 Perry and Croft sit...\n \"Drawing Restraint 9\" is a kind of movie one e...\n 20 Years later and this movie still has echoes...\n I love the comics. Although I do have problems...\n Take your video camera, turn out all the light...\n on the contrary to the person listed above me ...\n There no doubt in one mined that this movie is...\n Meek, tiny, almost insignificant. Polanski fin...\n Nice doco Stuie! <br /><br />Even though it di...\n This is a great story of family loyalty which,...\n Our Song is a marvelous example of passionate,...\n Pot-seeking pre-teen Joshua Miller (as Tim) th...\n \"National Lampoon Goes to the Movies\" is the w...\n This story is a familiar one in the long-runni...\n This movie is not based on the bible. It compl...\n This film was enjoyable but for the wrong reas...\n Men In Black 2 was a real disappointment for m...\n Mesmerizing, breathtaking and horrifying, this...\n This movie was awesome, if you want a movie wi...\n Having Just \"Welcomed Home\" my 23 YR old daugh...\n A Mexican outlaw (Tomas Milian) steals gold fr...\n I Would have to disagree strongly with the pre...\n 9/10- 30 minutes of pure holiday terror. Okay,...\n I rented this movie without having heard (or r...\n Great little thriller. I was expecting some ty...\n CRAP! I accidentally watched this film-thinkin...\n IQ is a wonderfully original romantic comedy t...\n I'm not a regular viewer of Springer's, but I ...\n Although I'm grateful this obscure gem of 70's...\n A mixture of Alien and Ghost Busters?<br /><br...\n When I first saw a glimpse of this movie, I qu...\n It was agonizingly bad movie. It will eat your...\n This game was terrible. I think they worked to...\n There are movies, and there are films. Movies ...\n Undoubtedly the funniest movie I have ever see...\n This is the best of the 43 films that Rainer W...\n The real story (took place in Kansas in 1959) ...\n They should have called this movie: \"Adopted M...\n I am a student of film, and have been for seve...\n I'll dispense with the usual comparisons to a ...\n \"And All Through the House\" is a special crypt...\n This is a disaster-movie, in both meanings of ...\n Hiya folks,<br /><br />Well, this movie sucks ...\n Hidden Frontiers-is more than fan fiction- it ...\n The comparison is perhaps unfair, but inevitab...\n In the Tower of Babel installment of the mini-...\n Yeah, I know my title sucks. I couldn't think ...\n An absorbing exploration of virtual reality, a...\n this is one amazing movie!!!!! you have to rea...\n Mention Bollywood to anyone with a slight fami...\n Harem Suare is the best film I saw in the year...\n All dogs go to Heaven is one of the best movie...\n I loved this show when it aired on television ...\n CB4 was awful, but it may have given Cundieff ...\n This is one of the worst action films I have e...\n MASTER PLAN: have the winning team in a deadly...\n This is my favorite Mel Brooks movie because i...\n Any true wrestling fan would have to consider ...\n I have done some research on Ed Gien, and I ha...\n Why is there so much angst among the IMDb revi...\n I found a DVD of \"I Dream Of Jeanie\" in the $1...\n This movie is one of the worst horror movies I...\n Normally, I don't like Chuck Norris films. I a...\n I have to agree with everyone else that has po...\n The title role of this western is played by Ro...\n I really enjoyed this movie. I am a single dad...\n Jazz aficionados will treasure this classic sh...\n I don't see what the problem is with SOME peop...\n There is no way to avoid a comparison between ...\n 'Captain Corelli's Mandolin' is a fantastic fi...\n My only regret is that one cannot grade a movi...\n When Rodney Dangerfield is on a roll, he's hil...\n Its a space flick, or at least i think it is. ...\n What a disgrace! I was checking this out hopin...\n Love In Limbo is my all-time favoirite movie. ...\n Eichard Gere & Diane Lane back again in anothe...\n This Spanish-Italian co-production tells an in...\n Actually, I have more a question, than a comme...\n The scientist Charles and his wife (or assista...\n This BRASS EYE special PAEDO-GEDDON was swampe...\n This movie was excellent for the following rea...\n This movie does contradict the first one as fa...\n I didn't know what to make of this film. I gue...\n I had seen this movie before, but I could not ...\n Imagine every stereotypical, overacted cliche ...\n The story-line was rather interesting, but the...\n While the songs and dance numbers, in general,...\n Truly I Love Lucy as well...comedic genius yes...\n Does anyone know the exact quote about \"time a...\n The 1960's TV series Bewitched owes it's idea ...\n *Can anybody tell me WHERE is the COMEDY ??!! ...\n Someone(or, something thing..)is leaving punct...\n Let's get it clear from the start: I am an ass...\n This Belgian film, directed by Tom Barman, sin...\n Reading some of the comments on the message bo...\n Although a \"woman's story,\" I found this still...\n An old family story told to two young girls by...\n Like wearing a hair shirt. Positively, absolut...\n Ugghhh!!! This is exactly the sort of Pre-Code...\n The original title means \"The Birth of the Oct...\n I thoroughly enjoyed Bilal's graphic novel whe...\n Somehow, CHANGI lost out in the AFI Awards to ...\n Hunt for Justice is about the setup of Slobado...\n This film is the most romantic in years. David...\n A young cat tries to steal back his brothers s...\n Well, not much really to say about this. But i...\n \"Subconscious Cruelty\" has to be one of the mo...\n This movie should be called \"plan 9 from josep...\n The essence of this film falls on judgments by...\n All I can say after watching the DVDs of the f...\n Certainly one of the most hilarious films of a...\n I was in physical pain watching the eyes of th...\n Blade is a fantastic action/thriller that keep...\n Another turgid action/adventure flick from the...\n A single mother(Diane Keaton) finds herself wo...\n Before I give Spike Lee's mess of a film SUMME...\n It's obvious that all of the good reviews post...\n This movie is horrible. Everything in it has b...\n In some ways, the concept behind the storyline...\n How on earth were these guys given funds to ma...\n What a great gem this is. It's an unusual stor...\n I went to see it in hopes of some good old fas...\n Some people may remember Ms. Russell from film...\n One should have the right to expect from peopl...\n For a movie that gained so much recognition an...\n Good performances can't save this terrible scr...\n In what appears an attempt to mix drama and co...\n In my opinion, this is an absolutely romantic ...\n Undoubtedly the best heavy metal horror item m...\n I like movies about morally corrupt characters...\n Obnoxious Eva Longoria dies on her wedding day...\n With no affinity towards any type of filmmakin...\n This is a below average \"whodunit\" with the cl...\n Possible spoilers re: late-appearing cameos <b...\n I am from Texas and my family vacationed a cou...\n This movie started out good, i felt like i was...\n Although the actors were good, specially Fritz...\n This inferior sequel based by the characters c...\n This is a polarising film. People either love ...\n Pop quiz: you're a part of the modern armed fo...\n I have seen just about all of Miyazaki's films...\n I liked this movie because it told a very inte...\n Fashionably fragmented, yet infuriatingly half...\n The premise to this movie was one which focuse...\n This movie surprised me. Some things were \"cli...\n Because that's what Hell Ride pretty much is. ...\n After losing the Emmy for her performance as M...\n A wonderful semi-humorous homage to Expression...\n For some reason, I always enjoy movies that pe...\n If you're a \"child of the Eighties\" like me, y...\n I am not a very good writer, so I'll keep this...\n This starts off in Pennsylvania in 1913. A bun...\n After Highlander 2 (which I am still in denial...\n Well...I like this movie first of all because ...\n Surprisingly good early effort from Alfred Hit...\n I guess I've seen worse films, but that may be...\n A horrendous film, ill-conceived and crude. Th...\n \"the day time ended\" is an incredible picture....\n Another detailed work on the subject by Dr Dwi...\n If you like to watch movies because they are p...\n I just came from seeing this movie and decided...\n I have nothing more to say but it was awful. I...\n I enjoyed every moment of this beautiful film ...\n This was a very gritty movie about anti-semiti...\n Now this is a movie I really dislike. It's one...\n This is another one of Hitchcock's highest rat...\n Riggs and Murtough are back but the magic of t...\n I just love this show.It's so funny and cool.K...\n Man, are you serious? Did you read the book or...\n ...And I never thought a movie deserved to be ...\n This is a very funny Ealing comedy about a com...\n This movie was charming. An accountant wants m...\n This movie beats everything out there. Well, d...\n First of all,the whole idea of remaking a clas...\n Nightbreed is definitely my most favorite movi...\n Even if you could get past the idea that these...\n Got back from Morocco then, where my dad was a...\n This is a bit long (2 hours, 20 minutes) but i...\n The plot of \" Astronuat returns to Earth as a ...\n Dissapointing action movie with an interesting...\n I haven't seen anything this bad since I walke...\n Another one that slipped by the radar of most ...\n From time to time it's very advisable for the ...\n I received a copy of this film from a friend f...\n If you haven't seen this, it's terrible. It is...\n Director / lead actor Dutcher revels in this l...\n Of all the major 30s star actresses, Miriam Ho...\n Having borrowed this movie from the local libr...\n A very interesting documentary - certainly a l...\n Chop Shop. Written and directed by Ramin Bahra...\n As a fan of the old Doctor Who, and after the ...\n What begins as a fairly clever farce about a s...\n I wandered into Blockbuster with a friend the ...\n The story is derived from \"King Lear\"; the set...\n This film is outstanding and wonderfully score...\n I don't think I will include any spoilers but ...\n A noted cinematic phenomenon of the late eight...\n This is a pretty decent example of film noir. ...\n I really liked this film - not so much for the...\n OK, so it was written in 1996, before 9/11, so...\n I never figured out what the attraction of Kar...\n Cuba Gooding Jr. is a secret service agent who...\n Having read the other comments on this film, I...\n To be clear from the get go, 'The Bagman' is v...\n I know Jesse Franco is responsible for a wide ...\n I'm guessing that the folks talking up this dr...\n *Contains some spoilers* This movie is cheesy ...\n Not knowing a great deal about the Truth and R...\n People forget that there have been several Kin...\n What is so taboo about love?! People seem to h...\n Before launching into whether this film is wor...\n This film is a completely inaccurate depiction...\n As a big fan of the original film, it's hard t...\n I bought this movie because of Raquel Welch. S...\n It's hard to know what was going through Per K...\n \"Purgatory Flats\", shown on cable recently, is...\n Tu pa tam is one of the worst movies I've ever...\n I watched this with great trepidation, and my ...\n This movie tries its darndest to capture that ...\n \"Capt. Corelli's Mandolin\" is an old fashioned...\n I first saw this at a foreign film festival. I...\n Cactus Flower is what I call a \"pizza movie\" -...\n First of all I dunno if I was supposed to use ...\n I don't think the world was ready for this fil...\n The film is severely awful and is demeaning to...\n Rodney Dangerfield isn't the main character of...\n I bought this on DVD for my brother who is a b...\n I have yet to read Shirley Jackson's novel, so...\n I can just about understand why some people mi...\n I went to see this movie to kill some time. I ...\n This is, ostensibly, a movie about multiple gr...\n In 1979 Lucio Fulci released his film Zombi. H...\n One would have expected Hitchcock's return to ...\n This one is bad. A really bad and boring crime...\n Leland Fitzgerald (Ryan Gosling) is sent to ja...\n This one acts as a satire during the women's r...\n It was sad that COMMITTED lasted only two week...\n People, please don't bother to watch this movi...\n The first half hour of \"Homegrown\" was rather ...\n HLOTS was an outstanding series, its what NYPD...\n THE BOX (2009) * Cameron Diaz, James Marsden, ...\n The Regard of Flight, written and performed by...\n One night on an independent channel famous for...\n I just wanted to inform anyone who may be inte...\n The only explanation I can muster as to why th...\n It is real easy to toast, roast, flay, and oth...\n After having seen The Lost Child for quite a n...\n This is truly a documentary of love about a fa...\n An intriguing premise of hand-drawn fantasy co...\n The worst movie ever?? HARDLY!!! This is one o...\n This was a highly-hyped movie prior to its rel...\n This movie is based on the true story of Chris...\n I saw this film in Wales in July. It deals wit...\n This is a totally awesome movie! If you haven'...\n When I heard about \"Hammerhead\" being released...\n First half of the movie scared the hell out of...\n After 21 movies and three years of working in ...\n Here in Australia Nights in Rodanthe is being ...\n Sebastian Cabot is a rich jerk who wants to bu...\n I really like Kinski he is a great actor. I've...\n If you wish to have a truly traumatic experien...\n A brilliant and sensitive movie with interwove...\n My mother took me to see this film as a child ...\n Although the movie takes place at an \"Ivy Leag...\n Emory is a Cincinatti steel worker like his fa...\n I will admit I possibly missed tiny moments wh...\n All you need is great house, a babysitter and ...\n Whenever a Columbo story deviates from the fam...\n I notice from the comments that most of the pe...\n This was a disgrace to the game FarCry i had m...\n First, I don't see how the movie is on any \"be...\n I really liked this quirky movie. The characte...\n what the hell was the point of this dull movie...\n Being a huge fan of the Japanese singers Gackt...\n I am a massive fan of the LoG. I thought the f...\n The director has no clue. I know ... That is t...\n \"House Of Evil\" aka \"Dance Of Death\" of 1968 i...\n In August Days/Dies d'agost Marc Recha has giv...\n A good story, well-acted with unexpected chara...\n Never cast models and Playboy bunnies in your ...\n I totally agree with the review by a reviewer ...\n I love the movie. It brought me back to the be...\n How can anyone argue the fact that Urban Cowbo...\n First, this was a BRAVE film. I've seen Irreve...\n yes i have a copy of it on VHS uncut in great ...\n Like a very expensive Buffy episode peppered w...\n Most movies from Hollywood seem to follow one ...\n This oddity contains Bunuel-like touches, but ...\n Don't get fooled by the 'awards' and the comme...\n Although many have mixed feelings about this l...\n **SPOILERS AHEAD**<br /><br />It is really unf...\n The film version of 'Rising Damp' came out two...\n This movie was never intended as a big-budget ...\n I have just finished watching this film for th...\n When I first became a father about 5.5 years a...\n A variation of the same plot line was used in ...\n Guest from the Future tells a fascinating stor...\n Tim Burton the man behind the original Batman ...\n This movie bewilders me. It may be that I'm ju...\n If you want to see a movie that terribly mixes...\n When this first came out, my dad brought it ho...\n Twin brothers separated at birth (Due to the d...\n While the premise behind The House Where Evil ...\n I came across The Last Stop one day at a video...\n Niñas Mal is not a movie is a bad episode of a...\n \"Inuyasha \" was awful . This show was incredib...\n I love this film and it is such a wonderful ex...\n Wow...as a big fan of Larry McMurtry western t...\n This as the first of the Ma and Pa Kettle flic...\n The eighties produced a lot of gory little hor...\n How could I possibly pass up the chance to see...\n This film has recently been televised by Turne...\n What kind I say about this movie. well for sta...\n Joline (Heather Graham) married Carl (Luke Wil...\n Absolutely fantastic! Whatever I say wouldn't ...\n When a movie like \"The Dukes of Hazzard\" bring...\n Rossini once described rival composer Wagner's...\n A beautiful film about the coming of early sil...\n Well, I didn't know what to expect from 555. M...\n Legend of Zu is possibly the most exciting mov...\n Rather then long dance sequences and close ups...\n I just went to a screening of the film during ...\n Out of the first five episodes of Hammer's sho...\n The Muppet Movie <br /><br />directed by <br /...\n CONTAINS SPOILERS!<br /><br />I saw an advert ...\n I completely disagree with the other comments!...\n Filmatography: Excellent, nice camera angles (...\n Just thinking about the movie, i laugh to myse...\n I agree with with of the messages on here that...\n At first this looked like a boring comedy like...\n When I saw it for the first time I was really ...\n I really liked this picture, because it realis...\n As this happens to be one of most favorite nov...\n The Cure is an amazing film...So suspenseful a...\n This movie seems to start in the middle, intro...\n One of the best \"Amitabh comeback\" movies I li...\n An excellent and accurate film... McGovern tak...\n I was surprised that the makers of this movie ...\n Totally un-funny \"jokes\" that fall flat, amate...\n Apparently most viewer knows nothing about the...\n When I heard the film was to be released and t...\n This is one of the best TV movies I have ever ...\n Low budget junk about bloodthirsty cultists in...\n In the end credits of \"Shadows\", after we read...\n \"The Last Wave\" is one of those movies that re...\n In the very first episode of Friends, which ai...\n This is a very dark and intriguing horror type...\n Following the release of 'Snow White and the S...\n Pialat films people in extreme emotional situa...\n I absolutely loved this film... So much emotio...\n Having grown up in Texas, and less than 15 mil...\n It's amazing that this no talent actor Chapa g...\n By rights, there should never have been a \"Fir...\n I saw this cartoon accidentally on television ...\n This is without a doubt the greatest film ever...\n I experienced Nightbreed for the first time on...\n Short Version: Seed isn't worthless. It's just...\n This wartime sitcom written by Jimmy Perry and...\n I just finished watching \"El Otro\". I have alw...\n I rented the video of \"The Piano Teacher\" know...\n Man, I loved this movie! This really takes me ...\n While it certainly wasn't the best movie I've ...\n This is easily my favourite film. A tragic rom...\n After two terrorist attacks in Europe, one in ...\n Despite all of the comparisons to House of Fra...\n The title has many meanings - the boxing ring,...\n I saw \"Heaven-Ship\" (\"Himmelskibet\") at the 20...\n This documentary on schlockmeister William Cas...\n After finally viewing this movie in its entire...\n ASCENDING to power in 1933, Hitler and his \"Na...\n and I have seen a lot of films. I saw this in ...\n This movie was strange mainly because the plot...\n Robin Williams does his best to combine comedy...\n I have loved this movie ever since it's debut ...\n Apparently the film has a harsh anti-Bush mess...\n GUTS OF A BEAUTY is a bit better than its pred...\n This is a hilarious film. Burt Reynolds is a N...\n By Jove, what an unholy mess! Revenge, incestu...\n This type of show is not supposed to happen on...\n They loved him up and turned him into a horny ...\n Not that I want to be mean but this movie real...\n This movie stinks. The stench resembles bad co...\n \"STEP BY STEP,\" is my opinion, is a pure ABC h...\n Follow the Fleet, an RKO production in 1936, s...\n This is the second Baby Burlesk short to be re...\n THE MATADOR (2005) *** _ Pierce Brosnan, Greg ...\n Joan Crawford is convincingly disfigured as ou...\n This film is roughly what it sounds like: a fu...\n \"Capitães de Abril\" is a very good. The story ...\n The wonderful \"Z\" Channel in Los Angeles showe...\n Spacecamp is one of the movies that kids just ...\n I work at a nuclear power plant, so I am getti...\n There have been more interesting polish docume...\n There is nothing worse than science fiction cr...\n What can one say about a film that has one of ...\n This film grabs you from the opening scenes an...\n Having grown up in the typing pool era and dea...\n I honestly have to say that A CAT IN THE BRAIN...\n This comment does contain spoilers!!<br /><br ...\n I thought this was a quiet good movie. It was ...\n But quite dated today. Otto Preminger made thi...\n The good fellas at Webster's Dictionary define...\n This is film-making at it's simplest and it's ...\n Well the reason for seeing it in the cinema wa...\n Let's be honest shall we? Al Gore no more TRUL...\n Arthur Bach needs to grow up, but that is unfo...\n This movie was crap. The script is so full of ...\n There may something poetically right in seeing...\n This film is striking only in its banality and...\n Shia LaBeouf has impressed me before with his ...\n I love killer Insects movies they are great fu...\n Raggedy Ann and Raggedy Andy THE MOVIE is abou...\n I rented this movie for about $1.50 - the most...\n Gerald (Richard Carlson) and Kitty (Veronica H...\n This was a mish mash of a film that started ou...\n The acronymic \"F.P.1\" stands for \"Floating Pla...\n The first installment of this notorious horror...\n Starring an unknown cast which seem likely to ...\n My personal vision of hell is being locked in ...\n Now that's it's 2008, who really has a care in...\n This thriller is one of the few (film) surpris...\n Gracie (Minnie Driver), a woman in her late tw...\n 13 days to Glory tells the traditional tale wi...\n This truly funny movie has a zany cast of char...\n I had very high hopes walking into this movie....\n I must confess that I don't remember this film...\n I think this is probably one of the worst movi...\n As a kid I loved the song \"Never smile at a cr...\n My grandad gave me this DVD. With friends like...\n The best thing about this movie is that it is ...\n The larger-than-life figures of Wyatt Earp and...\n I never heard of architect, Louis Kahn, until ...\n Things to Come is indeed a classic work of spe...\n I really tried to like \"Saw.\" The story was go...\n I actually retired from Asian horror films som...\n A super, unusual film from Audiard, Read My Li...\n Beautifully filmed, mind expanding exploration...\n Humour is a very individual thing and the audi...\n \"The Matador\" stars Pierce Brosnan as a burned...\n I will not spoil your surprise by mentioning a...\n First and foremost I'd like to state - for the...\n A major moneymaker for RKO Radio, Bombardier s...\n When a movie's claim to fame is that Martin Sh...\n It's just such a joy to have watched this intr...\n The peace and beauty of Koyaanisqatsi was a po...\n A movie this dumb should never see the light o...\n Dead To Rights is about a Police Officer named...\n I just saw this last night, it was broadcast o...\n VILLA RIDES (1968) turns out to be something o...\n \"The Racketeer\" stars Carol (deprived of the \"...\n I've read a number of reviews on this film and...\n Before Tuscan Sky, I saw Diane Lane's tender p...\n I think this is almost all I need to say. I fe...\n I must say. This is easily one of my FAVORITE ...\n Though I have watched Salò, I do not know if e...\n Having watched the show for about four weeks, ...\n This film is all about humans. This film staye...\n In \"Checking Out\", Peter Falk plays an elderly...\n What boob at MGM thought it would be a good id...\n I saw this film for one reason: the tagline is...\n Spreading panic from Broadway to Bombay, 1957'...\n George Cukor directs this high quality story o...\n I lived in Tokyo for 7 months. Knowing the rea...\n *The whereabouts of Al Capone<br /><br />*Who ...\n As did others in this forum, when \"Fobidden Pl...\n Every year there's one can't-miss much-anticip...\n After Chaplin made one of his best films: Doug...\n A shift in outlook is neccesary to enjoy moder...\n Caught the tail end of this movie channel surf...\n In reflecting on this movie I can think of two...\n I love the way he experiments. Ab Tak Chappan ...\n It's 1982, Two years after the Iranian Embassy...\n Edward Montagne's Tattooed Stranger is suppose...\n In London, the Venetian Carla Borin (Yuliya Ma...\n Shah rukh khan plays an obbsessed lover who wo...\n This is one of the best movies on the French R...\n I went to see this movie twice within a week a...\n Make up your own mind. Personally I found it a...\n From the opening sequence, filled with black a...\n Greta Garbo's American film debut is an analog...\n I watched this movie only coz it was expected ...\n I rented this movie because I love Kristanna L...\n You have to see it to believe it! Directors Al...\n \"Red Rock West\" was far and away one of the be...\n The monster from Enemy Mine somehow made his w...\n I avoided this film as a boy because I thought...\n I am continuously amazed at the US networks. W...\n The depiction of Ichabod Crane's character was...\n As someone who likes chase scenes and was real...\n I first saw this movie when it originally came...\n Me and a friend rented this movie because it s...\n This was one of the most boring movies I've ev...\n No surprise except in how quickly ABC reacted ...\n How could this get a 6.0 rating? Are we as hor...\n When i saw the first octopus movie it was a la...\n This is simply the epitome of what a made for ...\n I went to see this thinking it would be a grea...\n My expectations were quite high for this film....\n This movie was groundbreaking in the former So...\n I didn't like this movie for many reasons - VE...\n Surprisingly good. The acting was fun, the scr...\n We just saw this movie in Austin Texas at the ...\n A sadly inferior precursor to \"Who's Afraid of...\n This film had about everything one could wish ...\n Writer-director Emilio Estevez shows a definit...\n Really an amazing pile of pap! <br /><br />A p...\n This may or may not be the worst movie that St...\n I thoroughly enjoyed this movie, but it is not...\n I have seen it a few times and get completely ...\n A lot of Alistair MacLean's books have made it...\n I honestly thought this movie was going to be ...\n Throw this lame dog a bone. Sooo bad...you may...\n The Girl in Lovers' Lane: 3 out of 10: Homoero...\n Okay, I'm not going to critique this film in d...\n It seems a lot of Europeans and Americans see ...\n I had never heard of this film before a couple...\n I had to watch this movie with my 5-year-old. ...\n This is a fascinating account of the hunt for ...\n Men of Honor has many great aspects to it. Goo...\n 24 is the best television show!!!!! It's an in...\n I have never watched a movie in so little time...\n I am a big fan of bad horrors, cheap horrors, ...\n KRAMER VS KRAMER won five Oscars, including Be...\n I am an Indian residing in the United States. ...\n How Rick Sloane was allowed to make five movie...\n just can't watch this bit too many times, it's...\n A plane carrying a rich scientist's daughter g...\n I'll make this short and sweet....this movie s...\n Some have praised _Atlantis:_The_Lost_Empire_ ...\n I have personally seen many Disney movies in m...\n It's painfully obvious that the people who mad...\n Although this series and the mini film in part...\n It starts a little slow but give it a chance. ...\n I lived next door to the author in 1980 when h...\n Director Lesley Selander's thoroughly routine ...\n Before Sunrise is romance for the slacker gene...\n The Straight Story is the tale of an old man w...\n If you like animal movies, this movie will ple...\n The scenes are fast-paced. the characters are ...\n You know you are in trouble watching a comedy,...\n The topics presented are very interesting; sub...\n I loved this episode. It is so great that all ...\n If you tried to make a bad film, you could not...\n I saw this (video 2000) years ago and would lo...\n Many people remember the Waco standoff that oc...\n So they hyped the violence and it's been brand...\n I honestly fail to understand why people love ...\n No emotion. Bad music (and I am a reformed eig...\n These are the kinds of movies I loved, and sti...\n Everything I remember about it was excellent.....\n \"Boy Next Door\" is a hilarious romp through ma...\n Where to start ?! . . . I feel ... violated! T...\n This film has to rank down there with Ed Wood ...\n This was not a well done western. You've got t...\n Josef Von Sternberg directs this magnificent s...\n I was pleasantly surprised by the film. Let's ...\n I don't think this is too bad of a show under ...\n I have nothing but praise for this movie and c...\n No Fireworks Despite Violent Action.<br /><br ...\n A very bad film, an amalgam of clichés and his...\n At the same time John Russell was playing ranc...\n I can't even believe that this show lasted as ...\n If you like Cagney you'll like this film. It h...\n First of all, let me start by saying that I ha...\n Of course I have disappeared into the movies. ...\n Boring, rank nefarious plot, some of the worst...\n For a mature man, to admit that he shed a tear...\n This is a film which had eluded me thus far bu...\n This film was shot in Randolph County in centr...\n *The ELITE sniper team that has inserted 24h o...\n Listening to the soundtrack at the moment, the...\n Synopsis Correction: The ending does not show ...\n This is what porn used to be, this is a true c...\n I really wanted to love this show. I truly, ho...\n This miracle of a movie is one of those films ...\n I found this on the shelf while housesitting a...\n Ingmar Bergman's meditation on war concerns a ...\n Dev Anand (or Prashant) and Zeenat Aman ( Jasb...\n I saw an early screening of this film in New Y...\n Personal taste rules when it comes to talking ...\n This is one of those films that I remember bei...\n A sweeping and deeply moving love story featur...\n JACKNIFE is a fine adaptation of Stephen Metca...\n ...not that all Disney films are garbage.<br /...\n I was surprised to discover Michael Moore or B...\n William Wyler was to have directed this adapta...\n This is the ultimate, and I mean the ULTIMATE,...\n \"How To Lose Friends & Alienate People\" is not...\n The movie and acting are not bad and Jay Herna...\n \"Midnight Cowboy\" is one of those films thats ...\n Put quite simply, this film is terrifying.<br ...\n Leonard Maltin compared this film to a Mel Bro...\n Hidden Frontier is notable for being the longe...\n This is absolutely one of our favourites of 20...\n When you see Boris Karloff and Bela Lugosi as ...\n and there are not many in cinema history. \"Rou...\n Honestly, I was a big fan on 'Stay Alive' trai...\n Stage adaptations often have a major fault. Th...\n TCM is keeping me awake all the time... they k...\n There's nothing much to the story. A young wom...\n BASEketball is awesome! It's hilarious and so ...\n This film has been on my wish list for ten yea...\n I saw and liked the first two a lot, really. E...\n WARNING SPOILERS***** A really stupid movie ab...\n I saw Arthur(the TV series and the books)years...\n Whoever thought that ANOTHER Home Alone film w...\n Godard once said a way to criticize a movie is...\n Very few movies have had the impact on America...\n As much as I have enjoyed the Hanzo the Razor ...\n \"The Beguiled\" is a strange work among Clint E...\n Other commenters have described this movie as ...\n I think this is a great version, I came on her...\n THE AFFAIR is a very bad TV movie from the 197...\n As a parent of two girls(14 and 11) I have gra...\n In a way, Corridors of Time is a success story...\n This production was quite well done for a tele...\n A few yrs ago, I remember reading an essay by ...\n this movie was terrible. i thought with all th...\n 96 minutes of this is cruel..and I love the ol...\n Anyone who sees this film will notice that the...\n Playmania is extremely boring. This is the bas...\n This is one of the worst horror movies I have ...\n The English translation of the title on the DV...\n The people who are praising this film are the ...\n I watched this immediately after seeing HILLSI...\n This is without a doubt the most poorly though...\n The director is sweet, as is his co-directing ...\n Commissaire Mattei(André Bourvil) is a single ...\n Sad in every aspect, this poor excuse for a ca...\n I like J-horror, anime and even kinda dig the ...\n This is a woeful Hollywood remake of a classic...\n Okay...it's 2005 and when you finally get to l...\n It takes a rare movie to get better each time ...\n You do realize that you've been watching the E...\n Like another ticket buyer I saw a nice cute po...\n This movie is a love story set in the backdrop...\n I was fortunate enough to meet George Pal (and...\n Someone had a great idea: let's have Misty Mun...\n I watched this film during a special advanced ...\n Me and my friend read the summery and watched ...\n I am a huge Jane Austen fan and I ordered the ...\n It has taken me a while to watch this version ...\n Much better than expected. Good family flick -...\n I wasted 35 minutes of my life on this turkey ...\n I hate football!! I hate football fans! I hate...\n In 1996's \"101 Dalmatians,\" Cruella De Vil was...\n What i hate most in this garbage is the arroga...\n Oh f*cking hell, where should I start... First...\n This is a piece of celluloid CRAP. You can tel...\n This was an exteremely good historical drama. ...\n This movie reminded me a lot of a song by the ...\n The story is seen before, but that does'n matt...\n I rented this DVD because I'm a big science fi...\n After Fatih Akins first work \"Im Juli\", which ...\n My watch came a little too late but am glad i ...\n Worst mistake of my life.<br /><br />I picked ...\n I watched this film version of R.D. Blackmore'...\n Even allowing for my unabashed love of the fir...\n A lot of people hated this movie, but that I b...\n If this movie were any worse, it would have be...\n This movie was chosen, quite frankly as a pig ...\n A very intelligent and exciting thriller that ...\n This is possibility the worst and most disappo...\n Young Quaids fake accent was difficult to acce...\n Esther Williams plays a romantically unattache...\n Where to begin? <br /><br />#1 Amitabh's son, ...\n ... than this ;-) What would happen if Terry G...\n How do you describe perfection? In-the-Mood-Fo...\n I just want to add my two cents worth, and for...\n \"Hak Hap\", or \"Black Mask\" (in english) was a ...\n Hip, distinguished doctor James Coburn (as Pet...\n Albert Finney and Tom Courtenay are brilliant ...\n I am a Motion Picture Production major at Wrig...\n I would recommend this for anyone who is an ad...\n I wait for each new episode, each re-run with ...\n Wow! I have seen so many bad low budget films ...\n I just saw Hot Millions on TCM and I had compl...\n Keep in mind I'm a fan of the genre but have o...\n In a way, you have to respect Arachnia. It's c...\n Film is designed to affect the audience and th...\n This is another notorious Mexican horror film:...\n Peaceful rancher Robert Sterling is on the los...\n I'd have to say that this was a little embarra...\n As a huge fan or the Cracker series, I have be...\n A fragment in the life of one of the first fem...\n It was a good story, but not very well told. I...\n Bill Maher's Religulous is not an attack on or...\n I just wondering what is the purpose of making...\n Although credit should have been given to Dr. ...\n It's easy to see why many people consider In t...\n I decided to watch this on FearNet on demand f...\n Skeletons In The Closet takes the father-teena...\n FORBIDDEN PLANET is the best SF film from the ...\n An interesting companion piece to true documen...\n Sondra Locke stinks in this film, but then she...\n I watched this movie last week sometime and ha...\n Do not waste your time or your money on this m...\n My first child was born the year this program ...\n At least it's not full of sensless violence or...\n I've barely just made it through one episode (...\n Finally, Timon and Pumbaa in their own film......\n OK, this movie is stupid. I mean that in a goo...\n This movie is stupid, made by stupid people. T...\n Forget Plan 9, this is the ultimate fiasco, a ...\n The trick to creating a good, solid mystery st...\n Obviously, this one doesn't aim for the brain ...\n I didn't have many expectation going into the ...\n A group of friends decide to take a camping tr...\n \"The house of the spirits\" is quite awful. I l...\n One of my favorite movies of all time. Beautif...\n Given the low budget and production limitation...\n When moviegoers hear two popular villains/char...\n I first heard about this film about 20 years a...\n When I'd seen the name of this movie, I'd alwa...\n For die-hard Judy Garland fans only. There are...\n Though \"The Sopranos\" is yet another gift from...\n Simply put, this is the best movie to come out...\n I was fortunate enough to be an extra in this ...\n Really, the use of stock nature documentary of...\n Sure, it's hard being gay, especially in the s...\n It's difficult to not have a liking for Israel...\n Jack Lemmon was one of the finest actors that ...\n I saw it at Cinema MK2 Hautefeuille just one n...\n <br /><br />Heather Graham is not just a prett...\n I started watching this because i thought it w...\n I was surprised at how a movie could be both c...\n In the year 1985 (my birth year) Steven Spielb...\n Beautiful film set in 1962 Hong Kong about a m...\n In the sea of crap that Hollywood (and others)...\n During the brief Golden Age of the Super 8 Mag...\n I saw this film at the 2006 Palm Springs Inter...\n I have a little hobby of finding really cool p...\n Clearly this film was made for a newer generat...\n It really impresses me that it got made. The d...\n Yeah great cult TV series. Great atmosphere, t...\n Dreyfuss plays a mob boss who lost his mind, b...\n A tremendous action movie that I have ever see...\n There are spoilers but trust me, I'm doing you...\n When I first saw this movie, I had thought tha...\n I have just seen a very original film that I w...\n Many experienced and excellent actors mixed to...\n I bought this movie last weekend at my local M...\n It helps that the characters this show is base...\n This is simply put, the worst movie I have eve...\n Watching this series will probably make you fe...\n That's right! Under 9 on average, but maybe un...\n A post-apocalyptic warrior goes off to save so...\n The 1973 musical version of LOST HORIZON is th...\n Vovochka is your everyday hooligan vs authorit...\n Should have been titled 'Balderdash!' Little i...\n Who actually created this piece of crap this i...\n This movie sucked on so many levels! Ever seen...\n Corbin Bernsen gives a terrifically intense an...\n The title should have been \"The walker\". That ...\n Andrew Gurland's \"Cheats\" is his fictionalized...\n On more than one level, I can relate to what h...\n To quote Jason Connery and Mark Ryan on one of...\n Although this was not without its faults, this...\n Now the television schedules (in England, at l...\n I tried to finish this film three times, but i...\n I was struck by the awful acting and script fo...\n Sure, it's a 50's drive-in special, but don't ...\n We've seen a story like this before: a wife in...\n This totally odd-ball feature is a typical and...\n Why Panic never got a good theatrical release ...\n Should this be an American movie I'd rate it 7...\n Let me just give you guys some advice, if your...\n Good western filmed in the rocky Arizona wilds...\n I usually spend almost as much time writing my...\n This is one fine movie, I can watch it any tim...\n Jim Carrey shines in this beautiful movie. Thi...\n I caught this movie late night on TV, and was ...\n It seems more than passing strange that such u...\n Drifting around on bootlegs, sometimes thought...\n 'I only wanted to see you laughing in the Purp...\n This movie was like any Jimmy Stewart film,wit...\n Working at a movie theater as a projectionist,...\n Okay the promos promised a comedy and people(f...\n \"Well Chuck Jones is dead, lets soil his chara...\n Review: Nunsploitation films. They've been aro...\n I was so \"impressed\" with Tim Kincaid's MUTANT...\n How anyone can say this is bad is beyond me. I...\n I did not think this movie was worth anything ...\n After buying the DVD in a Bargain Bin due to t...\n Kurt Thomas in one of the series of gymnast ol...\n Yeah this films is tops. Cant recommend it mor...\n What a disappointment! Piper Perabo is adorabl...\n I honestly don't know where to begin when revi...\n Feeling Minnesota is one of the worst films I ...\n I sincerely wonder why this film was ever made...\n I love this movie. It was one of my favorite m...\n Humphrey Bogart in his first starring role loo...\n This whimsical film had the misfortune of bein...\n When I sat down in the cinema to see this I wa...\n There have been a lot of Zorro films made over...\n I watched this movie a couple of weeks ago and...\n Extremely formulaic with cosmic-sized logic ho...\n Today You Die was the 4th Seagal movie in a mi...\n Well, this is about as good as they come. Ther...\n This documentary is incredibly thought-provoki...\n \"Opening Night\" released in 1977, tries to be ...\n Sure, the plot isn't Oldboy. It seems the only...\n In 1914, Charlie Chaplin began making pictures...\n Panahi, whose previous films such as The Circl...\n **SPOILERS** I rented \"Tesis\" (or \"Thesis\" in ...\n One would think that since this film has a bad...\n Having heard quite positive reviews and having...\n I was one of about 200 people that was lucky e...\n I heard what people were saying, but I ignored...\n When I watched this movie it was an afternoon ...\n This low-grade Universal chiller has just been...\n I was peeved that the best make-up academy awa...\n This is the worst, and I mean THE worst comput...\n This movie was really funny even though it was...\n What an absolutely charming movie. The cast is...\n It was Jon Pertwee who said \" It`s very diffic...\n Ben Marshall, a teen ager from a religious bac...\n Saw this on cable back in the early 90's and l...\n The exploding zeppelins crashing down upon 'Sk...\n I did not really want to watch this one. It se...\n While the story of a troubled kid turning to b...\n This is loosely based on the ideas of the orig...\n Just watched Hair after a lapse of 20 years. I...\n Ugh. Yes, it's exactly like the McMartin mess,...\n By far the worst movie of all time. Even Yaphe...\n A film that deserved theatrical release. This ...\n This has got to be the worst case of over acti...\n Latter Days for me was a very moving film, it ...\n This is one of those movies where I wish I had...\n well, the writing was very sloppy, the directi...\n I saw Bon voyage 2 days ago and I found it an ...\n If you like poor SE, (some) bad acting and a t...\n I sat with my children as we watched this film...\n As a big fan of Tiny Toon Adventures, I loved ...\n This document truly opened my eyes to what peo...\n Within the first 5 minutes of this movie I kne...\n Unless you want to be bored half to death. I'v...\n This is one of the best of the genre. I saw it...\n I live up here in croc territory and remember ...\n How many English 101 student's versions of 198...\n Having read this story a while ago I was very ...\n It would seem we should acknowledge Scandinavi...\n Talk about over acting...!!!! not just by Govi...\n The year 1950 saw two very different and inter...\n Whatever possessed Guy Ritchie to remake Wertm...\n Your attitude going into Prom Night II will de...\n I love Anthony Hopkins as an actor so I was ve...\n Dario Argento is a filmmaker I'm slowly gettin...\n I bought this on VHS as \"Terror Hospital\", and...\n \"John Hughes' son wrote a high school drama! W...\n this is one of the greatest documentaries i've...\n Usually, Alan Alda plays characters that are t...\n I did not like the pretentious and overrated A...\n This is a typical college comedy and its very ...\n This movie rocks\" Jen sexy as ever and Polly w...\n After \"Attack of the Fifty Foot Woman\" with Al...\n This documentary focuses on the happenings in ...\n Several posters have quoted Renoir voicing his...\n In Texas, seven friends meet in a bar to celeb...\n For those who think it is strictly potty humor...\n The film is set in Newcastle on Tyne in north ...\n This film was the worst film I have ever seen....\n I loved the idea of this film from the moment ...\n This movie is simply awesome.It was a very sen...\n A very interesting entertainment, with the cha...\n This is a good movie. Something fun about watc...\n You don't have to be a Notre Dame football fan...\n God, I am so sick of the crap that comes out o...\n stuey unger was a card playing legend. he was ...\n I thoroughly enjoyed Manna from Heaven. The ho...\n I went to a screening of this movie and while ...\n I've read a few books about Bonnie and Clyde, ...\n My personal opinion is that this movie had no ...\n Having just watched this movie, I almost feel ...\n Its about time that Gunga Din is released on D...\n This so called remake is terrible. I went to s...\n I first saw this when I was a teen in my last ...\n Where the Sidewalk Ends (1950)<br /><br />Wher...\n I never had an inkling while watching the movi...\n Story of a man who has unnatural feelings for ...\n Same old same old about Che. It completely ign...\n If this movie was written directed and produce...\n Nightmare Weekend is proof positive that some ...\n Producers Golan and Globus should have been as...\n In this film, there is a loose plot of a man (...\n I am a fifth grade language arts teacher, and ...\n I went to school with Jeremy Earl, that is how...\n In director Eric Stanze's 'ISOYC, IPOYG', thre...\n This is not the typical Mel Brooks film. It wa...\n \"Chips\" is an excellent blend of music, light ...\n This is the very La Nouvelle Vague.One of the ...\n OMG, it is seriously the best show in the worl...\n First I am a teenager. OK, and I have to say t...\n This movie is total dreck. I love Val Kilmer a...\n The reasons to watch this knock off... err... ...\n I was completely bored with this film, melodra...\n Francis Ford Coppola's \"Apocalypse Now\" is not...\n What impressed me the most about \"One True Thi...\n Admittedly, I am not a fan of the Monogram Cha...\n I drove from Sacramento to San Francisco (and ...\n \"Jaded\" should not be considered as en erotic ...\n Guns blasting, buildings exploding, cars crash...\n Probably the best comedy in a long time. keeps...\n Not on the same level as Ring (or Ring 2) but ...\n Now I recently had the viewing pleasure to wat...\n I can't believe I even tried to watch this fil...\n the subspecies series is an always will be the...\n and generally speaking, you will eventually ha...\n I caught this as part of the Cartoon Noir pack...\n That magical moment in life, that point betwee...\n WOW! i didn't know that someone would make thi...\n and totally non-scary film. The characters doe...\n A critical and financial flop when first relea...\n First of all, I was expecting \"Caged Heat\" to ...\n This is such a revered and studied film, a cla...\n This is truly one of the worst movies ever mad...\n A few of my fellow writers have covered this m...\n As far as I am concerned, this film noir had t...\n I completely forgot that I'd seen this within ...\n OK, so Herc is a hunk... but the rest of the 3...\n There have been many (well, more than a few in...\n One of the best movies I ever saw - a classic ...\n Uzumaki, is a visually stunning Film, and I do...\n Okay, the only reason I watched this movie is ...\n I have to admit that I liked this film much mo...\n This sequel to the above - and the final entry...\n TV pilots, don't you love them? Quinn Martin t...\n One year after 'Love Thy Neighbour' made its I...\n After reading the terrible reviews of this mov...\n I saw this movie when I was really little. It ...\n I saw this movie with very low expectations. I...\n SPOILERS THROUGH: <br /><br />I really am in t...\n Apart from the low budget, there never seems t...\n Okay, let me break it down for you guys...IT'S...\n the Germans all stand out in the open and get ...\n I hoped to learn something from this movie, bu...\n Why do I give this 1974 porn movie 7 points? B...\n You would probably get something like this. I'...\n The female hot numbers on this show are breath...\n If you love kung-fu films and you haven't seen...\n I was looking through the movie listings in my...\n It must say something about the state of our n...\n When Alfred Hitchcock made STRANGERS ON A TRAI...\n A brutally straightforward tale of murder and ...\n I love the premise, but it's replay value is o...\n Is it really possible that so many people in t...\n Superb movie. Very good photography of 1969/70...\n First, it takes a full half hour to get Hackma...\n I'm probably not giving this movie a fair shak...\n Just reading why this show got canceled makes ...\n Very funny, well-crafted, well-acted, meticulo...\n The three names that mean the most to this fil...\n I saw Two Hands back in Sydney a few years ago...\n Between sweeping, extraordinary scenes within ...\n I've read every book to date in the left behin...\n Why take a perfectly good original drama, base...\n Technically I'am a Van Damme Fan, or I was. th...\n I have always been a fan of this largely unsee...\n This is one of my favourite movies EVER... I h...\n Given the nature and origin of the 11 filmaker...\n Someone will have to explain to me why every f...\n When I think Bollywood. I think of lite feel g...\n It is a great movie. i sow that some people th...\n While I can understand some of the points made...\n I don't know why people always want deeper mea...\n I like all of the main actors involved in this...\n OK where do I start? I saw a screening a coupl...\n Yep, the topic is a straight quote from the mo...\n At first glance a film like Northfork, a town ...\n This is the version that even the author hated...\n OK I was bought this a few Xmas' ago by my bro...\n Whoever made this movie must have done it as a...\n The Guidelines state that a comment must conta...\n Wow... this is the kind of movie that makes yo...\n I'm sure the film contains certain gaps in log...\n Greystoke: The Legend of Tarzan, Lord of the A...\n This is one of those movies that was never pub...\n For reasons I cannot begin to fathom, Dr. Lore...\n Although this film looks like a Crime Thriller...\n Sure, it had some of the makings of a good fil...\n an oirish film not made for an irish audience....\n If you find the depiction of violent murders a...\n The Box is one of the strangest movies I have ...\n Lets first start this review with the fact tha...\n I hired the DVD yesterday and first of all it ...\n This is a gory mess and pretty convincing. Cor...\n Being the only movie I was able to see at this...\n This charmingly pleasant and tenderhearted seq...\n I found the film quite expressive , the way th...\n Outrage is pretty good movie! Robert Culp was ...\n A totally pathetic attempt at movie about sacr...\n Not totally off the wall in a good way, but ju...\n I think \"category 6: day of destruction\" was v...\n Charming doesn't even begin to describe \"Savin...\n This movie tells the tender tale of a demented...\n This masterpiece of lesbian horror comes from ...\n This film is great. All the hi-tech machinery ...\n Blonde and Blonder was unfunny.Basically, it w...\n Not exactly a new story line, but this romanti...\n Robin Williams is excellent in this movie and ...\n In my honest opinion, everyone should see this...\n I agree with another reviewer, this is such a ...\n Let this film serve as the death knell to the ...\n Deanna Durbin really did save Universal from b...\n Ruth Gordon is one of the more sympathetic kil...\n Stargate SG-1 is a spin off of sorts from the ...\n A savage, undisciplined lion has been put behi...\n A very \"straight\" nice old lady, desperate for...\n I'll be honest. The only reason I watched this...\n I have seen this film more then once. Actually...\n A decent sequel, but does not pack the punch o...\n Yet another in the long line of \"Don't\" films ...\n Of all the kung-fu films made through the 70's...\n The first time I saw this film, I loved it. It...\n Out of 15 people I loaned this movie too.. NO ...\n This picture was released in May of 1979 starr...\n Russell Hopton acted in many films until his d...\n Sophisticated sex comedies are always difficul...\n Perhaps the funniest 'backstage at Hollywood' ...\n What a great film it is. The notion of nations...\n Oh my... bad clothing, worse synth music and t...\n I first saw Heimat 2 on BBC2 in the 90's when ...\n Closer to reality and containing more depth th...\n There are so many words I want to use to descr...\n I cant describe how terrible this movie is. Am...\n Judging from this film and THE STRONG MAN, mad...\n 'Chances Are' a big mistake to see. You could ...\n Unless I'm sadly mistaken, I rented A Nightmar...\n Wow! Only a movie this ludicrously awful could...\n Rarely have I seen an action/suspense movie th...\n The only thing that surprises me more than the...\n Although I had some hopes for this film, parti...\n Asia Argento has never done a film (so far as ...\n As a Canadian, I didn't know very much about t...\n My expectations were high after seeing the tra...\n Yes, Lifetime has a habit of making the male s...\n Over Her Dead Body was a nice little movie.It ...\n Once in a while it is good to see a really bad...\n Sacha Baron Cohen is a genius. And this movie ...\n almost every review of this movie I'd seen was...\n Three ten-year-old children born at the same t...\n Jack Frost 2 was a horrible, terrible, sadly p...\n I thought that this is a wonderfully written m...\n Grey Gardens was enthralling and crazy and you...\n I watched the beginning twice, could NOT make ...\n Blade is a dark, gloomy, but significent vampi...\n It is not surprising that this film was made b...\n First of all, let me comment that the audience...\n First off just to say i didn't get the edition...\n Grabbed my attention on Netflix Instant Play b...\n I think that this film adds to diversity and i...\n Can you say \"All shock, no plot?\" There were s...\n This is not the video nastie, but only because...\n In watching this off and on for a few seasons,...\n this film was shrouded in scandal for so long ...\n let me say that i love Adam Sandler, watching ...\n Although it was dark, depressing, and at times...\n Some years ago, satellite channel U.K. Gold pr...\n I was initially dubious about this movie (mere...\n A teen-age boy, who is not in the military and...\n Some folkie friends recommended this, but as a...\n Bedrooms and Hallways was one of the funniest ...\n The United States built the atomic bomb in ord...\n Another episode from childhood that, as an adu...\n I admit it now. This is one of the lamest film...\n Let me clarify that. This is not a \"good movie...\n This film is probably the best new French film...\n This early film from future goremeister Lucio ...\n Yes, this is an ultra-low budget movie. So the...\n My 3rd-year French classes always enjoyed this...\n This is a great movie. When two people from di...\n As main \"character\" Lillith Silver likes to po...\n Though not a horror film in the traditional se...\n ManBearPig is a pretty funny episode of South ...\n SPOILERS<br /><br />A buddy of mine said NEXT ...\n The breadth & height of the scale of this movi...\n When my parents rented this movie, I was expec...\n Wow. Rarely have I felt the need to comment on...\n This movie is great. If you enjoy watching B-c...\n The first 50 minutes of this movie were quite ...\n I'm not sure if this is some kind of masterpie...\n At the 2005 Phoenix Film Festival, it was no s...\n This really is by far the worst movie I've eve...\n \"The Odd Couple\" is one of those movies that f...\n I have now suffered through Parts, The Clonus ...\n John Schelesinger's career as a film director ...\n A couple move into their dream home, unaware t...\n I quit watching \"The West Wing\" after Aaron So...\n This movie made by the NFBC was made in honor ...\n This is by far the worst film I have seen in m...\n I can only agree with many observers that Traf...\n This light hearted comedy should be enjoyed fo...\n Garden State was a mediocre film at best. The ...\n It's okay ... a few years later Chayefsky's cl...\n This was one of the best movies I have seen. T...\n I've now just realised that by watching this f...\n In this little film we have some great charact...\n Now and again, a film comes around purely by a...\n I bought this film from e-bay as part of a lot...\n We brought this film as a joke for a friend, a...\n This movie was absolutely terrible. The only e...\n OK I'll be honest, when I first saw the traile...\n A number of factors make it easy for me to sta...\n How do two great actors foist off a piece of j...\n I walked into Heart Of Gold thinking I was goi...\n Apartmente'L is one of the most interesting mo...\n If you want an excellent survey of Byzantine h...\n Dan Ackroyd in his prime stars as Johgn Burns,...\n There seems to be a spectrum of cinema. On the...\n Fans of the Pink Panther, Naked Gun, or Get Sm...\n There's no other word for it...Fox dumped this...\n This movie is awful. It creates characters not...\n John Waters has made the most effusively buoya...\n When I first saw this film it was about 1956 a...\n I am furious! It has been a while since the la...\n i just wanted to say i liked this movie a lot,...\n And obviously I didn't see it! <br /><br />But...\n My school's drama club will be putting this sh...\n Picture Bride paints a realistic and moving po...\n Franco Zeffirelli's (\"The Taming Of The Shrew,...\n I have realized that many people have commente...\n No blood, no sex (though it oozes passion), no...\n Greetings again from the darkness. Mary Heron ...\n I don't usually like to comment on the acting ...\n Melissa's sixteenth birthday is right around t...\n This movie is so awesome! I loved it, it was r...\n The Dentist is a really good thriller. And pre...\n Even the first 10 minutes of this movie were h...\n This is better than the early Cronenberg horro...\n If you want a fun romp with loads of subtle hu...\n Troubled men's magazine photographer Adrien Wi...\n This is a wonderfully written and well acted p...\n I decided to watch this show and give it a go ...\n Evidently, not many people have seen this movi...\n Not that he'd care, but I'm not one of Simon P...\n This filmed presentation of \"the Rime of the A...\n what can i say. oh yeah those freaking fingers...\n I will never forget when I saw this title in t...\n The last film in Lucas' saga is a lavish, spec...\n How to take Charles Darwin's fantastic intelle...\n This film was a disaster from start to finish....\n Scary Movie 3 isn't as funny as its predecesso...\n I neglected this film when I used to go to the...\n If you don't like bad acting, poor editing, ri...\n I heard about this film and knew it wasn't rea...\n I picked this title up from a friend who had i...\n I went to see this film over Matchstick Men, i...\n All the reviewers are making one big mistake. ...\n The Fiendish Plot of Dr. Fu Manchu starring Pe...\n I love the mockumentary format that Chris Gues...\n I simply cant understand why all these relics ...\n A good Korean film about not just Taekwondo bu...\n When I first heared that there was going to be...\n The first ten minutes of \"Just Looking\" really...\n A female executioner (played by the sexy Jenni...\n Lars Von Triers Europa is an extremely good fi...\n It's kind of fascinating to me that so many re...\n this movie wasted my time. i saw only part of ...\n I just finished watching this film. For me, th...\n I saw this on the shelves at the rental place ...\n The movie deserves 2/10. 1.5 stars for the gir...\n Its a good film set in Vienna about a cab driv...\n Hitchcock's remake of his 1934 film concerns a...\n I picked up Time Changer because it looked lik...\n My take on this, at our local festival where p...\n What can I say about this? Such a big Prestige...\n This is the movie that I use to judge all othe...\n This movie has the distinction of being the wo...\n So many of us who are devoted to the \"art\" of ...\n Director Kinka Usher stays true to his own cre...\n Without doubt, one of the worst films ever mad...\n I love this movie and have seen it quite a few...\n I am so confused. What in the world was this m...\n The third film I got to watch at the philly fi...\n MABEL AT THE WHEEL is one of those movies with...\n Haven't seen any of the Japanese Grudge-films,...\n This film is about a teen who is struggling wi...\n My mom and I went to see this film because my ...\n I first saw this film in the theater way back ...\n I'm doing a thesis on blurring the boundaries:...\n I've seen all four of the movies in this serie...\n OVERALL PERFORMANCE :- At last the long waitin...\n ..especially by Lambert. This is the essential...\n Probably the best picture Producers Releasing ...\n Once again Elmer is faced with the dilemma of ...\n Final Score: 0 (out of 10)<br /><br />***Possi...\n This movie is a very realistic view of a polic...\n Each frame in the movie is a lesson to new dir...\n \"First Snow\" has an intriguing beginning. A tr...\n Based on the manga (comic) of well-known artis...\n Home Room was a great movie if you've ever had...\n My Take: Even splendid underwater photography ...\n A stunning realization occurs when some sort o...\n Bad acting? Yes, but it was not a surprise. St...\n As an Altman fan, I'd sought out this movie fo...\n \"Closet Land\" was sponsored by Amnesty Interna...\n There is no greater disservice to do to histor...\n I wouldn't bring a child under 8 to see this. ...\n Amateurish in the extreme. Camera work especia...\n I first viewed this movie when it first came o...\n I know that Guts of a Beauty and Guts of a Vir...\n This movie was good for it's time. If you like...\n Lawrence Olivier and Merle Oberon did two movi...\n Talented screenwriter Alvin Sargent sadly cann...\n I saw an advanced screening for this movie ton...\n I saw this drama by cable TV. Although I saw j...\n There is one detail, which is not very common ...\n There was a reasonably good looking girl starr...\n \"Imaginary Heroes\" is a 2004 film starring Sig...\n I saw the movie late one night on cable and co...\n This review contains spoilers.<br /><br />I wa...\n A truly horrible film that left me feeling sul...\n Well let's be fair. Following up a cult classi...\n I found this film rather brilliant. Initially ...\n The most famous thing about this movie is that...\n After watching Stop-Loss, I find myself agains...\n When I read MOST of the other comments, I felt...\n I don't see what everyone liked about this mov...\n George Cuckor, known as a director of women, c...\n The movie \"Everything is Illuminated\" comes fr...\n Like many other commentators here, I went in e...\n I saw this movie a few months ago in the town ...\n To finally see what many consider to be the gr...\n This movie draws you in and gets you hooked on...\n Clifton Webb as \"Mr. Scoutmaster\" is one of th...\n 102 DALMATIANS [Walt Disney]: I wasn't a fan o...\n The tweedy professor-types thought they had it...\n This film is Engaging and Complex while mainta...\n It happened with Assault on Prescient 13 in 20...\n Awful, waste of time. There is no camp or tras...\n The cast alone tells you this will be a notch ...\n Six out of seven people who took the time to c...\n A dedicated Russian Scientist dreams of going ...\n \"The Twins Effect\" is the worst movie I've see...\n movie I have ever seen. Actually I find it one...\n NOROI follows a documentary filmmaker, Masafum...\n OK from the point of view of an American, who ...\n The image of movie studios being financially-d...\n Two great comedians in a great Neil Simon movi...\n Director/star Clint Eastwood's \"Sudden Impact\"...\n I'm both amused and disgusted by the people wh...\n I enjoyed very much the movie wooden camera. I...\n Most people attending this film will have no i...\n I hate reading reviews that say something like...\n I, as many IMDB patrons seem to have, stumbled...\n Jesus Franco is pretty hit or miss on his film...\n A pretty awful film, I'm amazed the likes of D...\n To borrow from Dorothy Parker: This is not a f...\n I would like to comment on how the girls are c...\n I happened upon a rare copy of this early Almo...\n I initially gained interest in this film after...\n After finally watching Walt Disney's Song of t...\n This movie is outrageous, funny, ribald, sophi...\n I noticed that A NEW HOPE and THE EMPIRE STRIK...\n 2001: A Space Odyssey <br /><br />Is it a serm...\n I can't understand why many IMDb users don't l...\n This program was shown in an early morning tim...\n This film has an interesting plot, but the act...\n ***SPOILERS*** Like some evil Tinkers-to-Evers...\n Gregory Peck's brilliant portrayal of Douglas ...\n Phantom Lady (1944) Dir: Robert Siodmak <br />...\n Deepa Mehta, Arundhati Roy and a host of other...\n This was one of the few shows that my wife and...\n I have walked out of about 6 movies my entire ...\n Without actually giving away my age, I saw thi...\n \"How can a name, not even a real name, break y...\n A good idea let down by heavy-handed productio...\n This film was incredible! Looked high budget b...\n Every time you think you have a handle on Deat...\n Jack Black's character, Tim Dingman the \"Dream...\n It's a cooking competition show, Americanized....\n Despite Louis B. Mayer reportedly not being in...\n I did not intend to write this review, but hav...\n This film seems well made, and more efforts sh...\n My wife and I saw every episode in this series...\n Well, for a start, I must say that, here, in R...\n Poor Michael Madsen; he must be kicking himsel...\n Barbra Streisand's debut television special is...\n One previous reviewer called this film \"pure v...\n This is a charming little film, which like man...\n This is the ultimate of horror movies this yea...\n This move actually had me jumping out of my ch...\n Unlike the previous poster, I liked the cellul...\n Jewel Thief is one of those suspense thrillers...\n What a dire film. I cannot believe that I actu...\n Well I don't know where to begin. Obviously th...\n People who thought that THE CHRONICLES OF RIDD...\n MST3K fodder. It's so bad it's actually worth ...\n One of the most underrated comedies. Dan Akroy...\n I've seen the Thin Man series -- Powell and Lo...\n I bought the DVD out of a big bin for $4.99, t...\n Kalifornia is disturbing. I believe there is n...\n \"Curse of the Forty-Niner\" doesn't really dese...\n I've seen the first of the dwarf-Movies and so...\n Columbo is guest lecturer for a criminology cl...\n This is the one in which the diminutive Ruth G...\n As a sci-fi and casual Angelina Jolie fan, I t...\n The \"silver screen\" gets freshly polished with...\n \"Deliverance\" is one of the best exploitation ...\n If, like me, you actively seek out the rarest ...\n The film starts out great, with a mock instruc...\n Jimmy Stewart was a real life pilot, WWII flie...\n As far as Christian film goes,it's typical.Lac...\n Cross-eyed is a very original and funny movie....\n This was a fairly creepy movie; I found the mu...\n this, is NOT one of those films it is one of t...\n In the mid 1800s, Irishman Dennis Hopper (as D...\n Saying a film is depressing isn't necessarily ...\n i totally disagree.i thought that this was a g...\n Kasparov vs. Deep Blue is no doubt a fascinati...\n First of all there is Gujarati Theatre then th...\n Nicole Eggert was listed as the star of this, ...\n I have seen most of the Tarzan episodes. Certa...\n We have given this film one star for awful, ho...\n All this show is, is the same plot. Kuszko (sp...\n Lynch. The man has some really great stuff! He...\n Am an ardent Vijay fan. I have never seen anot...\n I thoroughly enjoyed this flick. I am of the f...\n The acting is good, the action is good, and so...\n This one-minute film is arguably the first mov...\n In the opening scene, the eye patch wearing de...\n A gut-ripping baby T-Rex is on the loose in a ...\n I have tried to like this show, I really have,...\n <br /><br />A friend of mine enjoys watching t...\n I saw this in the cinema during its initial re...\n I read somewhere where this film was supposed ...\n I really don't understand why people get so up...\n \"Emma Woodhouse\" Gwyneth Paltrow (Shakespeare ...\n I, too, was fooled by the packaging. I, too, f...\n I can't believe they got the actors and actres...\n Alain Resnais directs three parallel stories t...\n This movie is NOT the same as the 1954 version...\n This film is about aging Geisha in post war To...\n This film is very creepy indeed. Unfortunately...\n In Los Angeles, the alcoholic and lazy Hank Ch...\n Hoot is a nice young person's film about a gro...\n This is a profound and moving work about the c...\n I've seen a few movies in my time, but this on...\n Have I seen a worse movie? Perhaps only \"Manos...\n A pretty memorable movie of the animals-killin...\n Ill-conceived sequel(..the absurd idea of havi...\n Moon Child was one of the more symbolic movies...\n Some people say Steve Irwin's larrikin antics ...\n I just watched Holly along with another movie ...\n Raggedy Ann & Andy is the first movie I ever s...\n Strange how less than 2 hours can seem like a ...\n Better than the original, \"the Gamers: Dorknes...\n We don't know why this extraordinary film was ...\n It is 1969. Phoebe(Camilla Belle) is an 11 yea...\n Although it really isn't such a terribly movie...\n I'm sure that the folks on the Texas/Louisiana...\n Coming shortly before the imposition of a mora...\n I love John Saxon in anything he's in. The one...\n All Dogs Go To Heaven is on a par with Watersh...\n GAME.... Huh... game. I'm not even sure the bl...\n This is a horrible little film--and unfortunat...\n A surprise thriller with more twists and doubl...\n Hey guys, <br /><br />i have been looking ever...\n I showed this to my 6th grade class about 17 y...\n I have been a fan of this movie for years and ...\n Who wrote this? Some guy named John Cohen. I g...\n I should have gone without seeing the movie af...\n Hitchcock displays his already developed under...\n I had no idea that Mr. Izzard was so damn funn...\n As a SCUBA diver, I can appreciate the incredi...\n This is an extremely involving series that is ...\n When I bought this DVD I though: \"It seems to ...\n The Aristorcats is a hilarious film that not m...\n This is by far the most repulsive and atrociou...\n Ever since I've been allowed to play Goldeneye...\n Given that a lot of horror films are based on ...\n When the noble Hanabusa clan is decimated by t...\n I'm a big fan of Morgan Freeman. 'The Shawshan...\n Wow. Just wow. Never before have i seen a horr...\n When John Singleton is on, he's *on*!! And thi...\n As horror films go, \"Rest Stop\", could have be...\n I had to give this film a 10 simply because it...\n This movie should have ended as soon as the jo...\n What can i say about this movie? I have seen i...\n Nothing but the director's juvenile fantasy co...\n First, I should mention that I really enjoyed ...\n With this film, Bunuel manipulates the viewer ...\n It is a real shame that nearly no one under 30...\n I was plagued by nightmares involving Sesame S...\n As you probably already know, Jess Franco is o...\n ***MILD SPOILERS*** Dear Inman, Kind words are...\n I am speechless. Matty Simmons has managed to ...\n I read the novel some years ago and I liked it...\n Growing up, Joe Strummer was a hero of mine, b...\n I have to start by telling you how I came acro...\n Why didn't the producers give that show a chan...\n I really enjoyed this movie about the relation...\n i have seen many Japanese horrorfilms and i ha...\n All I can say is, before watching the movie I ...\n <br /><br />This film has some really impressi...\n These were two video shot movies that Troama d...\n What a pleasant surprise: A Disney DTV (Direct...\n I watched Phat Beach on cable for a while and ...\n I want so badly to give this piece of GARBAGE ...\n I have to be completely honest in saying first...\n For me, the best & most memorable movies are o...\n As a great fan of the Hammer Studios and enthu...\n Worst film ever, this is a statement that peop...\n This movie has one of the cheesiest plots I ha...\n Cut to the chase, this is one of the five wors...\n I saw this movie, and at times, I was unnerved...\n Though the title may suggest examples of the 1...\n The movie lacks credence with the helicopters ...\n It's been so long since I've seen this movie (...\n Perhaps the deepest cartoon made in the USA, \"...\n The King of Masks is a beautifully told story ...\n A frustrating documentary. Louis Kahn's son, w...\n The story of a Volcano erupting downtown L.A. ...\n This is definitely not one of Lucio Fulci's be...\n Finally a movie where the audience is kept gue...\n Well, don't bother. This film looks so tired, ...\n Woody Allen (who I have to confess at the outs...\n American Tourist on package tour in Asia suffe...\n What are people on here talking about? I must ...\n Alfred Hitchcock's Saboteur is not one of his ...\n Jack Brooks (Trevor Matthews) is a college stu...\n Un Gatto nel Cervello, or Nightmare Concert as...\n American film makers decided to make a film th...\n This movie really sucked.....HARD! It was just...\n As I sat in the theater almost crying to mysel...\n Everything about this film was terrible. To st...\n Oh dear, this movie was bad for various reason...\n Arising from characters previously developed i...\n Strangely, this version of OPEN YOUR EYES is m...\n I just thought it was excellent and I still do...\n \"The belief in the Big Other as an invisible p...\n After spotting the boat at the end of the prev...\n I am astonished at the major comments here for...\n If you have not seen this late 80s film about ...\n Aslan Adam, or Lionman as it's more commonly k...\n This movie has a special way of telling the st...\n LE CERCLE ROUGE is a very good film, though it...\n I would just like to point out (in addition to...\n Super Speedway makes a great demo of your new ...\n I found this movie to be quite enjoyable and f...\n First: I like S Segal! But in this movie, he h...\n \"Problem Child\" is one of the goofiest movies ...\n A solid B movie.<br /><br />I like Jake Weber....\n I first saw this movie 3 years ago, and it was...\n This has always been one of my favourite movie...\n I tend to get furious when hearing about Lucio...\n The first episode immediately gave a good impr...\n As I watched one of Orson Welles' last contrib...\n I always wanted to see ELECTRA GLIDE IN BLUE f...\n I enjoy science-fiction just as much as the ne...\n Like watching a neighbor's summer camp home mo...\n \"Laughter is a state of mind\" says the tag, an...\n By far this has to be one of the worst movies ...\n I remember running home from school almost eve...\n Time for a rant, eh: I thought Spirit was a gr...\n Shirley MacLaine in another tailor-made role. ...\n <br /><br />Having read the unemployed critic'...\n There is absolutely nothing in this movie that...\n I was amazed at the improvements made in an an...\n Though I did not begin to read the \"Classics\" ...\n Ronald Colman gives an electrifying performanc...\n Some of the reviewers of this film were extrem...\n This made for TV film is about every cliché yo...\n I have no idea as to which audience director G...\n No,no,no. That is my advice to you if you are ...\n There are some elements that save this movie f...\n I logged on here right after watching this mov...\n First of all, let me say that I am in no way d...\n My wife and kids was and still is the best com...\n Elia Kazan, one of the best theater directors ...\n This movie is still alive and kicking today th...\n Heavenly Days commits a serious comedy faux pa...\n First up this film, according to the slick sai...\n Apparently, in the eyes of some - there aren't...\n In any number of films, you can find Nicholas ...\n I am a professional musician who was inspired ...\n This film is in no way entertainment but more ...\n The location of the shop around the corner is ...\n For those looking for a sequel for the fine So...\n OK. Not bad movie making if it were from an or...\n Typically, I'm a comedy guy. I rented this at ...\n 'Night Crossing' is about an enormous barrier ...\n Let's begin by acknowledging that there are ar...\n Kennan Ivory Wayans was so funny in Low Down D...\n Not too many people seem to know about this mo...\n \"The Ex-Mrs. Bradford\" (1936), starring Thin M...\n I always believed that a film that's plot is c...\n A masterpiece of comedy, a masterpiece of horr...\n Debbie Boone had a monster hit with her record...\n With the dialogue in the dubbed version of thi...\n This is one of the great ones. It works so bea...\n \"The Garden of Allah\" is a prime example of \"p...\n I've seen Riverdance in person and nothing com...\n I wanted to like this movie. But it falls apar...\n Awful, simply awful. It proves my theory about...\n Whenever I hear a movie being touted because i...\n i was surprised after watching this piece of c...\n Murders are occurring in a Texas desert town. ...\n It beats me how anyone can rate this film very...\n Bored with the normal, run-of-the-mill staple ...\n Well this film has certainly had a fair amount...\n This movie wasn't the best... but it did have ...\n It is often hard to decide what the best film ...\n Never had I seen such a powerful true story mo...\n This movie might be o.k. if not for all the la...\n The makers of this film have created a future ...\n A somewhat typical bit of filmmaking from this...\n This three-hour Chinese epic, set in 220 B.C.,...\n Like most everyone who views this movie, I did...\n The Fury of the Wolfman is a very good film th...\n Hilarious film. I saw this film at the 2002 Sy...\n For a while it seemed like this show was on 24...\n Being a Russian myself, sometimes it's hard fo...\n Alexander Nevsky is rightfully held up as a ci...\n A deplorable social condition triggers off the...\n The story of peace-loving farmers and townspeo...\n \"Tenchi Muyo In Love 2\" is the third Tenchi mo...\n My partner and I sat down to watch this film o...\n The Long Kiss Goodnight has just about everyth...\n I went to this movie expecting an artsy scary ...\n I have seen this film on 3 different occasions...\n I hated this crap, every Friday as part of tgi...\n Well it might be a kid's movie...perhaps but i...\n The idea is to have something interesting happ...\n there's only so much that i can take of Filipi...\n I really tried to give this film a chance but ...\n As a Bruce Campbell fan for nearly two decades...\n It's one of those dramas that's so bad that it...\n Victor Buono as the Devil? Surely somebody mus...\n When I first picked this film up I was intrigu...\n Johny To makes here one of his best style exer...\n The volleyball genre is strangely overlooked b...\n Man, this movies sucked. It appeared to have l...\n One of the joys of picking up the recent Bela ...\n \"Plants are the most cunning and vicious of al...\n I've heard people who say this movie is dull d...\n I think this film has been somewhat overrated ...\n The best Batman movie of the 90's no doubt abo...\n I'm among millions who consider themselves Car...\n I was in such high hopes of seeing an adaptati...\n If you see this turkey listed in your TV guide...\n because that is the only way you won't think t...\n There has been a political documentary, of rec...\n In the early 00's, production companies had a ...\n I think that the idea of the plot is perfect f...\n This is the worst show I have seen in years. I...\n This movie has a \"big production\" feel that I ...\n Okay, so Gus Van Sant wanted to remake Psycho ...\n Thank God this has not been renewed by ITV.<br...\n Don't mistake \"War Inc.\" for a sharply chisele...\n very rarely it happens that i sit down to writ...\n Gods, I haven't watched a movie this awful in ...\n This movie is a great. The plot is very true t...\n **** Includes Spoilers ****<br /><br />I've be...\n ANTWONE FISHER is the story of a young emotion...\n I only lasted 15mins before self preservation ...\n Tim Robbins is oddly benign here, cast as a ga...\n I knew as soon as I saw the first trailer for ...\n This is how I feel about the show.<br /><br />...\n This is a film notable for what is not shown a...\n Coming of age movies are quite usual these day...\n It has been years since I have been privileged...\n This movie got off to an interesting start. Do...\n I got to see this just this last Friday at the...\n This is said to be the first Polish western an...\n I really liked the movie. I remember reading i...\n In 2005,George W. Bush started with his second...\n A broke would be screenwriter and his would be...\n So, as far as I gather, this episode is trying...\n Having just finished reading the book \"One of ...\n Maria Bello doesn't seem to care what people t...\n This film is about British prisoners of war fr...\n A few years ago, a friend got from one of his ...\n I was looking in the TV Guide for movies that ...\n When I was 17 my high school staged Bye Bye Bi...\n I am glad to see most other people here don't ...\n For a film with so much promise it was disappo...\n The final film for Ernst Lubitsch, completed b...\n Spike Feresten is a comic genius. 'Talkshow' d...\n The film portrays France's unresolved problems...\n So why does this show suck? Unfortunately, tha...\n Foolish hikers go camping in the Utah mountain...\n It couldn't have come out at a worse time--jus...\n 'The Shop Around the Corner (1940)' is a pleas...\n No music. No stupid masala. A reasonably reali...\n I knew that I was not about to see a quality f...\n All through his career Hitchcock did great fil...\n Why do they insist on making re-makes of great...\n Typical thriller, has been done many times bef...\n I live in Mexico City, so I have to suffer thr...\n Although the wonderful soda counter in the loc...\n A really bad sequel. Part 1 had a lot of funny...\n Most families will recognise similarities betw...\n Truly bad and easily the worst episode I have ...\n I finally saw LAURE and I have to say that I e...\n The make -or-break of a love story for me is w...\n This movie starts out with an execution of a p...\n I first saw this movie when I was about 10 yea...\n Norma Shearer dazzles as she is transformed fr...\n Like a lot of people, I loved the original; \"A...\n A complex story laid on the background of part...\n Seeing this film brought back to me memories o...\n I suppose it's nice and trendy to see wonderfu...\n This is far more than the charming story of mi...\n The true measure of any fictional piece of wor...\n Wow, i just witnessed one of the greatest poke...\n this is one of the funniest shows i have ever ...\n The movie had an interesting surprise. Somewha...\n This movie is truly one of the worst pieces of...\n We have to remember that the 50's were practic...\n Nothing will ruin a movie as much as the combi...\n I saw this movie last weekend and it is silly ...\n Must confess to having seen a few howlers in m...\n Was the script more fitting for a 30 minute si...\n Typical Troma-trash, this smutty 80's flick is...\n Wow! What a lovely, warm, rural film! The stor...\n Taken the idea out of a true diplomatic incide...\n One of the most heart-warming foreign films I'...\n David Lynch's (1999) film of John Roach / Mary...\n One Star. That's all this documentary deserves...\n Describing this film is a difficult task. On t...\n A friend of mine lent this video to me and I w...\n Mmmm, a previous summary says \"if you like ali...\n This is definitely Nolan's most intimite,and t...\n I am at a distinct disadvantage here. I have n...\n To call this film a complete waste of celluloi...\n This movie was so poorly acted. What was with ...\n I got this in the DVD 10 pack CURSE OF THE DEA...\n This was not a good movie!! Why do you people ...\n By all appearances this serial could have been...\n Watched the director's cut last night...glad i...\n Never before has such a large cast of ugly peo...\n Before I watched this tv movie I did not know ...\n This film is really bad, with a script full of...\n I just managed to find a copy of \"Mission Cleo...\n Being someone who lists Night of the Living De...\n Mary Pickford plays Annie Rooney--the daughter...\n The only reason that I did not give this 10 st...\n The first Matrix movie was lush with incredibl...\n *McCabe and Mrs. Miller* takes place in the tu...\n This was one of the worst Wrestlemania's I've ...\n Errol Flynn's greatest movie, not just a sport...\n This movie just arrived to Mexico and since I ...\n THHE remake was a superior movie remake in eve...\n STAR RATING: ***** Saturday Night **** Friday ...\n I really do not have any clue as to why some p...\n It's complete nonsense. I've studied Nazism an...\n This was the most god awful movie I have had t...\n Caddyshack II is one of those pictures which m...\n had to see this cos it looked like a great sca...\n This movie was a complete disaster for me. The...\n \"The Cure\" is a very touching and poignant dra...\n Fot the most part, this movie feels like a \"ma...\n For a moment, let's put aside the cultural asp...\n Academy Awarding actor Sidney Poitier of \"Lili...\n When I first heard about \"Down To Earth,\" I wa...\n Bears about as much resemblance to Dean Koontz...\n Well I have to say I had the chance to see thi...\n Most would agree that the character of Wolveri...\n This is about as stupid as it gets.<br /><br /...\n I had always wanted to see this film and the f...\n After winning a championship fight, boxer John...\n Drew Barrymore is an actress that has gone thr...\n (aka: DEMONS III)<br /><br />Made for Italian ...\n Generally it was a good movie with an ideal en...\n In efforts to make a somewhat comedic yet seri...\n Years have gone by since Don Wilson used his m...\n With the releasing of \"Farligt förflutet\" Swed...\n One of those, \"Why was this made?\" movies. The...\n Widow hires a psychopath as a handyman. Sloppy...\n In 1976 a mother named Norma Lewis (Cameron Di...\n This was Charlie Chaplin's first all-talking f...\n I saw recently saw this at the 2007 Palm Sprin...\n Classic author C.S. Lewis once wrote an essay ...\n To say Funky Forest: The First Contact is a ba...\n The Sopranos is arguably the greatest show in ...\n I read ashew's comment and thought they must h...\n Oh, man! This thing scared the heck out of me ...\n Despite its stereotypes, virtually 'no-name' c...\n This movie reeks. No money, no acting, no noth...\n I probably doubled my knowledge of Iran when I...\n I have never before voted 1 for a movie on the...\n Being a Bills fan, I originally found it annoy...\n I have a piece of advice for the people who ma...\n Heart pounding erotic drama are the words that...\n Yet another recent comedy that shows that Holl...\n I just cannot believe the low scores for this ...\n This is a movie with a wonderful concept, but ...\n If this movie should be renamed, it should be ...\n Hitchcock is a great director. Ironically I mo...\n This movie was very disappointing in that seve...\n I think the cards were stacked against Webmast...\n This movie is just plain silly. Almost every s...\n The basic idea behind \"Dungeon of Harrow\" isn'...\n Red Eye, a movie that id had wanted to see for...\n Yes. It takes a Norwegian to ruin and slaughte...\n I disagree 100% with the reviewer who disagree...\n Mean spirited, and down right degrading adapta...\n It was funny because the whole thing was so un...\n It takes patience to get through David Lynch's...\n Yesterday my Spanish / Catalan wife and myself...\n This is a very famous Ninja movie but it isn't...\n I watched this movie for the first time a few ...\n I am a sucker for films like this. Films that ...\n I am a college student studying a-levels and n...\n huge Ramones fan. i do like the ramones, and i...\n I rented this movie yesterday and can hardly e...\n What I enjoyed most in this film was the scene...\n MacArthur is a great movie with a great story ...\n What can I say? I ignored the reviews and went...\n A pretty transparent attempt to wring cash out...\n Even though the book wasn't strictly accurate ...\n I read all the reviews here AFTER watching thi...\n This movie attempted to make Stu Ungar's life ...\n I like movies about UFOs, which is why I recen...\n This film should have been much better than it...\n This movie is one of the funniest, saddest and...\n Anyone who had never seen anything like the fi...\n This gem captures early 80's life brilliantly....\n I like Steven Seagal but I have not a CLUE wha...\n A delight from start to finish.<br /><br />If ...\n \"Pecker\" proves that Waters has no intention o...\n \"House Calls\" is a wonderful romantic comedy t...\n After playing a nymphomaniac in WRITTEN ON THE...\n When watching A Bug's Life for the first time ...\n What can I say? Curse of Monkey Island is fant...\n Starring: Jim Carrey, Morgan Freeman, Jennifer...\n This film might have weak production values, b...\n Coming from Oz I probably shouldn't say it but...\n This is one of the most laughably bad films I'...\n I have always been a fan of Bottom, grabbing a...\n Poor Diane Arbus (whoever she was). Not only w...\n This movie was bad beyond belief. I saw it dur...\n So many bad reviewers, it made me wonder, what...\n This was the first sequel I'd seen (apart from...\n If anyone has any doubts about the talent of L...\n I viewed Linda, and it is a Top-Rate Movie! Th...\n This is just a short comment but I stumbled on...\n How strange the human mind is; this center of ...\n This is one of the movies that get better ever...\n This is a very enjoyable film with excellent a...\n Never having seen this movie, based on the ent...\n I really wanted to like this film. The second ...\n The sad thing about Frontline is that once you...\n As with most of Ben Affleck's movies, the come...\n ***SPOILER ALERT***<br /><br />I love Tim Roth...\n The only reason I give this movie an 8 out of ...\n The biggest National Lampoon hit remains \"Anim...\n You believe in God or you don't. You believe i...\n My mother forced me to watch this movie with h...\n Always enjoy the great acting of Drew Barrymor...\n I actually paid to see this movie in the theat...\n I bought this movie for $5 at a used CD store,...\n \"Sister Helen\" is a superb documentary about a...\n The original DeMille movie was made in 1938 wi...\n As drunken millionaire playboy Arthur Bach, Du...\n This is a great movie if viewed in the proper ...\n Rea, Sutherland, DeMunn, and von Sydow (in a s...\n This is the kind of movie that my enemies cont...\n B. Kennedy tried to make a sequel by exaggerat...\n Gray can make the English language jump throug...\n I really loved this movie and have spent sever...\n We had STARZ free weekend and I switched on th...\n This is one of the most hilariously bad movies...\n I'm stunt, I must admit I never saw a movie wi...\n Nowhere near the original. It's quite accurate...\n This was a classic case of something that shou...\n maybe i identify with this film cause i live i...\n Asmali Konak has arguably become one of the be...\n Here is a fantastic concept for a film - a ser...\n You know, this movie isn't that great, but, I ...\n This film is a wonderfully simplistic work. En...\n I realize most people don't know who Solomon K...\n So I give it one star for true quality, but I'...\n A man wonders if his hunky co-worker is gay. A...\n Storyline drags. Drug smugglers a Beautiful wo...\n Garde à Vue has to be seen a number of times i...\n What I find remarkable about this terrific fil...\n . . . is just as good as the original. Very ne...\n I rented this movie, because I noticed the cov...\n I like bad movies. I like to rent bad movies w...\n Lush cinematography, beautifully written and e...\n I'm not going to lie and say I don't watch the...\n I thought it will be a Ok movie after seeing t...\n Redline is a knockoff of Fast & Furious, witho...\n well well One cant b wasting time just cause o...\n Basically a typical propaganda film for the la...\n If you merely look at the cover of this movie,...\n Chen Kaige lost his sense of tempo. I envy Eur...\n I would not compare it to Le Placard, which IM...\n Critically, people say that Antz is better. An...\n I caught this on IFC last week and I thought i...\n Surely one of the best British films ever made...\n I was looking for ATTACK on Precinct 13. There...\n Sidney Franklin's \"The Good Earth\" has achieve...\n I saw this not too long ago, and I must say: T...\n I saw this movie on a fluke.I was standing on ...\n Let me start by saying how much I love the TV ...\n Richard Attenborough who already given us magn...\n A refreshing interview with the legendary Ital...\n While it's not \"perfect\", it's close. Love Bar...\n Why did they not follow the book ... I am real...\n After a series of power-outages on a remote is...\n you will likely be sorely disappointed by this...\n As I type these comments I'm watching a DVD of...\n Initially, I would have thought that Secret Su...\n These are excerpts from a nine-page \"Memo to M...\n Just to correct something in a previous review...\n As I looked at this movie once again, I think ...\n \"How She Moves\" springs to life only when its ...\n A friend of mine bought this film for £1, and ...\n My 5 year old daughter is very into the Barbie...\n What a mess--and I'm not referring to the \"des...\n Do these guys take have a computer kick out th...\n The first season of Bones is playing in Finlan...\n I had never heard of this film till it popped ...\n being a NI supporter, it's hard to objectively...\n My husband is a huge Robin Williams fan. I lik...\n Tales from the Crypt: And All Through the Hous...\n Firstly, I have heard great things about this ...\n Let's see how many ways you can insult my gend...\n Sometimes you wonder how some people get fundi...\n \"Red Sonja\" is flawed, weak and lacking. Even ...\n If you have seen Dogtown and Z-Boys or have an...\n I saw this in the early 70s (when I was 16), a...\n I'm not a movie snob. I've liked lots of movie...\n This outstanding film has about the best actin...\n I am being in no way facetious when I say that...\n This movie is nothing but a religious tract pr...\n This is one of my favorite series, all categor...\n They Made Me a Criminal is a remake of an earl...\n Fragile Carne, just before his great period. A...\n I have a 5 minute rule (sometimes I'll leave l...\n I saw this film at a pre-release screening at ...\n Tromaville High has become an amoral wasteland...\n Don't you ever miss the good old days when Dis...\n As a guy who has seen all the seasons, I can s...\n A movie made for contemporary audience. The ma...\n With the little respect it deserves, I would l...\n Who would've imagined -- Hal Hartley creates a...\n When I saw the previews for this movie, I didn...\n Generally I like horror movies, but unfortunat...\n This video is a fantastic testament and insigh...\n In 1972, after his wife left to go her own way...\n It really is a shame that films like this neve...\n A truly frightening film. Feels as if it were ...\n The Fiendish Plot of Dr. Fu Manchu (1980). Thi...\n I watched this movie three times at different ...\n This inept adaptation of arguably one of Marti...\n Man, is this lousy. It doesn't deserve much in...\n It hurt to watch this movie, it really did... ...\n The stark, cold landscape of Big Sky Country, ...\n I'm not aware of \"Largo Winch\" as a comic book...\n Occasionally funny but generally boring. I did...\n An Italian/American co-production co-starring ...\n The Broadway musical, \"A Chorus Line\" is argua...\n Request you to not watch this movie... It star...\n This film is just plain lovely. It's funny as ...\n By the time this movie came out in 1996, direc...\n This is a rip-off of already crappy hollywood ...\n This is strictly a review of the pilot episode...\n Hal Hartley entry into a European film series ...\n This movie coming from Turkey where you can't ...\n SPOILERS<br /><br />In the words of Jean-Paul ...\n SPOILER ALERT! Don't read on unless you're pre...\n The Howling II starts as it means to go on wit...\n One of the best,Lackawanna Blues<br /><br />Gr...\n I watched Free Money last night & it was the l...\n This is one of the best films made about the 8...\n I think this is one of the weakest of the Kenn...\n This was it! i would have never expected the e...\n A huge cast gathered for this remake which sad...\n The sequel to the ever popular Cinderella stor...\n If only he hadn't bowed to cliché, Mr Shiban c...\n One of Boris Karloff's real clinkers. Essentia...\n If you want to see a brilliant performance of ...\n I must, in light of the encomia of praise for ...\n Most of the episodes on Season 1 are awful..Th...\n Not for people without swift mind or without a...\n Since September of last year, I have been borr...\n It was difficult to sit through this horrible ...\n You know those movies that are so unspeakably ...\n OK, about 11 years ago the awesome, funny movi...\n the only value in this movie is basically to l...\n The first users comments are very detailed for...\n Finally got to see this classic TV movie on an...\n Obviously influenced by the success of Pal's \"...\n This is quite possibly the worst Christmas fil...\n 'Toy Soldiers' is the story of five misfits bo...\n From all of the Vietnam war movies this is pro...\n What an awful movie. I love monster flicks but...\n Saw this film yesterday for the first time and...\n In my humble opinion, this version of the grea...\n Jean Paget, Joe Harman, and Noel Strachan--all...\n As others have mentioned, this movie is simila...\n When I was in school I made a film about a cou...\n ********SPOILER ALERT************** Wasted 85 ...\n What an amazingly funny and original show. The...\n I'd completely forgotten about this film until...\n I saw this movie in part because of some posit...\n 6 out of the 8 comments on this subject rated ...\n I didn't care much for this, it seemed too con...\n i hate vampire movies. with that said, this on...\n God, I was bored out of my head as I watched t...\n I did no research on the film prior to my firs...\n It's all there: Two classic anti-hero buddies,...\n Unfortunately the movie is more concerned with...\n This movie had a good story, but was brought d...\n I suppose many people comment/review their fir...\n David Suchet is Agatha Christie's mustached de...\n The latest Rumor going around is that Vh1 is s...\n Saw it as critic at the 49. Internationales Fi...\n Honestly I am not even joking when I say that ...\n I was very disappointed when this show was can...\n I always thought people were a little too cyni...\n I recently watched this, but when it started I...\n I have seen this movie twice now on cable. The...\n I don't like \"grade inflation\" but I just had ...\n \"Bride of Chucky\" is one of the better horror ...\n I first saw this movie in a theater in France ...\n Mark Walhberg in a great role, idolises a rock...\n As a CA resident, I'd like to see the jackhole...\n Written and acted by sincere amateurs, produce...\n This movie is not what it appears to be. Clint...\n All of the people reviewing this film, and pro...\n Pretty pictures with a cool sound track do not...\n The first half of the movie is not that bad ac...\n I enjoyed the first reviewer's comment far mor...\n \"Nobi\" or \"Fires On the Plain\" is a film that ...\n The emergence of Quentin Tarantino and his dub...\n I have a feeling that Dr. Dolittle was intende...\n Recently when i was shopping, i saw the box-se...\n Not many reviews, hence thought i would add on...\n Although I had previously watched this one som...\n I suppose all the inside jokes is what made Mu...\n I went into this film really wanting to like i...\n Opening with some blatantly reused footage fro...\n When Gundam0079 became the movie trilogy most ...\n Princess Warrior is a science fiction action m...\n I am a massive fan of the book and Orwell is c...\n i watched it because my friend said we could t...\n Tyra Banks needs to teach these girls that it'...\n Wow, could have been such a good movie,Starts ...\n I once caught about a 20 minute portion of thi...\n I don't want to go too far into detail, becaus...\n This straight to video cheap flick is based on...\n This film is a very good movie.The way how the...\n This movie was for a while in my collection, b...\n It's Bad for Ya really showcases more of Georg...\n What a time we live in when someone like this ...\n This movie deserves credit for its original ap...\n I understand \"Checking Out\" will likely be rel...\n This movie was nothing like the book. <br /><b...\n Every movie critic and metal head hated this m...\n So, Fox pulled the plug midway through a drama...\n The Williams family live on a ranch located in...\n There is a remark that one of heroines was rap...\n I'll keep this fast and sweet. Five girls on t...\n I just watched this movie in high definition o...\n I was looking forward to this movie as everyon...\n this movie begins with an ordinary funeral... ...\n I have watched THE ROOT OF ALL EVIL with the a...\n Firstly, I really enjoyed this movie and its m...\n Warped take on the Pinocchio theme, and set du...\n This was a very faithful presentation of Lewis...\n I went to see this film at the cinemas and i w...\n Tamara Anderson and her family are moving once...\n Most yeti pictures are fatally undermined by a...\n this is a great movie. I love the series on tv...\n This is one of the few movies - maybe the only...\n All this dismaying waste of film stock needs i...\n Alan Johnson (Don Cheadle) is a successful den...\n Gary Busey's best performance in a nicely-flow...\n I was supremely disappointed with this one. Ha...\n My husband and I went to see this movie, being...\n Those prophetic words were spoken by William H...\n A movie visually graceful but interesting is m...\n \"May Contain Spoilers*<br /><br />\"All Dogs Go...\n Ok, so it may not be the award-winning \"movie ...\n I don't know about the English version of this...\n I guess they reward idiocy today because whoev...\n This work is pretty atmospheric, with a couple...\n I've watched this documentary twice - and alth...\n This movie made me think....of how I could wri...\n Visually stunning? Most definitely. I have see...\n A touching love story reminiscent of In the M...\n I'm not sure what dragged me into the cinema t...\n Don't bother to check for logic. There is none...\n Someone else called this film a \"fable-horror\"...\n Penelope Spheeris (of \"Wayne's World\" fame) ma...\n \"While traveling in the mountains, a man is at...\n Sunday would not be Sunday without an action m...\n About 15 minutes in, my wife was already wanti...\n This was a very good film. I didn't go into it...\n Riotously cheesy lunacy about lava spewing fro...\n I was actually planning to see this movie when...\n Michael Jackson is amazing. This short film di...\n Man this movie is awesome especially the part ...\n \"The Falcon and the Snowman\" is the story of t...\n I've been looking for the name of this film fo...\n Jack Black and Kyle Gass team together to prom...\n Kubrick may have been the greatest director of...\n Do not waste your money or time. Terrible movi...\n Woof! Pretty boring, and they might as well ha...\n Don't mind what this socially retarded person ...\n Isn't anyone else tired of that old cliché' wh...\n Mark Blankfield played Jekyll and Hyde.<br /><...\n Bruce Lee was a great martial artist, but this...\n I went through the highs. I went through the l...\n he was my hero for all time until he went alon...\n An amazing film, I've only just seen it and I ...\n This movie is awesome. If you take it too seri...\n Words cannot describe how horrible this movie ...\n \"Dungeon of Harrow\" had a lot of things that c...\n You would really need to remember the Monkees ...\n This could have been a really good movie if so...\n Demer Daves,is a wonderful director when it co...\n Cunningly interesting Western from a director ...\n The \"movie aimed at adults\" is a rare thing th...\n Lone Star Productions sure churned them out in...\n Interferencia starts as unemployed Martin Sand...\n I can barely find the words to describe how mu...\n .....whoops - looks like it's gonna cost you a...\n The filmmaker inhaled Andy Goldsworthy's art, ...\n What a disappointment! I hated the mummy but t...\n Jack Webb finally gives something besides his ...\n I've been waiting 30 years to see this film. I...\n Gods...where to start. I was only able to stom...\n I had the privilege of seeing this powerful pl...\n I have to admit that Over Her Dead Body actual...\n Noni Hazlehurst's tour-de-force performance (w...\n Ignoring (if possible) the tediously gratuitou...\n I actually flipped to Lifetime channel by mist...\n If you've never experienced the thing that is ...\n I have to say as being a fan of the man who cr...\n The Wind. Easily one of the worst films ever m...\n In all honesty, if someone told me the directo...\n I read the other comments here about this movi...\n But how can you stand to mange a baseball team...\n Another well done moral ambiguity pieces where...\n You know all those letters to \"Father Christma...\n Anyone familiar with my reviews on the Interne...\n ...dislike this movie and everyone would under...\n William Shakespeare's Merchant of Venice portr...\n Why did they have to waste money on this crap?...\n For several reasons, this movie is simply awfu...\n I think everyone was quite disappointed with t...\n Great Movie! The sound track is awesome! Very ...\n Who says zombies can't be converted into usefu...\n I have seen a lot of Saura films and always fo...\n Film follows a bunch of students in the NYC Hi...\n Midnight Cowboy is not for everybody. It's raw...\n This Movie Is Not A Horror Movie. There Is Not...\n Susan Sarandon. She made this movie for me. I'...\n don't buy this film for comedy value like I di...\n Lily Mars, a smalltown girl living in Indiana,...\n Let me just say - I love the horror genre to t...\n 'Nemesis' was the last book to feature Miss Ma...\n An excellent interpretation of Jim Thompson's ...\n When something can be anything you want it to ...\n \"Paranormal State\" is an interesting show for ...\n I turn on 700 Club once in awhile and only agr...\n This movie is very hilarious, and it has a gre...\n Cybrog 2:Glass Shadow stars Elias Koteas as Co...\n Rohmer returns to his historical dramas in the...\n Life was going great for New York City adverti...\n Great story, great music. A heartwarming love ...\n I liked it... just that... i liked it, not lik...\n Eric Roberts \"stars\" in this Tommy Lee Thomas ...\n Harman and Isings 'Old Mill Pond' is a true ma...\n Fame did something odd. It was not only a musi...\n Flat, soulless computer images on less than as...\n 'Opera' (1987) <br /><br />Director: Dario Arg...\n Quite possibly the worst movie I've ever seen;...\n Just as Ted Kramer (Dustin Hoffman) is about t...\n The final part of Kieslowski's trilogy based o...\n Bah. Another tired, desultory reworking of an ...\n I Am Curious is really two films in one - half...\n Gillian Anderson is an arrogant, driven, caree...\n Can u believe a college professor made this fi...\n Obviously written for the stage. Lightweight b...\n Hello. this is my first review for any movie i...\n Spoilers. This review has been edited due to w...\n Dark Harvest is about a group of friends that ...\n Tiny Toons:how i spent my vacation, has always...\n Okay I marked this spoiler so don't be upset w...\n I don't cry easily over movies, but I have to ...\n Yes, it's true that it was Jessica Alba who le...\n Carnosaur 3: Primal Species (1996) D: Jonathan...\n As I have said before in previous comments, so...\n Okay, so the first few seasons took a while to...\n This is an exceptional film. It is part comedy...\n If at least the cruelty and drawn out deaths h...\n For a comedic writer, Woody Allen really lets ...\n Anytime I'm not giving 150% to my dreams or my...\n Now I like Victor Herbert. And I like Mary Mar...\n I can see what this film was intending to do. ...\n >>>>Author: msgreen-1 from Canada >>>>The big ...\n Hunky Geordie Robson Green is Owen Springer, a...\n Crossfire (1947)<br /><br />Great Message, Gre...\n Beware My Lovely originated from a play writte...\n I just purchased this movie because I love to ...\n Functioning as a sort of midpoint between \"Wai...\n This is a quirky movie that the Brits do so we...\n I thought the this film had an interesting nam...\n Assault on Precinct 13 is the absolute dumbest...\n Here's an indie film I really wanted to like, ...\n Fun story of a regular guy with big dreams, th...\n Just in case the title didn't give it away - t...\n This film was bad. I believe Elton (or is it M...\n The fact that most of the budget for this pres...\n I've always enjoyed Frank Sinatra's music, and...\n 1.) This movie was amazing! I watched it while...\n Seriously... I'm amazed at all the good feedba...\n Getting lost in space frozen for 15 years, tha...\n Opening credits: great. Music: just right for ...\n This time, the lovable dimwit gets summoned fo...\n Having just come home from my third viewing of...\n Rock 'n' Roll High School was one of the best ...\n [No Spoilers]<br /><br />Being a David Lynch f...\n In her first nonaquatic role, Esther Williams ...\n Early Coppola with sublime cast that most folk...\n ....OK, small-town, clueless sheriff? Check. S...\n This film is awful. The screenplay is bad, the...\n Your idol will deceive you in this movie. Step...\n Vampire cyborgs rule the world and use the blo...\n admittedly, I first picked up Ranma 1/2 when I...\n In the mid-1970s, my NYC apt. building was fin...\n Going down as the most expensive film in Finni...\n To be brutally honest... I LOVED watching Seve...\n This movie has one of the worst lead character...\n I'll start blasting the movie first. Remove Ab...\n In my opinion, this is the best stand-up show ...\n This movie is a little ray of sunshine in a da...\n The great Vincent Price has done many fantasti...\n I have always like this great baseball movie! ...\n The greatest effort plus the finest cast ever ...\n Shocking!<br /><br />In 1965 I saw Jury Gagari...\n It's sort of crazy, but I taped from TCM both,...\n Linda Lovelace was the victim of a sadistic wo...\n This installment very much makes the CIA look ...\n Having grown up on westerns and considering th...\n Steamboat Willy was not the first cartoon to f...\n This movie shows a row of sketches, which part...\n i must say that this movie had a great cast, l...\n I anticipated this movie to be decent and poss...\n Any Way the Wind Blows is Tom Barmans (who is ...\n Well what can I say, there are B-Grade Movies ...\n What a wonderful movie, eligible for so many l...\n ...un-funny and un-entertaining, possibly the ...\n Possible Spoiler alert, though there's not muc...\n Piranha starts out as expected, stupid white p...\n speaking solely as a movie, i didn't really li...\n If you're a kid liking fairy tale \"real life\" ...\n The fourth of five westerns Anthony Mann did w...\n This movie should have come with a disclaimer ...\n This movie feels so EMPTY. IN every scene in t...\n I'm not sure if the filmmakers were after a Sa...\n If you're OK with the outlandish work of Italy...\n Christopher Nolan's directorial debut is a mem...\n I've read every adventure of Asterix and Obeli...\n Make the World go away. Get it off my shoulder...\n I don't know what I missed here, but I can't b...\n This *should* have been an amazingly funny mov...\n I just watched Antwone Fisher on BRAVO. What a...\n This movie is definitely on the list of my top...\n Paha maa is different Finnish film. But the th...\n Ira Levin's Deathtrap is one of those mystery ...\n A klutzy young man returns West after being sc...\n Yep, this has got to be one of the lamest movi...\n I couldn't bear to sit through he entire movie...\n 044: The Big Trail (1930) - released 10/24/193...\n It's hard to believe, after waiting 14 years, ...\n I'm 47 years old and I've spent as much of my ...\n I just have to add, in case anyone actually re...\n Cronica de un desayuno combines the worst defe...\n Since it has been some years since I reviewed ...\n While babysitting at an isolated Colorado hous...\n Through its 2-hour running length, Crash chart...\n One of the most timely and engrossing document...\n ( HR is what Himesh is called in the movie, I ...\n What's with all the negative comments? After h...\n I blame \"Birth of a Nation\" myself - for comme...\n We saw La Spettatrice last night @ the Chicago...\n I was really looking forward to watching this ...\n STAR RATING: ***** The Works **** Just Misses ...\n This film (along with Rinne) are minor gems am...\n I ran across this movie on the tv and could no...\n The Squire of Gothos is one of the \"sillier\" e...\n First: I bought it at the video store. Second:...\n I loved that the mood was light and airy. I lo...\n Early in the movie, Cagney's Johnny Cave chara...\n This serial is interesting to watch as an MST3...\n Plague replaces femme fatale in this highly su...\n For many years Ed Wood's Classic 'Plan 9' has ...\n This is a great installment in the Child's Pla...\n This is the worst of the toxie series by far. ...\n I finally snagged a copy of Kannathil Muthamit...\n I saw this at a test screening in Chatsworth a...\n ***Possible spoilers***<br /><br />I've read u...\n This movie was sooo bad. It wasn't even funny ...\n I accidently felt on this movie on TV, and I w...\n Aaron Carter plays the pop star(J.D. McQueen) ...\n In an attempt to bring back the teen slasher g...\n The only show I have watched since 90210! Why ...\n Sur mes lèvres or READ MY LIPS is fine little ...\n WOW! <br /><br />This film is the best living ...\n This was one of the first CREEPY movies I ever...\n Dekalog Five was an interesting viewing experi...\n The questions and answers of the human spirit ...\n 'It's supposed to have got good reviews' says ...\n this show is just plain awful. I liked to watc...\n Possibly the most brilliant thing about Che: P...\n The great and underrated Marion Davies shows h...\n I just did not enjoy this film. But then I lov...\n In Paris, a few months before the Nazi invasio...\n This movie is never going to be on a list of t...\n This movie has beautiful scenery. Unfortunatel...\n My giving this film a score of 8 is relative t...\n I have probably watched the movie 4 or 5 times...\n I don't know why people except a lot from low ...\n Man With the Gun is pretty much forgotten now,...\n I used to watch this show when I was a little ...\n Where do I begin? Let me say that -- after hav...\n I wanted to give Drawing Blood the benefit of ...\n I used to be an avid viewer until I personally...\n Well, if it weren't for Ethel Waters and a 7-y...\n \"Boom\" has garnered itself a something of a re...\n I watched the pilot episode for this one with ...\n I recently got the movie and all I can say it ...\n What a gem of a movie, so good that they made ...\n Best Years of Our Lives perfectly captures the...\n Man, some of you people have got to chill. Thi...\n Like a Circle around the human condition, 2001...\n Kim (Patricia Clarkson), George (Jake Weber) a...\n A \"sleeper\". I had never even heard of this mo...\n Greetings again from the darkness. Remember al...\n I didn't really HATE Mirrormask. I just really...\n An off beat but very delightful performance by...\n The Menagerie parts one and two was the only 2...\n The French people are not known to be great mo...\n Intense, funny, witty, and more than anything,...\n This is a pretty OK film... yes some parts are...\n I saw this director's \"Woman On The Beach\" and...\n Bad, bad movie. When I saw the synopsis I was ...\n My friend took me to a screening of this movie...\n As other reviews have stated, there are a few ...\n I thought this was very \"different\" compared t...\n What's with Indonesian musical movies? Never h...\n I love this movie, though I don't like how the...\n \"Markham,\" says urbane gentleman crime-solver ...\n Now, I've seen a lot of bad movies. I like bad...\n I looked over the other comments and was thoro...\n While many unfortunately passed on, the ballro...\n This is the best of the films (so far) that Ch...\n I have fond memories of watching this visually...\n Though it's better than most made-for-TV movie...\n It has been since 1972 that I saw this movie a...\n The story and the characters really REALLY nee...\n :::SPOILER ALERT:::<br /><br />Soooo, Arnie's ...\n O boy, was this really bad.<br /><br />I saw t...\n \"So there's this bride, you see, and she gets ...\n OK, so the following review is more of a synop...\n As a young lass, beautiful Joan Woodbury (as R...\n I was expecting a lot from this movie, and I c...\n This movie has good intentions, at least in th...\n I gave 1 to this film. I can't understand how ...\n Hitting the ground running, the film begins wi...\n Seriously, there is absolutely NOTHING good ab...\n The film is not for everyone. Some might think...\n When I think about this movie, all the adjecti...\n This is an excellent film, but Momento (Nolan'...\n As I was watching this film on video last nigh...\n One of the most beautiful movies ever made in ...\n Reportedy based on actual historical events, t...\n I figured the whole joke of the movie would be...\n It was almost worth sitting through this entir...\n This film concerns purportedly non-establishme...\n Such a shame that this wonderful bright spot o...\n It could have been better had it been directed...\n This movie is great, the music \"with the excep...\n With the exception of about 10 sublime minutes...\n I am glad other people enjoyed this movie, cau...\n WEll first and for most I'd just like to say t...\n I discovered \"The Patriot\" in a DVD-store and ...\n I would have to say that in general Barbie Mov...\n Darr was a Super Hit film, which was loved by ...\n If you're not in the mood for more than an hou...\n For a feature film, the plot closely follows h...\n Retro Puppet Master starts in Kolewige during ...\n I haven't seen much German comedy, but if this...\n Ok, let's get this out of the way first: As a ...\n This is one of the two postapocalyptic fantasy...\n In the Fiji islands, the greedy and unscrupulo...\n My friend and I rented this movie for 3.99 at ...\n Robert Siodmak does a fabulous job with this B...\n I would have rated this film a minus 10 but sa...\n When I first saw the previews for this movie o...\n I can remember a college professor commenting ...\n SPOILERS<br /><br />Tom and Jerry is a classic...\n I can not believe I wasted my money to rent th...\n I believe I share the same psychological outlo...\n Parasomnia has an interesting premises, but th...\n Sean Bean is great, as are the photography, lo...\n I don't know why some guys from US, Georgia or...\n Being a seasoned fan of Italian thrillers and ...\n Leave it to Paul \"sex on the brain\" Verhoeven ...\n Another British cinema flag waver. Real garbag...\n I had high hopes for this film. I thought the ...\n This is a movie that deserves another look--if...\n As with all of Angelopoulos' films, \"The Suspe...\n I suppose it was for Temple Matthews who writt...\n Iron Eagle may not be the most believable film...\n This is the sorriest collection of clichés, st...\n If you've ever seen Open Water , this is the s...\n How can a movie with Amy, Posey and Raechel ha...\n I LOVE this movie. Director Michael Powell onc...\n 24 has got to be the best spy/adventure series...\n I saw this film because Calexico did the score...\n Who ARE the people that star in this thing? Ne...\n A hilarious and insightful perspective of the ...\n This is the story of a maniac cop who, for som...\n This movie is just bad. Bad. Bad. Bad. Now tha...\n Orson Welles' 1974 documentary \"F for Fake\" ex...\n <br /><br />Ok the film wasn't going to win an...\n Yet another Lo Wei production to completely wa...\n This could be the most underrated movie of its...\n Why were there so many people crowding into an...\n Ladies and gentlemen, we've really got ourselv...\n ALMOST GOLDEN: THE JESSICA SAVITCH STORY<br />...\n Definitely, definitely the worst film I've eve...\n I was staying in one night and got extremely b...\n Telly Savalas hams it up as the Mexican revolu...\n Not one of your harder-hitting stories, and th...\n The films of UPA are surprisingly well rated o...\n I've always enjoyed animated ducks for some re...\n Val Kilmer and Dylan McDermott are terrific. I...\n This film was a wonderful romp, intelligent, p...\n Out of the many films I've seen, Tommy Boy is ...\n Yawn, that is my reaction to this film. I was ...\n For a movie that was the most seen in its nati...\n This movie is like the material S.E. Hinton wa...\n For the first fifteen minutes the story of NAK...\n The script for this movie was probably found i...\n It is not an easy film to watch - it is over t...\n Well, it definitely is unlike anything else di...\n A sparkling movie. BB is a marvel. She's sultr...\n What a shame that Alan Clarke has to be associ...\n Elizabeth Taylor never could act at all and sh...\n Let's hope this is the final nightmare. This i...\n AAA is my favorite movie... I have seen it a n...\n I saw this movie last night after waiting ages...\n Man, is it great just to see Young and The Res...\n On Sunday July 27, 1997, the first episode of ...\n I was in the film too, but i don't know if the...\n This movie is a fascinating drama about the Ma...\n \"The 40 Year Old Virgin\" exists in a world I d...\n There is absolutely no doubt that this version...\n Even with the low standards of a dedicated hor...\n One of the other commenters mentioned that the...\n 1st watched 10/10/2009 - 8 out of 10 (Dir - Bi...\n Alex D. Linz replaces Macaulay Culkin as the c...\n they should make terrorists watch this video a...\n Cheesy script, cheesy one-liners. Timothy Hutt...\n I thought \"The River of Souls\" was a very good...\n The plot is somewhat original, and all the act...\n This is just one of those films which cannot j...\n The film Soultaker is essentially an older for...\n It might be that the film I saw was entirely d...\n This story of Ted Brice, an American pilot who...\n Get this film if at all possible. You will fin...\n I do not know who is to blame, Miss Leigh or h...\n Did someone find the plot somewhere in the fil...\n It seems everyone wants to jump on the bandwag...\n Brilliant work. Marvelous actors dissolve as b...\n Just got this in the mail and I was positively...\n This mini series, also based on a book by Alex...\n John and his wife Emily, accompanied by their ...\n Luise Rainer received an Oscar for her perform...\n The Legend of Bloody Jack is set in the Alaska...\n I have yesterday seen the second part. And I m...\n This movie should have easily qualified as a f...\n Brazilian films often get more positive apprai...\n Jane Eyre with full frontal nudity! I was not ...\n Lorne Michaels once again proves that he has a...\n I just can't agree with the above comment - th...\n <br /><br />I thought that this movie lacked t...\n I say Ben Johnson and my fellow Canadians say,...\n I consider myself a big fan of low budget horr...\n Ouch. This is one ugly movie. Not only is it b...\n Right, where do I start? I cannot even imagine...\n After Life is a Miracle, I did not expect much...\n I love dogs, and the most interesting characte...\n This is by far the funniest sitcom that has ev...\n The first time i saw this movie was on a fligh...\n I watched the first episode of \"The War at Hom...\n Another good Stooge short!Christine McIntyre i...\n An unassuming, subtle and lean film, \"The Man ...\n Great voices, lots of adventure and clever dia...\n Alex North (John Cassavetes) has problems in r...\n Any movie with \"National Lampoon\" in the title...\n The movie is bad. Nothing special - just a \"ki...\n The Wooden Horse was one of the first \"great\" ...\n A couple move into their dream home, unaware t...\n <br /><br />What more can you ask for? A great...\n There are so many holes in the plot, it makes ...\n i went to see this because i have some friends...\n Obviously with this film going straight to DVD...\n This movie is basically about some girls in a ...\n I was expecting a documentary that focused on ...\n This is not the true story. It is the darkest ...\n John Leguizamo must have been insane if he thi...\n First, I am not really a fan of the whole \"thi...\n If Jean Renoir's first film \"Whirlpool of Fate...\n Okay, so I forgot to watch and only caught the...\n \"Insignificance\" is a far from great film, fro...\n In a time of magic, barbarians and demons abou...\n The narrative affirms the classic image of goo...\n This movie is one of my all time favorite movi...\n I believe a lot of people down rated the movie...\n Japan is in serious trouble. Demons have infes...\n **SPOILERS** The killer in the movie doesn't w...\n I think i watched this movie, but don't quote ...\n I have never read the book\"A wrinkle in time\"....\n I truly hate musicals because music numbers ju...\n The fourth \"Tremors\" feature goes back in time...\n It's a real challenge to make a movie about a ...\n I saw this film for the first time last night....\n Space is a vacuum, right? Therefore, space suc...\n Holy freaking God all-freaking-mighty. This mo...\n What is the story what is it on the screen. At...\n Okay, so the plot is on shaky ground. Yeah, al...\n This movie was so frustrating to watch. The sp...\n It's true that Danny Steinmann's \"The Unseen\" ...\n Dressed to Kill (1980) is a mystery horror fil...\n What a show! Lorenzo Lamas once again proves h...\n First, let me start by saying that I am a Laur...\n ******Spoilers within******* What a dull, pred...\n Let's get one thing straight: I like much of S...\n This is one of the worst movie I have ever see...\n David Mamet wrote the screenplay and made his ...\n Radio will have you laughing, crying, feeling....\n Alleged \"scream queen\" Debbie Rochon and her g...\n We should have been suspicious to discover tha...\n with all the European studios involved in this...\n I caught this on Cinemax very late at night......\n Sadly, this movie is not very good. But does i...\n This is one of those movies which makes you th...\n Say what you want about Andy Milligan - but if...\n I came out of \"Dark Blue World\" feeling (sigh)...\n Terrible film with Frank Sinatra as Tony Rome....\n Prior to this film, I had only seen two films ...\n No pun intended. I'm not going to spoil anythi...\n No matter how you feel about Michael Jackson h...\n <br /><br />I'm sure things didn't exactly go ...\n A missed train. A wrong phone number. An extra...\n Everything you do in this world should make at...\n A patient escapes from a mental hospital, kill...\n Wow what can I say it was a good movie, very d...\n I don't like boxing, don't understand the attr...\n Scott Henderson (Alan Curtis) meets a mystery ...\n Dumb, meaningless movie should appeal to South...\n I've waited to see this movie for a long time ...\n I don't think it's necessary to outline the pl...\n As a producer of indie movies and a harsh crit...\n This film is a third rate attempt at a compell...\n I'm 14 years old and I love this cartoon. Burt...\n I disliked this movie for numerous reasons. Wi...\n I recently picked up all three Robocop films i...\n I've tried to like this film, really. In watch...\n I am a lover of B movies, give me a geneticall...\n GINGKO BED is a strange movie. It's very convo...\n People seem to be expecting Citizen Kane here!...\n In WWII, America has developed a brand-new HUG...\n Three children are born at the exact same time...\n Whoever said that horror wasn't an educational...\n I'm slowly ploughing through as many Hong Kong...\n Thought at first this film would be your typic...\n Under the assured direction of F. Gary Gray, \"...\n I don't really know where to start. The acting...\n Right, then, he's absolutely brilliant. But yo...\n The first thing you meet when you study fascis...\n I can see why this film was Oscar-nominated fo...\n If I could give it a zero, I'd change my mind ...\n Too bad, I really like Kristen Cloke and Gary ...\n michael jackson is the greatest singer and the...\n I'm an admirer of Hal Hartley's films, especia...\n This was like watching the trailer of a up and...\n This Oscar-winning short film (40 minutes), ba...\n Saw this movie at the Vancouver Film Festival ...\n Well.......in contrast to other comments previ...\n i was 9 when i first saw this on TV. on a Frid...\n Well, they sent it on TV between midnight and ...\n This film is all right, fairly silly and to be...\n As a local performer, I thought that \"Grease\" ...\n Barbara Stanwyck is a sheer delight in this wa...\n A stale \"misfits-in-the-army\" saga, which half...\n I highly recommend this film. Set in the Blade...\n A terrible deception: controversial film, winn...\n Astaire and Rogers at the height of their popu...\n The intertwined points-of-view can come up as ...\n This isn't exactly a great film, but I admire ...\n As a fan of looking further into the phenomeno...\n **WARNING** MISERABLE MOVIE **WARNING** The da...\n Down Periscope is not a \"Great Movie\". But the...\n Although The Notorious Bettie Page is well act...\n First and foremost I wish to aim a big & mean ...\n I saw this on a Cantonese VCD with the English...\n This is the single worst movie I have ever see...\n The trailers for this movie promised and this ...\n A very watchable film, and one which was eager...\n This is 1 hour and 24 minutes of pure boredom!...\n This is a gem of a film, Slapstick violence a-...\n This movie is recommended only for insomniacs:...\n I saw this movie last night on HBO & didn't ex...\n As the film begins a narrator warns us THE SCR...\n Sometime ago I watched a video of Paul Thomas ...\n Man's Castle is a wonderful example of a Pre-C...\n I did watch all of the film through to the dis...\n Before he became defined as Nick Charles in th...\n For me, this is another one of those films tha...\n The '80's were not very kind to one-time major...\n *POSSIBLE SPOILERS*<br /><br />I thought Pitch...\n The subject matter seems pretty dated today. A...\n Bo is Jane Parker, whose long-lost anthropolog...\n I was waiting to see this movie from a long ti...\n I sort of liked this Columbo movie its atmosph...\n Yet another remake of \"Fistful of Dollars\", Se...\n Don't get me wrong: I enjoy art-house movies, ...\n This film has some of the greatest comedic dia...\n Here Italy (I write from Venice). Why cancelat...\n I absolutely LOVED this film! I do not at all ...\n This movie turned out to be better than I had ...\n Well, what can be said about a \"horror comedy\"...\n John Candy's Performance in Once Upon A Crime ...\n Despite the acclaim on the DVD cover of the ve...\n This movie has an outstanding acting, by Maril...\n It is incredible in that it succeeds in being ...\n I'm sick of the \"open mind\" argument. I'm gene...\n Why oh why can't anyone make a decent film out...\n \"Tulip\" is on the \"Australian All Shorts\" vide...\n I was a guest at the Sept. 30th screening of E...\n It was on a day in 1891 when Scottish inventor...\n The film starts well enough. It is a truly ter...\n And I really mean that. I caught it last night...\n I enjoyed this movie so much that I watched it...\n One of the last surviving horror screen greats...\n Un-bleeping-believable! Meg Ryan doesn't even ...\n This late 50s French study of disaffected yout...\n A man comes to the office of the psychiatric D...\n I purchased this video quite cheaply ex-rental...\n This movie purports to be a character study of...\n I rented this movie because I am a huge Dudiko...\n I got this DVD from a friend, who got it from ...\n I missed almost all of the first season, but w...\n There will be a time where kids will have grow...\n Because 'cruel' would be the only word in exis...\n World At War is perhaps the greatest documenta...\n First one was much better, I had enjoyed it a ...\n I remember watching this series avidly and bei...\n 12/17/01 All I can do with this film is improv...\n For a long time I did not know weather I liked...\n This series has recently been unearthed and ex...\n *** REVIEW MAY CONTAIN SOME SPOILERS *** I'll ...\n While movie titles contains the word 'Mother',...\n Completely ridiculous \"period\" film is only a ...\n This is apparently the first film featuring Gl...\n I have been waiting to see this film for ages ...\n The premise of Cabin Fever starts like it MIGH...\n A sad, sad sight indeed is The Munster's Reven...\n Loved the original story, had very high expect...\n GOLD RAIDERS (1951)<br /><br />A dull western/...\n FREDDY has gone from scary to funny,in this 6t...\n A really funny British comedy from the mid 195...\n A young theater actress reluctantly accepts he...\n It's not funny, it's not interesting, it's not...\n This is one of the worst movies I have seen re...\n I thought this movie was terrible. I'm Chinese...\n Ziab la ta'kol al lahem is an awful movie.This...\n This has to be one of the worst films I have e...\n If you Listen to Ween (The Pod, God/Satan), th...\n This is about the worst movie I have ever seen...\n I tracked the trip two years ago on the intern...\n The progression of the plot is enough to \"rope...\n BOOOOOOOORRRRRINNGGGGGGGG and STOOOOOOOPIDDDDD...\n There is nothing original,humane or insightful...\n \"Shore Leave\" is mostly an average Star Trek a...\n This movie is so mild! I tried not to expect a...\n This is truly one of the most awful movies of ...\n Largely forgettable monster film from the 50s ...\n Unless you understand wretched excess this mov...\n I remember watching this for the first time in...\n This one features all the (bad) effect of Prio...\n A couple of men are ship-wrecked on a remote i...\n When Pinky, a qualified electrician, is releas...\n ...thankfully he hasn't, yet! This is crude, s...\n There were heist movies before this one, and i...\n Macy, Ullman and Sutherland were as great as u...\n THE BLOB is a great horror movie, not merely b...\n Can anybody do good CGI films besides Pixar? I...\n Gundam Wing to me happens to be a good anime. ...\n There are many reasons I'm not a fan of fact b...\n I can't remember many films where a bumbling i...\n I would probably say this was on a par with fi...\n Yes, the movie was that boring and insipid. af...\n It was definitely worth viewing, I don't regre...\n One of the requirements of science fiction, at...\n Why does C Thomas Howell do these movies? Crui...\n Having been familiar with Hartley's \"The Go-Be...\n When I read the reviews of Kahin Pyaar Na Ho J...\n A few years ago I saw The Scent of Green Papay...\n I loved this movie. To be very fair, the movie...\n i first saw this short when i bought a random ...\n Amelia and Michael are a married couple that a...\n Who really wants to see that? Disgusting viole...\n It's nothing more than a weird coincidence tha...\n I have only seen Gretchen Mol in two other fil...\n I liked the movie a real lot. Wanted to see it...\n Times are tough for Angel Town, gangs rule wit...\n I understand this movie was made on a very low...\n This movie is really goofy! I saw it as an 11 ...\n First let me state that I do not believe in go...\n I have seen a lot of stupid movies in my life,...\n Absolutely one of the worst movies I've seen i...\n Dorothy Provine does the opposite here: She ke...\n This movie was not very good in my opinion. Wh...\n I kind of feel like a genius; I feel like I'm ...\n I saw this movie only after hearing raves abou...\n What can I say? I think I have to write \"Spoil...\n Peeew this stinks! As everyone knows it's base...\n I think One True Thing is one of Meryl Streeps...\n ALERT: This review contains major SPOILERS. Do...\n After seeing Forever Hollywood, it would be na...\n A remake of the 1916 silent film, based on the...\n This movie has some things that are pretty ama...\n This movie is a pure disaster, the story is st...\n If you like his show you might be a little dis...\n When I ordered this from Blockbuster's website...\n My favourite story from 'tales from the crypt'...\n Ever since `Midnight Cowboy' I have been on th...\n Peter Strauss, by nature of appearing in mini-...\n Wow, how bad can it get. This was seriously ba...\n We often see movies about undesirable things g...\n So I'm looking to rent a DVD and I come across...\n I appreciated the photography, the textures, t...\n We saw this in a bargain basket at the local A...\n I thought this was an utterly charming film. T...\n This is an awesome movie, and if you haven't s...\n This episode sucks.<br /><br />Over the past f...\n I was a little to old for this show I was 6 wh...\n Hawked as THE MOST OFFENSIVE MOVIE EVER, GUARA...\n H.G. Wells' War of the Worlds by director Davi...\n This kind of storytelling is unacceptable The ...\n The movie is being televised as I write.<br />...\n I saw \"Mirrormask\" last night and it was an un...\n This is a great documentary film. Any fan of c...\n This 1991 NBC-TV movie aired six months before...\n I believe in keeping religion out of governmen...\n I thought there might be some level of worth t...\n It's hard to find an outright bad historical d...\n My kids recently started watching the reruns o...\n Los Angeles TV news reporter Jennifer (the bea...\n This is not so much of a review as it is a tes...\n Now really can u call that a movie. I knew som...\n Stewart is a distinguished bachelor and a succ...\n Unlike some of the former commentators, I was ...\n Yes, I am sentimental, and yes, I love movies ...\n Kudos to Cesar Montano for reviving the Cebuan...\n This movie will likely be too sentimental for ...\n I know that originally, this film was NOT a bo...\n My mother keeps a cassette of this film as a g...\n First of all, those who are faint at heart sho...\n This movie, like so many others (Remember the ...\n I've got to say, I'm a big fan of these 'Last ...\n This is one of those road movies that would li...\n After seeing the trailer it was an easy decisi...\n In 1990 Brad Pitt and Juiliette Lewis did a TV...\n I absolutely despise this film. I wanted to lo...\n Overall an extremely disappointing picture. Ve...\n I was unlucky enough to have seen this at the ...\n The funniest performance was by Shalom Harlow,...\n I first saw this movie on an Alaska Airlines f...\n This movie barely followed the story line of t...\n i thought it was terrific! very realistic and ...\n Distortion is a disturbing, haunting film, abo...\n The \"Hunting Trilogy\" of Rabbit Fire (1951), R...\n Impenetrable rubbish. This has to be one of th...\n What a shame this movie was never released. (I...\n In & Out made me want to vomit. I have never s...\n I missed this movie in the cinema but had some...\n This had all the makings of a very good film -...\n This movie is a lot like the movie Hostel, exc...\n This excellent drama had me in suspense the wh...\n Bill Crain's rarer than rare 'slasher' movie c...\n This movie is horrible! It rivals \"Ishtar\" in ...\n To summarize this movie: Without a real plot, ...\n Reading through the comments, there seems to b...\n Mr. Bean is just a bunch of unfunny slapstick ...\n I viewed this movie for the first time last ni...\n <br /><br />The kind of movie that demands too...\n While I would say I enjoy the show, I expected...\n I guess I'm part of the silent minority who en...\n Having just wasted a couple of hours watching ...\n A new and innovative show with a great cast th...\n Dreadful acting. A thinly veiled attempt to sl...\n This is an amazing film to watch or show young...\n Jean-Marc Barr (Being Light, The big blue, Dog...\n Surviving Christmas is a surprisingly funny mo...\n Actually this movie has silly moments, both in...\n If ever there were an inspiring story that cou...\n Hong Kong filmmaker Chang Chang Ho's 1972 mart...\n There was no characterization in this movie an...\n I liked this movie a lot, but the feeling that...\n Von Trier once explained how he created such s...\n Stardust Another Guarded Review (originally wr...\n I've been impressed with Chavez's stance again...\n I saw this when it came out in theaters back i...\n Eisenstein wasn't just one of the greatest sov...\n Scott Bartlett's 'OffOn' is nine minutes of pu...\n Moon Child, starring Japanese rockers Hyde and...\n I think its time for Seagal to go quietly into...\n This is the sort of thing that only now thrill...\n There are a select few cartoon films where ani...\n A man is pulled off a London Street and taken ...\n This modern film noir with its off beat humour...\n Now maybe it had something to do with the fact...\n As a rule, a Full Moon production logo is a wa...\n The remarkable, sometimes infuriating, often b...\n I'm the sort of person who went down to the lo...\n You would think that a film that starred three...\n This is one of the best animated movies I've e...\n My favorite movie genre is the western, it's r...\n Don't hate Heather Graham because she's beauti...\n Big D.B. tries to keep peace between the settl...\n We are in a small town, a homely widow (Ida Lu...\n My wife and kids is a good and funny series th...\n I have not read the other comments on the film...\n I saw this movie five times and never get tire...\n A delightful piece of cinema storytelling in a...\n This movie answers the question, how does a re...\n \"The Domino Principle\" is, without question, o...\n \"Jefferson in Paris\" is a truly confounding fi...\n this is only the second time i have been moved...\n The very first image of the movie shows a moun...\n \"Jared Diamond made a point in the first episo...\n I saw this movie as a child and fell in love w...\n The fact that someone actually spent money on ...\n Contrary to popular belief, this title , to me...\n Bluff I really think this movie is very good.<...\n From the fertile imagination which brought you...\n Everything that made the original so much fun ...\n Here we've got an intelligent mixture of typic...\n Genghis Cohn is a (very) mildly entertaining B...\n Here again is yet another Diane Lane movie whe...\n Upon seeing this film once again it appeared i...\n Oh yes, I admit I have made myself guilty of t...\n I had high expectations going into this film, ...\n This movie just might make you cooooo. The fil...\n To be completely honest,I haven't seen that ma...\n this movie is so bad and Hellraiser part 1 to ...\n I agree that this film was spectacular. The wa...\n Unfortunately I think this is one of those fil...\n Meryl Streep is excellent in her nuanced and s...\n The lament and almost unbearable melancholy of...\n Yes, it's pure trash. It might be interesting ...\n THE ODD COUPLE is the classic film version of ...\n Wonderful family film that should be a staple ...\n <br /><br />I am a big-time horror/sci-fi fan ...\n I viewed the movie together with a homophobic ...\n well i don't know what people saw in this movi...\n Shinjuku Triad Society: Chinese Mafia Wars is ...\n \"MirrorMask\" was a terribly disappointing film...\n Dull acting, weak script...worst spanish movie...\n Excerpt from TV GUIDE:<br /><br />This week on...\n An occasionally surrealistic thriller that wil...\n A meltdown at a nuclear power plant causes a m...\n Unfortunately, Jean Eustache (1938-1981) belon...\n alright this movie might have been good if the...\n The plot in this movie is very thin, and there...\n I've only watched the first series on DVD, but...\n \"People I Know\" is a clunker with no one to ro...\n Worst movie ever seen. Worst acting too. I can...\n While Disney have been THE animation studio fo...\n Well this is the best comedy movie i have ever...\n Shannon Lee,the daughter of Bruce Lee,delivers...\n What can you expect from a direct to DVD film?...\n This movie is not for everyone. You're either ...\n There is a reason Chairman of the Board got a ...\n 'The Omen 4: The Awakening' is a made-for-tele...\n Am not familiar with the trilogy but came upon...\n You get a good portion of Steven Seagal enviro...\n for the most part, On Demand delivers some pre...\n I watched the first series avidly, but wondere...\n <br /><br />Very dull, laborious adaptation of...\n After a somewhat slow start I thought this mov...\n Running Out of Time is probably as close to a ...\n I saw the movie yesterday and was shocked by i...\n I first heard of this movie at the \"Flashback ...\n Because they all just watch there MST3K with t...\n Anyone who saw the original 1970 movie knows h...\n While escaping from a heist of a bank, the out...\n On a dark, gloomy New Year's Eve night, an ill...\n I saw this film at Temple University. I cannot...\n The 13th and last RKO Falcon film starts with ...\n I couldn't wait to put this movie in my DVD pl...\n Up until this new season I have been a big 'Li...\n The script is nice.Though the casting is absol...\n One of the worst films I have ever seen! After...\n What a poor image of Professional Police Offic...\n I read the back of the box and it talked about...\n Florence Chadwick was actually the far more ac...\n This is a very visual film. By that I mean tha...\n There are really two sections of this film. Fi...\n I like this film a lot. It has a wonderful che...\n A friend warned me that this was the worst mov...\n I remember being terrified of movie blood when...\n \"The Rainmaker\" released in 1956 - has some of...\n I caught this film at a test screening. Was ve...\n This movie is soo bad that I've wasted way to ...\n Was this movie stupid? Yup. Did this movie dep...\n This is one of the worst movies I have ever se...\n I am a huge fan of Ted V Mikels and the origin...\n This film has good characters with excellent p...\n I can only assume the previous posts came from...\n STAR RATING: ***** Saturday Night **** Friday ...\n Whale-hunters pick on the wrong freaking whale...\n \"Giant\" is one of the most boring, overly-long...\n This great film never showed up in my town, so...\n Other than the great cinematography by the mar...\n This little-known comedy from the hit play by ...\n In \"Hoot\", a new kid arrives to Florida from M...\n I read about this film on-line and after seein...\n Along with his turn in the super-sleazy 'class...\n This is an exceptional picture with so much to...\n In 1965 producer Kevin McLory -who owns a part...\n I will give it this: it tried. It did try to m...\n This is a totally delightful and unexpected fi...\n One of the commenter's is wrong. This is not t...\n I find it amazing, that so many people (probab...\n It's sad to view this film now that we know ho...\n There are people out there who will greenlight...\n I was telling a friend of mine about the time ...\n A young woman comes to the home town of his hu...\n Reviewed at the Sept 12, 2006 2nd screening at...\n L'Appartement is, I think, a very purposeful H...\n Cowardly and cynical, `The Hospital' represent...\n Only the Brits could make a film like this and...\n This is basically just a dumb chase story, nea...\n It's highly stylized, but this movie shows tha...\n If all movies had to be destroyed and only one...\n This extremely bargain-basement Blaxploitation...\n Bergman´s tale about how the hell of the war c...\n Successful films on metaphysical subjects are ...\n The Bridge At Remagen contains some of the mos...\n Donald Sutherland, an American paleontologist ...\n This film is sometimes called 'The Story of O-...\n Holy crap this is so hysterical! Why aren't Am...\n I don't understand the low 5.7 rating on this ...\n This movie has a very deep look at the relatio...\n This Drummond entry is lacking in continuity. ...\n This is another film I missed out on Italian T...\n There are some nice shots in this film, it cat...\n This movie was dreadful. Biblically very inacc...\n I'm not sure if this is a comedy or not, but I...\n Most people miss Hollywood's point of concept....\n I am a big follower of Indian Movies especiall...\n Blame Guy Ritchie. The late 90s success of Rit...\n This movie would had worked much better if thi...\n Hey, remember when Hal Hartley was brilliant? ...\n I totally got drawn into this and couldn't wai...\n Jennifer Cassi (Gina Philips from \"Dead and Br...\n I see alot of movies at the cinema (103 so far...\n Mario Racocevic from Europe is the only user w...\n This is a cute film starring Spanky, Alfalfa a...\n BABY FACE is a fast paced, wise cracking, know...\n While I can't deny that his movies are often e...\n I first saw this movie in the theater. I was 1...\n Favela Rising is a documentary about the slums...\n (SPOILERS included) This film surely is the be...\n This is one of them movies that has a awesome ...\n Never have i sat down for six hours straight t...\n i got to see the whole movie last night and i ...\n It's quite an accomplishment that three storie...\n I agree whole-heartedly with the comments so f...\n A funny thing happened to me while watching \"M...\n Don't know how this missed award nominations. ...\n On its surface, this is one of the most classi...\n Second-tier American leading man Guy Madison p...\n Having just watched this with my mother (Who g...\n We can conclude that there are 10 types of peo...\n After waiting years for a definitive collectio...\n Charlie (George \"Norm\" Wendt) and Rhonda (\"Jus...\n Seriously I don't get why people are all like ...\n WARNING! SPOILER! This movie is absolute crap....\n An awful travesty of the Greek resistance. Sen...\n 'Nuff said. An undercover cop from the state c...\n This short is one of the best of all time and ...\n Few videos in recent history have been as amat...\n Typically terrible trash from director Fred Ol...\n Movies about U.F.O.'s are always a nice way to...\n Well its ten year's on since this film was rel...\n I am decidedly not in the target audience for ...\n It is a movie which sheds the light on the beg...\n The Rookie is based on the true story of a 40+...\n The interplay between the characters is a mora...\n Plankton, or Creatures from the Abyss as I'm p...\n I got this as a complete set of 9 episodes on ...\n When I was a kid, I loved \"Tiny Toons\". I espe...\n I gave this movie a four-star rating for a few...\n Redundant, everlasting shots, useless shots, u...\n \"The Apartment Complex\" is a campy comedy full...\n Nelson is a medical professor who wants his fo...\n My first Mamin film, saw it on IFC long ago, a...\n Basically, a dentist husband-wife team and the...\n when i first started watching these it became ...\n \"Tarzan and His Mate\", the second of MGM's Tar...\n I didn't really know what to expect from \"Futu...\n This was quite possibly the worst film I've ev...\n Jane Russell proved to be a delightful musical...\n OK, I got the DVD set last week and I am final...\n \"Bend It Like Beckham\" reminds me of the best ...\n LOL.<br /><br />The mere fact that I start off...\n I recently saw Episodes 1-4, and now I can't w...\n I saw this movie during a Tolkien-themed Inter...\n This movie's basic premise is that everyone in...\n What a let down! This started with an intrigui...\n Why is Guy working for Buddy? Probably because...\n This is quite an amazing film to watch. Using ...\n If there were an EPA for film, then this movie...\n You have to see this movie, it's a big footnot...\n Bashki should be congratulated for attempting ...\n Homeward Bound is a beautiful film. Y'know the...\n Simply, I found the TV show \"Mash\" trite, prea...\n Imagine that you could have anything you wante...\n I stopped by BB and picked up 4 zombie flicks ...\n Ahh, Talespin! What can I say that hasn't alre...\n This movie is banned in just about every forei...\n I rented this movie, knowing that it would be ...\n This is hardly a movie at all, but rather a re...\n This film was in one word amazing! I have only...\n A not so good action thriller because it unsuc...\n -may contain spoilers-<br /><br />Clearly, who...\n This is a typical \"perfect crime\" thriller. A ...\n Now that I have seen it, it was NOT what I was...\n The one reason I remember this is that it was ...\n You know, I'm getting really tired of all the ...\n Possible Spoilers As Peter Jackson has so bril...\n I read many commits when it was in the theater...\n Why is this show so popular? It's beyond me wh...\n Alain Chabat is a fine actor, writer and direc...\n Rob Lowe must have eaten up the entire budget,...\n Do not expect a classic military comedy, which...\n Welcome to Oakland, where the dead come out to...\n After recently seeing, Cry Uncle, by the same ...\n This movie is one I strongly recommend. It's a...\n A terrorist attempts to steal a top secret bio...\n One of the things that makes this Ealing comed...\n Slow, odd film that drags and plods (I mean re...\n \"Porgy & Bess\" was the very first movie my par...\n If you like Star Wars/Trek, come see where the...\n This documentary was very thorough and exposin...\n This little film had long been on my \"keeper\" ...\n A college professor is working on creating zom...\n The Movie was sub-par, but this Television Pil...\n I saw this film from 1918 recently at our loca...\n I always think it would be nice if you could s...\n Well, of course the critics hated it. This isn...\n This tearful movie about a sister and her batt...\n This very good movie crackles with tension. Th...\n I doubt whoever wrote this screenplay has ever...\n Okay, I guess I'm pretty much a fan of spindle...\n This is an awesome classic monster flick from ...\n Hey guys I'm actually in this movie! I didn't ...\n I saw this film over the weekend and while I w...\n William Shatner in small doses is tolerable. U...\n 'P' (or Club-P) should really be called 'L' fo...\n <br /><br />Very slow, plodding movie with a c...\n Unfortunately a boring flick, and obviously th...\n It's wonderful to see that Shane Meadows is al...\n Maybe I expected too much of this film, but at...\n I own this movie. Not by choice, I do. I was r...\n The first part of Grease with John Travolta an...\n First off, this really is my favorite film eve...\n I must say I was really excited about this fil...\n What a shocker. For starters, I couldn't stand...\n There have been plenty of unknown movies or mo...\n The film Classe tous risques directed by Claud...\n A lot of death happens in the wild. You don't ...\n This movie is more Lupin then most, especially...\n OK....so, by minute 15 in the film, there's st...\n I just watched Lonesome Dove, Return To Loneso...\n My Score for this crap: 1 / 10 1 for the techn...\n Although not one of Vonnegut's better known wo...\n Rene Clair's groundbreaking musical. If you wa...\n National Velvet (1944) The movie that put Tayl...\n This is the best and most original show seen i...\n ...a good script or director couldn't fix.<br ...\n A group of friends receive word from a pal who...\n Very disappointing 7th chapter of this slowly ...\n The beauty of this film is evidenced in the gr...\n Let's begin with that theme song sung by Chris...\n I was a teenager when this first appeared in t...\n True fans of film will love this authentic mov...\n Probably the best film of the year for me. Thi...\n Ah, true memories. I lived in Holland at the t...\n Despite pretty bad reviews, I just had to give...\n I couldn't watch more than 14 minutes of it. I...\n This movie is one of the most unintentionally ...\n Underwoods goofy story about a young man(Arque...\n The episode begins with scenes of a dead woman...\n Where do I begin, its one of the most frustrat...\n The animation is still the slightly rougher st...\n But I got over it. To me, it seemed that even ...\n I don't understand where these bad comments ar...\n I think this show was right on the money for m...\n Clever psychosexual drama about a wounded Unio...\n This is one of the most interesting movies I h...\n That's right, you heard me this movie is a fre...\n An opera diva has an accident, which leaves th...\n I finally managed to see this movie...after so...\n Brokedown Palace is not the kind of movie I wo...\n I remember this film as the other person that ...\n This must be one of the worst Swedish movies e...\n The problem with the film is quite simply this...\n Written by science fiction veterans Gerry and ...\n From the excellent acting of an extremely impr...\n Like in a circle the movie leads back to its p...\n I cannot believe that this is a film that I di...\n I saw this film without to know what about wer...\n General Trelayne is a super-being who wants to...\n Having seen only once and in the dawn hours, I...\n I was loaned this DVD by the director of a fil...\n Jack Frost 2 was a horrible, terrible, sadly p...\n I have complained to ABC about the cancellatio...\n I got the DVD from the library in the expectat...\n This is one of the very worst films Clark Gabl...\n This movie from what I remember was such a gre...\n I like Ali G's show, I believe the guy has com...\n Hey guys and girls! Don't ever rent, or may Go...\n In the same way Lamberto Bava was a substandar...\n I've seen this movie on several different occa...\n Sci-Fi channel thinks this IS Sci-Fi; it's a s...\n Henry Thomas was \"great\". His character held m...\n I understand the purpose of the director to te...\n I just watch this move recently on Encore chan...\n This film is pure, distilled, unadulterated bo...\n ** HERE BE SPOILERS **<br /><br />The governme...\n Two Soldiers is an excellent example of fine f...\n If I could go back, even as an adult and reliv...\n When I look back on my college days at Ohio Un...\n A poorly-paced sf/horror venture that takes it...\n Joe Don Baker is...Thomas Jefferson Geronimo, ...\n A lot of people are flaming this film for the ...\n Almost 20 years before Frank Marshall brought ...\n If you see this film in the TV listings just i...\n The Willies starts late one night as brother's...\n I may differ from many people on this board bu...\n <br /><br />Get your brewskies out and enjoy t...\n They are hunted and starving. They are complet...\n `Mad Dog' Earle is back, along with his sad-sa...\n At first I was weirded out that a TV show's ma...\n Loved the movie. Loved the two families crossi...\n I just re-watched a few episodes of this serie...\n Dogtown and Z-Boys is a documentary about the ...\n This is the best movie I have ever seen.<br />...\n Amidst all the many problems that make this a ...\n Only adding to the chorus of people who deemed...\n Steven Vasquez directed and co-wrote with Jame...\n Richard Gere and Diane Lane star in a chick fl...\n I like musicals but as a Dickens fan I HATE th...\n SOLDIER is not as bad as many have made it out...\n This was amongst the worst films I have ever e...\n This is only the second time I stopped a video...\n This is an extremely long movie, which means y...\n The trailers get you to the movie, but the mov...\n [***POSSIBLE SPOILERS***] This movie's reputat...\n The sound is terrible, the picture is worse th...\n Ah, Moonwalker, I'm a huge Michael Jackson fan...\n I suppose I should be fair and point out that ...\n Although there were a few rough spots and some...\n Grand Champion is a bit old fashion at first g...\n You can't watch a film like Peter Watkins' \"Pr...\n The lives of Megan(Jackie Kresler)and Dylan(Sh...\n I just finished reading Forsyth's novel 'Icon'...\n Wow...This movie really really sucks...'Nuff s...\n This is just dreadful. I regret every second o...\n I watched Grendel the other night and am compe...\n OSS 117 was fun from start to finish.<br /><br...\n I absolutely ADORED this movie as a child and ...\n OK, so it's a silly movie, but I think they kn...\n The End of Suburbia, as it should appeal to ge...\n This show was rushed, and relied heavily on su...\n Disney might just be on to something here. Fir...\n This is a very, very odd film...one that is so...\n Silly, simplistic, and short, GUN CRAZY (VOLUM...\n A man wakes from a nightmare about bats. He an...\n This film was my first acquaintance with the t...\n one of best movies ever...Fire...it is not muc...\n Wonderful movie. Adult content. Lots of erotic...\n Director Jay Craven's adaptation of Howard Fra...\n If you a purist, don't waste your time - other...\n This movie was terrible. The first half hour i...\n Running Man viciously lampoons the modern-day ...\n I don't know what Margaret Atwood was thinking...\n (Chances are, I'm gonna spoil Valuable Plot Po...\n This film, without doubt, is the clearest exam...\n Curiously, Season 6 of the Columbo series cont...\n This movie was awesome!! (Not quite as good as...\n This movie brings to mind \"Boys 'n the Hood,\" ...\n What ever possessed Martin Scorcese to remake ...\n There are a limited number of fans for movies ...\n (SMALL SPOILERS) I just bought the DVD of this...\n It's hard to believe that a movie this bad cou...\n When I checked out the review for this film af...\n Ossessione, adapted loosely (or if it is as lo...\n A funny comedy from beginning to end! There ar...\n An unusual film for an audience outside the US...\n I enjoyed this film which I thought was well w...\n Let's not beat about the bush here, Taylor Hac...\n Ya I rented it, so shoot me!<br /><br />A dece...\n Gee, what a crappy movie this was! I cannot un...\n I watched 3/4 of this movie and wondered why i...\n If you are one of those people that think Luci...\n Simon Pegg plays a rude crude and often out of...\n Even from the very commencing title of this mo...\n Very rarely do I give less rave reviews on a s...\n For someone who remembers Jane in the Daily Mi...\n Imagine the worst A-team episode Add even more...\n This is a prime example of uninhibited filmmak...\n Big Fat Liar is a great watch for kids of all ...\n Think of the ending of the Grudge 2 with the f...\n First animated feature film from Ireland is al...\n Some teen agers go to an old deserted farm hou...\n We arrived at the theater too late to see Rend...\n When commenting on this film, one must realise...\n Without John Rhys-Davies, I have to admit that...\n In today's world of advertising and teenage ho...\n John Candy and Eugene Levy star as inept secur...\n I can't figure Al Pacino out. I watch him in t...\n ya know the concept of \"guilty pleasures\"? yea...\n Ronald Colman plays a prodigal son. While he i...\n This, and \"Hidden fortress\" are the Kurosawa's...\n Horrible, misogynist drivel. My neighbor broug...\n I'm not a sports fan - but I love sports flics...\n This movie has its ups and downs, but to me th...\n This is the definite Lars von Trier Movie, my ...\n Has the drama, suspense, and character develop...\n I am not kidding: there's a scene in this movi...\n Alan (Anthony Steffen), an English multi-milli...\n I see a lot of movies. Saw the original wargam...\n I actually like Asylum movies. I've made it a ...\n The best part of this DVD is the cover. It goe...\n It isn't always easy to explain what a movie i...\n I respect Mike Hodges, and liked Get Carter im...\n I guess that \"Gunslinger\" wasn't quite as god-...\n Surely one the French films of the decade so f...\n Screened this morning for the press at Roma fi...\n After reading the reviews I am so relieved to ...\n BSG is one of my all time favourite TV series....\n My girlfriend has the habit of going to Blockb...\n An unintentionally hilarious early talkie melo...\n \"Panic In The Streets\" is an exciting and atmo...\n Well, I only caught the tail end of this film ...\n This movie was NOTHING like the book. I think ...\n The premise for Circle of Two is an intriguing...\n Sadly, more downs than ups. The plot was prett...\n Two sorcerers battle in the fourth dimension,o...\n This is a musical adaptation of Dicken's \"Oliv...\n Watching \"Speak Easily\" is painful for fans of...\n I recently was in a stage version of this play...\n It's out of question that the real Anna Anders...\n Good horror movies from France are quite rare,...\n I am a long time fan of Luc Besson's work, and...\n OK, here's the short of it... this movie is fu...\n This movie was recommended to me by some acade...\n I've been a fan of Xu Ke (Hark Tsui) for many ...\n First of all, since I'm one of the people who ...\n This a superb self-contained work that is unco...\n I stumbled upon this movie on cable and was to...\n Surrender Cinema has been known for their extr...\n When I was a child my grandmother took me to s...\n I was excited to hear that Cesar Montano had d...\n For those of you unfamiliar with Jimmy Stewart...\n I should live this film, but I don't. It won i...\n A disappointing end to a season that started s...\n BLACK WATER has to be one of the best Australi...\n From the creators of Bruce Almighty and Liar L...\n This is the single worst movie I have ever see...\n I was so offended by this film that I had to w...\n My brother is in love with this show, let's ge...\n While I don't agree with Bob's and Tammy's dec...\n This movie is juxtaposition of various super b...\n The concept was ok but hardly original. The ac...\n I like the cast pretty much however the story ...\n Ok so here's the basic plot. It is 1933, Peter...\n The combination of reading the Novella and vie...\n Starlift is a pleasant and interesting throwba...\n I saw this film at the tender age of 18 with a...\n Extremely dull drama starring a very young Rod...\n Unfortunately, one of the best efforts yet mad...\n This movie was well acted and kept my interest...\n The mood of this movie is pretty good and it c...\n I got a good laugh reading all the idiotic com...\n I was excited at the concept of my favorite co...\n This was a movie I came across by accident. I ...\n OK - the helicopter shots are fantastic, and t...\n Bigfoot movies tend to be bad, so I'm not incl...\n You know the movie could have been a lot bette...\n The real surprise of this effortlessly lightwe...\n Anyone who has studied any physics or cognitiv...\n If you hate redneck accents, you'll hate this ...\n It'll soon be 10 yrs since this movie was rele...\n 3lbs is obviously just a self indulgent progra...\n don't see this. this was one of the dumbest mo...\n Oh, what fun there is here! <br /><br />Amy He...\n I can agree with other comments that there was...\n I concur with what mallicka.b has said. The mo...\n \"True\" story of three girls who go into the wi...\n This era was not just the dawn of sound in car...\n This movie is terrible. It's about some no bra...\n All in all, Big Bad John was a hilarious, and ...\n I always say, \"there's nothing like a good mov...\n I chuckled a few times during this movie. I la...\n RUN...do not walk away from this movie!!!!! Ai...\n Apart from Helen Bonham Carter, there is nothi...\n Letters with no destination end up in another ...\n it's a real big bummer that people easily are ...\n Its No wonder this was free with the Mail on S...\n Sam Fuller's excellent PICK UP ON SOUTH STREET...\n This 1984 version of the Dickens' classic `A C...\n I really enjoyed \"Doctor Mordrid\". This is a l...\n A bunch of medical student yuppies get togethe...\n If you liked \"Blair with\" you'll like this one...\n Although I am generally a proponent of the wel...\n After a couple years of searching for the Hump...\n I really, really enjoyed watching this movie! ...\n The humor implicit in the complete title prove...\n This movie was awful in the worst way: you jus...\n Some slack might be cut this movie due to the ...\n Wow! Here comes another straight-to-video scar...\n I thought this film was excellent, quirky and ...\n Don't waste your time on this dreck. As portra...\n The unlikely duo of Zero Mostel and Harry Bela...\n I just can't believe some of the comments on t...\n Brilliant execution in displaying once and for...\n Just read the original story which is written ...\n One of the many silent comedies Stan Laurel fe...\n Writer/Director John Hughes covered all bases ...\n Fantastically putrid. I don't mean to imply ab...\n Weak tale of an evil warlock who is searching ...\n The A-team is still repeating every day on Dut...\n A kooky, but funny bit of diversion. You kind ...\n OK so some of the plot points might be a bit o...\n I really don't think it's necessary that I wri...\n I can catogoricaly and unequivocally say that ...\n Profanity, stupidity, self-indulgence, and bad...\n Here, on IMDb.com I read an opinion, that Grey...\n I have read several reviews that ask the quest...\n I checked out this video expecting to like it....\n There are those who gripe that this is NOT the...\n When I saw that this movie was being shown on ...\n A couple of weeks after I saw this movie it be...\n For my first taste of Shakespeare on stage, I ...\n Captain Willard (Martin Sheen) has been sent o...\n I liked this movie because it basically did mo...\n this was a very good movie i wished i could fi...\n I have barely managed to view the entire film....\n This movie is excellent. Not because it does a...\n The Marriage of Maria Braun (MMB) is about a G...\n After seeing the movie last night I was left w...\n A couple of years back I had purchased (and en...\n This movie just felt very true to life. I like...\n [Minor spoilers follow]<br /><br />Steve Allen...\n In its way, Mister Foe (originally, and more a...\n I read a small ad in some horror magazine in t...\n If you want to watch a real 'quality' movie ge...\n This movie was made 20 years before my time. I...\n I have loved this movie since I first saw it i...\n I watched this show on the basis of it being t...\n Don't even ask me why I watched this! The only...\n Yes, this IS a horror anthology film and it wa...\n This is perhaps the creepiest display of Santa...\n It's generally an accepted fact that Marcel Ca...\n \"Read My Lips\" tells of a strange symbiosis wh...\n Ascension is actually a step up in terms of wh...\n This is simply the worst movie I've ever seen....\n Russell, my fav, is gorgeous in this film. But...\n This little flick is reminiscent of several ot...\n I've never watched a file in a language I don'...\n Wow, this movie was absolutely brilliant. I re...\n I can't believe this film was allowed to be ma...\n Season after season, the players or characters...\n Screenwriter Steve Tesich's sophomore effort (...\n It's a bad season for Bollywood with all the b...\n \"Putney Swope\" is a unique, low low low budget...\n Before I start, I should point out that I know...\n Wow! I remember so many awful films that loose...\n Do you hear that sound? That's the sound of H....\n At least something good came out of Damon Runy...\n This movie deserves the 10 I'm giving it.<br /...\n With some wine, some friends and some good hum...\n I should no longer be surprised when critics m...\n Ha ha! First of if you've never seen a \"Dimens...\n The worst movie i've seen in years (and i've s...\n Seeing as the vote average was pretty low, and...\n The movie is excellent. Acting, cinematography...\n Total disgrace! Truly awful! The screenplay an...\n this movie is a very relaxed, romantic-comedy,...\n I have really nothing to add to all the other ...\n Ben Masters,(Kyd Thomas),\"Dream Lover\",'86 pla...\n ANDY HARDY MEETS DEBUTANTE (1940) is the ninth...\n It's not easy making a movie with 18 different...\n Alexandra Ripley wrote a horrible sequel to Ma...\n \"Rouge\" is part of a trilogy, but very much st...\n This movie is bad as we all knew it would be. ...\n I didn't know much about this movie before I w...\n Poorly done political actioner. Badly photogra...\n This really is a film of two halves. The first...\n A dangerous psychopathic killer Jacob Goodnigh...\n This- and not a certain slightly overrated Sou...\n My brother got me hooked on Carlin back in the...\n Firstly, few colleges allow students to take c...\n I smiled through the whole film. The music is ...\n I think that this short TV series, was absolut...\n The best thing from the American Pie \"bakery.\"...\n In Christian Duguay's movie, Hitler: The Rise ...\n I have to mention two failures for you to unde...\n Ugh. Pretty awful.<br /><br />Linnea Quigley g...\n I was surfing through IMDb one day, when I stu...\n Perhaps I'm out of date or just don't know wha...\n A sophisticated contemporary fable about the s...\n This movie came highly recommended, but I am n...\n As the superb `Prime Suspect' series reaches p...\n This is possibly the worst film I have ever se...\n (Review is of the original 1950's version not ...\n I saw this movie in my international cinema cl...\n I love a film that mixes edge-of-the-seat susp...\n SAPS AT SEA <br /><br />Aspect ratio: 1.37:1<b...\n Wow... I suspected this one to be bad... But n...\n I caught this film -- under the title of \"What...\n The director, Ramin Niami, delivers the goods ...\n This movie surprised me. The box is misleading...\n I am sorry to say that it was one of the worst...\n ...but the general moviegoer's mileage may var...\n I only rented this because i loved the first m...\n A Matter of Life and Death, what can you reall...\n I was raised watching the original Batman Anim...\n I have no idea why people are so crazy about t...\n I loved the movie, but like everyone said, the...\n for those of you who were desperate to find ou...\n Rita Hayworth lights up the screen in this fun...\n I was able to hang in for only the first twent...\n I saw this film last night at a special movie ...\n Although I've long been a fan of Peter Weir, I...\n Sandra Bernhard is quite a character, and cert...\n Warning: This may contain SPOILERS!!<br /><br ...\n Visually beautiful with some fine music, this ...\n I doubt if the real story of the development o...\n MAKE A 0 YOU SACKS OF German STAPLES! well, wh...\n Anastasia: The Mystery of Anna was a two-part ...\n Henry Thomas, and Robin Tunny, are a couple of...\n Dear Mr. Seitzman, Or Whomever I May Hold Resp...\n Was unlucky enough to see this while travellin...\n This is not Michael Madsen's fault, he was har...\n A year after her triumphant first special, \"My...\n Taran Adarsh a reputed critic praised such a d...\n This movie is a good example of how to ruin a ...\n Before I start, I need to inform you that I lo...\n Blazing saddles! It's a fight between two estr...\n Another sequel! Why on earth do they keep maki...\n Oh dear . Yet another example of \" Oireland \" ...\n \"Ice Age\" is one of the cartoon movies ever pr...\n One of the best films I've seen in a long time...\n This movie was obscenely obvious and predictab...\n This program would be useful for training hard...\n I watched this film on the advice of a friend ...\n I supposed 'Scarecrow Gone Wild' is a dull sla...\n First of all I saw this movie without knowing ...\n This meandering tale of mob revenge is simply ...\n I feel very strongly that this film was just l...\n Visually, this film is interesting. Light is l...\n Romantic comedy is not the correct way to desc...\n Irrespective of the accuracy of facts, Bandit ...\n The consequences of love: There is really some...\n 'Where the Sidewalk Ends (1950)' opens, approp...\n Things I like. Steve Zahn as Gus, nails the pa...\n In the early 19th century, a young woman with ...\n This is one movie that will take time to get o...\n A stunning film which brought into the open so...\n I found this movie to be filled with irony. Bu...\n Although in some aspects Seven Pounds is solid...\n Gordon Scott made some good Tarzan movies, but...\n I went to see this movie at a book signing in ...\n Where to start with 'Speck' the true story of ...\n Okay, this wasn't the greatest horror movie I'...\n I for one really like this movie for some reas...\n FUTZ is the only show preserved from the exper...\n This movie started off well enough, sticking t...\n When I was born, this television series was th...\n I watched Cold Mountain and the English Patien...\n This is the only movie I have ever seen that h...\n A fantastic film featuring great Aussie talent...\n Jeopardy is a tense, satisying thriller, a cut...\n Forget Neo and Bourne and all those half-baked...\n I saw it at a German press screening. Without ...\n The plot for Descent, if it actually can be ca...\n I found the memorable quotes searching for vid...\n I caught this movie on the Horror Channel and ...\n I own all family guy seasons so far and i have...\n This is a very strange HK film in many ways. F...\n \"Showtime\" falls somewhere north of what some ...\n Saw this at the Hawaii Film Festival where the...\n Pierre Jolivet plays a Don Quixote character, ...\n What an insult to Olivia D'Abo who plays the f...\n this was one of the funniest and informative s...\n A pretty obvious thriller-by-numbers, in which...\n This movie starts out with this creepy song th...\n I enjoyed this film. I thought it was an excel...\n Nothing better than an android boasting 80's t...\n I am of \"the Christopher Reeve Generation\" it ...\n ***POSSIBLE SPOILERS BELOW*** <br /><br />What...\n league of gentleman has been the most disturbi...\n I discovered this movie with a retailer sellin...\n Charlie Chaplin responds to open auditions at ...\n This absurd movie was about a \"Goodie-two-shoe...\n Her embalmed look was totally inappropriate fo...\n It's hard to imagine in this day and age how p...\n Metro-Goldwyn-Mayer is a very lost player in t...\n There are some excellent comments and observat...\n I watched this knowing almost nothing about it...\n Predictable, hackneyed & poorly written. Fooli...\n Kevin Tenney's \"Night of the Demons\" is an enj...\n Once upon a time Hollywood produced live-actio...\n ******* SPOILER! ********<br /><br />i saw thi...\n America needs the best man possible to win \"Th...\n This begins a series (which I'll hopefully kee...\n I’d been interested in watching this ever sinc...\n I first saw this film accidentally when they s...\n At one point, Violet (Lucy Liu) tells Neil (Ci...\n The Kid is a really good family movie about a ...\n You the living? OK I think I am an intelligent...\n OK, imagine that every state in the US, nay, e...\n Best Robot Romantic Comedy Ever, using the rob...\n After seeing this DVD, I was floored. It is SO...\n this is one of the worst movies ever There is ...\n I really must watch a good movie soon, because...\n no way out 2007 was a really bad and if it is ...\n The film version of Alice Walker's hugely emot...\n Wow, I just saw this on T.V. as one of the \"sc...\n Much as I really like Catherine Zeta-Jones, I ...\n Hey,<br /><br />If your going to make a docume...\n this video is 100% retarded. besides the brain...\n Unlike \"The Adventures of Buckaroo Banzai\", or...\n Boy Oh Boy, does this movie stink. This movie ...\n A dreary and pointless bit of fluff (bloody fl...\n Well its a great work by Aparnaji and some whe...\n 'How To Lose Friends & Alienate People' is a s...\n An excellent period murder melodrama, with Fon...\n CRIME BOSS is directed by Alberto De Martino; ...\n This was the best movie I've ever seen about B...\n OK, please believe me when I say that this is ...\n Wow! Fantastic film in my opinion, i wasn't ex...\n This movie is an awesome non-stop laugh riot i...\n This is hands down the greatest stand up show ...\n I've read that Paolo Sorrintino's inspiration ...\n Would a different translation have made it chi...\n This is a horrid disaster of a film. From begi...\n simply i just watched this movie just because ...\n I saw this on television more years ago than I...\n I have seen this movie 4 times in 5 months and...\n I really wish I had read everyone's review bef...\n Dolemite is awesome. Rudy Ray Moore's rhymin k...\n Kairo, or Pulse as it's known amongst English ...\n I am in awe of the number of people who consid...\n I just watched that movie, and was pretty disa...\n Terrible direction from an awful script. Even ...\n This movie starts off somewhat slowly and gets...\n While channel surfing, we found this movie wit...\n There have been approximately 60 different fil...\n This is the first review I've wrote for IMDb s...\n Joshua Seftel's first film - a satire of memor...\n I can't believe John died! While filming an ep...\n The book is so good that at least the opening ...\n This movie was the slowest and most boring so ...\n Cheezy action movie starring Dolph Lungren. Lu...\n Not really spoilers in my opinion, but I wante...\n Ill-conceived sequel(..the absurd idea of havi...\n From reading the back of the box my first thou...\n I loved this series when it was on Kids WB, I ...\n Farscape - is the one Sci-Fi Show which restar...\n Towards the end of his career Jack Arnold, a v...\n Las Vegas is one of the most brilliant shows o...\n I rented this movie on DVD without knowing wha...\n The film is about a young man, Michael, who ca...\n from the view of a NASCAR Maniac like I am, th...\n Andy Goldsworthy is a taoist master of the fir...\n How the hell did they get this made?! Presenti...\n For me this wonderful rollercoaster of a film ...\n Good actors and good performances can't mask a...\n I'm sorry to all the fans, but this is a usele...\n I was surprised to catch this on TV Friday, an...\n OK, let's get this clear. I'm really not into ...\n I saw this move several years ago at the Centr...\n Where can I begin. I heard this movie was comi...\n My wife and I watch a film every night with no...\n This film is wonderful in every way that moder...\n Although it has been 2 years, I still remember...\n A family of terrible people must remain in a h...\n A romp across a disbelieving outback, this out...\n Really...and incredible film that though isn't...\n Good cinematography, good acting good directio...\n I gave this movie such a high mark because it ...\n Stephen Seagal plays the role of a dude who ge...\n This is the last Dutch language film Paul Verh...\n ..this movie has been done when Hitler ( and M...\n I made the mistake of buying this since I coll...\n Everyone knows that late night movies aren't O...\n The movie is great and I like the story. I pre...\n Before I go on I have to admit to being a huge...\n I saw this film at the Galway Film Fleadh the ...\n \"The Deer Hunter's\" success with critics and p...\n mahatma Gandhi, the father of the nation in hi...\n Buster absolutely shines in this episode, whic...\n Tomorrow Is Another Day is NOT the sequel to G...\n Will there be please coming an end to hyping m...\n I got hooked on this as apparently ABC has lic...\n If you want your vision of Chaplin limited to ...\n A scientist on an island is in deep sorrow abo...\n I love cinema so what I'm about to confess emb...\n Honestly, I went to see the movie, not because...\n I believe this film was made for the not so pr...\n Hong Kong directors crossing over to Hollywood...\n Just imagine the real Hitler, who was a master...\n It really boggles my mind when someone comes a...\n Obviously inspired by Se7en and sometimes even...\n There's a good reason that Walter Pidgeon is w...\n This is a joke, right? This can't be a real fi...\n \"Creep\" is a new horror film that, without a d...\n This movie is amazing because the fact that th...\n I can understand why some people like this mov...\n This is a finely crafted movie with moving seq...\n My friend Zac rented this movie free of charge...\n There are lots of other comments here about ho...\n I just caught an episode about Brad, the crack...\n The title of this documentary is very misleadi...\n Amazing effects for a movie of this time. A pr...\n This is another Bollywood remake of a Hollywoo...\n TV newscaster Kimberly Wells (Jane Fonda) and ...\n Series 2 has got off to a great start! I don't...\n I just finished watching guinea pig - Devils e...\n I must say I was disappointed with this film. ...\n I too saw this film at a film festival, but un...\n I first saw this film about 15 years ago, and ...\n I've been going through the AFI's list of the ...\n The only reason I knew of Midnight Cowboy was ...\n I'd picked this one up time and time again in ...\n This is the worst movie I have ever seen. If I...\n It's schmaltzy, but then what else did you exp...\n Well to start with I'm straight up as black as...\n It's tempting to view this film as a daring av...\n I wasn't at all a fan of the 2005 gore fest hi...\n Well, I set out with a few friends to see this...\n 'The Luzhin Defence' is a movie worthy of anyo...\n I am 13 years old and I am writing this review...\n Okay, I know that's cliché. Taken on its surfa...\n Strange... I like all this movie crew and dark...\n It is fantastic! A sick and twisted tale of co...\n For this movie, based off of a TV show, and a ...\n I like 50s sci-fi movies a lot. I like the rea...\n Piece of junk, would've given it a 0 if I coul...\n \"The Incredible Melting Man\" is a fantasticall...\n FC De Kampioenen's only reason for existence i...\n Every now and then a movie advertises itself a...\n the plot of this movie revolves around this su...\n If you love Japanese monster movies, you'll lo...\n I was lucky enough to see this at this years T...\n This was usually producer Alexander Korda's ad...\n There are lot of similarities between Never Sa...\n Watching Stranger Than Fiction director Marc F...\n This movie is absurd. Absolutely terrible. Mic...\n To this day when you speak of the Japanese cin...\n Too often screen adaptations of musicals compr...\n Intended as light entertainment, this film is ...\n This movie is about a depressed and emotionall...\n I have 2 words for you. Sean Bean. He is the o...\n This film is a variation of a theme we've all ...\n Very nicely done movie. It does stay in your m...\n The CinemaScope color cinematography of Leon S...\n I wanted to see this movie ever since the prev...\n This film is a brilliant retelling of Shakespe...\n I viewed my videotape last night, for the firs...\n Brothers with psychokinetic powers (yes, reall...\n Emraan Hashmi post MURDER did some good roles ...\n Excellent story of lives that need repair....o...\n Sometimes when a film is panned by the critics...\n Norman Wisdom's final starring vehicle was a d...\n Ya know when one looks at this Brian DePalma f...\n If you are a Christian or a Jew hoping to see ...\n As a father of four in his forties I thought t...\n Prior to this release, Neil LaBute had this to...\n Ugly, heartless Hollywood crap that expects no...\n What was Steven Seagal thinking? I mean firstl...\n As usual, on IMDb, going by the majority vote ...\n If you're researching UFO facts, then this vid...\n this was the best bonnie and clyde movie i hav...\n I liked House of Dracula much more than house ...\n There is an inherent problem with commenting o...\n I had watched (and recorded) this a few years ...\n Victor Jory never became a major star. He is b...\n This is a way cool fantasy movie. One of my fa...\n This move is terrible. They took Gods word and...\n We open with Colonel Luc Deveraux (Van Damme),...\n This is the most ludicrous and laughable thril...\n Just got back from a free screening and I'm ve...\n I'm a big fan of the old westerns, and do not ...\n Given the budget and the inexperience of every...\n I think Charlotte Gainsbourg is one of the bes...\n The historical inaccuracies of this film have ...\n I remember this film, exhibit in Barcelona (Sp...\n When I sat down to watch this film I actually ...\n There are so many incorrect statements in this...\n If you want to see someone accidentally eat an...\n After the success of Part 4, another sequel wa...\n The Invisible man is a show everybody s gotta ...\n Vanaja is a film of superlatives. It has an ex...\n Let me break down this film for you...<br /><b...\n I'm sorry, but this really does feel like a mo...\n Seems that the cast should ensure at least an ...\n Hood of the living Dead is about a young scien...\n Among the many accolades here for this product...\n I registered with IMDb.com just so i could com...\n Paulie is a fantasy of a littler girl or perha...\n I thought this move was very good. There were ...\n Absolutely dreadful Mexican film supposedly ba...\n boring, horrible piece of Italian euro-trash a...\n I really felt cheated after seeing this pictur...\n This is one of the dumbest films, I've ever se...\n They must be. I'll list them so that you can c...\n Movies have put me to sleep before, but no mov...\n The plot has already been described by other r...\n Hands down, the best drama/comedy show on tele...\n Normally I'm quite disposed to like low budget...\n This film is BORING, BORING, BORING, BORING, a...\n Big Fat Liar is the best movie ever! It is fun...\n ***SPOILERS*** ***SPOILERS*** HERE ON EARTH / ...\n Like the previous two 'Mad Max' films, 'Mad Ma...\n I'm sure that most people already know the sto...\n Despite positive reviews and screenings at the...\n Should you wish to see the worst film ever mad...\n The makers of this fine film did a terrific jo...\n I saw this \"hot\" movie when it came out in 198...\n This movie surprised me. Some things were \"cli...\n Like some people here, I love/loved Stingers! ...\n What could be more schlocky than the idea of p...\n Just saw it....the story, the plot, the script...\n This movie was one of the most boring horror m...\n Certainly not horrible, but definitely not goo...\n The first 2/3 of this film wasn't that dissimi...\n I admit to liking a lot of the so-called \"frat...\n (As a note, I'd like to say that I saw this mo...\n First, IFC runs Town and Country, and now this...\n Those 2 points are dedicated the reasonable pe...\n Owen (David Krumholtz) and Chloe (Denise Richa...\n I read reviews on this movie and decided to gi...\n Why did I buy this movie on DVD?, Well the sho...\n This movie has been a classic in my part of th...\n It's great to see Jorja Fox in a role where sh...\n I usually come on this website prior to going ...\n My interest was raised as I was flipping throu...\n ... Said the continuity announcer as TACTICAL ...\n Bonanza had a great cast of wonderful actors. ...\n I am usually a big fan of Pacino (Scarface, Se...\n Spoiler Alert - although this is a plot almost...\n Oh, this is so bad, it is funny. The only way ...\n This movie was promising: my favorite actor in...\n Some movies you just know you're going to love...\n Of all the adaptations of books by Alistair Ma...\n I am salivating for the sequels. I needed some...\n Set in Venice mainly on the Lido, Visconti's \"...\n The most generic, surface-level biography you ...\n Yes, we all know about Dan Schneider's odd lit...\n On the face of it, Ruiz has set out to make a ...\n There isn't much about \"Reckless\" that feels r...\n 1st watched 12/26/2008 -(Dir-Eugene Levy): Cor...\n I've seen a slew of \"80s rocker horrors\" over ...\n This version of the Gulliver stories is defini...\n More a snapshot of the most popular pinup of a...\n Text Taken from 2001 Melbourne International F...\n The cast was good, and I thought it was a good...\n I agree with the above comment, I love the rea...\n I lack cable-vision and no longer have \"DirecT...\n <br /><br />Horror movie time, Japanese style....\n This is a great movie. I love it more each tim...\n I was really looking forward to watching this ...\n A political satire of a comedian (Williams) wh...\n There is nothing I hate more in a movie than p...\n Fred was such a great show.It was simple but s...\n \"The Bone Snatcher\" starts out extremely promi...\n There is a lot wrong with this film. I will no...\n \"In Cold Blood\", adapted by director Richard B...\n Everybody I talked to said that this movie wou...\n I have reasons to love the great users of a ca...\n Well, I guess I was in the mood for a movie th...\n (Mild Spoilers) Frankie Machine had been dealt...\n Another fun, witty, frothy RKO musical with As...\n As other viewers have mentioned, this film was...\n I was totally engrossed in this film from the ...\n What a piece of junk this movie was. The premi...\n I watched like 8 or 9 Herzog movies and none o...\n The idea ia a very short film with a lot of in...\n Overambitious and shoddy; and at times too dar...\n Wonderland is the fascinating film chronicling...\n The movie opens with a flashback to Doddsville...\n ***THIS POST CONTAINS SPOILER(S)*** <br /><br ...\n Whatever you become in your life,you must neve...\n I am a 20 year old bloke from England. I don't...\n I have seen many, many films from China - and ...\n Looking and sounding like a cheap porno withou...\n I was really disappointed after viewing Pinocc...\n Some people don't appreciate the magical eleme...\n This is possibly the most perfect film I have ...\n Knowing Enki Bilal's comics for quite some tim...\n The story concerns a genealogy researcher (Mel...\n HORRENDOUS! Avoid like the plague. I would rat...\n I love this movie a lot. I must get this on DV...\n It's true, no one really expects anything from...\n I first saw this movie years ago and have cont...\n Originally conceived as a solo vehicle for Dud...\n An especially delightful film to those of us w...\n Directors of \"The Messengers\" Danny Pang and O...\n Is there any other time period that has been s...\n The film itself is only a compilation of scene...\n I was previously unaware that in the early 199...\n I didn't realize just how much of this episode...\n My first exposure to Japanese animation direct...\n Nothing happens.<br /><br />Then characters wi...\n 'Umi wa miteita' ('The Sea is Watching') was A...\n I went into this movie expecting a thoughtfull...\n I'm so glad he wasn't alive to see this. This ...\n Some movies are off-beat, but enjoyable, but m...\n \"Slaughter High\" is, perhaps, the most underra...\n This is, without a doubt, one of the most acco...\n I have been hooked on \"GG\" since midway throug...\n This movie was beautiful and touching. It touc...\n A Christmas Story Is A Holiday Classic And My ...\n Denis Leary can indeed be funny and clever at ...\n This is a nice little lifetime movie about a g...\n Watching \"Plots with a View\" (called \"Undertak...\n There seems to be a whole sub genre of cheap, ...\n The first time I saw the poster, I was stunned...\n I'll just put it out here, that was the Worst ...\n Being a fan of the manga and anime of Go Nagai...\n If you're looking for a movie that's fun to wa...\n It really is a great film (after being able to...\n While Hayao Miyazaki's movies have always been...\n I guess Melville intended this movie to be the...\n For the life of me, why did this film receive ...\n Following the release of Cube 2: Hypercube (20...\n The only reason I didn't score this a one is t...\n If you haven't seen this yet, I say just move ...\n Im warning you people out there, this is just ...\n Very, very humdrum movie fare here with Stella...\n Oh, where the hell should I begin? Give a brie...\n I just saw this movie tonight(5th Nov. 2005)fo...\n I was told Jon was for awhile on spiritual exp...\n I won't try to speculate as to what Brando was...\n A most recommendable masterpiece, not only for...\n Yikes did this movie blow. The characters were...\n After high-school graduation, best friends Ali...\n This film is more about how children make sens...\n This is very much overrated. I guess it carrie...\n I saw Marigold at a preview showing a few days...\n Pre-adolescent humor is present in large quant...\n This is to the Zatoichi movies as the \"Star Tr...\n This is a film that is far more enjoyable than...\n Wow, I loved this movie, this film was filled ...\n My one-line summary hints that this is not a g...\n This one of the best and funniest comedy serie...\n This movie is not worth the time it takes to p...\n The only thing remarkable about this movie? is...\n This is where the term \"classic film\" comes fr...\n Råzone is an awful movie! It is so simple. It ...\n I can't stand people who comment on this progr...\n A very bad attempt at a young spinal tap. At l...\n A dedicated fan to the TLK movies, with the fi...\n This feels very stilted and patronizing to a g...\n I love this movie. As a kid, this was one of t...\n This movie is very cool. If you're a fan of Ts...\n I must begin by saying that this is one of the...\n I loved this movie! It's the finest parody of ...\n (Contains really bad Spoilers) So what can I s...\n Director/writer Andrés Waissbluth worked seven...\n Released as KING BOXER in the U.K.<br /><br />...\n Saw this movie last night. I don't usually com...\n I thought they should have called this movie \"...\n I felt compelled to comment on this film becau...\n I'll say it again... one of the worst films ev...\n I have seen three other movies that are worse ...\n I remember seeing this movie a long time ago o...\n I didn't know a lot about this film going into...\n As someone else mentioned, it begins with a bi...\n Although this film never attained commercial n...\n OK, if I was in the rental store and someone a...\n This is an amazing film, both for the incredib...\n I only bought this DVD because it was dirt che...\n I have yet to read a negative professional rev...\n Okay... it seems like so far, only the Barman ...\n Egads.<br /><br />I used to think Keannu Reeve...\n \"Tamara\" just felt like another teen oriented ...\n Talk about creepy. If you really want to sit d...\n After nearly getting killed by a big dog, a st...\n Remember Ralph Bakshi? The guy that was an ani...\n The Robin Cook novel \"Coma\" had already been t...\n I suppose I can see why critics give this film...\n This must be one of the most annoying, arrogan...\n I, like so many others on here, bought this mo...\n I can't believe this movie was made as recentl...\n Some people say this is the best film that PRC...\n I really liked this film when it was released,...\n Ocean's 12 starts off on annoying and gets wor...\n it MIGHT have been a good movie if it had expl...\n Sure, he became rapidly uneven after this film...\n This film differentiates itself from the run-o...\n So much for JUDGE AND JURY, which lives up to ...\n I have to say this is an awful movie, for the ...\n I desperately want to give this movie a 10...I...\n I swear I could watch this movie every weekend...\n I had never read Gary Paulsen's novel, Hatchet...\n It seems whenever a mainstream film company wa...\n Some guy gets whacked. Right out in plain sigh...\n Wallace and Gromit are the main characters in ...\n Well. Astronaut Steve West sits in a plastic s...\n \"Dutch Schultz\", AKA Arthur Fleggenheimer, was...\n I am not a big fan of horror films, and have o...\n No doubt, when Madonna and Guy Ritchie married...\n The casting (and direction) in Undercurrent is...\n Plunkett & Macleane falls into my favourite ge...\n I thought this was a beautiful movie- very bra...\n The tunes are the best aspect of this televisi...\n Really, average is the only word that comes to...\n Trust the excellent and accurate Junagadh75 re...\n You know sometimes you just gotta have it? Tha...\n Compared to the recent gore flick HOSTEL, whic...\n When I began watching I thought I was watching...\n There's plenty to appreciate here: spectacular...\n Dumb is as dumb does, in this thoroughly unint...\n Yes, even as a fan of shows like survivor and ...\n In an early scene, Luca (David Pasquesi) and J...\n I first watched this movie back in the mid/lat...\n If your idea of a thriller is car chases, expl...\n the guy who wrote, directed and stared in this...\n I saw this movie Sunday afternoon. I absolutel...\n Dialogue: stilted, clichéd; Acting: hammy, cli...\n *This comment may technically contain \"spoiler...\n It seems as if in Science Fiction you have thi...\n Often laugh out loud, sometimes sad story of 2...\n I actually saw this movie in the theater back ...\n OMG what has Disney done lately..most of their...\n The Stooges are back and funnier than ever. \"B...\n I started watching this because I was looking ...\n \"Priscilla, Queen of the Desert\" is always bei...\n A day in the life of a dimwitted cab driver so...\n Without doubt a great all round show that if s...\n A very strong movie. Bruce is good and Brad al...\n Purported documentary that tries to examine sc...\n Utterly ridiculous movie which makes fun of th...\n The acting may be okay, the more u watch this ...\n This film could have been great- but wasn't. A...\n Three Stooges - Have Rocket, Will Travel - 195...\n The best thing about Shrieker is the dialogue....\n Sometimes you need to see a bad movie just to ...\n Julie Waters is always marvelous but Adrian Pa...\n This movie was excellent from start-to-finish....\n Lexi befriends Jennifer, a thin, intelligent g...\n The writers missed so many opportunities and c...\n Bad plot, bad acting, bad direction.<br /><br ...\n Its one of those stereotypical mtv generation ...\n Forget everything that you have ever read abou...\n The show is at least partially Faked (So is no...\n An old vaudeville team of Willy Clark (Walter ...\n SPOILER ALERT In this generic and forgettable ...\n Chances are if I watched this again I might ge...\n Some of the reviewers here have foolishly judg...\n I am the kind of person who can enjoy a good B...\n I went to see this because I'd never seen Tel-...\n OK, so in any Wile E. Coyote-Road Runner carto...\n This is a gem, a real piece of Americana for a...\n At what point does a film become so bad it's g...\n This movie is one of my all-time favorites. I ...\n There are numerous films relating to WW2, but ...\n 'Doppleganger', ( or 'Journey To The Far Side ...\n Kevin Spacey is my favorite actor of all time,...\n This movie documents the Harlem ball circuit o...\n Well. Where to begin. Let's just say this; avo...\n I blow hot and cold over Carné. He really can ...\n Why did I waste 1.5 hours of my life watching ...\n For fans of Chris Farley, this is probably his...\n So lets say you are a producer, you have some ...\n I won't reiterate what so many others have sai...\n I have been feeling a little disappointed by T...\n Don't believe the hype. If you have high hopes...\n The past few months I have collected Voyager s...\n I have never seen this movie on its own, but l...\n Very good drama although it appeared to have a...\n So I got this from the rental store where I wo...\n A cast of 1980's TV movie and TV series guest ...\n Flashdance is one of those awful, stupid movie...\n When my now college age daughter was in presch...\n Not too good a movie. Sure, it contains action...\n This documentary about the life and comedy of ...\n The story idea is excellent. Unfortunately, th...\n If you like films that are totally bizarre, th...\n I was so looking forward to seeing this when i...\n I went to see this movie with the most positiv...\n My 2 year old likes the Doodlebops show, it se...\n The movie is a really well made one, which is ...\n In Sudan, the Arabs rule and are constantly at...\n This movie stinks. I don't think I have ever s...\n This is a great movie. It has a captivating st...\n An interesting concept vampirism having someth...\n In the opinion of several of my friends and fa...\n I enjoyed this for a couple of reasons. The em...\n I was five when the show made its debut in 195...\n This film is supposedly about three young idea...\n There are no - NO redeeming qualities to this ...\n Romantic comedies can really go either way, yo...\n A big surprise, probably because I was expecti...\n It's sad when you can see what a movie was att...\n The best romantic comedy I've seen in years. N...\n I did have some expectations from this film be...\n Plotwise this is a rather silly little whodunn...\n I probably saw this movie first in about 1995....\n In Black Mask, Jet Li plays a bio-engineered s...\n I saw this film prior to joining the British A...\n Kaige succeeds in this beautifully done film. ...\n Here's a movie with a good cast and nice looki...\n Do we really need any more narcissistic garbag...\n \"Midnight Cowboy\" was never a great movie to s...\n A film I expected very little from, and only w...\n This might sound weird, but I only got to see ...\n This is a terrible movie, terrible script, bad...\n Well, I'd be lying if I said that this could e...\n Wow, I just finally managed, after several att...\n Fast Times it ain't. But check this movie out,...\n The worlds largest inside joke. The world's la...\n These days, Asian horror films are among the b...\n This is the first feature film from Australian...\n The hip hop rendition of a mos def performance...\n (There Are Spoilers) Usual slasher film with t...\n \"Come Undone\" appears to elicit a lot of opini...\n An in-name-only sequel to John Carpenter's Vam...\n Thirty pieces of silver and a kiss for luck. T...\n This cool Marvel superhero game pays proper tr...\n This should not have been made into a movie. E...\n This has got to be a unique twists of two genr...\n I'm just quite disappointed with \"Soul Survivo...\n This film was produced by Producers Releasing ...\n Dietrich Bonhoeffer's writings have had a prof...\n I saw the trailer for this movie in the 70's w...\n John Madden's cinematic interpretation of Edit...\n Ooverall, the movie was fairly good, a good ac...\n Dutiful wife Norma Shearer (as Katherine \"Kitt...\n Definitely worth renting! Good clean family en...\n Great fun. I went with 8 friends to a sneak pr...\n I suggest if you have already seen the origina...\n This movie has made me want to become a direct...\n This film seemed way too long even at only 75 ...\n Well since seeing part's 1 through 3 I can hon...\n (Spoilers Ahead!) This same exact plot from th...\n If you want to see a film with no guns, blood,...\n Dreadful. I hope I can save two hours of your ...\n This movie sat in a dusty stack of videos in m...\n This is a very entertaining flick, considering...\n This is \"realism\"? If Rivette was seeking to g...\n A couple of years before SCREAM spoofed the sl...\n I am profoundly grateful to have seen this mov...\n He glorified himself as a great supporting act...\n First, let's get the \"hoopla\" out of the way.H...\n Excellent work all around especially by the ac...\n when my sister said this movie was gonna be go...\n Released two years before I was born, this Osc...\n I'm sorry folks, but these enthusiastic review...\n The Governess was, by far, a very pitiful film...\n Gen-Y Cops...since I heard of the film being i...\n If this movie had not been labeled a Disney pi...\n First of all,there is a detective story:\"légit...\n I'd never thought that I would be caught sayin...\n Contrary to what many may believe as this movi...\n > you are warned this is a spoiler! > This mov...\n The 1980s TV show, updated with fresh female f...\n There's something compelling and strangely bel...\n I'll be blunt. I'm not one for politically cor...\n Indian Summer is a good film. It made me feel ...\n If you're going to put on a play within the pr...\n I watched this last night with low expectation...\n (the description of the mood of the movie may ...\n the cover of the box makes this movie look rea...\n A LAUREL & HARDY Comedy Short. The Boys arrive...\n A horrible mish mash of predictable story line...\n CORRIDORS OF BLOOD <br /><br />Aspect ratio: 1...\n I've had this movie on tape for years and star...\n This bomb is just one 'explosion' after anothe...\n Quite possibly the worst movie that I have eve...\n It gives the ordinary guy/girl the chance to b...\n Wow, here it finally is; the action \"movie\" wi...\n Had fun watching this film.. despite the feeli...\n Right then. This film is totally unfunny, puer...\n Well in to 2002 I've got some catching up to d...\n A SUPERMAN Cartoon.<br /><br />When America un...\n Rourke does his usual bit part,as a sinister,r...\n After waking up at 3:30 in the morning and not...\n Even though The Shining is over a quarter of a...\n Being a 90's child, I truly enjoyed this show ...\n A truly, truly dire Canadian-German co-product...\n How could a film dealing with illegal Mexican ...\n Amazing. That's what you'd say if you sat thro...\n \"Porgy and Bess\" is an outstanding production ...\n I saw this at the 2008 Palm Springs Internatio...\n The Patriot (nothing to do with the Mel Gibson...\n BASEketball is indeed a really funny movie. Da...\n There are films that are not released in theat...\n This is a movie that should be viewed and trea...\n I've been willing to put up with a lot from la...\n Obviously, someone was looking at catching ont...\n Can I give this a minus rating? No? Well, let ...\n Bon Voyage is fun for the audience because it ...\n A large bed possessed by a demon eats people, ...\n Written by the writer who penned the excellent...\n This movie ... I saw it 15 years ago and in th...\n T. Rama Rao made some extremely beautiful film...\n Madhur Bhandarkar goes all out to touch upon t...\n The hysterical thing about this movie is that,...\n Life Begins is a wonderful pre-code film starr...\n I had never heard of this one before the owner...\n I must say that during my childhood I'm quite ...\n God bless Randy Quaid...his leachorous Cousin ...\n Being featured at the 2006 Cannes Film Festiva...\n \"Walking with Dinosaurs\" is absolutely brillia...\n This is truly a re-make that should never have...\n Budget limitations, time restrictions, shootin...\n Cecil B. deMille really knew how to create a c...\n don't watch this Serbian documentary and Serbi...\n HUSBANDS BEWARE is a remake of the Shemp class...\n I too am a House Party Fan...House Party I is ...\n Bobbie Phillips, who in her own right has amas...\n If it wasn't for the bad dialogues and script....\n Blake Edwards tried very hard to change Julie ...\n I have been away from Istanbul for the last 10...\n The film is a bit tedious. It's mostly a silen...\n Note: These comments are for people who have s...\n I can't quite explain why I find this so allur...\n This movie documents a transformative experien...\n Im proud to say I've seen all three Fast and F...\n A wealthy young man, raised as a SON OF THE GO...\n The Neil Simon's Sunshine Boys starring Walter...\n Okay. To enjoy this silent comedy short you MU...\n Now i have seen two movies by the director Che...\n A really very bad movie, with a very few good ...\n Hayao Miyazaki's second feature film, and his ...\n \"When a small Bavarian village is beset with a...\n This movie looks like it was made for TV . For...\n For most people, RoboCop 3 is the film that re...\n Tumbling Doll of Flesh (aka Niku daruma and Ps...\n This movie is overrated, to say the least. It'...\n This was one of Christie's later stories. Thro...\n When a hardworking entrepreneur is rejected fr...\n The only reason I remember this movie is becau...\n This movie lacked credibility for two reasons....\n I just want to start by saying this is the fir...\n I don't think I'm too far off base saying that...\n The film is really good, it doesn't use violen...\n Imagine yourself trapped inside a museum of th...\n This movie is really special. It's a very beau...\n This is apparently one of Shemp's first shorts...\n I'm a big fan of sleaze and horror movies, whe...\n I was swept into this series just as surely as...\n Tasteless. I can't even write intelligently ab...\n Someone i know said that there was this film c...\n A young man falls in love with a princess but ...\n This man is nothing short of amazing. You trul...\n Chupacabra Terror: 2/10: It was the Navy Seal ...\n Hollywood has churned out yet another garbage ...\n Unlike Bond and other detective movies, Alfred...\n Sometimes intentionally campy, at other times ...\n The movie is about Paul(Páll) a young man who ...\n Sheltered young woman, home-schooled and possi...\n I don't even know where to begin...<br /><br /...\n What an amazing film. With very little dialogu...\n The Hazing is confused mumbo-jumbo that wants ...\n OK, this movie seems to have been pretty well ...\n A mediocre at best horror flick that deals wit...\n i just glanced over another comment posted her...\n This was an awesome movie with flight scenes t...\n Sarah Silverman is a dangerous Bitch! She's be...\n Wealthy horse ranchers in Buenos Aires have a ...\n \"Telefilms\" tend to fall under the pitfalls of...\n OK, so my summary line is a cheap trick. But t...\n These guys combine low-brow with low-budget. I...\n This movie was recently shown subtitled not du...\n There is an excellent reason Edison went strai...\n I remember seeing this movie back when it was ...\n I saw the trailer to this film and it looked g...\n Critics have started calling it the Oscar Winn...\n Fido is a cute comedy that deserves wider reco...\n This is my first review on IMDb.com and probab...\n Look, don't get me wrong I love independent fi...\n Folks! is a \"comedy\" about a man whose parents...\n No one goes to a movie like The Hills Have Eye...\n Most people will consider that Yul Brynner's g...\n This movie is wonderful. The writing, directin...\n If this is the first of the \"Nemesis\" films th...\n Beast Wars is a show that is over-hyped, overp...\n What Fox's fascination with dysfunctional fami...\n My poor Tank Girl, they ignored everything gre...\n I saw this movie years ago on late night telev...\n To say this film is simply a demonisation of C...\n Great movie about a great man. Thomas Kretschm...\n This movie isn't worth the film it was photogr...\n Revolutions always present opportunities for d...\n Love it or loathe it, it's hard to not find Wa...\n The \"math\" aspect to this is merely a gimmick ...\n It occurred to me while watching \"Imaginary He...\n Despite the feelings of most \"Star Wars\" fans,...\n This short film doesn't get there. Cliche' and...\n Martin Ritt seems to be a director who was alw...\n The best thing I can say about \"Quintet\" is th...\n There is no need for me to repeat the synopsis...\n The worst part of all is the poor scripting, l...\n A truly unpleasant film. While Rick Baker's sp...\n Okay, let me coin a new word here: polyphobia:...\n Terrible use of scene cuts. All continuity is ...\n This movie has no respect for the viewer's tim...\n Since I'd bought the DVD, I watched as much of...\n No redeeming features, this film is rubbish. I...\n What a great movie this is. I found it full of...\n This is an exquisite film about the search for...\n What the hell was all that about? I saw The Ma...\n <br /><br />eXistenZ is simply David Cronenber...\n Few movies have dashed expectations and upset ...\n My wife invited my son and I to watch this on ...\n I was watching an NFL game and started surfing...\n Despite a few acceptable adaptations of the bo...\n Please note that I haven't seen the film since...\n This film speaks a universal language; one can...\n This is by far the worst non-English horror mo...\n There are no reasons of taking this documentar...\n The Foreigner is a straight-to-video Steven Se...\n Jess is 18, very smart and wants nothing more ...\n The Greek locale for parts of the movie were v...\n I thought I'd witnessed every wrinkle the crim...\n It`s funny how instinct warns you of something...\n Cary Elwes have to say puts on a better perfor...\n This isn't as violent as I was expecting which...\n I first saw Love in Limbo playing late on free...\n ***May contain spoilers***<br /><br />I had ve...\n I am normally not compelled to write a review ...\n Watching this hilariously retro but very enter...\n Terrific movie: If you did not watch yet, you ...\n This film is so awful it is funny, not quite t...\n I had never paid much attention to this flick ...\n New Orleans is nothing like how it is portraye...\n Sergio Leone spins in his grave... If there wa...\n I do not believe all the praise for this movie...\n Mikhail Kalatozov's The Cranes are flying is a...\n This is one of quite a few cartoons with Bugs ...\n I have to admit that I'm a great fan of this s...\n The war in the East,as the Germans referred to...\n I didn't understand the people who rated it ov...\n I gave this show a chance because of Jaleel Wh...\n I believe I received this film when I was a yo...\n Although a well produced made for television m...\n I really wanted to like this movie. The previe...\n I think this was the most outstanding edge-of-...\n In my opinion, the best movie ever. I love whe...\n \"Go Fish\" garnered Rose Troche rightly or wron...\n Every generation fully believes it is living i...\n A tedious gangster film that leaves you wishin...\n Pecker is another mainstream film by John Wate...\n ***SPOILER ALERT*** Disjointed and confusing a...\n This was a flick doomed from its conception. T...\n Do not bother to waste your money on this movi...\n \"L'Auberge Espagnole\" collected the audience w...\n If the following sounds tempting, then by all ...\n Lost is largely considered one of the most bea...\n From the critical acclaim, I expected more fro...\n Director Douglas Sirk once said `there's a ver...\n My review is divided into questions that you r...\n What do you get when you have a tenacious, sea...\n This was such a waste of time. Danger: If you ...\n I can envision the writers of this story think...\n Rod Serling was, of course, a genius and his w...\n Who would think Andy Griffith's \"Helen Crump\" ...\n Lame movie. Completely uninteresting. No chemi...\n The only reason I rented the movie was to see ...\n This movie is a real thriller! It was exciting...\n This series takes a classic story and makes ru...\n This film is the most cult movie on metal ther...\n The first opening scene that lasted around fiv...\n with what they had. John and Carolyn were very...\n I sought this film out because I'm a new Frain...\n I had a great time watching Femina Ridens a co...\n This tear-teaser, written by Steve Martin hims...\n ''Meet Sherri..for an evening of Pleasure and ...\n Telling the story wouldn't be the point at all...\n **Possible Spoilers Ahead**<br /><br />Wheneve...\n A young woman nicknamed \"T.N.T.\" for being vir...\n I am a Talent Manager. I have been for 15 year...\n The cover of the VHS says it all: \"Without dou...\n ...the first film I had to walk out on. And it...\n This is one of the more adorable episodes of t...\n What?!?? Why are people saying this is \"mind b...\n A must see for anyone who loves photography. s...\n Steve Carell has made a career out of portrayi...\n The comment by \"eliz7212-1\" hits the proverbia...\n In over 70 years of watching movies,This has t...\n 'Utter Crap' pretty well sums up what this.......\n One of my favorite movies of all times, have s...\n The plot seemed to be interesting, but this fi...\n Very disappointing version of Lorna Doone. Too...\n The story of the boy thief of Bagdad (as it wa...\n What this movie fails from answering is how wr...\n In A Minute To Pray, A Second To Die, Clay McC...\n WARNING: PLOT SPOILER<br /><br />The always-ab...\n This film is horribly acted, written, directed...\n This has to be one of my favourite flicks, unl...\n We found this movie nearly impossible to watch...\n I avoided watching this film for the longest t...\n I am a fan of a few of the Vacation films, but...\n There has never been anything like it, that's ...\n I don't doubt that Victor McLaglen won his Bes...\n Seeing the cover of this before I watched it, ...\n I first saw this film in 1959 at the Hoyts Dou...\n I purchased this one for a couple of dollars a...\n If you believe that any given war movie can ma...\n \"Witchery\" might just be the most incoherent a...\n Xavier,a French student moves into an apartmen...\n The plot line is an expose of the under belly ...\n After a slow beginning, BRUCE ALMIGHTY is a ve...\n Would someone explain to me when the Ghoulies ...\n I cannot for the life of me understand why the...\n I checked this out at the Vancouver Internatio...\n The story deals about Jet Li who has to fight ...\n It's hard to believe that there are some peopl...\n I passed this one on the shelf a few times, lo...\n Even by the standards of most B-movies, this m...\n When 'My Deja Vu, My Deja Vu' aired last seaso...\n Utopia, made in 1950 in France, was the last f...\n Rent this only movie if you're in the mood for...\n I read Holes in 5th grade so when I heard they...\n Just saw 'The League of Gentlemen: Apocalypse'...\n It pains me to say this about an Australian fi...\n Good show, really good acting, and the directo...\n \"Nat\" (voiced by Trevor Gagnon), along with hi...\n Considering the original film version of 'The ...\n I saw 'Descent' last night at the Stockholm Fi...\n I rented this one on DVD without any prior kno...\n So I decided to watch the entire Puppet Master...\n this show is awful. no comedy, no plot no good...\n I thought this film was a poor effort by the B...\n So what constitutes a real independent film? I...\n This first time writer/director comes across a...\n I'd heard about this movie a while ago from a ...\n A film with very little positive to say for it...\n The 40 Year Old Virgin, is about Andy Stitzer,...\n I was always a big fan of this movie, first of...\n I cannot BELIEVE anyone is giving this film a ...\n If you like bad movies, this one's a real trea...\n I have been living in Istanbul for 24 years an...\n This is an excellent film about a traditional ...\n I was not only an extra in this movie, I got t...\n Of course the plot, script, and, especially ca...\n The Kindred opens to shots of a Porsche racing...\n To get in touch with the beauty of this film p...\n I was expecting this to be just like the other...\n Special sneak previews are always a good time....\n When I first saw this movie I was with my dad....\n Jeff Lowell has written & directed 'Over Her D...\n This is a film that I love above all others. I...\n \"A Classic is something that everybody wants t...\n I'll put it straight to you, this movie is dea...\n This movie has a fairly decent premise - one g...\n This was the first \"Walking Tall\" movie I saw,...\n This movie had good intentions and a good stor...\n I watched this movie when I was almost quite a...\n I went through great efforts to get this movie...\n Sure, this movie is sappy and sweet and full o...\n I haven't seen it in over twenty years. OJ was...\n I was not expecting much from this movie, but ...\n \"Extreme Makeover: Home Edition\" is yet anothe...\n This is probably one of the best French movies...\n I caught this at the Chicago IndieFest and hav...\n I considered myself to be quite melancholy, es...\n Although Bette Davis did a WONDERFUL job as Mi...\n A heroic young trail scout leads a large party...\n If you \"get it\", it's magnificent.<br /><br />...\n A couple(Janet and Richard) go camping out in ...\n What a lovely heart warming television movie. ...\n A film like Amazing Grace and Chuck is a perfe...\n The riddle as a concept is an interesting idea...\n I only today, picked this up at the 99 cents o...\n After the success of \"Muppet Babies\" Warner Br...\n I love Tudor Chirila and maybe that's why i en...\n Something about \"Paulie\" touched my heart as f...\n What more can I add? This is without doubt one...\n I consider myself a casual fan of Dario Argent...\n this movie only gets a second star because i w...\n I really hate most end of the world movies. Th...\n Let me preface this by going on record, I am a...\n Some good movies keep you in front of the TV, ...\n I first saw Rob Roy twelve years ago. With lit...\n What can I say about THE PLEASURE PLANET that ...\n I loved this film, at first the slick graphics...\n I sometimes grow weary of reading reviews of s...\n You know, Robin Williams, God bless him, is co...\n The first film is somewhat good to me, I enjoy...\n This movie is like porn with all of the good p...\n I saw this movie just recently, and I said to ...\n I can't praise this film enough. It had a lot ...\n I wanted to see this movie ever since it was f...\n Having seen the hot Eliza Dushku in the pretty...\n The movie itself is not too bad; many comments...\n Recently released on British DVD, this is a go...\n With Ralph Bakshi most of his films appear to ...\n Visconti's first feature, Ossessione is an ada...\n Radio was not a 24 hour 7days a week happening...\n This is undoubtedly one of the funniest movies...\n Rudolph Maté's film from 1950 is given a revam...\n Gung Ho is one of those movies that you will w...\n I agree in many parts with the fairly thorough...\n I love the Thackeray novel on which this film ...\n \"The Plainsman\" represents the directorial pro...\n In spite of its impressive cast and crew pedig...\n At first I wasn't sure if I wanted to watch th...\n The films' producers are hoping that Cameron D...\n I got this as part of a competition prize. I w...\n Allow yourself to be transported to a differen...\n In the Muslim country of Khalid (fictional), i...\n CHE! is a bad movie and deserves it reputation...\n Well I don't personally like rap, but I still ...\n The DVD release of this movie hopes you will b...\n Although Kurt Russell was and is probably the ...\n Hip. Erotic. Wickedly sexy ... whatever. It's ...\n This episode apparently grew out of the cold w...\n Right away, this film was ridiculous. Not that...\n I was about 11 years old i found out i live 0....\n In the hands of lesser actors than Claudette C...\n Clyde Bruckman borrows the premise of this sho...\n I give this movie 7 out of 10 because the vill...\n Sorry to say I have no idea what Hollywood is ...\n For anyone who liked the series this movie wil...\n I have to say that I know the documentaries of...\n Brodzki's creation is a great example of how N...\n An interesting look at Japan prior to opening ...\n This is unlike any other movie, the closest th...\n This movie looked like a classic in the cheesy...\n MPAA Rating PG-13<br /><br />My Rating: 10 and...\n Spoilers! Classic 70's sex trash! The Swedish ...\n Alex Benedict (John Cassavetes) is an orchestr...\n I'd really have to rate \"Sex is Comedy\" as one...\n The first time I ever saw this movie was back ...\n If you are very sensitive when it comes to ext...\n I like Brad Pitt enormously. He is an actor wi...\n This groundbreaking film is truly a work of ar...\n James J. Corbett, heavyweight champion of the ...\n It makes sense to me that this film is getting...\n This has to be one of my favourite movies of a...\n WARNING!!! TONS OF DEAD GIVEAWAYS!!! DON'T REA...\n The best scene of \"The People Across The Lake\"...\n I'm sorry, but for a movie that has been so st...\n I saw this movie on the film festival of Rotte...\n I go to the movies to be entertained. I was ve...\n Dirty Sanchez is the more extreme, British ver...\n The previews were so funny that I couldn't wai...\n I was interested to see the move thinking that...\n Well, I'll begin with this: I love horror-movi...\n No laughs whatsoever. Yes, I watched this enti...\n This movie was terrible. You couldn't fast for...\n Bruce Almighty, one of Carrey's best pictures ...\n This film had me spellbound this evening. Than...\n Katherine Heigl, Marley Shelton, Denise Richar...\n After some internet surfing, I found the \"Home...\n Starting with a tearjerking poem and images of...\n This little film is hysterical, full of stereo...\n What an ambitious project Kenneth Branagh unde...\n <br /><br />I really liked this film. One of t...\n Bobby is a goofy kid who smiles far too much a...\n This movie was, unfortunately, terrible.<br />...\n Was this meant to be a comedy or a serious dra...\n A Disney movie that dares to do something diff...\n Frank Sinatra did so many excellent things in ...\n I have neither read the book on which the movi...\n This has long been one of my favourite adaptat...\n I vaguely remember Ben from my Sci-Fi fandom d...\n This movie was incredible!!!! I did not know t...\n This was a wonderfully clever and entertaining...\n This might quite possibly be the worst movie I...\n I've read reviews that apparently you have to ...\n Band Camp was awful, The Naked Mile was a litt...\n A dozen bored surfers, mostly kids in Venice, ...\n Hopalong Cassidy with a horse who is not white...\n I have read over 100 of the Nancy Drew books, ...\n The plot of this movie hangs on one important ...\n Once you sit down to see this film \" A Cannon ...\n I saw \"A Page of Madness\" in a silent film cou...\n Yeti: Curse of the Snow Demon starts aboard a ...\n Just watched this movie on DVD and thought the...\n I loved this show. I used to actually leave th...\n Two L.A cops track down a serial killer nickna...\n This was an absolutely spellbinding series and...\n This was an adorable movie. A real feel-good m...\n The child actor certainly deserves a lot of cr...\n For the life of me I can't figure out why anyo...\n Nickelodeon has gone down the toilet. They hav...\n ... a recommendation! Gloria Grahame runs the ...\n The Falcon and the Snowman is the true story o...\n This Hong Kong filmed potboiler packs in more ...\n I can't believe this movie has 6 stars on IMDb...\n This is easily the most disappointing, least g...\n The movie celebrates life.<br /><br />The worl...\n Effort aside (This isn't a review about good i...\n What can I say about this movie except that it...\n I saw this film numerous times in the late 60'...\n I can't honestly believe that this is a sequel...\n There is a solid group of people that have liv...\n Being (somewhat) an independent filmmaker myse...\n The story behind this movie is very interestin...\n I couldn't help but feel that this could have ...\n Everybody knows that Gregory Widen's original ...\n A tedious yawn of a film that retains nothing ...\n Two snipers travel deep in the jungles in sear...\n May I start off by saying that Casey Affleck i...\n This sweeping drama has it all: top notch acti...\n When I watch a short like Boy-Next-Door, I fin...\n Some movies are just  unlucky. These are the ...\n This film is fun, if your a person who likes a...\n If you are planning to schedule your program f...\n I have loved this movie all of my life. It's s...\n I LOVE this show, it's sure to be a winner. Je...\n Well, you know... Rutger Hauer and Robert Patr...\n I've really enjoyed this adaptation of \"Emma\"....\n After seeing Meredith in \"Beyond the Prairie\" ...\n \"THINGS TO COME\" Movie Review by kWRice<br /><...\n \"May contain spoilers\" Sadly Lou Costellos' la...\n The first in a new style of films for Lamas- n...\n One more of extremely unprofessional movies ab...\n `AfterLife' is about a somewhat arrogant, reas...\n This movie is essentially a \"how-to\" on how to...\n Mario's first foray into the world of 3-dimens...\n It's one of the best movies I've seen in the l...\n I looked forward to watching this film and the...\n \"In the Line of Fire\" is one of the best thril...\n Christopher Nolan's first feature film wowed c...\n For every fan of coming of age tales, this 3 h...\n The next time you are at a party and someone a...\n Gundam Wing is a fun show. I appreciate it for...\n Ice the Limerick:<br /><br />A virus pulled ou...\n K-Pax is a very intriguing film. Is Prot (Kevi...\n *minor spoilers*<br /><br />You know, it's get...\n I have been a Hindi movie buff since the age o...\n Someone, some day, should do a study of archit...\n ...If you've been laughing too much for a long...\n For everyone who expects a traditional superhe...\n A few minutes in: \"NOT credible. What idiot wr...\n The first scene in 'Problem Child' has a baby ...\n I had no idea what Jane Eyre was before I saw ...\n As you all may know, JIGSAW did not make its w...\n \"The Journey\" is a very good film. Produced in...\n It's a Time Machine all right. It runs in \"rea...\n The movie was watchable while Nicolson was on ...\n Blue Planet... Wow... Where do I begin? The ye...\n If you have been to the east of Europe (or eve...\n Roger Corman has enjoyed his shares of cinemat...\n I had seen Rik Mayall in Blackadder and the Ne...\n Went to see this movie with my brother and his...\n I ran across Yvette McClendon in a film at the...\n With all the potential for a good movie in its...\n I'm not sure this is a spoiler; perhaps it is ...\n This is one of the worst movies I've seen in a...\n THE CHOKE (aka AXE in the UK) is a slasher pro...\n There's not much anyone can say about this fli...\n This has to one of the most pathetic, predicta...\n In one of the more under-seen films of the lat...\n Hubert Selby Jr. gave us the book \"Requiem For...\n There are bad movies, movies that are horrible...\n Mind you, it's not supposed to be, but it is. ...\n Horror spoofs are not just a thing of the 21st...\n An enjoyable game, which offers fun and easy g...\n With Harry Callahan getting up in years, the i...\n This is one of the worst movies I have seen th...\n Howard Brackett (Kevin Kline) is a teacher who...\n His significant charisma and commanding presen...\n Frederick Forsyth's books are always so intric...\n \"Protocol\" is a hit-and-miss picture starring ...\n I know these types of films sell tickets and m...\n If this film were to be rated on a scale of 1 ...\n This is is a thoroughly unpleasant, if slickly...\n In 1932, Humphrey Bogart was a relative unknow...\n I loved this movie. I knew it would be chocked...\n This is the worst work ever of Daniel Day Lewi...\n Wow. A truly fantastic 'trip' movie that has t...\n The Texas Revolution of 1835 to 1836, includin...\n Others' main criticism of this film--namely th...\n It is hard to judge 'Imaginary Heroes' without...\n This film is so incredibly bad, that I almost ...\n This stuffy melodrama is quite easily the wors...\n Poor Ingrid suffered and suffered once she wen...\n I did something a little daring tonight when I...\n Like the beauty of the jungle, Jessica Alba's ...\n The greatest movie ever.<br /><br />How's that...\n A great film! Slow: YES.<br /><br />...but ori...\n this is what i call a great movie. it lives tr...\n If this documentary had not been made by the f...\n While it's one of two movies on Tales of Voodo...\n I remember Devil Dog playing on TBS almost 20 ...\n This flick was the introduction for a lot of u...\n I caught this little gem totally by accident b...\n What a sad sight these TV stalwarts make, runn...\n Critters 3 starts on the open road as Clifford...\n I have noticed that a lot of films that have b...\n A remarkable film, bringing to the surface all...\n I admit I have been a fan of Harrison Ford for...\n I had high hopes for this film when I saw the ...\n Pavarotti and the entire cast are superb in th...\n It seems that all people didn't like Steven Se...\n I was excited when I heard they were finally m...\n A sweet little movie which would not even offe...\n Mercy the movie, actually starts out as a some...\n As the faux-Russian scientist says two-thirds ...\n This time The Beastmaster(Marc Singer) returns...\n Cedric Kahn's films have been character-based,...\n This is the most pitiful excuse for a comedy s...\n Halloween is the story of a boy who was misund...\n The Muppet movie is an instant classic. I reme...\n I'll be honest-- the pimped out purple plane w...\n Punishment Park is a pseudo-documentary made b...\n Let's get one thing straight, this gets an 7 o...\n Never viewed this film and enjoyed the singing...\n There is just one word for this film. Appallin...\n When people think of downtown Chicago they thi...\n Oh my, I think this may be the single cheesies...\n I watched SEA OF DUST at the Rhode Island Horr...\n The Untold... Is one of the worst films I ever...\n Loved this movie!! Great acting by Carla Gugin...\n The \"documentary\", and we use that term loosel...\n This was a disappointing horror film about a s...\n Once again, I fell for it, in my roots I crave...\n I wasn't as \"lucky\" as some of the others comm...\n Although I'm not too much of a religious perso...\n This is an excellent movie and should be prese...\n I viewed this movie in DVD format. My copy may...\n This is one of the better classic Edgar Wallac...\n Let me start by saying overall I enjoyed The L...\n Moon Child is the story of two brothers and a ...\n This review is long overdue, since I consider ...\n This movie defines the word \"confused\". All th...\n This is a great film.<br /><br />I agreed to w...\n Tremendous fun both as a film and as an excuse...\n This movie is bizarre. Better put, it's \"freak...\n If you don't like Mel Brooks, you won't like t...\n I never saw any of John Leguizamo's stand-up b...\n This movie could only originate in the 1970's!...\n This was a movie i could not wait to see! So i...\n It's up there with Where's Poppa, The Groove T...\n To sum this story up in a few sentences: A tee...\n The movie itself was ok for the kids. But I go...\n I remember seeing promos for this show before ...\n I must say, I found this movie very disappoint...\n Synopsis: Andreas (Trond Fausa Aurvaag) finds ...\n Nina Foch delivers a surprisingly strong perfo...\n As others have commented, I checked this out a...\n This HBO original is pretty straightforward an...\n The daytime TV of films. Seldom have I felt so...\n I saw this movie in 1956 and again on Cable a ...\n What do you get when you mix a lump of clichés...\n I agree that Capital City should be on DVD. I ...\n I laughed at the movie! The script, the acting...\n This is the best show ever no matter what you ...\n This rather formulaic swords and flying fists ...\n I managed to grab a viewing of this with the a...\n What a tribute to his father! He set out on a ...\n ...scratch it. Just as African's created rhyth...\n The emotional powers and characters of Dominic...\n Let me say this about Edward D. Wood Jr. He ha...\n this movie sucks. did anyone notice that the e...\n One of the funniest films I ever saw in the th...\n The cover on the DVD and disc is freaking awes...\n William Powell's final outing as Philo Vance o...\n Vincente Minelli movies are usually worth your...\n As a fan of the book, this work is fantastical...\n Sometimes it is difficult to watch films with ...\n I disagree strongly with anyone who might dism...\n I found this an awfully disappointing experien...\n Shtrafbat is the story only Russians could tel...\n A washed up reporter called Bart Crosbie (Pat ...\n \"Kalifornia\" is a good Hollywoodish odyssey of...\n Not sure one can call this an anti-war film, i...\n There is only one use for a film such as Bulle...\n The fact that this cruddy series could elicit ...\n I went to see THE ITALIAN JOB with mixed revie...\n I remember when I was five and my parents thou...\n When you're watching Distant you know you're n...\n Well groomed, well behaved teen Meg Tilly must...\n Yes this movie is predictable and definitely n...\n This is a truly awful film. Lou Diamond Philli...\n I have officially vomited in my own mouth, tha...\n Republic pictures comes late in the game to th...\n Where to start. The film started out pretty we...\n This may not be the very worst movie Peter Sel...\n I've never seen many online movies in most of ...\n Get the CD instead. The show is tame, and the ...\n Surprisingly not terrible and well animated fo...\n Having heard of Modesty Blaise before, but nev...\n I recently got the chance to view \"The Waterda...\n Caroline Bender (Hope Lange) is just killing t...\n If it wasn't for some immature gullible idiot ...\n This last Dutch speaking film of Verhooven mad...\n It has been a long time since I have been to a...\n Moscow Zero stole my money and I want it back!...\n Ugh, what an embarrassing episode last night! ...\n Basically, Cruel Intentions 2 is Cruel Intenti...\n This is a racist movie, but worthy of study an...\n BELL WITCH HAUNTING (aka THE HAUNT) is an Amer...\n The more I watch Nicholas Cage, the more I app...\n Wow - most of the audience just seemed to shak...\n Bela Lugosi is great as usual but the movie is...\n This was really a \"nightmare\" of a film; i saw...\n For fans of 1970s Hammer type horror films, th...\n I was very impressed with the latest productio...\n From watching the trailer, the movie looked pr...\n Miles O'Keeffe once again assumes the role of ...\n He's the only reason to see this film. He give...\n Tedious girls-at-reform-school flick, which pl...\n This is one of my three all-time favorite movi...\n Apparently Shakespeare equals high brow which ...\n (this may be a bit on the spoilerish side) I w...\n The tagline on the box hails, \"100 TRAPPED PAS...\n The plot is predictable. It has been done many...\n I can say without a shadow of a doubt that Goi...\n I loved this film! Fantastically original and ...\n This is the worst brain damaged, ultra cheap, ...\n Well as a life long fan of Kung Fu films I hav...\n I'm not sure it was the language or the poor a...\n This films makes no pretentious efforts to hid...\n \"Don't Drink the Water\" is an unbelievably bad...\n this has got to be one of those films where th...\n The first time I saw \"Alice in Wonderland  an...\n Wicked Little Things (known in Australia as \"Z...\n David Tennant and Sarah Parish's brilliant act...\n I have done quite a few reviews on IMDb and th...\n \"Life hits us in the face........we must try t...\n Amanda Bynes is an enormously talented actress...\n I love documentaries. They are among my favori...\n Inane, awful farce basically about a young man...\n Could this be one of the earliest colour films...\n 1969 was the year. New York City was the place...\n First, and foremost, I take issue to the title...\n This film had a distinct Woody Allen feel abou...\n believe it or not,this movie is worse than num...\n I saw this movie when it was released, and my ...\n I don't know what Dick steel was talking about...\n As I sit here, I find myself laughing at certa...\n I love Kristen Dunst, especially in Elizabetht...\n Okay, that was a pretty damn good episode. Muc...\n this is the worst movie i've ever seen. i'm no...\n The best film about marriage and family. This ...\n I had seen The Cure when I was a kid and I lov...\n I have always been interested in anything abou...\n Ironically the most talked-about American film...\n *Spoiler warning*<br /><br />First of all I ra...\n This film is a fun little private eye detectiv...\n Look, although we don't like to admit it, we'v...\n I didn't even want to watch this movie after r...\n I got all excited when I saw the ads for this ...\n As a rule, I try to find as much in films as I...\n Why did I waste my time with this movie? There...\n A dark and painful look at the perils of drug ...\n Well, it's Robin Hood as 'geezer' all right......\n Despite the title and unlike some other storie...\n I really don't know why I agreed to watch this...\n There are some things I can never understand. ...\n The Man in the White Suit is one of those deli...\n Ahem.. I think I'll be the only one who's sayi...\n I'm not a movie maker but I do know it is hard...\n I've seen this programme a few times and the m...\n As a young teen when this came out, I complete...\n ***SPOILERS*** A hot and sexy Linda Blair as t...\n A truly excellent look at the world and the re...\n Man, I think people have forgotten how to watc...\n NO SPOILERS.<br /><br />I love horror movies, ...\n Henry Fonda brilliantly captures what we have ...\n I don't agree with one of the reviewers who co...\n The One and only was a great film. I had just ...\n I remember seeing this in a the Salem movie th...\n I'm really not going to waste my time with in ...\n Only one word can describe MR MAGOO - slapstic...\n On Broadway, A Chorus Line was pure magic. Fro...\n One of the most famous of all movie serials! S...\n The best part about this movie is that you can...\n This is the Australian TV series. It is a clas...\n As a recent convert to Curb Your Enthusiasm, w...\n I can't believe some of the scores this film i...\n I saw this on TCM recently and, through the IM...\n There is no question as to who is in command o...\n Golden Boy is ecchi humor (bordering on hentai...\n From the beginning of the movie I had a feelin...\n If the screenwriter and director intended to o...\n Yikes.<br /><br />I've seen quite a few bad mo...\n Ten out of ten stars is no exaggeration. This ...\n First of all, Blythe Danner doesn't look anywh...\n \"Meatballs\" is an ode to summer camp. Those of...\n I wouldn't be so quick to look at all the good...\n Everything about this show is terrible. Its pr...\n This movie just was not very funny. There's no...\n first real movie in this year. amazing long sh...\n I went it to see this film with caution. A sui...\n \"The Yoke's on Me\" is undoubtedly the most con...\n OK, I don't want to upset anyone who enjoyed t...\n Worst horror film ever but funniest film ever ...\n Okay, When I bought this flick I though this g...\n Dare Rudd (John Wayne) and sidekick Dink Hoole...\n As an ancient movie fan, I had heard much abou...\n This \"remake\" is a complete disgrace: so medio...\n My friends and I rented that movie last night ...\n I swore I would never allow myself to devolve ...\n Holy crap. This was the worst film I have seen...\n Just came out of a sneak preview for this film...\n First off, I Hate Sci Fi Stuff, And Although T...\n New Yorkers contemporaneous with this film wil...\n I really don't know much about the Marquis de ...\n The film lacks style, i mean original style. e...\n This film is definitely up there with the wors...\n \"Blind Spot\" one of my festival favorites. I w...\n It's hard to believe people actually LIKE this...\n I was fortunate enough to see The Last Stop he...\n For a long time it seemed like all the good Ca...\n From the start, you know how this movie will e...\n House of games has a strong story where obsess...\n Story of the creation of Underdog and adventur...\n Based on a fairly bland \"best seller,\" this fi...\n No one is a greater fan of Geroge Macdonald Fr...\n POPEYE AND BIG FOOT **; POPEYE'S ENGINE COMPAN...\n Yes, I'm sentimental & schmaltzy!! But this mo...\n This movie is not great, but it is a good and ...\n Bugs Bunny accidentally ends up at the South P...\n This movie had lots of potential, beautiful wo...\n Considering all the teen films like \"the Break...\n This film is worse than Cat People, which I sa...\n Every time the supposed explorers and we , the...\n I am a huge Randolph Scott fan, so I was surpr...\n It is considered fashion to highlight every so...\n Comparing Oceans Twelve to the 2001 Oceans Ele...\n As a person who knows the filmed ship and some...\n How has this piece of crap stayed on TV this l...\n Well I will come clean and admit that I was fo...\n It's strange what fate does to some people. Wh...\n Neatly skipping over everything from the coup ...\n If you as I have a very close and long relatio...\n I saw the 7.5 IMDb rating on this movie and on...\n surely this film was hacked up by the studio? ...\n I LOVE Don Knotts, let me just say that up-fro...\n This movie has recieved horrible ratings from ...\n As Ben Elton once observed, nothing goes quick...\n I couldn't spoil this piece of crap if I wante...\n In 2004, I wrote the following statements on a...\n I have to tell you I've been a fan of Star Tre...\n I Enjoyed Watching This Well Acted Movie Very ...\n What is the point of creating sequels that hav...\n I don't know how people can watch this - the o...\n This movie starts out promisingly, with an ear...\n We saw La Spettatrice at the Syracuse Internat...\n \"Fool for Love\" is one of the several now forg...\n This movie was fun, if all over the board.<br ...\n This is a really cool movie! I remember first ...\n I believe anyone who enjoyed Eisentein's Ivan ...\n When I saw LAUREN BACALL do CACTUS FLOWER on B...\n well after watching this i can say that it ain...\n This noisy, dizzying football film from direct...\n This sequel to \"In the Heat of the Night\" will...\n There's no denying the first Azumi film was a ...\n Some aspects of this production are good, such...\n What if Marylin Monroe, Albert Einstein, Joe D...\n It's a little disconcerting to have a characte...\n This interesting lost film (written by Terence...\n sdiner82 had clearly not seen the film in deca...\n Never when I was a child did I love any movie ...\n Kenneth Branagh's \"Hamlet\" hits all the marks....\n I think that most people would agree with me i...\n I've always loved horror flicks. From some of ...\n This movie is excellent!Angel is beautiful and...\n Not very interesting teen whodunit saved from ...\n Crackerjack is a funny movie, everyone at the ...\n In this film Gary Oldman plays a defense attor...\n Amazing, one of my favorite movies way down at...\n After reading the book, I happened across this...\n I don't want to write too much about the film ...\n I completely disagree with the previous review...\n I received this movie as a gift, I knew from t...\n Odious Chuck Norris decided to put one final n...\n I bought this film from my local blockbuster f...\n With its few touches of surrealism, LWHTRB wor...\n Otto Preminger directs this light as a feather...\n I watched this film a few nights ago and it wa...\n This, ladies and gentlemen, is truly a modern ...\n Tim Robbins did a masterful job directing this...\n How Tasty Was My Little Frenchman tells a stor...\n I'll start by apologizing to filmmakers everyw...\n I watched this movie recently and fell in love...\n I love this movie! It has everything! Bonnie H...\n I have watched this film several times over th...\n An unqualified \"10.\" The level of writing and ...\n \"Get Shorty\", \"Out of Sight\", \"Jackie Brown\" (...\n OH MY GOD! After having such a promising start...\n This movie is a true masterpiece, it really is...\n \"October Sky\" is a film that will steal your h...\n I saw this movie on TV when it came out, and n...\n This movie was so cool! I saw it on a Friday n...\n I am a gigantic fan of both Koyaanisqatsi and ...\n This is your typical Priyadarshan movie--a bun...\n I read the novel 'Jane Eyre' for the first tim...\n The Snowqueen is one of the best love stories ...\n Wow. What a wonderful film. The script is near...\n This is probably the worst movie ever made it ...\n If you read my review of SyFy's \"Dinoshark\", y...\n this is my first review on IMDb, i didn't real...\n This is an extraordinary topical thriller. Fon...\n As I drove from Skagway, Alaska to Dawson City...\n This movie explores the difficulties that stra...\n As the celebration of Christmas has evolved th...\n This movie reminds me of Harry Potter - not th...\n I'm writing this because I somehow felt being ...\n I really enjoyed the first half hour of this m...\n The psychology of this movie is really weird t...\n I wasn't really fond of the first \"Cube\" movie...\n This is a really nice and sweet movie that the...\n I'm shocked that there were people who liked t...\n Delivers great acting and greater Special Effe...\n Before Nicholas Cage was a big action star, he...\n I've slowly been collecting the films availabl...\n Most action films are crass of Hindi cinema, e...\n There is a famous short story about a man who ...\n I went into a screening of \"SISTER HELEN\" at t...\n Not since \"Harold and Maude\" has suicide been ...\n This movie is a classic. Kids now will love it...\n For a fan series, I must admit that Hidden Fro...\n I think it's about 3 years ago when I saw this...\n \"Wagons East\" was a big disappointment for me....\n It seems that some viewers assume that the onl...\n Now this film isn't going to scare anyone, but...\n I must admit, I was one of the skeptics who pr...\n Though I saw this movie dubbed in French, so I...\n Where to begin? How best to describe just how ...\n This is cult stuff. My friends and I get toget...\n Even the trailer for this movie makes me cry, ...\n Just Go see this movie. It taps into everythin...\n ... Brian? what the hell were you *on* when yo...\n Yes. Bam cried a couple times and so did Englu...\n I screamed my head off because seeing this mov...\n i guess if they are not brother this film will...\n Glenn Ford, a New York boy who has been saving...\n Think of this film as fan service, a wet dream...\n I was not old enough to really appreciate the ...\n I love this film. Shehzad Khan's portrayal as ...\n While not as bad as it has been made to be (I ...\n Film critics of the world, I apologize. It is ...\n THE DEATH COLLECTOR is truly a wonderful film....\n For some inexplicable reason, Jerry's movies o...\n I was looking forward to watching this film an...\n The Only Kung Fu Epic worth watching. The best...\n Err...this movie sucked. A LOT.<br /><br />I h...\n This is one of the most brilliant movies that ...\n If you're in the mood to laugh at a truly bad ...\n Peter Sellers (one of my favorite actors) is m...\n What is interesting is that the acting; was no...\n Babs Johnson (Divine) lives in a trailer with ...\n Now i really liked this movie, it was so funny...\n While caricatures and/or references to enterta...\n This should not have been listed as a Colombo ...\n Anna (Charlotte Burke) develops a strange feve...\n Agustus and Call really did Nothing? Why are t...\n I jumped at the chance to view this movie uncu...\n This is an evocative and idealized portrait of...\n What will be Prospero in the twentieth century...\n I hated the book. A guy meets a smart dog, get...\n OK so after watching this invigorating movie a...\n The first one was different and funny. This at...\n First, the positives: an excellent job at depi...\n This film, The Alamo:Thirteen Days to Glory, i...\n William S. Hart (as Jim Treen), the most eligi...\n I never heard of Mishima before I watched this...\n POSSIBLE SPOILER - In some way \"How to Alienat...\n I saw this film on September 1st, 2005 in Indi...\n SPOILERS Edgar Rice Burroughs's famous charact...\n I wanted to watch this, to get a inside look a...\n people, get a clue! I mean, the writers dont h...\n Just got out of an advance screening, and wow ...\n \"Batman: The Mystery of the Batwoman\" is about...\n Michael Caine usually appears in either very g...\n Craig Brewer is now officially a writer/direct...\n I hope the viewer who regards 'Dream Machine' ...\n As you may remember I have seem all three of t...\n I love watching Australian movies but this ste...\n Hey, its great not to have to wait for the nex...\n When it comes to political movies I usually co...\n I have never posted a review before, but I had...\n I saw this originally on Channel 4 (UK) and it...\n As with some of the best films and series, I s...\n I remember I saw this cartoon when I was 6 or ...\n I don't know why this conduct was ever tolerat...\n Nothing short of magnificent photography/cinem...\n \"The Core\" meets \"Crack in the World\" (1965 ma...\n If Christopher Nolan had made Memento before F...\n Brad Pitt sticks his index finger in Diane Kru...\n I first read about the Left Behind series a fe...\n Celia Johnson is good as the Nurse. Michael Ho...\n I saw this film on television and fascinated b...\n What starts out as generational conflict in th...\n \"The Vindicator\" is a weird little Canadian B-...\n To my surprise I quite enjoyed 'Spacecamp', i ...\n Sure, Titanic was a good movie, the first time...\n This movie is a remake of two movies that were...\n *THIS REVIEW MAY CONTAIN SPOILERS... OR MAYBE ...\n I like this episode quite a bit, Ruth Gordon i...\n Oh what a disappointment this movie is. I can'...\n A trooper is on the side of the road making su...\n Is this the movie??? Is this what Indians are ...\n Suzumiya Haruhi no yûutsu (The Melancholy of H...\n I've always loved \"Gone With The Wind\" and hav...\n Evil Aliens owes a huge debt to Peter Jacksons...\n \"We're both stumbling around together in this ...\n I just watched this movie for the first time a...\n The plot has something about white hunters cap...\n I did not have too much interest in watching T...\n Director Fabio Barreto got a strange Academy N...\n A priest who has abandoned his ministry meets ...\n Lifeforce starts in outer space where the HMS ...\n A Bugs Life is a great film that is not just f...\n Two things are always signs that you`re going ...\n Saw this film the first time in 1953 with my o...\n Just watched the film for the 3rd time and enj...\n I totally agree that the reenactments kill wha...\n The first five minutes of this movie showed po...\n First of all, the big named actors must need t...\n This film was made thirteen years before I was...\n Thank God for DVR and the high speed of it's f...\n She's not Michael Jordan<br /><br />Think of a...\n I do not see what is the whole deal about this...\n I was really stunned how much a film, that's o...\n Solo starts as a team of US soldiers go into S...\n I stumbled upon this movie by chance. I was tr...\n Not sure why this movie seems to have gotten s...\n \"Cleo's Second Husband\" is an amateurish attem...\n \"Whipped\" is 82 minutes long. This review is 8...\n **May Contain Spoilers**<br /><br />A luckless...\n I just viewed MURDER AT THE VANITIES in the ne...\n Stay away from this movie. Far away. Phil Fond...\n Lois Weber, self proclaimed missionary via the...\n The Bible teaches us that the love of money is...\n This movie describes a truly horrific event, t...\n This movie shocked me. It was so realistic and...\n Despite decades of tax incentives, in terms of...\n This movie took the Jerry Springer approach to...\n This was truly horrible. Bad acting, bad writi...\n This is not a horror film, but a boring sex mo...\n I recall seeing this film on TV some years ago...\n If you like horror movies with lots of blood a...\n My interpretation is that the term 'distant' i...\n I am, as many are, a fan of Tony Scott films. ...\n The movie is an adaptation of a Japanese story...\n I'm surprised by some of the comments on this ...\n Unbelievable!<br /><br />this film gets a 7 ou...\n To be completely honest, I completely intrigue...\n This was the second of three films that Irving...\n Well, I would consider Police Story as one of ...\n and abysmal, over-the-top acting, you might en...\n The actors are so bland that it's almost impos...\n This film has got to be ranked as one of the m...\n I had the greatest enthusiasm going in to the ...\n Johnny Crawford is great in this movie of a tr...\n One of my favorites. As a child, growing up in...\n When a Stranger Calls belongs to the group of ...\n I saw this last night at the Tribeca Film Fest...\n Castle in the sky is undoubtedly a Hayao Miyaz...\n The number of times I've had tears in my eyes ...\n I can tell by the other comments that NOBODY c...\n This film is so bad. I mean, who commissions t...\n Elvis Presley plays a \"half-breed\" Native Amer...\n Well, first off, the twins are exactly the sam...\n All I can say about this movie, is it is absol...\n Some might remember if having seen the film Ju...\n GREAT, Chris Diamantopoulos has got to be the ...\n It's reassuring to see that other IMDb reviewe...\n This movie is kind of good. It seem that they ...\n First of I should point out that I used to lov...\n Welcome to the world of Vikram Bhatt, the man ...\n I really don't have any complaints about this ...\n This movie definitely shows something and shed...\n I'm here again in your local shopping mall (of...\n The second (not animated) movie about the only...\n If only ALL animation was this great. This fil...\n This movie is very great! The acting is fine, ...\n Methinks the best screen version of Quo Vadis?...\n This is a story about Shin-ae, who moves to Mi...\n What I found so curious about this film--I saw...\n Shame is rather unique as a war film (or rathe...\n Footprints certainly isn't your average run of...\n o dear god i suffered having to watch this fil...\n I felt compelled to give some feedback on this...\n After having seen \"Marrying Mafia\", I'd nearly...\n ...this one. What came to my mind immediately ...\n October Sky is a highly lauded movie, and it¡¦...\n Well I gave this movie a 7. It was better than...\n Though structured totally different from the b...\n Jeff Leroy wanted to makes fun of Scientology ...\n This is the first James Cagney film I have eve...\n This is unfortunately Carlin's last recorded H...\n I´m not surprised that even cowgirls get the b...\n Right up (or down) there with Toys and Jurassi...\n Forget the fact that most people expect an act...\n I rented a copy of this one from Netflix -- bi...\n In ten words or less to describe this film, Ba...\n And now for another point of view: I didn't li...\n Although at times I was the only one in the ci...\n Hope Floats with Sandra Bullock is a real disa...\n Paul Verhoeven (genius and master film maker) ...\n Not only do the storylines in \"The Sopranos\" e...\n Why on earth should you explore the mesmerizin...\n I've seen better teenage werewolf movies in my...\n probably the best horror movie in 5 years.. th...\n This impossible tale is of a female witch purs...\n \"The Woman in Black\" is easily one of the cree...\n First off, I am critical of this movie because...\n 14 years since this show was made and it is st...\n Recap: A band of five young American men, all ...\n Walter Matthau is wonderful as the \"philanderi...\n It's probably a year since I saw Uzak, but it ...\n When I noticed that \"Hamish Macbeth\" was being...\n 1st watched 7/29/2001 - 4 out of 10 (Dir-Mark ...\n Haven't played the game? Don't bother. This is...\n Of all Arnold's mid-'80s movies who would have...\n I went in to see D-War on a whim and with very...\n Basically, this movie is one of those rare mov...\n This short is a puzzlement. Words fail me here...\n My mom and I went to the Ft Worth Premiere mai...\n This is a great example of what happened at Co...\n I want to state first that I am a Christian (a...\n \"The Shop Around the Corner\" is one of the gre...\n Surely one of the mysteries of the modern worl...\n Gene Roddenberry never let his fans down. His ...\n Let's be fair: there are no RULES for scriptwr...\n Some 25 year olds behave like teenagers, copin...\n I thought this movie was brilliant. It was so ...\n New York attorney plots to rid himself of his ...\n One can only hope that there are many times wh...\n This was recently on AMC's vibrant movie class...\n Clocking in at an interminable three hours and...\n Yes, my summary just about tells it all.<br />...\n Director / writer Michael Winner's feature is ...\n I've seen this film in avant-premiere at Imagi...\n Shintarô Katsu, who played the blind swordsman...\n An interesting concept turned into carnage...<...\n OK, I know that a lot of people will probably ...\n This movie kind of reminds me of A Mary-Kate a...\n I have always been a fan of Bottom, grabbing a...\n I just realized why the colors and sets in \"Sa...\n I am probably one of the few viewers who would...\n I really like the movie's opening, when Col. T...\n You know the old saw about a train wreck? The ...\n This one and the one prior \"Toulon's Revenge\" ...\n John Cusack stars as Hoops in this silly littl...\n It's quite revealing to see this today and app...\n This movie contains the worst acting performan...\n Let me start by saying that Liev has gained a ...\n OK, Chuck Norris has shown up in many an enter...\n Hilarious film about divine retribution. Camer...\n To me, \"Anatomie\" is certainly one of the bett...\n Steven Segal's movie career is a tribute to ho...\n This rendition of \"Noah's Ark\" has set Hallmar...\n This movie was awful. I had a very difficult t...\n Reading the various external reviews of Roger ...\n Very slick, very Pre-Hays Code, and still very...\n This movie is a waste of time and money. Throu...\n A VERY un-Tom and Jerry short. Jerry narrates ...\n the author of the book, by the same title, sho...\n This movie was incredible. I would recommend i...\n Magnificent, original, beautiful movie. The ac...\n This movie had so much potential. Anyone who f...\n If the creators of this film had made any atte...\n I watched Princess of the Nile for the first t...\n \"All the world's a stage and its people actors...\n Yes, this movie has kids going to space camp a...\n One of Disney's best films that I can enjoy wa...\n Robert Downey Jr. in a 17th century wig and dr...\n One of my favorite westerns and one of John Fo...\n for a slasher flick,this movie is actually bet...\n \"Babette's Feast\" and \"The Horse's Mouth\" are ...\n In order to enjoy 'Fur - An imaginary portrait...\n This is certainly the worst movie i ever saw? ...\n Surface was awesome, I don't know how many Mon...\n If there's one thing that annoys me most in se...\n Nazarin by the acclaimed surrealist Bunuel is ...\n I saw this as a kid, before it had been yanked...\n Dude...I liked Buffy and Angel as much as the ...\n Sensitive film does lack brilliance and, to so...\n With this movie I was really hoping that the i...\n The saddest thing about this film is that only...\n This is about one of the worst movies I'd ever...\n This movie consists of such great emotion espe...\n This is a very rare film and probably the leas...\n The Wooden Horse is a very clever movie about ...\n Running Out of Time rests somewhere in the mid...\n I have grown up pouring over the intertwined s...\n I caught this movie on the Sundance Channel on...\n Michael Radford, the director of \"The Merchant...\n This short subject gathered kudos from all kin...\n This was a waste of 75 minutes of my life. The...\n I still have grainy, late night, no-cable, che...\n I saw this film earlier today, and I was amaze...\n There is only one reason to watch this movie i...\n Just what we need! Another remake of vintage H...\n As far as fake documentaries go (fakumentaries...\n I loved All Dogs go to Heaven so much that I w...\n This show has come so far. At first EVERYONE i...\n Based on the comments made so far, everyone se...\n I had the unlucky experience of stumbling upon...\n Chris Nolan's labyrinth like noir about voyeur...\n I found the characters mediocre and the story ...\n When this movie first came out back in 1984, P...\n First of all, I wasn't sure who this film was ...\n I can't tell you all how much I love this movi...\n \"The Buddy Holly Story\" shows the famous singe...\n I took my 10-year-old daughter to see Nancy Dr...\n Another in the they don't make em like that ca...\n HAH! So this is the movie that the \"Next Actio...\n This was a surprisingly very good movie, and a...\n 'Bland' is probably the word I'd use to try an...\n The biggest and most disconcerting things of t...\n An RKO Short Subject.<br /><br />A group of ro...\n What a great word \"re-imagining\" is. Isn't tha...\n For me, the Tempest and its characters (by whi...\n A recent viewing of THAT'S ENTERTAINMENT has g...\n I think the film is educational. However, it f...\n This movie was recommended to me so we went to...\n That 70s Show is the best TV show ever, period...\n For us, an Abbott and Costello movie is someth...\n This was without a doubt the worst movie I hav...\n A clever overall story/location for a story. A...\n A tour deforce! OK the kid that plays Oliver i...\n For all of the hype about this film, I kept an...\n I wanted to see Valentine ever since I saw tha...\n The Godfather Part I was a stunning look insid...\n Slaughter High the tale of revenge by a nerdy ...\n Jack Frost 2 is out of the question, I'm actua...\n Chan is in New York and he gets involved with ...\n I recently saw this at the 2007 Palm Springs I...\n I saw this film when it first came out, and di...\n Adrian Pasdar is excellent is this film. He ma...\n This film, had it been done properly, has SO m...\n How many more of those fake \"slice of life\" mo...\n As I am always looking for something new and u...\n The choice to make this SNL skit into a movie ...\n Barbra Streisand in 1964 was still a curiosity...\n This film gets off to a bad start. An incredib...\n This movie was really bad. I mean really reall...\n Cannon pulled off a real visual beauty of a me...\n Sherlock Holmes and the Secret Weapon starts i...\n Never viewed this 1971 film and was greatly en...\n The Brighton has a traumatic drama in the brea...\n 8 days no script that's what the DVD tells you...\n Blind Date (Columbia Pictures, 1934), was a de...\n OK. I admit. I'm one of those nerds who have s...\n Tweaked a little bit, 'Nothing' could be a chi...\n I have looked forward to seeing this since I f...\n The Adventures of Hercules has to be one of th...\n Ray Liotta and Tom Hulce shine in this sterlin...\n Let me say first of all that I spent a total o...\n In a poor village in Mexico, the Colonel (Fern...\n Guy Kibbee gives the viewer a lot of laughs. L...\n One of those movies where you take bets on who...\n This has to be the cheapest film made in 21st ...\n The only reason I gave this movie a 2 and not ...\n -Kidnappings in Mexico are as common as honeys...\n The early films of the Dead End Kids (before t...\n The photography on the DVD is so dark I though...\n I also joined IMDB for the sole purpose of com...\n Young couple on the road, minding their own bu...\n Family is about two families who are after eac...\n A wonderful film - a charming, quirky family s...\n This movie was amazing. Never before have I se...\n For Urban Cowboy John Travolta plays one of th...\n \"Hari om\" is an Indian greeting and the compel...\n If you like The Three Stooges you'll undoubted...\n I saw this movie way back at the first theatri...\n Jesus Christ, I can't believe I've wasted my t...\n Poorly cast, terrible script full of holes, ho...\n The second in director Cohen's trilogy of Seco...\n Well, I can safely say I'm human, Wong. And I ...\n ... This isn't the first time Stanley blurred ...\n This movie brings back many memories of the cl...\n Well no, I tell a lie, this is in fact not the...\n Spinal Tap was funny because if you knew a lit...\n Distasteful, cliched thriller has young couple...\n I was very moved by the young life experiences...\n This was an excellent movie - fast-paced, well...\n \"Closet Land\" tells a powerful story and has m...\n I participate in a Filmmaker's Symposium, and ...\n Terrible film made on a budget of about $9.99....\n Victor McLaglen, the title character of John F...\n The End Of Suburbia (TEOS) is a very useful fi...\n Kiera Nightly moved straight from the P&P set ...\n Aside from the fact that the women in the film...\n If a more masterful adaptation than this one e...\n the one and only season has just aired here in...\n I don't give much credence to AIDS conspiracy ...\n In 1895, in a small village in Japan, the wife...\n I saw this movie when it was new. Later I rent...\n I have read the whole 'A wrinkle in time' book...\n Anyone can make a movie these days. Budget, pr...\n The Derek's have over the 1980s produced a few...\n This is your typical cheerful and colorful MGM...\n The phenomenon Helge Schneider defies easy des...\n Two thirds of nearly 2,000 IMDb users who have...\n This is a student film and it's a piece of cra...\n There's something intriguing about disaster mo...\n Well, I got and saw this movie based on the ra...\n I can't add much to what has been said already...\n Possibly the worst movie I have ever seen. Pat...\n Tyrone Power was cast in the lead as Solomon. ...\n World War I gets a glossy, sepia-tinted makeov...\n This is a very beautiful and almost meditative...\n Jacqueline Hyde starts like any other normal d...\n Honore De Balzac's genuinely bizarre short sto...\n This is quite possibly the worst film I have e...\n Police story brought Hong Kong movies to moder...\n After a very disappointing Part 3, I kinda won...\n At least with the teenage geek gets the girl f...\n The animation is great, I'll concede to that. ...\n Was really looking forward to seeing a continu...\n The biggest problem with this film is that it'...\n \"Radiofreccia\" is still a good surprise in Ita...\n Blackwater Valley Exorcism is set on a small t...\n I'm totally surprised by some of the comments ...\n This is a movie from Toilet Pictures. If the n...\n it's a great movie for the whole family. i don...\n The ultimate gritty heist film. Elements of Bo...\n I'm sure that any legitimate submariner would ...\n There are frames in this film that could be Re...\n This was a very funny movie, not Oscar-worthy,...\n Four tales of terror regarding the events at a...\n From a plot and movement standpoint, this movi...\n I thought this movie was awful. I understand i...\n Alistair Simms is a wonder in this. He makes s...\n There is a reason why this made for British TV...\n 'The 4th Floor' is a decidedly mediocre film s...\n A family moves into a old house in Japan. But ...\n Arthur Miller has always been known as one of ...\n Hardware Wars rips off EVERYTHING in Star Wars...\n What a fun movie St. Ives is. It reminds me of...\n What I liked best about this flick was the cha...\n I was so excited to see the cast in this movie...\n This film has the worst editing I've ever seen...\n The Tooth Fairy is about the ghost of an old d...\n There is no doubt that this film has an impres...\n Inexplicably, I watched this movie for the ver...\n I agree with most if not all of the previous c...\n I'll be honest- the reason I rented this movie...\n The often-reliable Leonard Maltin says this is...\n First time of seeing Buster Keaton's first fea...\n For a movie I was really looking forward to, I...\n I saw this movie the other night. I can't even...\n First saw this gem from Joe Sarno way back whe...\n Here's why the Jane Show won't work. Once agai...\n Business vs. personal conviction. Profit vs. a...\n The fight scenes play like slow-motion Jackie ...\n This is a made-for-TV and rather needless Sci-...\n I saw The D's new film tonight at a special ad...\n This movie is about this wimpy guy who decides...\n Oh my lord, what were they thinking about with...\n Recovery is an incredibly moving piece of work...\n Centered in the downtown and out skirts of Det...\n It is great to see a film starring kids whose ...\n Crimson begins with some cool jazzy music so I...\n If you're not a fan of the 80s, and you need t...\n The movie starts little cute. There are a numb...\n I could never stand watching Happy Days after ...\n Being Of Cephallonian descent, I was happily s...\n when i sat down to watch this movie i thought ...\n As a massive fan of fantasy in general, and of...\n I am not sure why I like Dolph Lundgren. I gue...\n Somehow they summed up the 60's, ten years tha...\n Not every movie with lesbian chicks and vampir...\n This is the final episode we deserved. At the ...\n At one time `Buddy Cop' movies ruled the box o...\n this movie is honestly the worst piece of rubb...\n Skippy from Family Ties goes from clean-cut to...\n \"Proximity\" tells of a convict (Lowe) who thin...\n Simply beautiful. One of the best mind-- umm.....\n This is the kind of film that, if it were made...\n William Powell is Philo Vance in \"The Kennel M...\n Too bad Chuck Norris has gone to TV. He made s...\n This sure is one comedy I'm not likely to forg...\n Johnny Knoxville and the boys of Jackass go ov...\n Henri Verneuil's film may be not so famous as ...\n You can never have seen either film and still ...\n Notwithstanding that \"The House of Adam\" is me...\n One of the serious potential environmental cos...\n This film was terrible. OK, my favourite film ...\n The 1990's begun to have day time talk shows s...\n Well, you'd better if you plan on sitting thro...\n I love old \"monster movies\" for the pure camp ...\n A powerful adaptation of the best-selling book...\n This focuses around the lives of four women, a...\n While I can't say whether or not Larry Hama ev...\n I literally fell asleep 3 times watching this ...\n No real plot to this one, just a series of sho...\n Yes, bad acting isn't only one thing to mentio...\n Okay, I grew up on Who, but haven't loved a Do...\n I don't know why, but i thought i've seen this...\n I've read a lot of reviews on the IMDb (well, ...\n I was so disgusted by this film, I felt obliga...\n Of so many excellent and so on in Nevskiy, one...\n The arrival of vast waves of white settlers in...\n Predictable, told a thousand times story with ...\n This romantic adventure must have seemed shock...\n This movie really deserves the MST3K treatment...\n <-----Minor Spoilers!-----><br /><br />A woman...\n Saw this at the Hong Kong International Film F...\n Absolutely horrific film. Ameteurish and it is...\n This movie is about development. People growin...\n This movie had all the elements to be a smart,...\n This movie was hysterical. I haven't laughed t...\n I am a huge fan of big, loud, trashy, complete...\n A talented high school graduating senior with ...\n This movie is a touching story about an advent...\n i two came home from school fast as i could to...\n This film is a flagrant rip-off of one of the ...\n If you're a sane person and you have seen film...\n ...except for Jon Heder. This guy tanked the e...\n Many consider BEAST STABLE to be the last of t...\n The only reason I DVRd this movie was because ...\n Perfect for families with small children who a...\n I found myself getting increasingly angry as t...\n \"The James Dean Story\" is introduced as \"A dif...\n Now I remember what the 'indie' filmmakers wer...\n I am afraid I will have to add my name to the ...\n I have just watched the whole 6 episodes on DV...\n This movie is plain fun.I has nothing to do wi...\n When I was a kid we always used to be babysat,...\n Like TALK RADIO, THE BOOTH is actually kinda p...\n Released at a time when Duvivier was going aga...\n This film was a yawn from titles to credits, i...\n Except people apparently buy into this garbage...\n Motorama viewers should already by keen on oth...\n The penultimate collaboration between director...\n Let me just start out by saying that Tourist T...\n Two people living in the same flat complex fin...\n First of all, f117 is not high tech any more a...\n This is one of the best episode from the secon...\n Reba sucks. It sucks hard. It's about this awf...\n New York family is the last in their neighborh...\n I gather at least a few people watched it on S...\n I have to admit that for the first half hour o...\n The novelty of hearing clean-cut Jay Leno spou...\n Being the prototype of the classical Errol Fly...\n Yes, dumb is the word for this actress. I know...\n With the runaway success of \"God's Army\", ever...\n The recent DVD release of Good Humor Man label...\n William Faulkner was one of the American write...\n First of all i'd just like to say this movie r...\n The Happiest Days of Your Life showcases some ...\n Eghads, what a bad movie. Tart is perhaps the ...\n I could almost wish this movie had not been ma...\n What a waste of precious time! My 5-year-old d...\n this film explores if not creates a whole new ...\n When \"The Net\" was first being advertised, the...\n This is the first film I've watched from the I...\n I am a Christian, and thought this movie was p...\n An American in Paris is a showcase of Gene Kel...\n I was hoping this would be a good weekly vehic...\n The film starts to slowly when we got to the c...\n I'm at this very moment debating whether I sho...\n Seriously, I don't understand how Justin Long ...\n I'd really, really wanted to see this movie, a...\n If you like soap-series, you might like this f...\n I think that if I went to a first school somew...\n I rented I AM CURIOUS-YELLOW from my video sto...\n (spoilers)<br /><br />I shoulda figured. The d...\n As a former 2 time Okinawan Karate world champ...\n WOW, this movie was so horrible. I'm so glad i...\n This is just about the WORST piece of garbage ...\n I am SURE there is some sort of IMDB cult that...\n Here's yet another movie with dysfunctional le...\n \"Erendira\" is a film from Mexico that is rarel...\n I watched this movie in 75 and this movie was ...\n The Hell's Angels did come out the losers in t...\n Blind Spot's images are great. The action draw...\n Rarely does a film capture such intense drama ...\n Loved Joan. Great performance. What isn't she ...\n This is a really dumb movie. It could be fun w...\n After an anonymous phone call about a spacecra...\n \"From C. Jay Cox, the writer of the hit comedy...\n Story says that on that on December 28, 1895, ...\n Tarentino should be ashamed to be involved wit...\n I found it hard to like anyone in this film. T...\n I just saw this film at the Sidewalk Film Fest...\n Maybe it was the fact that I saw Spider-man th...\n Quote: theurgist: Anyone with an I.Q. over 50 ...\n Don't get me wrong , I want to see marijuana l...\n Me being one was probably having a brain fart ...\n The following are some of the most blaring pro...\n After stabbing a retarded boy, the fifteen yea...\n Not even original in the plot. Ho hum. There w...\n Dr Tarr's Torture Dungeon is about a journalis...\n I normally love Jackie Chan movies but this on...\n I had the TV on for a white noise companion an...\n Was it really necessary to include embarrassin...\n This is the essence of the early eighties! The...\n \"Scary Movie 2\" is a let down to the Scary Mov...\n (Spoilers galore) This is an absolutely awful ...\n I`m in two minds about FOLLOWING , the film de...\n I had started to lose my faith in films of rec...\n When I first viewed the trailer,I have to deci...\n Robert Cummings, Laraine Day and Jean Muir sta...\n A squashy slapstick mess posing as a comedy. E...\n I just saw this film last night in the 2006 Tr...\n Because that's all she does through out this w...\n Excellent plot line makes this movie one of th...\n \"Show me your boobies!\" is not funny, and cert...\n This was my first introduction to the world of...\n Says Andy: \"Nobody gets hurt, everybody wins.\"...\n About 20 minutes into this lame excuse for a m...\n I'm a fan of Crash and Blade Runner and this m...\n This film would usually classify as the worst ...\n You got to see it to believe it. Shot in Holly...\n I don't watch soaps. My grandmother still watc...\n This is an oft-used line, but it really sums u...\n If there's one cartoon that helped to put UPA ...\n There wasn't a day in 2002 where i wasn't chas...\n The marriage of an upscale New York City coupl...\n I don't know what neighborhoods the folks who ...\n As Peckinpah did with STRAW DOGS, and Kubrick ...\n Opera opens with a very close-up shot of a bir...\n Okay, let me start off by saying that nothing ...\n My family truly enjoyed this movie. As far as ...\n Chris Noth plays a maniac who wrote a children...\n The only positive thing I can think of regardi...\n I rented this movie when it came out on video ...\n The title of this film nearly put me off watch...\n Hello again, I have to comment on this wonderf...\n i was flipping through the channels and had to...\n I have just lost three hours of my life to thi...\n I have zero interest rap and in ghetto culture...\n Joseph L. Mankiewicz's Sleuth didn't need a re...\n I say 'I'd figure' in that line because, frank...\n 'A New Generation' is the third Amityville ent...\n an awesome made for the sci-fi channel movie w...\n THE NIGHT EVELYN CAME OUT OF THE GRAVE (Emilio...\n Mr. Blandings Builds His Dream House may be th...\n I saw the film tonight at a free preview scree...\n Soylent Green is a classic. I have been waitin...\n This is just horrible, really horrible trash. ...\n Robert Urich was a fine actor, and he makes th...\n ------ Spoilers----- Spoilers----- Spoilers---...\n Formula flick of guy who wants girl, guy who w...\n God, did I hate this movie! I saw it at a snea...\n The hilarious team that brought you 'CNNNN' an...\n Stumbled over this film on Amazon.com. Had nev...\n If I only had one camera that was accidentally...\n Heh, if I tell you to compare The Dark Knight ...\n Here is one of those educational short films m...\n I haven't yet read the Kurt Vonnegut book this...\n Someone commented that Charlie Sheen's charact...\n Like most people, i was drawn to buy this film...\n A beautiful film.John Garfield's character is ...\n Being a fan of ZaSu Pitts comedies, I thought ...\n I don't think I have ever seen a better movie ...\n OK...before I even start the more or less cons...\n I loved watching ''Sea Hunt '' back in the day...\n I think this is one of the best tamil movies i...\n This is just plain bad. Sometimes remakes, eve...\n After seeing the 'oh so acclaimed' Fargo and t...\n An American in Paris was, in many ways, the ul...\n This wasn't all that great. Not terrible or ha...\n This film was so amateurish I could hardly bel...\n Found this movie in a rental store. Never hear...\n This is a Frank Loesser masterpiece of amusing...\n The superb star quality of Gerard Philipe, who...\n and it's only January, still I'm sure of it!<b...\n Just a regular Jason lee movie, There were som...\n Tony Hawk Underground came at a point where th...\n Ok, if you like yer monster moovies sullen, st...\n I didn't expect much from the movie so am not ...\n When this movie firt came out in 1995, I found...\n Seriously crappy movie.<br /><br />First off, ...\n Just saw a pre-screening tonight. What can I s...\n This film has been scaring me since the first ...\n Not having heard of this film, it came as a su...\n This was something I had been looking forward ...\n A wonderful, free flowing, often lyrical film ...\n I only watched this because it was directed by...\n What a cast...and what a waste of it. Seriousl...\n One of the better Vance films succeeds more on...\n The American Humane Association, which is the ...\n French film directors continue to amaze with t...\n I was lucky enough to see Zero Day last night....\n Warning: Herzog is a filmaker, and as such ten...\n Duchess and her three kittens are enjoying the...\n This was a real let down for me. The original ...\n The Three Stooges in a feature length western ...\n God! Zorro has been the the subject of about a...\n This film stars Peter Lorre as an exceptionall...\n I couldn't believe it when I put this movie in...\n I am probably one of the few who actually read...\n Frankie Darro was a wonderful child actor who ...\n This movie, although well shot and superbly ac...\n This was the worst movie I have ever seen. I h...\n Usually when a movie receives a vote of one it...\n i was greatly moved when i watched the movie.h...\n Just watched this on DVD three times - Once th...\n There is an endless supply of trashy horror mo...\n \"Mad Dog Time\"...\"Trigger Happy\" whatever you ...\n In my years of attending film festivals, I hav...\n In \"Hoot\", Mullet Fingers is engaging in sabot...\n Or maybe not. Whatever anyone thinks of \"Broad...\n The author of \"Nekromantik\", Jörg Buttgereit's...\n \"The Matador\" is a dark comedy starring Pierce...\n About the only thing I liked about this film i...\n \"Garden State\" is another of these \"indie\"-typ...\n ET's obsession with Dannielynn Smith is despic...\n As this movie unfolds you start to feel the co...\n I gave it an 8 only because it had received su...\n For all losers who gave it negative review,its...\n The only reason I saw this movie was for Jimmy...\n Sam Kleinman (Peter Falk) comes to his son's p...\n I caught \"Sorrows Lost\" at the New York Film a...\n Here is a movie that was so pedestrian for 90%...\n I also viewed this film at the Santa Barbara F...\n The French Naudet brothers did something nobod...\n For those unfamiliar with Paddy Chayefsky, thi...\n Well this is a typical \"straight to the toilet...\n A very credible and unsettling movie portrayin...\n I almost didn't rent this because of all the b...\n Frankly, after Cotton club and Unfaithful, it ...\n This is one of those movies you think that the...\n As a \"rebuttle\" of sorts to the AFI's top 100 ...\n I enjoyed Carax's \"Les Amants du Pont Neuf\" an...\n I thought it was weird and just gory, not scar...\n I saw this movie about a year ago, and found i...\n Henry Fool is a better film. But this is the p...\n Hollywood does it again. Lots of money, no cre...\n I should have trusted my instincts better: No ...\n This film looked promising but it was actually...\n Not a terrible film -- my 10 year old boy love...\n LOL! Not a bad way to start it. I thought this...\n This is definitely a \"lesser known\" comedy sho...\n The two things are are good about this film ar...\n The super sexy B movie actress has another bit...\n This film is so ridiculously idiot that you ma...\n Given the title, this first follow-up to QUART...\n What can you say about this movie? It was not ...\n Saw this in the theater in '86 and fell out of...\n Yet again, I appear to be the only person on p...\n The movie is basically a boring string of appa...\n Ah, a Kelly/Sinatra sailor-suit musical. So fa...\n Sudden Impact is the best of the five Dirty Ha...\n I had the misfortune to watch this last night ...\n In this episode, a man and his dog go 'coon hu...\n Let me begin by saying that I adore the book a...\n This is a formula B science fiction movie, and...\n Its gonna be hard to make this fill 10 lines.....\n When a man who doesn't have Alzheimer's can't ...\n I studied Charlotte Bronte's novel in high sch...\n Outragously entertaining period piece set in t...\n So many wonderful actresses in one film serve ...\n I was referred to this movie by a friend. I ha...\n \"Electra Glide in Blue\" is a slow moving B-fli...\n The biggest mystery of Veronica Mars is not on...\n This is an excellent but hard to find trippy W...\n Shakalaka Boom Boom is a rip off from the movi...\n \"The Screaming Skull\" opens with a warning and...\n Shame, is a Swedish film in Swedish with Engli...\n .....and it's a good one, too. In fact, this m...\n I normally don't comment on movies on IMDB, bu...\n There was a lot about Little Vera that was str...\n There is a clever little scene in The Karen Ca...\n Great movie -I loved it. Great editing and use...\n -The movie tells the tale of a prince whose li...\n Well it certainly stunned me - I can not belie...\n This film made for French TV deals with the tr...\n I saw this film when it was released to the mi...\n I had my reservations about watching The Retur...\n Movies about dinosaurs can be entertaining. So...\n If regarded as an independent feature I can't ...\n This picture came out in 1975 and it was the s...\n Road to Perdition, a movie undeservedly overlo...\n Trite and unoriginal. It's like someone watche...\n Takashi Miike's incursion into kiddie territor...\n One reasons why they call the 80's, \"The Aweso...\n James Cagney (The Yankee Doodle Dandy Boy) was...\n \"Yokai Daisenso\" is a children's film by Takas...\n It's about time we see a movie that stays unbi...\n The Color Purple is about the struggles of lif...\n Peter Watkins' rarely seen Punishment Park is ...\n Dudley Moore is fantastic in this largley unkn...\n Although I didn't like Stanley & Iris tremendo...\n Don't get me wrong, I love action and revenge ...\n The movie concerns about Philip(Leslie Howard)...\n Scoop *** out of **** Woody Allen is definitel...\n If you are planning to watch 'Partner' and are...\n This is one of the best action films I have se...\n As is often the case, films about self-loathin...\n An unfunny, unworthy picture which is an undes...\n This film reminded me of The Sopranos, and not...\n I recently stumbled across a TV showing of \"Pa...\n No doubt intended as a totally campy joke, \"Fu...\n So-so thriller starring Brad Pitt and Juliette...\n Describing Stalingrad as a war film may be a b...\n Devil's Experiment: 1/10: Hardcore porn films ...\n Composed, elegant Carol (marvelously played by...\n No, there is another !<br /><br />Because ever...\n I absolutely love this show, but I saw the sec...\n I have never watched a movie that frustrated m...\n I have not yet seen anyone slate this film and...\n The final entry in the On The Buses trilogy se...\n \"Broken Bow\" takes us back to where it all beg...\n The old axiom that bored people are boring peo...\n I love comedies and I love independent films, ...\n The reason the DVD releases of this film are i...\n Du rififi chez les hommes is a brilliant film ...\n AristoCats is such a terrific Disney classic t...\n I saw this film at a small screening. Even tho...\n For those who loved \"Wayne's World\"...\"The Blu...\n Great movie! oh yeah! Full of energy, full of ...\n Saw this movie when it first came out in the 1...\n Personally I've watched it because of Lea Thom...\n Smallville episode Justice is the best episode...\n This film had my heart pounding. The acting wa...\n A prequel to the re-imagined Battlestar Galact...\n It's getting worse, the series is on a serious...\n First time I ever saw this was at a friends ho...\n Thunderbirds (2004) <br /><br />Director: Jona...\n This movie pleasantly surprised me. It has a t...\n This has got to be the worst horror movie I ha...\n When a friend and I saw this in the recent rel...\n Inspired at least a little by Ivy Benson & Her...\n \"In the Mood for Love\" a teasing allegory of l...\n i've heard a lot about the inventive camera-wo...\n Manhattan apartment dwellers have to put up wi...\n Where do I start? Per the title of this film I...\n First I have to admit that I have had some dou...\n I really didn't like this film. The plot was v...\n This movie is the funniest danish movie I've e...\n The Railway Children is perhaps my favorite fi...\n OMG this was the most painful experience of my...\n The Hand of Death aka Countdown in Kung Fu (19...\n I guess the previous \"House\" movie was a hit, ...\n This Bravo special is one of the most purely e...\n When you're making a thriller about witchcraft...\n People who know me say I have a weakness for a...\n During my teens or should I say prime time I w...\n Contrary to the comment posted directly below,...\n Disappointing heist movie indeed, I was actual...\n Another enjoyable Warner flick. I really liked...\n The only good thing about Persepolis is the sh...\n A young girl surviving as a prostitute.<br /><...\n Horrible ending - and I can't believe Moore sp...\n The worst thing I have ever watch.<br /><br />...\n The guy mentioned to sue for the 1.5 hours was...\n This is the first American film to successfull...\n BIG FAT LIAR, in my opinion, is an absolutely ...\n The premise of the movie had much going for it...\n Reed Diamond plays a man suffering from amnesi...\n This is by far the worst horror/thriller I've ...\n Recovery is a well-judged and balanced drama o...\n Rather than go on location and make a realisti...\n First of all, I would like to clarify that I c...\n Being that this movie has a lot of fine entert...\n The Ghost Walks is a nifty little mystery with...\n I am no Ebert. What I am is a compassionate an...\n This is one of my all-time favorite films, and...\n I watched the DVD (called BLACK WIDOW in the U...\n This movie is a disgrace to the Major League F...\n A group of seven people fear they are the only...\n This really doesn't do the blues justice. It s...\n Mad scientist Professor Tabani drinks a potion...\n This show is about three little girls. (D.J, S...\n A movie about a mysterious love letter that pu...\n Based on Elmore Leonard, this is a violent and...\n A bloody maniac with cannibalistic tendencies ...\n It is now clear that the true golden age of Am...\n If you really, truly want to waste two hours o...\n ....and now I'm up to episode #7. I really was...\n At times I really wonder when I look at the c...\n When you start watching this animation-masterp...\n Being an avid Carpenter Fan, I really loved th...\n Rich ditzy Joan Winfield (a woefully miscast B...\n The plot was really weak and confused. This is...\n This film is not only the last piece of the Th...\n The 100 black and white half-hour episodes of ...\n Man the ending of this film is so terribly unw...\n This is a re-imagining of Tarzan in the era of...\n Talk about being boring!<br /><br />I got this...\n Rarely does one find a movie so bad that it ac...\n I recently saw this movie for the first time. ...\n This is a film which should be seen by anybody...\n Personally, I disdain The Jerry Springer Show,...\n George Lopez never caught my interest in his s...\n I agree with so many of the other reviewers he...\n I haven't laughed this hard at a movie in a lo...\n Well this movie was probobly one of the funnie...\n Plot: None. Script: A string of cliches. Actin...\n I am dumbfounded that I actually sat and watch...\n There is a certain genius behind this movie. I...\n Not since The Simpsons made it's debut has the...\n If this film strikes you (as it did us and, ap...\n Veteran TV director Ted Post treats us to a pl...\n This movie really sucks. This is my second rev...\n This title seems more like a filming exercise ...\n I like the \"Star Wars\" series. I like a good, ...\n ...But not this one! I always wanted to know \"...\n This is the only Christopher Guest movie that ...\n \"Jason Priestly stars as 'Breakfast', a psycho...\n This movie is a crappy and forgettable Sean Co...\n Are you kidding me? This is quite possibly the...\n I mean the word \"pedestrian\". Seems the produc...\n People call this a comedy, but when I just wat...\n Maybe it wasn't that good as a whole, but the ...\n Not very impressed. Its difficult to offer any...\n This program is certainly my favorite non-sitc...\n ...I can't believe there are actually people h...\n What is night vision? Well according to the st...\n Being a HUGE fan of the bottom series i was re...\n How this piece of garbage was put to film is b...\n Are we talking about the same movie? This movi...\n I love the first and third Beastmasters, but t...\n I've always liked Fred MacMurray, andalthough...\n Return to Sender, a.k.a. Convicted, is almost ...\n In the eighties, Savage Steve Holland put out ...\n This is the best film version of Dicken's clas...\n I borrowed this movie despite its extremely lo...\n What exactly is the point of pretending to \"co...\n I have to say that Higher Learning is one of t...\n This is a modest, character driven comedy, fil...\n I've been a fan of Rachael's since the beginni...\n Stay away from this movie at all costs. I was ...\n Full House is one of the worst TV series ever!...\n WAIT until you've watched most of all other fi...\n Well! What can one say? Firstly, this adaptati...\n Why? Why? Why on earth no one tells the truth ...\n I actually liked this movie until the end. Sur...\n I nearly fell asleep during a screening of thi...\n badly directed garbage. a mediocre nihilist sa...\n My reasoning behind viewing this film (despite...\n This almost documentary look at an enterprisin...\n Actor Paxton made his directorial debut with t...\n I loved this movie! OH MY GOSH! This movie roc...\n This movie was crap with a capital \"C.\" The op...\n Being an American service member please believ...\n This movie is a clumsy mishmash of various gho...\n PAGE 3 **** out of 4 Stars<br /><br />Madhvi (...\n This movie really kicked some ass. I watched i...\n This fantastic whodunit is an early prototype ...\n Feeding the Masses is just one of many recent ...\n Target is the story of a special agent who, af...\n I purchased this movie on blu-ray because it p...\n I know a lot of people have said don't bother ...\n ...and you can look at that statement in diffe...\n Back in 2004 I saw \"True\", Tom Tykwer's contri...\n Unentertaining, uninvolving hybrid of \"Cruel I...\n There are few films that have had me waiting a...\n The only reason I decided to view this film is...\n Trick or Treat, Quickie Review This zany romp ...\n Ben & Arthur COULD have been a 10. Sam Mraovic...\n I've lost count of the times I have seen this ...\n \"Why did they make them so big? Why didn't the...\n While visiting Romania with his CIA dad, Tony(...\n I've been watching Attack Of The Show religiou...\n It may have been thrilling for an audience in ...\n \"Brotherhood of Satan\" is one of the most unde...\n Rudyard Kipling once wrote that God gave to al...\n I went into \"The Closer She Gets\" knowing that...\n Gentle and genial film seems to have been over...\n Anyone remember the docudrama THREADS ? It's a...\n From the beginning of the film I found myself ...\n I saw this film at its New York's High Falls F...\n What do you expect when there is no script to ...\n Veber is not renown for his outstanding direct...\n A ridiculous movie, a terrible editing job, wo...\n Two escaped convicts step out of the woods and...\n The most hardcore bad film buff will be surpri...\n I went out of my way to get this film, and was...\n This film launched my theory about films based...\n A wonderfully thoughtful and involving movie t...\n Horror is perhaps one of two genres where logi...\n This movie is very much like every other moder...\n I rarely comment on films but I've read the ot...\n This film features two of my favorite guilty p...\n I love sci-fi and am willing to put up with a ...\n This movie start quite gruesomely with a femal...\n Rob Estes, Josie Bisset and a crap load of kid...\n I originally saw this film years ago during Ci...\n Well it's not often that we in the UK have a f...\n This was shown on a premium channel, so I didn...\n This is the worst thing the TMNT franchise has...\n What an extraordinary crime thriller!! My wife...\n This is easily the worst adaptation of Greek m...\n this move was friggin hilarious!!! funniest I'...\n Bette Davis brings her full trunk of tics to t...\n I actually prefer Robin Williams in his more s...\n The energetic young producer of theatrical pro...\n I happened to catch this movie on late night T...\n While it's true that the movie is somewhat int...\n This is a very odd film ... I wasn't really su...\n Otto Preminger's \"The Man with the Golden Arm\"...\n I've just watched Roll and what a pleasure it ...\n <br /><br />It's a generic coming-of-age story...\n A pointless cash-in with nothing to contribute...\n A good cast and they do their best with what t...\n This is the kind of movie you regret you put i...\n The power to dream is a wonderful thing. There...\n OK, the show was a little uneven, but I still ...\n Eglimata (= Crimes) is a story about little cr...\n This was the only time I ever walked out on a ...\n \"Dô desu ka den\" is the first colored movie of...\n For starters, \"Hobgoblins\" tries to ape the mo...\n The original movie, The Odd Couple, has some w...\n I just witnessed a movie that by all rights sh...\n I vaguely remember this film. I do remember it...\n A well cast summary of a real event! Well, act...\n Gus Van Sant has made some excellent films. I ...\n I am a huge Shirley Temple fan. When I saw thi...\n Jennifer Grey seems the unlikeliest of romanti...\n I just saw this movie today with my children (...\n I bought this movie exciting a gloriously grat...\n A holiday on a boat, a married couple, an angr...\n Oliver Stone hits the bull's eye with this fil...\n Low budget mystery. A shot rattles out of the ...\n WrestleMania 6 took place April 1, 1990 at the...\n Elephant Walk (1954) Starring an early Peter F...\n I guess that everyone has to make a comeback a...\n Reviewed at the World Premiere screening Sept....\n this movie is similar to Darkness Falls,and Th...\n <br /><br />As with the other episodes in this...\n I was truly and wonderfully surprised at \"O' B...\n I just got done watching The Edge of Love (by ...\n I saw this film about twenty years ago on the ...\n This a fascinatingly awful movie. It make so l...\n Consider for a moment what it must be like to ...\n This solid black and white slapstick comedy wi...\n I just finished reading a book on Anita Loos' ...\n Looking back on the year 2006,one of the thing...\n Don't get me wrong - I love David Suchet as Po...\n This movie is awful. At first I thought it may...\n I have been waiting for such an original pictu...\n I don't think I've really ever given Walter Ma...\n I went to this movie at a cast and crew show c...\n Now, I'm one to watch movies that got poor rev...\n Although it is more of a kids movie, it still ...\n Quite simply the funniest and shiniest film-co...\n This was directed by Ruggero Deodato, a true i...\n Deep SH.. is more like it! The eels are just c...\n Francis Ford Coppola's masterpiece was a great...\n I can understand why others reacted rather unp...\n This film is a perfect example of great escapi...\n Having watched this movie on the SciFi channel...\n This is one of the best presentations of the 6...\n Wow baby, this is indeed some fine Asian horro...\n If you are a fan, then you will probably enjoy...\n I thought that My Favorite Martian was very bo...\n Everyone is entitled to an opinion. The only c...\n I haven't seen \"Hardware Wars\" in years, but I...\n The Return is one of those movies for that nic...\n Obsession comes in many flavors, and exists fo...\n I grew up watching Inspector Gadget. It was, a...\n First of all that I would like to say is that ...\n How could 4 out of 16 prior voters give this m...\n Let's see, cardboard characters like Muslim te...\n One of my favourite films first saw it when I ...\n Maybe being a government bureaucrat is not the...\n Many people see this as a classic, but I obvio...\n The most notable feature of this film is the c...\n obviously has some talent attached, Maria Bell...\n Those of you who know the group dEUS, know the...\n It is interesting to see what people think of ...\n Where do I begin? I wanted to enjoy this movie...\n A lot of the user comments i have seen on the ...\n Dolelemite (1975) is a cult classic. Starring ...\n In Iran, women are officially banned from men'...\n a romance without feeling, a drama of issues w...\n I have watched this movie at least 30 times, m...\n Nora is a single mother-of-two who still wants...\n okay, but just plain dumb. Not bad for a horro...\n \"Bread\" very sharply skewers the conventions o...\n I watched this series after I had seen the Nak...\n I rented this thinking it might be interesting...\n This is another typical unbelievable and non-s...\n OK when I saw the previews for this movie I th...\n When I was a kid, I totally loved both Bill & ...\n This movie is based mainly on the emotions and...\n While I don't consider myself a big fan of fai...\n Can I please say first of all, that I felt so ...\n I am ashamed of myself that I actually went to...\n Ben, (Rupert Grint), is a deeply unhappy adole...\n This is probably the most uninvolving film I'v...\n Although I can see the potentially redeeming q...\n Not a knock on Korman as he was very funny on ...\n Virginal innocent Indri finds herself at a hou...\n This movie has got to be one of the worst I ha...\n \"A Damsel in Distress\" is definitely not one o...\n While all of the Fleischer/Famous Studios \"Sup...\n Great movie in a Trainspotting style... Being ...\n Is Miike like Chabrol, alternating art with dr...\n I've just returned from a showing of \"My Left ...\n When I first viewed this movie, I didn't know ...\n Margaret Mitchell spins in her grave every tim...\n Wow. They told me it was bad, but I had no ide...\n Wow, I loved this film. It may not have had th...\n An American boy goes to Paris after his mother...\n One hilarious thing I'll say off the top, is I...\n Excellent film. I cried when she cried, I love...\n There is nothing like an Oscar Wilde comedy, a...\n Other commentators have detailed the plot and ...\n This show is sheer entertainment and doesn't t...\n There is no doubt that during the decade of th...\n This show is the worst show ever! Norris and h...\n \"The Ladies Man\" suffers a common problem amon...\n This film is full of interesting ideas. Some s...\n What is it with Americans and their hang-up wi...\n If you have any kind of heart and compassion f...\n Just finished watching this one after getting ...\n OK enough already. this is a terrible piece of...\n Me being from Australia and loving the series,...\n Possibly the worst film within the genre in ex...\n Awful!<br /><br />Despite the good performance...\n Like another reviewer, I really wanted to like...\n Frustrated middle-aged Deputy District Attorne...\n I had heard this movie was good from a lot of ...\n I think we all begin a lot of reviews with, \"T...\n I wanted to love this movie. How could I not l...\n If you are already a fan of Peter O'Donnell's ...\n Watching Marlen Brando on screen is like watch...\n Larry Clark is not renowned for his talents as...\n First time I ever felt I needed to write a rev...\n There's a brand new killer on the loose, and h...\n Formulaic to the max. Neither title reflects t...\n This is a film that has it all, the dashing he...\n The idea is a very smart title the film has a ...\n This film's basic premise is a political carto...\n Yeah, I \"get\" Pasolini and his milieu, but at ...\n Jake Speed (1986) was an amusing parody of Ind...\n Ok,so.....guy gets bitten by a bat and then tu...\n Catherine Zeta-Jones and Aaron Eckhart star in...\n I was looking forward to seeing two bright you...\n I have two very major complaints regarding thi...\n This is a classic stinker with a big named cas...\n Have I ever seen a film more shockingly inept?...\n This is one of my 3 favorite movies. I've been...\n Horrible, horrible TV show! Why Comedy Central...\n Though some would prefer to comment on the val...\n When I saw Alien vs. Predator a few years ago,...\n Hayao Miyazaki name became prominent with Spit...\n My wife and I saw this when we were 17. The on...\n As interesting as a sheet of cardboard, this d...\n Assassin Hauser's (John Cusak) mission is to w...\n Now my friends, films like \"La Bête\" (aka \"The...\n I am a fan of his ... This movie sucked really...\n I see quite a few positive reviews on this boa...\n First of all, Jenna Jameson is the best actres...\n Omar Epps is an outstanding actor. I really th...\n A big waste of time is all you'll get out of t...\n This is actually a trilogy of 3 of Somerset Ma...\n I loved this film! Markie Post is really great...\n I can't think of anything, I repeat, ANYTHING ...\n I've been a devoted IMDB visitor for a few yea...\n MULHOLLAND DRIVE made me the definitive fan of...\n Wow. At first I thought who writes these thing...\n This movie is true action at its finest, It do...\n I channel surfed past this many times, mainly ...\n For those too young to remember, or too old to...\n This movie could be used in film classes in a ...\n This is a tepid docu-drama that covers no new ...\n Karloff and Lugosi - Together again! This is o...\n I really enjoyed the performances of the main ...\n It is high time that American critics and fans...\n OK with Coolio in it I should have known bette...\n Beautiful attracts excellent idea, but ruined ...\n What people fail to understand about this movi...\n This film is a bit reminiscent of the German f...\n this show disturbs me. it takes up slots on ni...\n The cover art (which features a man holding a ...\n Some giant scorpions are on a submarine and ki...\n Deceptive Advertising... I saw a commercial fo...\n This show uses a rather tired sitcom formula o...\n When I first watched this show on Cartoon Netw...\n Following a roughly 7 year rocky road on NBC, ...\n I thought this movie had absolutely no moral. ...\n Or that's what the filmmakers would like you t...\n This is an installment in the notorious Guinea...\n I remember catching this movie on one of the S...\n The reviewer from Poland must be a feminist, f...\n This is one of the best movies I have ever see...\n For an independent film it scores well with re...\n Let me start out by saying I'm a big Carrey fa...\n This is one of the first independent movies I'...\n Visual creative epic of inimitable style.<br /...\n Penny Princess finds American working girl Yol...\n Where do I start. Lets list the good things ab...\n This is a pretty clever, well-acted version of...\n This one's a romp; many Trek fans don't rate t...\n British comedies tend to fall into one of two ...\n Brilliant use of overstated technicolor illust...\n You like to solve mysteries? You like complex ...\n An untidy man, known as Bill, lives in a small...\n I wish I could give this movie a zero. Cheesy ...\n Randy Bowers (John Wayne) comes upon the Half ...\n I watched this film on the Hallmark Channel re...\n In Micro Phonies the stooges are at there best...\n Did the writers pay people to come up here and...\n I claim no matter how hard I seek I'll never f...\n I don't know much about film-making, but good ...\n Once a year \"comes\" a movie like that and make...\n I saw this movie with my mother, and I loved i...\n I've always been a great fan of Woody Allen an...\n The idea's which are shown in this film are wi...\n \"Pharaoh's Army\" defies formula. Instead of se...\n While not as bad as his game-to-movie adaptati...\n A dog found in a local kennel is mated with Sa...\n This movie is basically a spoof on Hitchcock's...\n I tried. I really did. I thought that maybe, i...\n The films use of blue-black and vibrant skin t...\n This would have to be one of the worst, if not...\n Forget Easy Rider - Head is THE film about the...\n This isn't far away from the trash that Bollyw...\n Oh how I laughed....this has it all...an Asian...\n After learning that her sister Susan is contem...\n Imagine a woman alone in a house for forty fiv...\n Michael Ritchie's \"The Couch Trip\" is a wonder...\n It was released in France on dvd several years...\n Hi, today i looked this film because of the me...\n I really don't get how people made this film a...\n A young ( only 21 ) director with great talent...\n This is a surprisingly great low budget Horror...\n John Huston finished his remarkable career wit...\n This movie should not be watched as it was mea...\n This movie came out about the same time as Pre...\n National Treasure is about as over-rated and o...\n What's to like about this movie???<br /><br />...\n This film has been lauded to the point of the ...\n I couldn't agree more with Nomad 7's and I A H...\n Some films are designed to just entertain you,...\n I'm at a loss. This entire movie made absolute...\n what a lousy movie, took me 3 times to finish ...\n I liked the first movie, but this is a textboo...\n A very weird, psychedelic, esoteric, (and did ...\n Slow, Slow, Slow... There is no mystery or exc...\n The spoiler warning is for those people who wa...\n In my opinion, this movie's title should be ch...\n I thought it was not the best re-cap episode I...\n I watched the whole movie, waiting and waiting...\n An excellent example of what happens when one ...\n That's what me and my friends kept asking each...\n Renown writer Mark Redfield (as Edgar Allen Po...\n Rather nasty piece of business featuring Bela ...\n My wife wanted to see this movie and I grudgin...\n I couldn't stand to watch very much of this cr...\n Contains Spoiler The movie is a good action/co...\n Tiny Toons is the first cartoon I remember wat...\n there was some truth to this movie. I remember...\n I never fail to be amazed and horrified by the...\n I absolutely hate this programme, what kind of...\n it's hard to tell the actors from the non-acto...\n Wow, I swear this has never happened to me bef...\n I went to see it 2 times this movie, a friend ...\n I usually have a difficult time watching a TV ...\n I admire Deepa Mehta and this movie is a maste...\n How to round up every possible cliché and ster...\n \"Masks\" is a moving film that works on many le...\n I understand that this movie is made for kids ...\n THE MEMORY KEEPER'S DAUGHTER in the form of a ...\n Rock solid giallo from a master filmmaker of t...\n I love B movies, but I like to be aware from t...\n I went in to this thinking another gross movie...\n I picked up this video after reading the text ...\n *May be spoilers* No doubt one of the best dra...\n I saw this film in its premier week in 1975. I...\n One of the worst movies I've seen shoddy camer...\n Less than two hundred and fifty years ago, the...\n In a time when Hollywood is making money by sh...\n This film is one that played very well back in...\n Tony Goldwyn is a good actor who evidently is ...\n 1st watched 2/18/2007 - 4 out of 10(Dir-Leon L...\n I gave this more than a 1 because I did think ...\n when I know that Walter will never grace anoth...\n A better film could have been made to portray ...\n I have not read the novel, or anything other b...\n Murder in Mesopotamia, I have always considere...\n Based on the idea from Gackt, Moon Child took ...\n I went to see this film last night at the Nati...\n I want to add to the praise for the production...\n This is an excellent movie. Phoolan had no rol...\n If John Waters had written and directed \"House...\n This was a Hindi movie. Hindi=Horrible. reason...\n 1991 saw the release of the two best sequels o...\n I would of enjoyed this film but Van Damme jus...\n I thought this was a great idea but, boy, was ...\n This movie is called \"Solomon Kane\". Which it ...\n This movie is just boring.<br /><br />It tries...\n The movie never becomes intolerable to watch. ...\n Just saw this film the other day at the Santa ...\n Many of us who went through high school probab...\n Every movie Quentin Tarantino has made has bec...\n For a movie shot in 18 days and a budget less ...\n Ok let's start with saying that when a dutch m...\n The movie is good and I think Tiffany Amber is...\n When the Chamberlain family is camping near Ay...\n The performances of Fishbourne (who appears st...\n Sure, the concept had already been done with A...\n Wow, there's a lot of venom directed at this m...\n this is just a terrible 'comedy' -- it really ...\n At the end of \"Dragon Heat,\" all I could think...\n You see a movie titled 'battlespace', what are...\n German-born Turkish director Faith Akin captur...\n The quintessential road movie...if your idea o...\n COC had its moments. I enjoyed the action sequ...\n A suprisingly good film considering the circum...\n This early role for Barbara Shelley(in fact,he...\n This movie is a desperate attempt to ride the ...\n Harrison Ford plays Sergeant Dutch Van Den Bro...\n Mary Lou is a slut whose spirit seeks revenge ...\n The plot: Four people are caught in an elevato...\n This film was nothing more than exploitative g...\n The explosion of TV channels must be eternally...\n This show is a great history story. It's has e...\n Not finding the right words is everybody's pro...\n This movie is great. Best acting i have ever s...\n Horror films are a curious thing, sometimes th...\n This will be brief. Let me first state that I'...\n On the whole one wishes this was a better film...\n Another 'good overcoming evil' story, but with...\n Burt Reynolds plays Gator McKlusky, a likable ...\n In the autobiographical coming-of-age tale \"Ro...\n Who ever put that review as 'of bad taste' is ...\n Neat premise. Very unrealistic. What I learned...\n This film appears to be an exposé of the curre...\n It seems incredible that the same decade which...\n It was obvious that this movie is designed to ...\n I can admit that the screenplay isn't very goo...\n Virgin is selected to marry rich guy. Rich guy...\n This is a strong movie from a historical and e...\n \"A young woman suffers from the delusion that ...\n I actually enjoyed Tycus, if not for much more...\n I'm almost embarrassed to admit to seeing CALI...\n I thought this film was just about perfect. Th...\n This movie has been advertised for over three ...\n I just saw this film tonight and I have to say...\n For a comedy this has a decent and inventive p...\n There are few films that leave me with the fee...\n This is the first 10 out of 10 that I've given...\n I sort of accidentally ended up watching this ...\n Sheba Baby is always underrated most likely be...\n I don't think any movie of Van Damme's will ev...\n The film opens with a peaceful shot of a tradi...\n <br /><br />\"Lets swap Murders- your wife, my ...\n Edward Burtynsky is a Canadian photographer wh...\n I loved so much about this movie...the time ta...\n First, let me state that I am a big fan of Ash...\n I watch lots of scary movies (or at least they...\n Any movie that has nude scenes of Karen Allen ...\n I would like to comment on the movie April Lov...\n Although this film is somewhat filled with eig...\n Sonny Chiba, as everyone knows, is the man. In...\n I did a review for this director's fictional r...\n There is a scene in Dan in Real Life where the...\n A bad bad movie... terrible plot, hinges on Bo...\n A lot of the comments seem to treat this film ...\n Some said that this was a nose candy glorifica...\n A rather disappointing film. The club scenes w...\n Sure, most of the slasher films of the 1980's ...\n I have had more boring stretches of 80 minutes...\n An interesting thriller that has Paul Winfield...\n Dolemite is a blaxploitation film about, well,...\n I saw this movie for a number of reasons the m...\n So, I got a hold of this as an assignment for ...\n Slausen's Lost Oasis. . . a place for food, fu...\n As an anti-football person, I (on the surface)...\n \"Read My Lips (Sur mes lèvres)\" (which probabl...\n I don't know where most of you were at, but wh...\n This was a top-notch movie with a top-notch ca...\n Honestly, at first, I watched this movie becau...\n This wilfully bizarre adaptation of Borges sho...\n This is just one more example of the absolute ...\n Just got my copy of this DVD two disc set and ...\n At what point exactly does a good movie go bad...\n Notable because of it's notorious explicit sce...\n This solid little horror film is actually one ...\n I first saw \"Death in Venice\" 1971) about 15 y...\n This is a kind of genre thing, meaning you eit...\n I wasn't sure where this was headed until the ...\n The movie was very moving. It was tender, and ...\n I see people writing about how great this movi...\n This movie is so bad there are not words to de...\n Abysmal pulp adventure exploitation in the jun...\n I've got to say that I'm not a massive fan of ...\n Personally, I think that the film was done ver...\n This is by far one of the most boring and horr...\n STEAMBOAT WILLIE is an amazingly important fil...\n Okay, I didn't get the Purgatory thing the fir...\n I got hold of this film on DVD with the title ...\n This is a case of a bunch of people thinking t...\n Nick Cage is Randall Raines, a retired car thi...\n This is one of those movies you see in the vid...\n I first saw The Victim (aka Out Of Contention)...\n David \"master of debonair\" Niven plays the Big...\n There seems to be little in the way of middle ...\n This final installment of the \"Airport\" franch...\n so if a guy meets you and he says 'I want you ...\n For avid Sci-Fi fans this movie is just what y...\n Two kinds of movies we like are (1) westerns, ...\n If you've ever wanted to see a film that stres...\n Sometimes a premise starts out good, but becau...\n William H. Macy is brilliant as Everyman caugh...\n Man about the house is a true situation comedy...\n Adrian has just gone out of the asylum, being ...\n A quite easy to watch tale of 2 thieves, with ...\n Its such a shame that an important film like t...\n This movie is a terrible attempt at a spoof. I...\n This is a film that left me breathless...........\n <br /><br />Crackerjack, starring Mick Malloy ...\n My favourite movie of all time. This was a fla...\n I really wanted to like this film and I don't ...\n Julie Brown hilariously demolishes Madonna's a...\n Highly flawed but just about watchable `comedy...\n I have seen this film probably a dozen times s...\n I never comment on a film, but I have to say t...\n If Edward Woodward was the the flicks watching...\n Warning--this film has some amazingly graphic ...\n I was the Production Accountant on this movie,...\n I suppose it depends on when one actually sees...\n Beethovan Lives Upstairs is a very bad movie. ...\n When I decided to try watching a movie about c...\n I really wanted to be able to give this film a...\n We have an average family. Dad's a famous rapp...\n \"Sir\" John Gielgud must have become senile to ...\n Apparently I am swimming against the tide of t...\n Some bad reviews here for this and I understan...\n The core issues at play (God & Satan / Good & ...\n I have to say this is one of the best movie i ...\n I'm guessing that we all, no matter if we are ...\n I don't think this movie had the effect on me ...\n Yes sure, this is a Friday the 13th rip off bu...\n Up until the last few minutes of the movie, I ...\n the acting is good.thats the positives out of ...\n Like the above poster, I got burned on the tit...\n For once a Barbie movie that is good. I'm 18 a...\n I was pleased to see that she had black hair! ...\n There are four great movie depicting the Vietn...\n This movie is absolutely horrible! I thought b...\n Dumbland is not for all. In fact Dumbland mayb...\n (Review in English, since Swedish is not allow...\n In Victorian times a father is separated from ...\n When this film gets it right it really gets it...\n What this film has is its realism , you really...\n \"Like the first touch of pleasure and guilt, l...\n This is a weird and compelling film. The topic...\n Although I am not a Michael Jackson fan, I lik...\n Tigerland follows the lives of a group of rece...\n To all the reviewers on this page, I would hav...\n I really should give this stinker more credit ...\n Another one for the Babes & Bullets crowd. The...\n I am a big fan of Arnold Vosloo. Finally seein...\n This documentary begins with an interesting pr...\n The great cinematic musicals were made between...\n They say David Duchovny took six days to write...\n I can safely admit (as an IMDb geek) that 'Pha...\n I can not quite understand why any of the \"rev...\n I just got back from the GLBT Film Festival at...\n I had just reached thirteen when I first saw t...\n One of the worst movies I have ever seen. Excr...\n ...okay, maybe not all of it. Lured by the fal...\n Lets make a movie about a talk show that alrea...\n I saw the film yesterday and stopped it at hal...\n I'm sorry to say this, but the acting in this ...\n As Most Off You Might off Seen Star Wars: Retu...\n Really bad. Why anyone thinks this is a good f...\n This movie causes more unintentional laughter ...\n I'm a fan of both Shakespeare and MST3K, so I ...\n This film wasn't programmed in Italian cinemas...\n If you watched the series and love the league ...\n Back in the day if Marion Davies had had her d...\n I have become a big fan of the work of Barbet ...\n This movie is about Carlos \"The Jackal\" (Quinn...\n Let me start out by saying that I used to real...\n When I first saw this show, I thought it looke...\n As a non-theist Im not going to comment on the...\n Certainly this film has the ring of truth abou...\n \"Hail The Woman\" is one of the most moving fil...\n Another French film with absurdity. Baise-Moi(...\n As a member of the cast, I was a member of the...\n I was looking forward to seeing John Carpenter...\n I enjoy quality crapness, and this ranks up th...\n This film had no huge stars in it, but did hav...\n The subject this latest adman-turned-movieman ...\n The Canterville Ghost (1996).The director made...\n I am not so much like Love Sick as I image. Fi...\n This is absolutely the best 80s cartoon ever, ...\n Killjoy 2 is the same as killjoy 1. Bad acting...\n Officially the first martial arts movie in USS...\n I saw Teen Devian in 1993 telecasted in Doorda...\n As a long-time fan of Studio Ghibli and especi...\n The Soloist has all ingredients to impress the...\n Jerry Angell, owner of zombie-horror's finest ...\n I am sick of series with young and clueless pe...\n I almost drowned in CHEESE watching this movie...\n This is almost certainly the worst Western I'v...\n I've noticed that a lot of people are taking O...\n Michael Bowen plays an innocentish young man w...\n It was a rare treat to see \"Checking Out\". I w...\n To say this film stinks would be insulting to ...\n I have no clue as to what this was shot on but...\n I caught this film late on a sat night/ Sunday...\n War drama that takes place in Louisiana in 197...\n To keep from being bored during \"Love and Sex,...\n it starts off with a view of earth and jupiter...\n Spheeris used this documentary to push a stere...\n This first two seasons of this comedy series w...\n If you're tired by the same repetitive, uninte...\n The sects that capitalise on this film are wel...\n Spoilers <br /><br />Well, the one line summar...\n This was one of the highlights of ST:TNG's sem...\n I saw the original \"Chorus Line\" on Broadway G...\n Where do I begin? Walt Disney's happiest motio...\n I found this move beautiful, enjoyable, and up...\n It was easy to dismiss this film as hyperbole ...\n Another FRIDAY THE 13TH ripoff, even featuring...\n 'Oldboy' director Park Chun-wook returns with ...\n I first saw this movie as a younger child. My ...\n A ghost story on a typical Turkish high school...\n It took a long time until I could find the tit...\n This is not your typical Indian film. There is...\n I ticked the \"contains spoiler\" box, in case I...\n This movie was so bad it was laughable. I coul...\n I absolutely despise this movie. No wonder Jos...\n Kalifornia is a movie about lost ideals. A jou...\n As other posters have commented this was a ver...\n I sat down through 2 hours of pure boredom. I ...\n If you liked the Richard Chamberlain version o...\n This has to be one of the biggest misfires eve...\n Ralph and Mumford, misfits in their own land, ...\n If I could give it less that 1 I would. Do not...\n Astounding that something like this could find...\n Tommy Lee Jones was the best Woodroe and no on...\n So, this is the WORST movie you will probably ...\n I rented this movie the other day b/c I love r...\n I was pleasantly surprised to find this movie ...\n Awful dreams, wild premonitions, blasphemy and...\n I loved that this film recognizes the intellig...\n What some Hollywood-movies try and practically...\n Well, I get used after awhile to read comments...\n What a great show! A very underrated dramatic ...\n The Invisible Man is a fantastic movie from 19...\n One of Fuller's (a combat veteran himself) ear...\n Just re-saw this movie after thirty seven year...\n This film is one of Michael Keaton's best. Thr...\n From around the time Europe began fighting Wor...\n Caught this movie on TV and I watched it again...\n Sex, drugs, racism and of course you ABC's. Wh...\n Trey Parker and Matt Stone, the creators of So...\n I saw Beyond Rangoon about 20 times, it was TH...\n John Wayne's first starring role just blew me ...\n I missed the beginning of this film, which mig...\n i L-O-V-E this movie... everyone and their gra...\n <br /><br />I tuned into this movie not becaus...\n The first Cruel Intentions, the original, is m...\n I think that can sum up this show about as wel...\n Oh my. How can they make movies of such beauty...\n I'd love to write a little summary of this mov...\n I really liked this movie...it was cute. I enj...\n What an overlooked 80's soundtrack. I imagine ...\n I saw the new redubbed and edited version yest...\n The history of the FBI, as told from the point...\n Just finished watching this movie. I couldn't ...\n Tom Selleck plays an absentee son to senile \"p...\n Robert Montgomery and Robert Young are outstan...\n I recently saw this movie in my International ...\n This has got to be the worst movie I have ever...\n The third Muppet movie is perhaps the most rel...\n The Diary of Anne Frank is the second best-sel...\n I enjoyed this film yet hated it because I wan...\n I don't'know... maybe it's because I'm Brazili...\n Not only is it a disgustingly made low-budget ...\n STAR RATING: ***** Saturday Night **** Friday ...\n Very good dramatic comedy about a playwright t...\n This movie was a complete waste of time. The s...\n I have always loved old movies but this is one...\n The first episode of this new show was on toda...\n After having watched Koyaanisqatsi two or thre...\n Is it possible for a movie to get any worse th...\n I remembered seeing this movie when i was a ki...\n Hmm I agree with the reviewer who said that \"...\n Following which, the touted update goes and sh...\n Woa, talk about awful. Do not waste your time....\n Loved it! What's not to like?--you got your su...\n An unexpected pleasure as I had heard nothing ...\n When Melville's \"Pierre; or The Ambiguities\" h...\n More than twenty years before Peter Jackson's ...\n One of the more lucid statements against the d...\n This is a silly movie with much singing and da...\n A country-boy Aussie-Rules player (Mat) goes t...\n Okay, I'll admit the casting in the film is RE...\n This is probably the worst film I have ever se...\n River's edge is not a PLEASANT film to watch b...\n I saw the preview in Femalien and thought it c...\n Wow. Not because of the 3-D imagery, which at ...\n In a year of pretentious muck like \"Synecdoche...\n The 1930s saw a vogue for documentary films ab...\n This film played in Lexington KY for 7 days. I...\n Ho Hum. Just another flick with Steven Seagal ...\n I couldn't relate to this film. I'm surprised ...\n If it is true that the movie only cost 150K to...\n Gosha's last great film of the 1960's. A resol...\n Usually, I start my reviews with an explanatio...\n Thats not saying much. This Killjoy film has b...\n The acting- fantastic. The story- amazing. The...\n My abiding love of Italian actress Lucianna Pa...\n I really enjoy this movie. The first time it w...\n I confess to have quite an uneasy feeling abou...\n There is a lot of crap coming out of Hollywood...\n I absolutely adore this film about a lady colu...\n \"National Velvet\" tells the story of Velvet Br...\n This is a beautiful movie filled with adventur...\n You know, people who make comedies so often fo...\n Yes this movie features a gal named Jessica wh...\n Before the release of George Romero's genre-de...\n I found this movie really funny because you ha...\n to be honest, i didn't watch all of the origin...\n This is an \"anthology\" horror film. It's made ...\n We went to the movie with a group because the ...\n All things old are new again.Erika E. is on ce...\n Wow, the spookiest thing about this episode wa...\n I'm a big horror film buff, particularly of th...\n This is a good film for die-hard Chucky fans. ...\n I haven't read the book of this and based on t...\n For the very reason that I love movies such as...\n STAR RATING: ***** Unmissable **** Very Good *...\n The apolitical musicians Eva (Liv Ullmann) and...\n I hated this show when I was a kid. That was b...\n A badly-acted two-character comedy-drama abrup...\n This movie got extremely silly when things sta...\n An under-appreciated, unseen gem. Estevez does...\n Dont let the MPAA fool you with their \"Rated R...\n Immediately after renting and watching this mo...\n This has to be one of the worst films I have e...\n I saw this Film one midnight and I can say tha...\n Threadbare horror outing has an innocent teen ...\n Had it not been for To Kill A Mockingbird, thi...\n Totally disgusting and cheap bawdy humor. I lo...\n When reading a review from another user, sayin...\n Good things out of the way first:<br /><br />U...\n There's a lot going on in The College Girl Mur...\n Some have compared this film to Deliverance. I...\n \"The Brain Machine\" will at least put your own...\n To Die For has it all.This film has a great ca...\n Then you must see this film, to understand the...\n If you were ever a fan of MTV\"s \"The State,\" t...\n I just caught this on Showtime...ewwwwwww, not...\n This movie is just plain terrible!!!! Slow act...\n \"If I sit down I will never stand up again\", t...\n This is a fascinating documentary about a 15 y...\n When this first came out 6 months after the tr...\n To most of us, life is an unfolding process of...\n I was surprised and touched by this emotional ...\n Overrated mob comedy. Director Demme makes the...\n No hidden agenda. Pure scifi. All fun.<br /><b...\n The genre of suspense films really takes a div...\n This might be for those who have been to summe...\n After seeing the previews I felt that this mov...\n Ken Harrison, a young sculptor in his early th...\n I've been a fan of Jim Henson and his characte...\n Hedy Lamarr who may have been kept by more men...\n ***SPOILERS!*** I sometimes wonder what makes ...\n CitizenX(1995) is the developing world's answe...\n I happened to spot this flick on the shelf und...\n 'The Curse of Frankenstein' sticks faithfully ...\n I tried to give this show a chance, but it rea...\n First things first, I am by no means a picky m...\n This movie is beyond Horrible AVOID AT ALL COS...\n Return to Cabin by the Lake does not, in any w...\n While I agree this was a 1950s sitcom, I don't...\n This movie gives Daniel Wu his chance to do a ...\n It`s funny how instinct warns you of something...\n There is a lot to like in this film, despite i...\n Saw this movie at the Rotterdam IFF. You may q...\n <br /><br />Whether any indictment was intende...\n This film centered on a young lady who makes p...\n This is one of those movies that is so bad it ...\n Disjointed, unclear, bad screenplay, poor phot...\n OK, I would not normally watch a Farrelly brot...\n Great characters, great acting, great dialogue...\n I am a youth pastor's wife and we took some yo...\n The college teacher Larry Donner (Billy Crista...\n Thirty years after its initial release, the th...\n James Hacker MP didn't expect that he would be...\n I am a big fan of low budget horror movies lik...\n Ever wonder where the ideas for romance novels...\n I'm Czech and soldiers (not only pilots) who e...\n Yeah i bought camp blood and it wasted about 8...\n ...\"Flight of the Living Dead\" sports producti...\n I rented this movie, but I wasn't too sure wha...\n In the opening scene of \"Malta Story\" Mr A.Gui...\n There is a growing trend in the media to vilif...\n The Brothers Quay are directors, judging by co...\n There is NOTHING cool, hip, or clever about th...\n ***May Contain Spoilers*** OK, it wasn't exact...\n I just saw this movie last night and, being so...\n That Certain Thing is the story of a gold digg...\n When you look at Mexico's best movies you will...\n This is a really bad film, with bad acting and...\n This was a pretty good movie that was overall ...\n Two redeeming qualities of this film were the ...\n The first time I ever saw this movie was when ...\n My first impression would be this is Beowulf o...\n This movie has some good performances, as othe...\n The gates of Hell opened up and spit out this ...\n I was never all that impressed by Night Galler...\n Based on actual events of 1905, silent film TH...\n Great film about an American G.I. who quits th...\n As a kid, I loved this game. I played it a zil...\n So many fans, so little to show for it. I know...\n As far as I can understand, TIW WATCHER is the...\n That was a waste of 9 dollars. the movie was t...\n I would give this show a ten out of ten if it ...\n ... but I laughed. A lot.<br /><br />I saw 'As...\n I found this film completely and utterly incom...\n An ultra-modern house in an affluent neighborh...\n Tintin was one of my favorite heroes as a kid....\n Originally I rented this film for my daughter ...\n \"Hatred of a Minute\" is arguably one of the be...\n \"Committed\" is all about Graham as an irrepres...\n Ok, I've seen plenty of movies dealing with wi...\n I watched this on HBO because it won the Oscar...\n When I saw this animation for first time (I wa...\n THE SHOP AROUND THE CORNER is one of the sweet...\n When I go out to the video store to rent a fli...\n When I first saw this film on video in a depar...\n For a low budget project, the Film was a succe...\n What a horrible movie. This movie was so out o...\n Let's get some things straight first: Zombies ...\n In a nutshell, skip this movie, it's that bad....\n I just saw this movie for the first time last ...\n Sergei Eisenstein's most famous movie has trul...\n Low budget Brit pop melodrama focuses on a gir...\n I'm shocked that all the \"hated it\" ratings ar...\n As a \"lapsed Catholic\" who had 11 years of Cat...\n The viewer who said he was disappointed seems ...\n The rumor is true: girls like COYOTE UGLY more...\n This movie starts out a little slow but kicks ...\n Mt little sister and I are self-proclaimed hor...\n I saw this film at Amsterdam's International D...\n This show is painful to watch ...<br /><br />I...\n Probably the only thing that got the movie up ...\n Russ and Valerie are having discussions about ...\n A European musician and composer sets out to c...\n Viewed this GREAT Classic film of Greta Garbo ...\n I didn't expect much when I saw this at the Pa...\n Man, this gets a lot of good reviews in the re...\n This is without doubt the best documentary eve...\n I liked this movie. That's pretty much all I c...\n I watched this movie out of a lack of anything...\n One of the best and most exciting of all consp...\n OK OK, it might be hard to put the entirety of...\n I saw this series when it world premiered at t...\n It's a testament to Gosha's incredible film-ma...\n Thanks to the helpfulness of a fellow IMDb mem...\n I thought this movie was perfect for little gi...\n Michael Keaton has really never been a good ac...\n One measurement for the greatness of a movie i...\n Let's just say I had to suspend my disbelief l...\n Well, here we have yet another role reversal m...\n Oh man, why? \"Six Degrees\" is a show about thi...\n There has been a political documentary, of rec...\n The movie was \"OK\". Not bad, not good, just OK...\n Not all movies are Oscar worthy but let's face...\n i just saw Dick Tracy and I thought it was ter...\n The Haunting is a film that boasts a really cr...\n I watched this last night on TV (HBO). I have ...\n Down to Earth is about Lance Barton, a black c...\n I have never read a Jacqueline Susann novel, b...\n I was not nearly as smitten with this as many ...\n This movie started out cringe-worthy--but it w...\n Definitely an odd debut for Michael Madsen. Ma...\n Charlie Wilson's War, based on a true story, t...\n People are being too hard on the film. Sometim...\n This Gundam series only follows Gundam 0083 St...\n The Brave One seems to indicate that the main ...\n I was amazingly impressed by this movie. It co...\n Many mystery stories follow the standard whodu...\n By 1955, five years after this one was release...\n Despite having a very pretty leading lady (Ros...\n I loved this show. Such talent; and I am so di...\n In all of low budget history. this movie has t...\n Thin story concerns two small town brothers an...\n I had seen this movie when I was a boy (Before...\n Hopper has never been worse as if he felt as t...\n If you came into the film with expectations, t...\n Despite the previous reviewer's screed, this i...\n Breaking Glass is a film that everyone aspirin...\n 'Rejseholdet' is one of the best new danish tv...\n After realizing what is going on around us ......\n I had few problems with this film, and I have ...\n This program is a lot of fun and the title son...\n Greenaway seems to have a habit of trying deli...\n This is one of the most hateful and cruel movi...\n \"Air Bud 2: Golden Receiver\" is a very bad reh...\n I think I will make a movie next weekend. Oh w...\n After watching this movie on tv, I looked it u...\n How often do we live our romantic life as on t...\n After seeing the TV commercials for this film ...\n The movie was totally Awesome and Cool. The gr...\n This is one of those movies that showcases a g...\n After ''Empire strikes back'' ''Return of the ...\n This is an incredible piece of drama and power...\n Why does this movie fall WELL below standards?...\n Whoa. I mean, whoa. I mean, whoa whoa.<br /><b...\n What an utter disappointment. Forget this abys...\n Bad, bad, bad. How do movies like this get mad...\n Long trailer? whoever said that has got to be ...\n The film opens with a cult leader attempting t...\n I truly fell in love with the characters. They...\n I first saw this movie in the night program of...\n Antonio Margheriti's \"Danza Macabra\" aka. \"Cas...\n This is one of the worst movies ever made. Tri...\n It seems that all companies that are enjoy wit...\n This film probably would have been good,if the...\n What a disaster! Normally, when one critiques ...\n I remember catching this film on a C4 screenin...\n A group of cats look to find their way home af...\n I love so much about this movie: the music, th...\n This is John Waters best film to date. The cha...\n Having read all of the comments on this film I...\n Yeah, I guess this movie is kinda dull compare...\n . . . or type on a computer keyboard, they'd p...\n I found this movie quite by accident, but am h...\n think of the most un-film-worthy subject you c...\n \"Nurse Betty\" is the kind of movie you can't d...\n I watched this mini in the early eighties. Sam...\n From the beginning of the show Carmen was ther...\n I made a big mistake going to see this film. T...\n Depending entirely on your own personal state ...\n <br /><br />One would expect a movie with a fa...\n Why did the histories of Mary and Rhoda have t...\n The movie is not that bad, Ringo Lam sucks. I ...\n \"Sir\" has played Lear over 200 times,but tonig...\n The Truth and Reconciliation process in South ...\n This picture started out with good intentions,...\n One of the greatest lessons I ever had in how ...\n Our America is multi-cultural, with so many su...\n It is the early morning of our discontent, and...\n If any movie ever made Italians look bad, this...\n This was a very brief episode that appeared in...\n \"Scientists at a remote lab experiment on (ins...\n If you played \"Spider-Man\" on the PS version, ...\n It's really rare that you get an inside view a...\n Why is it that every time I mention this movie...\n I have NOT seen this movie, but I must. Having...\n Lord, this sucked. There's a particular sort o...\n I happened to have seen this movie this mornin...\n As someone who loves baseball history, especia...\n My thoughts on the movie, 9<br /><br />It was ...\n John Carpenter's career is over if this sad ex...\n <br /><br />Headlines warn us of the current c...\n Babette's Feast, for me, is about healing: men...\n If you like really shocking movies this is for...\n I saw this last week during Bruce Campbell's b...\n This movie is another one on my List of Movies...\n Firstly, the title has no relevance whatsoever...\n Halloween is one of the best examples of indep...\n I must say as a girl with a cowboy of my own,I...\n I must admit that this is one of the worst mov...\n This movie is a total dog. I found myself stra...\n With several name actors (Lance Henrikson, Dav...\n The future of fantasy never looked so dark! Ch...\n The title leads viewers to believe that this i...\n For the most part, \"Michael\" is a disaster  t...\n 90 minutes of Mindy...Mindy is a tease to boyf...\n I saw the movie in the theater at its release,...\n Dog Bite Dog isn't going to be for everyone, b...\n Halloween is one of those movies that gets you...\n I saw this with high expectations. Come on, it...\n A stunning film of high quality.<br /><br />Ap...\n And I repeat, please do not see this movie! Th...\n To be hones, I used to like this show and watc...\n I loved it, having been a fan of the original ...\n Hello it is I Derrick Cannon and I welcome you...\n Imaginary Heroes is clearly the best film of t...\n This movie is a disgrace to the Major League F...\n A remake of Alejandro Amenabar's Abre los Ojos...\n When I first tuned in on this morning news, I ...\n I got this one a few weeks ago and love it! It...\n Lame, lame, lame!!! A 90-minute cringe-fest th...\n Les Visiteurs, the first movie about the medie...\n John Garfield plays a Marine who is blinded by...\n Robert Colomb has two full-time jobs. He's kno...\n This is your typical junk comedy.<br /><br />T...\n I thought this movie did a down right good job...\n Bad plot, bad dialogue, bad acting, idiotic di...\n I am a Catholic taught in parochial elementary...\n I'm going to have to disagree with the previou...\n No one expects the Star Trek movies to be high..."
  },
  {
    "path": "CH04/.ipynb_checkpoints/CH04b_machine_translation_fine_tuning_using_simpletransformers-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\r\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"!echo $CUDA_VISIBLE_DEVICES\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import os\\n\",\n    \"os.environ[\\\"CUDA_VISIBLE_DEVICES\\\"]=\\\"\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"df = pd.read_csv(\\\"TR2EN.txt\\\",sep=\\\"\\\\t\\\").astype(str)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>EN</th>\\n\",\n       \"      <th>TR</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>Hi.</td>\\n\",\n       \"      <td>Merhaba.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>Hi.</td>\\n\",\n       \"      <td>Selam.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>Run!</td>\\n\",\n       \"      <td>Kaç!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>Run!</td>\\n\",\n       \"      <td>Koş!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>Run.</td>\\n\",\n       \"      <td>Kaç!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>473030</th>\\n\",\n       \"      <td>A carbon footprint is the amount of carbon dio...</td>\\n\",\n       \"      <td>Bir karbon ayakizi bizim faaliyetlerimizin bir...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>473031</th>\\n\",\n       \"      <td>At a moment when our economy is growing, our b...</td>\\n\",\n       \"      <td>Ekonomimizin büyüdüğü bir anda bizim işletmele...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>473032</th>\\n\",\n       \"      <td>Using high heat settings while ironing synthet...</td>\\n\",\n       \"      <td>Sentetik kumaşları ütülerken yüksek ısı ayarla...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>473033</th>\\n\",\n       \"      <td>If you want to sound like a native speaker, yo...</td>\\n\",\n       \"      <td>Eğer bir yerli gibi konuşmak istiyorsan, banço...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>473034</th>\\n\",\n       \"      <td>If someone who doesn't know your background sa...</td>\\n\",\n       \"      <td>Senin geçmiş deneyimini bilmeyen biri senin bi...</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>473035 rows × 2 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"                                                       EN  \\\\\\n\",\n       \"0                                                     Hi.   \\n\",\n       \"1                                                     Hi.   \\n\",\n       \"2                                                    Run!   \\n\",\n       \"3                                                    Run!   \\n\",\n       \"4                                                    Run.   \\n\",\n       \"...                                                   ...   \\n\",\n       \"473030  A carbon footprint is the amount of carbon dio...   \\n\",\n       \"473031  At a moment when our economy is growing, our b...   \\n\",\n       \"473032  Using high heat settings while ironing synthet...   \\n\",\n       \"473033  If you want to sound like a native speaker, yo...   \\n\",\n       \"473034  If someone who doesn't know your background sa...   \\n\",\n       \"\\n\",\n       \"                                                       TR  \\n\",\n       \"0                                                Merhaba.  \\n\",\n       \"1                                                  Selam.  \\n\",\n       \"2                                                    Kaç!  \\n\",\n       \"3                                                    Koş!  \\n\",\n       \"4                                                    Kaç!  \\n\",\n       \"...                                                   ...  \\n\",\n       \"473030  Bir karbon ayakizi bizim faaliyetlerimizin bir...  \\n\",\n       \"473031  Ekonomimizin büyüdüğü bir anda bizim işletmele...  \\n\",\n       \"473032  Sentetik kumaşları ütülerken yüksek ısı ayarla...  \\n\",\n       \"473033  Eğer bir yerli gibi konuşmak istiyorsan, banço...  \\n\",\n       \"473034  Senin geçmiş deneyimini bilmeyen biri senin bi...  \\n\",\n       \"\\n\",\n       \"[473035 rows x 2 columns]\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"df\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"data = []\\n\",\n    \"for item in df[:10500].iterrows():\\n\",\n    \"    data.append([\\\"translate english to turkish\\\", item[1].EN, item[1].TR])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"df = pd.DataFrame(data, columns=[\\\"prefix\\\", \\\"input_text\\\", \\\"target_text\\\"])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_df = df[:50]\\n\",\n    \"eval_df = df[50:100]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>prefix</th>\\n\",\n       \"      <th>input_text</th>\\n\",\n       \"      <th>target_text</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Hi.</td>\\n\",\n       \"      <td>Merhaba.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Hi.</td>\\n\",\n       \"      <td>Selam.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Run!</td>\\n\",\n       \"      <td>Kaç!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Run!</td>\\n\",\n       \"      <td>Koş!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Run.</td>\\n\",\n       \"      <td>Kaç!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>5</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Run.</td>\\n\",\n       \"      <td>Koş!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>6</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Who?</td>\\n\",\n       \"      <td>Kim?</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Fire!</td>\\n\",\n       \"      <td>Ateş!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>8</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Fire!</td>\\n\",\n       \"      <td>Yangın!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Help!</td>\\n\",\n       \"      <td>Yardım et!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>10</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Jump.</td>\\n\",\n       \"      <td>Defol.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>11</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Stop!</td>\\n\",\n       \"      <td>Dur!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>12</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Stop!</td>\\n\",\n       \"      <td>Bırak!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>13</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Wait.</td>\\n\",\n       \"      <td>Bekle.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>14</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Do it.</td>\\n\",\n       \"      <td>Onu yap.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>15</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Go on.</td>\\n\",\n       \"      <td>Devam et.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>16</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Hello!</td>\\n\",\n       \"      <td>Merhaba.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>17</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Hello!</td>\\n\",\n       \"      <td>Selam.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>18</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Hurry!</td>\\n\",\n       \"      <td>Acele et!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>19</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I ran.</td>\\n\",\n       \"      <td>Koştum.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>20</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I see.</td>\\n\",\n       \"      <td>Anlıyorum.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>21</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I see.</td>\\n\",\n       \"      <td>Görüyorum.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>22</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I won.</td>\\n\",\n       \"      <td>Kazandım.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>23</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Oh no!</td>\\n\",\n       \"      <td>Oh hayır!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>24</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Relax.</td>\\n\",\n       \"      <td>Rahatla.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>25</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Smile.</td>\\n\",\n       \"      <td>Gülümse.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>26</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Attack!</td>\\n\",\n       \"      <td>Saldır!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>27</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Attack!</td>\\n\",\n       \"      <td>Hücum!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>28</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Eat it.</td>\\n\",\n       \"      <td>Bunu ye.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>29</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Eat up.</td>\\n\",\n       \"      <td>Silip süpür.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>30</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Freeze!</td>\\n\",\n       \"      <td>Kımıldama!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>31</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Freeze!</td>\\n\",\n       \"      <td>Olduğun yerde kal!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>32</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Go now.</td>\\n\",\n       \"      <td>Şimdi git.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>33</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Got it!</td>\\n\",\n       \"      <td>Anladım!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>34</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Got it?</td>\\n\",\n       \"      <td>Anladın mı?</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>35</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>He ran.</td>\\n\",\n       \"      <td>O koştu.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>36</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Hop in.</td>\\n\",\n       \"      <td>Atla.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>37</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I fell.</td>\\n\",\n       \"      <td>Ben düştüm.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>38</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I know.</td>\\n\",\n       \"      <td>Biliyorum.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>39</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I left.</td>\\n\",\n       \"      <td>Ben ayrıldım.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>40</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I lost.</td>\\n\",\n       \"      <td>Kayboldum.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>41</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I paid.</td>\\n\",\n       \"      <td>Ödedim.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>42</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I quit.</td>\\n\",\n       \"      <td>Ben istifa ettim.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>43</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I swim.</td>\\n\",\n       \"      <td>Yüzerim.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>44</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I work.</td>\\n\",\n       \"      <td>Çalışıyorum.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>45</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I'm 19.</td>\\n\",\n       \"      <td>Ben 19 yaşındayım.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>46</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I'm OK.</td>\\n\",\n       \"      <td>Ben iyiyim.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>47</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I'm up.</td>\\n\",\n       \"      <td>Ben uyanığım.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>48</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>No way!</td>\\n\",\n       \"      <td>Mümkün değil!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>49</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Try it.</td>\\n\",\n       \"      <td>Bunu dene.</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"                          prefix input_text         target_text\\n\",\n       \"0   translate english to turkish        Hi.            Merhaba.\\n\",\n       \"1   translate english to turkish        Hi.              Selam.\\n\",\n       \"2   translate english to turkish       Run!                Kaç!\\n\",\n       \"3   translate english to turkish       Run!                Koş!\\n\",\n       \"4   translate english to turkish       Run.                Kaç!\\n\",\n       \"5   translate english to turkish       Run.                Koş!\\n\",\n       \"6   translate english to turkish       Who?                Kim?\\n\",\n       \"7   translate english to turkish      Fire!               Ateş!\\n\",\n       \"8   translate english to turkish      Fire!             Yangın!\\n\",\n       \"9   translate english to turkish      Help!          Yardım et!\\n\",\n       \"10  translate english to turkish      Jump.              Defol.\\n\",\n       \"11  translate english to turkish      Stop!                Dur!\\n\",\n       \"12  translate english to turkish      Stop!              Bırak!\\n\",\n       \"13  translate english to turkish      Wait.              Bekle.\\n\",\n       \"14  translate english to turkish     Do it.            Onu yap.\\n\",\n       \"15  translate english to turkish     Go on.           Devam et.\\n\",\n       \"16  translate english to turkish     Hello!            Merhaba.\\n\",\n       \"17  translate english to turkish     Hello!              Selam.\\n\",\n       \"18  translate english to turkish     Hurry!           Acele et!\\n\",\n       \"19  translate english to turkish     I ran.             Koştum.\\n\",\n       \"20  translate english to turkish     I see.          Anlıyorum.\\n\",\n       \"21  translate english to turkish     I see.          Görüyorum.\\n\",\n       \"22  translate english to turkish     I won.           Kazandım.\\n\",\n       \"23  translate english to turkish     Oh no!           Oh hayır!\\n\",\n       \"24  translate english to turkish     Relax.            Rahatla.\\n\",\n       \"25  translate english to turkish     Smile.            Gülümse.\\n\",\n       \"26  translate english to turkish    Attack!             Saldır!\\n\",\n       \"27  translate english to turkish    Attack!              Hücum!\\n\",\n       \"28  translate english to turkish    Eat it.            Bunu ye.\\n\",\n       \"29  translate english to turkish    Eat up.        Silip süpür.\\n\",\n       \"30  translate english to turkish    Freeze!          Kımıldama!\\n\",\n       \"31  translate english to turkish    Freeze!  Olduğun yerde kal!\\n\",\n       \"32  translate english to turkish    Go now.          Şimdi git.\\n\",\n       \"33  translate english to turkish    Got it!            Anladım!\\n\",\n       \"34  translate english to turkish    Got it?         Anladın mı?\\n\",\n       \"35  translate english to turkish    He ran.            O koştu.\\n\",\n       \"36  translate english to turkish    Hop in.               Atla.\\n\",\n       \"37  translate english to turkish    I fell.         Ben düştüm.\\n\",\n       \"38  translate english to turkish    I know.          Biliyorum.\\n\",\n       \"39  translate english to turkish    I left.       Ben ayrıldım.\\n\",\n       \"40  translate english to turkish    I lost.          Kayboldum.\\n\",\n       \"41  translate english to turkish    I paid.             Ödedim.\\n\",\n       \"42  translate english to turkish    I quit.   Ben istifa ettim.\\n\",\n       \"43  translate english to turkish    I swim.            Yüzerim.\\n\",\n       \"44  translate english to turkish    I work.        Çalışıyorum.\\n\",\n       \"45  translate english to turkish    I'm 19.  Ben 19 yaşındayım.\\n\",\n       \"46  translate english to turkish    I'm OK.         Ben iyiyim.\\n\",\n       \"47  translate english to turkish    I'm up.       Ben uyanığım.\\n\",\n       \"48  translate english to turkish    No way!       Mümkün değil!\\n\",\n       \"49  translate english to turkish    Try it.          Bunu dene.\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"train_df\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import logging\\n\",\n    \"import pandas as pd\\n\",\n    \"from simpletransformers.t5 import T5Model, T5Args\\n\",\n    \"\\n\",\n    \"logging.basicConfig(level=logging.INFO)\\n\",\n    \"transformers_logger = logging.getLogger(\\\"transformers\\\")\\n\",\n    \"transformers_logger.setLevel(logging.WARNING)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model_args = T5Args()\\n\",\n    \"model_args.max_seq_length = 96\\n\",\n    \"model_args.train_batch_size = 20\\n\",\n    \"model_args.eval_batch_size = 20\\n\",\n    \"model_args.num_train_epochs = 1\\n\",\n    \"model_args.evaluate_during_training = True\\n\",\n    \"model_args.evaluate_during_training_steps = 30000\\n\",\n    \"model_args.use_multiprocessing = False\\n\",\n    \"model_args.fp16 = False\\n\",\n    \"model_args.save_steps = -1\\n\",\n    \"model_args.save_eval_checkpoints = False\\n\",\n    \"model_args.no_cache = True\\n\",\n    \"model_args.reprocess_input_data = True\\n\",\n    \"model_args.overwrite_output_dir = True\\n\",\n    \"model_args.preprocess_inputs = False\\n\",\n    \"model_args.num_return_sequences = 1\\n\",\n    \"model_args.wandb_project = \\\"MT5 English-Turkish Translation\\\"\\n\",\n    \"\\n\",\n    \"model = T5Model(\\\"mt5\\\", \\\"google/mt5-small\\\", args=model_args, use_cuda=False)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO:simpletransformers.t5.t5_utils: Creating features from dataset file at cache_dir/\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"6a1508ed96aa4d3dafe89255162b6998\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, max=50.0), HTML(value='')))\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO:simpletransformers.t5.t5_model: Training started\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\",\n      \"Using Adafactor for T5\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"cd2f6b5a07db4e329b9c527c8c6438c2\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Epoch', max=1.0, style=ProgressStyle(description_width='i…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\u001b[34m\\u001b[1mwandb\\u001b[0m: You can find your API key in your browser here: https://wandb.ai/authorize\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"wandb: Paste an API key from your profile and hit enter: ········\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\u001b[34m\\u001b[1mwandb\\u001b[0m: W&B syncing is set to `offline` in this directory.  Run `wandb online` or set WANDB_MODE=online to enable cloud syncing.\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"faf82c233e7a4a75870145d185001e12\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Running Epoch 0 of 1', max=3.0, style=ProgressStyle(descr…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/home/meysam/anaconda3/lib/python3.8/site-packages/transformers/optimization.py:557: UserWarning: This overload of add_ is deprecated:\\n\",\n      \"\\tadd_(Number alpha, Tensor other)\\n\",\n      \"Consider using one of the following signatures instead:\\n\",\n      \"\\tadd_(Tensor other, *, Number alpha) (Triggered internally at  /pytorch/torch/csrc/utils/python_arg_parser.cpp:882.)\\n\",\n      \"  exp_avg_sq_row.mul_(beta2t).add_(1.0 - beta2t, update.mean(dim=-1))\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/home/meysam/anaconda3/lib/python3.8/site-packages/torch/optim/lr_scheduler.py:216: UserWarning: Please also save or load the state of the optimizer when saving or loading the scheduler.\\n\",\n      \"  warnings.warn(SAVE_STATE_WARNING, UserWarning)\\n\",\n      \"INFO:simpletransformers.t5.t5_utils: Creating features from dataset file at cache_dir/\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"37bc5359c47f47c8872b88b880bf1cce\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, max=50.0), HTML(value='')))\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\",\n      \"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO:simpletransformers.t5.t5_model: Training of google/mt5-small model complete. Saved to outputs/.\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(3,\\n\",\n       \" {'global_step': [3],\\n\",\n       \"  'eval_loss': [22.320918401082356],\\n\",\n       \"  'train_loss': [23.541107177734375]})\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"model.train_model(train_df, eval_data=eval_df)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model_args = T5Args()\\n\",\n    \"model_args.max_length = 512\\n\",\n    \"model_args.length_penalty = 1\\n\",\n    \"model_args.num_beams = 10\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model = T5Model(\\\"mt5\\\", \\\"outputs\\\", args=model_args, use_cuda=False)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python [conda env:root] *\",\n   \"language\": \"python\",\n   \"name\": \"conda-root-py\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.8.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "CH04/CH04a_Summarization_with_BART.ipynb",
    "content": "{\n  \"nbformat\": 4,\n  \"nbformat_minor\": 0,\n  \"metadata\": {\n    \"accelerator\": \"GPU\",\n    \"colab\": {\n      \"name\": \"CH04a_Summarization_with_BART.ipynb\",\n      \"provenance\": []\n    },\n    \"kernelspec\": {\n      \"display_name\": \"Python 3\",\n      \"name\": \"python3\"\n    },\n    \"language_info\": {\n      \"name\": \"python\"\n    },\n    \"widgets\": {\n      \"application/vnd.jupyter.widget-state+json\": {\n        \"facef60f04d34491951e59bbd932597b\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"HBoxModel\",\n          \"state\": {\n            \"_view_name\": \"HBoxView\",\n            \"_dom_classes\": [],\n            \"_model_name\": \"HBoxModel\",\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"box_style\": \"\",\n            \"layout\": \"IPY_MODEL_59c934a7dea3406aab7f531999243b8d\",\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"children\": [\n              \"IPY_MODEL_bd6b1786cf6842a5a29b31185772f9c2\",\n              \"IPY_MODEL_67f2584b46a0458d84e31b7960fd313e\"\n            ]\n          }\n        },\n        \"59c934a7dea3406aab7f531999243b8d\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"bd6b1786cf6842a5a29b31185772f9c2\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"FloatProgressModel\",\n          \"state\": {\n            \"_view_name\": \"ProgressView\",\n            \"style\": \"IPY_MODEL_8505dbc934ac431f8ddd715e82a53a42\",\n            \"_dom_classes\": [],\n            \"description\": \"Downloading: 100%\",\n            \"_model_name\": \"FloatProgressModel\",\n            \"bar_style\": \"success\",\n            \"max\": 1802,\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"value\": 1802,\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"orientation\": \"horizontal\",\n            \"min\": 0,\n            \"description_tooltip\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"layout\": \"IPY_MODEL_959c30f180be442ba4ef984bec93b26c\"\n          }\n        },\n        \"67f2584b46a0458d84e31b7960fd313e\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"HTMLModel\",\n          \"state\": {\n            \"_view_name\": \"HTMLView\",\n            \"style\": \"IPY_MODEL_4b7fb3d579a04c129bf248232266a5d9\",\n            \"_dom_classes\": [],\n            \"description\": \"\",\n            \"_model_name\": \"HTMLModel\",\n            \"placeholder\": \"​\",\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"value\": \" 1.80k/1.80k [00:26&lt;00:00, 68.1B/s]\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"description_tooltip\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"layout\": \"IPY_MODEL_66ebb7e9eacc4f3682defc38002e707f\"\n          }\n        },\n        \"8505dbc934ac431f8ddd715e82a53a42\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"ProgressStyleModel\",\n          \"state\": {\n            \"_view_name\": \"StyleView\",\n            \"_model_name\": \"ProgressStyleModel\",\n            \"description_width\": \"initial\",\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"bar_color\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\"\n          }\n        },\n        \"959c30f180be442ba4ef984bec93b26c\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"4b7fb3d579a04c129bf248232266a5d9\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"DescriptionStyleModel\",\n          \"state\": {\n            \"_view_name\": \"StyleView\",\n            \"_model_name\": \"DescriptionStyleModel\",\n            \"description_width\": \"\",\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"_model_module\": \"@jupyter-widgets/controls\"\n          }\n        },\n        \"66ebb7e9eacc4f3682defc38002e707f\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"d7121a633f5c42178c6b860d87bae0f8\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"HBoxModel\",\n          \"state\": {\n            \"_view_name\": \"HBoxView\",\n            \"_dom_classes\": [],\n            \"_model_name\": \"HBoxModel\",\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"box_style\": \"\",\n            \"layout\": \"IPY_MODEL_869e3970b2554ab391b9018dc81ded3c\",\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"children\": [\n              \"IPY_MODEL_a4ee5563985a493dbda23bd9ae0374c1\",\n              \"IPY_MODEL_05063ed491f14c73b42408d3511e2f59\"\n            ]\n          }\n        },\n        \"869e3970b2554ab391b9018dc81ded3c\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"a4ee5563985a493dbda23bd9ae0374c1\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"FloatProgressModel\",\n          \"state\": {\n            \"_view_name\": \"ProgressView\",\n            \"style\": \"IPY_MODEL_efcd157d19a447a5a4393a0cfd89775d\",\n            \"_dom_classes\": [],\n            \"description\": \"Downloading: 100%\",\n            \"_model_name\": \"FloatProgressModel\",\n            \"bar_style\": \"success\",\n            \"max\": 1222317369,\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"value\": 1222317369,\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"orientation\": \"horizontal\",\n            \"min\": 0,\n            \"description_tooltip\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"layout\": \"IPY_MODEL_e58f3eaaf8504612b9152baad3ac53bc\"\n          }\n        },\n        \"05063ed491f14c73b42408d3511e2f59\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"HTMLModel\",\n          \"state\": {\n            \"_view_name\": \"HTMLView\",\n            \"style\": \"IPY_MODEL_c3af1159066c43b089720cbccf696df8\",\n            \"_dom_classes\": [],\n            \"description\": \"\",\n            \"_model_name\": \"HTMLModel\",\n            \"placeholder\": \"​\",\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"value\": \" 1.22G/1.22G [00:25&lt;00:00, 47.0MB/s]\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"description_tooltip\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"layout\": \"IPY_MODEL_5deba3cc507f4b79b82f63a65b3eee1f\"\n          }\n        },\n        \"efcd157d19a447a5a4393a0cfd89775d\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"ProgressStyleModel\",\n          \"state\": {\n            \"_view_name\": \"StyleView\",\n            \"_model_name\": \"ProgressStyleModel\",\n            \"description_width\": \"initial\",\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"bar_color\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\"\n          }\n        },\n        \"e58f3eaaf8504612b9152baad3ac53bc\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"c3af1159066c43b089720cbccf696df8\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"DescriptionStyleModel\",\n          \"state\": {\n            \"_view_name\": \"StyleView\",\n            \"_model_name\": \"DescriptionStyleModel\",\n            \"description_width\": \"\",\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"_model_module\": \"@jupyter-widgets/controls\"\n          }\n        },\n        \"5deba3cc507f4b79b82f63a65b3eee1f\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"a3e462e7704e4b438ceebff8d673f342\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"HBoxModel\",\n          \"state\": {\n            \"_view_name\": \"HBoxView\",\n            \"_dom_classes\": [],\n            \"_model_name\": \"HBoxModel\",\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"box_style\": \"\",\n            \"layout\": \"IPY_MODEL_a7db7e3001704d3a83be825b22b06dcc\",\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"children\": [\n              \"IPY_MODEL_f74c362afad34a25afa33e3be67819b7\",\n              \"IPY_MODEL_73e337de9fca428292d8edca86e5d2a9\"\n            ]\n          }\n        },\n        \"a7db7e3001704d3a83be825b22b06dcc\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"f74c362afad34a25afa33e3be67819b7\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"FloatProgressModel\",\n          \"state\": {\n            \"_view_name\": \"ProgressView\",\n            \"style\": \"IPY_MODEL_61bbdd1fc999432984e0137299741f0b\",\n            \"_dom_classes\": [],\n            \"description\": \"Downloading: 100%\",\n            \"_model_name\": \"FloatProgressModel\",\n            \"bar_style\": \"success\",\n            \"max\": 898822,\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"value\": 898822,\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"orientation\": \"horizontal\",\n            \"min\": 0,\n            \"description_tooltip\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"layout\": \"IPY_MODEL_24b354d1b2634b89b05fb43bbb48f016\"\n          }\n        },\n        \"73e337de9fca428292d8edca86e5d2a9\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"HTMLModel\",\n          \"state\": {\n            \"_view_name\": \"HTMLView\",\n            \"style\": \"IPY_MODEL_1b41f0e3f8b5489da89eb6d4cac3ce86\",\n            \"_dom_classes\": [],\n            \"description\": \"\",\n            \"_model_name\": \"HTMLModel\",\n            \"placeholder\": \"​\",\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"value\": \" 899k/899k [00:02&lt;00:00, 417kB/s]\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"description_tooltip\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"layout\": \"IPY_MODEL_c2341274c04446b6ba6db13c8dbb7244\"\n          }\n        },\n        \"61bbdd1fc999432984e0137299741f0b\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"ProgressStyleModel\",\n          \"state\": {\n            \"_view_name\": \"StyleView\",\n            \"_model_name\": \"ProgressStyleModel\",\n            \"description_width\": \"initial\",\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"bar_color\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\"\n          }\n        },\n        \"24b354d1b2634b89b05fb43bbb48f016\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"1b41f0e3f8b5489da89eb6d4cac3ce86\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"DescriptionStyleModel\",\n          \"state\": {\n            \"_view_name\": \"StyleView\",\n            \"_model_name\": \"DescriptionStyleModel\",\n            \"description_width\": \"\",\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"_model_module\": \"@jupyter-widgets/controls\"\n          }\n        },\n        \"c2341274c04446b6ba6db13c8dbb7244\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"fb3389629a924b009caaeda22bea2fb7\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"HBoxModel\",\n          \"state\": {\n            \"_view_name\": \"HBoxView\",\n            \"_dom_classes\": [],\n            \"_model_name\": \"HBoxModel\",\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"box_style\": \"\",\n            \"layout\": \"IPY_MODEL_a946d189576844d49827a3a2e5363637\",\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"children\": [\n              \"IPY_MODEL_89c1d55ca8ba4e4eb384a1bb6c0092b9\",\n              \"IPY_MODEL_eace9dd14d694207be235de99f7c7ba9\"\n            ]\n          }\n        },\n        \"a946d189576844d49827a3a2e5363637\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"89c1d55ca8ba4e4eb384a1bb6c0092b9\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"FloatProgressModel\",\n          \"state\": {\n            \"_view_name\": \"ProgressView\",\n            \"style\": \"IPY_MODEL_9ba8108294c545f5a93b4eeaeeca38d9\",\n            \"_dom_classes\": [],\n            \"description\": \"Downloading: 100%\",\n            \"_model_name\": \"FloatProgressModel\",\n            \"bar_style\": \"success\",\n            \"max\": 456318,\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"value\": 456318,\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"orientation\": \"horizontal\",\n            \"min\": 0,\n            \"description_tooltip\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"layout\": \"IPY_MODEL_5d69c69832d74494afd501c133461ba2\"\n          }\n        },\n        \"eace9dd14d694207be235de99f7c7ba9\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"HTMLModel\",\n          \"state\": {\n            \"_view_name\": \"HTMLView\",\n            \"style\": \"IPY_MODEL_bd1aee3d89a04d55a6f24e752129ee6b\",\n            \"_dom_classes\": [],\n            \"description\": \"\",\n            \"_model_name\": \"HTMLModel\",\n            \"placeholder\": \"​\",\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"value\": \" 456k/456k [00:01&lt;00:00, 379kB/s]\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"description_tooltip\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"layout\": \"IPY_MODEL_dbc1726352314af8b3fab593d9fb6a98\"\n          }\n        },\n        \"9ba8108294c545f5a93b4eeaeeca38d9\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"ProgressStyleModel\",\n          \"state\": {\n            \"_view_name\": \"StyleView\",\n            \"_model_name\": \"ProgressStyleModel\",\n            \"description_width\": \"initial\",\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"bar_color\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\"\n          }\n        },\n        \"5d69c69832d74494afd501c133461ba2\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"bd1aee3d89a04d55a6f24e752129ee6b\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"DescriptionStyleModel\",\n          \"state\": {\n            \"_view_name\": \"StyleView\",\n            \"_model_name\": \"DescriptionStyleModel\",\n            \"description_width\": \"\",\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"_model_module\": \"@jupyter-widgets/controls\"\n          }\n        },\n        \"dbc1726352314af8b3fab593d9fb6a98\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"578dfa856200473fb6f9dec166eb78ca\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"HBoxModel\",\n          \"state\": {\n            \"_view_name\": \"HBoxView\",\n            \"_dom_classes\": [],\n            \"_model_name\": \"HBoxModel\",\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"box_style\": \"\",\n            \"layout\": \"IPY_MODEL_5c3a8e8fd65e460b84aabbd5c1e32d95\",\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"children\": [\n              \"IPY_MODEL_6ec813e41ded47d48ad3005e5cd0eea9\",\n              \"IPY_MODEL_24b651e6a935461e863b94027b756319\"\n            ]\n          }\n        },\n        \"5c3a8e8fd65e460b84aabbd5c1e32d95\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"6ec813e41ded47d48ad3005e5cd0eea9\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"FloatProgressModel\",\n          \"state\": {\n            \"_view_name\": \"ProgressView\",\n            \"style\": \"IPY_MODEL_bd37a1cd474c4c7da79a77fada5c650c\",\n            \"_dom_classes\": [],\n            \"description\": \"Downloading: 100%\",\n            \"_model_name\": \"FloatProgressModel\",\n            \"bar_style\": \"success\",\n            \"max\": 26,\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"value\": 26,\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"orientation\": \"horizontal\",\n            \"min\": 0,\n            \"description_tooltip\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"layout\": \"IPY_MODEL_5166b92a544b4a2aad72a54f2e2edaec\"\n          }\n        },\n        \"24b651e6a935461e863b94027b756319\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"HTMLModel\",\n          \"state\": {\n            \"_view_name\": \"HTMLView\",\n            \"style\": \"IPY_MODEL_bfa59b6c81a8430394366cb9c77641da\",\n            \"_dom_classes\": [],\n            \"description\": \"\",\n            \"_model_name\": \"HTMLModel\",\n            \"placeholder\": \"​\",\n            \"_view_module\": \"@jupyter-widgets/controls\",\n            \"_model_module_version\": \"1.5.0\",\n            \"value\": \" 26.0/26.0 [00:00&lt;00:00, 61.9B/s]\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.5.0\",\n            \"description_tooltip\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\",\n            \"layout\": \"IPY_MODEL_c85e2f2493a74ef89a9368ba8e9d3271\"\n          }\n        },\n        \"bd37a1cd474c4c7da79a77fada5c650c\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"ProgressStyleModel\",\n          \"state\": {\n            \"_view_name\": \"StyleView\",\n            \"_model_name\": \"ProgressStyleModel\",\n            \"description_width\": \"initial\",\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"bar_color\": null,\n            \"_model_module\": \"@jupyter-widgets/controls\"\n          }\n        },\n        \"5166b92a544b4a2aad72a54f2e2edaec\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        },\n        \"bfa59b6c81a8430394366cb9c77641da\": {\n          \"model_module\": \"@jupyter-widgets/controls\",\n          \"model_name\": \"DescriptionStyleModel\",\n          \"state\": {\n            \"_view_name\": \"StyleView\",\n            \"_model_name\": \"DescriptionStyleModel\",\n            \"description_width\": \"\",\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"_model_module_version\": \"1.5.0\",\n            \"_view_count\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"_model_module\": \"@jupyter-widgets/controls\"\n          }\n        },\n        \"c85e2f2493a74ef89a9368ba8e9d3271\": {\n          \"model_module\": \"@jupyter-widgets/base\",\n          \"model_name\": \"LayoutModel\",\n          \"state\": {\n            \"_view_name\": \"LayoutView\",\n            \"grid_template_rows\": null,\n            \"right\": null,\n            \"justify_content\": null,\n            \"_view_module\": \"@jupyter-widgets/base\",\n            \"overflow\": null,\n            \"_model_module_version\": \"1.2.0\",\n            \"_view_count\": null,\n            \"flex_flow\": null,\n            \"width\": null,\n            \"min_width\": null,\n            \"border\": null,\n            \"align_items\": null,\n            \"bottom\": null,\n            \"_model_module\": \"@jupyter-widgets/base\",\n            \"top\": null,\n            \"grid_column\": null,\n            \"overflow_y\": null,\n            \"overflow_x\": null,\n            \"grid_auto_flow\": null,\n            \"grid_area\": null,\n            \"grid_template_columns\": null,\n            \"flex\": null,\n            \"_model_name\": \"LayoutModel\",\n            \"justify_items\": null,\n            \"grid_row\": null,\n            \"max_height\": null,\n            \"align_content\": null,\n            \"visibility\": null,\n            \"align_self\": null,\n            \"height\": null,\n            \"min_height\": null,\n            \"padding\": null,\n            \"grid_auto_rows\": null,\n            \"grid_gap\": null,\n            \"max_width\": null,\n            \"order\": null,\n            \"_view_module_version\": \"1.2.0\",\n            \"grid_template_areas\": null,\n            \"object_position\": null,\n            \"object_fit\": null,\n            \"grid_auto_columns\": null,\n            \"margin\": null,\n            \"display\": null,\n            \"left\": null\n          }\n        }\n      }\n    }\n  },\n  \"cells\": [\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"OUN2q1l5EXWe\",\n        \"outputId\": \"7f42f3ed-7a93-4635-e24b-798be68c6b21\"\n      },\n      \"source\": [\n        \"!pip install transformers\"\n      ],\n      \"execution_count\": 5,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Collecting transformers\\n\",\n            \"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/fd/1a/41c644c963249fd7f3836d926afa1e3f1cc234a1c40d80c5f03ad8f6f1b2/transformers-4.8.2-py3-none-any.whl (2.5MB)\\n\",\n            \"\\u001b[K     |████████████████████████████████| 2.5MB 14.0MB/s \\n\",\n            \"\\u001b[?25hRequirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\n            \"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.6.0)\\n\",\n            \"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\n            \"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\n            \"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\n            \"Collecting sacremoses\\n\",\n            \"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/ee/67241dc87f266093c533a2d4d3d69438e57d7a90abb216fa076e7d475d4a/sacremoses-0.0.45-py3-none-any.whl (895kB)\\n\",\n            \"\\u001b[K     |████████████████████████████████| 901kB 50.5MB/s \\n\",\n            \"\\u001b[?25hRequirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\n            \"Collecting tokenizers<0.11,>=0.10.1\\n\",\n            \"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d4/e2/df3543e8ffdab68f5acc73f613de9c2b155ac47f162e725dcac87c521c11/tokenizers-0.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.3MB)\\n\",\n            \"\\u001b[K     |████████████████████████████████| 3.3MB 46.8MB/s \\n\",\n            \"\\u001b[?25hRequirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\n            \"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\n            \"Collecting huggingface-hub==0.0.12\\n\",\n            \"  Downloading https://files.pythonhosted.org/packages/2f/ee/97e253668fda9b17e968b3f97b2f8e53aa0127e8807d24a547687423fe0b/huggingface_hub-0.0.12-py3-none-any.whl\\n\",\n            \"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\n            \"Requirement already satisfied: typing-extensions>=3.6.4; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.7.4.3)\\n\",\n            \"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\n            \"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\n            \"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\n            \"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\n            \"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2021.5.30)\\n\",\n            \"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\n            \"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\n            \"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\n            \"Installing collected packages: sacremoses, tokenizers, huggingface-hub, transformers\\n\",\n            \"Successfully installed huggingface-hub-0.0.12 sacremoses-0.0.45 tokenizers-0.10.3 transformers-4.8.2\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"C3Srt2iLEZDT\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 268,\n          \"referenced_widgets\": [\n            \"facef60f04d34491951e59bbd932597b\",\n            \"59c934a7dea3406aab7f531999243b8d\",\n            \"bd6b1786cf6842a5a29b31185772f9c2\",\n            \"67f2584b46a0458d84e31b7960fd313e\",\n            \"8505dbc934ac431f8ddd715e82a53a42\",\n            \"959c30f180be442ba4ef984bec93b26c\",\n            \"4b7fb3d579a04c129bf248232266a5d9\",\n            \"66ebb7e9eacc4f3682defc38002e707f\",\n            \"d7121a633f5c42178c6b860d87bae0f8\",\n            \"869e3970b2554ab391b9018dc81ded3c\",\n            \"a4ee5563985a493dbda23bd9ae0374c1\",\n            \"05063ed491f14c73b42408d3511e2f59\",\n            \"efcd157d19a447a5a4393a0cfd89775d\",\n            \"e58f3eaaf8504612b9152baad3ac53bc\",\n            \"c3af1159066c43b089720cbccf696df8\",\n            \"5deba3cc507f4b79b82f63a65b3eee1f\",\n            \"a3e462e7704e4b438ceebff8d673f342\",\n            \"a7db7e3001704d3a83be825b22b06dcc\",\n            \"f74c362afad34a25afa33e3be67819b7\",\n            \"73e337de9fca428292d8edca86e5d2a9\",\n            \"61bbdd1fc999432984e0137299741f0b\",\n            \"24b354d1b2634b89b05fb43bbb48f016\",\n            \"1b41f0e3f8b5489da89eb6d4cac3ce86\",\n            \"c2341274c04446b6ba6db13c8dbb7244\",\n            \"fb3389629a924b009caaeda22bea2fb7\",\n            \"a946d189576844d49827a3a2e5363637\",\n            \"89c1d55ca8ba4e4eb384a1bb6c0092b9\",\n            \"eace9dd14d694207be235de99f7c7ba9\",\n            \"9ba8108294c545f5a93b4eeaeeca38d9\",\n            \"5d69c69832d74494afd501c133461ba2\",\n            \"bd1aee3d89a04d55a6f24e752129ee6b\",\n            \"dbc1726352314af8b3fab593d9fb6a98\",\n            \"578dfa856200473fb6f9dec166eb78ca\",\n            \"5c3a8e8fd65e460b84aabbd5c1e32d95\",\n            \"6ec813e41ded47d48ad3005e5cd0eea9\",\n            \"24b651e6a935461e863b94027b756319\",\n            \"bd37a1cd474c4c7da79a77fada5c650c\",\n            \"5166b92a544b4a2aad72a54f2e2edaec\",\n            \"bfa59b6c81a8430394366cb9c77641da\",\n            \"c85e2f2493a74ef89a9368ba8e9d3271\"\n          ]\n        },\n        \"outputId\": \"cbf4c731-7d84-4c28-8733-83c318fa7501\"\n      },\n      \"source\": [\n        \"from transformers import BartTokenizer, BartForConditionalGeneration, BartConfig\\n\",\n        \"from transformers import pipeline\\n\",\n        \"\\n\",\n        \"model = BartForConditionalGeneration.from_pretrained('sshleifer/distilbart-cnn-12-6')\\n\",\n        \"tokenizer = BartTokenizer.from_pretrained('sshleifer/distilbart-cnn-12-6')\\n\",\n        \"\\n\",\n        \"nlp=pipeline(\\\"summarization\\\", model=model, tokenizer=tokenizer)\"\n      ],\n      \"execution_count\": 6,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"application/vnd.jupyter.widget-view+json\": {\n              \"model_id\": \"facef60f04d34491951e59bbd932597b\",\n              \"version_minor\": 0,\n              \"version_major\": 2\n            },\n            \"text/plain\": [\n              \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1802.0, style=ProgressStyle(description…\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          }\n        },\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"\\n\"\n          ],\n          \"name\": \"stdout\"\n        },\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"application/vnd.jupyter.widget-view+json\": {\n              \"model_id\": \"d7121a633f5c42178c6b860d87bae0f8\",\n              \"version_minor\": 0,\n              \"version_major\": 2\n            },\n            \"text/plain\": [\n              \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1222317369.0, style=ProgressStyle(descr…\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          }\n        },\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"\\n\"\n          ],\n          \"name\": \"stdout\"\n        },\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"application/vnd.jupyter.widget-view+json\": {\n              \"model_id\": \"a3e462e7704e4b438ceebff8d673f342\",\n              \"version_minor\": 0,\n              \"version_major\": 2\n            },\n            \"text/plain\": [\n              \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=898822.0, style=ProgressStyle(descripti…\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          }\n        },\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"\\n\"\n          ],\n          \"name\": \"stdout\"\n        },\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"application/vnd.jupyter.widget-view+json\": {\n              \"model_id\": \"fb3389629a924b009caaeda22bea2fb7\",\n              \"version_minor\": 0,\n              \"version_major\": 2\n            },\n            \"text/plain\": [\n              \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=456318.0, style=ProgressStyle(descripti…\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          }\n        },\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"\\n\"\n          ],\n          \"name\": \"stdout\"\n        },\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"application/vnd.jupyter.widget-view+json\": {\n              \"model_id\": \"578dfa856200473fb6f9dec166eb78ca\",\n              \"version_minor\": 0,\n              \"version_major\": 2\n            },\n            \"text/plain\": [\n              \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=26.0, style=ProgressStyle(description_w…\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          }\n        },\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"b8J1Tj4nEcrV\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"HZLTG9wPEmev\"\n      },\n      \"source\": [\n        \"import pprint\\n\",\n        \"pp = pprint.PrettyPrinter(indent=0, width=100)\"\n      ],\n      \"execution_count\": 7,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"wD8Q0mp0COac\"\n      },\n      \"source\": [\n        \"text='''\\n\",\n        \"We order two different types of jewelry from this\\n\",\n        \"company the other jewelry we order is perfect.\\n\",\n        \"However with this jewelry I have a few things I\\n\",\n        \"don't like. The little Stone comes out of these\\n\",\n        \"and customers are complaining and bringing them\\n\",\n        \"back and we are having to put new jewelry in their\\n\",\n        \"holes. You cannot sterilize these in an autoclave\\n\",\n        \"as well because it heats up too much and the glue\\n\",\n        \"does not hold up so the second group of these that\\n\",\n        \"we used I did not sterilize them that way and the\\n\",\n        \"stones still came out. When I use a dermal clamp\\n\",\n        \"to put the top on the stones come out immediately.\\n\",\n        \"DO not waste your money on this particular product\\n\",\n        \"buy the three mm. that has the claws that hold the\\n\",\n        \"jewelry in those are perfect. So now I'm stuck\\n\",\n        \"with jewelry that I can't sell not good for\\n\",\n        \"business.\\n\",\n        \"'''\\n\",\n        \"q=nlp(text)\"\n      ],\n      \"execution_count\": 10,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"IU-SUAxVIHz1\",\n        \"outputId\": \"b1d73fc6-9d63-49db-9e4e-e38f1999a1aa\"\n      },\n      \"source\": [\n        \"pp.pprint(q[0]['summary_text'])\"\n      ],\n      \"execution_count\": 16,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"(' The little Stone comes out of these little stones and customers are complaining and bringing '\\n\",\n            \" 'them back and we are having to put new jewelry in their holes . You cannot sterilize these in an '\\n\",\n            \" 'autoclave because it heats up too much and the glue does not hold up so the second group of '\\n\",\n            \" 'these that we used I did not sterilize them that way and the stones still came out .')\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"gjI1wnKxDvpN\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    }\n  ]\n}"
  },
  {
    "path": "CH04/CH04b_Autoregressive_language_model_training.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--2021-07-05 17:43:35--  https://raw.githubusercontent.com/teropa/nlp/master/resources/corpora/gutenberg/austen-emma.txt\\n\",\n      \"Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.108.133, 185.199.109.133, ...\\n\",\n      \"Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected.\\n\",\n      \"HTTP request sent, awaiting response... 200 OK\\n\",\n      \"Length: 887071 (866K) [text/plain]\\n\",\n      \"Saving to: ‘austen-emma.txt’\\n\",\n      \"\\n\",\n      \"austen-emma.txt     100%[===================>] 866.28K  1.41MB/s    in 0.6s    \\n\",\n      \"\\n\",\n      \"2021-07-05 17:43:36 (1.41 MB/s) - ‘austen-emma.txt’ saved [887071/887071]\\n\",\n      \"\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"!wget https://raw.githubusercontent.com/teropa/nlp/master/resources/corpora/gutenberg/austen-emma.txt\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from tokenizers import ByteLevelBPETokenizer\\n\",\n    \"import tensorflow as tf\\n\",\n    \"import numpy as np\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from tokenizers.models import BPE\\n\",\n    \"from tokenizers import Tokenizer\\n\",\n    \"from tokenizers.decoders import ByteLevel as ByteLevelDecoder\\n\",\n    \"from tokenizers.normalizers import NFKC, Sequence, Lowercase\\n\",\n    \"from tokenizers.pre_tokenizers import ByteLevel\\n\",\n    \"from tokenizers.trainers import BpeTrainer\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"tokenizer = Tokenizer(BPE())\\n\",\n    \"tokenizer.normalizer = Sequence([\\n\",\n    \"    Lowercase()\\n\",\n    \"])\\n\",\n    \"tokenizer.pre_tokenizer = ByteLevel()\\n\",\n    \"tokenizer.decoder = ByteLevelDecoder()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"trainer = BpeTrainer(vocab_size=50000, inital_alphabet=ByteLevel.alphabet(), special_tokens=[\\n\",\n    \"            \\\"<s>\\\",\\n\",\n    \"            \\\"<pad>\\\",\\n\",\n    \"            \\\"</s>\\\",\\n\",\n    \"            \\\"<unk>\\\",\\n\",\n    \"            \\\"<mask>\\\"\\n\",\n    \"        ])\\n\",\n    \"tokenizer.train([\\\"austen-emma.txt\\\"], trainer)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"!mkdir tokenizer_gpt\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"tokenizer.save(\\\"tokenizer_gpt/tokenizer.json\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import GPT2TokenizerFast, GPT2Config, TFGPT2LMHeadModel\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Special tokens have been added in the vocabulary, make sure the associated word embedding are fine-tuned or trained.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"tokenizer_gpt = GPT2TokenizerFast.from_pretrained(\\\"tokenizer_gpt\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"tokenizer_gpt.add_special_tokens({\\n\",\n    \"  \\\"eos_token\\\": \\\"</s>\\\",\\n\",\n    \"  \\\"bos_token\\\": \\\"<s>\\\",\\n\",\n    \"  \\\"unk_token\\\": \\\"<unk>\\\",\\n\",\n    \"  \\\"pad_token\\\": \\\"<pad>\\\",\\n\",\n    \"  \\\"mask_token\\\": \\\"<mask>\\\"\\n\",\n    \"})\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"tokenizer_gpt.eos_token_id\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[0, 265, 157, 56, 2]\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"tokenizer_gpt.encode(\\\"<s> this is </s>\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"config = GPT2Config(\\n\",\n    \"  vocab_size=tokenizer_gpt.vocab_size,\\n\",\n    \"  bos_token_id=tokenizer_gpt.bos_token_id,\\n\",\n    \"  eos_token_id=tokenizer_gpt.eos_token_id\\n\",\n    \")\\n\",\n    \"model = TFGPT2LMHeadModel(config)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"GPT2Config {\\n\",\n       \"  \\\"activation_function\\\": \\\"gelu_new\\\",\\n\",\n       \"  \\\"attn_pdrop\\\": 0.1,\\n\",\n       \"  \\\"bos_token_id\\\": 0,\\n\",\n       \"  \\\"embd_pdrop\\\": 0.1,\\n\",\n       \"  \\\"eos_token_id\\\": 2,\\n\",\n       \"  \\\"gradient_checkpointing\\\": false,\\n\",\n       \"  \\\"initializer_range\\\": 0.02,\\n\",\n       \"  \\\"layer_norm_epsilon\\\": 1e-05,\\n\",\n       \"  \\\"model_type\\\": \\\"gpt2\\\",\\n\",\n       \"  \\\"n_ctx\\\": 1024,\\n\",\n       \"  \\\"n_embd\\\": 768,\\n\",\n       \"  \\\"n_head\\\": 12,\\n\",\n       \"  \\\"n_inner\\\": null,\\n\",\n       \"  \\\"n_layer\\\": 12,\\n\",\n       \"  \\\"n_positions\\\": 1024,\\n\",\n       \"  \\\"resid_pdrop\\\": 0.1,\\n\",\n       \"  \\\"summary_activation\\\": null,\\n\",\n       \"  \\\"summary_first_dropout\\\": 0.1,\\n\",\n       \"  \\\"summary_proj_to_labels\\\": true,\\n\",\n       \"  \\\"summary_type\\\": \\\"cls_index\\\",\\n\",\n       \"  \\\"summary_use_proj\\\": true,\\n\",\n       \"  \\\"transformers_version\\\": \\\"4.3.2\\\",\\n\",\n       \"  \\\"use_cache\\\": true,\\n\",\n       \"  \\\"vocab_size\\\": 11750\\n\",\n       \"}\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"config\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"with open(\\\"austen-emma.txt\\\", \\\"r\\\", encoding='utf-8') as f:\\n\",\n    \"    content = f.readlines()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"content_p = []\\n\",\n    \"for c in content:\\n\",\n    \"    if len(c)>10:\\n\",\n    \"        content_p.append(c.strip())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"content_p = \\\" \\\".join(content_p)+tokenizer_gpt.eos_token\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"tokenized_content = tokenizer_gpt.encode(content_p)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"examples = []\\n\",\n    \"block_size = 100\\n\",\n    \"BATCH_SIZE = 12\\n\",\n    \"BUFFER_SIZE = 1000\\n\",\n    \"for i in range(0, len(tokenized_content)):\\n\",\n    \"    examples.append(tokenized_content[i:i + block_size])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_data = [] \\n\",\n    \"labels = [] \\n\",\n    \"for example in examples: \\n\",\n    \"    train_data.append(example[:-1]) \\n\",\n    \"    labels.append(example[1:])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# change 1000 if you want to train on full data\\n\",\n    \"dataset = tf.data.Dataset.from_tensor_slices((train_data[:1000], labels[:1000]))\\n\",\n    \"dataset = dataset.shuffle(BUFFER_SIZE).batch(BATCH_SIZE, drop_remainder=True)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"optimizer = tf.keras.optimizers.Adam(learning_rate=3e-5, epsilon=1e-08, clipnorm=1.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"loss = tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"metric = tf.keras.metrics.SparseCategoricalAccuracy('accuracy')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model.compile(optimizer=optimizer, loss=[loss, *[None] * model.config.n_layer], metrics=[metric])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:AutoGraph could not transform <bound method Socket.send of <zmq.sugar.socket.Socket object at 0x7ffa0fd3b820>> and will run it as-is.\\n\",\n      \"Please report this to the TensorFlow team. When filing the bug, set the verbosity to 10 (on Linux, `export AUTOGRAPH_VERBOSITY=10`) and attach the full output.\\n\",\n      \"Cause: module, class, method, function, traceback, frame, or code object was expected, got cython_function_or_method\\n\",\n      \"To silence this warning, decorate the function with @tf.autograph.experimental.do_not_convert\\n\",\n      \"WARNING: AutoGraph could not transform <bound method Socket.send of <zmq.sugar.socket.Socket object at 0x7ffa0fd3b820>> and will run it as-is.\\n\",\n      \"Please report this to the TensorFlow team. When filing the bug, set the verbosity to 10 (on Linux, `export AUTOGRAPH_VERBOSITY=10`) and attach the full output.\\n\",\n      \"Cause: module, class, method, function, traceback, frame, or code object was expected, got cython_function_or_method\\n\",\n      \"To silence this warning, decorate the function with @tf.autograph.experimental.do_not_convert\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/home/meysam/anaconda3/lib/python3.8/site-packages/tensorflow/python/framework/indexed_slices.py:431: UserWarning: Converting sparse IndexedSlices to a dense Tensor of unknown shape. This may consume a large amount of memory.\\n\",\n      \"  warnings.warn(\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"83/83 [==============================] - 212s 3s/step - loss: 6.7420 - logits_loss: 6.7420 - logits_accuracy: 0.0992 - past_key_values_1_accuracy: 0.0026 - past_key_values_2_accuracy: 0.0021 - past_key_values_3_accuracy: 0.0018 - past_key_values_4_accuracy: 0.0018 - past_key_values_5_accuracy: 0.0027 - past_key_values_6_accuracy: 0.0022 - past_key_values_7_accuracy: 0.0033 - past_key_values_8_accuracy: 0.0032 - past_key_values_9_accuracy: 0.0034 - past_key_values_10_accuracy: 0.0018 - past_key_values_11_accuracy: 0.0039 - past_key_values_12_accuracy: 0.0019\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# increase number of epochs for higher accuracy and lower loss\\n\",\n    \"num_epoch = 1\\n\",\n    \"history = model.fit(dataset, epochs=num_epoch)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def generate(start):  \\n\",\n    \"    input_token_ids = tokenizer_gpt.encode(start, return_tensors='tf')  \\n\",\n    \"    output = model.generate(  \\n\",\n    \"        input_token_ids,  \\n\",\n    \"        max_length = 10,  \\n\",\n    \"        num_beams = 5,  \\n\",\n    \"        temperature = 0.7,  \\n\",\n    \"        no_repeat_ngram_size=2,  \\n\",\n    \"        num_return_sequences=1  \\n\",\n    \"    )  \\n\",\n    \"    return tokenizer_gpt.decode(output[0])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Setting `pad_token_id` to 2 (first `eos_token_id`) to generate sequence\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"'  of her. the had, and the,'\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"generate(\\\" \\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Setting `pad_token_id` to 2 (first `eos_token_id`) to generate sequence\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"'wetson was very good, and the,'\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"generate(\\\"wetson was very good\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"!mkdir my_gpt-2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model.save_pretrained(\\\"my_gpt-2/\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"All model checkpoint layers were used when initializing TFGPT2LMHeadModel.\\n\",\n      \"\\n\",\n      \"All the layers of TFGPT2LMHeadModel were initialized from the model checkpoint at my_gpt-2/.\\n\",\n      \"If your task is similar to the task the model of the checkpoint was trained on, you can already use TFGPT2LMHeadModel for predictions without further training.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model_reloaded = TFGPT2LMHeadModel.from_pretrained(\\\"my_gpt-2/\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import WEIGHTS_NAME, CONFIG_NAME, TF2_WEIGHTS_NAME, AutoModel, AutoTokenizer\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"('tokenizer_gpt_auto/tokenizer_config.json',\\n\",\n       \" 'tokenizer_gpt_auto/special_tokens_map.json',\\n\",\n       \" 'tokenizer_gpt_auto/vocab.json',\\n\",\n       \" 'tokenizer_gpt_auto/merges.txt',\\n\",\n       \" 'tokenizer_gpt_auto/added_tokens.json')\"\n      ]\n     },\n     \"execution_count\": 34,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"tokenizer_gpt.save_pretrained(\\\"tokenizer_gpt_auto/\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"All TF 2.0 model weights were used when initializing GPT2Model.\\n\",\n      \"\\n\",\n      \"Some weights of GPT2Model were not initialized from the TF 2.0 model and are newly initialized: ['h.0.attn.bias', 'h.0.attn.masked_bias', 'h.1.attn.bias', 'h.1.attn.masked_bias', 'h.2.attn.bias', 'h.2.attn.masked_bias', 'h.3.attn.bias', 'h.3.attn.masked_bias', 'h.4.attn.bias', 'h.4.attn.masked_bias', 'h.5.attn.bias', 'h.5.attn.masked_bias', 'h.6.attn.bias', 'h.6.attn.masked_bias', 'h.7.attn.bias', 'h.7.attn.masked_bias', 'h.8.attn.bias', 'h.8.attn.masked_bias', 'h.9.attn.bias', 'h.9.attn.masked_bias', 'h.10.attn.bias', 'h.10.attn.masked_bias', 'h.11.attn.bias', 'h.11.attn.masked_bias']\\n\",\n      \"You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = AutoModel.from_pretrained(\\\"my_gpt-2/\\\", from_tf = True) \\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(\\\"tokenizer_gpt_auto\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python [conda env:root] *\",\n   \"language\": \"python\",\n   \"name\": \"conda-root-py\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.8.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "CH04/CH04c_machine_translation_fine_tuning_using_simpletransformers.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\r\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"!echo $CUDA_VISIBLE_DEVICES\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import os\\n\",\n    \"os.environ[\\\"CUDA_VISIBLE_DEVICES\\\"]=\\\"\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"df = pd.read_csv(\\\"TR2EN.txt\\\",sep=\\\"\\\\t\\\").astype(str)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>EN</th>\\n\",\n       \"      <th>TR</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>Hi.</td>\\n\",\n       \"      <td>Merhaba.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>Hi.</td>\\n\",\n       \"      <td>Selam.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>Run!</td>\\n\",\n       \"      <td>Kaç!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>Run!</td>\\n\",\n       \"      <td>Koş!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>Run.</td>\\n\",\n       \"      <td>Kaç!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>473030</th>\\n\",\n       \"      <td>A carbon footprint is the amount of carbon dio...</td>\\n\",\n       \"      <td>Bir karbon ayakizi bizim faaliyetlerimizin bir...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>473031</th>\\n\",\n       \"      <td>At a moment when our economy is growing, our b...</td>\\n\",\n       \"      <td>Ekonomimizin büyüdüğü bir anda bizim işletmele...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>473032</th>\\n\",\n       \"      <td>Using high heat settings while ironing synthet...</td>\\n\",\n       \"      <td>Sentetik kumaşları ütülerken yüksek ısı ayarla...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>473033</th>\\n\",\n       \"      <td>If you want to sound like a native speaker, yo...</td>\\n\",\n       \"      <td>Eğer bir yerli gibi konuşmak istiyorsan, banço...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>473034</th>\\n\",\n       \"      <td>If someone who doesn't know your background sa...</td>\\n\",\n       \"      <td>Senin geçmiş deneyimini bilmeyen biri senin bi...</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>473035 rows × 2 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"                                                       EN  \\\\\\n\",\n       \"0                                                     Hi.   \\n\",\n       \"1                                                     Hi.   \\n\",\n       \"2                                                    Run!   \\n\",\n       \"3                                                    Run!   \\n\",\n       \"4                                                    Run.   \\n\",\n       \"...                                                   ...   \\n\",\n       \"473030  A carbon footprint is the amount of carbon dio...   \\n\",\n       \"473031  At a moment when our economy is growing, our b...   \\n\",\n       \"473032  Using high heat settings while ironing synthet...   \\n\",\n       \"473033  If you want to sound like a native speaker, yo...   \\n\",\n       \"473034  If someone who doesn't know your background sa...   \\n\",\n       \"\\n\",\n       \"                                                       TR  \\n\",\n       \"0                                                Merhaba.  \\n\",\n       \"1                                                  Selam.  \\n\",\n       \"2                                                    Kaç!  \\n\",\n       \"3                                                    Koş!  \\n\",\n       \"4                                                    Kaç!  \\n\",\n       \"...                                                   ...  \\n\",\n       \"473030  Bir karbon ayakizi bizim faaliyetlerimizin bir...  \\n\",\n       \"473031  Ekonomimizin büyüdüğü bir anda bizim işletmele...  \\n\",\n       \"473032  Sentetik kumaşları ütülerken yüksek ısı ayarla...  \\n\",\n       \"473033  Eğer bir yerli gibi konuşmak istiyorsan, banço...  \\n\",\n       \"473034  Senin geçmiş deneyimini bilmeyen biri senin bi...  \\n\",\n       \"\\n\",\n       \"[473035 rows x 2 columns]\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"df\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"data = []\\n\",\n    \"for item in df[:10500].iterrows():\\n\",\n    \"    data.append([\\\"translate english to turkish\\\", item[1].EN, item[1].TR])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"df = pd.DataFrame(data, columns=[\\\"prefix\\\", \\\"input_text\\\", \\\"target_text\\\"])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_df = df[:50]\\n\",\n    \"eval_df = df[50:100]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>prefix</th>\\n\",\n       \"      <th>input_text</th>\\n\",\n       \"      <th>target_text</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Hi.</td>\\n\",\n       \"      <td>Merhaba.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Hi.</td>\\n\",\n       \"      <td>Selam.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Run!</td>\\n\",\n       \"      <td>Kaç!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Run!</td>\\n\",\n       \"      <td>Koş!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Run.</td>\\n\",\n       \"      <td>Kaç!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>5</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Run.</td>\\n\",\n       \"      <td>Koş!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>6</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Who?</td>\\n\",\n       \"      <td>Kim?</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Fire!</td>\\n\",\n       \"      <td>Ateş!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>8</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Fire!</td>\\n\",\n       \"      <td>Yangın!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Help!</td>\\n\",\n       \"      <td>Yardım et!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>10</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Jump.</td>\\n\",\n       \"      <td>Defol.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>11</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Stop!</td>\\n\",\n       \"      <td>Dur!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>12</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Stop!</td>\\n\",\n       \"      <td>Bırak!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>13</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Wait.</td>\\n\",\n       \"      <td>Bekle.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>14</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Do it.</td>\\n\",\n       \"      <td>Onu yap.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>15</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Go on.</td>\\n\",\n       \"      <td>Devam et.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>16</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Hello!</td>\\n\",\n       \"      <td>Merhaba.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>17</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Hello!</td>\\n\",\n       \"      <td>Selam.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>18</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Hurry!</td>\\n\",\n       \"      <td>Acele et!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>19</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I ran.</td>\\n\",\n       \"      <td>Koştum.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>20</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I see.</td>\\n\",\n       \"      <td>Anlıyorum.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>21</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I see.</td>\\n\",\n       \"      <td>Görüyorum.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>22</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I won.</td>\\n\",\n       \"      <td>Kazandım.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>23</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Oh no!</td>\\n\",\n       \"      <td>Oh hayır!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>24</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Relax.</td>\\n\",\n       \"      <td>Rahatla.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>25</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Smile.</td>\\n\",\n       \"      <td>Gülümse.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>26</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Attack!</td>\\n\",\n       \"      <td>Saldır!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>27</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Attack!</td>\\n\",\n       \"      <td>Hücum!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>28</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Eat it.</td>\\n\",\n       \"      <td>Bunu ye.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>29</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Eat up.</td>\\n\",\n       \"      <td>Silip süpür.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>30</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Freeze!</td>\\n\",\n       \"      <td>Kımıldama!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>31</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Freeze!</td>\\n\",\n       \"      <td>Olduğun yerde kal!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>32</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Go now.</td>\\n\",\n       \"      <td>Şimdi git.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>33</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Got it!</td>\\n\",\n       \"      <td>Anladım!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>34</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Got it?</td>\\n\",\n       \"      <td>Anladın mı?</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>35</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>He ran.</td>\\n\",\n       \"      <td>O koştu.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>36</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Hop in.</td>\\n\",\n       \"      <td>Atla.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>37</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I fell.</td>\\n\",\n       \"      <td>Ben düştüm.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>38</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I know.</td>\\n\",\n       \"      <td>Biliyorum.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>39</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I left.</td>\\n\",\n       \"      <td>Ben ayrıldım.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>40</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I lost.</td>\\n\",\n       \"      <td>Kayboldum.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>41</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I paid.</td>\\n\",\n       \"      <td>Ödedim.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>42</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I quit.</td>\\n\",\n       \"      <td>Ben istifa ettim.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>43</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I swim.</td>\\n\",\n       \"      <td>Yüzerim.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>44</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I work.</td>\\n\",\n       \"      <td>Çalışıyorum.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>45</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I'm 19.</td>\\n\",\n       \"      <td>Ben 19 yaşındayım.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>46</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I'm OK.</td>\\n\",\n       \"      <td>Ben iyiyim.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>47</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>I'm up.</td>\\n\",\n       \"      <td>Ben uyanığım.</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>48</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>No way!</td>\\n\",\n       \"      <td>Mümkün değil!</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>49</th>\\n\",\n       \"      <td>translate english to turkish</td>\\n\",\n       \"      <td>Try it.</td>\\n\",\n       \"      <td>Bunu dene.</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"                          prefix input_text         target_text\\n\",\n       \"0   translate english to turkish        Hi.            Merhaba.\\n\",\n       \"1   translate english to turkish        Hi.              Selam.\\n\",\n       \"2   translate english to turkish       Run!                Kaç!\\n\",\n       \"3   translate english to turkish       Run!                Koş!\\n\",\n       \"4   translate english to turkish       Run.                Kaç!\\n\",\n       \"5   translate english to turkish       Run.                Koş!\\n\",\n       \"6   translate english to turkish       Who?                Kim?\\n\",\n       \"7   translate english to turkish      Fire!               Ateş!\\n\",\n       \"8   translate english to turkish      Fire!             Yangın!\\n\",\n       \"9   translate english to turkish      Help!          Yardım et!\\n\",\n       \"10  translate english to turkish      Jump.              Defol.\\n\",\n       \"11  translate english to turkish      Stop!                Dur!\\n\",\n       \"12  translate english to turkish      Stop!              Bırak!\\n\",\n       \"13  translate english to turkish      Wait.              Bekle.\\n\",\n       \"14  translate english to turkish     Do it.            Onu yap.\\n\",\n       \"15  translate english to turkish     Go on.           Devam et.\\n\",\n       \"16  translate english to turkish     Hello!            Merhaba.\\n\",\n       \"17  translate english to turkish     Hello!              Selam.\\n\",\n       \"18  translate english to turkish     Hurry!           Acele et!\\n\",\n       \"19  translate english to turkish     I ran.             Koştum.\\n\",\n       \"20  translate english to turkish     I see.          Anlıyorum.\\n\",\n       \"21  translate english to turkish     I see.          Görüyorum.\\n\",\n       \"22  translate english to turkish     I won.           Kazandım.\\n\",\n       \"23  translate english to turkish     Oh no!           Oh hayır!\\n\",\n       \"24  translate english to turkish     Relax.            Rahatla.\\n\",\n       \"25  translate english to turkish     Smile.            Gülümse.\\n\",\n       \"26  translate english to turkish    Attack!             Saldır!\\n\",\n       \"27  translate english to turkish    Attack!              Hücum!\\n\",\n       \"28  translate english to turkish    Eat it.            Bunu ye.\\n\",\n       \"29  translate english to turkish    Eat up.        Silip süpür.\\n\",\n       \"30  translate english to turkish    Freeze!          Kımıldama!\\n\",\n       \"31  translate english to turkish    Freeze!  Olduğun yerde kal!\\n\",\n       \"32  translate english to turkish    Go now.          Şimdi git.\\n\",\n       \"33  translate english to turkish    Got it!            Anladım!\\n\",\n       \"34  translate english to turkish    Got it?         Anladın mı?\\n\",\n       \"35  translate english to turkish    He ran.            O koştu.\\n\",\n       \"36  translate english to turkish    Hop in.               Atla.\\n\",\n       \"37  translate english to turkish    I fell.         Ben düştüm.\\n\",\n       \"38  translate english to turkish    I know.          Biliyorum.\\n\",\n       \"39  translate english to turkish    I left.       Ben ayrıldım.\\n\",\n       \"40  translate english to turkish    I lost.          Kayboldum.\\n\",\n       \"41  translate english to turkish    I paid.             Ödedim.\\n\",\n       \"42  translate english to turkish    I quit.   Ben istifa ettim.\\n\",\n       \"43  translate english to turkish    I swim.            Yüzerim.\\n\",\n       \"44  translate english to turkish    I work.        Çalışıyorum.\\n\",\n       \"45  translate english to turkish    I'm 19.  Ben 19 yaşındayım.\\n\",\n       \"46  translate english to turkish    I'm OK.         Ben iyiyim.\\n\",\n       \"47  translate english to turkish    I'm up.       Ben uyanığım.\\n\",\n       \"48  translate english to turkish    No way!       Mümkün değil!\\n\",\n       \"49  translate english to turkish    Try it.          Bunu dene.\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"train_df\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import logging\\n\",\n    \"import pandas as pd\\n\",\n    \"from simpletransformers.t5 import T5Model, T5Args\\n\",\n    \"\\n\",\n    \"logging.basicConfig(level=logging.INFO)\\n\",\n    \"transformers_logger = logging.getLogger(\\\"transformers\\\")\\n\",\n    \"transformers_logger.setLevel(logging.WARNING)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model_args = T5Args()\\n\",\n    \"model_args.max_seq_length = 96\\n\",\n    \"model_args.train_batch_size = 20\\n\",\n    \"model_args.eval_batch_size = 20\\n\",\n    \"model_args.num_train_epochs = 1\\n\",\n    \"model_args.evaluate_during_training = True\\n\",\n    \"model_args.evaluate_during_training_steps = 30000\\n\",\n    \"model_args.use_multiprocessing = False\\n\",\n    \"model_args.fp16 = False\\n\",\n    \"model_args.save_steps = -1\\n\",\n    \"model_args.save_eval_checkpoints = False\\n\",\n    \"model_args.no_cache = True\\n\",\n    \"model_args.reprocess_input_data = True\\n\",\n    \"model_args.overwrite_output_dir = True\\n\",\n    \"model_args.preprocess_inputs = False\\n\",\n    \"model_args.num_return_sequences = 1\\n\",\n    \"model_args.wandb_project = \\\"MT5 English-Turkish Translation\\\"\\n\",\n    \"\\n\",\n    \"model = T5Model(\\\"mt5\\\", \\\"google/mt5-small\\\", args=model_args, use_cuda=False)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO:simpletransformers.t5.t5_utils: Creating features from dataset file at cache_dir/\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"6a1508ed96aa4d3dafe89255162b6998\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, max=50.0), HTML(value='')))\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO:simpletransformers.t5.t5_model: Training started\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\",\n      \"Using Adafactor for T5\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"cd2f6b5a07db4e329b9c527c8c6438c2\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Epoch', max=1.0, style=ProgressStyle(description_width='i…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\u001b[34m\\u001b[1mwandb\\u001b[0m: You can find your API key in your browser here: https://wandb.ai/authorize\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"wandb: Paste an API key from your profile and hit enter: ········\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\u001b[34m\\u001b[1mwandb\\u001b[0m: W&B syncing is set to `offline` in this directory.  Run `wandb online` or set WANDB_MODE=online to enable cloud syncing.\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"faf82c233e7a4a75870145d185001e12\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Running Epoch 0 of 1', max=3.0, style=ProgressStyle(descr…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/home/meysam/anaconda3/lib/python3.8/site-packages/transformers/optimization.py:557: UserWarning: This overload of add_ is deprecated:\\n\",\n      \"\\tadd_(Number alpha, Tensor other)\\n\",\n      \"Consider using one of the following signatures instead:\\n\",\n      \"\\tadd_(Tensor other, *, Number alpha) (Triggered internally at  /pytorch/torch/csrc/utils/python_arg_parser.cpp:882.)\\n\",\n      \"  exp_avg_sq_row.mul_(beta2t).add_(1.0 - beta2t, update.mean(dim=-1))\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/home/meysam/anaconda3/lib/python3.8/site-packages/torch/optim/lr_scheduler.py:216: UserWarning: Please also save or load the state of the optimizer when saving or loading the scheduler.\\n\",\n      \"  warnings.warn(SAVE_STATE_WARNING, UserWarning)\\n\",\n      \"INFO:simpletransformers.t5.t5_utils: Creating features from dataset file at cache_dir/\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"37bc5359c47f47c8872b88b880bf1cce\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, max=50.0), HTML(value='')))\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\",\n      \"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO:simpletransformers.t5.t5_model: Training of google/mt5-small model complete. Saved to outputs/.\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(3,\\n\",\n       \" {'global_step': [3],\\n\",\n       \"  'eval_loss': [22.320918401082356],\\n\",\n       \"  'train_loss': [23.541107177734375]})\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"model.train_model(train_df, eval_data=eval_df)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model_args = T5Args()\\n\",\n    \"model_args.max_length = 512\\n\",\n    \"model_args.length_penalty = 1\\n\",\n    \"model_args.num_beams = 10\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model = T5Model(\\\"mt5\\\", \\\"outputs\\\", args=model_args, use_cuda=False)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python [conda env:root] *\",\n   \"language\": \"python\",\n   \"name\": \"conda-root-py\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.8.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "CH04/austen-emma.txt",
    "content": "[Emma by Jane Austen 1816]\n\nVOLUME I\n\nCHAPTER I\n\n\nEmma Woodhouse, handsome, clever, and rich, with a comfortable home\nand happy disposition, seemed to unite some of the best blessings\nof existence; and had lived nearly twenty-one years in the world\nwith very little to distress or vex her.\n\nShe was the youngest of the two daughters of a most affectionate,\nindulgent father; and had, in consequence of her sister's marriage,\nbeen mistress of his house from a very early period.  Her mother\nhad died too long ago for her to have more than an indistinct\nremembrance of her caresses; and her place had been supplied\nby an excellent woman as governess, who had fallen little short\nof a mother in affection.\n\nSixteen years had Miss Taylor been in Mr. Woodhouse's family,\nless as a governess than a friend, very fond of both daughters,\nbut particularly of Emma.  Between _them_ it was more the intimacy\nof sisters.  Even before Miss Taylor had ceased to hold the nominal\noffice of governess, the mildness of her temper had hardly allowed\nher to impose any restraint; and the shadow of authority being\nnow long passed away, they had been living together as friend and\nfriend very mutually attached, and Emma doing just what she liked;\nhighly esteeming Miss Taylor's judgment, but directed chiefly by\nher own.\n\nThe real evils, indeed, of Emma's situation were the power of having\nrather too much her own way, and a disposition to think a little\ntoo well of herself; these were the disadvantages which threatened\nalloy to her many enjoyments.  The danger, however, was at present\nso unperceived, that they did not by any means rank as misfortunes\nwith her.\n\nSorrow came--a gentle sorrow--but not at all in the shape of any\ndisagreeable consciousness.--Miss Taylor married.  It was Miss\nTaylor's loss which first brought grief.  It was on the wedding-day\nof this beloved friend that Emma first sat in mournful thought\nof any continuance.  The wedding over, and the bride-people gone,\nher father and herself were left to dine together, with no prospect\nof a third to cheer a long evening.  Her father composed himself\nto sleep after dinner, as usual, and she had then only to sit\nand think of what she had lost.\n\nThe event had every promise of happiness for her friend.  Mr. Weston\nwas a man of unexceptionable character, easy fortune, suitable age,\nand pleasant manners; and there was some satisfaction in considering\nwith what self-denying, generous friendship she had always wished\nand promoted the match; but it was a black morning's work for her.\nThe want of Miss Taylor would be felt every hour of every day.\nShe recalled her past kindness--the kindness, the affection of sixteen\nyears--how she had taught and how she had played with her from five\nyears old--how she had devoted all her powers to attach and amuse\nher in health--and how nursed her through the various illnesses\nof childhood.  A large debt of gratitude was owing here; but the\nintercourse of the last seven years, the equal footing and perfect\nunreserve which had soon followed Isabella's marriage, on their\nbeing left to each other, was yet a dearer, tenderer recollection.\nShe had been a friend and companion such as few possessed: intelligent,\nwell-informed, useful, gentle, knowing all the ways of the family,\ninterested in all its concerns, and peculiarly interested in herself,\nin every pleasure, every scheme of hers--one to whom she could speak\nevery thought as it arose, and who had such an affection for her\nas could never find fault.\n\nHow was she to bear the change?--It was true that her friend was\ngoing only half a mile from them; but Emma was aware that great must\nbe the difference between a Mrs. Weston, only half a mile from them,\nand a Miss Taylor in the house; and with all her advantages,\nnatural and domestic, she was now in great danger of suffering\nfrom intellectual solitude.  She dearly loved her father, but he\nwas no companion for her.  He could not meet her in conversation,\nrational or playful.\n\nThe evil of the actual disparity in their ages (and Mr. Woodhouse had\nnot married early) was much increased by his constitution and habits;\nfor having been a valetudinarian all his life, without activity\nof mind or body, he was a much older man in ways than in years;\nand though everywhere beloved for the friendliness of his heart\nand his amiable temper, his talents could not have recommended him\nat any time.\n\nHer sister, though comparatively but little removed by matrimony,\nbeing settled in London, only sixteen miles off, was much beyond\nher daily reach; and many a long October and November evening must\nbe struggled through at Hartfield, before Christmas brought the next\nvisit from Isabella and her husband, and their little children,\nto fill the house, and give her pleasant society again.\n\nHighbury, the large and populous village, almost amounting to a town,\nto which Hartfield, in spite of its separate lawn, and shrubberies,\nand name, did really belong, afforded her no equals.  The Woodhouses\nwere first in consequence there.  All looked up to them.  She had\nmany acquaintance in the place, for her father was universally civil,\nbut not one among them who could be accepted in lieu of Miss\nTaylor for even half a day.  It was a melancholy change; and Emma\ncould not but sigh over it, and wish for impossible things,\ntill her father awoke, and made it necessary to be cheerful.\nHis spirits required support.  He was a nervous man, easily depressed;\nfond of every body that he was used to, and hating to part with them;\nhating change of every kind.  Matrimony, as the origin of change,\nwas always disagreeable; and he was by no means yet reconciled\nto his own daughter's marrying, nor could ever speak of her but\nwith compassion, though it had been entirely a match of affection,\nwhen he was now obliged to part with Miss Taylor too; and from\nhis habits of gentle selfishness, and of being never able to\nsuppose that other people could feel differently from himself,\nhe was very much disposed to think Miss Taylor had done as sad\na thing for herself as for them, and would have been a great deal\nhappier if she had spent all the rest of her life at Hartfield.\nEmma smiled and chatted as cheerfully as she could, to keep him\nfrom such thoughts; but when tea came, it was impossible for him\nnot to say exactly as he had said at dinner,\n\n\"Poor Miss Taylor!--I wish she were here again.  What a pity it\nis that Mr. Weston ever thought of her!\"\n\n\"I cannot agree with you, papa; you know I cannot.  Mr. Weston is such\na good-humoured, pleasant, excellent man, that he thoroughly deserves\na good wife;--and you would not have had Miss Taylor live with us\nfor ever, and bear all my odd humours, when she might have a house of her own?\"\n\n\"A house of her own!--But where is the advantage of a house of her own?\nThis is three times as large.--And you have never any odd humours,\nmy dear.\"\n\n\"How often we shall be going to see them, and they coming to see\nus!--We shall be always meeting! _We_ must begin; we must go and pay\nwedding visit very soon.\"\n\n\"My dear, how am I to get so far? Randalls is such a distance.\nI could not walk half so far.\"\n\n\"No, papa, nobody thought of your walking.  We must go in the carriage,\nto be sure.\"\n\n\"The carriage! But James will not like to put the horses to for\nsuch a little way;--and where are the poor horses to be while we\nare paying our visit?\"\n\n\"They are to be put into Mr. Weston's stable, papa.  You know we\nhave settled all that already.  We talked it all over with Mr. Weston\nlast night.  And as for James, you may be very sure he will always like\ngoing to Randalls, because of his daughter's being housemaid there.\nI only doubt whether he will ever take us anywhere else.  That was\nyour doing, papa.  You got Hannah that good place.  Nobody thought\nof Hannah till you mentioned her--James is so obliged to you!\"\n\n\"I am very glad I did think of her.  It was very lucky, for I would\nnot have had poor James think himself slighted upon any account;\nand I am sure she will make a very good servant: she is a civil,\npretty-spoken girl; I have a great opinion of her.  Whenever I see her,\nshe always curtseys and asks me how I do, in a very pretty manner;\nand when you have had her here to do needlework, I observe she\nalways turns the lock of the door the right way and never bangs it.\nI am sure she will be an excellent servant; and it will be a great\ncomfort to poor Miss Taylor to have somebody about her that she is\nused to see.  Whenever James goes over to see his daughter, you know,\nshe will be hearing of us.  He will be able to tell her how we\nall are.\"\n\nEmma spared no exertions to maintain this happier flow of ideas,\nand hoped, by the help of backgammon, to get her father tolerably\nthrough the evening, and be attacked by no regrets but her own.\nThe backgammon-table was placed; but a visitor immediately afterwards\nwalked in and made it unnecessary.\n\nMr. Knightley, a sensible man about seven or eight-and-thirty, was not\nonly a very old and intimate friend of the family, but particularly\nconnected with it, as the elder brother of Isabella's husband.\nHe lived about a mile from Highbury, was a frequent visitor,\nand always welcome, and at this time more welcome than usual,\nas coming directly from their mutual connexions in London.  He had\nreturned to a late dinner, after some days' absence, and now walked\nup to Hartfield to say that all were well in Brunswick Square.\nIt was a happy circumstance, and animated Mr. Woodhouse for some time.\nMr. Knightley had a cheerful manner, which always did him good;\nand his many inquiries after \"poor Isabella\" and her children were\nanswered most satisfactorily.  When this was over, Mr. Woodhouse\ngratefully observed, \"It is very kind of you, Mr. Knightley, to come\nout at this late hour to call upon us.  I am afraid you must have\nhad a shocking walk.\"\n\n\"Not at all, sir.  It is a beautiful moonlight night; and so mild\nthat I must draw back from your great fire.\"\n\n\"But you must have found it very damp and dirty.  I wish you may\nnot catch cold.\"\n\n\"Dirty, sir! Look at my shoes.  Not a speck on them.\"\n\n\"Well! that is quite surprising, for we have had a vast deal\nof rain here.  It rained dreadfully hard for half an hour\nwhile we were at breakfast.  I wanted them to put off the wedding.\"\n\n\"By the bye--I have not wished you joy.  Being pretty well aware\nof what sort of joy you must both be feeling, I have been in no hurry\nwith my congratulations; but I hope it all went off tolerably well.\nHow did you all behave? Who cried most?\"\n\n\"Ah! poor Miss Taylor! 'Tis a sad business.\"\n\n\"Poor Mr. and Miss Woodhouse, if you please; but I cannot possibly\nsay `poor Miss Taylor.' I have a great regard for you and Emma;\nbut when it comes to the question of dependence or independence!--At\nany rate, it must be better to have only one to please than two.\"\n\n\"Especially when _one_ of those two is such a fanciful, troublesome creature!\"\nsaid Emma playfully.  \"That is what you have in your head,\nI know--and what you would certainly say if my father were not by.\"\n\n\"I believe it is very true, my dear, indeed,\" said Mr. Woodhouse,\nwith a sigh.  \"I am afraid I am sometimes very fanciful and troublesome.\"\n\n\"My dearest papa! You do not think I could mean _you_, or suppose\nMr. Knightley to mean _you_.  What a horrible idea! Oh no! I meant\nonly myself.  Mr. Knightley loves to find fault with me, you know--\nin a joke--it is all a joke.  We always say what we like to one another.\"\n\nMr. Knightley, in fact, was one of the few people who could see\nfaults in Emma Woodhouse, and the only one who ever told her of them:\nand though this was not particularly agreeable to Emma herself,\nshe knew it would be so much less so to her father, that she would\nnot have him really suspect such a circumstance as her not being\nthought perfect by every body.\n\n\"Emma knows I never flatter her,\" said Mr. Knightley, \"but I\nmeant no reflection on any body.  Miss Taylor has been used\nto have two persons to please; she will now have but one.\nThe chances are that she must be a gainer.\"\n\n\"Well,\" said Emma, willing to let it pass--\"you want to hear\nabout the wedding; and I shall be happy to tell you, for we all\nbehaved charmingly.  Every body was punctual, every body in their\nbest looks: not a tear, and hardly a long face to be seen.  Oh no;\nwe all felt that we were going to be only half a mile apart,\nand were sure of meeting every day.\"\n\n\"Dear Emma bears every thing so well,\" said her father.\n\"But, Mr. Knightley, she is really very sorry to lose poor Miss Taylor,\nand I am sure she _will_ miss her more than she thinks for.\"\n\nEmma turned away her head, divided between tears and smiles.\n\"It is impossible that Emma should not miss such a companion,\"\nsaid Mr. Knightley.  \"We should not like her so well as we do, sir,\nif we could suppose it; but she knows how much the marriage is to\nMiss Taylor's advantage; she knows how very acceptable it must be,\nat Miss Taylor's time of life, to be settled in a home of her own,\nand how important to her to be secure of a comfortable provision,\nand therefore cannot allow herself to feel so much pain as pleasure.\nEvery friend of Miss Taylor must be glad to have her so happily\nmarried.\"\n\n\"And you have forgotten one matter of joy to me,\" said Emma,\n\"and a very considerable one--that I made the match myself.\nI made the match, you know, four years ago; and to have it take place,\nand be proved in the right, when so many people said Mr. Weston would\nnever marry again, may comfort me for any thing.\"\n\nMr. Knightley shook his head at her.  Her father fondly replied,\n\"Ah! my dear, I wish you would not make matches and foretell things,\nfor whatever you say always comes to pass.  Pray do not make any\nmore matches.\"\n\n\"I promise you to make none for myself, papa; but I must, indeed,\nfor other people.  It is the greatest amusement in the world! And\nafter such success, you know!--Every body said that Mr. Weston would\nnever marry again.  Oh dear, no! Mr. Weston, who had been a widower\nso long, and who seemed so perfectly comfortable without a wife,\nso constantly occupied either in his business in town or among his\nfriends here, always acceptable wherever he went, always cheerful--\nMr. Weston need not spend a single evening in the year alone if he did\nnot like it.  Oh no! Mr. Weston certainly would never marry again.\nSome people even talked of a promise to his wife on her deathbed,\nand others of the son and the uncle not letting him.  All manner\nof solemn nonsense was talked on the subject, but I believed none\nof it.\n\n\"Ever since the day--about four years ago--that Miss Taylor and I\nmet with him in Broadway Lane, when, because it began to drizzle,\nhe darted away with so much gallantry, and borrowed two umbrellas\nfor us from Farmer Mitchell's, I made up my mind on the subject.\nI planned the match from that hour; and when such success has blessed\nme in this instance, dear papa, you cannot think that I shall leave\noff match-making.\"\n\n\"I do not understand what you mean by `success,'\" said Mr. Knightley.\n\"Success supposes endeavour.  Your time has been properly and\ndelicately spent, if you have been endeavouring for the last four\nyears to bring about this marriage.  A worthy employment for a young\nlady's mind! But if, which I rather imagine, your making the match,\nas you call it, means only your planning it, your saying to yourself\none idle day, `I think it would be a very good thing for Miss Taylor\nif Mr. Weston were to marry her,' and saying it again to yourself\nevery now and then afterwards, why do you talk of success? Where\nis your merit? What are you proud of? You made a lucky guess;\nand _that_ is all that can be said.\"\n\n\"And have you never known the pleasure and triumph of a lucky guess?--\nI pity you.--I thought you cleverer--for, depend upon it a lucky\nguess is never merely luck.  There is always some talent in it.\nAnd as to my poor word `success,' which you quarrel with, I do not\nknow that I am so entirely without any claim to it.  You have drawn\ntwo pretty pictures; but I think there may be a third--a something\nbetween the do-nothing and the do-all. If I had not promoted Mr. Weston's\nvisits here, and given many little encouragements, and smoothed\nmany little matters, it might not have come to any thing after all.\nI think you must know Hartfield enough to comprehend that.\"\n\n\"A straightforward, open-hearted man like Weston, and a rational,\nunaffected woman like Miss Taylor, may be safely left to manage their\nown concerns.  You are more likely to have done harm to yourself,\nthan good to them, by interference.\"\n\n\"Emma never thinks of herself, if she can do good to others,\"\nrejoined Mr. Woodhouse, understanding but in part.  \"But, my dear,\npray do not make any more matches; they are silly things, and break up\none's family circle grievously.\"\n\n\"Only one more, papa; only for Mr. Elton.  Poor Mr. Elton! You\nlike Mr. Elton, papa,--I must look about for a wife for him.\nThere is nobody in Highbury who deserves him--and he has been\nhere a whole year, and has fitted up his house so comfortably,\nthat it would be a shame to have him single any longer--and I thought\nwhen he was joining their hands to-day, he looked so very much as if\nhe would like to have the same kind office done for him! I think\nvery well of Mr. Elton, and this is the only way I have of doing\nhim a service.\"\n\n\"Mr. Elton is a very pretty young man, to be sure, and a very\ngood young man, and I have a great regard for him.  But if you\nwant to shew him any attention, my dear, ask him to come\nand dine with us some day.  That will be a much better thing.\nI dare say Mr. Knightley will be so kind as to meet him.\"\n\n\"With a great deal of pleasure, sir, at any time,\" said Mr. Knightley,\nlaughing, \"and I agree with you entirely, that it will be a much\nbetter thing.  Invite him to dinner, Emma, and help him to the best\nof the fish and the chicken, but leave him to chuse his own wife.\nDepend upon it, a man of six or seven-and-twenty can take care\nof himself.\"\n\n\n\nCHAPTER II\n\n\nMr. Weston was a native of Highbury, and born of a respectable family,\nwhich for the last two or three generations had been rising into\ngentility and property.  He had received a good education, but,\non succeeding early in life to a small independence, had become\nindisposed for any of the more homely pursuits in which his brothers\nwere engaged, and had satisfied an active, cheerful mind and social\ntemper by entering into the militia of his county, then embodied.\n\nCaptain Weston was a general favourite; and when the chances\nof his military life had introduced him to Miss Churchill,\nof a great Yorkshire family, and Miss Churchill fell in love\nwith him, nobody was surprized, except her brother and his wife,\nwho had never seen him, and who were full of pride and importance,\nwhich the connexion would offend.\n\nMiss Churchill, however, being of age, and with the full command\nof her fortune--though her fortune bore no proportion to the\nfamily-estate--was not to be dissuaded from the marriage, and it\ntook place, to the infinite mortification of Mr. and Mrs. Churchill,\nwho threw her off with due decorum.  It was an unsuitable connexion,\nand did not produce much happiness.  Mrs. Weston ought to have found\nmore in it, for she had a husband whose warm heart and sweet temper\nmade him think every thing due to her in return for the great goodness\nof being in love with him; but though she had one sort of spirit,\nshe had not the best.  She had resolution enough to pursue\nher own will in spite of her brother, but not enough to refrain\nfrom unreasonable regrets at that brother's unreasonable anger,\nnor from missing the luxuries of her former home.  They lived beyond\ntheir income, but still it was nothing in comparison of Enscombe:\nshe did not cease to love her husband, but she wanted at once\nto be the wife of Captain Weston, and Miss Churchill of Enscombe.\n\nCaptain Weston, who had been considered, especially by the Churchills,\nas making such an amazing match, was proved to have much the worst\nof the bargain; for when his wife died, after a three years' marriage,\nhe was rather a poorer man than at first, and with a child to maintain.\nFrom the expense of the child, however, he was soon relieved.\nThe boy had, with the additional softening claim of a lingering\nillness of his mother's, been the means of a sort of reconciliation;\nand Mr. and Mrs. Churchill, having no children of their own,\nnor any other young creature of equal kindred to care for, offered to\ntake the whole charge of the little Frank soon after her decease.\nSome scruples and some reluctance the widower-father may be supposed\nto have felt; but as they were overcome by other considerations,\nthe child was given up to the care and the wealth of the Churchills,\nand he had only his own comfort to seek, and his own situation to\nimprove as he could.\n\nA complete change of life became desirable.  He quitted the militia\nand engaged in trade, having brothers already established in a\ngood way in London, which afforded him a favourable opening.\nIt was a concern which brought just employment enough.  He had still\na small house in Highbury, where most of his leisure days were spent;\nand between useful occupation and the pleasures of society,\nthe next eighteen or twenty years of his life passed cheerfully away.\nHe had, by that time, realised an easy competence--enough to secure\nthe purchase of a little estate adjoining Highbury, which he had\nalways longed for--enough to marry a woman as portionless even\nas Miss Taylor, and to live according to the wishes of his own\nfriendly and social disposition.\n\nIt was now some time since Miss Taylor had begun to influence\nhis schemes; but as it was not the tyrannic influence of youth\non youth, it had not shaken his determination of never settling\ntill he could purchase Randalls, and the sale of Randalls was long\nlooked forward to; but he had gone steadily on, with these objects\nin view, till they were accomplished.  He had made his fortune,\nbought his house, and obtained his wife; and was beginning a new\nperiod of existence, with every probability of greater happiness\nthan in any yet passed through.  He had never been an unhappy man;\nhis own temper had secured him from that, even in his first marriage;\nbut his second must shew him how delightful a well-judging and truly\namiable woman could be, and must give him the pleasantest proof\nof its being a great deal better to choose than to be chosen,\nto excite gratitude than to feel it.\n\nHe had only himself to please in his choice: his fortune was\nhis own; for as to Frank, it was more than being tacitly brought\nup as his uncle's heir, it had become so avowed an adoption\nas to have him assume the name of Churchill on coming of age.\nIt was most unlikely, therefore, that he should ever want his\nfather's assistance.  His father had no apprehension of it.\nThe aunt was a capricious woman, and governed her husband entirely;\nbut it was not in Mr. Weston's nature to imagine that any caprice\ncould be strong enough to affect one so dear, and, as he believed,\nso deservedly dear.  He saw his son every year in London,\nand was proud of him; and his fond report of him as a very fine\nyoung man had made Highbury feel a sort of pride in him too.\nHe was looked on as sufficiently belonging to the place to make his\nmerits and prospects a kind of common concern.\n\nMr. Frank Churchill was one of the boasts of Highbury, and a lively\ncuriosity to see him prevailed, though the compliment was so little\nreturned that he had never been there in his life.  His coming\nto visit his father had been often talked of but never achieved.\n\nNow, upon his father's marriage, it was very generally proposed,\nas a most proper attention, that the visit should take place.\nThere was not a dissentient voice on the subject, either when\nMrs. Perry drank tea with Mrs. and Miss Bates, or when Mrs. and\nMiss Bates returned the visit.  Now was the time for Mr. Frank\nChurchill to come among them; and the hope strengthened when it was\nunderstood that he had written to his new mother on the occasion.\nFor a few days, every morning visit in Highbury included some mention\nof the handsome letter Mrs. Weston had received.  \"I suppose you\nhave heard of the handsome letter Mr. Frank Churchill has written\nto Mrs. Weston? I understand it was a very handsome letter, indeed.\nMr. Woodhouse told me of it.  Mr. Woodhouse saw the letter, and he\nsays he never saw such a handsome letter in his life.\"\n\nIt was, indeed, a highly prized letter.  Mrs. Weston had, of course,\nformed a very favourable idea of the young man; and such a pleasing\nattention was an irresistible proof of his great good sense,\nand a most welcome addition to every source and every expression\nof congratulation which her marriage had already secured.  She felt\nherself a most fortunate woman; and she had lived long enough\nto know how fortunate she might well be thought, where the only\nregret was for a partial separation from friends whose friendship\nfor her had never cooled, and who could ill bear to part with her.\n\nShe knew that at times she must be missed; and could not think,\nwithout pain, of Emma's losing a single pleasure, or suffering\nan hour's ennui, from the want of her companionableness: but dear\nEmma was of no feeble character; she was more equal to her situation\nthan most girls would have been, and had sense, and energy,\nand spirits that might be hoped would bear her well and happily\nthrough its little difficulties and privations.  And then there was\nsuch comfort in the very easy distance of Randalls from Hartfield,\nso convenient for even solitary female walking, and in Mr. Weston's\ndisposition and circumstances, which would make the approaching\nseason no hindrance to their spending half the evenings in the\nweek together.\n\nHer situation was altogether the subject of hours of gratitude\nto Mrs. Weston, and of moments only of regret; and her\nsatisfaction--her more than satisfaction--her cheerful enjoyment,\nwas so just and so apparent, that Emma, well as she knew her father,\nwas sometimes taken by surprize at his being still able to pity\n`poor Miss Taylor,' when they left her at Randalls in the centre\nof every domestic comfort, or saw her go away in the evening\nattended by her pleasant husband to a carriage of her own.\nBut never did she go without Mr. Woodhouse's giving a gentle sigh,\nand saying, \"Ah, poor Miss Taylor! She would be very glad to stay.\"\n\nThere was no recovering Miss Taylor--nor much likelihood of\nceasing to pity her; but a few weeks brought some alleviation\nto Mr. Woodhouse.  The compliments of his neighbours were over;\nhe was no longer teased by being wished joy of so sorrowful an event;\nand the wedding-cake, which had been a great distress to him,\nwas all eat up.  His own stomach could bear nothing rich, and he\ncould never believe other people to be different from himself.\nWhat was unwholesome to him he regarded as unfit for any body;\nand he had, therefore, earnestly tried to dissuade them from having\nany wedding-cake at all, and when that proved vain, as earnestly\ntried to prevent any body's eating it.  He had been at the pains\nof consulting Mr. Perry, the apothecary, on the subject.  Mr. Perry\nwas an intelligent, gentlemanlike man, whose frequent visits were one\nof the comforts of Mr. Woodhouse's life; and upon being applied to,\nhe could not but acknowledge (though it seemed rather against the\nbias of inclination) that wedding-cake might certainly disagree\nwith many--perhaps with most people, unless taken moderately.\nWith such an opinion, in confirmation of his own, Mr. Woodhouse hoped\nto influence every visitor of the newly married pair; but still the\ncake was eaten; and there was no rest for his benevolent nerves till\nit was all gone.\n\nThere was a strange rumour in Highbury of all the little Perrys\nbeing seen with a slice of Mrs. Weston's wedding-cake in their\nhands: but Mr. Woodhouse would never believe it.\n\n\n\nCHAPTER III\n\n\nMr. Woodhouse was fond of society in his own way.  He liked very much\nto have his friends come and see him; and from various united causes,\nfrom his long residence at Hartfield, and his good nature,\nfrom his fortune, his house, and his daughter, he could command the\nvisits of his own little circle, in a great measure, as he liked.\nHe had not much intercourse with any families beyond that circle;\nhis horror of late hours, and large dinner-parties, made him unfit\nfor any acquaintance but such as would visit him on his own terms.\nFortunately for him, Highbury, including Randalls in the same parish,\nand Donwell Abbey in the parish adjoining, the seat of Mr. Knightley,\ncomprehended many such.  Not unfrequently, through Emma's persuasion,\nhe had some of the chosen and the best to dine with him: but evening\nparties were what he preferred; and, unless he fancied himself at any\ntime unequal to company, there was scarcely an evening in the week\nin which Emma could not make up a card-table for him.\n\nReal, long-standing regard brought the Westons and Mr. Knightley;\nand by Mr. Elton, a young man living alone without liking it,\nthe privilege of exchanging any vacant evening of his own blank solitude\nfor the elegancies and society of Mr. Woodhouse's drawing-room,\nand the smiles of his lovely daughter, was in no danger of being\nthrown away.\n\nAfter these came a second set; among the most come-at-able\nof whom were Mrs. and Miss Bates, and Mrs. Goddard, three ladies\nalmost always at the service of an invitation from Hartfield,\nand who were fetched and carried home so often, that Mr. Woodhouse\nthought it no hardship for either James or the horses.  Had it\ntaken place only once a year, it would have been a grievance.\n\nMrs. Bates, the widow of a former vicar of Highbury, was a\nvery old lady, almost past every thing but tea and quadrille.\nShe lived with her single daughter in a very small way, and was\nconsidered with all the regard and respect which a harmless old lady,\nunder such untoward circumstances, can excite.  Her daughter enjoyed\na most uncommon degree of popularity for a woman neither young,\nhandsome, rich, nor married.  Miss Bates stood in the very worst\npredicament in the world for having much of the public favour;\nand she had no intellectual superiority to make atonement to herself,\nor frighten those who might hate her into outward respect.\nShe had never boasted either beauty or cleverness.  Her youth\nhad passed without distinction, and her middle of life was devoted\nto the care of a failing mother, and the endeavour to make a small\nincome go as far as possible.  And yet she was a happy woman,\nand a woman whom no one named without good-will.  It was her own\nuniversal good-will and contented temper which worked such wonders.\nShe loved every body, was interested in every body's happiness,\nquicksighted to every body's merits; thought herself a most fortunate\ncreature, and surrounded with blessings in such an excellent mother,\nand so many good neighbours and friends, and a home that wanted\nfor nothing.  The simplicity and cheerfulness of her nature,\nher contented and grateful spirit, were a recommendation to every body,\nand a mine of felicity to herself.  She was a great talker upon\nlittle matters, which exactly suited Mr. Woodhouse, full of trivial\ncommunications and harmless gossip.\n\nMrs. Goddard was the mistress of a School--not of a seminary,\nor an establishment, or any thing which professed, in long sentences of\nrefined nonsense, to combine liberal acquirements with elegant morality,\nupon new principles and new systems--and where young ladies for\nenormous pay might be screwed out of health and into vanity--but\na real, honest, old-fashioned Boarding-school, where a reasonable\nquantity of accomplishments were sold at a reasonable price,\nand where girls might be sent to be out of the way, and scramble\nthemselves into a little education, without any danger of coming\nback prodigies.  Mrs. Goddard's school was in high repute--and\nvery deservedly; for Highbury was reckoned a particularly healthy\nspot: she had an ample house and garden, gave the children plenty\nof wholesome food, let them run about a great deal in the summer,\nand in winter dressed their chilblains with her own hands.\nIt was no wonder that a train of twenty young couple now walked\nafter her to church.  She was a plain, motherly kind of woman,\nwho had worked hard in her youth, and now thought herself entitled\nto the occasional holiday of a tea-visit; and having formerly\nowed much to Mr. Woodhouse's kindness, felt his particular claim\non her to leave her neat parlour, hung round with fancy-work,\nwhenever she could, and win or lose a few sixpences by his fireside.\n\nThese were the ladies whom Emma found herself very frequently\nable to collect; and happy was she, for her father's sake,\nin the power; though, as far as she was herself concerned,\nit was no remedy for the absence of Mrs. Weston.  She was delighted\nto see her father look comfortable, and very much pleased with\nherself for contriving things so well; but the quiet prosings\nof three such women made her feel that every evening so spent\nwas indeed one of the long evenings she had fearfully anticipated.\n\nAs she sat one morning, looking forward to exactly such a close\nof the present day, a note was brought from Mrs. Goddard, requesting,\nin most respectful terms, to be allowed to bring Miss Smith with her;\na most welcome request: for Miss Smith was a girl of seventeen,\nwhom Emma knew very well by sight, and had long felt an interest in,\non account of her beauty.  A very gracious invitation was returned,\nand the evening no longer dreaded by the fair mistress of the mansion.\n\nHarriet Smith was the natural daughter of somebody.  Somebody had\nplaced her, several years back, at Mrs. Goddard's school,\nand somebody had lately raised her from the condition of scholar\nto that of parlour-boarder. This was all that was generally known\nof her history.  She had no visible friends but what had been\nacquired at Highbury, and was now just returned from a long visit\nin the country to some young ladies who had been at school there with her.\n\nShe was a very pretty girl, and her beauty happened to be of a sort\nwhich Emma particularly admired.  She was short, plump, and fair,\nwith a fine bloom, blue eyes, light hair, regular features,\nand a look of great sweetness, and, before the end of the evening,\nEmma was as much pleased with her manners as her person, and quite\ndetermined to continue the acquaintance.\n\nShe was not struck by any thing remarkably clever in Miss Smith's\nconversation, but she found her altogether very engaging--not\ninconveniently shy, not unwilling to talk--and yet so far from pushing,\nshewing so proper and becoming a deference, seeming so pleasantly\ngrateful for being admitted to Hartfield, and so artlessly\nimpressed by the appearance of every thing in so superior a style\nto what she had been used to, that she must have good sense,\nand deserve encouragement.  Encouragement should be given.\nThose soft blue eyes, and all those natural graces, should not be\nwasted on the inferior society of Highbury and its connexions.\nThe acquaintance she had already formed were unworthy of her.\nThe friends from whom she had just parted, though very good sort\nof people, must be doing her harm.  They were a family of the name\nof Martin, whom Emma well knew by character, as renting a large farm\nof Mr. Knightley, and residing in the parish of Donwell--very creditably,\nshe believed--she knew Mr. Knightley thought highly of them--but they\nmust be coarse and unpolished, and very unfit to be the intimates\nof a girl who wanted only a little more knowledge and elegance\nto be quite perfect.  _She_ would notice her; she would improve her;\nshe would detach her from her bad acquaintance, and introduce her\ninto good society; she would form her opinions and her manners.\nIt would be an interesting, and certainly a very kind undertaking;\nhighly becoming her own situation in life, her leisure, and powers.\n\nShe was so busy in admiring those soft blue eyes, in talking\nand listening, and forming all these schemes in the in-betweens, that\nthe evening flew away at a very unusual rate; and the supper-table,\nwhich always closed such parties, and for which she had been\nused to sit and watch the due time, was all set out and ready,\nand moved forwards to the fire, before she was aware.  With an\nalacrity beyond the common impulse of a spirit which yet was never\nindifferent to the credit of doing every thing well and attentively,\nwith the real good-will of a mind delighted with its own ideas,\ndid she then do all the honours of the meal, and help and recommend\nthe minced chicken and scalloped oysters, with an urgency which she\nknew would be acceptable to the early hours and civil scruples of their guests.\n\nUpon such occasions poor Mr. Woodhouses feelings were in sad warfare.\nHe loved to have the cloth laid, because it had been the fashion\nof his youth, but his conviction of suppers being very unwholesome\nmade him rather sorry to see any thing put on it; and while his\nhospitality would have welcomed his visitors to every thing,\nhis care for their health made him grieve that they would eat.\n\nSuch another small basin of thin gruel as his own was all that\nhe could, with thorough self-approbation, recommend; though he\nmight constrain himself, while the ladies were comfortably clearing\nthe nicer things, to say:\n\n\"Mrs. Bates, let me propose your venturing on one of these eggs.\nAn egg boiled very soft is not unwholesome.  Serle understands boiling\nan egg better than any body.  I would not recommend an egg boiled\nby any body else; but you need not be afraid, they are very small,\nyou see--one of our small eggs will not hurt you.  Miss Bates,\nlet Emma help you to a _little_ bit of tart--a _very_ little bit.\nOurs are all apple-tarts. You need not be afraid of unwholesome\npreserves here.  I do not advise the custard.  Mrs. Goddard, what say\nyou to _half_ a glass of wine? A _small_ half-glass, put into a tumbler\nof water? I do not think it could disagree with you.\"\n\nEmma allowed her father to talk--but supplied her visitors in\na much more satisfactory style, and on the present evening had\nparticular pleasure in sending them away happy.  The happiness\nof Miss Smith was quite equal to her intentions.  Miss Woodhouse\nwas so great a personage in Highbury, that the prospect of the\nintroduction had given as much panic as pleasure; but the humble,\ngrateful little girl went off with highly gratified feelings,\ndelighted with the affability with which Miss Woodhouse had treated\nher all the evening, and actually shaken hands with her at last!\n\n\n\nCHAPTER IV\n\n\nHarriet Smith's intimacy at Hartfield was soon a settled thing.\nQuick and decided in her ways, Emma lost no time in inviting, encouraging,\nand telling her to come very often; and as their acquaintance increased,\nso did their satisfaction in each other.  As a walking companion,\nEmma had very early foreseen how useful she might find her.\nIn that respect Mrs. Weston's loss had been important.  Her father\nnever went beyond the shrubbery, where two divisions of the ground\nsufficed him for his long walk, or his short, as the year varied;\nand since Mrs. Weston's marriage her exercise had been too much confined.\nShe had ventured once alone to Randalls, but it was not pleasant;\nand a Harriet Smith, therefore, one whom she could summon at any\ntime to a walk, would be a valuable addition to her privileges.\nBut in every respect, as she saw more of her, she approved her,\nand was confirmed in all her kind designs.\n\nHarriet certainly was not clever, but she had a sweet, docile,\ngrateful disposition, was totally free from conceit, and only desiring\nto be guided by any one she looked up to.  Her early attachment\nto herself was very amiable; and her inclination for good company,\nand power of appreciating what was elegant and clever, shewed that\nthere was no want of taste, though strength of understanding must\nnot be expected.  Altogether she was quite convinced of Harriet\nSmith's being exactly the young friend she wanted--exactly the\nsomething which her home required.  Such a friend as Mrs. Weston\nwas out of the question.  Two such could never be granted.\nTwo such she did not want.  It was quite a different sort of thing,\na sentiment distinct and independent.  Mrs. Weston was the object\nof a regard which had its basis in gratitude and esteem.\nHarriet would be loved as one to whom she could be useful.\nFor Mrs. Weston there was nothing to be done; for Harriet every thing.\n\nHer first attempts at usefulness were in an endeavour to find out who\nwere the parents, but Harriet could not tell.  She was ready to tell\nevery thing in her power, but on this subject questions were vain.\nEmma was obliged to fancy what she liked--but she could never\nbelieve that in the same situation _she_ should not have discovered\nthe truth.  Harriet had no penetration.  She had been satisfied\nto hear and believe just what Mrs. Goddard chose to tell her;\nand looked no farther.\n\nMrs. Goddard, and the teachers, and the girls and the affairs of the\nschool in general, formed naturally a great part of the conversation--and\nbut for her acquaintance with the Martins of Abbey-Mill Farm,\nit must have been the whole.  But the Martins occupied her thoughts\na good deal; she had spent two very happy months with them,\nand now loved to talk of the pleasures of her visit, and describe\nthe many comforts and wonders of the place.  Emma encouraged her\ntalkativeness--amused by such a picture of another set of beings,\nand enjoying the youthful simplicity which could speak with so much\nexultation of Mrs. Martin's having \"_two_ parlours, two very good parlours,\nindeed; one of them quite as large as Mrs. Goddard's drawing-room;\nand of her having an upper maid who had lived five-and-twenty years\nwith her; and of their having eight cows, two of them Alderneys,\nand one a little Welch cow, a very pretty little Welch cow indeed;\nand of Mrs. Martin's saying as she was so fond of it, it should be\ncalled _her_ cow; and of their having a very handsome summer-house\nin their garden, where some day next year they were all to drink\ntea:--a very handsome summer-house, large enough to hold a dozen people.\"\n\nFor some time she was amused, without thinking beyond the immediate cause;\nbut as she came to understand the family better, other feelings arose.\nShe had taken up a wrong idea, fancying it was a mother and daughter,\na son and son's wife, who all lived together; but when it appeared\nthat the Mr. Martin, who bore a part in the narrative, and was always\nmentioned with approbation for his great good-nature in doing something\nor other, was a single man; that there was no young Mrs. Martin,\nno wife in the case; she did suspect danger to her poor little\nfriend from all this hospitality and kindness, and that, if she\nwere not taken care of, she might be required to sink herself forever.\n\nWith this inspiriting notion, her questions increased in number\nand meaning; and she particularly led Harriet to talk more of Mr. Martin,\nand there was evidently no dislike to it.  Harriet was very ready\nto speak of the share he had had in their moonlight walks and merry\nevening games; and dwelt a good deal upon his being so very good-humoured\nand obliging.  He had gone three miles round one day in order to bring\nher some walnuts, because she had said how fond she was of them,\nand in every thing else he was so very obliging.  He had his\nshepherd's son into the parlour one night on purpose to sing to her.\nShe was very fond of singing.  He could sing a little himself.\nShe believed he was very clever, and understood every thing.\nHe had a very fine flock, and, while she was with them,\nhe had been bid more for his wool than any body in the country.\nShe believed every body spoke well of him.  His mother and sisters\nwere very fond of him.  Mrs. Martin had told her one day (and there\nwas a blush as she said it,) that it was impossible for any body\nto be a better son, and therefore she was sure, whenever he married,\nhe would make a good husband.  Not that she _wanted_ him to marry.\nShe was in no hurry at all.\n\n\"Well done, Mrs. Martin!\" thought Emma.  \"You know what you are about.\"\n\n\"And when she had come away, Mrs. Martin was so very kind as to send\nMrs. Goddard a beautiful goose--the finest goose Mrs. Goddard had\never seen.  Mrs. Goddard had dressed it on a Sunday, and asked all\nthe three teachers, Miss Nash, and Miss Prince, and Miss Richardson,\nto sup with her.\"\n\n\"Mr. Martin, I suppose, is not a man of information beyond the line\nof his own business? He does not read?\"\n\n\"Oh yes!--that is, no--I do not know--but I believe he has\nread a good deal--but not what you would think any thing of.\nHe reads the Agricultural Reports, and some other books that lay\nin one of the window seats--but he reads all _them_ to himself.\nBut sometimes of an evening, before we went to cards, he would read\nsomething aloud out of the Elegant Extracts, very entertaining.\nAnd I know he has read the Vicar of Wakefield.  He never read the\nRomance of the Forest, nor The Children of the Abbey.  He had never\nheard of such books before I mentioned them, but he is determined\nto get them now as soon as ever he can.\"\n\nThe next question was--\n\n\"What sort of looking man is Mr. Martin?\"\n\n\"Oh! not handsome--not at all handsome.  I thought him very plain\nat first, but I do not think him so plain now.  One does not, you know,\nafter a time.  But did you never see him? He is in Highbury every\nnow and then, and he is sure to ride through every week in his way\nto Kingston.  He has passed you very often.\"\n\n\"That may be, and I may have seen him fifty times, but without\nhaving any idea of his name.  A young farmer, whether on horseback\nor on foot, is the very last sort of person to raise my curiosity.\nThe yeomanry are precisely the order of people with whom I feel I\ncan have nothing to do.  A degree or two lower, and a creditable\nappearance might interest me; I might hope to be useful to their\nfamilies in some way or other.  But a farmer can need none of my help,\nand is, therefore, in one sense, as much above my notice as in every\nother he is below it.\"\n\n\"To be sure.  Oh yes! It is not likely you should ever have\nobserved him; but he knows you very well indeed--I mean by sight.\"\n\n\"I have no doubt of his being a very respectable young man.\nI know, indeed, that he is so, and, as such, wish him well.\nWhat do you imagine his age to be?\"\n\n\"He was four-and-twenty the 8th of last June, and my birthday is\nthe 23rd just a fortnight and a day's difference--which is very odd.\"\n\n\"Only four-and-twenty. That is too young to settle.  His mother is\nperfectly right not to be in a hurry.  They seem very comfortable\nas they are, and if she were to take any pains to marry him,\nshe would probably repent it.  Six years hence, if he could meet\nwith a good sort of young woman in the same rank as his own,\nwith a little money, it might be very desirable.\"\n\n\"Six years hence! Dear Miss Woodhouse, he would be thirty years old!\"\n\n\"Well, and that is as early as most men can afford to marry,\nwho are not born to an independence.  Mr. Martin, I imagine,\nhas his fortune entirely to make--cannot be at all beforehand with\nthe world.  Whatever money he might come into when his father died,\nwhatever his share of the family property, it is, I dare say,\nall afloat, all employed in his stock, and so forth; and though,\nwith diligence and good luck, he may be rich in time, it is next to\nimpossible that he should have realised any thing yet.\"\n\n\"To be sure, so it is.  But they live very comfortably.\nThey have no indoors man, else they do not want for any thing;\nand Mrs. Martin talks of taking a boy another year.\"\n\n\"I wish you may not get into a scrape, Harriet, whenever he does\nmarry;--I mean, as to being acquainted with his wife--for though\nhis sisters, from a superior education, are not to be altogether\nobjected to, it does not follow that he might marry any body at all fit\nfor you to notice.  The misfortune of your birth ought to make you\nparticularly careful as to your associates.  There can be no doubt\nof your being a gentleman's daughter, and you must support your\nclaim to that station by every thing within your own power, or there\nwill be plenty of people who would take pleasure in degrading you.\"\n\n\"Yes, to be sure, I suppose there are.  But while I visit\nat Hartfield, and you are so kind to me, Miss Woodhouse,\nI am not afraid of what any body can do.\"\n\n\"You understand the force of influence pretty well, Harriet; but I\nwould have you so firmly established in good society, as to be\nindependent even of Hartfield and Miss Woodhouse.  I want to see you\npermanently well connected, and to that end it will be advisable\nto have as few odd acquaintance as may be; and, therefore, I say\nthat if you should still be in this country when Mr. Martin marries,\nI wish you may not be drawn in by your intimacy with the sisters,\nto be acquainted with the wife, who will probably be some mere\nfarmer's daughter, without education.\"\n\n\"To be sure.  Yes.  Not that I think Mr. Martin would ever marry any body\nbut what had had some education--and been very well brought up.\nHowever, I do not mean to set up my opinion against your's--and I\nam sure I shall not wish for the acquaintance of his wife.  I shall\nalways have a great regard for the Miss Martins, especially Elizabeth,\nand should be very sorry to give them up, for they are quite as well\neducated as me.  But if he marries a very ignorant, vulgar woman,\ncertainly I had better not visit her, if I can help it.\"\n\nEmma watched her through the fluctuations of this speech,\nand saw no alarming symptoms of love.  The young man had been\nthe first admirer, but she trusted there was no other hold,\nand that there would be no serious difficulty, on Harriet's side,\nto oppose any friendly arrangement of her own.\n\nThey met Mr. Martin the very next day, as they were walking on the\nDonwell road.  He was on foot, and after looking very respectfully\nat her, looked with most unfeigned satisfaction at her companion.\nEmma was not sorry to have such an opportunity of survey;\nand walking a few yards forward, while they talked together, soon made\nher quick eye sufficiently acquainted with Mr. Robert Martin.\nHis appearance was very neat, and he looked like a sensible young man,\nbut his person had no other advantage; and when he came to be\ncontrasted with gentlemen, she thought he must lose all the ground\nhe had gained in Harriet's inclination.  Harriet was not insensible\nof manner; she had voluntarily noticed her father's gentleness\nwith admiration as well as wonder.  Mr. Martin looked as if he\ndid not know what manner was.\n\nThey remained but a few minutes together, as Miss Woodhouse must\nnot be kept waiting; and Harriet then came running to her with a\nsmiling face, and in a flutter of spirits, which Miss Woodhouse\nhoped very soon to compose.\n\n\"Only think of our happening to meet him!--How very odd! It was\nquite a chance, he said, that he had not gone round by Randalls.\nHe did not think we ever walked this road.  He thought we walked\ntowards Randalls most days.  He has not been able to get the\nRomance of the Forest yet.  He was so busy the last time he was\nat Kingston that he quite forgot it, but he goes again to-morrow.\nSo very odd we should happen to meet! Well, Miss Woodhouse, is he\nlike what you expected? What do you think of him? Do you think him\nso very plain?\"\n\n\"He is very plain, undoubtedly--remarkably plain:--but that is\nnothing compared with his entire want of gentility.  I had no\nright to expect much, and I did not expect much; but I had no\nidea that he could be so very clownish, so totally without air.\nI had imagined him, I confess, a degree or two nearer gentility.\"\n\n\"To be sure,\" said Harriet, in a mortified voice, \"he is not\nso genteel as real gentlemen.\"\n\n\"I think, Harriet, since your acquaintance with us, you have been\nrepeatedly in the company of some such very real gentlemen,\nthat you must yourself be struck with the difference in Mr. Martin.\nAt Hartfield, you have had very good specimens of well educated,\nwell bred men.  I should be surprized if, after seeing them,\nyou could be in company with Mr. Martin again without perceiving\nhim to be a very inferior creature--and rather wondering at\nyourself for having ever thought him at all agreeable before.\nDo not you begin to feel that now? Were not you struck? I am sure\nyou must have been struck by his awkward look and abrupt manner,\nand the uncouthness of a voice which I heard to be wholly unmodulated\nas I stood here.\"\n\n\"Certainly, he is not like Mr. Knightley.  He has not such a fine\nair and way of walking as Mr. Knightley.  I see the difference\nplain enough.  But Mr. Knightley is so very fine a man!\"\n\n\"Mr. Knightley's air is so remarkably good that it is not fair\nto compare Mr. Martin with _him_.  You might not see one in a hundred\nwith _gentleman_ so plainly written as in Mr. Knightley.  But he is\nnot the only gentleman you have been lately used to.  What say you\nto Mr. Weston and Mr. Elton? Compare Mr. Martin with either of _them_.\nCompare their manner of carrying themselves; of walking; of speaking;\nof being silent.  You must see the difference.\"\n\n\"Oh yes!--there is a great difference.  But Mr. Weston is almost\nan old man.  Mr. Weston must be between forty and fifty.\"\n\n\"Which makes his good manners the more valuable.  The older a\nperson grows, Harriet, the more important it is that their manners\nshould not be bad; the more glaring and disgusting any loudness,\nor coarseness, or awkwardness becomes.  What is passable in youth\nis detestable in later age.  Mr. Martin is now awkward and abrupt;\nwhat will he be at Mr. Weston's time of life?\"\n\n\"There is no saying, indeed,\" replied Harriet rather solemnly.\n\n\"But there may be pretty good guessing.  He will be a completely gross,\nvulgar farmer, totally inattentive to appearances, and thinking\nof nothing but profit and loss.\"\n\n\"Will he, indeed? That will be very bad.\"\n\n\"How much his business engrosses him already is very plain from the\ncircumstance of his forgetting to inquire for the book you recommended.\nHe was a great deal too full of the market to think of any thing\nelse--which is just as it should be, for a thriving man.  What has\nhe to do with books? And I have no doubt that he _will_ thrive,\nand be a very rich man in time--and his being illiterate and coarse\nneed not disturb _us_.\"\n\n\"I wonder he did not remember the book\"--was all Harriet's answer,\nand spoken with a degree of grave displeasure which Emma thought might\nbe safely left to itself.  She, therefore, said no more for some time.\nHer next beginning was,\n\n\"In one respect, perhaps, Mr. Elton's manners are superior\nto Mr. Knightley's or Mr. Weston's. They have more gentleness.\nThey might be more safely held up as a pattern.  There is an openness,\na quickness, almost a bluntness in Mr. Weston, which every body\nlikes in _him_, because there is so much good-humour with it--but\nthat would not do to be copied.  Neither would Mr. Knightley's\ndownright, decided, commanding sort of manner, though it suits\n_him_ very well; his figure, and look, and situation in life seem\nto allow it; but if any young man were to set about copying him,\nhe would not be sufferable.  On the contrary, I think a young man\nmight be very safely recommended to take Mr. Elton as a model.\nMr. Elton is good-humoured, cheerful, obliging, and gentle.\nHe seems to me to be grown particularly gentle of late.  I do not\nknow whether he has any design of ingratiating himself with either\nof us, Harriet, by additional softness, but it strikes me that his\nmanners are softer than they used to be.  If he means any thing,\nit must be to please you.  Did not I tell you what he said of you\nthe other day?\"\n\nShe then repeated some warm personal praise which she had drawn\nfrom Mr. Elton, and now did full justice to; and Harriet blushed\nand smiled, and said she had always thought Mr. Elton very agreeable.\n\nMr. Elton was the very person fixed on by Emma for driving\nthe young farmer out of Harriet's head.  She thought it would\nbe an excellent match; and only too palpably desirable, natural,\nand probable, for her to have much merit in planning it.\nShe feared it was what every body else must think of and predict.\nIt was not likely, however, that any body should have equalled\nher in the date of the plan, as it had entered her brain during\nthe very first evening of Harriet's coming to Hartfield.  The longer\nshe considered it, the greater was her sense of its expediency.\nMr. Elton's situation was most suitable, quite the gentleman himself,\nand without low connexions; at the same time, not of any family\nthat could fairly object to the doubtful birth of Harriet.  He had a\ncomfortable home for her, and Emma imagined a very sufficient income;\nfor though the vicarage of Highbury was not large, he was known\nto have some independent property; and she thought very highly\nof him as a good-humoured, well-meaning, respectable young man,\nwithout any deficiency of useful understanding or knowledge of the world.\n\nShe had already satisfied herself that he thought Harriet a beautiful\ngirl, which she trusted, with such frequent meetings at Hartfield,\nwas foundation enough on his side; and on Harriet's there could be\nlittle doubt that the idea of being preferred by him would have all\nthe usual weight and efficacy.  And he was really a very pleasing\nyoung man, a young man whom any woman not fastidious might like.\nHe was reckoned very handsome; his person much admired in general,\nthough not by her, there being a want of elegance of feature which\nshe could not dispense with:--but the girl who could be gratified\nby a Robert Martin's riding about the country to get walnuts\nfor her might very well be conquered by Mr. Elton's admiration.\n\n\n\nCHAPTER V\n\n\n\"I do not know what your opinion may be, Mrs. Weston,\" said Mr. Knightley, \"of\nthis great intimacy between Emma and Harriet Smith, but I think it a bad thing.\"\n\n\"A bad thing! Do you really think it a bad thing?--why so?\"\n\n\"I think they will neither of them do the other any good.\"\n\n\"You surprize me! Emma must do Harriet good: and by supplying her\nwith a new object of interest, Harriet may be said to do Emma good.\nI have been seeing their intimacy with the greatest pleasure.\nHow very differently we feel!--Not think they will do each other any\ngood! This will certainly be the beginning of one of our quarrels\nabout Emma, Mr. Knightley.\"\n\n\"Perhaps you think I am come on purpose to quarrel with you,\nknowing Weston to be out, and that you must still fight your own battle.\"\n\n\"Mr. Weston would undoubtedly support me, if he were here,\nfor he thinks exactly as I do on the subject.  We were speaking\nof it only yesterday, and agreeing how fortunate it was for Emma,\nthat there should be such a girl in Highbury for her to associate with.\nMr. Knightley, I shall not allow you to be a fair judge in this case.\nYou are so much used to live alone, that you do not know the value\nof a companion; and, perhaps no man can be a good judge of the comfort\na woman feels in the society of one of her own sex, after being used\nto it all her life.  I can imagine your objection to Harriet Smith.\nShe is not the superior young woman which Emma's friend ought to be.\nBut on the other hand, as Emma wants to see her better informed,\nit will be an inducement to her to read more herself.  They will\nread together.  She means it, I know.\"\n\n\"Emma has been meaning to read more ever since she was twelve\nyears old.  I have seen a great many lists of her drawing-up at\nvarious times of books that she meant to read regularly through--and\nvery good lists they were--very well chosen, and very neatly\narranged--sometimes alphabetically, and sometimes by some other rule.\nThe list she drew up when only fourteen--I remember thinking it\ndid her judgment so much credit, that I preserved it some time;\nand I dare say she may have made out a very good list now.  But I\nhave done with expecting any course of steady reading from Emma.\nShe will never submit to any thing requiring industry and patience,\nand a subjection of the fancy to the understanding.  Where Miss Taylor\nfailed to stimulate, I may safely affirm that Harriet Smith will do\nnothing.--You never could persuade her to read half so much as you\nwished.--You know you could not.\"\n\n\"I dare say,\" replied Mrs. Weston, smiling, \"that I thought\nso _then_;--but since we have parted, I can never remember Emma's\nomitting to do any thing I wished.\"\n\n\"There is hardly any desiring to refresh such a memory as _that_,\"--said\nMr. Knightley, feelingly; and for a moment or two he had done.  \"But I,\"\nhe soon added, \"who have had no such charm thrown over my senses,\nmust still see, hear, and remember.  Emma is spoiled by being the\ncleverest of her family.  At ten years old, she had the misfortune of\nbeing able to answer questions which puzzled her sister at seventeen.\nShe was always quick and assured: Isabella slow and diffident.\nAnd ever since she was twelve, Emma has been mistress of the house\nand of you all.  In her mother she lost the only person able to cope\nwith her.  She inherits her mother's talents, and must have been\nunder subjection to her.\"\n\n\"I should have been sorry, Mr. Knightley, to be dependent on\n_your_ recommendation, had I quitted Mr. Woodhouse's family and wanted\nanother situation; I do not think you would have spoken a good word for\nme to any body.  I am sure you always thought me unfit for the office I held.\"\n\n\"Yes,\" said he, smiling.  \"You are better placed _here_; very fit\nfor a wife, but not at all for a governess.  But you were preparing\nyourself to be an excellent wife all the time you were at Hartfield.\nYou might not give Emma such a complete education as your powers would\nseem to promise; but you were receiving a very good education from _her_,\non the very material matrimonial point of submitting your own will,\nand doing as you were bid; and if Weston had asked me to recommend\nhim a wife, I should certainly have named Miss Taylor.\"\n\n\"Thank you.  There will be very little merit in making a good wife\nto such a man as Mr. Weston.\"\n\n\"Why, to own the truth, I am afraid you are rather thrown away,\nand that with every disposition to bear, there will be nothing\nto be borne.  We will not despair, however.  Weston may grow cross\nfrom the wantonness of comfort, or his son may plague him.\"\n\n\"I hope not _that_.--It is not likely.  No, Mr. Knightley, do not\nforetell vexation from that quarter.\"\n\n\"Not I, indeed.  I only name possibilities.  I do not pretend to Emma's\ngenius for foretelling and guessing.  I hope, with all my heart,\nthe young man may be a Weston in merit, and a Churchill in fortune.--But\nHarriet Smith--I have not half done about Harriet Smith.  I think\nher the very worst sort of companion that Emma could possibly have.\nShe knows nothing herself, and looks upon Emma as knowing every thing.\nShe is a flatterer in all her ways; and so much the worse,\nbecause undesigned.  Her ignorance is hourly flattery.  How can\nEmma imagine she has any thing to learn herself, while Harriet\nis presenting such a delightful inferiority? And as for Harriet,\nI will venture to say that _she_ cannot gain by the acquaintance.\nHartfield will only put her out of conceit with all the other places\nshe belongs to.  She will grow just refined enough to be uncomfortable\nwith those among whom birth and circumstances have placed her home.\nI am much mistaken if Emma's doctrines give any strength of mind,\nor tend at all to make a girl adapt herself rationally to the varieties\nof her situation in life.--They only give a little polish.\"\n\n\"I either depend more upon Emma's good sense than you do, or am more\nanxious for her present comfort; for I cannot lament the acquaintance.\nHow well she looked last night!\"\n\n\"Oh! you would rather talk of her person than her mind, would you?\nVery well; I shall not attempt to deny Emma's being pretty.\"\n\n\"Pretty! say beautiful rather.  Can you imagine any thing nearer\nperfect beauty than Emma altogether--face and figure?\"\n\n\"I do not know what I could imagine, but I confess that I have\nseldom seen a face or figure more pleasing to me than hers.\nBut I am a partial old friend.\"\n\n\"Such an eye!--the true hazle eye--and so brilliant! regular features,\nopen countenance, with a complexion! oh! what a bloom of full health,\nand such a pretty height and size; such a firm and upright figure!\nThere is health, not merely in her bloom, but in her air, her head,\nher glance.  One hears sometimes of a child being `the picture\nof health;' now, Emma always gives me the idea of being the complete\npicture of grown-up health.  She is loveliness itself.  Mr. Knightley,\nis not she?\"\n\n\"I have not a fault to find with her person,\" he replied.\n\"I think her all you describe.  I love to look at her; and I\nwill add this praise, that I do not think her personally vain.\nConsidering how very handsome she is, she appears to be little\noccupied with it; her vanity lies another way.  Mrs. Weston, I am\nnot to be talked out of my dislike of Harriet Smith, or my dread\nof its doing them both harm.\"\n\n\"And I, Mr. Knightley, am equally stout in my confidence of its\nnot doing them any harm.  With all dear Emma's little faults,\nshe is an excellent creature.  Where shall we see a better daughter,\nor a kinder sister, or a truer friend? No, no; she has qualities\nwhich may be trusted; she will never lead any one really wrong;\nshe will make no lasting blunder; where Emma errs once, she is in the\nright a hundred times.\"\n\n\"Very well; I will not plague you any more.  Emma shall be an angel,\nand I will keep my spleen to myself till Christmas brings John\nand Isabella.  John loves Emma with a reasonable and therefore\nnot a blind affection, and Isabella always thinks as he does;\nexcept when he is not quite frightened enough about the children.\nI am sure of having their opinions with me.\"\n\n\"I know that you all love her really too well to be unjust or unkind;\nbut excuse me, Mr. Knightley, if I take the liberty (I consider myself,\nyou know, as having somewhat of the privilege of speech that Emma's\nmother might have had) the liberty of hinting that I do not think\nany possible good can arise from Harriet Smith's intimacy being made\na matter of much discussion among you.  Pray excuse me; but supposing\nany little inconvenience may be apprehended from the intimacy,\nit cannot be expected that Emma, accountable to nobody but her father,\nwho perfectly approves the acquaintance, should put an end to it,\nso long as it is a source of pleasure to herself.  It has been so\nmany years my province to give advice, that you cannot be surprized,\nMr. Knightley, at this little remains of office.\"\n\n\"Not at all,\" cried he; \"I am much obliged to you for it.\nIt is very good advice, and it shall have a better fate than your\nadvice has often found; for it shall be attended to.\"\n\n\"Mrs. John Knightley is easily alarmed, and might be made unhappy\nabout her sister.\"\n\n\"Be satisfied,\" said he, \"I will not raise any outcry.  I will keep\nmy ill-humour to myself.  I have a very sincere interest in Emma.\nIsabella does not seem more my sister; has never excited a\ngreater interest; perhaps hardly so great.  There is an anxiety,\na curiosity in what one feels for Emma.  I wonder what will become\nof her!\"\n\n\"So do I,\" said Mrs. Weston gently, \"very much.\"\n\n\"She always declares she will never marry, which, of course,\nmeans just nothing at all.  But I have no idea that she has yet\never seen a man she cared for.  It would not be a bad thing for her\nto be very much in love with a proper object.  I should like to see\nEmma in love, and in some doubt of a return; it would do her good.\nBut there is nobody hereabouts to attach her; and she goes so seldom\nfrom home.\"\n\n\"There does, indeed, seem as little to tempt her to break\nher resolution at present,\" said Mrs. Weston, \"as can well be;\nand while she is so happy at Hartfield, I cannot wish her to be\nforming any attachment which would be creating such difficulties\non poor Mr. Woodhouse's account.  I do not recommend matrimony\nat present to Emma, though I mean no slight to the state, I assure you.\"\n\nPart of her meaning was to conceal some favourite thoughts of\nher own and Mr. Weston's on the subject, as much as possible.\nThere were wishes at Randalls respecting Emma's destiny, but it\nwas not desirable to have them suspected; and the quiet transition\nwhich Mr. Knightley soon afterwards made to \"What does Weston\nthink of the weather; shall we have rain?\" convinced her that he\nhad nothing more to say or surmise about Hartfield.\n\n\n\nCHAPTER VI\n\n\nEmma could not feel a doubt of having given Harriet's fancy\na proper direction and raised the gratitude of her young vanity\nto a very good purpose, for she found her decidedly more sensible\nthan before of Mr. Elton's being a remarkably handsome man, with most\nagreeable manners; and as she had no hesitation in following up\nthe assurance of his admiration by agreeable hints, she was soon\npretty confident of creating as much liking on Harriet's side,\nas there could be any occasion for.  She was quite convinced\nof Mr. Elton's being in the fairest way of falling in love,\nif not in love already.  She had no scruple with regard to him.\nHe talked of Harriet, and praised her so warmly, that she could\nnot suppose any thing wanting which a little time would not add.\nHis perception of the striking improvement of Harriet's manner,\nsince her introduction at Hartfield, was not one of the least\nagreeable proofs of his growing attachment.\n\n\"You have given Miss Smith all that she required,\" said he;\n\"you have made her graceful and easy.  She was a beautiful creature\nwhen she came to you, but, in my opinion, the attractions you have\nadded are infinitely superior to what she received from nature.\"\n\n\"I am glad you think I have been useful to her; but Harriet\nonly wanted drawing out, and receiving a few, very few hints.\nShe had all the natural grace of sweetness of temper and artlessness\nin herself.  I have done very little.\"\n\n\"If it were admissible to contradict a lady,\" said the gallant\nMr. Elton--\n\n\"I have perhaps given her a little more decision of character,\nhave taught her to think on points which had not fallen in her\nway before.\"\n\n\"Exactly so; that is what principally strikes me.  So much superadded\ndecision of character! Skilful has been the hand!\"\n\n\"Great has been the pleasure, I am sure.  I never met with\na disposition more truly amiable.\"\n\n\"I have no doubt of it.\" And it was spoken with a sort\nof sighing animation, which had a vast deal of the lover.\nShe was not less pleased another day with the manner\nin which he seconded a sudden wish of hers, to have Harriet's picture.\n\n\"Did you ever have your likeness taken, Harriet?\" said she: \"did\nyou ever sit for your picture?\"\n\nHarriet was on the point of leaving the room, and only stopt to say,\nwith a very interesting naivete,\n\n\"Oh! dear, no, never.\"\n\nNo sooner was she out of sight, than Emma exclaimed,\n\n\"What an exquisite possession a good picture of her would be! I would\ngive any money for it.  I almost long to attempt her likeness myself.\nYou do not know it I dare say, but two or three years ago I had\na great passion for taking likenesses, and attempted several of\nmy friends, and was thought to have a tolerable eye in general.\nBut from one cause or another, I gave it up in disgust.\nBut really, I could almost venture, if Harriet would sit to me.\nIt would be such a delight to have her picture!\"\n\n\"Let me entreat you,\" cried Mr. Elton; \"it would indeed be a delight!\nLet me entreat you, Miss Woodhouse, to exercise so charming a\ntalent in favour of your friend.  I know what your drawings are.\nHow could you suppose me ignorant? Is not this room rich in\nspecimens of your landscapes and flowers; and has not Mrs. Weston\nsome inimitable figure-pieces in her drawing-room, at Randalls?\"\n\nYes, good man!--thought Emma--but what has all that to do with taking\nlikenesses? You know nothing of drawing.  Don't pretend to be\nin raptures about mine.  Keep your raptures for Harriet's face.\n\"Well, if you give me such kind encouragement, Mr. Elton, I believe\nI shall try what I can do.  Harriet's features are very delicate,\nwhich makes a likeness difficult; and yet there is a peculiarity\nin the shape of the eye and the lines about the mouth which one ought\nto catch.\"\n\n\"Exactly so--The shape of the eye and the lines about the mouth--I\nhave not a doubt of your success.  Pray, pray attempt it.\nAs you will do it, it will indeed, to use your own words,\nbe an exquisite possession.\"\n\n\"But I am afraid, Mr. Elton, Harriet will not like to sit.\nShe thinks so little of her own beauty.  Did not you observe her\nmanner of answering me? How completely it meant, `why should my\npicture be drawn?'\"\n\n\"Oh! yes, I observed it, I assure you.  It was not lost on me.\nBut still I cannot imagine she would not be persuaded.\"\n\nHarriet was soon back again, and the proposal almost immediately made;\nand she had no scruples which could stand many minutes against the earnest\npressing of both the others.  Emma wished to go to work directly,\nand therefore produced the portfolio containing her various attempts\nat portraits, for not one of them had ever been finished, that they\nmight decide together on the best size for Harriet.  Her many\nbeginnings were displayed.  Miniatures, half-lengths, whole-lengths,\npencil, crayon, and water-colours had been all tried in turn.\nShe had always wanted to do every thing, and had made more progress\nboth in drawing and music than many might have done with so little\nlabour as she would ever submit to.  She played and sang;--and drew\nin almost every style; but steadiness had always been wanting;\nand in nothing had she approached the degree of excellence which she\nwould have been glad to command, and ought not to have failed of.\nShe was not much deceived as to her own skill either as an artist\nor a musician, but she was not unwilling to have others deceived,\nor sorry to know her reputation for accomplishment often higher\nthan it deserved.\n\nThere was merit in every drawing--in the least finished, perhaps the most;\nher style was spirited; but had there been much less, or had there\nbeen ten times more, the delight and admiration of her two companions\nwould have been the same.  They were both in ecstasies.  A likeness\npleases every body; and Miss Woodhouse's performances must be capital.\n\n\"No great variety of faces for you,\" said Emma.  \"I had only my\nown family to study from.  There is my father--another of my\nfather--but the idea of sitting for his picture made him so nervous,\nthat I could only take him by stealth; neither of them very\nlike therefore.  Mrs. Weston again, and again, and again, you see.\nDear Mrs. Weston! always my kindest friend on every occasion.\nShe would sit whenever I asked her.  There is my sister; and really\nquite her own little elegant figure!--and the face not unlike.\nI should have made a good likeness of her, if she would have\nsat longer, but she was in such a hurry to have me draw her four\nchildren that she would not be quiet.  Then, here come all my\nattempts at three of those four children;--there they are,\nHenry and John and Bella, from one end of the sheet to the other,\nand any one of them might do for any one of the rest.  She was so\neager to have them drawn that I could not refuse; but there is no\nmaking children of three or four years old stand still you know;\nnor can it be very easy to take any likeness of them, beyond the\nair and complexion, unless they are coarser featured than any\nof mama's children ever were.  Here is my sketch of the fourth,\nwho was a baby.  I took him as he was sleeping on the sofa, and it\nis as strong a likeness of his cockade as you would wish to see.\nHe had nestled down his head most conveniently.  That's very like.\nI am rather proud of little George.  The corner of the sofa is very good.\nThen here is my last,\"--unclosing a pretty sketch of a gentleman\nin small size, whole-length--\"my last and my best--my brother,\nMr. John Knightley.--This did not want much of being finished, when I\nput it away in a pet, and vowed I would never take another likeness.\nI could not help being provoked; for after all my pains, and when I\nhad really made a very good likeness of it--(Mrs. Weston and I\nwere quite agreed in thinking it _very_ like)--only too handsome--too\nflattering--but that was a fault on the right side--after\nall this, came poor dear Isabella's cold approbation of--\"Yes,\nit was a little like--but to be sure it did not do him justice.\"\nWe had had a great deal of trouble in persuading him to sit at all.\nIt was made a great favour of; and altogether it was more than I\ncould bear; and so I never would finish it, to have it apologised\nover as an unfavourable likeness, to every morning visitor in\nBrunswick Square;--and, as I said, I did then forswear ever drawing\nany body again.  But for Harriet's sake, or rather for my own,\nand as there are no husbands and wives in the case _at_ _present_,\nI will break my resolution now.\"\n\nMr. Elton seemed very properly struck and delighted by the idea,\nand was repeating, \"No husbands and wives in the case at present\nindeed, as you observe.  Exactly so.  No husbands and wives,\"\nwith so interesting a consciousness, that Emma began to consider\nwhether she had not better leave them together at once.  But as she\nwanted to be drawing, the declaration must wait a little longer.\n\nShe had soon fixed on the size and sort of portrait.\nIt was to be a whole-length in water-colours, like Mr. John\nKnightley's, and was destined, if she could please herself,\nto hold a very honourable station over the mantelpiece.\n\nThe sitting began; and Harriet, smiling and blushing, and afraid\nof not keeping her attitude and countenance, presented a very sweet\nmixture of youthful expression to the steady eyes of the artist.\nBut there was no doing any thing, with Mr. Elton fidgeting behind\nher and watching every touch.  She gave him credit for stationing\nhimself where he might gaze and gaze again without offence;\nbut was really obliged to put an end to it, and request him to\nplace himself elsewhere.  It then occurred to her to employ him\nin reading.\n\n\"If he would be so good as to read to them, it would be a kindness\nindeed! It would amuse away the difficulties of her part, and lessen\nthe irksomeness of Miss Smith's.\"\n\nMr. Elton was only too happy.  Harriet listened, and Emma drew\nin peace.  She must allow him to be still frequently coming to look;\nany thing less would certainly have been too little in a lover;\nand he was ready at the smallest intermission of the pencil,\nto jump up and see the progress, and be charmed.--There was no\nbeing displeased with such an encourager, for his admiration\nmade him discern a likeness almost before it was possible.\nShe could not respect his eye, but his love and his complaisance\nwere unexceptionable.\n\nThe sitting was altogether very satisfactory; she was quite\nenough pleased with the first day's sketch to wish to go on.\nThere was no want of likeness, she had been fortunate in the attitude,\nand as she meant to throw in a little improvement to the figure,\nto give a little more height, and considerably more elegance, she had\ngreat confidence of its being in every way a pretty drawing at last,\nand of its filling its destined place with credit to them both--a\nstanding memorial of the beauty of one, the skill of the other,\nand the friendship of both; with as many other agreeable associations\nas Mr. Elton's very promising attachment was likely to add.\n\nHarriet was to sit again the next day; and Mr. Elton, just as he ought,\nentreated for the permission of attending and reading to them again.\n\n\"By all means.  We shall be most happy to consider you as one\nof the party.\"\n\nThe same civilities and courtesies, the same success and satisfaction,\ntook place on the morrow, and accompanied the whole progress\nof the picture, which was rapid and happy.  Every body who saw it\nwas pleased, but Mr. Elton was in continual raptures, and defended\nit through every criticism.\n\n\"Miss Woodhouse has given her friend the only beauty she\nwanted,\"--observed Mrs. Weston to him--not in the least suspecting\nthat she was addressing a lover.--\"The expression of the eye is\nmost correct, but Miss Smith has not those eyebrows and eyelashes.\nIt is the fault of her face that she has them not.\"\n\n\"Do you think so?\" replied he.  \"I cannot agree with you.\nIt appears to me a most perfect resemblance in every feature.\nI never saw such a likeness in my life.  We must allow for the effect\nof shade, you know.\"\n\n\"You have made her too tall, Emma,\" said Mr. Knightley.\n\nEmma knew that she had, but would not own it; and Mr. Elton warmly added,\n\n\"Oh no! certainly not too tall; not in the least too tall.  Consider,\nshe is sitting down--which naturally presents a different--which\nin short gives exactly the idea--and the proportions must\nbe preserved, you know.  Proportions, fore-shortening.--Oh no! it\ngives one exactly the idea of such a height as Miss Smith's. Exactly so indeed!\"\n\n\"It is very pretty,\" said Mr. Woodhouse.  \"So prettily done! Just\nas your drawings always are, my dear.  I do not know any body who draws\nso well as you do.  The only thing I do not thoroughly like is,\nthat she seems to be sitting out of doors, with only a little shawl\nover her shoulders--and it makes one think she must catch cold.\"\n\n\"But, my dear papa, it is supposed to be summer; a warm day in summer.\nLook at the tree.\"\n\n\"But it is never safe to sit out of doors, my dear.\"\n\n\"You, sir, may say any thing,\" cried Mr. Elton, \"but I must confess\nthat I regard it as a most happy thought, the placing of Miss\nSmith out of doors; and the tree is touched with such inimitable\nspirit! Any other situation would have been much less in character.\nThe naivete of Miss Smith's manners--and altogether--Oh, it is\nmost admirable! I cannot keep my eyes from it.  I never saw such\na likeness.\"\n\nThe next thing wanted was to get the picture framed; and here were a\nfew difficulties.  It must be done directly; it must be done in London;\nthe order must go through the hands of some intelligent person whose taste\ncould be depended on; and Isabella, the usual doer of all commissions,\nmust not be applied to, because it was December, and Mr. Woodhouse\ncould not bear the idea of her stirring out of her house in the fogs\nof December.  But no sooner was the distress known to Mr. Elton,\nthan it was removed.  His gallantry was always on the alert.\n\"Might he be trusted with the commission, what infinite pleasure\nshould he have in executing it! he could ride to London at any time.\nIt was impossible to say how much he should be gratified by being\nemployed on such an errand.\"\n\n\"He was too good!--she could not endure the thought!--she would\nnot give him such a troublesome office for the world,\"--brought\non the desired repetition of entreaties and assurances,--and\na very few minutes settled the business.\n\nMr. Elton was to take the drawing to London, chuse the frame,\nand give the directions; and Emma thought she could so pack it\nas to ensure its safety without much incommoding him, while he\nseemed mostly fearful of not being incommoded enough.\n\n\"What a precious deposit!\" said he with a tender sigh, as he\nreceived it.\n\n\"This man is almost too gallant to be in love,\" thought Emma.\n\"I should say so, but that I suppose there may be a hundred different\nways of being in love.  He is an excellent young man, and will suit\nHarriet exactly; it will be an `Exactly so,' as he says himself;\nbut he does sigh and languish, and study for compliments rather more\nthan I could endure as a principal.  I come in for a pretty good\nshare as a second.  But it is his gratitude on Harriet's account.\"\n\n\n\nCHAPTER VII\n\n\nThe very day of Mr. Elton's going to London produced a fresh occasion\nfor Emma's services towards her friend.  Harriet had been at Hartfield,\nas usual, soon after breakfast; and, after a time, had gone home\nto return again to dinner: she returned, and sooner than had been\ntalked of, and with an agitated, hurried look, announcing something\nextraordinary to have happened which she was longing to tell.\nHalf a minute brought it all out.  She had heard, as soon as she got\nback to Mrs. Goddard's, that Mr. Martin had been there an hour before,\nand finding she was not at home, nor particularly expected, had left\na little parcel for her from one of his sisters, and gone away;\nand on opening this parcel, she had actually found, besides the two\nsongs which she had lent Elizabeth to copy, a letter to herself;\nand this letter was from him, from Mr. Martin, and contained a direct\nproposal of marriage.  \"Who could have thought it? She was so surprized\nshe did not know what to do.  Yes, quite a proposal of marriage;\nand a very good letter, at least she thought so.  And he wrote\nas if he really loved her very much--but she did not know--and so,\nshe was come as fast as she could to ask Miss Woodhouse what she\nshould do.--\" Emma was half-ashamed of her friend for seeming so\npleased and so doubtful.\n\n\"Upon my word,\" she cried, \"the young man is determined not to lose\nany thing for want of asking.  He will connect himself well if he can.\"\n\n\"Will you read the letter?\" cried Harriet.  \"Pray do.  I'd rather\nyou would.\"\n\nEmma was not sorry to be pressed.  She read, and was surprized.\nThe style of the letter was much above her expectation.\nThere were not merely no grammatical errors, but as a composition it\nwould not have disgraced a gentleman; the language, though plain,\nwas strong and unaffected, and the sentiments it conveyed very much\nto the credit of the writer.  It was short, but expressed good sense,\nwarm attachment, liberality, propriety, even delicacy of feeling.\nShe paused over it, while Harriet stood anxiously watching for\nher opinion, with a \"Well, well,\" and was at last forced to add,\n\"Is it a good letter? or is it too short?\"\n\n\"Yes, indeed, a very good letter,\" replied Emma rather slowly--\"so\ngood a letter, Harriet, that every thing considered, I think one of\nhis sisters must have helped him.  I can hardly imagine the young\nman whom I saw talking with you the other day could express himself\nso well, if left quite to his own powers, and yet it is not the\nstyle of a woman; no, certainly, it is too strong and concise;\nnot diffuse enough for a woman.  No doubt he is a sensible man,\nand I suppose may have a natural talent for--thinks strongly and\nclearly--and when he takes a pen in hand, his thoughts naturally find\nproper words.  It is so with some men.  Yes, I understand the sort\nof mind.  Vigorous, decided, with sentiments to a certain point,\nnot coarse.  A better written letter, Harriet (returning it,)\nthan I had expected.\"\n\n\"Well,\" said the still waiting Harriet;--\"well--and--and what\nshall I do?\"\n\n\"What shall you do! In what respect? Do you mean with regard\nto this letter?\"\n\n\"Yes.\"\n\n\"But what are you in doubt of? You must answer it of course--and speedily.\"\n\n\"Yes. But what shall I say? Dear Miss Woodhouse, do advise me.\"\n\n\"Oh no, no! the letter had much better be all your own.  You will\nexpress yourself very properly, I am sure.  There is no danger of your\nnot being intelligible, which is the first thing.  Your meaning must\nbe unequivocal; no doubts or demurs: and such expressions of gratitude\nand concern for the pain you are inflicting as propriety requires,\nwill present themselves unbidden to _your_ mind, I am persuaded.\nYou need not be prompted to write with the appearance of sorrow\nfor his disappointment.\"\n\n\"You think I ought to refuse him then,\" said Harriet, looking down.\n\n\"Ought to refuse him! My dear Harriet, what do you mean? Are you\nin any doubt as to that? I thought--but I beg your pardon, perhaps I\nhave been under a mistake.  I certainly have been misunderstanding\nyou, if you feel in doubt as to the _purport_ of your answer.\nI had imagined you were consulting me only as to the wording of it.\"\n\nHarriet was silent.  With a little reserve of manner, Emma continued:\n\n\"You mean to return a favourable answer, I collect.\"\n\n\"No, I do not; that is, I do not mean--What shall I do? What would\nyou advise me to do? Pray, dear Miss Woodhouse, tell me what I\nought to do.\"\n\n\"I shall not give you any advice, Harriet.  I will have nothing to\ndo with it.  This is a point which you must settle with your feelings.\"\n\n\"I had no notion that he liked me so very much,\" said Harriet,\ncontemplating the letter.  For a little while Emma persevered\nin her silence; but beginning to apprehend the bewitching flattery\nof that letter might be too powerful, she thought it best to say,\n\n\"I lay it down as a general rule, Harriet, that if a woman _doubts_\nas to whether she should accept a man or not, she certainly ought\nto refuse him.  If she can hesitate as to `Yes,' she ought to say\n`No' directly.  It is not a state to be safely entered into\nwith doubtful feelings, with half a heart.  I thought it my duty\nas a friend, and older than yourself, to say thus much to you.\nBut do not imagine that I want to influence you.\"\n\n\"Oh! no, I am sure you are a great deal too kind to--but if you\nwould just advise me what I had best do--No, no, I do not mean\nthat--As you say, one's mind ought to be quite made up--One should\nnot be hesitating--It is a very serious thing.--It will be safer\nto say `No,' perhaps.--Do you think I had better say `No?'\"\n\n\"Not for the world,\" said Emma, smiling graciously, \"would I advise\nyou either way.  You must be the best judge of your own happiness.\nIf you prefer Mr. Martin to every other person; if you think him\nthe most agreeable man you have ever been in company with, why should\nyou hesitate? You blush, Harriet.--Does any body else occur to you\nat this moment under such a definition? Harriet, Harriet, do not\ndeceive yourself; do not be run away with by gratitude and compassion.\nAt this moment whom are you thinking of?\"\n\nThe symptoms were favourable.--Instead of answering, Harriet turned\naway confused, and stood thoughtfully by the fire; and though\nthe letter was still in her hand, it was now mechanically twisted\nabout without regard.  Emma waited the result with impatience,\nbut not without strong hopes.  At last, with some hesitation,\nHarriet said--\n\n\"Miss Woodhouse, as you will not give me your opinion, I must\ndo as well as I can by myself; and I have now quite determined,\nand really almost made up my mind--to refuse Mr. Martin.  Do you\nthink I am right?\"\n\n\"Perfectly, perfectly right, my dearest Harriet; you are doing just\nwhat you ought.  While you were at all in suspense I kept my feelings\nto myself, but now that you are so completely decided I have no\nhesitation in approving.  Dear Harriet, I give myself joy of this.\nIt would have grieved me to lose your acquaintance, which must have\nbeen the consequence of your marrying Mr. Martin.  While you were in\nthe smallest degree wavering, I said nothing about it, because I would\nnot influence; but it would have been the loss of a friend to me.\nI could not have visited Mrs. Robert Martin, of Abbey-Mill Farm.\nNow I am secure of you for ever.\"\n\nHarriet had not surmised her own danger, but the idea of it struck\nher forcibly.\n\n\"You could not have visited me!\" she cried, looking aghast.\n\"No, to be sure you could not; but I never thought of that before.\nThat would have been too dreadful!--What an escape!--Dear Miss Woodhouse,\nI would not give up the pleasure and honour of being intimate with you\nfor any thing in the world.\"\n\n\"Indeed, Harriet, it would have been a severe pang to lose you;\nbut it must have been.  You would have thrown yourself out of all\ngood society.  I must have given you up.\"\n\n\"Dear me!--How should I ever have borne it! It would have killed\nme never to come to Hartfield any more!\"\n\n\"Dear affectionate creature!--_You_ banished to Abbey-Mill Farm!--_You_\nconfined to the society of the illiterate and vulgar all your life!\nI wonder how the young man could have the assurance to ask it.\nHe must have a pretty good opinion of himself.\"\n\n\"I do not think he is conceited either, in general,\" said Harriet,\nher conscience opposing such censure; \"at least, he is very good natured,\nand I shall always feel much obliged to him, and have a great regard\nfor--but that is quite a different thing from--and you know,\nthough he may like me, it does not follow that I should--and\ncertainly I must confess that since my visiting here I have seen\npeople--and if one comes to compare them, person and manners,\nthere is no comparison at all, _one_ is so very handsome and agreeable.\nHowever, I do really think Mr. Martin a very amiable young man,\nand have a great opinion of him; and his being so much attached\nto me--and his writing such a letter--but as to leaving you,\nit is what I would not do upon any consideration.\"\n\n\"Thank you, thank you, my own sweet little friend.  We will not\nbe parted.  A woman is not to marry a man merely because she is asked,\nor because he is attached to her, and can write a tolerable letter.\"\n\n\"Oh no;--and it is but a short letter too.\"\n\nEmma felt the bad taste of her friend, but let it pass with a\n\"very true; and it would be a small consolation to her, for the\nclownish manner which might be offending her every hour of the day,\nto know that her husband could write a good letter.\"\n\n\"Oh! yes, very.  Nobody cares for a letter; the thing is, to be always\nhappy with pleasant companions.  I am quite determined to refuse him.\nBut how shall I do? What shall I say?\"\n\nEmma assured her there would be no difficulty in the answer,\nand advised its being written directly, which was agreed to,\nin the hope of her assistance; and though Emma continued to protest\nagainst any assistance being wanted, it was in fact given in the\nformation of every sentence.  The looking over his letter again,\nin replying to it, had such a softening tendency, that it was\nparticularly necessary to brace her up with a few decisive expressions;\nand she was so very much concerned at the idea of making him unhappy,\nand thought so much of what his mother and sisters would think and say,\nand was so anxious that they should not fancy her ungrateful,\nthat Emma believed if the young man had come in her way at that moment,\nhe would have been accepted after all.\n\nThis letter, however, was written, and sealed, and sent.\nThe business was finished, and Harriet safe.  She was rather low\nall the evening, but Emma could allow for her amiable regrets,\nand sometimes relieved them by speaking of her own affection,\nsometimes by bringing forward the idea of Mr. Elton.\n\n\"I shall never be invited to Abbey-Mill again,\" was said in rather\na sorrowful tone.\n\n\"Nor, if you were, could I ever bear to part with you, my Harriet.\nYou are a great deal too necessary at Hartfield to be spared\nto Abbey-Mill.\"\n\n\"And I am sure I should never want to go there; for I am never happy\nbut at Hartfield.\"\n\nSome time afterwards it was, \"I think Mrs. Goddard would be very\nmuch surprized if she knew what had happened.  I am sure Miss Nash\nwould--for Miss Nash thinks her own sister very well married,\nand it is only a linen-draper.\"\n\n\"One should be sorry to see greater pride or refinement in the\nteacher of a school, Harriet.  I dare say Miss Nash would envy you\nsuch an opportunity as this of being married.  Even this conquest\nwould appear valuable in her eyes.  As to any thing superior for you,\nI suppose she is quite in the dark.  The attentions of a certain\nperson can hardly be among the tittle-tattle of Highbury yet.\nHitherto I fancy you and I are the only people to whom his looks\nand manners have explained themselves.\"\n\nHarriet blushed and smiled, and said something about wondering\nthat people should like her so much.  The idea of Mr. Elton was\ncertainly cheering; but still, after a time, she was tender-hearted\nagain towards the rejected Mr. Martin.\n\n\"Now he has got my letter,\" said she softly.  \"I wonder what they\nare all doing--whether his sisters know--if he is unhappy,\nthey will be unhappy too.  I hope he will not mind it so very much.\"\n\n\"Let us think of those among our absent friends who are more\ncheerfully employed,\" cried Emma.  \"At this moment, perhaps, Mr. Elton\nis shewing your picture to his mother and sisters, telling how much\nmore beautiful is the original, and after being asked for it five\nor six times, allowing them to hear your name, your own dear name.\"\n\n\"My picture!--But he has left my picture in Bond-street.\"\n\n\"Has he so!--Then I know nothing of Mr. Elton.  No, my dear\nlittle modest Harriet, depend upon it the picture will not be\nin Bond-street till just before he mounts his horse to-morrow.\nIt is his companion all this evening, his solace, his delight.\nIt opens his designs to his family, it introduces you among them,\nit diffuses through the party those pleasantest feelings of our nature,\neager curiosity and warm prepossession.  How cheerful, how animated,\nhow suspicious, how busy their imaginations all are!\"\n\nHarriet smiled again, and her smiles grew stronger.\n\n\n\nCHAPTER VIII\n\n\nHarriet slept at Hartfield that night.  For some weeks past she\nhad been spending more than half her time there, and gradually\ngetting to have a bed-room appropriated to herself; and Emma\njudged it best in every respect, safest and kindest, to keep her\nwith them as much as possible just at present.  She was obliged\nto go the next morning for an hour or two to Mrs. Goddard's,\nbut it was then to be settled that she should return to Hartfield,\nto make a regular visit of some days.\n\nWhile she was gone, Mr. Knightley called, and sat some time with\nMr. Woodhouse and Emma, till Mr. Woodhouse, who had previously made up\nhis mind to walk out, was persuaded by his daughter not to defer it,\nand was induced by the entreaties of both, though against the scruples\nof his own civility, to leave Mr. Knightley for that purpose.\nMr. Knightley, who had nothing of ceremony about him, was offering\nby his short, decided answers, an amusing contrast to the protracted\napologies and civil hesitations of the other.\n\n\"Well, I believe, if you will excuse me, Mr. Knightley, if you\nwill not consider me as doing a very rude thing, I shall take\nEmma's advice and go out for a quarter of an hour.  As the sun\nis out, I believe I had better take my three turns while I can.\nI treat you without ceremony, Mr. Knightley.  We invalids think we\nare privileged people.\"\n\n\"My dear sir, do not make a stranger of me.\"\n\n\"I leave an excellent substitute in my daughter.  Emma will be happy\nto entertain you.  And therefore I think I will beg your excuse\nand take my three turns--my winter walk.\"\n\n\"You cannot do better, sir.\"\n\n\"I would ask for the pleasure of your company, Mr. Knightley,\nbut I am a very slow walker, and my pace would be tedious to you;\nand, besides, you have another long walk before you, to Donwell Abbey.\"\n\n\"Thank you, sir, thank you; I am going this moment myself; and I\nthink the sooner _you_ go the better.  I will fetch your greatcoat\nand open the garden door for you.\"\n\nMr. Woodhouse at last was off; but Mr. Knightley, instead of being\nimmediately off likewise, sat down again, seemingly inclined\nfor more chat.  He began speaking of Harriet, and speaking\nof her with more voluntary praise than Emma had ever heard before.\n\n\"I cannot rate her beauty as you do,\" said he; \"but she is a\npretty little creature, and I am inclined to think very well of\nher disposition.  Her character depends upon those she is with;\nbut in good hands she will turn out a valuable woman.\"\n\n\"I am glad you think so; and the good hands, I hope, may not be wanting.\"\n\n\"Come,\" said he, \"you are anxious for a compliment, so I will\ntell you that you have improved her.  You have cured her of her\nschool-girl's giggle; she really does you credit.\"\n\n\"Thank you.  I should be mortified indeed if I did not believe I\nhad been of some use; but it is not every body who will bestow\npraise where they may.  _You_ do not often overpower me with it.\"\n\n\"You are expecting her again, you say, this morning?\"\n\n\"Almost every moment.  She has been gone longer already than\nshe intended.\"\n\n\"Something has happened to delay her; some visitors perhaps.\"\n\n\"Highbury gossips!--Tiresome wretches!\"\n\n\"Harriet may not consider every body tiresome that you would.\"\n\nEmma knew this was too true for contradiction, and therefore\nsaid nothing.  He presently added, with a smile,\n\n\"I do not pretend to fix on times or places, but I must tell you\nthat I have good reason to believe your little friend will soon\nhear of something to her advantage.\"\n\n\"Indeed! how so? of what sort?\"\n\n\"A very serious sort, I assure you;\" still smiling.\n\n\"Very serious! I can think of but one thing--Who is in love\nwith her? Who makes you their confidant?\"\n\nEmma was more than half in hopes of Mr. Elton's having dropt a hint.\nMr. Knightley was a sort of general friend and adviser, and she knew\nMr. Elton looked up to him.\n\n\"I have reason to think,\" he replied, \"that Harriet Smith will\nsoon have an offer of marriage, and from a most unexceptionable\nquarter:--Robert Martin is the man.  Her visit to Abbey-Mill,\nthis summer, seems to have done his business.  He is desperately\nin love and means to marry her.\"\n\n\"He is very obliging,\" said Emma; \"but is he sure that Harriet\nmeans to marry him?\"\n\n\"Well, well, means to make her an offer then.  Will that do? He came\nto the Abbey two evenings ago, on purpose to consult me about it.\nHe knows I have a thorough regard for him and all his family, and,\nI believe, considers me as one of his best friends.  He came to ask\nme whether I thought it would be imprudent in him to settle so early;\nwhether I thought her too young: in short, whether I approved his\nchoice altogether; having some apprehension perhaps of her being\nconsidered (especially since _your_ making so much of her) as in a line\nof society above him.  I was very much pleased with all that he said.\nI never hear better sense from any one than Robert Martin.\nHe always speaks to the purpose; open, straightforward, and very\nwell judging.  He told me every thing; his circumstances and plans,\nand what they all proposed doing in the event of his marriage.  He is\nan excellent young man, both as son and brother.  I had no hesitation\nin advising him to marry.  He proved to me that he could afford it;\nand that being the case, I was convinced he could not do better.\nI praised the fair lady too, and altogether sent him away very happy.\nIf he had never esteemed my opinion before, he would have thought\nhighly of me then; and, I dare say, left the house thinking me the\nbest friend and counsellor man ever had.  This happened the night\nbefore last.  Now, as we may fairly suppose, he would not allow\nmuch time to pass before he spoke to the lady, and as he does not\nappear to have spoken yesterday, it is not unlikely that he should\nbe at Mrs. Goddard's to-day; and she may be detained by a visitor,\nwithout thinking him at all a tiresome wretch.\"\n\n\"Pray, Mr. Knightley,\" said Emma, who had been smiling to herself\nthrough a great part of this speech, \"how do you know that Mr. Martin\ndid not speak yesterday?\"\n\n\"Certainly,\" replied he, surprized, \"I do not absolutely know it;\nbut it may be inferred.  Was not she the whole day with you?\"\n\n\"Come,\" said she, \"I will tell you something, in return for what\nyou have told me.  He did speak yesterday--that is, he wrote,\nand was refused.\"\n\nThis was obliged to be repeated before it could be believed;\nand Mr. Knightley actually looked red with surprize and displeasure,\nas he stood up, in tall indignation, and said,\n\n\"Then she is a greater simpleton than I ever believed her.\nWhat is the foolish girl about?\"\n\n\"Oh! to be sure,\" cried Emma, \"it is always incomprehensible\nto a man that a woman should ever refuse an offer of marriage.\nA man always imagines a woman to be ready for any body who asks her.\"\n\n\"Nonsense! a man does not imagine any such thing.  But what is\nthe meaning of this? Harriet Smith refuse Robert Martin? madness,\nif it is so; but I hope you are mistaken.\"\n\n\"I saw her answer!--nothing could be clearer.\"\n\n\"You saw her answer!--you wrote her answer too.  Emma, this is\nyour doing.  You persuaded her to refuse him.\"\n\n\"And if I did, (which, however, I am far from allowing) I should\nnot feel that I had done wrong.  Mr. Martin is a very respectable\nyoung man, but I cannot admit him to be Harriet's equal; and am\nrather surprized indeed that he should have ventured to address her.\nBy your account, he does seem to have had some scruples.  It is\na pity that they were ever got over.\"\n\n\"Not Harriet's equal!\" exclaimed Mr. Knightley loudly and warmly;\nand with calmer asperity, added, a few moments afterwards, \"No, he\nis not her equal indeed, for he is as much her superior in sense\nas in situation.  Emma, your infatuation about that girl blinds you.\nWhat are Harriet Smith's claims, either of birth, nature or education,\nto any connexion higher than Robert Martin? She is the natural\ndaughter of nobody knows whom, with probably no settled provision\nat all, and certainly no respectable relations.  She is known only\nas parlour-boarder at a common school.  She is not a sensible girl,\nnor a girl of any information.  She has been taught nothing useful,\nand is too young and too simple to have acquired any thing herself.\nAt her age she can have no experience, and with her little wit,\nis not very likely ever to have any that can avail her.\nShe is pretty, and she is good tempered, and that is all.\nMy only scruple in advising the match was on his account, as being\nbeneath his deserts, and a bad connexion for him.  I felt that,\nas to fortune, in all probability he might do much better; and that as\nto a rational companion or useful helpmate, he could not do worse.\nBut I could not reason so to a man in love, and was willing\nto trust to there being no harm in her, to her having that sort\nof disposition, which, in good hands, like his, might be easily led\naright and turn out very well.  The advantage of the match I felt\nto be all on her side; and had not the smallest doubt (nor have I now)\nthat there would be a general cry-out upon her extreme good luck.\nEven _your_ satisfaction I made sure of.  It crossed my mind immediately\nthat you would not regret your friend's leaving Highbury, for the\nsake of her being settled so well.  I remember saying to myself,\n`Even Emma, with all her partiality for Harriet, will think this a\ngood match.'\"\n\n\"I cannot help wondering at your knowing so little of Emma as to say\nany such thing.  What! think a farmer, (and with all his sense and all\nhis merit Mr. Martin is nothing more,) a good match for my intimate\nfriend! Not regret her leaving Highbury for the sake of marrying\na man whom I could never admit as an acquaintance of my own! I\nwonder you should think it possible for me to have such feelings.\nI assure you mine are very different.  I must think your statement\nby no means fair.  You are not just to Harriet's claims.\nThey would be estimated very differently by others as well as myself;\nMr. Martin may be the richest of the two, but he is undoubtedly\nher inferior as to rank in society.--The sphere in which she moves\nis much above his.--It would be a degradation.\"\n\n\"A degradation to illegitimacy and ignorance, to be married\nto a respectable, intelligent gentleman-farmer!\"\n\n\"As to the circumstances of her birth, though in a legal sense\nshe may be called Nobody, it will not hold in common sense.\nShe is not to pay for the offence of others, by being held below\nthe level of those with whom she is brought up.--There can scarcely\nbe a doubt that her father is a gentleman--and a gentleman of\nfortune.--Her allowance is very liberal; nothing has ever been grudged\nfor her improvement or comfort.--That she is a gentleman's daughter,\nis indubitable to me; that she associates with gentlemen's daughters,\nno one, I apprehend, will deny.--She is superior to Mr. Robert Martin.\"\n\n\"Whoever might be her parents,\" said Mr. Knightley, \"whoever may\nhave had the charge of her, it does not appear to have been any part\nof their plan to introduce her into what you would call good society.\nAfter receiving a very indifferent education she is left in\nMrs. Goddard's hands to shift as she can;--to move, in short,\nin Mrs. Goddard's line, to have Mrs. Goddard's acquaintance.\nHer friends evidently thought this good enough for her; and it _was_\ngood enough.  She desired nothing better herself.  Till you chose\nto turn her into a friend, her mind had no distaste for her own set,\nnor any ambition beyond it.  She was as happy as possible with the\nMartins in the summer.  She had no sense of superiority then.\nIf she has it now, you have given it.  You have been no friend to\nHarriet Smith, Emma.  Robert Martin would never have proceeded so far,\nif he had not felt persuaded of her not being disinclined to him.\nI know him well.  He has too much real feeling to address any\nwoman on the haphazard of selfish passion.  And as to conceit,\nhe is the farthest from it of any man I know.  Depend upon it he\nhad encouragement.\"\n\nIt was most convenient to Emma not to make a direct reply to this\nassertion; she chose rather to take up her own line of the subject again.\n\n\"You are a very warm friend to Mr. Martin; but, as I said before,\nare unjust to Harriet.  Harriet's claims to marry well are not\nso contemptible as you represent them.  She is not a clever girl,\nbut she has better sense than you are aware of, and does not\ndeserve to have her understanding spoken of so slightingly.\nWaiving that point, however, and supposing her to be, as you\ndescribe her, only pretty and good-natured, let me tell you, that in\nthe degree she possesses them, they are not trivial recommendations\nto the world in general, for she is, in fact, a beautiful girl,\nand must be thought so by ninety-nine people out of an hundred;\nand till it appears that men are much more philosophic on the subject\nof beauty than they are generally supposed; till they do fall\nin love with well-informed minds instead of handsome faces, a girl,\nwith such loveliness as Harriet, has a certainty of being admired\nand sought after, of having the power of chusing from among many,\nconsequently a claim to be nice.  Her good-nature, too, is not so very\nslight a claim, comprehending, as it does, real, thorough sweetness\nof temper and manner, a very humble opinion of herself, and a great\nreadiness to be pleased with other people.  I am very much mistaken\nif your sex in general would not think such beauty, and such temper,\nthe highest claims a woman could possess.\"\n\n\"Upon my word, Emma, to hear you abusing the reason you have,\nis almost enough to make me think so too.  Better be without sense,\nthan misapply it as you do.\"\n\n\"To be sure!\" cried she playfully.  \"I know _that_ is the feeling\nof you all.  I know that such a girl as Harriet is exactly\nwhat every man delights in--what at once bewitches his senses\nand satisfies his judgment.  Oh! Harriet may pick and chuse.\nWere you, yourself, ever to marry, she is the very woman for you.\nAnd is she, at seventeen, just entering into life, just beginning\nto be known, to be wondered at because she does not accept the first\noffer she receives? No--pray let her have time to look about her.\"\n\n\"I have always thought it a very foolish intimacy,\" said Mr. Knightley\npresently, \"though I have kept my thoughts to myself; but I now\nperceive that it will be a very unfortunate one for Harriet.\nYou will puff her up with such ideas of her own beauty, and of what\nshe has a claim to, that, in a little while, nobody within her\nreach will be good enough for her.  Vanity working on a weak head,\nproduces every sort of mischief.  Nothing so easy as for a young lady\nto raise her expectations too high.  Miss Harriet Smith may not find\noffers of marriage flow in so fast, though she is a very pretty girl.\nMen of sense, whatever you may chuse to say, do not want silly wives.\nMen of family would not be very fond of connecting themselves\nwith a girl of such obscurity--and most prudent men would be\nafraid of the inconvenience and disgrace they might be involved in,\nwhen the mystery of her parentage came to be revealed.  Let her marry\nRobert Martin, and she is safe, respectable, and happy for ever;\nbut if you encourage her to expect to marry greatly, and teach\nher to be satisfied with nothing less than a man of consequence\nand large fortune, she may be a parlour-boarder at Mrs. Goddard's\nall the rest of her life--or, at least, (for Harriet Smith is a\ngirl who will marry somebody or other,) till she grow desperate,\nand is glad to catch at the old writing-master's son.\"\n\n\"We think so very differently on this point, Mr. Knightley,\nthat there can be no use in canvassing it.  We shall only be making\neach other more angry.  But as to my _letting_ her marry Robert Martin,\nit is impossible; she has refused him, and so decidedly, I think,\nas must prevent any second application.  She must abide by the evil\nof having refused him, whatever it may be; and as to the refusal itself,\nI will not pretend to say that I might not influence her a little;\nbut I assure you there was very little for me or for any body to do.\nHis appearance is so much against him, and his manner so bad,\nthat if she ever were disposed to favour him, she is not now.\nI can imagine, that before she had seen any body superior,\nshe might tolerate him.  He was the brother of her friends,\nand he took pains to please her; and altogether, having seen\nnobody better (that must have been his great assistant)\nshe might not, while she was at Abbey-Mill, find him disagreeable.\nBut the case is altered now.  She knows now what gentlemen are;\nand nothing but a gentleman in education and manner has any chance\nwith Harriet.\"\n\n\"Nonsense, errant nonsense, as ever was talked!\" cried Mr. Knightley.--\"Robert\nMartin's manners have sense, sincerity, and good-humour to recommend\nthem; and his mind has more true gentility than Harriet Smith could understand.\"\n\nEmma made no answer, and tried to look cheerfully unconcerned, but was\nreally feeling uncomfortable and wanting him very much to be gone.\nShe did not repent what she had done; she still thought herself\na better judge of such a point of female right and refinement than he\ncould be; but yet she had a sort of habitual respect for his judgment\nin general, which made her dislike having it so loudly against her;\nand to have him sitting just opposite to her in angry state,\nwas very disagreeable.  Some minutes passed in this unpleasant silence,\nwith only one attempt on Emma's side to talk of the weather,\nbut he made no answer.  He was thinking.  The result of his thoughts\nappeared at last in these words.\n\n\"Robert Martin has no great loss--if he can but think so; and I\nhope it will not be long before he does.  Your views for Harriet\nare best known to yourself; but as you make no secret of your love\nof match-making, it is fair to suppose that views, and plans,\nand projects you have;--and as a friend I shall just hint to you\nthat if Elton is the man, I think it will be all labour in vain.\"\n\nEmma laughed and disclaimed.  He continued,\n\n\"Depend upon it, Elton will not do.  Elton is a very good sort of man,\nand a very respectable vicar of Highbury, but not at all likely\nto make an imprudent match.  He knows the value of a good income\nas well as any body.  Elton may talk sentimentally, but he will\nact rationally.  He is as well acquainted with his own claims, as you\ncan be with Harriet's. He knows that he is a very handsome young man,\nand a great favourite wherever he goes; and from his general way\nof talking in unreserved moments, when there are only men present,\nI am convinced that he does not mean to throw himself away.\nI have heard him speak with great animation of a large family\nof young ladies that his sisters are intimate with, who have all\ntwenty thousand pounds apiece.\"\n\n\"I am very much obliged to you,\" said Emma, laughing again.\n\"If I had set my heart on Mr. Elton's marrying Harriet, it would\nhave been very kind to open my eyes; but at present I only want\nto keep Harriet to myself.  I have done with match-making indeed.\nI could never hope to equal my own doings at Randalls.  I shall leave\noff while I am well.\"\n\n\"Good morning to you,\"--said he, rising and walking off abruptly.\nHe was very much vexed.  He felt the disappointment of the young man,\nand was mortified to have been the means of promoting it, by the\nsanction he had given; and the part which he was persuaded Emma had\ntaken in the affair, was provoking him exceedingly.\n\nEmma remained in a state of vexation too; but there was more\nindistinctness in the causes of her's, than in his.  She did not always\nfeel so absolutely satisfied with herself, so entirely convinced that\nher opinions were right and her adversary's wrong, as Mr. Knightley.\nHe walked off in more complete self-approbation than he left for her.\nShe was not so materially cast down, however, but that a little\ntime and the return of Harriet were very adequate restoratives.\nHarriet's staying away so long was beginning to make her uneasy.\nThe possibility of the young man's coming to Mrs. Goddard's\nthat morning, and meeting with Harriet and pleading his own cause,\ngave alarming ideas.  The dread of such a failure after all became the\nprominent uneasiness; and when Harriet appeared, and in very good spirits,\nand without having any such reason to give for her long absence,\nshe felt a satisfaction which settled her with her own mind,\nand convinced her, that let Mr. Knightley think or say what he would,\nshe had done nothing which woman's friendship and woman's feelings\nwould not justify.\n\nHe had frightened her a little about Mr. Elton; but when she considered\nthat Mr. Knightley could not have observed him as she had done,\nneither with the interest, nor (she must be allowed to tell herself,\nin spite of Mr. Knightley's pretensions) with the skill of such\nan observer on such a question as herself, that he had spoken it\nhastily and in anger, she was able to believe, that he had rather\nsaid what he wished resentfully to be true, than what he knew\nany thing about.  He certainly might have heard Mr. Elton speak\nwith more unreserve than she had ever done, and Mr. Elton might not\nbe of an imprudent, inconsiderate disposition as to money matters;\nhe might naturally be rather attentive than otherwise to them;\nbut then, Mr. Knightley did not make due allowance for the influence\nof a strong passion at war with all interested motives.  Mr. Knightley\nsaw no such passion, and of course thought nothing of its effects;\nbut she saw too much of it to feel a doubt of its overcoming any\nhesitations that a reasonable prudence might originally suggest;\nand more than a reasonable, becoming degree of prudence, she was very\nsure did not belong to Mr. Elton.\n\nHarriet's cheerful look and manner established hers: she came back,\nnot to think of Mr. Martin, but to talk of Mr. Elton.  Miss Nash\nhad been telling her something, which she repeated immediately\nwith great delight.  Mr. Perry had been to Mrs. Goddard's to attend\na sick child, and Miss Nash had seen him, and he had told Miss Nash,\nthat as he was coming back yesterday from Clayton Park, he had met\nMr. Elton, and found to his great surprize, that Mr. Elton was\nactually on his road to London, and not meaning to return till\nthe morrow, though it was the whist-club night, which he had been\nnever known to miss before; and Mr. Perry had remonstrated with him\nabout it, and told him how shabby it was in him, their best player,\nto absent himself, and tried very much to persuade him to put off\nhis journey only one day; but it would not do; Mr. Elton had been\ndetermined to go on, and had said in a _very_ _particular_ way indeed,\nthat he was going on business which he would not put off for any\ninducement in the world; and something about a very enviable commission,\nand being the bearer of something exceedingly precious.  Mr. Perry\ncould not quite understand him, but he was very sure there must\nbe a _lady_ in the case, and he told him so; and Mr. Elton only\nlooked very conscious and smiling, and rode off in great spirits.\nMiss Nash had told her all this, and had talked a great deal more\nabout Mr. Elton; and said, looking so very significantly at her,\n\"that she did not pretend to understand what his business might be,\nbut she only knew that any woman whom Mr. Elton could prefer,\nshe should think the luckiest woman in the world; for, beyond a doubt,\nMr. Elton had not his equal for beauty or agreeableness.\"\n\n\n\nCHAPTER IX\n\n\nMr. Knightley might quarrel with her, but Emma could not quarrel\nwith herself.  He was so much displeased, that it was longer than\nusual before he came to Hartfield again; and when they did meet,\nhis grave looks shewed that she was not forgiven.  She was sorry,\nbut could not repent.  On the contrary, her plans and proceedings\nwere more and more justified and endeared to her by the general\nappearances of the next few days.\n\nThe Picture, elegantly framed, came safely to hand soon after\nMr. Elton's return, and being hung over the mantelpiece of the common\nsitting-room, he got up to look at it, and sighed out his half sentences\nof admiration just as he ought; and as for Harriet's feelings, they were\nvisibly forming themselves into as strong and steady an attachment\nas her youth and sort of mind admitted.  Emma was soon perfectly\nsatisfied of Mr. Martin's being no otherwise remembered, than as\nhe furnished a contrast with Mr. Elton, of the utmost advantage to the latter.\n\nHer views of improving her little friend's mind, by a great deal\nof useful reading and conversation, had never yet led to more than\na few first chapters, and the intention of going on to-morrow.\nIt was much easier to chat than to study; much pleasanter to let\nher imagination range and work at Harriet's fortune, than to be\nlabouring to enlarge her comprehension or exercise it on sober facts;\nand the only literary pursuit which engaged Harriet at present,\nthe only mental provision she was making for the evening of life,\nwas the collecting and transcribing all the riddles of every sort\nthat she could meet with, into a thin quarto of hot-pressed paper,\nmade up by her friend, and ornamented with ciphers and trophies.\n\nIn this age of literature, such collections on a very grand scale\nare not uncommon.  Miss Nash, head-teacher at Mrs. Goddard's,\nhad written out at least three hundred; and Harriet, who had taken\nthe first hint of it from her, hoped, with Miss Woodhouse's help,\nto get a great many more.  Emma assisted with her invention,\nmemory and taste; and as Harriet wrote a very pretty hand,\nit was likely to be an arrangement of the first order, in form\nas well as quantity.\n\nMr. Woodhouse was almost as much interested in the business as the girls,\nand tried very often to recollect something worth their putting in.\n\"So many clever riddles as there used to be when he was young--he\nwondered he could not remember them! but he hoped he should in time.\"\nAnd it always ended in \"Kitty, a fair but frozen maid.\"\n\nHis good friend Perry, too, whom he had spoken to on the subject,\ndid not at present recollect any thing of the riddle kind;\nbut he had desired Perry to be upon the watch, and as he went about\nso much, something, he thought, might come from that quarter.\n\nIt was by no means his daughter's wish that the intellects of\nHighbury in general should be put under requisition.  Mr. Elton\nwas the only one whose assistance she asked.  He was invited\nto contribute any really good enigmas, charades, or conundrums\nthat he might recollect; and she had the pleasure of seeing him\nmost intently at work with his recollections; and at the same time,\nas she could perceive, most earnestly careful that nothing ungallant,\nnothing that did not breathe a compliment to the sex should pass\nhis lips.  They owed to him their two or three politest puzzles;\nand the joy and exultation with which at last he recalled,\nand rather sentimentally recited, that well-known charade,\n\n    My first doth affliction denote,\n      Which my second is destin'd to feel\n    And my whole is the best antidote\n      That affliction to soften and heal.--\n\nmade her quite sorry to acknowledge that they had transcribed it\nsome pages ago already.\n\n\"Why will not you write one yourself for us, Mr. Elton?\" said she;\n\"that is the only security for its freshness; and nothing could be\neasier to you.\"\n\n\"Oh no! he had never written, hardly ever, any thing of the kind\nin his life.  The stupidest fellow! He was afraid not even Miss\nWoodhouse\"--he stopt a moment--\"or Miss Smith could inspire him.\"\n\nThe very next day however produced some proof of inspiration.\nHe called for a few moments, just to leave a piece of paper on the\ntable containing, as he said, a charade, which a friend of his had\naddressed to a young lady, the object of his admiration, but which,\nfrom his manner, Emma was immediately convinced must be his own.\n\n\"I do not offer it for Miss Smith's collection,\" said he.\n\"Being my friend's, I have no right to expose it in any degree\nto the public eye, but perhaps you may not dislike looking at it.\"\n\nThe speech was more to Emma than to Harriet, which Emma\ncould understand.  There was deep consciousness about him,\nand he found it easier to meet her eye than her friend's.\nHe was gone the next moment:--after another moment's pause,\n\n\"Take it,\" said Emma, smiling, and pushing the paper towards\nHarriet--\"it is for you.  Take your own.\"\n\nBut Harriet was in a tremor, and could not touch it; and Emma,\nnever loth to be first, was obliged to examine it herself.\n\n        To Miss--\n\n          CHARADE.\n\n    My first displays the wealth and pomp of kings,\n      Lords of the earth! their luxury and ease.\n    Another view of man, my second brings,\n      Behold him there, the monarch of the seas!\n\n    But ah! united, what reverse we have!\n      Man's boasted power and freedom, all are flown;\n    Lord of the earth and sea, he bends a slave,\n      And woman, lovely woman, reigns alone.\n\n      Thy ready wit the word will soon supply,\n      May its approval beam in that soft eye!\n\nShe cast her eye over it, pondered, caught the meaning, read it through\nagain to be quite certain, and quite mistress of the lines, and then\npassing it to Harriet, sat happily smiling, and saying to herself,\nwhile Harriet was puzzling over the paper in all the confusion\nof hope and dulness, \"Very well, Mr. Elton, very well indeed.\nI have read worse charades.  _Courtship_--a very good hint.  I give\nyou credit for it.  This is feeling your way.  This is saying very\nplainly--`Pray, Miss Smith, give me leave to pay my addresses to you.\nApprove my charade and my intentions in the same glance.'\n\n      May its approval beam in that soft eye!\n\nHarriet exactly.  Soft is the very word for her eye--of all epithets,\nthe justest that could be given.\n\n      Thy ready wit the word will soon supply.\n\nHumph--Harriet's ready wit! All the better.  A man must be very much\nin love, indeed, to describe her so.  Ah! Mr. Knightley, I wish\nyou had the benefit of this; I think this would convince you.\nFor once in your life you would be obliged to own yourself mistaken.\nAn excellent charade indeed! and very much to the purpose.\nThings must come to a crisis soon now.\n\nShe was obliged to break off from these very pleasant observations,\nwhich were otherwise of a sort to run into great length, by the\neagerness of Harriet's wondering questions.\n\n\"What can it be, Miss Woodhouse?--what can it be? I have not an idea--I\ncannot guess it in the least.  What can it possibly be? Do try\nto find it out, Miss Woodhouse.  Do help me.  I never saw any thing\nso hard.  Is it kingdom? I wonder who the friend was--and who could\nbe the young lady.  Do you think it is a good one? Can it be woman?\n\n      And woman, lovely woman, reigns alone.\n\nCan it be Neptune?\n\n      Behold him there, the monarch of the seas!\n\nOr a trident? or a mermaid? or a shark? Oh, no! shark is only\none syllable.  It must be very clever, or he would not have brought it.\nOh! Miss Woodhouse, do you think we shall ever find it out?\"\n\n\"Mermaids and sharks! Nonsense! My dear Harriet, what are you\nthinking of? Where would be the use of his bringing us a charade made\nby a friend upon a mermaid or a shark? Give me the paper and listen.\n\nFor Miss ----------, read Miss Smith.\n\n    My first displays the wealth and pomp of kings,\n      Lords of the earth! their luxury and ease.\n\nThat is _court_.\n\n    Another view of man, my second brings;\n      Behold him there, the monarch of the seas!\n\nThat is _ship_;--plain as it can be.--Now for the cream.\n\n    But ah! united, (_courtship_, you know,) what reverse we have!\n      Man's boasted power and freedom, all are flown.\n    Lord of the earth and sea, he bends a slave,\n      And woman, lovely woman, reigns alone.\n\nA very proper compliment!--and then follows the application,\nwhich I think, my dear Harriet, you cannot find much difficulty\nin comprehending.  Read it in comfort to yourself.  There can\nbe no doubt of its being written for you and to you.\"\n\nHarriet could not long resist so delightful a persuasion.\nShe read the concluding lines, and was all flutter and happiness.\nShe could not speak.  But she was not wanted to speak.  It was enough\nfor her to feel.  Emma spoke for her.\n\n\"There is so pointed, and so particular a meaning in this compliment,\"\nsaid she, \"that I cannot have a doubt as to Mr. Elton's intentions.\nYou are his object--and you will soon receive the completest proof\nof it.  I thought it must be so.  I thought I could not be so deceived;\nbut now, it is clear; the state of his mind is as clear and decided,\nas my wishes on the subject have been ever since I knew you.\nYes, Harriet, just so long have I been wanting the very circumstance\nto happen what has happened.  I could never tell whether an attachment\nbetween you and Mr. Elton were most desirable or most natural.\nIts probability and its eligibility have really so equalled each\nother! I am very happy.  I congratulate you, my dear Harriet, with all\nmy heart.  This is an attachment which a woman may well feel pride\nin creating.  This is a connexion which offers nothing but good.\nIt will give you every thing that you want--consideration, independence,\na proper home--it will fix you in the centre of all your real friends,\nclose to Hartfield and to me, and confirm our intimacy for ever.\nThis, Harriet, is an alliance which can never raise a blush in either\nof us.\"\n\n\"Dear Miss Woodhouse!\"--and \"Dear Miss Woodhouse,\" was all that Harriet,\nwith many tender embraces could articulate at first; but when they\ndid arrive at something more like conversation, it was sufficiently\nclear to her friend that she saw, felt, anticipated, and remembered\njust as she ought.  Mr. Elton's superiority had very ample acknowledgment.\n\n\"Whatever you say is always right,\" cried Harriet, \"and therefore\nI suppose, and believe, and hope it must be so; but otherwise I could\nnot have imagined it.  It is so much beyond any thing I deserve.\nMr. Elton, who might marry any body! There cannot be two opinions\nabout _him_.  He is so very superior.  Only think of those sweet\nverses--`To Miss --------.' Dear me, how clever!--Could it really\nbe meant for me?\"\n\n\"I cannot make a question, or listen to a question about that.\nIt is a certainty.  Receive it on my judgment.  It is a sort\nof prologue to the play, a motto to the chapter; and will be soon\nfollowed by matter-of-fact prose.\"\n\n\"It is a sort of thing which nobody could have expected.  I am sure,\na month ago, I had no more idea myself!--The strangest things do\ntake place!\"\n\n\"When Miss Smiths and Mr. Eltons get acquainted--they do indeed--and\nreally it is strange; it is out of the common course that what is\nso evidently, so palpably desirable--what courts the pre-arrangement\nof other people, should so immediately shape itself into the proper form.\nYou and Mr. Elton are by situation called together; you belong\nto one another by every circumstance of your respective homes.\nYour marrying will be equal to the match at Randalls.  There does\nseem to be a something in the air of Hartfield which gives love\nexactly the right direction, and sends it into the very channel\nwhere it ought to flow.\n\n      The course of true love never did run smooth--\n\nA Hartfield edition of Shakespeare would have a long note on that passage.\"\n\n\"That Mr. Elton should really be in love with me,--me, of all people,\nwho did not know him, to speak to him, at Michaelmas! And he,\nthe very handsomest man that ever was, and a man that every body\nlooks up to, quite like Mr. Knightley! His company so sought after,\nthat every body says he need not eat a single meal by himself if he\ndoes not chuse it; that he has more invitations than there are days\nin the week.  And so excellent in the Church! Miss Nash has put down\nall the texts he has ever preached from since he came to Highbury.\nDear me! When I look back to the first time I saw him! How little\ndid I think!--The two Abbots and I ran into the front room and\npeeped through the blind when we heard he was going by, and Miss\nNash came and scolded us away, and staid to look through herself;\nhowever, she called me back presently, and let me look too,\nwhich was very good-natured. And how beautiful we thought he looked!\nHe was arm-in-arm with Mr. Cole.\"\n\n\"This is an alliance which, whoever--whatever your friends may be,\nmust be agreeable to them, provided at least they have common sense;\nand we are not to be addressing our conduct to fools.  If they\nare anxious to see you _happily_ married, here is a man whose amiable\ncharacter gives every assurance of it;--if they wish to have you\nsettled in the same country and circle which they have chosen\nto place you in, here it will be accomplished; and if their only\nobject is that you should, in the common phrase, be _well_ married,\nhere is the comfortable fortune, the respectable establishment,\nthe rise in the world which must satisfy them.\"\n\n\"Yes, very true.  How nicely you talk; I love to hear you.\nYou understand every thing.  You and Mr. Elton are one as clever\nas the other.  This charade!--If I had studied a twelvemonth,\nI could never have made any thing like it.\"\n\n\"I thought he meant to try his skill, by his manner of declining\nit yesterday.\"\n\n\"I do think it is, without exception, the best charade I ever read.\"\n\n\"I never read one more to the purpose, certainly.\"\n\n\"It is as long again as almost all we have had before.\"\n\n\"I do not consider its length as particularly in its favour.\nSuch things in general cannot be too short.\"\n\nHarriet was too intent on the lines to hear.  The most satisfactory\ncomparisons were rising in her mind.\n\n\"It is one thing,\" said she, presently--her cheeks in a glow--\"to\nhave very good sense in a common way, like every body else,\nand if there is any thing to say, to sit down and write a letter,\nand say just what you must, in a short way; and another, to write\nverses and charades like this.\"\n\nEmma could not have desired a more spirited rejection of Mr. Martin's prose.\n\n\"Such sweet lines!\" continued Harriet--\"these two last!--But\nhow shall I ever be able to return the paper, or say I have found\nit out?--Oh! Miss Woodhouse, what can we do about that?\"\n\n\"Leave it to me.  You do nothing.  He will be here this evening,\nI dare say, and then I will give it him back, and some nonsense\nor other will pass between us, and you shall not be committed.--Your\nsoft eyes shall chuse their own time for beaming.  Trust to me.\"\n\n\"Oh! Miss Woodhouse, what a pity that I must not write this beautiful\ncharade into my book! I am sure I have not got one half so good.\"\n\n\"Leave out the two last lines, and there is no reason why you\nshould not write it into your book.\"\n\n\"Oh! but those two lines are\"--\n\n--\"The best of all.  Granted;--for private enjoyment; and for private\nenjoyment keep them.  They are not at all the less written you know,\nbecause you divide them.  The couplet does not cease to be, nor does\nits meaning change.  But take it away, and all _appropriation_ ceases,\nand a very pretty gallant charade remains, fit for any collection.\nDepend upon it, he would not like to have his charade slighted,\nmuch better than his passion.  A poet in love must be encouraged in\nboth capacities, or neither.  Give me the book, I will write it down,\nand then there can be no possible reflection on you.\"\n\nHarriet submitted, though her mind could hardly separate the parts,\nso as to feel quite sure that her friend were not writing down\na declaration of love.  It seemed too precious an offering for any\ndegree of publicity.\n\n\"I shall never let that book go out of my own hands,\" said she.\n\n\"Very well,\" replied Emma; \"a most natural feeling; and the longer\nit lasts, the better I shall be pleased.  But here is my father\ncoming: you will not object to my reading the charade to him.\nIt will be giving him so much pleasure! He loves any thing of\nthe sort, and especially any thing that pays woman a compliment.\nHe has the tenderest spirit of gallantry towards us all!--You must\nlet me read it to him.\"\n\nHarriet looked grave.\n\n\"My dear Harriet, you must not refine too much upon this\ncharade.--You will betray your feelings improperly, if you are\ntoo conscious and too quick, and appear to affix more meaning,\nor even quite all the meaning which may be affixed to it.\nDo not be overpowered by such a little tribute of admiration.\nIf he had been anxious for secrecy, he would not have left the paper\nwhile I was by; but he rather pushed it towards me than towards you.\nDo not let us be too solemn on the business.  He has encouragement\nenough to proceed, without our sighing out our souls over this charade.\"\n\n\"Oh! no--I hope I shall not be ridiculous about it.  Do as you please.\"\n\nMr. Woodhouse came in, and very soon led to the subject again,\nby the recurrence of his very frequent inquiry of \"Well, my dears,\nhow does your book go on?--Have you got any thing fresh?\"\n\n\"Yes, papa; we have something to read you, something quite fresh.\nA piece of paper was found on the table this morning--(dropt,\nwe suppose, by a fairy)--containing a very pretty charade, and we\nhave just copied it in.\"\n\nShe read it to him, just as he liked to have any thing read,\nslowly and distinctly, and two or three times over, with explanations\nof every part as she proceeded--and he was very much pleased, and,\nas she had foreseen, especially struck with the complimentary conclusion.\n\n\"Aye, that's very just, indeed, that's very properly said.\nVery true.  `Woman, lovely woman.' It is such a pretty charade,\nmy dear, that I can easily guess what fairy brought it.--Nobody\ncould have written so prettily, but you, Emma.\"\n\nEmma only nodded, and smiled.--After a little thinking,\nand a very tender sigh, he added,\n\n\"Ah! it is no difficulty to see who you take after! Your dear mother\nwas so clever at all those things! If I had but her memory! But I\ncan remember nothing;--not even that particular riddle which you\nhave heard me mention; I can only recollect the first stanza;\nand there are several.\n\n    Kitty, a fair but frozen maid,\n      Kindled a flame I yet deplore,\n    The hood-wink'd boy I called to aid,\n    Though of his near approach afraid,\n      So fatal to my suit before.\n\nAnd that is all that I can recollect of it--but it is very clever\nall the way through.  But I think, my dear, you said you had got it.\"\n\n\"Yes, papa, it is written out in our second page.  We copied it\nfrom the Elegant Extracts.  It was Garrick's, you know.\"\n\n\"Aye, very true.--I wish I could recollect more of it.\n\n    Kitty, a fair but frozen maid.\n\nThe name makes me think of poor Isabella; for she was very near\nbeing christened Catherine after her grandmama.  I hope we shall\nhave her here next week.  Have you thought, my dear, where you\nshall put her--and what room there will be for the children?\"\n\n\"Oh! yes--she will have her own room, of course; the room she always\nhas;--and there is the nursery for the children,--just as usual,\nyou know.  Why should there be any change?\"\n\n\"I do not know, my dear--but it is so long since she was here!--not\nsince last Easter, and then only for a few days.--Mr. John Knightley's\nbeing a lawyer is very inconvenient.--Poor Isabella!--she is sadly\ntaken away from us all!--and how sorry she will be when she comes,\nnot to see Miss Taylor here!\"\n\n\"She will not be surprized, papa, at least.\"\n\n\"I do not know, my dear.  I am sure I was very much surprized\nwhen I first heard she was going to be married.\"\n\n\"We must ask Mr. and Mrs. Weston to dine with us, while Isabella\nis here.\"\n\n\"Yes, my dear, if there is time.--But--(in a very depressed tone)--she\nis coming for only one week.  There will not be time for any thing.\"\n\n\"It is unfortunate that they cannot stay longer--but it seems a case\nof necessity.  Mr. John Knightley must be in town again on the 28th,\nand we ought to be thankful, papa, that we are to have the whole\nof the time they can give to the country, that two or three days\nare not to be taken out for the Abbey.  Mr. Knightley promises\nto give up his claim this Christmas--though you know it is longer\nsince they were with him, than with us.\"\n\n\"It would be very hard, indeed, my dear, if poor Isabella were\nto be anywhere but at Hartfield.\"\n\nMr. Woodhouse could never allow for Mr. Knightley's claims on\nhis brother, or any body's claims on Isabella, except his own.\nHe sat musing a little while, and then said,\n\n\"But I do not see why poor Isabella should be obliged to go back\nso soon, though he does.  I think, Emma, I shall try and persuade\nher to stay longer with us.  She and the children might stay very well.\"\n\n\"Ah! papa--that is what you never have been able to accomplish,\nand I do not think you ever will.  Isabella cannot bear to stay\nbehind her husband.\"\n\nThis was too true for contradiction.  Unwelcome as it was, Mr. Woodhouse\ncould only give a submissive sigh; and as Emma saw his spirits\naffected by the idea of his daughter's attachment to her husband,\nshe immediately led to such a branch of the subject as must raise them.\n\n\"Harriet must give us as much of her company as she can while\nmy brother and sister are here.  I am sure she will be pleased\nwith the children.  We are very proud of the children, are not we,\npapa? I wonder which she will think the handsomest, Henry or John?\"\n\n\"Aye, I wonder which she will.  Poor little dears, how glad they\nwill be to come.  They are very fond of being at Hartfield, Harriet.\"\n\n\"I dare say they are, sir.  I am sure I do not know who is not.\"\n\n\"Henry is a fine boy, but John is very like his mama.  Henry is the eldest,\nhe was named after me, not after his father.  John, the second,\nis named after his father.  Some people are surprized, I believe,\nthat the eldest was not, but Isabella would have him called Henry,\nwhich I thought very pretty of her.  And he is a very clever boy,\nindeed.  They are all remarkably clever; and they have so many\npretty ways.  They will come and stand by my chair, and say,\n`Grandpapa, can you give me a bit of string?' and once Henry asked me\nfor a knife, but I told him knives were only made for grandpapas.\nI think their father is too rough with them very often.\"\n\n\"He appears rough to you,\" said Emma, \"because you are so very\ngentle yourself; but if you could compare him with other papas,\nyou would not think him rough.  He wishes his boys to be active and hardy;\nand if they misbehave, can give them a sharp word now and then;\nbut he is an affectionate father--certainly Mr. John Knightley\nis an affectionate father.  The children are all fond of him.\"\n\n\"And then their uncle comes in, and tosses them up to the ceiling\nin a very frightful way!\"\n\n\"But they like it, papa; there is nothing they like so much.\nIt is such enjoyment to them, that if their uncle did not lay down\nthe rule of their taking turns, whichever began would never give way\nto the other.\"\n\n\"Well, I cannot understand it.\"\n\n\"That is the case with us all, papa.  One half of the world cannot\nunderstand the pleasures of the other.\"\n\nLater in the morning, and just as the girls were going to separate\nin preparation for the regular four o'clock dinner, the hero\nof this inimitable charade walked in again.  Harriet turned away;\nbut Emma could receive him with the usual smile, and her quick eye\nsoon discerned in his the consciousness of having made a push--of\nhaving thrown a die; and she imagined he was come to see how it\nmight turn up.  His ostensible reason, however, was to ask whether\nMr. Woodhouse's party could be made up in the evening without him,\nor whether he should be in the smallest degree necessary at Hartfield.\nIf he were, every thing else must give way; but otherwise his friend\nCole had been saying so much about his dining with him--had made\nsuch a point of it, that he had promised him conditionally to come.\n\nEmma thanked him, but could not allow of his disappointing his\nfriend on their account; her father was sure of his rubber.\nHe re-urged--she re-declined; and he seemed then about to make\nhis bow, when taking the paper from the table, she returned it--\n\n\"Oh! here is the charade you were so obliging as to leave with us;\nthank you for the sight of it.  We admired it so much, that I have\nventured to write it into Miss Smith's collection.  Your friend\nwill not take it amiss I hope.  Of course I have not transcribed\nbeyond the first eight lines.\"\n\nMr. Elton certainly did not very well know what to say.\nHe looked rather doubtingly--rather confused; said something about\n\"honour,\"--glanced at Emma and at Harriet, and then seeing the book\nopen on the table, took it up, and examined it very attentively.\nWith the view of passing off an awkward moment, Emma smilingly said,\n\n\"You must make my apologies to your friend; but so good a charade\nmust not be confined to one or two.  He may be sure of every woman's\napprobation while he writes with such gallantry.\"\n\n\"I have no hesitation in saying,\" replied Mr. Elton, though hesitating\na good deal while he spoke; \"I have no hesitation in saying--at\nleast if my friend feels at all as _I_ do--I have not the smallest\ndoubt that, could he see his little effusion honoured as _I_ see it,\n(looking at the book again, and replacing it on the table), he\nwould consider it as the proudest moment of his life.\"\n\nAfter this speech he was gone as soon as possible.  Emma could not\nthink it too soon; for with all his good and agreeable qualities,\nthere was a sort of parade in his speeches which was very apt\nto incline her to laugh.  She ran away to indulge the inclination,\nleaving the tender and the sublime of pleasure to Harriet's share.\n\n\n\nCHAPTER X\n\n\nThough now the middle of December, there had yet been no weather\nto prevent the young ladies from tolerably regular exercise;\nand on the morrow, Emma had a charitable visit to pay to a poor\nsick family, who lived a little way out of Highbury.\n\nTheir road to this detached cottage was down Vicarage Lane, a lane\nleading at right angles from the broad, though irregular, main street\nof the place; and, as may be inferred, containing the blessed abode\nof Mr. Elton.  A few inferior dwellings were first to be passed,\nand then, about a quarter of a mile down the lane rose the Vicarage,\nan old and not very good house, almost as close to the road as it\ncould be.  It had no advantage of situation; but had been very much\nsmartened up by the present proprietor; and, such as it was,\nthere could be no possibility of the two friends passing it without\na slackened pace and observing eyes.--Emma's remark was--\n\n\"There it is.  There go you and your riddle-book one of these days.\"--\nHarriet's was--\n\n\"Oh, what a sweet house!--How very beautiful!--There are the yellow\ncurtains that Miss Nash admires so much.\"\n\n\"I do not often walk this way _now_,\" said Emma, as they proceeded,\n\"but _then_ there will be an inducement, and I shall gradually get\nintimately acquainted with all the hedges, gates, pools and pollards\nof this part of Highbury.\"\n\nHarriet, she found, had never in her life been within side the Vicarage,\nand her curiosity to see it was so extreme, that, considering exteriors\nand probabilities, Emma could only class it, as a proof of love,\nwith Mr. Elton's seeing ready wit in her.\n\n\"I wish we could contrive it,\" said she; \"but I cannot think\nof any tolerable pretence for going in;--no servant that I want\nto inquire about of his housekeeper--no message from my father.\"\n\nShe pondered, but could think of nothing.  After a mutual silence\nof some minutes, Harriet thus began again--\n\n\"I do so wonder, Miss Woodhouse, that you should not be married,\nor going to be married! so charming as you are!\"--\n\nEmma laughed, and replied,\n\n\"My being charming, Harriet, is not quite enough to induce me to marry;\nI must find other people charming--one other person at least.\nAnd I am not only, not going to be married, at present, but have\nvery little intention of ever marrying at all.\"\n\n\"Ah!--so you say; but I cannot believe it.\"\n\n\"I must see somebody very superior to any one I have seen yet,\nto be tempted; Mr. Elton, you know, (recollecting herself,)\nis out of the question:  and I do _not_ wish to see any such person.\nI would rather not be tempted.  I cannot really change for the better.\nIf I were to marry, I must expect to repent it.\"\n\n\"Dear me!--it is so odd to hear a woman talk so!\"--\n\n\"I have none of the usual inducements of women to marry.\nWere I to fall in love, indeed, it would be a different thing!\nbut I never have been in love; it is not my way, or my nature;\nand I do not think I ever shall.  And, without love, I am sure I\nshould be a fool to change such a situation as mine.  Fortune I\ndo not want; employment I do not want; consequence I do not want:\nI believe few married women are half as much mistress of their\nhusband's house as I am of Hartfield; and never, never could I expect\nto be so truly beloved and important; so always first and always\nright in any man's eyes as I am in my father's.\"\n\n\"But then, to be an old maid at last, like Miss Bates!\"\n\n\"That is as formidable an image as you could present, Harriet; and if I\nthought I should ever be like Miss Bates! so silly--so satisfied--\nso smiling--so prosing--so undistinguishing and unfastidious--\nand so apt to tell every thing relative to every body about me,\nI would marry to-morrow. But between _us_, I am convinced there never\ncan be any likeness, except in being unmarried.\"\n\n\"But still, you will be an old maid! and that's so dreadful!\"\n\n\"Never mind, Harriet, I shall not be a poor old maid; and it is\npoverty only which makes celibacy contemptible to a generous public!\nA single woman, with a very narrow income, must be a ridiculous,\ndisagreeable old maid! the proper sport of boys and girls,\nbut a single woman, of good fortune, is always respectable,\nand may be as sensible and pleasant as any body else.  And the\ndistinction is not quite so much against the candour and common\nsense of the world as appears at first; for a very narrow income\nhas a tendency to contract the mind, and sour the temper.\nThose who can barely live, and who live perforce in a very small,\nand generally very inferior, society, may well be illiberal and cross.\nThis does not apply, however, to Miss Bates; she is only too good\nnatured and too silly to suit me; but, in general, she is very\nmuch to the taste of every body, though single and though poor.\nPoverty certainly has not contracted her mind:  I really believe,\nif she had only a shilling in the world, she would be very likely\nto give away sixpence of it; and nobody is afraid of her:  that is a\ngreat charm.\"\n\n\"Dear me! but what shall you do? how shall you employ yourself\nwhen you grow old?\"\n\n\"If I know myself, Harriet, mine is an active, busy mind, with a great\nmany independent resources; and I do not perceive why I should be\nmore in want of employment at forty or fifty than one-and-twenty.\nWoman's usual occupations of hand and mind will be as open to me then\nas they are now; or with no important variation.  If I draw less,\nI shall read more; if I give up music, I shall take to carpet-work.\nAnd as for objects of interest, objects for the affections,\nwhich is in truth the great point of inferiority, the want of which\nis really the great evil to be avoided in _not_ marrying, I shall\nbe very well off, with all the children of a sister I love so much,\nto care about.  There will be enough of them, in all probability,\nto supply every sort of sensation that declining life can need.\nThere will be enough for every hope and every fear; and though my\nattachment to none can equal that of a parent, it suits my ideas\nof comfort better than what is warmer and blinder.  My nephews\nand nieces!--I shall often have a niece with me.\"\n\n\"Do you know Miss Bates's niece?  That is, I know you must have\nseen her a hundred times--but are you acquainted?\"\n\n\"Oh! yes; we are always forced to be acquainted whenever she comes\nto Highbury.  By the bye, _that_ is almost enough to put one out\nof conceit with a niece.  Heaven forbid! at least, that I should\never bore people half so much about all the Knightleys together,\nas she does about Jane Fairfax.  One is sick of the very name\nof Jane Fairfax.  Every letter from her is read forty times over;\nher compliments to all friends go round and round again; and if she\ndoes but send her aunt the pattern of a stomacher, or knit a pair\nof garters for her grandmother, one hears of nothing else for a month.\nI wish Jane Fairfax very well; but she tires me to death.\"\n\nThey were now approaching the cottage, and all idle topics\nwere superseded.  Emma was very compassionate; and the distresses\nof the poor were as sure of relief from her personal attention\nand kindness, her counsel and her patience, as from her purse.\nShe understood their ways, could allow for their ignorance and\ntheir temptations, had no romantic expectations of extraordinary\nvirtue from those for whom education had done so little; entered into\ntheir troubles with ready sympathy, and always gave her assistance\nwith as much intelligence as good-will.  In the present instance,\nit was sickness and poverty together which she came to visit;\nand after remaining there as long as she could give comfort or advice,\nshe quitted the cottage with such an impression of the scene\nas made her say to Harriet, as they walked away,\n\n\"These are the sights, Harriet, to do one good.  How trifling they\nmake every thing else appear!--I feel now as if I could think of\nnothing but these poor creatures all the rest of the day; and yet,\nwho can say how soon it may all vanish from my mind?\"\n\n\"Very true,\" said Harriet.  \"Poor creatures! one can think\nof nothing else.\"\n\n\"And really, I do not think the impression will soon be over,\"\nsaid Emma, as she crossed the low hedge, and tottering footstep\nwhich ended the narrow, slippery path through the cottage garden,\nand brought them into the lane again.  \"I do not think it will,\"\nstopping to look once more at all the outward wretchedness of the place,\nand recall the still greater within.\n\n\"Oh! dear, no,\" said her companion.\n\nThey walked on.  The lane made a slight bend; and when that bend\nwas passed, Mr. Elton was immediately in sight; and so near\nas to give Emma time only to say farther,\n\n\"Ah!  Harriet, here comes a very sudden trial of our stability\nin good thoughts.  Well, (smiling,) I hope it may be allowed that\nif compassion has produced exertion and relief to the sufferers,\nit has done all that is truly important.  If we feel for the wretched,\nenough to do all we can for them, the rest is empty sympathy,\nonly distressing to ourselves.\"\n\nHarriet could just answer, \"Oh! dear, yes,\" before the gentleman\njoined them.  The wants and sufferings of the poor family, however,\nwere the first subject on meeting.  He had been going to call\non them.  His visit he would now defer; but they had a very\ninteresting parley about what could be done and should be done.\nMr. Elton then turned back to accompany them.\n\n\"To fall in with each other on such an errand as this,\" thought Emma;\n\"to meet in a charitable scheme; this will bring a great increase\nof love on each side.  I should not wonder if it were to bring\non the declaration.  It must, if I were not here.  I wish I were\nanywhere else.\"\n\nAnxious to separate herself from them as far as she could, she soon\nafterwards took possession of a narrow footpath, a little raised\non one side of the lane, leaving them together in the main road.\nBut she had not been there two minutes when she found that Harriet's\nhabits of dependence and imitation were bringing her up too, and that,\nin short, they would both be soon after her.  This would not do;\nshe immediately stopped, under pretence of having some alteration\nto make in the lacing of her half-boot, and stooping down in complete\noccupation of the footpath, begged them to have the goodness to walk on,\nand she would follow in half a minute.  They did as they were desired;\nand by the time she judged it reasonable to have done with her boot,\nshe had the comfort of farther delay in her power, being overtaken\nby a child from the cottage, setting out, according to orders,\nwith her pitcher, to fetch broth from Hartfield.  To walk by the side\nof this child, and talk to and question her, was the most natural\nthing in the world, or would have been the most natural, had she been\nacting just then without design; and by this means the others were\nstill able to keep ahead, without any obligation of waiting for her.\nShe gained on them, however, involuntarily:  the child's pace was quick,\nand theirs rather slow; and she was the more concerned at it,\nfrom their being evidently in a conversation which interested them.\nMr. Elton was speaking with animation, Harriet listening with a very\npleased attention; and Emma, having sent the child on, was beginning\nto think how she might draw back a little more, when they both\nlooked around, and she was obliged to join them.\n\nMr. Elton was still talking, still engaged in some interesting detail;\nand Emma experienced some disappointment when she found that he\nwas only giving his fair companion an account of the yesterday's\nparty at his friend Cole's, and that she was come in herself for\nthe Stilton cheese, the north Wiltshire, the butter, the cellery,\nthe beet-root, and all the dessert.\n\n\"This would soon have led to something better, of course,\" was her\nconsoling reflection; \"any thing interests between those who love;\nand any thing will serve as introduction to what is near the heart.\nIf I could but have kept longer away!\"\n\nThey now walked on together quietly, till within view of the vicarage\npales, when a sudden resolution, of at least getting Harriet into\nthe house, made her again find something very much amiss about her boot,\nand fall behind to arrange it once more.  She then broke the lace\noff short, and dexterously throwing it into a ditch, was presently\nobliged to entreat them to stop, and acknowledged her inability to\nput herself to rights so as to be able to walk home in tolerable comfort.\n\n\"Part of my lace is gone,\" said she, \"and I do not know how I am\nto contrive.  I really am a most troublesome companion to you both,\nbut I hope I am not often so ill-equipped. Mr. Elton, I must beg\nleave to stop at your house, and ask your housekeeper for a bit\nof ribband or string, or any thing just to keep my boot on.\"\n\nMr. Elton looked all happiness at this proposition; and nothing\ncould exceed his alertness and attention in conducting them into\nhis house and endeavouring to make every thing appear to advantage.\nThe room they were taken into was the one he chiefly occupied,\nand looking forwards; behind it was another with which it immediately\ncommunicated; the door between them was open, and Emma passed\ninto it with the housekeeper to receive her assistance in the most\ncomfortable manner.  She was obliged to leave the door ajar as she\nfound it; but she fully intended that Mr. Elton should close it.\nIt was not closed, however, it still remained ajar; but by engaging\nthe housekeeper in incessant conversation, she hoped to make it\npracticable for him to chuse his own subject in the adjoining room.\nFor ten minutes she could hear nothing but herself.  It could\nbe protracted no longer.  She was then obliged to be finished,\nand make her appearance.\n\nThe lovers were standing together at one of the windows.  It had a\nmost favourable aspect; and, for half a minute, Emma felt the glory\nof having schemed successfully.  But it would not do; he had not\ncome to the point.  He had been most agreeable, most delightful;\nhe had told Harriet that he had seen them go by, and had purposely\nfollowed them; other little gallantries and allusions had been dropt,\nbut nothing serious.\n\n\"Cautious, very cautious,\" thought Emma; \"he advances inch by inch,\nand will hazard nothing till he believes himself secure.\"\n\nStill, however, though every thing had not been accomplished\nby her ingenious device, she could not but flatter herself\nthat it had been the occasion of much present enjoyment to both,\nand must be leading them forward to the great event.\n\n\n\nCHAPTER XI\n\n\nMr. Elton must now be left to himself.  It was no longer in Emma's\npower to superintend his happiness or quicken his measures.\nThe coming of her sister's family was so very near at hand,\nthat first in anticipation, and then in reality, it became henceforth\nher prime object of interest; and during the ten days of their stay\nat Hartfield it was not to be expected--she did not herself expect--\nthat any thing beyond occasional, fortuitous assistance could\nbe afforded by her to the lovers.  They might advance rapidly\nif they would, however; they must advance somehow or other whether\nthey would or no.  She hardly wished to have more leisure for them.\nThere are people, who the more you do for them, the less they will\ndo for themselves.\n\nMr. and Mrs. John Knightley, from having been longer than usual\nabsent from Surry, were exciting of course rather more than the\nusual interest.  Till this year, every long vacation since their\nmarriage had been divided between Hartfield and Donwell Abbey;\nbut all the holidays of this autumn had been given to sea-bathing\nfor the children, and it was therefore many months since they had\nbeen seen in a regular way by their Surry connexions, or seen at all\nby Mr. Woodhouse, who could not be induced to get so far as London,\neven for poor Isabella's sake; and who consequently was now most\nnervously and apprehensively happy in forestalling this too short visit.\n\nHe thought much of the evils of the journey for her, and not a\nlittle of the fatigues of his own horses and coachman who were to\nbring some of the party the last half of the way; but his alarms\nwere needless; the sixteen miles being happily accomplished,\nand Mr. and Mrs. John Knightley, their five children, and a competent\nnumber of nursery-maids, all reaching Hartfield in safety.\nThe bustle and joy of such an arrival, the many to be talked to,\nwelcomed, encouraged, and variously dispersed and disposed of,\nproduced a noise and confusion which his nerves could not have borne\nunder any other cause, nor have endured much longer even for this;\nbut the ways of Hartfield and the feelings of her father were\nso respected by Mrs. John Knightley, that in spite of maternal\nsolicitude for the immediate enjoyment of her little ones,\nand for their having instantly all the liberty and attendance,\nall the eating and drinking, and sleeping and playing,\nwhich they could possibly wish for, without the smallest delay,\nthe children were never allowed to be long a disturbance to him,\neither in themselves or in any restless attendance on them.\n\nMrs. John Knightley was a pretty, elegant little woman, of gentle,\nquiet manners, and a disposition remarkably amiable and affectionate;\nwrapt up in her family; a devoted wife, a doating mother,\nand so tenderly attached to her father and sister that, but for\nthese higher ties, a warmer love might have seemed impossible.\nShe could never see a fault in any of them.  She was not a woman\nof strong understanding or any quickness; and with this resemblance\nof her father, she inherited also much of his constitution;\nwas delicate in her own health, over-careful of that of her children,\nhad many fears and many nerves, and was as fond of her own Mr. Wingfield\nin town as her father could be of Mr. Perry.  They were alike too,\nin a general benevolence of temper, and a strong habit of regard\nfor every old acquaintance.\n\nMr. John Knightley was a tall, gentleman-like, and very clever man;\nrising in his profession, domestic, and respectable in his\nprivate character; but with reserved manners which prevented his being\ngenerally pleasing; and capable of being sometimes out of humour.\nHe was not an ill-tempered man, not so often unreasonably cross\nas to deserve such a reproach; but his temper was not his\ngreat perfection; and, indeed, with such a worshipping wife,\nit was hardly possible that any natural defects in it should not\nbe increased.  The extreme sweetness of her temper must hurt his.\nHe had all the clearness and quickness of mind which she wanted,\nand he could sometimes act an ungracious, or say a severe thing.\n\nHe was not a great favourite with his fair sister-in-law. Nothing\nwrong in him escaped her.  She was quick in feeling the little\ninjuries to Isabella, which Isabella never felt herself.\nPerhaps she might have passed over more had his manners been\nflattering to Isabella's sister, but they were only those of a calmly\nkind brother and friend, without praise and without blindness;\nbut hardly any degree of personal compliment could have made her\nregardless of that greatest fault of all in her eyes which he sometimes\nfell into, the want of respectful forbearance towards her father.\nThere he had not always the patience that could have been wished.\nMr. Woodhouse's peculiarities and fidgetiness were sometimes provoking\nhim to a rational remonstrance or sharp retort equally ill-bestowed.\nIt did not often happen; for Mr. John Knightley had really a great\nregard for his father-in-law, and generally a strong sense of what was\ndue to him; but it was too often for Emma's charity, especially as\nthere was all the pain of apprehension frequently to be endured,\nthough the offence came not.  The beginning, however, of every visit\ndisplayed none but the properest feelings, and this being of necessity\nso short might be hoped to pass away in unsullied cordiality.\nThey had not been long seated and composed when Mr. Woodhouse,\nwith a melancholy shake of the head and a sigh, called his daughter's\nattention to the sad change at Hartfield since she had been there last.\n\n\"Ah, my dear,\" said he, \"poor Miss Taylor--It is a grievous business.\"\n\n\"Oh yes, sir,\" cried she with ready sympathy, \"how you must\nmiss her!  And dear Emma, too!--What a dreadful loss to you both!--\nI have been so grieved for you.--I could not imagine how you could\npossibly do without her.--It is a sad change indeed.--But I hope\nshe is pretty well, sir.\"\n\n\"Pretty well, my dear--I hope--pretty well.--I do not know\nbut that the place agrees with her tolerably.\"\n\nMr. John Knightley here asked Emma quietly whether there were any\ndoubts of the air of Randalls.\n\n\"Oh! no--none in the least.  I never saw Mrs. Weston better in my life--\nnever looking so well.  Papa is only speaking his own regret.\"\n\n\"Very much to the honour of both,\" was the handsome reply.\n\n\"And do you see her, sir, tolerably often?\" asked Isabella\nin the plaintive tone which just suited her father.\n\nMr. Woodhouse hesitated.--\"Not near so often, my dear, as I could wish.\"\n\n\"Oh! papa, we have missed seeing them but one entire day since\nthey married.  Either in the morning or evening of every day,\nexcepting one, have we seen either Mr. Weston or Mrs. Weston,\nand generally both, either at Randalls or here--and as you\nmay suppose, Isabella, most frequently here.  They are very,\nvery kind in their visits.  Mr. Weston is really as kind as herself.\nPapa, if you speak in that melancholy way, you will be giving\nIsabella a false idea of us all.  Every body must be aware that Miss\nTaylor must be missed, but every body ought also to be assured\nthat Mr. and Mrs. Weston do really prevent our missing her by any\nmeans to the extent we ourselves anticipated--which is the exact truth.\"\n\n\"Just as it should be,\" said Mr. John Knightley, \"and just as I hoped\nit was from your letters.  Her wish of shewing you attention could\nnot be doubted, and his being a disengaged and social man makes it\nall easy.  I have been always telling you, my love, that I had no idea\nof the change being so very material to Hartfield as you apprehended;\nand now you have Emma's account, I hope you will be satisfied.\"\n\n\"Why, to be sure,\" said Mr. Woodhouse--\"yes, certainly--I cannot deny\nthat Mrs. Weston, poor Mrs. Weston, does come and see us pretty often--\nbut then--she is always obliged to go away again.\"\n\n\"It would be very hard upon Mr. Weston if she did not, papa.--\nYou quite forget poor Mr. Weston.\"\n\n\"I think, indeed,\" said John Knightley pleasantly, \"that Mr. Weston\nhas some little claim.  You and I, Emma, will venture to take the part\nof the poor husband.  I, being a husband, and you not being a wife,\nthe claims of the man may very likely strike us with equal force.\nAs for Isabella, she has been married long enough to see the convenience\nof putting all the Mr. Westons aside as much as she can.\"\n\n\"Me, my love,\" cried his wife, hearing and understanding only in part.--\n\"Are you talking about me?--I am sure nobody ought to be, or can be,\na greater advocate for matrimony than I am; and if it had not been\nfor the misery of her leaving Hartfield, I should never have thought\nof Miss Taylor but as the most fortunate woman in the world;\nand as to slighting Mr. Weston, that excellent Mr. Weston, I think\nthere is nothing he does not deserve.  I believe he is one of the\nvery best-tempered men that ever existed.  Excepting yourself\nand your brother, I do not know his equal for temper.  I shall\nnever forget his flying Henry's kite for him that very windy day\nlast Easter--and ever since his particular kindness last September\ntwelvemonth in writing that note, at twelve o'clock at night,\non purpose to assure me that there was no scarlet fever at Cobham,\nI have been convinced there could not be a more feeling heart nor\na better man in existence.--If any body can deserve him, it must be\nMiss Taylor.\"\n\n\"Where is the young man?\" said John Knightley.  \"Has he been here\non this occasion--or has he not?\"\n\n\"He has not been here yet,\" replied Emma.  \"There was a strong\nexpectation of his coming soon after the marriage, but it ended\nin nothing; and I have not heard him mentioned lately.\"\n\n\"But you should tell them of the letter, my dear,\" said her father.\n\"He wrote a letter to poor Mrs. Weston, to congratulate her,\nand a very proper, handsome letter it was.  She shewed it to me.\nI thought it very well done of him indeed.  Whether it was his own idea\nyou know, one cannot tell.  He is but young, and his uncle, perhaps--\"\n\n\"My dear papa, he is three-and-twenty. You forget how time passes.\"\n\n\"Three-and-twenty!--is he indeed?--Well, I could not have thought it--\nand he was but two years old when he lost his poor mother!  Well,\ntime does fly indeed!--and my memory is very bad.  However, it was\nan exceeding good, pretty letter, and gave Mr. and Mrs. Weston\na great deal of pleasure.  I remember it was written from Weymouth,\nand dated Sept. 28th--and began, `My dear Madam,' but I forget\nhow it went on; and it was signed `F. C. Weston Churchill.'--\nI remember that perfectly.\"\n\n\"How very pleasing and proper of him!\" cried the good-hearted Mrs. John\nKnightley.  \"I have no doubt of his being a most amiable young man.\nBut how sad it is that he should not live at home with his father!\nThere is something so shocking in a child's being taken away from his\nparents and natural home!  I never could comprehend how Mr. Weston\ncould part with him.  To give up one's child!  I really never\ncould think well of any body who proposed such a thing to any body else.\"\n\n\"Nobody ever did think well of the Churchills, I fancy,\"\nobserved Mr. John Knightley coolly.  \"But you need not imagine\nMr. Weston to have felt what you would feel in giving up Henry\nor John.  Mr. Weston is rather an easy, cheerful-tempered man,\nthan a man of strong feelings; he takes things as he finds them,\nand makes enjoyment of them somehow or other, depending, I suspect,\nmuch more upon what is called society for his comforts, that is,\nupon the power of eating and drinking, and playing whist with his\nneighbours five times a week, than upon family affection, or any\nthing that home affords.\"\n\nEmma could not like what bordered on a reflection on Mr. Weston,\nand had half a mind to take it up; but she struggled, and let\nit pass.  She would keep the peace if possible; and there was\nsomething honourable and valuable in the strong domestic habits,\nthe all-sufficiency of home to himself, whence resulted her brother's\ndisposition to look down on the common rate of social intercourse,\nand those to whom it was important.--It had a high claim to forbearance.\n\n\n\nCHAPTER XII\n\n\nMr. Knightley was to dine with them--rather against the inclination\nof Mr. Woodhouse, who did not like that any one should share with him\nin Isabella's first day.  Emma's sense of right however had decided it;\nand besides the consideration of what was due to each brother,\nshe had particular pleasure, from the circumstance of the late\ndisagreement between Mr. Knightley and herself, in procuring him\nthe proper invitation.\n\nShe hoped they might now become friends again.  She thought it\nwas time to make up.  Making-up indeed would not do.  _She_ certainly\nhad not been in the wrong, and _he_ would never own that he had.\nConcession must be out of the question; but it was time to appear\nto forget that they had ever quarrelled; and she hoped it might rather\nassist the restoration of friendship, that when he came into the room\nshe had one of the children with her--the youngest, a nice little girl\nabout eight months old, who was now making her first visit to Hartfield,\nand very happy to be danced about in her aunt's arms.  It did assist;\nfor though he began with grave looks and short questions, he was soon\nled on to talk of them all in the usual way, and to take the child\nout of her arms with all the unceremoniousness of perfect amity.\nEmma felt they were friends again; and the conviction giving\nher at first great satisfaction, and then a little sauciness,\nshe could not help saying, as he was admiring the baby,\n\n\"What a comfort it is, that we think alike about our nephews and nieces.\nAs to men and women, our opinions are sometimes very different;\nbut with regard to these children, I observe we never disagree.\"\n\n\"If you were as much guided by nature in your estimate of men\nand women, and as little under the power of fancy and whim in your\ndealings with them, as you are where these children are concerned,\nwe might always think alike.\"\n\n\"To be sure--our discordancies must always arise from my being\nin the wrong.\"\n\n\"Yes,\" said he, smiling--\"and reason good.  I was sixteen years\nold when you were born.\"\n\n\"A material difference then,\" she replied--\"and no doubt you were\nmuch my superior in judgment at that period of our lives; but does\nnot the lapse of one-and-twenty years bring our understandings\na good deal nearer?\"\n\n\"Yes--a good deal _nearer_.\"\n\n\"But still, not near enough to give me a chance of being right,\nif we think differently.\"\n\n\"I have still the advantage of you by sixteen years' experience, and by\nnot being a pretty young woman and a spoiled child.  Come, my dear Emma,\nlet us be friends, and say no more about it.  Tell your aunt, little Emma,\nthat she ought to set you a better example than to be renewing\nold grievances, and that if she were not wrong before, she is now.\"\n\n\"That's true,\" she cried--\"very true.  Little Emma, grow up\na better woman than your aunt.  Be infinitely cleverer and not\nhalf so conceited.  Now, Mr. Knightley, a word or two more, and I\nhave done.  As far as good intentions went, we were _both_ right,\nand I must say that no effects on my side of the argument have yet\nproved wrong.  I only want to know that Mr. Martin is not very,\nvery bitterly disappointed.\"\n\n\"A man cannot be more so,\" was his short, full answer.\n\n\"Ah!--Indeed I am very sorry.--Come, shake hands with me.\"\n\nThis had just taken place and with great cordiality, when John\nKnightley made his appearance, and \"How d'ye do, George?\" and \"John,\nhow are you?\" succeeded in the true English style, burying under\na calmness that seemed all but indifference, the real attachment\nwhich would have led either of them, if requisite, to do every thing\nfor the good of the other.\n\nThe evening was quiet and conversable, as Mr. Woodhouse declined\ncards entirely for the sake of comfortable talk with his\ndear Isabella, and the little party made two natural divisions;\non one side he and his daughter; on the other the two Mr. Knightleys;\ntheir subjects totally distinct, or very rarely mixing--and Emma\nonly occasionally joining in one or the other.\n\nThe brothers talked of their own concerns and pursuits, but principally\nof those of the elder, whose temper was by much the most communicative,\nand who was always the greater talker.  As a magistrate, he had\ngenerally some point of law to consult John about, or, at least,\nsome curious anecdote to give; and as a farmer, as keeping in hand\nthe home-farm at Donwell, he had to tell what every field was to bear\nnext year, and to give all such local information as could not fail\nof being interesting to a brother whose home it had equally been\nthe longest part of his life, and whose attachments were strong.\nThe plan of a drain, the change of a fence, the felling of a tree,\nand the destination of every acre for wheat, turnips, or spring corn,\nwas entered into with as much equality of interest by John, as his\ncooler manners rendered possible; and if his willing brother ever\nleft him any thing to inquire about, his inquiries even approached\na tone of eagerness.\n\nWhile they were thus comfortably occupied, Mr. Woodhouse was enjoying\na full flow of happy regrets and fearful affection with his daughter.\n\n\"My poor dear Isabella,\" said he, fondly taking her hand,\nand interrupting, for a few moments, her busy labours for some one\nof her five children--\"How long it is, how terribly long since you\nwere here!  And how tired you must be after your journey!  You must\ngo to bed early, my dear--and I recommend a little gruel to you\nbefore you go.--You and I will have a nice basin of gruel together.\nMy dear Emma, suppose we all have a little gruel.\"\n\nEmma could not suppose any such thing, knowing as she did,\nthat both the Mr. Knightleys were as unpersuadable on that article\nas herself;--and two basins only were ordered.  After a little\nmore discourse in praise of gruel, with some wondering at its\nnot being taken every evening by every body, he proceeded to say,\nwith an air of grave reflection,\n\n\"It was an awkward business, my dear, your spending the autumn\nat South End instead of coming here.  I never had much opinion\nof the sea air.\"\n\n\"Mr. Wingfield most strenuously recommended it, sir--or we\nshould not have gone.  He recommended it for all the children,\nbut particularly for the weakness in little Bella's throat,--\nboth sea air and bathing.\"\n\n\"Ah! my dear, but Perry had many doubts about the sea doing her\nany good; and as to myself, I have been long perfectly convinced,\nthough perhaps I never told you so before, that the sea is very\nrarely of use to any body.  I am sure it almost killed me once.\"\n\n\"Come, come,\" cried Emma, feeling this to be an unsafe subject, \"I must\nbeg you not to talk of the sea.  It makes me envious and miserable;--\nI who have never seen it!  South End is prohibited, if you please.\nMy dear Isabella, I have not heard you make one inquiry about\nMr. Perry yet; and he never forgets you.\"\n\n\"Oh! good Mr. Perry--how is he, sir?\"\n\n\"Why, pretty well; but not quite well.  Poor Perry is bilious,\nand he has not time to take care of himself--he tells me he has\nnot time to take care of himself--which is very sad--but he is\nalways wanted all round the country.  I suppose there is not a man\nin such practice anywhere.  But then there is not so clever a man\nany where.\"\n\n\"And Mrs. Perry and the children, how are they? do the children grow?\nI have a great regard for Mr. Perry.  I hope he will be calling soon.\nHe will be so pleased to see my little ones.\"\n\n\"I hope he will be here to-morrow, for I have a question or two to ask\nhim about myself of some consequence.  And, my dear, whenever he comes,\nyou had better let him look at little Bella's throat.\"\n\n\"Oh! my dear sir, her throat is so much better that I have hardly\nany uneasiness about it.  Either bathing has been of the greatest\nservice to her, or else it is to be attributed to an excellent\nembrocation of Mr. Wingfield's, which we have been applying\nat times ever since August.\"\n\n\"It is not very likely, my dear, that bathing should have been\nof use to her--and if I had known you were wanting an embrocation,\nI would have spoken to--\n\n\"You seem to me to have forgotten Mrs. and Miss Bates,\" said Emma,\n\"I have not heard one inquiry after them.\"\n\n\"Oh! the good Bateses--I am quite ashamed of myself--but you\nmention them in most of your letters.  I hope they are quite well.\nGood old Mrs. Bates--I will call upon her to-morrow, and take\nmy children.--They are always so pleased to see my children.--\nAnd that excellent Miss Bates!--such thorough worthy people!--\nHow are they, sir?\"\n\n\"Why, pretty well, my dear, upon the whole.  But poor Mrs. Bates\nhad a bad cold about a month ago.\"\n\n\"How sorry I am!  But colds were never so prevalent as they have been\nthis autumn.  Mr. Wingfield told me that he has never known them\nmore general or heavy--except when it has been quite an influenza.\"\n\n\"That has been a good deal the case, my dear; but not to the degree\nyou mention.  Perry says that colds have been very general,\nbut not so heavy as he has very often known them in November.\nPerry does not call it altogether a sickly season.\"\n\n\"No, I do not know that Mr. Wingfield considers it _very_ sickly except--\n\n\"Ah! my poor dear child, the truth is, that in London it is always\na sickly season.  Nobody is healthy in London, nobody can be.\nIt is a dreadful thing to have you forced to live there! so far off!--\nand the air so bad!\"\n\n\"No, indeed--_we_ are not at all in a bad air.  Our part of London is\nvery superior to most others!--You must not confound us with London\nin general, my dear sir.  The neighbourhood of Brunswick Square\nis very different from almost all the rest.  We are so very airy!\nI should be unwilling, I own, to live in any other part of the town;--\nthere is hardly any other that I could be satisfied to have my\nchildren in:  but _we_ are so remarkably airy!--Mr. Wingfield thinks\nthe vicinity of Brunswick Square decidedly the most favourable as\nto air.\"\n\n\"Ah! my dear, it is not like Hartfield.  You make the best of it--\nbut after you have been a week at Hartfield, you are all of you\ndifferent creatures; you do not look like the same.  Now I cannot say,\nthat I think you are any of you looking well at present.\"\n\n\"I am sorry to hear you say so, sir; but I assure you, excepting those\nlittle nervous head-aches and palpitations which I am never entirely\nfree from anywhere, I am quite well myself; and if the children were\nrather pale before they went to bed, it was only because they were\na little more tired than usual, from their journey and the happiness\nof coming.  I hope you will think better of their looks to-morrow;\nfor I assure you Mr. Wingfield told me, that he did not believe\nhe had ever sent us off altogether, in such good case.  I trust,\nat least, that you do not think Mr. Knightley looking ill,\"\nturning her eyes with affectionate anxiety towards her husband.\n\n\"Middling, my dear; I cannot compliment you.  I think Mr. John\nKnightley very far from looking well.\"\n\n\"What is the matter, sir?--Did you speak to me?\" cried Mr. John\nKnightley, hearing his own name.\n\n\"I am sorry to find, my love, that my father does not think you\nlooking well--but I hope it is only from being a little fatigued.\nI could have wished, however, as you know, that you had seen\nMr. Wingfield before you left home.\"\n\n\"My dear Isabella,\"--exclaimed he hastily--\"pray do not concern\nyourself about my looks.  Be satisfied with doctoring and coddling\nyourself and the children, and let me look as I chuse.\"\n\n\"I did not thoroughly understand what you were telling your brother,\"\ncried Emma, \"about your friend Mr. Graham's intending to have a bailiff\nfrom Scotland, to look after his new estate.  What will it answer?\nWill not the old prejudice be too strong?\"\n\nAnd she talked in this way so long and successfully that, when forced\nto give her attention again to her father and sister, she had nothing\nworse to hear than Isabella's kind inquiry after Jane Fairfax;\nand Jane Fairfax, though no great favourite with her in general,\nshe was at that moment very happy to assist in praising.\n\n\"That sweet, amiable Jane Fairfax!\" said Mrs. John Knightley.--\n\"It is so long since I have seen her, except now and then for a moment\naccidentally in town!  What happiness it must be to her good old\ngrandmother and excellent aunt, when she comes to visit them!\nI always regret excessively on dear Emma's account that she cannot\nbe more at Highbury; but now their daughter is married, I suppose\nColonel and Mrs. Campbell will not be able to part with her at all.\nShe would be such a delightful companion for Emma.\"\n\nMr. Woodhouse agreed to it all, but added,\n\n\"Our little friend Harriet Smith, however, is just such another\npretty kind of young person.  You will like Harriet.  Emma could\nnot have a better companion than Harriet.\"\n\n\"I am most happy to hear it--but only Jane Fairfax one knows to be\nso very accomplished and superior!--and exactly Emma's age.\"\n\nThis topic was discussed very happily, and others succeeded of\nsimilar moment, and passed away with similar harmony; but the evening\ndid not close without a little return of agitation.  The gruel came\nand supplied a great deal to be said--much praise and many comments--\nundoubting decision of its wholesomeness for every constitution,\nand pretty severe Philippics upon the many houses where it was\nnever met with tolerable;--but, unfortunately, among the failures\nwhich the daughter had to instance, the most recent, and therefore\nmost prominent, was in her own cook at South End, a young woman\nhired for the time, who never had been able to understand what she\nmeant by a basin of nice smooth gruel, thin, but not too thin.\nOften as she had wished for and ordered it, she had never been able\nto get any thing tolerable.  Here was a dangerous opening.\n\n\"Ah!\" said Mr. Woodhouse, shaking his head and fixing his eyes on\nher with tender concern.--The ejaculation in Emma's ear expressed,\n\"Ah! there is no end of the sad consequences of your going to\nSouth End.  It does not bear talking of.\"  And for a little while\nshe hoped he would not talk of it, and that a silent rumination\nmight suffice to restore him to the relish of his own smooth gruel.\nAfter an interval of some minutes, however, he began with,\n\n\"I shall always be very sorry that you went to the sea this autumn,\ninstead of coming here.\"\n\n\"But why should you be sorry, sir?--I assure you, it did the children\na great deal of good.\"\n\n\"And, moreover, if you must go to the sea, it had better not\nhave been to South End.  South End is an unhealthy place.\nPerry was surprized to hear you had fixed upon South End.\"\n\n\"I know there is such an idea with many people, but indeed it is\nquite a mistake, sir.--We all had our health perfectly well there,\nnever found the least inconvenience from the mud; and Mr. Wingfield\nsays it is entirely a mistake to suppose the place unhealthy;\nand I am sure he may be depended on, for he thoroughly understands\nthe nature of the air, and his own brother and family have been\nthere repeatedly.\"\n\n\"You should have gone to Cromer, my dear, if you went anywhere.--\nPerry was a week at Cromer once, and he holds it to be the best\nof all the sea-bathing places.  A fine open sea, he says, and very\npure air.  And, by what I understand, you might have had lodgings there\nquite away from the sea--a quarter of a mile off--very comfortable.\nYou should have consulted Perry.\"\n\n\"But, my dear sir, the difference of the journey;--only consider how\ngreat it would have been.--An hundred miles, perhaps, instead of forty.\"\n\n\"Ah! my dear, as Perry says, where health is at stake, nothing else\nshould be considered; and if one is to travel, there is not much\nto chuse between forty miles and an hundred.--Better not move at all,\nbetter stay in London altogether than travel forty miles to get\ninto a worse air.  This is just what Perry said.  It seemed to him\na very ill-judged measure.\"\n\nEmma's attempts to stop her father had been vain; and when he\nhad reached such a point as this, she could not wonder at her\nbrother-in-law's breaking out.\n\n\"Mr. Perry,\" said he, in a voice of very strong displeasure,\n\"would do as well to keep his opinion till it is asked for.\nWhy does he make it any business of his, to wonder at what I do?--\nat my taking my family to one part of the coast or another?--I may\nbe allowed, I hope, the use of my judgment as well as Mr. Perry.--\nI want his directions no more than his drugs.\"  He paused--\nand growing cooler in a moment, added, with only sarcastic dryness,\n\"If Mr. Perry can tell me how to convey a wife and five children\na distance of an hundred and thirty miles with no greater expense\nor inconvenience than a distance of forty, I should be as willing to\nprefer Cromer to South End as he could himself.\"\n\n\"True, true,\" cried Mr. Knightley, with most ready interposition--\n\"very true.  That's a consideration indeed.--But John, as to what I\nwas telling you of my idea of moving the path to Langham, of turning\nit more to the right that it may not cut through the home meadows,\nI cannot conceive any difficulty.  I should not attempt it,\nif it were to be the means of inconvenience to the Highbury people,\nbut if you call to mind exactly the present line of the path. . . .\nThe only way of proving it, however, will be to turn to our maps.\nI shall see you at the Abbey to-morrow morning I hope, and then we\nwill look them over, and you shall give me your opinion.\"\n\nMr. Woodhouse was rather agitated by such harsh reflections on\nhis friend Perry, to whom he had, in fact, though unconsciously,\nbeen attributing many of his own feelings and expressions;--\nbut the soothing attentions of his daughters gradually removed\nthe present evil, and the immediate alertness of one brother,\nand better recollections of the other, prevented any renewal of it.\n\n\n\nCHAPTER XIII\n\n\nThere could hardly be a happier creature in the world than Mrs. John\nKnightley, in this short visit to Hartfield, going about every morning\namong her old acquaintance with her five children, and talking\nover what she had done every evening with her father and sister.\nShe had nothing to wish otherwise, but that the days did not pass\nso swiftly.  It was a delightful visit;--perfect, in being much too short.\n\nIn general their evenings were less engaged with friends than\ntheir mornings; but one complete dinner engagement, and out\nof the house too, there was no avoiding, though at Christmas.\nMr. Weston would take no denial; they must all dine at Randalls\none day;--even Mr. Woodhouse was persuaded to think it a possible\nthing in preference to a division of the party.\n\nHow they were all to be conveyed, he would have made a difficulty\nif he could, but as his son and daughter's carriage and horses\nwere actually at Hartfield, he was not able to make more than\na simple question on that head; it hardly amounted to a doubt;\nnor did it occupy Emma long to convince him that they might in one\nof the carriages find room for Harriet also.\n\nHarriet, Mr. Elton, and Mr. Knightley, their own especial set,\nwere the only persons invited to meet them;--the hours were to be early,\nas well as the numbers few; Mr. Woodhouse's habits and inclination\nbeing consulted in every thing.\n\nThe evening before this great event (for it was a very great event\nthat Mr. Woodhouse should dine out, on the 24th of December) had been\nspent by Harriet at Hartfield, and she had gone home so much indisposed\nwith a cold, that, but for her own earnest wish of being nursed\nby Mrs. Goddard, Emma could not have allowed her to leave the house.\nEmma called on her the next day, and found her doom already signed\nwith regard to Randalls.  She was very feverish and had a bad\nsore throat:  Mrs. Goddard was full of care and affection, Mr. Perry\nwas talked of, and Harriet herself was too ill and low to resist\nthe authority which excluded her from this delightful engagement,\nthough she could not speak of her loss without many tears.\n\nEmma sat with her as long as she could, to attend her in Mrs. Goddard's\nunavoidable absences, and raise her spirits by representing how much\nMr. Elton's would be depressed when he knew her state; and left her\nat last tolerably comfortable, in the sweet dependence of his having\na most comfortless visit, and of their all missing her very much.\nShe had not advanced many yards from Mrs. Goddard's door, when she\nwas met by Mr. Elton himself, evidently coming towards it, and as\nthey walked on slowly together in conversation about the invalid--\nof whom he, on the rumour of considerable illness, had been going\nto inquire, that he might carry some report of her to Hartfield--\nthey were overtaken by Mr. John Knightley returning from the\ndaily visit to Donwell, with his two eldest boys, whose healthy,\nglowing faces shewed all the benefit of a country run, and seemed\nto ensure a quick despatch of the roast mutton and rice pudding they\nwere hastening home for.  They joined company and proceeded together.\nEmma was just describing the nature of her friend's complaint;--\n\"a throat very much inflamed, with a great deal of heat about her,\na quick, low pulse, &c.  and she was sorry to find from Mrs. Goddard\nthat Harriet was liable to very bad sore-throats, and had often\nalarmed her with them.\"  Mr. Elton looked all alarm on the occasion,\nas he exclaimed,\n\n\"A sore-throat!--I hope not infectious.  I hope not of a putrid\ninfectious sort.  Has Perry seen her?  Indeed you should take care\nof yourself as well as of your friend.  Let me entreat you to run\nno risks.  Why does not Perry see her?\"\n\nEmma, who was not really at all frightened herself, tranquillised this\nexcess of apprehension by assurances of Mrs. Goddard's experience\nand care; but as there must still remain a degree of uneasiness\nwhich she could not wish to reason away, which she would rather\nfeed and assist than not, she added soon afterwards--as if quite\nanother subject,\n\n\"It is so cold, so very cold--and looks and feels so very much\nlike snow, that if it were to any other place or with any other party,\nI should really try not to go out to-day--and dissuade my father\nfrom venturing; but as he has made up his mind, and does not seem\nto feel the cold himself, I do not like to interfere, as I know it\nwould be so great a disappointment to Mr. and Mrs. Weston.  But, upon\nmy word, Mr. Elton, in your case, I should certainly excuse myself.\nYou appear to me a little hoarse already, and when you consider\nwhat demand of voice and what fatigues to-morrow will bring,\nI think it would be no more than common prudence to stay at home\nand take care of yourself to-night.\"\n\nMr. Elton looked as if he did not very well know what answer to make;\nwhich was exactly the case; for though very much gratified by the kind\ncare of such a fair lady, and not liking to resist any advice of\nher's, he had not really the least inclination to give up the visit;--\nbut Emma, too eager and busy in her own previous conceptions\nand views to hear him impartially, or see him with clear vision,\nwas very well satisfied with his muttering acknowledgment of its\nbeing \"very cold, certainly very cold,\" and walked on, rejoicing in\nhaving extricated him from Randalls, and secured him the power\nof sending to inquire after Harriet every hour of the evening.\n\n\"You do quite right,\" said she;--\"we will make your apologies\nto Mr. and Mrs. Weston.\"\n\nBut hardly had she so spoken, when she found her brother was civilly\noffering a seat in his carriage, if the weather were Mr. Elton's\nonly objection, and Mr. Elton actually accepting the offer with much\nprompt satisfaction.  It was a done thing; Mr. Elton was to go,\nand never had his broad handsome face expressed more pleasure than\nat this moment; never had his smile been stronger, nor his eyes\nmore exulting than when he next looked at her.\n\n\"Well,\" said she to herself, \"this is most strange!--After I\nhad got him off so well, to chuse to go into company, and leave\nHarriet ill behind!--Most strange indeed!--But there is, I believe,\nin many men, especially single men, such an inclination--\nsuch a passion for dining out--a dinner engagement is so high in\nthe class of their pleasures, their employments, their dignities,\nalmost their duties, that any thing gives way to it--and this must\nbe the case with Mr. Elton; a most valuable, amiable, pleasing young\nman undoubtedly, and very much in love with Harriet; but still,\nhe cannot refuse an invitation, he must dine out wherever he is asked.\nWhat a strange thing love is! he can see ready wit in Harriet,\nbut will not dine alone for her.\"\n\nSoon afterwards Mr. Elton quitted them, and she could not but do him\nthe justice of feeling that there was a great deal of sentiment\nin his manner of naming Harriet at parting; in the tone of his\nvoice while assuring her that he should call at Mrs. Goddard's\nfor news of her fair friend, the last thing before he prepared\nfor the happiness of meeting her again, when he hoped to be\nable to give a better report; and he sighed and smiled himself\noff in a way that left the balance of approbation much in his favour.\n\nAfter a few minutes of entire silence between them, John Knightley\nbegan with--\n\n\"I never in my life saw a man more intent on being agreeable than\nMr. Elton.  It is downright labour to him where ladies are concerned.\nWith men he can be rational and unaffected, but when he has ladies\nto please, every feature works.\"\n\n\"Mr. Elton's manners are not perfect,\" replied Emma; \"but where there\nis a wish to please, one ought to overlook, and one does overlook\na great deal.  Where a man does his best with only moderate powers,\nhe will have the advantage over negligent superiority.  There is\nsuch perfect good-temper and good-will in Mr. Elton as one cannot\nbut value.\"\n\n\"Yes,\" said Mr. John Knightley presently, with some slyness,\n\"he seems to have a great deal of good-will towards you.\"\n\n\"Me!\" she replied with a smile of astonishment, \"are you imagining\nme to be Mr. Elton's object?\"\n\n\"Such an imagination has crossed me, I own, Emma; and if it never\noccurred to you before, you may as well take it into consideration now.\"\n\n\"Mr. Elton in love with me!--What an idea!\"\n\n\"I do not say it is so; but you will do well to consider whether\nit is so or not, and to regulate your behaviour accordingly.\nI think your manners to him encouraging.  I speak as a friend,\nEmma.  You had better look about you, and ascertain what you do,\nand what you mean to do.\"\n\n\"I thank you; but I assure you you are quite mistaken.  Mr. Elton\nand I are very good friends, and nothing more;\" and she walked on,\namusing herself in the consideration of the blunders which often\narise from a partial knowledge of circumstances, of the mistakes\nwhich people of high pretensions to judgment are for ever falling into;\nand not very well pleased with her brother for imagining her blind\nand ignorant, and in want of counsel.  He said no more.\n\nMr. Woodhouse had so completely made up his mind to the visit,\nthat in spite of the increasing coldness, he seemed to have no idea\nof shrinking from it, and set forward at last most punctually\nwith his eldest daughter in his own carriage, with less apparent\nconsciousness of the weather than either of the others; too full\nof the wonder of his own going, and the pleasure it was to afford at\nRandalls to see that it was cold, and too well wrapt up to feel it.\nThe cold, however, was severe; and by the time the second carriage\nwas in motion, a few flakes of snow were finding their way down,\nand the sky had the appearance of being so overcharged as to want only\na milder air to produce a very white world in a very short time.\n\nEmma soon saw that her companion was not in the happiest humour.\nThe preparing and the going abroad in such weather, with the sacrifice\nof his children after dinner, were evils, were disagreeables at least,\nwhich Mr. John Knightley did not by any means like; he anticipated\nnothing in the visit that could be at all worth the purchase;\nand the whole of their drive to the vicarage was spent by him in\nexpressing his discontent.\n\n\"A man,\" said he, \"must have a very good opinion of himself when\nhe asks people to leave their own fireside, and encounter such\na day as this, for the sake of coming to see him.  He must think\nhimself a most agreeable fellow; I could not do such a thing.\nIt is the greatest absurdity--Actually snowing at this moment!--\nThe folly of not allowing people to be comfortable at home--and the\nfolly of people's not staying comfortably at home when they can!\nIf we were obliged to go out such an evening as this, by any call of\nduty or business, what a hardship we should deem it;--and here are we,\nprobably with rather thinner clothing than usual, setting forward\nvoluntarily, without excuse, in defiance of the voice of nature,\nwhich tells man, in every thing given to his view or his feelings,\nto stay at home himself, and keep all under shelter that he can;--\nhere are we setting forward to spend five dull hours in another\nman's house, with nothing to say or to hear that was not said\nand heard yesterday, and may not be said and heard again to-morrow.\nGoing in dismal weather, to return probably in worse;--four horses\nand four servants taken out for nothing but to convey five idle,\nshivering creatures into colder rooms and worse company than they\nmight have had at home.\"\n\nEmma did not find herself equal to give the pleased assent, which no doubt\nhe was in the habit of receiving, to emulate the \"Very true, my love,\"\nwhich must have been usually administered by his travelling companion;\nbut she had resolution enough to refrain from making any answer\nat all.  She could not be complying, she dreaded being quarrelsome;\nher heroism reached only to silence.  She allowed him to talk,\nand arranged the glasses, and wrapped herself up, without opening\nher lips.\n\nThey arrived, the carriage turned, the step was let down,\nand Mr. Elton, spruce, black, and smiling, was with them instantly.\nEmma thought with pleasure of some change of subject.  Mr. Elton\nwas all obligation and cheerfulness; he was so very cheerful\nin his civilities indeed, that she began to think he must have\nreceived a different account of Harriet from what had reached her.\nShe had sent while dressing, and the answer had been, \"Much the same--\nnot better.\"\n\n\"_My_ report from Mrs. Goddard's,\" said she presently, \"was not\nso pleasant as I had hoped--`Not better' was _my_ answer.\"\n\nHis face lengthened immediately; and his voice was the voice\nof sentiment as he answered.\n\n\"Oh! no--I am grieved to find--I was on the point of telling you that\nwhen I called at Mrs. Goddard's door, which I did the very last thing\nbefore I returned to dress, I was told that Miss Smith was not better,\nby no means better, rather worse.  Very much grieved and concerned--\nI had flattered myself that she must be better after such a cordial\nas I knew had been given her in the morning.\"\n\nEmma smiled and answered--\"My visit was of use to the nervous part\nof her complaint, I hope; but not even I can charm away a sore throat;\nit is a most severe cold indeed.  Mr. Perry has been with her,\nas you probably heard.\"\n\n\"Yes--I imagined--that is--I did not--\"\n\n\"He has been used to her in these complaints, and I hope to-morrow\nmorning will bring us both a more comfortable report.  But it is\nimpossible not to feel uneasiness.  Such a sad loss to our party to-day!\"\n\n\"Dreadful!--Exactly so, indeed.--She will be missed every moment.\"\n\nThis was very proper; the sigh which accompanied it was really estimable;\nbut it should have lasted longer.  Emma was rather in dismay when\nonly half a minute afterwards he began to speak of other things,\nand in a voice of the greatest alacrity and enjoyment.\n\n\"What an excellent device,\" said he, \"the use of a sheepskin\nfor carriages.  How very comfortable they make it;--impossible to\nfeel cold with such precautions.  The contrivances of modern days\nindeed have rendered a gentleman's carriage perfectly complete.\nOne is so fenced and guarded from the weather, that not a breath\nof air can find its way unpermitted.  Weather becomes absolutely\nof no consequence.  It is a very cold afternoon--but in this carriage\nwe know nothing of the matter.--Ha! snows a little I see.\"\n\n\"Yes,\" said John Knightley, \"and I think we shall have a good deal\nof it.\"\n\n\"Christmas weather,\" observed Mr. Elton.  \"Quite seasonable;\nand extremely fortunate we may think ourselves that it did not\nbegin yesterday, and prevent this day's party, which it might very\npossibly have done, for Mr. Woodhouse would hardly have ventured had\nthere been much snow on the ground; but now it is of no consequence.\nThis is quite the season indeed for friendly meetings.  At Christmas\nevery body invites their friends about them, and people think little\nof even the worst weather.  I was snowed up at a friend's house once\nfor a week.  Nothing could be pleasanter.  I went for only one night,\nand could not get away till that very day se'nnight.\"\n\nMr. John Knightley looked as if he did not comprehend the pleasure,\nbut said only, coolly,\n\n\"I cannot wish to be snowed up a week at Randalls.\"\n\nAt another time Emma might have been amused, but she was too\nmuch astonished now at Mr. Elton's spirits for other feelings.\nHarriet seemed quite forgotten in the expectation of a pleasant party.\n\n\"We are sure of excellent fires,\" continued he, \"and every thing\nin the greatest comfort.  Charming people, Mr. and Mrs. Weston;--\nMrs. Weston indeed is much beyond praise, and he is exactly\nwhat one values, so hospitable, and so fond of society;--\nit will be a small party, but where small parties are select,\nthey are perhaps the most agreeable of any.  Mr. Weston's dining-room\ndoes not accommodate more than ten comfortably; and for my part,\nI would rather, under such circumstances, fall short by two than\nexceed by two.  I think you will agree with me, (turning with a soft\nair to Emma,) I think I shall certainly have your approbation,\nthough Mr. Knightley perhaps, from being used to the large parties\nof London, may not quite enter into our feelings.\"\n\n\"I know nothing of the large parties of London, sir--I never dine\nwith any body.\"\n\n\"Indeed! (in a tone of wonder and pity,) I had no idea that the\nlaw had been so great a slavery.  Well, sir, the time must come\nwhen you will be paid for all this, when you will have little\nlabour and great enjoyment.\"\n\n\"My first enjoyment,\" replied John Knightley, as they passed through\nthe sweep-gate, \"will be to find myself safe at Hartfield again.\"\n\n\n\nCHAPTER XIV\n\n\nSome change of countenance was necessary for each gentleman\nas they walked into Mrs. Weston's drawing-room;--Mr. Elton must\ncompose his joyous looks, and Mr. John Knightley disperse his\nill-humour. Mr. Elton must smile less, and Mr. John Knightley more,\nto fit them for the place.--Emma only might be as nature prompted,\nand shew herself just as happy as she was.  To her it was real\nenjoyment to be with the Westons.  Mr. Weston was a great favourite,\nand there was not a creature in the world to whom she spoke with\nsuch unreserve, as to his wife; not any one, to whom she related\nwith such conviction of being listened to and understood, of being\nalways interesting and always intelligible, the little affairs,\narrangements, perplexities, and pleasures of her father and herself.\nShe could tell nothing of Hartfield, in which Mrs. Weston had not\na lively concern; and half an hour's uninterrupted communication\nof all those little matters on which the daily happiness of private\nlife depends, was one of the first gratifications of each.\n\nThis was a pleasure which perhaps the whole day's visit might\nnot afford, which certainly did not belong to the present half-hour;\nbut the very sight of Mrs. Weston, her smile, her touch, her voice\nwas grateful to Emma, and she determined to think as little as\npossible of Mr. Elton's oddities, or of any thing else unpleasant,\nand enjoy all that was enjoyable to the utmost.\n\nThe misfortune of Harriet's cold had been pretty well gone through\nbefore her arrival.  Mr. Woodhouse had been safely seated long\nenough to give the history of it, besides all the history of his own\nand Isabella's coming, and of Emma's being to follow, and had indeed\njust got to the end of his satisfaction that James should come\nand see his daughter, when the others appeared, and Mrs. Weston,\nwho had been almost wholly engrossed by her attentions to him,\nwas able to turn away and welcome her dear Emma.\n\nEmma's project of forgetting Mr. Elton for a while made her rather\nsorry to find, when they had all taken their places, that he was\nclose to her.  The difficulty was great of driving his strange\ninsensibility towards Harriet, from her mind, while he not only sat\nat her elbow, but was continually obtruding his happy countenance\non her notice, and solicitously addressing her upon every occasion.\nInstead of forgetting him, his behaviour was such that she could\nnot avoid the internal suggestion of \"Can it really be as my brother\nimagined? can it be possible for this man to be beginning to transfer\nhis affections from Harriet to me?--Absurd and insufferable!\"--\nYet he would be so anxious for her being perfectly warm, would be\nso interested about her father, and so delighted with Mrs. Weston;\nand at last would begin admiring her drawings with so much zeal\nand so little knowledge as seemed terribly like a would-be lover,\nand made it some effort with her to preserve her good manners.\nFor her own sake she could not be rude; and for Harriet's, in the hope\nthat all would yet turn out right, she was even positively civil;\nbut it was an effort; especially as something was going on amongst\nthe others, in the most overpowering period of Mr. Elton's nonsense,\nwhich she particularly wished to listen to.  She heard enough\nto know that Mr. Weston was giving some information about his son;\nshe heard the words \"my son,\" and \"Frank,\" and \"my son,\"\nrepeated several times over; and, from a few other half-syllables\nvery much suspected that he was announcing an early visit from\nhis son; but before she could quiet Mr. Elton, the subject was\nso completely past that any reviving question from her would have\nbeen awkward.\n\nNow, it so happened that in spite of Emma's resolution of never marrying,\nthere was something in the name, in the idea of Mr. Frank Churchill,\nwhich always interested her.  She had frequently thought--especially since\nhis father's marriage with Miss Taylor--that if she _were_ to marry,\nhe was the very person to suit her in age, character and condition.\nHe seemed by this connexion between the families, quite to belong to her.\nShe could not but suppose it to be a match that every body who knew\nthem must think of.  That Mr. and Mrs. Weston did think of it, she was\nvery strongly persuaded; and though not meaning to be induced by him,\nor by any body else, to give up a situation which she believed more\nreplete with good than any she could change it for, she had a great\ncuriosity to see him, a decided intention of finding him pleasant,\nof being liked by him to a certain degree, and a sort of pleasure\nin the idea of their being coupled in their friends' imaginations.\n\nWith such sensations, Mr. Elton's civilities were dreadfully ill-timed;\nbut she had the comfort of appearing very polite, while feeling\nvery cross--and of thinking that the rest of the visit could not\npossibly pass without bringing forward the same information again,\nor the substance of it, from the open-hearted Mr. Weston.--So it proved;--\nfor when happily released from Mr. Elton, and seated by Mr. Weston,\nat dinner, he made use of the very first interval in the cares\nof hospitality, the very first leisure from the saddle of mutton,\nto say to her,\n\n\"We want only two more to be just the right number.  I should\nlike to see two more here,--your pretty little friend, Miss Smith,\nand my son--and then I should say we were quite complete.\nI believe you did not hear me telling the others in the drawing-room\nthat we are expecting Frank.  I had a letter from him this morning,\nand he will be with us within a fortnight.\"\n\nEmma spoke with a very proper degree of pleasure; and fully assented\nto his proposition of Mr. Frank Churchill and Miss Smith making\ntheir party quite complete.\n\n\"He has been wanting to come to us,\" continued Mr. Weston,\n\"ever since September:  every letter has been full of it;\nbut he cannot command his own time.  He has those to please\nwho must be pleased, and who (between ourselves) are sometimes\nto be pleased only by a good many sacrifices.  But now\nI have no doubt of seeing him here about the second week in January.\"\n\n\"What a very great pleasure it will be to you! and Mrs. Weston\nis so anxious to be acquainted with him, that she must be almost\nas happy as yourself.\"\n\n\"Yes, she would be, but that she thinks there will be another\nput-off. She does not depend upon his coming so much as I do:\nbut she does not know the parties so well as I do.  The case,\nyou see, is--(but this is quite between ourselves:  I did not mention\na syllable of it in the other room.  There are secrets in all families,\nyou know)--The case is, that a party of friends are invited to pay\na visit at Enscombe in January; and that Frank's coming depends upon\ntheir being put off.  If they are not put off, he cannot stir.\nBut I know they will, because it is a family that a certain lady,\nof some consequence, at Enscombe, has a particular dislike to:\nand though it is thought necessary to invite them once in two or\nthree years, they always are put off when it comes to the point.\nI have not the smallest doubt of the issue.  I am as confident\nof seeing Frank here before the middle of January, as I am\nof being here myself:  but your good friend there (nodding\ntowards the upper end of the table) has so few vagaries herself,\nand has been so little used to them at Hartfield, that she cannot\ncalculate on their effects, as I have been long in the practice\nof doing.\"\n\n\"I am sorry there should be any thing like doubt in the case,\"\nreplied Emma; \"but am disposed to side with you, Mr. Weston.  If you\nthink he will come, I shall think so too; for you know Enscombe.\"\n\n\"Yes--I have some right to that knowledge; though I have never been\nat the place in my life.--She is an odd woman!--But I never allow\nmyself to speak ill of her, on Frank's account; for I do believe\nher to be very fond of him.  I used to think she was not capable\nof being fond of any body, except herself:  but she has always been\nkind to him (in her way--allowing for little whims and caprices,\nand expecting every thing to be as she likes). And it is no small credit,\nin my opinion, to him, that he should excite such an affection;\nfor, though I would not say it to any body else, she has no more\nheart than a stone to people in general; and the devil of a temper.\"\n\nEmma liked the subject so well, that she began upon it, to Mrs. Weston,\nvery soon after their moving into the drawing-room: wishing her joy--\nyet observing, that she knew the first meeting must be rather alarming.--\nMrs. Weston agreed to it; but added, that she should be very\nglad to be secure of undergoing the anxiety of a first meeting\nat the time talked of:  \"for I cannot depend upon his coming.\nI cannot be so sanguine as Mr. Weston.  I am very much afraid\nthat it will all end in nothing.  Mr. Weston, I dare say, has been\ntelling you exactly how the matter stands?\"\n\n\"Yes--it seems to depend upon nothing but the ill-humour\nof Mrs. Churchill, which I imagine to be the most certain\nthing in the world.\"\n\n\"My Emma!\" replied Mrs. Weston, smiling, \"what is the certainty\nof caprice?\"  Then turning to Isabella, who had not been\nattending before--\"You must know, my dear Mrs. Knightley,\nthat we are by no means so sure of seeing Mr. Frank Churchill,\nin my opinion, as his father thinks.  It depends entirely upon\nhis aunt's spirits and pleasure; in short, upon her temper.\nTo you--to my two daughters--I may venture on the truth.\nMrs. Churchill rules at Enscombe, and is a very odd-tempered woman;\nand his coming now, depends upon her being willing to spare him.\"\n\n\"Oh, Mrs. Churchill; every body knows Mrs. Churchill,\"\nreplied Isabella:  \"and I am sure I never think of that poor young\nman without the greatest compassion.  To be constantly living\nwith an ill-tempered person, must be dreadful.  It is what we\nhappily have never known any thing of; but it must be a life\nof misery.  What a blessing, that she never had any children!\nPoor little creatures, how unhappy she would have made them!\"\n\nEmma wished she had been alone with Mrs. Weston.  She should then have\nheard more:  Mrs. Weston would speak to her, with a degree of unreserve\nwhich she would not hazard with Isabella; and, she really believed,\nwould scarcely try to conceal any thing relative to the Churchills\nfrom her, excepting those views on the young man, of which her own\nimagination had already given her such instinctive knowledge.\nBut at present there was nothing more to be said.  Mr. Woodhouse\nvery soon followed them into the drawing-room. To be sitting\nlong after dinner, was a confinement that he could not endure.\nNeither wine nor conversation was any thing to him; and gladly did\nhe move to those with whom he was always comfortable.\n\nWhile he talked to Isabella, however, Emma found an opportunity\nof saying,\n\n\"And so you do not consider this visit from your son as by any\nmeans certain.  I am sorry for it.  The introduction must be unpleasant,\nwhenever it takes place; and the sooner it could be over, the better.\"\n\n\"Yes; and every delay makes one more apprehensive of other delays.\nEven if this family, the Braithwaites, are put off, I am still\nafraid that some excuse may be found for disappointing us.\nI cannot bear to imagine any reluctance on his side; but I am sure\nthere is a great wish on the Churchills' to keep him to themselves.\nThere is jealousy.  They are jealous even of his regard for his father.\nIn short, I can feel no dependence on his coming, and I wish Mr. Weston\nwere less sanguine.\"\n\n\"He ought to come,\" said Emma.  \"If he could stay only a couple\nof days, he ought to come; and one can hardly conceive a young man's\nnot having it in his power to do as much as that.  A young _woman_,\nif she fall into bad hands, may be teazed, and kept at a distance\nfrom those she wants to be with; but one cannot comprehend a young\n_man_'s being under such restraint, as not to be able to spend a week\nwith his father, if he likes it.\"\n\n\"One ought to be at Enscombe, and know the ways of the family,\nbefore one decides upon what he can do,\" replied Mrs. Weston.\n\"One ought to use the same caution, perhaps, in judging of the\nconduct of any one individual of any one family; but Enscombe,\nI believe, certainly must not be judged by general rules:\n_she_ is so very unreasonable; and every thing gives way to her.\"\n\n\"But she is so fond of the nephew:  he is so very great a favourite.\nNow, according to my idea of Mrs. Churchill, it would be most natural,\nthat while she makes no sacrifice for the comfort of the husband,\nto whom she owes every thing, while she exercises incessant caprice\ntowards _him_, she should frequently be governed by the nephew,\nto whom she owes nothing at all.\"\n\n\"My dearest Emma, do not pretend, with your sweet temper,\nto understand a bad one, or to lay down rules for it:  you must\nlet it go its own way.  I have no doubt of his having, at times,\nconsiderable influence; but it may be perfectly impossible for him\nto know beforehand _when_ it will be.\"\n\nEmma listened, and then coolly said, \"I shall not be satisfied,\nunless he comes.\"\n\n\"He may have a great deal of influence on some points,\"\ncontinued Mrs. Weston, \"and on others, very little:  and among those,\non which she is beyond his reach, it is but too likely, may be\nthis very circumstance of his coming away from them to visit us.\"\n\n\n\nCHAPTER XV\n\n\nMr. Woodhouse was soon ready for his tea; and when he had drank his\ntea he was quite ready to go home; and it was as much as his three\ncompanions could do, to entertain away his notice of the lateness\nof the hour, before the other gentlemen appeared.  Mr. Weston was\nchatty and convivial, and no friend to early separations of any sort;\nbut at last the drawing-room party did receive an augmentation.\nMr. Elton, in very good spirits, was one of the first to walk in.\nMrs. Weston and Emma were sitting together on a sofa.  He joined\nthem immediately, and, with scarcely an invitation, seated himself\nbetween them.\n\nEmma, in good spirits too, from the amusement afforded her mind\nby the expectation of Mr. Frank Churchill, was willing to forget\nhis late improprieties, and be as well satisfied with him as before,\nand on his making Harriet his very first subject, was ready to listen\nwith most friendly smiles.\n\nHe professed himself extremely anxious about her fair friend--\nher fair, lovely, amiable friend.  \"Did she know?--had she\nheard any thing about her, since their being at Randalls?--\nhe felt much anxiety--he must confess that the nature of her\ncomplaint alarmed him considerably.\"  And in this style he talked\non for some time very properly, not much attending to any answer,\nbut altogether sufficiently awake to the terror of a bad sore throat;\nand Emma was quite in charity with him.\n\nBut at last there seemed a perverse turn; it seemed all at once as if\nhe were more afraid of its being a bad sore throat on her account,\nthan on Harriet's--more anxious that she should escape the infection,\nthan that there should be no infection in the complaint.  He began\nwith great earnestness to entreat her to refrain from visiting\nthe sick-chamber again, for the present--to entreat her to _promise_\n_him_ not to venture into such hazard till he had seen Mr. Perry\nand learnt his opinion; and though she tried to laugh it off\nand bring the subject back into its proper course, there was no\nputting an end to his extreme solicitude about her.  She was vexed.\nIt did appear--there was no concealing it--exactly like the pretence\nof being in love with her, instead of Harriet; an inconstancy,\nif real, the most contemptible and abominable! and she had difficulty\nin behaving with temper.  He turned to Mrs. Weston to implore\nher assistance, \"Would not she give him her support?--would not she\nadd her persuasions to his, to induce Miss Woodhouse not to go\nto Mrs. Goddard's till it were certain that Miss Smith's disorder\nhad no infection?  He could not be satisfied without a promise--\nwould not she give him her influence in procuring it?\"\n\n\"So scrupulous for others,\" he continued, \"and yet so careless\nfor herself!  She wanted me to nurse my cold by staying at home to-day,\nand yet will not promise to avoid the danger of catching an ulcerated\nsore throat herself.  Is this fair, Mrs. Weston?--Judge between us.\nHave not I some right to complain?  I am sure of your kind support\nand aid.\"\n\nEmma saw Mrs. Weston's surprize, and felt that it must be great,\nat an address which, in words and manner, was assuming to himself\nthe right of first interest in her; and as for herself, she was\ntoo much provoked and offended to have the power of directly\nsaying any thing to the purpose.  She could only give him a look;\nbut it was such a look as she thought must restore him to his senses,\nand then left the sofa, removing to a seat by her sister, and giving\nher all her attention.\n\nShe had not time to know how Mr. Elton took the reproof, so rapidly\ndid another subject succeed; for Mr. John Knightley now came\ninto the room from examining the weather, and opened on them\nall with the information of the ground being covered with snow,\nand of its still snowing fast, with a strong drifting wind;\nconcluding with these words to Mr. Woodhouse:\n\n\"This will prove a spirited beginning of your winter engagements,\nsir.  Something new for your coachman and horses to be making\ntheir way through a storm of snow.\"\n\nPoor Mr. Woodhouse was silent from consternation; but every body else\nhad something to say; every body was either surprized or not surprized,\nand had some question to ask, or some comfort to offer.  Mrs. Weston\nand Emma tried earnestly to cheer him and turn his attention\nfrom his son-in-law, who was pursuing his triumph rather unfeelingly.\n\n\"I admired your resolution very much, sir,\" said he, \"in venturing\nout in such weather, for of course you saw there would be snow\nvery soon.  Every body must have seen the snow coming on.\nI admired your spirit; and I dare say we shall get home very well.\nAnother hour or two's snow can hardly make the road impassable;\nand we are two carriages; if one is blown over in the bleak part\nof the common field there will be the other at hand.  I dare say we\nshall be all safe at Hartfield before midnight.\"\n\nMr. Weston, with triumph of a different sort, was confessing that he\nhad known it to be snowing some time, but had not said a word,\nlest it should make Mr. Woodhouse uncomfortable, and be an excuse\nfor his hurrying away.  As to there being any quantity of snow fallen\nor likely to fall to impede their return, that was a mere joke;\nhe was afraid they would find no difficulty.  He wished the road might\nbe impassable, that he might be able to keep them all at Randalls;\nand with the utmost good-will was sure that accommodation might\nbe found for every body, calling on his wife to agree with him,\nthat with a little contrivance, every body might be lodged,\nwhich she hardly knew how to do, from the consciousness of there\nbeing but two spare rooms in the house.\n\n\"What is to be done, my dear Emma?--what is to be done?\"\nwas Mr. Woodhouse's first exclamation, and all that he could say\nfor some time.  To her he looked for comfort; and her assurances\nof safety, her representation of the excellence of the horses,\nand of James, and of their having so many friends about them,\nrevived him a little.\n\nHis eldest daughter's alarm was equal to his own.  The horror of\nbeing blocked up at Randalls, while her children were at Hartfield,\nwas full in her imagination; and fancying the road to be now just\npassable for adventurous people, but in a state that admitted no delay,\nshe was eager to have it settled, that her father and Emma should remain\nat Randalls, while she and her husband set forward instantly through\nall the possible accumulations of drifted snow that might impede them.\n\n\"You had better order the carriage directly, my love,\" said she;\n\"I dare say we shall be able to get along, if we set off directly;\nand if we do come to any thing very bad, I can get out and walk.\nI am not at all afraid.  I should not mind walking half the way.\nI could change my shoes, you know, the moment I got home; and it is not\nthe sort of thing that gives me cold.\"\n\n\"Indeed!\" replied he.  \"Then, my dear Isabella, it is the most\nextraordinary sort of thing in the world, for in general every\nthing does give you cold.  Walk home!--you are prettily shod\nfor walking home, I dare say.  It will be bad enough for the horses.\"\n\nIsabella turned to Mrs. Weston for her approbation of the plan.\nMrs. Weston could only approve.  Isabella then went to Emma;\nbut Emma could not so entirely give up the hope of their being\nall able to get away; and they were still discussing the point,\nwhen Mr. Knightley, who had left the room immediately after his\nbrother's first report of the snow, came back again, and told them\nthat he had been out of doors to examine, and could answer for there\nnot being the smallest difficulty in their getting home, whenever they\nliked it, either now or an hour hence.  He had gone beyond the sweep--\nsome way along the Highbury road--the snow was nowhere above half\nan inch deep--in many places hardly enough to whiten the ground;\na very few flakes were falling at present, but the clouds were parting,\nand there was every appearance of its being soon over.  He had seen\nthe coachmen, and they both agreed with him in there being nothing\nto apprehend.\n\nTo Isabella, the relief of such tidings was very great, and they\nwere scarcely less acceptable to Emma on her father's account,\nwho was immediately set as much at ease on the subject as his nervous\nconstitution allowed; but the alarm that had been raised could not\nbe appeased so as to admit of any comfort for him while he continued\nat Randalls.  He was satisfied of there being no present danger in\nreturning home, but no assurances could convince him that it was safe\nto stay; and while the others were variously urging and recommending,\nMr. Knightley and Emma settled it in a few brief sentences:  thus--\n\n\"Your father will not be easy; why do not you go?\"\n\n\"I am ready, if the others are.\"\n\n\"Shall I ring the bell?\"\n\n\"Yes, do.\"\n\nAnd the bell was rung, and the carriages spoken for.  A few\nminutes more, and Emma hoped to see one troublesome companion\ndeposited in his own house, to get sober and cool, and the other\nrecover his temper and happiness when this visit of hardship were over.\n\nThe carriage came:  and Mr. Woodhouse, always the first object on\nsuch occasions, was carefully attended to his own by Mr. Knightley\nand Mr. Weston; but not all that either could say could prevent some\nrenewal of alarm at the sight of the snow which had actually fallen,\nand the discovery of a much darker night than he had been prepared for.\n\"He was afraid they should have a very bad drive.  He was afraid\npoor Isabella would not like it.  And there would be poor Emma\nin the carriage behind.  He did not know what they had best do.\nThey must keep as much together as they could;\" and James was talked to,\nand given a charge to go very slow and wait for the other carriage.\n\nIsabella stept in after her father; John Knightley, forgetting that he\ndid not belong to their party, stept in after his wife very naturally;\nso that Emma found, on being escorted and followed into the second\ncarriage by Mr. Elton, that the door was to be lawfully shut on them,\nand that they were to have a tete-a-tete drive.  It would not have been\nthe awkwardness of a moment, it would have been rather a pleasure,\nprevious to the suspicions of this very day; she could have talked\nto him of Harriet, and the three-quarters of a mile would have\nseemed but one.  But now, she would rather it had not happened.\nShe believed he had been drinking too much of Mr. Weston's good wine,\nand felt sure that he would want to be talking nonsense.\n\nTo restrain him as much as might be, by her own manners, she was\nimmediately preparing to speak with exquisite calmness and gravity\nof the weather and the night; but scarcely had she begun, scarcely had\nthey passed the sweep-gate and joined the other carriage, than she\nfound her subject cut up--her hand seized--her attention demanded,\nand Mr. Elton actually making violent love to her:  availing himself\nof the precious opportunity, declaring sentiments which must be already\nwell known, hoping--fearing--adoring--ready to die if she refused him;\nbut flattering himself that his ardent attachment and unequalled\nlove and unexampled passion could not fail of having some effect,\nand in short, very much resolved on being seriously accepted as soon\nas possible.  It really was so.  Without scruple--without apology--\nwithout much apparent diffidence, Mr. Elton, the lover of Harriet,\nwas professing himself _her_ lover.  She tried to stop him; but vainly;\nhe would go on, and say it all.  Angry as she was, the thought of\nthe moment made her resolve to restrain herself when she did speak.\nShe felt that half this folly must be drunkenness, and therefore\ncould hope that it might belong only to the passing hour.\nAccordingly, with a mixture of the serious and the playful, which she\nhoped would best suit his half and half state, she replied,\n\n\"I am very much astonished, Mr. Elton.  This to _me_! you forget yourself--\nyou take me for my friend--any message to Miss Smith I shall\nbe happy to deliver; but no more of this to _me_, if you please.\"\n\n\"Miss Smith!--message to Miss Smith!--What could she possibly mean!\"--\nAnd he repeated her words with such assurance of accent, such boastful\npretence of amazement, that she could not help replying with quickness,\n\n\"Mr. Elton, this is the most extraordinary conduct! and I can account\nfor it only in one way; you are not yourself, or you could not speak\neither to me, or of Harriet, in such a manner.  Command yourself\nenough to say no more, and I will endeavour to forget it.\"\n\nBut Mr. Elton had only drunk wine enough to elevate his spirits,\nnot at all to confuse his intellects.  He perfectly knew his own meaning;\nand having warmly protested against her suspicion as most injurious,\nand slightly touched upon his respect for Miss Smith as her friend,--\nbut acknowledging his wonder that Miss Smith should be mentioned\nat all,--he resumed the subject of his own passion, and was very\nurgent for a favourable answer.\n\nAs she thought less of his inebriety, she thought more of his inconstancy\nand presumption; and with fewer struggles for politeness, replied,\n\n\"It is impossible for me to doubt any longer.  You have made\nyourself too clear.  Mr. Elton, my astonishment is much beyond\nany thing I can express.  After such behaviour, as I have witnessed\nduring the last month, to Miss Smith--such attentions as I\nhave been in the daily habit of observing--to be addressing me\nin this manner--this is an unsteadiness of character, indeed,\nwhich I had not supposed possible!  Believe me, sir, I am far,\nvery far, from gratified in being the object of such professions.\"\n\n\"Good Heaven!\" cried Mr. Elton, \"what can be the meaning of this?--\nMiss Smith!--I never thought of Miss Smith in the whole course\nof my existence--never paid her any attentions, but as your friend:\nnever cared whether she were dead or alive, but as your friend.\nIf she has fancied otherwise, her own wishes have misled her,\nand I am very sorry--extremely sorry--But, Miss Smith, indeed!--Oh!\nMiss Woodhouse! who can think of Miss Smith, when Miss Woodhouse\nis near!  No, upon my honour, there is no unsteadiness of character.\nI have thought only of you.  I protest against having paid the smallest\nattention to any one else.  Every thing that I have said or done,\nfor many weeks past, has been with the sole view of marking my\nadoration of yourself.  You cannot really, seriously, doubt it.\nNo!--(in an accent meant to be insinuating)--I am sure you have seen\nand understood me.\"\n\nIt would be impossible to say what Emma felt, on hearing this--\nwhich of all her unpleasant sensations was uppermost.  She was\ntoo completely overpowered to be immediately able to reply:\nand two moments of silence being ample encouragement for Mr. Elton's\nsanguine state of mind, he tried to take her hand again, as he\njoyously exclaimed--\n\n\"Charming Miss Woodhouse! allow me to interpret this interesting silence.\nIt confesses that you have long understood me.\"\n\n\"No, sir,\" cried Emma, \"it confesses no such thing.  So far from\nhaving long understood you, I have been in a most complete error\nwith respect to your views, till this moment.  As to myself, I am\nvery sorry that you should have been giving way to any feelings--\nNothing could be farther from my wishes--your attachment to my\nfriend Harriet--your pursuit of her, (pursuit, it appeared,) gave me\ngreat pleasure, and I have been very earnestly wishing you success:\nbut had I supposed that she were not your attraction to Hartfield,\nI should certainly have thought you judged ill in making your visits\nso frequent.  Am I to believe that you have never sought to recommend\nyourself particularly to Miss Smith?--that you have never thought\nseriously of her?\"\n\n\"Never, madam,\" cried he, affronted in his turn:  \"never, I assure you.\n_I_ think seriously of Miss Smith!--Miss Smith is a very good sort\nof girl; and I should be happy to see her respectably settled.\nI wish her extremely well:  and, no doubt, there are men who might not\nobject to--Every body has their level:  but as for myself, I am not,\nI think, quite so much at a loss.  I need not so totally despair\nof an equal alliance, as to be addressing myself to Miss Smith!--\nNo, madam, my visits to Hartfield have been for yourself only;\nand the encouragement I received--\"\n\n\"Encouragement!--I give you encouragement!--Sir, you have been entirely\nmistaken in supposing it.  I have seen you only as the admirer\nof my friend.  In no other light could you have been more to me than\na common acquaintance.  I am exceedingly sorry:  but it is well that\nthe mistake ends where it does.  Had the same behaviour continued,\nMiss Smith might have been led into a misconception of your views;\nnot being aware, probably, any more than myself, of the very\ngreat inequality which you are so sensible of.  But, as it is,\nthe disappointment is single, and, I trust, will not be lasting.\nI have no thoughts of matrimony at present.\"\n\nHe was too angry to say another word; her manner too decided\nto invite supplication; and in this state of swelling resentment,\nand mutually deep mortification, they had to continue together a few\nminutes longer, for the fears of Mr. Woodhouse had confined them\nto a foot-pace. If there had not been so much anger, there would have\nbeen desperate awkwardness; but their straightforward emotions left\nno room for the little zigzags of embarrassment.  Without knowing\nwhen the carriage turned into Vicarage Lane, or when it stopped,\nthey found themselves, all at once, at the door of his house;\nand he was out before another syllable passed.--Emma then felt it\nindispensable to wish him a good night.  The compliment was just returned,\ncoldly and proudly; and, under indescribable irritation of spirits,\nshe was then conveyed to Hartfield.\n\nThere she was welcomed, with the utmost delight, by her father,\nwho had been trembling for the dangers of a solitary drive from\nVicarage Lane--turning a corner which he could never bear to think of--\nand in strange hands--a mere common coachman--no James; and there it\nseemed as if her return only were wanted to make every thing go well:\nfor Mr. John Knightley, ashamed of his ill-humour, was now all\nkindness and attention; and so particularly solicitous for the comfort\nof her father, as to seem--if not quite ready to join him in a basin\nof gruel--perfectly sensible of its being exceedingly wholesome;\nand the day was concluding in peace and comfort to all their little party,\nexcept herself.--But her mind had never been in such perturbation;\nand it needed a very strong effort to appear attentive and cheerful till\nthe usual hour of separating allowed her the relief of quiet reflection.\n\n\n\nCHAPTER XVI\n\n\nThe hair was curled, and the maid sent away, and Emma sat down to think\nand be miserable.--It was a wretched business indeed!--Such an overthrow\nof every thing she had been wishing for!--Such a development of every\nthing most unwelcome!--Such a blow for Harriet!--that was the worst\nof all.  Every part of it brought pain and humiliation, of some sort\nor other; but, compared with the evil to Harriet, all was light;\nand she would gladly have submitted to feel yet more mistaken--\nmore in error--more disgraced by mis-judgment, than she actually was,\ncould the effects of her blunders have been confined to herself.\n\n\"If I had not persuaded Harriet into liking the man, I could have\nborne any thing.  He might have doubled his presumption to me--\nbut poor Harriet!\"\n\nHow she could have been so deceived!--He protested that he\nhad never thought seriously of Harriet--never!  She looked back\nas well as she could; but it was all confusion.  She had taken\nup the idea, she supposed, and made every thing bend to it.\nHis manners, however, must have been unmarked, wavering, dubious,\nor she could not have been so misled.\n\nThe picture!--How eager he had been about the picture!--\nand the charade!--and an hundred other circumstances;--\nhow clearly they had seemed to point at Harriet.  To be sure,\nthe charade, with its \"ready wit\"--but then the \"soft eyes\"--\nin fact it suited neither; it was a jumble without taste or truth.\nWho could have seen through such thick-headed nonsense?\n\nCertainly she had often, especially of late, thought his manners\nto herself unnecessarily gallant; but it had passed as his way,\nas a mere error of judgment, of knowledge, of taste, as one proof\namong others that he had not always lived in the best society,\nthat with all the gentleness of his address, true elegance\nwas sometimes wanting; but, till this very day, she had never,\nfor an instant, suspected it to mean any thing but grateful respect\nto her as Harriet's friend.\n\nTo Mr. John Knightley was she indebted for her first idea on\nthe subject, for the first start of its possibility.  There was\nno denying that those brothers had penetration.  She remembered\nwhat Mr. Knightley had once said to her about Mr. Elton, the caution\nhe had given, the conviction he had professed that Mr. Elton would\nnever marry indiscreetly; and blushed to think how much truer\na knowledge of his character had been there shewn than any she\nhad reached herself.  It was dreadfully mortifying; but Mr. Elton\nwas proving himself, in many respects, the very reverse of what she\nhad meant and believed him; proud, assuming, conceited; very full\nof his own claims, and little concerned about the feelings of others.\n\nContrary to the usual course of things, Mr. Elton's wanting\nto pay his addresses to her had sunk him in her opinion.\nHis professions and his proposals did him no service.  She thought\nnothing of his attachment, and was insulted by his hopes.\nHe wanted to marry well, and having the arrogance to raise his\neyes to her, pretended to be in love; but she was perfectly easy\nas to his not suffering any disappointment that need be cared for.\nThere had been no real affection either in his language or manners.\nSighs and fine words had been given in abundance; but she could\nhardly devise any set of expressions, or fancy any tone of voice,\nless allied with real love.  She need not trouble herself to pity him.\nHe only wanted to aggrandise and enrich himself; and if Miss Woodhouse\nof Hartfield, the heiress of thirty thousand pounds, were not quite\nso easily obtained as he had fancied, he would soon try for Miss\nSomebody else with twenty, or with ten.\n\nBut--that he should talk of encouragement, should consider her as\naware of his views, accepting his attentions, meaning (in short),\nto marry him!--should suppose himself her equal in connexion\nor mind!--look down upon her friend, so well understanding the\ngradations of rank below him, and be so blind to what rose above,\nas to fancy himself shewing no presumption in addressing her!--\nIt was most provoking.\n\nPerhaps it was not fair to expect him to feel how very much he\nwas her inferior in talent, and all the elegancies of mind.\nThe very want of such equality might prevent his perception of it;\nbut he must know that in fortune and consequence she was greatly\nhis superior.  He must know that the Woodhouses had been settled\nfor several generations at Hartfield, the younger branch\nof a very ancient family--and that the Eltons were nobody.\nThe landed property of Hartfield certainly was inconsiderable,\nbeing but a sort of notch in the Donwell Abbey estate, to which all\nthe rest of Highbury belonged; but their fortune, from other sources,\nwas such as to make them scarcely secondary to Donwell Abbey itself,\nin every other kind of consequence; and the Woodhouses had long\nheld a high place in the consideration of the neighbourhood which\nMr. Elton had first entered not two years ago, to make his way\nas he could, without any alliances but in trade, or any thing\nto recommend him to notice but his situation and his civility.--\nBut he had fancied her in love with him; that evidently must\nhave been his dependence; and after raving a little about the\nseeming incongruity of gentle manners and a conceited head,\nEmma was obliged in common honesty to stop and admit that her own\nbehaviour to him had been so complaisant and obliging, so full of\ncourtesy and attention, as (supposing her real motive unperceived)\nmight warrant a man of ordinary observation and delicacy,\nlike Mr. Elton, in fancying himself a very decided favourite.  If _she_\nhad so misinterpreted his feelings, she had little right to wonder\nthat _he_, with self-interest to blind him, should have mistaken hers.\n\nThe first error and the worst lay at her door.  It was foolish,\nit was wrong, to take so active a part in bringing any two\npeople together.  It was adventuring too far, assuming too much,\nmaking light of what ought to be serious, a trick of what ought\nto be simple.  She was quite concerned and ashamed, and resolved\nto do such things no more.\n\n\"Here have I,\" said she, \"actually talked poor Harriet into being\nvery much attached to this man.  She might never have thought of him\nbut for me; and certainly never would have thought of him with hope,\nif I had not assured her of his attachment, for she is as modest\nand humble as I used to think him.  Oh! that I had been satisfied with\npersuading her not to accept young Martin.  There I was quite right.\nThat was well done of me; but there I should have stopped, and left\nthe rest to time and chance.  I was introducing her into good company,\nand giving her the opportunity of pleasing some one worth having;\nI ought not to have attempted more.  But now, poor girl, her peace\nis cut up for some time.  I have been but half a friend to her;\nand if she were _not_ to feel this disappointment so very much, I am\nsure I have not an idea of any body else who would be at all desirable\nfor her;--William Coxe--Oh! no, I could not endure William Coxe--\na pert young lawyer.\"\n\nShe stopt to blush and laugh at her own relapse, and then resumed\na more serious, more dispiriting cogitation upon what had been,\nand might be, and must be.  The distressing explanation she had\nto make to Harriet, and all that poor Harriet would be suffering,\nwith the awkwardness of future meetings, the difficulties of\ncontinuing or discontinuing the acquaintance, of subduing feelings,\nconcealing resentment, and avoiding eclat, were enough to occupy\nher in most unmirthful reflections some time longer, and she went\nto bed at last with nothing settled but the conviction of her having\nblundered most dreadfully.\n\nTo youth and natural cheerfulness like Emma's, though under\ntemporary gloom at night, the return of day will hardly fail\nto bring return of spirits.  The youth and cheerfulness of morning\nare in happy analogy, and of powerful operation; and if the\ndistress be not poignant enough to keep the eyes unclosed, they\nwill be sure to open to sensations of softened pain and brighter hope.\n\nEmma got up on the morrow more disposed for comfort than she had\ngone to bed, more ready to see alleviations of the evil before her,\nand to depend on getting tolerably out of it.\n\nIt was a great consolation that Mr. Elton should not be really\nin love with her, or so particularly amiable as to make it shocking\nto disappoint him--that Harriet's nature should not be of that\nsuperior sort in which the feelings are most acute and retentive--\nand that there could be no necessity for any body's knowing\nwhat had passed except the three principals, and especially\nfor her father's being given a moment's uneasiness about it.\n\nThese were very cheering thoughts; and the sight of a great deal\nof snow on the ground did her further service, for any thing was\nwelcome that might justify their all three being quite asunder\nat present.\n\nThe weather was most favourable for her; though Christmas Day,\nshe could not go to church.  Mr. Woodhouse would have been miserable\nhad his daughter attempted it, and she was therefore safe from\neither exciting or receiving unpleasant and most unsuitable ideas.\nThe ground covered with snow, and the atmosphere in that unsettled\nstate between frost and thaw, which is of all others the most\nunfriendly for exercise, every morning beginning in rain or snow,\nand every evening setting in to freeze, she was for many days a most\nhonourable prisoner.  No intercourse with Harriet possible but by note;\nno church for her on Sunday any more than on Christmas Day; and no\nneed to find excuses for Mr. Elton's absenting himself.\n\nIt was weather which might fairly confine every body at home;\nand though she hoped and believed him to be really taking comfort\nin some society or other, it was very pleasant to have her father\nso well satisfied with his being all alone in his own house,\ntoo wise to stir out; and to hear him say to Mr. Knightley, whom no\nweather could keep entirely from them,--\n\n\"Ah!  Mr. Knightley, why do not you stay at home like poor Mr. Elton?\"\n\nThese days of confinement would have been, but for her private\nperplexities, remarkably comfortable, as such seclusion exactly\nsuited her brother, whose feelings must always be of great importance\nto his companions; and he had, besides, so thoroughly cleared off\nhis ill-humour at Randalls, that his amiableness never failed him\nduring the rest of his stay at Hartfield.  He was always agreeable\nand obliging, and speaking pleasantly of every body.  But with all\nthe hopes of cheerfulness, and all the present comfort of delay,\nthere was still such an evil hanging over her in the hour of explanation\nwith Harriet, as made it impossible for Emma to be ever perfectly at ease.\n\n\n\nCHAPTER XVII\n\n\nMr. and Mrs. John Knightley were not detained long at Hartfield.\nThe weather soon improved enough for those to move who must move;\nand Mr. Woodhouse having, as usual, tried to persuade his daughter\nto stay behind with all her children, was obliged to see the whole\nparty set off, and return to his lamentations over the destiny\nof poor Isabella;--which poor Isabella, passing her life with\nthose she doated on, full of their merits, blind to their faults,\nand always innocently busy, might have been a model of right\nfeminine happiness.\n\nThe evening of the very day on which they went brought a note\nfrom Mr. Elton to Mr. Woodhouse, a long, civil, ceremonious note,\nto say, with Mr. Elton's best compliments, \"that he was proposing\nto leave Highbury the following morning in his way to Bath;\nwhere, in compliance with the pressing entreaties of some friends,\nhe had engaged to spend a few weeks, and very much regretted\nthe impossibility he was under, from various circumstances of\nweather and business, of taking a personal leave of Mr. Woodhouse,\nof whose friendly civilities he should ever retain a grateful sense--\nand had Mr. Woodhouse any commands, should be happy to attend to them.\"\n\nEmma was most agreeably surprized.--Mr. Elton's absence just\nat this time was the very thing to be desired.  She admired\nhim for contriving it, though not able to give him much credit\nfor the manner in which it was announced.  Resentment could not\nhave been more plainly spoken than in a civility to her father,\nfrom which she was so pointedly excluded.  She had not even a\nshare in his opening compliments.--Her name was not mentioned;--\nand there was so striking a change in all this, and such an\nill-judged solemnity of leave-taking in his graceful acknowledgments,\nas she thought, at first, could not escape her father's suspicion.\n\nIt did, however.--Her father was quite taken up with the surprize\nof so sudden a journey, and his fears that Mr. Elton might never get\nsafely to the end of it, and saw nothing extraordinary in his language.\nIt was a very useful note, for it supplied them with fresh matter\nfor thought and conversation during the rest of their lonely evening.\nMr. Woodhouse talked over his alarms, and Emma was in spirits\nto persuade them away with all her usual promptitude.\n\nShe now resolved to keep Harriet no longer in the dark.  She had\nreason to believe her nearly recovered from her cold, and it was\ndesirable that she should have as much time as possible for getting\nthe better of her other complaint before the gentleman's return.\nShe went to Mrs. Goddard's accordingly the very next day, to undergo\nthe necessary penance of communication; and a severe one it was.--\nShe had to destroy all the hopes which she had been so industriously\nfeeding--to appear in the ungracious character of the one preferred--\nand acknowledge herself grossly mistaken and mis-judging in all her\nideas on one subject, all her observations, all her convictions,\nall her prophecies for the last six weeks.\n\nThe confession completely renewed her first shame--and the sight\nof Harriet's tears made her think that she should never be in charity\nwith herself again.\n\nHarriet bore the intelligence very well--blaming nobody--\nand in every thing testifying such an ingenuousness of disposition\nand lowly opinion of herself, as must appear with particular\nadvantage at that moment to her friend.\n\nEmma was in the humour to value simplicity and modesty to the utmost;\nand all that was amiable, all that ought to be attaching,\nseemed on Harriet's side, not her own.  Harriet did not consider\nherself as having any thing to complain of.  The affection of such\na man as Mr. Elton would have been too great a distinction.--\nShe never could have deserved him--and nobody but so partial\nand kind a friend as Miss Woodhouse would have thought it possible.\n\nHer tears fell abundantly--but her grief was so truly artless,\nthat no dignity could have made it more respectable in Emma's eyes--\nand she listened to her and tried to console her with all her heart\nand understanding--really for the time convinced that Harriet was\nthe superior creature of the two--and that to resemble her would\nbe more for her own welfare and happiness than all that genius or\nintelligence could do.\n\nIt was rather too late in the day to set about being simple-minded\nand ignorant; but she left her with every previous resolution\nconfirmed of being humble and discreet, and repressing imagination\nall the rest of her life.  Her second duty now, inferior only to her\nfather's claims, was to promote Harriet's comfort, and endeavour\nto prove her own affection in some better method than by match-making.\nShe got her to Hartfield, and shewed her the most unvarying kindness,\nstriving to occupy and amuse her, and by books and conversation,\nto drive Mr. Elton from her thoughts.\n\nTime, she knew, must be allowed for this being thoroughly done; and she\ncould suppose herself but an indifferent judge of such matters in general,\nand very inadequate to sympathise in an attachment to Mr. Elton\nin particular; but it seemed to her reasonable that at Harriet's age,\nand with the entire extinction of all hope, such a progress might be\nmade towards a state of composure by the time of Mr. Elton's return,\nas to allow them all to meet again in the common routine of acquaintance,\nwithout any danger of betraying sentiments or increasing them.\n\nHarriet did think him all perfection, and maintained the non-existence\nof any body equal to him in person or goodness--and did, in truth,\nprove herself more resolutely in love than Emma had foreseen;\nbut yet it appeared to her so natural, so inevitable to strive\nagainst an inclination of that sort _unrequited_, that she could not\ncomprehend its continuing very long in equal force.\n\nIf Mr. Elton, on his return, made his own indifference as evident\nand indubitable as she could not doubt he would anxiously do,\nshe could not imagine Harriet's persisting to place her happiness\nin the sight or the recollection of him.\n\nTheir being fixed, so absolutely fixed, in the same place, was bad\nfor each, for all three.  Not one of them had the power of removal,\nor of effecting any material change of society.  They must encounter\neach other, and make the best of it.\n\nHarriet was farther unfortunate in the tone of her companions at\nMrs. Goddard's; Mr. Elton being the adoration of all the teachers\nand great girls in the school; and it must be at Hartfield only\nthat she could have any chance of hearing him spoken of with cooling\nmoderation or repellent truth.  Where the wound had been given,\nthere must the cure be found if anywhere; and Emma felt that,\ntill she saw her in the way of cure, there could be no true peace\nfor herself.\n\n\n\nCHAPTER XVIII\n\n\nMr. Frank Churchill did not come.  When the time proposed\ndrew near, Mrs. Weston's fears were justified in the arrival\nof a letter of excuse.  For the present, he could not be spared,\nto his \"very great mortification and regret; but still he looked\nforward with the hope of coming to Randalls at no distant period.\"\n\nMrs. Weston was exceedingly disappointed--much more disappointed,\nin fact, than her husband, though her dependence on seeing the\nyoung man had been so much more sober:  but a sanguine temper,\nthough for ever expecting more good than occurs, does not\nalways pay for its hopes by any proportionate depression.\nIt soon flies over the present failure, and begins to hope again.\nFor half an hour Mr. Weston was surprized and sorry; but then he\nbegan to perceive that Frank's coming two or three months later\nwould be a much better plan; better time of year; better weather;\nand that he would be able, without any doubt, to stay considerably\nlonger with them than if he had come sooner.\n\nThese feelings rapidly restored his comfort, while Mrs. Weston,\nof a more apprehensive disposition, foresaw nothing but a repetition\nof excuses and delays; and after all her concern for what her husband\nwas to suffer, suffered a great deal more herself.\n\nEmma was not at this time in a state of spirits to care really\nabout Mr. Frank Churchill's not coming, except as a disappointment\nat Randalls.  The acquaintance at present had no charm for her.\nShe wanted, rather, to be quiet, and out of temptation; but still, as it\nwas desirable that she should appear, in general, like her usual self,\nshe took care to express as much interest in the circumstance,\nand enter as warmly into Mr. and Mrs. Weston's disappointment,\nas might naturally belong to their friendship.\n\nShe was the first to announce it to Mr. Knightley; and exclaimed\nquite as much as was necessary, (or, being acting a part, perhaps\nrather more,) at the conduct of the Churchills, in keeping him away.\nShe then proceeded to say a good deal more than she felt, of the\nadvantage of such an addition to their confined society in Surry;\nthe pleasure of looking at somebody new; the gala-day to Highbury entire,\nwhich the sight of him would have made; and ending with reflections\non the Churchills again, found herself directly involved in a\ndisagreement with Mr. Knightley; and, to her great amusement,\nperceived that she was taking the other side of the question from her\nreal opinion, and making use of Mrs. Weston's arguments against herself.\n\n\"The Churchills are very likely in fault,\" said Mr. Knightley,\ncoolly; \"but I dare say he might come if he would.\"\n\n\"I do not know why you should say so.  He wishes exceedingly to come;\nbut his uncle and aunt will not spare him.\"\n\n\"I cannot believe that he has not the power of coming, if he made\na point of it.  It is too unlikely, for me to believe it without proof.\"\n\n\"How odd you are!  What has Mr. Frank Churchill done, to make you\nsuppose him such an unnatural creature?\"\n\n\"I am not supposing him at all an unnatural creature, in suspecting\nthat he may have learnt to be above his connexions, and to care\nvery little for any thing but his own pleasure, from living with\nthose who have always set him the example of it.  It is a great deal\nmore natural than one could wish, that a young man, brought up\nby those who are proud, luxurious, and selfish, should be proud,\nluxurious, and selfish too.  If Frank Churchill had wanted to see\nhis father, he would have contrived it between September and January.\nA man at his age--what is he?--three or four-and-twenty--cannot be\nwithout the means of doing as much as that.  It is impossible.\"\n\n\"That's easily said, and easily felt by you, who have always\nbeen your own master.  You are the worst judge in the world,\nMr. Knightley, of the difficulties of dependence.  You do not know\nwhat it is to have tempers to manage.\"\n\n\"It is not to be conceived that a man of three or four-and-twenty\nshould not have liberty of mind or limb to that amount.  He cannot\nwant money--he cannot want leisure.  We know, on the contrary,\nthat he has so much of both, that he is glad to get rid of them at\nthe idlest haunts in the kingdom.  We hear of him for ever at some\nwatering-place or other.  A little while ago, he was at Weymouth.\nThis proves that he can leave the Churchills.\"\n\n\"Yes, sometimes he can.\"\n\n\"And those times are whenever he thinks it worth his while;\nwhenever there is any temptation of pleasure.\"\n\n\"It is very unfair to judge of any body's conduct, without an\nintimate knowledge of their situation.  Nobody, who has not been\nin the interior of a family, can say what the difficulties\nof any individual of that family may be.  We ought to be\nacquainted with Enscombe, and with Mrs. Churchill's temper,\nbefore we pretend to decide upon what her nephew can do.\nHe may, at times, be able to do a great deal more than he can at others.\"\n\n\"There is one thing, Emma, which a man can always do, if he chuses,\nand that is, his duty; not by manoeuvring and finessing, but by vigour\nand resolution.  It is Frank Churchill's duty to pay this attention\nto his father.  He knows it to be so, by his promises and messages;\nbut if he wished to do it, it might be done.  A man who felt rightly\nwould say at once, simply and resolutely, to Mrs. Churchill--\n`Every sacrifice of mere pleasure you will always find me ready to make\nto your convenience; but I must go and see my father immediately.\nI know he would be hurt by my failing in such a mark of respect to him\non the present occasion.  I shall, therefore, set off to-morrow.'--\nIf he would say so to her at once, in the tone of decision becoming\na man, there would be no opposition made to his going.\"\n\n\"No,\" said Emma, laughing; \"but perhaps there might be some made to his\ncoming back again.  Such language for a young man entirely dependent,\nto use!--Nobody but you, Mr. Knightley, would imagine it possible.\nBut you have not an idea of what is requisite in situations directly\nopposite to your own.  Mr. Frank Churchill to be making such\na speech as that to the uncle and aunt, who have brought him up,\nand are to provide for him!--Standing up in the middle of the room,\nI suppose, and speaking as loud as he could!--How can you imagine\nsuch conduct practicable?\"\n\n\"Depend upon it, Emma, a sensible man would find no difficulty in it.\nHe would feel himself in the right; and the declaration--made,\nof course, as a man of sense would make it, in a proper manner--\nwould do him more good, raise him higher, fix his interest stronger\nwith the people he depended on, than all that a line of shifts\nand expedients can ever do.  Respect would be added to affection.\nThey would feel that they could trust him; that the nephew who had\ndone rightly by his father, would do rightly by them; for they know,\nas well as he does, as well as all the world must know, that he\nought to pay this visit to his father; and while meanly exerting\ntheir power to delay it, are in their hearts not thinking the better\nof him for submitting to their whims.  Respect for right conduct\nis felt by every body.  If he would act in this sort of manner,\non principle, consistently, regularly, their little minds would bend\nto his.\"\n\n\"I rather doubt that.  You are very fond of bending little minds;\nbut where little minds belong to rich people in authority,\nI think they have a knack of swelling out, till they are quite as\nunmanageable as great ones.  I can imagine, that if you, as you are,\nMr. Knightley, were to be transported and placed all at once in\nMr. Frank Churchill's situation, you would be able to say and do\njust what you have been recommending for him; and it might have\na very good effect.  The Churchills might not have a word to say\nin return; but then, you would have no habits of early obedience\nand long observance to break through.  To him who has, it might\nnot be so easy to burst forth at once into perfect independence,\nand set all their claims on his gratitude and regard at nought.\nHe may have as strong a sense of what would be right, as you can have,\nwithout being so equal, under particular circumstances, to act up\nto it.\"\n\n\"Then it would not be so strong a sense.  If it failed to produce\nequal exertion, it could not be an equal conviction.\"\n\n\"Oh, the difference of situation and habit!  I wish you would try\nto understand what an amiable young man may be likely to feel\nin directly opposing those, whom as child and boy he has been\nlooking up to all his life.\"\n\n\"Our amiable young man is a very weak young man, if this be the first\noccasion of his carrying through a resolution to do right against\nthe will of others.  It ought to have been a habit with him by\nthis time, of following his duty, instead of consulting expediency.\nI can allow for the fears of the child, but not of the man.\nAs he became rational, he ought to have roused himself and shaken off\nall that was unworthy in their authority.  He ought to have opposed\nthe first attempt on their side to make him slight his father.\nHad he begun as he ought, there would have been no difficulty now.\"\n\n\"We shall never agree about him,\" cried Emma; \"but that is\nnothing extraordinary.  I have not the least idea of his being\na weak young man:  I feel sure that he is not.  Mr. Weston would\nnot be blind to folly, though in his own son; but he is very likely\nto have a more yielding, complying, mild disposition than would suit\nyour notions of man's perfection.  I dare say he has; and though\nit may cut him off from some advantages, it will secure him many others.\"\n\n\"Yes; all the advantages of sitting still when he ought to move,\nand of leading a life of mere idle pleasure, and fancying himself\nextremely expert in finding excuses for it.  He can sit down and\nwrite a fine flourishing letter, full of professions and falsehoods,\nand persuade himself that he has hit upon the very best method\nin the world of preserving peace at home and preventing his father's\nhaving any right to complain.  His letters disgust me.\"\n\n\"Your feelings are singular.  They seem to satisfy every body else.\"\n\n\"I suspect they do not satisfy Mrs. Weston.  They hardly can\nsatisfy a woman of her good sense and quick feelings:  standing in\na mother's place, but without a mother's affection to blind her.\nIt is on her account that attention to Randalls is doubly due,\nand she must doubly feel the omission.  Had she been a person\nof consequence herself, he would have come I dare say; and it would\nnot have signified whether he did or no.  Can you think your friend\nbehindhand in these sort of considerations?  Do you suppose she\ndoes not often say all this to herself?  No, Emma, your amiable\nyoung man can be amiable only in French, not in English.  He may be\nvery `aimable,' have very good manners, and be very agreeable; but he\ncan have no English delicacy towards the feelings of other people:\nnothing really amiable about him.\"\n\n\"You seem determined to think ill of him.\"\n\n\"Me!--not at all,\" replied Mr. Knightley, rather displeased; \"I do\nnot want to think ill of him.  I should be as ready to acknowledge\nhis merits as any other man; but I hear of none, except what are\nmerely personal; that he is well-grown and good-looking, with smooth,\nplausible manners.\"\n\n\"Well, if he have nothing else to recommend him, he will be a\ntreasure at Highbury.  We do not often look upon fine young men,\nwell-bred and agreeable.  We must not be nice and ask for all\nthe virtues into the bargain.  Cannot you imagine, Mr. Knightley,\nwhat a _sensation_ his coming will produce?  There will be but one subject\nthroughout the parishes of Donwell and Highbury; but one interest--\none object of curiosity; it will be all Mr. Frank Churchill;\nwe shall think and speak of nobody else.\"\n\n\"You will excuse my being so much over-powered. If I find him\nconversable, I shall be glad of his acquaintance; but if he is only\na chattering coxcomb, he will not occupy much of my time or thoughts.\"\n\n\"My idea of him is, that he can adapt his conversation to the taste\nof every body, and has the power as well as the wish of being\nuniversally agreeable.  To you, he will talk of farming; to me,\nof drawing or music; and so on to every body, having that general\ninformation on all subjects which will enable him to follow the lead,\nor take the lead, just as propriety may require, and to speak\nextremely well on each; that is my idea of him.\"\n\n\"And mine,\" said Mr. Knightley warmly, \"is, that if he turn out any\nthing like it, he will be the most insufferable fellow breathing!\nWhat! at three-and-twenty to be the king of his company--the great man--\nthe practised politician, who is to read every body's character,\nand make every body's talents conduce to the display of his\nown superiority; to be dispensing his flatteries around, that he\nmay make all appear like fools compared with himself!  My dear Emma,\nyour own good sense could not endure such a puppy when it came\nto the point.\"\n\n\"I will say no more about him,\" cried Emma, \"you turn every\nthing to evil.  We are both prejudiced; you against, I for him;\nand we have no chance of agreeing till he is really here.\"\n\n\"Prejudiced!  I am not prejudiced.\"\n\n\"But I am very much, and without being at all ashamed of it.\nMy love for Mr. and Mrs. Weston gives me a decided prejudice in\nhis favour.\"\n\n\"He is a person I never think of from one month's end to another,\"\nsaid Mr. Knightley, with a degree of vexation, which made Emma\nimmediately talk of something else, though she could not comprehend\nwhy he should be angry.\n\nTo take a dislike to a young man, only because he appeared to be\nof a different disposition from himself, was unworthy the real\nliberality of mind which she was always used to acknowledge in him;\nfor with all the high opinion of himself, which she had often laid\nto his charge, she had never before for a moment supposed it could\nmake him unjust to the merit of another.\n\n\n\n\nVOLUME II\n\n\n\nCHAPTER I\n\n\nEmma and Harriet had been walking together one morning, and,\nin Emma's opinion, had been talking enough of Mr. Elton for that day.\nShe could not think that Harriet's solace or her own sins required more;\nand she was therefore industriously getting rid of the subject\nas they returned;--but it burst out again when she thought she\nhad succeeded, and after speaking some time of what the poor must\nsuffer in winter, and receiving no other answer than a very plaintive--\n\"Mr. Elton is so good to the poor!\" she found something else must be done.\n\nThey were just approaching the house where lived Mrs. and Miss Bates.\nShe determined to call upon them and seek safety in numbers.\nThere was always sufficient reason for such an attention; Mrs. and\nMiss Bates loved to be called on, and she knew she was considered\nby the very few who presumed ever to see imperfection in her,\nas rather negligent in that respect, and as not contributing what she\nought to the stock of their scanty comforts.\n\nShe had had many a hint from Mr. Knightley and some from her own heart,\nas to her deficiency--but none were equal to counteract the persuasion\nof its being very disagreeable,--a waste of time--tiresome women--\nand all the horror of being in danger of falling in with the second-rate\nand third-rate of Highbury, who were calling on them for ever,\nand therefore she seldom went near them.  But now she made the sudden\nresolution of not passing their door without going in--observing,\nas she proposed it to Harriet, that, as well as she could calculate,\nthey were just now quite safe from any letter from Jane Fairfax.\n\nThe house belonged to people in business.  Mrs. and Miss Bates occupied\nthe drawing-room floor; and there, in the very moderate-sized apartment,\nwhich was every thing to them, the visitors were most cordially\nand even gratefully welcomed; the quiet neat old lady, who with her\nknitting was seated in the warmest corner, wanting even to give up\nher place to Miss Woodhouse, and her more active, talking daughter,\nalmost ready to overpower them with care and kindness, thanks for\ntheir visit, solicitude for their shoes, anxious inquiries after\nMr. Woodhouse's health, cheerful communications about her mother's,\nand sweet-cake from the beaufet--\"Mrs. Cole had just been there,\njust called in for ten minutes, and had been so good as to sit an\nhour with them, and _she_ had taken a piece of cake and been so kind\nas to say she liked it very much; and, therefore, she hoped Miss\nWoodhouse and Miss Smith would do them the favour to eat a piece too.\"\n\nThe mention of the Coles was sure to be followed by that of Mr. Elton.\nThere was intimacy between them, and Mr. Cole had heard from\nMr. Elton since his going away.  Emma knew what was coming; they must\nhave the letter over again, and settle how long he had been gone,\nand how much he was engaged in company, and what a favourite he\nwas wherever he went, and how full the Master of the Ceremonies'\nball had been; and she went through it very well, with all the\ninterest and all the commendation that could be requisite, and always\nputting forward to prevent Harriet's being obliged to say a word.\n\nThis she had been prepared for when she entered the house;\nbut meant, having once talked him handsomely over, to be no farther\nincommoded by any troublesome topic, and to wander at large amongst\nall the Mistresses and Misses of Highbury, and their card-parties.\nShe had not been prepared to have Jane Fairfax succeed Mr. Elton;\nbut he was actually hurried off by Miss Bates, she jumped away\nfrom him at last abruptly to the Coles, to usher in a letter from\nher niece.\n\n\"Oh! yes--Mr. Elton, I understand--certainly as to dancing--\nMrs. Cole was telling me that dancing at the rooms at Bath was--\nMrs. Cole was so kind as to sit some time with us, talking of Jane;\nfor as soon as she came in, she began inquiring after her,\nJane is so very great a favourite there.  Whenever she is with us,\nMrs. Cole does not know how to shew her kindness enough;\nand I must say that Jane deserves it as much as any body can.\nAnd so she began inquiring after her directly, saying, `I know you\ncannot have heard from Jane lately, because it is not her time\nfor writing;' and when I immediately said, `But indeed we have,\nwe had a letter this very morning,' I do not know that I ever saw\nany body more surprized.  `Have you, upon your honour?' said she;\n`well, that is quite unexpected.  Do let me hear what she says.'\"\n\nEmma's politeness was at hand directly, to say, with smiling interest--\n\n\"Have you heard from Miss Fairfax so lately?  I am extremely happy.\nI hope she is well?\"\n\n\"Thank you.  You are so kind!\" replied the happily deceived aunt,\nwhile eagerly hunting for the letter.--\"Oh! here it is.  I was sure\nit could not be far off; but I had put my huswife upon it, you see,\nwithout being aware, and so it was quite hid, but I had it in my hand\nso very lately that I was almost sure it must be on the table.\nI was reading it to Mrs. Cole, and since she went away, I was\nreading it again to my mother, for it is such a pleasure to her--\na letter from Jane--that she can never hear it often enough;\nso I knew it could not be far off, and here it is, only just under\nmy huswife--and since you are so kind as to wish to hear what\nshe says;--but, first of all, I really must, in justice to Jane,\napologise for her writing so short a letter--only two pages you see--\nhardly two--and in general she fills the whole paper and crosses half.\nMy mother often wonders that I can make it out so well.\nShe often says, when the letter is first opened, `Well, Hetty,\nnow I think you will be put to it to make out all that checker-work'--\ndon't you, ma'am?--And then I tell her, I am sure she would contrive\nto make it out herself, if she had nobody to do it for her--\nevery word of it--I am sure she would pore over it till she had\nmade out every word.  And, indeed, though my mother's eyes are not\nso good as they were, she can see amazingly well still, thank God!\nwith the help of spectacles.  It is such a blessing!  My mother's\nare really very good indeed.  Jane often says, when she is here,\n`I am sure, grandmama, you must have had very strong eyes to see\nas you do--and so much fine work as you have done too!--I only wish\nmy eyes may last me as well.'\"\n\nAll this spoken extremely fast obliged Miss Bates to stop for breath;\nand Emma said something very civil about the excellence of Miss\nFairfax's handwriting.\n\n\"You are extremely kind,\" replied Miss Bates, highly gratified;\n\"you who are such a judge, and write so beautifully yourself.\nI am sure there is nobody's praise that could give us so much pleasure\nas Miss Woodhouse's. My mother does not hear; she is a little deaf\nyou know.  Ma'am,\" addressing her, \"do you hear what Miss Woodhouse\nis so obliging to say about Jane's handwriting?\"\n\nAnd Emma had the advantage of hearing her own silly compliment\nrepeated twice over before the good old lady could comprehend it.\nShe was pondering, in the meanwhile, upon the possibility, without seeming\nvery rude, of making her escape from Jane Fairfax's letter, and had\nalmost resolved on hurrying away directly under some slight excuse,\nwhen Miss Bates turned to her again and seized her attention.\n\n\"My mother's deafness is very trifling you see--just nothing at all.\nBy only raising my voice, and saying any thing two or three times over,\nshe is sure to hear; but then she is used to my voice.  But it is very\nremarkable that she should always hear Jane better than she does me.\nJane speaks so distinct!  However, she will not find her grandmama\nat all deafer than she was two years ago; which is saying a great\ndeal at my mother's time of life--and it really is full two years,\nyou know, since she was here.  We never were so long without seeing\nher before, and as I was telling Mrs. Cole, we shall hardly know\nhow to make enough of her now.\"\n\n\"Are you expecting Miss Fairfax here soon?\"\n\n\"Oh yes; next week.\"\n\n\"Indeed!--that must be a very great pleasure.\"\n\n\"Thank you.  You are very kind.  Yes, next week.  Every body is\nso surprized; and every body says the same obliging things.  I am\nsure she will be as happy to see her friends at Highbury, as they\ncan be to see her.  Yes, Friday or Saturday; she cannot say which,\nbecause Colonel Campbell will be wanting the carriage himself one\nof those days.  So very good of them to send her the whole way!\nBut they always do, you know.  Oh yes, Friday or Saturday next.\nThat is what she writes about.  That is the reason of her writing out\nof rule, as we call it; for, in the common course, we should not have\nheard from her before next Tuesday or Wednesday.\"\n\n\"Yes, so I imagined.  I was afraid there could be little chance\nof my hearing any thing of Miss Fairfax to-day.\"\n\n\"So obliging of you!  No, we should not have heard, if it had not\nbeen for this particular circumstance, of her being to come here\nso soon.  My mother is so delighted!--for she is to be three months\nwith us at least.  Three months, she says so, positively, as I\nam going to have the pleasure of reading to you.  The case is,\nyou see, that the Campbells are going to Ireland.  Mrs. Dixon has\npersuaded her father and mother to come over and see her directly.\nThey had not intended to go over till the summer, but she is so\nimpatient to see them again--for till she married, last October,\nshe was never away from them so much as a week, which must make\nit very strange to be in different kingdoms, I was going to say,\nbut however different countries, and so she wrote a very urgent letter\nto her mother--or her father, I declare I do not know which it was,\nbut we shall see presently in Jane's letter--wrote in Mr. Dixon's\nname as well as her own, to press their coming over directly,\nand they would give them the meeting in Dublin, and take them back\nto their country seat, Baly-craig, a beautiful place, I fancy.\nJane has heard a great deal of its beauty; from Mr. Dixon, I mean--\nI do not know that she ever heard about it from any body else;\nbut it was very natural, you know, that he should like to speak\nof his own place while he was paying his addresses--and as Jane used\nto be very often walking out with them--for Colonel and Mrs. Campbell\nwere very particular about their daughter's not walking out\noften with only Mr. Dixon, for which I do not at all blame them;\nof course she heard every thing he might be telling Miss Campbell\nabout his own home in Ireland; and I think she wrote us word\nthat he had shewn them some drawings of the place, views that he\nhad taken himself.  He is a most amiable, charming young man,\nI believe.  Jane was quite longing to go to Ireland, from his account\nof things.\"\n\nAt this moment, an ingenious and animating suspicion entering\nEmma's brain with regard to Jane Fairfax, this charming Mr. Dixon,\nand the not going to Ireland, she said, with the insidious design\nof farther discovery,\n\n\"You must feel it very fortunate that Miss Fairfax should be allowed\nto come to you at such a time.  Considering the very particular\nfriendship between her and Mrs. Dixon, you could hardly have expected\nher to be excused from accompanying Colonel and Mrs. Campbell.\"\n\n\"Very true, very true, indeed.  The very thing that we have always\nbeen rather afraid of; for we should not have liked to have her\nat such a distance from us, for months together--not able to come\nif any thing was to happen.  But you see, every thing turns out\nfor the best.  They want her (Mr. and Mrs. Dixon) excessively to\ncome over with Colonel and Mrs. Campbell; quite depend upon it;\nnothing can be more kind or pressing than their _joint_ invitation,\nJane says, as you will hear presently; Mr. Dixon does not seem in the\nleast backward in any attention.  He is a most charming young man.\nEver since the service he rendered Jane at Weymouth, when they were\nout in that party on the water, and she, by the sudden whirling\nround of something or other among the sails, would have been dashed\ninto the sea at once, and actually was all but gone, if he had not,\nwith the greatest presence of mind, caught hold of her habit--\n(I can never think of it without trembling!)--But ever since we\nhad the history of that day, I have been so fond of Mr. Dixon!\"\n\n\"But, in spite of all her friends' urgency, and her own wish\nof seeing Ireland, Miss Fairfax prefers devoting the time to you\nand Mrs. Bates?\"\n\n\"Yes--entirely her own doing, entirely her own choice; and Colonel\nand Mrs. Campbell think she does quite right, just what they\nshould recommend; and indeed they particularly _wish_ her to try\nher native air, as she has not been quite so well as usual lately.\"\n\n\"I am concerned to hear of it.  I think they judge wisely.\nBut Mrs. Dixon must be very much disappointed.  Mrs. Dixon,\nI understand, has no remarkable degree of personal beauty; is not,\nby any means, to be compared with Miss Fairfax.\"\n\n\"Oh! no.  You are very obliging to say such things--but certainly not.\nThere is no comparison between them.  Miss Campbell always was\nabsolutely plain--but extremely elegant and amiable.\"\n\n\"Yes, that of course.\"\n\n\"Jane caught a bad cold, poor thing! so long ago as the 7th\nof November, (as I am going to read to you,) and has never been\nwell since.  A long time, is not it, for a cold to hang upon her?\nShe never mentioned it before, because she would not alarm us.\nJust like her! so considerate!--But however, she is so far from well,\nthat her kind friends the Campbells think she had better come home,\nand try an air that always agrees with her; and they have no doubt\nthat three or four months at Highbury will entirely cure her--\nand it is certainly a great deal better that she should come here,\nthan go to Ireland, if she is unwell. Nobody could nurse her, as we\nshould do.\"\n\n\"It appears to me the most desirable arrangement in the world.\"\n\n\"And so she is to come to us next Friday or Saturday, and the\nCampbells leave town in their way to Holyhead the Monday following--\nas you will find from Jane's letter.  So sudden!--You may guess,\ndear Miss Woodhouse, what a flurry it has thrown me in!\nIf it was not for the drawback of her illness--but I am afraid\nwe must expect to see her grown thin, and looking very poorly.\nI must tell you what an unlucky thing happened to me, as to that.\nI always make a point of reading Jane's letters through to myself first,\nbefore I read them aloud to my mother, you know, for fear of there\nbeing any thing in them to distress her.  Jane desired me to do it,\nso I always do:  and so I began to-day with my usual caution;\nbut no sooner did I come to the mention of her being unwell, than I\nburst out, quite frightened, with `Bless me! poor Jane is ill!'--\nwhich my mother, being on the watch, heard distinctly, and was sadly\nalarmed at.  However, when I read on, I found it was not near so bad\nas I had fancied at first; and I make so light of it now to her,\nthat she does not think much about it.  But I cannot imagine\nhow I could be so off my guard.  If Jane does not get well soon,\nwe will call in Mr. Perry.  The expense shall not be thought of;\nand though he is so liberal, and so fond of Jane that I dare say\nhe would not mean to charge any thing for attendance, we could not\nsuffer it to be so, you know.  He has a wife and family to maintain,\nand is not to be giving away his time.  Well, now I have just given you\na hint of what Jane writes about, we will turn to her letter, and I am\nsure she tells her own story a great deal better than I can tell it\nfor her.\"\n\n\"I am afraid we must be running away,\" said Emma, glancing at Harriet,\nand beginning to rise--\"My father will be expecting us.\nI had no intention, I thought I had no power of staying more than\nfive minutes, when I first entered the house.  I merely called,\nbecause I would not pass the door without inquiring after Mrs. Bates;\nbut I have been so pleasantly detained!  Now, however, we must wish\nyou and Mrs. Bates good morning.\"\n\nAnd not all that could be urged to detain her succeeded.\nShe regained the street--happy in this, that though much had been\nforced on her against her will, though she had in fact heard\nthe whole substance of Jane Fairfax's letter, she had been able\nto escape the letter itself.\n\n\n\nCHAPTER II\n\n\nJane Fairfax was an orphan, the only child of Mrs. Bates's\nyoungest daughter.\n\nThe marriage of Lieut. Fairfax of the _______ regiment of infantry,\nand Miss Jane Bates, had had its day of fame and pleasure,\nhope and interest; but nothing now remained of it, save the melancholy\nremembrance of him dying in action abroad--of his widow sinking\nunder consumption and grief soon afterwards--and this girl.\n\nBy birth she belonged to Highbury:  and when at three years old,\non losing her mother, she became the property, the charge,\nthe consolation, the fondling of her grandmother and aunt, there had\nseemed every probability of her being permanently fixed there;\nof her being taught only what very limited means could command,\nand growing up with no advantages of connexion or improvement,\nto be engrafted on what nature had given her in a pleasing person,\ngood understanding, and warm-hearted, well-meaning relations.\n\nBut the compassionate feelings of a friend of her father gave\na change to her destiny.  This was Colonel Campbell, who had\nvery highly regarded Fairfax, as an excellent officer and most\ndeserving young man; and farther, had been indebted to him for\nsuch attentions, during a severe camp-fever, as he believed had saved\nhis life.  These were claims which he did not learn to overlook,\nthough some years passed away from the death of poor Fairfax,\nbefore his own return to England put any thing in his power.\nWhen he did return, he sought out the child and took notice of her.\nHe was a married man, with only one living child, a girl,\nabout Jane's age:  and Jane became their guest, paying them long visits\nand growing a favourite with all; and before she was nine years old,\nhis daughter's great fondness for her, and his own wish of being\na real friend, united to produce an offer from Colonel Campbell\nof undertaking the whole charge of her education.  It was accepted;\nand from that period Jane had belonged to Colonel Campbell's family,\nand had lived with them entirely, only visiting her grandmother\nfrom time to time.\n\nThe plan was that she should be brought up for educating others;\nthe very few hundred pounds which she inherited from her father\nmaking independence impossible.  To provide for her otherwise\nwas out of Colonel Campbell's power; for though his income, by pay\nand appointments, was handsome, his fortune was moderate and must\nbe all his daughter's; but, by giving her an education, he hoped\nto be supplying the means of respectable subsistence hereafter.\n\nSuch was Jane Fairfax's history.  She had fallen into good hands,\nknown nothing but kindness from the Campbells, and been given\nan excellent education.  Living constantly with right-minded\nand well-informed people, her heart and understanding had received\nevery advantage of discipline and culture; and Colonel Campbell's\nresidence being in London, every lighter talent had been done\nfull justice to, by the attendance of first-rate masters.\nHer disposition and abilities were equally worthy of all that\nfriendship could do; and at eighteen or nineteen she was, as far\nas such an early age can be qualified for the care of children,\nfully competent to the office of instruction herself; but she\nwas too much beloved to be parted with.  Neither father nor mother\ncould promote, and the daughter could not endure it.  The evil day\nwas put off.  It was easy to decide that she was still too young;\nand Jane remained with them, sharing, as another daughter, in all\nthe rational pleasures of an elegant society, and a judicious\nmixture of home and amusement, with only the drawback of the future,\nthe sobering suggestions of her own good understanding to remind\nher that all this might soon be over.\n\nThe affection of the whole family, the warm attachment of Miss\nCampbell in particular, was the more honourable to each party\nfrom the circumstance of Jane's decided superiority both in beauty\nand acquirements.  That nature had given it in feature could not\nbe unseen by the young woman, nor could her higher powers of mind\nbe unfelt by the parents.  They continued together with unabated\nregard however, till the marriage of Miss Campbell, who by that chance,\nthat luck which so often defies anticipation in matrimonial affairs,\ngiving attraction to what is moderate rather than to what is superior,\nengaged the affections of Mr. Dixon, a young man, rich and agreeable,\nalmost as soon as they were acquainted; and was eligibly\nand happily settled, while Jane Fairfax had yet her bread to earn.\n\nThis event had very lately taken place; too lately for any thing to be\nyet attempted by her less fortunate friend towards entering on her path\nof duty; though she had now reached the age which her own judgment\nhad fixed on for beginning.  She had long resolved that one-and-twenty\nshould be the period.  With the fortitude of a devoted novitiate,\nshe had resolved at one-and-twenty to complete the sacrifice,\nand retire from all the pleasures of life, of rational intercourse,\nequal society, peace and hope, to penance and mortification for ever.\n\nThe good sense of Colonel and Mrs. Campbell could not oppose such\na resolution, though their feelings did.  As long as they lived,\nno exertions would be necessary, their home might be hers for ever;\nand for their own comfort they would have retained her wholly;\nbut this would be selfishness:--what must be at last, had better\nbe soon.  Perhaps they began to feel it might have been kinder\nand wiser to have resisted the temptation of any delay, and spared\nher from a taste of such enjoyments of ease and leisure as must\nnow be relinquished.  Still, however, affection was glad to catch\nat any reasonable excuse for not hurrying on the wretched moment.\nShe had never been quite well since the time of their daughter's marriage;\nand till she should have completely recovered her usual strength,\nthey must forbid her engaging in duties, which, so far from being\ncompatible with a weakened frame and varying spirits, seemed,\nunder the most favourable circumstances, to require something\nmore than human perfection of body and mind to be discharged with\ntolerable comfort.\n\nWith regard to her not accompanying them to Ireland, her account\nto her aunt contained nothing but truth, though there might be some\ntruths not told.  It was her own choice to give the time of their\nabsence to Highbury; to spend, perhaps, her last months of perfect\nliberty with those kind relations to whom she was so very dear:\nand the Campbells, whatever might be their motive or motives,\nwhether single, or double, or treble, gave the arrangement\ntheir ready sanction, and said, that they depended more on a few\nmonths spent in her native air, for the recovery of her health,\nthan on any thing else.  Certain it was that she was to come;\nand that Highbury, instead of welcoming that perfect novelty which\nhad been so long promised it--Mr. Frank Churchill--must put up for\nthe present with Jane Fairfax, who could bring only the freshness\nof a two years' absence.\n\nEmma was sorry;--to have to pay civilities to a person she did\nnot like through three long months!--to be always doing more than\nshe wished, and less than she ought!  Why she did not like Jane\nFairfax might be a difficult question to answer; Mr. Knightley\nhad once told her it was because she saw in her the really\naccomplished young woman, which she wanted to be thought herself;\nand though the accusation had been eagerly refuted at the time,\nthere were moments of self-examination in which her conscience could\nnot quite acquit her.  But \"she could never get acquainted with her:\nshe did not know how it was, but there was such coldness and reserve--\nsuch apparent indifference whether she pleased or not--and then,\nher aunt was such an eternal talker!--and she was made such a fuss\nwith by every body!--and it had been always imagined that they were\nto be so intimate--because their ages were the same, every body had\nsupposed they must be so fond of each other.\"  These were her reasons--\nshe had no better.\n\nIt was a dislike so little just--every imputed fault was so magnified\nby fancy, that she never saw Jane Fairfax the first time after any\nconsiderable absence, without feeling that she had injured her;\nand now, when the due visit was paid, on her arrival, after a two years'\ninterval, she was particularly struck with the very appearance\nand manners, which for those two whole years she had been depreciating.\nJane Fairfax was very elegant, remarkably elegant; and she had\nherself the highest value for elegance.  Her height was pretty,\njust such as almost every body would think tall, and nobody could\nthink very tall; her figure particularly graceful; her size a most\nbecoming medium, between fat and thin, though a slight appearance\nof ill-health seemed to point out the likeliest evil of the two.\nEmma could not but feel all this; and then, her face--her features--\nthere was more beauty in them altogether than she had remembered;\nit was not regular, but it was very pleasing beauty.  Her eyes,\na deep grey, with dark eye-lashes and eyebrows, had never been denied\ntheir praise; but the skin, which she had been used to cavil at,\nas wanting colour, had a clearness and delicacy which really needed\nno fuller bloom.  It was a style of beauty, of which elegance\nwas the reigning character, and as such, she must, in honour,\nby all her principles, admire it:--elegance, which, whether of person\nor of mind, she saw so little in Highbury.  There, not to be vulgar,\nwas distinction, and merit.\n\nIn short, she sat, during the first visit, looking at Jane Fairfax\nwith twofold complacency; the sense of pleasure and the sense\nof rendering justice, and was determining that she would dislike\nher no longer.  When she took in her history, indeed, her situation,\nas well as her beauty; when she considered what all this elegance\nwas destined to, what she was going to sink from, how she was going\nto live, it seemed impossible to feel any thing but compassion\nand respect; especially, if to every well-known particular entitling\nher to interest, were added the highly probable circumstance\nof an attachment to Mr. Dixon, which she had so naturally started\nto herself.  In that case, nothing could be more pitiable\nor more honourable than the sacrifices she had resolved on.\nEmma was very willing now to acquit her of having seduced\nMr. Dixon's actions from his wife, or of any thing mischievous\nwhich her imagination had suggested at first.  If it were love,\nit might be simple, single, successless love on her side alone.\nShe might have been unconsciously sucking in the sad poison,\nwhile a sharer of his conversation with her friend; and from the best,\nthe purest of motives, might now be denying herself this visit\nto Ireland, and resolving to divide herself effectually from\nhim and his connexions by soon beginning her career of laborious duty.\n\nUpon the whole, Emma left her with such softened, charitable feelings,\nas made her look around in walking home, and lament that Highbury\nafforded no young man worthy of giving her independence;\nnobody that she could wish to scheme about for her.\n\nThese were charming feelings--but not lasting.  Before she had\ncommitted herself by any public profession of eternal friendship for\nJane Fairfax, or done more towards a recantation of past prejudices\nand errors, than saying to Mr. Knightley, \"She certainly is handsome;\nshe is better than handsome!\"  Jane had spent an evening at Hartfield\nwith her grandmother and aunt, and every thing was relapsing much\ninto its usual state.  Former provocations reappeared.  The aunt\nwas as tiresome as ever; more tiresome, because anxiety for her\nhealth was now added to admiration of her powers; and they had to\nlisten to the description of exactly how little bread and butter\nshe ate for breakfast, and how small a slice of mutton for dinner,\nas well as to see exhibitions of new caps and new workbags for her\nmother and herself; and Jane's offences rose again.  They had music;\nEmma was obliged to play; and the thanks and praise which necessarily\nfollowed appeared to her an affectation of candour, an air\nof greatness, meaning only to shew off in higher style her own very\nsuperior performance.  She was, besides, which was the worst of all,\nso cold, so cautious!  There was no getting at her real opinion.\nWrapt up in a cloak of politeness, she seemed determined\nto hazard nothing.  She was disgustingly, was suspiciously reserved.\n\nIf any thing could be more, where all was most, she was more\nreserved on the subject of Weymouth and the Dixons than any thing.\nShe seemed bent on giving no real insight into Mr. Dixon's character,\nor her own value for his company, or opinion of the suitableness\nof the match.  It was all general approbation and smoothness;\nnothing delineated or distinguished.  It did her no service however.\nHer caution was thrown away.  Emma saw its artifice, and returned\nto her first surmises.  There probably _was_ something more to conceal\nthan her own preference; Mr. Dixon, perhaps, had been very near\nchanging one friend for the other, or been fixed only to Miss Campbell,\nfor the sake of the future twelve thousand pounds.\n\nThe like reserve prevailed on other topics.  She and Mr. Frank Churchill\nhad been at Weymouth at the same time.  It was known that they were\na little acquainted; but not a syllable of real information could Emma\nprocure as to what he truly was.  \"Was he handsome?\"--\"She believed\nhe was reckoned a very fine young man.\"  \"Was he agreeable?\"--\n\"He was generally thought so.\"  \"Did he appear a sensible young man;\na young man of information?\"--\"At a watering-place, or in a common\nLondon acquaintance, it was difficult to decide on such points.\nManners were all that could be safely judged of, under a much longer\nknowledge than they had yet had of Mr. Churchill.  She believed\nevery body found his manners pleasing.\"  Emma could not forgive her.\n\n\n\nCHAPTER III\n\n\nEmma could not forgive her;--but as neither provocation nor resentment\nwere discerned by Mr. Knightley, who had been of the party, and had\nseen only proper attention and pleasing behaviour on each side,\nhe was expressing the next morning, being at Hartfield again on\nbusiness with Mr. Woodhouse, his approbation of the whole; not so\nopenly as he might have done had her father been out of the room,\nbut speaking plain enough to be very intelligible to Emma.\nHe had been used to think her unjust to Jane, and had now great\npleasure in marking an improvement.\n\n\"A very pleasant evening,\" he began, as soon as Mr. Woodhouse\nhad been talked into what was necessary, told that he understood,\nand the papers swept away;--\"particularly pleasant.  You and Miss\nFairfax gave us some very good music.  I do not know a more\nluxurious state, sir, than sitting at one's ease to be entertained\na whole evening by two such young women; sometimes with music\nand sometimes with conversation.  I am sure Miss Fairfax must\nhave found the evening pleasant, Emma.  You left nothing undone.\nI was glad you made her play so much, for having no instrument\nat her grandmother's, it must have been a real indulgence.\"\n\n\"I am happy you approved,\" said Emma, smiling; \"but I hope I am\nnot often deficient in what is due to guests at Hartfield.\"\n\n\"No, my dear,\" said her father instantly; \"_that_ I am sure you\nare not.  There is nobody half so attentive and civil as you are.\nIf any thing, you are too attentive.  The muffin last night--if it\nhad been handed round once, I think it would have been enough.\"\n\n\"No,\" said Mr. Knightley, nearly at the same time; \"you are not\noften deficient; not often deficient either in manner or comprehension.\nI think you understand me, therefore.\"\n\nAn arch look expressed--\"I understand you well enough;\" but she\nsaid only, \"Miss Fairfax is reserved.\"\n\n\"I always told you she was--a little; but you will soon overcome\nall that part of her reserve which ought to be overcome, all that\nhas its foundation in diffidence.  What arises from discretion\nmust be honoured.\"\n\n\"You think her diffident.  I do not see it.\"\n\n\"My dear Emma,\" said he, moving from his chair into one close\nby her, \"you are not going to tell me, I hope, that you\nhad not a pleasant evening.\"\n\n\"Oh! no; I was pleased with my own perseverance in asking questions;\nand amused to think how little information I obtained.\"\n\n\"I am disappointed,\" was his only answer.\n\n\"I hope every body had a pleasant evening,\" said Mr. Woodhouse,\nin his quiet way.  \"I had.  Once, I felt the fire rather too much;\nbut then I moved back my chair a little, a very little, and it did\nnot disturb me.  Miss Bates was very chatty and good-humoured,\nas she always is, though she speaks rather too quick.  However,\nshe is very agreeable, and Mrs. Bates too, in a different way.\nI like old friends; and Miss Jane Fairfax is a very pretty sort of\nyoung lady, a very pretty and a very well-behaved young lady indeed.\nShe must have found the evening agreeable, Mr. Knightley, because she\nhad Emma.\"\n\n\"True, sir; and Emma, because she had Miss Fairfax.\"\n\nEmma saw his anxiety, and wishing to appease it, at least for\nthe present, said, and with a sincerity which no one could question--\n\n\"She is a sort of elegant creature that one cannot keep one's eyes from.\nI am always watching her to admire; and I do pity her from my heart.\"\n\nMr. Knightley looked as if he were more gratified than he cared\nto express; and before he could make any reply, Mr. Woodhouse,\nwhose thoughts were on the Bates's, said--\n\n\"It is a great pity that their circumstances should be so confined!\na great pity indeed! and I have often wished--but it is so little one\ncan venture to do--small, trifling presents, of any thing uncommon--\nNow we have killed a porker, and Emma thinks of sending them\na loin or a leg; it is very small and delicate--Hartfield pork is\nnot like any other pork--but still it is pork--and, my dear Emma,\nunless one could be sure of their making it into steaks, nicely fried,\nas ours are fried, without the smallest grease, and not roast it,\nfor no stomach can bear roast pork--I think we had better send the leg--\ndo not you think so, my dear?\"\n\n\"My dear papa, I sent the whole hind-quarter. I knew you would wish it.\nThere will be the leg to be salted, you know, which is so very nice,\nand the loin to be dressed directly in any manner they like.\"\n\n\"That's right, my dear, very right.  I had not thought of it before,\nbut that is the best way.  They must not over-salt the leg; and then,\nif it is not over-salted, and if it is very thoroughly boiled,\njust as Serle boils ours, and eaten very moderately of, with a\nboiled turnip, and a little carrot or parsnip, I do not consider\nit unwholesome.\"\n\n\"Emma,\" said Mr. Knightley presently, \"I have a piece of news for you.\nYou like news--and I heard an article in my way hither that I think\nwill interest you.\"\n\n\"News!  Oh! yes, I always like news.  What is it?--why do you\nsmile so?--where did you hear it?--at Randalls?\"\n\nHe had time only to say,\n\n\"No, not at Randalls; I have not been near Randalls,\" when the door\nwas thrown open, and Miss Bates and Miss Fairfax walked into the room.\nFull of thanks, and full of news, Miss Bates knew not which to\ngive quickest.  Mr. Knightley soon saw that he had lost his moment,\nand that not another syllable of communication could rest with him.\n\n\"Oh! my dear sir, how are you this morning?  My dear Miss Woodhouse--\nI come quite over-powered. Such a beautiful hind-quarter of pork!\nYou are too bountiful!  Have you heard the news?  Mr. Elton is going\nto be married.\"\n\nEmma had not had time even to think of Mr. Elton, and she was\nso completely surprized that she could not avoid a little start,\nand a little blush, at the sound.\n\n\"There is my news:--I thought it would interest you,\"\nsaid Mr. Knightley, with a smile which implied a conviction\nof some part of what had passed between them.\n\n\"But where could _you_ hear it?\" cried Miss Bates.  \"Where could\nyou possibly hear it, Mr. Knightley?  For it is not five minutes\nsince I received Mrs. Cole's note--no, it cannot be more than five--\nor at least ten--for I had got my bonnet and spencer on, just ready\nto come out--I was only gone down to speak to Patty again about\nthe pork--Jane was standing in the passage--were not you, Jane?--\nfor my mother was so afraid that we had not any salting-pan\nlarge enough.  So I said I would go down and see, and Jane said,\n`Shall I go down instead? for I think you have a little cold,\nand Patty has been washing the kitchen.'--`Oh! my dear,'\nsaid I--well, and just then came the note.  A Miss Hawkins--\nthat's all I know.  A Miss Hawkins of Bath.  But, Mr. Knightley,\nhow could you possibly have heard it? for the very moment Mr. Cole\ntold Mrs. Cole of it, she sat down and wrote to me.  A Miss Hawkins--\"\n\n\"I was with Mr. Cole on business an hour and a half ago.\nHe had just read Elton's letter as I was shewn in, and handed it\nto me directly.\"\n\n\"Well! that is quite--I suppose there never was a piece of news more\ngenerally interesting.  My dear sir, you really are too bountiful.\nMy mother desires her very best compliments and regards, and a\nthousand thanks, and says you really quite oppress her.\"\n\n\"We consider our Hartfield pork,\" replied Mr. Woodhouse--\"indeed it\ncertainly is, so very superior to all other pork, that Emma and I\ncannot have a greater pleasure than--\"\n\n\"Oh! my dear sir, as my mother says, our friends are only too good\nto us.  If ever there were people who, without having great wealth\nthemselves, had every thing they could wish for, I am sure it is us.\nWe may well say that `our lot is cast in a goodly heritage.'\nWell, Mr. Knightley, and so you actually saw the letter; well--\"\n\n\"It was short--merely to announce--but cheerful, exulting, of course.\"--\nHere was a sly glance at Emma.  \"He had been so fortunate as to--\nI forget the precise words--one has no business to remember them.\nThe information was, as you state, that he was going to be married\nto a Miss Hawkins.  By his style, I should imagine it just settled.\"\n\n\"Mr. Elton going to be married!\" said Emma, as soon as she could speak.\n\"He will have every body's wishes for his happiness.\"\n\n\"He is very young to settle,\" was Mr. Woodhouse's observation.\n\"He had better not be in a hurry.  He seemed to me very well off\nas he was.  We were always glad to see him at Hartfield.\"\n\n\"A new neighbour for us all, Miss Woodhouse!\" said Miss Bates,\njoyfully; \"my mother is so pleased!--she says she cannot\nbear to have the poor old Vicarage without a mistress.\nThis is great news, indeed.  Jane, you have never seen\nMr. Elton!--no wonder that you have such a curiosity to see him.\"\n\nJane's curiosity did not appear of that absorbing nature as wholly\nto occupy her.\n\n\"No--I have never seen Mr. Elton,\" she replied, starting on this appeal;\n\"is he--is he a tall man?\"\n\n\"Who shall answer that question?\" cried Emma.  \"My father would\nsay `yes,' Mr. Knightley `no;' and Miss Bates and I that he is\njust the happy medium.  When you have been here a little longer,\nMiss Fairfax, you will understand that Mr. Elton is the standard\nof perfection in Highbury, both in person and mind.\"\n\n\"Very true, Miss Woodhouse, so she will.  He is the very best\nyoung man--But, my dear Jane, if you remember, I told you yesterday\nhe was precisely the height of Mr. Perry.  Miss Hawkins,--I dare say,\nan excellent young woman.  His extreme attention to my mother--\nwanting her to sit in the vicarage pew, that she might hear the better,\nfor my mother is a little deaf, you know--it is not much, but she\ndoes not hear quite quick.  Jane says that Colonel Campbell is a\nlittle deaf.  He fancied bathing might be good for it--the warm bath--\nbut she says it did him no lasting benefit.  Colonel Campbell,\nyou know, is quite our angel.  And Mr. Dixon seems a very charming\nyoung man, quite worthy of him.  It is such a happiness when good\npeople get together--and they always do.  Now, here will be Mr. Elton\nand Miss Hawkins; and there are the Coles, such very good people;\nand the Perrys--I suppose there never was a happier or a better couple\nthan Mr. and Mrs. Perry.  I say, sir,\" turning to Mr. Woodhouse,\n\"I think there are few places with such society as Highbury.\nI always say, we are quite blessed in our neighbours.--My dear sir,\nif there is one thing my mother loves better than another, it is pork--\na roast loin of pork--\"\n\n\"As to who, or what Miss Hawkins is, or how long he has been\nacquainted with her,\" said Emma, \"nothing I suppose can be known.\nOne feels that it cannot be a very long acquaintance.  He has been\ngone only four weeks.\"\n\nNobody had any information to give; and, after a few more wonderings,\nEmma said,\n\n\"You are silent, Miss Fairfax--but I hope you mean to take\nan interest in this news.  You, who have been hearing and seeing\nso much of late on these subjects, who must have been so deep\nin the business on Miss Campbell's account--we shall not excuse\nyour being indifferent about Mr. Elton and Miss Hawkins.\"\n\n\"When I have seen Mr. Elton,\" replied Jane, \"I dare say I\nshall be interested--but I believe it requires _that_ with me.\nAnd as it is some months since Miss Campbell married, the impression\nmay be a little worn off.\"\n\n\"Yes, he has been gone just four weeks, as you observe, Miss Woodhouse,\"\nsaid Miss Bates, \"four weeks yesterday.--A Miss Hawkins!--Well, I had\nalways rather fancied it would be some young lady hereabouts;\nnot that I ever--Mrs. Cole once whispered to me--but I immediately said,\n`No, Mr. Elton is a most worthy young man--but'--In short, I do\nnot think I am particularly quick at those sort of discoveries.\nI do not pretend to it.  What is before me, I see.  At the same time,\nnobody could wonder if Mr. Elton should have aspired--Miss Woodhouse\nlets me chatter on, so good-humouredly. She knows I would not\noffend for the world.  How does Miss Smith do?  She seems quite\nrecovered now.  Have you heard from Mrs. John Knightley lately?\nOh! those dear little children.  Jane, do you know I always fancy\nMr. Dixon like Mr. John Knightley.  I mean in person--tall, and with\nthat sort of look--and not very talkative.\"\n\n\"Quite wrong, my dear aunt; there is no likeness at all.\"\n\n\"Very odd! but one never does form a just idea of any body beforehand.\nOne takes up a notion, and runs away with it.  Mr. Dixon, you say,\nis not, strictly speaking, handsome?\"\n\n\"Handsome!  Oh! no--far from it--certainly plain.  I told you he\nwas plain.\"\n\n\"My dear, you said that Miss Campbell would not allow him to be plain,\nand that you yourself--\"\n\n\"Oh! as for me, my judgment is worth nothing.  Where I have a regard,\nI always think a person well-looking. But I gave what I believed\nthe general opinion, when I called him plain.\"\n\n\"Well, my dear Jane, I believe we must be running away.\nThe weather does not look well, and grandmama will be uneasy.\nYou are too obliging, my dear Miss Woodhouse; but we really must\ntake leave.  This has been a most agreeable piece of news indeed.\nI shall just go round by Mrs. Cole's; but I shall not stop three minutes:\nand, Jane, you had better go home directly--I would not have you\nout in a shower!--We think she is the better for Highbury already.\nThank you, we do indeed.  I shall not attempt calling on Mrs. Goddard,\nfor I really do not think she cares for any thing but _boiled_ pork:\nwhen we dress the leg it will be another thing.  Good morning to you,\nmy dear sir.  Oh!  Mr. Knightley is coming too.  Well, that is\nso very!--I am sure if Jane is tired, you will be so kind as to\ngive her your arm.--Mr. Elton, and Miss Hawkins!--Good morning\nto you.\"\n\nEmma, alone with her father, had half her attention wanted by him\nwhile he lamented that young people would be in such a hurry to marry--\nand to marry strangers too--and the other half she could give\nto her own view of the subject.  It was to herself an amusing\nand a very welcome piece of news, as proving that Mr. Elton\ncould not have suffered long; but she was sorry for Harriet:\nHarriet must feel it--and all that she could hope was, by giving\nthe first information herself, to save her from hearing it abruptly\nfrom others.  It was now about the time that she was likely to call.\nIf she were to meet Miss Bates in her way!--and upon its beginning\nto rain, Emma was obliged to expect that the weather would be\ndetaining her at Mrs. Goddard's, and that the intelligence would\nundoubtedly rush upon her without preparation.\n\nThe shower was heavy, but short; and it had not been over five minutes,\nwhen in came Harriet, with just the heated, agitated look which\nhurrying thither with a full heart was likely to give; and the\n\"Oh! Miss Woodhouse, what do you think has happened!\" which instantly\nburst forth, had all the evidence of corresponding perturbation.\nAs the blow was given, Emma felt that she could not now shew greater\nkindness than in listening; and Harriet, unchecked, ran eagerly\nthrough what she had to tell.  \"She had set out from Mrs. Goddard's\nhalf an hour ago--she had been afraid it would rain--she had been\nafraid it would pour down every moment--but she thought she might\nget to Hartfield first--she had hurried on as fast as possible;\nbut then, as she was passing by the house where a young woman\nwas making up a gown for her, she thought she would just step\nin and see how it went on; and though she did not seem to stay\nhalf a moment there, soon after she came out it began to rain,\nand she did not know what to do; so she ran on directly, as fast\nas she could, and took shelter at Ford's.\"--Ford's was the principal\nwoollen-draper, linen-draper, and haberdasher's shop united;\nthe shop first in size and fashion in the place.--\"And so,\nthere she had set, without an idea of any thing in the world,\nfull ten minutes, perhaps--when, all of a sudden, who should come in--\nto be sure it was so very odd!--but they always dealt at Ford's--\nwho should come in, but Elizabeth Martin and her brother!--\nDear Miss Woodhouse! only think.  I thought I should have fainted.\nI did not know what to do.  I was sitting near the door--Elizabeth saw\nme directly; but he did not; he was busy with the umbrella.\nI am sure she saw me, but she looked away directly, and took\nno notice; and they both went to quite the farther end of the shop;\nand I kept sitting near the door!--Oh! dear; I was so miserable!\nI am sure I must have been as white as my gown.  I could not go away\nyou know, because of the rain; but I did so wish myself anywhere\nin the world but there.--Oh! dear, Miss Woodhouse--well, at last,\nI fancy, he looked round and saw me; for instead of going\non with her buyings, they began whispering to one another.\nI am sure they were talking of me; and I could not help thinking\nthat he was persuading her to speak to me--(do you think he was,\nMiss Woodhouse?)--for presently she came forward--came quite up\nto me, and asked me how I did, and seemed ready to shake hands,\nif I would.  She did not do any of it in the same way that she used;\nI could see she was altered; but, however, she seemed to _try_ to be\nvery friendly, and we shook hands, and stood talking some time;\nbut I know no more what I said--I was in such a tremble!--I remember\nshe said she was sorry we never met now; which I thought almost\ntoo kind!  Dear, Miss Woodhouse, I was absolutely miserable!\nBy that time, it was beginning to hold up, and I was determined\nthat nothing should stop me from getting away--and then--only think!--\nI found he was coming up towards me too--slowly you know, and as\nif he did not quite know what to do; and so he came and spoke,\nand I answered--and I stood for a minute, feeling dreadfully,\nyou know, one can't tell how; and then I took courage, and said it\ndid not rain, and I must go; and so off I set; and I had not got\nthree yards from the door, when he came after me, only to say,\nif I was going to Hartfield, he thought I had much better go round\nby Mr. Cole's stables, for I should find the near way quite floated\nby this rain.  Oh! dear, I thought it would have been the death of me!\nSo I said, I was very much obliged to him:  you know I could\nnot do less; and then he went back to Elizabeth, and I came round\nby the stables--I believe I did--but I hardly knew where I was,\nor any thing about it.  Oh!  Miss Woodhouse, I would rather done\nany thing than have it happen:  and yet, you know, there was a sort\nof satisfaction in seeing him behave so pleasantly and so kindly.\nAnd Elizabeth, too.  Oh!  Miss Woodhouse, do talk to me and make\nme comfortable again.\"\n\nVery sincerely did Emma wish to do so; but it was not immediately in\nher power.  She was obliged to stop and think.  She was not thoroughly\ncomfortable herself.  The young man's conduct, and his sister's,\nseemed the result of real feeling, and she could not but pity them.\nAs Harriet described it, there had been an interesting mixture\nof wounded affection and genuine delicacy in their behaviour.\nBut she had believed them to be well-meaning, worthy people before;\nand what difference did this make in the evils of the connexion?\nIt was folly to be disturbed by it.  Of course, he must be sorry\nto lose her--they must be all sorry.  Ambition, as well as love,\nhad probably been mortified.  They might all have hoped to rise\nby Harriet's acquaintance:  and besides, what was the value of\nHarriet's description?--So easily pleased--so little discerning;--\nwhat signified her praise?\n\nShe exerted herself, and did try to make her comfortable,\nby considering all that had passed as a mere trifle, and quite\nunworthy of being dwelt on,\n\n\"It might be distressing, for the moment,\" said she; \"but you seem\nto have behaved extremely well; and it is over--and may never--\ncan never, as a first meeting, occur again, and therefore you need\nnot think about it.\"\n\nHarriet said, \"very true,\" and she \"would not think about it;\"\nbut still she talked of it--still she could talk of nothing else;\nand Emma, at last, in order to put the Martins out of her head,\nwas obliged to hurry on the news, which she had meant to give\nwith so much tender caution; hardly knowing herself whether\nto rejoice or be angry, ashamed or only amused, at such a state\nof mind in poor Harriet--such a conclusion of Mr. Elton's importance\nwith her!\n\nMr. Elton's rights, however, gradually revived.  Though she did not\nfeel the first intelligence as she might have done the day before,\nor an hour before, its interest soon increased; and before their\nfirst conversation was over, she had talked herself into all the\nsensations of curiosity, wonder and regret, pain and pleasure,\nas to this fortunate Miss Hawkins, which could conduce to place\nthe Martins under proper subordination in her fancy.\n\nEmma learned to be rather glad that there had been such a meeting.\nIt had been serviceable in deadening the first shock, without retaining\nany influence to alarm.  As Harriet now lived, the Martins could\nnot get at her, without seeking her, where hitherto they had wanted\neither the courage or the condescension to seek her; for since her\nrefusal of the brother, the sisters never had been at Mrs. Goddard's;\nand a twelvemonth might pass without their being thrown together again,\nwith any necessity, or even any power of speech.\n\n\n\nCHAPTER IV\n\n\nHuman nature is so well disposed towards those who are in\ninteresting situations, that a young person, who either marries\nor dies, is sure of being kindly spoken of.\n\nA week had not passed since Miss Hawkins's name was first\nmentioned in Highbury, before she was, by some means or other,\ndiscovered to have every recommendation of person and mind;\nto be handsome, elegant, highly accomplished, and perfectly amiable:\nand when Mr. Elton himself arrived to triumph in his happy prospects,\nand circulate the fame of her merits, there was very little more\nfor him to do, than to tell her Christian name, and say whose\nmusic she principally played.\n\nMr. Elton returned, a very happy man.  He had gone away rejected\nand mortified--disappointed in a very sanguine hope, after a series\nof what appeared to him strong encouragement; and not only losing\nthe right lady, but finding himself debased to the level of a very\nwrong one.  He had gone away deeply offended--he came back engaged\nto another--and to another as superior, of course, to the first,\nas under such circumstances what is gained always is to what is lost.\nHe came back gay and self-satisfied, eager and busy, caring nothing\nfor Miss Woodhouse, and defying Miss Smith.\n\nThe charming Augusta Hawkins, in addition to all the usual advantages\nof perfect beauty and merit, was in possession of an independent fortune,\nof so many thousands as would always be called ten; a point of\nsome dignity, as well as some convenience:  the story told well;\nhe had not thrown himself away--he had gained a woman of 10,000 l.\nor thereabouts; and he had gained her with such delightful rapidity--\nthe first hour of introduction had been so very soon followed by\ndistinguishing notice; the history which he had to give Mrs. Cole\nof the rise and progress of the affair was so glorious--the steps\nso quick, from the accidental rencontre, to the dinner at Mr. Green's,\nand the party at Mrs. Brown's--smiles and blushes rising in importance--\nwith consciousness and agitation richly scattered--the lady\nhad been so easily impressed--so sweetly disposed--had in short,\nto use a most intelligible phrase, been so very ready to have him,\nthat vanity and prudence were equally contented.\n\nHe had caught both substance and shadow--both fortune and affection,\nand was just the happy man he ought to be; talking only of himself\nand his own concerns--expecting to be congratulated--ready to be\nlaughed at--and, with cordial, fearless smiles, now addressing\nall the young ladies of the place, to whom, a few weeks ago,\nhe would have been more cautiously gallant.\n\nThe wedding was no distant event, as the parties had only themselves\nto please, and nothing but the necessary preparations to wait for;\nand when he set out for Bath again, there was a general expectation,\nwhich a certain glance of Mrs. Cole's did not seem to contradict,\nthat when he next entered Highbury he would bring his bride.\n\nDuring his present short stay, Emma had barely seen him; but just\nenough to feel that the first meeting was over, and to give her\nthe impression of his not being improved by the mixture of pique\nand pretension, now spread over his air.  She was, in fact,\nbeginning very much to wonder that she had ever thought him pleasing\nat all; and his sight was so inseparably connected with some very\ndisagreeable feelings, that, except in a moral light, as a penance,\na lesson, a source of profitable humiliation to her own mind,\nshe would have been thankful to be assured of never seeing him again.\nShe wished him very well; but he gave her pain, and his welfare\ntwenty miles off would administer most satisfaction.\n\nThe pain of his continued residence in Highbury, however, must certainly\nbe lessened by his marriage.  Many vain solicitudes would be prevented--\nmany awkwardnesses smoothed by it.  A _Mrs._ _Elton_ would be an excuse for\nany change of intercourse; former intimacy might sink without remark.\nIt would be almost beginning their life of civility again.\n\nOf the lady, individually, Emma thought very little.  She was good\nenough for Mr. Elton, no doubt; accomplished enough for Highbury--\nhandsome enough--to look plain, probably, by Harriet's side.\nAs to connexion, there Emma was perfectly easy; persuaded,\nthat after all his own vaunted claims and disdain of Harriet,\nhe had done nothing.  On that article, truth seemed attainable.\n_What_ she was, must be uncertain; but _who_ she was, might be found out;\nand setting aside the 10,000 l., it did not appear that she was at\nall Harriet's superior.  She brought no name, no blood, no alliance.\nMiss Hawkins was the youngest of the two daughters of a Bristol--\nmerchant, of course, he must be called; but, as the whole of the\nprofits of his mercantile life appeared so very moderate, it was\nnot unfair to guess the dignity of his line of trade had been very\nmoderate also.  Part of every winter she had been used to spend in Bath;\nbut Bristol was her home, the very heart of Bristol; for though\nthe father and mother had died some years ago, an uncle remained--\nin the law line--nothing more distinctly honourable was hazarded\nof him, than that he was in the law line; and with him the daughter\nhad lived.  Emma guessed him to be the drudge of some attorney,\nand too stupid to rise.  And all the grandeur of the connexion\nseemed dependent on the elder sister, who was _very_ _well_ _married_,\nto a gentleman in a _great_ _way_, near Bristol, who kept two carriages!\nThat was the wind-up of the history; that was the glory of\nMiss Hawkins.\n\nCould she but have given Harriet her feelings about it all!\nShe had talked her into love; but, alas! she was not so easily to be\ntalked out of it.  The charm of an object to occupy the many vacancies\nof Harriet's mind was not to be talked away.  He might be superseded\nby another; he certainly would indeed; nothing could be clearer;\neven a Robert Martin would have been sufficient; but nothing else,\nshe feared, would cure her.  Harriet was one of those, who,\nhaving once begun, would be always in love.  And now, poor girl!\nshe was considerably worse from this reappearance of Mr. Elton.\nShe was always having a glimpse of him somewhere or other.  Emma saw\nhim only once; but two or three times every day Harriet was sure\n_just_ to meet with him, or _just_ to miss him, _just_ to hear his voice,\nor see his shoulder, _just_ to have something occur to preserve him\nin her fancy, in all the favouring warmth of surprize and conjecture.\nShe was, moreover, perpetually hearing about him; for, excepting when\nat Hartfield, she was always among those who saw no fault in Mr. Elton,\nand found nothing so interesting as the discussion of his concerns;\nand every report, therefore, every guess--all that had already\noccurred, all that might occur in the arrangement of his affairs,\ncomprehending income, servants, and furniture, was continually\nin agitation around her.  Her regard was receiving strength by\ninvariable praise of him, and her regrets kept alive, and feelings\nirritated by ceaseless repetitions of Miss Hawkins's happiness,\nand continual observation of, how much he seemed attached!--\nhis air as he walked by the house--the very sitting of his hat,\nbeing all in proof of how much he was in love!\n\nHad it been allowable entertainment, had there been no pain\nto her friend, or reproach to herself, in the waverings of\nHarriet's mind, Emma would have been amused by its variations.\nSometimes Mr. Elton predominated, sometimes the Martins; and each\nwas occasionally useful as a check to the other.  Mr. Elton's\nengagement had been the cure of the agitation of meeting Mr. Martin.\nThe unhappiness produced by the knowledge of that engagement had been\na little put aside by Elizabeth Martin's calling at Mrs. Goddard's\na few days afterwards.  Harriet had not been at home; but a note had\nbeen prepared and left for her, written in the very style to touch;\na small mixture of reproach, with a great deal of kindness;\nand till Mr. Elton himself appeared, she had been much occupied\nby it, continually pondering over what could be done in return,\nand wishing to do more than she dared to confess.  But Mr. Elton,\nin person, had driven away all such cares.  While he staid,\nthe Martins were forgotten; and on the very morning of his setting off\nfor Bath again, Emma, to dissipate some of the distress it occasioned,\njudged it best for her to return Elizabeth Martin's visit.\n\nHow that visit was to be acknowledged--what would be necessary--\nand what might be safest, had been a point of some doubtful\nconsideration.  Absolute neglect of the mother and sisters,\nwhen invited to come, would be ingratitude.  It must not be:\nand yet the danger of a renewal of the acquaintance!--\n\nAfter much thinking, she could determine on nothing better, than Harriet's\nreturning the visit; but in a way that, if they had understanding,\nshould convince them that it was to be only a formal acquaintance.\nShe meant to take her in the carriage, leave her at the Abbey Mill,\nwhile she drove a little farther, and call for her again so soon,\nas to allow no time for insidious applications or dangerous\nrecurrences to the past, and give the most decided proof of what\ndegree of intimacy was chosen for the future.\n\nShe could think of nothing better:  and though there was something\nin it which her own heart could not approve--something of ingratitude,\nmerely glossed over--it must be done, or what would become of Harriet?\n\n\n\nCHAPTER V\n\n\nSmall heart had Harriet for visiting.  Only half an hour before her\nfriend called for her at Mrs. Goddard's, her evil stars had led\nher to the very spot where, at that moment, a trunk, directed to\n_The_ _Rev._ _Philip_ _Elton_, _White-Hart_, _Bath_, was to be seen under the\noperation of being lifted into the butcher's cart, which was to\nconvey it to where the coaches past; and every thing in this world,\nexcepting that trunk and the direction, was consequently a blank.\n\nShe went, however; and when they reached the farm, and she was to\nbe put down, at the end of the broad, neat gravel walk, which led\nbetween espalier apple-trees to the front door, the sight of every\nthing which had given her so much pleasure the autumn before,\nwas beginning to revive a little local agitation; and when they parted,\nEmma observed her to be looking around with a sort of fearful curiosity,\nwhich determined her not to allow the visit to exceed the proposed\nquarter of an hour.  She went on herself, to give that portion\nof time to an old servant who was married, and settled in Donwell.\n\nThe quarter of an hour brought her punctually to the white gate again;\nand Miss Smith receiving her summons, was with her without delay,\nand unattended by any alarming young man.  She came solitarily\ndown the gravel walk--a Miss Martin just appearing at the door,\nand parting with her seemingly with ceremonious civility.\n\nHarriet could not very soon give an intelligible account.\nShe was feeling too much; but at last Emma collected from her\nenough to understand the sort of meeting, and the sort of pain it\nwas creating.  She had seen only Mrs. Martin and the two girls.\nThey had received her doubtingly, if not coolly; and nothing\nbeyond the merest commonplace had been talked almost all the time--\ntill just at last, when Mrs. Martin's saying, all of a sudden,\nthat she thought Miss Smith was grown, had brought on a more\ninteresting subject, and a warmer manner.  In that very room\nshe had been measured last September, with her two friends.\nThere were the pencilled marks and memorandums on the wainscot by\nthe window.  _He_ had done it.  They all seemed to remember the day,\nthe hour, the party, the occasion--to feel the same consciousness,\nthe same regrets--to be ready to return to the same good understanding;\nand they were just growing again like themselves, (Harriet, as Emma\nmust suspect, as ready as the best of them to be cordial and happy,)\nwhen the carriage reappeared, and all was over.  The style of\nthe visit, and the shortness of it, were then felt to be decisive.\nFourteen minutes to be given to those with whom she had thankfully\npassed six weeks not six months ago!--Emma could not but picture\nit all, and feel how justly they might resent, how naturally\nHarriet must suffer.  It was a bad business.  She would have given\na great deal, or endured a great deal, to have had the Martins\nin a higher rank of life.  They were so deserving, that a _little_\nhigher should have been enough:  but as it was, how could she have\ndone otherwise?--Impossible!--She could not repent.  They must\nbe separated; but there was a great deal of pain in the process--\nso much to herself at this time, that she soon felt the necessity\nof a little consolation, and resolved on going home by way of Randalls\nto procure it.  Her mind was quite sick of Mr. Elton and the Martins.\nThe refreshment of Randalls was absolutely necessary.\n\nIt was a good scheme; but on driving to the door they heard\nthat neither \"master nor mistress was at home;\" they had both\nbeen out some time; the man believed they were gone to Hartfield.\n\n\"This is too bad,\" cried Emma, as they turned away.  \"And now we\nshall just miss them; too provoking!--I do not know when I have been\nso disappointed.\"  And she leaned back in the corner, to indulge\nher murmurs, or to reason them away; probably a little of both--\nsuch being the commonest process of a not ill-disposed mind.\nPresently the carriage stopt; she looked up; it was stopt\nby Mr. and Mrs. Weston, who were standing to speak to her.\nThere was instant pleasure in the sight of them, and still greater\npleasure was conveyed in sound--for Mr. Weston immediately accosted\nher with,\n\n\"How d'ye do?--how d'ye do?--We have been sitting with your father--\nglad to see him so well.  Frank comes to-morrow--I had a letter\nthis morning--we see him to-morrow by dinner-time to a certainty--\nhe is at Oxford to-day, and he comes for a whole fortnight; I knew it would\nbe so.  If he had come at Christmas he could not have staid three days;\nI was always glad he did not come at Christmas; now we are going\nto have just the right weather for him, fine, dry, settled weather.\nWe shall enjoy him completely; every thing has turned out exactly\nas we could wish.\"\n\nThere was no resisting such news, no possibility of avoiding the\ninfluence of such a happy face as Mr. Weston's, confirmed as it all\nwas by the words and the countenance of his wife, fewer and quieter,\nbut not less to the purpose.  To know that _she_ thought his coming\ncertain was enough to make Emma consider it so, and sincerely did\nshe rejoice in their joy.  It was a most delightful reanimation\nof exhausted spirits.  The worn-out past was sunk in the freshness\nof what was coming; and in the rapidity of half a moment's thought,\nshe hoped Mr. Elton would now be talked of no more.\n\nMr. Weston gave her the history of the engagements at Enscombe,\nwhich allowed his son to answer for having an entire fortnight at\nhis command, as well as the route and the method of his journey;\nand she listened, and smiled, and congratulated.\n\n\"I shall soon bring him over to Hartfield,\" said he, at the conclusion.\n\nEmma could imagine she saw a touch of the arm at this speech,\nfrom his wife.\n\n\"We had better move on, Mr. Weston,\" said she, \"we are detaining\nthe girls.\"\n\n\"Well, well, I am ready;\"--and turning again to Emma, \"but you must\nnot be expecting such a _very_ fine young man; you have only had _my_\naccount you know; I dare say he is really nothing extraordinary:\"--\nthough his own sparkling eyes at the moment were speaking a very\ndifferent conviction.\n\nEmma could look perfectly unconscious and innocent, and answer\nin a manner that appropriated nothing.\n\n\"Think of me to-morrow, my dear Emma, about four o'clock,\"\nwas Mrs. Weston's parting injunction; spoken with some anxiety,\nand meant only for her.\n\n\"Four o'clock!--depend upon it he will be here by three,\" was Mr. Weston's\nquick amendment; and so ended a most satisfactory meeting.\nEmma's spirits were mounted quite up to happiness; every thing wore\na different air; James and his horses seemed not half so sluggish\nas before.  When she looked at the hedges, she thought the elder at\nleast must soon be coming out; and when she turned round to Harriet,\nshe saw something like a look of spring, a tender smile even there.\n\n\"Will Mr. Frank Churchill pass through Bath as well as Oxford?\"--\nwas a question, however, which did not augur much.\n\nBut neither geography nor tranquillity could come all at once,\nand Emma was now in a humour to resolve that they should both come\nin time.\n\nThe morning of the interesting day arrived, and Mrs. Weston's\nfaithful pupil did not forget either at ten, or eleven, or twelve\no'clock, that she was to think of her at four.\n\n\"My dear, dear anxious friend,\"--said she, in mental soliloquy,\nwhile walking downstairs from her own room, \"always overcareful\nfor every body's comfort but your own; I see you now in all your\nlittle fidgets, going again and again into his room, to be sure\nthat all is right.\"  The clock struck twelve as she passed through\nthe hall.  \"'Tis twelve; I shall not forget to think of you four\nhours hence; and by this time to-morrow, perhaps, or a little later,\nI may be thinking of the possibility of their all calling here.\nI am sure they will bring him soon.\"\n\nShe opened the parlour door, and saw two gentlemen sitting with\nher father--Mr. Weston and his son.  They had been arrived only\na few minutes, and Mr. Weston had scarcely finished his explanation\nof Frank's being a day before his time, and her father was yet\nin the midst of his very civil welcome and congratulations, when\nshe appeared, to have her share of surprize, introduction, and pleasure.\n\nThe Frank Churchill so long talked of, so high in interest,\nwas actually before her--he was presented to her, and she did\nnot think too much had been said in his praise; he was a _very_ good\nlooking young man; height, air, address, all were unexceptionable,\nand his countenance had a great deal of the spirit and liveliness\nof his father's; he looked quick and sensible.  She felt immediately\nthat she should like him; and there was a well-bred ease of manner,\nand a readiness to talk, which convinced her that he came intending\nto be acquainted with her, and that acquainted they soon must be.\n\nHe had reached Randalls the evening before.  She was pleased\nwith the eagerness to arrive which had made him alter his plan,\nand travel earlier, later, and quicker, that he might gain half\na day.\n\n\"I told you yesterday,\" cried Mr. Weston with exultation, \"I told\nyou all that he would be here before the time named.  I remembered\nwhat I used to do myself.  One cannot creep upon a journey;\none cannot help getting on faster than one has planned; and the\npleasure of coming in upon one's friends before the look-out begins,\nis worth a great deal more than any little exertion it needs.\"\n\n\"It is a great pleasure where one can indulge in it,\" said the young man,\n\"though there are not many houses that I should presume on so far;\nbut in coming _home_ I felt I might do any thing.\"\n\nThe word _home_ made his father look on him with fresh complacency.\nEmma was directly sure that he knew how to make himself agreeable;\nthe conviction was strengthened by what followed.  He was very much\npleased with Randalls, thought it a most admirably arranged house,\nwould hardly allow it even to be very small, admired the situation,\nthe walk to Highbury, Highbury itself, Hartfield still more,\nand professed himself to have always felt the sort of interest\nin the country which none but one's _own_ country gives, and the\ngreatest curiosity to visit it.  That he should never have been\nable to indulge so amiable a feeling before, passed suspiciously\nthrough Emma's brain; but still, if it were a falsehood, it was a\npleasant one, and pleasantly handled.  His manner had no air of study\nor exaggeration.  He did really look and speak as if in a state of no\ncommon enjoyment.\n\nTheir subjects in general were such as belong to an opening acquaintance.\nOn his side were the inquiries,--\"Was she a horsewoman?--Pleasant rides?--\nPleasant walks?--Had they a large neighbourhood?--Highbury, perhaps,\nafforded society enough?--There were several very pretty houses\nin and about it.--Balls--had they balls?--Was it a musical society?\"\n\nBut when satisfied on all these points, and their acquaintance\nproportionably advanced, he contrived to find an opportunity,\nwhile their two fathers were engaged with each other, of introducing\nhis mother-in-law, and speaking of her with so much handsome praise,\nso much warm admiration, so much gratitude for the happiness she\nsecured to his father, and her very kind reception of himself,\nas was an additional proof of his knowing how to please--\nand of his certainly thinking it worth while to try to please her.\nHe did not advance a word of praise beyond what she knew to be\nthoroughly deserved by Mrs. Weston; but, undoubtedly he could know\nvery little of the matter.  He understood what would be welcome;\nhe could be sure of little else.  \"His father's marriage,\" he said,\n\"had been the wisest measure, every friend must rejoice in it;\nand the family from whom he had received such a blessing must\nbe ever considered as having conferred the highest obligation\non him.\"\n\nHe got as near as he could to thanking her for Miss Taylor's merits,\nwithout seeming quite to forget that in the common course of things it\nwas to be rather supposed that Miss Taylor had formed Miss Woodhouse's\ncharacter, than Miss Woodhouse Miss Taylor's. And at last, as if resolved\nto qualify his opinion completely for travelling round to its object, he\nwound it all up with astonishment at the youth and beauty of her person.\n\n\"Elegant, agreeable manners, I was prepared for,\" said he;\n\"but I confess that, considering every thing, I had not expected\nmore than a very tolerably well-looking woman of a certain age;\nI did not know that I was to find a pretty young woman in Mrs. Weston.\"\n\n\"You cannot see too much perfection in Mrs. Weston for my feelings,\"\nsaid Emma; \"were you to guess her to be _eighteen_, I should listen\nwith pleasure; but _she_ would be ready to quarrel with you for using\nsuch words.  Don't let her imagine that you have spoken of her as\na pretty young woman.\"\n\n\"I hope I should know better,\" he replied; \"no, depend upon it,\n(with a gallant bow,) that in addressing Mrs. Weston I should\nunderstand whom I might praise without any danger of being thought\nextravagant in my terms.\"\n\nEmma wondered whether the same suspicion of what might be expected\nfrom their knowing each other, which had taken strong possession\nof her mind, had ever crossed his; and whether his compliments were\nto be considered as marks of acquiescence, or proofs of defiance.\nShe must see more of him to understand his ways; at present she\nonly felt they were agreeable.\n\nShe had no doubt of what Mr. Weston was often thinking about.\nHis quick eye she detected again and again glancing towards them\nwith a happy expression; and even, when he might have determined not\nto look, she was confident that he was often listening.\n\nHer own father's perfect exemption from any thought of the kind,\nthe entire deficiency in him of all such sort of penetration\nor suspicion, was a most comfortable circumstance.  Happily he\nwas not farther from approving matrimony than from foreseeing it.--\nThough always objecting to every marriage that was arranged,\nhe never suffered beforehand from the apprehension of any;\nit seemed as if he could not think so ill of any two persons'\nunderstanding as to suppose they meant to marry till it were\nproved against them.  She blessed the favouring blindness.\nHe could now, without the drawback of a single unpleasant surmise,\nwithout a glance forward at any possible treachery in his guest,\ngive way to all his natural kind-hearted civility in solicitous\ninquiries after Mr. Frank Churchill's accommodation on his journey,\nthrough the sad evils of sleeping two nights on the road, and express\nvery genuine unmixed anxiety to know that he had certainly escaped\ncatching cold--which, however, he could not allow him to feel quite\nassured of himself till after another night.\n\nA reasonable visit paid, Mr. Weston began to move.--\"He must be going.\nHe had business at the Crown about his hay, and a great many errands\nfor Mrs. Weston at Ford's, but he need not hurry any body else.\"\nHis son, too well bred to hear the hint, rose immediately also,\nsaying,\n\n\"As you are going farther on business, sir, I will take the\nopportunity of paying a visit, which must be paid some day or other,\nand therefore may as well be paid now.  I have the honour of being\nacquainted with a neighbour of yours, (turning to Emma,) a lady\nresiding in or near Highbury; a family of the name of Fairfax.\nI shall have no difficulty, I suppose, in finding the house;\nthough Fairfax, I believe, is not the proper name--I should rather\nsay Barnes, or Bates.  Do you know any family of that name?\"\n\n\"To be sure we do,\" cried his father; \"Mrs. Bates--we passed her house--\nI saw Miss Bates at the window.  True, true, you are acquainted\nwith Miss Fairfax; I remember you knew her at Weymouth, and a fine\ngirl she is.  Call upon her, by all means.\"\n\n\"There is no necessity for my calling this morning,\" said the\nyoung man; \"another day would do as well; but there was that degree\nof acquaintance at Weymouth which--\"\n\n\"Oh! go to-day, go to-day. Do not defer it.  What is right to be done\ncannot be done too soon.  And, besides, I must give you a hint, Frank;\nany want of attention to her _here_ should be carefully avoided.\nYou saw her with the Campbells, when she was the equal of every body\nshe mixed with, but here she is with a poor old grandmother,\nwho has barely enough to live on.  If you do not call early it\nwill be a slight.\"\n\nThe son looked convinced.\n\n\"I have heard her speak of the acquaintance,\" said Emma; \"she is\na very elegant young woman.\"\n\nHe agreed to it, but with so quiet a \"Yes,\" as inclined her almost\nto doubt his real concurrence; and yet there must be a very distinct\nsort of elegance for the fashionable world, if Jane Fairfax could\nbe thought only ordinarily gifted with it.\n\n\"If you were never particularly struck by her manners before,\"\nsaid she, \"I think you will to-day. You will see her to advantage;\nsee her and hear her--no, I am afraid you will not hear her at all,\nfor she has an aunt who never holds her tongue.\"\n\n\"You are acquainted with Miss Jane Fairfax, sir, are you?\"\nsaid Mr. Woodhouse, always the last to make his way in conversation;\n\"then give me leave to assure you that you will find her a very\nagreeable young lady.  She is staying here on a visit to her grandmama\nand aunt, very worthy people; I have known them all my life.\nThey will be extremely glad to see you, I am sure; and one of my\nservants shall go with you to shew you the way.\"\n\n\"My dear sir, upon no account in the world; my father can direct me.\"\n\n\"But your father is not going so far; he is only going to the Crown,\nquite on the other side of the street, and there are a great many houses;\nyou might be very much at a loss, and it is a very dirty walk,\nunless you keep on the footpath; but my coachman can tell you\nwhere you had best cross the street.\"\n\nMr. Frank Churchill still declined it, looking as serious as he could,\nand his father gave his hearty support by calling out, \"My good friend,\nthis is quite unnecessary; Frank knows a puddle of water when he\nsees it, and as to Mrs. Bates's, he may get there from the Crown\nin a hop, step, and jump.\"\n\nThey were permitted to go alone; and with a cordial nod from one,\nand a graceful bow from the other, the two gentlemen took leave.\nEmma remained very well pleased with this beginning of the acquaintance,\nand could now engage to think of them all at Randalls any hour of\nthe day, with full confidence in their comfort.\n\n\n\nCHAPTER VI\n\n\nThe next morning brought Mr. Frank Churchill again.  He came with\nMrs. Weston, to whom and to Highbury he seemed to take very cordially.\nHe had been sitting with her, it appeared, most companionably at home,\ntill her usual hour of exercise; and on being desired to chuse\ntheir walk, immediately fixed on Highbury.--\"He did not doubt there\nbeing very pleasant walks in every direction, but if left to him,\nhe should always chuse the same.  Highbury, that airy, cheerful,\nhappy-looking Highbury, would be his constant attraction.\"--\nHighbury, with Mrs. Weston, stood for Hartfield; and she trusted to\nits bearing the same construction with him.  They walked thither directly.\n\nEmma had hardly expected them:  for Mr. Weston, who had called in\nfor half a minute, in order to hear that his son was very handsome,\nknew nothing of their plans; and it was an agreeable surprize\nto her, therefore, to perceive them walking up to the house together,\narm in arm.  She was wanting to see him again, and especially\nto see him in company with Mrs. Weston, upon his behaviour to whom\nher opinion of him was to depend.  If he were deficient there,\nnothing should make amends for it.  But on seeing them together,\nshe became perfectly satisfied.  It was not merely in fine words\nor hyperbolical compliment that he paid his duty; nothing could be\nmore proper or pleasing than his whole manner to her--nothing could\nmore agreeably denote his wish of considering her as a friend and\nsecuring her affection.  And there was time enough for Emma to form a\nreasonable judgment, as their visit included all the rest of the morning.\nThey were all three walking about together for an hour or two--\nfirst round the shrubberies of Hartfield, and afterwards in Highbury.\nHe was delighted with every thing; admired Hartfield sufficiently\nfor Mr. Woodhouse's ear; and when their going farther was resolved on,\nconfessed his wish to be made acquainted with the whole village,\nand found matter of commendation and interest much oftener than Emma\ncould have supposed.\n\nSome of the objects of his curiosity spoke very amiable feelings.\nHe begged to be shewn the house which his father had lived in so long,\nand which had been the home of his father's father; and on recollecting\nthat an old woman who had nursed him was still living, walked in quest\nof her cottage from one end of the street to the other; and though\nin some points of pursuit or observation there was no positive merit,\nthey shewed, altogether, a good-will towards Highbury in general,\nwhich must be very like a merit to those he was with.\n\nEmma watched and decided, that with such feelings as were now shewn,\nit could not be fairly supposed that he had been ever voluntarily\nabsenting himself; that he had not been acting a part, or making\na parade of insincere professions; and that Mr. Knightley certainly\nhad not done him justice.\n\nTheir first pause was at the Crown Inn, an inconsiderable house,\nthough the principal one of the sort, where a couple of pair of\npost-horses were kept, more for the convenience of the neighbourhood\nthan from any run on the road; and his companions had not expected\nto be detained by any interest excited there; but in passing it they\ngave the history of the large room visibly added; it had been built\nmany years ago for a ball-room, and while the neighbourhood had been\nin a particularly populous, dancing state, had been occasionally used\nas such;--but such brilliant days had long passed away, and now the\nhighest purpose for which it was ever wanted was to accommodate a whist\nclub established among the gentlemen and half-gentlemen of the place.\nHe was immediately interested.  Its character as a ball-room caught him;\nand instead of passing on, he stopt for several minutes at the two\nsuperior sashed windows which were open, to look in and contemplate\nits capabilities, and lament that its original purpose should\nhave ceased.  He saw no fault in the room, he would acknowledge\nnone which they suggested.  No, it was long enough, broad enough,\nhandsome enough.  It would hold the very number for comfort.\nThey ought to have balls there at least every fortnight through\nthe winter.  Why had not Miss Woodhouse revived the former good\nold days of the room?--She who could do any thing in Highbury!\nThe want of proper families in the place, and the conviction\nthat none beyond the place and its immediate environs could be\ntempted to attend, were mentioned; but he was not satisfied.\nHe could not be persuaded that so many good-looking houses as he saw\naround him, could not furnish numbers enough for such a meeting;\nand even when particulars were given and families described, he was\nstill unwilling to admit that the inconvenience of such a mixture\nwould be any thing, or that there would be the smallest difficulty\nin every body's returning into their proper place the next morning.\nHe argued like a young man very much bent on dancing; and Emma\nwas rather surprized to see the constitution of the Weston prevail\nso decidedly against the habits of the Churchills.  He seemed to have\nall the life and spirit, cheerful feelings, and social inclinations\nof his father, and nothing of the pride or reserve of Enscombe.\nOf pride, indeed, there was, perhaps, scarcely enough; his indifference\nto a confusion of rank, bordered too much on inelegance of mind.\nHe could be no judge, however, of the evil he was holding cheap.\nIt was but an effusion of lively spirits.\n\nAt last he was persuaded to move on from the front of the Crown;\nand being now almost facing the house where the Bateses lodged,\nEmma recollected his intended visit the day before, and asked him\nif he had paid it.\n\n\"Yes, oh! yes\"--he replied; \"I was just going to mention it.\nA very successful visit:--I saw all the three ladies; and felt very\nmuch obliged to you for your preparatory hint.  If the talking aunt\nhad taken me quite by surprize, it must have been the death of me.\nAs it was, I was only betrayed into paying a most unreasonable visit.\nTen minutes would have been all that was necessary, perhaps all that\nwas proper; and I had told my father I should certainly be at home\nbefore him--but there was no getting away, no pause; and, to my\nutter astonishment, I found, when he (finding me nowhere else)\njoined me there at last, that I had been actually sitting with them\nvery nearly three-quarters of an hour.  The good lady had not given me\nthe possibility of escape before.\"\n\n\"And how did you think Miss Fairfax looking?\"\n\n\"Ill, very ill--that is, if a young lady can ever be allowed to look ill.\nBut the expression is hardly admissible, Mrs. Weston, is it?\nLadies can never look ill.  And, seriously, Miss Fairfax is naturally\nso pale, as almost always to give the appearance of ill health.--\nA most deplorable want of complexion.\"\n\nEmma would not agree to this, and began a warm defence of Miss\nFairfax's complexion.  \"It was certainly never brilliant, but she\nwould not allow it to have a sickly hue in general; and there was\na softness and delicacy in her skin which gave peculiar elegance\nto the character of her face.\"  He listened with all due deference;\nacknowledged that he had heard many people say the same--but yet he\nmust confess, that to him nothing could make amends for the want\nof the fine glow of health.  Where features were indifferent,\na fine complexion gave beauty to them all; and where they were good,\nthe effect was--fortunately he need not attempt to describe what the\neffect was.\n\n\"Well,\" said Emma, \"there is no disputing about taste.--At least\nyou admire her except her complexion.\"\n\nHe shook his head and laughed.--\"I cannot separate Miss Fairfax\nand her complexion.\"\n\n\"Did you see her often at Weymouth?  Were you often in the same society?\"\n\nAt this moment they were approaching Ford's, and he hastily exclaimed,\n\"Ha! this must be the very shop that every body attends every day\nof their lives, as my father informs me.  He comes to Highbury himself,\nhe says, six days out of the seven, and has always business at Ford's.\nIf it be not inconvenient to you, pray let us go in, that I may prove\nmyself to belong to the place, to be a true citizen of Highbury.\nI must buy something at Ford's. It will be taking out my freedom.--\nI dare say they sell gloves.\"\n\n\"Oh! yes, gloves and every thing.  I do admire your patriotism.\nYou will be adored in Highbury.  You were very popular before you came,\nbecause you were Mr. Weston's son--but lay out half a guinea at\nFord's, and your popularity will stand upon your own virtues.\"\n\nThey went in; and while the sleek, well-tied parcels of \"Men's Beavers\"\nand \"York Tan\" were bringing down and displaying on the counter,\nhe said--\"But I beg your pardon, Miss Woodhouse, you were speaking\nto me, you were saying something at the very moment of this burst\nof my _amor_ _patriae_.  Do not let me lose it.  I assure you the utmost\nstretch of public fame would not make me amends for the loss of any\nhappiness in private life.\"\n\n\"I merely asked, whether you had known much of Miss Fairfax\nand her party at Weymouth.\"\n\n\"And now that I understand your question, I must pronounce it to be a\nvery unfair one.  It is always the lady's right to decide on the degree\nof acquaintance.  Miss Fairfax must already have given her account.--\nI shall not commit myself by claiming more than she may chuse to allow.\"\n\n\"Upon my word! you answer as discreetly as she could do herself.\nBut her account of every thing leaves so much to be guessed,\nshe is so very reserved, so very unwilling to give the least\ninformation about any body, that I really think you may say what you\nlike of your acquaintance with her.\"\n\n\"May I, indeed?--Then I will speak the truth, and nothing suits me\nso well.  I met her frequently at Weymouth.  I had known the Campbells\na little in town; and at Weymouth we were very much in the same set.\nColonel Campbell is a very agreeable man, and Mrs. Campbell a friendly,\nwarm-hearted woman.  I like them all.\"\n\n\"You know Miss Fairfax's situation in life, I conclude; what she\nis destined to be?\"\n\n\"Yes--(rather hesitatingly)--I believe I do.\"\n\n\"You get upon delicate subjects, Emma,\" said Mrs. Weston smiling;\n\"remember that I am here.--Mr. Frank Churchill hardly knows\nwhat to say when you speak of Miss Fairfax's situation in life.\nI will move a little farther off.\"\n\n\"I certainly do forget to think of _her_,\" said Emma, \"as having ever\nbeen any thing but my friend and my dearest friend.\"\n\nHe looked as if he fully understood and honoured such a sentiment.\n\nWhen the gloves were bought, and they had quitted the shop again,\n\"Did you ever hear the young lady we were speaking of, play?\"\nsaid Frank Churchill.\n\n\"Ever hear her!\" repeated Emma.  \"You forget how much she belongs\nto Highbury.  I have heard her every year of our lives since we\nboth began.  She plays charmingly.\"\n\n\"You think so, do you?--I wanted the opinion of some one who\ncould really judge.  She appeared to me to play well, that is,\nwith considerable taste, but I know nothing of the matter myself.--\nI am excessively fond of music, but without the smallest skill\nor right of judging of any body's performance.--I have been used\nto hear her's admired; and I remember one proof of her being\nthought to play well:--a man, a very musical man, and in love\nwith another woman--engaged to her--on the point of marriage--\nwould yet never ask that other woman to sit down to the instrument,\nif the lady in question could sit down instead--never seemed\nto like to hear one if he could hear the other.  That, I thought,\nin a man of known musical talent, was some proof.\"\n\n\"Proof indeed!\" said Emma, highly amused.--\"Mr. Dixon is very musical,\nis he?  We shall know more about them all, in half an hour, from you,\nthan Miss Fairfax would have vouchsafed in half a year.\"\n\n\"Yes, Mr. Dixon and Miss Campbell were the persons; and I thought\nit a very strong proof.\"\n\n\"Certainly--very strong it was; to own the truth, a great deal\nstronger than, if _I_ had been Miss Campbell, would have been at all\nagreeable to me.  I could not excuse a man's having more music\nthan love--more ear than eye--a more acute sensibility to fine\nsounds than to my feelings.  How did Miss Campbell appear to like it?\"\n\n\"It was her very particular friend, you know.\"\n\n\"Poor comfort!\" said Emma, laughing.  \"One would rather have a stranger\npreferred than one's very particular friend--with a stranger it might\nnot recur again--but the misery of having a very particular friend\nalways at hand, to do every thing better than one does oneself!--\nPoor Mrs. Dixon!  Well, I am glad she is gone to settle in Ireland.\"\n\n\"You are right.  It was not very flattering to Miss Campbell;\nbut she really did not seem to feel it.\"\n\n\"So much the better--or so much the worse:--I do not know which.\nBut be it sweetness or be it stupidity in her--quickness of friendship,\nor dulness of feeling--there was one person, I think, who must have\nfelt it:  Miss Fairfax herself.  She must have felt the improper\nand dangerous distinction.\"\n\n\"As to that--I do not--\"\n\n\"Oh! do not imagine that I expect an account of Miss Fairfax's\nsensations from you, or from any body else.  They are known to no\nhuman being, I guess, but herself.  But if she continued to play\nwhenever she was asked by Mr. Dixon, one may guess what one chuses.\"\n\n\"There appeared such a perfectly good understanding among them all--\"\nhe began rather quickly, but checking himself, added, \"however, it\nis impossible for me to say on what terms they really were--\nhow it might all be behind the scenes.  I can only say that there\nwas smoothness outwardly.  But you, who have known Miss Fairfax from\na child, must be a better judge of her character, and of how she\nis likely to conduct herself in critical situations, than I can be.\"\n\n\"I have known her from a child, undoubtedly; we have been children\nand women together; and it is natural to suppose that we should\nbe intimate,--that we should have taken to each other whenever\nshe visited her friends.  But we never did.  I hardly know how it\nhas happened; a little, perhaps, from that wickedness on my side\nwhich was prone to take disgust towards a girl so idolized\nand so cried up as she always was, by her aunt and grandmother,\nand all their set.  And then, her reserve--I never could attach\nmyself to any one so completely reserved.\"\n\n\"It is a most repulsive quality, indeed,\" said he.  \"Oftentimes\nvery convenient, no doubt, but never pleasing.  There is safety\nin reserve, but no attraction.  One cannot love a reserved person.\"\n\n\"Not till the reserve ceases towards oneself; and then the attraction\nmay be the greater.  But I must be more in want of a friend,\nor an agreeable companion, than I have yet been, to take\nthe trouble of conquering any body's reserve to procure one.\nIntimacy between Miss Fairfax and me is quite out of the question.\nI have no reason to think ill of her--not the least--except that\nsuch extreme and perpetual cautiousness of word and manner,\nsuch a dread of giving a distinct idea about any body, is apt\nto suggest suspicions of there being something to conceal.\"\n\nHe perfectly agreed with her:  and after walking together so long,\nand thinking so much alike, Emma felt herself so well acquainted with him,\nthat she could hardly believe it to be only their second meeting.\nHe was not exactly what she had expected; less of the man of the\nworld in some of his notions, less of the spoiled child of fortune,\ntherefore better than she had expected.  His ideas seemed more moderate--\nhis feelings warmer.  She was particularly struck by his manner\nof considering Mr. Elton's house, which, as well as the church,\nhe would go and look at, and would not join them in finding much\nfault with.  No, he could not believe it a bad house; not such a house\nas a man was to be pitied for having.  If it were to be shared with\nthe woman he loved, he could not think any man to be pitied for having\nthat house.  There must be ample room in it for every real comfort.\nThe man must be a blockhead who wanted more.\n\nMrs. Weston laughed, and said he did not know what he was talking about.\nUsed only to a large house himself, and without ever thinking how many\nadvantages and accommodations were attached to its size, he could\nbe no judge of the privations inevitably belonging to a small one.\nBut Emma, in her own mind, determined that he _did_ know what he\nwas talking about, and that he shewed a very amiable inclination\nto settle early in life, and to marry, from worthy motives.\nHe might not be aware of the inroads on domestic peace to be\noccasioned by no housekeeper's room, or a bad butler's pantry,\nbut no doubt he did perfectly feel that Enscombe could not make\nhim happy, and that whenever he were attached, he would willingly\ngive up much of wealth to be allowed an early establishment.\n\n\n\nCHAPTER VII\n\n\nEmma's very good opinion of Frank Churchill was a little shaken\nthe following day, by hearing that he was gone off to London,\nmerely to have his hair cut.  A sudden freak seemed to have seized him\nat breakfast, and he had sent for a chaise and set off, intending to\nreturn to dinner, but with no more important view that appeared than\nhaving his hair cut.  There was certainly no harm in his travelling\nsixteen miles twice over on such an errand; but there was an air\nof foppery and nonsense in it which she could not approve.  It did\nnot accord with the rationality of plan, the moderation in expense,\nor even the unselfish warmth of heart, which she had believed herself\nto discern in him yesterday.  Vanity, extravagance, love of change,\nrestlessness of temper, which must be doing something, good or bad;\nheedlessness as to the pleasure of his father and Mrs. Weston,\nindifferent as to how his conduct might appear in general; he became\nliable to all these charges.  His father only called him a coxcomb,\nand thought it a very good story; but that Mrs. Weston did not like it,\nwas clear enough, by her passing it over as quickly as possible,\nand making no other comment than that \"all young people would have\ntheir little whims.\"\n\nWith the exception of this little blot, Emma found that his visit\nhitherto had given her friend only good ideas of him.  Mrs. Weston\nwas very ready to say how attentive and pleasant a companion he\nmade himself--how much she saw to like in his disposition altogether.\nHe appeared to have a very open temper--certainly a very cheerful\nand lively one; she could observe nothing wrong in his notions,\na great deal decidedly right; he spoke of his uncle with warm regard,\nwas fond of talking of him--said he would be the best man in the\nworld if he were left to himself; and though there was no being\nattached to the aunt, he acknowledged her kindness with gratitude,\nand seemed to mean always to speak of her with respect.\nThis was all very promising; and, but for such an unfortunate fancy\nfor having his hair cut, there was nothing to denote him unworthy\nof the distinguished honour which her imagination had given him;\nthe honour, if not of being really in love with her, of being\nat least very near it, and saved only by her own indifference--\n(for still her resolution held of never marrying)--the honour, in short,\nof being marked out for her by all their joint acquaintance.\n\nMr. Weston, on his side, added a virtue to the account which must\nhave some weight.  He gave her to understand that Frank admired\nher extremely--thought her very beautiful and very charming;\nand with so much to be said for him altogether, she found she must\nnot judge him harshly.  As Mrs. Weston observed, \"all young people\nwould have their little whims.\"\n\nThere was one person among his new acquaintance in Surry, not so\nleniently disposed.  In general he was judged, throughout the parishes\nof Donwell and Highbury, with great candour; liberal allowances\nwere made for the little excesses of such a handsome young man--\none who smiled so often and bowed so well; but there was one spirit\namong them not to be softened, from its power of censure, by bows\nor smiles--Mr. Knightley.  The circumstance was told him at Hartfield;\nfor the moment, he was silent; but Emma heard him almost immediately\nafterwards say to himself, over a newspaper he held in his hand,\n\"Hum! just the trifling, silly fellow I took him for.\"  She had\nhalf a mind to resent; but an instant's observation convinced\nher that it was really said only to relieve his own feelings,\nand not meant to provoke; and therefore she let it pass.\n\nAlthough in one instance the bearers of not good tidings,\nMr. and Mrs. Weston's visit this morning was in another respect\nparticularly opportune.  Something occurred while they were\nat Hartfield, to make Emma want their advice; and, which was\nstill more lucky, she wanted exactly the advice they gave.\n\nThis was the occurrence:--The Coles had been settled some years\nin Highbury, and were very good sort of people--friendly, liberal,\nand unpretending; but, on the other hand, they were of low origin,\nin trade, and only moderately genteel.  On their first coming into\nthe country, they had lived in proportion to their income, quietly,\nkeeping little company, and that little unexpensively; but the last\nyear or two had brought them a considerable increase of means--\nthe house in town had yielded greater profits, and fortune in general\nhad smiled on them.  With their wealth, their views increased;\ntheir want of a larger house, their inclination for more company.\nThey added to their house, to their number of servants,\nto their expenses of every sort; and by this time were, in fortune\nand style of living, second only to the family at Hartfield.\nTheir love of society, and their new dining-room, prepared every body\nfor their keeping dinner-company; and a few parties, chiefly among\nthe single men, had already taken place.  The regular and best\nfamilies Emma could hardly suppose they would presume to invite--\nneither Donwell, nor Hartfield, nor Randalls.  Nothing should\ntempt _her_ to go, if they did; and she regretted that her father's\nknown habits would be giving her refusal less meaning than she\ncould wish.  The Coles were very respectable in their way, but they\nought to be taught that it was not for them to arrange the terms\non which the superior families would visit them.  This lesson,\nshe very much feared, they would receive only from herself;\nshe had little hope of Mr. Knightley, none of Mr. Weston.\n\nBut she had made up her mind how to meet this presumption so many\nweeks before it appeared, that when the insult came at last,\nit found her very differently affected.  Donwell and Randalls\nhad received their invitation, and none had come for her father\nand herself; and Mrs. Weston's accounting for it with \"I suppose\nthey will not take the liberty with you; they know you do not\ndine out,\" was not quite sufficient.  She felt that she should\nlike to have had the power of refusal; and afterwards, as the idea\nof the party to be assembled there, consisting precisely of those\nwhose society was dearest to her, occurred again and again,\nshe did not know that she might not have been tempted to accept.\nHarriet was to be there in the evening, and the Bateses.  They had\nbeen speaking of it as they walked about Highbury the day before,\nand Frank Churchill had most earnestly lamented her absence.\nMight not the evening end in a dance? had been a question of his.\nThe bare possibility of it acted as a farther irritation on her spirits;\nand her being left in solitary grandeur, even supposing the omission\nto be intended as a compliment, was but poor comfort.\n\nIt was the arrival of this very invitation while the Westons were\nat Hartfield, which made their presence so acceptable; for though her\nfirst remark, on reading it, was that \"of course it must be declined,\"\nshe so very soon proceeded to ask them what they advised her to do,\nthat their advice for her going was most prompt and successful.\n\nShe owned that, considering every thing, she was not absolutely\nwithout inclination for the party.  The Coles expressed themselves\nso properly--there was so much real attention in the manner of it--\nso much consideration for her father.  \"They would have solicited the\nhonour earlier, but had been waiting the arrival of a folding-screen\nfrom London, which they hoped might keep Mr. Woodhouse from any draught\nof air, and therefore induce him the more readily to give them the\nhonour of his company.\"  Upon the whole, she was very persuadable;\nand it being briefly settled among themselves how it might be\ndone without neglecting his comfort--how certainly Mrs. Goddard,\nif not Mrs. Bates, might be depended on for bearing him company--\nMr. Woodhouse was to be talked into an acquiescence of his daughter's\ngoing out to dinner on a day now near at hand, and spending\nthe whole evening away from him.  As for _his_ going, Emma did\nnot wish him to think it possible, the hours would be too late,\nand the party too numerous.  He was soon pretty well resigned.\n\n\"I am not fond of dinner-visiting,\" said he--\"I never was.\nNo more is Emma.  Late hours do not agree with us.  I am sorry\nMr. and Mrs. Cole should have done it.  I think it would be\nmuch better if they would come in one afternoon next summer,\nand take their tea with us--take us in their afternoon walk;\nwhich they might do, as our hours are so reasonable, and yet get home\nwithout being out in the damp of the evening.  The dews of a summer\nevening are what I would not expose any body to.  However, as they\nare so very desirous to have dear Emma dine with them, and as you\nwill both be there, and Mr. Knightley too, to take care of her,\nI cannot wish to prevent it, provided the weather be what it ought,\nneither damp, nor cold, nor windy.\"  Then turning to Mrs. Weston,\nwith a look of gentle reproach--\"Ah!  Miss Taylor, if you had\nnot married, you would have staid at home with me.\"\n\n\"Well, sir,\" cried Mr. Weston, \"as I took Miss Taylor away,\nit is incumbent on me to supply her place, if I can; and I will\nstep to Mrs. Goddard in a moment, if you wish it.\"\n\nBut the idea of any thing to be done in a _moment_, was increasing,\nnot lessening, Mr. Woodhouse's agitation.  The ladies knew better\nhow to allay it.  Mr. Weston must be quiet, and every thing\ndeliberately arranged.\n\nWith this treatment, Mr. Woodhouse was soon composed enough\nfor talking as usual.  \"He should be happy to see Mrs. Goddard.\nHe had a great regard for Mrs. Goddard; and Emma should write a line,\nand invite her.  James could take the note.  But first of all,\nthere must be an answer written to Mrs. Cole.\"\n\n\"You will make my excuses, my dear, as civilly as possible.  You will\nsay that I am quite an invalid, and go no where, and therefore must\ndecline their obliging invitation; beginning with my _compliments_,\nof course.  But you will do every thing right.  I need not tell you\nwhat is to be done.  We must remember to let James know that the carriage\nwill be wanted on Tuesday.  I shall have no fears for you with him.\nWe have never been there above once since the new approach was made;\nbut still I have no doubt that James will take you very safely.\nAnd when you get there, you must tell him at what time you would\nhave him come for you again; and you had better name an early hour.\nYou will not like staying late.  You will get very tired when tea\nis over.\"\n\n\"But you would not wish me to come away before I am tired, papa?\"\n\n\"Oh! no, my love; but you will soon be tired.  There will be\na great many people talking at once.  You will not like the noise.\"\n\n\"But, my dear sir,\" cried Mr. Weston, \"if Emma comes away early,\nit will be breaking up the party.\"\n\n\"And no great harm if it does,\" said Mr. Woodhouse.  \"The sooner\nevery party breaks up, the better.\"\n\n\"But you do not consider how it may appear to the Coles.\nEmma's going away directly after tea might be giving offence.\nThey are good-natured people, and think little of their own claims;\nbut still they must feel that any body's hurrying away is no\ngreat compliment; and Miss Woodhouse's doing it would be more thought\nof than any other person's in the room.  You would not wish to disappoint\nand mortify the Coles, I am sure, sir; friendly, good sort of people\nas ever lived, and who have been your neighbours these _ten_ years.\"\n\n\"No, upon no account in the world, Mr. Weston; I am much obliged\nto you for reminding me.  I should be extremely sorry to be giving\nthem any pain.  I know what worthy people they are.  Perry tells\nme that Mr. Cole never touches malt liquor.  You would not think\nit to look at him, but he is bilious--Mr. Cole is very bilious.\nNo, I would not be the means of giving them any pain.  My dear Emma,\nwe must consider this.  I am sure, rather than run the risk of hurting\nMr. and Mrs. Cole, you would stay a little longer than you might wish.\nYou will not regard being tired.  You will be perfectly safe,\nyou know, among your friends.\"\n\n\"Oh yes, papa.  I have no fears at all for myself; and I should have\nno scruples of staying as late as Mrs. Weston, but on your account.\nI am only afraid of your sitting up for me.  I am not afraid\nof your not being exceedingly comfortable with Mrs. Goddard.\nShe loves piquet, you know; but when she is gone home, I am afraid\nyou will be sitting up by yourself, instead of going to bed at your\nusual time--and the idea of that would entirely destroy my comfort.\nYou must promise me not to sit up.\"\n\nHe did, on the condition of some promises on her side:  such as that,\nif she came home cold, she would be sure to warm herself thoroughly;\nif hungry, that she would take something to eat; that her own maid\nshould sit up for her; and that Serle and the butler should see\nthat every thing were safe in the house, as usual.\n\n\n\nCHAPTER VIII\n\n\nFrank Churchill came back again; and if he kept his father's\ndinner waiting, it was not known at Hartfield; for Mrs. Weston\nwas too anxious for his being a favourite with Mr. Woodhouse,\nto betray any imperfection which could be concealed.\n\nHe came back, had had his hair cut, and laughed at himself with\na very good grace, but without seeming really at all ashamed\nof what he had done.  He had no reason to wish his hair longer,\nto conceal any confusion of face; no reason to wish the money unspent,\nto improve his spirits.  He was quite as undaunted and as lively\nas ever; and, after seeing him, Emma thus moralised to herself:--\n\n\"I do not know whether it ought to be so, but certainly silly things\ndo cease to be silly if they are done by sensible people in an\nimpudent way.  Wickedness is always wickedness, but folly is not\nalways folly.--It depends upon the character of those who handle it.\nMr. Knightley, he is _not_ a trifling, silly young man.  If he were,\nhe would have done this differently.  He would either have gloried\nin the achievement, or been ashamed of it.  There would have been\neither the ostentation of a coxcomb, or the evasions of a mind too\nweak to defend its own vanities.--No, I am perfectly sure that he\nis not trifling or silly.\"\n\nWith Tuesday came the agreeable prospect of seeing him again,\nand for a longer time than hitherto; of judging of his general manners,\nand by inference, of the meaning of his manners towards herself;\nof guessing how soon it might be necessary for her to throw coldness\ninto her air; and of fancying what the observations of all those\nmight be, who were now seeing them together for the first time.\n\nShe meant to be very happy, in spite of the scene being laid at\nMr. Cole's; and without being able to forget that among the failings\nof Mr. Elton, even in the days of his favour, none had disturbed\nher more than his propensity to dine with Mr. Cole.\n\nHer father's comfort was amply secured, Mrs. Bates as well as\nMrs. Goddard being able to come; and her last pleasing duty,\nbefore she left the house, was to pay her respects to them as\nthey sat together after dinner; and while her father was fondly\nnoticing the beauty of her dress, to make the two ladies all\nthe amends in her power, by helping them to large slices of cake\nand full glasses of wine, for whatever unwilling self-denial his\ncare of their constitution might have obliged them to practise\nduring the meal.--She had provided a plentiful dinner for them;\nshe wished she could know that they had been allowed to eat it.\n\nShe followed another carriage to Mr. Cole's door; and was pleased\nto see that it was Mr. Knightley's; for Mr. Knightley keeping\nno horses, having little spare money and a great deal of health,\nactivity, and independence, was too apt, in Emma's opinion, to get\nabout as he could, and not use his carriage so often as became\nthe owner of Donwell Abbey.  She had an opportunity now of speaking\nher approbation while warm from her heart, for he stopped to hand her out.\n\n\"This is coming as you should do,\" said she; \"like a gentleman.--\nI am quite glad to see you.\"\n\nHe thanked her, observing, \"How lucky that we should arrive at the same\nmoment! for, if we had met first in the drawing-room, I doubt whether\nyou would have discerned me to be more of a gentleman than usual.--\nYou might not have distinguished how I came, by my look or manner.\"\n\n\"Yes I should, I am sure I should.  There is always a look of\nconsciousness or bustle when people come in a way which they know\nto be beneath them.  You think you carry it off very well, I dare say,\nbut with you it is a sort of bravado, an air of affected unconcern;\nI always observe it whenever I meet you under those circumstances.\n_Now_ you have nothing to try for.  You are not afraid of being\nsupposed ashamed.  You are not striving to look taller than any\nbody else.  _Now_ I shall really be very happy to walk into the same\nroom with you.\"\n\n\"Nonsensical girl!\" was his reply, but not at all in anger.\n\nEmma had as much reason to be satisfied with the rest of the party\nas with Mr. Knightley.  She was received with a cordial respect\nwhich could not but please, and given all the consequence she could\nwish for.  When the Westons arrived, the kindest looks of love,\nthe strongest of admiration were for her, from both husband and wife;\nthe son approached her with a cheerful eagerness which marked\nher as his peculiar object, and at dinner she found him seated\nby her--and, as she firmly believed, not without some dexterity\non his side.\n\nThe party was rather large, as it included one other family, a proper\nunobjectionable country family, whom the Coles had the advantage of\nnaming among their acquaintance, and the male part of Mr. Cox's family,\nthe lawyer of Highbury.  The less worthy females were to come\nin the evening, with Miss Bates, Miss Fairfax, and Miss Smith;\nbut already, at dinner, they were too numerous for any subject\nof conversation to be general; and, while politics and Mr. Elton\nwere talked over, Emma could fairly surrender all her attention to\nthe pleasantness of her neighbour.  The first remote sound to which\nshe felt herself obliged to attend, was the name of Jane Fairfax.\nMrs. Cole seemed to be relating something of her that was expected to be\nvery interesting.  She listened, and found it well worth listening to.\nThat very dear part of Emma, her fancy, received an amusing supply.\nMrs. Cole was telling that she had been calling on Miss Bates,\nand as soon as she entered the room had been struck by the sight\nof a pianoforte--a very elegant looking instrument--not a grand,\nbut a large-sized square pianoforte; and the substance of the story,\nthe end of all the dialogue which ensued of surprize, and inquiry,\nand congratulations on her side, and explanations on Miss Bates's, was,\nthat this pianoforte had arrived from Broadwood's the day before,\nto the great astonishment of both aunt and niece--entirely unexpected;\nthat at first, by Miss Bates's account, Jane herself was quite at\na loss, quite bewildered to think who could possibly have ordered it--\nbut now, they were both perfectly satisfied that it could be from only\none quarter;--of course it must be from Colonel Campbell.\n\n\"One can suppose nothing else,\" added Mrs. Cole, \"and I was only\nsurprized that there could ever have been a doubt.  But Jane,\nit seems, had a letter from them very lately, and not a word was said\nabout it.  She knows their ways best; but I should not consider their\nsilence as any reason for their not meaning to make the present.\nThey might chuse to surprize her.\"\n\nMrs. Cole had many to agree with her; every body who spoke on the\nsubject was equally convinced that it must come from Colonel Campbell,\nand equally rejoiced that such a present had been made; and there\nwere enough ready to speak to allow Emma to think her own way,\nand still listen to Mrs. Cole.\n\n\"I declare, I do not know when I have heard any thing that has given\nme more satisfaction!--It always has quite hurt me that Jane Fairfax,\nwho plays so delightfully, should not have an instrument.\nIt seemed quite a shame, especially considering how many houses\nthere are where fine instruments are absolutely thrown away.\nThis is like giving ourselves a slap, to be sure! and it was\nbut yesterday I was telling Mr. Cole, I really was ashamed\nto look at our new grand pianoforte in the drawing-room, while I\ndo not know one note from another, and our little girls, who are\nbut just beginning, perhaps may never make any thing of it;\nand there is poor Jane Fairfax, who is mistress of music, has not\nany thing of the nature of an instrument, not even the pitifullest\nold spinet in the world, to amuse herself with.--I was saying this\nto Mr. Cole but yesterday, and he quite agreed with me; only he\nis so particularly fond of music that he could not help indulging\nhimself in the purchase, hoping that some of our good neighbours might\nbe so obliging occasionally to put it to a better use than we can;\nand that really is the reason why the instrument was bought--\nor else I am sure we ought to be ashamed of it.--We are in great\nhopes that Miss Woodhouse may be prevailed with to try it this evening.\"\n\nMiss Woodhouse made the proper acquiescence; and finding that nothing\nmore was to be entrapped from any communication of Mrs. Cole's,\nturned to Frank Churchill.\n\n\"Why do you smile?\" said she.\n\n\"Nay, why do you?\"\n\n\"Me!--I suppose I smile for pleasure at Colonel Campbell's being\nso rich and so liberal.--It is a handsome present.\"\n\n\"Very.\"\n\n\"I rather wonder that it was never made before.\"\n\n\"Perhaps Miss Fairfax has never been staying here so long before.\"\n\n\"Or that he did not give her the use of their own instrument--\nwhich must now be shut up in London, untouched by any body.\"\n\n\"That is a grand pianoforte, and he might think it too large\nfor Mrs. Bates's house.\"\n\n\"You may _say_ what you chuse--but your countenance testifies\nthat your _thoughts_ on this subject are very much like mine.\"\n\n\"I do not know.  I rather believe you are giving me more credit for\nacuteness than I deserve.  I smile because you smile, and shall probably\nsuspect whatever I find you suspect; but at present I do not see what\nthere is to question.  If Colonel Campbell is not the person, who can be?\"\n\n\"What do you say to Mrs. Dixon?\"\n\n\"Mrs. Dixon! very true indeed.  I had not thought of Mrs. Dixon.\nShe must know as well as her father, how acceptable an instrument\nwould be; and perhaps the mode of it, the mystery, the surprize,\nis more like a young woman's scheme than an elderly man's. It\nis Mrs. Dixon, I dare say.  I told you that your suspicions would\nguide mine.\"\n\n\"If so, you must extend your suspicions and comprehend _Mr_. Dixon\nin them.\"\n\n\"Mr. Dixon.--Very well.  Yes, I immediately perceive that it must\nbe the joint present of Mr. and Mrs. Dixon.  We were speaking the\nother day, you know, of his being so warm an admirer of her performance.\"\n\n\"Yes, and what you told me on that head, confirmed an idea which I\nhad entertained before.--I do not mean to reflect upon the good\nintentions of either Mr. Dixon or Miss Fairfax, but I cannot help\nsuspecting either that, after making his proposals to her friend,\nhe had the misfortune to fall in love with _her_, or that he became\nconscious of a little attachment on her side.  One might guess\ntwenty things without guessing exactly the right; but I am sure\nthere must be a particular cause for her chusing to come to Highbury\ninstead of going with the Campbells to Ireland.  Here, she must be\nleading a life of privation and penance; there it would have been\nall enjoyment.  As to the pretence of trying her native air, I look\nupon that as a mere excuse.--In the summer it might have passed;\nbut what can any body's native air do for them in the months\nof January, February, and March?  Good fires and carriages would\nbe much more to the purpose in most cases of delicate health, and I\ndare say in her's. I do not require you to adopt all my suspicions,\nthough you make so noble a profession of doing it, but I honestly\ntell you what they are.\"\n\n\"And, upon my word, they have an air of great probability.\nMr. Dixon's preference of her music to her friend's, I can answer\nfor being very decided.\"\n\n\"And then, he saved her life.  Did you ever hear of that?--\nA water party; and by some accident she was falling overboard.\nHe caught her.\"\n\n\"He did.  I was there--one of the party.\"\n\n\"Were you really?--Well!--But you observed nothing of course,\nfor it seems to be a new idea to you.--If I had been there, I think\nI should have made some discoveries.\"\n\n\"I dare say you would; but I, simple I, saw nothing but the fact,\nthat Miss Fairfax was nearly dashed from the vessel and that Mr. Dixon\ncaught her.--It was the work of a moment.  And though the consequent\nshock and alarm was very great and much more durable--indeed I\nbelieve it was half an hour before any of us were comfortable again--\nyet that was too general a sensation for any thing of peculiar\nanxiety to be observable.  I do not mean to say, however, that you\nmight not have made discoveries.\"\n\nThe conversation was here interrupted.  They were called on to share\nin the awkwardness of a rather long interval between the courses,\nand obliged to be as formal and as orderly as the others; but when\nthe table was again safely covered, when every corner dish was placed\nexactly right, and occupation and ease were generally restored,\nEmma said,\n\n\"The arrival of this pianoforte is decisive with me.  I wanted to know\na little more, and this tells me quite enough.  Depend upon it,\nwe shall soon hear that it is a present from Mr. and Mrs. Dixon.\"\n\n\"And if the Dixons should absolutely deny all knowledge of it we\nmust conclude it to come from the Campbells.\"\n\n\"No, I am sure it is not from the Campbells.  Miss Fairfax knows it\nis not from the Campbells, or they would have been guessed at first.\nShe would not have been puzzled, had she dared fix on them.\nI may not have convinced you perhaps, but I am perfectly convinced\nmyself that Mr. Dixon is a principal in the business.\"\n\n\"Indeed you injure me if you suppose me unconvinced.  Your reasonings\ncarry my judgment along with them entirely.  At first, while I\nsupposed you satisfied that Colonel Campbell was the giver, I saw\nit only as paternal kindness, and thought it the most natural thing\nin the world.  But when you mentioned Mrs. Dixon, I felt how much more\nprobable that it should be the tribute of warm female friendship.\nAnd now I can see it in no other light than as an offering of love.\"\n\nThere was no occasion to press the matter farther.  The conviction\nseemed real; he looked as if he felt it.  She said no more,\nother subjects took their turn; and the rest of the dinner passed away;\nthe dessert succeeded, the children came in, and were talked\nto and admired amid the usual rate of conversation; a few clever\nthings said, a few downright silly, but by much the larger proportion\nneither the one nor the other--nothing worse than everyday remarks,\ndull repetitions, old news, and heavy jokes.\n\nThe ladies had not been long in the drawing-room, before the other ladies,\nin their different divisions, arrived.  Emma watched the entree of her\nown particular little friend; and if she could not exult in her dignity\nand grace, she could not only love the blooming sweetness and the\nartless manner, but could most heartily rejoice in that light, cheerful,\nunsentimental disposition which allowed her so many alleviations\nof pleasure, in the midst of the pangs of disappointed affection.\nThere she sat--and who would have guessed how many tears she had\nbeen lately shedding?  To be in company, nicely dressed herself\nand seeing others nicely dressed, to sit and smile and look pretty,\nand say nothing, was enough for the happiness of the present hour.\nJane Fairfax did look and move superior; but Emma suspected she\nmight have been glad to change feelings with Harriet, very glad\nto have purchased the mortification of having loved--yes, of having\nloved even Mr. Elton in vain--by the surrender of all the dangerous\npleasure of knowing herself beloved by the husband of her friend.\n\nIn so large a party it was not necessary that Emma should approach her.\nShe did not wish to speak of the pianoforte, she felt too much\nin the secret herself, to think the appearance of curiosity\nor interest fair, and therefore purposely kept at a distance;\nbut by the others, the subject was almost immediately introduced,\nand she saw the blush of consciousness with which congratulations\nwere received, the blush of guilt which accompanied the name of \"my\nexcellent friend Colonel Campbell.\"\n\nMrs. Weston, kind-hearted and musical, was particularly interested\nby the circumstance, and Emma could not help being amused at her\nperseverance in dwelling on the subject; and having so much to ask\nand to say as to tone, touch, and pedal, totally unsuspicious\nof that wish of saying as little about it as possible, which she\nplainly read in the fair heroine's countenance.\n\nThey were soon joined by some of the gentlemen; and the very first of the\nearly was Frank Churchill.  In he walked, the first and the handsomest;\nand after paying his compliments en passant to Miss Bates and\nher niece, made his way directly to the opposite side of the circle,\nwhere sat Miss Woodhouse; and till he could find a seat by her,\nwould not sit at all.  Emma divined what every body present must\nbe thinking.  She was his object, and every body must perceive it.\nShe introduced him to her friend, Miss Smith, and, at convenient\nmoments afterwards, heard what each thought of the other.  \"He had\nnever seen so lovely a face, and was delighted with her naivete.\"\nAnd she, \"Only to be sure it was paying him too great a compliment,\nbut she did think there were some looks a little like Mr. Elton.\"\nEmma restrained her indignation, and only turned from her in silence.\n\nSmiles of intelligence passed between her and the gentleman on first\nglancing towards Miss Fairfax; but it was most prudent to avoid speech.\nHe told her that he had been impatient to leave the dining-room--\nhated sitting long--was always the first to move when he could--\nthat his father, Mr. Knightley, Mr. Cox, and Mr. Cole, were left\nvery busy over parish business--that as long as he had staid,\nhowever, it had been pleasant enough, as he had found them in general\na set of gentlemanlike, sensible men; and spoke so handsomely of\nHighbury altogether--thought it so abundant in agreeable families--\nthat Emma began to feel she had been used to despise the place\nrather too much.  She questioned him as to the society in Yorkshire--\nthe extent of the neighbourhood about Enscombe, and the sort;\nand could make out from his answers that, as far as Enscombe\nwas concerned, there was very little going on, that their visitings\nwere among a range of great families, none very near; and that even\nwhen days were fixed, and invitations accepted, it was an even\nchance that Mrs. Churchill were not in health and spirits for going;\nthat they made a point of visiting no fresh person; and that,\nthough he had his separate engagements, it was not without difficulty,\nwithout considerable address _at_ _times_, that he could get away,\nor introduce an acquaintance for a night.\n\nShe saw that Enscombe could not satisfy, and that Highbury,\ntaken at its best, might reasonably please a young man who had more\nretirement at home than he liked.  His importance at Enscombe was\nvery evident.  He did not boast, but it naturally betrayed itself,\nthat he had persuaded his aunt where his uncle could do nothing,\nand on her laughing and noticing it, he owned that he believed (excepting\none or two points) he could _with_ _time_ persuade her to any thing.\nOne of those points on which his influence failed, he then mentioned.\nHe had wanted very much to go abroad--had been very eager indeed\nto be allowed to travel--but she would not hear of it.  This had\nhappened the year before.  _Now_, he said, he was beginning to have\nno longer the same wish.\n\nThe unpersuadable point, which he did not mention, Emma guessed\nto be good behaviour to his father.\n\n\"I have made a most wretched discovery,\" said he, after a short pause.--\n\"I have been here a week to-morrow--half my time.  I never knew\ndays fly so fast.  A week to-morrow!--And I have hardly begun to\nenjoy myself.  But just got acquainted with Mrs. Weston, and others!--\nI hate the recollection.\"\n\n\"Perhaps you may now begin to regret that you spent one whole day,\nout of so few, in having your hair cut.\"\n\n\"No,\" said he, smiling, \"that is no subject of regret at all.\nI have no pleasure in seeing my friends, unless I can believe myself\nfit to be seen.\"\n\nThe rest of the gentlemen being now in the room, Emma found herself\nobliged to turn from him for a few minutes, and listen to Mr. Cole.\nWhen Mr. Cole had moved away, and her attention could be restored\nas before, she saw Frank Churchill looking intently across the room\nat Miss Fairfax, who was sitting exactly opposite.\n\n\"What is the matter?\" said she.\n\nHe started.  \"Thank you for rousing me,\" he replied.  \"I believe\nI have been very rude; but really Miss Fairfax has done her hair\nin so odd a way--so very odd a way--that I cannot keep my eyes\nfrom her.  I never saw any thing so outree!--Those curls!--This must\nbe a fancy of her own.  I see nobody else looking like her!--\nI must go and ask her whether it is an Irish fashion.  Shall I?--\nYes, I will--I declare I will--and you shall see how she takes it;--\nwhether she colours.\"\n\nHe was gone immediately; and Emma soon saw him standing before Miss\nFairfax, and talking to her; but as to its effect on the young lady,\nas he had improvidently placed himself exactly between them, exactly\nin front of Miss Fairfax, she could absolutely distinguish nothing.\n\nBefore he could return to his chair, it was taken by Mrs. Weston.\n\n\"This is the luxury of a large party,\" said she:--\"one can get\nnear every body, and say every thing.  My dear Emma, I am longing\nto talk to you.  I have been making discoveries and forming plans,\njust like yourself, and I must tell them while the idea is fresh.\nDo you know how Miss Bates and her niece came here?\"\n\n\"How?--They were invited, were not they?\"\n\n\"Oh! yes--but how they were conveyed hither?--the manner of their coming?\"\n\n\"They walked, I conclude.  How else could they come?\"\n\n\"Very true.--Well, a little while ago it occurred to me how very sad\nit would be to have Jane Fairfax walking home again, late at night,\nand cold as the nights are now.  And as I looked at her, though I\nnever saw her appear to more advantage, it struck me that she\nwas heated, and would therefore be particularly liable to take cold.\nPoor girl!  I could not bear the idea of it; so, as soon as Mr. Weston\ncame into the room, and I could get at him, I spoke to him about\nthe carriage.  You may guess how readily he came into my wishes;\nand having his approbation, I made my way directly to Miss Bates,\nto assure her that the carriage would be at her service before it took\nus home; for I thought it would be making her comfortable at once.\nGood soul! she was as grateful as possible, you may be sure.\n`Nobody was ever so fortunate as herself!'--but with many,\nmany thanks--`there was no occasion to trouble us, for Mr. Knightley's\ncarriage had brought, and was to take them home again.'  I was\nquite surprized;--very glad, I am sure; but really quite surprized.\nSuch a very kind attention--and so thoughtful an attention!--\nthe sort of thing that so few men would think of.  And, in short,\nfrom knowing his usual ways, I am very much inclined to think\nthat it was for their accommodation the carriage was used at all.\nI do suspect he would not have had a pair of horses for himself,\nand that it was only as an excuse for assisting them.\"\n\n\"Very likely,\" said Emma--\"nothing more likely.  I know no man\nmore likely than Mr. Knightley to do the sort of thing--to do any\nthing really good-natured, useful, considerate, or benevolent.\nHe is not a gallant man, but he is a very humane one; and this,\nconsidering Jane Fairfax's ill-health, would appear a case\nof humanity to him;--and for an act of unostentatious kindness,\nthere is nobody whom I would fix on more than on Mr. Knightley.\nI know he had horses to-day--for we arrived together; and I laughed at\nhim about it, but he said not a word that could betray.\"\n\n\"Well,\" said Mrs. Weston, smiling, \"you give him credit for\nmore simple, disinterested benevolence in this instance than I do;\nfor while Miss Bates was speaking, a suspicion darted into my head,\nand I have never been able to get it out again.  The more I think\nof it, the more probable it appears.  In short, I have made a match\nbetween Mr. Knightley and Jane Fairfax.  See the consequence\nof keeping you company!--What do you say to it?\"\n\n\"Mr. Knightley and Jane Fairfax!\" exclaimed Emma.  \"Dear Mrs. Weston,\nhow could you think of such a thing?--Mr. Knightley!--Mr. Knightley\nmust not marry!--You would not have little Henry cut out from Donwell?--\nOh! no, no, Henry must have Donwell.  I cannot at all consent to\nMr. Knightley's marrying; and I am sure it is not at all likely.\nI am amazed that you should think of such a thing.\"\n\n\"My dear Emma, I have told you what led me to think of it.\nI do not want the match--I do not want to injure dear little Henry--\nbut the idea has been given me by circumstances; and if Mr. Knightley\nreally wished to marry, you would not have him refrain on Henry's\naccount, a boy of six years old, who knows nothing of the matter?\"\n\n\"Yes, I would.  I could not bear to have Henry supplanted.--\nMr. Knightley marry!--No, I have never had such an idea, and I\ncannot adopt it now.  And Jane Fairfax, too, of all women!\"\n\n\"Nay, she has always been a first favourite with him, as you\nvery well know.\"\n\n\"But the imprudence of such a match!\"\n\n\"I am not speaking of its prudence; merely its probability.\"\n\n\"I see no probability in it, unless you have any better foundation\nthan what you mention.  His good-nature, his humanity, as I tell you,\nwould be quite enough to account for the horses.  He has a great\nregard for the Bateses, you know, independent of Jane Fairfax--\nand is always glad to shew them attention.  My dear Mrs. Weston,\ndo not take to match-making.  You do it very ill.  Jane Fairfax mistress\nof the Abbey!--Oh! no, no;--every feeling revolts.  For his own sake,\nI would not have him do so mad a thing.\"\n\n\"Imprudent, if you please--but not mad.  Excepting inequality of fortune,\nand perhaps a little disparity of age, I can see nothing unsuitable.\"\n\n\"But Mr. Knightley does not want to marry.  I am sure he has not the\nleast idea of it.  Do not put it into his head.  Why should he marry?--\nHe is as happy as possible by himself; with his farm, and his sheep,\nand his library, and all the parish to manage; and he is extremely\nfond of his brother's children.  He has no occasion to marry,\neither to fill up his time or his heart.\"\n\n\"My dear Emma, as long as he thinks so, it is so; but if he really\nloves Jane Fairfax--\"\n\n\"Nonsense!  He does not care about Jane Fairfax.  In the way\nof love, I am sure he does not.  He would do any good to her,\nor her family; but--\"\n\n\"Well,\" said Mrs. Weston, laughing, \"perhaps the greatest good he\ncould do them, would be to give Jane such a respectable home.\"\n\n\"If it would be good to her, I am sure it would be evil to himself;\na very shameful and degrading connexion.  How would he bear to have\nMiss Bates belonging to him?--To have her haunting the Abbey,\nand thanking him all day long for his great kindness in marrying Jane?--\n`So very kind and obliging!--But he always had been such a very\nkind neighbour!'  And then fly off, through half a sentence,\nto her mother's old petticoat.  `Not that it was such a very old\npetticoat either--for still it would last a great while--and, indeed,\nshe must thankfully say that their petticoats were all very strong.'\"\n\n\"For shame, Emma!  Do not mimic her.  You divert me against\nmy conscience.  And, upon my word, I do not think Mr. Knightley would\nbe much disturbed by Miss Bates.  Little things do not irritate him.\nShe might talk on; and if he wanted to say any thing himself, he would\nonly talk louder, and drown her voice.  But the question is not,\nwhether it would be a bad connexion for him, but whether he wishes it;\nand I think he does.  I have heard him speak, and so must you,\nso very highly of Jane Fairfax!  The interest he takes in her--\nhis anxiety about her health--his concern that she should have no\nhappier prospect!  I have heard him express himself so warmly on\nthose points!--Such an admirer of her performance on the pianoforte,\nand of her voice!  I have heard him say that he could listen to her\nfor ever.  Oh! and I had almost forgotten one idea that occurred\nto me--this pianoforte that has been sent here by somebody--\nthough we have all been so well satisfied to consider it a present\nfrom the Campbells, may it not be from Mr. Knightley?  I cannot\nhelp suspecting him.  I think he is just the person to do it,\neven without being in love.\"\n\n\"Then it can be no argument to prove that he is in love.\nBut I do not think it is at all a likely thing for him to do.\nMr. Knightley does nothing mysteriously.\"\n\n\"I have heard him lamenting her having no instrument repeatedly;\noftener than I should suppose such a circumstance would, in the common\ncourse of things, occur to him.\"\n\n\"Very well; and if he had intended to give her one, he would have\ntold her so.\"\n\n\"There might be scruples of delicacy, my dear Emma.  I have a very\nstrong notion that it comes from him.  I am sure he was particularly\nsilent when Mrs. Cole told us of it at dinner.\"\n\n\"You take up an idea, Mrs. Weston, and run away with it; as you have\nmany a time reproached me with doing.  I see no sign of attachment--\nI believe nothing of the pianoforte--and proof only shall convince\nme that Mr. Knightley has any thought of marrying Jane Fairfax.\"\n\nThey combated the point some time longer in the same way; Emma rather\ngaining ground over the mind of her friend; for Mrs. Weston was\nthe most used of the two to yield; till a little bustle in the room\nshewed them that tea was over, and the instrument in preparation;--\nand at the same moment Mr. Cole approaching to entreat Miss Woodhouse\nwould do them the honour of trying it.  Frank Churchill, of whom,\nin the eagerness of her conversation with Mrs. Weston, she had been\nseeing nothing, except that he had found a seat by Miss Fairfax,\nfollowed Mr. Cole, to add his very pressing entreaties; and as,\nin every respect, it suited Emma best to lead, she gave a very\nproper compliance.\n\nShe knew the limitations of her own powers too well to attempt\nmore than she could perform with credit; she wanted neither taste\nnor spirit in the little things which are generally acceptable,\nand could accompany her own voice well.  One accompaniment to her song\ntook her agreeably by surprize--a second, slightly but correctly\ntaken by Frank Churchill.  Her pardon was duly begged at the close\nof the song, and every thing usual followed.  He was accused\nof having a delightful voice, and a perfect knowledge of music;\nwhich was properly denied; and that he knew nothing of the matter,\nand had no voice at all, roundly asserted.  They sang together\nonce more; and Emma would then resign her place to Miss Fairfax,\nwhose performance, both vocal and instrumental, she never could\nattempt to conceal from herself, was infinitely superior to her own.\n\nWith mixed feelings, she seated herself at a little distance from the\nnumbers round the instrument, to listen.  Frank Churchill sang again.\nThey had sung together once or twice, it appeared, at Weymouth.\nBut the sight of Mr. Knightley among the most attentive, soon drew\naway half Emma's mind; and she fell into a train of thinking\non the subject of Mrs. Weston's suspicions, to which the sweet\nsounds of the united voices gave only momentary interruptions.\nHer objections to Mr. Knightley's marrying did not in the least subside.\nShe could see nothing but evil in it.  It would be a great\ndisappointment to Mr. John Knightley; consequently to Isabella.\nA real injury to the children--a most mortifying change,\nand material loss to them all;--a very great deduction from her\nfather's daily comfort--and, as to herself, she could not at all\nendure the idea of Jane Fairfax at Donwell Abbey.  A Mrs. Knightley\nfor them all to give way to!--No--Mr. Knightley must never marry.\nLittle Henry must remain the heir of Donwell.\n\nPresently Mr. Knightley looked back, and came and sat down by her.\nThey talked at first only of the performance.  His admiration\nwas certainly very warm; yet she thought, but for Mrs. Weston,\nit would not have struck her.  As a sort of touchstone, however,\nshe began to speak of his kindness in conveying the aunt and niece;\nand though his answer was in the spirit of cutting the matter short,\nshe believed it to indicate only his disinclination to dwell on any\nkindness of his own.\n\n\"I often feel concern,\" said she, \"that I dare not make our carriage\nmore useful on such occasions.  It is not that I am without the wish;\nbut you know how impossible my father would deem it that James\nshould put-to for such a purpose.\"\n\n\"Quite out of the question, quite out of the question,\" he replied;--\n\"but you must often wish it, I am sure.\"  And he smiled with such\nseeming pleasure at the conviction, that she must proceed another step.\n\n\"This present from the Campbells,\" said she--\"this pianoforte\nis very kindly given.\"\n\n\"Yes,\" he replied, and without the smallest apparent embarrassment.--\n\"But they would have done better had they given her notice of it.\nSurprizes are foolish things.  The pleasure is not enhanced, and the\ninconvenience is often considerable.  I should have expected better\njudgment in Colonel Campbell.\"\n\nFrom that moment, Emma could have taken her oath that Mr. Knightley\nhad had no concern in giving the instrument.  But whether he\nwere entirely free from peculiar attachment--whether there\nwere no actual preference--remained a little longer doubtful.\nTowards the end of Jane's second song, her voice grew thick.\n\n\"That will do,\" said he, when it was finished, thinking aloud--\n\"you have sung quite enough for one evening--now be quiet.\"\n\nAnother song, however, was soon begged for.  \"One more;--they would\nnot fatigue Miss Fairfax on any account, and would only ask for\none more.\"  And Frank Churchill was heard to say, \"I think you could\nmanage this without effort; the first part is so very trifling.\nThe strength of the song falls on the second.\"\n\nMr. Knightley grew angry.\n\n\"That fellow,\" said he, indignantly, \"thinks of nothing but shewing\noff his own voice.  This must not be.\"  And touching Miss Bates,\nwho at that moment passed near--\"Miss Bates, are you mad, to let\nyour niece sing herself hoarse in this manner?  Go, and interfere.\nThey have no mercy on her.\"\n\nMiss Bates, in her real anxiety for Jane, could hardly stay even\nto be grateful, before she stept forward and put an end to all\nfarther singing.  Here ceased the concert part of the evening,\nfor Miss Woodhouse and Miss Fairfax were the only young lady performers;\nbut soon (within five minutes) the proposal of dancing--\noriginating nobody exactly knew where--was so effectually promoted\nby Mr. and Mrs. Cole, that every thing was rapidly clearing away,\nto give proper space.  Mrs. Weston, capital in her country-dances,\nwas seated, and beginning an irresistible waltz; and Frank Churchill,\ncoming up with most becoming gallantry to Emma, had secured her hand,\nand led her up to the top.\n\nWhile waiting till the other young people could pair themselves off,\nEmma found time, in spite of the compliments she was receiving on her\nvoice and her taste, to look about, and see what became of Mr. Knightley.\nThis would be a trial.  He was no dancer in general.  If he were to be\nvery alert in engaging Jane Fairfax now, it might augur something.\nThere was no immediate appearance.  No; he was talking to Mrs. Cole--\nhe was looking on unconcerned; Jane was asked by somebody else,\nand he was still talking to Mrs. Cole.\n\nEmma had no longer an alarm for Henry; his interest was yet safe;\nand she led off the dance with genuine spirit and enjoyment.\nNot more than five couple could be mustered; but the rarity and the\nsuddenness of it made it very delightful, and she found herself well\nmatched in a partner.  They were a couple worth looking at.\n\nTwo dances, unfortunately, were all that could be allowed.\nIt was growing late, and Miss Bates became anxious to get home,\non her mother's account.  After some attempts, therefore, to be\npermitted to begin again, they were obliged to thank Mrs. Weston,\nlook sorrowful, and have done.\n\n\"Perhaps it is as well,\" said Frank Churchill, as he attended Emma\nto her carriage.  \"I must have asked Miss Fairfax, and her languid\ndancing would not have agreed with me, after your's.\"\n\n\n\nCHAPTER IX\n\n\nEmma did not repent her condescension in going to the Coles.\nThe visit afforded her many pleasant recollections the next day;\nand all that she might be supposed to have lost on the side\nof dignified seclusion, must be amply repaid in the splendour\nof popularity.  She must have delighted the Coles--worthy people,\nwho deserved to be made happy!--And left a name behind her that would\nnot soon die away.\n\nPerfect happiness, even in memory, is not common; and there were\ntwo points on which she was not quite easy.  She doubted whether\nshe had not transgressed the duty of woman by woman, in betraying\nher suspicions of Jane Fairfax's feelings to Frank Churchill.\nIt was hardly right; but it had been so strong an idea, that it\nwould escape her, and his submission to all that she told,\nwas a compliment to her penetration, which made it difficult\nfor her to be quite certain that she ought to have held her tongue.\n\nThe other circumstance of regret related also to Jane Fairfax;\nand there she had no doubt.  She did unfeignedly and unequivocally\nregret the inferiority of her own playing and singing.  She did\nmost heartily grieve over the idleness of her childhood--and sat\ndown and practised vigorously an hour and a half.\n\nShe was then interrupted by Harriet's coming in; and if Harriet's\npraise could have satisfied her, she might soon have been comforted.\n\n\"Oh! if I could but play as well as you and Miss Fairfax!\"\n\n\"Don't class us together, Harriet.  My playing is no more like\nher's, than a lamp is like sunshine.\"\n\n\"Oh! dear--I think you play the best of the two.  I think you play\nquite as well as she does.  I am sure I had much rather hear you.\nEvery body last night said how well you played.\"\n\n\"Those who knew any thing about it, must have felt the difference.\nThe truth is, Harriet, that my playing is just good enough to be praised,\nbut Jane Fairfax's is much beyond it.\"\n\n\"Well, I always shall think that you play quite as well as she does,\nor that if there is any difference nobody would ever find it out.\nMr. Cole said how much taste you had; and Mr. Frank Churchill talked\na great deal about your taste, and that he valued taste much more\nthan execution.\"\n\n\"Ah! but Jane Fairfax has them both, Harriet.\"\n\n\"Are you sure?  I saw she had execution, but I did not know she had\nany taste.  Nobody talked about it.  And I hate Italian singing.--\nThere is no understanding a word of it.  Besides, if she does play\nso very well, you know, it is no more than she is obliged to do,\nbecause she will have to teach.  The Coxes were wondering last night\nwhether she would get into any great family.  How did you think the\nCoxes looked?\"\n\n\"Just as they always do--very vulgar.\"\n\n\"They told me something,\" said Harriet rather hesitatingly;\"\nbut it is nothing of any consequence.\"\n\nEmma was obliged to ask what they had told her, though fearful\nof its producing Mr. Elton.\n\n\"They told me--that Mr. Martin dined with them last Saturday.\"\n\n\"Oh!\"\n\n\"He came to their father upon some business, and he asked him\nto stay to dinner.\"\n\n\"Oh!\"\n\n\"They talked a great deal about him, especially Anne Cox.\nI do not know what she meant, but she asked me if I thought I\nshould go and stay there again next summer.\"\n\n\"She meant to be impertinently curious, just as such an Anne Cox\nshould be.\"\n\n\"She said he was very agreeable the day he dined there.  He sat\nby her at dinner.  Miss Nash thinks either of the Coxes would\nbe very glad to marry him.\"\n\n\"Very likely.--I think they are, without exception, the most vulgar\ngirls in Highbury.\"\n\nHarriet had business at Ford's.--Emma thought it most prudent to go\nwith her.  Another accidental meeting with the Martins was possible,\nand in her present state, would be dangerous.\n\nHarriet, tempted by every thing and swayed by half a word, was always\nvery long at a purchase; and while she was still hanging over muslins\nand changing her mind, Emma went to the door for amusement.--Much could\nnot be hoped from the traffic of even the busiest part of Highbury;--\nMr. Perry walking hastily by, Mr. William Cox letting himself in at\nthe office-door, Mr. Cole's carriage-horses returning from exercise,\nor a stray letter-boy on an obstinate mule, were the liveliest\nobjects she could presume to expect; and when her eyes fell only on\nthe butcher with his tray, a tidy old woman travelling homewards from\nshop with her full basket, two curs quarrelling over a dirty bone,\nand a string of dawdling children round the baker's little bow-window\neyeing the gingerbread, she knew she had no reason to complain,\nand was amused enough; quite enough still to stand at the door.\nA mind lively and at ease, can do with seeing nothing, and can see\nnothing that does not answer.\n\nShe looked down the Randalls road.  The scene enlarged;\ntwo persons appeared; Mrs. Weston and her son-in-law; they were\nwalking into Highbury;--to Hartfield of course.  They were stopping,\nhowever, in the first place at Mrs. Bates's; whose house was\na little nearer Randalls than Ford's; and had all but knocked,\nwhen Emma caught their eye.--Immediately they crossed the road\nand came forward to her; and the agreeableness of yesterday's\nengagement seemed to give fresh pleasure to the present meeting.\nMrs. Weston informed her that she was going to call on the Bateses,\nin order to hear the new instrument.\n\n\"For my companion tells me,\" said she, \"that I absolutely promised\nMiss Bates last night, that I would come this morning.  I was\nnot aware of it myself.  I did not know that I had fixed a day,\nbut as he says I did, I am going now.\"\n\n\"And while Mrs. Weston pays her visit, I may be allowed, I hope,\"\nsaid Frank Churchill, \"to join your party and wait for her at Hartfield--\nif you are going home.\"\n\nMrs. Weston was disappointed.\n\n\"I thought you meant to go with me.  They would be very much pleased.\"\n\n\"Me!  I should be quite in the way.  But, perhaps--I may be equally\nin the way here.  Miss Woodhouse looks as if she did not want me.\nMy aunt always sends me off when she is shopping.  She says I fidget\nher to death; and Miss Woodhouse looks as if she could almost say\nthe same.  What am I to do?\"\n\n\"I am here on no business of my own,\" said Emma; \"I am only waiting\nfor my friend.  She will probably have soon done, and then we\nshall go home.  But you had better go with Mrs. Weston and hear\nthe instrument.\"\n\n\"Well--if you advise it.--But (with a smile) if Colonel Campbell\nshould have employed a careless friend, and if it should prove\nto have an indifferent tone--what shall I say?  I shall be no\nsupport to Mrs. Weston.  She might do very well by herself.\nA disagreeable truth would be palatable through her lips, but I\nam the wretchedest being in the world at a civil falsehood.\"\n\n\"I do not believe any such thing,\" replied Emma.--\"I am persuaded\nthat you can be as insincere as your neighbours, when it is necessary;\nbut there is no reason to suppose the instrument is indifferent.\nQuite otherwise indeed, if I understood Miss Fairfax's opinion\nlast night.\"\n\n\"Do come with me,\" said Mrs. Weston, \"if it be not very disagreeable\nto you.  It need not detain us long.  We will go to Hartfield afterwards.\nWe will follow them to Hartfield.  I really wish you to call with me.\nIt will be felt so great an attention! and I always thought you\nmeant it.\"\n\nHe could say no more; and with the hope of Hartfield to reward him,\nreturned with Mrs. Weston to Mrs. Bates's door.  Emma watched them in,\nand then joined Harriet at the interesting counter,--trying, with all\nthe force of her own mind, to convince her that if she wanted plain\nmuslin it was of no use to look at figured; and that a blue ribbon,\nbe it ever so beautiful, would still never match her yellow pattern.\nAt last it was all settled, even to the destination of the parcel.\n\n\"Should I send it to Mrs. Goddard's, ma'am?\" asked Mrs. Ford.--\n\"Yes--no--yes, to Mrs. Goddard's. Only my pattern gown is\nat Hartfield.  No, you shall send it to Hartfield, if you please.\nBut then, Mrs. Goddard will want to see it.--And I could take the\npattern gown home any day.  But I shall want the ribbon directly--\nso it had better go to Hartfield--at least the ribbon.  You could\nmake it into two parcels, Mrs. Ford, could not you?\"\n\n\"It is not worth while, Harriet, to give Mrs. Ford the trouble\nof two parcels.\"\n\n\"No more it is.\"\n\n\"No trouble in the world, ma'am,\" said the obliging Mrs. Ford.\n\n\"Oh! but indeed I would much rather have it only in one.\nThen, if you please, you shall send it all to Mrs. Goddard's--\nI do not know--No, I think, Miss Woodhouse, I may just as well\nhave it sent to Hartfield, and take it home with me at night.\nWhat do you advise?\"\n\n\"That you do not give another half-second to the subject.\nTo Hartfield, if you please, Mrs. Ford.\"\n\n\"Aye, that will be much best,\" said Harriet, quite satisfied,\n\"I should not at all like to have it sent to Mrs. Goddard's.\"\n\nVoices approached the shop--or rather one voice and two ladies:\nMrs. Weston and Miss Bates met them at the door.\n\n\"My dear Miss Woodhouse,\" said the latter, \"I am just run across to\nentreat the favour of you to come and sit down with us a little while,\nand give us your opinion of our new instrument; you and Miss Smith.\nHow do you do, Miss Smith?--Very well I thank you.--And I begged\nMrs. Weston to come with me, that I might be sure of succeeding.\"\n\n\"I hope Mrs. Bates and Miss Fairfax are--\"\n\n\"Very well, I am much obliged to you.  My mother is delightfully well;\nand Jane caught no cold last night.  How is Mr. Woodhouse?--I am so glad\nto hear such a good account.  Mrs. Weston told me you were here.--\nOh! then, said I, I must run across, I am sure Miss Woodhouse will\nallow me just to run across and entreat her to come in; my mother\nwill be so very happy to see her--and now we are such a nice party,\nshe cannot refuse.--`Aye, pray do,' said Mr. Frank Churchill,\n`Miss Woodhouse's opinion of the instrument will be worth having.'--\nBut, said I, I shall be more sure of succeeding if one of you will go\nwith me.--`Oh,' said he, `wait half a minute, till I have finished\nmy job;'--For, would you believe it, Miss Woodhouse, there he is,\nin the most obliging manner in the world, fastening in the rivet of my\nmother's spectacles.--The rivet came out, you know, this morning.--\nSo very obliging!--For my mother had no use of her spectacles--\ncould not put them on.  And, by the bye, every body ought to have\ntwo pair of spectacles; they should indeed.  Jane said so.\nI meant to take them over to John Saunders the first thing I did,\nbut something or other hindered me all the morning; first one thing,\nthen another, there is no saying what, you know.  At one time Patty came\nto say she thought the kitchen chimney wanted sweeping.  Oh, said I,\nPatty do not come with your bad news to me.  Here is the rivet\nof your mistress's spectacles out.  Then the baked apples came home,\nMrs. Wallis sent them by her boy; they are extremely civil and\nobliging to us, the Wallises, always--I have heard some people\nsay that Mrs. Wallis can be uncivil and give a very rude answer,\nbut we have never known any thing but the greatest attention\nfrom them.  And it cannot be for the value of our custom now,\nfor what is our consumption of bread, you know?  Only three of us.--\nbesides dear Jane at present--and she really eats nothing--makes such\na shocking breakfast, you would be quite frightened if you saw it.\nI dare not let my mother know how little she eats--so I say one\nthing and then I say another, and it passes off.  But about the\nmiddle of the day she gets hungry, and there is nothing she likes\nso well as these baked apples, and they are extremely wholesome,\nfor I took the opportunity the other day of asking Mr. Perry;\nI happened to meet him in the street.  Not that I had any doubt before--\nI have so often heard Mr. Woodhouse recommend a baked apple.\nI believe it is the only way that Mr. Woodhouse thinks the\nfruit thoroughly wholesome.  We have apple-dumplings, however,\nvery often.  Patty makes an excellent apple-dumpling. Well,\nMrs. Weston, you have prevailed, I hope, and these ladies will\noblige us.\"\n\nEmma would be \"very happy to wait on Mrs. Bates, &c.,\" and they\ndid at last move out of the shop, with no farther delay from Miss\nBates than,\n\n\"How do you do, Mrs. Ford?  I beg your pardon.  I did not see\nyou before.  I hear you have a charming collection of new ribbons\nfrom town.  Jane came back delighted yesterday.  Thank ye,\nthe gloves do very well--only a little too large about the wrist;\nbut Jane is taking them in.\"\n\n\"What was I talking of?\" said she, beginning again when they were\nall in the street.\n\nEmma wondered on what, of all the medley, she would fix.\n\n\"I declare I cannot recollect what I was talking of.--Oh! my\nmother's spectacles.  So very obliging of Mr. Frank Churchill!\n`Oh!' said he, `I do think I can fasten the rivet; I like a job\nof this kind excessively.'--Which you know shewed him to be so\nvery. . . . Indeed I must say that, much as I had heard of him\nbefore and much as I had expected, he very far exceeds any\nthing. . . . I do congratulate you, Mrs. Weston, most warmly.\nHe seems every thing the fondest parent could. . . . `Oh!' said he,\n`I can fasten the rivet.  I like a job of that sort excessively.'\nI never shall forget his manner.  And when I brought out the baked\napples from the closet, and hoped our friends would be so very\nobliging as to take some, `Oh!' said he directly, `there is nothing\nin the way of fruit half so good, and these are the finest-looking\nhome-baked apples I ever saw in my life.'  That, you know, was so\nvery. . . . And I am sure, by his manner, it was no compliment.\nIndeed they are very delightful apples, and Mrs. Wallis does them\nfull justice--only we do not have them baked more than twice,\nand Mr. Woodhouse made us promise to have them done three times--\nbut Miss Woodhouse will be so good as not to mention it.  The apples\nthemselves are the very finest sort for baking, beyond a doubt;\nall from Donwell--some of Mr. Knightley's most liberal supply.\nHe sends us a sack every year; and certainly there never was such\na keeping apple anywhere as one of his trees--I believe there\nis two of them.  My mother says the orchard was always famous\nin her younger days.  But I was really quite shocked the other day--\nfor Mr. Knightley called one morning, and Jane was eating these apples,\nand we talked about them and said how much she enjoyed them,\nand he asked whether we were not got to the end of our stock.\n`I am sure you must be,' said he, `and I will send you\nanother supply; for I have a great many more than I can ever use.\nWilliam Larkins let me keep a larger quantity than usual this year.\nI will send you some more, before they get good for nothing.'\nSo I begged he would not--for really as to ours being gone, I could\nnot absolutely say that we had a great many left--it was but half\na dozen indeed; but they should be all kept for Jane; and I could\nnot at all bear that he should be sending us more, so liberal as he\nhad been already; and Jane said the same.  And when he was gone,\nshe almost quarrelled with me--No, I should not say quarrelled,\nfor we never had a quarrel in our lives; but she was quite distressed\nthat I had owned the apples were so nearly gone; she wished I had\nmade him believe we had a great many left.  Oh, said I, my dear,\nI did say as much as I could.  However, the very same evening\nWilliam Larkins came over with a large basket of apples, the same\nsort of apples, a bushel at least, and I was very much obliged,\nand went down and spoke to William Larkins and said every thing,\nas you may suppose.  William Larkins is such an old acquaintance!\nI am always glad to see him.  But, however, I found afterwards\nfrom Patty, that William said it was all the apples of _that_ sort\nhis master had; he had brought them all--and now his master had not\none left to bake or boil.  William did not seem to mind it himself,\nhe was so pleased to think his master had sold so many; for William,\nyou know, thinks more of his master's profit than any thing;\nbut Mrs. Hodges, he said, was quite displeased at their being\nall sent away.  She could not bear that her master should not be\nable to have another apple-tart this spring.  He told Patty this,\nbut bid her not mind it, and be sure not to say any thing to us\nabout it, for Mrs. Hodges _would_ be cross sometimes, and as long as\nso many sacks were sold, it did not signify who ate the remainder.\nAnd so Patty told me, and I was excessively shocked indeed!\nI would not have Mr. Knightley know any thing about it for\nthe world!  He would be so very. . . . I wanted to keep it from\nJane's knowledge; but, unluckily, I had mentioned it before I was\naware.\"\n\nMiss Bates had just done as Patty opened the door; and her visitors\nwalked upstairs without having any regular narration to attend to,\npursued only by the sounds of her desultory good-will.\n\n\"Pray take care, Mrs. Weston, there is a step at the turning.\nPray take care, Miss Woodhouse, ours is rather a dark staircase--\nrather darker and narrower than one could wish.  Miss Smith,\npray take care.  Miss Woodhouse, I am quite concerned, I am sure you\nhit your foot.  Miss Smith, the step at the turning.\"\n\n\n\nCHAPTER X\n\n\nThe appearance of the little sitting-room as they entered,\nwas tranquillity itself; Mrs. Bates, deprived of her usual employment,\nslumbering on one side of the fire, Frank Churchill, at a table\nnear her, most deedily occupied about her spectacles, and Jane Fairfax,\nstanding with her back to them, intent on her pianoforte.\n\nBusy as he was, however, the young man was yet able to shew a most\nhappy countenance on seeing Emma again.\n\n\"This is a pleasure,\" said he, in rather a low voice, \"coming at\nleast ten minutes earlier than I had calculated.  You find me\ntrying to be useful; tell me if you think I shall succeed.\"\n\n\"What!\" said Mrs. Weston, \"have not you finished it yet? you would\nnot earn a very good livelihood as a working silversmith at this rate.\"\n\n\"I have not been working uninterruptedly,\" he replied, \"I have been\nassisting Miss Fairfax in trying to make her instrument stand steadily,\nit was not quite firm; an unevenness in the floor, I believe.\nYou see we have been wedging one leg with paper.  This was very kind\nof you to be persuaded to come.  I was almost afraid you would be\nhurrying home.\"\n\nHe contrived that she should be seated by him; and was sufficiently\nemployed in looking out the best baked apple for her, and trying\nto make her help or advise him in his work, till Jane Fairfax was\nquite ready to sit down to the pianoforte again.  That she was not\nimmediately ready, Emma did suspect to arise from the state of her nerves;\nshe had not yet possessed the instrument long enough to touch it\nwithout emotion; she must reason herself into the power of performance;\nand Emma could not but pity such feelings, whatever their origin,\nand could not but resolve never to expose them to her neighbour again.\n\nAt last Jane began, and though the first bars were feebly given,\nthe powers of the instrument were gradually done full justice to.\nMrs. Weston had been delighted before, and was delighted again;\nEmma joined her in all her praise; and the pianoforte, with every\nproper discrimination, was pronounced to be altogether of the\nhighest promise.\n\n\"Whoever Colonel Campbell might employ,\" said Frank Churchill,\nwith a smile at Emma, \"the person has not chosen ill.  I heard a good\ndeal of Colonel Campbell's taste at Weymouth; and the softness of the\nupper notes I am sure is exactly what he and _all_ _that_ _party_ would\nparticularly prize.  I dare say, Miss Fairfax, that he either gave\nhis friend very minute directions, or wrote to Broadwood himself.\nDo not you think so?\"\n\nJane did not look round.  She was not obliged to hear.  Mrs. Weston\nhad been speaking to her at the same moment.\n\n\"It is not fair,\" said Emma, in a whisper; \"mine was a random guess.\nDo not distress her.\"\n\nHe shook his head with a smile, and looked as if he had very little\ndoubt and very little mercy.  Soon afterwards he began again,\n\n\"How much your friends in Ireland must be enjoying your pleasure\non this occasion, Miss Fairfax.  I dare say they often think of you,\nand wonder which will be the day, the precise day of the instrument's\ncoming to hand.  Do you imagine Colonel Campbell knows the business\nto be going forward just at this time?--Do you imagine it to be\nthe consequence of an immediate commission from him, or that he may\nhave sent only a general direction, an order indefinite as to time,\nto depend upon contingencies and conveniences?\"\n\nHe paused.  She could not but hear; she could not avoid answering,\n\n\"Till I have a letter from Colonel Campbell,\" said she, in a voice\nof forced calmness, \"I can imagine nothing with any confidence.\nIt must be all conjecture.\"\n\n\"Conjecture--aye, sometimes one conjectures right, and sometimes\none conjectures wrong.  I wish I could conjecture how soon I shall\nmake this rivet quite firm.  What nonsense one talks, Miss Woodhouse,\nwhen hard at work, if one talks at all;--your real workmen,\nI suppose, hold their tongues; but we gentlemen labourers if we get\nhold of a word--Miss Fairfax said something about conjecturing.\nThere, it is done.  I have the pleasure, madam, (to Mrs. Bates,)\nof restoring your spectacles, healed for the present.\"\n\nHe was very warmly thanked both by mother and daughter; to escape\na little from the latter, he went to the pianoforte, and begged\nMiss Fairfax, who was still sitting at it, to play something more.\n\n\"If you are very kind,\" said he, \"it will be one of the waltzes\nwe danced last night;--let me live them over again.  You did not\nenjoy them as I did; you appeared tired the whole time.  I believe\nyou were glad we danced no longer; but I would have given worlds--\nall the worlds one ever has to give--for another half-hour.\"\n\nShe played.\n\n\"What felicity it is to hear a tune again which _has_ made one happy!--\nIf I mistake not that was danced at Weymouth.\"\n\nShe looked up at him for a moment, coloured deeply, and played\nsomething else.  He took some music from a chair near the pianoforte,\nand turning to Emma, said,\n\n\"Here is something quite new to me.  Do you know it?--Cramer.--\nAnd here are a new set of Irish melodies.  That, from such a quarter,\none might expect.  This was all sent with the instrument.  Very thoughtful\nof Colonel Campbell, was not it?--He knew Miss Fairfax could have\nno music here.  I honour that part of the attention particularly;\nit shews it to have been so thoroughly from the heart.  Nothing hastily\ndone; nothing incomplete.  True affection only could have prompted it.\"\n\nEmma wished he would be less pointed, yet could not help being amused;\nand when on glancing her eye towards Jane Fairfax she caught\nthe remains of a smile, when she saw that with all the deep blush\nof consciousness, there had been a smile of secret delight,\nshe had less scruple in the amusement, and much less compunction\nwith respect to her.--This amiable, upright, perfect Jane Fairfax\nwas apparently cherishing very reprehensible feelings.\n\nHe brought all the music to her, and they looked it over together.--\nEmma took the opportunity of whispering,\n\n\"You speak too plain.  She must understand you.\"\n\n\"I hope she does.  I would have her understand me.  I am not\nin the least ashamed of my meaning.\"\n\n\"But really, I am half ashamed, and wish I had never taken up\nthe idea.\"\n\n\"I am very glad you did, and that you communicated it to me.\nI have now a key to all her odd looks and ways.  Leave shame to her.\nIf she does wrong, she ought to feel it.\"\n\n\"She is not entirely without it, I think.\"\n\n\"I do not see much sign of it.  She is playing _Robin_ _Adair_\nat this moment--_his_ favourite.\"\n\nShortly afterwards Miss Bates, passing near the window,\ndescried Mr. Knightley on horse-back not far off.\n\n\"Mr. Knightley I declare!--I must speak to him if possible,\njust to thank him.  I will not open the window here; it would give\nyou all cold; but I can go into my mother's room you know.  I dare\nsay he will come in when he knows who is here.  Quite delightful\nto have you all meet so!--Our little room so honoured!\"\n\nShe was in the adjoining chamber while she still spoke, and opening\nthe casement there, immediately called Mr. Knightley's attention,\nand every syllable of their conversation was as distinctly heard\nby the others, as if it had passed within the same apartment.\n\n\"How d' ye do?--how d'ye do?--Very well, I thank you.  So obliged\nto you for the carriage last night.  We were just in time;\nmy mother just ready for us.  Pray come in; do come in.  You will\nfind some friends here.\"\n\nSo began Miss Bates; and Mr. Knightley seemed determined to be heard\nin his turn, for most resolutely and commandingly did he say,\n\n\"How is your niece, Miss Bates?--I want to inquire after you all,\nbut particularly your niece.  How is Miss Fairfax?--I hope she\ncaught no cold last night.  How is she to-day? Tell me how Miss\nFairfax is.\"\n\nAnd Miss Bates was obliged to give a direct answer before he\nwould hear her in any thing else.  The listeners were amused;\nand Mrs. Weston gave Emma a look of particular meaning.  But Emma\nstill shook her head in steady scepticism.\n\n\"So obliged to you!--so very much obliged to you for the carriage,\"\nresumed Miss Bates.\n\nHe cut her short with,\n\n\"I am going to Kingston.  Can I do any thing for you?\"\n\n\"Oh! dear, Kingston--are you?--Mrs. Cole was saying the other day\nshe wanted something from Kingston.\"\n\n\"Mrs. Cole has servants to send.  Can I do any thing for _you_?\"\n\n\"No, I thank you.  But do come in.  Who do you think is here?--\nMiss Woodhouse and Miss Smith; so kind as to call to hear the\nnew pianoforte.  Do put up your horse at the Crown, and come in.\"\n\n\"Well,\" said he, in a deliberating manner, \"for five minutes, perhaps.\"\n\n\"And here is Mrs. Weston and Mr. Frank Churchill too!--Quite delightful;\nso many friends!\"\n\n\"No, not now, I thank you.  I could not stay two minutes.\nI must get on to Kingston as fast as I can.\"\n\n\"Oh! do come in.  They will be so very happy to see you.\"\n\n\"No, no; your room is full enough.  I will call another day,\nand hear the pianoforte.\"\n\n\"Well, I am so sorry!--Oh!  Mr. Knightley, what a delightful party\nlast night; how extremely pleasant.--Did you ever see such dancing?--\nWas not it delightful?--Miss Woodhouse and Mr. Frank Churchill;\nI never saw any thing equal to it.\"\n\n\"Oh! very delightful indeed; I can say nothing less, for I suppose\nMiss Woodhouse and Mr. Frank Churchill are hearing every thing\nthat passes.  And (raising his voice still more) I do not see why Miss\nFairfax should not be mentioned too.  I think Miss Fairfax dances\nvery well; and Mrs. Weston is the very best country-dance player,\nwithout exception, in England.  Now, if your friends have any gratitude,\nthey will say something pretty loud about you and me in return;\nbut I cannot stay to hear it.\"\n\n\"Oh!  Mr. Knightley, one moment more; something of consequence--\nso shocked!--Jane and I are both so shocked about the apples!\"\n\n\"What is the matter now?\"\n\n\"To think of your sending us all your store apples.  You said you had\na great many, and now you have not one left.  We really are so shocked!\nMrs. Hodges may well be angry.  William Larkins mentioned it here.\nYou should not have done it, indeed you should not.  Ah! he is off.\nHe never can bear to be thanked.  But I thought he would have staid now,\nand it would have been a pity not to have mentioned. . . . Well,\n(returning to the room,) I have not been able to succeed.\nMr. Knightley cannot stop.  He is going to Kingston.  He asked me\nif he could do any thing. . . .\"\n\n\"Yes,\" said Jane, \"we heard his kind offers, we heard every thing.\"\n\n\"Oh! yes, my dear, I dare say you might, because you know, the door\nwas open, and the window was open, and Mr. Knightley spoke loud.\nYou must have heard every thing to be sure.  `Can I do any thing\nfor you at Kingston?' said he; so I just mentioned. . . . Oh!\nMiss Woodhouse, must you be going?--You seem but just come--so very\nobliging of you.\"\n\nEmma found it really time to be at home; the visit had already\nlasted long; and on examining watches, so much of the morning was\nperceived to be gone, that Mrs. Weston and her companion taking\nleave also, could allow themselves only to walk with the two young\nladies to Hartfield gates, before they set off for Randalls.\n\n\n\nCHAPTER XI\n\n\nIt may be possible to do without dancing entirely.  Instances have\nbeen known of young people passing many, many months successively,\nwithout being at any ball of any description, and no material injury\naccrue either to body or mind;--but when a beginning is made--\nwhen the felicities of rapid motion have once been, though slightly,\nfelt--it must be a very heavy set that does not ask for more.\n\nFrank Churchill had danced once at Highbury, and longed to dance again;\nand the last half-hour of an evening which Mr. Woodhouse was persuaded\nto spend with his daughter at Randalls, was passed by the two young\npeople in schemes on the subject.  Frank's was the first idea;\nand his the greatest zeal in pursuing it; for the lady was the best\njudge of the difficulties, and the most solicitous for accommodation\nand appearance.  But still she had inclination enough for shewing\npeople again how delightfully Mr. Frank Churchill and Miss\nWoodhouse danced--for doing that in which she need not blush to compare\nherself with Jane Fairfax--and even for simple dancing itself,\nwithout any of the wicked aids of vanity--to assist him first\nin pacing out the room they were in to see what it could be made\nto hold--and then in taking the dimensions of the other parlour,\nin the hope of discovering, in spite of all that Mr. Weston could\nsay of their exactly equal size, that it was a little the largest.\n\nHis first proposition and request, that the dance begun at Mr. Cole's\nshould be finished there--that the same party should be collected,\nand the same musician engaged, met with the readiest acquiescence.\nMr. Weston entered into the idea with thorough enjoyment,\nand Mrs. Weston most willingly undertook to play as long as they\ncould wish to dance; and the interesting employment had followed,\nof reckoning up exactly who there would be, and portioning out the\nindispensable division of space to every couple.\n\n\"You and Miss Smith, and Miss Fairfax, will be three, and the two\nMiss Coxes five,\" had been repeated many times over.  \"And there\nwill be the two Gilberts, young Cox, my father, and myself,\nbesides Mr. Knightley.  Yes, that will be quite enough for pleasure.\nYou and Miss Smith, and Miss Fairfax, will be three, and the two Miss\nCoxes five; and for five couple there will be plenty of room.\"\n\nBut soon it came to be on one side,\n\n\"But will there be good room for five couple?--I really do not think\nthere will.\"\n\nOn another,\n\n\"And after all, five couple are not enough to make it worth\nwhile to stand up.  Five couple are nothing, when one thinks\nseriously about it.  It will not do to _invite_ five couple.\nIt can be allowable only as the thought of the moment.\"\n\nSomebody said that _Miss_ Gilbert was expected at her brother's,\nand must be invited with the rest.  Somebody else believed\n_Mrs_. Gilbert would have danced the other evening, if she had\nbeen asked.  A word was put in for a second young Cox; and at last,\nMr. Weston naming one family of cousins who must be included,\nand another of very old acquaintance who could not be left out,\nit became a certainty that the five couple would be at least ten,\nand a very interesting speculation in what possible manner they\ncould be disposed of.\n\nThe doors of the two rooms were just opposite each other.\n\"Might not they use both rooms, and dance across the passage?\"\nIt seemed the best scheme; and yet it was not so good but that\nmany of them wanted a better.  Emma said it would be awkward;\nMrs. Weston was in distress about the supper; and Mr. Woodhouse\nopposed it earnestly, on the score of health.  It made him so\nvery unhappy, indeed, that it could not be persevered in.\n\n\"Oh! no,\" said he; \"it would be the extreme of imprudence.\nI could not bear it for Emma!--Emma is not strong.  She would\ncatch a dreadful cold.  So would poor little Harriet.\nSo you would all.  Mrs. Weston, you would be quite laid up;\ndo not let them talk of such a wild thing.  Pray do not let them\ntalk of it.  That young man (speaking lower) is very thoughtless.\nDo not tell his father, but that young man is not quite the thing.\nHe has been opening the doors very often this evening, and keeping\nthem open very inconsiderately.  He does not think of the draught.\nI do not mean to set you against him, but indeed he is not quite\nthe thing!\"\n\nMrs. Weston was sorry for such a charge.  She knew the importance\nof it, and said every thing in her power to do it away.  Every door\nwas now closed, the passage plan given up, and the first scheme\nof dancing only in the room they were in resorted to again;\nand with such good-will on Frank Churchill's part, that the space\nwhich a quarter of an hour before had been deemed barely sufficient\nfor five couple, was now endeavoured to be made out quite enough\nfor ten.\n\n\"We were too magnificent,\" said he.  \"We allowed unnecessary room.\nTen couple may stand here very well.\"\n\nEmma demurred.  \"It would be a crowd--a sad crowd; and what could\nbe worse than dancing without space to turn in?\"\n\n\"Very true,\" he gravely replied; \"it was very bad.\"  But still he\nwent on measuring, and still he ended with,\n\n\"I think there will be very tolerable room for ten couple.\"\n\n\"No, no,\" said she, \"you are quite unreasonable.  It would be dreadful\nto be standing so close!  Nothing can be farther from pleasure\nthan to be dancing in a crowd--and a crowd in a little room!\"\n\n\"There is no denying it,\" he replied.  \"I agree with you exactly.\nA crowd in a little room--Miss Woodhouse, you have the art of giving\npictures in a few words.  Exquisite, quite exquisite!--Still, however,\nhaving proceeded so far, one is unwilling to give the matter up.\nIt would be a disappointment to my father--and altogether--I do\nnot know that--I am rather of opinion that ten couple might stand\nhere very well.\"\n\nEmma perceived that the nature of his gallantry was a little\nself-willed, and that he would rather oppose than lose the pleasure\nof dancing with her; but she took the compliment, and forgave\nthe rest.  Had she intended ever to _marry_ him, it might have been\nworth while to pause and consider, and try to understand the value\nof his preference, and the character of his temper; but for\nall the purposes of their acquaintance, he was quite amiable enough.\n\nBefore the middle of the next day, he was at Hartfield; and he entered\nthe room with such an agreeable smile as certified the continuance\nof the scheme.  It soon appeared that he came to announce an improvement.\n\n\"Well, Miss Woodhouse,\" he almost immediately began, \"your inclination\nfor dancing has not been quite frightened away, I hope, by the\nterrors of my father's little rooms.  I bring a new proposal\non the subject:--a thought of my father's, which waits only your\napprobation to be acted upon.  May I hope for the honour of your\nhand for the two first dances of this little projected ball,\nto be given, not at Randalls, but at the Crown Inn?\"\n\n\"The Crown!\"\n\n\"Yes; if you and Mr. Woodhouse see no objection, and I trust you cannot,\nmy father hopes his friends will be so kind as to visit him there.\nBetter accommodations, he can promise them, and not a less grateful\nwelcome than at Randalls.  It is his own idea.  Mrs. Weston sees\nno objection to it, provided you are satisfied.  This is what we\nall feel.  Oh! you were perfectly right!  Ten couple, in either of\nthe Randalls rooms, would have been insufferable!--Dreadful!--I felt\nhow right you were the whole time, but was too anxious for securing\n_any_ _thing_ to like to yield.  Is not it a good exchange?--You consent--\nI hope you consent?\"\n\n\"It appears to me a plan that nobody can object to, if Mr. and\nMrs. Weston do not.  I think it admirable; and, as far as I can\nanswer for myself, shall be most happy--It seems the only improvement\nthat could be.  Papa, do you not think it an excellent improvement?\"\n\nShe was obliged to repeat and explain it, before it was fully\ncomprehended; and then, being quite new, farther representations\nwere necessary to make it acceptable.\n\n\"No; he thought it very far from an improvement--a very bad plan--\nmuch worse than the other.  A room at an inn was always damp\nand dangerous; never properly aired, or fit to be inhabited.\nIf they must dance, they had better dance at Randalls.  He had never\nbeen in the room at the Crown in his life--did not know the people\nwho kept it by sight.--Oh! no--a very bad plan.  They would catch\nworse colds at the Crown than anywhere.\"\n\n\"I was going to observe, sir,\" said Frank Churchill,\n\"that one of the great recommendations of this change would\nbe the very little danger of any body's catching cold--\nso much less danger at the Crown than at Randalls!  Mr. Perry\nmight have reason to regret the alteration, but nobody else could.\"\n\n\"Sir,\" said Mr. Woodhouse, rather warmly, \"you are very much\nmistaken if you suppose Mr. Perry to be that sort of character.\nMr. Perry is extremely concerned when any of us are ill.  But I\ndo not understand how the room at the Crown can be safer for you\nthan your father's house.\"\n\n\"From the very circumstance of its being larger, sir.  We shall have\nno occasion to open the windows at all--not once the whole evening;\nand it is that dreadful habit of opening the windows, letting in cold\nair upon heated bodies, which (as you well know, sir) does the mischief.\"\n\n\"Open the windows!--but surely, Mr. Churchill, nobody would think\nof opening the windows at Randalls.  Nobody could be so imprudent!\nI never heard of such a thing.  Dancing with open windows!--I am sure,\nneither your father nor Mrs. Weston (poor Miss Taylor that was)\nwould suffer it.\"\n\n\"Ah! sir--but a thoughtless young person will sometimes step behind\na window-curtain, and throw up a sash, without its being suspected.\nI have often known it done myself.\"\n\n\"Have you indeed, sir?--Bless me!  I never could have supposed it.\nBut I live out of the world, and am often astonished at what I hear.\nHowever, this does make a difference; and, perhaps, when we come\nto talk it over--but these sort of things require a good deal\nof consideration.  One cannot resolve upon them in a hurry.\nIf Mr. and Mrs. Weston will be so obliging as to call here one morning,\nwe may talk it over, and see what can be done.\"\n\n\"But, unfortunately, sir, my time is so limited--\"\n\n\"Oh!\" interrupted Emma, \"there will be plenty of time for talking\nevery thing over.  There is no hurry at all.  If it can be contrived\nto be at the Crown, papa, it will be very convenient for the horses.\nThey will be so near their own stable.\"\n\n\"So they will, my dear.  That is a great thing.  Not that James\never complains; but it is right to spare our horses when we can.\nIf I could be sure of the rooms being thoroughly aired--but is\nMrs. Stokes to be trusted?  I doubt it.  I do not know her,\neven by sight.\"\n\n\"I can answer for every thing of that nature, sir, because it will\nbe under Mrs. Weston's care.  Mrs. Weston undertakes to direct\nthe whole.\"\n\n\"There, papa!--Now you must be satisfied--Our own dear Mrs. Weston,\nwho is carefulness itself.  Do not you remember what Mr. Perry said,\nso many years ago, when I had the measles?  `If _Miss_ _Taylor_ undertakes\nto wrap Miss Emma up, you need not have any fears, sir.'  How often\nhave I heard you speak of it as such a compliment to her!\"\n\n\"Aye, very true.  Mr. Perry did say so.  I shall never forget it.\nPoor little Emma!  You were very bad with the measles; that is,\nyou would have been very bad, but for Perry's great attention.\nHe came four times a day for a week.  He said, from the first,\nit was a very good sort--which was our great comfort; but the measles\nare a dreadful complaint.  I hope whenever poor Isabella's little ones\nhave the measles, she will send for Perry.\"\n\n\"My father and Mrs. Weston are at the Crown at this moment,\"\nsaid Frank Churchill, \"examining the capabilities of the house.\nI left them there and came on to Hartfield, impatient for your opinion,\nand hoping you might be persuaded to join them and give your advice\non the spot.  I was desired to say so from both.  It would be the\ngreatest pleasure to them, if you could allow me to attend you there.\nThey can do nothing satisfactorily without you.\"\n\nEmma was most happy to be called to such a council; and her father,\nengaging to think it all over while she was gone, the two young\npeople set off together without delay for the Crown.  There were\nMr. and Mrs. Weston; delighted to see her and receive her approbation,\nvery busy and very happy in their different way; she, in some\nlittle distress; and he, finding every thing perfect.\n\n\"Emma,\" said she, \"this paper is worse than I expected.\nLook! in places you see it is dreadfully dirty; and the wainscot\nis more yellow and forlorn than any thing I could have imagined.\"\n\n\"My dear, you are too particular,\" said her husband.  \"What does\nall that signify?  You will see nothing of it by candlelight.\nIt will be as clean as Randalls by candlelight.  We never see any\nthing of it on our club-nights.\"\n\nThe ladies here probably exchanged looks which meant, \"Men never\nknow when things are dirty or not;\" and the gentlemen perhaps\nthought each to himself, \"Women will have their little nonsenses\nand needless cares.\"\n\nOne perplexity, however, arose, which the gentlemen did not disdain.\nIt regarded a supper-room.  At the time of the ballroom's being built,\nsuppers had not been in question; and a small card-room adjoining,\nwas the only addition.  What was to be done?  This card-room would\nbe wanted as a card-room now; or, if cards were conveniently voted\nunnecessary by their four selves, still was it not too small for\nany comfortable supper?  Another room of much better size might be\nsecured for the purpose; but it was at the other end of the house,\nand a long awkward passage must be gone through to get at it.\nThis made a difficulty.  Mrs. Weston was afraid of draughts\nfor the young people in that passage; and neither Emma nor the\ngentlemen could tolerate the prospect of being miserably crowded\nat supper.\n\nMrs. Weston proposed having no regular supper; merely sandwiches,\n&c., set out in the little room; but that was scouted as a\nwretched suggestion.  A private dance, without sitting down to supper,\nwas pronounced an infamous fraud upon the rights of men and women;\nand Mrs. Weston must not speak of it again.  She then took another\nline of expediency, and looking into the doubtful room, observed,\n\n\"I do not think it _is_ so very small.  We shall not be many,\nyou know.\"\n\nAnd Mr. Weston at the same time, walking briskly with long steps\nthrough the passage, was calling out,\n\n\"You talk a great deal of the length of this passage, my dear.\nIt is a mere nothing after all; and not the least draught from\nthe stairs.\"\n\n\"I wish,\" said Mrs. Weston, \"one could know which arrangement our\nguests in general would like best.  To do what would be most generally\npleasing must be our object--if one could but tell what that would be.\"\n\n\"Yes, very true,\" cried Frank, \"very true.  You want your neighbours'\nopinions.  I do not wonder at you.  If one could ascertain what the\nchief of them--the Coles, for instance.  They are not far off.\nShall I call upon them?  Or Miss Bates?  She is still nearer.--\nAnd I do not know whether Miss Bates is not as likely to understand\nthe inclinations of the rest of the people as any body.  I think\nwe do want a larger council.  Suppose I go and invite Miss Bates\nto join us?\"\n\n\"Well--if you please,\" said Mrs. Weston rather hesitating, \"if you\nthink she will be of any use.\"\n\n\"You will get nothing to the purpose from Miss Bates,\" said Emma.\n\"She will be all delight and gratitude, but she will tell you nothing.\nShe will not even listen to your questions.  I see no advantage in\nconsulting Miss Bates.\"\n\n\"But she is so amusing, so extremely amusing!  I am very fond\nof hearing Miss Bates talk.  And I need not bring the whole family,\nyou know.\"\n\nHere Mr. Weston joined them, and on hearing what was proposed,\ngave it his decided approbation.\n\n\"Aye, do, Frank.--Go and fetch Miss Bates, and let us end the matter\nat once.  She will enjoy the scheme, I am sure; and I do not know\na properer person for shewing us how to do away difficulties.\nFetch Miss Bates.  We are growing a little too nice.  She is\na standing lesson of how to be happy.  But fetch them both.\nInvite them both.\"\n\n\"Both sir!  Can the old lady?\" . . .\n\n\"The old lady!  No, the young lady, to be sure.  I shall think you\na great blockhead, Frank, if you bring the aunt without the niece.\"\n\n\"Oh!  I beg your pardon, sir.  I did not immediately recollect.\nUndoubtedly if you wish it, I will endeavour to persuade them both.\"\nAnd away he ran.\n\nLong before he reappeared, attending the short, neat, brisk-moving aunt,\nand her elegant niece,--Mrs. Weston, like a sweet-tempered\nwoman and a good wife, had examined the passage again,\nand found the evils of it much less than she had supposed before--\nindeed very trifling; and here ended the difficulties of decision.\nAll the rest, in speculation at least, was perfectly smooth.\nAll the minor arrangements of table and chair, lights and music,\ntea and supper, made themselves; or were left as mere trifles\nto be settled at any time between Mrs. Weston and Mrs. Stokes.--\nEvery body invited, was certainly to come; Frank had already written\nto Enscombe to propose staying a few days beyond his fortnight,\nwhich could not possibly be refused.  And a delightful dance it was\nto be.\n\nMost cordially, when Miss Bates arrived, did she agree that it must.\nAs a counsellor she was not wanted; but as an approver, (a much\nsafer character,) she was truly welcome.  Her approbation, at once\ngeneral and minute, warm and incessant, could not but please;\nand for another half-hour they were all walking to and fro,\nbetween the different rooms, some suggesting, some attending,\nand all in happy enjoyment of the future.  The party did not break\nup without Emma's being positively secured for the two first dances\nby the hero of the evening, nor without her overhearing Mr. Weston\nwhisper to his wife, \"He has asked her, my dear.  That's right.\nI knew he would!\"\n\n\n\nCHAPTER XII\n\n\nOne thing only was wanting to make the prospect of the ball\ncompletely satisfactory to Emma--its being fixed for a day within\nthe granted term of Frank Churchill's stay in Surry; for, in spite\nof Mr. Weston's confidence, she could not think it so very impossible\nthat the Churchills might not allow their nephew to remain\na day beyond his fortnight.  But this was not judged feasible.\nThe preparations must take their time, nothing could be properly\nready till the third week were entered on, and for a few days they\nmust be planning, proceeding and hoping in uncertainty--at the risk--\nin her opinion, the great risk, of its being all in vain.\n\nEnscombe however was gracious, gracious in fact, if not in word.\nHis wish of staying longer evidently did not please; but it was\nnot opposed.  All was safe and prosperous; and as the removal of one\nsolicitude generally makes way for another, Emma, being now certain\nof her ball, began to adopt as the next vexation Mr. Knightley's\nprovoking indifference about it.  Either because he did not\ndance himself, or because the plan had been formed without his\nbeing consulted, he seemed resolved that it should not interest him,\ndetermined against its exciting any present curiosity, or affording\nhim any future amusement.  To her voluntary communications Emma\ncould get no more approving reply, than,\n\n\"Very well.  If the Westons think it worth while to be at all this\ntrouble for a few hours of noisy entertainment, I have nothing\nto say against it, but that they shall not chuse pleasures for me.--\nOh! yes, I must be there; I could not refuse; and I will keep\nas much awake as I can; but I would rather be at home, looking over\nWilliam Larkins's week's account; much rather, I confess.--\nPleasure in seeing dancing!--not I, indeed--I never look at it--\nI do not know who does.--Fine dancing, I believe, like virtue,\nmust be its own reward.  Those who are standing by are usually\nthinking of something very different.\"\n\nThis Emma felt was aimed at her; and it made her quite angry.\nIt was not in compliment to Jane Fairfax however that he was\nso indifferent, or so indignant; he was not guided by _her_ feelings\nin reprobating the ball, for _she_ enjoyed the thought of it\nto an extraordinary degree.  It made her animated--open hearted--\nshe voluntarily said;--\n\n\"Oh!  Miss Woodhouse, I hope nothing may happen to prevent the ball.\nWhat a disappointment it would be!  I do look forward to it, I own,\nwith _very_ great pleasure.\"\n\nIt was not to oblige Jane Fairfax therefore that he would have\npreferred the society of William Larkins.  No!--she was more and more\nconvinced that Mrs. Weston was quite mistaken in that surmise.\nThere was a great deal of friendly and of compassionate attachment\non his side--but no love.\n\nAlas! there was soon no leisure for quarrelling with Mr. Knightley.\nTwo days of joyful security were immediately followed by the\nover-throw of every thing.  A letter arrived from Mr. Churchill\nto urge his nephew's instant return.  Mrs. Churchill was unwell--\nfar too unwell to do without him; she had been in a very suffering\nstate (so said her husband) when writing to her nephew two days before,\nthough from her usual unwillingness to give pain, and constant\nhabit of never thinking of herself, she had not mentioned it;\nbut now she was too ill to trifle, and must entreat him to set off\nfor Enscombe without delay.\n\nThe substance of this letter was forwarded to Emma, in a note\nfrom Mrs. Weston, instantly.  As to his going, it was inevitable.\nHe must be gone within a few hours, though without feeling any real\nalarm for his aunt, to lessen his repugnance.  He knew her illnesses;\nthey never occurred but for her own convenience.\n\nMrs. Weston added, \"that he could only allow himself time to\nhurry to Highbury, after breakfast, and take leave of the few\nfriends there whom he could suppose to feel any interest in him;\nand that he might be expected at Hartfield very soon.\"\n\nThis wretched note was the finale of Emma's breakfast.  When once\nit had been read, there was no doing any thing, but lament\nand exclaim.  The loss of the ball--the loss of the young man--\nand all that the young man might be feeling!--It was too wretched!--\nSuch a delightful evening as it would have been!--Every body so happy!\nand she and her partner the happiest!--\"I said it would be so,\"\nwas the only consolation.\n\nHer father's feelings were quite distinct.  He thought principally\nof Mrs. Churchill's illness, and wanted to know how she was treated;\nand as for the ball, it was shocking to have dear Emma disappointed;\nbut they would all be safer at home.\n\nEmma was ready for her visitor some time before he appeared;\nbut if this reflected at all upon his impatience, his sorrowful\nlook and total want of spirits when he did come might redeem him.\nHe felt the going away almost too much to speak of it.  His dejection\nwas most evident.  He sat really lost in thought for the first\nfew minutes; and when rousing himself, it was only to say,\n\n\"Of all horrid things, leave-taking is the worst.\"\n\n\"But you will come again,\" said Emma.  \"This will not be your only\nvisit to Randalls.\"\n\n\"Ah!--(shaking his head)--the uncertainty of when I may be able\nto return!--I shall try for it with a zeal!--It will be the object\nof all my thoughts and cares!--and if my uncle and aunt go to town\nthis spring--but I am afraid--they did not stir last spring--\nI am afraid it is a custom gone for ever.\"\n\n\"Our poor ball must be quite given up.\"\n\n\"Ah! that ball!--why did we wait for any thing?--why not seize the\npleasure at once?--How often is happiness destroyed by preparation,\nfoolish preparation!--You told us it would be so.--Oh!  Miss Woodhouse,\nwhy are you always so right?\"\n\n\"Indeed, I am very sorry to be right in this instance.  I would\nmuch rather have been merry than wise.\"\n\n\"If I can come again, we are still to have our ball.  My father\ndepends on it.  Do not forget your engagement.\"\n\nEmma looked graciously.\n\n\"Such a fortnight as it has been!\" he continued; \"every day more\nprecious and more delightful than the day before!--every day making\nme less fit to bear any other place.  Happy those, who can remain\nat Highbury!\"\n\n\"As you do us such ample justice now,\" said Emma, laughing, \"I will\nventure to ask, whether you did not come a little doubtfully at first?\nDo not we rather surpass your expectations?  I am sure we do.\nI am sure you did not much expect to like us.  You would not have been\nso long in coming, if you had had a pleasant idea of Highbury.\"\n\nHe laughed rather consciously; and though denying the sentiment,\nEmma was convinced that it had been so.\n\n\"And you must be off this very morning?\"\n\n\"Yes; my father is to join me here:  we shall walk back together,\nand I must be off immediately.  I am almost afraid that every moment\nwill bring him.\"\n\n\"Not five minutes to spare even for your friends Miss Fairfax and\nMiss Bates?  How unlucky!  Miss Bates's powerful, argumentative mind\nmight have strengthened yours.\"\n\n\"Yes--I _have_ called there; passing the door, I thought it better.\nIt was a right thing to do.  I went in for three minutes, and was\ndetained by Miss Bates's being absent.  She was out; and I felt it\nimpossible not to wait till she came in.  She is a woman that one may,\nthat one _must_ laugh at; but that one would not wish to slight.\nIt was better to pay my visit, then\"--\n\nHe hesitated, got up, walked to a window.\n\n\"In short,\" said he, \"perhaps, Miss Woodhouse--I think you can\nhardly be quite without suspicion\"--\n\nHe looked at her, as if wanting to read her thoughts.  She hardly\nknew what to say.  It seemed like the forerunner of something\nabsolutely serious, which she did not wish.  Forcing herself\nto speak, therefore, in the hope of putting it by, she calmly said,\n\n\"You are quite in the right; it was most natural to pay your visit, then\"--\n\nHe was silent.  She believed he was looking at her; probably reflecting\non what she had said, and trying to understand the manner.\nShe heard him sigh.  It was natural for him to feel that he had\n_cause_ to sigh.  He could not believe her to be encouraging him.\nA few awkward moments passed, and he sat down again; and in a more\ndetermined manner said,\n\n\"It was something to feel that all the rest of my time might be\ngiven to Hartfield.  My regard for Hartfield is most warm\"--\n\nHe stopt again, rose again, and seemed quite embarrassed.--\nHe was more in love with her than Emma had supposed; and who can say\nhow it might have ended, if his father had not made his appearance?\nMr. Woodhouse soon followed; and the necessity of exertion made\nhim composed.\n\nA very few minutes more, however, completed the present trial.\nMr. Weston, always alert when business was to be done, and as\nincapable of procrastinating any evil that was inevitable,\nas of foreseeing any that was doubtful, said, \"It was time to go;\"\nand the young man, though he might and did sigh, could not but agree,\nto take leave.\n\n\"I shall hear about you all,\" said he; \"that is my chief consolation.\nI shall hear of every thing that is going on among you.  I have\nengaged Mrs. Weston to correspond with me.  She has been so kind as\nto promise it.  Oh! the blessing of a female correspondent, when one\nis really interested in the absent!--she will tell me every thing.\nIn her letters I shall be at dear Highbury again.\"\n\nA very friendly shake of the hand, a very earnest \"Good-bye,\"\nclosed the speech, and the door had soon shut out Frank Churchill.\nShort had been the notice--short their meeting; he was gone; and Emma\nfelt so sorry to part, and foresaw so great a loss to their little\nsociety from his absence as to begin to be afraid of being too sorry,\nand feeling it too much.\n\nIt was a sad change.  They had been meeting almost every day\nsince his arrival.  Certainly his being at Randalls had given\ngreat spirit to the last two weeks--indescribable spirit; the idea,\nthe expectation of seeing him which every morning had brought,\nthe assurance of his attentions, his liveliness, his manners!\nIt had been a very happy fortnight, and forlorn must be the sinking\nfrom it into the common course of Hartfield days.  To complete every\nother recommendation, he had _almost_ told her that he loved her.\nWhat strength, or what constancy of affection he might be subject to,\nwas another point; but at present she could not doubt his having\na decidedly warm admiration, a conscious preference of herself;\nand this persuasion, joined to all the rest, made her think that\nshe _must_ be a little in love with him, in spite of every previous\ndetermination against it.\n\n\"I certainly must,\" said she.  \"This sensation of listlessness,\nweariness, stupidity, this disinclination to sit down and employ myself,\nthis feeling of every thing's being dull and insipid about the house!--\nI must be in love; I should be the oddest creature in the world if I\nwere not--for a few weeks at least.  Well! evil to some is always\ngood to others.  I shall have many fellow-mourners for the ball,\nif not for Frank Churchill; but Mr. Knightley will be happy.\nHe may spend the evening with his dear William Larkins now if he likes.\"\n\nMr. Knightley, however, shewed no triumphant happiness.  He could\nnot say that he was sorry on his own account; his very cheerful look\nwould have contradicted him if he had; but he said, and very steadily,\nthat he was sorry for the disappointment of the others, and with\nconsiderable kindness added,\n\n\"You, Emma, who have so few opportunities of dancing, you are really\nout of luck; you are very much out of luck!\"\n\nIt was some days before she saw Jane Fairfax, to judge of her\nhonest regret in this woeful change; but when they did meet,\nher composure was odious.  She had been particularly unwell, however,\nsuffering from headache to a degree, which made her aunt declare,\nthat had the ball taken place, she did not think Jane could have\nattended it; and it was charity to impute some of her unbecoming\nindifference to the languor of ill-health.\n\n\n\nCHAPTER XIII\n\n\nEmma continued to entertain no doubt of her being in love.  Her ideas\nonly varied as to the how much.  At first, she thought it was a good deal;\nand afterwards, but little.  She had great pleasure in hearing Frank\nChurchill talked of; and, for his sake, greater pleasure than ever\nin seeing Mr. and Mrs. Weston; she was very often thinking of him,\nand quite impatient for a letter, that she might know how he was,\nhow were his spirits, how was his aunt, and what was the chance\nof his coming to Randalls again this spring.  But, on the other hand,\nshe could not admit herself to be unhappy, nor, after the\nfirst morning, to be less disposed for employment than usual;\nshe was still busy and cheerful; and, pleasing as he was, she could\nyet imagine him to have faults; and farther, though thinking of him\nso much, and, as she sat drawing or working, forming a thousand\namusing schemes for the progress and close of their attachment,\nfancying interesting dialogues, and inventing elegant letters;\nthe conclusion of every imaginary declaration on his side was that she\n_refused_ _him_.  Their affection was always to subside into friendship.\nEvery thing tender and charming was to mark their parting;\nbut still they were to part.  When she became sensible of this,\nit struck her that she could not be very much in love; for in spite\nof her previous and fixed determination never to quit her father,\nnever to marry, a strong attachment certainly must produce more\nof a struggle than she could foresee in her own feelings.\n\n\"I do not find myself making any use of the word _sacrifice_,\" said she.--\n\"In not one of all my clever replies, my delicate negatives,\nis there any allusion to making a sacrifice.  I do suspect that he\nis not really necessary to my happiness.  So much the better.\nI certainly will not persuade myself to feel more than I do.  I am\nquite enough in love.  I should be sorry to be more.\"\n\nUpon the whole, she was equally contented with her view of his feelings.\n\n\"_He_ is undoubtedly very much in love--every thing denotes it--very much\nin love indeed!--and when he comes again, if his affection continue,\nI must be on my guard not to encourage it.--It would be most\ninexcusable to do otherwise, as my own mind is quite made up.\nNot that I imagine he can think I have been encouraging him hitherto.\nNo, if he had believed me at all to share his feelings, he would\nnot have been so wretched.  Could he have thought himself encouraged,\nhis looks and language at parting would have been different.--\nStill, however, I must be on my guard.  This is in the supposition\nof his attachment continuing what it now is; but I do not know that I\nexpect it will; I do not look upon him to be quite the sort of man--\nI do not altogether build upon his steadiness or constancy.--\nHis feelings are warm, but I can imagine them rather changeable.--\nEvery consideration of the subject, in short, makes me thankful\nthat my happiness is not more deeply involved.--I shall do very well\nagain after a little while--and then, it will be a good thing over;\nfor they say every body is in love once in their lives, and I shall\nhave been let off easily.\"\n\nWhen his letter to Mrs. Weston arrived, Emma had the perusal of it;\nand she read it with a degree of pleasure and admiration which made\nher at first shake her head over her own sensations, and think she\nhad undervalued their strength.  It was a long, well-written letter,\ngiving the particulars of his journey and of his feelings,\nexpressing all the affection, gratitude, and respect which was\nnatural and honourable, and describing every thing exterior and local\nthat could be supposed attractive, with spirit and precision.\nNo suspicious flourishes now of apology or concern; it was the\nlanguage of real feeling towards Mrs. Weston; and the transition\nfrom Highbury to Enscombe, the contrast between the places in some\nof the first blessings of social life was just enough touched on\nto shew how keenly it was felt, and how much more might have been\nsaid but for the restraints of propriety.--The charm of her own\nname was not wanting.  _Miss_ _Woodhouse_ appeared more than once,\nand never without a something of pleasing connexion, either a\ncompliment to her taste, or a remembrance of what she had said;\nand in the very last time of its meeting her eye, unadorned as it\nwas by any such broad wreath of gallantry, she yet could discern\nthe effect of her influence and acknowledge the greatest compliment\nperhaps of all conveyed.  Compressed into the very lowest vacant\ncorner were these words--\"I had not a spare moment on Tuesday,\nas you know, for Miss Woodhouse's beautiful little friend.  Pray make\nmy excuses and adieus to her.\"  This, Emma could not doubt, was all\nfor herself.  Harriet was remembered only from being _her_ friend.\nHis information and prospects as to Enscombe were neither worse nor\nbetter than had been anticipated; Mrs. Churchill was recovering,\nand he dared not yet, even in his own imagination, fix a time for\ncoming to Randalls again.\n\nGratifying, however, and stimulative as was the letter in the\nmaterial part, its sentiments, she yet found, when it was folded up\nand returned to Mrs. Weston, that it had not added any lasting warmth,\nthat she could still do without the writer, and that he must learn\nto do without her.  Her intentions were unchanged.  Her resolution\nof refusal only grew more interesting by the addition of a scheme for\nhis subsequent consolation and happiness.  His recollection of Harriet,\nand the words which clothed it, the \"beautiful little friend,\"\nsuggested to her the idea of Harriet's succeeding her in his affections.\nWas it impossible?--No.--Harriet undoubtedly was greatly his\ninferior in understanding; but he had been very much struck with\nthe loveliness of her face and the warm simplicity of her manner;\nand all the probabilities of circumstance and connexion were in\nher favour.--For Harriet, it would be advantageous and delightful indeed.\n\n\"I must not dwell upon it,\" said she.--\"I must not think of it.\nI know the danger of indulging such speculations.  But stranger\nthings have happened; and when we cease to care for each other\nas we do now, it will be the means of confirming us in that sort\nof true disinterested friendship which I can already look forward\nto with pleasure.\"\n\nIt was well to have a comfort in store on Harriet's behalf,\nthough it might be wise to let the fancy touch it seldom; for evil\nin that quarter was at hand.  As Frank Churchill's arrival had\nsucceeded Mr. Elton's engagement in the conversation of Highbury,\nas the latest interest had entirely borne down the first, so now\nupon Frank Churchill's disappearance, Mr. Elton's concerns were\nassuming the most irresistible form.--His wedding-day was named.\nHe would soon be among them again; Mr. Elton and his bride.\nThere was hardly time to talk over the first letter from Enscombe\nbefore \"Mr. Elton and his bride\" was in every body's mouth,\nand Frank Churchill was forgotten.  Emma grew sick at the sound.\nShe had had three weeks of happy exemption from Mr. Elton;\nand Harriet's mind, she had been willing to hope, had been lately\ngaining strength.  With Mr. Weston's ball in view at least,\nthere had been a great deal of insensibility to other things;\nbut it was now too evident that she had not attained such a state\nof composure as could stand against the actual approach--new carriage,\nbell-ringing, and all.\n\nPoor Harriet was in a flutter of spirits which required all the\nreasonings and soothings and attentions of every kind that Emma\ncould give.  Emma felt that she could not do too much for her,\nthat Harriet had a right to all her ingenuity and all her patience;\nbut it was heavy work to be for ever convincing without producing\nany effect, for ever agreed to, without being able to make their opinions\nthe same.  Harriet listened submissively, and said \"it was very true--\nit was just as Miss Woodhouse described--it was not worth while to\nthink about them--and she would not think about them any longer\"\nbut no change of subject could avail, and the next half-hour\nsaw her as anxious and restless about the Eltons as before.\nAt last Emma attacked her on another ground.\n\n\"Your allowing yourself to be so occupied and so unhappy about\nMr. Elton's marrying, Harriet, is the strongest reproach you can\nmake _me_.  You could not give me a greater reproof for the mistake I\nfell into.  It was all my doing, I know.  I have not forgotten it,\nI assure you.--Deceived myself, I did very miserably deceive you--\nand it will be a painful reflection to me for ever.  Do not imagine\nme in danger of forgetting it.\"\n\nHarriet felt this too much to utter more than a few words\nof eager exclamation.  Emma continued,\n\n\"I have not said, exert yourself Harriet for my sake; think less,\ntalk less of Mr. Elton for my sake; because for your own sake rather,\nI would wish it to be done, for the sake of what is more important\nthan my comfort, a habit of self-command in you, a consideration\nof what is your duty, an attention to propriety, an endeavour\nto avoid the suspicions of others, to save your health and credit,\nand restore your tranquillity.  These are the motives which I\nhave been pressing on you.  They are very important--and sorry\nI am that you cannot feel them sufficiently to act upon them.\nMy being saved from pain is a very secondary consideration.  I want\nyou to save yourself from greater pain.  Perhaps I may sometimes\nhave felt that Harriet would not forget what was due--or rather\nwhat would be kind by me.\"\n\nThis appeal to her affections did more than all the rest.\nThe idea of wanting gratitude and consideration for Miss Woodhouse,\nwhom she really loved extremely, made her wretched for a while,\nand when the violence of grief was comforted away, still remained\npowerful enough to prompt to what was right and support her in it\nvery tolerably.\n\n\"You, who have been the best friend I ever had in my life--\nWant gratitude to you!--Nobody is equal to you!--I care for nobody\nas I do for you!--Oh!  Miss Woodhouse, how ungrateful I have been!\"\n\nSuch expressions, assisted as they were by every thing that look\nand manner could do, made Emma feel that she had never loved Harriet\nso well, nor valued her affection so highly before.\n\n\"There is no charm equal to tenderness of heart,\" said she\nafterwards to herself.  \"There is nothing to be compared to it.\nWarmth and tenderness of heart, with an affectionate, open manner,\nwill beat all the clearness of head in the world, for attraction,\nI am sure it will.  It is tenderness of heart which makes my dear\nfather so generally beloved--which gives Isabella all her popularity.--\nI have it not--but I know how to prize and respect it.--Harriet is\nmy superior in all the charm and all the felicity it gives.\nDear Harriet!--I would not change you for the clearest-headed,\nlongest-sighted, best-judging female breathing.  Oh! the coldness\nof a Jane Fairfax!--Harriet is worth a hundred such--And for a wife--\na sensible man's wife--it is invaluable.  I mention no names;\nbut happy the man who changes Emma for Harriet!\"\n\n\n\nCHAPTER XIV\n\n\nMrs. Elton was first seen at church:  but though devotion might\nbe interrupted, curiosity could not be satisfied by a bride in a pew,\nand it must be left for the visits in form which were then to be paid,\nto settle whether she were very pretty indeed, or only rather pretty,\nor not pretty at all.\n\nEmma had feelings, less of curiosity than of pride or propriety,\nto make her resolve on not being the last to pay her respects;\nand she made a point of Harriet's going with her, that the worst of\nthe business might be gone through as soon as possible.\n\nShe could not enter the house again, could not be in the same room\nto which she had with such vain artifice retreated three months ago,\nto lace up her boot, without _recollecting_.  A thousand vexatious\nthoughts would recur.  Compliments, charades, and horrible blunders;\nand it was not to be supposed that poor Harriet should not be\nrecollecting too; but she behaved very well, and was only rather\npale and silent.  The visit was of course short; and there was so\nmuch embarrassment and occupation of mind to shorten it, that Emma\nwould not allow herself entirely to form an opinion of the lady,\nand on no account to give one, beyond the nothing-meaning terms\nof being \"elegantly dressed, and very pleasing.\"\n\nShe did not really like her.  She would not be in a hurry to find fault,\nbut she suspected that there was no elegance;--ease, but not elegance.--\nShe was almost sure that for a young woman, a stranger, a bride,\nthere was too much ease.  Her person was rather good; her face\nnot unpretty; but neither feature, nor air, nor voice, nor manner,\nwere elegant.  Emma thought at least it would turn out so.\n\nAs for Mr. Elton, his manners did not appear--but no, she would\nnot permit a hasty or a witty word from herself about his manners.\nIt was an awkward ceremony at any time to be receiving wedding visits,\nand a man had need be all grace to acquit himself well through it.\nThe woman was better off; she might have the assistance of fine clothes,\nand the privilege of bashfulness, but the man had only his own\ngood sense to depend on; and when she considered how peculiarly\nunlucky poor Mr. Elton was in being in the same room at once with\nthe woman he had just married, the woman he had wanted to marry,\nand the woman whom he had been expected to marry, she must allow him\nto have the right to look as little wise, and to be as much affectedly,\nand as little really easy as could be.\n\n\"Well, Miss Woodhouse,\" said Harriet, when they had quitted\nthe house, and after waiting in vain for her friend to begin;\n\"Well, Miss Woodhouse, (with a gentle sigh,) what do you think of her?--\nIs not she very charming?\"\n\nThere was a little hesitation in Emma's answer.\n\n\"Oh! yes--very--a very pleasing young woman.\"\n\n\"I think her beautiful, quite beautiful.\"\n\n\"Very nicely dressed, indeed; a remarkably elegant gown.\"\n\n\"I am not at all surprized that he should have fallen in love.\"\n\n\"Oh! no--there is nothing to surprize one at all.--A pretty fortune;\nand she came in his way.\"\n\n\"I dare say,\" returned Harriet, sighing again, \"I dare say she\nwas very much attached to him.\"\n\n\"Perhaps she might; but it is not every man's fate to marry the\nwoman who loves him best.  Miss Hawkins perhaps wanted a home,\nand thought this the best offer she was likely to have.\"\n\n\"Yes,\" said Harriet earnestly, \"and well she might, nobody could ever\nhave a better.  Well, I wish them happy with all my heart.  And now,\nMiss Woodhouse, I do not think I shall mind seeing them again.\nHe is just as superior as ever;--but being married, you know,\nit is quite a different thing.  No, indeed, Miss Woodhouse, you need\nnot be afraid; I can sit and admire him now without any great misery.\nTo know that he has not thrown himself away, is such a comfort!--\nShe does seem a charming young woman, just what he deserves.\nHappy creature!  He called her `Augusta.'  How delightful!\"\n\nWhen the visit was returned, Emma made up her mind.  She could then\nsee more and judge better.  From Harriet's happening not to be\nat Hartfield, and her father's being present to engage Mr. Elton,\nshe had a quarter of an hour of the lady's conversation to herself,\nand could composedly attend to her; and the quarter of an hour quite\nconvinced her that Mrs. Elton was a vain woman, extremely well\nsatisfied with herself, and thinking much of her own importance;\nthat she meant to shine and be very superior, but with manners which\nhad been formed in a bad school, pert and familiar; that all her\nnotions were drawn from one set of people, and one style of living;\nthat if not foolish she was ignorant, and that her society would\ncertainly do Mr. Elton no good.\n\nHarriet would have been a better match.  If not wise or refined herself,\nshe would have connected him with those who were; but Miss Hawkins,\nit might be fairly supposed from her easy conceit, had been the best\nof her own set.  The rich brother-in-law near Bristol was the pride\nof the alliance, and his place and his carriages were the pride\nof him.\n\nThe very first subject after being seated was Maple Grove, \"My brother\nMr. Suckling's seat;\"--a comparison of Hartfield to Maple Grove.\nThe grounds of Hartfield were small, but neat and pretty; and the\nhouse was modern and well-built. Mrs. Elton seemed most favourably\nimpressed by the size of the room, the entrance, and all that she\ncould see or imagine.  \"Very like Maple Grove indeed!--She was quite\nstruck by the likeness!--That room was the very shape and size\nof the morning-room at Maple Grove; her sister's favourite room.\"--\nMr. Elton was appealed to.--\"Was not it astonishingly like?--\nShe could really almost fancy herself at Maple Grove.\"\n\n\"And the staircase--You know, as I came in, I observed how very like\nthe staircase was; placed exactly in the same part of the house.\nI really could not help exclaiming!  I assure you, Miss Woodhouse,\nit is very delightful to me, to be reminded of a place I am so\nextremely partial to as Maple Grove.  I have spent so many happy\nmonths there! (with a little sigh of sentiment). A charming place,\nundoubtedly.  Every body who sees it is struck by its beauty;\nbut to me, it has been quite a home.  Whenever you are transplanted,\nlike me, Miss Woodhouse, you will understand how very delightful it\nis to meet with any thing at all like what one has left behind.\nI always say this is quite one of the evils of matrimony.\"\n\nEmma made as slight a reply as she could; but it was fully sufficient\nfor Mrs. Elton, who only wanted to be talking herself.\n\n\"So extremely like Maple Grove!  And it is not merely the house--\nthe grounds, I assure you, as far as I could observe, are strikingly\nlike.  The laurels at Maple Grove are in the same profusion as here,\nand stand very much in the same way--just across the lawn;\nand I had a glimpse of a fine large tree, with a bench round it,\nwhich put me so exactly in mind!  My brother and sister will be\nenchanted with this place.  People who have extensive grounds\nthemselves are always pleased with any thing in the same style.\"\n\nEmma doubted the truth of this sentiment.  She had a great idea\nthat people who had extensive grounds themselves cared very little\nfor the extensive grounds of any body else; but it was not worth\nwhile to attack an error so double-dyed, and therefore only said\nin reply,\n\n\"When you have seen more of this country, I am afraid you will think\nyou have overrated Hartfield.  Surry is full of beauties.\"\n\n\"Oh! yes, I am quite aware of that.  It is the garden of England,\nyou know.  Surry is the garden of England.\"\n\n\"Yes; but we must not rest our claims on that distinction.\nMany counties, I believe, are called the garden of England,\nas well as Surry.\"\n\n\"No, I fancy not,\" replied Mrs. Elton, with a most satisfied smile.\"\nI never heard any county but Surry called so.\"\n\nEmma was silenced.\n\n\"My brother and sister have promised us a visit in the spring,\nor summer at farthest,\" continued Mrs. Elton; \"and that will be\nour time for exploring.  While they are with us, we shall explore\na great deal, I dare say.  They will have their barouche-landau,\nof course, which holds four perfectly; and therefore, without saying\nany thing of _our_ carriage, we should be able to explore the different\nbeauties extremely well.  They would hardly come in their chaise,\nI think, at that season of the year.  Indeed, when the time draws on,\nI shall decidedly recommend their bringing the barouche-landau;\nit will be so very much preferable.  When people come into a beautiful\ncountry of this sort, you know, Miss Woodhouse, one naturally wishes\nthem to see as much as possible; and Mr. Suckling is extremely fond\nof exploring.  We explored to King's-Weston twice last summer,\nin that way, most delightfully, just after their first having the\nbarouche-landau.  You have many parties of that kind here, I suppose,\nMiss Woodhouse, every summer?\"\n\n\"No; not immediately here.  We are rather out of distance of the very\nstriking beauties which attract the sort of parties you speak of;\nand we are a very quiet set of people, I believe; more disposed\nto stay at home than engage in schemes of pleasure.\"\n\n\"Ah! there is nothing like staying at home for real comfort.\nNobody can be more devoted to home than I am.  I was quite\na proverb for it at Maple Grove.  Many a time has Selina said,\nwhen she has been going to Bristol, `I really cannot get this girl\nto move from the house.  I absolutely must go in by myself, though I\nhate being stuck up in the barouche-landau without a companion;\nbut Augusta, I believe, with her own good-will, would never stir\nbeyond the park paling.'  Many a time has she said so; and yet I\nam no advocate for entire seclusion.  I think, on the contrary,\nwhen people shut themselves up entirely from society, it is a very\nbad thing; and that it is much more advisable to mix in the world in\na proper degree, without living in it either too much or too little.\nI perfectly understand your situation, however, Miss Woodhouse--\n(looking towards Mr. Woodhouse), Your father's state of health must\nbe a great drawback.  Why does not he try Bath?--Indeed he should.\nLet me recommend Bath to you.  I assure you I have no doubt of its doing\nMr. Woodhouse good.\"\n\n\"My father tried it more than once, formerly; but without receiving\nany benefit; and Mr. Perry, whose name, I dare say, is not unknown\nto you, does not conceive it would be at all more likely to be\nuseful now.\"\n\n\"Ah! that's a great pity; for I assure you, Miss Woodhouse,\nwhere the waters do agree, it is quite wonderful the relief\nthey give.  In my Bath life, I have seen such instances of it!\nAnd it is so cheerful a place, that it could not fail of being of\nuse to Mr. Woodhouse's spirits, which, I understand, are sometimes\nmuch depressed.  And as to its recommendations to _you_, I fancy I\nneed not take much pains to dwell on them.  The advantages of Bath\nto the young are pretty generally understood.  It would be a charming\nintroduction for you, who have lived so secluded a life; and I could\nimmediately secure you some of the best society in the place.\nA line from me would bring you a little host of acquaintance; and my\nparticular friend, Mrs. Partridge, the lady I have always resided\nwith when in Bath, would be most happy to shew you any attentions,\nand would be the very person for you to go into public with.\"\n\nIt was as much as Emma could bear, without being impolite.\nThe idea of her being indebted to Mrs. Elton for what was called\nan _introduction_--of her going into public under the auspices\nof a friend of Mrs. Elton's--probably some vulgar, dashing widow,\nwho, with the help of a boarder, just made a shift to live!--\nThe dignity of Miss Woodhouse, of Hartfield, was sunk indeed!\n\nShe restrained herself, however, from any of the reproofs she could\nhave given, and only thanked Mrs. Elton coolly; \"but their going\nto Bath was quite out of the question; and she was not perfectly\nconvinced that the place might suit her better than her father.\"\nAnd then, to prevent farther outrage and indignation, changed the\nsubject directly.\n\n\"I do not ask whether you are musical, Mrs. Elton.  Upon these occasions,\na lady's character generally precedes her; and Highbury has long\nknown that you are a superior performer.\"\n\n\"Oh! no, indeed; I must protest against any such idea.\nA superior performer!--very far from it, I assure you.\nConsider from how partial a quarter your information came.\nI am doatingly fond of music--passionately fond;--and my friends\nsay I am not entirely devoid of taste; but as to any thing else,\nupon my honour my performance is _mediocre_ to the last degree.\nYou, Miss Woodhouse, I well know, play delightfully.  I assure you\nit has been the greatest satisfaction, comfort, and delight to me,\nto hear what a musical society I am got into.  I absolutely cannot\ndo without music.  It is a necessary of life to me; and having always\nbeen used to a very musical society, both at Maple Grove and in Bath,\nit would have been a most serious sacrifice.  I honestly said as much\nto Mr. E. when he was speaking of my future home, and expressing\nhis fears lest the retirement of it should be disagreeable;\nand the inferiority of the house too--knowing what I had been\naccustomed to--of course he was not wholly without apprehension.\nWhen he was speaking of it in that way, I honestly said that _the_\n_world_ I could give up--parties, balls, plays--for I had no fear\nof retirement.  Blessed with so many resources within myself,\nthe world was not necessary to _me_.  I could do very well without it.\nTo those who had no resources it was a different thing; but my\nresources made me quite independent.  And as to smaller-sized rooms\nthan I had been used to, I really could not give it a thought.\nI hoped I was perfectly equal to any sacrifice of that description.\nCertainly I had been accustomed to every luxury at Maple Grove; but I\ndid assure him that two carriages were not necessary to my happiness,\nnor were spacious apartments.  `But,' said I, `to be quite honest,\nI do not think I can live without something of a musical society.\nI condition for nothing else; but without music, life would be a blank\nto me.'\"\n\n\"We cannot suppose,\" said Emma, smiling, \"that Mr. Elton would hesitate\nto assure you of there being a _very_ musical society in Highbury;\nand I hope you will not find he has outstepped the truth more than\nmay be pardoned, in consideration of the motive.\"\n\n\"No, indeed, I have no doubts at all on that head.  I am delighted\nto find myself in such a circle.  I hope we shall have many sweet\nlittle concerts together.  I think, Miss Woodhouse, you and I\nmust establish a musical club, and have regular weekly meetings\nat your house, or ours.  Will not it be a good plan?  If _we_\nexert ourselves, I think we shall not be long in want of allies.\nSomething of that nature would be particularly desirable for _me_,\nas an inducement to keep me in practice; for married women, you know--\nthere is a sad story against them, in general.  They are but too apt\nto give up music.\"\n\n\"But you, who are so extremely fond of it--there can\nbe no danger, surely?\"\n\n\"I should hope not; but really when I look around among my acquaintance,\nI tremble.  Selina has entirely given up music--never touches\nthe instrument--though she played sweetly.  And the same may be said\nof Mrs. Jeffereys--Clara Partridge, that was--and of the two Milmans,\nnow Mrs. Bird and Mrs. James Cooper; and of more than I can enumerate.\nUpon my word it is enough to put one in a fright.  I used to be\nquite angry with Selina; but really I begin now to comprehend\nthat a married woman has many things to call her attention.\nI believe I was half an hour this morning shut up with my housekeeper.\"\n\n\"But every thing of that kind,\" said Emma, \"will soon\nbe in so regular a train--\"\n\n\"Well,\" said Mrs. Elton, laughing, \"we shall see.\"\n\nEmma, finding her so determined upon neglecting her music,\nhad nothing more to say; and, after a moment's pause, Mrs. Elton\nchose another subject.\n\n\"We have been calling at Randalls,\" said she, \"and found them\nboth at home; and very pleasant people they seem to be.\nI like them extremely.  Mr. Weston seems an excellent creature--\nquite a first-rate favourite with me already, I assure you.\nAnd _she_ appears so truly good--there is something so motherly\nand kind-hearted about her, that it wins upon one directly.\nShe was your governess, I think?\"\n\nEmma was almost too much astonished to answer; but Mrs. Elton\nhardly waited for the affirmative before she went on.\n\n\"Having understood as much, I was rather astonished to find her\nso very lady-like!  But she is really quite the gentlewoman.\"\n\n\"Mrs. Weston's manners,\" said Emma, \"were always particularly good.\nTheir propriety, simplicity, and elegance, would make them the safest\nmodel for any young woman.\"\n\n\"And who do you think came in while we were there?\"\n\nEmma was quite at a loss.  The tone implied some old acquaintance--\nand how could she possibly guess?\n\n\"Knightley!\" continued Mrs. Elton; \"Knightley himself!--Was not\nit lucky?--for, not being within when he called the other day,\nI had never seen him before; and of course, as so particular a\nfriend of Mr. E.'s, I had a great curiosity.  `My friend Knightley'\nhad been so often mentioned, that I was really impatient to see him;\nand I must do my caro sposo the justice to say that he need not\nbe ashamed of his friend.  Knightley is quite the gentleman.\nI like him very much.  Decidedly, I think, a very gentleman-like man.\"\n\nHappily, it was now time to be gone.  They were off; and Emma\ncould breathe.\n\n\"Insufferable woman!\" was her immediate exclamation.  \"Worse than I\nhad supposed.  Absolutely insufferable!  Knightley!--I could not\nhave believed it.  Knightley!--never seen him in her life before,\nand call him Knightley!--and discover that he is a gentleman!\nA little upstart, vulgar being, with her Mr. E., and her _caro_ _sposo_,\nand her resources, and all her airs of pert pretension and\nunderbred finery.  Actually to discover that Mr. Knightley is\na gentleman!  I doubt whether he will return the compliment,\nand discover her to be a lady.  I could not have believed it!\nAnd to propose that she and I should unite to form a musical club!\nOne would fancy we were bosom friends!  And Mrs. Weston!--\nAstonished that the person who had brought me up should be\na gentlewoman!  Worse and worse.  I never met with her equal.\nMuch beyond my hopes.  Harriet is disgraced by any comparison.\nOh! what would Frank Churchill say to her, if he were here?\nHow angry and how diverted he would be!  Ah! there I am--\nthinking of him directly.  Always the first person to be thought of!\nHow I catch myself out!  Frank Churchill comes as regularly into\nmy mind!\"--\n\nAll this ran so glibly through her thoughts, that by the time\nher father had arranged himself, after the bustle of the Eltons'\ndeparture, and was ready to speak, she was very tolerably capable\nof attending.\n\n\"Well, my dear,\" he deliberately began, \"considering we never saw\nher before, she seems a very pretty sort of young lady; and I dare say\nshe was very much pleased with you.  She speaks a little too quick.\nA little quickness of voice there is which rather hurts the ear.\nBut I believe I am nice; I do not like strange voices; and nobody speaks\nlike you and poor Miss Taylor.  However, she seems a very obliging,\npretty-behaved young lady, and no doubt will make him a very good wife.\nThough I think he had better not have married.  I made the best\nexcuses I could for not having been able to wait on him and Mrs. Elton\non this happy occasion; I said that I hoped I _should_ in the course\nof the summer.  But I ought to have gone before.  Not to wait upon\na bride is very remiss.  Ah! it shews what a sad invalid I am!\nBut I do not like the corner into Vicarage Lane.\"\n\n\"I dare say your apologies were accepted, sir.  Mr. Elton knows you.\"\n\n\"Yes:  but a young lady--a bride--I ought to have paid my respects\nto her if possible.  It was being very deficient.\"\n\n\"But, my dear papa, you are no friend to matrimony; and therefore\nwhy should you be so anxious to pay your respects to a _bride_?\nIt ought to be no recommendation to _you_.  It is encouraging people\nto marry if you make so much of them.\"\n\n\"No, my dear, I never encouraged any body to marry, but I would\nalways wish to pay every proper attention to a lady--and a bride,\nespecially, is never to be neglected.  More is avowedly due to _her_.\nA bride, you know, my dear, is always the first in company,\nlet the others be who they may.\"\n\n\"Well, papa, if this is not encouragement to marry, I do not know\nwhat is.  And I should never have expected you to be lending your\nsanction to such vanity-baits for poor young ladies.\"\n\n\"My dear, you do not understand me.  This is a\nmatter of mere common politeness and good-breeding,\nand has nothing to do with any encouragement to people to marry.\"\n\nEmma had done.  Her father was growing nervous, and could not\nunderstand _her_.  Her mind returned to Mrs. Elton's offences,\nand long, very long, did they occupy her.\n\n\n\nCHAPTER XV\n\n\nEmma was not required, by any subsequent discovery, to retract her ill\nopinion of Mrs. Elton.  Her observation had been pretty correct.\nSuch as Mrs. Elton appeared to her on this second interview,\nsuch she appeared whenever they met again,--self-important, presuming,\nfamiliar, ignorant, and ill-bred. She had a little beauty and a\nlittle accomplishment, but so little judgment that she thought herself\ncoming with superior knowledge of the world, to enliven and improve\na country neighbourhood; and conceived Miss Hawkins to have held\nsuch a place in society as Mrs. Elton's consequence only could surpass.\n\nThere was no reason to suppose Mr. Elton thought at all differently\nfrom his wife.  He seemed not merely happy with her, but proud.\nHe had the air of congratulating himself on having brought such\na woman to Highbury, as not even Miss Woodhouse could equal;\nand the greater part of her new acquaintance, disposed to commend,\nor not in the habit of judging, following the lead of Miss Bates's\ngood-will, or taking it for granted that the bride must be as clever\nand as agreeable as she professed herself, were very well satisfied;\nso that Mrs. Elton's praise passed from one mouth to another as it\nought to do, unimpeded by Miss Woodhouse, who readily continued her\nfirst contribution and talked with a good grace of her being \"very\npleasant and very elegantly dressed.\"\n\nIn one respect Mrs. Elton grew even worse than she had appeared\nat first.  Her feelings altered towards Emma.--Offended, probably,\nby the little encouragement which her proposals of intimacy met with,\nshe drew back in her turn and gradually became much more cold\nand distant; and though the effect was agreeable, the ill-will\nwhich produced it was necessarily increasing Emma's dislike.\nHer manners, too--and Mr. Elton's, were unpleasant towards Harriet.\nThey were sneering and negligent.  Emma hoped it must rapidly work\nHarriet's cure; but the sensations which could prompt such behaviour\nsunk them both very much.--It was not to be doubted that poor\nHarriet's attachment had been an offering to conjugal unreserve,\nand her own share in the story, under a colouring the least favourable\nto her and the most soothing to him, had in all likelihood been\ngiven also.  She was, of course, the object of their joint dislike.--\nWhen they had nothing else to say, it must be always easy to begin\nabusing Miss Woodhouse; and the enmity which they dared not shew\nin open disrespect to her, found a broader vent in contemptuous\ntreatment of Harriet.\n\nMrs. Elton took a great fancy to Jane Fairfax; and from the first.\nNot merely when a state of warfare with one young lady might be\nsupposed to recommend the other, but from the very first; and she\nwas not satisfied with expressing a natural and reasonable admiration--\nbut without solicitation, or plea, or privilege, she must be wanting\nto assist and befriend her.--Before Emma had forfeited her confidence,\nand about the third time of their meeting, she heard all Mrs. Elton's\nknight-errantry on the subject.--\n\n\"Jane Fairfax is absolutely charming, Miss Woodhouse.--I quite\nrave about Jane Fairfax.--A sweet, interesting creature.  So mild\nand ladylike--and with such talents!--I assure you I think she\nhas very extraordinary talents.  I do not scruple to say that she\nplays extremely well.  I know enough of music to speak decidedly\non that point.  Oh! she is absolutely charming!  You will laugh at\nmy warmth--but, upon my word, I talk of nothing but Jane Fairfax.--\nAnd her situation is so calculated to affect one!--Miss Woodhouse,\nwe must exert ourselves and endeavour to do something for her.\nWe must bring her forward.  Such talent as hers must not be suffered\nto remain unknown.--I dare say you have heard those charming lines of\nthe poet,\n\n        `Full many a flower is born to blush unseen,\n          `And waste its fragrance on the desert air.'\n\nWe must not allow them to be verified in sweet Jane Fairfax.\"\n\n\"I cannot think there is any danger of it,\" was Emma's calm answer--\n\"and when you are better acquainted with Miss Fairfax's situation\nand understand what her home has been, with Colonel and Mrs. Campbell,\nI have no idea that you will suppose her talents can be unknown.\"\n\n\"Oh! but dear Miss Woodhouse, she is now in such retirement,\nsuch obscurity, so thrown away.--Whatever advantages she may have\nenjoyed with the Campbells are so palpably at an end!  And I think\nshe feels it.  I am sure she does.  She is very timid and silent.\nOne can see that she feels the want of encouragement.  I like her\nthe better for it.  I must confess it is a recommendation to me.\nI am a great advocate for timidity--and I am sure one does\nnot often meet with it.--But in those who are at all inferior,\nit is extremely prepossessing.  Oh!  I assure you, Jane Fairfax\nis a very delightful character, and interests me more than I\ncan express.\"\n\n\"You appear to feel a great deal--but I am not aware how you or any\nof Miss Fairfax's acquaintance here, any of those who have known\nher longer than yourself, can shew her any other attention than\"--\n\n\"My dear Miss Woodhouse, a vast deal may be done by those who dare\nto act.  You and I need not be afraid.  If _we_ set the example,\nmany will follow it as far as they can; though all have not\nour situations.  _We_ have carriages to fetch and convey her home,\nand _we_ live in a style which could not make the addition of\nJane Fairfax, at any time, the least inconvenient.--I should be\nextremely displeased if Wright were to send us up such a dinner,\nas could make me regret having asked _more_ than Jane Fairfax\nto partake of it.  I have no idea of that sort of thing.  It is\nnot likely that I _should_, considering what I have been used to.\nMy greatest danger, perhaps, in housekeeping, may be quite the\nother way, in doing too much, and being too careless of expense.\nMaple Grove will probably be my model more than it ought to be--\nfor we do not at all affect to equal my brother, Mr. Suckling,\nin income.--However, my resolution is taken as to noticing Jane Fairfax.--\nI shall certainly have her very often at my house, shall introduce\nher wherever I can, shall have musical parties to draw out her talents,\nand shall be constantly on the watch for an eligible situation.\nMy acquaintance is so very extensive, that I have little doubt\nof hearing of something to suit her shortly.--I shall introduce her,\nof course, very particularly to my brother and sister when they come\nto us.  I am sure they will like her extremely; and when she gets\na little acquainted with them, her fears will completely wear off,\nfor there really is nothing in the manners of either but what is\nhighly conciliating.--I shall have her very often indeed while they\nare with me, and I dare say we shall sometimes find a seat for her in\nthe barouche-landau in some of our exploring parties.\"\n\n\"Poor Jane Fairfax!\"--thought Emma.--\"You have not deserved this.\nYou may have done wrong with regard to Mr. Dixon, but this is a\npunishment beyond what you can have merited!--The kindness and protection\nof Mrs. Elton!--`Jane Fairfax and Jane Fairfax.'  Heavens!  Let me\nnot suppose that she dares go about, Emma Woodhouse-ing me!--\nBut upon my honour, there seems no limits to the licentiousness\nof that woman's tongue!\"\n\nEmma had not to listen to such paradings again--to any so exclusively\naddressed to herself--so disgustingly decorated with a \"dear Miss\nWoodhouse.\"  The change on Mrs. Elton's side soon afterwards appeared,\nand she was left in peace--neither forced to be the very particular\nfriend of Mrs. Elton, nor, under Mrs. Elton's guidance, the very\nactive patroness of Jane Fairfax, and only sharing with others in a\ngeneral way, in knowing what was felt, what was meditated, what was done.\n\nShe looked on with some amusement.--Miss Bates's gratitude for\nMrs. Elton's attentions to Jane was in the first style of guileless\nsimplicity and warmth.  She was quite one of her worthies--\nthe most amiable, affable, delightful woman--just as accomplished\nand condescending as Mrs. Elton meant to be considered.\nEmma's only surprize was that Jane Fairfax should accept\nthose attentions and tolerate Mrs. Elton as she seemed to do.\nShe heard of her walking with the Eltons, sitting with the Eltons,\nspending a day with the Eltons!  This was astonishing!--She could not\nhave believed it possible that the taste or the pride of Miss Fairfax\ncould endure such society and friendship as the Vicarage had to offer.\n\n\"She is a riddle, quite a riddle!\" said she.--\"To chuse to remain\nhere month after month, under privations of every sort!  And now\nto chuse the mortification of Mrs. Elton's notice and the penury\nof her conversation, rather than return to the superior companions\nwho have always loved her with such real, generous affection.\"\n\nJane had come to Highbury professedly for three months; the Campbells\nwere gone to Ireland for three months; but now the Campbells\nhad promised their daughter to stay at least till Midsummer,\nand fresh invitations had arrived for her to join them there.\nAccording to Miss Bates--it all came from her--Mrs. Dixon had\nwritten most pressingly.  Would Jane but go, means were to be found,\nservants sent, friends contrived--no travelling difficulty allowed\nto exist; but still she had declined it!\n\n\"She must have some motive, more powerful than appears, for refusing\nthis invitation,\" was Emma's conclusion.  \"She must be under some\nsort of penance, inflicted either by the Campbells or herself.\nThere is great fear, great caution, great resolution somewhere.--\nShe is _not_ to be with the _Dixons_.  The decree is issued by somebody.\nBut why must she consent to be with the Eltons?--Here is quite a\nseparate puzzle.\"\n\nUpon her speaking her wonder aloud on that part of the subject,\nbefore the few who knew her opinion of Mrs. Elton, Mrs. Weston\nventured this apology for Jane.\n\n\"We cannot suppose that she has any great enjoyment at the Vicarage,\nmy dear Emma--but it is better than being always at home.\nHer aunt is a good creature, but, as a constant companion,\nmust be very tiresome.  We must consider what Miss Fairfax quits,\nbefore we condemn her taste for what she goes to.\"\n\n\"You are right, Mrs. Weston,\" said Mr. Knightley warmly, \"Miss Fairfax\nis as capable as any of us of forming a just opinion of Mrs. Elton.\nCould she have chosen with whom to associate, she would not have\nchosen her.  But (with a reproachful smile at Emma) she receives\nattentions from Mrs. Elton, which nobody else pays her.\"\n\nEmma felt that Mrs. Weston was giving her a momentary glance;\nand she was herself struck by his warmth.  With a faint blush,\nshe presently replied,\n\n\"Such attentions as Mrs. Elton's, I should have imagined,\nwould rather disgust than gratify Miss Fairfax.  Mrs. Elton's\ninvitations I should have imagined any thing but inviting.\"\n\n\"I should not wonder,\" said Mrs. Weston, \"if Miss Fairfax were to have\nbeen drawn on beyond her own inclination, by her aunt's eagerness\nin accepting Mrs. Elton's civilities for her.  Poor Miss Bates may\nvery likely have committed her niece and hurried her into a greater\nappearance of intimacy than her own good sense would have dictated,\nin spite of the very natural wish of a little change.\"\n\nBoth felt rather anxious to hear him speak again; and after a few\nminutes silence, he said,\n\n\"Another thing must be taken into consideration too--Mrs. Elton\ndoes not talk _to_ Miss Fairfax as she speaks _of_ her.  We all know\nthe difference between the pronouns he or she and thou, the plainest\nspoken amongst us; we all feel the influence of a something beyond\ncommon civility in our personal intercourse with each other--\na something more early implanted.  We cannot give any body the\ndisagreeable hints that we may have been very full of the hour before.\nWe feel things differently.  And besides the operation of this,\nas a general principle, you may be sure that Miss Fairfax awes\nMrs. Elton by her superiority both of mind and manner; and that,\nface to face, Mrs. Elton treats her with all the respect which she\nhas a claim to.  Such a woman as Jane Fairfax probably never fell\nin Mrs. Elton's way before--and no degree of vanity can prevent\nher acknowledging her own comparative littleness in action, if not\nin consciousness.\"\n\n\"I know how highly you think of Jane Fairfax,\" said Emma.\nLittle Henry was in her thoughts, and a mixture of alarm and delicacy\nmade her irresolute what else to say.\n\n\"Yes,\" he replied, \"any body may know how highly I think of her.\"\n\n\"And yet,\" said Emma, beginning hastily and with an arch look,\nbut soon stopping--it was better, however, to know the worst at once--\nshe hurried on--\"And yet, perhaps, you may hardly be aware yourself\nhow highly it is.  The extent of your admiration may take you by\nsurprize some day or other.\"\n\nMr. Knightley was hard at work upon the lower buttons of his thick\nleather gaiters, and either the exertion of getting them together,\nor some other cause, brought the colour into his face, as he answered,\n\n\"Oh! are you there?--But you are miserably behindhand.  Mr. Cole\ngave me a hint of it six weeks ago.\"\n\nHe stopped.--Emma felt her foot pressed by Mrs. Weston, and did\nnot herself know what to think.  In a moment he went on--\n\n\"That will never be, however, I can assure you.  Miss Fairfax,\nI dare say, would not have me if I were to ask her--and I am very\nsure I shall never ask her.\"\n\nEmma returned her friend's pressure with interest; and was pleased\nenough to exclaim,\n\n\"You are not vain, Mr. Knightley.  I will say that for you.\"\n\nHe seemed hardly to hear her; he was thoughtful--and in a manner\nwhich shewed him not pleased, soon afterwards said,\n\n\"So you have been settling that I should marry Jane Fairfax?\"\n\n\"No indeed I have not.  You have scolded me too much for match-making,\nfor me to presume to take such a liberty with you.  What I said\njust now, meant nothing.  One says those sort of things, of course,\nwithout any idea of a serious meaning.  Oh! no, upon my word I have not\nthe smallest wish for your marrying Jane Fairfax or Jane any body.\nYou would not come in and sit with us in this comfortable way,\nif you were married.\"\n\nMr. Knightley was thoughtful again.  The result of his reverie was,\n\"No, Emma, I do not think the extent of my admiration for her will\never take me by surprize.--I never had a thought of her in that way,\nI assure you.\"  And soon afterwards, \"Jane Fairfax is a very charming\nyoung woman--but not even Jane Fairfax is perfect.  She has a fault.\nShe has not the open temper which a man would wish for in a wife.\"\n\nEmma could not but rejoice to hear that she had a fault.\n\"Well,\" said she, \"and you soon silenced Mr. Cole, I suppose?\"\n\n\"Yes, very soon.  He gave me a quiet hint; I told him he was mistaken;\nhe asked my pardon and said no more.  Cole does not want to be wiser\nor wittier than his neighbours.\"\n\n\"In that respect how unlike dear Mrs. Elton, who wants to be wiser\nand wittier than all the world!  I wonder how she speaks of the Coles--\nwhat she calls them!  How can she find any appellation for them,\ndeep enough in familiar vulgarity?  She calls you, Knightley--what can\nshe do for Mr. Cole?  And so I am not to be surprized that Jane\nFairfax accepts her civilities and consents to be with her.\nMrs. Weston, your argument weighs most with me.  I can much more\nreadily enter into the temptation of getting away from Miss Bates,\nthan I can believe in the triumph of Miss Fairfax's mind over\nMrs. Elton.  I have no faith in Mrs. Elton's acknowledging herself\nthe inferior in thought, word, or deed; or in her being under any\nrestraint beyond her own scanty rule of good-breeding. I cannot\nimagine that she will not be continually insulting her visitor\nwith praise, encouragement, and offers of service; that she will not be\ncontinually detailing her magnificent intentions, from the procuring\nher a permanent situation to the including her in those delightful\nexploring parties which are to take place in the barouche-landau.\"\n\n\"Jane Fairfax has feeling,\" said Mr. Knightley--\"I do not\naccuse her of want of feeling.  Her sensibilities, I suspect,\nare strong--and her temper excellent in its power of forbearance,\npatience, self-controul; but it wants openness.  She is reserved,\nmore reserved, I think, than she used to be--And I love an\nopen temper.  No--till Cole alluded to my supposed attachment,\nit had never entered my head.  I saw Jane Fairfax and conversed with\nher, with admiration and pleasure always--but with no thought beyond.\"\n\n\"Well, Mrs. Weston,\" said Emma triumphantly when he left them,\n\"what do you say now to Mr. Knightley's marrying Jane Fairfax?\"\n\n\"Why, really, dear Emma, I say that he is so very much occupied\nby the idea of _not_ being in love with her, that I should not wonder\nif it were to end in his being so at last.  Do not beat me.\"\n\n\n\nCHAPTER XVI\n\n\nEvery body in and about Highbury who had ever visited Mr. Elton,\nwas disposed to pay him attention on his marriage.  Dinner-parties and\nevening-parties were made for him and his lady; and invitations\nflowed in so fast that she had soon the pleasure of apprehending\nthey were never to have a disengaged day.\n\n\"I see how it is,\" said she.  \"I see what a life I am to lead\namong you.  Upon my word we shall be absolutely dissipated.\nWe really seem quite the fashion.  If this is living in the country,\nit is nothing very formidable.  From Monday next to Saturday,\nI assure you we have not a disengaged day!--A woman with fewer\nresources than I have, need not have been at a loss.\"\n\nNo invitation came amiss to her.  Her Bath habits made evening-parties\nperfectly natural to her, and Maple Grove had given her a taste\nfor dinners.  She was a little shocked at the want of two\ndrawing rooms, at the poor attempt at rout-cakes, and there being\nno ice in the Highbury card-parties. Mrs. Bates, Mrs. Perry,\nMrs. Goddard and others, were a good deal behind-hand in knowledge\nof the world, but she would soon shew them how every thing ought\nto be arranged.  In the course of the spring she must return their\ncivilities by one very superior party--in which her card-tables\nshould be set out with their separate candles and unbroken packs\nin the true style--and more waiters engaged for the evening\nthan their own establishment could furnish, to carry round\nthe refreshments at exactly the proper hour, and in the proper order.\n\nEmma, in the meanwhile, could not be satisfied without a dinner\nat Hartfield for the Eltons.  They must not do less than others,\nor she should be exposed to odious suspicions, and imagined capable\nof pitiful resentment.  A dinner there must be.  After Emma had\ntalked about it for ten minutes, Mr. Woodhouse felt no unwillingness,\nand only made the usual stipulation of not sitting at the bottom\nof the table himself, with the usual regular difficulty of deciding\nwho should do it for him.\n\nThe persons to be invited, required little thought.  Besides the Eltons,\nit must be the Westons and Mr. Knightley; so far it was all of course--\nand it was hardly less inevitable that poor little Harriet must\nbe asked to make the eighth:--but this invitation was not given\nwith equal satisfaction, and on many accounts Emma was particularly\npleased by Harriet's begging to be allowed to decline it.\n\"She would rather not be in his company more than she could help.\nShe was not yet quite able to see him and his charming happy\nwife together, without feeling uncomfortable.  If Miss Woodhouse\nwould not be displeased, she would rather stay at home.\"\nIt was precisely what Emma would have wished, had she deemed it\npossible enough for wishing.  She was delighted with the fortitude\nof her little friend--for fortitude she knew it was in her to give\nup being in company and stay at home; and she could now invite the\nvery person whom she really wanted to make the eighth, Jane Fairfax.--\nSince her last conversation with Mrs. Weston and Mr. Knightley,\nshe was more conscience-stricken about Jane Fairfax than she had\noften been.--Mr. Knightley's words dwelt with her.  He had said\nthat Jane Fairfax received attentions from Mrs. Elton which nobody\nelse paid her.\n\n\"This is very true,\" said she, \"at least as far as relates to me,\nwhich was all that was meant--and it is very shameful.--Of the same age--\nand always knowing her--I ought to have been more her friend.--\nShe will never like me now.  I have neglected her too long.  But I\nwill shew her greater attention than I have done.\"\n\nEvery invitation was successful.  They were all disengaged and all happy.--\nThe preparatory interest of this dinner, however, was not yet over.\nA circumstance rather unlucky occurred.  The two eldest little\nKnightleys were engaged to pay their grandpapa and aunt a visit of\nsome weeks in the spring, and their papa now proposed bringing them,\nand staying one whole day at Hartfield--which one day would be\nthe very day of this party.--His professional engagements did\nnot allow of his being put off, but both father and daughter were\ndisturbed by its happening so.  Mr. Woodhouse considered eight\npersons at dinner together as the utmost that his nerves could bear--\nand here would be a ninth--and Emma apprehended that it would\nbe a ninth very much out of humour at not being able to come even\nto Hartfield for forty-eight hours without falling in with a dinner-party.\n\nShe comforted her father better than she could comfort herself,\nby representing that though he certainly would make them nine,\nyet he always said so little, that the increase of noise would be\nvery immaterial.  She thought it in reality a sad exchange for herself,\nto have him with his grave looks and reluctant conversation opposed\nto her instead of his brother.\n\nThe event was more favourable to Mr. Woodhouse than to Emma.\nJohn Knightley came; but Mr. Weston was unexpectedly summoned to town\nand must be absent on the very day.  He might be able to join them\nin the evening, but certainly not to dinner.  Mr. Woodhouse was quite\nat ease; and the seeing him so, with the arrival of the little boys\nand the philosophic composure of her brother on hearing his fate,\nremoved the chief of even Emma's vexation.\n\nThe day came, the party were punctually assembled, and Mr. John Knightley\nseemed early to devote himself to the business of being agreeable.\nInstead of drawing his brother off to a window while they waited\nfor dinner, he was talking to Miss Fairfax.  Mrs. Elton, as elegant\nas lace and pearls could make her, he looked at in silence--\nwanting only to observe enough for Isabella's information--but Miss\nFairfax was an old acquaintance and a quiet girl, and he could\ntalk to her.  He had met her before breakfast as he was returning\nfrom a walk with his little boys, when it had been just beginning\nto rain.  It was natural to have some civil hopes on the subject,\nand he said,\n\n\"I hope you did not venture far, Miss Fairfax, this morning, or I\nam sure you must have been wet.--We scarcely got home in time.\nI hope you turned directly.\"\n\n\"I went only to the post-office,\" said she, \"and reached home\nbefore the rain was much.  It is my daily errand.  I always fetch\nthe letters when I am here.  It saves trouble, and is a something\nto get me out.  A walk before breakfast does me good.\"\n\n\"Not a walk in the rain, I should imagine.\"\n\n\"No, but it did not absolutely rain when I set out.\"\n\nMr. John Knightley smiled, and replied,\n\n\"That is to say, you chose to have your walk, for you were not six\nyards from your own door when I had the pleasure of meeting you;\nand Henry and John had seen more drops than they could count long before.\nThe post-office has a great charm at one period of our lives.\nWhen you have lived to my age, you will begin to think letters are\nnever worth going through the rain for.\"\n\nThere was a little blush, and then this answer,\n\n\"I must not hope to be ever situated as you are, in the midst of\nevery dearest connexion, and therefore I cannot expect that simply\ngrowing older should make me indifferent about letters.\"\n\n\"Indifferent!  Oh! no--I never conceived you could become indifferent.\nLetters are no matter of indifference; they are generally a very\npositive curse.\"\n\n\"You are speaking of letters of business; mine are letters\nof friendship.\"\n\n\"I have often thought them the worst of the two,\" replied he coolly.\n\"Business, you know, may bring money, but friendship hardly\never does.\"\n\n\"Ah! you are not serious now.  I know Mr. John Knightley too well--\nI am very sure he understands the value of friendship as well as\nany body.  I can easily believe that letters are very little to you,\nmuch less than to me, but it is not your being ten years older than\nmyself which makes the difference, it is not age, but situation.\nYou have every body dearest to you always at hand, I, probably,\nnever shall again; and therefore till I have outlived all my affections,\na post-office, I think, must always have power to draw me out,\nin worse weather than to-day.\"\n\n\"When I talked of your being altered by time, by the progress of years,\"\nsaid John Knightley, \"I meant to imply the change of situation\nwhich time usually brings.  I consider one as including the other.\nTime will generally lessen the interest of every attachment not within\nthe daily circle--but that is not the change I had in view for you.\nAs an old friend, you will allow me to hope, Miss Fairfax, that ten\nyears hence you may have as many concentrated objects as I have.\"\n\nIt was kindly said, and very far from giving offence.  A pleasant\n\"thank you\" seemed meant to laugh it off, but a blush, a quivering lip,\na tear in the eye, shewed that it was felt beyond a laugh.\nHer attention was now claimed by Mr. Woodhouse, who being,\naccording to his custom on such occasions, making the circle of\nhis guests, and paying his particular compliments to the ladies,\nwas ending with her--and with all his mildest urbanity, said,\n\n\"I am very sorry to hear, Miss Fairfax, of your being out this\nmorning in the rain.  Young ladies should take care of themselves.--\nYoung ladies are delicate plants.  They should take care of their\nhealth and their complexion.  My dear, did you change your stockings?\"\n\n\"Yes, sir, I did indeed; and I am very much obliged by your kind\nsolicitude about me.\"\n\n\"My dear Miss Fairfax, young ladies are very sure to be cared for.--\nI hope your good grand-mama and aunt are well.  They are some\nof my very old friends.  I wish my health allowed me to be a\nbetter neighbour.  You do us a great deal of honour to-day, I am sure.\nMy daughter and I are both highly sensible of your goodness,\nand have the greatest satisfaction in seeing you at Hartfield.\"\n\nThe kind-hearted, polite old man might then sit down and feel\nthat he had done his duty, and made every fair lady welcome and easy.\n\nBy this time, the walk in the rain had reached Mrs. Elton,\nand her remonstrances now opened upon Jane.\n\n\"My dear Jane, what is this I hear?--Going to the post-office\nin the rain!--This must not be, I assure you.--You sad girl,\nhow could you do such a thing?--It is a sign I was not there\nto take care of you.\"\n\nJane very patiently assured her that she had not caught any cold.\n\n\"Oh! do not tell _me_.  You really are a very sad girl, and do not\nknow how to take care of yourself.--To the post-office indeed!\nMrs. Weston, did you ever hear the like?  You and I must positively\nexert our authority.\"\n\n\"My advice,\" said Mrs. Weston kindly and persuasively, \"I certainly\ndo feel tempted to give.  Miss Fairfax, you must not run such risks.--\nLiable as you have been to severe colds, indeed you ought\nto be particularly careful, especially at this time of year.\nThe spring I always think requires more than common care.\nBetter wait an hour or two, or even half a day for your letters,\nthan run the risk of bringing on your cough again.  Now do not you\nfeel that you had?  Yes, I am sure you are much too reasonable.\nYou look as if you would not do such a thing again.\"\n\n\"Oh! she _shall_ _not_ do such a thing again,\" eagerly rejoined\nMrs. Elton.  \"We will not allow her to do such a thing again:\"--\nand nodding significantly--\"there must be some arrangement made,\nthere must indeed.  I shall speak to Mr. E. The man who fetches\nour letters every morning (one of our men, I forget his name)\nshall inquire for yours too and bring them to you.  That will obviate\nall difficulties you know; and from _us_ I really think, my dear Jane,\nyou can have no scruple to accept such an accommodation.\"\n\n\"You are extremely kind,\" said Jane; \"but I cannot give up my\nearly walk.  I am advised to be out of doors as much as I can,\nI must walk somewhere, and the post-office is an object; and upon\nmy word, I have scarcely ever had a bad morning before.\"\n\n\"My dear Jane, say no more about it.  The thing is determined,\nthat is (laughing affectedly) as far as I can presume to determine\nany thing without the concurrence of my lord and master.  You know,\nMrs. Weston, you and I must be cautious how we express ourselves.\nBut I do flatter myself, my dear Jane, that my influence is not entirely\nworn out.  If I meet with no insuperable difficulties therefore,\nconsider that point as settled.\"\n\n\"Excuse me,\" said Jane earnestly, \"I cannot by any means consent\nto such an arrangement, so needlessly troublesome to your servant.\nIf the errand were not a pleasure to me, it could be done, as it\nalways is when I am not here, by my grandmama's.\"\n\n\"Oh! my dear; but so much as Patty has to do!--And it is a kindness\nto employ our men.\"\n\nJane looked as if she did not mean to be conquered; but instead\nof answering, she began speaking again to Mr. John Knightley.\n\n\"The post-office is a wonderful establishment!\" said she.--\n\"The regularity and despatch of it!  If one thinks of all that it\nhas to do, and all that it does so well, it is really astonishing!\"\n\n\"It is certainly very well regulated.\"\n\n\"So seldom that any negligence or blunder appears!  So seldom\nthat a letter, among the thousands that are constantly passing\nabout the kingdom, is even carried wrong--and not one in a million,\nI suppose, actually lost!  And when one considers the variety\nof hands, and of bad hands too, that are to be deciphered,\nit increases the wonder.\"\n\n\"The clerks grow expert from habit.--They must begin with some\nquickness of sight and hand, and exercise improves them.  If you\nwant any farther explanation,\" continued he, smiling, \"they are\npaid for it.  That is the key to a great deal of capacity.\nThe public pays and must be served well.\"\n\nThe varieties of handwriting were farther talked of, and the usual\nobservations made.\n\n\"I have heard it asserted,\" said John Knightley, \"that the same\nsort of handwriting often prevails in a family; and where the\nsame master teaches, it is natural enough.  But for that reason,\nI should imagine the likeness must be chiefly confined to the females,\nfor boys have very little teaching after an early age, and scramble\ninto any hand they can get.  Isabella and Emma, I think, do write\nvery much alike.  I have not always known their writing apart.\"\n\n\"Yes,\" said his brother hesitatingly, \"there is a likeness.\nI know what you mean--but Emma's hand is the strongest.\"\n\n\"Isabella and Emma both write beautifully,\" said Mr. Woodhouse;\n\"and always did.  And so does poor Mrs. Weston\"--with half a sigh\nand half a smile at her.\n\n\"I never saw any gentleman's handwriting\"--Emma began, looking also\nat Mrs. Weston; but stopped, on perceiving that Mrs. Weston was\nattending to some one else--and the pause gave her time to reflect,\n\"Now, how am I going to introduce him?--Am I unequal to speaking\nhis name at once before all these people?  Is it necessary\nfor me to use any roundabout phrase?--Your Yorkshire friend--\nyour correspondent in Yorkshire;--that would be the way, I suppose,\nif I were very bad.--No, I can pronounce his name without the\nsmallest distress.  I certainly get better and better.--Now for it.\"\n\nMrs. Weston was disengaged and Emma began again--\"Mr. Frank Churchill\nwrites one of the best gentleman's hands I ever saw.\"\n\n\"I do not admire it,\" said Mr. Knightley.  \"It is too small--\nwants strength.  It is like a woman's writing.\"\n\nThis was not submitted to by either lady.  They vindicated him\nagainst the base aspersion.  \"No, it by no means wanted strength--\nit was not a large hand, but very clear and certainly strong.\nHad not Mrs. Weston any letter about her to produce?\"  No, she had\nheard from him very lately, but having answered the letter, had put\nit away.\n\n\"If we were in the other room,\" said Emma, \"if I had my writing-desk,\nI am sure I could produce a specimen.  I have a note of his.--\nDo not you remember, Mrs. Weston, employing him to write for you\none day?\"\n\n\"He chose to say he was employed\"--\n\n\"Well, well, I have that note; and can shew it after dinner\nto convince Mr. Knightley.\"\n\n\"Oh! when a gallant young man, like Mr. Frank Churchill,\"\nsaid Mr. Knightley dryly, \"writes to a fair lady like Miss Woodhouse,\nhe will, of course, put forth his best.\"\n\nDinner was on table.--Mrs. Elton, before she could be spoken to,\nwas ready; and before Mr. Woodhouse had reached her with his request\nto be allowed to hand her into the dining-parlour, was saying--\n\n\"Must I go first?  I really am ashamed of always leading the way.\"\n\nJane's solicitude about fetching her own letters had not escaped Emma.\nShe had heard and seen it all; and felt some curiosity to know\nwhether the wet walk of this morning had produced any.  She suspected\nthat it _had_; that it would not have been so resolutely encountered\nbut in full expectation of hearing from some one very dear,\nand that it had not been in vain.  She thought there was an air\nof greater happiness than usual--a glow both of complexion and spirits.\n\nShe could have made an inquiry or two, as to the expedition\nand the expense of the Irish mails;--it was at her tongue's end--\nbut she abstained.  She was quite determined not to utter a word\nthat should hurt Jane Fairfax's feelings; and they followed\nthe other ladies out of the room, arm in arm, with an appearance\nof good-will highly becoming to the beauty and grace of each.\n\n\n\nCHAPTER XVII\n\n\nWhen the ladies returned to the drawing-room after dinner, Emma found\nit hardly possible to prevent their making two distinct parties;--\nwith so much perseverance in judging and behaving ill did Mrs. Elton\nengross Jane Fairfax and slight herself.  She and Mrs. Weston were\nobliged to be almost always either talking together or silent together.\nMrs. Elton left them no choice.  If Jane repressed her for a\nlittle time, she soon began again; and though much that passed\nbetween them was in a half-whisper, especially on Mrs. Elton's side,\nthere was no avoiding a knowledge of their principal subjects:\nThe post-office--catching cold--fetching letters--and friendship,\nwere long under discussion; and to them succeeded one, which must\nbe at least equally unpleasant to Jane--inquiries whether she had\nyet heard of any situation likely to suit her, and professions of\nMrs. Elton's meditated activity.\n\n\"Here is April come!\" said she, \"I get quite anxious about you.\nJune will soon be here.\"\n\n\"But I have never fixed on June or any other month--merely looked\nforward to the summer in general.\"\n\n\"But have you really heard of nothing?\"\n\n\"I have not even made any inquiry; I do not wish to make any yet.\"\n\n\"Oh! my dear, we cannot begin too early; you are not aware\nof the difficulty of procuring exactly the desirable thing.\"\n\n\"I not aware!\" said Jane, shaking her head; \"dear Mrs. Elton,\nwho can have thought of it as I have done?\"\n\n\"But you have not seen so much of the world as I have.  You do not\nknow how many candidates there always are for the _first_ situations.\nI saw a vast deal of that in the neighbourhood round Maple Grove.\nA cousin of Mr. Suckling, Mrs. Bragge, had such an infinity\nof applications; every body was anxious to be in her family,\nfor she moves in the first circle.  Wax-candles in the schoolroom!\nYou may imagine how desirable!  Of all houses in the kingdom\nMrs. Bragge's is the one I would most wish to see you in.\"\n\n\"Colonel and Mrs. Campbell are to be in town again by midsummer,\"\nsaid Jane.  \"I must spend some time with them; I am sure they will\nwant it;--afterwards I may probably be glad to dispose of myself.\nBut I would not wish you to take the trouble of making any inquiries\nat present.\"\n\n\"Trouble! aye, I know your scruples.  You are afraid of giving\nme trouble; but I assure you, my dear Jane, the Campbells can\nhardly be more interested about you than I am.  I shall write\nto Mrs. Partridge in a day or two, and shall give her a strict\ncharge to be on the look-out for any thing eligible.\"\n\n\"Thank you, but I would rather you did not mention the subject\nto her; till the time draws nearer, I do not wish to be giving\nany body trouble.\"\n\n\"But, my dear child, the time is drawing near; here is April,\nand June, or say even July, is very near, with such business\nto accomplish before us.  Your inexperience really amuses me!\nA situation such as you deserve, and your friends would require for you,\nis no everyday occurrence, is not obtained at a moment's notice;\nindeed, indeed, we must begin inquiring directly.\"\n\n\"Excuse me, ma'am, but this is by no means my intention; I make no\ninquiry myself, and should be sorry to have any made by my friends.\nWhen I am quite determined as to the time, I am not at all afraid\nof being long unemployed.  There are places in town, offices,\nwhere inquiry would soon produce something--Offices for the sale--\nnot quite of human flesh--but of human intellect.\"\n\n\"Oh! my dear, human flesh!  You quite shock me; if you mean a fling\nat the slave-trade, I assure you Mr. Suckling was always rather\na friend to the abolition.\"\n\n\"I did not mean, I was not thinking of the slave-trade,\" replied Jane;\n\"governess-trade, I assure you, was all that I had in view;\nwidely different certainly as to the guilt of those who carry it on;\nbut as to the greater misery of the victims, I do not know where\nit lies.  But I only mean to say that there are advertising offices,\nand that by applying to them I should have no doubt of very soon\nmeeting with something that would do.\"\n\n\"Something that would do!\" repeated Mrs. Elton.  \"Aye, _that_ may\nsuit your humble ideas of yourself;--I know what a modest creature\nyou are; but it will not satisfy your friends to have you taking up\nwith any thing that may offer, any inferior, commonplace situation,\nin a family not moving in a certain circle, or able to command\nthe elegancies of life.\"\n\n\"You are very obliging; but as to all that, I am very indifferent;\nit would be no object to me to be with the rich; my mortifications,\nI think, would only be the greater; I should suffer more from comparison.\nA gentleman's family is all that I should condition for.\"\n\n\"I know you, I know you; you would take up with any thing; but I\nshall be a little more nice, and I am sure the good Campbells will\nbe quite on my side; with your superior talents, you have a right\nto move in the first circle.  Your musical knowledge alone would\nentitle you to name your own terms, have as many rooms as you like,\nand mix in the family as much as you chose;--that is--I do not know--\nif you knew the harp, you might do all that, I am very sure;\nbut you sing as well as play;--yes, I really believe you might,\neven without the harp, stipulate for what you chose;--and you must\nand shall be delightfully, honourably and comfortably settled before\nthe Campbells or I have any rest.\"\n\n\"You may well class the delight, the honour, and the comfort\nof such a situation together,\" said Jane, \"they are pretty sure\nto be equal; however, I am very serious in not wishing any thing\nto be attempted at present for me.  I am exceedingly obliged to you,\nMrs. Elton, I am obliged to any body who feels for me, but I am\nquite serious in wishing nothing to be done till the summer.\nFor two or three months longer I shall remain where I am, and as\nI am.\"\n\n\"And I am quite serious too, I assure you,\" replied Mrs. Elton gaily,\n\"in resolving to be always on the watch, and employing my friends\nto watch also, that nothing really unexceptionable may pass us.\"\n\nIn this style she ran on; never thoroughly stopped by any thing\ntill Mr. Woodhouse came into the room; her vanity had then a change\nof object, and Emma heard her saying in the same half-whisper to Jane,\n\n\"Here comes this dear old beau of mine, I protest!--Only think of his\ngallantry in coming away before the other men!--what a dear creature\nhe is;--I assure you I like him excessively.  I admire all that quaint,\nold-fashioned politeness; it is much more to my taste than modern ease;\nmodern ease often disgusts me.  But this good old Mr. Woodhouse,\nI wish you had heard his gallant speeches to me at dinner.  Oh!  I assure\nyou I began to think my caro sposo would be absolutely jealous.\nI fancy I am rather a favourite; he took notice of my gown.\nHow do you like it?--Selina's choice--handsome, I think, but I\ndo not know whether it is not over-trimmed; I have the greatest\ndislike to the idea of being over-trimmed--quite a horror of finery.\nI must put on a few ornaments now, because it is expected of me.\nA bride, you know, must appear like a bride, but my natural taste\nis all for simplicity; a simple style of dress is so infinitely\npreferable to finery.  But I am quite in the minority, I believe;\nfew people seem to value simplicity of dress,--show and finery\nare every thing.  I have some notion of putting such a trimming\nas this to my white and silver poplin.  Do you think it will\nlook well?\"\n\nThe whole party were but just reassembled in the drawing-room\nwhen Mr. Weston made his appearance among them.  He had returned\nto a late dinner, and walked to Hartfield as soon as it was over.\nHe had been too much expected by the best judges, for surprize--\nbut there was great joy.  Mr. Woodhouse was almost as glad to see\nhim now, as he would have been sorry to see him before.  John Knightley\nonly was in mute astonishment.--That a man who might have spent\nhis evening quietly at home after a day of business in London,\nshould set off again, and walk half a mile to another man's house,\nfor the sake of being in mixed company till bed-time, of finishing\nhis day in the efforts of civility and the noise of numbers,\nwas a circumstance to strike him deeply.  A man who had been in motion\nsince eight o'clock in the morning, and might now have been still,\nwho had been long talking, and might have been silent, who had been\nin more than one crowd, and might have been alone!--Such a man,\nto quit the tranquillity and independence of his own fireside,\nand on the evening of a cold sleety April day rush out again into\nthe world!--Could he by a touch of his finger have instantly taken\nback his wife, there would have been a motive; but his coming would\nprobably prolong rather than break up the party.  John Knightley\nlooked at him with amazement, then shrugged his shoulders, and said,\n\"I could not have believed it even of _him_.\"\n\nMr. Weston meanwhile, perfectly unsuspicious of the indignation\nhe was exciting, happy and cheerful as usual, and with all\nthe right of being principal talker, which a day spent anywhere\nfrom home confers, was making himself agreeable among the rest;\nand having satisfied the inquiries of his wife as to his dinner,\nconvincing her that none of all her careful directions to the servants\nhad been forgotten, and spread abroad what public news he had heard,\nwas proceeding to a family communication, which, though principally\naddressed to Mrs. Weston, he had not the smallest doubt of being\nhighly interesting to every body in the room.  He gave her a letter,\nit was from Frank, and to herself; he had met with it in his way,\nand had taken the liberty of opening it.\n\n\"Read it, read it,\" said he, \"it will give you pleasure;\nonly a few lines--will not take you long; read it to Emma.\"\n\nThe two ladies looked over it together; and he sat smiling\nand talking to them the whole time, in a voice a little subdued,\nbut very audible to every body.\n\n\"Well, he is coming, you see; good news, I think.  Well, what do\nyou say to it?--I always told you he would be here again soon,\ndid not I?--Anne, my dear, did not I always tell you so, and you would\nnot believe me?--In town next week, you see--at the latest, I dare say;\nfor _she_ is as impatient as the black gentleman when any thing is\nto be done; most likely they will be there to-morrow or Saturday.\nAs to her illness, all nothing of course.  But it is an excellent\nthing to have Frank among us again, so near as town.  They will stay\na good while when they do come, and he will be half his time with us.\nThis is precisely what I wanted.  Well, pretty good news, is not it?\nHave you finished it?  Has Emma read it all?  Put it up, put it up;\nwe will have a good talk about it some other time, but it will not\ndo now.  I shall only just mention the circumstance to the others in a\ncommon way.\"\n\nMrs. Weston was most comfortably pleased on the occasion.\nHer looks and words had nothing to restrain them.  She was happy,\nshe knew she was happy, and knew she ought to be happy.\nHer congratulations were warm and open; but Emma could not speak\nso fluently.  _She_ was a little occupied in weighing her own feelings,\nand trying to understand the degree of her agitation, which she\nrather thought was considerable.\n\nMr. Weston, however, too eager to be very observant, too communicative\nto want others to talk, was very well satisfied with what she did say,\nand soon moved away to make the rest of his friends happy by a partial\ncommunication of what the whole room must have overheard already.\n\nIt was well that he took every body's joy for granted, or he\nmight not have thought either Mr. Woodhouse or Mr. Knightley\nparticularly delighted.  They were the first entitled,\nafter Mrs. Weston and Emma, to be made happy;--from them he would\nhave proceeded to Miss Fairfax, but she was so deep in conversation\nwith John Knightley, that it would have been too positive\nan interruption; and finding himself close to Mrs. Elton, and\nher attention disengaged, he necessarily began on the subject with her.\n\n\n\nCHAPTER XVIII\n\n\n\"I hope I shall soon have the pleasure of introducing my son to you,\"\nsaid Mr. Weston.\n\nMrs. Elton, very willing to suppose a particular compliment intended\nher by such a hope, smiled most graciously.\n\n\"You have heard of a certain Frank Churchill, I presume,\" he continued--\n\"and know him to be my son, though he does not bear my name.\"\n\n\"Oh! yes, and I shall be very happy in his acquaintance.\nI am sure Mr. Elton will lose no time in calling on him; and we\nshall both have great pleasure in seeing him at the Vicarage.\"\n\n\"You are very obliging.--Frank will be extremely happy, I am sure.--\nHe is to be in town next week, if not sooner.  We have notice of it\nin a letter to-day. I met the letters in my way this morning,\nand seeing my son's hand, presumed to open it--though it was not directed\nto me--it was to Mrs. Weston.  She is his principal correspondent,\nI assure you.  I hardly ever get a letter.\"\n\n\"And so you absolutely opened what was directed to her!  Oh!  Mr. Weston--\n(laughing affectedly) I must protest against that.--A most dangerous\nprecedent indeed!--I beg you will not let your neighbours follow\nyour example.--Upon my word, if this is what I am to expect,\nwe married women must begin to exert ourselves!--Oh!  Mr. Weston,\nI could not have believed it of you!\"\n\n\"Aye, we men are sad fellows.  You must take care of yourself,\nMrs. Elton.--This letter tells us--it is a short letter--written in\na hurry, merely to give us notice--it tells us that they are all\ncoming up to town directly, on Mrs. Churchill's account--she has\nnot been well the whole winter, and thinks Enscombe too cold for her--\nso they are all to move southward without loss of time.\"\n\n\"Indeed!--from Yorkshire, I think.  Enscombe is in Yorkshire?\"\n\n\"Yes, they are about one hundred and ninety miles from London.\na considerable journey.\"\n\n\"Yes, upon my word, very considerable.  Sixty-five miles farther\nthan from Maple Grove to London.  But what is distance, Mr. Weston,\nto people of large fortune?--You would be amazed to hear how my brother,\nMr. Suckling, sometimes flies about.  You will hardly believe me--\nbut twice in one week he and Mr. Bragge went to London and back again\nwith four horses.\"\n\n\"The evil of the distance from Enscombe,\" said Mr. Weston, \"is, that\nMrs. Churchill, _as_ _we_ _understand_, has not been able to leave the\nsofa for a week together.  In Frank's last letter she complained,\nhe said, of being too weak to get into her conservatory without having\nboth his arm and his uncle's! This, you know, speaks a great degree\nof weakness--but now she is so impatient to be in town, that she\nmeans to sleep only two nights on the road.--So Frank writes word.\nCertainly, delicate ladies have very extraordinary constitutions,\nMrs. Elton.  You must grant me that.\"\n\n\"No, indeed, I shall grant you nothing.  I Always take the part\nof my own sex.  I do indeed.  I give you notice--You will find me\na formidable antagonist on that point.  I always stand up for women--\nand I assure you, if you knew how Selina feels with respect\nto sleeping at an inn, you would not wonder at Mrs. Churchill's\nmaking incredible exertions to avoid it.  Selina says it is quite\nhorror to her--and I believe I have caught a little of her nicety.\nShe always travels with her own sheets; an excellent precaution.\nDoes Mrs. Churchill do the same?\"\n\n\"Depend upon it, Mrs. Churchill does every thing that any other\nfine lady ever did.  Mrs. Churchill will not be second to any lady\nin the land for\"--\n\nMrs. Elton eagerly interposed with,\n\n\"Oh!  Mr. Weston, do not mistake me.  Selina is no fine lady,\nI assure you.  Do not run away with such an idea.\"\n\n\"Is not she?  Then she is no rule for Mrs. Churchill, who is\nas thorough a fine lady as any body ever beheld.\"\n\nMrs. Elton began to think she had been wrong in disclaiming so warmly.\nIt was by no means her object to have it believed that her sister\nwas _not_ a fine lady; perhaps there was want of spirit in the pretence\nof it;--and she was considering in what way she had best retract,\nwhen Mr. Weston went on.\n\n\"Mrs. Churchill is not much in my good graces, as you may suspect--\nbut this is quite between ourselves.  She is very fond of Frank,\nand therefore I would not speak ill of her.  Besides, she is out of\nhealth now; but _that_ indeed, by her own account, she has always been.\nI would not say so to every body, Mrs. Elton, but I have not much\nfaith in Mrs. Churchill's illness.\"\n\n\"If she is really ill, why not go to Bath, Mr. Weston?--To Bath,\nor to Clifton?\"  \"She has taken it into her head that Enscombe is too\ncold for her.  The fact is, I suppose, that she is tired of Enscombe.\nShe has now been a longer time stationary there, than she ever\nwas before, and she begins to want change.  It is a retired place.\nA fine place, but very retired.\"\n\n\"Aye--like Maple Grove, I dare say.  Nothing can stand more retired from\nthe road than Maple Grove.  Such an immense plantation all round it!\nYou seem shut out from every thing--in the most complete retirement.--\nAnd Mrs. Churchill probably has not health or spirits like Selina\nto enjoy that sort of seclusion.  Or, perhaps she may not have\nresources enough in herself to be qualified for a country life.\nI always say a woman cannot have too many resources--and I feel\nvery thankful that I have so many myself as to be quite independent\nof society.\"\n\n\"Frank was here in February for a fortnight.\"\n\n\"So I remember to have heard.  He will find an _addition_ to the\nsociety of Highbury when he comes again; that is, if I may presume\nto call myself an addition.  But perhaps he may never have heard\nof there being such a creature in the world.\"\n\nThis was too loud a call for a compliment to be passed by,\nand Mr. Weston, with a very good grace, immediately exclaimed,\n\n\"My dear madam!  Nobody but yourself could imagine such a\nthing possible.  Not heard of you!--I believe Mrs. Weston's\nletters lately have been full of very little else than Mrs. Elton.\"\n\nHe had done his duty and could return to his son.\n\n\"When Frank left us,\" continued he, \"it was quite uncertain when we\nmight see him again, which makes this day's news doubly welcome.\nIt has been completely unexpected.  That is, _I_ always had a strong\npersuasion he would be here again soon, I was sure something\nfavourable would turn up--but nobody believed me.  He and Mrs. Weston\nwere both dreadfully desponding.  `How could he contrive to come?\nAnd how could it be supposed that his uncle and aunt would spare\nhim again?' and so forth--I always felt that something would happen\nin our favour; and so it has, you see.  I have observed, Mrs. Elton,\nin the course of my life, that if things are going untowardly one month,\nthey are sure to mend the next.\"\n\n\"Very true, Mr. Weston, perfectly true.  It is just what I used\nto say to a certain gentleman in company in the days of courtship,\nwhen, because things did not go quite right, did not proceed with all\nthe rapidity which suited his feelings, he was apt to be in despair,\nand exclaim that he was sure at this rate it would be _May_ before\nHymen's saffron robe would be put on for us.  Oh! the pains I have\nbeen at to dispel those gloomy ideas and give him cheerfuller views!\nThe carriage--we had disappointments about the carriage;--one morning,\nI remember, he came to me quite in despair.\"\n\nShe was stopped by a slight fit of coughing, and Mr. Weston instantly\nseized the opportunity of going on.\n\n\"You were mentioning May.  May is the very month which Mrs. Churchill\nis ordered, or has ordered herself, to spend in some warmer place\nthan Enscombe--in short, to spend in London; so that we have the\nagreeable prospect of frequent visits from Frank the whole spring--\nprecisely the season of the year which one should have chosen\nfor it:  days almost at the longest; weather genial and pleasant,\nalways inviting one out, and never too hot for exercise.  When he\nwas here before, we made the best of it; but there was a good deal\nof wet, damp, cheerless weather; there always is in February, you know,\nand we could not do half that we intended.  Now will be the time.\nThis will be complete enjoyment; and I do not know, Mrs. Elton,\nwhether the uncertainty of our meetings, the sort of constant\nexpectation there will be of his coming in to-day or to-morrow,\nand at any hour, may not be more friendly to happiness than having\nhim actually in the house.  I think it is so.  I think it is the\nstate of mind which gives most spirit and delight.  I hope you\nwill be pleased with my son; but you must not expect a prodigy.\nHe is generally thought a fine young man, but do not expect a prodigy.\nMrs. Weston's partiality for him is very great, and, as you may suppose,\nmost gratifying to me.  She thinks nobody equal to him.\"\n\n\"And I assure you, Mr. Weston, I have very little doubt that my\nopinion will be decidedly in his favour.  I have heard so much\nin praise of Mr. Frank Churchill.--At the same time it is fair\nto observe, that I am one of those who always judge for themselves,\nand are by no means implicitly guided by others.  I give you notice\nthat as I find your son, so I shall judge of him.--I am no flatterer.\"\n\nMr. Weston was musing.\n\n\"I hope,\" said he presently, \"I have not been severe upon poor\nMrs. Churchill.  If she is ill I should be sorry to do her injustice;\nbut there are some traits in her character which make it difficult\nfor me to speak of her with the forbearance I could wish.\nYou cannot be ignorant, Mrs. Elton, of my connexion with the family,\nnor of the treatment I have met with; and, between ourselves,\nthe whole blame of it is to be laid to her.  She was the instigator.\nFrank's mother would never have been slighted as she was but for her.\nMr. Churchill has pride; but his pride is nothing to his wife's:\nhis is a quiet, indolent, gentlemanlike sort of pride that would\nharm nobody, and only make himself a little helpless and tiresome;\nbut her pride is arrogance and insolence!  And what inclines one less\nto bear, she has no fair pretence of family or blood.  She was nobody\nwhen he married her, barely the daughter of a gentleman; but ever\nsince her being turned into a Churchill she has out-Churchill'd them\nall in high and mighty claims:  but in herself, I assure you, she is\nan upstart.\"\n\n\"Only think! well, that must be infinitely provoking!  I have quite\na horror of upstarts.  Maple Grove has given me a thorough disgust\nto people of that sort; for there is a family in that neighbourhood\nwho are such an annoyance to my brother and sister from the airs\nthey give themselves!  Your description of Mrs. Churchill made me\nthink of them directly.  People of the name of Tupman, very lately\nsettled there, and encumbered with many low connexions, but giving\nthemselves immense airs, and expecting to be on a footing with the old\nestablished families.  A year and a half is the very utmost that they can\nhave lived at West Hall; and how they got their fortune nobody knows.\nThey came from Birmingham, which is not a place to promise much,\nyou know, Mr. Weston.  One has not great hopes from Birmingham.\nI always say there is something direful in the sound:  but nothing\nmore is positively known of the Tupmans, though a good many things\nI assure you are suspected; and yet by their manners they evidently\nthink themselves equal even to my brother, Mr. Suckling, who happens\nto be one of their nearest neighbours.  It is infinitely too bad.\nMr. Suckling, who has been eleven years a resident at Maple Grove,\nand whose father had it before him--I believe, at least--I am\nalmost sure that old Mr. Suckling had completed the purchase before\nhis death.\"\n\nThey were interrupted.  Tea was carrying round, and Mr. Weston,\nhaving said all that he wanted, soon took the opportunity of\nwalking away.\n\nAfter tea, Mr. and Mrs. Weston, and Mr. Elton sat down with Mr. Woodhouse\nto cards.  The remaining five were left to their own powers,\nand Emma doubted their getting on very well; for Mr. Knightley seemed\nlittle disposed for conversation; Mrs. Elton was wanting notice,\nwhich nobody had inclination to pay, and she was herself\nin a worry of spirits which would have made her prefer being silent.\n\nMr. John Knightley proved more talkative than his brother.\nHe was to leave them early the next day; and he soon began with--\n\n\"Well, Emma, I do not believe I have any thing more to say about\nthe boys; but you have your sister's letter, and every thing is\ndown at full length there we may be sure.  My charge would be much\nmore concise than her's, and probably not much in the same spirit;\nall that I have to recommend being comprised in, do not spoil them,\nand do not physic them.\"\n\n\"I rather hope to satisfy you both,\" said Emma, \"for I shall do all\nin my power to make them happy, which will be enough for Isabella;\nand happiness must preclude false indulgence and physic.\"\n\n\"And if you find them troublesome, you must send them home again.\"\n\n\"That is very likely.  You think so, do not you?\"\n\n\"I hope I am aware that they may be too noisy for your father--\nor even may be some encumbrance to you, if your visiting engagements\ncontinue to increase as much as they have done lately.\"\n\n\"Increase!\"\n\n\"Certainly; you must be sensible that the last half-year has made\na great difference in your way of life.\"\n\n\"Difference!  No indeed I am not.\"\n\n\"There can be no doubt of your being much more engaged with company\nthan you used to be.  Witness this very time.  Here am I come\ndown for only one day, and you are engaged with a dinner-party!--\nWhen did it happen before, or any thing like it?  Your neighbourhood\nis increasing, and you mix more with it.  A little while ago,\nevery letter to Isabella brought an account of fresh gaieties;\ndinners at Mr. Cole's, or balls at the Crown.  The difference\nwhich Randalls, Randalls alone makes in your goings-on, is very great.\"\n\n\"Yes,\" said his brother quickly, \"it is Randalls that does it all.\"\n\n\"Very well--and as Randalls, I suppose, is not likely to have less\ninfluence than heretofore, it strikes me as a possible thing, Emma,\nthat Henry and John may be sometimes in the way.  And if they are,\nI only beg you to send them home.\"\n\n\"No,\" cried Mr. Knightley, \"that need not be the consequence.\nLet them be sent to Donwell.  I shall certainly be at leisure.\"\n\n\"Upon my word,\" exclaimed Emma, \"you amuse me!  I should like to know\nhow many of all my numerous engagements take place without your being\nof the party; and why I am to be supposed in danger of wanting leisure\nto attend to the little boys.  These amazing engagements of mine--\nwhat have they been?  Dining once with the Coles--and having a ball\ntalked of, which never took place.  I can understand you--(nodding at\nMr. John Knightley)--your good fortune in meeting with so many of\nyour friends at once here, delights you too much to pass unnoticed.\nBut you, (turning to Mr. Knightley,) who know how very, very seldom\nI am ever two hours from Hartfield, why you should foresee such a\nseries of dissipation for me, I cannot imagine.  And as to my dear\nlittle boys, I must say, that if Aunt Emma has not time for them,\nI do not think they would fare much better with Uncle Knightley,\nwho is absent from home about five hours where she is absent one--\nand who, when he is at home, is either reading to himself or settling\nhis accounts.\"\n\nMr. Knightley seemed to be trying not to smile; and succeeded\nwithout difficulty, upon Mrs. Elton's beginning to talk to him.\n\n\n\n\nVOLUME III\n\n\n\nCHAPTER I\n\n\nA very little quiet reflection was enough to satisfy Emma as to the\nnature of her agitation on hearing this news of Frank Churchill.\nShe was soon convinced that it was not for herself she was feeling at\nall apprehensive or embarrassed; it was for him.  Her own attachment\nhad really subsided into a mere nothing; it was not worth thinking of;--\nbut if he, who had undoubtedly been always so much the most in love\nof the two, were to be returning with the same warmth of sentiment\nwhich he had taken away, it would be very distressing.  If a separation\nof two months should not have cooled him, there were dangers and evils\nbefore her:--caution for him and for herself would be necessary.\nShe did not mean to have her own affections entangled again,\nand it would be incumbent on her to avoid any encouragement of his.\n\nShe wished she might be able to keep him from an absolute declaration.\nThat would be so very painful a conclusion of their present acquaintance!\nand yet, she could not help rather anticipating something decisive.\nShe felt as if the spring would not pass without bringing a crisis,\nan event, a something to alter her present composed and tranquil state.\n\nIt was not very long, though rather longer than Mr. Weston had foreseen,\nbefore she had the power of forming some opinion of Frank Churchill's\nfeelings.  The Enscombe family were not in town quite so soon as had\nbeen imagined, but he was at Highbury very soon afterwards.  He rode\ndown for a couple of hours; he could not yet do more; but as he came\nfrom Randalls immediately to Hartfield, she could then exercise all\nher quick observation, and speedily determine how he was influenced,\nand how she must act.  They met with the utmost friendliness.\nThere could be no doubt of his great pleasure in seeing her.\nBut she had an almost instant doubt of his caring for her as he\nhad done, of his feeling the same tenderness in the same degree.\nShe watched him well.  It was a clear thing he was less in love than he\nhad been.  Absence, with the conviction probably of her indifference,\nhad produced this very natural and very desirable effect.\n\nHe was in high spirits; as ready to talk and laugh as ever, and seemed\ndelighted to speak of his former visit, and recur to old stories:\nand he was not without agitation.  It was not in his calmness that\nshe read his comparative difference.  He was not calm; his spirits\nwere evidently fluttered; there was restlessness about him.\nLively as he was, it seemed a liveliness that did not satisfy himself;\nbut what decided her belief on the subject, was his staying only a\nquarter of an hour, and hurrying away to make other calls in Highbury.\n\"He had seen a group of old acquaintance in the street as he passed--\nhe had not stopped, he would not stop for more than a word--but he\nhad the vanity to think they would be disappointed if he did not call,\nand much as he wished to stay longer at Hartfield, he must hurry off.\"\nShe had no doubt as to his being less in love--but neither his\nagitated spirits, nor his hurrying away, seemed like a perfect cure;\nand she was rather inclined to think it implied a dread of her\nreturning power, and a discreet resolution of not trusting himself\nwith her long.\n\nThis was the only visit from Frank Churchill in the course of ten days.\nHe was often hoping, intending to come--but was always prevented.\nHis aunt could not bear to have him leave her.  Such was his own account\nat Randall's. If he were quite sincere, if he really tried to come,\nit was to be inferred that Mrs. Churchill's removal to London had\nbeen of no service to the wilful or nervous part of her disorder.\nThat she was really ill was very certain; he had declared himself\nconvinced of it, at Randalls.  Though much might be fancy, he could\nnot doubt, when he looked back, that she was in a weaker state\nof health than she had been half a year ago.  He did not believe it\nto proceed from any thing that care and medicine might not remove,\nor at least that she might not have many years of existence before her;\nbut he could not be prevailed on, by all his father's doubts, to say\nthat her complaints were merely imaginary, or that she was as strong\nas ever.\n\nIt soon appeared that London was not the place for her.  She could\nnot endure its noise.  Her nerves were under continual irritation\nand suffering; and by the ten days' end, her nephew's letter to\nRandalls communicated a change of plan.  They were going to remove\nimmediately to Richmond.  Mrs. Churchill had been recommended\nto the medical skill of an eminent person there, and had otherwise\na fancy for the place.  A ready-furnished house in a favourite\nspot was engaged, and much benefit expected from the change.\n\nEmma heard that Frank wrote in the highest spirits of this arrangement,\nand seemed most fully to appreciate the blessing of having two\nmonths before him of such near neighbourhood to many dear friends--\nfor the house was taken for May and June.  She was told that now\nhe wrote with the greatest confidence of being often with them,\nalmost as often as he could even wish.\n\nEmma saw how Mr. Weston understood these joyous prospects.  He was\nconsidering her as the source of all the happiness they offered.\nShe hoped it was not so.  Two months must bring it to the proof.\n\nMr. Weston's own happiness was indisputable.  He was quite delighted.\nIt was the very circumstance he could have wished for.  Now, it would\nbe really having Frank in their neighbourhood.  What were nine miles\nto a young man?--An hour's ride.  He would be always coming over.\nThe difference in that respect of Richmond and London was enough\nto make the whole difference of seeing him always and seeing\nhim never.  Sixteen miles--nay, eighteen--it must be full eighteen\nto Manchester-street--was a serious obstacle.  Were he ever able\nto get away, the day would be spent in coming and returning.\nThere was no comfort in having him in London; he might as well be\nat Enscombe; but Richmond was the very distance for easy intercourse.\nBetter than nearer!\n\nOne good thing was immediately brought to a certainty by this removal,--\nthe ball at the Crown.  It had not been forgotten before, but it had\nbeen soon acknowledged vain to attempt to fix a day.  Now, however,\nit was absolutely to be; every preparation was resumed, and very soon\nafter the Churchills had removed to Richmond, a few lines from Frank,\nto say that his aunt felt already much better for the change,\nand that he had no doubt of being able to join them for twenty-four\nhours at any given time, induced them to name as early a day as possible.\n\nMr. Weston's ball was to be a real thing.  A very few to-morrows\nstood between the young people of Highbury and happiness.\n\nMr. Woodhouse was resigned.  The time of year lightened the evil\nto him.  May was better for every thing than February.  Mrs. Bates\nwas engaged to spend the evening at Hartfield, James had due notice,\nand he sanguinely hoped that neither dear little Henry nor dear\nlittle John would have any thing the matter with them, while dear\nEmma were gone.\n\n\n\nCHAPTER II\n\n\nNo misfortune occurred, again to prevent the ball.  The day approached,\nthe day arrived; and after a morning of some anxious watching,\nFrank Churchill, in all the certainty of his own self, reached Randalls\nbefore dinner, and every thing was safe.\n\nNo second meeting had there yet been between him and Emma.\nThe room at the Crown was to witness it;--but it would be better\nthan a common meeting in a crowd.  Mr. Weston had been so very\nearnest in his entreaties for her arriving there as soon as possible\nafter themselves, for the purpose of taking her opinion as to the\npropriety and comfort of the rooms before any other persons came,\nthat she could not refuse him, and must therefore spend some quiet\ninterval in the young man's company.  She was to convey Harriet,\nand they drove to the Crown in good time, the Randalls party just\nsufficiently before them.\n\nFrank Churchill seemed to have been on the watch; and though\nhe did not say much, his eyes declared that he meant to have\na delightful evening.  They all walked about together, to see\nthat every thing was as it should be; and within a few minutes\nwere joined by the contents of another carriage, which Emma\ncould not hear the sound of at first, without great surprize.\n\"So unreasonably early!\" she was going to exclaim; but she presently\nfound that it was a family of old friends, who were coming, like herself,\nby particular desire, to help Mr. Weston's judgment; and they were\nso very closely followed by another carriage of cousins, who had been\nentreated to come early with the same distinguishing earnestness,\non the same errand, that it seemed as if half the company might\nsoon be collected together for the purpose of preparatory inspection.\n\nEmma perceived that her taste was not the only taste on which\nMr. Weston depended, and felt, that to be the favourite and\nintimate of a man who had so many intimates and confidantes,\nwas not the very first distinction in the scale of vanity.\nShe liked his open manners, but a little less of open-heartedness\nwould have made him a higher character.--General benevolence,\nbut not general friendship, made a man what he ought to be.--\nShe could fancy such a man.  The whole party walked about,\nand looked, and praised again; and then, having nothing else to do,\nformed a sort of half-circle round the fire, to observe in their\nvarious modes, till other subjects were started, that, though _May_,\na fire in the evening was still very pleasant.\n\nEmma found that it was not Mr. Weston's fault that the number\nof privy councillors was not yet larger.  They had stopped\nat Mrs. Bates's door to offer the use of their carriage,\nbut the aunt and niece were to be brought by the Eltons.\n\nFrank was standing by her, but not steadily; there was a restlessness,\nwhich shewed a mind not at ease.  He was looking about, he was going\nto the door, he was watching for the sound of other carriages,--\nimpatient to begin, or afraid of being always near her.\n\nMrs. Elton was spoken of.  \"I think she must be here soon,\" said he.\n\"I have a great curiosity to see Mrs. Elton, I have heard so much\nof her.  It cannot be long, I think, before she comes.\"\n\nA carriage was heard.  He was on the move immediately;\nbut coming back, said,\n\n\"I am forgetting that I am not acquainted with her.  I have never seen\neither Mr. or Mrs. Elton.  I have no business to put myself forward.\"\n\nMr. and Mrs. Elton appeared; and all the smiles and the proprieties passed.\n\n\"But Miss Bates and Miss Fairfax!\" said Mr. Weston, looking about.\n\"We thought you were to bring them.\"\n\nThe mistake had been slight.  The carriage was sent for them now.\nEmma longed to know what Frank's first opinion of Mrs. Elton\nmight be; how he was affected by the studied elegance of her dress,\nand her smiles of graciousness.  He was immediately qualifying\nhimself to form an opinion, by giving her very proper attention,\nafter the introduction had passed.\n\nIn a few minutes the carriage returned.--Somebody talked of rain.--\n\"I will see that there are umbrellas, sir,\" said Frank to his father:\n\"Miss Bates must not be forgotten:\"  and away he went.  Mr. Weston\nwas following; but Mrs. Elton detained him, to gratify him by her\nopinion of his son; and so briskly did she begin, that the young\nman himself, though by no means moving slowly, could hardly be out\nof hearing.\n\n\"A very fine young man indeed, Mr. Weston.  You know I candidly told\nyou I should form my own opinion; and I am happy to say that I am\nextremely pleased with him.--You may believe me.  I never compliment.\nI think him a very handsome young man, and his manners are precisely\nwhat I like and approve--so truly the gentleman, without the least\nconceit or puppyism.  You must know I have a vast dislike to puppies--\nquite a horror of them.  They were never tolerated at Maple Grove.\nNeither Mr. Suckling nor me had ever any patience with them; and we\nused sometimes to say very cutting things!  Selina, who is mild almost\nto a fault, bore with them much better.\"\n\nWhile she talked of his son, Mr. Weston's attention was chained;\nbut when she got to Maple Grove, he could recollect that there were\nladies just arriving to be attended to, and with happy smiles must\nhurry away.\n\nMrs. Elton turned to Mrs. Weston.  \"I have no doubt of its being\nour carriage with Miss Bates and Jane.  Our coachman and horses are\nso extremely expeditious!--I believe we drive faster than any body.--\nWhat a pleasure it is to send one's carriage for a friend!--\nI understand you were so kind as to offer, but another time it\nwill be quite unnecessary.  You may be very sure I shall always\ntake care of _them_.\"\n\nMiss Bates and Miss Fairfax, escorted by the two gentlemen,\nwalked into the room; and Mrs. Elton seemed to think it as much\nher duty as Mrs. Weston's to receive them.  Her gestures and\nmovements might be understood by any one who looked on like Emma;\nbut her words, every body's words, were soon lost under the\nincessant flow of Miss Bates, who came in talking, and had not\nfinished her speech under many minutes after her being admitted\ninto the circle at the fire.  As the door opened she was heard,\n\n\"So very obliging of you!--No rain at all.  Nothing to signify.\nI do not care for myself.  Quite thick shoes.  And Jane declares--\nWell!--(as soon as she was within the door) Well!  This is brilliant\nindeed!--This is admirable!--Excellently contrived, upon my word.\nNothing wanting.  Could not have imagined it.--So well lighted up!--\nJane, Jane, look!--did you ever see any thing?  Oh!  Mr. Weston,\nyou must really have had Aladdin's lamp.  Good Mrs. Stokes\nwould not know her own room again.  I saw her as I came in;\nshe was standing in the entrance.  `Oh!  Mrs. Stokes,' said I--\nbut I had not time for more.\"  She was now met by Mrs. Weston.--\n\"Very well, I thank you, ma'am. I hope you are quite well.\nVery happy to hear it.  So afraid you might have a headache!--\nseeing you pass by so often, and knowing how much trouble you must have.\nDelighted to hear it indeed.  Ah! dear Mrs. Elton, so obliged\nto you for the carriage!--excellent time.  Jane and I quite ready.\nDid not keep the horses a moment.  Most comfortable carriage.--\nOh! and I am sure our thanks are due to you, Mrs. Weston, on that score.\nMrs. Elton had most kindly sent Jane a note, or we should have been.--\nBut two such offers in one day!--Never were such neighbours.\nI said to my mother, `Upon my word, ma'am--.'  Thank you, my mother\nis remarkably well.  Gone to Mr. Woodhouse's. I made her take\nher shawl--for the evenings are not warm--her large new shawl--\nMrs. Dixon's wedding-present.--So kind of her to think of my mother!\nBought at Weymouth, you know--Mr. Dixon's choice.  There were\nthree others, Jane says, which they hesitated about some time.\nColonel Campbell rather preferred an olive.  My dear Jane,\nare you sure you did not wet your feet?--It was but a drop or two,\nbut I am so afraid:--but Mr. Frank Churchill was so extremely--\nand there was a mat to step upon--I shall never forget his\nextreme politeness.--Oh!  Mr. Frank Churchill, I must tell you\nmy mother's spectacles have never been in fault since; the rivet\nnever came out again.  My mother often talks of your good-nature.\nDoes not she, Jane?--Do not we often talk of Mr. Frank Churchill?--\nAh! here's Miss Woodhouse.--Dear Miss Woodhouse, how do you do?--\nVery well I thank you, quite well.  This is meeting quite in fairy-land!--\nSuch a transformation!--Must not compliment, I know (eyeing Emma\nmost complacently)--that would be rude--but upon my word, Miss Woodhouse,\nyou do look--how do you like Jane's hair?--You are a judge.--\nShe did it all herself.  Quite wonderful how she does her hair!--\nNo hairdresser from London I think could.--Ah! Dr. Hughes I declare--\nand Mrs. Hughes.  Must go and speak to Dr. and Mrs. Hughes for\na moment.--How do you do?  How do you do?--Very well, I thank you.\nThis is delightful, is not it?--Where's dear Mr. Richard?--\nOh! there he is.  Don't disturb him.  Much better employed talking\nto the young ladies.  How do you do, Mr. Richard?--I saw you the\nother day as you rode through the town--Mrs. Otway, I protest!--\nand good Mr. Otway, and Miss Otway and Miss Caroline.--Such a host\nof friends!--and Mr. George and Mr. Arthur!--How do you do?  How do\nyou all do?--Quite well, I am much obliged to you.  Never better.--\nDon't I hear another carriage?--Who can this be?--very likely the\nworthy Coles.--Upon my word, this is charming to be standing about\namong such friends!  And such a noble fire!--I am quite roasted.\nNo coffee, I thank you, for me--never take coffee.--A little tea\nif you please, sir, by and bye,--no hurry--Oh! here it comes.\nEvery thing so good!\"\n\nFrank Churchill returned to his station by Emma; and as soon as Miss\nBates was quiet, she found herself necessarily overhearing the\ndiscourse of Mrs. Elton and Miss Fairfax, who were standing a little\nway behind her.--He was thoughtful.  Whether he were overhearing too,\nshe could not determine.  After a good many compliments to Jane\non her dress and look, compliments very quietly and properly taken,\nMrs. Elton was evidently wanting to be complimented herself--\nand it was, \"How do you like my gown?--How do you like my trimming?--\nHow has Wright done my hair?\"--with many other relative questions,\nall answered with patient politeness.  Mrs. Elton then said,\n\"Nobody can think less of dress in general than I do--but upon such\nan occasion as this, when every body's eyes are so much upon me,\nand in compliment to the Westons--who I have no doubt are giving\nthis ball chiefly to do me honour--I would not wish to be inferior\nto others.  And I see very few pearls in the room except mine.--\nSo Frank Churchill is a capital dancer, I understand.--We shall see\nif our styles suit.--A fine young man certainly is Frank Churchill.\nI like him very well.\"\n\nAt this moment Frank began talking so vigorously, that Emma could\nnot but imagine he had overheard his own praises, and did not want\nto hear more;--and the voices of the ladies were drowned for a while,\ntill another suspension brought Mrs. Elton's tones again distinctly\nforward.--Mr. Elton had just joined them, and his wife was exclaiming,\n\n\"Oh! you have found us out at last, have you, in our seclusion?--\nI was this moment telling Jane, I thought you would begin to be\nimpatient for tidings of us.\"\n\n\"Jane!\"--repeated Frank Churchill, with a look of surprize and displeasure.--\n\"That is easy--but Miss Fairfax does not disapprove it, I suppose.\"\n\n\"How do you like Mrs. Elton?\" said Emma in a whisper.\n\n\"Not at all.\"\n\n\"You are ungrateful.\"\n\n\"Ungrateful!--What do you mean?\"  Then changing from a frown to\na smile--\"No, do not tell me--I do not want to know what you mean.--\nWhere is my father?--When are we to begin dancing?\"\n\nEmma could hardly understand him; he seemed in an odd humour.\nHe walked off to find his father, but was quickly back again with both\nMr. and Mrs. Weston.  He had met with them in a little perplexity,\nwhich must be laid before Emma.  It had just occurred to Mrs. Weston\nthat Mrs. Elton must be asked to begin the ball; that she would\nexpect it; which interfered with all their wishes of giving Emma\nthat distinction.--Emma heard the sad truth with fortitude.\n\n\"And what are we to do for a proper partner for her?\" said Mr. Weston.\n\"She will think Frank ought to ask her.\"\n\nFrank turned instantly to Emma, to claim her former promise;\nand boasted himself an engaged man, which his father looked his most\nperfect approbation of--and it then appeared that Mrs. Weston was\nwanting _him_ to dance with Mrs. Elton himself, and that their business\nwas to help to persuade him into it, which was done pretty soon.--\nMr. Weston and Mrs. Elton led the way, Mr. Frank Churchill and Miss\nWoodhouse followed.  Emma must submit to stand second to Mrs. Elton,\nthough she had always considered the ball as peculiarly for her.\nIt was almost enough to make her think of marrying.  Mrs. Elton had\nundoubtedly the advantage, at this time, in vanity completely gratified;\nfor though she had intended to begin with Frank Churchill, she could\nnot lose by the change.  Mr. Weston might be his son's superior.--\nIn spite of this little rub, however, Emma was smiling with enjoyment,\ndelighted to see the respectable length of the set as it was forming,\nand to feel that she had so many hours of unusual festivity before her.--\nShe was more disturbed by Mr. Knightley's not dancing than by any\nthing else.--There he was, among the standers-by, where he ought not\nto be; he ought to be dancing,--not classing himself with the husbands,\nand fathers, and whist-players, who were pretending to feel an interest\nin the dance till their rubbers were made up,--so young as he looked!--\nHe could not have appeared to greater advantage perhaps anywhere,\nthan where he had placed himself.  His tall, firm, upright figure,\namong the bulky forms and stooping shoulders of the elderly men,\nwas such as Emma felt must draw every body's eyes; and, excepting her\nown partner, there was not one among the whole row of young men\nwho could be compared with him.--He moved a few steps nearer,\nand those few steps were enough to prove in how gentlemanlike\na manner, with what natural grace, he must have danced, would he\nbut take the trouble.--Whenever she caught his eye, she forced him\nto smile; but in general he was looking grave.  She wished he could\nlove a ballroom better, and could like Frank Churchill better.--\nHe seemed often observing her.  She must not flatter herself that he\nthought of her dancing, but if he were criticising her behaviour,\nshe did not feel afraid.  There was nothing like flirtation between\nher and her partner.  They seemed more like cheerful, easy friends,\nthan lovers.  That Frank Churchill thought less of her than he had done,\nwas indubitable.\n\nThe ball proceeded pleasantly.  The anxious cares, the incessant\nattentions of Mrs. Weston, were not thrown away.  Every body\nseemed happy; and the praise of being a delightful ball,\nwhich is seldom bestowed till after a ball has ceased to be,\nwas repeatedly given in the very beginning of the existence of this.\nOf very important, very recordable events, it was not more productive\nthan such meetings usually are.  There was one, however, which Emma\nthought something of.--The two last dances before supper were begun,\nand Harriet had no partner;--the only young lady sitting down;--\nand so equal had been hitherto the number of dancers, that how there\ncould be any one disengaged was the wonder!--But Emma's wonder\nlessened soon afterwards, on seeing Mr. Elton sauntering about.\nHe would not ask Harriet to dance if it were possible to be avoided:\nshe was sure he would not--and she was expecting him every moment to\nescape into the card-room.\n\nEscape, however, was not his plan.  He came to the part of the room\nwhere the sitters-by were collected, spoke to some, and walked about\nin front of them, as if to shew his liberty, and his resolution\nof maintaining it.  He did not omit being sometimes directly\nbefore Miss Smith, or speaking to those who were close to her.--\nEmma saw it.  She was not yet dancing; she was working her way\nup from the bottom, and had therefore leisure to look around,\nand by only turning her head a little she saw it all.  When she was\nhalf-way up the set, the whole group were exactly behind her, and she\nwould no longer allow her eyes to watch; but Mr. Elton was so near,\nthat she heard every syllable of a dialogue which just then took\nplace between him and Mrs. Weston; and she perceived that his wife,\nwho was standing immediately above her, was not only listening also,\nbut even encouraging him by significant glances.--The kind-hearted,\ngentle Mrs. Weston had left her seat to join him and say, \"Do not\nyou dance, Mr. Elton?\" to which his prompt reply was, \"Most readily,\nMrs. Weston, if you will dance with me.\"\n\n\"Me!--oh! no--I would get you a better partner than myself.\nI am no dancer.\"\n\n\"If Mrs. Gilbert wishes to dance,\" said he, \"I shall have great pleasure,\nI am sure--for, though beginning to feel myself rather an old married man,\nand that my dancing days are over, it would give me very great\npleasure at any time to stand up with an old friend like Mrs. Gilbert.\"\n\n\"Mrs. Gilbert does not mean to dance, but there is a young lady\ndisengaged whom I should be very glad to see dancing--Miss Smith.\"\n\"Miss Smith!--oh!--I had not observed.--You are extremely obliging--\nand if I were not an old married man.--But my dancing days are over,\nMrs. Weston.  You will excuse me.  Any thing else I should be most happy\nto do, at your command--but my dancing days are over.\"\n\nMrs. Weston said no more; and Emma could imagine with what\nsurprize and mortification she must be returning to her seat.\nThis was Mr. Elton! the amiable, obliging, gentle Mr. Elton.--\nShe looked round for a moment; he had joined Mr. Knightley at a\nlittle distance, and was arranging himself for settled conversation,\nwhile smiles of high glee passed between him and his wife.\n\nShe would not look again.  Her heart was in a glow, and she feared\nher face might be as hot.\n\nIn another moment a happier sight caught her;--Mr. Knightley\nleading Harriet to the set!--Never had she been more surprized,\nseldom more delighted, than at that instant.  She was all pleasure\nand gratitude, both for Harriet and herself, and longed to be\nthanking him; and though too distant for speech, her countenance\nsaid much, as soon as she could catch his eye again.\n\nHis dancing proved to be just what she had believed it,\nextremely good; and Harriet would have seemed almost too lucky,\nif it had not been for the cruel state of things before, and for\nthe very complete enjoyment and very high sense of the distinction\nwhich her happy features announced.  It was not thrown away on her,\nshe bounded higher than ever, flew farther down the middle,\nand was in a continual course of smiles.\n\nMr. Elton had retreated into the card-room, looking (Emma trusted)\nvery foolish.  She did not think he was quite so hardened as his wife,\nthough growing very like her;--_she_ spoke some of her feelings,\nby observing audibly to her partner,\n\n\"Knightley has taken pity on poor little Miss Smith!--Very goodnatured,\nI declare.\"\n\nSupper was announced.  The move began; and Miss Bates might be\nheard from that moment, without interruption, till her being\nseated at table and taking up her spoon.\n\n\"Jane, Jane, my dear Jane, where are you?--Here is your tippet.\nMrs. Weston begs you to put on your tippet.  She says she is afraid\nthere will be draughts in the passage, though every thing has\nbeen done--One door nailed up--Quantities of matting--My dear Jane,\nindeed you must.  Mr. Churchill, oh! you are too obliging!\nHow well you put it on!--so gratified!  Excellent dancing indeed!--\nYes, my dear, I ran home, as I said I should, to help grandmama\nto bed, and got back again, and nobody missed me.--I set off without\nsaying a word, just as I told you.  Grandmama was quite well,\nhad a charming evening with Mr. Woodhouse, a vast deal of chat,\nand backgammon.--Tea was made downstairs, biscuits and baked apples\nand wine before she came away:  amazing luck in some of her throws:\nand she inquired a great deal about you, how you were amused,\nand who were your partners.  `Oh!' said I, `I shall not forestall Jane;\nI left her dancing with Mr. George Otway; she will love to tell you\nall about it herself to-morrow: her first partner was Mr. Elton,\nI do not know who will ask her next, perhaps Mr. William Cox.'\nMy dear sir, you are too obliging.--Is there nobody you would\nnot rather?--I am not helpless.  Sir, you are most kind.  Upon my word,\nJane on one arm, and me on the other!--Stop, stop, let us stand\na little back, Mrs. Elton is going; dear Mrs. Elton, how elegant\nshe looks!--Beautiful lace!--Now we all follow in her train.\nQuite the queen of the evening!--Well, here we are at the passage.\nTwo steps, Jane, take care of the two steps.  Oh! no, there is\nbut one.  Well, I was persuaded there were two.  How very odd!\nI was convinced there were two, and there is but one.  I never saw any\nthing equal to the comfort and style--Candles everywhere.--I was telling\nyou of your grandmama, Jane,--There was a little disappointment.--\nThe baked apples and biscuits, excellent in their way, you know;\nbut there was a delicate fricassee of sweetbread and some asparagus\nbrought in at first, and good Mr. Woodhouse, not thinking the\nasparagus quite boiled enough, sent it all out again.  Now there\nis nothing grandmama loves better than sweetbread and asparagus--\nso she was rather disappointed, but we agreed we would not speak of it\nto any body, for fear of its getting round to dear Miss Woodhouse,\nwho would be so very much concerned!--Well, this is brilliant!\nI am all amazement! could not have supposed any thing!--Such\nelegance and profusion!--I have seen nothing like it since--\nWell, where shall we sit? where shall we sit?  Anywhere, so that\nJane is not in a draught.  Where _I_ sit is of no consequence.\nOh! do you recommend this side?--Well, I am sure, Mr. Churchill--\nonly it seems too good--but just as you please.  What you direct\nin this house cannot be wrong.  Dear Jane, how shall we ever\nrecollect half the dishes for grandmama?  Soup too!  Bless me!\nI should not be helped so soon, but it smells most excellent, and I\ncannot help beginning.\"\n\nEmma had no opportunity of speaking to Mr. Knightley till\nafter supper; but, when they were all in the ballroom again,\nher eyes invited him irresistibly to come to her and be thanked.\nHe was warm in his reprobation of Mr. Elton's conduct; it had been\nunpardonable rudeness; and Mrs. Elton's looks also received the due\nshare of censure.\n\n\"They aimed at wounding more than Harriet,\" said he.  \"Emma, why\nis it that they are your enemies?\"\n\nHe looked with smiling penetration; and, on receiving\nno answer, added, \"_She_ ought not to be angry with you, I suspect,\nwhatever he may be.--To that surmise, you say nothing, of course;\nbut confess, Emma, that you did want him to marry Harriet.\"\n\n\"I did,\" replied Emma, \"and they cannot forgive me.\"\n\nHe shook his head; but there was a smile of indulgence with it,\nand he only said,\n\n\"I shall not scold you.  I leave you to your own reflections.\"\n\n\"Can you trust me with such flatterers?--Does my vain spirit ever\ntell me I am wrong?\"\n\n\"Not your vain spirit, but your serious spirit.--If one leads\nyou wrong, I am sure the other tells you of it.\"\n\n\"I do own myself to have been completely mistaken in Mr. Elton.\nThere is a littleness about him which you discovered, and which I\ndid not:  and I was fully convinced of his being in love with Harriet.\nIt was through a series of strange blunders!\"\n\n\"And, in return for your acknowledging so much, I will do you the justice\nto say, that you would have chosen for him better than he has chosen for\nhimself.--Harriet Smith has some first-rate qualities, which Mrs. Elton\nis totally without.  An unpretending, single-minded, artless girl--\ninfinitely to be preferred by any man of sense and taste to such\na woman as Mrs. Elton.  I found Harriet more conversable than I expected.\"\n\nEmma was extremely gratified.--They were interrupted by the bustle\nof Mr. Weston calling on every body to begin dancing again.\n\n\"Come Miss Woodhouse, Miss Otway, Miss Fairfax, what are you all doing?--\nCome Emma, set your companions the example.  Every body is lazy!\nEvery body is asleep!\"\n\n\"I am ready,\" said Emma, \"whenever I am wanted.\"\n\n\"Whom are you going to dance with?\" asked Mr. Knightley.\n\nShe hesitated a moment, and then replied, \"With you, if you will\nask me.\"\n\n\"Will you?\" said he, offering his hand.\n\n\"Indeed I will.  You have shewn that you can dance, and you know we\nare not really so much brother and sister as to make it at all improper.\"\n\n\"Brother and sister! no, indeed.\"\n\n\n\nCHAPTER III\n\n\nThis little explanation with Mr. Knightley gave Emma considerable\npleasure.  It was one of the agreeable recollections of the ball,\nwhich she walked about the lawn the next morning to enjoy.--She was\nextremely glad that they had come to so good an understanding respecting\nthe Eltons, and that their opinions of both husband and wife were so\nmuch alike; and his praise of Harriet, his concession in her favour,\nwas peculiarly gratifying.  The impertinence of the Eltons, which for\na few minutes had threatened to ruin the rest of her evening, had been\nthe occasion of some of its highest satisfactions; and she looked\nforward to another happy result--the cure of Harriet's infatuation.--\nFrom Harriet's manner of speaking of the circumstance before they\nquitted the ballroom, she had strong hopes.  It seemed as if her eyes\nwere suddenly opened, and she were enabled to see that Mr. Elton\nwas not the superior creature she had believed him.  The fever\nwas over, and Emma could harbour little fear of the pulse being\nquickened again by injurious courtesy.  She depended on the evil\nfeelings of the Eltons for supplying all the discipline of pointed\nneglect that could be farther requisite.--Harriet rational,\nFrank Churchill not too much in love, and Mr. Knightley not\nwanting to quarrel with her, how very happy a summer must be before her!\n\nShe was not to see Frank Churchill this morning.  He had told\nher that he could not allow himself the pleasure of stopping\nat Hartfield, as he was to be at home by the middle of the day.\nShe did not regret it.\n\nHaving arranged all these matters, looked them through, and put them all\nto rights, she was just turning to the house with spirits freshened up\nfor the demands of the two little boys, as well as of their grandpapa,\nwhen the great iron sweep-gate opened, and two persons entered\nwhom she had never less expected to see together--Frank Churchill,\nwith Harriet leaning on his arm--actually Harriet!--A moment\nsufficed to convince her that something extraordinary had happened.\nHarriet looked white and frightened, and he was trying to cheer her.--\nThe iron gates and the front-door were not twenty yards asunder;--\nthey were all three soon in the hall, and Harriet immediately sinking\ninto a chair fainted away.\n\nA young lady who faints, must be recovered; questions must be answered,\nand surprizes be explained.  Such events are very interesting,\nbut the suspense of them cannot last long.  A few minutes made Emma\nacquainted with the whole.\n\nMiss Smith, and Miss Bickerton, another parlour boarder at\nMrs. Goddard's, who had been also at the ball, had walked out together,\nand taken a road, the Richmond road, which, though apparently public\nenough for safety, had led them into alarm.--About half a mile\nbeyond Highbury, making a sudden turn, and deeply shaded by elms\non each side, it became for a considerable stretch very retired;\nand when the young ladies had advanced some way into it,\nthey had suddenly perceived at a small distance before them,\non a broader patch of greensward by the side, a party of gipsies.\nA child on the watch, came towards them to beg; and Miss Bickerton,\nexcessively frightened, gave a great scream, and calling on Harriet\nto follow her, ran up a steep bank, cleared a slight hedge at the top,\nand made the best of her way by a short cut back to Highbury.\nBut poor Harriet could not follow.  She had suffered very much\nfrom cramp after dancing, and her first attempt to mount the bank\nbrought on such a return of it as made her absolutely powerless--\nand in this state, and exceedingly terrified, she had been obliged\nto remain.\n\nHow the trampers might have behaved, had the young ladies been\nmore courageous, must be doubtful; but such an invitation for attack\ncould not be resisted; and Harriet was soon assailed by half a\ndozen children, headed by a stout woman and a great boy, all clamorous,\nand impertinent in look, though not absolutely in word.--More and\nmore frightened, she immediately promised them money, and taking out\nher purse, gave them a shilling, and begged them not to want more,\nor to use her ill.--She was then able to walk, though but slowly,\nand was moving away--but her terror and her purse were too tempting,\nand she was followed, or rather surrounded, by the whole gang,\ndemanding more.\n\nIn this state Frank Churchill had found her, she trembling\nand conditioning, they loud and insolent.  By a most fortunate\nchance his leaving Highbury had been delayed so as to bring him\nto her assistance at this critical moment.  The pleasantness\nof the morning had induced him to walk forward, and leave his\nhorses to meet him by another road, a mile or two beyond Highbury--\nand happening to have borrowed a pair of scissors the night before\nof Miss Bates, and to have forgotten to restore them, he had\nbeen obliged to stop at her door, and go in for a few minutes:\nhe was therefore later than he had intended; and being on foot,\nwas unseen by the whole party till almost close to them.\nThe terror which the woman and boy had been creating in Harriet\nwas then their own portion.  He had left them completely frightened;\nand Harriet eagerly clinging to him, and hardly able to speak,\nhad just strength enough to reach Hartfield, before her spirits\nwere quite overcome.  It was his idea to bring her to Hartfield:\nhe had thought of no other place.\n\nThis was the amount of the whole story,--of his communication and\nof Harriet's as soon as she had recovered her senses and speech.--\nHe dared not stay longer than to see her well; these several delays\nleft him not another minute to lose; and Emma engaging to give\nassurance of her safety to Mrs. Goddard, and notice of there\nbeing such a set of people in the neighbourhood to Mr. Knightley,\nhe set off, with all the grateful blessings that she could utter\nfor her friend and herself.\n\nSuch an adventure as this,--a fine young man and a lovely young\nwoman thrown together in such a way, could hardly fail of suggesting\ncertain ideas to the coldest heart and the steadiest brain.\nSo Emma thought, at least.  Could a linguist, could a grammarian,\ncould even a mathematician have seen what she did, have witnessed their\nappearance together, and heard their history of it, without feeling\nthat circumstances had been at work to make them peculiarly interesting\nto each other?--How much more must an imaginist, like herself,\nbe on fire with speculation and foresight!--especially with such\na groundwork of anticipation as her mind had already made.\n\nIt was a very extraordinary thing!  Nothing of the sort had ever\noccurred before to any young ladies in the place, within her memory;\nno rencontre, no alarm of the kind;--and now it had happened\nto the very person, and at the very hour, when the other very\nperson was chancing to pass by to rescue her!--It certainly\nwas very extraordinary!--And knowing, as she did, the favourable\nstate of mind of each at this period, it struck her the more.\nHe was wishing to get the better of his attachment to herself,\nshe just recovering from her mania for Mr. Elton.  It seemed as if\nevery thing united to promise the most interesting consequences.\nIt was not possible that the occurrence should not be strongly\nrecommending each to the other.\n\nIn the few minutes' conversation which she had yet had with him,\nwhile Harriet had been partially insensible, he had spoken of her terror,\nher naivete, her fervour as she seized and clung to his arm, with a\nsensibility amused and delighted; and just at last, after Harriet's\nown account had been given, he had expressed his indignation\nat the abominable folly of Miss Bickerton in the warmest terms.\nEvery thing was to take its natural course, however, neither impelled\nnor assisted.  She would not stir a step, nor drop a hint.\nNo, she had had enough of interference.  There could be no harm\nin a scheme, a mere passive scheme.  It was no more than a wish.\nBeyond it she would on no account proceed.\n\nEmma's first resolution was to keep her father from the knowledge\nof what had passed,--aware of the anxiety and alarm it would occasion:\nbut she soon felt that concealment must be impossible.  Within half\nan hour it was known all over Highbury.  It was the very event\nto engage those who talk most, the young and the low; and all\nthe youth and servants in the place were soon in the happiness of\nfrightful news.  The last night's ball seemed lost in the gipsies.\nPoor Mr. Woodhouse trembled as he sat, and, as Emma had foreseen,\nwould scarcely be satisfied without their promising never to go\nbeyond the shrubbery again.  It was some comfort to him that many\ninquiries after himself and Miss Woodhouse (for his neighbours\nknew that he loved to be inquired after), as well as Miss Smith,\nwere coming in during the rest of the day; and he had the pleasure\nof returning for answer, that they were all very indifferent--\nwhich, though not exactly true, for she was perfectly well,\nand Harriet not much otherwise, Emma would not interfere with.\nShe had an unhappy state of health in general for the child of such\na man, for she hardly knew what indisposition was; and if he did not\ninvent illnesses for her, she could make no figure in a message.\n\nThe gipsies did not wait for the operations of justice; they took\nthemselves off in a hurry.  The young ladies of Highbury might have\nwalked again in safety before their panic began, and the whole\nhistory dwindled soon into a matter of little importance but to Emma\nand her nephews:--in her imagination it maintained its ground,\nand Henry and John were still asking every day for the story of\nHarriet and the gipsies, and still tenaciously setting her right\nif she varied in the slightest particular from the original recital.\n\n\n\nCHAPTER IV\n\n\nA very few days had passed after this adventure, when Harriet came\none morning to Emma with a small parcel in her hand, and after\nsitting down and hesitating, thus began:\n\n\"Miss Woodhouse--if you are at leisure--I have something that I\nshould like to tell you--a sort of confession to make--and then,\nyou know, it will be over.\"\n\nEmma was a good deal surprized; but begged her to speak.\nThere was a seriousness in Harriet's manner which prepared her,\nquite as much as her words, for something more than ordinary.\n\n\"It is my duty, and I am sure it is my wish,\" she continued,\n\"to have no reserves with you on this subject.  As I am happily\nquite an altered creature in _one_ _respect_, it is very fit that you\nshould have the satisfaction of knowing it.  I do not want to say\nmore than is necessary--I am too much ashamed of having given way\nas I have done, and I dare say you understand me.\"\n\n\"Yes,\" said Emma, \"I hope I do.\"\n\n\"How I could so long a time be fancying myself! . . .\"\ncried Harriet, warmly.  \"It seems like madness!  I can see nothing\nat all extraordinary in him now.--I do not care whether I meet\nhim or not--except that of the two I had rather not see him--\nand indeed I would go any distance round to avoid him--but I do\nnot envy his wife in the least; I neither admire her nor envy her,\nas I have done:  she is very charming, I dare say, and all that,\nbut I think her very ill-tempered and disagreeable--I shall never forget\nher look the other night!--However, I assure you, Miss Woodhouse,\nI wish her no evil.--No, let them be ever so happy together,\nit will not give me another moment's pang:  and to convince you\nthat I have been speaking truth, I am now going to destroy--what I\nought to have destroyed long ago--what I ought never to have kept--\nI know that very well (blushing as she spoke).--However, now I\nwill destroy it all--and it is my particular wish to do it\nin your presence, that you may see how rational I am grown.\nCannot you guess what this parcel holds?\" said she, with a conscious look.\n\n\"Not the least in the world.--Did he ever give you any thing?\"\n\n\"No--I cannot call them gifts; but they are things that I have\nvalued very much.\"\n\nShe held the parcel towards her, and Emma read the words _Most_\n_precious_ _treasures_ on the top.  Her curiosity was greatly excited.\nHarriet unfolded the parcel, and she looked on with impatience.\nWithin abundance of silver paper was a pretty little Tunbridge-ware box,\nwhich Harriet opened:  it was well lined with the softest cotton;\nbut, excepting the cotton, Emma saw only a small piece of court-plaister.\n\n\"Now,\" said Harriet, \"you _must_ recollect.\"\n\n\"No, indeed I do not.\"\n\n\"Dear me!  I should not have thought it possible you could forget\nwhat passed in this very room about court-plaister, one of the very\nlast times we ever met in it!--It was but a very few days before I\nhad my sore throat--just before Mr. and Mrs. John Knightley came--\nI think the very evening.--Do not you remember his cutting his finger\nwith your new penknife, and your recommending court-plaister?--\nBut, as you had none about you, and knew I had, you desired\nme to supply him; and so I took mine out and cut him a piece;\nbut it was a great deal too large, and he cut it smaller, and kept\nplaying some time with what was left, before he gave it back to me.\nAnd so then, in my nonsense, I could not help making a treasure of it--\nso I put it by never to be used, and looked at it now and then\nas a great treat.\"\n\n\"My dearest Harriet!\" cried Emma, putting her hand before her face,\nand jumping up, \"you make me more ashamed of myself than I can bear.\nRemember it?  Aye, I remember it all now; all, except your saving\nthis relic--I knew nothing of that till this moment--but the cutting\nthe finger, and my recommending court-plaister, and saying I had none\nabout me!--Oh! my sins, my sins!--And I had plenty all the while in\nmy pocket!--One of my senseless tricks!--I deserve to be under a\ncontinual blush all the rest of my life.--Well--(sitting down again)--\ngo on--what else?\"\n\n\"And had you really some at hand yourself?  I am sure I never\nsuspected it, you did it so naturally.\"\n\n\"And so you actually put this piece of court-plaister by for his sake!\"\nsaid Emma, recovering from her state of shame and feeling divided\nbetween wonder and amusement.  And secretly she added to herself,\n\"Lord bless me! when should I ever have thought of putting by in cotton\na piece of court-plaister that Frank Churchill had been pulling about!\nI never was equal to this.\"\n\n\"Here,\" resumed Harriet, turning to her box again, \"here is\nsomething still more valuable, I mean that _has_ _been_ more valuable,\nbecause this is what did really once belong to him, which the\ncourt-plaister never did.\"\n\nEmma was quite eager to see this superior treasure.  It was the end\nof an old pencil,--the part without any lead.\n\n\"This was really his,\" said Harriet.--\"Do not you remember\none morning?--no, I dare say you do not.  But one morning--I forget\nexactly the day--but perhaps it was the Tuesday or Wednesday before\n_that_ _evening_, he wanted to make a memorandum in his pocket-book;\nit was about spruce-beer. Mr. Knightley had been telling him\nsomething about brewing spruce-beer, and he wanted to put it down;\nbut when he took out his pencil, there was so little lead that he\nsoon cut it all away, and it would not do, so you lent him another,\nand this was left upon the table as good for nothing.  But I kept\nmy eye on it; and, as soon as I dared, caught it up, and never\nparted with it again from that moment.\"\n\n\"I do remember it,\" cried Emma; \"I perfectly remember it.--\nTalking about spruce-beer.--Oh! yes--Mr. Knightley and I both saying we\nliked it, and Mr. Elton's seeming resolved to learn to like it too.\nI perfectly remember it.--Stop; Mr. Knightley was standing just here,\nwas not he?  I have an idea he was standing just here.\"\n\n\"Ah!  I do not know.  I cannot recollect.--It is very odd,\nbut I cannot recollect.--Mr. Elton was sitting here, I remember,\nmuch about where I am now.\"--\n\n\"Well, go on.\"\n\n\"Oh! that's all.  I have nothing more to shew you, or to say--\nexcept that I am now going to throw them both behind the fire,\nand I wish you to see me do it.\"\n\n\"My poor dear Harriet! and have you actually found happiness\nin treasuring up these things?\"\n\n\"Yes, simpleton as I was!--but I am quite ashamed of it now, and wish\nI could forget as easily as I can burn them.  It was very wrong\nof me, you know, to keep any remembrances, after he was married.\nI knew it was--but had not resolution enough to part with them.\"\n\n\"But, Harriet, is it necessary to burn the court-plaister?--I have\nnot a word to say for the bit of old pencil, but the court-plaister\nmight be useful.\"\n\n\"I shall be happier to burn it,\" replied Harriet.  \"It has\na disagreeable look to me.  I must get rid of every thing.--\nThere it goes, and there is an end, thank Heaven! of Mr. Elton.\"\n\n\"And when,\" thought Emma, \"will there be a beginning of Mr. Churchill?\"\n\nShe had soon afterwards reason to believe that the beginning was\nalready made, and could not but hope that the gipsy, though she had\n_told_ no fortune, might be proved to have made Harriet's.--About a\nfortnight after the alarm, they came to a sufficient explanation,\nand quite undesignedly.  Emma was not thinking of it at the moment,\nwhich made the information she received more valuable.\nShe merely said, in the course of some trivial chat, \"Well, Harriet,\nwhenever you marry I would advise you to do so and so\"--and thought\nno more of it, till after a minute's silence she heard Harriet\nsay in a very serious tone, \"I shall never marry.\"\n\nEmma then looked up, and immediately saw how it was; and after a\nmoment's debate, as to whether it should pass unnoticed or not, replied,\n\n\"Never marry!--This is a new resolution.\"\n\n\"It is one that I shall never change, however.\"\n\nAfter another short hesitation, \"I hope it does not proceed from--\nI hope it is not in compliment to Mr. Elton?\"\n\n\"Mr. Elton indeed!\" cried Harriet indignantly.--\"Oh! no\"--and Emma\ncould just catch the words, \"so superior to Mr. Elton!\"\n\nShe then took a longer time for consideration.  Should she proceed\nno farther?--should she let it pass, and seem to suspect nothing?--\nPerhaps Harriet might think her cold or angry if she did;\nor perhaps if she were totally silent, it might only drive\nHarriet into asking her to hear too much; and against any thing\nlike such an unreserve as had been, such an open and frequent\ndiscussion of hopes and chances, she was perfectly resolved.--\nShe believed it would be wiser for her to say and know at once,\nall that she meant to say and know.  Plain dealing was always best.\nShe had previously determined how far she would proceed,\non any application of the sort; and it would be safer for both,\nto have the judicious law of her own brain laid down with speed.--\nShe was decided, and thus spoke--\n\n\"Harriet, I will not affect to be in doubt of your meaning.\nYour resolution, or rather your expectation of never marrying,\nresults from an idea that the person whom you might prefer,\nwould be too greatly your superior in situation to think of you.\nIs not it so?\"\n\n\"Oh!  Miss Woodhouse, believe me I have not the presumption to suppose--\nIndeed I am not so mad.--But it is a pleasure to me to admire him\nat a distance--and to think of his infinite superiority to all\nthe rest of the world, with the gratitude, wonder, and veneration,\nwhich are so proper, in me especially.\"\n\n\"I am not at all surprized at you, Harriet.  The service he rendered\nyou was enough to warm your heart.\"\n\n\"Service! oh! it was such an inexpressible obligation!--\nThe very recollection of it, and all that I felt at the time--\nwhen I saw him coming--his noble look--and my wretchedness before.\nSuch a change!  In one moment such a change!  From perfect misery\nto perfect happiness!\"\n\n\"It is very natural.  It is natural, and it is honourable.--\nYes, honourable, I think, to chuse so well and so gratefully.--\nBut that it will be a fortunate preference is more that I can promise.\nI do not advise you to give way to it, Harriet.  I do not by any\nmeans engage for its being returned.  Consider what you are about.\nPerhaps it will be wisest in you to check your feelings while you can:\nat any rate do not let them carry you far, unless you are persuaded\nof his liking you.  Be observant of him.  Let his behaviour be the\nguide of your sensations.  I give you this caution now, because I\nshall never speak to you again on the subject.  I am determined\nagainst all interference.  Henceforward I know nothing of the matter.\nLet no name ever pass our lips.  We were very wrong before;\nwe will be cautious now.--He is your superior, no doubt, and there\ndo seem objections and obstacles of a very serious nature;\nbut yet, Harriet, more wonderful things have taken place, there have\nbeen matches of greater disparity.  But take care of yourself.\nI would not have you too sanguine; though, however it may end,\nbe assured your raising your thoughts to _him_, is a mark of good taste\nwhich I shall always know how to value.\"\n\nHarriet kissed her hand in silent and submissive gratitude.\nEmma was very decided in thinking such an attachment no bad thing\nfor her friend.  Its tendency would be to raise and refine her mind--\nand it must be saving her from the danger of degradation.\n\n\n\nCHAPTER V\n\n\nIn this state of schemes, and hopes, and connivance, June opened\nupon Hartfield.  To Highbury in general it brought no material change.\nThe Eltons were still talking of a visit from the Sucklings,\nand of the use to be made of their barouche-landau; and Jane Fairfax\nwas still at her grandmother's; and as the return of the Campbells\nfrom Ireland was again delayed, and August, instead of Midsummer,\nfixed for it, she was likely to remain there full two months longer,\nprovided at least she were able to defeat Mrs. Elton's activity\nin her service, and save herself from being hurried into a delightful\nsituation against her will.\n\nMr. Knightley, who, for some reason best known to himself, had certainly\ntaken an early dislike to Frank Churchill, was only growing to dislike\nhim more.  He began to suspect him of some double dealing in his\npursuit of Emma.  That Emma was his object appeared indisputable.\nEvery thing declared it; his own attentions, his father's hints,\nhis mother-in-law's guarded silence; it was all in unison;\nwords, conduct, discretion, and indiscretion, told the same story.\nBut while so many were devoting him to Emma, and Emma herself making him\nover to Harriet, Mr. Knightley began to suspect him of some inclination\nto trifle with Jane Fairfax.  He could not understand it; but there\nwere symptoms of intelligence between them--he thought so at least--\nsymptoms of admiration on his side, which, having once observed,\nhe could not persuade himself to think entirely void of meaning,\nhowever he might wish to escape any of Emma's errors of imagination.\n_She_ was not present when the suspicion first arose.  He was dining\nwith the Randalls family, and Jane, at the Eltons'; and he had\nseen a look, more than a single look, at Miss Fairfax, which,\nfrom the admirer of Miss Woodhouse, seemed somewhat out of place.\nWhen he was again in their company, he could not help remembering\nwhat he had seen; nor could he avoid observations which, unless it\nwere like Cowper and his fire at twilight,\n\n\"Myself creating what I saw,\"\n\nbrought him yet stronger suspicion of there being a something\nof private liking, of private understanding even, between Frank\nChurchill and Jane.\n\nHe had walked up one day after dinner, as he very often did,\nto spend his evening at Hartfield.  Emma and Harriet were going\nto walk; he joined them; and, on returning, they fell in with a\nlarger party, who, like themselves, judged it wisest to take their\nexercise early, as the weather threatened rain; Mr. and Mrs. Weston\nand their son, Miss Bates and her niece, who had accidentally met.\nThey all united; and, on reaching Hartfield gates, Emma, who knew it\nwas exactly the sort of visiting that would be welcome to her father,\npressed them all to go in and drink tea with him.  The Randalls\nparty agreed to it immediately; and after a pretty long speech\nfrom Miss Bates, which few persons listened to, she also found it\npossible to accept dear Miss Woodhouse's most obliging invitation.\n\nAs they were turning into the grounds, Mr. Perry passed by on horseback.\nThe gentlemen spoke of his horse.\n\n\"By the bye,\" said Frank Churchill to Mrs. Weston presently,\n\"what became of Mr. Perry's plan of setting up his carriage?\"\n\nMrs. Weston looked surprized, and said, \"I did not know that he\never had any such plan.\"\n\n\"Nay, I had it from you.  You wrote me word of it three months ago.\"\n\n\"Me! impossible!\"\n\n\"Indeed you did.  I remember it perfectly.  You mentioned it as\nwhat was certainly to be very soon.  Mrs. Perry had told somebody,\nand was extremely happy about it.  It was owing to _her_ persuasion,\nas she thought his being out in bad weather did him a great deal\nof harm.  You must remember it now?\"\n\n\"Upon my word I never heard of it till this moment.\"\n\n\"Never! really, never!--Bless me! how could it be?--Then I must\nhave dreamt it--but I was completely persuaded--Miss Smith,\nyou walk as if you were tired.  You will not be sorry to find\nyourself at home.\"\n\n\"What is this?--What is this?\" cried Mr. Weston, \"about Perry\nand a carriage?  Is Perry going to set up his carriage, Frank?\nI am glad he can afford it.  You had it from himself, had you?\"\n\n\"No, sir,\" replied his son, laughing, \"I seem to have had it\nfrom nobody.--Very odd!--I really was persuaded of Mrs. Weston's\nhaving mentioned it in one of her letters to Enscombe, many weeks ago,\nwith all these particulars--but as she declares she never heard\na syllable of it before, of course it must have been a dream.  I am\na great dreamer.  I dream of every body at Highbury when I am away--\nand when I have gone through my particular friends, then I begin\ndreaming of Mr. and Mrs. Perry.\"\n\n\"It is odd though,\" observed his father, \"that you should have had such\na regular connected dream about people whom it was not very likely you\nshould be thinking of at Enscombe.  Perry's setting up his carriage!\nand his wife's persuading him to it, out of care for his health--\njust what will happen, I have no doubt, some time or other;\nonly a little premature.  What an air of probability sometimes\nruns through a dream!  And at others, what a heap of absurdities\nit is!  Well, Frank, your dream certainly shews that Highbury is in\nyour thoughts when you are absent.  Emma, you are a great dreamer,\nI think?\"\n\nEmma was out of hearing.  She had hurried on before her guests\nto prepare her father for their appearance, and was beyond the reach\nof Mr. Weston's hint.\n\n\"Why, to own the truth,\" cried Miss Bates, who had been trying in vain\nto be heard the last two minutes, \"if I must speak on this subject,\nthere is no denying that Mr. Frank Churchill might have--I do not\nmean to say that he did not dream it--I am sure I have sometimes\nthe oddest dreams in the world--but if I am questioned about it,\nI must acknowledge that there was such an idea last spring;\nfor Mrs. Perry herself mentioned it to my mother, and the Coles\nknew of it as well as ourselves--but it was quite a secret,\nknown to nobody else, and only thought of about three days.\nMrs. Perry was very anxious that he should have a carriage, and came\nto my mother in great spirits one morning because she thought she\nhad prevailed.  Jane, don't you remember grandmama's telling us\nof it when we got home?  I forget where we had been walking to--\nvery likely to Randalls; yes, I think it was to Randalls.\nMrs. Perry was always particularly fond of my mother--indeed I do\nnot know who is not--and she had mentioned it to her in confidence;\nshe had no objection to her telling us, of course, but it was not\nto go beyond:  and, from that day to this, I never mentioned it\nto a soul that I know of.  At the same time, I will not positively\nanswer for my having never dropt a hint, because I know I do\nsometimes pop out a thing before I am aware.  I am a talker,\nyou know; I am rather a talker; and now and then I have let a thing\nescape me which I should not.  I am not like Jane; I wish I were.\nI will answer for it _she_ never betrayed the least thing in the world.\nWhere is she?--Oh! just behind.  Perfectly remember Mrs. Perry's coming.--\nExtraordinary dream, indeed!\"\n\nThey were entering the hall.  Mr. Knightley's eyes had preceded\nMiss Bates's in a glance at Jane.  From Frank Churchill's face,\nwhere he thought he saw confusion suppressed or laughed away,\nhe had involuntarily turned to hers; but she was indeed behind,\nand too busy with her shawl.  Mr. Weston had walked in.  The two\nother gentlemen waited at the door to let her pass.  Mr. Knightley\nsuspected in Frank Churchill the determination of catching her eye--\nhe seemed watching her intently--in vain, however, if it were so--\nJane passed between them into the hall, and looked at neither.\n\nThere was no time for farther remark or explanation.  The dream must\nbe borne with, and Mr. Knightley must take his seat with the rest round\nthe large modern circular table which Emma had introduced at Hartfield,\nand which none but Emma could have had power to place there and\npersuade her father to use, instead of the small-sized Pembroke,\non which two of his daily meals had, for forty years been crowded.\nTea passed pleasantly, and nobody seemed in a hurry to move.\n\n\"Miss Woodhouse,\" said Frank Churchill, after examining a table\nbehind him, which he could reach as he sat, \"have your nephews taken\naway their alphabets--their box of letters?  It used to stand here.\nWhere is it?  This is a sort of dull-looking evening, that ought\nto be treated rather as winter than summer.  We had great amusement\nwith those letters one morning.  I want to puzzle you again.\"\n\nEmma was pleased with the thought; and producing the box, the table\nwas quickly scattered over with alphabets, which no one seemed so much\ndisposed to employ as their two selves.  They were rapidly forming\nwords for each other, or for any body else who would be puzzled.\nThe quietness of the game made it particularly eligible for\nMr. Woodhouse, who had often been distressed by the more animated sort,\nwhich Mr. Weston had occasionally introduced, and who now sat happily\noccupied in lamenting, with tender melancholy, over the departure\nof the \"poor little boys,\" or in fondly pointing out, as he took\nup any stray letter near him, how beautifully Emma had written it.\n\nFrank Churchill placed a word before Miss Fairfax.  She gave\na slight glance round the table, and applied herself to it.\nFrank was next to Emma, Jane opposite to them--and Mr. Knightley\nso placed as to see them all; and it was his object to see as much\nas he could, with as little apparent observation.  The word\nwas discovered, and with a faint smile pushed away.  If meant\nto be immediately mixed with the others, and buried from sight,\nshe should have looked on the table instead of looking just across,\nfor it was not mixed; and Harriet, eager after every fresh word,\nand finding out none, directly took it up, and fell to work.\nShe was sitting by Mr. Knightley, and turned to him for help.\nThe word was _blunder_; and as Harriet exultingly proclaimed it,\nthere was a blush on Jane's cheek which gave it a meaning not\notherwise ostensible.  Mr. Knightley connected it with the dream;\nbut how it could all be, was beyond his comprehension.\nHow the delicacy, the discretion of his favourite could have been\nso lain asleep!  He feared there must be some decided involvement.\nDisingenuousness and double dealing seemed to meet him at every turn.\nThese letters were but the vehicle for gallantry and trick.\nIt was a child's play, chosen to conceal a deeper game on Frank\nChurchill's part.\n\nWith great indignation did he continue to observe him; with great\nalarm and distrust, to observe also his two blinded companions.\nHe saw a short word prepared for Emma, and given to her with a look\nsly and demure.  He saw that Emma had soon made it out, and found\nit highly entertaining, though it was something which she judged it\nproper to appear to censure; for she said, \"Nonsense! for shame!\"\nHe heard Frank Churchill next say, with a glance towards Jane,\n\"I will give it to her--shall I?\"--and as clearly heard Emma\nopposing it with eager laughing warmth.  \"No, no, you must not;\nyou shall not, indeed.\"\n\nIt was done however.  This gallant young man, who seemed to love\nwithout feeling, and to recommend himself without complaisance,\ndirectly handed over the word to Miss Fairfax, and with a particular\ndegree of sedate civility entreated her to study it.  Mr. Knightley's\nexcessive curiosity to know what this word might be, made him seize\nevery possible moment for darting his eye towards it, and it was\nnot long before he saw it to be _Dixon_.  Jane Fairfax's perception\nseemed to accompany his; her comprehension was certainly more equal\nto the covert meaning, the superior intelligence, of those five letters\nso arranged.  She was evidently displeased; looked up, and seeing\nherself watched, blushed more deeply than he had ever perceived her,\nand saying only, \"I did not know that proper names were allowed,\"\npushed away the letters with even an angry spirit, and looked\nresolved to be engaged by no other word that could be offered.\nHer face was averted from those who had made the attack, and turned\ntowards her aunt.\n\n\"Aye, very true, my dear,\" cried the latter, though Jane had not\nspoken a word--\"I was just going to say the same thing.  It is time\nfor us to be going indeed.  The evening is closing in, and grandmama\nwill be looking for us.  My dear sir, you are too obliging.\nWe really must wish you good night.\"\n\nJane's alertness in moving, proved her as ready as her aunt\nhad preconceived.  She was immediately up, and wanting to quit\nthe table; but so many were also moving, that she could not get away;\nand Mr. Knightley thought he saw another collection of letters anxiously\npushed towards her, and resolutely swept away by her unexamined.\nShe was afterwards looking for her shawl--Frank Churchill was\nlooking also--it was growing dusk, and the room was in confusion;\nand how they parted, Mr. Knightley could not tell.\n\nHe remained at Hartfield after all the rest, his thoughts full\nof what he had seen; so full, that when the candles came to assist\nhis observations, he must--yes, he certainly must, as a friend--\nan anxious friend--give Emma some hint, ask her some question.\nHe could not see her in a situation of such danger, without trying to\npreserve her.  It was his duty.\n\n\"Pray, Emma,\" said he, \"may I ask in what lay the great amusement,\nthe poignant sting of the last word given to you and Miss Fairfax?\nI saw the word, and am curious to know how it could be so very\nentertaining to the one, and so very distressing to the other.\"\n\nEmma was extremely confused.  She could not endure to give him the\ntrue explanation; for though her suspicions were by no means removed,\nshe was really ashamed of having ever imparted them.\n\n\"Oh!\" she cried in evident embarrassment, \"it all meant nothing;\na mere joke among ourselves.\"\n\n\"The joke,\" he replied gravely, \"seemed confined to you\nand Mr. Churchill.\"\n\nHe had hoped she would speak again, but she did not.  She would\nrather busy herself about any thing than speak.  He sat a little\nwhile in doubt.  A variety of evils crossed his mind.  Interference--\nfruitless interference.  Emma's confusion, and the acknowledged intimacy,\nseemed to declare her affection engaged.  Yet he would speak.\nHe owed it to her, to risk any thing that might be involved in\nan unwelcome interference, rather than her welfare; to encounter\nany thing, rather than the remembrance of neglect in such a cause.\n\n\"My dear Emma,\" said he at last, with earnest kindness, \"do you\nthink you perfectly understand the degree of acquaintance between\nthe gentleman and lady we have been speaking of?\"\n\n\"Between Mr. Frank Churchill and Miss Fairfax?  Oh! yes, perfectly.--\nWhy do you make a doubt of it?\"\n\n\"Have you never at any time had reason to think that he admired her,\nor that she admired him?\"\n\n\"Never, never!\" she cried with a most open eagerness--\"Never, for\nthe twentieth part of a moment, did such an idea occur to me.\nAnd how could it possibly come into your head?\"\n\n\"I have lately imagined that I saw symptoms of attachment between them--\ncertain expressive looks, which I did not believe meant to be public.\"\n\n\"Oh! you amuse me excessively.  I am delighted to find that you\ncan vouchsafe to let your imagination wander--but it will not do--\nvery sorry to check you in your first essay--but indeed it will\nnot do.  There is no admiration between them, I do assure you;\nand the appearances which have caught you, have arisen from some\npeculiar circumstances--feelings rather of a totally different nature--\nit is impossible exactly to explain:--there is a good deal of\nnonsense in it--but the part which is capable of being communicated,\nwhich is sense, is, that they are as far from any attachment or\nadmiration for one another, as any two beings in the world can be.\nThat is, I _presume_ it to be so on her side, and I can _answer_ for its\nbeing so on his.  I will answer for the gentleman's indifference.\"\n\nShe spoke with a confidence which staggered, with a satisfaction\nwhich silenced, Mr. Knightley.  She was in gay spirits, and would\nhave prolonged the conversation, wanting to hear the particulars\nof his suspicions, every look described, and all the wheres and hows\nof a circumstance which highly entertained her:  but his gaiety did\nnot meet hers.  He found he could not be useful, and his feelings\nwere too much irritated for talking.  That he might not be irritated\ninto an absolute fever, by the fire which Mr. Woodhouse's tender\nhabits required almost every evening throughout the year, he soon\nafterwards took a hasty leave, and walked home to the coolness\nand solitude of Donwell Abbey.\n\n\n\nCHAPTER VI\n\n\nAfter being long fed with hopes of a speedy visit from Mr. and\nMrs. Suckling, the Highbury world were obliged to endure the mortification\nof hearing that they could not possibly come till the autumn.\nNo such importation of novelties could enrich their intellectual stores\nat present.  In the daily interchange of news, they must be again\nrestricted to the other topics with which for a while the Sucklings'\ncoming had been united, such as the last accounts of Mrs. Churchill,\nwhose health seemed every day to supply a different report,\nand the situation of Mrs. Weston, whose happiness it was to be hoped\nmight eventually be as much increased by the arrival of a child,\nas that of all her neighbours was by the approach of it.\n\nMrs. Elton was very much disappointed.  It was the delay of a great\ndeal of pleasure and parade.  Her introductions and recommendations\nmust all wait, and every projected party be still only talked of.\nSo she thought at first;--but a little consideration convinced\nher that every thing need not be put off.  Why should not they\nexplore to Box Hill though the Sucklings did not come?  They could\ngo there again with them in the autumn.  It was settled that they\nshould go to Box Hill.  That there was to be such a party had been\nlong generally known:  it had even given the idea of another.\nEmma had never been to Box Hill; she wished to see what every body\nfound so well worth seeing, and she and Mr. Weston had agreed\nto chuse some fine morning and drive thither.  Two or three more\nof the chosen only were to be admitted to join them, and it was to\nbe done in a quiet, unpretending, elegant way, infinitely superior\nto the bustle and preparation, the regular eating and drinking,\nand picnic parade of the Eltons and the Sucklings.\n\nThis was so very well understood between them, that Emma could\nnot but feel some surprise, and a little displeasure, on hearing\nfrom Mr. Weston that he had been proposing to Mrs. Elton, as her\nbrother and sister had failed her, that the two parties should unite,\nand go together; and that as Mrs. Elton had very readily acceded\nto it, so it was to be, if she had no objection.  Now, as her\nobjection was nothing but her very great dislike of Mrs. Elton,\nof which Mr. Weston must already be perfectly aware, it was not worth\nbringing forward again:--it could not be done without a reproof\nto him, which would be giving pain to his wife; and she found\nherself therefore obliged to consent to an arrangement which she\nwould have done a great deal to avoid; an arrangement which would\nprobably expose her even to the degradation of being said to be of\nMrs. Elton's party!  Every feeling was offended; and the forbearance\nof her outward submission left a heavy arrear due of secret severity\nin her reflections on the unmanageable goodwill of Mr. Weston's temper.\n\n\"I am glad you approve of what I have done,\" said he very comfortably.\n\"But I thought you would.  Such schemes as these are nothing\nwithout numbers.  One cannot have too large a party.  A large party\nsecures its own amusement.  And she is a good-natured woman after all.\nOne could not leave her out.\"\n\nEmma denied none of it aloud, and agreed to none of it in private.\n\nIt was now the middle of June, and the weather fine; and Mrs. Elton\nwas growing impatient to name the day, and settle with Mr. Weston\nas to pigeon-pies and cold lamb, when a lame carriage-horse threw\nevery thing into sad uncertainty.  It might be weeks, it might be\nonly a few days, before the horse were useable; but no preparations\ncould be ventured on, and it was all melancholy stagnation.\nMrs. Elton's resources were inadequate to such an attack.\n\n\"Is not this most vexations, Knightley?\" she cried.--\"And such weather\nfor exploring!--These delays and disappointments are quite odious.\nWhat are we to do?--The year will wear away at this rate,\nand nothing done.  Before this time last year I assure you we had\nhad a delightful exploring party from Maple Grove to Kings Weston.\"\n\n\"You had better explore to Donwell,\" replied Mr. Knightley.\n\"That may be done without horses.  Come, and eat my strawberries.\nThey are ripening fast.\"\n\nIf Mr. Knightley did not begin seriously, he was obliged to proceed so,\nfor his proposal was caught at with delight; and the \"Oh!  I should\nlike it of all things,\" was not plainer in words than manner.\nDonwell was famous for its strawberry-beds, which seemed a plea for\nthe invitation:  but no plea was necessary; cabbage-beds would have\nbeen enough to tempt the lady, who only wanted to be going somewhere.\nShe promised him again and again to come--much oftener than\nhe doubted--and was extremely gratified by such a proof of intimacy,\nsuch a distinguishing compliment as she chose to consider it.\n\n\"You may depend upon me,\" said she.  \"I certainly will come.\nName your day, and I will come.  You will allow me to bring\nJane Fairfax?\"\n\n\"I cannot name a day,\" said he, \"till I have spoken to some others\nwhom I would wish to meet you.\"\n\n\"Oh! leave all that to me.  Only give me a carte-blanche.--I am\nLady Patroness, you know.  It is my party.  I will bring friends\nwith me.\"\n\n\"I hope you will bring Elton,\" said he:  \"but I will not trouble\nyou to give any other invitations.\"\n\n\"Oh! now you are looking very sly.  But consider--you need not be afraid\nof delegating power to _me_.  I am no young lady on her preferment.\nMarried women, you know, may be safely authorised.  It is my party.\nLeave it all to me.  I will invite your guests.\"\n\n\"No,\"--he calmly replied,--\"there is but one married woman in the world\nwhom I can ever allow to invite what guests she pleases to Donwell,\nand that one is--\"\n\n\"--Mrs. Weston, I suppose,\" interrupted Mrs. Elton, rather mortified.\n\n\"No--Mrs. Knightley;--and till she is in being, I will manage\nsuch matters myself.\"\n\n\"Ah! you are an odd creature!\" she cried, satisfied to have no\none preferred to herself.--\"You are a humourist, and may say what\nyou like.  Quite a humourist.  Well, I shall bring Jane with me--\nJane and her aunt.--The rest I leave to you.  I have no objections\nat all to meeting the Hartfield family.  Don't scruple.  I know\nyou are attached to them.\"\n\n\"You certainly will meet them if I can prevail; and I shall call\non Miss Bates in my way home.\"\n\n\"That's quite unnecessary; I see Jane every day:--but as you like.\nIt is to be a morning scheme, you know, Knightley; quite a simple thing.\nI shall wear a large bonnet, and bring one of my little baskets\nhanging on my arm.  Here,--probably this basket with pink ribbon.\nNothing can be more simple, you see.  And Jane will have such another.\nThere is to be no form or parade--a sort of gipsy party.  We are\nto walk about your gardens, and gather the strawberries ourselves,\nand sit under trees;--and whatever else you may like to provide,\nit is to be all out of doors--a table spread in the shade, you know.\nEvery thing as natural and simple as possible.  Is not that your idea?\"\n\n\"Not quite.  My idea of the simple and the natural will be to have\nthe table spread in the dining-room. The nature and the simplicity\nof gentlemen and ladies, with their servants and furniture, I think\nis best observed by meals within doors.  When you are tired of eating\nstrawberries in the garden, there shall be cold meat in the house.\"\n\n\"Well--as you please; only don't have a great set out.  And, by the bye,\ncan I or my housekeeper be of any use to you with our opinion?--\nPray be sincere, Knightley.  If you wish me to talk to Mrs. Hodges,\nor to inspect anything--\"\n\n\"I have not the least wish for it, I thank you.\"\n\n\"Well--but if any difficulties should arise, my housekeeper\nis extremely clever.\"\n\n\"I will answer for it, that mine thinks herself full as clever,\nand would spurn any body's assistance.\"\n\n\"I wish we had a donkey.  The thing would be for us all to come\non donkeys, Jane, Miss Bates, and me--and my caro sposo walking by.\nI really must talk to him about purchasing a donkey.  In a country\nlife I conceive it to be a sort of necessary; for, let a woman have\never so many resources, it is not possible for her to be always shut\nup at home;--and very long walks, you know--in summer there is dust,\nand in winter there is dirt.\"\n\n\"You will not find either, between Donwell and Highbury.\nDonwell Lane is never dusty, and now it is perfectly dry.  Come on\na donkey, however, if you prefer it.  You can borrow Mrs. Cole's.\nI would wish every thing to be as much to your taste as possible.\"\n\n\"That I am sure you would.  Indeed I do you justice, my good friend.\nUnder that peculiar sort of dry, blunt manner, I know you have the\nwarmest heart.  As I tell Mr. E., you are a thorough humourist.--\nYes, believe me, Knightley, I am fully sensible of your attention\nto me in the whole of this scheme.  You have hit upon the very thing\nto please me.\"\n\nMr. Knightley had another reason for avoiding a table in the shade.\nHe wished to persuade Mr. Woodhouse, as well as Emma, to join the party;\nand he knew that to have any of them sitting down out of doors\nto eat would inevitably make him ill.  Mr. Woodhouse must not,\nunder the specious pretence of a morning drive, and an hour or two\nspent at Donwell, be tempted away to his misery.\n\nHe was invited on good faith.  No lurking horrors were to upbraid\nhim for his easy credulity.  He did consent.  He had not been\nat Donwell for two years.  \"Some very fine morning, he, and Emma,\nand Harriet, could go very well; and he could sit still with\nMrs. Weston, while the dear girls walked about the gardens.\nHe did not suppose they could be damp now, in the middle of\nthe day.  He should like to see the old house again exceedingly,\nand should be very happy to meet Mr. and Mrs. Elton, and any other\nof his neighbours.--He could not see any objection at all to his,\nand Emma's, and Harriet's going there some very fine morning.\nHe thought it very well done of Mr. Knightley to invite them--\nvery kind and sensible--much cleverer than dining out.--He was not\nfond of dining out.\"\n\nMr. Knightley was fortunate in every body's most ready concurrence.\nThe invitation was everywhere so well received, that it seemed as if,\nlike Mrs. Elton, they were all taking the scheme as a particular\ncompliment to themselves.--Emma and Harriet professed very high\nexpectations of pleasure from it; and Mr. Weston, unasked,\npromised to get Frank over to join them, if possible; a proof\nof approbation and gratitude which could have been dispensed with.--\nMr. Knightley was then obliged to say that he should be glad\nto see him; and Mr. Weston engaged to lose no time in writing,\nand spare no arguments to induce him to come.\n\nIn the meanwhile the lame horse recovered so fast, that the party\nto Box Hill was again under happy consideration; and at last Donwell\nwas settled for one day, and Box Hill for the next,--the weather\nappearing exactly right.\n\nUnder a bright mid-day sun, at almost Midsummer, Mr. Woodhouse\nwas safely conveyed in his carriage, with one window down,\nto partake of this al-fresco party; and in one of the most\ncomfortable rooms in the Abbey, especially prepared for him by a\nfire all the morning, he was happily placed, quite at his ease,\nready to talk with pleasure of what had been achieved, and advise\nevery body to come and sit down, and not to heat themselves.--\nMrs. Weston, who seemed to have walked there on purpose to be tired,\nand sit all the time with him, remained, when all the others\nwere invited or persuaded out, his patient listener and sympathiser.\n\nIt was so long since Emma had been at the Abbey, that as soon as she\nwas satisfied of her father's comfort, she was glad to leave him,\nand look around her; eager to refresh and correct her memory with\nmore particular observation, more exact understanding of a house\nand grounds which must ever be so interesting to her and all her family.\n\nShe felt all the honest pride and complacency which her alliance\nwith the present and future proprietor could fairly warrant,\nas she viewed the respectable size and style of the building,\nits suitable, becoming, characteristic situation, low and sheltered--\nits ample gardens stretching down to meadows washed by a stream,\nof which the Abbey, with all the old neglect of prospect,\nhad scarcely a sight--and its abundance of timber in rows and avenues,\nwhich neither fashion nor extravagance had rooted up.--The house\nwas larger than Hartfield, and totally unlike it, covering a good\ndeal of ground, rambling and irregular, with many comfortable,\nand one or two handsome rooms.--It was just what it ought to be,\nand it looked what it was--and Emma felt an increasing respect\nfor it, as the residence of a family of such true gentility,\nuntainted in blood and understanding.--Some faults of temper John\nKnightley had; but Isabella had connected herself unexceptionably.\nShe had given them neither men, nor names, nor places, that could\nraise a blush.  These were pleasant feelings, and she walked about\nand indulged them till it was necessary to do as the others did,\nand collect round the strawberry-beds.--The whole party were assembled,\nexcepting Frank Churchill, who was expected every moment from Richmond;\nand Mrs. Elton, in all her apparatus of happiness, her large bonnet\nand her basket, was very ready to lead the way in gathering,\naccepting, or talking--strawberries, and only strawberries,\ncould now be thought or spoken of.--\"The best fruit in England--\nevery body's favourite--always wholesome.--These the finest beds\nand finest sorts.--Delightful to gather for one's self--the only way\nof really enjoying them.--Morning decidedly the best time--never tired--\nevery sort good--hautboy infinitely superior--no comparison--\nthe others hardly eatable--hautboys very scarce--Chili preferred--\nwhite wood finest flavour of all--price of strawberries in London--\nabundance about Bristol--Maple Grove--cultivation--beds when to\nbe renewed--gardeners thinking exactly different--no general rule--\ngardeners never to be put out of their way--delicious fruit--\nonly too rich to be eaten much of--inferior to cherries--\ncurrants more refreshing--only objection to gathering strawberries\nthe stooping--glaring sun--tired to death--could bear it no longer--\nmust go and sit in the shade.\"\n\nSuch, for half an hour, was the conversation--interrupted only\nonce by Mrs. Weston, who came out, in her solicitude after her\nson-in-law, to inquire if he were come--and she was a little uneasy.--\nShe had some fears of his horse.\n\nSeats tolerably in the shade were found; and now Emma was obliged\nto overhear what Mrs. Elton and Jane Fairfax were talking of.--\nA situation, a most desirable situation, was in question.  Mrs. Elton\nhad received notice of it that morning, and was in raptures.\nIt was not with Mrs. Suckling, it was not with Mrs. Bragge,\nbut in felicity and splendour it fell short only of them:  it was\nwith a cousin of Mrs. Bragge, an acquaintance of Mrs. Suckling,\na lady known at Maple Grove.  Delightful, charming, superior,\nfirst circles, spheres, lines, ranks, every thing--and Mrs. Elton\nwas wild to have the offer closed with immediately.--On her side,\nall was warmth, energy, and triumph--and she positively refused\nto take her friend's negative, though Miss Fairfax continued\nto assure her that she would not at present engage in any thing,\nrepeating the same motives which she had been heard to urge before.--\nStill Mrs. Elton insisted on being authorised to write an acquiescence\nby the morrow's post.--How Jane could bear it at all, was astonishing\nto Emma.--She did look vexed, she did speak pointedly--and at last,\nwith a decision of action unusual to her, proposed a removal.--\n\"Should not they walk?  Would not Mr. Knightley shew them the gardens--\nall the gardens?--She wished to see the whole extent.\"--The pertinacity\nof her friend seemed more than she could bear.\n\nIt was hot; and after walking some time over the gardens in a scattered,\ndispersed way, scarcely any three together, they insensibly\nfollowed one another to the delicious shade of a broad short\navenue of limes, which stretching beyond the garden at an equal\ndistance from the river, seemed the finish of the pleasure grounds.--\nIt led to nothing; nothing but a view at the end over a low stone\nwall with high pillars, which seemed intended, in their erection,\nto give the appearance of an approach to the house, which never had\nbeen there.  Disputable, however, as might be the taste of such\na termination, it was in itself a charming walk, and the view\nwhich closed it extremely pretty.--The considerable slope, at nearly\nthe foot of which the Abbey stood, gradually acquired a steeper\nform beyond its grounds; and at half a mile distant was a bank\nof considerable abruptness and grandeur, well clothed with wood;--\nand at the bottom of this bank, favourably placed and sheltered,\nrose the Abbey Mill Farm, with meadows in front, and the river\nmaking a close and handsome curve around it.\n\nIt was a sweet view--sweet to the eye and the mind.  English verdure,\nEnglish culture, English comfort, seen under a sun bright,\nwithout being oppressive.\n\nIn this walk Emma and Mr. Weston found all the others assembled;\nand towards this view she immediately perceived Mr. Knightley\nand Harriet distinct from the rest, quietly leading the way.\nMr. Knightley and Harriet!--It was an odd tete-a-tete; but she was\nglad to see it.--There had been a time when he would have scorned\nher as a companion, and turned from her with little ceremony.\nNow they seemed in pleasant conversation.  There had been a time\nalso when Emma would have been sorry to see Harriet in a spot\nso favourable for the Abbey Mill Farm; but now she feared it not.\nIt might be safely viewed with all its appendages of prosperity\nand beauty, its rich pastures, spreading flocks, orchard in blossom,\nand light column of smoke ascending.--She joined them at the wall,\nand found them more engaged in talking than in looking around.\nHe was giving Harriet information as to modes of agriculture, etc.\nand Emma received a smile which seemed to say, \"These are my\nown concerns.  I have a right to talk on such subjects, without being\nsuspected of introducing Robert Martin.\"--She did not suspect him.\nIt was too old a story.--Robert Martin had probably ceased to think\nof Harriet.--They took a few turns together along the walk.--The shade\nwas most refreshing, and Emma found it the pleasantest part of\nthe day.\n\nThe next remove was to the house; they must all go in and eat;--\nand they were all seated and busy, and still Frank Churchill did\nnot come.  Mrs. Weston looked, and looked in vain.  His father would\nnot own himself uneasy, and laughed at her fears; but she could\nnot be cured of wishing that he would part with his black mare.\nHe had expressed himself as to coming, with more than common certainty.\n\"His aunt was so much better, that he had not a doubt of getting\nover to them.\"--Mrs. Churchill's state, however, as many were ready\nto remind her, was liable to such sudden variation as might disappoint\nher nephew in the most reasonable dependence--and Mrs. Weston\nwas at last persuaded to believe, or to say, that it must be\nby some attack of Mrs. Churchill that he was prevented coming.--\nEmma looked at Harriet while the point was under consideration;\nshe behaved very well, and betrayed no emotion.\n\nThe cold repast was over, and the party were to go out once more\nto see what had not yet been seen, the old Abbey fish-ponds;\nperhaps get as far as the clover, which was to be begun cutting\non the morrow, or, at any rate, have the pleasure of being hot,\nand growing cool again.--Mr. Woodhouse, who had already taken\nhis little round in the highest part of the gardens, where no\ndamps from the river were imagined even by him, stirred no more;\nand his daughter resolved to remain with him, that Mrs. Weston\nmight be persuaded away by her husband to the exercise and variety\nwhich her spirits seemed to need.\n\nMr. Knightley had done all in his power for Mr. Woodhouse's\nentertainment.  Books of engravings, drawers of medals, cameos,\ncorals, shells, and every other family collection within his cabinets,\nhad been prepared for his old friend, to while away the morning;\nand the kindness had perfectly answered.  Mr. Woodhouse had been\nexceedingly well amused.  Mrs. Weston had been shewing them all to him,\nand now he would shew them all to Emma;--fortunate in having no other\nresemblance to a child, than in a total want of taste for what he saw,\nfor he was slow, constant, and methodical.--Before this second looking\nover was begun, however, Emma walked into the hall for the sake\nof a few moments' free observation of the entrance and ground-plot\nof the house--and was hardly there, when Jane Fairfax appeared,\ncoming quickly in from the garden, and with a look of escape.--\nLittle expecting to meet Miss Woodhouse so soon, there was a start\nat first; but Miss Woodhouse was the very person she was in quest of.\n\n\"Will you be so kind,\" said she, \"when I am missed, as to say\nthat I am gone home?--I am going this moment.--My aunt is not aware\nhow late it is, nor how long we have been absent--but I am sure we\nshall be wanted, and I am determined to go directly.--I have said\nnothing about it to any body.  It would only be giving trouble\nand distress.  Some are gone to the ponds, and some to the lime walk.\nTill they all come in I shall not be missed; and when they do,\nwill you have the goodness to say that I am gone?\"\n\n\"Certainly, if you wish it;--but you are not going to walk\nto Highbury alone?\"\n\n\"Yes--what should hurt me?--I walk fast.  I shall be at home\nin twenty minutes.\"\n\n\"But it is too far, indeed it is, to be walking quite alone.\nLet my father's servant go with you.--Let me order the carriage.\nIt can be round in five minutes.\"\n\n\"Thank you, thank you--but on no account.--I would rather walk.--\nAnd for _me_ to be afraid of walking alone!--I, who may so soon have\nto guard others!\"\n\nShe spoke with great agitation; and Emma very feelingly replied,\n\"That can be no reason for your being exposed to danger now.\nI must order the carriage.  The heat even would be danger.--You are\nfatigued already.\"\n\n\"I am,\"--she answered--\"I am fatigued; but it is not the sort\nof fatigue--quick walking will refresh me.--Miss Woodhouse, we all\nknow at times what it is to be wearied in spirits.  Mine, I confess,\nare exhausted.  The greatest kindness you can shew me, will be to let\nme have my own way, and only say that I am gone when it is necessary.\"\n\nEmma had not another word to oppose.  She saw it all; and entering\ninto her feelings, promoted her quitting the house immediately,\nand watched her safely off with the zeal of a friend.  Her parting\nlook was grateful--and her parting words, \"Oh!  Miss Woodhouse,\nthe comfort of being sometimes alone!\"--seemed to burst from\nan overcharged heart, and to describe somewhat of the continual\nendurance to be practised by her, even towards some of those who\nloved her best.\n\n\"Such a home, indeed! such an aunt!\" said Emma, as she turned back\ninto the hall again.  \"I do pity you.  And the more sensibility\nyou betray of their just horrors, the more I shall like you.\"\n\nJane had not been gone a quarter of an hour, and they had only\naccomplished some views of St. Mark's Place, Venice, when Frank\nChurchill entered the room.  Emma had not been thinking of him,\nshe had forgotten to think of him--but she was very glad to see him.\nMrs. Weston would be at ease.  The black mare was blameless;\n_they_ were right who had named Mrs. Churchill as the cause.\nHe had been detained by a temporary increase of illness in her;\na nervous seizure, which had lasted some hours--and he had quite given\nup every thought of coming, till very late;--and had he known how hot\na ride he should have, and how late, with all his hurry, he must be,\nhe believed he should not have come at all.  The heat was excessive;\nhe had never suffered any thing like it--almost wished he had staid\nat home--nothing killed him like heat--he could bear any degree of cold,\netc., but heat was intolerable--and he sat down, at the greatest\npossible distance from the slight remains of Mr. Woodhouse's fire,\nlooking very deplorable.\n\n\"You will soon be cooler, if you sit still,\" said Emma.\n\n\"As soon as I am cooler I shall go back again.  I could very\nill be spared--but such a point had been made of my coming!\nYou will all be going soon I suppose; the whole party breaking up.\nI met _one_ as I came--Madness in such weather!--absolute madness!\"\n\nEmma listened, and looked, and soon perceived that Frank Churchill's\nstate might be best defined by the expressive phrase of being\nout of humour.  Some people were always cross when they were hot.\nSuch might be his constitution; and as she knew that eating\nand drinking were often the cure of such incidental complaints,\nshe recommended his taking some refreshment; he would find abundance\nof every thing in the dining-room--and she humanely pointed out\nthe door.\n\n\"No--he should not eat.  He was not hungry; it would only make\nhim hotter.\"  In two minutes, however, he relented in his own favour;\nand muttering something about spruce-beer, walked off.  Emma returned\nall her attention to her father, saying in secret--\n\n\"I am glad I have done being in love with him.  I should not like a\nman who is so soon discomposed by a hot morning.  Harriet's sweet\neasy temper will not mind it.\"\n\nHe was gone long enough to have had a very comfortable meal, and came\nback all the better--grown quite cool--and, with good manners,\nlike himself--able to draw a chair close to them, take an interest\nin their employment; and regret, in a reasonable way, that he\nshould be so late.  He was not in his best spirits, but seemed\ntrying to improve them; and, at last, made himself talk nonsense\nvery agreeably.  They were looking over views in Swisserland.\n\n\"As soon as my aunt gets well, I shall go abroad,\" said he.\n\"I shall never be easy till I have seen some of these places.\nYou will have my sketches, some time or other, to look at--or my tour\nto read--or my poem.  I shall do something to expose myself.\"\n\n\"That may be--but not by sketches in Swisserland.  You will\nnever go to Swisserland.  Your uncle and aunt will never allow\nyou to leave England.\"\n\n\"They may be induced to go too.  A warm climate may be prescribed\nfor her.  I have more than half an expectation of our all going abroad.\nI assure you I have.  I feel a strong persuasion, this morning,\nthat I shall soon be abroad.  I ought to travel.  I am tired\nof doing nothing.  I want a change.  I am serious, Miss Woodhouse,\nwhatever your penetrating eyes may fancy--I am sick of England--\nand would leave it to-morrow, if I could.\"\n\n\"You are sick of prosperity and indulgence.  Cannot you invent\na few hardships for yourself, and be contented to stay?\"\n\n\"_I_ sick of prosperity and indulgence!  You are quite mistaken.\nI do not look upon myself as either prosperous or indulged.  I am\nthwarted in every thing material.  I do not consider myself at all\na fortunate person.\"\n\n\"You are not quite so miserable, though, as when you first came.\nGo and eat and drink a little more, and you will do very well.\nAnother slice of cold meat, another draught of Madeira and water,\nwill make you nearly on a par with the rest of us.\"\n\n\"No--I shall not stir.  I shall sit by you.  You are my best cure.\"\n\n\"We are going to Box Hill to-morrow;--you will join us.\nIt is not Swisserland, but it will be something for a young\nman so much in want of a change.  You will stay, and go with us?\"\n\n\"No, certainly not; I shall go home in the cool of the evening.\"\n\n\"But you may come again in the cool of to-morrow morning.\"\n\n\"No--It will not be worth while.  If I come, I shall be cross.\"\n\n\"Then pray stay at Richmond.\"\n\n\"But if I do, I shall be crosser still.  I can never bear to think\nof you all there without me.\"\n\n\"These are difficulties which you must settle for yourself.\nChuse your own degree of crossness.  I shall press you no more.\"\n\nThe rest of the party were now returning, and all were soon collected.\nWith some there was great joy at the sight of Frank Churchill;\nothers took it very composedly; but there was a very general distress\nand disturbance on Miss Fairfax's disappearance being explained.\nThat it was time for every body to go, concluded the subject; and with\na short final arrangement for the next day's scheme, they parted.\nFrank Churchill's little inclination to exclude himself increased\nso much, that his last words to Emma were,\n\n\"Well;--if _you_ wish me to stay and join the party, I will.\"\n\nShe smiled her acceptance; and nothing less than a summons from\nRichmond was to take him back before the following evening.\n\n\n\nCHAPTER VII\n\n\nThey had a very fine day for Box Hill; and all the other outward\ncircumstances of arrangement, accommodation, and punctuality,\nwere in favour of a pleasant party.  Mr. Weston directed the whole,\nofficiating safely between Hartfield and the Vicarage, and every\nbody was in good time.  Emma and Harriet went together; Miss Bates\nand her niece, with the Eltons; the gentlemen on horseback.\nMrs. Weston remained with Mr. Woodhouse.  Nothing was wanting\nbut to be happy when they got there.  Seven miles were travelled\nin expectation of enjoyment, and every body had a burst of admiration\non first arriving; but in the general amount of the day there\nwas deficiency.  There was a languor, a want of spirits, a want of union,\nwhich could not be got over.  They separated too much into parties.\nThe Eltons walked together; Mr. Knightley took charge of Miss\nBates and Jane; and Emma and Harriet belonged to Frank Churchill.\nAnd Mr. Weston tried, in vain, to make them harmonise better.  It seemed\nat first an accidental division, but it never materially varied.\nMr. and Mrs. Elton, indeed, shewed no unwillingness to mix,\nand be as agreeable as they could; but during the two whole hours\nthat were spent on the hill, there seemed a principle of separation,\nbetween the other parties, too strong for any fine prospects, or any\ncold collation, or any cheerful Mr. Weston, to remove.\n\nAt first it was downright dulness to Emma.  She had never seen Frank\nChurchill so silent and stupid.  He said nothing worth hearing--\nlooked without seeing--admired without intelligence--listened without\nknowing what she said.  While he was so dull, it was no wonder that\nHarriet should be dull likewise; and they were both insufferable.\n\nWhen they all sat down it was better; to her taste a great deal better,\nfor Frank Churchill grew talkative and gay, making her his first object.\nEvery distinguishing attention that could be paid, was paid to her.\nTo amuse her, and be agreeable in her eyes, seemed all that he\ncared for--and Emma, glad to be enlivened, not sorry to be flattered,\nwas gay and easy too, and gave him all the friendly encouragement,\nthe admission to be gallant, which she had ever given in the first\nand most animating period of their acquaintance; but which now,\nin her own estimation, meant nothing, though in the judgment of most\npeople looking on it must have had such an appearance as no English\nword but flirtation could very well describe.  \"Mr. Frank Churchill\nand Miss Woodhouse flirted together excessively.\"  They were laying\nthemselves open to that very phrase--and to having it sent off\nin a letter to Maple Grove by one lady, to Ireland by another.\nNot that Emma was gay and thoughtless from any real felicity;\nit was rather because she felt less happy than she had expected.\nShe laughed because she was disappointed; and though she liked him\nfor his attentions, and thought them all, whether in friendship,\nadmiration, or playfulness, extremely judicious, they were not winning\nback her heart.  She still intended him for her friend.\n\n\"How much I am obliged to you,\" said he, \"for telling me to come to-day!--\nIf it had not been for you, I should certainly have lost all the\nhappiness of this party.  I had quite determined to go away again.\"\n\n\"Yes, you were very cross; and I do not know what about,\nexcept that you were too late for the best strawberries.\nI was a kinder friend than you deserved.  But you were humble.\nYou begged hard to be commanded to come.\"\n\n\"Don't say I was cross.  I was fatigued.  The heat overcame me.\"\n\n\"It is hotter to-day.\"\n\n\"Not to my feelings.  I am perfectly comfortable to-day.\"\n\n\"You are comfortable because you are under command.\"\n\n\"Your command?--Yes.\"\n\n\"Perhaps I intended you to say so, but I meant self-command. You had,\nsomehow or other, broken bounds yesterday, and run away from your\nown management; but to-day you are got back again--and as I cannot\nbe always with you, it is best to believe your temper under your\nown command rather than mine.\"\n\n\"It comes to the same thing.  I can have no self-command without\na motive.  You order me, whether you speak or not.  And you can\nbe always with me.  You are always with me.\"\n\n\"Dating from three o'clock yesterday.  My perpetual influence\ncould not begin earlier, or you would not have been so much\nout of humour before.\"\n\n\"Three o'clock yesterday!  That is your date.  I thought I had seen\nyou first in February.\"\n\n\"Your gallantry is really unanswerable.  But (lowering her voice)--\nnobody speaks except ourselves, and it is rather too much to be\ntalking nonsense for the entertainment of seven silent people.\"\n\n\"I say nothing of which I am ashamed,\" replied he, with lively impudence.\n\"I saw you first in February.  Let every body on the Hill hear me if\nthey can.  Let my accents swell to Mickleham on one side, and Dorking\non the other.  I saw you first in February.\"  And then whispering--\n\"Our companions are excessively stupid.  What shall we do to rouse them?\nAny nonsense will serve.  They _shall_ talk.  Ladies and gentlemen,\nI am ordered by Miss Woodhouse (who, wherever she is, presides)\nto say, that she desires to know what you are all thinking of?\"\n\nSome laughed, and answered good-humouredly. Miss Bates said a great deal;\nMrs. Elton swelled at the idea of Miss Woodhouse's presiding;\nMr. Knightley's answer was the most distinct.\n\n\"Is Miss Woodhouse sure that she would like to hear what we are\nall thinking of?\"\n\n\"Oh! no, no\"--cried Emma, laughing as carelessly as she could--\n\"Upon no account in the world.  It is the very last thing I\nwould stand the brunt of just now.  Let me hear any thing rather\nthan what you are all thinking of.  I will not say quite all.\nThere are one or two, perhaps, (glancing at Mr. Weston and Harriet,)\nwhose thoughts I might not be afraid of knowing.\"\n\n\"It is a sort of thing,\" cried Mrs. Elton emphatically,\n\"which _I_ should not have thought myself privileged to\ninquire into.  Though, perhaps, as the _Chaperon_ of the party--\n_I_ never was in any circle--exploring parties--young ladies--married women--\"\n\nHer mutterings were chiefly to her husband; and he murmured,\nin reply,\n\n\"Very true, my love, very true.  Exactly so, indeed--quite unheard of--\nbut some ladies say any thing.  Better pass it off as a joke.\nEvery body knows what is due to _you_.\"\n\n\"It will not do,\" whispered Frank to Emma; \"they are most\nof them affronted.  I will attack them with more address.\nLadies and gentlemen--I am ordered by Miss Woodhouse to say, that she\nwaives her right of knowing exactly what you may all be thinking of,\nand only requires something very entertaining from each of you,\nin a general way.  Here are seven of you, besides myself, (who, she\nis pleased to say, am very entertaining already,) and she only\ndemands from each of you either one thing very clever, be it prose\nor verse, original or repeated--or two things moderately clever--\nor three things very dull indeed, and she engages to laugh heartily\nat them all.\"\n\n\"Oh! very well,\" exclaimed Miss Bates, \"then I need not be uneasy.\n`Three things very dull indeed.'  That will just do for me, you know.\nI shall be sure to say three dull things as soon as ever I open\nmy mouth, shan't I? (looking round with the most good-humoured\ndependence on every body's assent)--Do not you all think I shall?\"\n\nEmma could not resist.\n\n\"Ah! ma'am, but there may be a difficulty.  Pardon me--but you\nwill be limited as to number--only three at once.\"\n\nMiss Bates, deceived by the mock ceremony of her manner, did not\nimmediately catch her meaning; but, when it burst on her, it could\nnot anger, though a slight blush shewed that it could pain her.\n\n\"Ah!--well--to be sure.  Yes, I see what she means, (turning to\nMr. Knightley,) and I will try to hold my tongue.  I must make\nmyself very disagreeable, or she would not have said such a thing\nto an old friend.\"\n\n\"I like your plan,\" cried Mr. Weston.  \"Agreed, agreed.  I will do\nmy best.  I am making a conundrum.  How will a conundrum reckon?\"\n\n\"Low, I am afraid, sir, very low,\" answered his son;--\"but we shall\nbe indulgent--especially to any one who leads the way.\"\n\n\"No, no,\" said Emma, \"it will not reckon low.  A conundrum of\nMr. Weston's shall clear him and his next neighbour.  Come, sir,\npray let me hear it.\"\n\n\"I doubt its being very clever myself,\" said Mr. Weston.\n\"It is too much a matter of fact, but here it is.--What two letters\nof the alphabet are there, that express perfection?\"\n\n\"What two letters!--express perfection!  I am sure I do not know.\"\n\n\"Ah! you will never guess.  You, (to Emma), I am certain, will\nnever guess.--I will tell you.--M. and A.--Em-ma.--Do you understand?\"\n\nUnderstanding and gratification came together.  It might be a very\nindifferent piece of wit, but Emma found a great deal to laugh\nat and enjoy in it--and so did Frank and Harriet.--It did not seem\nto touch the rest of the party equally; some looked very stupid\nabout it, and Mr. Knightley gravely said,\n\n\"This explains the sort of clever thing that is wanted, and Mr. Weston\nhas done very well for himself; but he must have knocked up every\nbody else.  _Perfection_ should not have come quite so soon.\"\n\n\"Oh! for myself, I protest I must be excused,\" said Mrs. Elton;\n\"_I_ really cannot attempt--I am not at all fond of the sort of thing.\nI had an acrostic once sent to me upon my own name, which I was not\nat all pleased with.  I knew who it came from.  An abominable puppy!--\nYou know who I mean (nodding to her husband). These kind of things\nare very well at Christmas, when one is sitting round the fire;\nbut quite out of place, in my opinion, when one is exploring\nabout the country in summer.  Miss Woodhouse must excuse me.\nI am not one of those who have witty things at every body's service.\nI do not pretend to be a wit.  I have a great deal of vivacity\nin my own way, but I really must be allowed to judge when to speak\nand when to hold my tongue.  Pass us, if you please, Mr. Churchill.\nPass Mr. E., Knightley, Jane, and myself.  We have nothing clever to say--\nnot one of us.\n\n\"Yes, yes, pray pass _me_,\" added her husband, with a sort of\nsneering consciousness; \"_I_ have nothing to say that can entertain\nMiss Woodhouse, or any other young lady.  An old married man--\nquite good for nothing.  Shall we walk, Augusta?\"\n\n\"With all my heart.  I am really tired of exploring so long\non one spot.  Come, Jane, take my other arm.\"\n\nJane declined it, however, and the husband and wife walked off.\n\"Happy couple!\" said Frank Churchill, as soon as they were out\nof hearing:--\"How well they suit one another!--Very lucky--marrying as\nthey did, upon an acquaintance formed only in a public place!--They only\nknew each other, I think, a few weeks in Bath!  Peculiarly lucky!--\nfor as to any real knowledge of a person's disposition that Bath,\nor any public place, can give--it is all nothing; there can be\nno knowledge.  It is only by seeing women in their own homes,\namong their own set, just as they always are, that you can form\nany just judgment.  Short of that, it is all guess and luck--\nand will generally be ill-luck. How many a man has committed himself\non a short acquaintance, and rued it all the rest of his life!\"\n\nMiss Fairfax, who had seldom spoken before, except among her\nown confederates, spoke now.\n\n\"Such things do occur, undoubtedly.\"--She was stopped by a cough.\nFrank Churchill turned towards her to listen.\n\n\"You were speaking,\" said he, gravely.  She recovered her voice.\n\n\"I was only going to observe, that though such unfortunate circumstances\ndo sometimes occur both to men and women, I cannot imagine them\nto be very frequent.  A hasty and imprudent attachment may arise--\nbut there is generally time to recover from it afterwards.  I would\nbe understood to mean, that it can be only weak, irresolute characters,\n(whose happiness must be always at the mercy of chance,)\nwho will suffer an unfortunate acquaintance to be an inconvenience,\nan oppression for ever.\"\n\nHe made no answer; merely looked, and bowed in submission; and soon\nafterwards said, in a lively tone,\n\n\"Well, I have so little confidence in my own judgment, that whenever\nI marry, I hope some body will chuse my wife for me.  Will you?\n(turning to Emma.) Will you chuse a wife for me?--I am sure I\nshould like any body fixed on by you.  You provide for the family,\nyou know, (with a smile at his father). Find some body for me.\nI am in no hurry.  Adopt her, educate her.\"\n\n\"And make her like myself.\"\n\n\"By all means, if you can.\"\n\n\"Very well.  I undertake the commission.  You shall have a charming wife.\"\n\n\"She must be very lively, and have hazle eyes.  I care for nothing else.\nI shall go abroad for a couple of years--and when I return,\nI shall come to you for my wife.  Remember.\"\n\nEmma was in no danger of forgetting.  It was a commission to touch every\nfavourite feeling.  Would not Harriet be the very creature described?\nHazle eyes excepted, two years more might make her all that he wished.\nHe might even have Harriet in his thoughts at the moment;\nwho could say?  Referring the education to her seemed to imply it.\n\n\"Now, ma'am,\" said Jane to her aunt, \"shall we join Mrs. Elton?\"\n\n\"If you please, my dear.  With all my heart.  I am quite ready.\nI was ready to have gone with her, but this will do just as well.\nWe shall soon overtake her.  There she is--no, that's somebody else.\nThat's one of the ladies in the Irish car party, not at all like her.--\nWell, I declare--\"\n\nThey walked off, followed in half a minute by Mr. Knightley.\nMr. Weston, his son, Emma, and Harriet, only remained; and the young\nman's spirits now rose to a pitch almost unpleasant.  Even Emma grew\ntired at last of flattery and merriment, and wished herself rather\nwalking quietly about with any of the others, or sitting almost alone,\nand quite unattended to, in tranquil observation of the beautiful\nviews beneath her.  The appearance of the servants looking out\nfor them to give notice of the carriages was a joyful sight;\nand even the bustle of collecting and preparing to depart,\nand the solicitude of Mrs. Elton to have _her_ carriage first,\nwere gladly endured, in the prospect of the quiet drive home which was\nto close the very questionable enjoyments of this day of pleasure.\nSuch another scheme, composed of so many ill-assorted people,\nshe hoped never to be betrayed into again.\n\nWhile waiting for the carriage, she found Mr. Knightley by her side.\nHe looked around, as if to see that no one were near, and then said,\n\n\"Emma, I must once more speak to you as I have been used to do:\na privilege rather endured than allowed, perhaps, but I must still\nuse it.  I cannot see you acting wrong, without a remonstrance.\nHow could you be so unfeeling to Miss Bates?  How could you be so\ninsolent in your wit to a woman of her character, age, and situation?--\nEmma, I had not thought it possible.\"\n\nEmma recollected, blushed, was sorry, but tried to laugh it off.\n\n\"Nay, how could I help saying what I did?--Nobody could have helped it.\nIt was not so very bad.  I dare say she did not understand me.\"\n\n\"I assure you she did.  She felt your full meaning.  She has talked\nof it since.  I wish you could have heard how she talked of it--\nwith what candour and generosity.  I wish you could have heard her\nhonouring your forbearance, in being able to pay her such attentions,\nas she was for ever receiving from yourself and your father,\nwhen her society must be so irksome.\"\n\n\"Oh!\" cried Emma, \"I know there is not a better creature in the world:\nbut you must allow, that what is good and what is ridiculous are\nmost unfortunately blended in her.\"\n\n\"They are blended,\" said he, \"I acknowledge; and, were she prosperous,\nI could allow much for the occasional prevalence of the ridiculous\nover the good.  Were she a woman of fortune, I would leave every\nharmless absurdity to take its chance, I would not quarrel with you\nfor any liberties of manner.  Were she your equal in situation--\nbut, Emma, consider how far this is from being the case.  She is poor;\nshe has sunk from the comforts she was born to; and, if she live\nto old age, must probably sink more.  Her situation should secure\nyour compassion.  It was badly done, indeed!  You, whom she had known\nfrom an infant, whom she had seen grow up from a period when her\nnotice was an honour, to have you now, in thoughtless spirits,\nand the pride of the moment, laugh at her, humble her--and before\nher niece, too--and before others, many of whom (certainly _some_,)\nwould be entirely guided by _your_ treatment of her.--This is not\npleasant to you, Emma--and it is very far from pleasant to me;\nbut I must, I will,--I will tell you truths while I can;\nsatisfied with proving myself your friend by very faithful counsel,\nand trusting that you will some time or other do me greater justice\nthan you can do now.\"\n\nWhile they talked, they were advancing towards the carriage;\nit was ready; and, before she could speak again, he had handed her in.\nHe had misinterpreted the feelings which had kept her face averted,\nand her tongue motionless.  They were combined only of anger\nagainst herself, mortification, and deep concern.  She had not\nbeen able to speak; and, on entering the carriage, sunk back\nfor a moment overcome--then reproaching herself for having taken\nno leave, making no acknowledgment, parting in apparent sullenness,\nshe looked out with voice and hand eager to shew a difference;\nbut it was just too late.  He had turned away, and the horses were\nin motion.  She continued to look back, but in vain; and soon,\nwith what appeared unusual speed, they were half way down the hill,\nand every thing left far behind.  She was vexed beyond what could\nhave been expressed--almost beyond what she could conceal.\nNever had she felt so agitated, mortified, grieved, at any circumstance\nin her life.  She was most forcibly struck.  The truth of this\nrepresentation there was no denying.  She felt it at her heart.\nHow could she have been so brutal, so cruel to Miss Bates!  How could\nshe have exposed herself to such ill opinion in any one she valued!\nAnd how suffer him to leave her without saying one word of gratitude,\nof concurrence, of common kindness!\n\nTime did not compose her.  As she reflected more, she seemed\nbut to feel it more.  She never had been so depressed.  Happily it\nwas not necessary to speak.  There was only Harriet, who seemed not\nin spirits herself, fagged, and very willing to be silent; and Emma\nfelt the tears running down her cheeks almost all the way home,\nwithout being at any trouble to check them, extraordinary as they were.\n\n\n\nCHAPTER VIII\n\n\nThe wretchedness of a scheme to Box Hill was in Emma's thoughts all\nthe evening.  How it might be considered by the rest of the party,\nshe could not tell.  They, in their different homes, and their different\nways, might be looking back on it with pleasure; but in her view it\nwas a morning more completely misspent, more totally bare of rational\nsatisfaction at the time, and more to be abhorred in recollection,\nthan any she had ever passed.  A whole evening of back-gammon with\nher father, was felicity to it.  _There_, indeed, lay real pleasure,\nfor there she was giving up the sweetest hours of the twenty-four\nto his comfort; and feeling that, unmerited as might be the degree\nof his fond affection and confiding esteem, she could not, in her\ngeneral conduct, be open to any severe reproach.  As a daughter,\nshe hoped she was not without a heart.  She hoped no one could\nhave said to her, \"How could you be so unfeeling to your father?--\nI must, I will tell you truths while I can.\"  Miss Bates should\nnever again--no, never!  If attention, in future, could do away\nthe past, she might hope to be forgiven.  She had been often remiss,\nher conscience told her so; remiss, perhaps, more in thought\nthan fact; scornful, ungracious.  But it should be so no more.\nIn the warmth of true contrition, she would call upon her the\nvery next morning, and it should be the beginning, on her side,\nof a regular, equal, kindly intercourse.\n\nShe was just as determined when the morrow came, and went early,\nthat nothing might prevent her.  It was not unlikely, she thought,\nthat she might see Mr. Knightley in her way; or, perhaps, he might\ncome in while she were paying her visit.  She had no objection.\nShe would not be ashamed of the appearance of the penitence, so justly\nand truly hers.  Her eyes were towards Donwell as she walked, but she\nsaw him not.\n\n\"The ladies were all at home.\"  She had never rejoiced at the sound\nbefore, nor ever before entered the passage, nor walked up the stairs,\nwith any wish of giving pleasure, but in conferring obligation,\nor of deriving it, except in subsequent ridicule.\n\nThere was a bustle on her approach; a good deal of moving and talking.\nShe heard Miss Bates's voice, something was to be done in a hurry;\nthe maid looked frightened and awkward; hoped she would be pleased\nto wait a moment, and then ushered her in too soon.  The aunt and\nniece seemed both escaping into the adjoining room.  Jane she had\na distinct glimpse of, looking extremely ill; and, before the door\nhad shut them out, she heard Miss Bates saying, \"Well, my dear,\nI shall _say_ you are laid down upon the bed, and I am sure you are\nill enough.\"\n\nPoor old Mrs. Bates, civil and humble as usual, looked as if she\ndid not quite understand what was going on.\n\n\"I am afraid Jane is not very well,\" said she, \"but I do not know;\nthey _tell_ me she is well.  I dare say my daughter will be here presently,\nMiss Woodhouse.  I hope you find a chair.  I wish Hetty had not gone.\nI am very little able--Have you a chair, ma'am? Do you sit where\nyou like?  I am sure she will be here presently.\"\n\nEmma seriously hoped she would.  She had a moment's fear of Miss\nBates keeping away from her.  But Miss Bates soon came--\"Very happy\nand obliged\"--but Emma's conscience told her that there was not the\nsame cheerful volubility as before--less ease of look and manner.\nA very friendly inquiry after Miss Fairfax, she hoped, might lead\nthe way to a return of old feelings.  The touch seemed immediate.\n\n\"Ah!  Miss Woodhouse, how kind you are!--I suppose you have heard--\nand are come to give us joy.  This does not seem much like joy,\nindeed, in me--(twinkling away a tear or two)--but it will be\nvery trying for us to part with her, after having had her so long,\nand she has a dreadful headache just now, writing all the morning:--\nsuch long letters, you know, to be written to Colonel Campbell,\nand Mrs. Dixon.  `My dear,' said I, `you will blind yourself'--\nfor tears were in her eyes perpetually.  One cannot wonder,\none cannot wonder.  It is a great change; and though she is\namazingly fortunate--such a situation, I suppose, as no young woman\nbefore ever met with on first going out--do not think us ungrateful,\nMiss Woodhouse, for such surprising good fortune--(again dispersing\nher tears)--but, poor dear soul! if you were to see what a headache\nshe has.  When one is in great pain, you know one cannot feel\nany blessing quite as it may deserve.  She is as low as possible.\nTo look at her, nobody would think how delighted and happy she\nis to have secured such a situation.  You will excuse her not\ncoming to you--she is not able--she is gone into her own room--\nI want her to lie down upon the bed.  `My dear,' said I, `I shall\nsay you are laid down upon the bed:'  but, however, she is not;\nshe is walking about the room.  But, now that she has written\nher letters, she says she shall soon be well.  She will be extremely\nsorry to miss seeing you, Miss Woodhouse, but your kindness will\nexcuse her.  You were kept waiting at the door--I was quite ashamed--\nbut somehow there was a little bustle--for it so happened that we\nhad not heard the knock, and till you were on the stairs, we did\nnot know any body was coming.  `It is only Mrs. Cole,' said I,\n`depend upon it.  Nobody else would come so early.'  `Well,' said she,\n`it must be borne some time or other, and it may as well be now.'\nBut then Patty came in, and said it was you.  `Oh!' said I,\n`it is Miss Woodhouse:  I am sure you will like to see her.'--\n`I can see nobody,' said she; and up she got, and would go away;\nand that was what made us keep you waiting--and extremely sorry\nand ashamed we were.  `If you must go, my dear,' said I, `you must,\nand I will say you are laid down upon the bed.'\"\n\nEmma was most sincerely interested.  Her heart had been long growing\nkinder towards Jane; and this picture of her present sufferings acted\nas a cure of every former ungenerous suspicion, and left her nothing\nbut pity; and the remembrance of the less just and less gentle\nsensations of the past, obliged her to admit that Jane might very\nnaturally resolve on seeing Mrs. Cole or any other steady friend,\nwhen she might not bear to see herself.  She spoke as she felt,\nwith earnest regret and solicitude--sincerely wishing that the\ncircumstances which she collected from Miss Bates to be now actually\ndetermined on, might be as much for Miss Fairfax's advantage\nand comfort as possible.  \"It must be a severe trial to them all.\nShe had understood it was to be delayed till Colonel Campbell's return.\"\n\n\"So very kind!\" replied Miss Bates.  \"But you are always kind.\"\n\nThere was no bearing such an \"always;\" and to break through her\ndreadful gratitude, Emma made the direct inquiry of--\n\n\"Where--may I ask?--is Miss Fairfax going?\"\n\n\"To a Mrs. Smallridge--charming woman--most superior--to have\nthe charge of her three little girls--delightful children.\nImpossible that any situation could be more replete with comfort;\nif we except, perhaps, Mrs. Suckling's own family, and Mrs. Bragge's;\nbut Mrs. Smallridge is intimate with both, and in the very\nsame neighbourhood:--lives only four miles from Maple Grove.\nJane will be only four miles from Maple Grove.\"\n\n\"Mrs. Elton, I suppose, has been the person to whom Miss Fairfax owes--\"\n\n\"Yes, our good Mrs. Elton.  The most indefatigable, true friend.\nShe would not take a denial.  She would not let Jane say, `No;' for\nwhen Jane first heard of it, (it was the day before yesterday,\nthe very morning we were at Donwell,) when Jane first heard of it,\nshe was quite decided against accepting the offer, and for the\nreasons you mention; exactly as you say, she had made up her mind\nto close with nothing till Colonel Campbell's return, and nothing\nshould induce her to enter into any engagement at present--and so she\ntold Mrs. Elton over and over again--and I am sure I had no more\nidea that she would change her mind!--but that good Mrs. Elton,\nwhose judgment never fails her, saw farther than I did.  It is not\nevery body that would have stood out in such a kind way as she did,\nand refuse to take Jane's answer; but she positively declared she\nwould _not_ write any such denial yesterday, as Jane wished her;\nshe would wait--and, sure enough, yesterday evening it was all\nsettled that Jane should go.  Quite a surprize to me!  I had not\nthe least idea!--Jane took Mrs. Elton aside, and told her at once,\nthat upon thinking over the advantages of Mrs. Smallridge's situation,\nshe had come to the resolution of accepting it.--I did not know a word\nof it till it was all settled.\"\n\n\"You spent the evening with Mrs. Elton?\"\n\n\"Yes, all of us; Mrs. Elton would have us come.  It was settled so,\nupon the hill, while we were walking about with Mr. Knightley.\n`You _must_ _all_ spend your evening with us,' said she--`I positively must\nhave you _all_ come.'\"\n\n\"Mr. Knightley was there too, was he?\"\n\n\"No, not Mr. Knightley; he declined it from the first; and though I\nthought he would come, because Mrs. Elton declared she would not let\nhim off, he did not;--but my mother, and Jane, and I, were all there,\nand a very agreeable evening we had.  Such kind friends, you know,\nMiss Woodhouse, one must always find agreeable, though every body\nseemed rather fagged after the morning's party.  Even pleasure,\nyou know, is fatiguing--and I cannot say that any of them seemed\nvery much to have enjoyed it.  However, _I_ shall always think it\na very pleasant party, and feel extremely obliged to the kind friends\nwho included me in it.\"\n\n\"Miss Fairfax, I suppose, though you were not aware of it, had been\nmaking up her mind the whole day?\"\n\n\"I dare say she had.\"\n\n\"Whenever the time may come, it must be unwelcome to her and all\nher friends--but I hope her engagement will have every alleviation\nthat is possible--I mean, as to the character and manners of the family.\"\n\n\"Thank you, dear Miss Woodhouse.  Yes, indeed, there is every thing\nin the world that can make her happy in it.  Except the Sucklings\nand Bragges, there is not such another nursery establishment,\nso liberal and elegant, in all Mrs. Elton's acquaintance.\nMrs. Smallridge, a most delightful woman!--A style of living almost\nequal to Maple Grove--and as to the children, except the little\nSucklings and little Bragges, there are not such elegant sweet\nchildren anywhere.  Jane will be treated with such regard and kindness!--\nIt will be nothing but pleasure, a life of pleasure.--And her salary!--\nI really cannot venture to name her salary to you, Miss Woodhouse.\nEven you, used as you are to great sums, would hardly believe that\nso much could be given to a young person like Jane.\"\n\n\"Ah! madam,\" cried Emma, \"if other children are at all like what I\nremember to have been myself, I should think five times the amount\nof what I have ever yet heard named as a salary on such occasions,\ndearly earned.\"\n\n\"You are so noble in your ideas!\"\n\n\"And when is Miss Fairfax to leave you?\"\n\n\"Very soon, very soon, indeed; that's the worst of it.\nWithin a fortnight.  Mrs. Smallridge is in a great hurry.  My poor\nmother does not know how to bear it.  So then, I try to put it out of\nher thoughts, and say, Come ma'am, do not let us think about it any more.\"\n\n\"Her friends must all be sorry to lose her; and will not Colonel\nand Mrs. Campbell be sorry to find that she has engaged herself\nbefore their return?\"\n\n\"Yes; Jane says she is sure they will; but yet, this is such\na situation as she cannot feel herself justified in declining.\nI was so astonished when she first told me what she had been saying\nto Mrs. Elton, and when Mrs. Elton at the same moment came congratulating\nme upon it!  It was before tea--stay--no, it could not be before tea,\nbecause we were just going to cards--and yet it was before tea,\nbecause I remember thinking--Oh! no, now I recollect, now I have it;\nsomething happened before tea, but not that.  Mr. Elton was called\nout of the room before tea, old John Abdy's son wanted to speak\nwith him.  Poor old John, I have a great regard for him; he was clerk\nto my poor father twenty-seven years; and now, poor old man, he is\nbed-ridden, and very poorly with the rheumatic gout in his joints--\nI must go and see him to-day; and so will Jane, I am sure, if she\ngets out at all.  And poor John's son came to talk to Mr. Elton\nabout relief from the parish; he is very well to do himself,\nyou know, being head man at the Crown, ostler, and every thing\nof that sort, but still he cannot keep his father without some help;\nand so, when Mr. Elton came back, he told us what John ostler\nhad been telling him, and then it came out about the chaise having\nbeen sent to Randalls to take Mr. Frank Churchill to Richmond.\nThat was what happened before tea.  It was after tea that Jane spoke\nto Mrs. Elton.\"\n\nMiss Bates would hardly give Emma time to say how perfectly\nnew this circumstance was to her; but as without supposing it\npossible that she could be ignorant of any of the particulars\nof Mr. Frank Churchill's going, she proceeded to give them all,\nit was of no consequence.\n\nWhat Mr. Elton had learned from the ostler on the subject, being the\naccumulation of the ostler's own knowledge, and the knowledge\nof the servants at Randalls, was, that a messenger had come over\nfrom Richmond soon after the return of the party from Box Hill--\nwhich messenger, however, had been no more than was expected;\nand that Mr. Churchill had sent his nephew a few lines, containing,\nupon the whole, a tolerable account of Mrs. Churchill, and only\nwishing him not to delay coming back beyond the next morning early;\nbut that Mr. Frank Churchill having resolved to go home directly,\nwithout waiting at all, and his horse seeming to have got a cold,\nTom had been sent off immediately for the Crown chaise, and the\nostler had stood out and seen it pass by, the boy going a good pace,\nand driving very steady.\n\nThere was nothing in all this either to astonish or interest,\nand it caught Emma's attention only as it united with the subject\nwhich already engaged her mind.  The contrast between Mrs. Churchill's\nimportance in the world, and Jane Fairfax's, struck her; one was\nevery thing, the other nothing--and she sat musing on the difference\nof woman's destiny, and quite unconscious on what her eyes were fixed,\ntill roused by Miss Bates's saying,\n\n\"Aye, I see what you are thinking of, the pianoforte.  What is to become\nof that?--Very true.  Poor dear Jane was talking of it just now.--\n`You must go,' said she.  `You and I must part.  You will have no\nbusiness here.--Let it stay, however,' said she; `give it houseroom\ntill Colonel Campbell comes back.  I shall talk about it to him;\nhe will settle for me; he will help me out of all my difficulties.'--\nAnd to this day, I do believe, she knows not whether it was his\npresent or his daughter's.\"\n\nNow Emma was obliged to think of the pianoforte; and the remembrance\nof all her former fanciful and unfair conjectures was so little pleasing,\nthat she soon allowed herself to believe her visit had been\nlong enough; and, with a repetition of every thing that she could\nventure to say of the good wishes which she really felt, took leave.\n\n\n\nCHAPTER IX\n\n\nEmma's pensive meditations, as she walked home, were not interrupted;\nbut on entering the parlour, she found those who must rouse her.\nMr. Knightley and Harriet had arrived during her absence, and were\nsitting with her father.--Mr. Knightley immediately got up, and in a\nmanner decidedly graver than usual, said,\n\n\"I would not go away without seeing you, but I have no time to spare,\nand therefore must now be gone directly.  I am going to London,\nto spend a few days with John and Isabella.  Have you any thing to\nsend or say, besides the `love,' which nobody carries?\"\n\n\"Nothing at all.  But is not this a sudden scheme?\"\n\n\"Yes--rather--I have been thinking of it some little time.\"\n\nEmma was sure he had not forgiven her; he looked unlike himself.\nTime, however, she thought, would tell him that they ought to be\nfriends again.  While he stood, as if meaning to go, but not going--\nher father began his inquiries.\n\n\"Well, my dear, and did you get there safely?--And how did you\nfind my worthy old friend and her daughter?--I dare say they must\nhave been very much obliged to you for coming.  Dear Emma has been\nto call on Mrs. and Miss Bates, Mr. Knightley, as I told you before.\nShe is always so attentive to them!\"\n\nEmma's colour was heightened by this unjust praise; and with a smile,\nand shake of the head, which spoke much, she looked at Mr. Knightley.--\nIt seemed as if there were an instantaneous impression in her favour,\nas if his eyes received the truth from her's, and all that had\npassed of good in her feelings were at once caught and honoured.--\nHe looked at her with a glow of regard.  She was warmly gratified--\nand in another moment still more so, by a little movement of\nmore than common friendliness on his part.--He took her hand;--\nwhether she had not herself made the first motion, she could not say--\nshe might, perhaps, have rather offered it--but he took her hand,\npressed it, and certainly was on the point of carrying it to his lips--\nwhen, from some fancy or other, he suddenly let it go.--Why he should feel\nsuch a scruple, why he should change his mind when it was all but done,\nshe could not perceive.--He would have judged better, she thought,\nif he had not stopped.--The intention, however, was indubitable;\nand whether it was that his manners had in general so little gallantry,\nor however else it happened, but she thought nothing became him more.--\nIt was with him, of so simple, yet so dignified a nature.--\nShe could not but recall the attempt with great satisfaction.\nIt spoke such perfect amity.--He left them immediately afterwards--\ngone in a moment.  He always moved with the alertness of a mind which\ncould neither be undecided nor dilatory, but now he seemed more sudden\nthan usual in his disappearance.\n\nEmma could not regret her having gone to Miss Bates, but she wished\nshe had left her ten minutes earlier;--it would have been a great\npleasure to talk over Jane Fairfax's situation with Mr. Knightley.--\nNeither would she regret that he should be going to Brunswick Square,\nfor she knew how much his visit would be enjoyed--but it might have\nhappened at a better time--and to have had longer notice of it,\nwould have been pleasanter.--They parted thorough friends, however;\nshe could not be deceived as to the meaning of his countenance,\nand his unfinished gallantry;--it was all done to assure her that she\nhad fully recovered his good opinion.--He had been sitting with them\nhalf an hour, she found.  It was a pity that she had not come\nback earlier!\n\nIn the hope of diverting her father's thoughts from the disagreeableness\nof Mr. Knightley's going to London; and going so suddenly;\nand going on horseback, which she knew would be all very bad;\nEmma communicated her news of Jane Fairfax, and her dependence\non the effect was justified; it supplied a very useful check,--\ninterested, without disturbing him.  He had long made up his mind to Jane\nFairfax's going out as governess, and could talk of it cheerfully,\nbut Mr. Knightley's going to London had been an unexpected blow.\n\n\"I am very glad, indeed, my dear, to hear she is to be so\ncomfortably settled.  Mrs. Elton is very good-natured and agreeable,\nand I dare say her acquaintance are just what they ought\nto be.  I hope it is a dry situation, and that her health\nwill be taken good care of.  It ought to be a first object,\nas I am sure poor Miss Taylor's always was with me.  You know,\nmy dear, she is going to be to this new lady what Miss Taylor\nwas to us.  And I hope she will be better off in one respect,\nand not be induced to go away after it has been her home so long.\"\n\nThe following day brought news from Richmond to throw every\nthing else into the background.  An express arrived at Randalls\nto announce the death of Mrs. Churchill!  Though her nephew\nhad had no particular reason to hasten back on her account,\nshe had not lived above six-and-thirty hours after his return.\nA sudden seizure of a different nature from any thing foreboded\nby her general state, had carried her off after a short struggle.\nThe great Mrs. Churchill was no more.\n\nIt was felt as such things must be felt.  Every body had a\ndegree of gravity and sorrow; tenderness towards the departed,\nsolicitude for the surviving friends; and, in a reasonable time,\ncuriosity to know where she would be buried.  Goldsmith tells us,\nthat when lovely woman stoops to folly, she has nothing to do\nbut to die; and when she stoops to be disagreeable, it is equally\nto be recommended as a clearer of ill-fame. Mrs. Churchill,\nafter being disliked at least twenty-five years, was now spoken of\nwith compassionate allowances.  In one point she was fully justified.\nShe had never been admitted before to be seriously ill.  The event\nacquitted her of all the fancifulness, and all the selfishness\nof imaginary complaints.\n\n\"Poor Mrs. Churchill! no doubt she had been suffering a great deal:\nmore than any body had ever supposed--and continual pain would try\nthe temper.  It was a sad event--a great shock--with all her faults,\nwhat would Mr. Churchill do without her?  Mr. Churchill's loss\nwould be dreadful indeed.  Mr. Churchill would never get over it.\"--\nEven Mr. Weston shook his head, and looked solemn, and said,\n\"Ah! poor woman, who would have thought it!\" and resolved, that his\nmourning should be as handsome as possible; and his wife sat sighing\nand moralising over her broad hems with a commiseration and good sense,\ntrue and steady.  How it would affect Frank was among the earliest\nthoughts of both.  It was also a very early speculation with Emma.\nThe character of Mrs. Churchill, the grief of her husband--her mind\nglanced over them both with awe and compassion--and then rested\nwith lightened feelings on how Frank might be affected by the event,\nhow benefited, how freed.  She saw in a moment all the possible good.\nNow, an attachment to Harriet Smith would have nothing to encounter.\nMr. Churchill, independent of his wife, was feared by nobody;\nan easy, guidable man, to be persuaded into any thing by his nephew.\nAll that remained to be wished was, that the nephew should form\nthe attachment, as, with all her goodwill in the cause, Emma could feel\nno certainty of its being already formed.\n\nHarriet behaved extremely well on the occasion, with great self-command.\nWhat ever she might feel of brighter hope, she betrayed nothing.  Emma was\ngratified, to observe such a proof in her of strengthened character,\nand refrained from any allusion that might endanger its maintenance.\nThey spoke, therefore, of Mrs. Churchill's death with mutual forbearance.\n\nShort letters from Frank were received at Randalls, communicating\nall that was immediately important of their state and plans.\nMr. Churchill was better than could be expected; and their\nfirst removal, on the departure of the funeral for Yorkshire,\nwas to be to the house of a very old friend in Windsor, to whom\nMr. Churchill had been promising a visit the last ten years.\nAt present, there was nothing to be done for Harriet; good wishes\nfor the future were all that could yet be possible on Emma's side.\n\nIt was a more pressing concern to shew attention to Jane Fairfax,\nwhose prospects were closing, while Harriet's opened, and whose\nengagements now allowed of no delay in any one at Highbury, who wished\nto shew her kindness--and with Emma it was grown into a first wish.\nShe had scarcely a stronger regret than for her past coldness;\nand the person, whom she had been so many months neglecting, was now\nthe very one on whom she would have lavished every distinction of\nregard or sympathy.  She wanted to be of use to her; wanted to shew\na value for her society, and testify respect and consideration.\nShe resolved to prevail on her to spend a day at Hartfield.\nA note was written to urge it.  The invitation was refused, and by\na verbal message.  \"Miss Fairfax was not well enough to write;\"\nand when Mr. Perry called at Hartfield, the same morning,\nit appeared that she was so much indisposed as to have been visited,\nthough against her own consent, by himself, and that she was suffering\nunder severe headaches, and a nervous fever to a degree, which made\nhim doubt the possibility of her going to Mrs. Smallridge's at the\ntime proposed.  Her health seemed for the moment completely deranged--\nappetite quite gone--and though there were no absolutely\nalarming symptoms, nothing touching the pulmonary complaint,\nwhich was the standing apprehension of the family, Mr. Perry was\nuneasy about her.  He thought she had undertaken more than she\nwas equal to, and that she felt it so herself, though she would\nnot own it.  Her spirits seemed overcome.  Her present home,\nhe could not but observe, was unfavourable to a nervous disorder:--\nconfined always to one room;--he could have wished it otherwise--\nand her good aunt, though his very old friend, he must acknowledge\nto be not the best companion for an invalid of that description.\nHer care and attention could not be questioned; they were, in fact,\nonly too great.  He very much feared that Miss Fairfax derived more\nevil than good from them.  Emma listened with the warmest concern;\ngrieved for her more and more, and looked around eager to discover\nsome way of being useful.  To take her--be it only an hour\nor two--from her aunt, to give her change of air and scene,\nand quiet rational conversation, even for an hour or two,\nmight do her good; and the following morning she wrote again to say,\nin the most feeling language she could command, that she would\ncall for her in the carriage at any hour that Jane would name--\nmentioning that she had Mr. Perry's decided opinion, in favour\nof such exercise for his patient.  The answer was only in this\nshort note:\n\n\"Miss Fairfax's compliments and thanks, but is quite unequal\nto any exercise.\"\n\nEmma felt that her own note had deserved something better; but it\nwas impossible to quarrel with words, whose tremulous inequality\nshewed indisposition so plainly, and she thought only of how she\nmight best counteract this unwillingness to be seen or assisted.\nIn spite of the answer, therefore, she ordered the carriage, and drove\nto Mrs. Bates's, in the hope that Jane would be induced to join her--\nbut it would not do;--Miss Bates came to the carriage door, all gratitude,\nand agreeing with her most earnestly in thinking an airing might be of\nthe greatest service--and every thing that message could do was tried--\nbut all in vain.  Miss Bates was obliged to return without success;\nJane was quite unpersuadable; the mere proposal of going out\nseemed to make her worse.--Emma wished she could have seen her,\nand tried her own powers; but, almost before she could hint the wish,\nMiss Bates made it appear that she had promised her niece on\nno account to let Miss Woodhouse in.  \"Indeed, the truth was,\nthat poor dear Jane could not bear to see any body--any body at all--\nMrs. Elton, indeed, could not be denied--and Mrs. Cole had made\nsuch a point--and Mrs. Perry had said so much--but, except them,\nJane would really see nobody.\"\n\nEmma did not want to be classed with the Mrs. Eltons, the Mrs. Perrys,\nand the Mrs. Coles, who would force themselves anywhere;\nneither could she feel any right of preference herself--\nshe submitted, therefore, and only questioned Miss Bates farther\nas to her niece's appetite and diet, which she longed to be able\nto assist.  On that subject poor Miss Bates was very unhappy,\nand very communicative; Jane would hardly eat any thing:--\nMr. Perry recommended nourishing food; but every thing they could\ncommand (and never had any body such good neighbours) was distasteful.\n\nEmma, on reaching home, called the housekeeper directly, to an\nexamination of her stores; and some arrowroot of very superior quality\nwas speedily despatched to Miss Bates with a most friendly note.\nIn half an hour the arrowroot was returned, with a thousand thanks\nfrom Miss Bates, but \"dear Jane would not be satisfied without its\nbeing sent back; it was a thing she could not take--and, moreover,\nshe insisted on her saying, that she was not at all in want of any thing.\"\n\nWhen Emma afterwards heard that Jane Fairfax had been seen wandering\nabout the meadows, at some distance from Highbury, on the afternoon\nof the very day on which she had, under the plea of being unequal\nto any exercise, so peremptorily refused to go out with her in\nthe carriage, she could have no doubt--putting every thing together--\nthat Jane was resolved to receive no kindness from _her_.  She was sorry,\nvery sorry.  Her heart was grieved for a state which seemed\nbut the more pitiable from this sort of irritation of spirits,\ninconsistency of action, and inequality of powers; and it mortified\nher that she was given so little credit for proper feeling, or esteemed\nso little worthy as a friend:  but she had the consolation of knowing\nthat her intentions were good, and of being able to say to herself,\nthat could Mr. Knightley have been privy to all her attempts\nof assisting Jane Fairfax, could he even have seen into her heart,\nhe would not, on this occasion, have found any thing to reprove.\n\n\n\nCHAPTER X\n\n\nOne morning, about ten days after Mrs. Churchill's decease,\nEmma was called downstairs to Mr. Weston, who \"could not stay\nfive minutes, and wanted particularly to speak with her.\"--\nHe met her at the parlour-door, and hardly asking her how she did,\nin the natural key of his voice, sunk it immediately, to say,\nunheard by her father,\n\n\"Can you come to Randalls at any time this morning?--Do, if it\nbe possible.  Mrs. Weston wants to see you.  She must see you.\"\n\n\"Is she unwell?\"\n\n\"No, no, not at all--only a little agitated.  She would have\nordered the carriage, and come to you, but she must see you _alone_,\nand that you know--(nodding towards her father)--Humph!--Can you come?\"\n\n\"Certainly.  This moment, if you please.  It is impossible to\nrefuse what you ask in such a way.  But what can be the matter?--\nIs she really not ill?\"\n\n\"Depend upon me--but ask no more questions.  You will know it\nall in time.  The most unaccountable business!  But hush, hush!\"\n\nTo guess what all this meant, was impossible even for Emma.\nSomething really important seemed announced by his looks;\nbut, as her friend was well, she endeavoured not to be uneasy,\nand settling it with her father, that she would take her walk now,\nshe and Mr. Weston were soon out of the house together and on\ntheir way at a quick pace for Randalls.\n\n\"Now,\"--said Emma, when they were fairly beyond the sweep gates,--\n\"now Mr. Weston, do let me know what has happened.\"\n\n\"No, no,\"--he gravely replied.--\"Don't ask me.  I promised my wife\nto leave it all to her.  She will break it to you better than I can.\nDo not be impatient, Emma; it will all come out too soon.\"\n\n\"Break it to me,\" cried Emma, standing still with terror.--\n\"Good God!--Mr. Weston, tell me at once.--Something has happened\nin Brunswick Square.  I know it has.  Tell me, I charge you tell\nme this moment what it is.\"\n\n\"No, indeed you are mistaken.\"--\n\n\"Mr. Weston do not trifle with me.--Consider how many of my dearest\nfriends are now in Brunswick Square.  Which of them is it?--\nI charge you by all that is sacred, not to attempt concealment.\"\n\n\"Upon my word, Emma.\"--\n\n\"Your word!--why not your honour!--why not say upon your honour,\nthat it has nothing to do with any of them?  Good Heavens!--What can\nbe to be _broke_ to me, that does not relate to one of that family?\"\n\n\"Upon my honour,\" said he very seriously, \"it does not.  It is not\nin the smallest degree connected with any human being of the name\nof Knightley.\"\n\nEmma's courage returned, and she walked on.\n\n\"I was wrong,\" he continued, \"in talking of its being _broke_ to you.\nI should not have used the expression.  In fact, it does not concern you--\nit concerns only myself,--that is, we hope.--Humph!--In short,\nmy dear Emma, there is no occasion to be so uneasy about it.\nI don't say that it is not a disagreeable business--but things might\nbe much worse.--If we walk fast, we shall soon be at Randalls.\"\n\nEmma found that she must wait; and now it required little effort.\nShe asked no more questions therefore, merely employed her own fancy,\nand that soon pointed out to her the probability of its being some\nmoney concern--something just come to light, of a disagreeable\nnature in the circumstances of the family,--something which the late\nevent at Richmond had brought forward.  Her fancy was very active.\nHalf a dozen natural children, perhaps--and poor Frank cut off!--\nThis, though very undesirable, would be no matter of agony to her.\nIt inspired little more than an animating curiosity.\n\n\"Who is that gentleman on horseback?\" said she, as they proceeded--\nspeaking more to assist Mr. Weston in keeping his secret, than with\nany other view.\n\n\"I do not know.--One of the Otways.--Not Frank;--it is not Frank,\nI assure you.  You will not see him.  He is half way to Windsor\nby this time.\"\n\n\"Has your son been with you, then?\"\n\n\"Oh! yes--did not you know?--Well, well, never mind.\"\n\nFor a moment he was silent; and then added, in a tone much more\nguarded and demure,\n\n\"Yes, Frank came over this morning, just to ask us how we did.\"\n\nThey hurried on, and were speedily at Randalls.--\"Well, my dear,\"\nsaid he, as they entered the room--\"I have brought her, and now\nI hope you will soon be better.  I shall leave you together.\nThere is no use in delay.  I shall not be far off, if you want me.\"--\nAnd Emma distinctly heard him add, in a lower tone, before he\nquitted the room,--\"I have been as good as my word.  She has not the\nleast idea.\"\n\nMrs. Weston was looking so ill, and had an air of so much perturbation,\nthat Emma's uneasiness increased; and the moment they were alone,\nshe eagerly said,\n\n\"What is it my dear friend?  Something of a very unpleasant nature,\nI find, has occurred;--do let me know directly what it is.\nI have been walking all this way in complete suspense.  We both\nabhor suspense.  Do not let mine continue longer.  It will do you\ngood to speak of your distress, whatever it may be.\"\n\n\"Have you indeed no idea?\" said Mrs. Weston in a trembling voice.\n\"Cannot you, my dear Emma--cannot you form a guess as to what you\nare to hear?\"\n\n\"So far as that it relates to Mr. Frank Churchill, I do guess.\"\n\n\"You are right.  It does relate to him, and I will tell you directly;\"\n(resuming her work, and seeming resolved against looking up.)\n\"He has been here this very morning, on a most extraordinary errand.\nIt is impossible to express our surprize.  He came to speak to his\nfather on a subject,--to announce an attachment--\"\n\nShe stopped to breathe.  Emma thought first of herself, and then\nof Harriet.\n\n\"More than an attachment, indeed,\" resumed Mrs. Weston; \"an engagement--\na positive engagement.--What will you say, Emma--what will any\nbody say, when it is known that Frank Churchill and Miss Fairfax\nare engaged;--nay, that they have been long engaged!\"\n\nEmma even jumped with surprize;--and, horror-struck, exclaimed,\n\n\"Jane Fairfax!--Good God!  You are not serious?  You do not mean it?\"\n\n\"You may well be amazed,\" returned Mrs. Weston, still averting her eyes,\nand talking on with eagerness, that Emma might have time to recover--\n\"You may well be amazed.  But it is even so.  There has been a solemn\nengagement between them ever since October--formed at Weymouth,\nand kept a secret from every body.  Not a creature knowing it\nbut themselves--neither the Campbells, nor her family, nor his.--\nIt is so wonderful, that though perfectly convinced of the fact,\nit is yet almost incredible to myself.  I can hardly believe it.--\nI thought I knew him.\"\n\nEmma scarcely heard what was said.--Her mind was divided between\ntwo ideas--her own former conversations with him about Miss Fairfax;\nand poor Harriet;--and for some time she could only exclaim,\nand require confirmation, repeated confirmation.\n\n\"Well,\" said she at last, trying to recover herself; \"this is a\ncircumstance which I must think of at least half a day, before I\ncan at all comprehend it.  What!--engaged to her all the winter--\nbefore either of them came to Highbury?\"\n\n\"Engaged since October,--secretly engaged.--It has hurt me,\nEmma, very much.  It has hurt his father equally.  _Some_ _part_\nof his conduct we cannot excuse.\"\n\nEmma pondered a moment, and then replied, \"I will not pretend\n_not_ to understand you; and to give you all the relief in my power,\nbe assured that no such effect has followed his attentions to me,\nas you are apprehensive of.\"\n\nMrs. Weston looked up, afraid to believe; but Emma's countenance\nwas as steady as her words.\n\n\"That you may have less difficulty in believing this boast, of my\npresent perfect indifference,\" she continued, \"I will farther tell you,\nthat there was a period in the early part of our acquaintance,\nwhen I did like him, when I was very much disposed to be\nattached to him--nay, was attached--and how it came to cease,\nis perhaps the wonder.  Fortunately, however, it did cease.\nI have really for some time past, for at least these three months,\ncared nothing about him.  You may believe me, Mrs. Weston.\nThis is the simple truth.\"\n\nMrs. Weston kissed her with tears of joy; and when she could\nfind utterance, assured her, that this protestation had done\nher more good than any thing else in the world could do.\n\n\"Mr. Weston will be almost as much relieved as myself,\" said she.\n\"On this point we have been wretched.  It was our darling wish that you\nmight be attached to each other--and we were persuaded that it was so.--\nImagine what we have been feeling on your account.\"\n\n\"I have escaped; and that I should escape, may be a matter of\ngrateful wonder to you and myself.  But this does not acquit _him_,\nMrs. Weston; and I must say, that I think him greatly to blame.\nWhat right had he to come among us with affection and faith engaged,\nand with manners so _very_ disengaged?  What right had he to endeavour\nto please, as he certainly did--to distinguish any one young woman with\npersevering attention, as he certainly did--while he really belonged\nto another?--How could he tell what mischief he might be doing?--\nHow could he tell that he might not be making me in love with him?--\nvery wrong, very wrong indeed.\"\n\n\"From something that he said, my dear Emma, I rather imagine--\"\n\n\"And how could _she_ bear such behaviour!  Composure with a witness!\nto look on, while repeated attentions were offering to another woman,\nbefore her face, and not resent it.--That is a degree of placidity,\nwhich I can neither comprehend nor respect.\"\n\n\"There were misunderstandings between them, Emma; he said\nso expressly.  He had not time to enter into much explanation.\nHe was here only a quarter of an hour, and in a state of agitation\nwhich did not allow the full use even of the time he could stay--\nbut that there had been misunderstandings he decidedly said.\nThe present crisis, indeed, seemed to be brought on by them;\nand those misunderstandings might very possibly arise from the\nimpropriety of his conduct.\"\n\n\"Impropriety!  Oh!  Mrs. Weston--it is too calm a censure.\nMuch, much beyond impropriety!--It has sunk him, I cannot say how\nit has sunk him in my opinion.  So unlike what a man should be!--\nNone of that upright integrity, that strict adherence to truth\nand principle, that disdain of trick and littleness, which a man\nshould display in every transaction of his life.\"\n\n\"Nay, dear Emma, now I must take his part; for though he has been\nwrong in this instance, I have known him long enough to answer\nfor his having many, very many, good qualities; and--\"\n\n\"Good God!\" cried Emma, not attending to her.--\"Mrs. Smallridge, too!\nJane actually on the point of going as governess!  What could he\nmean by such horrible indelicacy?  To suffer her to engage herself--\nto suffer her even to think of such a measure!\"\n\n\"He knew nothing about it, Emma.  On this article I can fully\nacquit him.  It was a private resolution of hers, not communicated\nto him--or at least not communicated in a way to carry conviction.--\nTill yesterday, I know he said he was in the dark as to her plans.\nThey burst on him, I do not know how, but by some letter or message--\nand it was the discovery of what she was doing, of this very project\nof hers, which determined him to come forward at once, own it\nall to his uncle, throw himself on his kindness, and, in short,\nput an end to the miserable state of concealment that had been\ncarrying on so long.\"\n\nEmma began to listen better.\n\n\"I am to hear from him soon,\" continued Mrs. Weston.  \"He told me\nat parting, that he should soon write; and he spoke in a manner which\nseemed to promise me many particulars that could not be given now.\nLet us wait, therefore, for this letter.  It may bring many extenuations.\nIt may make many things intelligible and excusable which now are\nnot to be understood.  Don't let us be severe, don't let us be in\na hurry to condemn him.  Let us have patience.  I must love him;\nand now that I am satisfied on one point, the one material point,\nI am sincerely anxious for its all turning out well, and ready\nto hope that it may.  They must both have suffered a great deal\nunder such a system of secresy and concealment.\"\n\n\"_His_ sufferings,\" replied Emma dryly, \"do not appear to have done\nhim much harm.  Well, and how did Mr. Churchill take it?\"\n\n\"Most favourably for his nephew--gave his consent with scarcely\na difficulty.  Conceive what the events of a week have done\nin that family!  While poor Mrs. Churchill lived, I suppose there\ncould not have been a hope, a chance, a possibility;--but scarcely\nare her remains at rest in the family vault, than her husband is\npersuaded to act exactly opposite to what she would have required.\nWhat a blessing it is, when undue influence does not survive the grave!--\nHe gave his consent with very little persuasion.\"\n\n\"Ah!\" thought Emma, \"he would have done as much for Harriet.\"\n\n\"This was settled last night, and Frank was off with the light\nthis morning.  He stopped at Highbury, at the Bates's, I fancy,\nsome time--and then came on hither; but was in such a hurry to get\nback to his uncle, to whom he is just now more necessary than ever,\nthat, as I tell you, he could stay with us but a quarter of an hour.--\nHe was very much agitated--very much, indeed--to a degree that made\nhim appear quite a different creature from any thing I had ever seen\nhim before.--In addition to all the rest, there had been the shock of\nfinding her so very unwell, which he had had no previous suspicion of--\nand there was every appearance of his having been feeling a great deal.\"\n\n\"And do you really believe the affair to have been carrying on\nwith such perfect secresy?--The Campbells, the Dixons, did none\nof them know of the engagement?\"\n\nEmma could not speak the name of Dixon without a little blush.\n\n\"None; not one.  He positively said that it had been known to no\nbeing in the world but their two selves.\"\n\n\"Well,\" said Emma, \"I suppose we shall gradually grow reconciled\nto the idea, and I wish them very happy.  But I shall always\nthink it a very abominable sort of proceeding.  What has it been\nbut a system of hypocrisy and deceit,--espionage, and treachery?--\nTo come among us with professions of openness and simplicity;\nand such a league in secret to judge us all!--Here have we been,\nthe whole winter and spring, completely duped, fancying ourselves\nall on an equal footing of truth and honour, with two people in the\nmidst of us who may have been carrying round, comparing and sitting\nin judgment on sentiments and words that were never meant for both\nto hear.--They must take the consequence, if they have heard each\nother spoken of in a way not perfectly agreeable!\"\n\n\"I am quite easy on that head,\" replied Mrs. Weston.  \"I am\nvery sure that I never said any thing of either to the other,\nwhich both might not have heard.\"\n\n\"You are in luck.--Your only blunder was confined to my ear,\nwhen you imagined a certain friend of ours in love with the lady.\"\n\n\"True.  But as I have always had a thoroughly good opinion of Miss\nFairfax, I never could, under any blunder, have spoken ill of her;\nand as to speaking ill of him, there I must have been safe.\"\n\nAt this moment Mr. Weston appeared at a little distance from the window,\nevidently on the watch.  His wife gave him a look which invited\nhim in; and, while he was coming round, added, \"Now, dearest Emma,\nlet me intreat you to say and look every thing that may set his\nheart at ease, and incline him to be satisfied with the match.\nLet us make the best of it--and, indeed, almost every thing may\nbe fairly said in her favour.  It is not a connexion to gratify;\nbut if Mr. Churchill does not feel that, why should we? and it\nmay be a very fortunate circumstance for him, for Frank, I mean,\nthat he should have attached himself to a girl of such steadiness\nof character and good judgment as I have always given her credit for--\nand still am disposed to give her credit for, in spite of this\none great deviation from the strict rule of right.  And how much\nmay be said in her situation for even that error!\"\n\n\"Much, indeed!\" cried Emma feelingly.  \"If a woman can ever\nbe excused for thinking only of herself, it is in a situation\nlike Jane Fairfax's.--Of such, one may almost say, that `the\nworld is not their's, nor the world's law.'\"\n\nShe met Mr. Weston on his entrance, with a smiling countenance,\nexclaiming,\n\n\"A very pretty trick you have been playing me, upon my word!\nThis was a device, I suppose, to sport with my curiosity,\nand exercise my talent of guessing.  But you really frightened me.\nI thought you had lost half your property, at least.  And here,\ninstead of its being a matter of condolence, it turns out to be one\nof congratulation.--I congratulate you, Mr. Weston, with all my heart,\non the prospect of having one of the most lovely and accomplished\nyoung women in England for your daughter.\"\n\nA glance or two between him and his wife, convinced him that all was\nas right as this speech proclaimed; and its happy effect on his spirits\nwas immediate.  His air and voice recovered their usual briskness:\nhe shook her heartily and gratefully by the hand, and entered\non the subject in a manner to prove, that he now only wanted\ntime and persuasion to think the engagement no very bad thing.\nHis companions suggested only what could palliate imprudence,\nor smooth objections; and by the time they had talked it all\nover together, and he had talked it all over again with Emma,\nin their walk back to Hartfield, he was become perfectly reconciled,\nand not far from thinking it the very best thing that Frank could\npossibly have done.\n\n\n\nCHAPTER XI\n\n\n\"Harriet, poor Harriet!\"--Those were the words; in them lay the\ntormenting ideas which Emma could not get rid of, and which constituted\nthe real misery of the business to her.  Frank Churchill had behaved\nvery ill by herself--very ill in many ways,--but it was not so much\n_his_ behaviour as her _own_, which made her so angry with him.\nIt was the scrape which he had drawn her into on Harriet's account,\nthat gave the deepest hue to his offence.--Poor Harriet! to be a second\ntime the dupe of her misconceptions and flattery.  Mr. Knightley\nhad spoken prophetically, when he once said, \"Emma, you have been\nno friend to Harriet Smith.\"--She was afraid she had done her nothing\nbut disservice.--It was true that she had not to charge herself,\nin this instance as in the former, with being the sole and original\nauthor of the mischief; with having suggested such feelings as might\notherwise never have entered Harriet's imagination; for Harriet\nhad acknowledged her admiration and preference of Frank Churchill\nbefore she had ever given her a hint on the subject; but she felt\ncompletely guilty of having encouraged what she might have repressed.\nShe might have prevented the indulgence and increase of such sentiments.\nHer influence would have been enough.  And now she was very conscious\nthat she ought to have prevented them.--She felt that she had been\nrisking her friend's happiness on most insufficient grounds.\nCommon sense would have directed her to tell Harriet, that she\nmust not allow herself to think of him, and that there were five\nhundred chances to one against his ever caring for her.--\"But, with\ncommon sense,\" she added, \"I am afraid I have had little to do.\"\n\nShe was extremely angry with herself.  If she could not have been\nangry with Frank Churchill too, it would have been dreadful.--\nAs for Jane Fairfax, she might at least relieve her feelings\nfrom any present solicitude on her account.  Harriet would\nbe anxiety enough; she need no longer be unhappy about Jane,\nwhose troubles and whose ill-health having, of course, the same origin,\nmust be equally under cure.--Her days of insignificance and evil\nwere over.--She would soon be well, and happy, and prosperous.--\nEmma could now imagine why her own attentions had been slighted.\nThis discovery laid many smaller matters open.  No doubt it had been\nfrom jealousy.--In Jane's eyes she had been a rival; and well might\nany thing she could offer of assistance or regard be repulsed.\nAn airing in the Hartfield carriage would have been the rack,\nand arrowroot from the Hartfield storeroom must have been poison.\nShe understood it all; and as far as her mind could disengage itself\nfrom the injustice and selfishness of angry feelings, she acknowledged\nthat Jane Fairfax would have neither elevation nor happiness beyond\nher desert.  But poor Harriet was such an engrossing charge!\nThere was little sympathy to be spared for any body else.\nEmma was sadly fearful that this second disappointment would be\nmore severe than the first.  Considering the very superior claims\nof the object, it ought; and judging by its apparently stronger effect\non Harriet's mind, producing reserve and self-command, it would.--\nShe must communicate the painful truth, however, and as soon\nas possible.  An injunction of secresy had been among Mr. Weston's\nparting words.  \"For the present, the whole affair was to be\ncompletely a secret.  Mr. Churchill had made a point of it,\nas a token of respect to the wife he had so very recently lost;\nand every body admitted it to be no more than due decorum.\"--\nEmma had promised; but still Harriet must be excepted.  It was her\nsuperior duty.\n\nIn spite of her vexation, she could not help feeling it almost ridiculous,\nthat she should have the very same distressing and delicate office to\nperform by Harriet, which Mrs. Weston had just gone through by herself.\nThe intelligence, which had been so anxiously announced to her,\nshe was now to be anxiously announcing to another.  Her heart beat\nquick on hearing Harriet's footstep and voice; so, she supposed,\nhad poor Mrs. Weston felt when _she_ was approaching Randalls.\nCould the event of the disclosure bear an equal resemblance!--\nBut of that, unfortunately, there could be no chance.\n\n\"Well, Miss Woodhouse!\" cried Harriet, coming eagerly into the room--\n\"is not this the oddest news that ever was?\"\n\n\"What news do you mean?\" replied Emma, unable to guess, by look\nor voice, whether Harriet could indeed have received any hint.\n\n\"About Jane Fairfax.  Did you ever hear any thing so strange?\nOh!--you need not be afraid of owning it to me, for Mr. Weston has\ntold me himself.  I met him just now.  He told me it was to be\na great secret; and, therefore, I should not think of mentioning\nit to any body but you, but he said you knew it.\"\n\n\"What did Mr. Weston tell you?\"--said Emma, still perplexed.\n\n\"Oh! he told me all about it; that Jane Fairfax and Mr. Frank\nChurchill are to be married, and that they have been privately\nengaged to one another this long while.  How very odd!\"\n\nIt was, indeed, so odd; Harriet's behaviour was so extremely odd,\nthat Emma did not know how to understand it.  Her character appeared\nabsolutely changed.  She seemed to propose shewing no agitation,\nor disappointment, or peculiar concern in the discovery.  Emma looked\nat her, quite unable to speak.\n\n\"Had you any idea,\" cried Harriet, \"of his being in love\nwith her?--You, perhaps, might.--You (blushing as she spoke)\nwho can see into every body's heart; but nobody else--\"\n\n\"Upon my word,\" said Emma, \"I begin to doubt my having any such talent.\nCan you seriously ask me, Harriet, whether I imagined him attached\nto another woman at the very time that I was--tacitly, if not openly--\nencouraging you to give way to your own feelings?--I never had\nthe slightest suspicion, till within the last hour, of Mr. Frank\nChurchill's having the least regard for Jane Fairfax.  You may be\nvery sure that if I had, I should have cautioned you accordingly.\"\n\n\"Me!\" cried Harriet, colouring, and astonished.  \"Why should you\ncaution me?--You do not think I care about Mr. Frank Churchill.\"\n\n\"I am delighted to hear you speak so stoutly on the subject,\"\nreplied Emma, smiling; \"but you do not mean to deny that there\nwas a time--and not very distant either--when you gave me reason\nto understand that you did care about him?\"\n\n\"Him!--never, never.  Dear Miss Woodhouse, how could you so mistake me?\"\nturning away distressed.\n\n\"Harriet!\" cried Emma, after a moment's pause--\"What do you mean?--\nGood Heaven! what do you mean?--Mistake you!--Am I to suppose then?--\"\n\nShe could not speak another word.--Her voice was lost; and she\nsat down, waiting in great terror till Harriet should answer.\n\nHarriet, who was standing at some distance, and with face turned\nfrom her, did not immediately say any thing; and when she did speak,\nit was in a voice nearly as agitated as Emma's.\n\n\"I should not have thought it possible,\" she began, \"that you\ncould have misunderstood me!  I know we agreed never to name him--\nbut considering how infinitely superior he is to every body else,\nI should not have thought it possible that I could be supposed\nto mean any other person.  Mr. Frank Churchill, indeed!  I do not\nknow who would ever look at him in the company of the other.\nI hope I have a better taste than to think of Mr. Frank Churchill,\nwho is like nobody by his side.  And that you should have been\nso mistaken, is amazing!--I am sure, but for believing that you\nentirely approved and meant to encourage me in my attachment,\nI should have considered it at first too great a presumption almost,\nto dare to think of him.  At first, if you had not told me\nthat more wonderful things had happened; that there had been\nmatches of greater disparity (those were your very words);--\nI should not have dared to give way to--I should not have thought\nit possible--But if _you_, who had been always acquainted with him--\"\n\n\"Harriet!\" cried Emma, collecting herself resolutely--\"Let us\nunderstand each other now, without the possibility of farther mistake.\nAre you speaking of--Mr. Knightley?\"\n\n\"To be sure I am.  I never could have an idea of any body else--\nand so I thought you knew.  When we talked about him, it was as clear\nas possible.\"\n\n\"Not quite,\" returned Emma, with forced calmness, \"for all that\nyou then said, appeared to me to relate to a different person.\nI could almost assert that you had _named_ Mr. Frank Churchill.\nI am sure the service Mr. Frank Churchill had rendered you,\nin protecting you from the gipsies, was spoken of.\"\n\n\"Oh!  Miss Woodhouse, how you do forget!\"\n\n\"My dear Harriet, I perfectly remember the substance of what I\nsaid on the occasion.  I told you that I did not wonder at\nyour attachment; that considering the service he had rendered you,\nit was extremely natural:--and you agreed to it, expressing yourself\nvery warmly as to your sense of that service, and mentioning\neven what your sensations had been in seeing him come forward\nto your rescue.--The impression of it is strong on my memory.\"\n\n\"Oh, dear,\" cried Harriet, \"now I recollect what you mean; but I\nwas thinking of something very different at the time.  It was not\nthe gipsies--it was not Mr. Frank Churchill that I meant.  No! (with\nsome elevation) I was thinking of a much more precious circumstance--\nof Mr. Knightley's coming and asking me to dance, when Mr. Elton\nwould not stand up with me; and when there was no other partner in\nthe room.  That was the kind action; that was the noble benevolence\nand generosity; that was the service which made me begin to feel\nhow superior he was to every other being upon earth.\"\n\n\"Good God!\" cried Emma, \"this has been a most unfortunate--\nmost deplorable mistake!--What is to be done?\"\n\n\"You would not have encouraged me, then, if you had understood me?\nAt least, however, I cannot be worse off than I should have been,\nif the other had been the person; and now--it _is_ possible--\"\n\nShe paused a few moments.  Emma could not speak.\n\n\"I do not wonder, Miss Woodhouse,\" she resumed, \"that you should feel\na great difference between the two, as to me or as to any body.\nYou must think one five hundred million times more above me than\nthe other.  But I hope, Miss Woodhouse, that supposing--that if--\nstrange as it may appear--.  But you know they were your own words,\nthat _more_ wonderful things had happened, matches of _greater_ disparity\nhad taken place than between Mr. Frank Churchill and me; and, therefore,\nit seems as if such a thing even as this, may have occurred before--\nand if I should be so fortunate, beyond expression, as to--\nif Mr. Knightley should really--if _he_ does not mind the disparity,\nI hope, dear Miss Woodhouse, you will not set yourself against it,\nand try to put difficulties in the way.  But you are too good for that,\nI am sure.\"\n\nHarriet was standing at one of the windows.  Emma turned round\nto look at her in consternation, and hastily said,\n\n\"Have you any idea of Mr. Knightley's returning your affection?\"\n\n\"Yes,\" replied Harriet modestly, but not fearfully--\"I must say\nthat I have.\"\n\nEmma's eyes were instantly withdrawn; and she sat silently meditating,\nin a fixed attitude, for a few minutes.  A few minutes were sufficient\nfor making her acquainted with her own heart.  A mind like hers,\nonce opening to suspicion, made rapid progress.  She touched--\nshe admitted--she acknowledged the whole truth.  Why was it\nso much worse that Harriet should be in love with Mr. Knightley,\nthan with Frank Churchill?  Why was the evil so dreadfully increased\nby Harriet's having some hope of a return?  It darted through her,\nwith the speed of an arrow, that Mr. Knightley must marry no one\nbut herself!\n\nHer own conduct, as well as her own heart, was before her in the\nsame few minutes.  She saw it all with a clearness which had\nnever blessed her before.  How improperly had she been acting\nby Harriet!  How inconsiderate, how indelicate, how irrational,\nhow unfeeling had been her conduct!  What blindness, what madness,\nhad led her on!  It struck her with dreadful force, and she\nwas ready to give it every bad name in the world.  Some portion\nof respect for herself, however, in spite of all these demerits--\nsome concern for her own appearance, and a strong sense of justice\nby Harriet--(there would be no need of _compassion_ to the girl\nwho believed herself loved by Mr. Knightley--but justice required\nthat she should not be made unhappy by any coldness now,)\ngave Emma the resolution to sit and endure farther with calmness,\nwith even apparent kindness.--For her own advantage indeed, it was fit\nthat the utmost extent of Harriet's hopes should be enquired into;\nand Harriet had done nothing to forfeit the regard and interest\nwhich had been so voluntarily formed and maintained--or to deserve\nto be slighted by the person, whose counsels had never led her right.--\nRousing from reflection, therefore, and subduing her emotion,\nshe turned to Harriet again, and, in a more inviting accent, renewed\nthe conversation; for as to the subject which had first introduced it,\nthe wonderful story of Jane Fairfax, that was quite sunk and lost.--\nNeither of them thought but of Mr. Knightley and themselves.\n\nHarriet, who had been standing in no unhappy reverie, was yet very glad\nto be called from it, by the now encouraging manner of such a judge,\nand such a friend as Miss Woodhouse, and only wanted invitation,\nto give the history of her hopes with great, though trembling\ndelight.--Emma's tremblings as she asked, and as she listened,\nwere better concealed than Harriet's, but they were not less.\nHer voice was not unsteady; but her mind was in all the perturbation\nthat such a development of self, such a burst of threatening evil,\nsuch a confusion of sudden and perplexing emotions, must create.--\nShe listened with much inward suffering, but with great outward\npatience, to Harriet's detail.--Methodical, or well arranged,\nor very well delivered, it could not be expected to be;\nbut it contained, when separated from all the feebleness and\ntautology of the narration, a substance to sink her spirit--\nespecially with the corroborating circumstances, which her own memory\nbrought in favour of Mr. Knightley's most improved opinion of Harriet.\n\nHarriet had been conscious of a difference in his behaviour ever since\nthose two decisive dances.--Emma knew that he had, on that occasion,\nfound her much superior to his expectation.  From that evening,\nor at least from the time of Miss Woodhouse's encouraging her\nto think of him, Harriet had begun to be sensible of his talking\nto her much more than he had been used to do, and of his having\nindeed quite a different manner towards her; a manner of kindness\nand sweetness!--Latterly she had been more and more aware of it.\nWhen they had been all walking together, he had so often come and walked\nby her, and talked so very delightfully!--He seemed to want to be\nacquainted with her.  Emma knew it to have been very much the case.\nShe had often observed the change, to almost the same extent.--\nHarriet repeated expressions of approbation and praise from him--\nand Emma felt them to be in the closest agreement with what she had\nknown of his opinion of Harriet.  He praised her for being without\nart or affectation, for having simple, honest, generous, feelings.--\nShe knew that he saw such recommendations in Harriet; he had dwelt\non them to her more than once.--Much that lived in Harriet's memory,\nmany little particulars of the notice she had received from him, a look,\na speech, a removal from one chair to another, a compliment implied,\na preference inferred, had been unnoticed, because unsuspected,\nby Emma.  Circumstances that might swell to half an hour's relation,\nand contained multiplied proofs to her who had seen them, had passed\nundiscerned by her who now heard them; but the two latest occurrences\nto be mentioned, the two of strongest promise to Harriet, were not\nwithout some degree of witness from Emma herself.--The first,\nwas his walking with her apart from the others, in the lime-walk\nat Donwell, where they had been walking some time before Emma came,\nand he had taken pains (as she was convinced) to draw her from\nthe rest to himself--and at first, he had talked to her in a more\nparticular way than he had ever done before, in a very particular\nway indeed!--(Harriet could not recall it without a blush.) He seemed\nto be almost asking her, whether her affections were engaged.--\nBut as soon as she (Miss Woodhouse) appeared likely to join them,\nhe changed the subject, and began talking about farming:--\nThe second, was his having sat talking with her nearly half an hour\nbefore Emma came back from her visit, the very last morning of his\nbeing at Hartfield--though, when he first came in, he had said\nthat he could not stay five minutes--and his having told her,\nduring their conversation, that though he must go to London,\nit was very much against his inclination that he left home at all,\nwhich was much more (as Emma felt) than he had acknowledged to _her_.\nThe superior degree of confidence towards Harriet, which this one\narticle marked, gave her severe pain.\n\nOn the subject of the first of the two circumstances, she did,\nafter a little reflection, venture the following question.\n\"Might he not?--Is not it possible, that when enquiring, as you thought,\ninto the state of your affections, he might be alluding to Mr. Martin--\nhe might have Mr. Martin's interest in view?  But Harriet rejected\nthe suspicion with spirit.\n\n\"Mr. Martin!  No indeed!--There was not a hint of Mr. Martin.\nI hope I know better now, than to care for Mr. Martin, or to be\nsuspected of it.\"\n\nWhen Harriet had closed her evidence, she appealed to her dear\nMiss Woodhouse, to say whether she had not good ground for hope.\n\n\"I never should have presumed to think of it at first,\" said she,\n\"but for you.  You told me to observe him carefully, and let\nhis behaviour be the rule of mine--and so I have.  But now I seem\nto feel that I may deserve him; and that if he does chuse me,\nit will not be any thing so very wonderful.\"\n\nThe bitter feelings occasioned by this speech, the many bitter\nfeelings, made the utmost exertion necessary on Emma's side,\nto enable her to say on reply,\n\n\"Harriet, I will only venture to declare, that Mr. Knightley is\nthe last man in the world, who would intentionally give any woman\nthe idea of his feeling for her more than he really does.\"\n\nHarriet seemed ready to worship her friend for a sentence so satisfactory;\nand Emma was only saved from raptures and fondness, which at\nthat moment would have been dreadful penance, by the sound of her\nfather's footsteps.  He was coming through the hall.  Harriet was\ntoo much agitated to encounter him.  \"She could not compose herself--\nMr. Woodhouse would be alarmed--she had better go;\"--with most ready\nencouragement from her friend, therefore, she passed off through\nanother door--and the moment she was gone, this was the spontaneous\nburst of Emma's feelings:  \"Oh God! that I had never seen her!\"\n\nThe rest of the day, the following night, were hardly enough\nfor her thoughts.--She was bewildered amidst the confusion\nof all that had rushed on her within the last few hours.\nEvery moment had brought a fresh surprize; and every surprize\nmust be matter of humiliation to her.--How to understand it all!\nHow to understand the deceptions she had been thus practising\non herself, and living under!--The blunders, the blindness of her\nown head and heart!--she sat still, she walked about, she tried her\nown room, she tried the shrubbery--in every place, every posture,\nshe perceived that she had acted most weakly; that she had been imposed\non by others in a most mortifying degree; that she had been imposing\non herself in a degree yet more mortifying; that she was wretched,\nand should probably find this day but the beginning of wretchedness.\n\nTo understand, thoroughly understand her own heart, was the\nfirst endeavour.  To that point went every leisure moment which her\nfather's claims on her allowed, and every moment of involuntary\nabsence of mind.\n\nHow long had Mr. Knightley been so dear to her, as every feeling\ndeclared him now to be?  When had his influence, such influence begun?--\nWhen had he succeeded to that place in her affection, which Frank\nChurchill had once, for a short period, occupied?--She looked back;\nshe compared the two--compared them, as they had always stood in\nher estimation, from the time of the latter's becoming known to her--\nand as they must at any time have been compared by her, had it--\noh! had it, by any blessed felicity, occurred to her, to institute\nthe comparison.--She saw that there never had been a time when she\ndid not consider Mr. Knightley as infinitely the superior, or when\nhis regard for her had not been infinitely the most dear.  She saw,\nthat in persuading herself, in fancying, in acting to the contrary,\nshe had been entirely under a delusion, totally ignorant of her\nown heart--and, in short, that she had never really cared for Frank\nChurchill at all!\n\nThis was the conclusion of the first series of reflection.\nThis was the knowledge of herself, on the first question of inquiry,\nwhich she reached; and without being long in reaching it.--\nShe was most sorrowfully indignant; ashamed of every sensation\nbut the one revealed to her--her affection for Mr. Knightley.--\nEvery other part of her mind was disgusting.\n\nWith insufferable vanity had she believed herself in the secret of every\nbody's feelings; with unpardonable arrogance proposed to arrange every\nbody's destiny.  She was proved to have been universally mistaken;\nand she had not quite done nothing--for she had done mischief.\nShe had brought evil on Harriet, on herself, and she too much feared,\non Mr. Knightley.--Were this most unequal of all connexions to\ntake place, on her must rest all the reproach of having given it\na beginning; for his attachment, she must believe to be produced only\nby a consciousness of Harriet's;--and even were this not the case,\nhe would never have known Harriet at all but for her folly.\n\nMr. Knightley and Harriet Smith!--It was a union to distance every\nwonder of the kind.--The attachment of Frank Churchill and Jane\nFairfax became commonplace, threadbare, stale in the comparison,\nexciting no surprize, presenting no disparity, affording nothing\nto be said or thought.--Mr. Knightley and Harriet Smith!--Such an\nelevation on her side!  Such a debasement on his!  It was horrible\nto Emma to think how it must sink him in the general opinion,\nto foresee the smiles, the sneers, the merriment it would prompt at\nhis expense; the mortification and disdain of his brother, the thousand\ninconveniences to himself.--Could it be?--No; it was impossible.\nAnd yet it was far, very far, from impossible.--Was it a new\ncircumstance for a man of first-rate abilities to be captivated by\nvery inferior powers?  Was it new for one, perhaps too busy to seek,\nto be the prize of a girl who would seek him?--Was it new for any\nthing in this world to be unequal, inconsistent, incongruous--or for\nchance and circumstance (as second causes) to direct the human fate?\n\nOh! had she never brought Harriet forward!  Had she left her where\nshe ought, and where he had told her she ought!--Had she not,\nwith a folly which no tongue could express, prevented her marrying\nthe unexceptionable young man who would have made her happy\nand respectable in the line of life to which she ought to belong--\nall would have been safe; none of this dreadful sequel would have been.\n\nHow Harriet could ever have had the presumption to raise\nher thoughts to Mr. Knightley!--How she could dare to fancy\nherself the chosen of such a man till actually assured of it!--\nBut Harriet was less humble, had fewer scruples than formerly.--\nHer inferiority, whether of mind or situation, seemed little felt.--\nShe had seemed more sensible of Mr. Elton's being to stoop\nin marrying her, than she now seemed of Mr. Knightley's.--\nAlas! was not that her own doing too?  Who had been at pains to give\nHarriet notions of self-consequence but herself?--Who but herself\nhad taught her, that she was to elevate herself if possible,\nand that her claims were great to a high worldly establishment?--\nIf Harriet, from being humble, were grown vain, it was her doing too.\n\n\n\nCHAPTER XII\n\n\nTill now that she was threatened with its loss, Emma had never known\nhow much of her happiness depended on being _first_ with Mr. Knightley,\nfirst in interest and affection.--Satisfied that it was so,\nand feeling it her due, she had enjoyed it without reflection;\nand only in the dread of being supplanted, found how inexpressibly\nimportant it had been.--Long, very long, she felt she had been first;\nfor, having no female connexions of his own, there had been\nonly Isabella whose claims could be compared with hers, and she\nhad always known exactly how far he loved and esteemed Isabella.\nShe had herself been first with him for many years past.\nShe had not deserved it; she had often been negligent or perverse,\nslighting his advice, or even wilfully opposing him, insensible of\nhalf his merits, and quarrelling with him because he would not\nacknowledge her false and insolent estimate of her own--but still,\nfrom family attachment and habit, and thorough excellence of mind,\nhe had loved her, and watched over her from a girl, with an endeavour\nto improve her, and an anxiety for her doing right, which no\nother creature had at all shared.  In spite of all her faults,\nshe knew she was dear to him; might she not say, very dear?--\nWhen the suggestions of hope, however, which must follow here,\npresented themselves, she could not presume to indulge them.\nHarriet Smith might think herself not unworthy of being peculiarly,\nexclusively, passionately loved by Mr. Knightley.  _She_ could not.\nShe could not flatter herself with any idea of blindness in his attachment\nto _her_.  She had received a very recent proof of its impartiality.--\nHow shocked had he been by her behaviour to Miss Bates!  How directly,\nhow strongly had he expressed himself to her on the subject!--Not too\nstrongly for the offence--but far, far too strongly to issue from\nany feeling softer than upright justice and clear-sighted goodwill.--\nShe had no hope, nothing to deserve the name of hope, that he could\nhave that sort of affection for herself which was now in question;\nbut there was a hope (at times a slight one, at times much stronger,)\nthat Harriet might have deceived herself, and be overrating his\nregard for _her_.--Wish it she must, for his sake--be the consequence\nnothing to herself, but his remaining single all his life.\nCould she be secure of that, indeed, of his never marrying at all,\nshe believed she should be perfectly satisfied.--Let him but continue\nthe same Mr. Knightley to her and her father, the same Mr. Knightley\nto all the world; let Donwell and Hartfield lose none of their\nprecious intercourse of friendship and confidence, and her peace\nwould be fully secured.--Marriage, in fact, would not do for her.\nIt would be incompatible with what she owed to her father, and with\nwhat she felt for him.  Nothing should separate her from her father.\nShe would not marry, even if she were asked by Mr. Knightley.\n\nIt must be her ardent wish that Harriet might be disappointed;\nand she hoped, that when able to see them together again, she might at\nleast be able to ascertain what the chances for it were.--She should\nsee them henceforward with the closest observance; and wretchedly\nas she had hitherto misunderstood even those she was watching,\nshe did not know how to admit that she could be blinded here.--\nHe was expected back every day.  The power of observation would be\nsoon given--frightfully soon it appeared when her thoughts were in\none course.  In the meanwhile, she resolved against seeing Harriet.--\nIt would do neither of them good, it would do the subject no good,\nto be talking of it farther.--She was resolved not to be convinced,\nas long as she could doubt, and yet had no authority for opposing\nHarriet's confidence.  To talk would be only to irritate.--She wrote\nto her, therefore, kindly, but decisively, to beg that she would not,\nat present, come to Hartfield; acknowledging it to be her conviction,\nthat all farther confidential discussion of _one_ topic had better\nbe avoided; and hoping, that if a few days were allowed to pass before\nthey met again, except in the company of others--she objected only\nto a tete-a-tete--they might be able to act as if they had forgotten\nthe conversation of yesterday.--Harriet submitted, and approved,\nand was grateful.\n\nThis point was just arranged, when a visitor arrived to tear Emma's\nthoughts a little from the one subject which had engrossed them,\nsleeping or waking, the last twenty-four hours--Mrs. Weston, who had\nbeen calling on her daughter-in-law elect, and took Hartfield in her\nway home, almost as much in duty to Emma as in pleasure to herself,\nto relate all the particulars of so interesting an interview.\n\nMr. Weston had accompanied her to Mrs. Bates's, and gone through his\nshare of this essential attention most handsomely; but she having\nthen induced Miss Fairfax to join her in an airing, was now returned\nwith much more to say, and much more to say with satisfaction,\nthan a quarter of an hour spent in Mrs. Bates's parlour, with all\nthe encumbrance of awkward feelings, could have afforded.\n\nA little curiosity Emma had; and she made the most of it while\nher friend related.  Mrs. Weston had set off to pay the visit\nin a good deal of agitation herself; and in the first place had\nwished not to go at all at present, to be allowed merely to write\nto Miss Fairfax instead, and to defer this ceremonious call till\na little time had passed, and Mr. Churchill could be reconciled\nto the engagement's becoming known; as, considering every thing,\nshe thought such a visit could not be paid without leading to reports:--\nbut Mr. Weston had thought differently; he was extremely anxious\nto shew his approbation to Miss Fairfax and her family, and did not\nconceive that any suspicion could be excited by it; or if it were,\nthat it would be of any consequence; for \"such things,\" he observed,\n\"always got about.\"  Emma smiled, and felt that Mr. Weston had\nvery good reason for saying so.  They had gone, in short--and very\ngreat had been the evident distress and confusion of the lady.\nShe had hardly been able to speak a word, and every look and action\nhad shewn how deeply she was suffering from consciousness.  The quiet,\nheart-felt satisfaction of the old lady, and the rapturous delight\nof her daughter--who proved even too joyous to talk as usual,\nhad been a gratifying, yet almost an affecting, scene.  They were\nboth so truly respectable in their happiness, so disinterested\nin every sensation; thought so much of Jane; so much of every body,\nand so little of themselves, that every kindly feeling was at work\nfor them.  Miss Fairfax's recent illness had offered a fair plea\nfor Mrs. Weston to invite her to an airing; she had drawn back and\ndeclined at first, but, on being pressed had yielded; and, in the\ncourse of their drive, Mrs. Weston had, by gentle encouragement,\novercome so much of her embarrassment, as to bring her to converse\non the important subject.  Apologies for her seemingly ungracious\nsilence in their first reception, and the warmest expressions of the\ngratitude she was always feeling towards herself and Mr. Weston,\nmust necessarily open the cause; but when these effusions were put by,\nthey had talked a good deal of the present and of the future state\nof the engagement.  Mrs. Weston was convinced that such conversation\nmust be the greatest relief to her companion, pent up within her own\nmind as every thing had so long been, and was very much pleased\nwith all that she had said on the subject.\n\n\"On the misery of what she had suffered, during the concealment\nof so many months,\" continued Mrs. Weston, \"she was energetic.\nThis was one of her expressions.  `I will not say, that since I\nentered into the engagement I have not had some happy moments; but I\ncan say, that I have never known the blessing of one tranquil hour:'--\nand the quivering lip, Emma, which uttered it, was an attestation\nthat I felt at my heart.\"\n\n\"Poor girl!\" said Emma.  \"She thinks herself wrong, then, for having\nconsented to a private engagement?\"\n\n\"Wrong!  No one, I believe, can blame her more than she is disposed\nto blame herself.  `The consequence,' said she, `has been a state\nof perpetual suffering to me; and so it ought.  But after all the\npunishment that misconduct can bring, it is still not less misconduct.\nPain is no expiation.  I never can be blameless.  I have been acting\ncontrary to all my sense of right; and the fortunate turn that every\nthing has taken, and the kindness I am now receiving, is what my\nconscience tells me ought not to be.'  `Do not imagine, madam,'\nshe continued, `that I was taught wrong.  Do not let any reflection\nfall on the principles or the care of the friends who brought\nme up.  The error has been all my own; and I do assure you that,\nwith all the excuse that present circumstances may appear to give,\nI shall yet dread making the story known to Colonel Campbell.'\"\n\n\"Poor girl!\" said Emma again.  \"She loves him then excessively,\nI suppose.  It must have been from attachment only, that she could\nbe led to form the engagement.  Her affection must have overpowered\nher judgment.\"\n\n\"Yes, I have no doubt of her being extremely attached to him.\"\n\n\"I am afraid,\" returned Emma, sighing, \"that I must often have\ncontributed to make her unhappy.\"\n\n\"On your side, my love, it was very innocently done.  But she\nprobably had something of that in her thoughts, when alluding\nto the misunderstandings which he had given us hints of before.\nOne natural consequence of the evil she had involved herself in,\"\nshe said, \"was that of making her _unreasonable_.  The consciousness\nof having done amiss, had exposed her to a thousand inquietudes,\nand made her captious and irritable to a degree that must have been--\nthat had been--hard for him to bear.  `I did not make the allowances,'\nsaid she, `which I ought to have done, for his temper and spirits--\nhis delightful spirits, and that gaiety, that playfulness\nof disposition, which, under any other circumstances, would, I am sure,\nhave been as constantly bewitching to me, as they were at first.'\nShe then began to speak of you, and of the great kindness you\nhad shewn her during her illness; and with a blush which shewed me\nhow it was all connected, desired me, whenever I had an opportunity,\nto thank you--I could not thank you too much--for every wish and\nevery endeavour to do her good.  She was sensible that you had never\nreceived any proper acknowledgment from herself.\"\n\n\"If I did not know her to be happy now,\" said Emma, seriously,\n\"which, in spite of every little drawback from her scrupulous\nconscience, she must be, I could not bear these thanks;--for, oh!\nMrs. Weston, if there were an account drawn up of the evil\nand the good I have done Miss Fairfax!--Well (checking herself,\nand trying to be more lively), this is all to be forgotten.\nYou are very kind to bring me these interesting particulars.\nThey shew her to the greatest advantage.  I am sure she is very good--\nI hope she will be very happy.  It is fit that the fortune\nshould be on his side, for I think the merit will be all on hers.\"\n\nSuch a conclusion could not pass unanswered by Mrs. Weston.\nShe thought well of Frank in almost every respect; and, what was more,\nshe loved him very much, and her defence was, therefore, earnest.\nShe talked with a great deal of reason, and at least equal affection--\nbut she had too much to urge for Emma's attention; it was soon gone\nto Brunswick Square or to Donwell; she forgot to attempt to listen;\nand when Mrs. Weston ended with, \"We have not yet had the letter\nwe are so anxious for, you know, but I hope it will soon come,\"\nshe was obliged to pause before she answered, and at last obliged\nto answer at random, before she could at all recollect what letter it\nwas which they were so anxious for.\n\n\"Are you well, my Emma?\" was Mrs. Weston's parting question.\n\n\"Oh! perfectly.  I am always well, you know.  Be sure to give me\nintelligence of the letter as soon as possible.\"\n\nMrs. Weston's communications furnished Emma with more food for\nunpleasant reflection, by increasing her esteem and compassion,\nand her sense of past injustice towards Miss Fairfax.  She bitterly\nregretted not having sought a closer acquaintance with her, and blushed\nfor the envious feelings which had certainly been, in some measure,\nthe cause.  Had she followed Mr. Knightley's known wishes, in paying\nthat attention to Miss Fairfax, which was every way her due; had she\ntried to know her better; had she done her part towards intimacy;\nhad she endeavoured to find a friend there instead of in Harriet Smith;\nshe must, in all probability, have been spared from every pain\nwhich pressed on her now.--Birth, abilities, and education,\nhad been equally marking one as an associate for her, to be received\nwith gratitude; and the other--what was she?--Supposing even that\nthey had never become intimate friends; that she had never been\nadmitted into Miss Fairfax's confidence on this important matter--\nwhich was most probable--still, in knowing her as she ought,\nand as she might, she must have been preserved from the abominable\nsuspicions of an improper attachment to Mr. Dixon, which she had\nnot only so foolishly fashioned and harboured herself, but had so\nunpardonably imparted; an idea which she greatly feared had been made\na subject of material distress to the delicacy of Jane's feelings,\nby the levity or carelessness of Frank Churchill's.  Of all the sources\nof evil surrounding the former, since her coming to Highbury,\nshe was persuaded that she must herself have been the worst.\nShe must have been a perpetual enemy.  They never could have been\nall three together, without her having stabbed Jane Fairfax's peace\nin a thousand instances; and on Box Hill, perhaps, it had been\nthe agony of a mind that would bear no more.\n\nThe evening of this day was very long, and melancholy, at Hartfield.\nThe weather added what it could of gloom.  A cold stormy rain set in,\nand nothing of July appeared but in the trees and shrubs, which the\nwind was despoiling, and the length of the day, which only made\nsuch cruel sights the longer visible.\n\nThe weather affected Mr. Woodhouse, and he could only be kept tolerably\ncomfortable by almost ceaseless attention on his daughter's side,\nand by exertions which had never cost her half so much before.\nIt reminded her of their first forlorn tete-a-tete, on the evening\nof Mrs. Weston's wedding-day; but Mr. Knightley had walked\nin then, soon after tea, and dissipated every melancholy fancy.\nAlas! such delightful proofs of Hartfield's attraction, as those\nsort of visits conveyed, might shortly be over.  The picture which\nshe had then drawn of the privations of the approaching winter,\nhad proved erroneous; no friends had deserted them, no pleasures\nhad been lost.--But her present forebodings she feared would\nexperience no similar contradiction.  The prospect before her now,\nwas threatening to a degree that could not be entirely dispelled--\nthat might not be even partially brightened.  If all took place\nthat might take place among the circle of her friends, Hartfield must\nbe comparatively deserted; and she left to cheer her father with the\nspirits only of ruined happiness.\n\nThe child to be born at Randalls must be a tie there even dearer\nthan herself; and Mrs. Weston's heart and time would be occupied\nby it.  They should lose her; and, probably, in great measure,\nher husband also.--Frank Churchill would return among them no more;\nand Miss Fairfax, it was reasonable to suppose, would soon cease\nto belong to Highbury.  They would be married, and settled either\nat or near Enscombe.  All that were good would be withdrawn; and if\nto these losses, the loss of Donwell were to be added, what would\nremain of cheerful or of rational society within their reach?\nMr. Knightley to be no longer coming there for his evening comfort!--\nNo longer walking in at all hours, as if ever willing to change\nhis own home for their's!--How was it to be endured?  And if he were\nto be lost to them for Harriet's sake; if he were to be thought\nof hereafter, as finding in Harriet's society all that he wanted;\nif Harriet were to be the chosen, the first, the dearest, the friend,\nthe wife to whom he looked for all the best blessings of existence;\nwhat could be increasing Emma's wretchedness but the reflection never far\ndistant from her mind, that it had been all her own work?\n\nWhen it came to such a pitch as this, she was not able to refrain\nfrom a start, or a heavy sigh, or even from walking about the room\nfor a few seconds--and the only source whence any thing like consolation\nor composure could be drawn, was in the resolution of her own\nbetter conduct, and the hope that, however inferior in spirit and\ngaiety might be the following and every future winter of her life\nto the past, it would yet find her more rational, more acquainted\nwith herself, and leave her less to regret when it were gone.\n\n\n\nCHAPTER XIII\n\n\nThe weather continued much the same all the following morning;\nand the same loneliness, and the same melancholy, seemed to\nreign at Hartfield--but in the afternoon it cleared; the wind\nchanged into a softer quarter; the clouds were carried off;\nthe sun appeared; it was summer again.  With all the eagerness\nwhich such a transition gives, Emma resolved to be out of doors\nas soon as possible.  Never had the exquisite sight, smell,\nsensation of nature, tranquil, warm, and brilliant after a storm,\nbeen more attractive to her.  She longed for the serenity they might\ngradually introduce; and on Mr. Perry's coming in soon after dinner,\nwith a disengaged hour to give her father, she lost no time ill\nhurrying into the shrubbery.--There, with spirits freshened,\nand thoughts a little relieved, she had taken a few turns, when she\nsaw Mr. Knightley passing through the garden door, and coming\ntowards her.--It was the first intimation of his being returned\nfrom London.  She had been thinking of him the moment before,\nas unquestionably sixteen miles distant.--There was time only for\nthe quickest arrangement of mind.  She must be collected and calm.\nIn half a minute they were together.  The \"How d'ye do's\" were quiet\nand constrained on each side.  She asked after their mutual friends;\nthey were all well.--When had he left them?--Only that morning.\nHe must have had a wet ride.--Yes.--He meant to walk with her,\nshe found.  \"He had just looked into the dining-room, and as he\nwas not wanted there, preferred being out of doors.\"--She thought\nhe neither looked nor spoke cheerfully; and the first possible\ncause for it, suggested by her fears, was, that he had perhaps been\ncommunicating his plans to his brother, and was pained by the manner\nin which they had been received.\n\nThey walked together.  He was silent.  She thought he was often\nlooking at her, and trying for a fuller view of her face than it\nsuited her to give.  And this belief produced another dread.\nPerhaps he wanted to speak to her, of his attachment to Harriet;\nhe might be watching for encouragement to begin.--She did not,\ncould not, feel equal to lead the way to any such subject.\nHe must do it all himself.  Yet she could not bear this silence.\nWith him it was most unnatural.  She considered--resolved--and, trying\nto smile, began--\n\n\"You have some news to hear, now you are come back, that will rather\nsurprize you.\"\n\n\"Have I?\" said he quietly, and looking at her; \"of what nature?\"\n\n\"Oh! the best nature in the world--a wedding.\"\n\nAfter waiting a moment, as if to be sure she intended to say no more,\nhe replied,\n\n\"If you mean Miss Fairfax and Frank Churchill, I have heard\nthat already.\"\n\n\"How is it possible?\" cried Emma, turning her glowing cheeks\ntowards him; for, while she spoke, it occurred to her that he\nmight have called at Mrs. Goddard's in his way.\n\n\"I had a few lines on parish business from Mr. Weston this morning,\nand at the end of them he gave me a brief account of what had happened.\"\n\nEmma was quite relieved, and could presently say, with a little\nmore composure,\n\n\"_You_ probably have been less surprized than any of us, for you have\nhad your suspicions.--I have not forgotten that you once tried to give\nme a caution.--I wish I had attended to it--but--(with a sinking\nvoice and a heavy sigh) I seem to have been doomed to blindness.\"\n\nFor a moment or two nothing was said, and she was unsuspicious\nof having excited any particular interest, till she found her arm\ndrawn within his, and pressed against his heart, and heard him\nthus saying, in a tone of great sensibility, speaking low,\n\n\"Time, my dearest Emma, time will heal the wound.--Your own\nexcellent sense--your exertions for your father's sake--I know\nyou will not allow yourself--.\"  Her arm was pressed again,\nas he added, in a more broken and subdued accent, \"The feelings\nof the warmest friendship--Indignation--Abominable scoundrel!\"--\nAnd in a louder, steadier tone, he concluded with, \"He will soon\nbe gone.  They will soon be in Yorkshire.  I am sorry for _her_.\nShe deserves a better fate.\"\n\nEmma understood him; and as soon as she could recover from the\nflutter of pleasure, excited by such tender consideration, replied,\n\n\"You are very kind--but you are mistaken--and I must set you right.--\nI am not in want of that sort of compassion.  My blindness to what\nwas going on, led me to act by them in a way that I must always\nbe ashamed of, and I was very foolishly tempted to say and do many\nthings which may well lay me open to unpleasant conjectures, but I\nhave no other reason to regret that I was not in the secret earlier.\"\n\n\"Emma!\" cried he, looking eagerly at her, \"are you, indeed?\"--\nbut checking himself--\"No, no, I understand you--forgive me--I am\npleased that you can say even so much.--He is no object of regret,\nindeed! and it will not be very long, I hope, before that becomes\nthe acknowledgment of more than your reason.--Fortunate that your\naffections were not farther entangled!--I could never, I confess,\nfrom your manners, assure myself as to the degree of what you felt--\nI could only be certain that there was a preference--and a preference\nwhich I never believed him to deserve.--He is a disgrace to the name\nof man.--And is he to be rewarded with that sweet young woman?--\nJane, Jane, you will be a miserable creature.\"\n\n\"Mr. Knightley,\" said Emma, trying to be lively, but really confused--\n\"I am in a very extraordinary situation.  I cannot let you continue in\nyour error; and yet, perhaps, since my manners gave such an impression,\nI have as much reason to be ashamed of confessing that I never have\nbeen at all attached to the person we are speaking of, as it might\nbe natural for a woman to feel in confessing exactly the reverse.--\nBut I never have.\"\n\nHe listened in perfect silence.  She wished him to speak, but he\nwould not.  She supposed she must say more before she were entitled\nto his clemency; but it was a hard case to be obliged still to lower\nherself in his opinion.  She went on, however.\n\n\"I have very little to say for my own conduct.--I was tempted\nby his attentions, and allowed myself to appear pleased.--\nAn old story, probably--a common case--and no more than has happened\nto hundreds of my sex before; and yet it may not be the more excusable\nin one who sets up as I do for Understanding.  Many circumstances\nassisted the temptation.  He was the son of Mr. Weston--he was\ncontinually here--I always found him very pleasant--and, in short,\nfor (with a sigh) let me swell out the causes ever so ingeniously,\nthey all centre in this at last--my vanity was flattered, and I\nallowed his attentions.  Latterly, however--for some time, indeed--\nI have had no idea of their meaning any thing.--I thought them\na habit, a trick, nothing that called for seriousness on my side.\nHe has imposed on me, but he has not injured me.  I have never been\nattached to him.  And now I can tolerably comprehend his behaviour.\nHe never wished to attach me.  It was merely a blind to conceal\nhis real situation with another.--It was his object to blind\nall about him; and no one, I am sure, could be more effectually\nblinded than myself--except that I was _not_ blinded--that it was my\ngood fortune--that, in short, I was somehow or other safe from him.\"\n\nShe had hoped for an answer here--for a few words to say that her\nconduct was at least intelligible; but he was silent; and, as far\nas she could judge, deep in thought.  At last, and tolerably\nin his usual tone, he said,\n\n\"I have never had a high opinion of Frank Churchill.--I can suppose,\nhowever, that I may have underrated him.  My acquaintance with\nhim has been but trifling.--And even if I have not underrated\nhim hitherto, he may yet turn out well.--With such a woman he has\na chance.--I have no motive for wishing him ill--and for her sake,\nwhose happiness will be involved in his good character and conduct,\nI shall certainly wish him well.\"\n\n\"I have no doubt of their being happy together,\" said Emma;\n\"I believe them to be very mutually and very sincerely attached.\"\n\n\"He is a most fortunate man!\" returned Mr. Knightley, with energy.\n\"So early in life--at three-and-twenty--a period when, if a man\nchuses a wife, he generally chuses ill.  At three-and-twenty\nto have drawn such a prize!  What years of felicity that man,\nin all human calculation, has before him!--Assured of the love of\nsuch a woman--the disinterested love, for Jane Fairfax's character\nvouches for her disinterestedness; every thing in his favour,--\nequality of situation--I mean, as far as regards society, and all the\nhabits and manners that are important; equality in every point but one--\nand that one, since the purity of her heart is not to be doubted,\nsuch as must increase his felicity, for it will be his to bestow the\nonly advantages she wants.--A man would always wish to give a woman\na better home than the one he takes her from; and he who can do it,\nwhere there is no doubt of _her_ regard, must, I think, be the happiest\nof mortals.--Frank Churchill is, indeed, the favourite of fortune.\nEvery thing turns out for his good.--He meets with a young woman\nat a watering-place, gains her affection, cannot even weary her\nby negligent treatment--and had he and all his family sought round\nthe world for a perfect wife for him, they could not have found\nher superior.--His aunt is in the way.--His aunt dies.--He has\nonly to speak.--His friends are eager to promote his happiness.--\nHe had used every body ill--and they are all delighted to forgive him.--\nHe is a fortunate man indeed!\"\n\n\"You speak as if you envied him.\"\n\n\"And I do envy him, Emma.  In one respect he is the object of my envy.\"\n\nEmma could say no more.  They seemed to be within half a sentence\nof Harriet, and her immediate feeling was to avert the subject,\nif possible.  She made her plan; she would speak of something\ntotally different--the children in Brunswick Square; and she\nonly waited for breath to begin, when Mr. Knightley startled her,\nby saying,\n\n\"You will not ask me what is the point of envy.--You are determined,\nI see, to have no curiosity.--You are wise--but _I_ cannot be wise.\nEmma, I must tell you what you will not ask, though I may wish it\nunsaid the next moment.\"\n\n\"Oh! then, don't speak it, don't speak it,\" she eagerly cried.\n\"Take a little time, consider, do not commit yourself.\"\n\n\"Thank you,\" said he, in an accent of deep mortification, and not\nanother syllable followed.\n\nEmma could not bear to give him pain.  He was wishing to confide in her--\nperhaps to consult her;--cost her what it would, she would listen.\nShe might assist his resolution, or reconcile him to it;\nshe might give just praise to Harriet, or, by representing to him\nhis own independence, relieve him from that state of indecision,\nwhich must be more intolerable than any alternative to such a mind\nas his.--They had reached the house.\n\n\"You are going in, I suppose?\" said he.\n\n\"No,\"--replied Emma--quite confirmed by the depressed manner\nin which he still spoke--\"I should like to take another turn.\nMr. Perry is not gone.\"  And, after proceeding a few steps, she added--\n\"I stopped you ungraciously, just now, Mr. Knightley, and, I am afraid,\ngave you pain.--But if you have any wish to speak openly to me\nas a friend, or to ask my opinion of any thing that you may have\nin contemplation--as a friend, indeed, you may command me.--I will\nhear whatever you like.  I will tell you exactly what I think.\"\n\n\"As a friend!\"--repeated Mr. Knightley.--\"Emma, that I fear is\na word--No, I have no wish--Stay, yes, why should I hesitate?--\nI have gone too far already for concealment.--Emma, I accept your offer--\nExtraordinary as it may seem, I accept it, and refer myself to you\nas a friend.--Tell me, then, have I no chance of ever succeeding?\"\n\nHe stopped in his earnestness to look the question, and the expression\nof his eyes overpowered her.\n\n\"My dearest Emma,\" said he, \"for dearest you will always be,\nwhatever the event of this hour's conversation, my dearest,\nmost beloved Emma--tell me at once.  Say `No,' if it is to be said.\"--\nShe could really say nothing.--\"You are silent,\" he cried,\nwith great animation; \"absolutely silent! at present I ask no more.\"\n\nEmma was almost ready to sink under the agitation of this moment.\nThe dread of being awakened from the happiest dream, was perhaps\nthe most prominent feeling.\n\n\"I cannot make speeches, Emma:\"  he soon resumed; and in a tone\nof such sincere, decided, intelligible tenderness as was\ntolerably convincing.--\"If I loved you less, I might be able\nto talk about it more.  But you know what I am.--You hear nothing\nbut truth from me.--I have blamed you, and lectured you, and you\nhave borne it as no other woman in England would have borne it.--\nBear with the truths I would tell you now, dearest Emma, as well as\nyou have borne with them.  The manner, perhaps, may have as little\nto recommend them.  God knows, I have been a very indifferent lover.--\nBut you understand me.--Yes, you see, you understand my feelings--\nand will return them if you can.  At present, I ask only to hear,\nonce to hear your voice.\"\n\nWhile he spoke, Emma's mind was most busy, and, with all the wonderful\nvelocity of thought, had been able--and yet without losing a word--\nto catch and comprehend the exact truth of the whole; to see that\nHarriet's hopes had been entirely groundless, a mistake, a delusion,\nas complete a delusion as any of her own--that Harriet was nothing;\nthat she was every thing herself; that what she had been saying\nrelative to Harriet had been all taken as the language of her\nown feelings; and that her agitation, her doubts, her reluctance,\nher discouragement, had been all received as discouragement\nfrom herself.--And not only was there time for these convictions,\nwith all their glow of attendant happiness; there was time also to\nrejoice that Harriet's secret had not escaped her, and to resolve\nthat it need not, and should not.--It was all the service she could\nnow render her poor friend; for as to any of that heroism of sentiment\nwhich might have prompted her to entreat him to transfer his affection\nfrom herself to Harriet, as infinitely the most worthy of the two--\nor even the more simple sublimity of resolving to refuse him\nat once and for ever, without vouchsafing any motive, because he\ncould not marry them both, Emma had it not.  She felt for Harriet,\nwith pain and with contrition; but no flight of generosity run mad,\nopposing all that could be probable or reasonable, entered her brain.\nShe had led her friend astray, and it would be a reproach to\nher for ever; but her judgment was as strong as her feelings,\nand as strong as it had ever been before, in reprobating any such\nalliance for him, as most unequal and degrading.  Her way was clear,\nthough not quite smooth.--She spoke then, on being so entreated.--\nWhat did she say?--Just what she ought, of course.  A lady always does.--\nShe said enough to shew there need not be despair--and to invite him\nto say more himself.  He _had_ despaired at one period; he had received\nsuch an injunction to caution and silence, as for the time crushed\nevery hope;--she had begun by refusing to hear him.--The change had\nperhaps been somewhat sudden;--her proposal of taking another turn,\nher renewing the conversation which she had just put an end to,\nmight be a little extraordinary!--She felt its inconsistency;\nbut Mr. Knightley was so obliging as to put up with it, and seek no\nfarther explanation.\n\nSeldom, very seldom, does complete truth belong to any human disclosure;\nseldom can it happen that something is not a little disguised,\nor a little mistaken; but where, as in this case, though the conduct\nis mistaken, the feelings are not, it may not be very material.--\nMr. Knightley could not impute to Emma a more relenting heart than\nshe possessed, or a heart more disposed to accept of his.\n\nHe had, in fact, been wholly unsuspicious of his own influence.\nHe had followed her into the shrubbery with no idea of trying it.\nHe had come, in his anxiety to see how she bore Frank Churchill's\nengagement, with no selfish view, no view at all, but of endeavouring,\nif she allowed him an opening, to soothe or to counsel her.--The rest\nhad been the work of the moment, the immediate effect of what he heard,\non his feelings.  The delightful assurance of her total indifference\ntowards Frank Churchill, of her having a heart completely disengaged\nfrom him, had given birth to the hope, that, in time, he might gain\nher affection himself;--but it had been no present hope--he had only,\nin the momentary conquest of eagerness over judgment, aspired to be\ntold that she did not forbid his attempt to attach her.--The superior\nhopes which gradually opened were so much the more enchanting.--\nThe affection, which he had been asking to be allowed to create,\nif he could, was already his!--Within half an hour, he had passed\nfrom a thoroughly distressed state of mind, to something so like\nperfect happiness, that it could bear no other name.\n\n_Her_ change was equal.--This one half-hour had given to each the\nsame precious certainty of being beloved, had cleared from each\nthe same degree of ignorance, jealousy, or distrust.--On his side,\nthere had been a long-standing jealousy, old as the arrival,\nor even the expectation, of Frank Churchill.--He had been in love\nwith Emma, and jealous of Frank Churchill, from about the same period,\none sentiment having probably enlightened him as to the other.\nIt was his jealousy of Frank Churchill that had taken him from\nthe country.--The Box Hill party had decided him on going away.\nHe would save himself from witnessing again such permitted,\nencouraged attentions.--He had gone to learn to be indifferent.--\nBut he had gone to a wrong place.  There was too much domestic\nhappiness in his brother's house; woman wore too amiable a form in it;\nIsabella was too much like Emma--differing only in those striking\ninferiorities, which always brought the other in brilliancy before him,\nfor much to have been done, even had his time been longer.--He had\nstayed on, however, vigorously, day after day--till this very morning's\npost had conveyed the history of Jane Fairfax.--Then, with the\ngladness which must be felt, nay, which he did not scruple to feel,\nhaving never believed Frank Churchill to be at all deserving Emma,\nwas there so much fond solicitude, so much keen anxiety for her,\nthat he could stay no longer.  He had ridden home through the rain;\nand had walked up directly after dinner, to see how this sweetest\nand best of all creatures, faultless in spite of all her faults,\nbore the discovery.\n\nHe had found her agitated and low.--Frank Churchill was a villain.--\nHe heard her declare that she had never loved him.  Frank Churchill's\ncharacter was not desperate.--She was his own Emma, by hand and word,\nwhen they returned into the house; and if he could have thought\nof Frank Churchill then, he might have deemed him a very good sort\nof fellow.\n\n\n\nCHAPTER XIV\n\n\nWhat totally different feelings did Emma take back into the house\nfrom what she had brought out!--she had then been only daring to hope\nfor a little respite of suffering;--she was now in an exquisite\nflutter of happiness, and such happiness moreover as she believed\nmust still be greater when the flutter should have passed away.\n\nThey sat down to tea--the same party round the same table--\nhow often it had been collected!--and how often had her eyes fallen\non the same shrubs in the lawn, and observed the same beautiful\neffect of the western sun!--But never in such a state of spirits,\nnever in any thing like it; and it was with difficulty that she could\nsummon enough of her usual self to be the attentive lady of the house,\nor even the attentive daughter.\n\nPoor Mr. Woodhouse little suspected what was plotting against him\nin the breast of that man whom he was so cordially welcoming, and so\nanxiously hoping might not have taken cold from his ride.--Could he\nhave seen the heart, he would have cared very little for the lungs;\nbut without the most distant imagination of the impending evil,\nwithout the slightest perception of any thing extraordinary in\nthe looks or ways of either, he repeated to them very comfortably\nall the articles of news he had received from Mr. Perry, and talked\non with much self-contentment, totally unsuspicious of what they\ncould have told him in return.\n\nAs long as Mr. Knightley remained with them, Emma's fever continued;\nbut when he was gone, she began to be a little tranquillised\nand subdued--and in the course of the sleepless night, which was\nthe tax for such an evening, she found one or two such very serious\npoints to consider, as made her feel, that even her happiness\nmust have some alloy.  Her father--and Harriet.  She could not be\nalone without feeling the full weight of their separate claims;\nand how to guard the comfort of both to the utmost, was the question.\nWith respect to her father, it was a question soon answered.\nShe hardly knew yet what Mr. Knightley would ask; but a very short\nparley with her own heart produced the most solemn resolution\nof never quitting her father.--She even wept over the idea of it,\nas a sin of thought.  While he lived, it must be only an engagement;\nbut she flattered herself, that if divested of the danger of\ndrawing her away, it might become an increase of comfort to him.--\nHow to do her best by Harriet, was of more difficult decision;--\nhow to spare her from any unnecessary pain; how to make\nher any possible atonement; how to appear least her enemy?--\nOn these subjects, her perplexity and distress were very great--\nand her mind had to pass again and again through every bitter\nreproach and sorrowful regret that had ever surrounded it.--\nShe could only resolve at last, that she would still avoid a\nmeeting with her, and communicate all that need be told by letter;\nthat it would be inexpressibly desirable to have her removed just\nnow for a time from Highbury, and--indulging in one scheme more--\nnearly resolve, that it might be practicable to get an invitation\nfor her to Brunswick Square.--Isabella had been pleased with Harriet;\nand a few weeks spent in London must give her some amusement.--\nShe did not think it in Harriet's nature to escape being benefited\nby novelty and variety, by the streets, the shops, and the children.--\nAt any rate, it would be a proof of attention and kindness in herself,\nfrom whom every thing was due; a separation for the present; an averting\nof the evil day, when they must all be together again.\n\nShe rose early, and wrote her letter to Harriet; an employment\nwhich left her so very serious, so nearly sad, that Mr. Knightley,\nin walking up to Hartfield to breakfast, did not arrive at all too soon;\nand half an hour stolen afterwards to go over the same ground again\nwith him, literally and figuratively, was quite necessary to reinstate\nher in a proper share of the happiness of the evening before.\n\nHe had not left her long, by no means long enough for her to have\nthe slightest inclination for thinking of any body else, when a letter\nwas brought her from Randalls--a very thick letter;--she guessed\nwhat it must contain, and deprecated the necessity of reading it.--\nShe was now in perfect charity with Frank Churchill; she wanted\nno explanations, she wanted only to have her thoughts to herself--\nand as for understanding any thing he wrote, she was sure she was\nincapable of it.--It must be waded through, however.  She opened\nthe packet; it was too surely so;--a note from Mrs. Weston to herself,\nushered in the letter from Frank to Mrs. Weston.\n\n\"I have the greatest pleasure, my dear Emma, in forwarding\nto you the enclosed.  I know what thorough justice you will\ndo it, and have scarcely a doubt of its happy effect.--I think\nwe shall never materially disagree about the writer again;\nbut I will not delay you by a long preface.--We are quite well.--\nThis letter has been the cure of all the little nervousness I have\nbeen feeling lately.--I did not quite like your looks on Tuesday,\nbut it was an ungenial morning; and though you will never own being\naffected by weather, I think every body feels a north-east wind.--\nI felt for your dear father very much in the storm of Tuesday\nafternoon and yesterday morning, but had the comfort of hearing\nlast night, by Mr. Perry, that it had not made him ill.\n                              \"Yours ever,\n                                                       \"A. W.\"\n\n                       [To Mrs. Weston.]\n                                                       WINDSOR-JULY.\nMY DEAR MADAM,\n\n\"If I made myself intelligible yesterday, this letter will be expected;\nbut expected or not, I know it will be read with candour and indulgence.--\nYou are all goodness, and I believe there will be need of even\nall your goodness to allow for some parts of my past conduct.--\nBut I have been forgiven by one who had still more to resent.\nMy courage rises while I write.  It is very difficult for the\nprosperous to be humble.  I have already met with such success\nin two applications for pardon, that I may be in danger of thinking\nmyself too sure of yours, and of those among your friends who have\nhad any ground of offence.--You must all endeavour to comprehend\nthe exact nature of my situation when I first arrived at Randalls;\nyou must consider me as having a secret which was to be kept\nat all hazards.  This was the fact.  My right to place myself\nin a situation requiring such concealment, is another question.\nI shall not discuss it here.  For my temptation to _think_ it a right,\nI refer every caviller to a brick house, sashed windows below,\nand casements above, in Highbury.  I dared not address her openly;\nmy difficulties in the then state of Enscombe must be too well\nknown to require definition; and I was fortunate enough to prevail,\nbefore we parted at Weymouth, and to induce the most upright female\nmind in the creation to stoop in charity to a secret engagement.--\nHad she refused, I should have gone mad.--But you will be ready to say,\nwhat was your hope in doing this?--What did you look forward to?--\nTo any thing, every thing--to time, chance, circumstance, slow effects,\nsudden bursts, perseverance and weariness, health and sickness.\nEvery possibility of good was before me, and the first of blessings\nsecured, in obtaining her promises of faith and correspondence.\nIf you need farther explanation, I have the honour, my dear madam,\nof being your husband's son, and the advantage of inheriting\na disposition to hope for good, which no inheritance of houses\nor lands can ever equal the value of.--See me, then, under these\ncircumstances, arriving on my first visit to Randalls;--and here I\nam conscious of wrong, for that visit might have been sooner paid.\nYou will look back and see that I did not come till Miss Fairfax\nwas in Highbury; and as _you_ were the person slighted, you will\nforgive me instantly; but I must work on my father's compassion,\nby reminding him, that so long as I absented myself from his house,\nso long I lost the blessing of knowing you.  My behaviour,\nduring the very happy fortnight which I spent with you, did not,\nI hope, lay me open to reprehension, excepting on one point.\nAnd now I come to the principal, the only important part of my\nconduct while belonging to you, which excites my own anxiety,\nor requires very solicitous explanation.  With the greatest respect,\nand the warmest friendship, do I mention Miss Woodhouse; my father\nperhaps will think I ought to add, with the deepest humiliation.--\nA few words which dropped from him yesterday spoke his opinion,\nand some censure I acknowledge myself liable to.--My behaviour\nto Miss Woodhouse indicated, I believe, more than it ought.--\nIn order to assist a concealment so essential to me, I was led\non to make more than an allowable use of the sort of intimacy\ninto which we were immediately thrown.--I cannot deny that Miss\nWoodhouse was my ostensible object--but I am sure you will believe\nthe declaration, that had I not been convinced of her indifference,\nI would not have been induced by any selfish views to go on.--\nAmiable and delightful as Miss Woodhouse is, she never gave me\nthe idea of a young woman likely to be attached; and that she was\nperfectly free from any tendency to being attached to me, was as much\nmy conviction as my wish.--She received my attentions with an easy,\nfriendly, goodhumoured playfulness, which exactly suited me.\nWe seemed to understand each other.  From our relative situation,\nthose attentions were her due, and were felt to be so.--Whether Miss\nWoodhouse began really to understand me before the expiration of\nthat fortnight, I cannot say;--when I called to take leave of her,\nI remember that I was within a moment of confessing the truth,\nand I then fancied she was not without suspicion; but I have no\ndoubt of her having since detected me, at least in some degree.--\nShe may not have surmised the whole, but her quickness must\nhave penetrated a part.  I cannot doubt it.  You will find,\nwhenever the subject becomes freed from its present restraints,\nthat it did not take her wholly by surprize.  She frequently gave\nme hints of it.  I remember her telling me at the ball, that I\nowed Mrs. Elton gratitude for her attentions to Miss Fairfax.--\nI hope this history of my conduct towards her will be admitted\nby you and my father as great extenuation of what you saw amiss.\nWhile you considered me as having sinned against Emma Woodhouse,\nI could deserve nothing from either.  Acquit me here, and procure\nfor me, when it is allowable, the acquittal and good wishes of that\nsaid Emma Woodhouse, whom I regard with so much brotherly affection,\nas to long to have her as deeply and as happily in love as myself.--\nWhatever strange things I said or did during that fortnight, you have\nnow a key to.  My heart was in Highbury, and my business was to get\nmy body thither as often as might be, and with the least suspicion.\nIf you remember any queernesses, set them all to the right account.--\nOf the pianoforte so much talked of, I feel it only necessary to say,\nthat its being ordered was absolutely unknown to Miss F--, who would\nnever have allowed me to send it, had any choice been given her.--\nThe delicacy of her mind throughout the whole engagement,\nmy dear madam, is much beyond my power of doing justice to.\nYou will soon, I earnestly hope, know her thoroughly yourself.--\nNo description can describe her.  She must tell you herself what she is--\nyet not by word, for never was there a human creature who would\nso designedly suppress her own merit.--Since I began this letter,\nwhich will be longer than I foresaw, I have heard from her.--\nShe gives a good account of her own health; but as she never complains,\nI dare not depend.  I want to have your opinion of her looks.\nI know you will soon call on her; she is living in dread of the visit.\nPerhaps it is paid already.  Let me hear from you without delay;\nI am impatient for a thousand particulars.  Remember how few\nminutes I was at Randalls, and in how bewildered, how mad a state:\nand I am not much better yet; still insane either from happiness\nor misery.  When I think of the kindness and favour I have met with,\nof her excellence and patience, and my uncle's generosity, I am mad\nwith joy:  but when I recollect all the uneasiness I occasioned her,\nand how little I deserve to be forgiven, I am mad with anger.\nIf I could but see her again!--But I must not propose it yet.\nMy uncle has been too good for me to encroach.--I must still add\nto this long letter.  You have not heard all that you ought to hear.\nI could not give any connected detail yesterday; but the suddenness,\nand, in one light, the unseasonableness with which the affair burst out,\nneeds explanation; for though the event of the 26th ult., as you\nwill conclude, immediately opened to me the happiest prospects,\nI should not have presumed on such early measures, but from the\nvery particular circumstances, which left me not an hour to lose.\nI should myself have shrunk from any thing so hasty, and she would have\nfelt every scruple of mine with multiplied strength and refinement.--\nBut I had no choice.  The hasty engagement she had entered into with\nthat woman--Here, my dear madam, I was obliged to leave off abruptly,\nto recollect and compose myself.--I have been walking over the country,\nand am now, I hope, rational enough to make the rest of my letter\nwhat it ought to be.--It is, in fact, a most mortifying retrospect\nfor me.  I behaved shamefully.  And here I can admit, that my manners\nto Miss W., in being unpleasant to Miss F., were highly blameable.\n_She_ disapproved them, which ought to have been enough.--My plea of\nconcealing the truth she did not think sufficient.--She was displeased;\nI thought unreasonably so:  I thought her, on a thousand occasions,\nunnecessarily scrupulous and cautious:  I thought her even cold.\nBut she was always right.  If I had followed her judgment, and subdued\nmy spirits to the level of what she deemed proper, I should have\nescaped the greatest unhappiness I have ever known.--We quarrelled.--\nDo you remember the morning spent at Donwell?--_There_ every little\ndissatisfaction that had occurred before came to a crisis.  I was late;\nI met her walking home by herself, and wanted to walk with her,\nbut she would not suffer it.  She absolutely refused to allow me,\nwhich I then thought most unreasonable.  Now, however, I see nothing\nin it but a very natural and consistent degree of discretion.\nWhile I, to blind the world to our engagement, was behaving one\nhour with objectionable particularity to another woman, was she\nto be consenting the next to a proposal which might have made\nevery previous caution useless?--Had we been met walking together\nbetween Donwell and Highbury, the truth must have been suspected.--\nI was mad enough, however, to resent.--I doubted her affection.\nI doubted it more the next day on Box Hill; when, provoked by\nsuch conduct on my side, such shameful, insolent neglect of her,\nand such apparent devotion to Miss W., as it would have been\nimpossible for any woman of sense to endure, she spoke her\nresentment in a form of words perfectly intelligible to me.--\nIn short, my dear madam, it was a quarrel blameless on her side,\nabominable on mine; and I returned the same evening to Richmond,\nthough I might have staid with you till the next morning,\nmerely because I would be as angry with her as possible.  Even then,\nI was not such a fool as not to mean to be reconciled in time;\nbut I was the injured person, injured by her coldness, and I went\naway determined that she should make the first advances.--I shall\nalways congratulate myself that you were not of the Box Hill party.\nHad you witnessed my behaviour there, I can hardly suppose you would\never have thought well of me again.  Its effect upon her appears\nin the immediate resolution it produced:  as soon as she found I\nwas really gone from Randalls, she closed with the offer of that\nofficious Mrs. Elton; the whole system of whose treatment of her,\nby the bye, has ever filled me with indignation and hatred.\nI must not quarrel with a spirit of forbearance which has been\nso richly extended towards myself; but, otherwise, I should loudly\nprotest against the share of it which that woman has known.--\n`Jane,' indeed!--You will observe that I have not yet indulged myself\nin calling her by that name, even to you.  Think, then, what I must\nhave endured in hearing it bandied between the Eltons with all\nthe vulgarity of needless repetition, and all the insolence of\nimaginary superiority.  Have patience with me, I shall soon have done.--\nShe closed with this offer, resolving to break with me entirely,\nand wrote the next day to tell me that we never were to meet again.--\n_She_ _felt_ _the_ _engagement_ _to_ _be_ _a_ _source_ _of_ _repentance_ _and_ _misery_\n_to_ _each_:  _she_ _dissolved_ _it_.--This letter reached me on the very\nmorning of my poor aunt's death.  I answered it within an hour;\nbut from the confusion of my mind, and the multiplicity of business\nfalling on me at once, my answer, instead of being sent with all\nthe many other letters of that day, was locked up in my writing-desk;\nand I, trusting that I had written enough, though but a few lines,\nto satisfy her, remained without any uneasiness.--I was rather\ndisappointed that I did not hear from her again speedily;\nbut I made excuses for her, and was too busy, and--may I add?--\ntoo cheerful in my views to be captious.--We removed to Windsor;\nand two days afterwards I received a parcel from her, my own letters\nall returned!--and a few lines at the same time by the post,\nstating her extreme surprize at not having had the smallest reply\nto her last; and adding, that as silence on such a point could\nnot be misconstrued, and as it must be equally desirable to both\nto have every subordinate arrangement concluded as soon as possible,\nshe now sent me, by a safe conveyance, all my letters, and requested,\nthat if I could not directly command hers, so as to send them\nto Highbury within a week, I would forward them after that period\nto her at--:  in short, the full direction to Mr. Smallridge's,\nnear Bristol, stared me in the face.  I knew the name, the place,\nI knew all about it, and instantly saw what she had been doing.\nIt was perfectly accordant with that resolution of character\nwhich I knew her to possess; and the secrecy she had maintained,\nas to any such design in her former letter, was equally descriptive\nof its anxious delicacy.  For the world would not she have seemed\nto threaten me.--Imagine the shock; imagine how, till I had actually\ndetected my own blunder, I raved at the blunders of the post.--\nWhat was to be done?--One thing only.--I must speak to my uncle.\nWithout his sanction I could not hope to be listened to again.--\nI spoke; circumstances were in my favour; the late event had softened\naway his pride, and he was, earlier than I could have anticipated,\nwholly reconciled and complying; and could say at last, poor man!\nwith a deep sigh, that he wished I might find as much happiness\nin the marriage state as he had done.--I felt that it would be\nof a different sort.--Are you disposed to pity me for what I must\nhave suffered in opening the cause to him, for my suspense while\nall was at stake?--No; do not pity me till I reached Highbury,\nand saw how ill I had made her.  Do not pity me till I saw her wan,\nsick looks.--I reached Highbury at the time of day when, from my\nknowledge of their late breakfast hour, I was certain of a good chance\nof finding her alone.--I was not disappointed; and at last I was\nnot disappointed either in the object of my journey.  A great deal\nof very reasonable, very just displeasure I had to persuade away.\nBut it is done; we are reconciled, dearer, much dearer, than ever,\nand no moment's uneasiness can ever occur between us again.  Now, my\ndear madam, I will release you; but I could not conclude before.\nA thousand and a thousand thanks for all the kindness you have\never shewn me, and ten thousand for the attentions your heart\nwill dictate towards her.--If you think me in a way to be happier\nthan I deserve, I am quite of your opinion.--Miss W. calls me\nthe child of good fortune.  I hope she is right.--In one respect,\nmy good fortune is undoubted, that of being able to subscribe\nmyself,\n                    Your obliged and affectionate Son,\n                                          F. C. WESTON CHURCHILL.\n\n\n\nCHAPTER XV\n\n\nThis letter must make its way to Emma's feelings.  She was obliged,\nin spite of her previous determination to the contrary, to do\nit all the justice that Mrs. Weston foretold.  As soon as she\ncame to her own name, it was irresistible; every line relating\nto herself was interesting, and almost every line agreeable;\nand when this charm ceased, the subject could still maintain itself,\nby the natural return of her former regard for the writer, and the\nvery strong attraction which any picture of love must have for her at\nthat moment.  She never stopt till she had gone through the whole;\nand though it was impossible not to feel that he had been wrong,\nyet he had been less wrong than she had supposed--and he had suffered,\nand was very sorry--and he was so grateful to Mrs. Weston,\nand so much in love with Miss Fairfax, and she was so happy herself,\nthat there was no being severe; and could he have entered the room,\nshe must have shaken hands with him as heartily as ever.\n\nShe thought so well of the letter, that when Mr. Knightley came again,\nshe desired him to read it.  She was sure of Mrs. Weston's wishing\nit to be communicated; especially to one, who, like Mr. Knightley,\nhad seen so much to blame in his conduct.\n\n\"I shall be very glad to look it over,\" said he; \"but it seems long.\nI will take it home with me at night.\"\n\nBut that would not do.  Mr. Weston was to call in the evening,\nand she must return it by him.\n\n\"I would rather be talking to you,\" he replied; \"but as it seems\na matter of justice, it shall be done.\"\n\nHe began--stopping, however, almost directly to say, \"Had I been offered\nthe sight of one of this gentleman's letters to his mother-in-law a few\nmonths ago, Emma, it would not have been taken with such indifference.\"\n\nHe proceeded a little farther, reading to himself; and then,\nwith a smile, observed, \"Humph! a fine complimentary opening:\nBut it is his way.  One man's style must not be the rule of another's.\nWe will not be severe.\"\n\n\"It will be natural for me,\" he added shortly afterwards, \"to speak my\nopinion aloud as I read.  By doing it, I shall feel that I am near you.\nIt will not be so great a loss of time:  but if you dislike it--\"\n\n\"Not at all.  I should wish it.\"\n\nMr. Knightley returned to his reading with greater alacrity.\n\n\"He trifles here,\" said he, \"as to the temptation.  He knows\nhe is wrong, and has nothing rational to urge.--Bad.--He ought\nnot to have formed the engagement.--`His father's disposition:'--\nhe is unjust, however, to his father.  Mr. Weston's sanguine\ntemper was a blessing on all his upright and honourable exertions;\nbut Mr. Weston earned every present comfort before he endeavoured\nto gain it.--Very true; he did not come till Miss Fairfax was here.\"\n\n\"And I have not forgotten,\" said Emma, \"how sure you were that he\nmight have come sooner if he would.  You pass it over very handsomely--\nbut you were perfectly right.\"\n\n\"I was not quite impartial in my judgment, Emma:--but yet, I think--\nhad _you_ not been in the case--I should still have distrusted him.\"\n\nWhen he came to Miss Woodhouse, he was obliged to read the whole\nof it aloud--all that related to her, with a smile; a look;\na shake of the head; a word or two of assent, or disapprobation;\nor merely of love, as the subject required; concluding, however,\nseriously, and, after steady reflection, thus--\n\n\"Very bad--though it might have been worse.--Playing a most\ndangerous game.  Too much indebted to the event for his acquittal.--\nNo judge of his own manners by you.--Always deceived in fact by his\nown wishes, and regardless of little besides his own convenience.--\nFancying you to have fathomed his secret.  Natural enough!--\nhis own mind full of intrigue, that he should suspect it\nin others.--Mystery; Finesse--how they pervert the understanding!\nMy Emma, does not every thing serve to prove more and more the\nbeauty of truth and sincerity in all our dealings with each other?\"\n\nEmma agreed to it, and with a blush of sensibility on Harriet's account,\nwhich she could not give any sincere explanation of.\n\n\"You had better go on,\" said she.\n\nHe did so, but very soon stopt again to say, \"the pianoforte!\nAh!  That was the act of a very, very young man, one too young\nto consider whether the inconvenience of it might not very much\nexceed the pleasure.  A boyish scheme, indeed!--I cannot\ncomprehend a man's wishing to give a woman any proof of affection\nwhich he knows she would rather dispense with; and he did\nknow that she would have prevented the instrument's coming if she could.\"\n\nAfter this, he made some progress without any pause.\nFrank Churchill's confession of having behaved shamefully\nwas the first thing to call for more than a word in passing.\n\n\"I perfectly agree with you, sir,\"--was then his remark.\n\"You did behave very shamefully.  You never wrote a truer line.\"\nAnd having gone through what immediately followed of the basis\nof their disagreement, and his persisting to act in direct\nopposition to Jane Fairfax's sense of right, he made a fuller pause\nto say, \"This is very bad.--He had induced her to place herself,\nfor his sake, in a situation of extreme difficulty and uneasiness,\nand it should have been his first object to prevent her from\nsuffering unnecessarily.--She must have had much more to contend with,\nin carrying on the correspondence, than he could.  He should have\nrespected even unreasonable scruples, had there been such; but hers\nwere all reasonable.  We must look to her one fault, and remember\nthat she had done a wrong thing in consenting to the engagement,\nto bear that she should have been in such a state of punishment.\"\n\nEmma knew that he was now getting to the Box Hill party,\nand grew uncomfortable.  Her own behaviour had been so very improper!\nShe was deeply ashamed, and a little afraid of his next look.\nIt was all read, however, steadily, attentively, and without\nthe smallest remark; and, excepting one momentary glance at her,\ninstantly withdrawn, in the fear of giving pain--no remembrance\nof Box Hill seemed to exist.\n\n\"There is no saying much for the delicacy of our good friends,\nthe Eltons,\" was his next observation.--\"His feelings are natural.--\nWhat! actually resolve to break with him entirely!--She felt\nthe engagement to be a source of repentance and misery to each--\nshe dissolved it.--What a view this gives of her sense of\nhis behaviour!--Well, he must be a most extraordinary--\"\n\n\"Nay, nay, read on.--You will find how very much he suffers.\"\n\n\"I hope he does,\" replied Mr. Knightley coolly, and resuming the letter.\n\"`Smallridge!'--What does this mean?  What is all this?\"\n\n\"She had engaged to go as governess to Mrs. Smallridge's children--\na dear friend of Mrs. Elton's--a neighbour of Maple Grove; and,\nby the bye, I wonder how Mrs. Elton bears the disappointment?\"\n\n\"Say nothing, my dear Emma, while you oblige me to read--not even\nof Mrs. Elton.  Only one page more.  I shall soon have done.\nWhat a letter the man writes!\"\n\n\"I wish you would read it with a kinder spirit towards him.\"\n\n\"Well, there _is_ feeling here.--He does seem to have suffered in finding\nher ill.--Certainly, I can have no doubt of his being fond of her.\n`Dearer, much dearer than ever.'  I hope he may long continue to feel\nall the value of such a reconciliation.--He is a very liberal thanker,\nwith his thousands and tens of thousands.--`Happier than I deserve.'\nCome, he knows himself there.  `Miss Woodhouse calls me the child\nof good fortune.'--Those were Miss Woodhouse's words, were they?--\nAnd a fine ending--and there is the letter.  The child of good fortune!\nThat was your name for him, was it?\"\n\n\"You do not appear so well satisfied with his letter as I am;\nbut still you must, at least I hope you must, think the better\nof him for it.  I hope it does him some service with you.\"\n\n\"Yes, certainly it does.  He has had great faults, faults of\ninconsideration and thoughtlessness; and I am very much of his\nopinion in thinking him likely to be happier than he deserves:\nbut still as he is, beyond a doubt, really attached to Miss Fairfax,\nand will soon, it may be hoped, have the advantage of being constantly\nwith her, I am very ready to believe his character will improve,\nand acquire from hers the steadiness and delicacy of principle\nthat it wants.  And now, let me talk to you of something else.\nI have another person's interest at present so much at heart,\nthat I cannot think any longer about Frank Churchill.  Ever since I\nleft you this morning, Emma, my mind has been hard at work on\none subject.\"\n\nThe subject followed; it was in plain, unaffected, gentlemanlike English,\nsuch as Mr. Knightley used even to the woman he was in love with,\nhow to be able to ask her to marry him, without attacking the\nhappiness of her father.  Emma's answer was ready at the first word.\n\"While her dear father lived, any change of condition must be impossible\nfor her.  She could never quit him.\"  Part only of this answer,\nhowever, was admitted.  The impossibility of her quitting her father,\nMr. Knightley felt as strongly as herself; but the inadmissibility\nof any other change, he could not agree to.  He had been thinking\nit over most deeply, most intently; he had at first hoped to induce\nMr. Woodhouse to remove with her to Donwell; he had wanted to believe\nit feasible, but his knowledge of Mr. Woodhouse would not suffer\nhim to deceive himself long; and now he confessed his persuasion,\nthat such a transplantation would be a risk of her father's comfort,\nperhaps even of his life, which must not be hazarded.  Mr. Woodhouse\ntaken from Hartfield!--No, he felt that it ought not to be attempted.\nBut the plan which had arisen on the sacrifice of this, he trusted\nhis dearest Emma would not find in any respect objectionable;\nit was, that he should be received at Hartfield; that so long as\nher father's happiness in other words his life--required Hartfield\nto continue her home, it should be his likewise.\n\nOf their all removing to Donwell, Emma had already had her own\npassing thoughts.  Like him, she had tried the scheme and rejected it;\nbut such an alternative as this had not occurred to her.\nShe was sensible of all the affection it evinced.  She felt that,\nin quitting Donwell, he must be sacrificing a great deal of independence\nof hours and habits; that in living constantly with her father,\nand in no house of his own, there would be much, very much,\nto be borne with.  She promised to think of it, and advised him\nto think of it more; but he was fully convinced, that no reflection\ncould alter his wishes or his opinion on the subject.  He had\ngiven it, he could assure her, very long and calm consideration;\nhe had been walking away from William Larkins the whole morning,\nto have his thoughts to himself.\n\n\"Ah! there is one difficulty unprovided for,\" cried Emma.  \"I am\nsure William Larkins will not like it.  You must get his consent\nbefore you ask mine.\"\n\nShe promised, however, to think of it; and pretty nearly promised, moreover,\nto think of it, with the intention of finding it a very good scheme.\n\nIt is remarkable, that Emma, in the many, very many, points of view\nin which she was now beginning to consider Donwell Abbey, was never\nstruck with any sense of injury to her nephew Henry, whose rights\nas heir-expectant had formerly been so tenaciously regarded.\nThink she must of the possible difference to the poor little boy;\nand yet she only gave herself a saucy conscious smile about it,\nand found amusement in detecting the real cause of that violent\ndislike of Mr. Knightley's marrying Jane Fairfax, or any body else,\nwhich at the time she had wholly imputed to the amiable solicitude of\nthe sister and the aunt.\n\nThis proposal of his, this plan of marrying and continuing at Hartfield--\nthe more she contemplated it, the more pleasing it became.\nHis evils seemed to lessen, her own advantages to increase,\ntheir mutual good to outweigh every drawback.  Such a companion\nfor herself in the periods of anxiety and cheerlessness before her!--\nSuch a partner in all those duties and cares to which time must be\ngiving increase of melancholy!\n\nShe would have been too happy but for poor Harriet; but every\nblessing of her own seemed to involve and advance the sufferings\nof her friend, who must now be even excluded from Hartfield.\nThe delightful family party which Emma was securing for herself,\npoor Harriet must, in mere charitable caution, be kept at a\ndistance from.  She would be a loser in every way.  Emma could not\ndeplore her future absence as any deduction from her own enjoyment.\nIn such a party, Harriet would be rather a dead weight than otherwise;\nbut for the poor girl herself, it seemed a peculiarly cruel necessity\nthat was to be placing her in such a state of unmerited punishment.\n\nIn time, of course, Mr. Knightley would be forgotten, that is,\nsupplanted; but this could not be expected to happen very early.\nMr. Knightley himself would be doing nothing to assist the cure;--\nnot like Mr. Elton.  Mr. Knightley, always so kind, so feeling,\nso truly considerate for every body, would never deserve to be\nless worshipped than now; and it really was too much to hope even\nof Harriet, that she could be in love with more than _three_ men\nin one year.\n\n\n\nCHAPTER XVI\n\n\nIt was a very great relief to Emma to find Harriet as desirous\nas herself to avoid a meeting.  Their intercourse was painful\nenough by letter.  How much worse, had they been obliged to meet!\n\nHarriet expressed herself very much as might be supposed,\nwithout reproaches, or apparent sense of ill-usage; and yet Emma fancied\nthere was a something of resentment, a something bordering on it in\nher style, which increased the desirableness of their being separate.--\nIt might be only her own consciousness; but it seemed as if an\nangel only could have been quite without resentment under such a stroke.\n\nShe had no difficulty in procuring Isabella's invitation;\nand she was fortunate in having a sufficient reason for asking it,\nwithout resorting to invention.--There was a tooth amiss.\nHarriet really wished, and had wished some time, to consult a dentist.\nMrs. John Knightley was delighted to be of use; any thing of ill\nhealth was a recommendation to her--and though not so fond of a\ndentist as of a Mr. Wingfield, she was quite eager to have Harriet\nunder her care.--When it was thus settled on her sister's side,\nEmma proposed it to her friend, and found her very persuadable.--\nHarriet was to go; she was invited for at least a fortnight; she was\nto be conveyed in Mr. Woodhouse's carriage.--It was all arranged,\nit was all completed, and Harriet was safe in Brunswick Square.\n\nNow Emma could, indeed, enjoy Mr. Knightley's visits; now she\ncould talk, and she could listen with true happiness, unchecked by\nthat sense of injustice, of guilt, of something most painful,\nwhich had haunted her when remembering how disappointed a heart was\nnear her, how much might at that moment, and at a little distance,\nbe enduring by the feelings which she had led astray herself.\n\nThe difference of Harriet at Mrs. Goddard's, or in London, made perhaps\nan unreasonable difference in Emma's sensations; but she could not\nthink of her in London without objects of curiosity and employment,\nwhich must be averting the past, and carrying her out of herself.\n\nShe would not allow any other anxiety to succeed directly to the place\nin her mind which Harriet had occupied.  There was a communication\nbefore her, one which _she_ only could be competent to make--\nthe confession of her engagement to her father; but she would\nhave nothing to do with it at present.--She had resolved to defer\nthe disclosure till Mrs. Weston were safe and well.  No additional\nagitation should be thrown at this period among those she loved--\nand the evil should not act on herself by anticipation before the\nappointed time.--A fortnight, at least, of leisure and peace of mind,\nto crown every warmer, but more agitating, delight, should be hers.\n\nShe soon resolved, equally as a duty and a pleasure, to employ half\nan hour of this holiday of spirits in calling on Miss Fairfax.--\nShe ought to go--and she was longing to see her; the resemblance of\ntheir present situations increasing every other motive of goodwill.\nIt would be a _secret_ satisfaction; but the consciousness of a\nsimilarity of prospect would certainly add to the interest with\nwhich she should attend to any thing Jane might communicate.\n\nShe went--she had driven once unsuccessfully to the door, but had\nnot been into the house since the morning after Box Hill, when poor\nJane had been in such distress as had filled her with compassion,\nthough all the worst of her sufferings had been unsuspected.--\nThe fear of being still unwelcome, determined her, though assured\nof their being at home, to wait in the passage, and send up her name.--\nShe heard Patty announcing it; but no such bustle succeeded as poor\nMiss Bates had before made so happily intelligible.--No; she heard\nnothing but the instant reply of, \"Beg her to walk up;\"--and a moment\nafterwards she was met on the stairs by Jane herself, coming eagerly\nforward, as if no other reception of her were felt sufficient.--\nEmma had never seen her look so well, so lovely, so engaging.\nThere was consciousness, animation, and warmth; there was every\nthing which her countenance or manner could ever have wanted.--\nShe came forward with an offered hand; and said, in a low, but very\nfeeling tone,\n\n\"This is most kind, indeed!--Miss Woodhouse, it is impossible\nfor me to express--I hope you will believe--Excuse me for being\nso entirely without words.\"\n\nEmma was gratified, and would soon have shewn no want of words,\nif the sound of Mrs. Elton's voice from the sitting-room had not\nchecked her, and made it expedient to compress all her friendly\nand all her congratulatory sensations into a very, very earnest\nshake of the hand.\n\nMrs. Bates and Mrs. Elton were together.  Miss Bates was out,\nwhich accounted for the previous tranquillity.  Emma could have\nwished Mrs. Elton elsewhere; but she was in a humour to have patience\nwith every body; and as Mrs. Elton met her with unusual graciousness,\nshe hoped the rencontre would do them no harm.\n\nShe soon believed herself to penetrate Mrs. Elton's thoughts,\nand understand why she was, like herself, in happy spirits;\nit was being in Miss Fairfax's confidence, and fancying herself\nacquainted with what was still a secret to other people.\nEmma saw symptoms of it immediately in the expression of her face;\nand while paying her own compliments to Mrs. Bates, and appearing\nto attend to the good old lady's replies, she saw her with a sort\nof anxious parade of mystery fold up a letter which she had apparently\nbeen reading aloud to Miss Fairfax, and return it into the purple\nand gold reticule by her side, saying, with significant nods,\n\n\"We can finish this some other time, you know.  You and I shall\nnot want opportunities.  And, in fact, you have heard all the\nessential already.  I only wanted to prove to you that Mrs. S. admits\nour apology, and is not offended.  You see how delightfully\nshe writes.  Oh! she is a sweet creature!  You would have doated\non her, had you gone.--But not a word more.  Let us be discreet--\nquite on our good behaviour.--Hush!--You remember those lines--\nI forget the poem at this moment:\n\n        \"For when a lady's in the case,\n        \"You know all other things give place.\"\n\nNow I say, my dear, in _our_ case, for _lady_, read----mum! a word\nto the wise.--I am in a fine flow of spirits, an't I?  But I want\nto set your heart at ease as to Mrs. S.--_My_ representation, you see,\nhas quite appeased her.\"\n\nAnd again, on Emma's merely turning her head to look\nat Mrs. Bates's knitting, she added, in a half whisper,\n\n\"I mentioned no _names_, you will observe.--Oh! no; cautious as\na minister of state.  I managed it extremely well.\"\n\nEmma could not doubt.  It was a palpable display, repeated on every\npossible occasion.  When they had all talked a little while in harmony\nof the weather and Mrs. Weston, she found herself abruptly addressed with,\n\n\"Do not you think, Miss Woodhouse, our saucy little friend here is\ncharmingly recovered?--Do not you think her cure does Perry the\nhighest credit?--(here was a side-glance of great meaning at Jane.)\nUpon my word, Perry has restored her in a wonderful short time!--\nOh! if you had seen her, as I did, when she was at the worst!\"--\nAnd when Mrs. Bates was saying something to Emma, whispered farther,\n\"We do not say a word of any _assistance_ that Perry might have;\nnot a word of a certain young physician from Windsor.--Oh! no;\nPerry shall have all the credit.\"\n\n\"I have scarce had the pleasure of seeing you, Miss Woodhouse,\"\nshe shortly afterwards began, \"since the party to Box Hill.\nVery pleasant party.  But yet I think there was something wanting.\nThings did not seem--that is, there seemed a little cloud upon\nthe spirits of some.--So it appeared to me at least, but I might\nbe mistaken.  However, I think it answered so far as to tempt one\nto go again.  What say you both to our collecting the same party,\nand exploring to Box Hill again, while the fine weather lasts?--\nIt must be the same party, you know, quite the same party,\nnot _one_ exception.\"\n\nSoon after this Miss Bates came in, and Emma could not help being diverted\nby the perplexity of her first answer to herself, resulting, she supposed,\nfrom doubt of what might be said, and impatience to say every thing.\n\n\"Thank you, dear Miss Woodhouse, you are all kindness.--It is impossible\nto say--Yes, indeed, I quite understand--dearest Jane's prospects--\nthat is, I do not mean.--But she is charmingly recovered.--\nHow is Mr. Woodhouse?--I am so glad.--Quite out of my power.--\nSuch a happy little circle as you find us here.--Yes, indeed.--\nCharming young man!--that is--so very friendly; I mean good Mr. Perry!--\nsuch attention to Jane!\"--And from her great, her more than commonly\nthankful delight towards Mrs. Elton for being there, Emma guessed\nthat there had been a little show of resentment towards Jane,\nfrom the vicarage quarter, which was now graciously overcome.--\nAfter a few whispers, indeed, which placed it beyond a guess,\nMrs. Elton, speaking louder, said,\n\n\"Yes, here I am, my good friend; and here I have been so long,\nthat anywhere else I should think it necessary to apologise;\nbut, the truth is, that I am waiting for my lord and master.\nHe promised to join me here, and pay his respects to you.\"\n\n\"What! are we to have the pleasure of a call from Mr. Elton?--\nThat will be a favour indeed! for I know gentlemen do not like\nmorning visits, and Mr. Elton's time is so engaged.\"\n\n\"Upon my word it is, Miss Bates.--He really is engaged from morning\nto night.--There is no end of people's coming to him, on some pretence\nor other.--The magistrates, and overseers, and churchwardens,\nare always wanting his opinion.  They seem not able to do any thing\nwithout him.--`Upon my word, Mr. E.,' I often say, `rather you than I.--\nI do not know what would become of my crayons and my instrument,\nif I had half so many applicants.'--Bad enough as it is, for I\nabsolutely neglect them both to an unpardonable degree.--I believe\nI have not played a bar this fortnight.--However, he is coming,\nI assure you:  yes, indeed, on purpose to wait on you all.\"  And putting\nup her hand to screen her words from Emma--\"A congratulatory visit,\nyou know.--Oh! yes, quite indispensable.\"\n\nMiss Bates looked about her, so happily!--\n\n\"He promised to come to me as soon as he could disengage himself\nfrom Knightley; but he and Knightley are shut up together\nin deep consultation.--Mr. E. is Knightley's right hand.\"\n\nEmma would not have smiled for the world, and only said, \"Is Mr. Elton\ngone on foot to Donwell?--He will have a hot walk.\"\n\n\"Oh! no, it is a meeting at the Crown, a regular meeting.\nWeston and Cole will be there too; but one is apt to speak only\nof those who lead.--I fancy Mr. E. and Knightley have every thing\ntheir own way.\"\n\n\"Have not you mistaken the day?\" said Emma.  \"I am almost certain\nthat the meeting at the Crown is not till to-morrow.--Mr. Knightley\nwas at Hartfield yesterday, and spoke of it as for Saturday.\"\n\n\"Oh! no, the meeting is certainly to-day,\" was the abrupt answer,\nwhich denoted the impossibility of any blunder on Mrs. Elton's side.--\n\"I do believe,\" she continued, \"this is the most troublesome parish\nthat ever was.  We never heard of such things at Maple Grove.\"\n\n\"Your parish there was small,\" said Jane.\n\n\"Upon my word, my dear, I do not know, for I never heard the subject\ntalked of.\"\n\n\"But it is proved by the smallness of the school, which I have heard\nyou speak of, as under the patronage of your sister and Mrs. Bragge;\nthe only school, and not more than five-and-twenty children.\"\n\n\"Ah! you clever creature, that's very true.  What a thinking brain\nyou have!  I say, Jane, what a perfect character you and I should make,\nif we could be shaken together.  My liveliness and your solidity\nwould produce perfection.--Not that I presume to insinuate, however,\nthat _some_ people may not think _you_ perfection already.--But hush!--\nnot a word, if you please.\"\n\nIt seemed an unnecessary caution; Jane was wanting to give her words,\nnot to Mrs. Elton, but to Miss Woodhouse, as the latter plainly saw.\nThe wish of distinguishing her, as far as civility permitted,\nwas very evident, though it could not often proceed beyond a look.\n\nMr. Elton made his appearance.  His lady greeted him with some\nof her sparkling vivacity.\n\n\"Very pretty, sir, upon my word; to send me on here, to be an\nencumbrance to my friends, so long before you vouchsafe to come!--\nBut you knew what a dutiful creature you had to deal with.\nYou knew I should not stir till my lord and master appeared.--\nHere have I been sitting this hour, giving these young ladies\na sample of true conjugal obedience--for who can say, you know,\nhow soon it may be wanted?\"\n\nMr. Elton was so hot and tired, that all this wit seemed thrown away.\nHis civilities to the other ladies must be paid; but his subsequent\nobject was to lament over himself for the heat he was suffering,\nand the walk he had had for nothing.\n\n\"When I got to Donwell,\" said he, \"Knightley could not be found.\nVery odd! very unaccountable! after the note I sent him this morning,\nand the message he returned, that he should certainly be at home\ntill one.\"\n\n\"Donwell!\" cried his wife.--\"My dear Mr. E., you have not been\nto Donwell!--You mean the Crown; you come from the meeting at the Crown.\"\n\n\"No, no, that's to-morrow; and I particularly wanted to see Knightley\nto-day on that very account.--Such a dreadful broiling morning!--\nI went over the fields too--(speaking in a tone of great ill-usage,)\nwhich made it so much the worse.  And then not to find him at home!\nI assure you I am not at all pleased.  And no apology left, no message\nfor me.  The housekeeper declared she knew nothing of my being expected.--\nVery extraordinary!--And nobody knew at all which way he was gone.\nPerhaps to Hartfield, perhaps to the Abbey Mill, perhaps into his woods.--\nMiss Woodhouse, this is not like our friend Knightley!--Can you\nexplain it?\"\n\nEmma amused herself by protesting that it was very extraordinary,\nindeed, and that she had not a syllable to say for him.\n\n\"I cannot imagine,\" said Mrs. Elton, (feeling the indignity as a wife\nought to do,) \"I cannot imagine how he could do such a thing by you,\nof all people in the world!  The very last person whom one should expect\nto be forgotten!--My dear Mr. E., he must have left a message for you,\nI am sure he must.--Not even Knightley could be so very eccentric;--\nand his servants forgot it.  Depend upon it, that was the case:\nand very likely to happen with the Donwell servants, who are all,\nI have often observed, extremely awkward and remiss.--I am sure I\nwould not have such a creature as his Harry stand at our sideboard\nfor any consideration.  And as for Mrs. Hodges, Wright holds\nher very cheap indeed.--She promised Wright a receipt, and never\nsent it.\"\n\n\"I met William Larkins,\" continued Mr. Elton, \"as I got near\nthe house, and he told me I should not find his master at home,\nbut I did not believe him.--William seemed rather out of humour.\nHe did not know what was come to his master lately, he said, but he\ncould hardly ever get the speech of him.  I have nothing to do with\nWilliam's wants, but it really is of very great importance that _I_\nshould see Knightley to-day; and it becomes a matter, therefore,\nof very serious inconvenience that I should have had this hot walk\nto no purpose.\"\n\nEmma felt that she could not do better than go home directly.\nIn all probability she was at this very time waited for there;\nand Mr. Knightley might be preserved from sinking deeper in aggression\ntowards Mr. Elton, if not towards William Larkins.\n\nShe was pleased, on taking leave, to find Miss Fairfax determined\nto attend her out of the room, to go with her even downstairs;\nit gave her an opportunity which she immediately made use of,\nto say,\n\n\"It is as well, perhaps, that I have not had the possibility.\nHad you not been surrounded by other friends, I might have been\ntempted to introduce a subject, to ask questions, to speak more\nopenly than might have been strictly correct.--I feel that I should\ncertainly have been impertinent.\"\n\n\"Oh!\" cried Jane, with a blush and an hesitation which Emma thought\ninfinitely more becoming to her than all the elegance of all her\nusual composure--\"there would have been no danger.  The danger\nwould have been of my wearying you.  You could not have gratified\nme more than by expressing an interest--.  Indeed, Miss Woodhouse,\n(speaking more collectedly,) with the consciousness which I\nhave of misconduct, very great misconduct, it is particularly\nconsoling to me to know that those of my friends, whose good\nopinion is most worth preserving, are not disgusted to such a\ndegree as to--I have not time for half that I could wish to say.\nI long to make apologies, excuses, to urge something for myself.\nI feel it so very due.  But, unfortunately--in short, if your\ncompassion does not stand my friend--\"\n\n\"Oh! you are too scrupulous, indeed you are,\" cried Emma warmly,\nand taking her hand.  \"You owe me no apologies; and every body to\nwhom you might be supposed to owe them, is so perfectly satisfied,\nso delighted even--\"\n\n\"You are very kind, but I know what my manners were to you.--\nSo cold and artificial!--I had always a part to act.--It was a life\nof deceit!--I know that I must have disgusted you.\"\n\n\"Pray say no more.  I feel that all the apologies should be on my side.\nLet us forgive each other at once.  We must do whatever is to be\ndone quickest, and I think our feelings will lose no time there.\nI hope you have pleasant accounts from Windsor?\"\n\n\"Very.\"\n\n\"And the next news, I suppose, will be, that we are to lose you--\njust as I begin to know you.\"\n\n\"Oh! as to all that, of course nothing can be thought of yet.\nI am here till claimed by Colonel and Mrs. Campbell.\"\n\n\"Nothing can be actually settled yet, perhaps,\" replied Emma,\nsmiling--\"but, excuse me, it must be thought of.\"\n\nThe smile was returned as Jane answered,\n\n\"You are very right; it has been thought of.  And I will own\nto you, (I am sure it will be safe), that so far as our living\nwith Mr. Churchill at Enscombe, it is settled.  There must be\nthree months, at least, of deep mourning; but when they are over,\nI imagine there will be nothing more to wait for.\"\n\n\"Thank you, thank you.--This is just what I wanted to be assured of.--\nOh! if you knew how much I love every thing that is decided and open!--\nGood-bye, good-bye.\"\n\n\n\nCHAPTER XVII\n\n\nMrs. Weston's friends were all made happy by her safety;\nand if the satisfaction of her well-doing could be increased\nto Emma, it was by knowing her to be the mother of a little girl.\nShe had been decided in wishing for a Miss Weston.  She would\nnot acknowledge that it was with any view of making a match\nfor her, hereafter, with either of Isabella's sons; but she was\nconvinced that a daughter would suit both father and mother best.\nIt would be a great comfort to Mr. Weston, as he grew older--\nand even Mr. Weston might be growing older ten years hence--to have\nhis fireside enlivened by the sports and the nonsense, the freaks\nand the fancies of a child never banished from home; and Mrs. Weston--\nno one could doubt that a daughter would be most to her; and it\nwould be quite a pity that any one who so well knew how to teach,\nshould not have their powers in exercise again.\n\n\"She has had the advantage, you know, of practising on me,\"\nshe continued--\"like La Baronne d'Almane on La Comtesse d'Ostalis,\nin Madame de Genlis' Adelaide and Theodore, and we shall now see\nher own little Adelaide educated on a more perfect plan.\"\n\n\"That is,\" replied Mr. Knightley, \"she will indulge her even more\nthan she did you, and believe that she does not indulge her at all.\nIt will be the only difference.\"\n\n\"Poor child!\" cried Emma; \"at that rate, what will become of her?\"\n\n\"Nothing very bad.--The fate of thousands.  She will be disagreeable\nin infancy, and correct herself as she grows older.  I am losing\nall my bitterness against spoilt children, my dearest Emma.\nI, who am owing all my happiness to _you_, would not it be horrible\ningratitude in me to be severe on them?\"\n\nEmma laughed, and replied:  \"But I had the assistance of all\nyour endeavours to counteract the indulgence of other people.\nI doubt whether my own sense would have corrected me without it.\"\n\n\"Do you?--I have no doubt.  Nature gave you understanding:--\nMiss Taylor gave you principles.  You must have done well.\nMy interference was quite as likely to do harm as good.  It was\nvery natural for you to say, what right has he to lecture me?--\nand I am afraid very natural for you to feel that it was done\nin a disagreeable manner.  I do not believe I did you any good.\nThe good was all to myself, by making you an object of the tenderest\naffection to me.  I could not think about you so much without doating\non you, faults and all; and by dint of fancying so many errors,\nhave been in love with you ever since you were thirteen at least.\"\n\n\"I am sure you were of use to me,\" cried Emma.  \"I was very often\ninfluenced rightly by you--oftener than I would own at the time.\nI am very sure you did me good.  And if poor little Anna Weston is\nto be spoiled, it will be the greatest humanity in you to do as much\nfor her as you have done for me, except falling in love with her\nwhen she is thirteen.\"\n\n\"How often, when you were a girl, have you said to me, with one\nof your saucy looks--`Mr. Knightley, I am going to do so-and-so;\npapa says I may, or I have Miss Taylor's leave'--something which,\nyou knew, I did not approve.  In such cases my interference was giving\nyou two bad feelings instead of one.\"\n\n\"What an amiable creature I was!--No wonder you should hold\nmy speeches in such affectionate remembrance.\"\n\n\"`Mr. Knightley.'--You always called me, `Mr. Knightley;' and,\nfrom habit, it has not so very formal a sound.--And yet it is formal.\nI want you to call me something else, but I do not know what.\"\n\n\"I remember once calling you `George,' in one of my amiable fits,\nabout ten years ago.  I did it because I thought it would offend you;\nbut, as you made no objection, I never did it again.\"\n\n\"And cannot you call me `George' now?\"\n\n\"Impossible!--I never can call you any thing but `Mr. Knightley.'\nI will not promise even to equal the elegant terseness of Mrs. Elton,\nby calling you Mr. K.--But I will promise,\" she added presently,\nlaughing and blushing--\"I will promise to call you once by your\nChristian name.  I do not say when, but perhaps you may guess\nwhere;--in the building in which N. takes M. for better, for worse.\"\n\nEmma grieved that she could not be more openly just to one\nimportant service which his better sense would have rendered her,\nto the advice which would have saved her from the worst of all\nher womanly follies--her wilful intimacy with Harriet Smith;\nbut it was too tender a subject.--She could not enter on it.--\nHarriet was very seldom mentioned between them.  This, on his side,\nmight merely proceed from her not being thought of; but Emma\nwas rather inclined to attribute it to delicacy, and a suspicion,\nfrom some appearances, that their friendship were declining.\nShe was aware herself, that, parting under any other circumstances,\nthey certainly should have corresponded more, and that her\nintelligence would not have rested, as it now almost wholly did,\non Isabella's letters.  He might observe that it was so.  The pain\nof being obliged to practise concealment towards him, was very little\ninferior to the pain of having made Harriet unhappy.\n\nIsabella sent quite as good an account of her visitor as could\nbe expected; on her first arrival she had thought her out of spirits,\nwhich appeared perfectly natural, as there was a dentist to\nbe consulted; but, since that business had been over, she did not\nappear to find Harriet different from what she had known her before.--\nIsabella, to be sure, was no very quick observer; yet if Harriet\nhad not been equal to playing with the children, it would not have\nescaped her.  Emma's comforts and hopes were most agreeably carried on,\nby Harriet's being to stay longer; her fortnight was likely to be\na month at least.  Mr. and Mrs. John Knightley were to come down\nin August, and she was invited to remain till they could bring her back.\n\n\"John does not even mention your friend,\" said Mr. Knightley.\n\"Here is his answer, if you like to see it.\"\n\nIt was the answer to the communication of his intended marriage.\nEmma accepted it with a very eager hand, with an impatience all alive\nto know what he would say about it, and not at all checked by hearing\nthat her friend was unmentioned.\n\n\"John enters like a brother into my happiness,\" continued Mr. Knightley,\n\"but he is no complimenter; and though I well know him to have,\nlikewise, a most brotherly affection for you, he is so far from\nmaking flourishes, that any other young woman might think him rather\ncool in her praise.  But I am not afraid of your seeing what he writes.\"\n\n\"He writes like a sensible man,\" replied Emma, when she had read\nthe letter.  \"I honour his sincerity.  It is very plain that he\nconsiders the good fortune of the engagement as all on my side,\nbut that he is not without hope of my growing, in time, as worthy\nof your affection, as you think me already.  Had he said any thing\nto bear a different construction, I should not have believed him.\"\n\n\"My Emma, he means no such thing.  He only means--\"\n\n\"He and I should differ very little in our estimation of the two,\"\ninterrupted she, with a sort of serious smile--\"much less, perhaps,\nthan he is aware of, if we could enter without ceremony or reserve\non the subject.\"\n\n\"Emma, my dear Emma--\"\n\n\"Oh!\" she cried with more thorough gaiety, \"if you fancy your\nbrother does not do me justice, only wait till my dear father is in\nthe secret, and hear his opinion.  Depend upon it, he will be much\nfarther from doing _you_ justice.  He will think all the happiness,\nall the advantage, on your side of the question; all the merit\non mine.  I wish I may not sink into `poor Emma' with him at once.--\nHis tender compassion towards oppressed worth can go no farther.\"\n\n\"Ah!\" he cried, \"I wish your father might be half as easily convinced\nas John will be, of our having every right that equal worth can give,\nto be happy together.  I am amused by one part of John's letter--\ndid you notice it?--where he says, that my information did not take\nhim wholly by surprize, that he was rather in expectation of hearing\nsomething of the kind.\"\n\n\"If I understand your brother, he only means so far as your having\nsome thoughts of marrying.  He had no idea of me.  He seems perfectly\nunprepared for that.\"\n\n\"Yes, yes--but I am amused that he should have seen so far into\nmy feelings.  What has he been judging by?--I am not conscious\nof any difference in my spirits or conversation that could prepare\nhim at this time for my marrying any more than at another.--\nBut it was so, I suppose.  I dare say there was a difference when I\nwas staying with them the other day.  I believe I did not play\nwith the children quite so much as usual.  I remember one evening\nthe poor boys saying, `Uncle seems always tired now.'\"\n\nThe time was coming when the news must spread farther, and other persons'\nreception of it tried.  As soon as Mrs. Weston was sufficiently\nrecovered to admit Mr. Woodhouse's visits, Emma having it in view\nthat her gentle reasonings should be employed in the cause,\nresolved first to announce it at home, and then at Randalls.--\nBut how to break it to her father at last!--She had bound herself\nto do it, in such an hour of Mr. Knightley's absence, or when it\ncame to the point her heart would have failed her, and she must\nhave put it off; but Mr. Knightley was to come at such a time,\nand follow up the beginning she was to make.--She was forced\nto speak, and to speak cheerfully too.  She must not make it a more\ndecided subject of misery to him, by a melancholy tone herself.\nShe must not appear to think it a misfortune.--With all the spirits\nshe could command, she prepared him first for something strange,\nand then, in a few words, said, that if his consent and approbation\ncould be obtained--which, she trusted, would be attended with\nno difficulty, since it was a plan to promote the happiness of all--\nshe and Mr. Knightley meant to marry; by which means Hartfield\nwould receive the constant addition of that person's company\nwhom she knew he loved, next to his daughters and Mrs. Weston,\nbest in the world.\n\nPoor man!--it was at first a considerable shock to him, and he tried\nearnestly to dissuade her from it.  She was reminded, more than once,\nof having always said she would never marry, and assured that it\nwould be a great deal better for her to remain single; and told of\npoor Isabella, and poor Miss Taylor.--But it would not do.  Emma hung\nabout him affectionately, and smiled, and said it must be so; and that\nhe must not class her with Isabella and Mrs. Weston, whose marriages\ntaking them from Hartfield, had, indeed, made a melancholy change:\nbut she was not going from Hartfield; she should be always there;\nshe was introducing no change in their numbers or their comforts but\nfor the better; and she was very sure that he would be a great deal\nthe happier for having Mr. Knightley always at hand, when he were once\ngot used to the idea.--Did he not love Mr. Knightley very much?--\nHe would not deny that he did, she was sure.--Whom did he ever want\nto consult on business but Mr. Knightley?--Who was so useful to him,\nwho so ready to write his letters, who so glad to assist him?--\nWho so cheerful, so attentive, so attached to him?--Would not he\nlike to have him always on the spot?--Yes.  That was all very true.\nMr. Knightley could not be there too often; he should be glad to see\nhim every day;--but they did see him every day as it was.--Why could\nnot they go on as they had done?\n\nMr. Woodhouse could not be soon reconciled; but the worst was overcome,\nthe idea was given; time and continual repetition must do the rest.--\nTo Emma's entreaties and assurances succeeded Mr. Knightley's,\nwhose fond praise of her gave the subject even a kind of welcome;\nand he was soon used to be talked to by each, on every fair occasion.--\nThey had all the assistance which Isabella could give, by letters\nof the strongest approbation; and Mrs. Weston was ready,\non the first meeting, to consider the subject in the most\nserviceable light--first, as a settled, and, secondly, as a good one--\nwell aware of the nearly equal importance of the two recommendations\nto Mr. Woodhouse's mind.--It was agreed upon, as what was to be;\nand every body by whom he was used to be guided assuring him that\nit would be for his happiness; and having some feelings himself\nwhich almost admitted it, he began to think that some time or other--\nin another year or two, perhaps--it might not be so very bad\nif the marriage did take place.\n\nMrs. Weston was acting no part, feigning no feelings in all that she\nsaid to him in favour of the event.--She had been extremely surprized,\nnever more so, than when Emma first opened the affair to her;\nbut she saw in it only increase of happiness to all, and had\nno scruple in urging him to the utmost.--She had such a regard\nfor Mr. Knightley, as to think he deserved even her dearest Emma;\nand it was in every respect so proper, suitable, and unexceptionable\na connexion, and in one respect, one point of the highest importance,\nso peculiarly eligible, so singularly fortunate, that now it seemed\nas if Emma could not safely have attached herself to any other creature,\nand that she had herself been the stupidest of beings in not having\nthought of it, and wished it long ago.--How very few of those men\nin a rank of life to address Emma would have renounced their own\nhome for Hartfield!  And who but Mr. Knightley could know and bear\nwith Mr. Woodhouse, so as to make such an arrangement desirable!--\nThe difficulty of disposing of poor Mr. Woodhouse had been always\nfelt in her husband's plans and her own, for a marriage between Frank\nand Emma.  How to settle the claims of Enscombe and Hartfield had\nbeen a continual impediment--less acknowledged by Mr. Weston than\nby herself--but even he had never been able to finish the subject\nbetter than by saying--\"Those matters will take care of themselves;\nthe young people will find a way.\"  But here there was nothing to be\nshifted off in a wild speculation on the future.  It was all right,\nall open, all equal.  No sacrifice on any side worth the name.\nIt was a union of the highest promise of felicity in itself,\nand without one real, rational difficulty to oppose or delay it.\n\nMrs. Weston, with her baby on her knee, indulging in such reflections\nas these, was one of the happiest women in the world.  If any thing\ncould increase her delight, it was perceiving that the baby would\nsoon have outgrown its first set of caps.\n\nThe news was universally a surprize wherever it spread;\nand Mr. Weston had his five minutes share of it; but five minutes\nwere enough to familiarise the idea to his quickness of mind.--\nHe saw the advantages of the match, and rejoiced in them with all\nthe constancy of his wife; but the wonder of it was very soon nothing;\nand by the end of an hour he was not far from believing that he\nhad always foreseen it.\n\n\"It is to be a secret, I conclude,\" said he.  \"These matters are\nalways a secret, till it is found out that every body knows them.\nOnly let me be told when I may speak out.--I wonder whether Jane has\nany suspicion.\"\n\nHe went to Highbury the next morning, and satisfied himself on\nthat point.  He told her the news.  Was not she like a daughter,\nhis eldest daughter?--he must tell her; and Miss Bates being present,\nit passed, of course, to Mrs. Cole, Mrs. Perry, and Mrs. Elton,\nimmediately afterwards.  It was no more than the principals were\nprepared for; they had calculated from the time of its being known\nat Randalls, how soon it would be over Highbury; and were thinking\nof themselves, as the evening wonder in many a family circle,\nwith great sagacity.\n\nIn general, it was a very well approved match.  Some might think him,\nand others might think her, the most in luck.  One set might\nrecommend their all removing to Donwell, and leaving Hartfield\nfor the John Knightleys; and another might predict disagreements\namong their servants; but yet, upon the whole, there was no serious\nobjection raised, except in one habitation, the Vicarage.--There,\nthe surprize was not softened by any satisfaction.  Mr. Elton\ncared little about it, compared with his wife; he only hoped \"the\nyoung lady's pride would now be contented;\" and supposed \"she had\nalways meant to catch Knightley if she could;\" and, on the point\nof living at Hartfield, could daringly exclaim, \"Rather he than I!\"--\nBut Mrs. Elton was very much discomposed indeed.--\"Poor Knightley!\npoor fellow!--sad business for him.--She was extremely concerned;\nfor, though very eccentric, he had a thousand good qualities.--\nHow could he be so taken in?--Did not think him at all in love--\nnot in the least.--Poor Knightley!--There would be an end of all\npleasant intercourse with him.--How happy he had been to come and dine\nwith them whenever they asked him!  But that would be all over now.--\nPoor fellow!--No more exploring parties to Donwell made for _her_.\nOh! no; there would be a Mrs. Knightley to throw cold water on\nevery thing.--Extremely disagreeable!  But she was not at all sorry\nthat she had abused the housekeeper the other day.--Shocking plan,\nliving together.  It would never do.  She knew a family near Maple\nGrove who had tried it, and been obliged to separate before the end\nof the first quarter.\n\n\n\nCHAPTER XVIII\n\n\nTime passed on.  A few more to-morrows, and the party from London\nwould be arriving.  It was an alarming change; and Emma was thinking\nof it one morning, as what must bring a great deal to agitate and\ngrieve her, when Mr. Knightley came in, and distressing thoughts\nwere put by.  After the first chat of pleasure he was silent;\nand then, in a graver tone, began with,\n\n\"I have something to tell you, Emma; some news.\"\n\n\"Good or bad?\" said she, quickly, looking up in his face.\n\n\"I do not know which it ought to be called.\"\n\n\"Oh! good I am sure.--I see it in your countenance.  You are trying\nnot to smile.\"\n\n\"I am afraid,\" said he, composing his features, \"I am very much afraid,\nmy dear Emma, that you will not smile when you hear it.\"\n\n\"Indeed! but why so?--I can hardly imagine that any thing which\npleases or amuses you, should not please and amuse me too.\"\n\n\"There is one subject,\" he replied, \"I hope but one, on which\nwe do not think alike.\"  He paused a moment, again smiling,\nwith his eyes fixed on her face.  \"Does nothing occur to you?--\nDo not you recollect?--Harriet Smith.\"\n\nHer cheeks flushed at the name, and she felt afraid of something,\nthough she knew not what.\n\n\"Have you heard from her yourself this morning?\" cried he.\n\"You have, I believe, and know the whole.\"\n\n\"No, I have not; I know nothing; pray tell me.\"\n\n\"You are prepared for the worst, I see--and very bad it is.\nHarriet Smith marries Robert Martin.\"\n\nEmma gave a start, which did not seem like being prepared--\nand her eyes, in eager gaze, said, \"No, this is impossible!\"\nbut her lips were closed.\n\n\"It is so, indeed,\" continued Mr. Knightley; \"I have it from Robert\nMartin himself.  He left me not half an hour ago.\"\n\nShe was still looking at him with the most speaking amazement.\n\n\"You like it, my Emma, as little as I feared.--I wish our opinions were\nthe same.  But in time they will.  Time, you may be sure, will make\none or the other of us think differently; and, in the meanwhile,\nwe need not talk much on the subject.\"\n\n\"You mistake me, you quite mistake me,\" she replied, exerting herself.\n\"It is not that such a circumstance would now make me unhappy,\nbut I cannot believe it.  It seems an impossibility!--You cannot mean\nto say, that Harriet Smith has accepted Robert Martin.  You cannot\nmean that he has even proposed to her again--yet.  You only mean,\nthat he intends it.\"\n\n\"I mean that he has done it,\" answered Mr. Knightley, with smiling\nbut determined decision, \"and been accepted.\"\n\n\"Good God!\" she cried.--\"Well!\"--Then having recourse to her workbasket,\nin excuse for leaning down her face, and concealing all the\nexquisite feelings of delight and entertainment which she knew she\nmust be expressing, she added, \"Well, now tell me every thing;\nmake this intelligible to me.  How, where, when?--Let me know it all.\nI never was more surprized--but it does not make me unhappy,\nI assure you.--How--how has it been possible?\"\n\n\"It is a very simple story.  He went to town on business three days ago,\nand I got him to take charge of some papers which I was wanting\nto send to John.--He delivered these papers to John, at his chambers,\nand was asked by him to join their party the same evening to Astley's.\nThey were going to take the two eldest boys to Astley's. The party\nwas to be our brother and sister, Henry, John--and Miss Smith.\nMy friend Robert could not resist.  They called for him in their way;\nwere all extremely amused; and my brother asked him to dine with\nthem the next day--which he did--and in the course of that visit\n(as I understand) he found an opportunity of speaking to Harriet;\nand certainly did not speak in vain.--She made him, by her acceptance,\nas happy even as he is deserving.  He came down by yesterday's coach,\nand was with me this morning immediately after breakfast, to report\nhis proceedings, first on my affairs, and then on his own.\nThis is all that I can relate of the how, where, and when.\nYour friend Harriet will make a much longer history when you see her.--\nShe will give you all the minute particulars, which only woman's\nlanguage can make interesting.--In our communications we deal only\nin the great.--However, I must say, that Robert Martin's heart seemed\nfor _him_, and to _me_, very overflowing; and that he did mention,\nwithout its being much to the purpose, that on quitting their\nbox at Astley's, my brother took charge of Mrs. John Knightley\nand little John, and he followed with Miss Smith and Henry;\nand that at one time they were in such a crowd, as to make Miss Smith\nrather uneasy.\"\n\nHe stopped.--Emma dared not attempt any immediate reply.  To speak,\nshe was sure would be to betray a most unreasonable degree\nof happiness.  She must wait a moment, or he would think her mad.\nHer silence disturbed him; and after observing her a little while,\nhe added,\n\n\"Emma, my love, you said that this circumstance would not now make\nyou unhappy; but I am afraid it gives you more pain than you expected.\nHis situation is an evil--but you must consider it as what satisfies\nyour friend; and I will answer for your thinking better and better\nof him as you know him more.  His good sense and good principles would\ndelight you.--As far as the man is concerned, you could not wish your\nfriend in better hands.  His rank in society I would alter if I could,\nwhich is saying a great deal I assure you, Emma.--You laugh at me\nabout William Larkins; but I could quite as ill spare Robert Martin.\"\n\nHe wanted her to look up and smile; and having now brought herself\nnot to smile too broadly--she did--cheerfully answering,\n\n\"You need not be at any pains to reconcile me to the match.  I think\nHarriet is doing extremely well.  _Her_ connexions may be worse than _his_.\nIn respectability of character, there can be no doubt that they are.\nI have been silent from surprize merely, excessive surprize.\nYou cannot imagine how suddenly it has come on me! how peculiarly\nunprepared I was!--for I had reason to believe her very lately more\ndetermined against him, much more, than she was before.\"\n\n\"You ought to know your friend best,\" replied Mr. Knightley;\n\"but I should say she was a good-tempered, soft-hearted girl,\nnot likely to be very, very determined against any young man who told\nher he loved her.\"\n\nEmma could not help laughing as she answered, \"Upon my word,\nI believe you know her quite as well as I do.--But, Mr. Knightley,\nare you perfectly sure that she has absolutely and downright\n_accepted_ him.  I could suppose she might in time--but can she already?--\nDid not you misunderstand him?--You were both talking of other things;\nof business, shows of cattle, or new drills--and might not you,\nin the confusion of so many subjects, mistake him?--It was not\nHarriet's hand that he was certain of--it was the dimensions of some\nfamous ox.\"\n\nThe contrast between the countenance and air of Mr. Knightley and\nRobert Martin was, at this moment, so strong to Emma's feelings,\nand so strong was the recollection of all that had so recently\npassed on Harriet's side, so fresh the sound of those words,\nspoken with such emphasis, \"No, I hope I know better than to think\nof Robert Martin,\" that she was really expecting the intelligence\nto prove, in some measure, premature.  It could not be otherwise.\n\n\"Do you dare say this?\" cried Mr. Knightley.  \"Do you dare to suppose\nme so great a blockhead, as not to know what a man is talking of?--\nWhat do you deserve?\"\n\n\"Oh!  I always deserve the best treatment, because I never put\nup with any other; and, therefore, you must give me a plain,\ndirect answer.  Are you quite sure that you understand the terms\non which Mr. Martin and Harriet now are?\"\n\n\"I am quite sure,\" he replied, speaking very distinctly, \"that he\ntold me she had accepted him; and that there was no obscurity,\nnothing doubtful, in the words he used; and I think I can give you\na proof that it must be so.  He asked my opinion as to what he\nwas now to do.  He knew of no one but Mrs. Goddard to whom he\ncould apply for information of her relations or friends.  Could I\nmention any thing more fit to be done, than to go to Mrs. Goddard?\nI assured him that I could not.  Then, he said, he would endeavour\nto see her in the course of this day.\"\n\n\"I am perfectly satisfied,\" replied Emma, with the brightest smiles,\n\"and most sincerely wish them happy.\"\n\n\"You are materially changed since we talked on this subject before.\"\n\n\"I hope so--for at that time I was a fool.\"\n\n\"And I am changed also; for I am now very willing to grant you all\nHarriet's good qualities.  I have taken some pains for your sake,\nand for Robert Martin's sake, (whom I have always had reason to believe\nas much in love with her as ever,) to get acquainted with her.\nI have often talked to her a good deal.  You must have seen that\nI did.  Sometimes, indeed, I have thought you were half suspecting me\nof pleading poor Martin's cause, which was never the case; but, from all\nmy observations, I am convinced of her being an artless, amiable girl,\nwith very good notions, very seriously good principles, and placing\nher happiness in the affections and utility of domestic life.--\nMuch of this, I have no doubt, she may thank you for.\"\n\n\"Me!\" cried Emma, shaking her head.--\"Ah! poor Harriet!\"\n\nShe checked herself, however, and submitted quietly to a little\nmore praise than she deserved.\n\nTheir conversation was soon afterwards closed by the entrance of\nher father.  She was not sorry.  She wanted to be alone.  Her mind\nwas in a state of flutter and wonder, which made it impossible for her\nto be collected.  She was in dancing, singing, exclaiming spirits;\nand till she had moved about, and talked to herself, and laughed\nand reflected, she could be fit for nothing rational.\n\nHer father's business was to announce James's being gone out to put\nthe horses to, preparatory to their now daily drive to Randalls;\nand she had, therefore, an immediate excuse for disappearing.\n\nThe joy, the gratitude, the exquisite delight of her sensations\nmay be imagined.  The sole grievance and alloy thus removed in the\nprospect of Harriet's welfare, she was really in danger of becoming\ntoo happy for security.--What had she to wish for?  Nothing, but to\ngrow more worthy of him, whose intentions and judgment had been\never so superior to her own.  Nothing, but that the lessons\nof her past folly might teach her humility and circumspection in future.\n\nSerious she was, very serious in her thankfulness, and in her resolutions;\nand yet there was no preventing a laugh, sometimes in the very midst\nof them.  She must laugh at such a close!  Such an end of the doleful\ndisappointment of five weeks back!  Such a heart--such a Harriet!\n\nNow there would be pleasure in her returning--Every thing would\nbe a pleasure.  It would be a great pleasure to know Robert Martin.\n\nHigh in the rank of her most serious and heartfelt felicities,\nwas the reflection that all necessity of concealment from\nMr. Knightley would soon be over.  The disguise, equivocation,\nmystery, so hateful to her to practise, might soon be over.\nShe could now look forward to giving him that full and perfect\nconfidence which her disposition was most ready to welcome as a duty.\n\nIn the gayest and happiest spirits she set forward with her father;\nnot always listening, but always agreeing to what he said;\nand, whether in speech or silence, conniving at the comfortable\npersuasion of his being obliged to go to Randalls every day,\nor poor Mrs. Weston would be disappointed.\n\nThey arrived.--Mrs. Weston was alone in the drawing-room:--\nbut hardly had they been told of the baby, and Mr. Woodhouse\nreceived the thanks for coming, which he asked for, when a glimpse\nwas caught through the blind, of two figures passing near the window.\n\n\"It is Frank and Miss Fairfax,\" said Mrs. Weston.  \"I was just\ngoing to tell you of our agreeable surprize in seeing him arrive\nthis morning.  He stays till to-morrow, and Miss Fairfax has been\npersuaded to spend the day with us.--They are coming in, I hope.\"\n\nIn half a minute they were in the room.  Emma was extremely glad\nto see him--but there was a degree of confusion--a number of\nembarrassing recollections on each side.  They met readily and smiling,\nbut with a consciousness which at first allowed little to be said;\nand having all sat down again, there was for some time such a blank\nin the circle, that Emma began to doubt whether the wish now indulged,\nwhich she had long felt, of seeing Frank Churchill once more,\nand of seeing him with Jane, would yield its proportion of pleasure.\nWhen Mr. Weston joined the party, however, and when the baby\nwas fetched, there was no longer a want of subject or animation--\nor of courage and opportunity for Frank Churchill to draw near her\nand say,\n\n\"I have to thank you, Miss Woodhouse, for a very kind forgiving\nmessage in one of Mrs. Weston's letters.  I hope time has not made\nyou less willing to pardon.  I hope you do not retract what you\nthen said.\"\n\n\"No, indeed,\" cried Emma, most happy to begin, \"not in the least.\nI am particularly glad to see and shake hands with you--and to give\nyou joy in person.\"\n\nHe thanked her with all his heart, and continued some time to speak\nwith serious feeling of his gratitude and happiness.\n\n\"Is not she looking well?\" said he, turning his eyes towards Jane.\n\"Better than she ever used to do?--You see how my father and\nMrs. Weston doat upon her.\"\n\nBut his spirits were soon rising again, and with laughing eyes,\nafter mentioning the expected return of the Campbells, he named\nthe name of Dixon.--Emma blushed, and forbade its being pronounced\nin her hearing.\n\n\"I can never think of it,\" she cried, \"without extreme shame.\"\n\n\"The shame,\" he answered, \"is all mine, or ought to be.  But is it\npossible that you had no suspicion?--I mean of late.  Early, I know,\nyou had none.\"\n\n\"I never had the smallest, I assure you.\"\n\n\"That appears quite wonderful.  I was once very near--and I wish I had--\nit would have been better.  But though I was always doing wrong things,\nthey were very bad wrong things, and such as did me no service.--\nIt would have been a much better transgression had I broken the bond\nof secrecy and told you every thing.\"\n\n\"It is not now worth a regret,\" said Emma.\n\n\"I have some hope,\" resumed he, \"of my uncle's being persuaded\nto pay a visit at Randalls; he wants to be introduced to her.\nWhen the Campbells are returned, we shall meet them in London,\nand continue there, I trust, till we may carry her northward.--But now,\nI am at such a distance from her--is not it hard, Miss Woodhouse?--\nTill this morning, we have not once met since the day of reconciliation.\nDo not you pity me?\"\n\nEmma spoke her pity so very kindly, that with a sudden accession\nof gay thought, he cried,\n\n\"Ah! by the bye,\" then sinking his voice, and looking demure for\nthe moment--\"I hope Mr. Knightley is well?\"  He paused.--She coloured\nand laughed.--\"I know you saw my letter, and think you may remember\nmy wish in your favour.  Let me return your congratulations.--\nI assure you that I have heard the news with the warmest interest\nand satisfaction.--He is a man whom I cannot presume to praise.\"\n\nEmma was delighted, and only wanted him to go on in the same style;\nbut his mind was the next moment in his own concerns and with his\nown Jane, and his next words were,\n\n\"Did you ever see such a skin?--such smoothness! such delicacy!--\nand yet without being actually fair.--One cannot call her fair.\nIt is a most uncommon complexion, with her dark eye-lashes and hair--\na most distinguishing complexion!  So peculiarly the lady in it.--\nJust colour enough for beauty.\"\n\n\"I have always admired her complexion,\" replied Emma, archly; \"but do not\nI remember the time when you found fault with her for being so pale?--\nWhen we first began to talk of her.--Have you quite forgotten?\"\n\n\"Oh! no--what an impudent dog I was!--How could I dare--\"\n\nBut he laughed so heartily at the recollection, that Emma could\nnot help saying,\n\n\"I do suspect that in the midst of your perplexities at that time,\nyou had very great amusement in tricking us all.--I am sure you had.--\nI am sure it was a consolation to you.\"\n\n\"Oh! no, no, no--how can you suspect me of such a thing?\nI was the most miserable wretch!\"\n\n\"Not quite so miserable as to be insensible to mirth.  I am sure it\nwas a source of high entertainment to you, to feel that you were taking\nus all in.--Perhaps I am the readier to suspect, because, to tell\nyou the truth, I think it might have been some amusement to myself\nin the same situation.  I think there is a little likeness between us.\"\n\nHe bowed.\n\n\"If not in our dispositions,\" she presently added, with a look of\ntrue sensibility, \"there is a likeness in our destiny; the destiny\nwhich bids fair to connect us with two characters so much superior\nto our own.\"\n\n\"True, true,\" he answered, warmly.  \"No, not true on your side.  You can\nhave no superior, but most true on mine.--She is a complete angel.\nLook at her.  Is not she an angel in every gesture?  Observe the turn\nof her throat.  Observe her eyes, as she is looking up at my father.--\nYou will be glad to hear (inclining his head, and whispering seriously)\nthat my uncle means to give her all my aunt's jewels.  They are to be\nnew set.  I am resolved to have some in an ornament for the head.\nWill not it be beautiful in her dark hair?\"\n\n\"Very beautiful, indeed,\" replied Emma; and she spoke so kindly,\nthat he gratefully burst out,\n\n\"How delighted I am to see you again! and to see you in such\nexcellent looks!--I would not have missed this meeting for the world.\nI should certainly have called at Hartfield, had you failed to come.\"\n\nThe others had been talking of the child, Mrs. Weston giving an\naccount of a little alarm she had been under, the evening before,\nfrom the infant's appearing not quite well.  She believed she had\nbeen foolish, but it had alarmed her, and she had been within half\na minute of sending for Mr. Perry.  Perhaps she ought to be ashamed,\nbut Mr. Weston had been almost as uneasy as herself.--In ten minutes,\nhowever, the child had been perfectly well again.  This was\nher history; and particularly interesting it was to Mr. Woodhouse,\nwho commended her very much for thinking of sending for Perry,\nand only regretted that she had not done it.  \"She should always send\nfor Perry, if the child appeared in the slightest degree disordered,\nwere it only for a moment.  She could not be too soon alarmed,\nnor send for Perry too often.  It was a pity, perhaps, that he\nhad not come last night; for, though the child seemed well now,\nvery well considering, it would probably have been better if Perry\nhad seen it.\"\n\nFrank Churchill caught the name.\n\n\"Perry!\" said he to Emma, and trying, as he spoke, to catch Miss\nFairfax's eye.  \"My friend Mr. Perry!  What are they saying\nabout Mr. Perry?--Has he been here this morning?--And how does\nhe travel now?--Has he set up his carriage?\"\n\nEmma soon recollected, and understood him; and while she joined\nin the laugh, it was evident from Jane's countenance that she\ntoo was really hearing him, though trying to seem deaf.\n\n\"Such an extraordinary dream of mine!\" he cried.  \"I can never think\nof it without laughing.--She hears us, she hears us, Miss Woodhouse.\nI see it in her cheek, her smile, her vain attempt to frown.\nLook at her.  Do not you see that, at this instant, the very passage\nof her own letter, which sent me the report, is passing under her eye--\nthat the whole blunder is spread before her--that she can attend to\nnothing else, though pretending to listen to the others?\"\n\nJane was forced to smile completely, for a moment; and the smile\npartly remained as she turned towards him, and said in a conscious,\nlow, yet steady voice,\n\n\"How you can bear such recollections, is astonishing to me!--\nThey _will_ sometimes obtrude--but how you can court them!\"\n\nHe had a great deal to say in return, and very entertainingly;\nbut Emma's feelings were chiefly with Jane, in the argument; and on\nleaving Randalls, and falling naturally into a comparison of the two men,\nshe felt, that pleased as she had been to see Frank Churchill,\nand really regarding him as she did with friendship, she had never\nbeen more sensible of Mr. Knightley's high superiority of character.\nThe happiness of this most happy day, received its completion, in the\nanimated contemplation of his worth which this comparison produced.\n\n\n\nCHAPTER XIX\n\n\nIf Emma had still, at intervals, an anxious feeling for Harriet,\na momentary doubt of its being possible for her to be really cured\nof her attachment to Mr. Knightley, and really able to accept\nanother man from unbiased inclination, it was not long that she\nhad to suffer from the recurrence of any such uncertainty.\nA very few days brought the party from London, and she had no\nsooner an opportunity of being one hour alone with Harriet,\nthan she became perfectly satisfied--unaccountable as it was!--\nthat Robert Martin had thoroughly supplanted Mr. Knightley,\nand was now forming all her views of happiness.\n\nHarriet was a little distressed--did look a little foolish at first:\nbut having once owned that she had been presumptuous and silly,\nand self-deceived, before, her pain and confusion seemed to die\naway with the words, and leave her without a care for the past,\nand with the fullest exultation in the present and future; for, as to\nher friend's approbation, Emma had instantly removed every fear of\nthat nature, by meeting her with the most unqualified congratulations.--\nHarriet was most happy to give every particular of the evening at\nAstley's, and the dinner the next day; she could dwell on it all\nwith the utmost delight.  But what did such particulars explain?--\nThe fact was, as Emma could now acknowledge, that Harriet had\nalways liked Robert Martin; and that his continuing to love her had\nbeen irresistible.--Beyond this, it must ever be unintelligible\nto Emma.\n\nThe event, however, was most joyful; and every day was giving her\nfresh reason for thinking so.--Harriet's parentage became known.\nShe proved to be the daughter of a tradesman, rich enough to afford\nher the comfortable maintenance which had ever been hers, and decent\nenough to have always wished for concealment.--Such was the blood\nof gentility which Emma had formerly been so ready to vouch for!--\nIt was likely to be as untainted, perhaps, as the blood of many\na gentleman:  but what a connexion had she been preparing for\nMr. Knightley--or for the Churchills--or even for Mr. Elton!--\nThe stain of illegitimacy, unbleached by nobility or wealth,\nwould have been a stain indeed.\n\nNo objection was raised on the father's side; the young man was\ntreated liberally; it was all as it should be:  and as Emma became\nacquainted with Robert Martin, who was now introduced at Hartfield,\nshe fully acknowledged in him all the appearance of sense and worth\nwhich could bid fairest for her little friend.  She had no doubt\nof Harriet's happiness with any good-tempered man; but with him,\nand in the home he offered, there would be the hope of more,\nof security, stability, and improvement.  She would be placed in the\nmidst of those who loved her, and who had better sense than herself;\nretired enough for safety, and occupied enough for cheerfulness.\nShe would be never led into temptation, nor left for it to find her out.\nShe would be respectable and happy; and Emma admitted her to be\nthe luckiest creature in the world, to have created so steady and\npersevering an affection in such a man;--or, if not quite the luckiest,\nto yield only to herself.\n\nHarriet, necessarily drawn away by her engagements with the Martins,\nwas less and less at Hartfield; which was not to be regretted.--\nThe intimacy between her and Emma must sink; their friendship must\nchange into a calmer sort of goodwill; and, fortunately, what ought\nto be, and must be, seemed already beginning, and in the most gradual,\nnatural manner.\n\nBefore the end of September, Emma attended Harriet to church, and saw\nher hand bestowed on Robert Martin with so complete a satisfaction,\nas no remembrances, even connected with Mr. Elton as he stood\nbefore them, could impair.--Perhaps, indeed, at that time she\nscarcely saw Mr. Elton, but as the clergyman whose blessing at the\naltar might next fall on herself.--Robert Martin and Harriet Smith,\nthe latest couple engaged of the three, were the first to be married.\n\nJane Fairfax had already quitted Highbury, and was restored to the\ncomforts of her beloved home with the Campbells.--The Mr. Churchills\nwere also in town; and they were only waiting for November.\n\nThe intermediate month was the one fixed on, as far as they dared,\nby Emma and Mr. Knightley.--They had determined that their marriage\nought to be concluded while John and Isabella were still at Hartfield,\nto allow them the fortnight's absence in a tour to the seaside,\nwhich was the plan.--John and Isabella, and every other friend,\nwere agreed in approving it.  But Mr. Woodhouse--how was Mr. Woodhouse\nto be induced to consent?--he, who had never yet alluded to their\nmarriage but as a distant event.\n\nWhen first sounded on the subject, he was so miserable, that they\nwere almost hopeless.--A second allusion, indeed, gave less pain.--\nHe began to think it was to be, and that he could not prevent it--\na very promising step of the mind on its way to resignation.\nStill, however, he was not happy.  Nay, he appeared so much otherwise,\nthat his daughter's courage failed.  She could not bear to see\nhim suffering, to know him fancying himself neglected; and though\nher understanding almost acquiesced in the assurance of both the\nMr. Knightleys, that when once the event were over, his distress\nwould be soon over too, she hesitated--she could not proceed.\n\nIn this state of suspense they were befriended, not by any sudden\nillumination of Mr. Woodhouse's mind, or any wonderful change of his\nnervous system, but by the operation of the same system in another way.--\nMrs. Weston's poultry-house was robbed one night of all her turkeys--\nevidently by the ingenuity of man.  Other poultry-yards in the\nneighbourhood also suffered.--Pilfering was _housebreaking_ to\nMr. Woodhouse's fears.--He was very uneasy; and but for the sense\nof his son-in-law's protection, would have been under wretched alarm\nevery night of his life.  The strength, resolution, and presence\nof mind of the Mr. Knightleys, commanded his fullest dependence.\nWhile either of them protected him and his, Hartfield was safe.--\nBut Mr. John Knightley must be in London again by the end of the\nfirst week in November.\n\nThe result of this distress was, that, with a much more voluntary,\ncheerful consent than his daughter had ever presumed to hope for at\nthe moment, she was able to fix her wedding-day--and Mr. Elton was\ncalled on, within a month from the marriage of Mr. and Mrs. Robert\nMartin, to join the hands of Mr. Knightley and Miss Woodhouse.\n\nThe wedding was very much like other weddings, where the parties\nhave no taste for finery or parade; and Mrs. Elton, from the\nparticulars detailed by her husband, thought it all extremely shabby,\nand very inferior to her own.--\"Very little white satin, very few\nlace veils; a most pitiful business!--Selina would stare when she\nheard of it.\"--But, in spite of these deficiencies, the wishes,\nthe hopes, the confidence, the predictions of the small band\nof true friends who witnessed the ceremony, were fully answered\nin the perfect happiness of the union.\n\n\nFINIS\n"
  },
  {
    "path": "CH05/CH05a_BERT_fine-tuning.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"accelerator\":\"GPU\",\"colab\":{\"name\":\"CH05a_BERT_fine-tuning.ipynb\",\"provenance\":[],\"collapsed_sections\":[],\"machine_shape\":\"hm\"},\"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.8.5\"},\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"039e6432a6f14183917059d202f09771\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_9458b25457d7479ea482db9644985ef3\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_a13ed5b6ac594fd1b3a8014b55d6f2eb\",\"IPY_MODEL_688789419e74414ebabbeae1f2cd894d\"]}},\"9458b25457d7479ea482db9644985ef3\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a13ed5b6ac594fd1b3a8014b55d6f2eb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_b385f33637f2441c8cb43d3a49d6e95c\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":231508,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":231508,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_03e8d968300a4b6aa6fe20758acc76df\"}},\"688789419e74414ebabbeae1f2cd894d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_fdc7029f70f549abadfd1c5a8d93aa88\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 232k/232k [00:21&lt;00:00, 10.8kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_55f7e6b46f934a2d8baead6bc7d8a7c9\"}},\"b385f33637f2441c8cb43d3a49d6e95c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"03e8d968300a4b6aa6fe20758acc76df\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"fdc7029f70f549abadfd1c5a8d93aa88\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"55f7e6b46f934a2d8baead6bc7d8a7c9\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"231bf3f90c7d4089b0362b2abacab3d7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_79e8ece3481148f8b2f9f150fa115c11\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_f92c6ce909a84f6a9002f653c8f314a4\",\"IPY_MODEL_bb96e9bea3f845aa8df3d2f13e17b3e4\"]}},\"79e8ece3481148f8b2f9f150fa115c11\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f92c6ce909a84f6a9002f653c8f314a4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_e6f7d42c511f477ea3af02ffd1fa6f58\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":466062,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":466062,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c04b8a6379c3467ca66e58856867ff8b\"}},\"bb96e9bea3f845aa8df3d2f13e17b3e4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_665ea65db1bf4374a94754e2e3b94083\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 466k/466k [00:03&lt;00:00, 133kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_597a22ba95b142a8afc11a5fad0de80a\"}},\"e6f7d42c511f477ea3af02ffd1fa6f58\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"c04b8a6379c3467ca66e58856867ff8b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"665ea65db1bf4374a94754e2e3b94083\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"597a22ba95b142a8afc11a5fad0de80a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"78655aac76e44ba38d83e094b4019388\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_0a5acdd657f945e4ac9354ee49afb3c9\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_ae4299529b2b449b8643bed8b29665b1\",\"IPY_MODEL_fab3824377c14982800209b85feb0c0a\"]}},\"0a5acdd657f945e4ac9354ee49afb3c9\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ae4299529b2b449b8643bed8b29665b1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_a11513d538b54eee8723807995360c5c\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":28,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":28,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d2853e13946a453c957d5de4f07e89a1\"}},\"fab3824377c14982800209b85feb0c0a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_f68387dbb24d4ff4b396733befdfce74\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 28.0/28.0 [00:16&lt;00:00, 1.73B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_8c88927297f54bc2a24675fa7b05b9d1\"}},\"a11513d538b54eee8723807995360c5c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"d2853e13946a453c957d5de4f07e89a1\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f68387dbb24d4ff4b396733befdfce74\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"8c88927297f54bc2a24675fa7b05b9d1\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"1f05a40b2b66402ea0469ad8c7329cc7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_6ef5712b066d4de18b014116337234d2\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_bf87bb8973fe48bda54f0ba292cce4d1\",\"IPY_MODEL_4b1ea0a99b71494f92466bfbefcb4fe6\"]}},\"6ef5712b066d4de18b014116337234d2\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"bf87bb8973fe48bda54f0ba292cce4d1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_2843a77e11804e2c93cb0b7982983692\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":442,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":442,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_caacd43bea0844b39e8bd88e5d8085b7\"}},\"4b1ea0a99b71494f92466bfbefcb4fe6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_c252434ba91d49bbbaee718b40f66250\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 442/442 [00:01&lt;00:00, 404B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_95e35b64461143f481dd7027cfd7b125\"}},\"2843a77e11804e2c93cb0b7982983692\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"caacd43bea0844b39e8bd88e5d8085b7\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c252434ba91d49bbbaee718b40f66250\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"95e35b64461143f481dd7027cfd7b125\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7fee82b99ba44d5a8ce3b1be0cb1e67a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_16143a30701d419785c365b9110e0213\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_47036678a52646f5a7d51fbbe52c275b\",\"IPY_MODEL_d49e4eaaf787438d8e94303d940a635d\"]}},\"16143a30701d419785c365b9110e0213\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"47036678a52646f5a7d51fbbe52c275b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_7e01798832e6483f905229c95cb5b984\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":267967963,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":267967963,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e7ecfe77151044209de642ef13489c10\"}},\"d49e4eaaf787438d8e94303d940a635d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_033f6cbad05b41e5890237626865a361\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 268M/268M [00:13&lt;00:00, 19.7MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_2de3d099bc3549ea8bd3e6a352cecac5\"}},\"7e01798832e6483f905229c95cb5b984\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"e7ecfe77151044209de642ef13489c10\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"033f6cbad05b41e5890237626865a361\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"2de3d099bc3549ea8bd3e6a352cecac5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f74fbff04dbc4ba3bea44a01c2070f16\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_c28dfdc1331a42028affcfb35b8f5d54\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_6e946f63cebe4bae8dfa48fe3a1c4828\",\"IPY_MODEL_bb13fa465e384786b16c11e1b2ba74d3\"]}},\"c28dfdc1331a42028affcfb35b8f5d54\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"6e946f63cebe4bae8dfa48fe3a1c4828\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_1231f5fb21ba49ddaad5eee253943849\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1916,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1916,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_f398d3ba3bf14d40b90304512ca6fc3e\"}},\"bb13fa465e384786b16c11e1b2ba74d3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_0e23aaec2bb349d3a61efda6746ec982\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 4.75k/? [00:10&lt;00:00, 448B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_6dcd7f3d0d8a403bb5fdb66306db6e73\"}},\"1231f5fb21ba49ddaad5eee253943849\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"f398d3ba3bf14d40b90304512ca6fc3e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"0e23aaec2bb349d3a61efda6746ec982\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"6dcd7f3d0d8a403bb5fdb66306db6e73\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"165b2f8e1116454fb29990cc960a4bbb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_fdd311179284450385f39500cbff9bbb\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_b3dd91137bb9443a8c1ea6267dbd1d80\",\"IPY_MODEL_be0652b3362649deb7f0fb3c1f39f2a7\"]}},\"fdd311179284450385f39500cbff9bbb\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"b3dd91137bb9443a8c1ea6267dbd1d80\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_f17414dc21cd4f1881d10cf4cd48d967\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1054,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1054,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c4bd58c77ba747b1b06994f397d43ac1\"}},\"be0652b3362649deb7f0fb3c1f39f2a7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_545e2177f72040738de73a825baba068\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 2.17k/? [00:00&lt;00:00, 38.6kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_92881d19dd464d3da8048f693c8515a5\"}},\"f17414dc21cd4f1881d10cf4cd48d967\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"c4bd58c77ba747b1b06994f397d43ac1\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"545e2177f72040738de73a825baba068\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"92881d19dd464d3da8048f693c8515a5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ec54c30b81f44954b0c60be88ffddf47\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_f1c8ba0dcf694076bb631029ff0868dc\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_3bc0146974f84cf7823f47b243a7acc2\",\"IPY_MODEL_ff9d864ead564c5fba8f642f67e8dca1\"]}},\"f1c8ba0dcf694076bb631029ff0868dc\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"3bc0146974f84cf7823f47b243a7acc2\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_30bc9b9e5d4d49dfaf83a30d89787b18\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":84125825,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":84125825,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_17dcf5d75ce240e9ac550c51e61d0330\"}},\"ff9d864ead564c5fba8f642f67e8dca1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_5bb8f7f28c924dec844092cc1da86c72\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 84.1M/84.1M [00:09&lt;00:00, 9.08MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_938bf047d9c34d768bc85d8d47c22c68\"}},\"30bc9b9e5d4d49dfaf83a30d89787b18\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"17dcf5d75ce240e9ac550c51e61d0330\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"5bb8f7f28c924dec844092cc1da86c72\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"938bf047d9c34d768bc85d8d47c22c68\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d9bcf0e073274fddb16f54574a5b1b48\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_830b67c906414058b07c169358cc59e8\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_61203bca01634586bdc83bb9682c0dd4\",\"IPY_MODEL_d7bf0e56924e4dd39cde9914c53cb360\"]}},\"830b67c906414058b07c169358cc59e8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"61203bca01634586bdc83bb9682c0dd4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_3432ac012eb14fc6b035e63f4516ccec\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_167f812811124900a82c083466806af4\"}},\"d7bf0e56924e4dd39cde9914c53cb360\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_0796587a3c6145978aeec36b3da68d48\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 25000/0 [00:04&lt;00:00, 1201.73 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a5b903b09325491eb794940b45b072a6\"}},\"3432ac012eb14fc6b035e63f4516ccec\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"167f812811124900a82c083466806af4\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"0796587a3c6145978aeec36b3da68d48\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"a5b903b09325491eb794940b45b072a6\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"b80d5cd8470a439daedcfcff99569506\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_17ce4ed76dfa418f9f17b0600e785329\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_88d6a06d6fdd4f3bbcf1d4e9983f16ac\",\"IPY_MODEL_3751f71b92594cf9a022fc132ba0f7c5\"]}},\"17ce4ed76dfa418f9f17b0600e785329\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"88d6a06d6fdd4f3bbcf1d4e9983f16ac\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_d4d0181731614882b51efb401bcf3650\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d5e8825f738b4f81b9af5d0b18544620\"}},\"3751f71b92594cf9a022fc132ba0f7c5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_f07e0adc97bd42f6ab446a1fef9b9917\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 25000/0 [00:02&lt;00:00, 11423.08 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_98616f7738a94e62b41db301610f89a0\"}},\"d4d0181731614882b51efb401bcf3650\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"d5e8825f738b4f81b9af5d0b18544620\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f07e0adc97bd42f6ab446a1fef9b9917\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"98616f7738a94e62b41db301610f89a0\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"14cbabd64d524dd2bf3ffc4f4a121d69\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_ab828dd3fff8463da5fb511e253a4acf\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_98febe9bd82245f3abe9d121a3c0914b\",\"IPY_MODEL_f5190dc768e6487099e1ad2896b3ff8c\"]}},\"ab828dd3fff8463da5fb511e253a4acf\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"98febe9bd82245f3abe9d121a3c0914b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_e7cba4a98e9a46bfbe7e506cbe1981ab\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_bc2967f766304c62ad7dce0f44328c9f\"}},\"f5190dc768e6487099e1ad2896b3ff8c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_2bfd6c57c4e64d3c9750dea9fdbe9756\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 50000/0 [00:04&lt;00:00, 12268.39 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_fdc65af0342646b1bc0475336e8bbfba\"}},\"e7cba4a98e9a46bfbe7e506cbe1981ab\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"bc2967f766304c62ad7dce0f44328c9f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"2bfd6c57c4e64d3c9750dea9fdbe9756\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"fdc65af0342646b1bc0475336e8bbfba\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"dfbcb2c951134d5e98b9ccacdf0b09f5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_fc3b3b4b0178445593712ab8b745919f\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_472e69e5750b4c3ca3ea89fda96fc5dc\",\"IPY_MODEL_32cb03fdf6a34028bd7aa8d942a307c6\"]}},\"fc3b3b4b0178445593712ab8b745919f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"472e69e5750b4c3ca3ea89fda96fc5dc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_d03436c2ef924ee9878af419bf8936fb\",\"_dom_classes\":[],\"description\":\"100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":4,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":4,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c44909e1ae244943bc91e939871df1e6\"}},\"32cb03fdf6a34028bd7aa8d942a307c6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_814943ac8f1640bdbd9a85be81ad70a4\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 4/4 [00:13&lt;00:00,  3.40s/ba]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c66d391d055746d8b44c1c5cff8bed68\"}},\"d03436c2ef924ee9878af419bf8936fb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"c44909e1ae244943bc91e939871df1e6\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"814943ac8f1640bdbd9a85be81ad70a4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"c66d391d055746d8b44c1c5cff8bed68\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"1c1f60b5eff7409db937413e8bbbf4c2\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_50dda90fde9c4e1a80bdfe70944272b8\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_a163e110716b43b29a69997dfe5b20d7\",\"IPY_MODEL_14d73fee82fa44499216e0a917c9897e\"]}},\"50dda90fde9c4e1a80bdfe70944272b8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a163e110716b43b29a69997dfe5b20d7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_d0dee38ac5ef4329b3788d0ebdf846bd\",\"_dom_classes\":[],\"description\":\"100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_4147df48a35344178a3cb6108208935a\"}},\"14d73fee82fa44499216e0a917c9897e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_7952bd9695a54d26b750b629a05215dd\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1/1 [00:00&lt;00:00,  1.10ba/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_5913cd0b1bf24cf58d045c0c7bc4d0f8\"}},\"d0dee38ac5ef4329b3788d0ebdf846bd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"4147df48a35344178a3cb6108208935a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7952bd9695a54d26b750b629a05215dd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"5913cd0b1bf24cf58d045c0c7bc4d0f8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"20834d9e5f5e483186bc6a1f110ff67c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_409226d70af94b5d9e4ad02601eb2974\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_b4d2020d434d44b78bc6d283058131bc\",\"IPY_MODEL_9da82a3d83a44f6b8f4167d624190d8f\"]}},\"409226d70af94b5d9e4ad02601eb2974\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"b4d2020d434d44b78bc6d283058131bc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_14c54a79ec15437397f94257dd5c5d71\",\"_dom_classes\":[],\"description\":\"100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_11a173333b3e444b91d80338cd87c0ff\"}},\"9da82a3d83a44f6b8f4167d624190d8f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_d2fe41b819fb434aa21b79d72e45c12d\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1/1 [00:11&lt;00:00, 11.19s/ba]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_1fa1568a5ff747a6b2ff4726d49ae632\"}},\"14c54a79ec15437397f94257dd5c5d71\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"11a173333b3e444b91d80338cd87c0ff\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d2fe41b819fb434aa21b79d72e45c12d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"1fa1568a5ff747a6b2ff4726d49ae632\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}}},\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"Xr50xchZunFD\"},\"source\":[\"# Fine-tuning BERT model for Binary Text Classification\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"tszbPHwjFfkP\"},\"source\":[\"## Preparation for Google Collab\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"BRzRpdbLDDKv\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625395992357,\"user_tz\":-180,\"elapsed\":28655,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"c1071feb-2e6f-4b52-ff96-02e28efc1b61\"},\"source\":[\"import torch, os\\n\",\"from google.colab import drive\\n\",\"drive.mount('/content/drive')\\n\",\"os.listdir()\\n\",\"os.chdir(\\\"drive/MyDrive/akademi/Packt NLP with Transformers/CH05\\\")\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Mounted at /content/drive\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"4wW9BBcot81Q\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396004941,\"user_tz\":-180,\"elapsed\":10529,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"d69918bf-5840-4ad8-a563-ffe3ce22d50a\"},\"source\":[\"!pip install transformers datasets\"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Collecting transformers\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/fd/1a/41c644c963249fd7f3836d926afa1e3f1cc234a1c40d80c5f03ad8f6f1b2/transformers-4.8.2-py3-none-any.whl (2.5MB)\\n\",\"\\u001b[K     |████████████████████████████████| 2.5MB 4.2MB/s \\n\",\"\\u001b[?25hCollecting datasets\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/08/a2/d4e1024c891506e1cee8f9d719d20831bac31cb5b7416983c4d2f65a6287/datasets-1.8.0-py3-none-any.whl (237kB)\\n\",\"\\u001b[K     |████████████████████████████████| 245kB 17.7MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.5.0)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\"Collecting huggingface-hub==0.0.12\\n\",\"  Downloading https://files.pythonhosted.org/packages/2f/ee/97e253668fda9b17e968b3f97b2f8e53aa0127e8807d24a547687423fe0b/huggingface_hub-0.0.12-py3-none-any.whl\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Collecting sacremoses\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/ee/67241dc87f266093c533a2d4d3d69438e57d7a90abb216fa076e7d475d4a/sacremoses-0.0.45-py3-none-any.whl (895kB)\\n\",\"\\u001b[K     |████████████████████████████████| 901kB 23.4MB/s \\n\",\"\\u001b[?25hCollecting tokenizers<0.11,>=0.10.1\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d4/e2/df3543e8ffdab68f5acc73f613de9c2b155ac47f162e725dcac87c521c11/tokenizers-0.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.3MB)\\n\",\"\\u001b[K     |████████████████████████████████| 3.3MB 33.5MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from datasets) (1.1.5)\\n\",\"Requirement already satisfied: multiprocess in /usr/local/lib/python3.7/dist-packages (from datasets) (0.70.12.2)\\n\",\"Collecting fsspec\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/0e/3a/666e63625a19883ae8e1674099e631f9737bd5478c4790e5ad49c5ac5261/fsspec-2021.6.1-py3-none-any.whl (115kB)\\n\",\"\\u001b[K     |████████████████████████████████| 122kB 47.6MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: pyarrow<4.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (3.0.0)\\n\",\"Collecting xxhash\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/7d/4f/0a862cad26aa2ed7a7cd87178cbbfa824fc1383e472d63596a0d018374e7/xxhash-2.0.2-cp37-cp37m-manylinux2010_x86_64.whl (243kB)\\n\",\"\\u001b[K     |████████████████████████████████| 245kB 32.5MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from datasets) (0.3.4)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Requirement already satisfied: typing-extensions>=3.6.4; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2021.5.30)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2018.9)\\n\",\"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2.8.1)\\n\",\"Installing collected packages: huggingface-hub, sacremoses, tokenizers, transformers, fsspec, xxhash, datasets\\n\",\"Successfully installed datasets-1.8.0 fsspec-2021.6.1 huggingface-hub-0.0.12 sacremoses-0.0.45 tokenizers-0.10.3 transformers-4.8.2 xxhash-2.0.2\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"zRXnOvJYWtJS\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396009817,\"user_tz\":-180,\"elapsed\":614,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from torch import cuda\\n\",\"device = 'cuda' if cuda.is_available() else 'cpu'\"],\"execution_count\":3,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"BZv1tmcx_pNo\"},\"source\":[\"### Loading pre-trained model and tokenizer\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":367,\"referenced_widgets\":[\"039e6432a6f14183917059d202f09771\",\"9458b25457d7479ea482db9644985ef3\",\"a13ed5b6ac594fd1b3a8014b55d6f2eb\",\"688789419e74414ebabbeae1f2cd894d\",\"b385f33637f2441c8cb43d3a49d6e95c\",\"03e8d968300a4b6aa6fe20758acc76df\",\"fdc7029f70f549abadfd1c5a8d93aa88\",\"55f7e6b46f934a2d8baead6bc7d8a7c9\",\"231bf3f90c7d4089b0362b2abacab3d7\",\"79e8ece3481148f8b2f9f150fa115c11\",\"f92c6ce909a84f6a9002f653c8f314a4\",\"bb96e9bea3f845aa8df3d2f13e17b3e4\",\"e6f7d42c511f477ea3af02ffd1fa6f58\",\"c04b8a6379c3467ca66e58856867ff8b\",\"665ea65db1bf4374a94754e2e3b94083\",\"597a22ba95b142a8afc11a5fad0de80a\",\"78655aac76e44ba38d83e094b4019388\",\"0a5acdd657f945e4ac9354ee49afb3c9\",\"ae4299529b2b449b8643bed8b29665b1\",\"fab3824377c14982800209b85feb0c0a\",\"a11513d538b54eee8723807995360c5c\",\"d2853e13946a453c957d5de4f07e89a1\",\"f68387dbb24d4ff4b396733befdfce74\",\"8c88927297f54bc2a24675fa7b05b9d1\",\"1f05a40b2b66402ea0469ad8c7329cc7\",\"6ef5712b066d4de18b014116337234d2\",\"bf87bb8973fe48bda54f0ba292cce4d1\",\"4b1ea0a99b71494f92466bfbefcb4fe6\",\"2843a77e11804e2c93cb0b7982983692\",\"caacd43bea0844b39e8bd88e5d8085b7\",\"c252434ba91d49bbbaee718b40f66250\",\"95e35b64461143f481dd7027cfd7b125\",\"7fee82b99ba44d5a8ce3b1be0cb1e67a\",\"16143a30701d419785c365b9110e0213\",\"47036678a52646f5a7d51fbbe52c275b\",\"d49e4eaaf787438d8e94303d940a635d\",\"7e01798832e6483f905229c95cb5b984\",\"e7ecfe77151044209de642ef13489c10\",\"033f6cbad05b41e5890237626865a361\",\"2de3d099bc3549ea8bd3e6a352cecac5\"]},\"id\":\"DE1Rwh2BtnwT\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396029653,\"user_tz\":-180,\"elapsed\":17573,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"a38ff2f2-44f7-4a94-fb66-5a38b59d38d5\"},\"source\":[\"from transformers import DistilBertTokenizerFast, DistilBertForSequenceClassification\\n\",\"model_path= 'distilbert-base-uncased'\\n\",\"tokenizer = DistilBertTokenizerFast.from_pretrained(model_path)\\n\",\"model = DistilBertForSequenceClassification.from_pretrained(model_path, id2label={0:\\\"NEG\\\", 1:\\\"POS\\\"}, label2id={\\\"NEG\\\":0, \\\"POS\\\":1})\"],\"execution_count\":4,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"039e6432a6f14183917059d202f09771\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=231508.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"231bf3f90c7d4089b0362b2abacab3d7\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=466062.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"78655aac76e44ba38d83e094b4019388\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=28.0, style=ProgressStyle(description_w…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"1f05a40b2b66402ea0469ad8c7329cc7\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=442.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"7fee82b99ba44d5a8ce3b1be0cb1e67a\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=267967963.0, style=ProgressStyle(descri…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"stream\",\"text\":[\"Some weights of the model checkpoint at distilbert-base-uncased were not used when initializing DistilBertForSequenceClassification: ['vocab_transform.weight', 'vocab_layer_norm.weight', 'vocab_projector.weight', 'vocab_transform.bias', 'vocab_projector.bias', 'vocab_layer_norm.bias']\\n\",\"- This IS expected if you are initializing DistilBertForSequenceClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing DistilBertForSequenceClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\",\"Some weights of DistilBertForSequenceClassification were not initialized from the model checkpoint at distilbert-base-uncased and are newly initialized: ['classifier.weight', 'classifier.bias', 'pre_classifier.weight', 'pre_classifier.bias']\\n\",\"You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"licNE7yQS8uw\"},\"source\":[\"## Loading popular IMDB dataset\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":252,\"referenced_widgets\":[\"f74fbff04dbc4ba3bea44a01c2070f16\",\"c28dfdc1331a42028affcfb35b8f5d54\",\"6e946f63cebe4bae8dfa48fe3a1c4828\",\"bb13fa465e384786b16c11e1b2ba74d3\",\"1231f5fb21ba49ddaad5eee253943849\",\"f398d3ba3bf14d40b90304512ca6fc3e\",\"0e23aaec2bb349d3a61efda6746ec982\",\"6dcd7f3d0d8a403bb5fdb66306db6e73\",\"165b2f8e1116454fb29990cc960a4bbb\",\"fdd311179284450385f39500cbff9bbb\",\"b3dd91137bb9443a8c1ea6267dbd1d80\",\"be0652b3362649deb7f0fb3c1f39f2a7\",\"f17414dc21cd4f1881d10cf4cd48d967\",\"c4bd58c77ba747b1b06994f397d43ac1\",\"545e2177f72040738de73a825baba068\",\"92881d19dd464d3da8048f693c8515a5\",\"ec54c30b81f44954b0c60be88ffddf47\",\"f1c8ba0dcf694076bb631029ff0868dc\",\"3bc0146974f84cf7823f47b243a7acc2\",\"ff9d864ead564c5fba8f642f67e8dca1\",\"30bc9b9e5d4d49dfaf83a30d89787b18\",\"17dcf5d75ce240e9ac550c51e61d0330\",\"5bb8f7f28c924dec844092cc1da86c72\",\"938bf047d9c34d768bc85d8d47c22c68\",\"d9bcf0e073274fddb16f54574a5b1b48\",\"830b67c906414058b07c169358cc59e8\",\"61203bca01634586bdc83bb9682c0dd4\",\"d7bf0e56924e4dd39cde9914c53cb360\",\"3432ac012eb14fc6b035e63f4516ccec\",\"167f812811124900a82c083466806af4\",\"0796587a3c6145978aeec36b3da68d48\",\"a5b903b09325491eb794940b45b072a6\",\"b80d5cd8470a439daedcfcff99569506\",\"17ce4ed76dfa418f9f17b0600e785329\",\"88d6a06d6fdd4f3bbcf1d4e9983f16ac\",\"3751f71b92594cf9a022fc132ba0f7c5\",\"d4d0181731614882b51efb401bcf3650\",\"d5e8825f738b4f81b9af5d0b18544620\",\"f07e0adc97bd42f6ab446a1fef9b9917\",\"98616f7738a94e62b41db301610f89a0\",\"14cbabd64d524dd2bf3ffc4f4a121d69\",\"ab828dd3fff8463da5fb511e253a4acf\",\"98febe9bd82245f3abe9d121a3c0914b\",\"f5190dc768e6487099e1ad2896b3ff8c\",\"e7cba4a98e9a46bfbe7e506cbe1981ab\",\"bc2967f766304c62ad7dce0f44328c9f\",\"2bfd6c57c4e64d3c9750dea9fdbe9756\",\"fdc65af0342646b1bc0475336e8bbfba\"]},\"id\":\"w2HdjLQEXTos\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396090786,\"user_tz\":-180,\"elapsed\":56296,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"cc00a09e-bcbc-4dbd-d6ba-ffa3965436b3\"},\"source\":[\"from datasets import load_dataset\\n\",\"\\n\",\"# to take entire dataset from original train 25 K AND TEST 25K\\n\",\"'''\\n\",\"imdb_train= load_dataset('imdb', split=\\\"train\\\")\\n\",\"imdb_test= load_dataset('imdb', split=\\\"test[:6250]+test[-6250:]\\\")\\n\",\"imdb_val= load_dataset('imdb', split=\\\"test[6250:12500]+test[-12500:-6250]\\\")\\n\",\"\\n\",\"'''\\n\",\"# to take smaller portion 4K for train, 1K for test and 1K for validation\\n\",\"imdb_train= load_dataset('imdb', split=\\\"train[:2000]+train[-2000:]\\\")\\n\",\"imdb_test= load_dataset('imdb', split=\\\"test[:500]+test[-500:]\\\")\\n\",\"imdb_val= load_dataset('imdb', split=\\\"test[500:1000]+test[-1000:-500]\\\")\\n\"],\"execution_count\":5,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"f74fbff04dbc4ba3bea44a01c2070f16\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1916.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"165b2f8e1116454fb29990cc960a4bbb\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1054.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\",\"Downloading and preparing dataset imdb/plain_text (download: 80.23 MiB, generated: 127.02 MiB, post-processed: Unknown size, total: 207.25 MiB) to /root/.cache/huggingface/datasets/imdb/plain_text/1.0.0/e3c66f1788a67a89c7058d97ff62b6c30531e05b549de56d3ab91891f0561f9a...\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"ec54c30b81f44954b0c60be88ffddf47\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=84125825.0, style=ProgressStyle(descrip…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"d9bcf0e073274fddb16f54574a5b1b48\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\r\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"b80d5cd8470a439daedcfcff99569506\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\r\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"14cbabd64d524dd2bf3ffc4f4a121d69\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\rDataset imdb downloaded and prepared to /root/.cache/huggingface/datasets/imdb/plain_text/1.0.0/e3c66f1788a67a89c7058d97ff62b6c30531e05b549de56d3ab91891f0561f9a. Subsequent calls will reuse this data.\\n\"],\"name\":\"stdout\"},{\"output_type\":\"stream\",\"text\":[\"Reusing dataset imdb (/root/.cache/huggingface/datasets/imdb/plain_text/1.0.0/e3c66f1788a67a89c7058d97ff62b6c30531e05b549de56d3ab91891f0561f9a)\\n\",\"Reusing dataset imdb (/root/.cache/huggingface/datasets/imdb/plain_text/1.0.0/e3c66f1788a67a89c7058d97ff62b6c30531e05b549de56d3ab91891f0561f9a)\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"_kfFp7nkbki4\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396090787,\"user_tz\":-180,\"elapsed\":22,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"05acc959-6c55-4918-e9cc-bde120f8802f\"},\"source\":[\"imdb_train.shape, imdb_test.shape, imdb_val.shape\"],\"execution_count\":6,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"((4000, 2), (1000, 2), (1000, 2))\"]},\"metadata\":{\"tags\":[]},\"execution_count\":6}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":164,\"referenced_widgets\":[\"dfbcb2c951134d5e98b9ccacdf0b09f5\",\"fc3b3b4b0178445593712ab8b745919f\",\"472e69e5750b4c3ca3ea89fda96fc5dc\",\"32cb03fdf6a34028bd7aa8d942a307c6\",\"d03436c2ef924ee9878af419bf8936fb\",\"c44909e1ae244943bc91e939871df1e6\",\"814943ac8f1640bdbd9a85be81ad70a4\",\"c66d391d055746d8b44c1c5cff8bed68\",\"1c1f60b5eff7409db937413e8bbbf4c2\",\"50dda90fde9c4e1a80bdfe70944272b8\",\"a163e110716b43b29a69997dfe5b20d7\",\"14d73fee82fa44499216e0a917c9897e\",\"d0dee38ac5ef4329b3788d0ebdf846bd\",\"4147df48a35344178a3cb6108208935a\",\"7952bd9695a54d26b750b629a05215dd\",\"5913cd0b1bf24cf58d045c0c7bc4d0f8\",\"20834d9e5f5e483186bc6a1f110ff67c\",\"409226d70af94b5d9e4ad02601eb2974\",\"b4d2020d434d44b78bc6d283058131bc\",\"9da82a3d83a44f6b8f4167d624190d8f\",\"14c54a79ec15437397f94257dd5c5d71\",\"11a173333b3e444b91d80338cd87c0ff\",\"d2fe41b819fb434aa21b79d72e45c12d\",\"1fa1568a5ff747a6b2ff4726d49ae632\"]},\"id\":\"WpuCsmUVXgm9\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396100497,\"user_tz\":-180,\"elapsed\":3345,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"cfd96b57-1f5c-41bb-c79a-e046973dcdd9\"},\"source\":[\"enc_train = imdb_train.map(lambda e: tokenizer( e['text'], padding=True, truncation=True), batched=True, batch_size=1000) \\n\",\"enc_test =  imdb_test.map(lambda e: tokenizer( e['text'], padding=True, truncation=True), batched=True, batch_size=1000) \\n\",\"enc_val =   imdb_val.map(lambda e: tokenizer( e['text'], padding=True, truncation=True), batched=True, batch_size=1000) \"],\"execution_count\":8,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"dfbcb2c951134d5e98b9ccacdf0b09f5\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, max=4.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"1c1f60b5eff7409db937413e8bbbf4c2\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"20834d9e5f5e483186bc6a1f110ff67c\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":419},\"id\":\"-4lY_LHTXgpa\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396107583,\"user_tz\":-180,\"elapsed\":2603,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"79392180-6ca4-4d7b-fbd6-d8f46e550976\"},\"source\":[\"import pandas as pd\\n\",\"pd.DataFrame(enc_train)\"],\"execution_count\":9,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>attention_mask</th>\\n\",\"      <th>input_ids</th>\\n\",\"      <th>label</th>\\n\",\"      <th>text</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>[101, 22953, 2213, 4381, 2152, 2003, 1037, 947...</td>\\n\",\"      <td>1</td>\\n\",\"      <td>Bromwell High is a cartoon comedy. It ran at t...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>[101, 11573, 2791, 1006, 2030, 2160, 24913, 20...</td>\\n\",\"      <td>1</td>\\n\",\"      <td>Homelessness (or Houselessness as George Carli...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>[101, 8235, 2058, 1011, 3772, 2011, 23920, 575...</td>\\n\",\"      <td>1</td>\\n\",\"      <td>Brilliant over-acting by Lesley Ann Warren. Be...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>[101, 2023, 2003, 4089, 1996, 2087, 2104, 9250...</td>\\n\",\"      <td>1</td>\\n\",\"      <td>This is easily the most underrated film inn th...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>[101, 2023, 2003, 2025, 1996, 5171, 11463, 837...</td>\\n\",\"      <td>1</td>\\n\",\"      <td>This is not the typical Mel Brooks film. It wa...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>...</th>\\n\",\"      <td>...</td>\\n\",\"      <td>...</td>\\n\",\"      <td>...</td>\\n\",\"      <td>...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3995</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>[101, 2875, 1996, 2203, 1997, 1996, 3185, 1010...</td>\\n\",\"      <td>0</td>\\n\",\"      <td>Towards the end of the movie, I felt it was to...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3996</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>[101, 2023, 2003, 1996, 2785, 1997, 3185, 2008...</td>\\n\",\"      <td>0</td>\\n\",\"      <td>This is the kind of movie that my enemies cont...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3997</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>[101, 1045, 2387, 1005, 6934, 1005, 2197, 2305...</td>\\n\",\"      <td>0</td>\\n\",\"      <td>I saw 'Descent' last night at the Stockholm Fi...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3998</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>[101, 2070, 3152, 2008, 2017, 4060, 2039, 2005...</td>\\n\",\"      <td>0</td>\\n\",\"      <td>Some films that you pick up for a pound turn o...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3999</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>[101, 2023, 2003, 2028, 1997, 1996, 12873, 435...</td>\\n\",\"      <td>0</td>\\n\",\"      <td>This is one of the dumbest films, I've ever se...</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"<p>4000 rows × 4 columns</p>\\n\",\"</div>\"],\"text/plain\":[\"                                         attention_mask  ...                                               text\\n\",\"0     [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  Bromwell High is a cartoon comedy. It ran at t...\\n\",\"1     [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  Homelessness (or Houselessness as George Carli...\\n\",\"2     [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  Brilliant over-acting by Lesley Ann Warren. Be...\\n\",\"3     [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  This is easily the most underrated film inn th...\\n\",\"4     [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  This is not the typical Mel Brooks film. It wa...\\n\",\"...                                                 ...  ...                                                ...\\n\",\"3995  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  Towards the end of the movie, I felt it was to...\\n\",\"3996  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  This is the kind of movie that my enemies cont...\\n\",\"3997  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  I saw 'Descent' last night at the Stockholm Fi...\\n\",\"3998  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  Some films that you pick up for a pound turn o...\\n\",\"3999  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  This is one of the dumbest films, I've ever se...\\n\",\"\\n\",\"[4000 rows x 4 columns]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":9}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"ACNK9ZQKD4mt\"},\"source\":[\"## Preparing training settings with TrainingArguments and Trainer class\\n\",\"\\n\",\"TrainingArguments is the subset of the arguments we use in our example scripts **which relate to the training loop\\n\",\"itself**.\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"OZD1jnhFWEd5\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396111857,\"user_tz\":-180,\"elapsed\":1541,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from transformers import TrainingArguments, Trainer\\n\",\"training_args = TrainingArguments(\\n\",\"    # The output directory where the model predictions and checkpoints will be written\\n\",\"    output_dir='./MyIMDBModel', \\n\",\"    do_train=True,\\n\",\"    do_eval=True,\\n\",\"    #  The number of epochs, defaults to 3.0 \\n\",\"    num_train_epochs=3,              \\n\",\"    per_device_train_batch_size=32,  \\n\",\"    per_device_eval_batch_size=64,\\n\",\"    # Number of steps used for a linear warmup\\n\",\"    warmup_steps=100,                \\n\",\"    weight_decay=0.01,\\n\",\"    logging_strategy='steps', \\n\",\"    # TensorBoard log directory               \\n\",\"    logging_dir='./logs',            \\n\",\"    logging_steps=50,\\n\",\"    # other options : no, steps\\n\",\"    evaluation_strategy=\\\"steps\\\",\\n\",\"    save_strategy=\\\"epoch\\\",\\n\",\"    fp16=cuda.is_available(),\\n\",\"    load_best_model_at_end=True\\n\",\")\"],\"execution_count\":10,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"HUn5uFHkbPEb\"},\"source\":[\"Let's design our evaluation metrics as follows:\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"8Ct3v6RZZSmj\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396117168,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from sklearn.metrics import accuracy_score, precision_recall_fscore_support\\n\",\"def compute_metrics(pred):\\n\",\"    labels = pred.label_ids\\n\",\"    preds = pred.predictions.argmax(-1)\\n\",\"    precision, recall, f1, _ = precision_recall_fscore_support(labels, preds, average='macro')\\n\",\"    acc = accuracy_score(labels, preds)\\n\",\"    return {\\n\",\"        'Accuracy': acc,\\n\",\"        'F1': f1,\\n\",\"        'Precision': precision,\\n\",\"        'Recall': recall\\n\",\"    }\"],\"execution_count\":11,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"ztS1YQcqWEgZ\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396126034,\"user_tz\":-180,\"elapsed\":6920,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"4cc11ff8-39d9-4cd1-d399-1a86eac460bd\"},\"source\":[\"trainer = Trainer(\\n\",\"    # the pre-trained model that will be fine-tuned \\n\",\"    model=model,\\n\",\"     # training arguments that we defined above                        \\n\",\"    args=training_args,\\n\",\"    # training and validation dataset                 \\n\",\"    train_dataset=enc_train,         \\n\",\"    eval_dataset=enc_val,            \\n\",\"    compute_metrics= compute_metrics\\n\",\")\"],\"execution_count\":12,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Using amp fp16 backend\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"5DfXPD8Lznss\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396129126,\"user_tz\":-180,\"elapsed\":597,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":12,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"x354spCgdVEX\"},\"source\":[\"Trainer class is an optimized tool for Transformer to organize training and evalulation process for PyTorch and Tensorflow.\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":1000},\"id\":\"zF7FUYOzWFFT\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396735577,\"user_tz\":-180,\"elapsed\":604576,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"8f823448-142e-4720-9b19-d9b1a0ba6676\"},\"source\":[\"results=trainer.train()\"],\"execution_count\":13,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"The following columns in the training set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: text.\\n\",\"***** Running training *****\\n\",\"  Num examples = 4000\\n\",\"  Num Epochs = 3\\n\",\"  Instantaneous batch size per device = 32\\n\",\"  Total train batch size (w. parallel, distributed & accumulation) = 32\\n\",\"  Gradient Accumulation steps = 1\\n\",\"  Total optimization steps = 375\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"text/html\":[\"\\n\",\"    <div>\\n\",\"      \\n\",\"      <progress value='375' max='375' style='width:300px; height:20px; vertical-align: middle;'></progress>\\n\",\"      [375/375 10:03, Epoch 3/3]\\n\",\"    </div>\\n\",\"    <table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: left;\\\">\\n\",\"      <th>Step</th>\\n\",\"      <th>Training Loss</th>\\n\",\"      <th>Validation Loss</th>\\n\",\"      <th>Accuracy</th>\\n\",\"      <th>F1</th>\\n\",\"      <th>Precision</th>\\n\",\"      <th>Recall</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <td>50</td>\\n\",\"      <td>0.653400</td>\\n\",\"      <td>0.445251</td>\\n\",\"      <td>0.824000</td>\\n\",\"      <td>0.821341</td>\\n\",\"      <td>0.844511</td>\\n\",\"      <td>0.824000</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>100</td>\\n\",\"      <td>0.362200</td>\\n\",\"      <td>0.256781</td>\\n\",\"      <td>0.907000</td>\\n\",\"      <td>0.906992</td>\\n\",\"      <td>0.907132</td>\\n\",\"      <td>0.907000</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>150</td>\\n\",\"      <td>0.293500</td>\\n\",\"      <td>0.377014</td>\\n\",\"      <td>0.851000</td>\\n\",\"      <td>0.848786</td>\\n\",\"      <td>0.872835</td>\\n\",\"      <td>0.851000</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>200</td>\\n\",\"      <td>0.224300</td>\\n\",\"      <td>0.262217</td>\\n\",\"      <td>0.906000</td>\\n\",\"      <td>0.905976</td>\\n\",\"      <td>0.906416</td>\\n\",\"      <td>0.906000</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>250</td>\\n\",\"      <td>0.165300</td>\\n\",\"      <td>0.232591</td>\\n\",\"      <td>0.917000</td>\\n\",\"      <td>0.916976</td>\\n\",\"      <td>0.917483</td>\\n\",\"      <td>0.917000</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>300</td>\\n\",\"      <td>0.076100</td>\\n\",\"      <td>0.301682</td>\\n\",\"      <td>0.917000</td>\\n\",\"      <td>0.916996</td>\\n\",\"      <td>0.917082</td>\\n\",\"      <td>0.917000</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>350</td>\\n\",\"      <td>0.093500</td>\\n\",\"      <td>0.298886</td>\\n\",\"      <td>0.918000</td>\\n\",\"      <td>0.917984</td>\\n\",\"      <td>0.918328</td>\\n\",\"      <td>0.918000</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table><p>\"],\"text/plain\":[\"<IPython.core.display.HTML object>\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: text.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1000\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./MyIMDBModel/checkpoint-50\\n\",\"Configuration saved in ./MyIMDBModel/checkpoint-50/config.json\\n\",\"Model weights saved in ./MyIMDBModel/checkpoint-50/pytorch_model.bin\\n\",\"/usr/local/lib/python3.7/dist-packages/transformers/trainer.py:1299: FutureWarning: Non-finite norm encountered in torch.nn.utils.clip_grad_norm_; continuing anyway. Note that the default behavior will change in a future release to error out if a non-finite total norm is encountered. At that point, setting error_if_nonfinite=false will be required to retain the old behavior.\\n\",\"  args.max_grad_norm,\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: text.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1000\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./MyIMDBModel/checkpoint-100\\n\",\"Configuration saved in ./MyIMDBModel/checkpoint-100/config.json\\n\",\"Model weights saved in ./MyIMDBModel/checkpoint-100/pytorch_model.bin\\n\",\"Saving model checkpoint to ./MyIMDBModel/checkpoint-125\\n\",\"Configuration saved in ./MyIMDBModel/checkpoint-125/config.json\\n\",\"Model weights saved in ./MyIMDBModel/checkpoint-125/pytorch_model.bin\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: text.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1000\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./MyIMDBModel/checkpoint-150\\n\",\"Configuration saved in ./MyIMDBModel/checkpoint-150/config.json\\n\",\"Model weights saved in ./MyIMDBModel/checkpoint-150/pytorch_model.bin\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: text.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1000\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./MyIMDBModel/checkpoint-200\\n\",\"Configuration saved in ./MyIMDBModel/checkpoint-200/config.json\\n\",\"Model weights saved in ./MyIMDBModel/checkpoint-200/pytorch_model.bin\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: text.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1000\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./MyIMDBModel/checkpoint-250\\n\",\"Configuration saved in ./MyIMDBModel/checkpoint-250/config.json\\n\",\"Model weights saved in ./MyIMDBModel/checkpoint-250/pytorch_model.bin\\n\",\"Saving model checkpoint to ./MyIMDBModel/checkpoint-250\\n\",\"Configuration saved in ./MyIMDBModel/checkpoint-250/config.json\\n\",\"Model weights saved in ./MyIMDBModel/checkpoint-250/pytorch_model.bin\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: text.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1000\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./MyIMDBModel/checkpoint-300\\n\",\"Configuration saved in ./MyIMDBModel/checkpoint-300/config.json\\n\",\"Model weights saved in ./MyIMDBModel/checkpoint-300/pytorch_model.bin\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: text.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1000\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./MyIMDBModel/checkpoint-350\\n\",\"Configuration saved in ./MyIMDBModel/checkpoint-350/config.json\\n\",\"Model weights saved in ./MyIMDBModel/checkpoint-350/pytorch_model.bin\\n\",\"Saving model checkpoint to ./MyIMDBModel/checkpoint-375\\n\",\"Configuration saved in ./MyIMDBModel/checkpoint-375/config.json\\n\",\"Model weights saved in ./MyIMDBModel/checkpoint-375/pytorch_model.bin\\n\",\"\\n\",\"\\n\",\"Training completed. Do not forget to share your model on huggingface.co/models =)\\n\",\"\\n\",\"\\n\",\"Loading best model from ./MyIMDBModel/checkpoint-250 (score: 0.23259127140045166).\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"w_LLlhK5i69Q\"},\"source\":[\"* For small portion\\n\",\"\\n\",\"We have 4K training examples and the batch size is 32, which means each epoch takes 4k/32 = 125 steps. For 3 epoc, this will have 375 steps as wee see in the output.\\n\",\"\\n\",\"* For full dataset\\n\",\"\\n\",\"We have 25K training  examples with the batch size pf 32, so we will have 25K/32 ~=782 (roughly) steps. for 3 epoch we will have 2346 steps to run as seen in the progress bar \"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"bWmDkDVWIzzO\"},\"source\":[\"Trainer model keeps the best model at the end. Lets evaluate the model on the train/test/validation\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":366},\"id\":\"MfBHiik5XMmf\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396803684,\"user_tz\":-180,\"elapsed\":53768,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"b61af1f8-3696-4462-aaf3-a3b7d4479081\"},\"source\":[\"q=[trainer.evaluate(eval_dataset=data) for data in [enc_train, enc_val, enc_test]]\\n\",\"pd.DataFrame(q, index=[\\\"train\\\",\\\"val\\\",\\\"test\\\"]).iloc[:,:5]\"],\"execution_count\":14,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: text.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 4000\\n\",\"  Batch size = 64\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"text/html\":[\"\\n\",\"    <div>\\n\",\"      \\n\",\"      <progress value='95' max='63' style='width:300px; height:20px; vertical-align: middle;'></progress>\\n\",\"      [63/63 00:53]\\n\",\"    </div>\\n\",\"    \"],\"text/plain\":[\"<IPython.core.display.HTML object>\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: text.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1000\\n\",\"  Batch size = 64\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: text.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1000\\n\",\"  Batch size = 64\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>eval_loss</th>\\n\",\"      <th>eval_Accuracy</th>\\n\",\"      <th>eval_F1</th>\\n\",\"      <th>eval_Precision</th>\\n\",\"      <th>eval_Recall</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>train</th>\\n\",\"      <td>0.077374</td>\\n\",\"      <td>0.97975</td>\\n\",\"      <td>0.979750</td>\\n\",\"      <td>0.979751</td>\\n\",\"      <td>0.97975</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>val</th>\\n\",\"      <td>0.232591</td>\\n\",\"      <td>0.91700</td>\\n\",\"      <td>0.916976</td>\\n\",\"      <td>0.917483</td>\\n\",\"      <td>0.91700</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>test</th>\\n\",\"      <td>0.245722</td>\\n\",\"      <td>0.90400</td>\\n\",\"      <td>0.904000</td>\\n\",\"      <td>0.904006</td>\\n\",\"      <td>0.90400</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"       eval_loss  eval_Accuracy   eval_F1  eval_Precision  eval_Recall\\n\",\"train   0.077374        0.97975  0.979750        0.979751      0.97975\\n\",\"val     0.232591        0.91700  0.916976        0.917483      0.91700\\n\",\"test    0.245722        0.90400  0.904000        0.904006      0.90400\"]},\"metadata\":{\"tags\":[]},\"execution_count\":14}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"vQRdl3cfc53K\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396818121,\"user_tz\":-180,\"elapsed\":8710,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"e1f9e51c-71fe-4c19-aeef-1c419e86b627\"},\"source\":[\"# saving the best fine-tuned model & tokenizer\\n\",\"model_save_path = \\\"MyBestIMDBModel\\\"\\n\",\"trainer.save_model(model_save_path)\\n\",\"tokenizer.save_pretrained(model_save_path)\"],\"execution_count\":15,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Saving model checkpoint to MyBestIMDBModel\\n\",\"Configuration saved in MyBestIMDBModel/config.json\\n\",\"Model weights saved in MyBestIMDBModel/pytorch_model.bin\\n\",\"tokenizer config file saved in MyBestIMDBModel/tokenizer_config.json\\n\",\"Special tokens file saved in MyBestIMDBModel/special_tokens_map.json\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"('MyBestIMDBModel/tokenizer_config.json',\\n\",\" 'MyBestIMDBModel/special_tokens_map.json',\\n\",\" 'MyBestIMDBModel/vocab.txt',\\n\",\" 'MyBestIMDBModel/added_tokens.json',\\n\",\" 'MyBestIMDBModel/tokenizer.json')\"]},\"metadata\":{\"tags\":[]},\"execution_count\":15}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"D2a3rNrLfHQ3\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396821293,\"user_tz\":-180,\"elapsed\":414,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"def get_prediction(text):\\n\",\"    inputs = tokenizer(text, padding=True, truncation=True, max_length=250, return_tensors=\\\"pt\\\").to(device)\\n\",\"    outputs = model(inputs[\\\"input_ids\\\"].to(device),inputs[\\\"attention_mask\\\"].to(device))\\n\",\"    probs = outputs[0].softmax(1)\\n\",\"    return probs, probs.argmax()\"],\"execution_count\":16,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"3nSJDJ5mfTdu\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396830460,\"user_tz\":-180,\"elapsed\":547,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"264aa193-f7c5-4e3b-c5a6-2c6f8cf3b0fb\"},\"source\":[\"model.to(device)\\n\",\"text = \\\"I didn't like the movie since it bored me \\\"\\n\",\"get_prediction(text)[1].item()\"],\"execution_count\":18,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"0\"]},\"metadata\":{\"tags\":[]},\"execution_count\":18}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"rEPQzT4UDk7B\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"ze4nteT-mCUC\"},\"source\":[\"Use the model with pipeline \"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"iQ7sVE4blgzX\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396836461,\"user_tz\":-180,\"elapsed\":1851,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"3cfe2166-d20d-4117-bf76-d85e645e0e3c\"},\"source\":[\"from transformers import pipeline, DistilBertForSequenceClassification, DistilBertTokenizerFast\\n\",\"model = DistilBertForSequenceClassification.from_pretrained(\\\"MyBestIMDBModel\\\")\\n\",\"tokenizer= DistilBertTokenizerFast.from_pretrained(\\\"MyBestIMDBModel\\\")\\n\",\"nlp= pipeline(\\\"sentiment-analysis\\\", model=model, tokenizer=tokenizer)\\n\",\"nlp(\\\"the movie was very impressive\\\")\"],\"execution_count\":19,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"loading configuration file MyBestIMDBModel/config.json\\n\",\"Model config DistilBertConfig {\\n\",\"  \\\"_name_or_path\\\": \\\"distilbert-base-uncased\\\",\\n\",\"  \\\"activation\\\": \\\"gelu\\\",\\n\",\"  \\\"architectures\\\": [\\n\",\"    \\\"DistilBertForSequenceClassification\\\"\\n\",\"  ],\\n\",\"  \\\"attention_dropout\\\": 0.1,\\n\",\"  \\\"dim\\\": 768,\\n\",\"  \\\"dropout\\\": 0.1,\\n\",\"  \\\"hidden_dim\\\": 3072,\\n\",\"  \\\"id2label\\\": {\\n\",\"    \\\"0\\\": \\\"NEG\\\",\\n\",\"    \\\"1\\\": \\\"POS\\\"\\n\",\"  },\\n\",\"  \\\"initializer_range\\\": 0.02,\\n\",\"  \\\"label2id\\\": {\\n\",\"    \\\"NEG\\\": 0,\\n\",\"    \\\"POS\\\": 1\\n\",\"  },\\n\",\"  \\\"max_position_embeddings\\\": 512,\\n\",\"  \\\"model_type\\\": \\\"distilbert\\\",\\n\",\"  \\\"n_heads\\\": 12,\\n\",\"  \\\"n_layers\\\": 6,\\n\",\"  \\\"pad_token_id\\\": 0,\\n\",\"  \\\"problem_type\\\": \\\"single_label_classification\\\",\\n\",\"  \\\"qa_dropout\\\": 0.1,\\n\",\"  \\\"seq_classif_dropout\\\": 0.2,\\n\",\"  \\\"sinusoidal_pos_embds\\\": false,\\n\",\"  \\\"tie_weights_\\\": true,\\n\",\"  \\\"transformers_version\\\": \\\"4.8.2\\\",\\n\",\"  \\\"vocab_size\\\": 30522\\n\",\"}\\n\",\"\\n\",\"loading weights file MyBestIMDBModel/pytorch_model.bin\\n\",\"All model checkpoint weights were used when initializing DistilBertForSequenceClassification.\\n\",\"\\n\",\"All the weights of DistilBertForSequenceClassification were initialized from the model checkpoint at MyBestIMDBModel.\\n\",\"If your task is similar to the task the model of the checkpoint was trained on, you can already use DistilBertForSequenceClassification for predictions without further training.\\n\",\"Didn't find file MyBestIMDBModel/added_tokens.json. We won't load it.\\n\",\"loading file MyBestIMDBModel/vocab.txt\\n\",\"loading file MyBestIMDBModel/tokenizer.json\\n\",\"loading file None\\n\",\"loading file MyBestIMDBModel/special_tokens_map.json\\n\",\"loading file MyBestIMDBModel/tokenizer_config.json\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"[{'label': 'POS', 'score': 0.9790748953819275}]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":19}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"0Jv-X4pN3H9Y\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625396843499,\"user_tz\":-180,\"elapsed\":441,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"8c455ed1-00ed-475d-9bcd-951960912d68\"},\"source\":[\"nlp(\\\"the script of the picture was very poor\\\")\"],\"execution_count\":20,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"[{'label': 'NEG', 'score': 0.98270583152771}]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":20}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"GPiDrENVJ42j\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH05/CH05b_Training_with_Naitve_PyTorch.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH05b_Training_with_Naitve_PyTorch.ipynb\",\"provenance\":[],\"collapsed_sections\":[],\"authorship_tag\":\"ABX9TyM5pjZCMHxKy+F4L6/nJMEc\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"},\"accelerator\":\"GPU\"},\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"hdd1b6iEGeMp\"},\"source\":[\"# Fine-Tuning with Native Pytorch \"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"M7_Bktl28lu5\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397794148,\"user_tz\":-180,\"elapsed\":3423,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"80e27cb8-e0ef-464f-94b3-dbc5bd491874\"},\"source\":[\"!pip install transformers datasets\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: transformers in /usr/local/lib/python3.7/dist-packages (4.8.2)\\n\",\"Requirement already satisfied: datasets in /usr/local/lib/python3.7/dist-packages (1.8.0)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.10.3)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\"Requirement already satisfied: huggingface-hub==0.0.12 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.12)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.45)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.5.0)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: xxhash in /usr/local/lib/python3.7/dist-packages (from datasets) (2.0.2)\\n\",\"Requirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from datasets) (0.3.4)\\n\",\"Requirement already satisfied: fsspec in /usr/local/lib/python3.7/dist-packages (from datasets) (2021.6.1)\\n\",\"Requirement already satisfied: multiprocess in /usr/local/lib/python3.7/dist-packages (from datasets) (0.70.12.2)\\n\",\"Requirement already satisfied: pyarrow<4.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (3.0.0)\\n\",\"Requirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from datasets) (1.1.5)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub==0.0.12->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2021.5.30)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2018.9)\\n\",\"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2.8.1)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"7gorSCX38XGd\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397797974,\"user_tz\":-180,\"elapsed\":309,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":1,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"087OXCoeN-Zf\"},\"source\":[\"# One-step forward\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"BrjheWzxvQf2\"},\"source\":[\"from transformers import DistilBertForSequenceClassification\\n\",\"model = DistilBertForSequenceClassification.from_pretrained('distilbert-base-uncased')\\n\",\"model.train()\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"6h7TBrdyTjpJ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397809172,\"user_tz\":-180,\"elapsed\":1536,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from transformers import DistilBertTokenizerFast\\n\",\"tokenizer = DistilBertTokenizerFast.from_pretrained('bert-base-uncased')\"],\"execution_count\":4,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"75afLI_FvQi7\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397812835,\"user_tz\":-180,\"elapsed\":1669,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from transformers import AdamW\\n\",\"optimizer = AdamW(model.parameters(), lr=1e-3)\"],\"execution_count\":5,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"IlBGG7IU6-LO\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397812836,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":5,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"9NEdeBUh-fqW\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397814045,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"# one step forward\\n\",\"import torch\\n\",\"texts= [\\\"this is a good example\\\",\\\"this is a bad example\\\",\\\"this is a good one\\\"]\\n\",\"labels= [1,0,1]\\n\",\"labels = torch.tensor(labels).unsqueeze(0)\"],\"execution_count\":6,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"xxwvtJOivQmw\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397815290,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"encoding = tokenizer(texts, return_tensors='pt', padding=True, truncation=True, max_length=512)\\n\",\"input_ids = encoding['input_ids']\\n\",\"attention_mask = encoding['attention_mask']\"],\"execution_count\":7,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"FLHyHE_4vQo0\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397817606,\"user_tz\":-180,\"elapsed\":1314,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"outputs = model(input_ids, attention_mask=attention_mask, labels=labels)\\n\",\"loss = outputs.loss\\n\",\"loss.backward()\\n\",\"optimizer.step()\"],\"execution_count\":8,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"aMwRgtXovQrk\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397819976,\"user_tz\":-180,\"elapsed\":361,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":8,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"DnbXt46DZRmF\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397820438,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"fc397b18-ac98-4203-93e6-64ea55d50aec\"},\"source\":[\"outputs\"],\"execution_count\":9,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"SequenceClassifierOutput([('loss', tensor(0.6949, grad_fn=<NllLossBackward>)),\\n\",\"                          ('logits', tensor([[ 0.0006,  0.0778],\\n\",\"                                   [-0.0180,  0.0546],\\n\",\"                                   [ 0.0307,  0.0186]], grad_fn=<AddmmBackward>))])\"]},\"metadata\":{\"tags\":[]},\"execution_count\":9}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"7X2qm-O1xStv\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397821212,\"user_tz\":-180,\"elapsed\":5,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":9,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"SrtXFsuevQyH\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397822597,\"user_tz\":-180,\"elapsed\":474,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"c695798e-4b18-467b-e643-eb076cd87a00\"},\"source\":[\"#Manually calculate loss\\n\",\"from torch.nn import functional\\n\",\"labels = torch.tensor([1,0,1])\\n\",\"outputs = model(input_ids, attention_mask=attention_mask)\\n\",\"loss = functional.cross_entropy(outputs.logits, labels)\\n\",\"loss.backward()\\n\",\"optimizer.step()\\n\",\"loss\"],\"execution_count\":10,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"tensor(0.6325, grad_fn=<NllLossBackward>)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":10}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Oj0qMlTIxa8L\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397825013,\"user_tz\":-180,\"elapsed\":387,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"254b6d5d-9452-40d6-f0ba-fd39e1c08444\"},\"source\":[\"outputs\"],\"execution_count\":11,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"SequenceClassifierOutput([('logits', tensor([[-0.1801,  0.5541],\\n\",\"                                   [-0.1772,  0.5738],\\n\",\"                                   [-0.2964,  0.5140]], grad_fn=<AddmmBackward>))])\"]},\"metadata\":{\"tags\":[]},\"execution_count\":11}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"YAZN5BUpxa-W\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397827149,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":11,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"QHFl5T_aOJik\"},\"source\":[\"## Training the model from entire dataset with Native PyTorch \"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"_hoE8Q7WmIK2\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397829408,\"user_tz\":-180,\"elapsed\":553,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from torch.utils.data import Dataset\\n\",\"class MyDataset(Dataset):\\n\",\"    def __init__(self, encodings, labels):\\n\",\"        self.encodings = encodings\\n\",\"        self.labels = labels\\n\",\"    def __getitem__(self, idx):\\n\",\"        item = {key: torch.tensor(val[idx]) for key, val in self.encodings.items()}\\n\",\"        item['labels'] = torch.tensor(self.labels[idx])\\n\",\"        return item\\n\",\"    def __len__(self):\\n\",\"        return len(self.labels)\"],\"execution_count\":12,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"M9FCV-5oQcug\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397835330,\"user_tz\":-180,\"elapsed\":2958,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"5ea241ab-b2be-4b77-a67d-13e929ca155b\"},\"source\":[\"from transformers import DistilBertForSequenceClassification\\n\",\"model = DistilBertForSequenceClassification.from_pretrained('distilbert-base-uncased')\\n\",\"from transformers import BertTokenizerFast\\n\",\"tokenizer = DistilBertTokenizerFast.from_pretrained('distilbert-base-uncased')\"],\"execution_count\":13,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Some weights of the model checkpoint at distilbert-base-uncased were not used when initializing DistilBertForSequenceClassification: ['vocab_layer_norm.bias', 'vocab_transform.weight', 'vocab_projector.bias', 'vocab_layer_norm.weight', 'vocab_projector.weight', 'vocab_transform.bias']\\n\",\"- This IS expected if you are initializing DistilBertForSequenceClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing DistilBertForSequenceClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\",\"Some weights of DistilBertForSequenceClassification were not initialized from the model checkpoint at distilbert-base-uncased and are newly initialized: ['pre_classifier.weight', 'pre_classifier.bias', 'classifier.bias', 'classifier.weight']\\n\",\"You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"0GZc-IP_qOPr\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397838368,\"user_tz\":-180,\"elapsed\":1675,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"cab7b85d-8e72-4b44-96e6-a0354d2ea252\"},\"source\":[\"import datasets\\n\",\"from datasets import load_dataset\\n\",\"sst2= load_dataset(\\\"glue\\\",\\\"sst2\\\")\\n\",\"from datasets import load_metric\\n\",\"metric = load_metric(\\\"glue\\\", \\\"sst2\\\")\"],\"execution_count\":14,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Reusing dataset glue (/root/.cache/huggingface/datasets/glue/sst2/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad)\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Zf329--Kbx-f\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397840153,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":14,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Q0u7JTJZePSD\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397840602,\"user_tz\":-180,\"elapsed\":2,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"texts=sst2['train']['sentence']\\n\",\"labels=sst2['train']['label']\\n\",\"val_texts=sst2['validation']['sentence']\\n\",\"val_labels=sst2['validation']['label']\"],\"execution_count\":15,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"_qz_bGusOh7V\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397841486,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"0f161ef2-1859-4636-8be3-5808457151a1\"},\"source\":[\"len(texts)\"],\"execution_count\":16,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"67349\"]},\"metadata\":{\"tags\":[]},\"execution_count\":16}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"x0pt8hXFO0qq\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397574070,\"user_tz\":-180,\"elapsed\":10,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":39,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"PJUHozzzbxg1\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397849845,\"user_tz\":-180,\"elapsed\":830,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"# I will take small portion\\n\",\"K=10000\\n\",\"train_dataset= MyDataset(tokenizer(texts[:K], truncation=True, padding=True), labels[:K])\\n\",\"val_dataset=  MyDataset(tokenizer(val_texts, truncation=True, padding=True), val_labels)\"],\"execution_count\":17,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"WTTu1fmIxx8w\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625397970025,\"user_tz\":-180,\"elapsed\":118203,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"9380a9fe-531a-4b77-8a16-2a3f95b9b17e\"},\"source\":[\"from torch.utils.data import DataLoader\\n\",\"from transformers import  AdamW\\n\",\"\\n\",\"device = torch.device('cuda') if torch.cuda.is_available() else torch.device('cpu')\\n\",\"model.to(device)\\n\",\"\\n\",\"train_loader = DataLoader(train_dataset, batch_size=16, shuffle=True)\\n\",\"val_loader =  DataLoader(val_dataset, batch_size=16, shuffle=True)\\n\",\"\\n\",\"optimizer = AdamW(model.parameters(), lr=1e-5)\\n\",\"\\n\",\"for epoch in range(3):\\n\",\"    model.train()\\n\",\"    for batch in train_loader:\\n\",\"        optimizer.zero_grad()\\n\",\"        input_ids = batch['input_ids'].to(device)\\n\",\"        attention_mask = batch['attention_mask'].to(device)\\n\",\"        labels = batch['labels'].to(device)\\n\",\"        outputs = model(input_ids, attention_mask=attention_mask, labels=labels)\\n\",\"        loss = outputs[0]\\n\",\"        loss.backward()\\n\",\"        optimizer.step()\\n\",\"    model.eval()\\n\",\"    for batch in val_loader:\\n\",\"        input_ids = batch['input_ids'].to(device)\\n\",\"        attention_mask = batch['attention_mask'].to(device)\\n\",\"        labels = batch['labels'].to(device)\\n\",\"        outputs = model(input_ids, attention_mask=attention_mask, labels=labels)\\n\",\"        predictions=outputs.logits.argmax(dim=-1)  \\n\",\"        metric.add_batch(\\n\",\"                predictions=predictions,\\n\",\"                references=batch[\\\"labels\\\"],\\n\",\"            )\\n\",\"    eval_metric = metric.compute()\\n\",\"    print(f\\\"epoch {epoch}: {eval_metric}\\\")\"],\"execution_count\":18,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"epoch 0: {'accuracy': 0.8864678899082569}\\n\",\"epoch 1: {'accuracy': 0.8944954128440367}\\n\",\"epoch 2: {'accuracy': 0.8830275229357798}\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"DjrjOM3rszDB\",\"executionInfo\":{\"status\":\"aborted\",\"timestamp\":1625397289992,\"user_tz\":-180,\"elapsed\":10,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH05/CH05c_Multi-class_Classification.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH05c_Multi-class_Classification.ipynb\",\"provenance\":[],\"collapsed_sections\":[],\"authorship_tag\":\"ABX9TyO2hBd/tE18yqAA78qNBNVu\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"},\"accelerator\":\"GPU\",\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"21fbbe9bd6d94f308668ac1e4c2a51d0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_f391632fced34067a6bc7f76034d8d38\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_d9bad87a40624bbe9a7b8e5021b6b878\",\"IPY_MODEL_6f869fe141f847a881532c74c5d8b269\"]}},\"f391632fced34067a6bc7f76034d8d38\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d9bad87a40624bbe9a7b8e5021b6b878\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_35a5b5e6ff374b6a80e8677d695a5409\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":262620,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":262620,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_bed0bf19829f4957985091c7f308190c\"}},\"6f869fe141f847a881532c74c5d8b269\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_43a1a07853414f1fbd41c1d7a7e2a7fd\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 263k/263k [00:01&lt;00:00, 133kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_66f31b78d9974a51bd28e01d073b72a7\"}},\"35a5b5e6ff374b6a80e8677d695a5409\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"bed0bf19829f4957985091c7f308190c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"43a1a07853414f1fbd41c1d7a7e2a7fd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"66f31b78d9974a51bd28e01d073b72a7\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"8ed902a5a04e4bdaac8f961afe52b622\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_95a51d9d15734391a3895ac76b7a3676\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_395f10a793684087b6e3747154e17f8d\",\"IPY_MODEL_c905e0961cf84af2bec6a29ddc0d4237\"]}},\"95a51d9d15734391a3895ac76b7a3676\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"395f10a793684087b6e3747154e17f8d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_b3652deb88d94a3e91bc0fa58b9dce54\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":59,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":59,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_94930151f87e495b974a7f40de2b1db4\"}},\"c905e0961cf84af2bec6a29ddc0d4237\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_4e66a8a8057e4232a3881aef3ac3afa9\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 59.0/59.0 [00:00&lt;00:00, 730B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a098193923044bfc89afdfa4faf8cc25\"}},\"b3652deb88d94a3e91bc0fa58b9dce54\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"94930151f87e495b974a7f40de2b1db4\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"4e66a8a8057e4232a3881aef3ac3afa9\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"a098193923044bfc89afdfa4faf8cc25\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"eda88132d04243bcb499af9e82a789ba\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_b9f606782e924fdd9a22ee6039ef76f2\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_ce256db990954d9f9782eae9a248b40b\",\"IPY_MODEL_4557e0d687a44a8ab109109094f3ebd6\"]}},\"b9f606782e924fdd9a22ee6039ef76f2\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ce256db990954d9f9782eae9a248b40b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_5db915425bac4d9caba753797e9faf29\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":385,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":385,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_6613484a4d0c477fb4ec5a3d4da81a73\"}},\"4557e0d687a44a8ab109109094f3ebd6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_d391715c96a84d078976a10fab20265a\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 385/385 [00:34&lt;00:00, 11.2B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_0479af3dea114a4b86c98cd104325344\"}},\"5db915425bac4d9caba753797e9faf29\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"6613484a4d0c477fb4ec5a3d4da81a73\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d391715c96a84d078976a10fab20265a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"0479af3dea114a4b86c98cd104325344\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f8532b3abd7e4243a8fb0ade8e0540e7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_1886bd7f86534fcea494bef48439e7db\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_85c4358f5a6e411fbff53e3dfe3eb88d\",\"IPY_MODEL_cfe8a0c3575a49b6b298262ed7acf76d\"]}},\"1886bd7f86534fcea494bef48439e7db\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"85c4358f5a6e411fbff53e3dfe3eb88d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_4622af58d24f4eea8f67f49364118ccd\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":445018749,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":445018749,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_b42f5e933f494ea69f3dbaac391b5e23\"}},\"cfe8a0c3575a49b6b298262ed7acf76d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_f92aca32755f45c3ba2b8cab79d44eed\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 445M/445M [00:09&lt;00:00, 49.2MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_dd7628d863794892b9b1fdd7c5e5df42\"}},\"4622af58d24f4eea8f67f49364118ccd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"b42f5e933f494ea69f3dbaac391b5e23\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f92aca32755f45c3ba2b8cab79d44eed\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"dd7628d863794892b9b1fdd7c5e5df42\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}}},\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"K8rPS5-aTUys\"},\"source\":[\"# FineTuning BERT for Multi-Class Classification with custom datasets\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"bixw-FrJ-6La\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398158764,\"user_tz\":-180,\"elapsed\":25729,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"850fe9c3-dc21-4036-bcde-b1b0b5c43034\"},\"source\":[\"import torch, os\\n\",\"from google.colab import drive\\n\",\"drive.mount('/content/drive')\\n\",\"if os.getcwd() != \\\"/content/drive/My Drive/akademi/Packt NLP with Transformers/CH05\\\":\\n\",\"  os.chdir(\\\"drive/MyDrive/akademi/Packt NLP with Transformers/CH05\\\")\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Mounted at /content/drive\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"6AJ4_0bE678m\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398170253,\"user_tz\":-180,\"elapsed\":7445,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"a5939dd9-d7bf-4dd0-913c-324e94db7643\"},\"source\":[\"!pip install transformers datasets\"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Collecting transformers\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/fd/1a/41c644c963249fd7f3836d926afa1e3f1cc234a1c40d80c5f03ad8f6f1b2/transformers-4.8.2-py3-none-any.whl (2.5MB)\\n\",\"\\u001b[K     |████████████████████████████████| 2.5MB 14.6MB/s \\n\",\"\\u001b[?25hCollecting datasets\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/08/a2/d4e1024c891506e1cee8f9d719d20831bac31cb5b7416983c4d2f65a6287/datasets-1.8.0-py3-none-any.whl (237kB)\\n\",\"\\u001b[K     |████████████████████████████████| 245kB 56.1MB/s \\n\",\"\\u001b[?25hCollecting huggingface-hub==0.0.12\\n\",\"  Downloading https://files.pythonhosted.org/packages/2f/ee/97e253668fda9b17e968b3f97b2f8e53aa0127e8807d24a547687423fe0b/huggingface_hub-0.0.12-py3-none-any.whl\\n\",\"Collecting tokenizers<0.11,>=0.10.1\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d4/e2/df3543e8ffdab68f5acc73f613de9c2b155ac47f162e725dcac87c521c11/tokenizers-0.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.3MB)\\n\",\"\\u001b[K     |████████████████████████████████| 3.3MB 45.7MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Collecting sacremoses\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/ee/67241dc87f266093c533a2d4d3d69438e57d7a90abb216fa076e7d475d4a/sacremoses-0.0.45-py3-none-any.whl (895kB)\\n\",\"\\u001b[K     |████████████████████████████████| 901kB 40.4MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.5.0)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Collecting fsspec\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/0e/3a/666e63625a19883ae8e1674099e631f9737bd5478c4790e5ad49c5ac5261/fsspec-2021.6.1-py3-none-any.whl (115kB)\\n\",\"\\u001b[K     |████████████████████████████████| 122kB 56.1MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: multiprocess in /usr/local/lib/python3.7/dist-packages (from datasets) (0.70.12.2)\\n\",\"Requirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from datasets) (0.3.4)\\n\",\"Requirement already satisfied: pyarrow<4.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (3.0.0)\\n\",\"Collecting xxhash\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/7d/4f/0a862cad26aa2ed7a7cd87178cbbfa824fc1383e472d63596a0d018374e7/xxhash-2.0.2-cp37-cp37m-manylinux2010_x86_64.whl (243kB)\\n\",\"\\u001b[K     |████████████████████████████████| 245kB 59.2MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from datasets) (1.1.5)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub==0.0.12->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2021.5.30)\\n\",\"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2018.9)\\n\",\"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2.8.1)\\n\",\"Installing collected packages: huggingface-hub, tokenizers, sacremoses, transformers, fsspec, xxhash, datasets\\n\",\"Successfully installed datasets-1.8.0 fsspec-2021.6.1 huggingface-hub-0.0.12 sacremoses-0.0.45 tokenizers-0.10.3 transformers-4.8.2 xxhash-2.0.2\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"BDh5EsI_BOXS\"},\"source\":[\"## Loading Pre-Trained Model\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"x9RjPCc76GjE\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":35},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398170258,\"user_tz\":-180,\"elapsed\":28,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"2956b1e5-7d27-47b9-f70e-dd32944408bc\"},\"source\":[\"from torch import cuda\\n\",\"device = 'cuda' if cuda.is_available() else 'cpu'\\n\",\"device\"],\"execution_count\":3,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"application/vnd.google.colaboratory.intrinsic+json\":{\"type\":\"string\"},\"text/plain\":[\"'cuda'\"]},\"metadata\":{\"tags\":[]},\"execution_count\":3}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"4p8rHzYVBUJU\"},\"source\":[\"### Obtaining and Preparing downstream task data\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"jeUi2zttmYBO\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398170260,\"user_tz\":-180,\"elapsed\":25,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"4e2ed6c9-01ab-41c7-fd5f-05e26d75f19d\"},\"source\":[\"if \\\"TTC4900.csv\\\" not in os.listdir():\\n\",\" !wget  https://raw.githubusercontent.com/savasy/TurkishTextClassification/master/TTC4900.csv\\n\",\"else:\\n\",\"   print(\\\"Already there !\\\")\"],\"execution_count\":4,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Already there !\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"XGvn9cWEtXcE\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":204},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398175947,\"user_tz\":-180,\"elapsed\":397,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"8ddd76d1-8416-481f-bad5-52a6d4bb0672\"},\"source\":[\"import pandas as pd\\n\",\"data= pd.read_csv(\\\"TTC4900.csv\\\")\\n\",\"data=data.sample(frac=1.0, random_state=42)\\n\",\"data.head(5)\"],\"execution_count\":6,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>category</th>\\n\",\"      <th>text</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>4657</th>\\n\",\"      <td>teknoloji</td>\\n\",\"      <td>acıların kedisi sam çatık kaşlı kedi sam in i...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3539</th>\\n\",\"      <td>spor</td>\\n\",\"      <td>g saray a git santos van_persie den forma ala...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>907</th>\\n\",\"      <td>dunya</td>\\n\",\"      <td>endonezya da çatışmalar 14 ölü endonezya da i...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4353</th>\\n\",\"      <td>teknoloji</td>\\n\",\"      <td>emniyetten polis logolu virüs uyarısı telefon...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3745</th>\\n\",\"      <td>spor</td>\\n\",\"      <td>beni türk yapın cristian_baroni yıldırım dan ...</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"        category                                               text\\n\",\"4657  teknoloji    acıların kedisi sam çatık kaşlı kedi sam in i...\\n\",\"3539       spor    g saray a git santos van_persie den forma ala...\\n\",\"907       dunya    endonezya da çatışmalar 14 ölü endonezya da i...\\n\",\"4353  teknoloji    emniyetten polis logolu virüs uyarısı telefon...\\n\",\"3745       spor    beni türk yapın cristian_baroni yıldırım dan ...\"]},\"metadata\":{\"tags\":[]},\"execution_count\":6}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"5jyOH3YGvyYW\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398177852,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"labels=[\\\"teknoloji\\\",\\\"ekonomi\\\",\\\"saglik\\\",\\\"siyaset\\\",\\\"kultur\\\",\\\"spor\\\",\\\"dunya\\\"]\\n\",\"NUM_LABELS= len(labels)\\n\",\"id2label={i:l for i,l in enumerate(labels)}\\n\",\"label2id={l:i for i,l in enumerate(labels)}\"],\"execution_count\":7,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"MQ6iJXbFn86y\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398179284,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"51bcfc45-6c5e-4f88-a971-ac34e7b6d2bd\"},\"source\":[\"label2id\"],\"execution_count\":8,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"{'dunya': 6,\\n\",\" 'ekonomi': 1,\\n\",\" 'kultur': 4,\\n\",\" 'saglik': 2,\\n\",\" 'siyaset': 3,\\n\",\" 'spor': 5,\\n\",\" 'teknoloji': 0}\"]},\"metadata\":{\"tags\":[]},\"execution_count\":8}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"EJYWAXVovqOQ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398182914,\"user_tz\":-180,\"elapsed\":395,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":8,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"HbdFN3VZoawV\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398182915,\"user_tz\":-180,\"elapsed\":8,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"data[\\\"labels\\\"]=data.category.map(lambda x: label2id[x.strip()])\"],\"execution_count\":9,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":204},\"id\":\"KGAcx7nqwJgm\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398183337,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"5836de30-de03-480c-8db3-2ab403ac142f\"},\"source\":[\"data.head()\"],\"execution_count\":10,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>category</th>\\n\",\"      <th>text</th>\\n\",\"      <th>labels</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>4657</th>\\n\",\"      <td>teknoloji</td>\\n\",\"      <td>acıların kedisi sam çatık kaşlı kedi sam in i...</td>\\n\",\"      <td>0</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3539</th>\\n\",\"      <td>spor</td>\\n\",\"      <td>g saray a git santos van_persie den forma ala...</td>\\n\",\"      <td>5</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>907</th>\\n\",\"      <td>dunya</td>\\n\",\"      <td>endonezya da çatışmalar 14 ölü endonezya da i...</td>\\n\",\"      <td>6</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4353</th>\\n\",\"      <td>teknoloji</td>\\n\",\"      <td>emniyetten polis logolu virüs uyarısı telefon...</td>\\n\",\"      <td>0</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3745</th>\\n\",\"      <td>spor</td>\\n\",\"      <td>beni türk yapın cristian_baroni yıldırım dan ...</td>\\n\",\"      <td>5</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"        category                                               text  labels\\n\",\"4657  teknoloji    acıların kedisi sam çatık kaşlı kedi sam in i...       0\\n\",\"3539       spor    g saray a git santos van_persie den forma ala...       5\\n\",\"907       dunya    endonezya da çatışmalar 14 ölü endonezya da i...       6\\n\",\"4353  teknoloji    emniyetten polis logolu virüs uyarısı telefon...       0\\n\",\"3745       spor    beni türk yapın cristian_baroni yıldırım dan ...       5\"]},\"metadata\":{\"tags\":[]},\"execution_count\":10}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":483},\"id\":\"zeNYOXNBGe1B\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398187147,\"user_tz\":-180,\"elapsed\":712,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"68de8dcd-b392-4915-e5c4-5d21f5004958\"},\"source\":[\"data.category.value_counts().plot(kind='pie', figsize=(8,8))\"],\"execution_count\":11,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"<matplotlib.axes._subplots.AxesSubplot at 0x7f32dc9b2b10>\"]},\"metadata\":{\"tags\":[]},\"execution_count\":11},{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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\\n\",\"text/plain\":[\"<Figure size 576x576 with 1 Axes>\"]},\"metadata\":{\"tags\":[]}}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"r80yPEvU79rx\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":115,\"referenced_widgets\":[\"21fbbe9bd6d94f308668ac1e4c2a51d0\",\"f391632fced34067a6bc7f76034d8d38\",\"d9bad87a40624bbe9a7b8e5021b6b878\",\"6f869fe141f847a881532c74c5d8b269\",\"35a5b5e6ff374b6a80e8677d695a5409\",\"bed0bf19829f4957985091c7f308190c\",\"43a1a07853414f1fbd41c1d7a7e2a7fd\",\"66f31b78d9974a51bd28e01d073b72a7\",\"8ed902a5a04e4bdaac8f961afe52b622\",\"95a51d9d15734391a3895ac76b7a3676\",\"395f10a793684087b6e3747154e17f8d\",\"c905e0961cf84af2bec6a29ddc0d4237\",\"b3652deb88d94a3e91bc0fa58b9dce54\",\"94930151f87e495b974a7f40de2b1db4\",\"4e66a8a8057e4232a3881aef3ac3afa9\",\"a098193923044bfc89afdfa4faf8cc25\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398193149,\"user_tz\":-180,\"elapsed\":2705,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"542fee56-a4bc-44c4-814e-8dd3c29eeb7f\"},\"source\":[\"from transformers import BertTokenizerFast\\n\",\"tokenizer = BertTokenizerFast.from_pretrained(\\\"dbmdz/bert-base-turkish-uncased\\\", max_length=512)\"],\"execution_count\":12,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"21fbbe9bd6d94f308668ac1e4c2a51d0\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=262620.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"8ed902a5a04e4bdaac8f961afe52b622\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=59.0, style=ProgressStyle(description_w…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"L7mT5FEU2Jyr\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":1000,\"referenced_widgets\":[\"eda88132d04243bcb499af9e82a789ba\",\"b9f606782e924fdd9a22ee6039ef76f2\",\"ce256db990954d9f9782eae9a248b40b\",\"4557e0d687a44a8ab109109094f3ebd6\",\"5db915425bac4d9caba753797e9faf29\",\"6613484a4d0c477fb4ec5a3d4da81a73\",\"d391715c96a84d078976a10fab20265a\",\"0479af3dea114a4b86c98cd104325344\",\"f8532b3abd7e4243a8fb0ade8e0540e7\",\"1886bd7f86534fcea494bef48439e7db\",\"85c4358f5a6e411fbff53e3dfe3eb88d\",\"cfe8a0c3575a49b6b298262ed7acf76d\",\"4622af58d24f4eea8f67f49364118ccd\",\"b42f5e933f494ea69f3dbaac391b5e23\",\"f92aca32755f45c3ba2b8cab79d44eed\",\"dd7628d863794892b9b1fdd7c5e5df42\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398216241,\"user_tz\":-180,\"elapsed\":17953,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"b9133277-8b83-47f4-83ee-bdaa1ac55a3f\"},\"source\":[\"from transformers import BertForSequenceClassification\\n\",\"model = BertForSequenceClassification.from_pretrained(\\\"dbmdz/bert-base-turkish-uncased\\\", num_labels=NUM_LABELS, id2label=id2label, label2id=label2id)\\n\",\"model.to(device)\"],\"execution_count\":13,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"eda88132d04243bcb499af9e82a789ba\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=385.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"f8532b3abd7e4243a8fb0ade8e0540e7\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=445018749.0, style=ProgressStyle(descri…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"stream\",\"text\":[\"Some weights of the model checkpoint at dbmdz/bert-base-turkish-uncased were not used when initializing BertForSequenceClassification: ['cls.predictions.decoder.bias', 'cls.predictions.bias', 'cls.seq_relationship.weight', 'cls.predictions.transform.LayerNorm.weight', 'cls.predictions.transform.LayerNorm.bias', 'cls.predictions.transform.dense.weight', 'cls.seq_relationship.bias', 'cls.predictions.transform.dense.bias', 'cls.predictions.decoder.weight']\\n\",\"- This IS expected if you are initializing BertForSequenceClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing BertForSequenceClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\",\"Some weights of BertForSequenceClassification were not initialized from the model checkpoint at dbmdz/bert-base-turkish-uncased and are newly initialized: ['classifier.weight', 'classifier.bias']\\n\",\"You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"BertForSequenceClassification(\\n\",\"  (bert): BertModel(\\n\",\"    (embeddings): BertEmbeddings(\\n\",\"      (word_embeddings): Embedding(32000, 768, padding_idx=0)\\n\",\"      (position_embeddings): Embedding(512, 768)\\n\",\"      (token_type_embeddings): Embedding(2, 768)\\n\",\"      (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"      (dropout): Dropout(p=0.1, inplace=False)\\n\",\"    )\\n\",\"    (encoder): BertEncoder(\\n\",\"      (layer): ModuleList(\\n\",\"        (0): BertLayer(\\n\",\"          (attention): BertAttention(\\n\",\"            (self): BertSelfAttention(\\n\",\"              (query): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (key): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (value): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"            (output): BertSelfOutput(\\n\",\"              (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"          )\\n\",\"          (intermediate): BertIntermediate(\\n\",\"            (dense): Linear(in_features=768, out_features=3072, bias=True)\\n\",\"          )\\n\",\"          (output): BertOutput(\\n\",\"            (dense): Linear(in_features=3072, out_features=768, bias=True)\\n\",\"            (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"            (dropout): Dropout(p=0.1, inplace=False)\\n\",\"          )\\n\",\"        )\\n\",\"        (1): BertLayer(\\n\",\"          (attention): BertAttention(\\n\",\"            (self): BertSelfAttention(\\n\",\"              (query): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (key): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (value): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"            (output): BertSelfOutput(\\n\",\"              (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"          )\\n\",\"          (intermediate): BertIntermediate(\\n\",\"            (dense): Linear(in_features=768, out_features=3072, bias=True)\\n\",\"          )\\n\",\"          (output): BertOutput(\\n\",\"            (dense): Linear(in_features=3072, out_features=768, bias=True)\\n\",\"            (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"            (dropout): Dropout(p=0.1, inplace=False)\\n\",\"          )\\n\",\"        )\\n\",\"        (2): BertLayer(\\n\",\"          (attention): BertAttention(\\n\",\"            (self): BertSelfAttention(\\n\",\"              (query): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (key): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (value): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"            (output): BertSelfOutput(\\n\",\"              (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"          )\\n\",\"          (intermediate): BertIntermediate(\\n\",\"            (dense): Linear(in_features=768, out_features=3072, bias=True)\\n\",\"          )\\n\",\"          (output): BertOutput(\\n\",\"            (dense): Linear(in_features=3072, out_features=768, bias=True)\\n\",\"            (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"            (dropout): Dropout(p=0.1, inplace=False)\\n\",\"          )\\n\",\"        )\\n\",\"        (3): BertLayer(\\n\",\"          (attention): BertAttention(\\n\",\"            (self): BertSelfAttention(\\n\",\"              (query): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (key): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (value): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"            (output): BertSelfOutput(\\n\",\"              (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"          )\\n\",\"          (intermediate): BertIntermediate(\\n\",\"            (dense): Linear(in_features=768, out_features=3072, bias=True)\\n\",\"          )\\n\",\"          (output): BertOutput(\\n\",\"            (dense): Linear(in_features=3072, out_features=768, bias=True)\\n\",\"            (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"            (dropout): Dropout(p=0.1, inplace=False)\\n\",\"          )\\n\",\"        )\\n\",\"        (4): BertLayer(\\n\",\"          (attention): BertAttention(\\n\",\"            (self): BertSelfAttention(\\n\",\"              (query): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (key): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (value): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"            (output): BertSelfOutput(\\n\",\"              (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"          )\\n\",\"          (intermediate): BertIntermediate(\\n\",\"            (dense): Linear(in_features=768, out_features=3072, bias=True)\\n\",\"          )\\n\",\"          (output): BertOutput(\\n\",\"            (dense): Linear(in_features=3072, out_features=768, bias=True)\\n\",\"            (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"            (dropout): Dropout(p=0.1, inplace=False)\\n\",\"          )\\n\",\"        )\\n\",\"        (5): BertLayer(\\n\",\"          (attention): BertAttention(\\n\",\"            (self): BertSelfAttention(\\n\",\"              (query): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (key): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (value): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"            (output): BertSelfOutput(\\n\",\"              (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"          )\\n\",\"          (intermediate): BertIntermediate(\\n\",\"            (dense): Linear(in_features=768, out_features=3072, bias=True)\\n\",\"          )\\n\",\"          (output): BertOutput(\\n\",\"            (dense): Linear(in_features=3072, out_features=768, bias=True)\\n\",\"            (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"            (dropout): Dropout(p=0.1, inplace=False)\\n\",\"          )\\n\",\"        )\\n\",\"        (6): BertLayer(\\n\",\"          (attention): BertAttention(\\n\",\"            (self): BertSelfAttention(\\n\",\"              (query): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (key): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (value): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"            (output): BertSelfOutput(\\n\",\"              (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"          )\\n\",\"          (intermediate): BertIntermediate(\\n\",\"            (dense): Linear(in_features=768, out_features=3072, bias=True)\\n\",\"          )\\n\",\"          (output): BertOutput(\\n\",\"            (dense): Linear(in_features=3072, out_features=768, bias=True)\\n\",\"            (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"            (dropout): Dropout(p=0.1, inplace=False)\\n\",\"          )\\n\",\"        )\\n\",\"        (7): BertLayer(\\n\",\"          (attention): BertAttention(\\n\",\"            (self): BertSelfAttention(\\n\",\"              (query): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (key): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (value): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"            (output): BertSelfOutput(\\n\",\"              (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"          )\\n\",\"          (intermediate): BertIntermediate(\\n\",\"            (dense): Linear(in_features=768, out_features=3072, bias=True)\\n\",\"          )\\n\",\"          (output): BertOutput(\\n\",\"            (dense): Linear(in_features=3072, out_features=768, bias=True)\\n\",\"            (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"            (dropout): Dropout(p=0.1, inplace=False)\\n\",\"          )\\n\",\"        )\\n\",\"        (8): BertLayer(\\n\",\"          (attention): BertAttention(\\n\",\"            (self): BertSelfAttention(\\n\",\"              (query): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (key): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (value): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"            (output): BertSelfOutput(\\n\",\"              (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"          )\\n\",\"          (intermediate): BertIntermediate(\\n\",\"            (dense): Linear(in_features=768, out_features=3072, bias=True)\\n\",\"          )\\n\",\"          (output): BertOutput(\\n\",\"            (dense): Linear(in_features=3072, out_features=768, bias=True)\\n\",\"            (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"            (dropout): Dropout(p=0.1, inplace=False)\\n\",\"          )\\n\",\"        )\\n\",\"        (9): BertLayer(\\n\",\"          (attention): BertAttention(\\n\",\"            (self): BertSelfAttention(\\n\",\"              (query): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (key): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (value): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"            (output): BertSelfOutput(\\n\",\"              (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"          )\\n\",\"          (intermediate): BertIntermediate(\\n\",\"            (dense): Linear(in_features=768, out_features=3072, bias=True)\\n\",\"          )\\n\",\"          (output): BertOutput(\\n\",\"            (dense): Linear(in_features=3072, out_features=768, bias=True)\\n\",\"            (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"            (dropout): Dropout(p=0.1, inplace=False)\\n\",\"          )\\n\",\"        )\\n\",\"        (10): BertLayer(\\n\",\"          (attention): BertAttention(\\n\",\"            (self): BertSelfAttention(\\n\",\"              (query): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (key): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (value): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"            (output): BertSelfOutput(\\n\",\"              (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"          )\\n\",\"          (intermediate): BertIntermediate(\\n\",\"            (dense): Linear(in_features=768, out_features=3072, bias=True)\\n\",\"          )\\n\",\"          (output): BertOutput(\\n\",\"            (dense): Linear(in_features=3072, out_features=768, bias=True)\\n\",\"            (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"            (dropout): Dropout(p=0.1, inplace=False)\\n\",\"          )\\n\",\"        )\\n\",\"        (11): BertLayer(\\n\",\"          (attention): BertAttention(\\n\",\"            (self): BertSelfAttention(\\n\",\"              (query): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (key): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (value): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"            (output): BertSelfOutput(\\n\",\"              (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"              (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"              (dropout): Dropout(p=0.1, inplace=False)\\n\",\"            )\\n\",\"          )\\n\",\"          (intermediate): BertIntermediate(\\n\",\"            (dense): Linear(in_features=768, out_features=3072, bias=True)\\n\",\"          )\\n\",\"          (output): BertOutput(\\n\",\"            (dense): Linear(in_features=3072, out_features=768, bias=True)\\n\",\"            (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\\n\",\"            (dropout): Dropout(p=0.1, inplace=False)\\n\",\"          )\\n\",\"        )\\n\",\"      )\\n\",\"    )\\n\",\"    (pooler): BertPooler(\\n\",\"      (dense): Linear(in_features=768, out_features=768, bias=True)\\n\",\"      (activation): Tanh()\\n\",\"    )\\n\",\"  )\\n\",\"  (dropout): Dropout(p=0.1, inplace=False)\\n\",\"  (classifier): Linear(in_features=768, out_features=7, bias=True)\\n\",\")\"]},\"metadata\":{\"tags\":[]},\"execution_count\":13}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"X3ELK9wXh5z9\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398218952,\"user_tz\":-180,\"elapsed\":452,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":13,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"ZROZOxM9xi3l\"},\"source\":[\"## Splitting data\\n\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"HM58CfgUZ0oK\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398219485,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"SIZE= data.shape[0]\\n\",\"\\n\",\"train_texts= list(data.text[:SIZE//2])\\n\",\"val_texts=   list(data.text[SIZE//2:(3*SIZE)//4 ])\\n\",\"test_texts=  list(data.text[(3*SIZE)//4:])\\n\",\"\\n\",\"train_labels= list(data.labels[:SIZE//2])\\n\",\"val_labels=   list(data.labels[SIZE//2:(3*SIZE)//4])\\n\",\"test_labels=  list(data.labels[(3*SIZE)//4:])\"],\"execution_count\":14,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"vwe5Bt8CfhdU\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398221030,\"user_tz\":-180,\"elapsed\":7,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"619c0354-0462-485e-804c-b5df86b7d713\"},\"source\":[\"len(train_texts), len(val_texts), len(test_texts)\"],\"execution_count\":15,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"(2450, 1225, 1225)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":15}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"snOgiQe2mbpx\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398225432,\"user_tz\":-180,\"elapsed\":4406,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"train_encodings = tokenizer(train_texts, truncation=True, padding=True)\\n\",\"val_encodings  = tokenizer(val_texts, truncation=True, padding=True)\\n\",\"test_encodings = tokenizer(test_texts, truncation=True, padding=True)\"],\"execution_count\":16,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"TvN9Siw65H9G\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398226853,\"user_tz\":-180,\"elapsed\":1,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from torch.utils.data import Dataset\\n\",\"class MyDataset(Dataset):\\n\",\"    def __init__(self, encodings, labels):\\n\",\"        self.encodings = encodings\\n\",\"        self.labels = labels\\n\",\"    def __getitem__(self, idx):\\n\",\"        item = {key: torch.tensor(val[idx]) for key, val in self.encodings.items()}\\n\",\"        item['labels'] = torch.tensor(self.labels[idx])\\n\",\"        return item\\n\",\"    def __len__(self):\\n\",\"        return len(self.labels)\"],\"execution_count\":17,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Vx3u-9ljtmM_\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398229008,\"user_tz\":-180,\"elapsed\":412,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"train_dataset = MyDataset(train_encodings, train_labels)\\n\",\"val_dataset = MyDataset(val_encodings, val_labels)\\n\",\"test_dataset = MyDataset(test_encodings, test_labels)\"],\"execution_count\":18,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"earrg8TiBojU\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398230906,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":18,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"SAu_MvIdp_Gq\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398231275,\"user_tz\":-180,\"elapsed\":2,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":18,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"-dXcl4LWBsJy\"},\"source\":[\"## Training with Trainer Class\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"jHP9LR_QsytZ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398235958,\"user_tz\":-180,\"elapsed\":2440,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from transformers import TrainingArguments, Trainer\"],\"execution_count\":19,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"PjcZ_K87l9CX\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398235959,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from sklearn.metrics import accuracy_score, precision_recall_fscore_support \\n\",\"def compute_metrics(pred): \\n\",\"    labels = pred.label_ids \\n\",\"    preds = pred.predictions.argmax(-1) \\n\",\"    precision, recall, f1, _ = precision_recall_fscore_support(labels, preds, average='macro') \\n\",\"    acc = accuracy_score(labels, preds) \\n\",\"    return { \\n\",\"        'Accuracy': acc, \\n\",\"        'F1': f1, \\n\",\"        'Precision': precision, \\n\",\"        'Recall': recall \\n\",\"    } \"],\"execution_count\":20,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"zMiPOIVAmYI2\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398239957,\"user_tz\":-180,\"elapsed\":1491,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"training_args = TrainingArguments(\\n\",\"    # The output directory where the model predictions and checkpoints will be written\\n\",\"    output_dir='./TTC4900Model', \\n\",\"    do_train=True,\\n\",\"    do_eval=True,\\n\",\"    #  The number of epochs, defaults to 3.0 \\n\",\"    num_train_epochs=3,              \\n\",\"    per_device_train_batch_size=16,  \\n\",\"    per_device_eval_batch_size=32,\\n\",\"    # Number of steps used for a linear warmup\\n\",\"    warmup_steps=100,                \\n\",\"    weight_decay=0.01,\\n\",\"    logging_strategy='steps',\\n\",\"   # TensorBoard log directory                 \\n\",\"    logging_dir='./multi-class-logs',            \\n\",\"    logging_steps=50,\\n\",\"    evaluation_strategy=\\\"steps\\\",\\n\",\"    eval_steps=50,\\n\",\"    save_strategy=\\\"epoch\\\", \\n\",\"    fp16=True,\\n\",\"    load_best_model_at_end=True\\n\",\")\"],\"execution_count\":21,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"8Ajz99mwj-OL\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398241364,\"user_tz\":-180,\"elapsed\":5,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"d3ee309d-d48a-4ed1-d9f6-ed48fcb3102f\"},\"source\":[\"trainer = Trainer(\\n\",\"    # the pre-trained model that will be fine-tuned \\n\",\"    model=model,\\n\",\"     # training arguments that we defined above                        \\n\",\"    args=training_args,                 \\n\",\"    train_dataset=train_dataset,         \\n\",\"    eval_dataset=val_dataset,            \\n\",\"    compute_metrics= compute_metrics\\n\",\")\"],\"execution_count\":22,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Using amp fp16 backend\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":1000},\"id\":\"1WRhCH-Hj-RT\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625398945390,\"user_tz\":-180,\"elapsed\":701522,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"fa531859-8922-4ced-9796-2301c3ebf091\"},\"source\":[\"trainer.train()\"],\"execution_count\":23,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"***** Running training *****\\n\",\"  Num examples = 2450\\n\",\"  Num Epochs = 3\\n\",\"  Instantaneous batch size per device = 16\\n\",\"  Total train batch size (w. parallel, distributed & accumulation) = 16\\n\",\"  Gradient Accumulation steps = 1\\n\",\"  Total optimization steps = 462\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"text/html\":[\"\\n\",\"    <div>\\n\",\"      \\n\",\"      <progress value='462' max='462' style='width:300px; height:20px; vertical-align: middle;'></progress>\\n\",\"      [462/462 11:39, Epoch 3/3]\\n\",\"    </div>\\n\",\"    <table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: left;\\\">\\n\",\"      <th>Step</th>\\n\",\"      <th>Training Loss</th>\\n\",\"      <th>Validation Loss</th>\\n\",\"      <th>Accuracy</th>\\n\",\"      <th>F1</th>\\n\",\"      <th>Precision</th>\\n\",\"      <th>Recall</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <td>50</td>\\n\",\"      <td>1.850700</td>\\n\",\"      <td>1.507407</td>\\n\",\"      <td>0.624490</td>\\n\",\"      <td>0.608790</td>\\n\",\"      <td>0.740980</td>\\n\",\"      <td>0.627075</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>100</td>\\n\",\"      <td>0.733500</td>\\n\",\"      <td>0.365703</td>\\n\",\"      <td>0.895510</td>\\n\",\"      <td>0.896049</td>\\n\",\"      <td>0.906131</td>\\n\",\"      <td>0.896706</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>150</td>\\n\",\"      <td>0.361300</td>\\n\",\"      <td>0.306502</td>\\n\",\"      <td>0.908571</td>\\n\",\"      <td>0.908585</td>\\n\",\"      <td>0.910181</td>\\n\",\"      <td>0.908059</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>200</td>\\n\",\"      <td>0.262900</td>\\n\",\"      <td>0.318767</td>\\n\",\"      <td>0.905306</td>\\n\",\"      <td>0.905354</td>\\n\",\"      <td>0.909020</td>\\n\",\"      <td>0.905336</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>250</td>\\n\",\"      <td>0.159000</td>\\n\",\"      <td>0.324903</td>\\n\",\"      <td>0.915102</td>\\n\",\"      <td>0.915583</td>\\n\",\"      <td>0.918657</td>\\n\",\"      <td>0.915158</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>300</td>\\n\",\"      <td>0.227400</td>\\n\",\"      <td>0.331741</td>\\n\",\"      <td>0.920000</td>\\n\",\"      <td>0.918919</td>\\n\",\"      <td>0.921991</td>\\n\",\"      <td>0.919482</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>350</td>\\n\",\"      <td>0.078200</td>\\n\",\"      <td>0.351717</td>\\n\",\"      <td>0.921633</td>\\n\",\"      <td>0.921153</td>\\n\",\"      <td>0.921619</td>\\n\",\"      <td>0.921414</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>400</td>\\n\",\"      <td>0.087700</td>\\n\",\"      <td>0.338882</td>\\n\",\"      <td>0.919184</td>\\n\",\"      <td>0.919011</td>\\n\",\"      <td>0.919340</td>\\n\",\"      <td>0.918896</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>450</td>\\n\",\"      <td>0.084000</td>\\n\",\"      <td>0.326685</td>\\n\",\"      <td>0.923265</td>\\n\",\"      <td>0.922903</td>\\n\",\"      <td>0.922840</td>\\n\",\"      <td>0.923093</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table><p>\"],\"text/plain\":[\"<IPython.core.display.HTML object>\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"/usr/local/lib/python3.7/dist-packages/transformers/trainer.py:1299: FutureWarning: Non-finite norm encountered in torch.nn.utils.clip_grad_norm_; continuing anyway. Note that the default behavior will change in a future release to error out if a non-finite total norm is encountered. At that point, setting error_if_nonfinite=false will be required to retain the old behavior.\\n\",\"  args.max_grad_norm,\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1225\\n\",\"  Batch size = 32\\n\",\"Saving model checkpoint to ./TTC4900Model/checkpoint-50\\n\",\"Configuration saved in ./TTC4900Model/checkpoint-50/config.json\\n\",\"Model weights saved in ./TTC4900Model/checkpoint-50/pytorch_model.bin\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1225\\n\",\"  Batch size = 32\\n\",\"Saving model checkpoint to ./TTC4900Model/checkpoint-100\\n\",\"Configuration saved in ./TTC4900Model/checkpoint-100/config.json\\n\",\"Model weights saved in ./TTC4900Model/checkpoint-100/pytorch_model.bin\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1225\\n\",\"  Batch size = 32\\n\",\"Saving model checkpoint to ./TTC4900Model/checkpoint-150\\n\",\"Configuration saved in ./TTC4900Model/checkpoint-150/config.json\\n\",\"Model weights saved in ./TTC4900Model/checkpoint-150/pytorch_model.bin\\n\",\"Saving model checkpoint to ./TTC4900Model/checkpoint-154\\n\",\"Configuration saved in ./TTC4900Model/checkpoint-154/config.json\\n\",\"Model weights saved in ./TTC4900Model/checkpoint-154/pytorch_model.bin\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1225\\n\",\"  Batch size = 32\\n\",\"Saving model checkpoint to ./TTC4900Model/checkpoint-200\\n\",\"Configuration saved in ./TTC4900Model/checkpoint-200/config.json\\n\",\"Model weights saved in ./TTC4900Model/checkpoint-200/pytorch_model.bin\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1225\\n\",\"  Batch size = 32\\n\",\"Saving model checkpoint to ./TTC4900Model/checkpoint-250\\n\",\"Configuration saved in ./TTC4900Model/checkpoint-250/config.json\\n\",\"Model weights saved in ./TTC4900Model/checkpoint-250/pytorch_model.bin\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1225\\n\",\"  Batch size = 32\\n\",\"Saving model checkpoint to ./TTC4900Model/checkpoint-300\\n\",\"Configuration saved in ./TTC4900Model/checkpoint-300/config.json\\n\",\"Model weights saved in ./TTC4900Model/checkpoint-300/pytorch_model.bin\\n\",\"Saving model checkpoint to ./TTC4900Model/checkpoint-308\\n\",\"Configuration saved in ./TTC4900Model/checkpoint-308/config.json\\n\",\"Model weights saved in ./TTC4900Model/checkpoint-308/pytorch_model.bin\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1225\\n\",\"  Batch size = 32\\n\",\"Saving model checkpoint to ./TTC4900Model/checkpoint-350\\n\",\"Configuration saved in ./TTC4900Model/checkpoint-350/config.json\\n\",\"Model weights saved in ./TTC4900Model/checkpoint-350/pytorch_model.bin\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1225\\n\",\"  Batch size = 32\\n\",\"Saving model checkpoint to ./TTC4900Model/checkpoint-400\\n\",\"Configuration saved in ./TTC4900Model/checkpoint-400/config.json\\n\",\"Model weights saved in ./TTC4900Model/checkpoint-400/pytorch_model.bin\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1225\\n\",\"  Batch size = 32\\n\",\"Saving model checkpoint to ./TTC4900Model/checkpoint-450\\n\",\"Configuration saved in ./TTC4900Model/checkpoint-450/config.json\\n\",\"Model weights saved in ./TTC4900Model/checkpoint-450/pytorch_model.bin\\n\",\"Saving model checkpoint to ./TTC4900Model/checkpoint-462\\n\",\"Configuration saved in ./TTC4900Model/checkpoint-462/config.json\\n\",\"Model weights saved in ./TTC4900Model/checkpoint-462/pytorch_model.bin\\n\",\"\\n\",\"\\n\",\"Training completed. Do not forget to share your model on huggingface.co/models =)\\n\",\"\\n\",\"\\n\",\"Loading best model from ./TTC4900Model/checkpoint-150 (score: 0.3065018653869629).\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"TrainOutput(global_step=462, training_loss=0.4197033045095799, metrics={'train_runtime': 700.7851, 'train_samples_per_second': 10.488, 'train_steps_per_second': 0.659, 'total_flos': 2497772677478400.0, 'train_loss': 0.4197033045095799, 'epoch': 3.0})\"]},\"metadata\":{\"tags\":[]},\"execution_count\":23}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"FN2i7kRIj-UQ\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":315},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399043817,\"user_tz\":-180,\"elapsed\":85330,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"71974f34-e461-4999-9ab8-558783167509\"},\"source\":[\"q=[trainer.evaluate(eval_dataset=data) for data in [train_dataset, val_dataset, test_dataset]]\\n\",\"pd.DataFrame(q, index=[\\\"train\\\",\\\"val\\\",\\\"test\\\"]).iloc[:,:5]\"],\"execution_count\":24,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"***** Running Evaluation *****\\n\",\"  Num examples = 2450\\n\",\"  Batch size = 32\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"text/html\":[\"\\n\",\"    <div>\\n\",\"      \\n\",\"      <progress value='155' max='77' style='width:300px; height:20px; vertical-align: middle;'></progress>\\n\",\"      [77/77 01:24]\\n\",\"    </div>\\n\",\"    \"],\"text/plain\":[\"<IPython.core.display.HTML object>\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"***** Running Evaluation *****\\n\",\"  Num examples = 1225\\n\",\"  Batch size = 32\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 1225\\n\",\"  Batch size = 32\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>eval_loss</th>\\n\",\"      <th>eval_Accuracy</th>\\n\",\"      <th>eval_F1</th>\\n\",\"      <th>eval_Precision</th>\\n\",\"      <th>eval_Recall</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>train</th>\\n\",\"      <td>0.197921</td>\\n\",\"      <td>0.941633</td>\\n\",\"      <td>0.941545</td>\\n\",\"      <td>0.942952</td>\\n\",\"      <td>0.941139</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>val</th>\\n\",\"      <td>0.306502</td>\\n\",\"      <td>0.908571</td>\\n\",\"      <td>0.908585</td>\\n\",\"      <td>0.910181</td>\\n\",\"      <td>0.908059</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>test</th>\\n\",\"      <td>0.318877</td>\\n\",\"      <td>0.908571</td>\\n\",\"      <td>0.908620</td>\\n\",\"      <td>0.908974</td>\\n\",\"      <td>0.909747</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"       eval_loss  eval_Accuracy   eval_F1  eval_Precision  eval_Recall\\n\",\"train   0.197921       0.941633  0.941545        0.942952     0.941139\\n\",\"val     0.306502       0.908571  0.908585        0.910181     0.908059\\n\",\"test    0.318877       0.908571  0.908620        0.908974     0.909747\"]},\"metadata\":{\"tags\":[]},\"execution_count\":24}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"H-mMU2rlj-Xa\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399043819,\"user_tz\":-180,\"elapsed\":12,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":24,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"I0guPT0jYJth\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399048192,\"user_tz\":-180,\"elapsed\":392,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from transformers import DistilBertForSequenceClassification, DistilBertTokenizerFast\"],\"execution_count\":25,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"7g6_tkNXj-fs\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399048604,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"def predict(text):\\n\",\"    inputs = tokenizer(text, padding=True, truncation=True, max_length=512, return_tensors=\\\"pt\\\").to(\\\"cuda\\\")\\n\",\"    outputs = model(**inputs)\\n\",\"    probs = outputs[0].softmax(1)\\n\",\"    return probs, probs.argmax(),model.config.id2label[probs.argmax().item()]\"],\"execution_count\":26,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"mac8gGgWmYNn\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399050044,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"f6038697-d659-44b8-b0fe-946c9ce8e7ac\"},\"source\":[\"# Example #1\\n\",\"text = \\\"Fenerbahçeli futbolcular kısa paslarla hazırlık çalışması yaptılar\\\"\\n\",\"predict(text)\"],\"execution_count\":27,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"(tensor([[0.0043, 0.0068, 0.0075, 0.0047, 0.0077, 0.9663, 0.0026]],\\n\",\"        device='cuda:0', grad_fn=<SoftmaxBackward>),\\n\",\" tensor(5, device='cuda:0'),\\n\",\" 'spor')\"]},\"metadata\":{\"tags\":[]},\"execution_count\":27}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"z6cmFfkUDobU\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399051931,\"user_tz\":-180,\"elapsed\":8,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":27,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"WWoJjzP6aYlc\"},\"source\":[\"## Save and Re-Load saved model for inference\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"1nU9QTjil_pM\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399057943,\"user_tz\":-180,\"elapsed\":4589,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"2810f8bc-3447-43e5-fe3f-e080a197b4bc\"},\"source\":[\"!pip install transformers\"],\"execution_count\":28,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: transformers in /usr/local/lib/python3.7/dist-packages (4.8.2)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Requirement already satisfied: huggingface-hub==0.0.12 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.12)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.5.0)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.10.3)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.45)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub==0.0.12->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2021.5.30)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"aF7GVSKSYBPw\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399060094,\"user_tz\":-180,\"elapsed\":2155,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"a0bcea98-9f37-460f-bf56-fa7604edd970\"},\"source\":[\"# saving the fine tuned model & tokenizer\\n\",\"model_path = \\\"turkish-text-classification-model\\\"\\n\",\"trainer.save_model(model_path)\\n\",\"tokenizer.save_pretrained(model_path)\"],\"execution_count\":29,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Saving model checkpoint to turkish-text-classification-model\\n\",\"Configuration saved in turkish-text-classification-model/config.json\\n\",\"Model weights saved in turkish-text-classification-model/pytorch_model.bin\\n\",\"tokenizer config file saved in turkish-text-classification-model/tokenizer_config.json\\n\",\"Special tokens file saved in turkish-text-classification-model/special_tokens_map.json\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"('turkish-text-classification-model/tokenizer_config.json',\\n\",\" 'turkish-text-classification-model/special_tokens_map.json',\\n\",\" 'turkish-text-classification-model/vocab.txt',\\n\",\" 'turkish-text-classification-model/added_tokens.json',\\n\",\" 'turkish-text-classification-model/tokenizer.json')\"]},\"metadata\":{\"tags\":[]},\"execution_count\":29}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"EA_eNKP_an4t\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"qEYQdBL8Tdkm\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399066951,\"user_tz\":-180,\"elapsed\":2937,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"0e6b93fa-32ab-481d-e676-94dd051acec6\"},\"source\":[\"model_path = \\\"turkish-text-classification-model\\\"\\n\",\"from transformers import pipeline, BertForSequenceClassification, BertTokenizerFast\\n\",\"model = BertForSequenceClassification.from_pretrained(model_path)\\n\",\"tokenizer= BertTokenizerFast.from_pretrained(model_path)\\n\",\"nlp= pipeline(\\\"sentiment-analysis\\\", model=model, tokenizer=tokenizer)\"],\"execution_count\":30,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"loading configuration file turkish-text-classification-model/config.json\\n\",\"Model config BertConfig {\\n\",\"  \\\"_name_or_path\\\": \\\"dbmdz/bert-base-turkish-uncased\\\",\\n\",\"  \\\"architectures\\\": [\\n\",\"    \\\"BertForSequenceClassification\\\"\\n\",\"  ],\\n\",\"  \\\"attention_probs_dropout_prob\\\": 0.1,\\n\",\"  \\\"gradient_checkpointing\\\": false,\\n\",\"  \\\"hidden_act\\\": \\\"gelu\\\",\\n\",\"  \\\"hidden_dropout_prob\\\": 0.1,\\n\",\"  \\\"hidden_size\\\": 768,\\n\",\"  \\\"id2label\\\": {\\n\",\"    \\\"0\\\": \\\"teknoloji\\\",\\n\",\"    \\\"1\\\": \\\"ekonomi\\\",\\n\",\"    \\\"2\\\": \\\"saglik\\\",\\n\",\"    \\\"3\\\": \\\"siyaset\\\",\\n\",\"    \\\"4\\\": \\\"kultur\\\",\\n\",\"    \\\"5\\\": \\\"spor\\\",\\n\",\"    \\\"6\\\": \\\"dunya\\\"\\n\",\"  },\\n\",\"  \\\"initializer_range\\\": 0.02,\\n\",\"  \\\"intermediate_size\\\": 3072,\\n\",\"  \\\"label2id\\\": {\\n\",\"    \\\"dunya\\\": 6,\\n\",\"    \\\"ekonomi\\\": 1,\\n\",\"    \\\"kultur\\\": 4,\\n\",\"    \\\"saglik\\\": 2,\\n\",\"    \\\"siyaset\\\": 3,\\n\",\"    \\\"spor\\\": 5,\\n\",\"    \\\"teknoloji\\\": 0\\n\",\"  },\\n\",\"  \\\"layer_norm_eps\\\": 1e-12,\\n\",\"  \\\"max_position_embeddings\\\": 512,\\n\",\"  \\\"model_type\\\": \\\"bert\\\",\\n\",\"  \\\"num_attention_heads\\\": 12,\\n\",\"  \\\"num_hidden_layers\\\": 12,\\n\",\"  \\\"pad_token_id\\\": 0,\\n\",\"  \\\"position_embedding_type\\\": \\\"absolute\\\",\\n\",\"  \\\"problem_type\\\": \\\"single_label_classification\\\",\\n\",\"  \\\"transformers_version\\\": \\\"4.8.2\\\",\\n\",\"  \\\"type_vocab_size\\\": 2,\\n\",\"  \\\"use_cache\\\": true,\\n\",\"  \\\"vocab_size\\\": 32000\\n\",\"}\\n\",\"\\n\",\"loading weights file turkish-text-classification-model/pytorch_model.bin\\n\",\"All model checkpoint weights were used when initializing BertForSequenceClassification.\\n\",\"\\n\",\"All the weights of BertForSequenceClassification were initialized from the model checkpoint at turkish-text-classification-model.\\n\",\"If your task is similar to the task the model of the checkpoint was trained on, you can already use BertForSequenceClassification for predictions without further training.\\n\",\"Didn't find file turkish-text-classification-model/added_tokens.json. We won't load it.\\n\",\"loading file turkish-text-classification-model/vocab.txt\\n\",\"loading file turkish-text-classification-model/tokenizer.json\\n\",\"loading file None\\n\",\"loading file turkish-text-classification-model/special_tokens_map.json\\n\",\"loading file turkish-text-classification-model/tokenizer_config.json\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Z0-NzK4AEhBg\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"zyiJkIvzcdgC\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399077112,\"user_tz\":-180,\"elapsed\":533,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"ddd71497-8990-4cde-95b9-99882f33bb17\"},\"source\":[\"nlp(\\\"Sinemada hangi filmler oynuyor bugün\\\")\"],\"execution_count\":31,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"[{'label': 'kultur', 'score': 0.897723913192749}]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":31}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"RPLqmWPMGc53\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399079590,\"user_tz\":-180,\"elapsed\":515,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"4070ccb8-9f2d-491e-b96e-0e8202777c07\"},\"source\":[\"nlp(\\\"Dolar ve Euro bugün yurtiçi piyasalarda yükseldi\\\")\"],\"execution_count\":32,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"[{'label': 'ekonomi', 'score': 0.9639127254486084}]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":32}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"5hc65L_mQcVf\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399082230,\"user_tz\":-180,\"elapsed\":632,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"43a2bda2-c915-47b5-f29c-8319bf76deeb\"},\"source\":[\"nlp(\\\"Bayern Münih ile Barcelona bugün karşı karşıya geliyor. Maçı İngiliz hakem James Watts yönetecek!\\\")\"],\"execution_count\":33,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"[{'label': 'spor', 'score': 0.9791778922080994}]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":33}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"hOqw_MoAVbgB\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH05/CH05d_Sentence_Pair_Regression.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH05d_Sentence_Pair_Regression.ipynb\",\"provenance\":[],\"collapsed_sections\":[],\"machine_shape\":\"hm\",\"authorship_tag\":\"ABX9TyPK2Dde0TDKA2hMNGNtADkt\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"},\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"7b66f32f24e742d4a1167c34f5ea7b98\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_5a803a1ae6ea48d99611c40fee0a8ee5\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_0b998ea4d01a475fb7e0e3590c58e628\",\"IPY_MODEL_b73dba3225e047ad9cdd872e5dc687e8\"]}},\"5a803a1ae6ea48d99611c40fee0a8ee5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"0b998ea4d01a475fb7e0e3590c58e628\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_8aeffc97808e4609bdedcba103fdbcc5\",\"_dom_classes\":[],\"description\":\"100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_439953ef657347f79c0558923dd10a90\"}},\"b73dba3225e047ad9cdd872e5dc687e8\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_1d93c68d171c4cbd8a39f5f252308b96\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1/1 [00:00&lt;00:00,  6.00ba/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_015bc65c0c304c949b30c3176723cef0\"}},\"8aeffc97808e4609bdedcba103fdbcc5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"439953ef657347f79c0558923dd10a90\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"1d93c68d171c4cbd8a39f5f252308b96\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"015bc65c0c304c949b30c3176723cef0\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"8014565da4dc49b4b9670e87b156ebe3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_f344130b75cc4ebfb85934eb800349d4\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_fd2a48cba41c44ba88b911a089e2479e\",\"IPY_MODEL_6d15d1b6350d40a682a3ed1944b6a36f\"]}},\"f344130b75cc4ebfb85934eb800349d4\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"fd2a48cba41c44ba88b911a089e2479e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_bc7d31e6c3824d1d8bbd564f7d386d91\",\"_dom_classes\":[],\"description\":\"100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_fae40de8cb2d44a4aaafe35c95afa9e8\"}},\"6d15d1b6350d40a682a3ed1944b6a36f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_57acce102e734593ac1fcfdc46f30fac\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1/1 [00:00&lt;00:00, 11.38ba/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_aa74daa69a2e40419f55e9adad4a566a\"}},\"bc7d31e6c3824d1d8bbd564f7d386d91\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"fae40de8cb2d44a4aaafe35c95afa9e8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"57acce102e734593ac1fcfdc46f30fac\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"aa74daa69a2e40419f55e9adad4a566a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}},\"accelerator\":\"GPU\"},\"cells\":[{\"cell_type\":\"code\",\"metadata\":{\"id\":\"0j2LVapLohlP\"},\"source\":[\"!pip install transformers datasets\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"dVZCyiU7owwN\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"hFU7H8UXrbvV\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400159593,\"user_tz\":-180,\"elapsed\":6880,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"07629888-0d74-406a-ce5e-f34c89db0022\"},\"source\":[\"from transformers import DistilBertConfig, DistilBertTokenizerFast, DistilBertForSequenceClassification\\n\",\"MODEL_PATH='distilbert-base-uncased'\\n\",\"config = DistilBertConfig.from_pretrained(MODEL_PATH, num_labels=1)\\n\",\"tokenizer = DistilBertTokenizerFast.from_pretrained(MODEL_PATH)\\n\",\"model = DistilBertForSequenceClassification.from_pretrained(MODEL_PATH, config=config)\"],\"execution_count\":20,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"loading configuration file https://huggingface.co/distilbert-base-uncased/resolve/main/config.json from cache at /root/.cache/huggingface/transformers/23454919702d26495337f3da04d1655c7ee010d5ec9d77bdb9e399e00302c0a1.d423bdf2f58dc8b77d5f5d18028d7ae4a72dcfd8f468e81fe979ada957a8c361\\n\",\"Model config DistilBertConfig {\\n\",\"  \\\"activation\\\": \\\"gelu\\\",\\n\",\"  \\\"architectures\\\": [\\n\",\"    \\\"DistilBertForMaskedLM\\\"\\n\",\"  ],\\n\",\"  \\\"attention_dropout\\\": 0.1,\\n\",\"  \\\"dim\\\": 768,\\n\",\"  \\\"dropout\\\": 0.1,\\n\",\"  \\\"hidden_dim\\\": 3072,\\n\",\"  \\\"id2label\\\": {\\n\",\"    \\\"0\\\": \\\"LABEL_0\\\"\\n\",\"  },\\n\",\"  \\\"initializer_range\\\": 0.02,\\n\",\"  \\\"label2id\\\": {\\n\",\"    \\\"LABEL_0\\\": 0\\n\",\"  },\\n\",\"  \\\"max_position_embeddings\\\": 512,\\n\",\"  \\\"model_type\\\": \\\"distilbert\\\",\\n\",\"  \\\"n_heads\\\": 12,\\n\",\"  \\\"n_layers\\\": 6,\\n\",\"  \\\"pad_token_id\\\": 0,\\n\",\"  \\\"qa_dropout\\\": 0.1,\\n\",\"  \\\"seq_classif_dropout\\\": 0.2,\\n\",\"  \\\"sinusoidal_pos_embds\\\": false,\\n\",\"  \\\"tie_weights_\\\": true,\\n\",\"  \\\"transformers_version\\\": \\\"4.8.2\\\",\\n\",\"  \\\"vocab_size\\\": 30522\\n\",\"}\\n\",\"\\n\",\"loading file https://huggingface.co/distilbert-base-uncased/resolve/main/vocab.txt from cache at /root/.cache/huggingface/transformers/0e1bbfda7f63a99bb52e3915dcf10c3c92122b827d92eb2d34ce94ee79ba486c.d789d64ebfe299b0e416afc4a169632f903f693095b4629a7ea271d5a0cf2c99\\n\",\"loading file https://huggingface.co/distilbert-base-uncased/resolve/main/tokenizer.json from cache at /root/.cache/huggingface/transformers/75abb59d7a06f4f640158a9bfcde005264e59e8d566781ab1415b139d2e4c603.7f2721073f19841be16f41b0a70b600ca6b880c8f3df6f3535cbc704371bdfa4\\n\",\"loading file https://huggingface.co/distilbert-base-uncased/resolve/main/added_tokens.json from cache at None\\n\",\"loading file https://huggingface.co/distilbert-base-uncased/resolve/main/special_tokens_map.json from cache at None\\n\",\"loading file https://huggingface.co/distilbert-base-uncased/resolve/main/tokenizer_config.json from cache at /root/.cache/huggingface/transformers/8c8624b8ac8aa99c60c912161f8332de003484428c47906d7ff7eb7f73eecdbb.20430bd8e10ef77a7d2977accefe796051e01bc2fc4aa146bc862997a1a15e79\\n\",\"loading weights file https://huggingface.co/distilbert-base-uncased/resolve/main/pytorch_model.bin from cache at /root/.cache/huggingface/transformers/9c169103d7e5a73936dd2b627e42851bec0831212b677c637033ee4bce9ab5ee.126183e36667471617ae2f0835fab707baa54b731f991507ebbb55ea85adb12a\\n\",\"Some weights of the model checkpoint at distilbert-base-uncased were not used when initializing DistilBertForSequenceClassification: ['vocab_layer_norm.weight', 'vocab_projector.weight', 'vocab_projector.bias', 'vocab_transform.weight', 'vocab_transform.bias', 'vocab_layer_norm.bias']\\n\",\"- This IS expected if you are initializing DistilBertForSequenceClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing DistilBertForSequenceClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\",\"Some weights of DistilBertForSequenceClassification were not initialized from the model checkpoint at distilbert-base-uncased and are newly initialized: ['pre_classifier.weight', 'classifier.weight', 'pre_classifier.bias', 'classifier.bias']\\n\",\"You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"QQS-rj9uvYsy\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625399898740,\"user_tz\":-180,\"elapsed\":493,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":2,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"j6__gpeKrbx1\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400164290,\"user_tz\":-180,\"elapsed\":931,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"2f1eaf02-2b66-48c8-f067-a2eb3804b277\"},\"source\":[\"import datasets\\n\",\"from datasets import load_dataset\\n\",\"stsb_train= load_dataset('glue','stsb', split=\\\"train\\\")\\n\",\"stsb_validation = load_dataset('glue','stsb', split=\\\"validation\\\")\\n\",\"stsb_validation=stsb_validation.shuffle(seed=42)\\n\",\"stsb_val= datasets.Dataset.from_dict(stsb_validation[:750])\\n\",\"stsb_test= datasets.Dataset.from_dict(stsb_validation[750:])\"],\"execution_count\":21,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Reusing dataset glue (/root/.cache/huggingface/datasets/glue/stsb/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad)\\n\",\"Reusing dataset glue (/root/.cache/huggingface/datasets/glue/stsb/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad)\\n\",\"Loading cached shuffled indices for dataset at /root/.cache/huggingface/datasets/glue/stsb/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad/cache-e044e8a2f565152b.arrow\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":419},\"id\":\"pSzTPLY9tesI\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400171273,\"user_tz\":-180,\"elapsed\":761,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"0a9f9b99-149c-40d5-f94e-8362718a2708\"},\"source\":[\"import pandas as pd\\n\",\"pd.DataFrame(stsb_train)\"],\"execution_count\":22,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>idx</th>\\n\",\"      <th>label</th>\\n\",\"      <th>sentence1</th>\\n\",\"      <th>sentence2</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>0</td>\\n\",\"      <td>5.00</td>\\n\",\"      <td>A plane is taking off.</td>\\n\",\"      <td>An air plane is taking off.</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>1</td>\\n\",\"      <td>3.80</td>\\n\",\"      <td>A man is playing a large flute.</td>\\n\",\"      <td>A man is playing a flute.</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>2</td>\\n\",\"      <td>3.80</td>\\n\",\"      <td>A man is spreading shreded cheese on a pizza.</td>\\n\",\"      <td>A man is spreading shredded cheese on an uncoo...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>3</td>\\n\",\"      <td>2.60</td>\\n\",\"      <td>Three men are playing chess.</td>\\n\",\"      <td>Two men are playing chess.</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>4</td>\\n\",\"      <td>4.25</td>\\n\",\"      <td>A man is playing the cello.</td>\\n\",\"      <td>A man seated is playing the cello.</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>...</th>\\n\",\"      <td>...</td>\\n\",\"      <td>...</td>\\n\",\"      <td>...</td>\\n\",\"      <td>...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5744</th>\\n\",\"      <td>5744</td>\\n\",\"      <td>0.00</td>\\n\",\"      <td>Severe Gales As Storm Clodagh Hits Britain</td>\\n\",\"      <td>Merkel pledges NATO solidarity with Latvia</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5745</th>\\n\",\"      <td>5745</td>\\n\",\"      <td>0.00</td>\\n\",\"      <td>Dozens of Egyptians hostages taken by Libyan t...</td>\\n\",\"      <td>Egyptian boat crash death toll rises as more b...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5746</th>\\n\",\"      <td>5746</td>\\n\",\"      <td>0.00</td>\\n\",\"      <td>President heading to Bahrain</td>\\n\",\"      <td>President Xi: China to continue help to fight ...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5747</th>\\n\",\"      <td>5747</td>\\n\",\"      <td>0.00</td>\\n\",\"      <td>China, India vow to further bilateral ties</td>\\n\",\"      <td>China Scrambles to Reassure Jittery Stock Traders</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5748</th>\\n\",\"      <td>5748</td>\\n\",\"      <td>0.00</td>\\n\",\"      <td>Putin spokesman: Doping charges appear unfounded</td>\\n\",\"      <td>The Latest on Severe Weather: 1 Dead in Texas ...</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"<p>5749 rows × 4 columns</p>\\n\",\"</div>\"],\"text/plain\":[\"       idx  ...                                          sentence2\\n\",\"0        0  ...                        An air plane is taking off.\\n\",\"1        1  ...                          A man is playing a flute.\\n\",\"2        2  ...  A man is spreading shredded cheese on an uncoo...\\n\",\"3        3  ...                         Two men are playing chess.\\n\",\"4        4  ...                 A man seated is playing the cello.\\n\",\"...    ...  ...                                                ...\\n\",\"5744  5744  ...         Merkel pledges NATO solidarity with Latvia\\n\",\"5745  5745  ...  Egyptian boat crash death toll rises as more b...\\n\",\"5746  5746  ...  President Xi: China to continue help to fight ...\\n\",\"5747  5747  ...  China Scrambles to Reassure Jittery Stock Traders\\n\",\"5748  5748  ...  The Latest on Severe Weather: 1 Dead in Texas ...\\n\",\"\\n\",\"[5749 rows x 4 columns]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":22}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"WwmANBTbwA6n\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400173846,\"user_tz\":-180,\"elapsed\":7,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"5d6871da-cdfc-4034-9bdb-1459fd2829ad\"},\"source\":[\"stsb_train.shape, stsb_val.shape, stsb_test.shape\"],\"execution_count\":23,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"((5749, 4), (750, 4), (750, 4))\"]},\"metadata\":{\"tags\":[]},\"execution_count\":23}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"atX4uT7Crb0W\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":132,\"referenced_widgets\":[\"7b66f32f24e742d4a1167c34f5ea7b98\",\"5a803a1ae6ea48d99611c40fee0a8ee5\",\"0b998ea4d01a475fb7e0e3590c58e628\",\"b73dba3225e047ad9cdd872e5dc687e8\",\"8aeffc97808e4609bdedcba103fdbcc5\",\"439953ef657347f79c0558923dd10a90\",\"1d93c68d171c4cbd8a39f5f252308b96\",\"015bc65c0c304c949b30c3176723cef0\",\"8014565da4dc49b4b9670e87b156ebe3\",\"f344130b75cc4ebfb85934eb800349d4\",\"fd2a48cba41c44ba88b911a089e2479e\",\"6d15d1b6350d40a682a3ed1944b6a36f\",\"bc7d31e6c3824d1d8bbd564f7d386d91\",\"fae40de8cb2d44a4aaafe35c95afa9e8\",\"57acce102e734593ac1fcfdc46f30fac\",\"aa74daa69a2e40419f55e9adad4a566a\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400176175,\"user_tz\":-180,\"elapsed\":529,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"971df86e-a384-40e6-fb59-e024d761a90c\"},\"source\":[\"enc_train = stsb_train.map(lambda e: tokenizer( e['sentence1'],e['sentence2'], padding=True, truncation=True), batched=True, batch_size=1000) \\n\",\"enc_val =   stsb_val.map(lambda e: tokenizer( e['sentence1'],e['sentence2'], padding=True, truncation=True), batched=True, batch_size=1000) \\n\",\"enc_test =  stsb_test.map(lambda e: tokenizer( e['sentence1'],e['sentence2'], padding=True, truncation=True), batched=True, batch_size=1000)  \\n\"],\"execution_count\":24,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Loading cached processed dataset at /root/.cache/huggingface/datasets/glue/stsb/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad/cache-96b9dfcfcfd5f983.arrow\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"7b66f32f24e742d4a1167c34f5ea7b98\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"8014565da4dc49b4b9670e87b156ebe3\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":419},\"id\":\"yCaCzpbywICi\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400181598,\"user_tz\":-180,\"elapsed\":937,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"166cdd3c-d422-40bf-b4ad-4923edef847a\"},\"source\":[\"import pandas as pd\\n\",\"pd.DataFrame(enc_train)\"],\"execution_count\":25,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>attention_mask</th>\\n\",\"      <th>idx</th>\\n\",\"      <th>input_ids</th>\\n\",\"      <th>label</th>\\n\",\"      <th>sentence1</th>\\n\",\"      <th>sentence2</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>0</td>\\n\",\"      <td>[101, 1037, 4946, 2003, 2635, 2125, 1012, 102,...</td>\\n\",\"      <td>5.00</td>\\n\",\"      <td>A plane is taking off.</td>\\n\",\"      <td>An air plane is taking off.</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>1</td>\\n\",\"      <td>[101, 1037, 2158, 2003, 2652, 1037, 2312, 8928...</td>\\n\",\"      <td>3.80</td>\\n\",\"      <td>A man is playing a large flute.</td>\\n\",\"      <td>A man is playing a flute.</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>2</td>\\n\",\"      <td>[101, 1037, 2158, 2003, 9359, 14021, 5596, 209...</td>\\n\",\"      <td>3.80</td>\\n\",\"      <td>A man is spreading shreded cheese on a pizza.</td>\\n\",\"      <td>A man is spreading shredded cheese on an uncoo...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>3</td>\\n\",\"      <td>[101, 2093, 2273, 2024, 2652, 7433, 1012, 102,...</td>\\n\",\"      <td>2.60</td>\\n\",\"      <td>Three men are playing chess.</td>\\n\",\"      <td>Two men are playing chess.</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>4</td>\\n\",\"      <td>[101, 1037, 2158, 2003, 2652, 1996, 10145, 101...</td>\\n\",\"      <td>4.25</td>\\n\",\"      <td>A man is playing the cello.</td>\\n\",\"      <td>A man seated is playing the cello.</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>...</th>\\n\",\"      <td>...</td>\\n\",\"      <td>...</td>\\n\",\"      <td>...</td>\\n\",\"      <td>...</td>\\n\",\"      <td>...</td>\\n\",\"      <td>...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5744</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>5744</td>\\n\",\"      <td>[101, 5729, 14554, 2015, 2004, 4040, 18856, 13...</td>\\n\",\"      <td>0.00</td>\\n\",\"      <td>Severe Gales As Storm Clodagh Hits Britain</td>\\n\",\"      <td>Merkel pledges NATO solidarity with Latvia</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5745</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>5745</td>\\n\",\"      <td>[101, 9877, 1997, 23437, 19323, 2579, 2011, 19...</td>\\n\",\"      <td>0.00</td>\\n\",\"      <td>Dozens of Egyptians hostages taken by Libyan t...</td>\\n\",\"      <td>Egyptian boat crash death toll rises as more b...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5746</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>5746</td>\\n\",\"      <td>[101, 2343, 5825, 2000, 15195, 102, 2343, 8418...</td>\\n\",\"      <td>0.00</td>\\n\",\"      <td>President heading to Bahrain</td>\\n\",\"      <td>President Xi: China to continue help to fight ...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5747</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>5747</td>\\n\",\"      <td>[101, 2859, 1010, 2634, 19076, 2000, 2582, 177...</td>\\n\",\"      <td>0.00</td>\\n\",\"      <td>China, India vow to further bilateral ties</td>\\n\",\"      <td>China Scrambles to Reassure Jittery Stock Traders</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5748</th>\\n\",\"      <td>[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...</td>\\n\",\"      <td>5748</td>\\n\",\"      <td>[101, 22072, 14056, 1024, 23799, 5571, 3711, 4...</td>\\n\",\"      <td>0.00</td>\\n\",\"      <td>Putin spokesman: Doping charges appear unfounded</td>\\n\",\"      <td>The Latest on Severe Weather: 1 Dead in Texas ...</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"<p>5749 rows × 6 columns</p>\\n\",\"</div>\"],\"text/plain\":[\"                                         attention_mask  ...                                          sentence2\\n\",\"0     [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...                        An air plane is taking off.\\n\",\"1     [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...                          A man is playing a flute.\\n\",\"2     [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  A man is spreading shredded cheese on an uncoo...\\n\",\"3     [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...                         Two men are playing chess.\\n\",\"4     [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...                 A man seated is playing the cello.\\n\",\"...                                                 ...  ...                                                ...\\n\",\"5744  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...         Merkel pledges NATO solidarity with Latvia\\n\",\"5745  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  Egyptian boat crash death toll rises as more b...\\n\",\"5746  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  President Xi: China to continue help to fight ...\\n\",\"5747  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  China Scrambles to Reassure Jittery Stock Traders\\n\",\"5748  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...  ...  The Latest on Severe Weather: 1 Dead in Texas ...\\n\",\"\\n\",\"[5749 rows x 6 columns]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":25}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Ey_7Z1gqsBqA\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400183332,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from transformers import TrainingArguments, Trainer\"],\"execution_count\":26,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"aEGlK0_usBsn\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400184846,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"bcaeb8e5-c12b-43a5-eec2-e28e7524f9ce\"},\"source\":[\"training_args = TrainingArguments(\\n\",\"    # The output directory where the model predictions and checkpoints will be written\\n\",\"    output_dir='./stsb-model', \\n\",\"    do_train=True,\\n\",\"    do_eval=True,\\n\",\"    #  The number of epochs, defaults to 3.0 \\n\",\"    num_train_epochs=3,              \\n\",\"    per_device_train_batch_size=32,  \\n\",\"    per_device_eval_batch_size=64,\\n\",\"    # Number of steps used for a linear warmup\\n\",\"    warmup_steps=100,                \\n\",\"    weight_decay=0.01,\\n\",\"    # TensorBoard log directory\\n\",\"    logging_strategy='steps',                \\n\",\"    logging_dir='./logs',            \\n\",\"    logging_steps=50,\\n\",\"    # other options : no, steps\\n\",\"    evaluation_strategy=\\\"steps\\\",\\n\",\"    save_strategy=\\\"epoch\\\",\\n\",\"    fp16=True,\\n\",\"    load_best_model_at_end=True\\n\",\")\"],\"execution_count\":27,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"PyTorch: setting up devices\\n\",\"The default value for the training argument `--report_to` will change in v5 (from all installed integrations to none). In v5, you will need to use `--report_to all` to get the same behavior as now. You should start updating your code and make this info disappear :-).\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"wQTrurOMrHSu\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400186689,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from torch import cuda\\n\",\"device = 'cuda' if cuda.is_available() else 'cpu'\"],\"execution_count\":28,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"OtaDhYLOz3FD\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400188847,\"user_tz\":-180,\"elapsed\":5,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"import numpy as np\\n\",\"from scipy.stats import pearsonr\\n\",\"from scipy.stats import spearmanr\\n\",\"def compute_metrics(pred):\\n\",\"    preds = np.squeeze(pred.predictions) \\n\",\"    return {\\\"MSE\\\": ((preds - pred.label_ids) ** 2).mean().item(),\\n\",\"            \\\"RMSE\\\": (np.sqrt ((  (preds - pred.label_ids) ** 2).mean())).item(),\\n\",\"            \\\"MAE\\\": (np.abs(preds - pred.label_ids)).mean().item(),\\n\",\"            \\\"Pearson\\\" : pearsonr(preds,pred.label_ids)[0],\\n\",\"            \\\"Spearman's Rank\\\" : spearmanr(preds,pred.label_ids)[0]\\n\",\"            }\"],\"execution_count\":29,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"6_vqydEoqKI8\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400193166,\"user_tz\":-180,\"elapsed\":514,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"1fc9f8cb-0af3-442b-9c5c-369cc9fc595a\"},\"source\":[\"trainer = Trainer(\\n\",\"        model=model,\\n\",\"        args=training_args,\\n\",\"        train_dataset=enc_train,\\n\",\"        eval_dataset=enc_val,\\n\",\"        compute_metrics=compute_metrics,\\n\",\"        tokenizer=tokenizer\\n\",\"    )\"],\"execution_count\":30,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Using amp fp16 backend\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"UpgwkwOiqzLW\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":1000},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400312780,\"user_tz\":-180,\"elapsed\":117775,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"6f324490-9d03-4a3b-d3f4-207efed7f0bb\"},\"source\":[\"train_result = trainer.train()\\n\",\"metrics = train_result.metrics\"],\"execution_count\":31,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"The following columns in the training set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running training *****\\n\",\"  Num examples = 5749\\n\",\"  Num Epochs = 3\\n\",\"  Instantaneous batch size per device = 32\\n\",\"  Total train batch size (w. parallel, distributed & accumulation) = 32\\n\",\"  Gradient Accumulation steps = 1\\n\",\"  Total optimization steps = 540\\n\",\"/usr/local/lib/python3.7/dist-packages/transformers/trainer.py:1299: FutureWarning: Non-finite norm encountered in torch.nn.utils.clip_grad_norm_; continuing anyway. Note that the default behavior will change in a future release to error out if a non-finite total norm is encountered. At that point, setting error_if_nonfinite=false will be required to retain the old behavior.\\n\",\"  args.max_grad_norm,\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"text/html\":[\"\\n\",\"    <div>\\n\",\"      \\n\",\"      <progress value='540' max='540' style='width:300px; height:20px; vertical-align: middle;'></progress>\\n\",\"      [540/540 01:53, Epoch 3/3]\\n\",\"    </div>\\n\",\"    <table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: left;\\\">\\n\",\"      <th>Step</th>\\n\",\"      <th>Training Loss</th>\\n\",\"      <th>Validation Loss</th>\\n\",\"      <th>Mse</th>\\n\",\"      <th>Rmse</th>\\n\",\"      <th>Mae</th>\\n\",\"      <th>Pearson</th>\\n\",\"      <th>Spearman's rank</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <td>50</td>\\n\",\"      <td>5.964800</td>\\n\",\"      <td>2.136971</td>\\n\",\"      <td>2.136971</td>\\n\",\"      <td>1.461838</td>\\n\",\"      <td>1.242887</td>\\n\",\"      <td>0.239567</td>\\n\",\"      <td>0.231133</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>100</td>\\n\",\"      <td>1.924600</td>\\n\",\"      <td>0.828052</td>\\n\",\"      <td>0.828052</td>\\n\",\"      <td>0.909974</td>\\n\",\"      <td>0.729926</td>\\n\",\"      <td>0.796842</td>\\n\",\"      <td>0.797176</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>150</td>\\n\",\"      <td>0.979900</td>\\n\",\"      <td>0.703802</td>\\n\",\"      <td>0.703802</td>\\n\",\"      <td>0.838929</td>\\n\",\"      <td>0.682661</td>\\n\",\"      <td>0.835054</td>\\n\",\"      <td>0.832703</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>200</td>\\n\",\"      <td>0.787500</td>\\n\",\"      <td>0.658153</td>\\n\",\"      <td>0.658153</td>\\n\",\"      <td>0.811267</td>\\n\",\"      <td>0.623839</td>\\n\",\"      <td>0.850082</td>\\n\",\"      <td>0.846071</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>250</td>\\n\",\"      <td>0.586400</td>\\n\",\"      <td>0.625896</td>\\n\",\"      <td>0.625896</td>\\n\",\"      <td>0.791136</td>\\n\",\"      <td>0.614382</td>\\n\",\"      <td>0.858766</td>\\n\",\"      <td>0.854464</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>300</td>\\n\",\"      <td>0.527500</td>\\n\",\"      <td>0.602254</td>\\n\",\"      <td>0.602254</td>\\n\",\"      <td>0.776050</td>\\n\",\"      <td>0.620157</td>\\n\",\"      <td>0.862716</td>\\n\",\"      <td>0.858086</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>350</td>\\n\",\"      <td>0.490400</td>\\n\",\"      <td>0.565506</td>\\n\",\"      <td>0.565506</td>\\n\",\"      <td>0.752001</td>\\n\",\"      <td>0.582657</td>\\n\",\"      <td>0.867851</td>\\n\",\"      <td>0.862989</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>400</td>\\n\",\"      <td>0.365000</td>\\n\",\"      <td>0.581609</td>\\n\",\"      <td>0.581609</td>\\n\",\"      <td>0.762633</td>\\n\",\"      <td>0.590046</td>\\n\",\"      <td>0.867682</td>\\n\",\"      <td>0.863059</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>450</td>\\n\",\"      <td>0.321000</td>\\n\",\"      <td>0.545002</td>\\n\",\"      <td>0.545002</td>\\n\",\"      <td>0.738242</td>\\n\",\"      <td>0.576358</td>\\n\",\"      <td>0.870531</td>\\n\",\"      <td>0.865723</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>500</td>\\n\",\"      <td>0.310700</td>\\n\",\"      <td>0.548513</td>\\n\",\"      <td>0.548513</td>\\n\",\"      <td>0.740617</td>\\n\",\"      <td>0.578976</td>\\n\",\"      <td>0.867558</td>\\n\",\"      <td>0.862267</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table><p>\"],\"text/plain\":[\"<IPython.core.display.HTML object>\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 750\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-50\\n\",\"Configuration saved in ./stsb-model/checkpoint-50/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-50/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-50/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-50/special_tokens_map.json\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 750\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-100\\n\",\"Configuration saved in ./stsb-model/checkpoint-100/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-100/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-100/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-100/special_tokens_map.json\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 750\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-150\\n\",\"Configuration saved in ./stsb-model/checkpoint-150/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-150/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-150/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-150/special_tokens_map.json\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-180\\n\",\"Configuration saved in ./stsb-model/checkpoint-180/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-180/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-180/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-180/special_tokens_map.json\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 750\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-200\\n\",\"Configuration saved in ./stsb-model/checkpoint-200/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-200/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-200/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-200/special_tokens_map.json\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 750\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-250\\n\",\"Configuration saved in ./stsb-model/checkpoint-250/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-250/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-250/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-250/special_tokens_map.json\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 750\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-300\\n\",\"Configuration saved in ./stsb-model/checkpoint-300/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-300/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-300/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-300/special_tokens_map.json\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 750\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-350\\n\",\"Configuration saved in ./stsb-model/checkpoint-350/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-350/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-350/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-350/special_tokens_map.json\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-360\\n\",\"Configuration saved in ./stsb-model/checkpoint-360/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-360/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-360/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-360/special_tokens_map.json\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 750\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-400\\n\",\"Configuration saved in ./stsb-model/checkpoint-400/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-400/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-400/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-400/special_tokens_map.json\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 750\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-450\\n\",\"Configuration saved in ./stsb-model/checkpoint-450/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-450/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-450/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-450/special_tokens_map.json\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 750\\n\",\"  Batch size = 64\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-500\\n\",\"Configuration saved in ./stsb-model/checkpoint-500/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-500/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-500/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-500/special_tokens_map.json\\n\",\"Saving model checkpoint to ./stsb-model/checkpoint-540\\n\",\"Configuration saved in ./stsb-model/checkpoint-540/config.json\\n\",\"Model weights saved in ./stsb-model/checkpoint-540/pytorch_model.bin\\n\",\"tokenizer config file saved in ./stsb-model/checkpoint-540/tokenizer_config.json\\n\",\"Special tokens file saved in ./stsb-model/checkpoint-540/special_tokens_map.json\\n\",\"\\n\",\"\\n\",\"Training completed. Do not forget to share your model on huggingface.co/models =)\\n\",\"\\n\",\"\\n\",\"Loading best model from ./stsb-model/checkpoint-450 (score: 0.5450015664100647).\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"hb4WiFvIFVEc\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400326181,\"user_tz\":-180,\"elapsed\":434,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"s1,s2=\\\"A plane is taking off.\\\",\\t\\\"An air plane is taking off.\\\"\"],\"execution_count\":32,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"B0WEXYXiFPxT\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400328216,\"user_tz\":-180,\"elapsed\":5,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"692c7be4-45cd-4078-9344-e0130d2b4a9b\"},\"source\":[\"encoding = tokenizer(s1,s2, return_tensors='pt', padding=True, truncation=True, max_length=512)\\n\",\"input_ids = encoding['input_ids'].to(device)\\n\",\"attention_mask = encoding['attention_mask'].to(device)\\n\",\"outputs = model(input_ids, attention_mask=attention_mask)\\n\",\"outputs.logits.item()\"],\"execution_count\":33,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"4.1813435554504395\"]},\"metadata\":{\"tags\":[]},\"execution_count\":33}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"lOdFlrwVAD9q\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400331549,\"user_tz\":-180,\"elapsed\":514,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"s1,s2=\\\"The men are playing soccer.\\\",\\t\\\"A man is riding a motorcycle.\\\"\"],\"execution_count\":34,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"U9efLSiOIsI0\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400333794,\"user_tz\":-180,\"elapsed\":5,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"9d04c194-bd7f-4e72-bcdb-e7dfd6e2f854\"},\"source\":[\"encoding = tokenizer(\\\"hey how are you there\\\",\\\"hey how are you\\\", return_tensors='pt', padding=True, truncation=True, max_length=512)\\n\",\"input_ids = encoding['input_ids'].to(device)\\n\",\"attention_mask = encoding['attention_mask'].to(device)\\n\",\"outputs = model(input_ids, attention_mask=attention_mask)\\n\",\"outputs.logits.item()\"],\"execution_count\":35,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"2.4175961017608643\"]},\"metadata\":{\"tags\":[]},\"execution_count\":35}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"dY0vcRawL7a1\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400336251,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":35,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"yftjp7zLNnrI\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":366},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400343318,\"user_tz\":-180,\"elapsed\":5915,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"3a326594-7adf-4101-9f50-ef106fddc0dc\"},\"source\":[\"q=[trainer.evaluate(eval_dataset=data) for data in [enc_train, enc_val, enc_test]]\\n\",\"pd.DataFrame(q, index=[\\\"train\\\",\\\"val\\\",\\\"test\\\"]).iloc[:,:6]\"],\"execution_count\":36,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 5749\\n\",\"  Batch size = 64\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"text/html\":[\"\\n\",\"    <div>\\n\",\"      \\n\",\"      <progress value='114' max='90' style='width:300px; height:20px; vertical-align: middle;'></progress>\\n\",\"      [90/90 00:05]\\n\",\"    </div>\\n\",\"    \"],\"text/plain\":[\"<IPython.core.display.HTML object>\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 750\\n\",\"  Batch size = 64\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `DistilBertForSequenceClassification.forward` and have been ignored: idx, sentence2, sentence1.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 750\\n\",\"  Batch size = 64\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>eval_loss</th>\\n\",\"      <th>eval_MSE</th>\\n\",\"      <th>eval_RMSE</th>\\n\",\"      <th>eval_MAE</th>\\n\",\"      <th>eval_Pearson</th>\\n\",\"      <th>eval_Spearman's Rank</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>train</th>\\n\",\"      <td>0.263773</td>\\n\",\"      <td>0.263773</td>\\n\",\"      <td>0.513588</td>\\n\",\"      <td>0.398535</td>\\n\",\"      <td>0.939193</td>\\n\",\"      <td>0.930282</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>val</th>\\n\",\"      <td>0.545002</td>\\n\",\"      <td>0.545002</td>\\n\",\"      <td>0.738242</td>\\n\",\"      <td>0.576358</td>\\n\",\"      <td>0.870531</td>\\n\",\"      <td>0.865723</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>test</th>\\n\",\"      <td>0.555785</td>\\n\",\"      <td>0.555785</td>\\n\",\"      <td>0.745510</td>\\n\",\"      <td>0.581903</td>\\n\",\"      <td>0.872935</td>\\n\",\"      <td>0.870873</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"       eval_loss  eval_MSE  ...  eval_Pearson  eval_Spearman's Rank\\n\",\"train   0.263773  0.263773  ...      0.939193              0.930282\\n\",\"val     0.545002  0.545002  ...      0.870531              0.865723\\n\",\"test    0.555785  0.555785  ...      0.872935              0.870873\\n\",\"\\n\",\"[3 rows x 6 columns]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":36}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"QUQe-45lNvhI\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625400349223,\"user_tz\":-180,\"elapsed\":2388,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"4ae0fbdf-349a-4d28-b8fa-3fd092655690\"},\"source\":[\"model_path = \\\"sentence-pair-regression-model\\\"\\n\",\"trainer.save_model(model_path)\\n\",\"tokenizer.save_pretrained(model_path)\"],\"execution_count\":37,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Saving model checkpoint to sentence-pair-regression-model\\n\",\"Configuration saved in sentence-pair-regression-model/config.json\\n\",\"Model weights saved in sentence-pair-regression-model/pytorch_model.bin\\n\",\"tokenizer config file saved in sentence-pair-regression-model/tokenizer_config.json\\n\",\"Special tokens file saved in sentence-pair-regression-model/special_tokens_map.json\\n\",\"tokenizer config file saved in sentence-pair-regression-model/tokenizer_config.json\\n\",\"Special tokens file saved in sentence-pair-regression-model/special_tokens_map.json\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"('sentence-pair-regression-model/tokenizer_config.json',\\n\",\" 'sentence-pair-regression-model/special_tokens_map.json',\\n\",\" 'sentence-pair-regression-model/vocab.txt',\\n\",\" 'sentence-pair-regression-model/added_tokens.json',\\n\",\" 'sentence-pair-regression-model/tokenizer.json')\"]},\"metadata\":{\"tags\":[]},\"execution_count\":37}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"7dw-66_wwfnO\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"u9Ttvhy7xoxU\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"t4_VD4cyx_G8\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH06/CH06a_Fine_tuning_language_models_for_NER.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH06a_Fine_tuning_language_models_for_NER.ipynb\",\"provenance\":[],\"collapsed_sections\":[],\"authorship_tag\":\"ABX9TyNIFqoCl3Rw/3hBNrkJq1l1\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"},\"accelerator\":\"GPU\",\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"92c7aa325a394fad8b3968c646fbd800\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_597a5483ca314efc9434f35f09464ffe\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_ac9970bee9384f7bb8503ee6d924db5b\",\"IPY_MODEL_71610e168aab4f96958fcdccd0fe33a7\"]}},\"597a5483ca314efc9434f35f09464ffe\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ac9970bee9384f7bb8503ee6d924db5b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_84f67a49b43349ccae2b603a1e7baf8f\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":2603,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":2603,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_6a0cb2ceb30c4ab78908f245585b4be2\"}},\"71610e168aab4f96958fcdccd0fe33a7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_f84663e22d3549538602b27649f778bb\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 9.52k/? [00:03&lt;00:00, 3.13kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_ed17ff248cf747f1adcd34d1eba02917\"}},\"84f67a49b43349ccae2b603a1e7baf8f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"6a0cb2ceb30c4ab78908f245585b4be2\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f84663e22d3549538602b27649f778bb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"ed17ff248cf747f1adcd34d1eba02917\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"4c99f189c7c646cb889aa316353ac1da\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_1ff79c319887430aa0c13b17b8fdc64e\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_d4e948a2a86542868664a06c839d3650\",\"IPY_MODEL_9c6fceb105264d04ad6f4c1a41c93f96\"]}},\"1ff79c319887430aa0c13b17b8fdc64e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d4e948a2a86542868664a06c839d3650\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_4fef309017a247d5ace912c95ee42f37\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1781,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1781,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_208d941c4a4b40efa8d8c14d9c85123f\"}},\"9c6fceb105264d04ad6f4c1a41c93f96\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_d945bd3fc94145559145ed7c4193c489\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 4.18k/? [00:00&lt;00:00, 48.8kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_650d348e4ebb4f3294b9c7d01b4dc019\"}},\"4fef309017a247d5ace912c95ee42f37\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"208d941c4a4b40efa8d8c14d9c85123f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d945bd3fc94145559145ed7c4193c489\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"650d348e4ebb4f3294b9c7d01b4dc019\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"9ea634a2e71d4252aef6907cadc02229\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_72155cdae7554b06836c92bd33bd5524\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_c408a366eb8e4546aee788b30b9e6d6f\",\"IPY_MODEL_cfbbd4051b044c2e9288a1fa9bfb5fc2\"]}},\"72155cdae7554b06836c92bd33bd5524\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c408a366eb8e4546aee788b30b9e6d6f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_eb81bc608c94419f84eb1b48a08467e6\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":649539,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":649539,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_4e4633eecf434bbeb57abbc17862ff87\"}},\"cfbbd4051b044c2e9288a1fa9bfb5fc2\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_a6ff1ea828b544b4a8e44c4e4dbd9c47\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 3.28M/? [00:01&lt;00:00, 2.80MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_5c72c705ec5e44e89b9e7db1b2acd0d1\"}},\"eb81bc608c94419f84eb1b48a08467e6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"4e4633eecf434bbeb57abbc17862ff87\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a6ff1ea828b544b4a8e44c4e4dbd9c47\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"5c72c705ec5e44e89b9e7db1b2acd0d1\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"49fd8b41a5da42a48e70b939879ec9c5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_29c24f79832f446b8281294c6367e7fc\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_78cd11080bf345829975a008cfb7154b\",\"IPY_MODEL_d9f13371ffb6431a9d4e69f74d05f2fb\"]}},\"29c24f79832f446b8281294c6367e7fc\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"78cd11080bf345829975a008cfb7154b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_4f67b860f17b47e9a99d9977bdcdaa68\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":162714,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":162714,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_62163309f48f49ab84aab8a08118b155\"}},\"d9f13371ffb6431a9d4e69f74d05f2fb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_07ffd7ddbd1e4298991c9b6a66f2a731\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 827k/? [00:00&lt;00:00, 1.59MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_ad8857239d63427b955bedbb83355cb9\"}},\"4f67b860f17b47e9a99d9977bdcdaa68\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"62163309f48f49ab84aab8a08118b155\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"07ffd7ddbd1e4298991c9b6a66f2a731\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"ad8857239d63427b955bedbb83355cb9\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"793015a12a1140fab34ef3e0f96b8abc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_cce11b08bd374e34ae26918a70df6c77\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_b6f2c47ba3104b459747024b78882348\",\"IPY_MODEL_201a6184aa80404e83189efef5c1ac58\"]}},\"cce11b08bd374e34ae26918a70df6c77\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"b6f2c47ba3104b459747024b78882348\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_caaf0794d24540029f70f3c15496f106\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":145897,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":145897,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_17c1171752df42ce8ac89f3807a99814\"}},\"201a6184aa80404e83189efef5c1ac58\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_6414ea99d4be4a1984d4015823843adb\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 748k/? [00:00&lt;00:00, 5.89MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a20e678c7a0e44289e28b0c1c72a3112\"}},\"caaf0794d24540029f70f3c15496f106\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"17c1171752df42ce8ac89f3807a99814\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"6414ea99d4be4a1984d4015823843adb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"a20e678c7a0e44289e28b0c1c72a3112\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c950368359cd43c9ac631523c1f5385a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_c806d2087e954b1e84e0c352e166edd3\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_59bf5c23acec402885f2d74358b62811\",\"IPY_MODEL_e2a101dae0c145f7991acb8a9ad24f2a\"]}},\"c806d2087e954b1e84e0c352e166edd3\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"59bf5c23acec402885f2d74358b62811\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_e16182d4eb194538ae406c1457b69200\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_809aa50bf3e6405a9228eaa6fdfa42eb\"}},\"e2a101dae0c145f7991acb8a9ad24f2a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_92b14aaffa204612a3ec5edb98dd6fa4\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 14041/0 [00:07&lt;00:00, 830.11 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_dd89f837db82484b84455bd24fb01faa\"}},\"e16182d4eb194538ae406c1457b69200\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"809aa50bf3e6405a9228eaa6fdfa42eb\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"92b14aaffa204612a3ec5edb98dd6fa4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"dd89f837db82484b84455bd24fb01faa\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d94dfb2191054445bd406921d59d4545\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_0ecb1ab856c04a2e9be802e469717bad\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_f961da9d54c247a59706e4dfb7115041\",\"IPY_MODEL_7d6eeb07803040a2b339a1f47886fafa\"]}},\"0ecb1ab856c04a2e9be802e469717bad\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f961da9d54c247a59706e4dfb7115041\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_360419f310034f05a8d0f352e9bd5cca\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_2c25269c247c410ab1e31c9868726533\"}},\"7d6eeb07803040a2b339a1f47886fafa\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_54af61fef8e442749379fb6582c8d600\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 3250/0 [00:00&lt;00:00, 4880.55 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e1c3573b6a26411e8cefad567c94a799\"}},\"360419f310034f05a8d0f352e9bd5cca\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"2c25269c247c410ab1e31c9868726533\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"54af61fef8e442749379fb6582c8d600\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"e1c3573b6a26411e8cefad567c94a799\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"4e8224a70f9d464cac71e2fd53963952\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_cd15796b26f946d7af438d4eff22528d\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_70dbbe7a8bad48cbbc7b91830bbd0438\",\"IPY_MODEL_307d4c14d1e74463a2e162d27b49f825\"]}},\"cd15796b26f946d7af438d4eff22528d\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"70dbbe7a8bad48cbbc7b91830bbd0438\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_29a4bdbeb8794ecf8bf516339b36bd8e\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_69a905bd2eaa476085fc962e808d18e5\"}},\"307d4c14d1e74463a2e162d27b49f825\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_99e2f0cb105e47d6b545982bee34ce72\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 3453/0 [00:00&lt;00:00, 4128.31 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_7200d1a4040d4dc6b5a4ae6b5998795e\"}},\"29a4bdbeb8794ecf8bf516339b36bd8e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"69a905bd2eaa476085fc962e808d18e5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"99e2f0cb105e47d6b545982bee34ce72\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"7200d1a4040d4dc6b5a4ae6b5998795e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c82af0ac0f334e97b1ed408c4c63d8e3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_f453160382df495ab6dfd3afb0466b4e\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_95c26c27630540058c8093016afea3f0\",\"IPY_MODEL_49c3c611729d4b65b15b39e6496a371b\"]}},\"f453160382df495ab6dfd3afb0466b4e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"95c26c27630540058c8093016afea3f0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_b177c5491060493ca377a86c388be5a7\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":231508,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":231508,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_59ffa5d458774ebaa7abb9247147f951\"}},\"49c3c611729d4b65b15b39e6496a371b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_43a6b76f46d840c39c21011a44ee3964\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 232k/232k [00:20&lt;00:00, 11.3kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e0debbf97e0a44018b24f8f20cff90e4\"}},\"b177c5491060493ca377a86c388be5a7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"59ffa5d458774ebaa7abb9247147f951\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"43a6b76f46d840c39c21011a44ee3964\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"e0debbf97e0a44018b24f8f20cff90e4\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"9eebcef2e348460fb86e2afc57f062e1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_414f888a6c9141c1a956c601faf29937\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_3b242f34378c427f84046f6ebd663216\",\"IPY_MODEL_51a1d00695d145469bb02acb28df0024\"]}},\"414f888a6c9141c1a956c601faf29937\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"3b242f34378c427f84046f6ebd663216\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_36caa7900dfe44769e2beecb31035c46\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":466062,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":466062,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_3bfd1bf85bfd4446a793e13ac9d9e75d\"}},\"51a1d00695d145469bb02acb28df0024\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_9ffad1911cd744a9a35b39f26e54b6db\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 466k/466k [00:01&lt;00:00, 357kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_683ae501aa794ee6a2fcaaba9b0bb8cf\"}},\"36caa7900dfe44769e2beecb31035c46\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"3bfd1bf85bfd4446a793e13ac9d9e75d\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"9ffad1911cd744a9a35b39f26e54b6db\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"683ae501aa794ee6a2fcaaba9b0bb8cf\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"496ee81318374b3db002fa3c087e4de8\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_4f8c331ae60444c4aad84c3199958224\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_87082851c1df4731a5747d3d3a7051eb\",\"IPY_MODEL_d04e7ed2570f4163bd3678efc0ee0478\"]}},\"4f8c331ae60444c4aad84c3199958224\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"87082851c1df4731a5747d3d3a7051eb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_472b7cc7bec04310b4de3e9f9ba5ea45\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":28,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":28,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_9eccdd6abc82409da1ec8cd73354d6a5\"}},\"d04e7ed2570f4163bd3678efc0ee0478\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_c38971d85d294f959c29585cc738492c\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 28.0/28.0 [00:18&lt;00:00, 1.51B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_90951025844f4785a3fa82468a40afdd\"}},\"472b7cc7bec04310b4de3e9f9ba5ea45\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"9eccdd6abc82409da1ec8cd73354d6a5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c38971d85d294f959c29585cc738492c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"90951025844f4785a3fa82468a40afdd\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"3a85067f746842d78a517c0f307ba909\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_4cd31a748d0f47d8b8dee88cb31d653f\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_7424ff3aa1f64a88b2085ff85eb41afb\",\"IPY_MODEL_69c8b9352432432aa3ecc7c4e9b74361\"]}},\"4cd31a748d0f47d8b8dee88cb31d653f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7424ff3aa1f64a88b2085ff85eb41afb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_de489fe0edb748b3a83cb53ec2295bd1\",\"_dom_classes\":[],\"description\":\"100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":15,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":15,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d1d8876b6d0a4a6eb85bec926a6c1b42\"}},\"69c8b9352432432aa3ecc7c4e9b74361\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_f875fa725e464387a555977500560450\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 15/15 [00:03&lt;00:00,  4.19ba/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_756b8ffcfddc47038ebd1912f2cd133b\"}},\"de489fe0edb748b3a83cb53ec2295bd1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"d1d8876b6d0a4a6eb85bec926a6c1b42\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f875fa725e464387a555977500560450\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"756b8ffcfddc47038ebd1912f2cd133b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ce3e3133a256404fb4f3e30ac71a2a78\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_931c8d529b724aaab2e3bdc8758cc7d9\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_5f4854b1583c42e2b1908fb0ffd1d5dc\",\"IPY_MODEL_b0a3f0bb042e4cf09e01835271e4a888\"]}},\"931c8d529b724aaab2e3bdc8758cc7d9\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"5f4854b1583c42e2b1908fb0ffd1d5dc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_143c0035daf544e2a188ce9293dc8420\",\"_dom_classes\":[],\"description\":\"100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":4,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":4,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a17603b325e04de88f38a0b306c8def1\"}},\"b0a3f0bb042e4cf09e01835271e4a888\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_829bc7d0ca144889afeb40e707968991\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 4/4 [00:01&lt;00:00,  2.90ba/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c26132ace40441b5a2f3b2a65c0985f5\"}},\"143c0035daf544e2a188ce9293dc8420\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"a17603b325e04de88f38a0b306c8def1\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"829bc7d0ca144889afeb40e707968991\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"c26132ace40441b5a2f3b2a65c0985f5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"08f1d60a403c40dea6a3bc9d5582d2b9\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_fcf1a86e887c4d4997448fcf9928c377\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_cd702ab110d7417d8e7e22240538601c\",\"IPY_MODEL_e1e1f3abe6784f1f814616111c7055ea\"]}},\"fcf1a86e887c4d4997448fcf9928c377\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"cd702ab110d7417d8e7e22240538601c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_ab4291bd5b254d06a749166651e0ae27\",\"_dom_classes\":[],\"description\":\"100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":4,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":4,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a1fd98e6b2044489881e5db2166b1ae7\"}},\"e1e1f3abe6784f1f814616111c7055ea\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_426615db151e4d6b8efa09c94e2980a0\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 4/4 [00:00&lt;00:00,  4.75ba/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e887d0f826c5417eb03deba55e2aa0c6\"}},\"ab4291bd5b254d06a749166651e0ae27\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"a1fd98e6b2044489881e5db2166b1ae7\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"426615db151e4d6b8efa09c94e2980a0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"e887d0f826c5417eb03deba55e2aa0c6\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"5db09e33fb544ec384c4a72ec6122f9a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_87668678dc6e46be83f698bca9cfe2a3\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_b7a95a6d255848fa96f17c1016760b83\",\"IPY_MODEL_a954d72dd0f14accaf890206b9bff91c\"]}},\"87668678dc6e46be83f698bca9cfe2a3\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"b7a95a6d255848fa96f17c1016760b83\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_93e3899f128747dfb0598fcab831506f\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":570,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":570,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_fd4d89a6892d4dd6a4dd7a4386d82b1e\"}},\"a954d72dd0f14accaf890206b9bff91c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_419c6a85be134b30a43bb5d29b7286d5\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 570/570 [00:00&lt;00:00, 1.74kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_efb0e0440191440e84925ad11a2f787f\"}},\"93e3899f128747dfb0598fcab831506f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"fd4d89a6892d4dd6a4dd7a4386d82b1e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"419c6a85be134b30a43bb5d29b7286d5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"efb0e0440191440e84925ad11a2f787f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"13ca8f125a674d38a9defb75a6839a15\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_65fc4118c30f4435987b1aab1de99f18\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_bf30f8d5bd4f42d5b12da59176dbd1e7\",\"IPY_MODEL_a4333119799245059c1c0c24f2ae328e\"]}},\"65fc4118c30f4435987b1aab1de99f18\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"bf30f8d5bd4f42d5b12da59176dbd1e7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_671cd7858fc94ce685d17652260c957d\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":440473133,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":440473133,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_ecc8e9b3bb034321a16ec8370c1555c3\"}},\"a4333119799245059c1c0c24f2ae328e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_deef678841364d60a6d03d3a53e5c034\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 440M/440M [00:08&lt;00:00, 49.2MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_83faeb05b4094e66877c123265861cd0\"}},\"671cd7858fc94ce685d17652260c957d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"ecc8e9b3bb034321a16ec8370c1555c3\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"deef678841364d60a6d03d3a53e5c034\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"83faeb05b4094e66877c123265861cd0\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a7fae790bb014c679c47af77ff1731f9\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_b61fd01535874d59a03815e03f327564\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_a913766208e34e17a920736f6f97c7ac\",\"IPY_MODEL_e25e87b78faa421089c78ff03e5ae3fc\"]}},\"b61fd01535874d59a03815e03f327564\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a913766208e34e17a920736f6f97c7ac\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_726416c1773449b3b3c00c55287ee8d3\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":2482,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":2482,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d5937a171f7a490a81f9fb5a247d38ef\"}},\"e25e87b78faa421089c78ff03e5ae3fc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_1c755575a3a84a179bc5c4badad758e6\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 6.34k/? [00:22&lt;00:00, 287B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_1b88cd9d8eb9496fad32293aa2e7566a\"}},\"726416c1773449b3b3c00c55287ee8d3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"d5937a171f7a490a81f9fb5a247d38ef\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"1c755575a3a84a179bc5c4badad758e6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"1b88cd9d8eb9496fad32293aa2e7566a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}}},\"cells\":[{\"cell_type\":\"code\",\"metadata\":{\"id\":\"7s5qlqI-etnc\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333674650,\"user_tz\":-180,\"elapsed\":7557,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"24ecec03-2987-43ab-b731-ff78461f6ee2\"},\"source\":[\"!pip install transformers datasets tokenizers\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Collecting transformers\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/fd/1a/41c644c963249fd7f3836d926afa1e3f1cc234a1c40d80c5f03ad8f6f1b2/transformers-4.8.2-py3-none-any.whl (2.5MB)\\n\",\"\\u001b[K     |████████████████████████████████| 2.5MB 7.8MB/s \\n\",\"\\u001b[?25hCollecting datasets\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/08/a2/d4e1024c891506e1cee8f9d719d20831bac31cb5b7416983c4d2f65a6287/datasets-1.8.0-py3-none-any.whl (237kB)\\n\",\"\\u001b[K     |████████████████████████████████| 245kB 51.0MB/s \\n\",\"\\u001b[?25hCollecting tokenizers\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d4/e2/df3543e8ffdab68f5acc73f613de9c2b155ac47f162e725dcac87c521c11/tokenizers-0.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.3MB)\\n\",\"\\u001b[K     |████████████████████████████████| 3.3MB 44.5MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Collecting huggingface-hub==0.0.12\\n\",\"  Downloading https://files.pythonhosted.org/packages/2f/ee/97e253668fda9b17e968b3f97b2f8e53aa0127e8807d24a547687423fe0b/huggingface_hub-0.0.12-py3-none-any.whl\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.5.0)\\n\",\"Collecting sacremoses\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/ee/67241dc87f266093c533a2d4d3d69438e57d7a90abb216fa076e7d475d4a/sacremoses-0.0.45-py3-none-any.whl (895kB)\\n\",\"\\u001b[K     |████████████████████████████████| 901kB 42.9MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from datasets) (0.3.4)\\n\",\"Requirement already satisfied: pyarrow<4.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (3.0.0)\\n\",\"Collecting fsspec\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/0e/3a/666e63625a19883ae8e1674099e631f9737bd5478c4790e5ad49c5ac5261/fsspec-2021.6.1-py3-none-any.whl (115kB)\\n\",\"\\u001b[K     |████████████████████████████████| 122kB 52.0MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: multiprocess in /usr/local/lib/python3.7/dist-packages (from datasets) (0.70.12.2)\\n\",\"Requirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from datasets) (1.1.5)\\n\",\"Collecting xxhash\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/7d/4f/0a862cad26aa2ed7a7cd87178cbbfa824fc1383e472d63596a0d018374e7/xxhash-2.0.2-cp37-cp37m-manylinux2010_x86_64.whl (243kB)\\n\",\"\\u001b[K     |████████████████████████████████| 245kB 38.4MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub==0.0.12->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2021.5.30)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2018.9)\\n\",\"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2.8.1)\\n\",\"Installing collected packages: tokenizers, huggingface-hub, sacremoses, transformers, fsspec, xxhash, datasets\\n\",\"Successfully installed datasets-1.8.0 fsspec-2021.6.1 huggingface-hub-0.0.12 sacremoses-0.0.45 tokenizers-0.10.3 transformers-4.8.2 xxhash-2.0.2\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"KooHZMYXeymA\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":326,\"referenced_widgets\":[\"92c7aa325a394fad8b3968c646fbd800\",\"597a5483ca314efc9434f35f09464ffe\",\"ac9970bee9384f7bb8503ee6d924db5b\",\"71610e168aab4f96958fcdccd0fe33a7\",\"84f67a49b43349ccae2b603a1e7baf8f\",\"6a0cb2ceb30c4ab78908f245585b4be2\",\"f84663e22d3549538602b27649f778bb\",\"ed17ff248cf747f1adcd34d1eba02917\",\"4c99f189c7c646cb889aa316353ac1da\",\"1ff79c319887430aa0c13b17b8fdc64e\",\"d4e948a2a86542868664a06c839d3650\",\"9c6fceb105264d04ad6f4c1a41c93f96\",\"4fef309017a247d5ace912c95ee42f37\",\"208d941c4a4b40efa8d8c14d9c85123f\",\"d945bd3fc94145559145ed7c4193c489\",\"650d348e4ebb4f3294b9c7d01b4dc019\",\"9ea634a2e71d4252aef6907cadc02229\",\"72155cdae7554b06836c92bd33bd5524\",\"c408a366eb8e4546aee788b30b9e6d6f\",\"cfbbd4051b044c2e9288a1fa9bfb5fc2\",\"eb81bc608c94419f84eb1b48a08467e6\",\"4e4633eecf434bbeb57abbc17862ff87\",\"a6ff1ea828b544b4a8e44c4e4dbd9c47\",\"5c72c705ec5e44e89b9e7db1b2acd0d1\",\"49fd8b41a5da42a48e70b939879ec9c5\",\"29c24f79832f446b8281294c6367e7fc\",\"78cd11080bf345829975a008cfb7154b\",\"d9f13371ffb6431a9d4e69f74d05f2fb\",\"4f67b860f17b47e9a99d9977bdcdaa68\",\"62163309f48f49ab84aab8a08118b155\",\"07ffd7ddbd1e4298991c9b6a66f2a731\",\"ad8857239d63427b955bedbb83355cb9\",\"793015a12a1140fab34ef3e0f96b8abc\",\"cce11b08bd374e34ae26918a70df6c77\",\"b6f2c47ba3104b459747024b78882348\",\"201a6184aa80404e83189efef5c1ac58\",\"caaf0794d24540029f70f3c15496f106\",\"17c1171752df42ce8ac89f3807a99814\",\"6414ea99d4be4a1984d4015823843adb\",\"a20e678c7a0e44289e28b0c1c72a3112\",\"c950368359cd43c9ac631523c1f5385a\",\"c806d2087e954b1e84e0c352e166edd3\",\"59bf5c23acec402885f2d74358b62811\",\"e2a101dae0c145f7991acb8a9ad24f2a\",\"e16182d4eb194538ae406c1457b69200\",\"809aa50bf3e6405a9228eaa6fdfa42eb\",\"92b14aaffa204612a3ec5edb98dd6fa4\",\"dd89f837db82484b84455bd24fb01faa\",\"d94dfb2191054445bd406921d59d4545\",\"0ecb1ab856c04a2e9be802e469717bad\",\"f961da9d54c247a59706e4dfb7115041\",\"7d6eeb07803040a2b339a1f47886fafa\",\"360419f310034f05a8d0f352e9bd5cca\",\"2c25269c247c410ab1e31c9868726533\",\"54af61fef8e442749379fb6582c8d600\",\"e1c3573b6a26411e8cefad567c94a799\",\"4e8224a70f9d464cac71e2fd53963952\",\"cd15796b26f946d7af438d4eff22528d\",\"70dbbe7a8bad48cbbc7b91830bbd0438\",\"307d4c14d1e74463a2e162d27b49f825\",\"29a4bdbeb8794ecf8bf516339b36bd8e\",\"69a905bd2eaa476085fc962e808d18e5\",\"99e2f0cb105e47d6b545982bee34ce72\",\"7200d1a4040d4dc6b5a4ae6b5998795e\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333691657,\"user_tz\":-180,\"elapsed\":14063,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"6d6b1291-f964-49df-9c49-4b34474c0b31\"},\"source\":[\"import datasets \\n\",\"conll2003 = datasets.load_dataset(\\\"conll2003\\\") \"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"92c7aa325a394fad8b3968c646fbd800\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=2603.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"4c99f189c7c646cb889aa316353ac1da\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1781.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\",\"Downloading and preparing dataset conll2003/conll2003 (download: 4.63 MiB, generated: 9.78 MiB, post-processed: Unknown size, total: 14.41 MiB) to /root/.cache/huggingface/datasets/conll2003/conll2003/1.0.0/40e7cb6bcc374f7c349c83acd1e9352a4f09474eb691f64f364ee62eb65d0ca6...\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"9ea634a2e71d4252aef6907cadc02229\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=649539.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"49fd8b41a5da42a48e70b939879ec9c5\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=162714.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"793015a12a1140fab34ef3e0f96b8abc\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=145897.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"c950368359cd43c9ac631523c1f5385a\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\r\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"d94dfb2191054445bd406921d59d4545\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\r\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"4e8224a70f9d464cac71e2fd53963952\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\rDataset conll2003 downloaded and prepared to /root/.cache/huggingface/datasets/conll2003/conll2003/1.0.0/40e7cb6bcc374f7c349c83acd1e9352a4f09474eb691f64f364ee62eb65d0ca6. Subsequent calls will reuse this data.\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"HXAzwpSNe4FM\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333691659,\"user_tz\":-180,\"elapsed\":13,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"f17240d1-76ae-4e5a-b9b4-115d4c9cf1f2\"},\"source\":[\"conll2003[\\\"train\\\"][0]\"],\"execution_count\":3,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"{'chunk_tags': [11, 21, 11, 12, 21, 22, 11, 12, 0],\\n\",\" 'id': '0',\\n\",\" 'ner_tags': [3, 0, 7, 0, 0, 0, 7, 0, 0],\\n\",\" 'pos_tags': [22, 42, 16, 21, 35, 37, 16, 21, 7],\\n\",\" 'tokens': ['EU',\\n\",\"  'rejects',\\n\",\"  'German',\\n\",\"  'call',\\n\",\"  'to',\\n\",\"  'boycott',\\n\",\"  'British',\\n\",\"  'lamb',\\n\",\"  '.']}\"]},\"metadata\":{\"tags\":[]},\"execution_count\":3}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"a6w_AVpbe6BZ\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333691660,\"user_tz\":-180,\"elapsed\":10,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"41f10b4e-3154-4b2d-9f24-d8ade922e2cb\"},\"source\":[\"conll2003[\\\"train\\\"].features[\\\"ner_tags\\\"]\"],\"execution_count\":4,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"Sequence(feature=ClassLabel(num_classes=9, names=['O', 'B-PER', 'I-PER', 'B-ORG', 'I-ORG', 'B-LOC', 'I-LOC', 'B-MISC', 'I-MISC'], names_file=None, id=None), length=-1, id=None)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":4}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"vPdTN25De8qy\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":168,\"referenced_widgets\":[\"c82af0ac0f334e97b1ed408c4c63d8e3\",\"f453160382df495ab6dfd3afb0466b4e\",\"95c26c27630540058c8093016afea3f0\",\"49c3c611729d4b65b15b39e6496a371b\",\"b177c5491060493ca377a86c388be5a7\",\"59ffa5d458774ebaa7abb9247147f951\",\"43a6b76f46d840c39c21011a44ee3964\",\"e0debbf97e0a44018b24f8f20cff90e4\",\"9eebcef2e348460fb86e2afc57f062e1\",\"414f888a6c9141c1a956c601faf29937\",\"3b242f34378c427f84046f6ebd663216\",\"51a1d00695d145469bb02acb28df0024\",\"36caa7900dfe44769e2beecb31035c46\",\"3bfd1bf85bfd4446a793e13ac9d9e75d\",\"9ffad1911cd744a9a35b39f26e54b6db\",\"683ae501aa794ee6a2fcaaba9b0bb8cf\",\"496ee81318374b3db002fa3c087e4de8\",\"4f8c331ae60444c4aad84c3199958224\",\"87082851c1df4731a5747d3d3a7051eb\",\"d04e7ed2570f4163bd3678efc0ee0478\",\"472b7cc7bec04310b4de3e9f9ba5ea45\",\"9eccdd6abc82409da1ec8cd73354d6a5\",\"c38971d85d294f959c29585cc738492c\",\"90951025844f4785a3fa82468a40afdd\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333697826,\"user_tz\":-180,\"elapsed\":2997,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"2294c386-c158-4212-aeaf-4751d84ac284\"},\"source\":[\"from transformers import BertTokenizerFast \\n\",\"tokenizer = BertTokenizerFast.from_pretrained(\\\"bert-base-uncased\\\") \"],\"execution_count\":5,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"c82af0ac0f334e97b1ed408c4c63d8e3\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=231508.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"9eebcef2e348460fb86e2afc57f062e1\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=466062.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"496ee81318374b3db002fa3c087e4de8\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=28.0, style=ProgressStyle(description_w…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"4FX3JmnRfAv7\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333702699,\"user_tz\":-180,\"elapsed\":288,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"def tokenize_and_align_labels(examples, label_all_tokens=True): \\n\",\"    tokenized_inputs = tokenizer(examples[\\\"tokens\\\"], truncation=True, is_split_into_words=True) \\n\",\"    labels = [] \\n\",\"    for i, label in enumerate(examples[\\\"ner_tags\\\"]): \\n\",\"        word_ids = tokenized_inputs.word_ids(batch_index=i) \\n\",\"        previous_word_idx = None \\n\",\"        label_ids = [] \\n\",\"        for word_idx in word_ids: \\n\",\"            if word_idx is None: \\n\",\"                label_ids.append(-100) \\n\",\"            elif word_idx != previous_word_idx: \\n\",\"                 label_ids.append(label[word_idx]) \\n\",\"            else: \\n\",\"                 label_ids.append(label[word_idx] if label_all_tokens else -100) \\n\",\"            previous_word_idx = word_idx \\n\",\"        labels.append(label_ids) \\n\",\"    tokenized_inputs[\\\"labels\\\"] = labels \\n\",\"    return tokenized_inputs \"],\"execution_count\":6,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"ssUnW4fyfDTc\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333703000,\"user_tz\":-180,\"elapsed\":11,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"a3894864-0f4e-4804-8515-234e25beb300\"},\"source\":[\"q = tokenize_and_align_labels(conll2003['train'][4:5]) \\n\",\"print(q) \"],\"execution_count\":7,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"{'input_ids': [[101, 2762, 1005, 1055, 4387, 2000, 1996, 2647, 2586, 1005, 1055, 15651, 2837, 14121, 1062, 9328, 5804, 2056, 2006, 9317, 10390, 2323, 4965, 8351, 4168, 4017, 2013, 3032, 2060, 2084, 3725, 2127, 1996, 4045, 6040, 2001, 24509, 1012, 102]], 'token_type_ids': [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], 'attention_mask': [[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]], 'labels': [[-100, 5, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 1, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, -100]]}\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"gyw5ULrtfFfC\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333710330,\"user_tz\":-180,\"elapsed\":312,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"a7fc5334-b269-4b8a-949a-c218013200c6\"},\"source\":[\"for token, label in zip(tokenizer.convert_ids_to_tokens(q[\\\"input_ids\\\"][0]),q[\\\"labels\\\"][0]): \\n\",\"    print(f\\\"{token:_<40} {label}\\\") \"],\"execution_count\":8,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"[CLS]___________________________________ -100\\n\",\"germany_________________________________ 5\\n\",\"'_______________________________________ 0\\n\",\"s_______________________________________ 0\\n\",\"representative__________________________ 0\\n\",\"to______________________________________ 0\\n\",\"the_____________________________________ 0\\n\",\"european________________________________ 3\\n\",\"union___________________________________ 4\\n\",\"'_______________________________________ 0\\n\",\"s_______________________________________ 0\\n\",\"veterinary______________________________ 0\\n\",\"committee_______________________________ 0\\n\",\"werner__________________________________ 1\\n\",\"z_______________________________________ 2\\n\",\"##wing__________________________________ 2\\n\",\"##mann__________________________________ 2\\n\",\"said____________________________________ 0\\n\",\"on______________________________________ 0\\n\",\"wednesday_______________________________ 0\\n\",\"consumers_______________________________ 0\\n\",\"should__________________________________ 0\\n\",\"buy_____________________________________ 0\\n\",\"sheep___________________________________ 0\\n\",\"##me____________________________________ 0\\n\",\"##at____________________________________ 0\\n\",\"from____________________________________ 0\\n\",\"countries_______________________________ 0\\n\",\"other___________________________________ 0\\n\",\"than____________________________________ 0\\n\",\"britain_________________________________ 5\\n\",\"until___________________________________ 0\\n\",\"the_____________________________________ 0\\n\",\"scientific______________________________ 0\\n\",\"advice__________________________________ 0\\n\",\"was_____________________________________ 0\\n\",\"clearer_________________________________ 0\\n\",\"._______________________________________ 0\\n\",\"[SEP]___________________________________ -100\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Kg0c2D7yfbf0\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":168,\"referenced_widgets\":[\"3a85067f746842d78a517c0f307ba909\",\"4cd31a748d0f47d8b8dee88cb31d653f\",\"7424ff3aa1f64a88b2085ff85eb41afb\",\"69c8b9352432432aa3ecc7c4e9b74361\",\"de489fe0edb748b3a83cb53ec2295bd1\",\"d1d8876b6d0a4a6eb85bec926a6c1b42\",\"f875fa725e464387a555977500560450\",\"756b8ffcfddc47038ebd1912f2cd133b\",\"ce3e3133a256404fb4f3e30ac71a2a78\",\"931c8d529b724aaab2e3bdc8758cc7d9\",\"5f4854b1583c42e2b1908fb0ffd1d5dc\",\"b0a3f0bb042e4cf09e01835271e4a888\",\"143c0035daf544e2a188ce9293dc8420\",\"a17603b325e04de88f38a0b306c8def1\",\"829bc7d0ca144889afeb40e707968991\",\"c26132ace40441b5a2f3b2a65c0985f5\",\"08f1d60a403c40dea6a3bc9d5582d2b9\",\"fcf1a86e887c4d4997448fcf9928c377\",\"cd702ab110d7417d8e7e22240538601c\",\"e1e1f3abe6784f1f814616111c7055ea\",\"ab4291bd5b254d06a749166651e0ae27\",\"a1fd98e6b2044489881e5db2166b1ae7\",\"426615db151e4d6b8efa09c94e2980a0\",\"e887d0f826c5417eb03deba55e2aa0c6\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333719213,\"user_tz\":-180,\"elapsed\":3406,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"e4376d6d-c1bd-41c8-f968-0a4de1d5679a\"},\"source\":[\"tokenized_datasets = conll2003.map(tokenize_and_align_labels, batched=True)\"],\"execution_count\":9,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"3a85067f746842d78a517c0f307ba909\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, max=15.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"ce3e3133a256404fb4f3e30ac71a2a78\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, max=4.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"08f1d60a403c40dea6a3bc9d5582d2b9\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, max=4.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"kSF7QRDQffPB\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":230,\"referenced_widgets\":[\"5db09e33fb544ec384c4a72ec6122f9a\",\"87668678dc6e46be83f698bca9cfe2a3\",\"b7a95a6d255848fa96f17c1016760b83\",\"a954d72dd0f14accaf890206b9bff91c\",\"93e3899f128747dfb0598fcab831506f\",\"fd4d89a6892d4dd6a4dd7a4386d82b1e\",\"419c6a85be134b30a43bb5d29b7286d5\",\"efb0e0440191440e84925ad11a2f787f\",\"13ca8f125a674d38a9defb75a6839a15\",\"65fc4118c30f4435987b1aab1de99f18\",\"bf30f8d5bd4f42d5b12da59176dbd1e7\",\"a4333119799245059c1c0c24f2ae328e\",\"671cd7858fc94ce685d17652260c957d\",\"ecc8e9b3bb034321a16ec8370c1555c3\",\"deef678841364d60a6d03d3a53e5c034\",\"83faeb05b4094e66877c123265861cd0\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333731690,\"user_tz\":-180,\"elapsed\":12487,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"3892011d-ad28-4a7f-fbb0-10aa9f3791ac\"},\"source\":[\"from transformers import AutoModelForTokenClassification \\n\",\"model = AutoModelForTokenClassification.from_pretrained(\\\"bert-base-uncased\\\", num_labels=9)\"],\"execution_count\":10,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"5db09e33fb544ec384c4a72ec6122f9a\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=570.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"13ca8f125a674d38a9defb75a6839a15\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=440473133.0, style=ProgressStyle(descri…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"stream\",\"text\":[\"Some weights of the model checkpoint at bert-base-uncased were not used when initializing BertForTokenClassification: ['cls.seq_relationship.weight', 'cls.predictions.transform.LayerNorm.bias', 'cls.predictions.transform.LayerNorm.weight', 'cls.seq_relationship.bias', 'cls.predictions.transform.dense.weight', 'cls.predictions.transform.dense.bias', 'cls.predictions.decoder.weight', 'cls.predictions.bias']\\n\",\"- This IS expected if you are initializing BertForTokenClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing BertForTokenClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\",\"Some weights of BertForTokenClassification were not initialized from the model checkpoint at bert-base-uncased and are newly initialized: ['classifier.bias', 'classifier.weight']\\n\",\"You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"okyF8VWWfhnv\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333734600,\"user_tz\":-180,\"elapsed\":702,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from transformers import TrainingArguments, Trainer \\n\",\"args = TrainingArguments( \\n\",\"\\\"test-ner\\\",\\n\",\"evaluation_strategy = \\\"epoch\\\", \\n\",\"learning_rate=2e-5, \\n\",\"per_device_train_batch_size=16, \\n\",\"per_device_eval_batch_size=16, \\n\",\"num_train_epochs=3, \\n\",\"weight_decay=0.01, \\n\",\") \"],\"execution_count\":11,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"D3fNcCdRfkV0\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333736645,\"user_tz\":-180,\"elapsed\":9,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from transformers import DataCollatorForTokenClassification \\n\",\"data_collator = DataCollatorForTokenClassification(tokenizer) \"],\"execution_count\":12,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"h4gQ0H6Vfmhw\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333744493,\"user_tz\":-180,\"elapsed\":5190,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"a0d1b1c9-e6c3-4278-d4f5-3a6ce5a5bb99\"},\"source\":[\"!pip install seqeval\"],\"execution_count\":13,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Collecting seqeval\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/9d/2d/233c79d5b4e5ab1dbf111242299153f3caddddbb691219f363ad55ce783d/seqeval-1.2.2.tar.gz (43kB)\\n\",\"\\r\\u001b[K     |███████▌                        | 10kB 24.9MB/s eta 0:00:01\\r\\u001b[K     |███████████████                 | 20kB 18.4MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████▌         | 30kB 15.5MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████████████  | 40kB 13.9MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████████████| 51kB 4.3MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: numpy>=1.14.0 in /usr/local/lib/python3.7/dist-packages (from seqeval) (1.19.5)\\n\",\"Requirement already satisfied: scikit-learn>=0.21.3 in /usr/local/lib/python3.7/dist-packages (from seqeval) (0.22.2.post1)\\n\",\"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from scikit-learn>=0.21.3->seqeval) (1.0.1)\\n\",\"Requirement already satisfied: scipy>=0.17.0 in /usr/local/lib/python3.7/dist-packages (from scikit-learn>=0.21.3->seqeval) (1.4.1)\\n\",\"Building wheels for collected packages: seqeval\\n\",\"  Building wheel for seqeval (setup.py) ... \\u001b[?25l\\u001b[?25hdone\\n\",\"  Created wheel for seqeval: filename=seqeval-1.2.2-cp37-none-any.whl size=16184 sha256=75a021f5c5e81dc7cb670851ea168b902e0e9a1a4cdcfcd9bced116ed7ffd71b\\n\",\"  Stored in directory: /root/.cache/pip/wheels/52/df/1b/45d75646c37428f7e626214704a0e35bd3cfc32eda37e59e5f\\n\",\"Successfully built seqeval\\n\",\"Installing collected packages: seqeval\\n\",\"Successfully installed seqeval-1.2.2\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"sG9bdKiifovx\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":67,\"referenced_widgets\":[\"a7fae790bb014c679c47af77ff1731f9\",\"b61fd01535874d59a03815e03f327564\",\"a913766208e34e17a920736f6f97c7ac\",\"e25e87b78faa421089c78ff03e5ae3fc\",\"726416c1773449b3b3c00c55287ee8d3\",\"d5937a171f7a490a81f9fb5a247d38ef\",\"1c755575a3a84a179bc5c4badad758e6\",\"1b88cd9d8eb9496fad32293aa2e7566a\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333747063,\"user_tz\":-180,\"elapsed\":927,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"90cc82b3-1863-4289-cc3e-2e56f3d750dc\"},\"source\":[\"metric = datasets.load_metric(\\\"seqeval\\\") \"],\"execution_count\":14,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"a7fae790bb014c679c47af77ff1731f9\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=2482.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"C-tpGx0sft-q\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333748869,\"user_tz\":-180,\"elapsed\":278,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"example = conll2003['train'][0]\"],\"execution_count\":15,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"vom5Yo3LfqoN\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333751483,\"user_tz\":-180,\"elapsed\":329,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"a567561f-f823-4828-ec34-46c7c3e123cc\"},\"source\":[\"label_list = conll2003[\\\"train\\\"].features[\\\"ner_tags\\\"].feature.names \\n\",\"\\n\",\"labels = [label_list[i] for i in example[\\\"ner_tags\\\"]] \\n\",\"\\n\",\"metric.compute(predictions=[labels], references=[labels]) \"],\"execution_count\":16,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"{'MISC': {'f1': 1.0, 'number': 2, 'precision': 1.0, 'recall': 1.0},\\n\",\" 'ORG': {'f1': 1.0, 'number': 1, 'precision': 1.0, 'recall': 1.0},\\n\",\" 'overall_accuracy': 1.0,\\n\",\" 'overall_f1': 1.0,\\n\",\" 'overall_precision': 1.0,\\n\",\" 'overall_recall': 1.0}\"]},\"metadata\":{\"tags\":[]},\"execution_count\":16}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"GSiYGHx_fskv\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333754539,\"user_tz\":-180,\"elapsed\":11,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"import numpy as np \\n\",\"def compute_metrics(p): \\n\",\"    predictions, labels = p \\n\",\"    predictions = np.argmax(predictions, axis=2) \\n\",\"    true_predictions = [ \\n\",\"        [label_list[p] for (p, l) in zip(prediction, label) if l != -100] \\n\",\"        for prediction, label in zip(predictions, labels) \\n\",\"    ] \\n\",\"    true_labels = [ \\n\",\"      [label_list[l] for (p, l) in zip(prediction, label) if l != -100] \\n\",\"       for prediction, label in zip(predictions, labels) \\n\",\"   ] \\n\",\"    results = metric.compute(predictions=true_predictions, references=true_labels) \\n\",\"    return { \\n\",\"   \\\"precision\\\": results[\\\"overall_precision\\\"], \\n\",\"   \\\"recall\\\": results[\\\"overall_recall\\\"], \\n\",\"   \\\"f1\\\": results[\\\"overall_f1\\\"], \\n\",\"  \\\"accuracy\\\": results[\\\"overall_accuracy\\\"], \\n\",\"  } \"],\"execution_count\":17,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"pNZJvlI3f3dr\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333769120,\"user_tz\":-180,\"elapsed\":12130,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"trainer = Trainer( \\n\",\"    model, \\n\",\"    args, \\n\",\"   train_dataset=tokenized_datasets[\\\"train\\\"], \\n\",\"   eval_dataset=tokenized_datasets[\\\"validation\\\"], \\n\",\"   data_collator=data_collator, \\n\",\"   tokenizer=tokenizer, \\n\",\"   compute_metrics=compute_metrics \\n\",\") \"],\"execution_count\":18,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"4LbUh9shgD5X\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":1000},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625334271047,\"user_tz\":-180,\"elapsed\":499819,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"f26bad84-c12a-4665-feaf-375e52da46b0\"},\"source\":[\"trainer.train() \"],\"execution_count\":19,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"The following columns in the training set  don't have a corresponding argument in `BertForTokenClassification.forward` and have been ignored: chunk_tags, ner_tags, id, pos_tags, tokens.\\n\",\"***** Running training *****\\n\",\"  Num examples = 14041\\n\",\"  Num Epochs = 3\\n\",\"  Instantaneous batch size per device = 16\\n\",\"  Total train batch size (w. parallel, distributed & accumulation) = 16\\n\",\"  Gradient Accumulation steps = 1\\n\",\"  Total optimization steps = 2634\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"text/html\":[\"\\n\",\"    <div>\\n\",\"      \\n\",\"      <progress value='2634' max='2634' style='width:300px; height:20px; vertical-align: middle;'></progress>\\n\",\"      [2634/2634 08:19, Epoch 3/3]\\n\",\"    </div>\\n\",\"    <table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: left;\\\">\\n\",\"      <th>Epoch</th>\\n\",\"      <th>Training Loss</th>\\n\",\"      <th>Validation Loss</th>\\n\",\"      <th>Precision</th>\\n\",\"      <th>Recall</th>\\n\",\"      <th>F1</th>\\n\",\"      <th>Accuracy</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <td>1</td>\\n\",\"      <td>0.215900</td>\\n\",\"      <td>0.064474</td>\\n\",\"      <td>0.919602</td>\\n\",\"      <td>0.931536</td>\\n\",\"      <td>0.925531</td>\\n\",\"      <td>0.983415</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>2</td>\\n\",\"      <td>0.046700</td>\\n\",\"      <td>0.057798</td>\\n\",\"      <td>0.933015</td>\\n\",\"      <td>0.939591</td>\\n\",\"      <td>0.936291</td>\\n\",\"      <td>0.985130</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>3</td>\\n\",\"      <td>0.026200</td>\\n\",\"      <td>0.056197</td>\\n\",\"      <td>0.936439</td>\\n\",\"      <td>0.944401</td>\\n\",\"      <td>0.940403</td>\\n\",\"      <td>0.986163</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table><p>\"],\"text/plain\":[\"<IPython.core.display.HTML object>\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"Saving model checkpoint to test-ner/checkpoint-500\\n\",\"Configuration saved in test-ner/checkpoint-500/config.json\\n\",\"Model weights saved in test-ner/checkpoint-500/pytorch_model.bin\\n\",\"tokenizer config file saved in test-ner/checkpoint-500/tokenizer_config.json\\n\",\"Special tokens file saved in test-ner/checkpoint-500/special_tokens_map.json\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `BertForTokenClassification.forward` and have been ignored: chunk_tags, ner_tags, id, pos_tags, tokens.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 3250\\n\",\"  Batch size = 16\\n\",\"Saving model checkpoint to test-ner/checkpoint-1000\\n\",\"Configuration saved in test-ner/checkpoint-1000/config.json\\n\",\"Model weights saved in test-ner/checkpoint-1000/pytorch_model.bin\\n\",\"tokenizer config file saved in test-ner/checkpoint-1000/tokenizer_config.json\\n\",\"Special tokens file saved in test-ner/checkpoint-1000/special_tokens_map.json\\n\",\"Saving model checkpoint to test-ner/checkpoint-1500\\n\",\"Configuration saved in test-ner/checkpoint-1500/config.json\\n\",\"Model weights saved in test-ner/checkpoint-1500/pytorch_model.bin\\n\",\"tokenizer config file saved in test-ner/checkpoint-1500/tokenizer_config.json\\n\",\"Special tokens file saved in test-ner/checkpoint-1500/special_tokens_map.json\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `BertForTokenClassification.forward` and have been ignored: chunk_tags, ner_tags, id, pos_tags, tokens.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 3250\\n\",\"  Batch size = 16\\n\",\"Saving model checkpoint to test-ner/checkpoint-2000\\n\",\"Configuration saved in test-ner/checkpoint-2000/config.json\\n\",\"Model weights saved in test-ner/checkpoint-2000/pytorch_model.bin\\n\",\"tokenizer config file saved in test-ner/checkpoint-2000/tokenizer_config.json\\n\",\"Special tokens file saved in test-ner/checkpoint-2000/special_tokens_map.json\\n\",\"Saving model checkpoint to test-ner/checkpoint-2500\\n\",\"Configuration saved in test-ner/checkpoint-2500/config.json\\n\",\"Model weights saved in test-ner/checkpoint-2500/pytorch_model.bin\\n\",\"tokenizer config file saved in test-ner/checkpoint-2500/tokenizer_config.json\\n\",\"Special tokens file saved in test-ner/checkpoint-2500/special_tokens_map.json\\n\",\"The following columns in the evaluation set  don't have a corresponding argument in `BertForTokenClassification.forward` and have been ignored: chunk_tags, ner_tags, id, pos_tags, tokens.\\n\",\"***** Running Evaluation *****\\n\",\"  Num examples = 3250\\n\",\"  Batch size = 16\\n\",\"\\n\",\"\\n\",\"Training completed. Do not forget to share your model on huggingface.co/models =)\\n\",\"\\n\",\"\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"TrainOutput(global_step=2634, training_loss=0.07719609297489523, metrics={'train_runtime': 499.622, 'train_samples_per_second': 84.31, 'train_steps_per_second': 5.272, 'total_flos': 1305498913871490.0, 'train_loss': 0.07719609297489523, 'epoch': 3.0})\"]},\"metadata\":{\"tags\":[]},\"execution_count\":19}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"CGmSRYR6L3Ok\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625334289066,\"user_tz\":-180,\"elapsed\":1207,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"5b1d6684-6f67-4b13-8c4c-a9a7fa647274\"},\"source\":[\"model.save_pretrained(\\\"ner_model\\\")\"],\"execution_count\":20,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Configuration saved in ner_model/config.json\\n\",\"Model weights saved in ner_model/pytorch_model.bin\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"NX9FrmzaR2XW\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625334293169,\"user_tz\":-180,\"elapsed\":301,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"391c1247-4b5a-48a2-b80c-c804913718f7\"},\"source\":[\"tokenizer.save_pretrained(\\\"tokenizer\\\")\"],\"execution_count\":21,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"tokenizer config file saved in tokenizer/tokenizer_config.json\\n\",\"Special tokens file saved in tokenizer/special_tokens_map.json\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"('tokenizer/tokenizer_config.json',\\n\",\" 'tokenizer/special_tokens_map.json',\\n\",\" 'tokenizer/vocab.txt',\\n\",\" 'tokenizer/added_tokens.json',\\n\",\" 'tokenizer/tokenizer.json')\"]},\"metadata\":{\"tags\":[]},\"execution_count\":21}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"qWj16dJeMj10\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625334314475,\"user_tz\":-180,\"elapsed\":341,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"id2label = {\\n\",\"    str(i): label for i,label in enumerate(label_list)\\n\",\"}\\n\",\"label2id = {\\n\",\"    label: str(i) for i,label in enumerate(label_list)\\n\",\"}\"],\"execution_count\":22,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"s8UMh-WdMfwc\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625334315715,\"user_tz\":-180,\"elapsed\":11,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"import json\"],\"execution_count\":23,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"T5EZxnPxMjSb\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625334331893,\"user_tz\":-180,\"elapsed\":307,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"config = json.load(open(\\\"ner_model/config.json\\\"))\"],\"execution_count\":24,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"R_p_ohBAMyQ7\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625334332954,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"config[\\\"id2label\\\"] = id2label\\n\",\"config[\\\"label2id\\\"] = label2id\"],\"execution_count\":25,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"QBagjGQfM3xo\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625334335278,\"user_tz\":-180,\"elapsed\":7,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"json.dump(config, open(\\\"ner_model/config.json\\\",\\\"w\\\"))\"],\"execution_count\":26,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"0kLZ-CYWMSNm\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625334362154,\"user_tz\":-180,\"elapsed\":1485,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"89238ee6-af88-49cc-e77b-cc01f6649c5f\"},\"source\":[\"mmodel = AutoModelForTokenClassification.from_pretrained(\\\"ner_model\\\")\"],\"execution_count\":27,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"loading configuration file ner_model/config.json\\n\",\"Model config BertConfig {\\n\",\"  \\\"_name_or_path\\\": \\\"bert-base-uncased\\\",\\n\",\"  \\\"architectures\\\": [\\n\",\"    \\\"BertForTokenClassification\\\"\\n\",\"  ],\\n\",\"  \\\"attention_probs_dropout_prob\\\": 0.1,\\n\",\"  \\\"gradient_checkpointing\\\": false,\\n\",\"  \\\"hidden_act\\\": \\\"gelu\\\",\\n\",\"  \\\"hidden_dropout_prob\\\": 0.1,\\n\",\"  \\\"hidden_size\\\": 768,\\n\",\"  \\\"id2label\\\": {\\n\",\"    \\\"0\\\": \\\"O\\\",\\n\",\"    \\\"1\\\": \\\"B-PER\\\",\\n\",\"    \\\"2\\\": \\\"I-PER\\\",\\n\",\"    \\\"3\\\": \\\"B-ORG\\\",\\n\",\"    \\\"4\\\": \\\"I-ORG\\\",\\n\",\"    \\\"5\\\": \\\"B-LOC\\\",\\n\",\"    \\\"6\\\": \\\"I-LOC\\\",\\n\",\"    \\\"7\\\": \\\"B-MISC\\\",\\n\",\"    \\\"8\\\": \\\"I-MISC\\\"\\n\",\"  },\\n\",\"  \\\"initializer_range\\\": 0.02,\\n\",\"  \\\"intermediate_size\\\": 3072,\\n\",\"  \\\"label2id\\\": {\\n\",\"    \\\"B-LOC\\\": \\\"5\\\",\\n\",\"    \\\"B-MISC\\\": \\\"7\\\",\\n\",\"    \\\"B-ORG\\\": \\\"3\\\",\\n\",\"    \\\"B-PER\\\": \\\"1\\\",\\n\",\"    \\\"I-LOC\\\": \\\"6\\\",\\n\",\"    \\\"I-MISC\\\": \\\"8\\\",\\n\",\"    \\\"I-ORG\\\": \\\"4\\\",\\n\",\"    \\\"I-PER\\\": \\\"2\\\",\\n\",\"    \\\"O\\\": \\\"0\\\"\\n\",\"  },\\n\",\"  \\\"layer_norm_eps\\\": 1e-12,\\n\",\"  \\\"max_position_embeddings\\\": 512,\\n\",\"  \\\"model_type\\\": \\\"bert\\\",\\n\",\"  \\\"num_attention_heads\\\": 12,\\n\",\"  \\\"num_hidden_layers\\\": 12,\\n\",\"  \\\"pad_token_id\\\": 0,\\n\",\"  \\\"position_embedding_type\\\": \\\"absolute\\\",\\n\",\"  \\\"transformers_version\\\": \\\"4.8.2\\\",\\n\",\"  \\\"type_vocab_size\\\": 2,\\n\",\"  \\\"use_cache\\\": true,\\n\",\"  \\\"vocab_size\\\": 30522\\n\",\"}\\n\",\"\\n\",\"loading weights file ner_model/pytorch_model.bin\\n\",\"All model checkpoint weights were used when initializing BertForTokenClassification.\\n\",\"\\n\",\"All the weights of BertForTokenClassification were initialized from the model checkpoint at ner_model.\\n\",\"If your task is similar to the task the model of the checkpoint was trained on, you can already use BertForTokenClassification for predictions without further training.\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"H2OmIa1_R-Nj\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625334372447,\"user_tz\":-180,\"elapsed\":415,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from transformers import pipeline\"],\"execution_count\":28,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"QH9hlOroHKyN\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625334375015,\"user_tz\":-180,\"elapsed\":326,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"56e12515-2854-4237-a948-963559097348\"},\"source\":[\"nlp = pipeline(\\\"ner\\\", model=mmodel, tokenizer=tokenizer)\\n\",\"example = \\\"I live in Istanbul\\\"\\n\",\"\\n\",\"ner_results = nlp(example)\\n\",\"print(ner_results)\"],\"execution_count\":29,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"[{'entity': 'B-LOC', 'score': 0.9969446, 'index': 4, 'word': 'istanbul', 'start': 10, 'end': 18}]\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"zeCux2rqNiuj\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625333257475,\"user_tz\":-180,\"elapsed\":842,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH06/CH06b_Thinking_of_the_question_answering_problem_as_a_start_stop_token_classification.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH06b_Thinking_of_the_question_answering_problem_as_a_start_stop_token_classification.ipynb\",\"provenance\":[],\"collapsed_sections\":[],\"authorship_tag\":\"ABX9TyMqbtDoeS62EdaB9izLFGQS\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"},\"accelerator\":\"GPU\",\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"915a1f6cf7dc44ec8220c5a15c9621fe\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_a375090589e34ff79bece2aa40b96d3d\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_281534e394b64fad93d6b0fff70ffaba\",\"IPY_MODEL_7a71680305f84a748f5be2dd55f1b100\"]}},\"a375090589e34ff79bece2aa40b96d3d\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"281534e394b64fad93d6b0fff70ffaba\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_facb81b5518445ad9ee2f6a6cc98e6e5\",\"_dom_classes\":[],\"description\":\"100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":12,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":12,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_895462cff46b4dd8b5e3379e41c737fc\"}},\"7a71680305f84a748f5be2dd55f1b100\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_d50943b2ba114b8fa6d7e902057613db\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 12/12 [00:08&lt;00:00,  1.37ba/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_3728b6af2be24530891961dde3d28b1b\"}},\"facb81b5518445ad9ee2f6a6cc98e6e5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"895462cff46b4dd8b5e3379e41c737fc\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d50943b2ba114b8fa6d7e902057613db\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"3728b6af2be24530891961dde3d28b1b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}}},\"cells\":[{\"cell_type\":\"code\",\"metadata\":{\"id\":\"4U0BzgMnggOa\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335697708,\"user_tz\":-180,\"elapsed\":3051,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"397238d3-95eb-435b-bf75-374b1d62e253\"},\"source\":[\"!pip install transformers datasets tokenizers\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: transformers in /usr/local/lib/python3.7/dist-packages (4.8.2)\\n\",\"Requirement already satisfied: datasets in /usr/local/lib/python3.7/dist-packages (1.8.0)\\n\",\"Requirement already satisfied: tokenizers in /usr/local/lib/python3.7/dist-packages (0.10.3)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.45)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: huggingface-hub==0.0.12 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.12)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.5.0)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: multiprocess in /usr/local/lib/python3.7/dist-packages (from datasets) (0.70.12.2)\\n\",\"Requirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from datasets) (0.3.4)\\n\",\"Requirement already satisfied: pyarrow<4.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (3.0.0)\\n\",\"Requirement already satisfied: fsspec in /usr/local/lib/python3.7/dist-packages (from datasets) (2021.6.1)\\n\",\"Requirement already satisfied: xxhash in /usr/local/lib/python3.7/dist-packages (from datasets) (2.0.2)\\n\",\"Requirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from datasets) (1.1.5)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub==0.0.12->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2021.5.30)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2018.9)\\n\",\"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2.8.1)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"EoB07OSUgkJR\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335702172,\"user_tz\":-180,\"elapsed\":1261,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"80ff9b93-a218-4f33-e9c7-505a2fd5c71a\"},\"source\":[\"from pprint import pprint \\n\",\"from datasets import load_dataset \\n\",\"squad = load_dataset(\\\"squad\\\") \\n\",\"for item in squad[\\\"train\\\"][1].items(): \\n\",\"    print(item[0]) \\n\",\"    pprint(item[1]) \\n\",\"    print(\\\"=\\\"*20) \"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Reusing dataset squad (/root/.cache/huggingface/datasets/squad/plain_text/1.0.0/6b6c4172d0119c74515f44ea0b8262efe4897f2ddb6613e5e915840fdc309c16)\\n\"],\"name\":\"stderr\"},{\"output_type\":\"stream\",\"text\":[\"answers\\n\",\"{'answer_start': [188], 'text': ['a copper statue of Christ']}\\n\",\"====================\\n\",\"context\\n\",\"('Architecturally, the school has a Catholic character. Atop the Main '\\n\",\" \\\"Building's gold dome is a golden statue of the Virgin Mary. Immediately in \\\"\\n\",\" 'front of the Main Building and facing it, is a copper statue of Christ with '\\n\",\" 'arms upraised with the legend \\\"Venite Ad Me Omnes\\\". Next to the Main '\\n\",\" 'Building is the Basilica of the Sacred Heart. Immediately behind the '\\n\",\" 'basilica is the Grotto, a Marian place of prayer and reflection. It is a '\\n\",\" 'replica of the grotto at Lourdes, France where the Virgin Mary reputedly '\\n\",\" 'appeared to Saint Bernadette Soubirous in 1858. At the end of the main drive '\\n\",\" '(and in a direct line that connects through 3 statues and the Gold Dome), is '\\n\",\" 'a simple, modern stone statue of Mary.')\\n\",\"====================\\n\",\"id\\n\",\"'5733be284776f4190066117f'\\n\",\"====================\\n\",\"question\\n\",\"'What is in front of the Notre Dame Main Building?'\\n\",\"====================\\n\",\"title\\n\",\"'University_of_Notre_Dame'\\n\",\"====================\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"qB1wQbsojQok\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335705487,\"user_tz\":-180,\"elapsed\":444,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"42248809-be40-4361-deb5-9ee3cea741b2\"},\"source\":[\"from datasets import load_dataset \\n\",\"squad = load_dataset(\\\"squad_v2\\\") \"],\"execution_count\":3,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Reusing dataset squad_v2 (/root/.cache/huggingface/datasets/squad_v2/squad_v2/2.0.0/de2e67b822b2ef3f4b137148d0758f48075e3892c359c50271ef6c9add7e794a)\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"gE0ft2p6jYRb\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335707865,\"user_tz\":-180,\"elapsed\":292,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"d4d07397-b45e-4654-8b13-96adcf65686b\"},\"source\":[\"squad\"],\"execution_count\":4,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"DatasetDict({\\n\",\"    train: Dataset({\\n\",\"        features: ['answers', 'context', 'id', 'question', 'title'],\\n\",\"        num_rows: 130319\\n\",\"    })\\n\",\"    validation: Dataset({\\n\",\"        features: ['answers', 'context', 'id', 'question', 'title'],\\n\",\"        num_rows: 11873\\n\",\"    })\\n\",\"})\"]},\"metadata\":{\"tags\":[]},\"execution_count\":4}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"x6NIZCe1jb4k\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335710571,\"user_tz\":-180,\"elapsed\":720,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from transformers import AutoTokenizer \\n\",\"model = \\\"distilbert-base-uncased\\\" \\n\",\"tokenizer = AutoTokenizer.from_pretrained(model) \"],\"execution_count\":5,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"GvnumMYfjfPz\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335712734,\"user_tz\":-180,\"elapsed\":305,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"max_length = 384 \\n\",\"doc_stride = 128 \\n\",\"example = squad[\\\"train\\\"][173] \\n\",\"tokenized_example = tokenizer( \\n\",\"example[\\\"question\\\"], \\n\",\"example[\\\"context\\\"], \\n\",\"max_length=max_length, \\n\",\"truncation=\\\"only_second\\\", \\n\",\"return_overflowing_tokens=True, \\n\",\"stride=doc_stride \\n\",\") \"],\"execution_count\":6,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"XqaQURlQjhu6\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335714901,\"user_tz\":-180,\"elapsed\":289,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"8fd73f47-8add-491f-d64d-aa2421fa9201\"},\"source\":[\"len(tokenized_example['input_ids'])\"],\"execution_count\":7,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"2\"]},\"metadata\":{\"tags\":[]},\"execution_count\":7}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"IrHSIJFbjm_U\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335717855,\"user_tz\":-180,\"elapsed\":1702,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"954ebce5-6632-4764-8310-6c6bb4614be2\"},\"source\":[\"for input_ids in tokenized_example[\\\"input_ids\\\"][:2]: \\n\",\"    print(tokenizer.decode(input_ids)) \\n\",\"    print(\\\"-\\\"*50) \"],\"execution_count\":8,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"[CLS] beyonce got married in 2008 to whom? [SEP] on april 4, 2008, beyonce married jay z. she publicly revealed their marriage in a video montage at the listening party for her third studio album, i am... sasha fierce, in manhattan's sony club on october 22, 2008. i am... sasha fierce was released on november 18, 2008 in the united states. the album formally introduces beyonce's alter ego sasha fierce, conceived during the making of her 2003 single \\\" crazy in love \\\", selling 482, 000 copies in its first week, debuting atop the billboard 200, and giving beyonce her third consecutive number - one album in the us. the album featured the number - one song \\\" single ladies ( put a ring on it ) \\\" and the top - five songs \\\" if i were a boy \\\" and \\\" halo \\\". achieving the accomplishment of becoming her longest - running hot 100 single in her career, \\\" halo \\\"'s success in the us helped beyonce attain more top - ten singles on the list than any other woman during the 2000s. it also included the successful \\\" sweet dreams \\\", and singles \\\" diva \\\", \\\" ego \\\", \\\" broken - hearted girl \\\" and \\\" video phone \\\". the music video for \\\" single ladies \\\" has been parodied and imitated around the world, spawning the \\\" first major dance craze \\\" of the internet age according to the toronto star. the video has won several awards, including best video at the 2009 mtv europe music awards, the 2009 scottish mobo awards, and the 2009 bet awards. at the 2009 mtv video music awards, the video was nominated for nine awards, ultimately winning three including video of the year. its failure to win the best female video category, which went to american country pop singer taylor swift's \\\" you belong with me \\\", led to kanye west interrupting the ceremony and beyonce [SEP]\\n\",\"--------------------------------------------------\\n\",\"[CLS] beyonce got married in 2008 to whom? [SEP] single ladies \\\" has been parodied and imitated around the world, spawning the \\\" first major dance craze \\\" of the internet age according to the toronto star. the video has won several awards, including best video at the 2009 mtv europe music awards, the 2009 scottish mobo awards, and the 2009 bet awards. at the 2009 mtv video music awards, the video was nominated for nine awards, ultimately winning three including video of the year. its failure to win the best female video category, which went to american country pop singer taylor swift's \\\" you belong with me \\\", led to kanye west interrupting the ceremony and beyonce improvising a re - presentation of swift's award during her own acceptance speech. in march 2009, beyonce embarked on the i am... world tour, her second headlining worldwide concert tour, consisting of 108 shows, grossing $ 119. 5 million. [SEP]\\n\",\"--------------------------------------------------\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"jmroNAfojppS\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335727599,\"user_tz\":-180,\"elapsed\":395,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"def prepare_train_features(examples, pad_on_right=True): \\n\",\"    tokenized_examples = tokenizer( \\n\",\"        examples[\\\"question\\\" if pad_on_right else \\\"context\\\"], \\n\",\"        examples[\\\"context\\\" if pad_on_right else \\\"question\\\"], \\n\",\"        truncation=\\\"only_second\\\" if pad_on_right else \\\"only_first\\\", \\n\",\"        max_length=max_length, \\n\",\"        stride=doc_stride, \\n\",\"        return_overflowing_tokens=True, \\n\",\"        return_offsets_mapping=True, \\n\",\"        padding=\\\"max_length\\\", \\n\",\"    ) \\n\",\"    sample_mapping = tokenized_examples.pop(\\\"overflow_to_sample_mapping\\\") \\n\",\"    offset_mapping = tokenized_examples.pop(\\\"offset_mapping\\\") \\n\",\"    tokenized_examples[\\\"start_positions\\\"] = [] \\n\",\"    tokenized_examples[\\\"end_positions\\\"] = [] \\n\",\"    for i, offsets in enumerate(offset_mapping): \\n\",\"        input_ids = tokenized_examples[\\\"input_ids\\\"][i] \\n\",\"        cls_index = input_ids.index(tokenizer.cls_token_id) \\n\",\"        sequence_ids = tokenized_examples.sequence_ids(i) \\n\",\"        sample_index = sample_mapping[i] \\n\",\"        answers = examples[\\\"answers\\\"][sample_index] \\n\",\"        if len(answers[\\\"answer_start\\\"]) == 0: \\n\",\"            tokenized_examples[\\\"start_positions\\\"].append(cls_index) \\n\",\"            tokenized_examples[\\\"end_positions\\\"].append(cls_index) \\n\",\"        else: \\n\",\"            start_char = answers[\\\"answer_start\\\"][0] \\n\",\"            end_char = start_char + len(answers[\\\"text\\\"][0]) \\n\",\"            token_start_index = 0 \\n\",\"            while sequence_ids[token_start_index] != (1 if pad_on_right else 0): \\n\",\"                token_start_index += 1 \\n\",\"            token_end_index = len(input_ids) - 1 \\n\",\"            while sequence_ids[token_end_index] != (1 if pad_on_right else 0): \\n\",\"                token_end_index -= 1 \\n\",\"            if not (offsets[token_start_index][0] <= start_char and offsets[token_end_index][1] >= end_char): \\n\",\"                tokenized_examples[\\\"start_positions\\\"].append(cls_index) \\n\",\"                tokenized_examples[\\\"end_positions\\\"].append(cls_index) \\n\",\"            else: \\n\",\"                while token_start_index < len(offsets) and offsets[token_start_index][0] <= start_char: \\n\",\"                    token_start_index += 1 \\n\",\"                tokenized_examples[\\\"start_positions\\\"].append(token_start_index - 1) \\n\",\"                while offsets[token_end_index][1] >= end_char: \\n\",\"                    token_end_index -= 1 \\n\",\"                tokenized_examples[\\\"end_positions\\\"].append(token_end_index + 1) \\n\",\"    return tokenized_examples \"],\"execution_count\":9,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"13isfE-pj2hQ\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":86,\"referenced_widgets\":[\"915a1f6cf7dc44ec8220c5a15c9621fe\",\"a375090589e34ff79bece2aa40b96d3d\",\"281534e394b64fad93d6b0fff70ffaba\",\"7a71680305f84a748f5be2dd55f1b100\",\"facb81b5518445ad9ee2f6a6cc98e6e5\",\"895462cff46b4dd8b5e3379e41c737fc\",\"d50943b2ba114b8fa6d7e902057613db\",\"3728b6af2be24530891961dde3d28b1b\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335735501,\"user_tz\":-180,\"elapsed\":6099,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"e079e098-f78b-4e10-d878-a53725e7bd44\"},\"source\":[\"tokenized_datasets = squad.map(prepare_train_features, batched=True, remove_columns=squad[\\\"train\\\"].column_names)\"],\"execution_count\":10,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Loading cached processed dataset at /root/.cache/huggingface/datasets/squad_v2/squad_v2/2.0.0/de2e67b822b2ef3f4b137148d0758f48075e3892c359c50271ef6c9add7e794a/cache-9d22a5ad1f8439e2.arrow\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"915a1f6cf7dc44ec8220c5a15c9621fe\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, max=12.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"ONDxm04Pj4_5\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335739138,\"user_tz\":-180,\"elapsed\":1376,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"2c11701d-7e2e-4c4d-c607-0644491403b7\"},\"source\":[\"from transformers import AutoModelForQuestionAnswering, TrainingArguments, Trainer \\n\",\"model = AutoModelForQuestionAnswering.from_pretrained(model) \"],\"execution_count\":11,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Some weights of the model checkpoint at distilbert-base-uncased were not used when initializing DistilBertForQuestionAnswering: ['vocab_transform.bias', 'vocab_projector.bias', 'vocab_layer_norm.bias', 'vocab_layer_norm.weight', 'vocab_projector.weight', 'vocab_transform.weight']\\n\",\"- This IS expected if you are initializing DistilBertForQuestionAnswering from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing DistilBertForQuestionAnswering from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\",\"Some weights of DistilBertForQuestionAnswering were not initialized from the model checkpoint at distilbert-base-uncased and are newly initialized: ['qa_outputs.weight', 'qa_outputs.bias']\\n\",\"You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"8k3Dh6LTkH5X\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335742102,\"user_tz\":-180,\"elapsed\":275,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"args = TrainingArguments( \\n\",\"f\\\"test-squad\\\", \\n\",\"evaluation_strategy = \\\"epoch\\\", \\n\",\"learning_rate=2e-5, \\n\",\"per_device_train_batch_size=16, \\n\",\"per_device_eval_batch_size=16, \\n\",\"num_train_epochs=3, \\n\",\"weight_decay=0.01, \\n\",\")\"],\"execution_count\":12,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"e5XA1jW5kMIZ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335744587,\"user_tz\":-180,\"elapsed\":283,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from transformers import default_data_collator \\n\",\"data_collator = default_data_collator \"],\"execution_count\":13,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"HHjOTzEbkOaQ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335749397,\"user_tz\":-180,\"elapsed\":3679,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"trainer = Trainer( \\n\",\"model, \\n\",\"args, \\n\",\"train_dataset=tokenized_datasets[\\\"train\\\"], \\n\",\"eval_dataset=tokenized_datasets[\\\"validation\\\"], \\n\",\"data_collator=data_collator, \\n\",\"tokenizer=tokenizer, \\n\",\") \"],\"execution_count\":14,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"iHLycxXbkRug\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":514},\"executionInfo\":{\"status\":\"error\",\"timestamp\":1625335777154,\"user_tz\":-180,\"elapsed\":26031,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"0051da83-c9d5-4efd-cd48-dc0c4a8ed1b9\"},\"source\":[\"trainer.train() \"],\"execution_count\":15,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"***** Running training *****\\n\",\"  Num examples = 131754\\n\",\"  Num Epochs = 3\\n\",\"  Instantaneous batch size per device = 16\\n\",\"  Total train batch size (w. parallel, distributed & accumulation) = 16\\n\",\"  Gradient Accumulation steps = 1\\n\",\"  Total optimization steps = 24705\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"text/html\":[\"\\n\",\"    <div>\\n\",\"      \\n\",\"      <progress value='46' max='24705' style='width:300px; height:20px; vertical-align: middle;'></progress>\\n\",\"      [   46/24705 00:23 < 3:42:06, 1.85 it/s, Epoch 0.01/3]\\n\",\"    </div>\\n\",\"    <table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: left;\\\">\\n\",\"      <th>Epoch</th>\\n\",\"      <th>Training Loss</th>\\n\",\"      <th>Validation Loss</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"  </tbody>\\n\",\"</table><p>\"],\"text/plain\":[\"<IPython.core.display.HTML object>\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"error\",\"ename\":\"KeyboardInterrupt\",\"evalue\":\"ignored\",\"traceback\":[\"\\u001b[0;31m---------------------------------------------------------------------------\\u001b[0m\",\"\\u001b[0;31mKeyboardInterrupt\\u001b[0m                         Traceback (most recent call last)\",\"\\u001b[0;32m<ipython-input-15-2a4521c5cd87>\\u001b[0m in \\u001b[0;36m<module>\\u001b[0;34m()\\u001b[0m\\n\\u001b[0;32m----> 1\\u001b[0;31m \\u001b[0mtrainer\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mtrain\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0m\",\"\\u001b[0;32m/usr/local/lib/python3.7/dist-packages/transformers/trainer.py\\u001b[0m in \\u001b[0;36mtrain\\u001b[0;34m(self, resume_from_checkpoint, trial, **kwargs)\\u001b[0m\\n\\u001b[1;32m   1267\\u001b[0m                         \\u001b[0mtr_loss\\u001b[0m \\u001b[0;34m+=\\u001b[0m \\u001b[0mself\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mtraining_step\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0mmodel\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0minputs\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m   1268\\u001b[0m                 \\u001b[0;32melse\\u001b[0m\\u001b[0;34m:\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0;32m-> 1269\\u001b[0;31m                     \\u001b[0mtr_loss\\u001b[0m \\u001b[0;34m+=\\u001b[0m \\u001b[0mself\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mtraining_step\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0mmodel\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0minputs\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0m\\u001b[1;32m   1270\\u001b[0m                 \\u001b[0mself\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mcurrent_flos\\u001b[0m \\u001b[0;34m+=\\u001b[0m \\u001b[0mfloat\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0mself\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mfloating_point_ops\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0minputs\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m   1271\\u001b[0m \\u001b[0;34m\\u001b[0m\\u001b[0m\\n\",\"\\u001b[0;32m/usr/local/lib/python3.7/dist-packages/transformers/trainer.py\\u001b[0m in \\u001b[0;36mtraining_step\\u001b[0;34m(self, model, inputs)\\u001b[0m\\n\\u001b[1;32m   1778\\u001b[0m             \\u001b[0mloss\\u001b[0m \\u001b[0;34m=\\u001b[0m \\u001b[0mself\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mdeepspeed\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mbackward\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0mloss\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m   1779\\u001b[0m         \\u001b[0;32melse\\u001b[0m\\u001b[0;34m:\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0;32m-> 1780\\u001b[0;31m             \\u001b[0mloss\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mbackward\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0m\\u001b[1;32m   1781\\u001b[0m \\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m   1782\\u001b[0m         \\u001b[0;32mreturn\\u001b[0m \\u001b[0mloss\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mdetach\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\",\"\\u001b[0;32m/usr/local/lib/python3.7/dist-packages/torch/_tensor.py\\u001b[0m in \\u001b[0;36mbackward\\u001b[0;34m(self, gradient, retain_graph, create_graph, inputs)\\u001b[0m\\n\\u001b[1;32m    253\\u001b[0m                 \\u001b[0mcreate_graph\\u001b[0m\\u001b[0;34m=\\u001b[0m\\u001b[0mcreate_graph\\u001b[0m\\u001b[0;34m,\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m    254\\u001b[0m                 inputs=inputs)\\n\\u001b[0;32m--> 255\\u001b[0;31m         \\u001b[0mtorch\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mautograd\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mbackward\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0mself\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0mgradient\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0mretain_graph\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0mcreate_graph\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0minputs\\u001b[0m\\u001b[0;34m=\\u001b[0m\\u001b[0minputs\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0m\\u001b[1;32m    256\\u001b[0m \\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m    257\\u001b[0m     \\u001b[0;32mdef\\u001b[0m \\u001b[0mregister_hook\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0mself\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0mhook\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m:\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\",\"\\u001b[0;32m/usr/local/lib/python3.7/dist-packages/torch/autograd/__init__.py\\u001b[0m in \\u001b[0;36mbackward\\u001b[0;34m(tensors, grad_tensors, retain_graph, create_graph, grad_variables, inputs)\\u001b[0m\\n\\u001b[1;32m    147\\u001b[0m     Variable._execution_engine.run_backward(\\n\\u001b[1;32m    148\\u001b[0m         \\u001b[0mtensors\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0mgrad_tensors_\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0mretain_graph\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0mcreate_graph\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0minputs\\u001b[0m\\u001b[0;34m,\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0;32m--> 149\\u001b[0;31m         allow_unreachable=True, accumulate_grad=True)  # allow_unreachable flag\\n\\u001b[0m\\u001b[1;32m    150\\u001b[0m \\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m    151\\u001b[0m \\u001b[0;34m\\u001b[0m\\u001b[0m\\n\",\"\\u001b[0;31mKeyboardInterrupt\\u001b[0m: \"]}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"9cULETzEkTlm\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335784727,\"user_tz\":-180,\"elapsed\":763,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"edfa5db5-4031-44b3-cc8a-3ad5a471160a\"},\"source\":[\"trainer.save_model(\\\"distillBERT_SQUAD\\\")\"],\"execution_count\":16,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Saving model checkpoint to distillBERT_SQUAD\\n\",\"Configuration saved in distillBERT_SQUAD/config.json\\n\",\"Model weights saved in distillBERT_SQUAD/pytorch_model.bin\\n\",\"tokenizer config file saved in distillBERT_SQUAD/tokenizer_config.json\\n\",\"Special tokens file saved in distillBERT_SQUAD/special_tokens_map.json\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"MZJSPSQokV1_\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335789126,\"user_tz\":-180,\"elapsed\":1724,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"4bc3cd6e-a2dc-47de-981b-b0d369ec2771\"},\"source\":[\"from transformers import pipeline \\n\",\"qa_model = pipeline('question-answering', model='distilbert-base-cased-distilled-squad', tokenizer='distilbert-base-cased') \"],\"execution_count\":17,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"loading configuration file https://huggingface.co/distilbert-base-cased-distilled-squad/resolve/main/config.json from cache at /root/.cache/huggingface/transformers/81e8dfe090123eff18dd06533ead3ae407b82e30834c50c7c82c2305ce3ace12.ca0305b1f128274fa0c6e4859d1c1477d0e34a20be25da95eea888b30ece9cf3\\n\",\"Model config DistilBertConfig {\\n\",\"  \\\"activation\\\": \\\"gelu\\\",\\n\",\"  \\\"architectures\\\": [\\n\",\"    \\\"DistilBertForQuestionAnswering\\\"\\n\",\"  ],\\n\",\"  \\\"attention_dropout\\\": 0.1,\\n\",\"  \\\"dim\\\": 768,\\n\",\"  \\\"dropout\\\": 0.1,\\n\",\"  \\\"hidden_dim\\\": 3072,\\n\",\"  \\\"initializer_range\\\": 0.02,\\n\",\"  \\\"max_position_embeddings\\\": 512,\\n\",\"  \\\"model_type\\\": \\\"distilbert\\\",\\n\",\"  \\\"n_heads\\\": 12,\\n\",\"  \\\"n_layers\\\": 6,\\n\",\"  \\\"output_past\\\": true,\\n\",\"  \\\"pad_token_id\\\": 0,\\n\",\"  \\\"qa_dropout\\\": 0.1,\\n\",\"  \\\"seq_classif_dropout\\\": 0.2,\\n\",\"  \\\"sinusoidal_pos_embds\\\": true,\\n\",\"  \\\"tie_weights_\\\": true,\\n\",\"  \\\"transformers_version\\\": \\\"4.8.2\\\",\\n\",\"  \\\"vocab_size\\\": 28996\\n\",\"}\\n\",\"\\n\",\"loading configuration file https://huggingface.co/distilbert-base-cased-distilled-squad/resolve/main/config.json from cache at /root/.cache/huggingface/transformers/81e8dfe090123eff18dd06533ead3ae407b82e30834c50c7c82c2305ce3ace12.ca0305b1f128274fa0c6e4859d1c1477d0e34a20be25da95eea888b30ece9cf3\\n\",\"Model config DistilBertConfig {\\n\",\"  \\\"activation\\\": \\\"gelu\\\",\\n\",\"  \\\"architectures\\\": [\\n\",\"    \\\"DistilBertForQuestionAnswering\\\"\\n\",\"  ],\\n\",\"  \\\"attention_dropout\\\": 0.1,\\n\",\"  \\\"dim\\\": 768,\\n\",\"  \\\"dropout\\\": 0.1,\\n\",\"  \\\"hidden_dim\\\": 3072,\\n\",\"  \\\"initializer_range\\\": 0.02,\\n\",\"  \\\"max_position_embeddings\\\": 512,\\n\",\"  \\\"model_type\\\": \\\"distilbert\\\",\\n\",\"  \\\"n_heads\\\": 12,\\n\",\"  \\\"n_layers\\\": 6,\\n\",\"  \\\"output_past\\\": true,\\n\",\"  \\\"pad_token_id\\\": 0,\\n\",\"  \\\"qa_dropout\\\": 0.1,\\n\",\"  \\\"seq_classif_dropout\\\": 0.2,\\n\",\"  \\\"sinusoidal_pos_embds\\\": true,\\n\",\"  \\\"tie_weights_\\\": true,\\n\",\"  \\\"transformers_version\\\": \\\"4.8.2\\\",\\n\",\"  \\\"vocab_size\\\": 28996\\n\",\"}\\n\",\"\\n\",\"loading weights file https://huggingface.co/distilbert-base-cased-distilled-squad/resolve/main/pytorch_model.bin from cache at /root/.cache/huggingface/transformers/02f483764e26e1acfddfcd6e4879785f2908b2806a962d01b888bfe2b988075b.bd96a9432b167ab5e2b086cf0b688ca3c43c027091377eddfcfd39bdde851c35\\n\",\"All model checkpoint weights were used when initializing DistilBertForQuestionAnswering.\\n\",\"\\n\",\"All the weights of DistilBertForQuestionAnswering were initialized from the model checkpoint at distilbert-base-cased-distilled-squad.\\n\",\"If your task is similar to the task the model of the checkpoint was trained on, you can already use DistilBertForQuestionAnswering for predictions without further training.\\n\",\"loading configuration file https://huggingface.co/distilbert-base-cased/resolve/main/config.json from cache at /root/.cache/huggingface/transformers/ebe1ea24d11aa664488b8de5b21e33989008ca78f207d4e30ec6350b693f073f.302bfd1b5e031cc1b17796e0b6e5b242ba2045d31d00f97589e12b458ebff27a\\n\",\"Model config DistilBertConfig {\\n\",\"  \\\"activation\\\": \\\"gelu\\\",\\n\",\"  \\\"attention_dropout\\\": 0.1,\\n\",\"  \\\"dim\\\": 768,\\n\",\"  \\\"dropout\\\": 0.1,\\n\",\"  \\\"hidden_dim\\\": 3072,\\n\",\"  \\\"initializer_range\\\": 0.02,\\n\",\"  \\\"max_position_embeddings\\\": 512,\\n\",\"  \\\"model_type\\\": \\\"distilbert\\\",\\n\",\"  \\\"n_heads\\\": 12,\\n\",\"  \\\"n_layers\\\": 6,\\n\",\"  \\\"output_past\\\": true,\\n\",\"  \\\"pad_token_id\\\": 0,\\n\",\"  \\\"qa_dropout\\\": 0.1,\\n\",\"  \\\"seq_classif_dropout\\\": 0.2,\\n\",\"  \\\"sinusoidal_pos_embds\\\": false,\\n\",\"  \\\"tie_weights_\\\": true,\\n\",\"  \\\"transformers_version\\\": \\\"4.8.2\\\",\\n\",\"  \\\"vocab_size\\\": 28996\\n\",\"}\\n\",\"\\n\",\"loading file https://huggingface.co/distilbert-base-cased/resolve/main/vocab.txt from cache at /root/.cache/huggingface/transformers/ba377304984dc63e3ede0e23a938bbbf04d5c3835b66d5bb48343aecca188429.437aa611e89f6fc6675a049d2b5545390adbc617e7d655286421c191d2be2791\\n\",\"loading file https://huggingface.co/distilbert-base-cased/resolve/main/tokenizer.json from cache at /root/.cache/huggingface/transformers/acb5c2138c1f8c84f074b86dafce3631667fccd6efcb1a7ea1320cf75c386a36.3dab63143af66769bbb35e3811f75f7e16b2320e12b7935e216bd6159ce6d9a6\\n\",\"loading file https://huggingface.co/distilbert-base-cased/resolve/main/added_tokens.json from cache at None\\n\",\"loading file https://huggingface.co/distilbert-base-cased/resolve/main/special_tokens_map.json from cache at None\\n\",\"loading file https://huggingface.co/distilbert-base-cased/resolve/main/tokenizer_config.json from cache at /root/.cache/huggingface/transformers/81e970e5e6ec68be12da0f8f3b2f2469c78d579282299a2ea65b4b7441719107.ec5c189f89475aac7d8cbd243960a0655cfadc3d0474da8ff2ed0bf1699c2a5f\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Ln992fI2kYMp\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335794978,\"user_tz\":-180,\"elapsed\":408,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"35b90b17-9378-4250-83fb-fb9b526b29b4\"},\"source\":[\"question = squad[\\\"validation\\\"][0][\\\"question\\\"] \\n\",\"context = squad[\\\"validation\\\"][0][\\\"context\\\"] \\n\",\"print(\\\"Question:\\\") \\n\",\"print(question) \\n\",\"print(\\\"Context:\\\") \\n\",\"print(context) \"],\"execution_count\":18,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Question:\\n\",\"In what country is Normandy located?\\n\",\"Context:\\n\",\"The Normans (Norman: Nourmands; French: Normands; Latin: Normanni) were the people who in the 10th and 11th centuries gave their name to Normandy, a region in France. They were descended from Norse (\\\"Norman\\\" comes from \\\"Norseman\\\") raiders and pirates from Denmark, Iceland and Norway who, under their leader Rollo, agreed to swear fealty to King Charles III of West Francia. Through generations of assimilation and mixing with the native Frankish and Roman-Gaulish populations, their descendants would gradually merge with the Carolingian-based cultures of West Francia. The distinct cultural and ethnic identity of the Normans emerged initially in the first half of the 10th century, and it continued to evolve over the succeeding centuries.\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"EpjiJ2cakjk7\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625335807444,\"user_tz\":-180,\"elapsed\":692,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"4581aef2-6bfd-4dc7-9656-2a1fe3054e53\"},\"source\":[\"qa_model(question=question, context=context) \"],\"execution_count\":19,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"{'answer': 'France', 'end': 165, 'score': 0.9889379143714905, 'start': 159}\"]},\"metadata\":{\"tags\":[]},\"execution_count\":19}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"m9FPNkxwkoca\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH07/CH07a_Benchmarking_sentence_similarity_models.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH07a_Benchmarking_sentence_similarity_models.ipynb\",\"provenance\":[]},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"},\"accelerator\":\"GPU\",\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"c11191e8180e4f8bb55fd6fe08ec8dcb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_78e53681684b4b559e0cc96794d5429b\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_8efd9f381ab445ecbb7eaa0d32d22441\",\"IPY_MODEL_e24419b42ed44bedb61ba48f05f64b36\"]}},\"78e53681684b4b559e0cc96794d5429b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"8efd9f381ab445ecbb7eaa0d32d22441\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_eb48c680cafb482086f90c8aa45ba490\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1848,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1848,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_ff2c5599f3524574ba55c3bac87c9f97\"}},\"e24419b42ed44bedb61ba48f05f64b36\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_784e6d76726749e7a8f14c5a5d2b9fb1\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 5.75k/? [00:00&lt;00:00, 13.2kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d9081af8fa0e4d058298bb7d8d9fbc92\"}},\"eb48c680cafb482086f90c8aa45ba490\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"ff2c5599f3524574ba55c3bac87c9f97\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"784e6d76726749e7a8f14c5a5d2b9fb1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"d9081af8fa0e4d058298bb7d8d9fbc92\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7efd82fd003e48c9b4bfbb8b7ad5b404\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_ce6b8f3c9cc049828ebe1ef90c8ce20b\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_d4857ab383134ae39d49545ab2948604\",\"IPY_MODEL_8dab515f16f74d7aa5d2aadeb9811a81\"]}},\"ce6b8f3c9cc049828ebe1ef90c8ce20b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d4857ab383134ae39d49545ab2948604\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_d00b8c790c2b4b41837964134ddfeccd\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":7777,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":7777,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_f628438aca0d4002960397f48f21a6f9\"}},\"8dab515f16f74d7aa5d2aadeb9811a81\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_f9a7d4bc62d94f24a664b4d679ad4481\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 28.8k/? [00:07&lt;00:00, 3.85kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_b86c2317db37469fa4bd8733724436bb\"}},\"d00b8c790c2b4b41837964134ddfeccd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"f628438aca0d4002960397f48f21a6f9\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f9a7d4bc62d94f24a664b4d679ad4481\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"b86c2317db37469fa4bd8733724436bb\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f6f8bcab677640ca9a9ee91d40757ed9\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_7b7af09b23b84ef28a5c30e70c1702cc\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_8569b0fdbb024b4b8e8f5f4153921291\",\"IPY_MODEL_e4d5e85bb69447c0b0059453abfdf35e\"]}},\"7b7af09b23b84ef28a5c30e70c1702cc\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"8569b0fdbb024b4b8e8f5f4153921291\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_5e5662c53c8745de8a5b1a0a63e4e75d\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":4473,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":4473,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_ff0b3cb8879d4bfdae14e16c2552d498\"}},\"e4d5e85bb69447c0b0059453abfdf35e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_d9b6ee54d763479c8e7d9873e8714b4e\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 28.7k/? [00:00&lt;00:00, 339kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_33858558f4254068b74f26cb23e56550\"}},\"5e5662c53c8745de8a5b1a0a63e4e75d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"ff0b3cb8879d4bfdae14e16c2552d498\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d9b6ee54d763479c8e7d9873e8714b4e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"33858558f4254068b74f26cb23e56550\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"984544c1f3d646ee90514650f675dc51\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_0ac85c29b63245659548f11af910eea1\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_10908ed73fc04aa0afe2cf87fc25c02f\",\"IPY_MODEL_15af123172ae4e2aa3031f41fa067250\"]}},\"0ac85c29b63245659548f11af910eea1\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"10908ed73fc04aa0afe2cf87fc25c02f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_e957237c71854a67bcedffcd5598cbdf\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a64817a311734ec0abe88b10e255f0cc\"}},\"15af123172ae4e2aa3031f41fa067250\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_2b60aca203f4449c98afde3e444c7216\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 6.22k/? [00:01&lt;00:00, 3.75kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_4dd0d2d2cffe4e9bb468e9c3d56175cc\"}},\"e957237c71854a67bcedffcd5598cbdf\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"a64817a311734ec0abe88b10e255f0cc\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"2b60aca203f4449c98afde3e444c7216\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"4dd0d2d2cffe4e9bb468e9c3d56175cc\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"8b762f0c3fb24279bbf597466a618715\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_930f874bb9e24f45a40e604f947ca1cd\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_64bd270a2baa4e6c81687c1369b84771\",\"IPY_MODEL_e36a472c833b4109ae362c6e95c4a2e4\"]}},\"930f874bb9e24f45a40e604f947ca1cd\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"64bd270a2baa4e6c81687c1369b84771\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_839926ff3a9c47b388ee920fd8fcc0ee\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_19d6079df78d4ae79c6bc477cbb942f1\"}},\"e36a472c833b4109ae362c6e95c4a2e4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_d3160d8ec2e74fb78ce63cee174cddda\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1.05M/? [00:03&lt;00:00, 318kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_4cbfa5dc01814979b3382aa3d291523c\"}},\"839926ff3a9c47b388ee920fd8fcc0ee\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"19d6079df78d4ae79c6bc477cbb942f1\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d3160d8ec2e74fb78ce63cee174cddda\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"4cbfa5dc01814979b3382aa3d291523c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a7dfd85a7f1e422786314ccd1d314de6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_538c2cd9248d4571b397d486dc44deea\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_7a1144dd118348919b24537232960c75\",\"IPY_MODEL_6aa38a1a1c014c2e89f3dee5a1c8058e\"]}},\"538c2cd9248d4571b397d486dc44deea\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7a1144dd118348919b24537232960c75\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_cac1d5a0453a4e32aa15d18a5ad825e7\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_587892468f714cd29d39002fd5f2adf0\"}},\"6aa38a1a1c014c2e89f3dee5a1c8058e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_5a3535534d3144908b439e953743dc74\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 441k/? [00:00&lt;00:00, 626kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_1adc87f067c44e52bc799e3fe7b8ac56\"}},\"cac1d5a0453a4e32aa15d18a5ad825e7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"587892468f714cd29d39002fd5f2adf0\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"5a3535534d3144908b439e953743dc74\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"1adc87f067c44e52bc799e3fe7b8ac56\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ce481558ffff4545b262f884ceea6004\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_7dab19f618a04db4a2b838184db9e945\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_be04eded3b09432b8f22ce997fba5a92\",\"IPY_MODEL_0e67ec010fe3489389f0b6b4846653cc\"]}},\"7dab19f618a04db4a2b838184db9e945\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"be04eded3b09432b8f22ce997fba5a92\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_1944d192b6434303b4a991f8f1c57221\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_2a34d5376e254953883b7116d0fbbb6c\"}},\"0e67ec010fe3489389f0b6b4846653cc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_e254ebc8507a402fbf7d59fe54980353\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 3668/0 [00:04&lt;00:00,  2.70s/ examples]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e72976a794b94e66975e7981fde42f08\"}},\"1944d192b6434303b4a991f8f1c57221\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"2a34d5376e254953883b7116d0fbbb6c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e254ebc8507a402fbf7d59fe54980353\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"e72976a794b94e66975e7981fde42f08\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c3faa9bd3dc4472fa0b9337992aee8bc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_bc7063bc33c4494e9e40c3ed1bc7731f\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_172cbea4481a4de4a42f1903f29b55d5\",\"IPY_MODEL_3f5431823aec492d879eb9737087d105\"]}},\"bc7063bc33c4494e9e40c3ed1bc7731f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"172cbea4481a4de4a42f1903f29b55d5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_1ee302fe635b45259a91bd25789da197\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a61394df29bd4ab9ba9d4dec0adf91c7\"}},\"3f5431823aec492d879eb9737087d105\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_e4e9b2fd95d544d992c830a8696cfbc0\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 408/0 [00:00&lt;00:00, 1960.75 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_524594d1d7284fef8246aa4b7d3e80fd\"}},\"1ee302fe635b45259a91bd25789da197\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"a61394df29bd4ab9ba9d4dec0adf91c7\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e4e9b2fd95d544d992c830a8696cfbc0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"524594d1d7284fef8246aa4b7d3e80fd\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a4f9afbfd80e42e189ac9095f6b27dea\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_3977c2b4f21d4c61ba202d7914dd069b\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_f3a997b0c29241dcbc1b61a10c366161\",\"IPY_MODEL_c063f2a0b02a47d8835433101b44297d\"]}},\"3977c2b4f21d4c61ba202d7914dd069b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f3a997b0c29241dcbc1b61a10c366161\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_9266ef48fd36468d87743a60fd49939b\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c9981e3097d14ca79d11e001d7c17498\"}},\"c063f2a0b02a47d8835433101b44297d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_c9cbd9401e5f4e4bbd79dfb5b6c9b596\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1725/0 [00:00&lt;00:00, 16367.67 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c3290f5d4c1d4f2587f056075a21430d\"}},\"9266ef48fd36468d87743a60fd49939b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"c9981e3097d14ca79d11e001d7c17498\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c9cbd9401e5f4e4bbd79dfb5b6c9b596\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"c3290f5d4c1d4f2587f056075a21430d\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"4367a7a0c35b4b8aacec8b1919b0f9e5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_2c07e1a461544f908531fc9d4b5114f4\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_ace13fb4e93c486795bdf7f48861ae9d\",\"IPY_MODEL_f9514ce4ec0546c3b6501f47812a4abf\"]}},\"2c07e1a461544f908531fc9d4b5114f4\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ace13fb4e93c486795bdf7f48861ae9d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_1d13b8c63eee44f88b894c179d98a49b\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":802872,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":802872,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_f27f007f5b45431d8a7d100943fb551b\"}},\"f9514ce4ec0546c3b6501f47812a4abf\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_eb3e86664d0b4cefa041fd675231b446\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 803k/803k [00:00&lt;00:00, 927kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_161fee7b8dba498da868a2f89ca161fd\"}},\"1d13b8c63eee44f88b894c179d98a49b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"f27f007f5b45431d8a7d100943fb551b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"eb3e86664d0b4cefa041fd675231b446\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"161fee7b8dba498da868a2f89ca161fd\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"83c3f161131944acad1bcfa3919b2265\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_39c73d62b9f240bdb6d062ffe77d5b3a\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_85324fcbaf054f939811a0399ab54449\",\"IPY_MODEL_eeeabb8110ea42049a9930eaa985c71b\"]}},\"39c73d62b9f240bdb6d062ffe77d5b3a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"85324fcbaf054f939811a0399ab54449\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_87cf427f83c343b09d7dce3a9f0ff8e0\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_bee7757578254a50a19ecd8938f6b096\"}},\"eeeabb8110ea42049a9930eaa985c71b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_9b03b7532a354811bb28a516623f0193\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 5749/0 [00:00&lt;00:00, 16534.70 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_77e9482a12f84ae2b6078bb73b69e60a\"}},\"87cf427f83c343b09d7dce3a9f0ff8e0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"bee7757578254a50a19ecd8938f6b096\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"9b03b7532a354811bb28a516623f0193\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"77e9482a12f84ae2b6078bb73b69e60a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"abe44c1b41de49d3b83544db800fdeee\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_04a06601a8fc415489af152495b386c8\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_d50b544273694d4098559ea3e76b9f69\",\"IPY_MODEL_35abd54c66dd4532a5aa8bed8f8c1fcd\"]}},\"04a06601a8fc415489af152495b386c8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d50b544273694d4098559ea3e76b9f69\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_118dea8c55264919a2ec13ded9c90c22\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_bd46c74a5ce247dcb48530a5cc497c07\"}},\"35abd54c66dd4532a5aa8bed8f8c1fcd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_f80437fd499743e8acb0f1e8fe031eef\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1500/0 [00:00&lt;00:00, 15011.22 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d668da63549844c18ef042d0d2d27ea5\"}},\"118dea8c55264919a2ec13ded9c90c22\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"bd46c74a5ce247dcb48530a5cc497c07\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f80437fd499743e8acb0f1e8fe031eef\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"d668da63549844c18ef042d0d2d27ea5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e0f5b1fd98574d01bc39d960d38b712d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_7b9a656ac7994ba48e50644ca64f4b85\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_b38ebf7683d74493a33a17197e359866\",\"IPY_MODEL_3a0691b78d2b46ab8ea62533cb91056c\"]}},\"7b9a656ac7994ba48e50644ca64f4b85\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"b38ebf7683d74493a33a17197e359866\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_47b02b9b01ad450bb1550842fe8211ce\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_bce1bf4ae5574096a07e5d7c31735b69\"}},\"3a0691b78d2b46ab8ea62533cb91056c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_518c4619663e4533a1e9aefbc9917807\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1379/0 [00:00&lt;00:00, 8718.28 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e92e808efcce4f8f853c3ed524f58618\"}},\"47b02b9b01ad450bb1550842fe8211ce\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"bce1bf4ae5574096a07e5d7c31735b69\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"518c4619663e4533a1e9aefbc9917807\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"e92e808efcce4f8f853c3ed524f58618\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"0f8f4498f4634c9a8b9e9704de7c79ac\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_1164ffbbe44049f3b9fdba44a670214f\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_cf42b14bd5f340ec9defdc2651dc870b\",\"IPY_MODEL_42f8255f5a80478eb956e50e4b775e6a\"]}},\"1164ffbbe44049f3b9fdba44a670214f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"cf42b14bd5f340ec9defdc2651dc870b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_8ed860732f3d488cafb9918820124934\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1093,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1093,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a9ddcf81a9e74e0c8c40a95da2af3d20\"}},\"42f8255f5a80478eb956e50e4b775e6a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_995ed76171894c5cb4707a71e271421e\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1.09k/1.09k [00:01&lt;00:00, 727B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a699ab52ebe9407cb0841ca76ff33410\"}},\"8ed860732f3d488cafb9918820124934\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"a9ddcf81a9e74e0c8c40a95da2af3d20\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"995ed76171894c5cb4707a71e271421e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"a699ab52ebe9407cb0841ca76ff33410\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f8f879976be74cd3bcacbde604b0b6fb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_0b9a8de55ab0446e9b16ba110da8ab6f\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_033a5ae221bf4280b21b5f3a64b41e06\",\"IPY_MODEL_8c96f2fc1f5e4041b90e1eaaf1f8a82e\"]}},\"0b9a8de55ab0446e9b16ba110da8ab6f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"033a5ae221bf4280b21b5f3a64b41e06\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_54afe6261ab743358ccceaa22f02f72a\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":3690,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":3690,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_3ff7e28297be4ea5bb930abe8a8c4c7d\"}},\"8c96f2fc1f5e4041b90e1eaaf1f8a82e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_6dc0d7996cef4347845b5bfc1bee5127\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 3.69k/3.69k [00:04&lt;00:00, 785B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d0f582aa1b5041d88f9e7a6dd8cb9600\"}},\"54afe6261ab743358ccceaa22f02f72a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"3ff7e28297be4ea5bb930abe8a8c4c7d\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"6dc0d7996cef4347845b5bfc1bee5127\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"d0f582aa1b5041d88f9e7a6dd8cb9600\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a005459c6a104a5f908ac2ce29246328\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_d6fcd24d46604081a926c502b22540ea\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_356b23cce6c74ca19fd292b866ad8650\",\"IPY_MODEL_2402b36127f74d698a75bcc9ee2ae56c\"]}},\"d6fcd24d46604081a926c502b22540ea\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"356b23cce6c74ca19fd292b866ad8650\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_16f30c94bbf44e8c92f507f616745d78\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":680,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":680,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_59f472b4cd58491dba0bb84fd5835e9e\"}},\"2402b36127f74d698a75bcc9ee2ae56c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_013592e60a2b49d9ba1ab8a6245c4486\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 680/680 [00:03&lt;00:00, 210B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_54451fba9a754374adbf547fca11e2f1\"}},\"16f30c94bbf44e8c92f507f616745d78\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"59f472b4cd58491dba0bb84fd5835e9e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"013592e60a2b49d9ba1ab8a6245c4486\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"54451fba9a754374adbf547fca11e2f1\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c5cd911f7ccd4863adfe33ba88eabfed\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_88b3f59b1d8d4cd89ee5e0d7d9b2a16b\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_8797e375f48e433c84a449811aeb0872\",\"IPY_MODEL_1185adcabaa24296a7cc0dda90fdf9dc\"]}},\"88b3f59b1d8d4cd89ee5e0d7d9b2a16b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"8797e375f48e433c84a449811aeb0872\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_136e3720ce2244b2b856abfa17b9036e\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":122,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":122,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_aaa80c0bbefc4157b2c2f80328325647\"}},\"1185adcabaa24296a7cc0dda90fdf9dc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_fe0eaba601de40ecb2caebf365c9085c\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 122/122 [00:01&lt;00:00, 81.5B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e1947e1457394b9a965914c4f60bf894\"}},\"136e3720ce2244b2b856abfa17b9036e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"aaa80c0bbefc4157b2c2f80328325647\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"fe0eaba601de40ecb2caebf365c9085c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"e1947e1457394b9a965914c4f60bf894\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"44049c5d2215427d863d693903243748\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_76c013646c164ab58903b24f008735e4\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_0c24b2a4a11043fa979a198fbb388237\",\"IPY_MODEL_a43e8d36fcae4ed694d5d032fb49db93\"]}},\"76c013646c164ab58903b24f008735e4\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"0c24b2a4a11043fa979a198fbb388237\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_a098cd6154444a9a8d0c26c2025b210f\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":456356,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":456356,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_f860419c0120457793d3fb0bc0d7f125\"}},\"a43e8d36fcae4ed694d5d032fb49db93\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_17d31c068f39479b890e9f76e86c4412\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 456k/456k [00:00&lt;00:00, 1.25MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_8f0c14b79adb4858878e506a2eacb5a3\"}},\"a098cd6154444a9a8d0c26c2025b210f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"f860419c0120457793d3fb0bc0d7f125\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"17d31c068f39479b890e9f76e86c4412\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"8f0c14b79adb4858878e506a2eacb5a3\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"42728f159d244b7a97a1a0c637df1a73\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_10af93f5126c4274bd59e1d863ca028c\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_00b76d95e1154963a0597aa2a95c8d90\",\"IPY_MODEL_ba4cf6521af44fd6b06ad38cd19fa32d\"]}},\"10af93f5126c4274bd59e1d863ca028c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"00b76d95e1154963a0597aa2a95c8d90\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_4ce6c3b9e5744d01a3d1eedc524a191d\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":229,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":229,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_eaae3c89082143dead0fdc8ede9cd247\"}},\"ba4cf6521af44fd6b06ad38cd19fa32d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_85cb9ac41e3443faa7cf316da1fa47e9\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 229/229 [00:02&lt;00:00, 78.0B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_2976a58efbff48fda863d0d46fb39227\"}},\"4ce6c3b9e5744d01a3d1eedc524a191d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"eaae3c89082143dead0fdc8ede9cd247\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"85cb9ac41e3443faa7cf316da1fa47e9\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"2976a58efbff48fda863d0d46fb39227\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"b023f1cc805a4baf970fed4727c7041d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_572b35cc77eb4b1bacb01d672fc52010\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_446ed9e871314d1eb5c9f76a944d4b2c\",\"IPY_MODEL_6eaf6ce679414ca1bb8084856fa1d126\"]}},\"572b35cc77eb4b1bacb01d672fc52010\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"446ed9e871314d1eb5c9f76a944d4b2c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_699f281ed6394e8298c0a859beed9dab\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":328515953,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":328515953,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_dbe35bab00694b94a36dc223f2962e48\"}},\"6eaf6ce679414ca1bb8084856fa1d126\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_f5c38eedbd764af9977379a97fd190d6\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 329M/329M [00:56&lt;00:00, 5.83MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a350bd4c656c453b8a31ec9aaf6ab7a7\"}},\"699f281ed6394e8298c0a859beed9dab\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"dbe35bab00694b94a36dc223f2962e48\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f5c38eedbd764af9977379a97fd190d6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"a350bd4c656c453b8a31ec9aaf6ab7a7\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"8b7799bde0e8461d8373cb3bd26be30a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_0345aa991e804fe7a6a0d57629813628\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_327a495e69d34c6d90d5fec9d9379f19\",\"IPY_MODEL_768c9023e0d84d448c8bba1d85f4a7a7\"]}},\"0345aa991e804fe7a6a0d57629813628\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"327a495e69d34c6d90d5fec9d9379f19\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_dd8fee6968344a57a81c69815ff4f895\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":52,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":52,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_b7bd25ec2eda4a8cafb3fdcdcf8d8c7f\"}},\"768c9023e0d84d448c8bba1d85f4a7a7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_055be164f8aa4d58bd3f119773610cc8\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 52.0/52.0 [00:03&lt;00:00, 15.6B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a51cacf68b6f4aab99358627d468b5e5\"}},\"dd8fee6968344a57a81c69815ff4f895\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"b7bd25ec2eda4a8cafb3fdcdcf8d8c7f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"055be164f8aa4d58bd3f119773610cc8\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"a51cacf68b6f4aab99358627d468b5e5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7d86e774ecd5402785b36f3df23fa021\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_93f2db3fd997478ea288936f7650fab9\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_e114ef3d9ee04e069dce2edc992ab427\",\"IPY_MODEL_bb74160afbfd431f94f19c037cf7b2fe\"]}},\"93f2db3fd997478ea288936f7650fab9\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e114ef3d9ee04e069dce2edc992ab427\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_3ea4939957914a7185376122e9712d0c\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":239,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":239,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_48e1babbdebd439db80a2e4ab02aa94e\"}},\"bb74160afbfd431f94f19c037cf7b2fe\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_815c736fde1c4abcbd483f18c880195e\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 239/239 [00:01&lt;00:00, 129B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_9450b2bae2ad44658259b4c70013bf75\"}},\"3ea4939957914a7185376122e9712d0c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"48e1babbdebd439db80a2e4ab02aa94e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"815c736fde1c4abcbd483f18c880195e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"9450b2bae2ad44658259b4c70013bf75\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e3daa75408bb420c80e23666723eb583\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_1776d4c2f2064ceb87804bbeced740d7\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_d02e89749728498a9b9378e7b0982bb4\",\"IPY_MODEL_48f5143f5a944443a908124030737d2b\"]}},\"1776d4c2f2064ceb87804bbeced740d7\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d02e89749728498a9b9378e7b0982bb4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_37ca2b3a29b6436a8052047f74b4db9e\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1355881,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1355881,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_5e0885e627d942feb959db3119dd4c2c\"}},\"48f5143f5a944443a908124030737d2b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_9c5a72c2a6e34bfaaabf327cf8c1e097\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1.36M/1.36M [00:23&lt;00:00, 56.5kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_7168e3cea988430a9952d83d30024368\"}},\"37ca2b3a29b6436a8052047f74b4db9e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"5e0885e627d942feb959db3119dd4c2c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"9c5a72c2a6e34bfaaabf327cf8c1e097\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"7168e3cea988430a9952d83d30024368\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a782a329e3d24ca98cb52db671ad22cd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_11bfa399fb10473c8b651d5b1f4d463f\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_215b933c62424c72aaeb5a32131d22ff\",\"IPY_MODEL_b17ad659a16d43a4b3da23058ad643d3\"]}},\"11bfa399fb10473c8b651d5b1f4d463f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"215b933c62424c72aaeb5a32131d22ff\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_45c6e664f95044d9ac054c58262d21ee\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1117,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1117,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_18d1d6b305f24d1bb20554f0c07c31e4\"}},\"b17ad659a16d43a4b3da23058ad643d3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_aa7747bb4d14451b9310b6fd6f0710fe\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1.12k/1.12k [00:03&lt;00:00, 298B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_f420bbc41591406e8a7179454ad9c542\"}},\"45c6e664f95044d9ac054c58262d21ee\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"18d1d6b305f24d1bb20554f0c07c31e4\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"aa7747bb4d14451b9310b6fd6f0710fe\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"f420bbc41591406e8a7179454ad9c542\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d14ef0b11e6d45f8b5dd55a17fee186e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_95f564dd663d45a0aa39d0d8f653f49b\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_207571f60d85482b8a7584b231177ead\",\"IPY_MODEL_315bf4f6db924481a31d07c0ff7e5216\"]}},\"95f564dd663d45a0aa39d0d8f653f49b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"207571f60d85482b8a7584b231177ead\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_61c88bab803842db8daf646c854189cc\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":798293,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":798293,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e043c5c888f146d590d4bf475f3dcc5f\"}},\"315bf4f6db924481a31d07c0ff7e5216\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_9d0775edb24d45bb926347f7fba62819\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 798k/798k [00:01&lt;00:00, 399kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d511fa5fe18b40aabe99e07b2712ed41\"}},\"61c88bab803842db8daf646c854189cc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"e043c5c888f146d590d4bf475f3dcc5f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"9d0775edb24d45bb926347f7fba62819\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"d511fa5fe18b40aabe99e07b2712ed41\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c84e29c5d24244bb9d330c52e7863ecb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_8116dea6761f494ca2651771d0e2a5ec\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_2be25ff99cb9499fb9cf3cd784b4511a\",\"IPY_MODEL_98bc36ebc0474f3598cd2b70ca27ce28\"]}},\"8116dea6761f494ca2651771d0e2a5ec\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"2be25ff99cb9499fb9cf3cd784b4511a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_66bfeba897a74f179a9df447e69bf8b0\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":190,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":190,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c45ff8f133f64d6bade62648aba870d5\"}},\"98bc36ebc0474f3598cd2b70ca27ce28\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_d74cd5d864c84fe6adf3de156169f78e\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 190/190 [00:18&lt;00:00, 10.5B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e58ddde1834b4e1c91d94a9cd821950f\"}},\"66bfeba897a74f179a9df447e69bf8b0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"c45ff8f133f64d6bade62648aba870d5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d74cd5d864c84fe6adf3de156169f78e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"e58ddde1834b4e1c91d94a9cd821950f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}}},\"cells\":[{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"phmZ2f8Ol64h\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625402039725,\"user_tz\":-180,\"elapsed\":15268,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"32ecd26d-d9ae-4ff8-e2b9-2dd18f303336\"},\"source\":[\"!pip install datasets\\n\",\"!pip install tensorflow-hub\\n\",\"!pip install sentence-transformers\"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Collecting datasets\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/08/a2/d4e1024c891506e1cee8f9d719d20831bac31cb5b7416983c4d2f65a6287/datasets-1.8.0-py3-none-any.whl (237kB)\\n\",\"\\u001b[K     |████████████████████████████████| 245kB 5.7MB/s \\n\",\"\\u001b[?25hCollecting xxhash\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/7d/4f/0a862cad26aa2ed7a7cd87178cbbfa824fc1383e472d63596a0d018374e7/xxhash-2.0.2-cp37-cp37m-manylinux2010_x86_64.whl (243kB)\\n\",\"\\u001b[K     |████████████████████████████████| 245kB 36.2MB/s \\n\",\"\\u001b[?25hCollecting huggingface-hub<0.1.0\\n\",\"  Downloading https://files.pythonhosted.org/packages/35/03/071adc023c0a7e540cf4652fa9cad13ab32e6ae469bf0cc0262045244812/huggingface_hub-0.0.13-py3-none-any.whl\\n\",\"Requirement already satisfied: pyarrow<4.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (3.0.0)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from datasets) (4.5.0)\\n\",\"Requirement already satisfied: requests>=2.19.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (2.23.0)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from datasets) (20.9)\\n\",\"Requirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from datasets) (1.1.5)\\n\",\"Collecting fsspec\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/0e/3a/666e63625a19883ae8e1674099e631f9737bd5478c4790e5ad49c5ac5261/fsspec-2021.6.1-py3-none-any.whl (115kB)\\n\",\"\\u001b[K     |████████████████████████████████| 122kB 34.3MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from datasets) (0.3.4)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from datasets) (1.19.5)\\n\",\"Requirement already satisfied: multiprocess in /usr/local/lib/python3.7/dist-packages (from datasets) (0.70.12.2)\\n\",\"Requirement already satisfied: tqdm<4.50.0,>=4.27 in /usr/local/lib/python3.7/dist-packages (from datasets) (4.41.1)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from huggingface-hub<0.1.0->datasets) (3.0.12)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub<0.1.0->datasets) (3.7.4.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->datasets) (3.4.1)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (3.0.4)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (1.24.3)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (2021.5.30)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (2.10)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->datasets) (2.4.7)\\n\",\"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2.8.1)\\n\",\"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2018.9)\\n\",\"Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.7/dist-packages (from python-dateutil>=2.7.3->pandas->datasets) (1.15.0)\\n\",\"Installing collected packages: xxhash, huggingface-hub, fsspec, datasets\\n\",\"Successfully installed datasets-1.8.0 fsspec-2021.6.1 huggingface-hub-0.0.13 xxhash-2.0.2\\n\",\"Requirement already satisfied: tensorflow-hub in /usr/local/lib/python3.7/dist-packages (0.12.0)\\n\",\"Requirement already satisfied: numpy>=1.12.0 in /usr/local/lib/python3.7/dist-packages (from tensorflow-hub) (1.19.5)\\n\",\"Requirement already satisfied: protobuf>=3.8.0 in /usr/local/lib/python3.7/dist-packages (from tensorflow-hub) (3.12.4)\\n\",\"Requirement already satisfied: six>=1.9 in /usr/local/lib/python3.7/dist-packages (from protobuf>=3.8.0->tensorflow-hub) (1.15.0)\\n\",\"Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from protobuf>=3.8.0->tensorflow-hub) (57.0.0)\\n\",\"Collecting sentence-transformers\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/3b/fd/8a81047bbd9fa134a3f27e12937d2a487bd49d353a038916a5d7ed4e5543/sentence-transformers-2.0.0.tar.gz (85kB)\\n\",\"\\u001b[K     |████████████████████████████████| 92kB 4.0MB/s \\n\",\"\\u001b[?25hCollecting transformers<5.0.0,>=4.6.0\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/fd/1a/41c644c963249fd7f3836d926afa1e3f1cc234a1c40d80c5f03ad8f6f1b2/transformers-4.8.2-py3-none-any.whl (2.5MB)\\n\",\"\\u001b[K     |████████████████████████████████| 2.5MB 27.2MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (4.41.1)\\n\",\"Requirement already satisfied: torch>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.9.0+cu102)\\n\",\"Requirement already satisfied: torchvision in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.10.0+cu102)\\n\",\"Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.19.5)\\n\",\"Requirement already satisfied: scikit-learn in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.22.2.post1)\\n\",\"Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.4.1)\\n\",\"Requirement already satisfied: nltk in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (3.2.5)\\n\",\"Collecting sentencepiece\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/ac/aa/1437691b0c7c83086ebb79ce2da16e00bef024f24fec2a5161c35476f499/sentencepiece-0.1.96-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2MB)\\n\",\"\\u001b[K     |████████████████████████████████| 1.2MB 44.4MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: huggingface-hub in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.0.13)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (2.23.0)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (3.13)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (20.9)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (2019.12.20)\\n\",\"Collecting sacremoses\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/ee/67241dc87f266093c533a2d4d3d69438e57d7a90abb216fa076e7d475d4a/sacremoses-0.0.45-py3-none-any.whl (895kB)\\n\",\"\\u001b[K     |████████████████████████████████| 901kB 43.3MB/s \\n\",\"\\u001b[?25hCollecting tokenizers<0.11,>=0.10.1\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d4/e2/df3543e8ffdab68f5acc73f613de9c2b155ac47f162e725dcac87c521c11/tokenizers-0.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.3MB)\\n\",\"\\u001b[K     |████████████████████████████████| 3.3MB 47.7MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (3.0.12)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (4.5.0)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from torch>=1.6.0->sentence-transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: pillow>=5.3.0 in /usr/local/lib/python3.7/dist-packages (from torchvision->sentence-transformers) (7.1.2)\\n\",\"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from scikit-learn->sentence-transformers) (1.0.1)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from nltk->sentence-transformers) (1.15.0)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers<5.0.0,>=4.6.0->sentence-transformers) (2.10)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers<5.0.0,>=4.6.0->sentence-transformers) (2021.5.30)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers<5.0.0,>=4.6.0->sentence-transformers) (3.0.4)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers<5.0.0,>=4.6.0->sentence-transformers) (1.24.3)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers<5.0.0,>=4.6.0->sentence-transformers) (2.4.7)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers<5.0.0,>=4.6.0->sentence-transformers) (7.1.2)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers<5.0.0,>=4.6.0->sentence-transformers) (3.4.1)\\n\",\"Building wheels for collected packages: sentence-transformers\\n\",\"  Building wheel for sentence-transformers (setup.py) ... \\u001b[?25l\\u001b[?25hdone\\n\",\"  Created wheel for sentence-transformers: filename=sentence_transformers-2.0.0-cp37-none-any.whl size=126711 sha256=b4517e4cd364adb9fd9927fcf0b884a384974f3ea9c2b3b250f4d93d9fed0fa8\\n\",\"  Stored in directory: /root/.cache/pip/wheels/38/d2/98/d191289a877a34c68aa67e05179521e060f96394a3e9336be6\\n\",\"Successfully built sentence-transformers\\n\",\"\\u001b[31mERROR: transformers 4.8.2 has requirement huggingface-hub==0.0.12, but you'll have huggingface-hub 0.0.13 which is incompatible.\\u001b[0m\\n\",\"Installing collected packages: sacremoses, tokenizers, transformers, sentencepiece, sentence-transformers\\n\",\"Successfully installed sacremoses-0.0.45 sentence-transformers-2.0.0 sentencepiece-0.1.96 tokenizers-0.10.3 transformers-4.8.2\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":365,\"referenced_widgets\":[\"c11191e8180e4f8bb55fd6fe08ec8dcb\",\"78e53681684b4b559e0cc96794d5429b\",\"8efd9f381ab445ecbb7eaa0d32d22441\",\"e24419b42ed44bedb61ba48f05f64b36\",\"eb48c680cafb482086f90c8aa45ba490\",\"ff2c5599f3524574ba55c3bac87c9f97\",\"784e6d76726749e7a8f14c5a5d2b9fb1\",\"d9081af8fa0e4d058298bb7d8d9fbc92\",\"7efd82fd003e48c9b4bfbb8b7ad5b404\",\"ce6b8f3c9cc049828ebe1ef90c8ce20b\",\"d4857ab383134ae39d49545ab2948604\",\"8dab515f16f74d7aa5d2aadeb9811a81\",\"d00b8c790c2b4b41837964134ddfeccd\",\"f628438aca0d4002960397f48f21a6f9\",\"f9a7d4bc62d94f24a664b4d679ad4481\",\"b86c2317db37469fa4bd8733724436bb\",\"f6f8bcab677640ca9a9ee91d40757ed9\",\"7b7af09b23b84ef28a5c30e70c1702cc\",\"8569b0fdbb024b4b8e8f5f4153921291\",\"e4d5e85bb69447c0b0059453abfdf35e\",\"5e5662c53c8745de8a5b1a0a63e4e75d\",\"ff0b3cb8879d4bfdae14e16c2552d498\",\"d9b6ee54d763479c8e7d9873e8714b4e\",\"33858558f4254068b74f26cb23e56550\",\"984544c1f3d646ee90514650f675dc51\",\"0ac85c29b63245659548f11af910eea1\",\"10908ed73fc04aa0afe2cf87fc25c02f\",\"15af123172ae4e2aa3031f41fa067250\",\"e957237c71854a67bcedffcd5598cbdf\",\"a64817a311734ec0abe88b10e255f0cc\",\"2b60aca203f4449c98afde3e444c7216\",\"4dd0d2d2cffe4e9bb468e9c3d56175cc\",\"8b762f0c3fb24279bbf597466a618715\",\"930f874bb9e24f45a40e604f947ca1cd\",\"64bd270a2baa4e6c81687c1369b84771\",\"e36a472c833b4109ae362c6e95c4a2e4\",\"839926ff3a9c47b388ee920fd8fcc0ee\",\"19d6079df78d4ae79c6bc477cbb942f1\",\"d3160d8ec2e74fb78ce63cee174cddda\",\"4cbfa5dc01814979b3382aa3d291523c\",\"a7dfd85a7f1e422786314ccd1d314de6\",\"538c2cd9248d4571b397d486dc44deea\",\"7a1144dd118348919b24537232960c75\",\"6aa38a1a1c014c2e89f3dee5a1c8058e\",\"cac1d5a0453a4e32aa15d18a5ad825e7\",\"587892468f714cd29d39002fd5f2adf0\",\"5a3535534d3144908b439e953743dc74\",\"1adc87f067c44e52bc799e3fe7b8ac56\",\"ce481558ffff4545b262f884ceea6004\",\"7dab19f618a04db4a2b838184db9e945\",\"be04eded3b09432b8f22ce997fba5a92\",\"0e67ec010fe3489389f0b6b4846653cc\",\"1944d192b6434303b4a991f8f1c57221\",\"2a34d5376e254953883b7116d0fbbb6c\",\"e254ebc8507a402fbf7d59fe54980353\",\"e72976a794b94e66975e7981fde42f08\",\"c3faa9bd3dc4472fa0b9337992aee8bc\",\"bc7063bc33c4494e9e40c3ed1bc7731f\",\"172cbea4481a4de4a42f1903f29b55d5\",\"3f5431823aec492d879eb9737087d105\",\"1ee302fe635b45259a91bd25789da197\",\"a61394df29bd4ab9ba9d4dec0adf91c7\",\"e4e9b2fd95d544d992c830a8696cfbc0\",\"524594d1d7284fef8246aa4b7d3e80fd\",\"a4f9afbfd80e42e189ac9095f6b27dea\",\"3977c2b4f21d4c61ba202d7914dd069b\",\"f3a997b0c29241dcbc1b61a10c366161\",\"c063f2a0b02a47d8835433101b44297d\",\"9266ef48fd36468d87743a60fd49939b\",\"c9981e3097d14ca79d11e001d7c17498\",\"c9cbd9401e5f4e4bbd79dfb5b6c9b596\",\"c3290f5d4c1d4f2587f056075a21430d\"]},\"id\":\"ilAe4ORtmOn8\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625402055035,\"user_tz\":-180,\"elapsed\":15315,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"9ca438bd-a57e-4871-f561-b18df7425bb9\"},\"source\":[\"from datasets import load_metric, load_dataset \\n\",\"metric = load_metric('glue', 'mrpc') \\n\",\"mrpc = load_dataset('glue', 'mrpc') \"],\"execution_count\":3,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"c11191e8180e4f8bb55fd6fe08ec8dcb\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1848.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"7efd82fd003e48c9b4bfbb8b7ad5b404\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=7777.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"f6f8bcab677640ca9a9ee91d40757ed9\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=4473.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\",\"Downloading and preparing dataset glue/mrpc (download: 1.43 MiB, generated: 1.43 MiB, post-processed: Unknown size, total: 2.85 MiB) to /root/.cache/huggingface/datasets/glue/mrpc/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad...\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"984544c1f3d646ee90514650f675dc51\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', description='Downloading', max=1.0, style=ProgressSt…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"8b762f0c3fb24279bbf597466a618715\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', description='Downloading', max=1.0, style=ProgressSt…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"a7dfd85a7f1e422786314ccd1d314de6\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', description='Downloading', max=1.0, style=ProgressSt…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"ce481558ffff4545b262f884ceea6004\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\r\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"c3faa9bd3dc4472fa0b9337992aee8bc\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\r\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"a4f9afbfd80e42e189ac9095f6b27dea\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\rDataset glue downloaded and prepared to /root/.cache/huggingface/datasets/glue/mrpc/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad. Subsequent calls will reuse this data.\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"DH_3OfTSmUgJ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625402056049,\"user_tz\":-180,\"elapsed\":1019,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"b0fc113f-ff0e-4df7-ed74-43332b276962\"},\"source\":[\"metric = load_metric('glue', 'stsb') \\n\",\"metric.compute(predictions=[1,2,3],references=[5,2,2]) \"],\"execution_count\":4,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"{'pearson': -0.8660254037844387, 'spearmanr': -0.8660254037844387}\"]},\"metadata\":{\"tags\":[]},\"execution_count\":4}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":120,\"referenced_widgets\":[\"4367a7a0c35b4b8aacec8b1919b0f9e5\",\"2c07e1a461544f908531fc9d4b5114f4\",\"ace13fb4e93c486795bdf7f48861ae9d\",\"f9514ce4ec0546c3b6501f47812a4abf\",\"1d13b8c63eee44f88b894c179d98a49b\",\"f27f007f5b45431d8a7d100943fb551b\",\"eb3e86664d0b4cefa041fd675231b446\",\"161fee7b8dba498da868a2f89ca161fd\",\"83c3f161131944acad1bcfa3919b2265\",\"39c73d62b9f240bdb6d062ffe77d5b3a\",\"85324fcbaf054f939811a0399ab54449\",\"eeeabb8110ea42049a9930eaa985c71b\",\"87cf427f83c343b09d7dce3a9f0ff8e0\",\"bee7757578254a50a19ecd8938f6b096\",\"9b03b7532a354811bb28a516623f0193\",\"77e9482a12f84ae2b6078bb73b69e60a\",\"abe44c1b41de49d3b83544db800fdeee\",\"04a06601a8fc415489af152495b386c8\",\"d50b544273694d4098559ea3e76b9f69\",\"35abd54c66dd4532a5aa8bed8f8c1fcd\",\"118dea8c55264919a2ec13ded9c90c22\",\"bd46c74a5ce247dcb48530a5cc497c07\",\"f80437fd499743e8acb0f1e8fe031eef\",\"d668da63549844c18ef042d0d2d27ea5\",\"e0f5b1fd98574d01bc39d960d38b712d\",\"7b9a656ac7994ba48e50644ca64f4b85\",\"b38ebf7683d74493a33a17197e359866\",\"3a0691b78d2b46ab8ea62533cb91056c\",\"47b02b9b01ad450bb1550842fe8211ce\",\"bce1bf4ae5574096a07e5d7c31735b69\",\"518c4619663e4533a1e9aefbc9917807\",\"e92e808efcce4f8f853c3ed524f58618\"]},\"id\":\"-3RyZ3E8mcl0\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625402062971,\"user_tz\":-180,\"elapsed\":5418,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"a4683ad6-f8e4-4b9c-d989-c5136b245914\"},\"source\":[\"from datasets import load_metric, load_dataset \\n\",\"stsb_metric = load_metric('glue', 'stsb') \\n\",\"stsb = load_dataset('glue', 'stsb') \"],\"execution_count\":5,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Downloading and preparing dataset glue/stsb (download: 784.05 KiB, generated: 1.09 MiB, post-processed: Unknown size, total: 1.86 MiB) to /root/.cache/huggingface/datasets/glue/stsb/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad...\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"4367a7a0c35b4b8aacec8b1919b0f9e5\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=802872.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"83c3f161131944acad1bcfa3919b2265\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\r\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"abe44c1b41de49d3b83544db800fdeee\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\r\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"e0f5b1fd98574d01bc39d960d38b712d\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\rDataset glue downloaded and prepared to /root/.cache/huggingface/datasets/glue/stsb/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad. Subsequent calls will reuse this data.\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":722,\"referenced_widgets\":[\"0f8f4498f4634c9a8b9e9704de7c79ac\",\"1164ffbbe44049f3b9fdba44a670214f\",\"cf42b14bd5f340ec9defdc2651dc870b\",\"42f8255f5a80478eb956e50e4b775e6a\",\"8ed860732f3d488cafb9918820124934\",\"a9ddcf81a9e74e0c8c40a95da2af3d20\",\"995ed76171894c5cb4707a71e271421e\",\"a699ab52ebe9407cb0841ca76ff33410\",\"f8f879976be74cd3bcacbde604b0b6fb\",\"0b9a8de55ab0446e9b16ba110da8ab6f\",\"033a5ae221bf4280b21b5f3a64b41e06\",\"8c96f2fc1f5e4041b90e1eaaf1f8a82e\",\"54afe6261ab743358ccceaa22f02f72a\",\"3ff7e28297be4ea5bb930abe8a8c4c7d\",\"6dc0d7996cef4347845b5bfc1bee5127\",\"d0f582aa1b5041d88f9e7a6dd8cb9600\",\"a005459c6a104a5f908ac2ce29246328\",\"d6fcd24d46604081a926c502b22540ea\",\"356b23cce6c74ca19fd292b866ad8650\",\"2402b36127f74d698a75bcc9ee2ae56c\",\"16f30c94bbf44e8c92f507f616745d78\",\"59f472b4cd58491dba0bb84fd5835e9e\",\"013592e60a2b49d9ba1ab8a6245c4486\",\"54451fba9a754374adbf547fca11e2f1\",\"c5cd911f7ccd4863adfe33ba88eabfed\",\"88b3f59b1d8d4cd89ee5e0d7d9b2a16b\",\"8797e375f48e433c84a449811aeb0872\",\"1185adcabaa24296a7cc0dda90fdf9dc\",\"136e3720ce2244b2b856abfa17b9036e\",\"aaa80c0bbefc4157b2c2f80328325647\",\"fe0eaba601de40ecb2caebf365c9085c\",\"e1947e1457394b9a965914c4f60bf894\",\"44049c5d2215427d863d693903243748\",\"76c013646c164ab58903b24f008735e4\",\"0c24b2a4a11043fa979a198fbb388237\",\"a43e8d36fcae4ed694d5d032fb49db93\",\"a098cd6154444a9a8d0c26c2025b210f\",\"f860419c0120457793d3fb0bc0d7f125\",\"17d31c068f39479b890e9f76e86c4412\",\"8f0c14b79adb4858878e506a2eacb5a3\",\"42728f159d244b7a97a1a0c637df1a73\",\"10af93f5126c4274bd59e1d863ca028c\",\"00b76d95e1154963a0597aa2a95c8d90\",\"ba4cf6521af44fd6b06ad38cd19fa32d\",\"4ce6c3b9e5744d01a3d1eedc524a191d\",\"eaae3c89082143dead0fdc8ede9cd247\",\"85cb9ac41e3443faa7cf316da1fa47e9\",\"2976a58efbff48fda863d0d46fb39227\",\"b023f1cc805a4baf970fed4727c7041d\",\"572b35cc77eb4b1bacb01d672fc52010\",\"446ed9e871314d1eb5c9f76a944d4b2c\",\"6eaf6ce679414ca1bb8084856fa1d126\",\"699f281ed6394e8298c0a859beed9dab\",\"dbe35bab00694b94a36dc223f2962e48\",\"f5c38eedbd764af9977379a97fd190d6\",\"a350bd4c656c453b8a31ec9aaf6ab7a7\",\"8b7799bde0e8461d8373cb3bd26be30a\",\"0345aa991e804fe7a6a0d57629813628\",\"327a495e69d34c6d90d5fec9d9379f19\",\"768c9023e0d84d448c8bba1d85f4a7a7\",\"dd8fee6968344a57a81c69815ff4f895\",\"b7bd25ec2eda4a8cafb3fdcdcf8d8c7f\",\"055be164f8aa4d58bd3f119773610cc8\",\"a51cacf68b6f4aab99358627d468b5e5\",\"7d86e774ecd5402785b36f3df23fa021\",\"93f2db3fd997478ea288936f7650fab9\",\"e114ef3d9ee04e069dce2edc992ab427\",\"bb74160afbfd431f94f19c037cf7b2fe\",\"3ea4939957914a7185376122e9712d0c\",\"48e1babbdebd439db80a2e4ab02aa94e\",\"815c736fde1c4abcbd483f18c880195e\",\"9450b2bae2ad44658259b4c70013bf75\",\"e3daa75408bb420c80e23666723eb583\",\"1776d4c2f2064ceb87804bbeced740d7\",\"d02e89749728498a9b9378e7b0982bb4\",\"48f5143f5a944443a908124030737d2b\",\"37ca2b3a29b6436a8052047f74b4db9e\",\"5e0885e627d942feb959db3119dd4c2c\",\"9c5a72c2a6e34bfaaabf327cf8c1e097\",\"7168e3cea988430a9952d83d30024368\",\"a782a329e3d24ca98cb52db671ad22cd\",\"11bfa399fb10473c8b651d5b1f4d463f\",\"215b933c62424c72aaeb5a32131d22ff\",\"b17ad659a16d43a4b3da23058ad643d3\",\"45c6e664f95044d9ac054c58262d21ee\",\"18d1d6b305f24d1bb20554f0c07c31e4\",\"aa7747bb4d14451b9310b6fd6f0710fe\",\"f420bbc41591406e8a7179454ad9c542\",\"d14ef0b11e6d45f8b5dd55a17fee186e\",\"95f564dd663d45a0aa39d0d8f653f49b\",\"207571f60d85482b8a7584b231177ead\",\"315bf4f6db924481a31d07c0ff7e5216\",\"61c88bab803842db8daf646c854189cc\",\"e043c5c888f146d590d4bf475f3dcc5f\",\"9d0775edb24d45bb926347f7fba62819\",\"d511fa5fe18b40aabe99e07b2712ed41\",\"c84e29c5d24244bb9d330c52e7863ecb\",\"8116dea6761f494ca2651771d0e2a5ec\",\"2be25ff99cb9499fb9cf3cd784b4511a\",\"98bc36ebc0474f3598cd2b70ca27ce28\",\"66bfeba897a74f179a9df447e69bf8b0\",\"c45ff8f133f64d6bade62648aba870d5\",\"d74cd5d864c84fe6adf3de156169f78e\",\"e58ddde1834b4e1c91d94a9cd821950f\"]},\"id\":\"8ydI1B-CmkyE\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625402136464,\"user_tz\":-180,\"elapsed\":73498,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"ca81bb2b-4f46-4d81-a618-58b9c7a9f146\"},\"source\":[\"import tensorflow_hub as hub \\n\",\"use_model = hub.load(\\\"https://tfhub.dev/google/universal-sentence-encoder/4\\\") \\n\",\"from sentence_transformers import SentenceTransformer \\n\",\"distilroberta = SentenceTransformer('stsb-distilroberta-base-v2') \"],\"execution_count\":6,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"INFO:absl:Using /tmp/tfhub_modules to cache modules.\\n\",\"INFO:absl:Downloading TF-Hub Module 'https://tfhub.dev/google/universal-sentence-encoder/4'.\\n\",\"INFO:absl:Downloaded https://tfhub.dev/google/universal-sentence-encoder/4, Total size: 987.47MB\\n\",\"INFO:absl:Downloaded TF-Hub Module 'https://tfhub.dev/google/universal-sentence-encoder/4'.\\n\"],\"name\":\"stderr\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"0f8f4498f4634c9a8b9e9704de7c79ac\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1093.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"f8f879976be74cd3bcacbde604b0b6fb\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=3690.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"a005459c6a104a5f908ac2ce29246328\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=680.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"c5cd911f7ccd4863adfe33ba88eabfed\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=122.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"44049c5d2215427d863d693903243748\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=456356.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"42728f159d244b7a97a1a0c637df1a73\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=229.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"b023f1cc805a4baf970fed4727c7041d\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=328515953.0, style=ProgressStyle(descri…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"8b7799bde0e8461d8373cb3bd26be30a\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=52.0, style=ProgressStyle(description_w…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"7d86e774ecd5402785b36f3df23fa021\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=239.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"e3daa75408bb420c80e23666723eb583\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1355881.0, style=ProgressStyle(descript…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"a782a329e3d24ca98cb52db671ad22cd\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1117.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"d14ef0b11e6d45f8b5dd55a17fee186e\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=798293.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"c84e29c5d24244bb9d330c52e7863ecb\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=190.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"AlVOC2V6mo4K\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625402139948,\"user_tz\":-180,\"elapsed\":403,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"import tensorflow as tf \\n\",\"import math \\n\",\"def use_sts_benchmark(batch): \\n\",\"  sts_encode1 = tf.nn.l2_normalize(use_model(tf.constant(batch['sentence1'])),axis=1) \\n\",\"  sts_encode2 = tf.nn.l2_normalize(use_model(tf.constant(batch['sentence2'])),axis=1) \\n\",\"  cosine_similarities = tf.reduce_sum(tf.multiply(sts_encode1,sts_encode2),axis=1) \\n\",\"  clip_cosine_similarities = tf.clip_by_value(cosine_similarities,-1.0,1.0)\\n\",\"  scores = 1.0 - tf.acos(clip_cosine_similarities) / math.pi \\n\",\"  return scores \"],\"execution_count\":7,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"pEAtoWYdnGKp\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625402141696,\"user_tz\":-180,\"elapsed\":2,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"def roberta_sts_benchmark(batch): \\n\",\"  sts_encode1 = tf.nn.l2_normalize(distilroberta.encode(batch['sentence1']),axis=1) \\n\",\"  sts_encode2 = tf.nn.l2_normalize(distilroberta.encode(batch['sentence2']),axis=1) \\n\",\"  cosine_similarities = tf.reduce_sum(tf.multiply(sts_encode1,sts_encode2),axis=1) \\n\",\"  clip_cosine_similarities = tf.clip_by_value(cosine_similarities,-1.0,1.0) \\n\",\"  scores = 1.0 - tf.acos(clip_cosine_similarities) / math.pi \\n\",\"  return scores \"],\"execution_count\":8,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"I35jnu9-nLie\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625402153435,\"user_tz\":-180,\"elapsed\":9739,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"use_results = use_sts_benchmark(stsb['validation']) \\n\",\"distilroberta_results = roberta_sts_benchmark(stsb['validation']) \"],\"execution_count\":9,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"2tdE8lZ-pvGb\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625402156310,\"user_tz\":-180,\"elapsed\":590,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"references = [item['label'] for item in stsb['validation']]\"],\"execution_count\":10,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"H9aIzRdXnNdC\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625402158913,\"user_tz\":-180,\"elapsed\":7,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"results = { \\n\",\"      \\\"USE\\\":stsb_metric.compute( \\n\",\"                predictions=use_results, \\n\",\"                references=references), \\n\",\"      \\\"DistillRoberta\\\":stsb_metric.compute( \\n\",\"                predictions=distilroberta_results, \\n\",\"                references=references) \\n\",\"} \"],\"execution_count\":11,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":111},\"id\":\"wH_ISTcnnPY9\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625402160770,\"user_tz\":-180,\"elapsed\":24,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"fc59b010-767b-45bd-83ea-59464563eb82\"},\"source\":[\"import pandas as pd \\n\",\"pd.DataFrame(results) \"],\"execution_count\":12,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>USE</th>\\n\",\"      <th>DistillRoberta</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>pearson</th>\\n\",\"      <td>0.810302</td>\\n\",\"      <td>0.888461</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>spearmanr</th>\\n\",\"      <td>0.808917</td>\\n\",\"      <td>0.889246</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"                USE  DistillRoberta\\n\",\"pearson    0.810302        0.888461\\n\",\"spearmanr  0.808917        0.889246\"]},\"metadata\":{\"tags\":[]},\"execution_count\":12}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"-KgfMxCgpBzS\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625402163343,\"user_tz\":-180,\"elapsed\":9,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":12,\"outputs\":[]}]}"
  },
  {
    "path": "CH07/CH07b_Using_BART_for_zero_shot_learning.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH07b_Using_BART_for_zero_shot_learning.ipynb\",\"provenance\":[],\"authorship_tag\":\"ABX9TyNXy3agCfVva4GmxURx9kRr\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"},\"accelerator\":\"GPU\"},\"cells\":[{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"nW3mGrSWBsbv\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625343937339,\"user_tz\":-180,\"elapsed\":2760,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"e6d25990-76e6-40e3-821c-ed966dcb285f\"},\"source\":[\"!pip install transformers[sentencepiece]\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: transformers[sentencepiece] in /usr/local/lib/python3.7/dist-packages (4.8.2)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (20.9)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (2019.12.20)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (4.5.0)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (3.0.12)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (4.41.1)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (3.13)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (0.10.3)\\n\",\"Requirement already satisfied: huggingface-hub==0.0.12 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (0.0.12)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (2.23.0)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (0.0.45)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (1.19.5)\\n\",\"Requirement already satisfied: protobuf; extra == \\\"sentencepiece\\\" in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (3.12.4)\\n\",\"Requirement already satisfied: sentencepiece==0.1.91; extra == \\\"sentencepiece\\\" in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (0.1.91)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers[sentencepiece]) (2.4.7)\\n\",\"Requirement already satisfied: typing-extensions>=3.6.4; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers[sentencepiece]) (3.7.4.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers[sentencepiece]) (3.4.1)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers[sentencepiece]) (3.0.4)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers[sentencepiece]) (1.24.3)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers[sentencepiece]) (2021.5.30)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers[sentencepiece]) (2.10)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers[sentencepiece]) (7.1.2)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers[sentencepiece]) (1.15.0)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers[sentencepiece]) (1.0.1)\\n\",\"Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from protobuf; extra == \\\"sentencepiece\\\"->transformers[sentencepiece]) (57.0.0)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"YtDAWQJnBegn\"},\"source\":[\"## BART zero-shot Text Classification\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":175},\"id\":\"4HZPHyA-CEsb\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625343952712,\"user_tz\":-180,\"elapsed\":11836,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"673b2271-0ce4-4554-eb81-a865420890f3\"},\"source\":[\"from transformers import pipeline \\n\",\"import pandas as pd \\n\",\"classifier = pipeline(\\\"zero-shot-classification\\\", \\n\",\"                      model=\\\"facebook/bart-large-mnli\\\") \\n\",\"sequence_to_classify = \\\"one day I will see the world\\\" \\n\",\"candidate_labels = ['travel', \\n\",\"                    'cooking', \\n\",\"                    'dancing', \\n\",\"                    'exploration'] \\n\",\"result = classifier(sequence_to_classify, candidate_labels) \\n\",\"pd.DataFrame(result)\"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>sequence</th>\\n\",\"      <th>labels</th>\\n\",\"      <th>scores</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>one day I will see the world</td>\\n\",\"      <td>travel</td>\\n\",\"      <td>0.795756</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>one day I will see the world</td>\\n\",\"      <td>exploration</td>\\n\",\"      <td>0.199332</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>one day I will see the world</td>\\n\",\"      <td>dancing</td>\\n\",\"      <td>0.002621</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>one day I will see the world</td>\\n\",\"      <td>cooking</td>\\n\",\"      <td>0.002291</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"                       sequence       labels    scores\\n\",\"0  one day I will see the world       travel  0.795756\\n\",\"1  one day I will see the world  exploration  0.199332\\n\",\"2  one day I will see the world      dancing  0.002621\\n\",\"3  one day I will see the world      cooking  0.002291\"]},\"metadata\":{\"tags\":[]},\"execution_count\":2}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":175},\"id\":\"GnRsPkJOCJYF\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625343956133,\"user_tz\":-180,\"elapsed\":1343,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"6193593c-79f2-402c-db07-613b532387e3\"},\"source\":[\"result = classifier(sequence_to_classify,  \\n\",\"                      candidate_labels,  \\n\",\"                      multi_label=True) \\n\",\"pd.DataFrame(result) \"],\"execution_count\":3,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>sequence</th>\\n\",\"      <th>labels</th>\\n\",\"      <th>scores</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>one day I will see the world</td>\\n\",\"      <td>travel</td>\\n\",\"      <td>0.994511</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>one day I will see the world</td>\\n\",\"      <td>exploration</td>\\n\",\"      <td>0.938389</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>one day I will see the world</td>\\n\",\"      <td>dancing</td>\\n\",\"      <td>0.005706</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>one day I will see the world</td>\\n\",\"      <td>cooking</td>\\n\",\"      <td>0.001819</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"                       sequence       labels    scores\\n\",\"0  one day I will see the world       travel  0.994511\\n\",\"1  one day I will see the world  exploration  0.938389\\n\",\"2  one day I will see the world      dancing  0.005706\\n\",\"3  one day I will see the world      cooking  0.001819\"]},\"metadata\":{\"tags\":[]},\"execution_count\":3}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"VCfmUiUgCT6d\"},\"source\":[\"## BART no pipeline\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"t-JOm5DFCe3_\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625343968616,\"user_tz\":-180,\"elapsed\":7737,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from transformers import AutoModelForSequenceClassification, AutoTokenizer \\n\",\"\\n\",\"nli_model = AutoModelForSequenceClassification.from_pretrained(\\\"facebook/bart-large-mnli\\\") \\n\",\"tokenizer = AutoTokenizer.from_pretrained(\\\"facebook/bart-large-mnli\\\") \"],\"execution_count\":4,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"AK56LSGMCyB9\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625343969797,\"user_tz\":-180,\"elapsed\":10,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"premise = \\\"one day I will see the world\\\" \\n\",\"label = \\\"travel\\\" \\n\",\"hypothesis = f'This example is {label}.' \"],\"execution_count\":5,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"CNr_tcIhC1mH\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625343971408,\"user_tz\":-180,\"elapsed\":341,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"9458677c-2568-4cff-dd35-e608bd7d0adc\"},\"source\":[\"x = tokenizer.encode( \\n\",\"    premise, \\n\",\"    hypothesis, \\n\",\"    return_tensors='pt', \\n\",\"    truncation_strategy='only_first') \"],\"execution_count\":6,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"/usr/local/lib/python3.7/dist-packages/transformers/tokenization_utils_base.py:2160: FutureWarning: The `truncation_strategy` argument is deprecated and will be removed in a future version, use `truncation=True` to truncate examples to a max length. You can give a specific length with `max_length` (e.g. `max_length=45`) or leave max_length to None to truncate to the maximal input size of the model (e.g. 512 for Bert).  If you have pairs of inputs, you can give a specific truncation strategy selected among `truncation='only_first'` (will only truncate the first sentence in the pairs) `truncation='only_second'` (will only truncate the second sentence in the pairs) or `truncation='longest_first'` (will iteratively remove tokens from the longest sentence in the pairs).\\n\",\"  FutureWarning,\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"f8-zTXeHC3H5\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625343973798,\"user_tz\":-180,\"elapsed\":570,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"f61dd131-e420-4934-bb62-232937259af5\"},\"source\":[\"logits = nli_model(x)[0] \\n\",\"entail_contradiction_logits = logits[:,[0,2]] \\n\",\"probs = entail_contradiction_logits.softmax(dim=1) \\n\",\"prob_label_is_true = probs[:,1] \\n\",\"print(prob_label_is_true) \"],\"execution_count\":7,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"tensor([0.9945], grad_fn=<SelectBackward>)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"W2KPslP0C3iL\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH07/CH07c_Semantic_similarity_experiment_with_FLAIR.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"accelerator\":\"GPU\",\"colab\":{\"name\":\"CH07c_Semantic_similarity_experiment_with_FLAIR.ipynb\",\"provenance\":[],\"collapsed_sections\":[],\"machine_shape\":\"hm\",\"authorship_tag\":\"ABX9TyOMchuwzOkIOmSQ6xTF/xi4\"},\"kernelspec\":{\"display_name\":\"Python 3\",\"name\":\"python3\"},\"language_info\":{\"name\":\"python\"}},\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"blVeQzeMhsUj\"},\"source\":[\"# CH07c Semantic similarity experiment with FLAIR\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"wEY40_YlhrK9\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403147126,\"user_tz\":-180,\"elapsed\":2880,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"e87a3edf-3619-4ea3-f50f-12864134c227\"},\"source\":[\"!pip install flair\"],\"execution_count\":25,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: flair in /usr/local/lib/python3.7/dist-packages (0.8.0.post1)\\n\",\"Requirement already satisfied: mpld3==0.3 in /usr/local/lib/python3.7/dist-packages (from flair) (0.3)\\n\",\"Requirement already satisfied: tabulate in /usr/local/lib/python3.7/dist-packages (from flair) (0.8.9)\\n\",\"Requirement already satisfied: janome in /usr/local/lib/python3.7/dist-packages (from flair) (0.4.1)\\n\",\"Requirement already satisfied: scikit-learn>=0.21.3 in /usr/local/lib/python3.7/dist-packages (from flair) (0.22.2.post1)\\n\",\"Requirement already satisfied: lxml in /usr/local/lib/python3.7/dist-packages (from flair) (4.2.6)\\n\",\"Requirement already satisfied: bpemb>=0.3.2 in /usr/local/lib/python3.7/dist-packages (from flair) (0.3.3)\\n\",\"Requirement already satisfied: segtok>=1.5.7 in /usr/local/lib/python3.7/dist-packages (from flair) (1.5.10)\\n\",\"Requirement already satisfied: regex in /usr/local/lib/python3.7/dist-packages (from flair) (2019.12.20)\\n\",\"Requirement already satisfied: huggingface-hub in /usr/local/lib/python3.7/dist-packages (from flair) (0.0.13)\\n\",\"Requirement already satisfied: langdetect in /usr/local/lib/python3.7/dist-packages (from flair) (1.0.9)\\n\",\"Requirement already satisfied: sqlitedict>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from flair) (1.7.0)\\n\",\"Requirement already satisfied: gensim<=3.8.3,>=3.4.0 in /usr/local/lib/python3.7/dist-packages (from flair) (3.6.0)\\n\",\"Requirement already satisfied: hyperopt>=0.1.1 in /usr/local/lib/python3.7/dist-packages (from flair) (0.1.2)\\n\",\"Requirement already satisfied: sentencepiece==0.1.95 in /usr/local/lib/python3.7/dist-packages (from flair) (0.1.95)\\n\",\"Requirement already satisfied: gdown==3.12.2 in /usr/local/lib/python3.7/dist-packages (from flair) (3.12.2)\\n\",\"Requirement already satisfied: numpy<1.20.0 in /usr/local/lib/python3.7/dist-packages (from flair) (1.19.5)\\n\",\"Requirement already satisfied: transformers>=4.0.0 in /usr/local/lib/python3.7/dist-packages (from flair) (4.8.2)\\n\",\"Requirement already satisfied: ftfy in /usr/local/lib/python3.7/dist-packages (from flair) (6.0.3)\\n\",\"Requirement already satisfied: deprecated>=1.2.4 in /usr/local/lib/python3.7/dist-packages (from flair) (1.2.12)\\n\",\"Requirement already satisfied: konoha<5.0.0,>=4.0.0 in /usr/local/lib/python3.7/dist-packages (from flair) (4.6.5)\\n\",\"Requirement already satisfied: tqdm>=4.26.0 in /usr/local/lib/python3.7/dist-packages (from flair) (4.41.1)\\n\",\"Requirement already satisfied: torch<=1.7.1,>=1.5.0 in /usr/local/lib/python3.7/dist-packages (from flair) (1.7.1)\\n\",\"Requirement already satisfied: matplotlib>=2.2.3 in /usr/local/lib/python3.7/dist-packages (from flair) (3.2.2)\\n\",\"Requirement already satisfied: python-dateutil>=2.6.1 in /usr/local/lib/python3.7/dist-packages (from flair) (2.8.1)\\n\",\"Requirement already satisfied: scipy>=0.17.0 in /usr/local/lib/python3.7/dist-packages (from scikit-learn>=0.21.3->flair) (1.4.1)\\n\",\"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from scikit-learn>=0.21.3->flair) (1.0.1)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from bpemb>=0.3.2->flair) (2.23.0)\\n\",\"Requirement already satisfied: packaging>=20.9 in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->flair) (20.9)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->flair) (3.10.1)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->flair) (3.0.12)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->flair) (3.7.4.3)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from langdetect->flair) (1.15.0)\\n\",\"Requirement already satisfied: smart-open>=1.2.1 in /usr/local/lib/python3.7/dist-packages (from gensim<=3.8.3,>=3.4.0->flair) (5.1.0)\\n\",\"Requirement already satisfied: future in /usr/local/lib/python3.7/dist-packages (from hyperopt>=0.1.1->flair) (0.16.0)\\n\",\"Requirement already satisfied: networkx in /usr/local/lib/python3.7/dist-packages (from hyperopt>=0.1.1->flair) (2.5.1)\\n\",\"Requirement already satisfied: pymongo in /usr/local/lib/python3.7/dist-packages (from hyperopt>=0.1.1->flair) (3.11.4)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers>=4.0.0->flair) (3.13)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers>=4.0.0->flair) (0.10.3)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers>=4.0.0->flair) (0.0.45)\\n\",\"Requirement already satisfied: wcwidth in /usr/local/lib/python3.7/dist-packages (from ftfy->flair) (0.2.5)\\n\",\"Requirement already satisfied: wrapt<2,>=1.10 in /usr/local/lib/python3.7/dist-packages (from deprecated>=1.2.4->flair) (1.12.1)\\n\",\"Requirement already satisfied: overrides<4.0.0,>=3.0.0 in /usr/local/lib/python3.7/dist-packages (from konoha<5.0.0,>=4.0.0->flair) (3.1.0)\\n\",\"Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib>=2.2.3->flair) (2.4.7)\\n\",\"Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.7/dist-packages (from matplotlib>=2.2.3->flair) (0.10.0)\\n\",\"Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.7/dist-packages (from matplotlib>=2.2.3->flair) (1.3.1)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->bpemb>=0.3.2->flair) (2.10)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->bpemb>=0.3.2->flair) (3.0.4)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->bpemb>=0.3.2->flair) (2021.5.30)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->bpemb>=0.3.2->flair) (1.24.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->huggingface-hub->flair) (3.4.1)\\n\",\"Requirement already satisfied: decorator<5,>=4.3 in /usr/local/lib/python3.7/dist-packages (from networkx->hyperopt>=0.1.1->flair) (4.4.2)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers>=4.0.0->flair) (7.1.2)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"SXe1we7j1Pbm\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403148380,\"user_tz\":-180,\"elapsed\":5,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"import pandas as pd\"],\"execution_count\":26,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":204},\"id\":\"wGdAEkpOO-hZ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403150028,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"83da0fd9-9e68-4f4e-eb7f-42427675fc40\"},\"source\":[\"similar=[(\\\"A black dog walking beside a pool.\\\",\\\"A black dog is walking along the side of a pool.\\\"),\\n\",\"(\\\"A blonde woman looks for medical supplies for work in a suitcase.\\t\\\",\\\" The blond woman is searching for medical supplies in a suitcase.\\\"),\\n\",\"(\\\"A doubly decker red bus driving down the road.\\\",\\\"A red double decker bus driving down a street.\\\"),\\n\",\"(\\\"There is a black dog jumping into a swimming pool.\\\",\\\"A black dog is leaping into a swimming pool.\\\"),\\n\",\"(\\\"The man used a sword to slice a plastic bottle.\\t\\\",\\\"A man sliced a plastic bottle with a sword.\\\")]\\n\",\"pd.DataFrame(similar, columns=[\\\"sen1\\\", \\\"sen2\\\"])\\n\"],\"execution_count\":27,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>sen1</th>\\n\",\"      <th>sen2</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>A black dog walking beside a pool.</td>\\n\",\"      <td>A black dog is walking along the side of a pool.</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>A blonde woman looks for medical supplies for ...</td>\\n\",\"      <td>The blond woman is searching for medical supp...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>A doubly decker red bus driving down the road.</td>\\n\",\"      <td>A red double decker bus driving down a street.</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>There is a black dog jumping into a swimming p...</td>\\n\",\"      <td>A black dog is leaping into a swimming pool.</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>The man used a sword to slice a plastic bottle.\\\\t</td>\\n\",\"      <td>A man sliced a plastic bottle with a sword.</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"                                                sen1                                               sen2\\n\",\"0                 A black dog walking beside a pool.   A black dog is walking along the side of a pool.\\n\",\"1  A blonde woman looks for medical supplies for ...   The blond woman is searching for medical supp...\\n\",\"2     A doubly decker red bus driving down the road.     A red double decker bus driving down a street.\\n\",\"3  There is a black dog jumping into a swimming p...       A black dog is leaping into a swimming pool.\\n\",\"4  The man used a sword to slice a plastic bottle.\\\\t        A man sliced a plastic bottle with a sword.\"]},\"metadata\":{\"tags\":[]},\"execution_count\":27}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"HbzjJgGG1QXS\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403152138,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":27,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"G4oFOJRt1Uea\"},\"source\":[\"\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":204},\"id\":\"41H-Pr2F1TZJ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403154599,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"0ddf88f1-cfa3-4c1e-e053-d3e37f7607bd\"},\"source\":[\"import pandas as pd\\n\",\"dissimilar= [(\\\"A little girl and boy are reading books. \\\", \\\"An older child is playing with a doll while gazing out the window.\\\"),\\n\",\"(\\\"Two horses standing in a field with trees in the background.\\\", \\\"A black and white bird on a body of water with grass in the background.\\\"),\\n\",\"(\\\"Two people are walking by the ocean.\\\" , \\\"Two men in fleeces and hats looking at the camera.\\\"),\\n\",\"(\\\"A cat is pouncing on a trampoline.\\\",\\\"A man is slicing a tomato.\\\"),\\n\",\"(\\\"A woman is riding on a horse.\\\",\\\"A man is turning over tables in anger.\\\")]\\n\",\"pd.DataFrame(dissimilar, columns=[\\\"sen1\\\", \\\"sen2\\\"])\"],\"execution_count\":28,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>sen1</th>\\n\",\"      <th>sen2</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>A little girl and boy are reading books.</td>\\n\",\"      <td>An older child is playing with a doll while ga...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>Two horses standing in a field with trees in t...</td>\\n\",\"      <td>A black and white bird on a body of water with...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>Two people are walking by the ocean.</td>\\n\",\"      <td>Two men in fleeces and hats looking at the cam...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>A cat is pouncing on a trampoline.</td>\\n\",\"      <td>A man is slicing a tomato.</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>A woman is riding on a horse.</td>\\n\",\"      <td>A man is turning over tables in anger.</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"                                                sen1                                               sen2\\n\",\"0          A little girl and boy are reading books.   An older child is playing with a doll while ga...\\n\",\"1  Two horses standing in a field with trees in t...  A black and white bird on a body of water with...\\n\",\"2               Two people are walking by the ocean.  Two men in fleeces and hats looking at the cam...\\n\",\"3                 A cat is pouncing on a trampoline.                         A man is slicing a tomato.\\n\",\"4                      A woman is riding on a horse.             A man is turning over tables in anger.\"]},\"metadata\":{\"tags\":[]},\"execution_count\":28}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"YRNFJ2-z1ey9\"},\"source\":[\"\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"z5GJ6v52jTan\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403157282,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"import torch, numpy as np\\n\",\"def sim(s1,s2):\\n\",\"  # cosine similarity function outputs in the range 0-1\\n\",\"  s1=s1.embedding.unsqueeze(0)\\n\",\"  s2=s2.embedding.unsqueeze(0)\\n\",\"  sim=torch.cosine_similarity(s1,s2).item() \\n\",\"  return np.round(sim,2)\\n\",\"\\n\",\"def evaluate(embeddings, myPairList):\\n\",\"  # it evaluates embeddings for a given list of sentence pair\\n\",\"  scores=[]\\n\",\"  for s1, s2 in myPairList:\\n\",\"    s1,s2=Sentence(s1), Sentence(s2)\\n\",\"    embeddings.embed(s1)\\n\",\"    embeddings.embed(s2)\\n\",\"    score=sim(s1,s2)\\n\",\"    scores.append(score)\\n\",\"  return scores, np.round(np.mean(scores),2)\"],\"execution_count\":29,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"Ibsr4nTen_BR\"},\"source\":[\"## Document Pool Embedding\\n\",\"\\n\",\"The Document Pool embeddings apply mean pooling operation over all word where the average of all word embeddings in a sentence is computed to obtain sentence embedding.\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"oAIyv95UmL-7\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403161823,\"user_tz\":-180,\"elapsed\":1312,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from flair.data import Sentence\\n\",\"from flair.embeddings import WordEmbeddings, DocumentPoolEmbeddings\\n\",\"glove_embedding = WordEmbeddings('glove')\\n\",\"glove_pool_embeddings = DocumentPoolEmbeddings([glove_embedding])\"],\"execution_count\":30,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"JWX30eqA2mho\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403164125,\"user_tz\":-180,\"elapsed\":404,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"9a918726-d02d-4e7c-86a3-b5a24550dada\"},\"source\":[\"evaluate(glove_pool_embeddings, similar)\"],\"execution_count\":31,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"([0.97, 0.99, 0.97, 0.99, 0.98], 0.98)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":31}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"AU-nmO-uS3o0\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403166680,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"89a23743-1839-4663-9f52-dedf148d3f2a\"},\"source\":[\"evaluate(glove_pool_embeddings, dissimilar)\"],\"execution_count\":32,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"([0.94, 0.97, 0.94, 0.92, 0.93], 0.94)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":32}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"s3XPI1-qS8Ll\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403166681,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":32,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"ntpiluQbosoA\"},\"source\":[\"## RNN-based Document Embeddings\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"G97IU2bsgW5q\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403169747,\"user_tz\":-180,\"elapsed\":10,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from flair.embeddings import WordEmbeddings, DocumentRNNEmbeddings\\n\",\"gru_embeddings = DocumentRNNEmbeddings([glove_embedding])\"],\"execution_count\":33,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"41VzAdxeWGlk\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403169747,\"user_tz\":-180,\"elapsed\":9,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"c92f4a24-c0e5-43d8-91e3-7bd40c047e9f\"},\"source\":[\"evaluate(gru_embeddings, similar)\"],\"execution_count\":34,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"([0.99, 1.0, 0.95, 1.0, 0.91], 0.97)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":34}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"-bysX3GOg2nD\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403169748,\"user_tz\":-180,\"elapsed\":8,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"7e202928-b26e-4adc-a69f-3706fcbc24fd\"},\"source\":[\"evaluate(gru_embeddings, dissimilar)\"],\"execution_count\":35,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"([0.87, 1.0, 0.92, 0.92, 0.88], 0.92)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":35}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"lJ1LpousVVQO\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403170494,\"user_tz\":-180,\"elapsed\":12,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":35,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"ARpG-ZKLPRq0\"},\"source\":[\"## Transformer-based BERT Embeddings\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"ZbWdvctrPUMi\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403177175,\"user_tz\":-180,\"elapsed\":4771,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"575721f2-b0a5-43df-e279-307d3c00c77a\"},\"source\":[\"from flair.embeddings import TransformerDocumentEmbeddings\\n\",\"from flair.data import Sentence\\n\",\"bert_embeddings = TransformerDocumentEmbeddings('bert-base-uncased')\"],\"execution_count\":36,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Some weights of the model checkpoint at bert-base-uncased were not used when initializing BertModel: ['cls.predictions.transform.dense.weight', 'cls.seq_relationship.weight', 'cls.predictions.transform.LayerNorm.bias', 'cls.predictions.transform.dense.bias', 'cls.predictions.bias', 'cls.predictions.decoder.weight', 'cls.predictions.transform.LayerNorm.weight', 'cls.seq_relationship.bias']\\n\",\"- This IS expected if you are initializing BertModel from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing BertModel from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"aJDBBDUx46nv\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403177176,\"user_tz\":-180,\"elapsed\":15,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"0839ae73-8fba-4af0-a48d-fe560c7f158a\"},\"source\":[\"evaluate(bert_embeddings, similar)\"],\"execution_count\":37,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"([0.85, 0.9, 0.96, 0.91, 0.89], 0.9)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":37}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"P8pz5rWNPeIz\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403177836,\"user_tz\":-180,\"elapsed\":13,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"cc8247ff-63c9-45b7-c165-da93d17b1142\"},\"source\":[\"evaluate(bert_embeddings, dissimilar)\"],\"execution_count\":38,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"([0.93, 0.94, 0.86, 0.93, 0.92], 0.92)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":38}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"qg2ttaY5VgBH\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403177836,\"user_tz\":-180,\"elapsed\":10,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":38,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"5ZWU2ci9d5PH\"},\"source\":[\"## SentenceBERT\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"hxtPMb5Gf0Co\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403180441,\"user_tz\":-180,\"elapsed\":2614,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"954fc1fa-aec7-44c4-c0ea-1a55c935af86\"},\"source\":[\"!pip install sentence-transformers\"],\"execution_count\":39,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: sentence-transformers in /usr/local/lib/python3.7/dist-packages (2.0.0)\\n\",\"Requirement already satisfied: nltk in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (3.2.5)\\n\",\"Requirement already satisfied: scikit-learn in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.22.2.post1)\\n\",\"Requirement already satisfied: huggingface-hub in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.0.13)\\n\",\"Requirement already satisfied: torchvision in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.10.0+cu102)\\n\",\"Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.4.1)\\n\",\"Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.19.5)\\n\",\"Requirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (4.41.1)\\n\",\"Requirement already satisfied: sentencepiece in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.1.95)\\n\",\"Requirement already satisfied: transformers<5.0.0,>=4.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (4.8.2)\\n\",\"Requirement already satisfied: torch>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.7.1)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from nltk->sentence-transformers) (1.15.0)\\n\",\"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from scikit-learn->sentence-transformers) (1.0.1)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (3.10.1)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (2.23.0)\\n\",\"Requirement already satisfied: packaging>=20.9 in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (20.9)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (3.0.12)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: pillow>=5.3.0 in /usr/local/lib/python3.7/dist-packages (from torchvision->sentence-transformers) (7.1.2)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (0.10.3)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (2019.12.20)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (0.0.45)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (3.13)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->huggingface-hub->sentence-transformers) (3.4.1)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers) (3.0.4)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers) (2.10)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers) (2021.5.30)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers) (1.24.3)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging>=20.9->huggingface-hub->sentence-transformers) (2.4.7)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers<5.0.0,>=4.6.0->sentence-transformers) (7.1.2)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"e9Bd0pkfd-v2\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403181044,\"user_tz\":-180,\"elapsed\":607,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from flair.data import Sentence\\n\",\"from flair.embeddings import SentenceTransformerDocumentEmbeddings\\n\",\"# init embedding\\n\",\"sbert_embeddings = SentenceTransformerDocumentEmbeddings('bert-base-nli-mean-tokens')\"],\"execution_count\":40,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"Ah_EtHne5b8M\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403183147,\"user_tz\":-180,\"elapsed\":520,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"753bb5c7-d3a0-4ee8-f84e-1d41aec1a208\"},\"source\":[\"evaluate(sbert_embeddings, similar)\"],\"execution_count\":41,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"([0.98, 0.95, 0.96, 0.99, 0.98], 0.97)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":41}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"JCatiSukeFRj\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403185126,\"user_tz\":-180,\"elapsed\":543,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"0848d568-26e4-42ce-ee6c-3d64d9919e33\"},\"source\":[\"evaluate(sbert_embeddings, dissimilar)\"],\"execution_count\":42,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"([0.48, 0.41, 0.19, -0.05, 0.0], 0.21)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":42}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"g33DMFPuV3No\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403186977,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"# Tricky pairs\"],\"execution_count\":43,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"8nKc5WZpoiow\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403187567,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"tricky_pairs=[(\\\"An elephant is bigger than a lion\\\",\\\"A lion is bigger than an elephant\\\") ,(\\\"the cat sat on the mat\\\",\\\"the mat sat on the cat\\\")]\"],\"execution_count\":44,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"upbn4myNYftm\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403190138,\"user_tz\":-180,\"elapsed\":627,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"8e298b4d-27aa-4eca-eef3-72f92d7af53e\"},\"source\":[\"evaluate(glove_pool_embeddings, tricky_pairs)\"],\"execution_count\":45,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"([1.0, 1.0], 1.0)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":45}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"FyY82KodYu6c\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403191793,\"user_tz\":-180,\"elapsed\":11,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"4e961202-3ae2-44ff-c38d-39d154ab782b\"},\"source\":[\"evaluate(gru_embeddings, tricky_pairs)\"],\"execution_count\":46,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"([0.91, 0.67], 0.79)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":46}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"f-vy11RRY4gN\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403192742,\"user_tz\":-180,\"elapsed\":488,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"09c4c7ea-d8de-4536-dd57-4b2d3f8da770\"},\"source\":[\"evaluate(bert_embeddings, tricky_pairs)\"],\"execution_count\":47,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"([1.0, 0.98], 0.99)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":47}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"GuHYBnHpY6w-\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403193160,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"d57bf12d-979d-4bb7-a277-419a0f725860\"},\"source\":[\"evaluate(sbert_embeddings, tricky_pairs)\"],\"execution_count\":48,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"([0.93, 0.97], 0.95)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":48}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"EqwrD7nFFn3b\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403195094,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":48,\"outputs\":[]}]}"
  },
  {
    "path": "CH07/CH07d_Text_clustering_with_Sentence-BERT.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"accelerator\":\"GPU\",\"colab\":{\"name\":\"CH07d_Text_clustering_with_Sentence-BERT.ipynb\",\"provenance\":[],\"collapsed_sections\":[]},\"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.8.6\"}},\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"U5Z7paxvmFR_\"},\"source\":[\"# Text Clustering with Sentence-BERT\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"oU1zWENzmXK3\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403894209,\"user_tz\":-180,\"elapsed\":3171,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"325ed669-a072-4714-e284-e7874fd24208\"},\"source\":[\"!pip3 install sentence-transformers\"],\"execution_count\":23,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: sentence-transformers in /usr/local/lib/python3.7/dist-packages (2.0.0)\\n\",\"Requirement already satisfied: huggingface-hub in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.0.13)\\n\",\"Requirement already satisfied: torch>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.9.0+cu102)\\n\",\"Requirement already satisfied: transformers<5.0.0,>=4.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (4.8.2)\\n\",\"Requirement already satisfied: scikit-learn in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.22.2.post1)\\n\",\"Requirement already satisfied: sentencepiece in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.1.96)\\n\",\"Requirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (4.41.1)\\n\",\"Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.4.1)\\n\",\"Requirement already satisfied: torchvision in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.10.0+cu102)\\n\",\"Requirement already satisfied: nltk in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (3.2.5)\\n\",\"Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.21.0)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (4.5.0)\\n\",\"Requirement already satisfied: packaging>=20.9 in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (20.9)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (2.23.0)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (3.0.12)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (0.10.3)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (0.0.45)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (2019.12.20)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (3.13)\\n\",\"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from scikit-learn->sentence-transformers) (1.0.1)\\n\",\"Requirement already satisfied: pillow>=5.3.0 in /usr/local/lib/python3.7/dist-packages (from torchvision->sentence-transformers) (7.1.2)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from nltk->sentence-transformers) (1.15.0)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->huggingface-hub->sentence-transformers) (3.4.1)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging>=20.9->huggingface-hub->sentence-transformers) (2.4.7)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers) (2021.5.30)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers) (2.10)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers) (3.0.4)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers) (1.24.3)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers<5.0.0,>=4.6.0->sentence-transformers) (7.1.2)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"lQvvIQoP7VQ-\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403896677,\"user_tz\":-180,\"elapsed\":2473,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"7651ea1a-48ab-4cee-daff-a7934ad7a0c1\"},\"source\":[\"!pip install datasets\"],\"execution_count\":24,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: datasets in /usr/local/lib/python3.7/dist-packages (1.8.0)\\n\",\"Requirement already satisfied: pyarrow<4.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (3.0.0)\\n\",\"Requirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from datasets) (1.1.5)\\n\",\"Requirement already satisfied: xxhash in /usr/local/lib/python3.7/dist-packages (from datasets) (2.0.2)\\n\",\"Requirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from datasets) (0.3.4)\\n\",\"Requirement already satisfied: huggingface-hub<0.1.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (0.0.13)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from datasets) (4.5.0)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from datasets) (1.21.0)\\n\",\"Requirement already satisfied: fsspec in /usr/local/lib/python3.7/dist-packages (from datasets) (2021.6.1)\\n\",\"Requirement already satisfied: tqdm<4.50.0,>=4.27 in /usr/local/lib/python3.7/dist-packages (from datasets) (4.41.1)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from datasets) (20.9)\\n\",\"Requirement already satisfied: requests>=2.19.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (2.23.0)\\n\",\"Requirement already satisfied: multiprocess in /usr/local/lib/python3.7/dist-packages (from datasets) (0.70.12.2)\\n\",\"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2018.9)\\n\",\"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2.8.1)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub<0.1.0->datasets) (3.7.4.3)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from huggingface-hub<0.1.0->datasets) (3.0.12)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->datasets) (3.4.1)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->datasets) (2.4.7)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (3.0.4)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (2.10)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (1.24.3)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (2021.5.30)\\n\",\"Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.7/dist-packages (from python-dateutil>=2.7.3->pandas->datasets) (1.15.0)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"TkZtCC-QmXK_\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403896678,\"user_tz\":-180,\"elapsed\":7,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"import pandas as pd, numpy as np\\n\",\"import torch, os\\n\",\"from datasets import load_dataset\"],\"execution_count\":25,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"mNL2jnqa5dlE\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403897470,\"user_tz\":-180,\"elapsed\":796,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"d7378faa-6016-4f0f-f9f0-491bc5b1f8f3\"},\"source\":[\"dataset = load_dataset(\\\"amazon_polarity\\\",split=\\\"train\\\")\"],\"execution_count\":26,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Reusing dataset amazon_polarity (/root/.cache/huggingface/datasets/amazon_polarity/amazon_polarity/3.0.0/ac31acedf6cda6bc2aa50d448f48bbad69a3dd8efc607d2ff1a9e65c2476b4c1)\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"jpPHBQjQ2X7D\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403897765,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"cc5d6cb6-fc62-4904-fd2e-40e5f2501fb2\"},\"source\":[\"dataset\"],\"execution_count\":27,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"Dataset({\\n\",\"    features: ['content', 'label', 'title'],\\n\",\"    num_rows: 3600000\\n\",\"})\"]},\"metadata\":{\"tags\":[]},\"execution_count\":27}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"SBgUpNwI8BWS\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403899512,\"user_tz\":-180,\"elapsed\":711,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"6249c546-e2d2-4153-c8e9-7e64ee921d48\"},\"source\":[\"corpus=dataset.shuffle(seed=42)[:10000]['content']\"],\"execution_count\":28,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Loading cached shuffled indices for dataset at /root/.cache/huggingface/datasets/amazon_polarity/amazon_polarity/3.0.0/ac31acedf6cda6bc2aa50d448f48bbad69a3dd8efc607d2ff1a9e65c2476b4c1/cache-ef801afe8232c47a.arrow\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"zmI8AJrfd8oz\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403901140,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":28,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":282},\"id\":\"PpVT5FW18enn\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403903056,\"user_tz\":-180,\"elapsed\":616,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"c9b22f83-2f85-449b-b4b6-a07a7e95f577\"},\"source\":[\"pd.Series([len(e.split()) for e in corpus]).hist()\"],\"execution_count\":29,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"<matplotlib.axes._subplots.AxesSubplot at 0x7f7ccad0f7d0>\"]},\"metadata\":{\"tags\":[]},\"execution_count\":29},{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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\\n\",\"text/plain\":[\"<Figure size 432x288 with 1 Axes>\"]},\"metadata\":{\"tags\":[],\"needs_background\":\"light\"}}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"C4DDDCJO1WC-\"},\"source\":[\"## Model Selection\\n\",\"(source link: https://www.sbert.net/docs/pretrained_models.html)\\n\",\"The best available models for STS are:\\n\",\"\\n\",\"* stsb-mpnet-base-v2\\n\",\"* stsb-roberta-base-v2\\n\",\"* stsb-distilroberta-base-v2\\n\",\"* nli-mpnet-base-v2\\n\",\"* nli-roberta-base-v2 \\n\",\"* nli-distilroberta-base-v2\\n\",\"\\n\",\"Paraphrase Identification Models\\n\",\"* paraphrase-distilroberta-base-v1 - Trained on large scale paraphrase data.\\n\",\"* paraphrase-xlm-r-multilingual-v1 - Multilingual version of paraphrase-distilroberta-base-v1, trained on parallel data for 50+ languages. (Teacher: paraphrase-distilroberta-base-v1, Student: xlm-r-base)\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"EOlthH4MmXLD\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403908229,\"user_tz\":-180,\"elapsed\":1126,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from sentence_transformers import SentenceTransformer\\n\",\"model_path=\\\"paraphrase-distilroberta-base-v1\\\"\\n\",\"#paraphrase-distilroberta-base-v1 - Trained on large scale paraphrase data.\\n\",\"model = SentenceTransformer(model_path)\"],\"execution_count\":30,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"Fk6JIfJFmXLF\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403927050,\"user_tz\":-180,\"elapsed\":17421,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"df9dd1de-2178-484b-f2b5-a2b42c135b2e\"},\"source\":[\"corpus_embeddings = model.encode(corpus)\\n\",\"corpus_embeddings.shape\"],\"execution_count\":31,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"(10000, 768)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":31}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"B0TiT9ZHroS6\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403929520,\"user_tz\":-180,\"elapsed\":324,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":31,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"UtxPV7UWmXLI\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403938193,\"user_tz\":-180,\"elapsed\":8345,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from sklearn.cluster import KMeans\\n\",\"K=5\\n\",\"kmeans = KMeans(n_clusters=5, random_state=0).fit(corpus_embeddings)\"],\"execution_count\":32,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"vI3MEj67mXLJ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403940508,\"user_tz\":-180,\"elapsed\":345,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"8e1f545e-f687-4981-9998-ce1f10f708e2\"},\"source\":[\"import pandas as pd\\n\",\"cls_dist=pd.Series(kmeans.labels_).value_counts()\\n\",\"cls_dist\"],\"execution_count\":33,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"3    2772\\n\",\"4    2089\\n\",\"0    1911\\n\",\"2    1883\\n\",\"1    1345\\n\",\"dtype: int64\"]},\"metadata\":{\"tags\":[]},\"execution_count\":33}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"mYO3CCE6mXLJ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403943399,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":33,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"cn0reLu1mXLK\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403943882,\"user_tz\":-180,\"elapsed\":5,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"import scipy\\n\",\"distances = scipy.spatial.distance.cdist(kmeans.cluster_centers_ , corpus_embeddings)\"],\"execution_count\":34,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"mN6XmsbumXLK\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403944825,\"user_tz\":-180,\"elapsed\":10,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"ca2d5fa7-14af-4201-9634-32f67b2571ba\"},\"source\":[\"centers={}\\n\",\"print(\\\"Cluster\\\", \\\"Size\\\", \\\"Center-idx\\\", \\\"Center-Example\\\", sep=\\\"\\\\t\\\\t\\\")\\n\",\"for i,d in enumerate(distances):\\n\",\"  ind = np.argsort(d, axis=0)[0]\\n\",\"  centers[i]=ind\\n\",\"  print(i,cls_dist[i], ind, corpus[ind] ,sep=\\\"\\\\t\\\\t\\\")\"],\"execution_count\":35,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Cluster\\t\\tSize\\t\\tCenter-idx\\t\\tCenter-Example\\n\",\"0\\t\\t1911\\t\\t5536\\t\\tThe sound quality is not good. I used it once and couldn't take the poor audio. I bought this because the cheaper one I bought previously had poor sound quality, but this more expensive one is no better. Save your money for a radio that comes outfitted with the proper connectors.\\n\",\"1\\t\\t1345\\t\\t3900\\t\\tThis album like many rock/emo albums is good, but there is nothing innovative about it, some very catchy tunes, good singing, nice rhythm. Awesome to listen to. Worth the buy.\\n\",\"2\\t\\t1883\\t\\t204\\t\\tThis DVD looks nice and all but is horrible because it skips and stuff after the first time I watched it. Thumbs down.\\n\",\"3\\t\\t2772\\t\\t1761\\t\\tI read this book a while back and thought it was very interesting. It's a good book to read if your tired of just reading love stories all the time.\\n\",\"4\\t\\t2089\\t\\t1474\\t\\tThe quality of this product is great, easy to clean and fits my sink perfectly.However, I think it is a little bit expensive.\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"cFAZipEn9304\"},\"source\":[\"## Visualization of the cluster points\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"f8k1a5UCHX3j\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403954782,\"user_tz\":-180,\"elapsed\":2878,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"1a1c2222-3b9c-4922-d532-4118e0522a87\"},\"source\":[\"!pip install umap-learn\"],\"execution_count\":36,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: umap-learn in /usr/local/lib/python3.7/dist-packages (0.5.1)\\n\",\"Requirement already satisfied: scipy>=1.0 in /usr/local/lib/python3.7/dist-packages (from umap-learn) (1.4.1)\\n\",\"Requirement already satisfied: numba>=0.49 in /usr/local/lib/python3.7/dist-packages (from umap-learn) (0.51.2)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from umap-learn) (1.21.0)\\n\",\"Requirement already satisfied: pynndescent>=0.5 in /usr/local/lib/python3.7/dist-packages (from umap-learn) (0.5.2)\\n\",\"Requirement already satisfied: scikit-learn>=0.22 in /usr/local/lib/python3.7/dist-packages (from umap-learn) (0.22.2.post1)\\n\",\"Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from numba>=0.49->umap-learn) (57.0.0)\\n\",\"Requirement already satisfied: llvmlite<0.35,>=0.34.0.dev0 in /usr/local/lib/python3.7/dist-packages (from numba>=0.49->umap-learn) (0.34.0)\\n\",\"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from pynndescent>=0.5->umap-learn) (1.0.1)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":504},\"id\":\"Q0LUBO_wuc25\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403983064,\"user_tz\":-180,\"elapsed\":23071,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"9e502add-5472-4537-98d7-db44548bc803\"},\"source\":[\"import matplotlib.pyplot as plt\\n\",\"import umap\\n\",\"X = umap.UMAP(n_components=2, min_dist=0.0).fit_transform(corpus_embeddings)\\n\",\"labels= kmeans.labels_\\n\",\"\\n\",\"fig, ax = plt.subplots(figsize=(12, 8))\\n\",\"plt.scatter(X[:,0], X[:,1], c=labels, s=1, cmap='Paired')\\n\",\"for c in centers:\\n\",\"  plt.text(X[centers[c],0], X[centers[c], 1], \\\"CLS-\\\"+ str(c), fontsize=24) \\n\",\"plt.colorbar()\"],\"execution_count\":37,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"<matplotlib.colorbar.Colorbar at 0x7f7ce6957910>\"]},\"metadata\":{\"tags\":[]},\"execution_count\":37},{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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\\n\",\"text/plain\":[\"<Figure size 864x576 with 2 Axes>\"]},\"metadata\":{\"tags\":[],\"needs_background\":\"light\"}}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"hofF3_pU4B7_\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403989320,\"user_tz\":-180,\"elapsed\":511,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":37,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"C5Prcvw-1ta2\"},\"source\":[\"## Topic Modeling with BERT\\n\",\"\\n\",\"BERTopic Official NOTE: BERTopic is stocastich which means that the topics might differ across runs. This is mostly due to the stocastisch nature of UMAP.\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"pubZmmeF13FK\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403992919,\"user_tz\":-180,\"elapsed\":3147,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"6cfb5b61-2f3a-4799-d821-d204d3d6c59b\"},\"source\":[\"!pip install bertopic\"],\"execution_count\":38,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: bertopic in /usr/local/lib/python3.7/dist-packages (0.8.1)\\n\",\"Requirement already satisfied: hdbscan>=0.8.27 in /usr/local/lib/python3.7/dist-packages (from bertopic) (0.8.27)\\n\",\"Requirement already satisfied: scikit-learn>=0.22.2.post1 in /usr/local/lib/python3.7/dist-packages (from bertopic) (0.22.2.post1)\\n\",\"Requirement already satisfied: umap-learn>=0.5.0 in /usr/local/lib/python3.7/dist-packages (from bertopic) (0.5.1)\\n\",\"Requirement already satisfied: sentence-transformers>=0.4.1 in /usr/local/lib/python3.7/dist-packages (from bertopic) (2.0.0)\\n\",\"Requirement already satisfied: numpy>=1.20.0 in /usr/local/lib/python3.7/dist-packages (from bertopic) (1.21.0)\\n\",\"Requirement already satisfied: tqdm>=4.41.1 in /usr/local/lib/python3.7/dist-packages (from bertopic) (4.41.1)\\n\",\"Requirement already satisfied: plotly<4.14.3,>=4.7.0 in /usr/local/lib/python3.7/dist-packages (from bertopic) (4.14.2)\\n\",\"Requirement already satisfied: pandas>=1.1.5 in /usr/local/lib/python3.7/dist-packages (from bertopic) (1.1.5)\\n\",\"Requirement already satisfied: scipy>=1.0 in /usr/local/lib/python3.7/dist-packages (from hdbscan>=0.8.27->bertopic) (1.4.1)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from hdbscan>=0.8.27->bertopic) (1.15.0)\\n\",\"Requirement already satisfied: cython>=0.27 in /usr/local/lib/python3.7/dist-packages (from hdbscan>=0.8.27->bertopic) (0.29.23)\\n\",\"Requirement already satisfied: joblib>=1.0 in /usr/local/lib/python3.7/dist-packages (from hdbscan>=0.8.27->bertopic) (1.0.1)\\n\",\"Requirement already satisfied: numba>=0.49 in /usr/local/lib/python3.7/dist-packages (from umap-learn>=0.5.0->bertopic) (0.51.2)\\n\",\"Requirement already satisfied: pynndescent>=0.5 in /usr/local/lib/python3.7/dist-packages (from umap-learn>=0.5.0->bertopic) (0.5.2)\\n\",\"Requirement already satisfied: nltk in /usr/local/lib/python3.7/dist-packages (from sentence-transformers>=0.4.1->bertopic) (3.2.5)\\n\",\"Requirement already satisfied: sentencepiece in /usr/local/lib/python3.7/dist-packages (from sentence-transformers>=0.4.1->bertopic) (0.1.96)\\n\",\"Requirement already satisfied: torch>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers>=0.4.1->bertopic) (1.9.0+cu102)\\n\",\"Requirement already satisfied: huggingface-hub in /usr/local/lib/python3.7/dist-packages (from sentence-transformers>=0.4.1->bertopic) (0.0.13)\\n\",\"Requirement already satisfied: torchvision in /usr/local/lib/python3.7/dist-packages (from sentence-transformers>=0.4.1->bertopic) (0.10.0+cu102)\\n\",\"Requirement already satisfied: transformers<5.0.0,>=4.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers>=0.4.1->bertopic) (4.8.2)\\n\",\"Requirement already satisfied: retrying>=1.3.3 in /usr/local/lib/python3.7/dist-packages (from plotly<4.14.3,>=4.7.0->bertopic) (1.3.3)\\n\",\"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas>=1.1.5->bertopic) (2018.9)\\n\",\"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas>=1.1.5->bertopic) (2.8.1)\\n\",\"Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from numba>=0.49->umap-learn>=0.5.0->bertopic) (57.0.0)\\n\",\"Requirement already satisfied: llvmlite<0.35,>=0.34.0.dev0 in /usr/local/lib/python3.7/dist-packages (from numba>=0.49->umap-learn>=0.5.0->bertopic) (0.34.0)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from torch>=1.6.0->sentence-transformers>=0.4.1->bertopic) (3.7.4.3)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers>=0.4.1->bertopic) (2.23.0)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers>=0.4.1->bertopic) (3.0.12)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers>=0.4.1->bertopic) (4.5.0)\\n\",\"Requirement already satisfied: packaging>=20.9 in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers>=0.4.1->bertopic) (20.9)\\n\",\"Requirement already satisfied: pillow>=5.3.0 in /usr/local/lib/python3.7/dist-packages (from torchvision->sentence-transformers>=0.4.1->bertopic) (7.1.2)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers>=0.4.1->bertopic) (0.0.45)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers>=0.4.1->bertopic) (0.10.3)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers>=0.4.1->bertopic) (2019.12.20)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers>=0.4.1->bertopic) (3.13)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers>=0.4.1->bertopic) (1.24.3)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers>=0.4.1->bertopic) (2021.5.30)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers>=0.4.1->bertopic) (2.10)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers>=0.4.1->bertopic) (3.0.4)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->huggingface-hub->sentence-transformers>=0.4.1->bertopic) (3.4.1)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging>=20.9->huggingface-hub->sentence-transformers>=0.4.1->bertopic) (2.4.7)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers<5.0.0,>=4.6.0->sentence-transformers>=0.4.1->bertopic) (7.1.2)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"Q1qjFm47Udd7\"},\"source\":[\"Official Note: Restart the Notebook\\n\",\"After installing BERTopic, some packages that were already loaded were updated and in order to correctly use them, we should now restart the notebook.\\n\",\"\\n\",\"From the Menu:\\n\",\"\\n\",\"Runtime → Restart Runtime\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"hcBeLe7gEcw-\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625403996674,\"user_tz\":-180,\"elapsed\":313,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"fd2138d8-e96c-483e-ddd0-0d936327f821\"},\"source\":[\"len(corpus)\"],\"execution_count\":40,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"10000\"]},\"metadata\":{\"tags\":[]},\"execution_count\":40}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"1h9L9-QE1sj-\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404033743,\"user_tz\":-180,\"elapsed\":35840,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from bertopic import BERTopic\\n\",\"from sentence_transformers import SentenceTransformer\\n\",\"sentence_model = SentenceTransformer(\\\"paraphrase-distilroberta-base-v1\\\")\\n\",\"topic_model = BERTopic(embedding_model=sentence_model)\\n\",\"topics, _ = topic_model.fit_transform(corpus)\"],\"execution_count\":41,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"BJtgX4mLi5id\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404036581,\"user_tz\":-180,\"elapsed\":449,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":41,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":235},\"id\":\"MUuhDK1n1smY\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404036907,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"b069fbfe-df9a-48c5-8512-af3bf83f5f94\"},\"source\":[\"topic_model.get_topic_info()[:6]\"],\"execution_count\":42,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>Topic</th>\\n\",\"      <th>Count</th>\\n\",\"      <th>Name</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>-1</td>\\n\",\"      <td>3119</td>\\n\",\"      <td>-1_book_read_books_his</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>0</td>\\n\",\"      <td>2041</td>\\n\",\"      <td>0_my_product_not_had</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>1</td>\\n\",\"      <td>1495</td>\\n\",\"      <td>1_movie_film_dvd_watch</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>2</td>\\n\",\"      <td>1306</td>\\n\",\"      <td>2_album_cd_songs_music</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>3</td>\\n\",\"      <td>239</td>\\n\",\"      <td>3_game_games_play_graphics</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5</th>\\n\",\"      <td>4</td>\\n\",\"      <td>143</td>\\n\",\"      <td>4_hair_products_skin_used</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"   Topic  Count                        Name\\n\",\"0     -1   3119      -1_book_read_books_his\\n\",\"1      0   2041        0_my_product_not_had\\n\",\"2      1   1495      1_movie_film_dvd_watch\\n\",\"3      2   1306      2_album_cd_songs_music\\n\",\"4      3    239  3_game_games_play_graphics\\n\",\"5      4    143   4_hair_products_skin_used\"]},\"metadata\":{\"tags\":[]},\"execution_count\":42}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"IrC2jAhHM_GY\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404048155,\"user_tz\":-180,\"elapsed\":480,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"94217267-647b-43e6-9a12-28a69b1416f5\"},\"source\":[\"topic_model.get_topic(2)\"],\"execution_count\":44,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"[('album', 0.022458465897699162),\\n\",\" ('cd', 0.022357671269330873),\\n\",\" ('songs', 0.0160285876024971),\\n\",\" ('music', 0.015663871869609634),\\n\",\" ('song', 0.013265783250597301),\\n\",\" ('band', 0.008915803010910899),\\n\",\" ('sound', 0.007935450670483247),\\n\",\" ('great', 0.007270445913487295),\\n\",\" ('good', 0.006867072444449145),\\n\",\" ('albums', 0.00664840595331807)]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":44}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"D14m1GP5WMRM\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH07/CH07e_Semantic_Search_with_Sentence_BERT.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":5,\"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.8.6\"},\"colab\":{\"name\":\"CH07e_Semantic_Search_with_Sentence_BERT.ipynb\",\"provenance\":[],\"collapsed_sections\":[]}},\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"kVzb8JWhurLP\"},\"source\":[\"#Semantic Search\\n\",\"## Case Study: Transform idle FAQ to Question Answering Model\\n\",\"\\n\"],\"id\":\"kVzb8JWhurLP\"},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"fzDG7HERuriy\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404253107,\"user_tz\":-180,\"elapsed\":2913,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"178d67b5-00cd-46c2-a0c9-480f7177927e\"},\"source\":[\"!pip install sentence-transformers\"],\"id\":\"fzDG7HERuriy\",\"execution_count\":11,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: sentence-transformers in /usr/local/lib/python3.7/dist-packages (2.0.0)\\n\",\"Requirement already satisfied: scikit-learn in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.22.2.post1)\\n\",\"Requirement already satisfied: nltk in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (3.2.5)\\n\",\"Requirement already satisfied: torch>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.9.0+cu102)\\n\",\"Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.4.1)\\n\",\"Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.19.5)\\n\",\"Requirement already satisfied: torchvision in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.10.0+cu102)\\n\",\"Requirement already satisfied: sentencepiece in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.1.96)\\n\",\"Requirement already satisfied: huggingface-hub in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.0.13)\\n\",\"Requirement already satisfied: transformers<5.0.0,>=4.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (4.8.2)\\n\",\"Requirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (4.41.1)\\n\",\"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from scikit-learn->sentence-transformers) (1.0.1)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from nltk->sentence-transformers) (1.15.0)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from torch>=1.6.0->sentence-transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: pillow>=5.3.0 in /usr/local/lib/python3.7/dist-packages (from torchvision->sentence-transformers) (7.1.2)\\n\",\"Requirement already satisfied: packaging>=20.9 in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (20.9)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (4.5.0)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (2.23.0)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from huggingface-hub->sentence-transformers) (3.0.12)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (0.0.45)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (2019.12.20)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (0.10.3)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (3.13)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging>=20.9->huggingface-hub->sentence-transformers) (2.4.7)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->huggingface-hub->sentence-transformers) (3.4.1)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers) (1.24.3)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers) (3.0.4)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers) (2021.5.30)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->huggingface-hub->sentence-transformers) (2.10)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers<5.0.0,>=4.6.0->sentence-transformers) (7.1.2)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"GmqJ32A9PMP7\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404258696,\"user_tz\":-180,\"elapsed\":1011,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"import pandas as pd\\n\",\"import sklearn\\n\",\"import numpy as np\"],\"id\":\"GmqJ32A9PMP7\",\"execution_count\":12,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"XhHPVbz5PMhr\"},\"source\":[\"https://www.wwf.org.uk/\\n\",\"\\n\",\"World Wide Fund for Nature\\n\",\"Non-governmental organization\"],\"id\":\"XhHPVbz5PMhr\"},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"3-EfV5fQQh3k\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404261183,\"user_tz\":-180,\"elapsed\":275,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"wwf_faq=[\\\"I haven’t received my adoption pack. What should I do?\\\",\\n\",\"         \\\"How quickly will I receive my adoption pack?\\\",\\n\",\"         \\\"How can I renew my adoption?\\\",\\n\",\"         \\\"How do I change my address or other contact details?\\\",\\n\",\"         \\\"Can I adopt an animal if I don’t live in the UK?\\\",\\n\",\"         \\\"If I adopt an animal, will I be the only person who adopts that animal?\\\",\\n\",\"\\\"My pack doesn't contain a certicate\\\",\\n\",\"\\\"My adoption is a gift but won’t arrive on time. What can I do?\\\",\\n\",\"\\\"Can I pay for an adoption with a one-off payment?\\\",\\n\",\"\\\"Can I change the delivery address for my adoption pack after I’ve placed my order?\\\",\\n\",\"\\\"How long will my adoption last for?\\\",\\n\",\"\\\"How often will I receive updates about my adopted animal?\\\",\\n\",\"\\\"What animals do you have for adoption?\\\",\\n\",\"\\\"How can I nd out more information about my adopted animal?\\\",\\n\",\"\\\"How is my adoption money spent?\\\",\\n\",\"\\\"What is your refund policy?\\\",\\n\",\"\\\"An error has been made with my Direct Debit payment, can I receive a refund?\\\",\\n\",\"\\\"How do I change how you contact me?\\\"]\"],\"id\":\"3-EfV5fQQh3k\",\"execution_count\":13,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"continent-fiber\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404263272,\"user_tz\":-180,\"elapsed\":837,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from sentence_transformers import SentenceTransformer\\n\",\"model = SentenceTransformer(\\\"quora-distilbert-base\\\")\"],\"id\":\"continent-fiber\",\"execution_count\":14,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"F9OIKk5ww2IH\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404265221,\"user_tz\":-180,\"elapsed\":595,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"id\":\"F9OIKk5ww2IH\",\"execution_count\":14,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"SIs2CipHRWSB\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404265893,\"user_tz\":-180,\"elapsed\":329,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"faq_embeddings = model.encode(wwf_faq)\"],\"id\":\"SIs2CipHRWSB\",\"execution_count\":15,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"t5gq4NAaSEZx\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404267323,\"user_tz\":-180,\"elapsed\":11,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"test_questions=[\\\"What should be done, if the adoption pack did not reach to me?\\\",\\n\",\"                \\\" How fast is my adoption pack delivered to me?\\\",\\n\",\"                \\\"What should I do to renew my adoption?\\\",\\n\",\"        \\\"What should be done to change adress and contact details ?\\\",\\n\",\"      \\\"I live outside of the UK, Can I still adopt an animal?\\\"]\\n\",\"test_q_emb= model.encode(test_questions)\"],\"id\":\"t5gq4NAaSEZx\",\"execution_count\":16,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"collect-andrew\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404269030,\"user_tz\":-180,\"elapsed\":3,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"3e32986b-a0df-4447-e7fe-0885d5658def\"},\"source\":[\"from scipy.spatial.distance import cdist\\n\",\"for q, qe in zip(test_questions, test_q_emb):\\n\",\"    distances = cdist([qe], faq_embeddings, \\\"cosine\\\")[0]\\n\",\"    ind = np.argsort(distances, axis=0)[:3]\\n\",\"    print(\\\"\\\\n Test Question: \\\\n \\\"+q)\\n\",\"    for i,(dis,text) in enumerate(zip(distances[ind], [wwf_faq[i] for i in ind])):\\n\",\"        print(dis,ind[i],text, sep=\\\"\\\\t\\\")\"],\"id\":\"collect-andrew\",\"execution_count\":17,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"\\n\",\" Test Question: \\n\",\" What should be done, if the adoption pack did not reach to me?\\n\",\"0.14945798801495147\\t0\\tI haven’t received my adoption pack. What should I do?\\n\",\"0.24940208935707764\\t7\\tMy adoption is a gift but won’t arrive on time. What can I do?\\n\",\"0.36697610450097407\\t1\\tHow quickly will I receive my adoption pack?\\n\",\"\\n\",\" Test Question: \\n\",\"  How fast is my adoption pack delivered to me?\\n\",\"0.1658239297264127\\t1\\tHow quickly will I receive my adoption pack?\\n\",\"0.34704792078263125\\t0\\tI haven’t received my adoption pack. What should I do?\\n\",\"0.3511114575850516\\t7\\tMy adoption is a gift but won’t arrive on time. What can I do?\\n\",\"\\n\",\" Test Question: \\n\",\" What should I do to renew my adoption?\\n\",\"0.04168240105290566\\t2\\tHow can I renew my adoption?\\n\",\"0.29930176236683403\\t12\\tWhat animals do you have for adoption?\\n\",\"0.3014070037208386\\t0\\tI haven’t received my adoption pack. What should I do?\\n\",\"\\n\",\" Test Question: \\n\",\" What should be done to change adress and contact details ?\\n\",\"0.2766018540517977\\t3\\tHow do I change my address or other contact details?\\n\",\"0.35286815779846503\\t17\\tHow do I change how you contact me?\\n\",\"0.43935530038969395\\t2\\tHow can I renew my adoption?\\n\",\"\\n\",\" Test Question: \\n\",\" I live outside of the UK, Can I still adopt an animal?\\n\",\"0.1694561940079674\\t4\\tCan I adopt an animal if I don’t live in the UK?\\n\",\"0.200544010854532\\t12\\tWhat animals do you have for adoption?\\n\",\"0.2878223673576116\\t13\\tHow can I nd out more information about my adopted animal?\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"differential-survey\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404270273,\"user_tz\":-180,\"elapsed\":11,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"def get_best(query, K=3):\\n\",\"    query_embedding = model.encode([query])\\n\",\"    distances = cdist(query_embedding, faq_embeddings, \\\"cosine\\\")[0]\\n\",\"    ind = np.argsort(distances, axis=0)\\n\",\"    print(\\\"\\\\n\\\"+query)\\n\",\"    for c,i in list(zip(distances[ind],  ind))[:K]:\\n\",\"        print(c,wwf_faq[i], sep=\\\"\\\\t\\\")\"],\"id\":\"differential-survey\",\"execution_count\":18,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"TSF6PGoQTR_t\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404272235,\"user_tz\":-180,\"elapsed\":451,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"7ac3e847-6204-4fbe-b10c-7ce203df304a\"},\"source\":[\"get_best(\\\"How do I change my contact info?\\\",3)\"],\"id\":\"TSF6PGoQTR_t\",\"execution_count\":19,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"\\n\",\"How do I change my contact info?\\n\",\"0.056767916805916196\\tHow do I change my address or other contact details?\\n\",\"0.18566553083561854\\tHow do I change how you contact me?\\n\",\"0.324083301839059\\tHow can I renew my adoption?\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"L7STjz6BTUVs\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625404273599,\"user_tz\":-180,\"elapsed\":10,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"112ca8b6-5049-45dc-9999-baf22c44bdf7\"},\"source\":[\"get_best(\\\"How do I get my plane ticket if I bought it online?\\\")\"],\"id\":\"L7STjz6BTUVs\",\"execution_count\":20,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"\\n\",\"How do I get my plane ticket if I bought it online?\\n\",\"0.3594750344276968\\tHow do I change how you contact me?\\n\",\"0.3680785260834347\\tHow do I change my address or other contact details?\\n\",\"0.4306634265594925\\tMy adoption is a gift but won’t arrive on time. What can I do?\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"K5VoBtfVl58K\"},\"source\":[\"\"],\"id\":\"K5VoBtfVl58K\",\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH08/CH08a_Pruning_Quantization.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH08a_Pruning_Quantization.ipynb\",\"provenance\":[],\"authorship_tag\":\"ABX9TyNVKSH9xOO12Wk/2IKAg7kQ\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"}},\"cells\":[{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"p8C8UL3FErSt\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625344990673,\"user_tz\":-180,\"elapsed\":3600,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"aa1c5bb0-7ed9-4096-f833-e764914ef85d\"},\"source\":[\"!pip install sentence-transformers datasets\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: sentence-transformers in /usr/local/lib/python3.7/dist-packages (2.0.0)\\n\",\"Requirement already satisfied: datasets in /usr/local/lib/python3.7/dist-packages (1.8.0)\\n\",\"Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.4.1)\\n\",\"Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.19.5)\\n\",\"Requirement already satisfied: scikit-learn in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.22.2.post1)\\n\",\"Requirement already satisfied: torch>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.9.0+cu102)\\n\",\"Requirement already satisfied: torchvision in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.10.0+cu102)\\n\",\"Requirement already satisfied: transformers<5.0.0,>=4.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (4.8.2)\\n\",\"Requirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (4.41.1)\\n\",\"Requirement already satisfied: sentencepiece in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.1.96)\\n\",\"Requirement already satisfied: huggingface-hub in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.0.13)\\n\",\"Requirement already satisfied: nltk in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (3.2.5)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from datasets) (20.9)\\n\",\"Requirement already satisfied: xxhash in /usr/local/lib/python3.7/dist-packages (from datasets) (2.0.2)\\n\",\"Requirement already satisfied: fsspec in /usr/local/lib/python3.7/dist-packages (from datasets) (2021.6.1)\\n\",\"Requirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from datasets) (1.1.5)\\n\",\"Requirement already satisfied: pyarrow<4.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (3.0.0)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from datasets) (4.5.0)\\n\",\"Requirement already satisfied: requests>=2.19.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (2.23.0)\\n\",\"Requirement already satisfied: multiprocess in /usr/local/lib/python3.7/dist-packages (from datasets) (0.70.12.2)\\n\",\"Requirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from datasets) (0.3.4)\\n\",\"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from scikit-learn->sentence-transformers) (1.0.1)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from torch>=1.6.0->sentence-transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: pillow>=5.3.0 in /usr/local/lib/python3.7/dist-packages (from torchvision->sentence-transformers) (7.1.2)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (0.0.45)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (3.13)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (0.10.3)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (3.0.12)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (2019.12.20)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from nltk->sentence-transformers) (1.15.0)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->datasets) (2.4.7)\\n\",\"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2.8.1)\\n\",\"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2018.9)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->datasets) (3.4.1)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (3.0.4)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (2.10)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (1.24.3)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (2021.5.30)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers<5.0.0,>=4.6.0->sentence-transformers) (7.1.2)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"Wy39a1JfE5xe\"},\"source\":[\"## Pruning\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"cly-vuCNFHk9\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625344999062,\"user_tz\":-180,\"elapsed\":5199,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from sentence_transformers import SentenceTransformer \\n\",\"distilroberta = SentenceTransformer('stsb-distilroberta-base-v2')\"],\"execution_count\":2,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"1DoVK2XeFKh5\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345002027,\"user_tz\":-180,\"elapsed\":1710,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"0487d5a7-a610-42d8-ddaf-0a609f701a5e\"},\"source\":[\"from datasets import load_metric, load_dataset \\n\",\"stsb_metric = load_metric('glue', 'stsb') \\n\",\"stsb = load_dataset('glue', 'stsb') \\n\",\"\\n\",\"mrpc_metric = load_metric('glue', 'mrpc') \\n\",\"mrpc = load_dataset('glue','mrpc')\"],\"execution_count\":3,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Reusing dataset glue (/root/.cache/huggingface/datasets/glue/stsb/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad)\\n\",\"Reusing dataset glue (/root/.cache/huggingface/datasets/glue/mrpc/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad)\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"ycPwEniLFODi\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345003284,\"user_tz\":-180,\"elapsed\":296,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"import math \\n\",\"import tensorflow as tf \\n\",\"\\n\",\"def roberta_sts_benchmark(batch): \\n\",\"    sts_encode1 = tf.nn.l2_normalize(distilroberta.encode(batch['sentence1']),axis=1) \\n\",\"    sts_encode2 = tf.nn.l2_normalize(distilroberta.encode(batch['sentence2']),axis=1) \\n\",\"    cosine_similarities = tf.reduce_sum(tf.multiply(sts_encode1, sts_encode2),axis=1) \\n\",\"    clip_cosine_similarities = tf.clip_by_value(cosine_similarities,-1.0,1.0)\\n\",\"    scores = 1.0 - tf.acos(clip_cosine_similarities) / math.pi \\n\",\"    return scores\"],\"execution_count\":4,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"IydYPTeCFlO2\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345005720,\"user_tz\":-180,\"elapsed\":271,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"references = stsb['validation'][:]['label'] \"],\"execution_count\":5,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"ka-HdMFpFpFW\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345104927,\"user_tz\":-180,\"elapsed\":97877,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"distilroberta_results = roberta_sts_benchmark(stsb['validation']) \"],\"execution_count\":6,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"IYlO5BeKFq50\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345109880,\"user_tz\":-180,\"elapsed\":387,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from torch.nn.utils import prune \\n\",\"pruner = prune.L1Unstructured(amount=0.2) \"],\"execution_count\":7,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"1qXqnGznFtQ4\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345117136,\"user_tz\":-180,\"elapsed\":4866,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"state_dict = distilroberta.state_dict()\\n\",\"\\n\",\"for key in state_dict.keys(): \\n\",\"    if \\\"weight\\\" in key: \\n\",\"        state_dict[key] = pruner.prune(state_dict[key]) \"],\"execution_count\":8,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"19GJYyJ6FwLg\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345119401,\"user_tz\":-180,\"elapsed\":405,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"5e19f70f-93ef-4297-8b96-10e862ed6a83\"},\"source\":[\"distilroberta.load_state_dict(state_dict) \"],\"execution_count\":9,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"<All keys matched successfully>\"]},\"metadata\":{\"tags\":[]},\"execution_count\":9}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"u1r813q8Fx6l\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345222378,\"user_tz\":-180,\"elapsed\":98171,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"distilroberta_results_p = roberta_sts_benchmark(stsb['validation']) \"],\"execution_count\":10,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":112},\"id\":\"VsFGNOMoFz1c\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345227118,\"user_tz\":-180,\"elapsed\":319,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"6fd3db0c-4f5a-4848-a453-3fcc35b91bff\"},\"source\":[\"import pandas as pd \\n\",\"\\n\",\"pd.DataFrame({ \\n\",\"  \\\"DistillRoberta\\\":stsb_metric.compute(predictions=distilroberta_results, references=references),\\n\",\"  \\\"DistillRobertaPruned\\\":stsb_metric.compute(predictions=distilroberta_results_p, references=references)\\n\",\"}) \"],\"execution_count\":11,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>DistillRoberta</th>\\n\",\"      <th>DistillRobertaPruned</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>pearson</th>\\n\",\"      <td>0.888461</td>\\n\",\"      <td>0.849915</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>spearmanr</th>\\n\",\"      <td>0.889246</td>\\n\",\"      <td>0.849125</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"           DistillRoberta  DistillRobertaPruned\\n\",\"pearson          0.888461              0.849915\\n\",\"spearmanr        0.889246              0.849125\"]},\"metadata\":{\"tags\":[]},\"execution_count\":11}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"x0zaDCTnF4J5\"},\"source\":[\"## Quantization\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"-vfbXIK-F8ur\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345235049,\"user_tz\":-180,\"elapsed\":1033,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"import torch \\n\",\"\\n\",\"distilroberta = torch.quantization.quantize_dynamic(\\n\",\"    model=distilroberta,\\n\",\"    qconfig_spec = {torch.nn.Linear: torch.quantization.default_dynamic_qconfig}, dtype=torch.qint8)\"],\"execution_count\":12,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"BxGgGRv3GKEc\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345308340,\"user_tz\":-180,\"elapsed\":72101,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"distilroberta_results_pq = roberta_sts_benchmark(stsb['validation']) \"],\"execution_count\":13,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":112},\"id\":\"sKtwHEB4GNsx\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345308352,\"user_tz\":-180,\"elapsed\":34,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"d96cff0f-1bac-4c62-fb5c-f33d156bd4ba\"},\"source\":[\"pd.DataFrame({ \\n\",\"  \\\"DistillRoberta\\\":stsb_metric.compute(predictions=distilroberta_results, references=references), \\n\",\"  \\\"DistillRobertaPruned\\\":stsb_metric.compute(predictions=distilroberta_results_p, references=references), \\n\",\"  \\\"DistillRobertaPrunedQINT8\\\":stsb_metric.compute(predictions=distilroberta_results_pq, references=references) \\n\",\"})\"],\"execution_count\":14,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>DistillRoberta</th>\\n\",\"      <th>DistillRobertaPruned</th>\\n\",\"      <th>DistillRobertaPrunedQINT8</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>pearson</th>\\n\",\"      <td>0.888461</td>\\n\",\"      <td>0.849915</td>\\n\",\"      <td>0.826784</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>spearmanr</th>\\n\",\"      <td>0.889246</td>\\n\",\"      <td>0.849125</td>\\n\",\"      <td>0.824857</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"           DistillRoberta  DistillRobertaPruned  DistillRobertaPrunedQINT8\\n\",\"pearson          0.888461              0.849915                   0.826784\\n\",\"spearmanr        0.889246              0.849125                   0.824857\"]},\"metadata\":{\"tags\":[]},\"execution_count\":14}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"UFaamx7yGRm5\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH08/CH08b_Working_with_Efficient_Self-attention.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"accelerator\":\"GPU\",\"colab\":{\"name\":\"CH08b_Working_with_Efficient_Self-attention.ipynb\",\"provenance\":[],\"collapsed_sections\":[],\"machine_shape\":\"hm\",\"authorship_tag\":\"ABX9TyOwwmNkOQe+xqfPnjxlJ+rT\"},\"kernelspec\":{\"display_name\":\"Python 3\",\"name\":\"python3\"},\"language_info\":{\"name\":\"python\"},\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"e672d81cf62b4d0ab7a4b7a386ff97bd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_bfe4b20bba21430d9c55c6dad62652a0\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_1bc1ea50ed4f44fcbbdd8effacae293f\",\"IPY_MODEL_51e87bd39e864df6b914c6d4130cb72a\"]}},\"bfe4b20bba21430d9c55c6dad62652a0\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"1bc1ea50ed4f44fcbbdd8effacae293f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_b28970d2d0e443e2a425da5b95439b9d\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":898823,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":898823,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d058bf6db0314230b5c33db188e68ebe\"}},\"51e87bd39e864df6b914c6d4130cb72a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_a834c7c8d08144a098ac47472d7f209c\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 899k/899k [00:01&lt;00:00, 713kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_f435ea1b2e7e4cc38690313078bd7d9e\"}},\"b28970d2d0e443e2a425da5b95439b9d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"d058bf6db0314230b5c33db188e68ebe\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a834c7c8d08144a098ac47472d7f209c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"f435ea1b2e7e4cc38690313078bd7d9e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"98d142192c1840828bf2e7d66acd709d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_82941b37d6ab4daa9f6f4b18f3cd261e\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_7957aa5502e846989feaff439e20ea6d\",\"IPY_MODEL_85fd7907032f4439bc55e86ceb754578\"]}},\"82941b37d6ab4daa9f6f4b18f3cd261e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7957aa5502e846989feaff439e20ea6d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_164dad1115ea4c8489810a8d5dfc68c6\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":456318,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":456318,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_cae09f68396d4b9eb38db9d671c2e2c9\"}},\"85fd7907032f4439bc55e86ceb754578\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_314943f2fdb24f079828bca0d19b638b\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 456k/456k [00:05&lt;00:00, 88.8kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c2916e9c92824981bf4793ef6c8742a1\"}},\"164dad1115ea4c8489810a8d5dfc68c6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"cae09f68396d4b9eb38db9d671c2e2c9\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"314943f2fdb24f079828bca0d19b638b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"c2916e9c92824981bf4793ef6c8742a1\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"72c5949d3d3d48dba4d598edc8596789\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_2970f173a51f43659c2f20641d3619d4\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_73084ad0440f4c589673b542d03eded7\",\"IPY_MODEL_6489b35f418a4ca8b889185f155bd074\"]}},\"2970f173a51f43659c2f20641d3619d4\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"73084ad0440f4c589673b542d03eded7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_1c76ae18e8a449939f4aa8ebeb84396d\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1355863,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1355863,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d221039210a84b64a9aedb9f688dbfc6\"}},\"6489b35f418a4ca8b889185f155bd074\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_28142b508e2f45f4921bad5cdcd64bdd\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1.36M/1.36M [00:00&lt;00:00, 1.80MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_ec539bbfad9941dc9564832bdb793b4c\"}},\"1c76ae18e8a449939f4aa8ebeb84396d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"d221039210a84b64a9aedb9f688dbfc6\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"28142b508e2f45f4921bad5cdcd64bdd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"ec539bbfad9941dc9564832bdb793b4c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a395e7b57d104555b13da4f3995dadb2\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_f3e029aced5e4a509146cb84ba9ad125\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_62e4dafe08514220b2eb39ceb912ebf2\",\"IPY_MODEL_97aa3b30a97047b48f25af7ac9d5e498\"]}},\"f3e029aced5e4a509146cb84ba9ad125\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"62e4dafe08514220b2eb39ceb912ebf2\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_4a1fdf823c324b739f9397bc0ca6d58a\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":694,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":694,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_f9ebabbb13a64a8599ebb2009f2e7f0f\"}},\"97aa3b30a97047b48f25af7ac9d5e498\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_705c722edccd4464813fec6bf4b6cdb1\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 694/694 [00:52&lt;00:00, 13.2B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e110c7cc736e403a9a50bbeb62498f8e\"}},\"4a1fdf823c324b739f9397bc0ca6d58a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"f9ebabbb13a64a8599ebb2009f2e7f0f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"705c722edccd4464813fec6bf4b6cdb1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"e110c7cc736e403a9a50bbeb62498f8e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"9c3d7a5384cc4efa8d8bb2f6141142cd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_ab0762f959704142b00630e9c871b559\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_ba30d6ffd2a24a63b318d3a2e892c2fe\",\"IPY_MODEL_d6a54164a747482baf9515fdb6a85a0c\"]}},\"ab0762f959704142b00630e9c871b559\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ba30d6ffd2a24a63b318d3a2e892c2fe\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_a39c86078e4d40d3bb242cbcc4448877\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":597257159,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":597257159,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_7dd0852d8ec54b64b25b47fcf48d1e62\"}},\"d6a54164a747482baf9515fdb6a85a0c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_554f3d846cd548fab83b094ec132e1f0\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 597M/597M [00:49&lt;00:00, 12.0MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_464ccb6e5a9e45caa1a99f50ea2f4ebb\"}},\"a39c86078e4d40d3bb242cbcc4448877\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"7dd0852d8ec54b64b25b47fcf48d1e62\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"554f3d846cd548fab83b094ec132e1f0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"464ccb6e5a9e45caa1a99f50ea2f4ebb\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}}},\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"i9N_uuZ9TvKe\"},\"source\":[\"# CH08b Working_with_Efficient_Self-attention\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"b4ictNq_Twn2\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429431759,\"user_tz\":-180,\"elapsed\":7521,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"fb2bf8ce-915b-4e70-e535-1bb617d0054f\"},\"source\":[\"!pip install transformers\\n\",\"!pip install py3nvml\"],\"execution_count\":9,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: transformers in /usr/local/lib/python3.7/dist-packages (4.8.2)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.45)\\n\",\"Requirement already satisfied: huggingface-hub==0.0.12 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.12)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.5.0)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.10.3)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub==0.0.12->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2021.5.30)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: py3nvml in /usr/local/lib/python3.7/dist-packages (0.2.6)\\n\",\"Requirement already satisfied: xmltodict in /usr/local/lib/python3.7/dist-packages (from py3nvml) (0.12.0)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"Y57EvjQIp0vn\"},\"source\":[\"We see the quadratic relationship $\\\\mathcal{O}(n^2)$ between input sequence and peak memory usage, as the sequence length gets long. \\n\",\"Let us check the memory usage and make sure no running processes\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"jPAMNb-CmDEb\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429437684,\"user_tz\":-180,\"elapsed\":1881,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"226fb291-2379-47bd-842e-907295faaf99\"},\"source\":[\"!nvidia-smi\"],\"execution_count\":10,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Sun Jul  4 20:10:33 2021       \\n\",\"+-----------------------------------------------------------------------------+\\n\",\"| NVIDIA-SMI 465.27       Driver Version: 460.32.03    CUDA Version: 11.2     |\\n\",\"|-------------------------------+----------------------+----------------------+\\n\",\"| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |\\n\",\"| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |\\n\",\"|                               |                      |               MIG M. |\\n\",\"|===============================+======================+======================|\\n\",\"|   0  Tesla P100-PCIE...  Off  | 00000000:00:04.0 Off |                    0 |\\n\",\"| N/A   36C    P0    25W / 250W |      0MiB / 16280MiB |      0%      Default |\\n\",\"|                               |                      |                  N/A |\\n\",\"+-------------------------------+----------------------+----------------------+\\n\",\"                                                                               \\n\",\"+-----------------------------------------------------------------------------+\\n\",\"| Processes:                                                                  |\\n\",\"|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |\\n\",\"|        ID   ID                                                   Usage      |\\n\",\"|=============================================================================|\\n\",\"|  No running processes found                                                 |\\n\",\"+-----------------------------------------------------------------------------+\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"mXqi53-rncCk\"},\"source\":[\"# Longformer\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"BepSZek5vlc6\"},\"source\":[\"\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"avmMEhBTPeqC\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429442065,\"user_tz\":-180,\"elapsed\":5,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":10,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":350,\"referenced_widgets\":[\"e672d81cf62b4d0ab7a4b7a386ff97bd\",\"bfe4b20bba21430d9c55c6dad62652a0\",\"1bc1ea50ed4f44fcbbdd8effacae293f\",\"51e87bd39e864df6b914c6d4130cb72a\",\"b28970d2d0e443e2a425da5b95439b9d\",\"d058bf6db0314230b5c33db188e68ebe\",\"a834c7c8d08144a098ac47472d7f209c\",\"f435ea1b2e7e4cc38690313078bd7d9e\",\"98d142192c1840828bf2e7d66acd709d\",\"82941b37d6ab4daa9f6f4b18f3cd261e\",\"7957aa5502e846989feaff439e20ea6d\",\"85fd7907032f4439bc55e86ceb754578\",\"164dad1115ea4c8489810a8d5dfc68c6\",\"cae09f68396d4b9eb38db9d671c2e2c9\",\"314943f2fdb24f079828bca0d19b638b\",\"c2916e9c92824981bf4793ef6c8742a1\",\"72c5949d3d3d48dba4d598edc8596789\",\"2970f173a51f43659c2f20641d3619d4\",\"73084ad0440f4c589673b542d03eded7\",\"6489b35f418a4ca8b889185f155bd074\",\"1c76ae18e8a449939f4aa8ebeb84396d\",\"d221039210a84b64a9aedb9f688dbfc6\",\"28142b508e2f45f4921bad5cdcd64bdd\",\"ec539bbfad9941dc9564832bdb793b4c\",\"a395e7b57d104555b13da4f3995dadb2\",\"f3e029aced5e4a509146cb84ba9ad125\",\"62e4dafe08514220b2eb39ceb912ebf2\",\"97aa3b30a97047b48f25af7ac9d5e498\",\"4a1fdf823c324b739f9397bc0ca6d58a\",\"f9ebabbb13a64a8599ebb2009f2e7f0f\",\"705c722edccd4464813fec6bf4b6cdb1\",\"e110c7cc736e403a9a50bbeb62498f8e\",\"9c3d7a5384cc4efa8d8bb2f6141142cd\",\"ab0762f959704142b00630e9c871b559\",\"ba30d6ffd2a24a63b318d3a2e892c2fe\",\"d6a54164a747482baf9515fdb6a85a0c\",\"a39c86078e4d40d3bb242cbcc4448877\",\"7dd0852d8ec54b64b25b47fcf48d1e62\",\"554f3d846cd548fab83b094ec132e1f0\",\"464ccb6e5a9e45caa1a99f50ea2f4ebb\"]},\"id\":\"MzbkCIFwVR8E\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429518204,\"user_tz\":-180,\"elapsed\":76143,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"e256df18-b671-48c6-a877-f5d9b62104cc\"},\"source\":[\"from transformers import LongformerTokenizer, LongformerModel\\n\",\"import torch\\n\",\"tokenizer = LongformerTokenizer.from_pretrained(\\n\",\"    'allenai/longformer-base-4096')\\n\",\"model = LongformerModel.from_pretrained(\\n\",\"    'allenai/longformer-base-4096')\\n\",\"sequence= \\\"hello \\\"*4093\\n\",\"inputs = tokenizer(sequence, return_tensors=\\\"pt\\\")\\n\",\"print(\\\"input shape: \\\",inputs.input_ids.shape)\\n\",\"outputs = model(**inputs)\"],\"execution_count\":11,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"e672d81cf62b4d0ab7a4b7a386ff97bd\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=898823.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"98d142192c1840828bf2e7d66acd709d\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=456318.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"72c5949d3d3d48dba4d598edc8596789\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1355863.0, style=ProgressStyle(descript…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"a395e7b57d104555b13da4f3995dadb2\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=694.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"9c3d7a5384cc4efa8d8bb2f6141142cd\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=597257159.0, style=ProgressStyle(descri…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"stream\",\"text\":[\"Some weights of the model checkpoint at allenai/longformer-base-4096 were not used when initializing LongformerModel: ['lm_head.decoder.weight', 'lm_head.bias', 'lm_head.layer_norm.weight', 'lm_head.layer_norm.bias', 'lm_head.dense.weight', 'lm_head.dense.bias']\\n\",\"- This IS expected if you are initializing LongformerModel from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing LongformerModel from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\"],\"name\":\"stderr\"},{\"output_type\":\"stream\",\"text\":[\"input shape:  torch.Size([1, 4096])\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"E3XPLJfqWTsb\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429518208,\"user_tz\":-180,\"elapsed\":23,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":11,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"8sBPlqxl2UII\"},\"source\":[\"As you pass a sequence whose length is more than 4096 you will get \\\"IndexError: index out of range in self\\\" \"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"wZZKnKreYq9B\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429525162,\"user_tz\":-180,\"elapsed\":6976,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"# default attention window size is 512\\n\",\"# Window size refers to the size of an attention window around each token.\\n\",\"from transformers import LongformerConfig, \\\\\\n\",\"     PyTorchBenchmark, PyTorchBenchmarkArguments\\n\",\"config_longformer=LongformerConfig.from_pretrained(\\n\",\"    \\\"allenai/longformer-base-4096\\\")\\n\",\"config_longformer_window4=LongformerConfig.from_pretrained(\\n\",\"    \\\"allenai/longformer-base-4096\\\", \\n\",\"    attention_window=4)\"],\"execution_count\":12,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"drFvhJ8NWj6K\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429525163,\"user_tz\":-180,\"elapsed\":16,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":12,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Bg6dkogKt4ph\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429525163,\"user_tz\":-180,\"elapsed\":15,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"sequence_lengths=[128,256,512,1024,2048,4096]\\n\",\"models=[\\\"config_longformer\\\",\\\"config_longformer_window4\\\"]\\n\",\"configs=[eval(m) for m in models]\"],\"execution_count\":13,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"h_pqcnjEiBzv\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429682872,\"user_tz\":-180,\"elapsed\":151531,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"b2c82394-4fb3-45a6-b09c-2023786ba885\"},\"source\":[\"benchmark_args = PyTorchBenchmarkArguments(\\n\",\"    sequence_lengths= sequence_lengths, \\n\",\"    batch_sizes=[1], \\n\",\"    models= models)\\n\",\"benchmark = PyTorchBenchmark(\\n\",\"    configs=configs, \\n\",\"    args=benchmark_args)\\n\",\"results = benchmark.run()\"],\"execution_count\":14,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"1 / 2\\n\",\"2 / 2\\n\",\"\\n\",\"====================       INFERENCE - SPEED - RESULT       ====================\\n\",\"--------------------------------------------------------------------------------\\n\",\"          Model Name             Batch Size     Seq Length     Time in s   \\n\",\"--------------------------------------------------------------------------------\\n\",\"      config_longformer              1              128            0.036     \\n\",\"      config_longformer              1              256            0.036     \\n\",\"      config_longformer              1              512            0.036     \\n\",\"      config_longformer              1              1024           0.065     \\n\",\"      config_longformer              1              2048           0.119     \\n\",\"      config_longformer              1              4096            0.23     \\n\",\"  config_longformer_window4          1              128            0.018     \\n\",\"  config_longformer_window4          1              256            0.022     \\n\",\"  config_longformer_window4          1              512            0.028     \\n\",\"  config_longformer_window4          1              1024           0.044     \\n\",\"  config_longformer_window4          1              2048           0.074     \\n\",\"  config_longformer_window4          1              4096           0.136     \\n\",\"--------------------------------------------------------------------------------\\n\",\"\\n\",\"====================      INFERENCE - MEMORY - RESULT       ====================\\n\",\"--------------------------------------------------------------------------------\\n\",\"          Model Name             Batch Size     Seq Length    Memory in MB \\n\",\"--------------------------------------------------------------------------------\\n\",\"      config_longformer              1              128             1617     \\n\",\"      config_longformer              1              256             1617     \\n\",\"      config_longformer              1              512             1617     \\n\",\"      config_longformer              1              1024            1701     \\n\",\"      config_longformer              1              2048            1815     \\n\",\"      config_longformer              1              4096            2111     \\n\",\"  config_longformer_window4          1              128             1547     \\n\",\"  config_longformer_window4          1              256             1549     \\n\",\"  config_longformer_window4          1              512             1563     \\n\",\"  config_longformer_window4          1              1024            1583     \\n\",\"  config_longformer_window4          1              2048            1665     \\n\",\"  config_longformer_window4          1              4096            1785     \\n\",\"--------------------------------------------------------------------------------\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"cNs6H4iSavUi\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429682873,\"user_tz\":-180,\"elapsed\":22,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":14,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"IW0lFEmVZ0Ng\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625430335753,\"user_tz\":-180,\"elapsed\":690,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"import matplotlib.pyplot as plt \\n\",\"\\n\",\"def plotMe(results,title=\\\"Time\\\"):\\n\",\"    plt.figure(figsize=(8,8))\\n\",\"    fmts= [\\\"rs--\\\",\\\"go--\\\",\\\"b+-\\\",\\\"c-o\\\"]\\n\",\"    q=results.memory_inference_result\\n\",\"    if title==\\\"Time\\\": \\n\",\"        q=results.time_inference_result\\n\",\"    models=list(q.keys())\\n\",\"    seq=list(q[models[0]]['result'][1].keys())\\n\",\"    models_perf=[list(q[m]['result'][1].values()) for m in models] \\n\",\"    plt.xlabel('Sequence Length') \\n\",\"    plt.ylabel(title) \\n\",\"    plt.title('Inference Result') \\n\",\"    for perf,fmt in zip(models_perf,fmts):\\n\",\"        plt.plot(seq, perf,fmt)\\n\",\"    plt.legend(models)  \\n\",\"    plt.show() \"],\"execution_count\":1,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"HNxAX-Dblr9b\"},\"source\":[\"Speed Test\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":513},\"id\":\"6C767ADKk9Yl\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429701431,\"user_tz\":-180,\"elapsed\":1381,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"9501698d-3631-4f0a-cad3-60392e3c7007\"},\"source\":[\"plotMe(results)\"],\"execution_count\":16,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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\\n\",\"text/plain\":[\"<Figure size 576x576 with 1 Axes>\"]},\"metadata\":{\"tags\":[],\"needs_background\":\"light\"}}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"NfLlub0PltdF\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429707885,\"user_tz\":-180,\"elapsed\":5,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":16,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"LIrkoaElltzj\"},\"source\":[\"Memory Test\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":513},\"id\":\"zHl-926SgX2R\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429709984,\"user_tz\":-180,\"elapsed\":1484,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"64611f1e-54b4-456c-e922-d5e39a9a8d0c\"},\"source\":[\"plotMe(results,\\\"Memory\\\")\"],\"execution_count\":17,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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\\n\",\"text/plain\":[\"<Figure size 576x576 with 1 Axes>\"]},\"metadata\":{\"tags\":[],\"needs_background\":\"light\"}}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"uB2Yc3f5mD2G\"},\"source\":[\"## BigBird\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"wPEjSWKHmGY6\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429829695,\"user_tz\":-180,\"elapsed\":5258,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"92fd1994-f8de-4aa0-d7f2-ace811c84f24\"},\"source\":[\"# pip installs\\n\",\"!pip install transformers\\n\",\"!pip install py3nvml\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: transformers in /usr/local/lib/python3.7/dist-packages (4.8.2)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.10.3)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\"Requirement already satisfied: huggingface-hub==0.0.12 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.12)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.5.0)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.45)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub==0.0.12->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2021.5.30)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: py3nvml in /usr/local/lib/python3.7/dist-packages (0.2.6)\\n\",\"Requirement already satisfied: xmltodict in /usr/local/lib/python3.7/dist-packages (from py3nvml) (0.12.0)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"t9d2BYDK0Ekx\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429832254,\"user_tz\":-180,\"elapsed\":2564,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from transformers import BigBirdConfig\\n\",\"\\n\",\"# Default Bird  with num_random_blocks=3, block_size=64\\n\",\"sparseBird = BigBirdConfig.from_pretrained(\\\"google/bigbird-roberta-base\\\")\\n\",\"# Fuyll attention Bird:\\n\",\"fullBird = BigBirdConfig.from_pretrained(\\n\",\"    \\\"google/bigbird-roberta-base\\\", \\n\",\"    attention_type=\\\"original_full\\\")\"],\"execution_count\":2,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"5mdzP7uD0u1r\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429833302,\"user_tz\":-180,\"elapsed\":1062,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from transformers import PyTorchBenchmark, PyTorchBenchmarkArguments\"],\"execution_count\":3,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"mxWAdqGWpxw6\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625429833304,\"user_tz\":-180,\"elapsed\":15,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"sequence_lengths=[256,512,1024,2048, 3072, 4096]\\n\",\"models=[\\\"sparseBird\\\",\\\"fullBird\\\"]\\n\",\"configs=[eval(m) for m in models]\"],\"execution_count\":4,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"poHk0BT-mghN\"},\"source\":[\"For smaller sequence lengths, The BigBird Model works with full-attention model due to block-size and seq-length inconsistency     \"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"ABnrMeBN0YHa\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625430027671,\"user_tz\":-180,\"elapsed\":194380,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"f785b0be-b15a-4fd1-f63f-84ebe9642418\"},\"source\":[\"benchmark_args = PyTorchBenchmarkArguments(\\n\",\"    sequence_lengths=sequence_lengths,\\n\",\"    batch_sizes=[1],\\n\",\"    models=models)\\n\",\"benchmark = PyTorchBenchmark(\\n\",\"    configs=configs, \\n\",\"    args=benchmark_args)\\n\",\"results = benchmark.run()\"],\"execution_count\":5,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"1 / 2\\n\"],\"name\":\"stdout\"},{\"output_type\":\"stream\",\"text\":[\"Attention type 'block_sparse' is not possible if sequence_length: 256 <= num global tokens: 2 * config.block_size + min. num sliding tokens: 3 * config.block_size + config.num_random_blocks * config.block_size + additional buffer: config.num_random_blocks * config.block_size = 704 with config.block_size = 64, config.num_random_blocks = 3.Changing attention type to 'original_full'...\\n\",\"Attention type 'block_sparse' is not possible if sequence_length: 256 <= num global tokens: 2 * config.block_size + min. num sliding tokens: 3 * config.block_size + config.num_random_blocks * config.block_size + additional buffer: config.num_random_blocks * config.block_size = 704 with config.block_size = 64, config.num_random_blocks = 3.Changing attention type to 'original_full'...\\n\",\"Attention type 'block_sparse' is not possible if sequence_length: 512 <= num global tokens: 2 * config.block_size + min. num sliding tokens: 3 * config.block_size + config.num_random_blocks * config.block_size + additional buffer: config.num_random_blocks * config.block_size = 704 with config.block_size = 64, config.num_random_blocks = 3.Changing attention type to 'original_full'...\\n\",\"Attention type 'block_sparse' is not possible if sequence_length: 512 <= num global tokens: 2 * config.block_size + min. num sliding tokens: 3 * config.block_size + config.num_random_blocks * config.block_size + additional buffer: config.num_random_blocks * config.block_size = 704 with config.block_size = 64, config.num_random_blocks = 3.Changing attention type to 'original_full'...\\n\",\"/usr/local/lib/python3.7/dist-packages/torch/_tensor.py:575: UserWarning: floor_divide is deprecated, and will be removed in a future version of pytorch. It currently rounds toward 0 (like the 'trunc' function NOT 'floor'). This results in incorrect rounding for negative values.\\n\",\"To keep the current behavior, use torch.div(a, b, rounding_mode='trunc'), or for actual floor division, use torch.div(a, b, rounding_mode='floor'). (Triggered internally at  /pytorch/aten/src/ATen/native/BinaryOps.cpp:467.)\\n\",\"  return torch.floor_divide(self, other)\\n\",\"/usr/local/lib/python3.7/dist-packages/torch/_tensor.py:575: UserWarning: floor_divide is deprecated, and will be removed in a future version of pytorch. It currently rounds toward 0 (like the 'trunc' function NOT 'floor'). This results in incorrect rounding for negative values.\\n\",\"To keep the current behavior, use torch.div(a, b, rounding_mode='trunc'), or for actual floor division, use torch.div(a, b, rounding_mode='floor'). (Triggered internally at  /pytorch/aten/src/ATen/native/BinaryOps.cpp:467.)\\n\",\"  return torch.floor_divide(self, other)\\n\",\"/usr/local/lib/python3.7/dist-packages/torch/_tensor.py:575: UserWarning: floor_divide is deprecated, and will be removed in a future version of pytorch. It currently rounds toward 0 (like the 'trunc' function NOT 'floor'). This results in incorrect rounding for negative values.\\n\",\"To keep the current behavior, use torch.div(a, b, rounding_mode='trunc'), or for actual floor division, use torch.div(a, b, rounding_mode='floor'). (Triggered internally at  /pytorch/aten/src/ATen/native/BinaryOps.cpp:467.)\\n\",\"  return torch.floor_divide(self, other)\\n\",\"/usr/local/lib/python3.7/dist-packages/torch/_tensor.py:575: UserWarning: floor_divide is deprecated, and will be removed in a future version of pytorch. It currently rounds toward 0 (like the 'trunc' function NOT 'floor'). This results in incorrect rounding for negative values.\\n\",\"To keep the current behavior, use torch.div(a, b, rounding_mode='trunc'), or for actual floor division, use torch.div(a, b, rounding_mode='floor'). (Triggered internally at  /pytorch/aten/src/ATen/native/BinaryOps.cpp:467.)\\n\",\"  return torch.floor_divide(self, other)\\n\",\"/usr/local/lib/python3.7/dist-packages/torch/_tensor.py:575: UserWarning: floor_divide is deprecated, and will be removed in a future version of pytorch. It currently rounds toward 0 (like the 'trunc' function NOT 'floor'). This results in incorrect rounding for negative values.\\n\",\"To keep the current behavior, use torch.div(a, b, rounding_mode='trunc'), or for actual floor division, use torch.div(a, b, rounding_mode='floor'). (Triggered internally at  /pytorch/aten/src/ATen/native/BinaryOps.cpp:467.)\\n\",\"  return torch.floor_divide(self, other)\\n\",\"/usr/local/lib/python3.7/dist-packages/torch/_tensor.py:575: UserWarning: floor_divide is deprecated, and will be removed in a future version of pytorch. It currently rounds toward 0 (like the 'trunc' function NOT 'floor'). This results in incorrect rounding for negative values.\\n\",\"To keep the current behavior, use torch.div(a, b, rounding_mode='trunc'), or for actual floor division, use torch.div(a, b, rounding_mode='floor'). (Triggered internally at  /pytorch/aten/src/ATen/native/BinaryOps.cpp:467.)\\n\",\"  return torch.floor_divide(self, other)\\n\",\"/usr/local/lib/python3.7/dist-packages/torch/_tensor.py:575: UserWarning: floor_divide is deprecated, and will be removed in a future version of pytorch. It currently rounds toward 0 (like the 'trunc' function NOT 'floor'). This results in incorrect rounding for negative values.\\n\",\"To keep the current behavior, use torch.div(a, b, rounding_mode='trunc'), or for actual floor division, use torch.div(a, b, rounding_mode='floor'). (Triggered internally at  /pytorch/aten/src/ATen/native/BinaryOps.cpp:467.)\\n\",\"  return torch.floor_divide(self, other)\\n\",\"/usr/local/lib/python3.7/dist-packages/torch/_tensor.py:575: UserWarning: floor_divide is deprecated, and will be removed in a future version of pytorch. It currently rounds toward 0 (like the 'trunc' function NOT 'floor'). This results in incorrect rounding for negative values.\\n\",\"To keep the current behavior, use torch.div(a, b, rounding_mode='trunc'), or for actual floor division, use torch.div(a, b, rounding_mode='floor'). (Triggered internally at  /pytorch/aten/src/ATen/native/BinaryOps.cpp:467.)\\n\",\"  return torch.floor_divide(self, other)\\n\"],\"name\":\"stderr\"},{\"output_type\":\"stream\",\"text\":[\"2 / 2\\n\",\"\\n\",\"====================       INFERENCE - SPEED - RESULT       ====================\\n\",\"--------------------------------------------------------------------------------\\n\",\"          Model Name             Batch Size     Seq Length     Time in s   \\n\",\"--------------------------------------------------------------------------------\\n\",\"          sparseBird                 1              256            0.015     \\n\",\"          sparseBird                 1              512            0.028     \\n\",\"          sparseBird                 1              1024           0.088     \\n\",\"          sparseBird                 1              2048           0.224     \\n\",\"          sparseBird                 1              3072           0.213     \\n\",\"          sparseBird                 1              4096           0.274     \\n\",\"           fullBird                  1              256            0.012     \\n\",\"           fullBird                  1              512            0.021     \\n\",\"           fullBird                  1              1024           0.046     \\n\",\"           fullBird                  1              2048           0.117     \\n\",\"           fullBird                  1              3072           0.221     \\n\",\"           fullBird                  1              4096           0.333     \\n\",\"--------------------------------------------------------------------------------\\n\",\"\\n\",\"====================      INFERENCE - MEMORY - RESULT       ====================\\n\",\"--------------------------------------------------------------------------------\\n\",\"          Model Name             Batch Size     Seq Length    Memory in MB \\n\",\"--------------------------------------------------------------------------------\\n\",\"          sparseBird                 1              256             1517     \\n\",\"          sparseBird                 1              512             1573     \\n\",\"          sparseBird                 1              1024            1799     \\n\",\"          sparseBird                 1              2048            2193     \\n\",\"          sparseBird                 1              3072            2577     \\n\",\"          sparseBird                 1              4096            2943     \\n\",\"           fullBird                  1              256             1517     \\n\",\"           fullBird                  1              512             1573     \\n\",\"           fullBird                  1              1024            1823     \\n\",\"           fullBird                  1              2048            2279     \\n\",\"           fullBird                  1              3072            2977     \\n\",\"           fullBird                  1              4096            3857     \\n\",\"--------------------------------------------------------------------------------\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"thKk3XTjd_t_\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Ph2JVYJr0EnE\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":513},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625430080284,\"user_tz\":-180,\"elapsed\":729,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"66f6de8e-4fc6-4da5-9260-4475c4f809d8\"},\"source\":[\"plotMe(results)\"],\"execution_count\":8,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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\\n\",\"text/plain\":[\"<Figure size 576x576 with 1 Axes>\"]},\"metadata\":{\"tags\":[],\"needs_background\":\"light\"}}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":513},\"id\":\"jvd4EL0QqwDw\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625430084492,\"user_tz\":-180,\"elapsed\":1139,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"96dffe37-5f8d-46e8-f848-a5ae5db9e591\"},\"source\":[\"plotMe(results,\\\"Memory\\\")\"],\"execution_count\":9,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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\\n\",\"text/plain\":[\"<Figure size 576x576 with 1 Axes>\"]},\"metadata\":{\"tags\":[],\"needs_background\":\"light\"}}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"KxyUgJtyRl8p\"},\"source\":[\"# Reformer\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"Ol_CyokoRvjM\"},\"source\":[\"\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"gE7pezLmRvy-\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625430351786,\"user_tz\":-180,\"elapsed\":5790,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"888436d1-53a8-42d2-a512-101cb238f779\"},\"source\":[\"# pip installs\\n\",\"!pip install transformers\\n\",\"!pip install py3nvml\"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: transformers in /usr/local/lib/python3.7/dist-packages (4.8.2)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.45)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.10.3)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Requirement already satisfied: huggingface-hub==0.0.12 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.12)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.5.0)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub==0.0.12->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2021.5.30)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: py3nvml in /usr/local/lib/python3.7/dist-packages (0.2.6)\\n\",\"Requirement already satisfied: xmltodict in /usr/local/lib/python3.7/dist-packages (from py3nvml) (0.12.0)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"azY0UH-zRnM5\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625430353504,\"user_tz\":-180,\"elapsed\":1721,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"from transformers import ReformerConfig, PyTorchBenchmark, PyTorchBenchmarkArguments\"],\"execution_count\":3,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"x8YNnYaHgHX0\"},\"source\":[\"We will tweak some settings for the *Reformer* model to work in full-attention mode. When we set **lsh_attn_chunk_length**  and **local_attn_chunk_length** to 16384 which is maximum length that Reformer can process, in this case, the Reformer model will have no chance for local optimization and will automatically work like the vanilla transformers.\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"hVUsNVcTRreV\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625430355642,\"user_tz\":-180,\"elapsed\":2141,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"fullReformer = ReformerConfig.from_pretrained(\\\"google/reformer-enwik8\\\",\\n\",\"                                               lsh_attn_chunk_length=16384, \\n\",\"                                              local_attn_chunk_length=16384)\\n\",\"sparseReformer = ReformerConfig.from_pretrained(\\\"google/reformer-enwik8\\\")\"],\"execution_count\":4,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"oCw0iHxa99GE\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625430359527,\"user_tz\":-180,\"elapsed\":615,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"1eddbaf8-f0ef-41a7-ae8b-3811edd9d2a9\"},\"source\":[\"!nvidia-smi\"],\"execution_count\":5,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Sun Jul  4 20:25:58 2021       \\n\",\"+-----------------------------------------------------------------------------+\\n\",\"| NVIDIA-SMI 465.27       Driver Version: 460.32.03    CUDA Version: 11.2     |\\n\",\"|-------------------------------+----------------------+----------------------+\\n\",\"| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |\\n\",\"| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |\\n\",\"|                               |                      |               MIG M. |\\n\",\"|===============================+======================+======================|\\n\",\"|   0  Tesla P100-PCIE...  Off  | 00000000:00:04.0 Off |                    0 |\\n\",\"| N/A   57C    P0    29W / 250W |      0MiB / 16280MiB |      0%      Default |\\n\",\"|                               |                      |                  N/A |\\n\",\"+-------------------------------+----------------------+----------------------+\\n\",\"                                                                               \\n\",\"+-----------------------------------------------------------------------------+\\n\",\"| Processes:                                                                  |\\n\",\"|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |\\n\",\"|        ID   ID                                                   Usage      |\\n\",\"|=============================================================================|\\n\",\"|  No running processes found                                                 |\\n\",\"+-----------------------------------------------------------------------------+\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"aB65t-e-wa2l\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625430366083,\"user_tz\":-180,\"elapsed\":837,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"sequence_lengths=[256, 512, 1024, 2048, 4096, 8192, 12000]\\n\",\"models=[\\\"fullReformer\\\",\\\"sparseReformer\\\"]\\n\",\"configs=[eval(e) for e in models]\"],\"execution_count\":6,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"k0eWkgPaQYFk\"},\"source\":[\"Indeed, Reformer can process the sequences up to length of 16384. Due to the accelerator capacity of our environment, the attention matrix does not fit on GPU, and we get CUDA out of memory warning.  \"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"a_xoNs7uSM2h\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625430778315,\"user_tz\":-180,\"elapsed\":409484,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"f7c6ed98-490d-472f-ce03-a2ab299171dc\"},\"source\":[\"benchmark_args = PyTorchBenchmarkArguments(\\n\",\"    sequence_lengths=sequence_lengths,\\n\",\"    batch_sizes=[1],\\n\",\"    models=models)\\n\",\"benchmark = PyTorchBenchmark(\\n\",\"    configs=configs, \\n\",\"    args=benchmark_args)\\n\",\"results = benchmark.run()\"],\"execution_count\":7,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"1 / 2\\n\",\"2 / 2\\n\"],\"name\":\"stdout\"},{\"output_type\":\"stream\",\"text\":[\"/usr/local/lib/python3.7/dist-packages/transformers/models/reformer/modeling_reformer.py:1164: UserWarning: where received a uint8 condition tensor. This behavior is deprecated and will be removed in a future version of PyTorch. Use a boolean condition instead. (Triggered internally at  /pytorch/aten/src/ATen/native/TensorCompare.cpp:255.)\\n\",\"  query_key_dots = torch.where(mask, query_key_dots, mask_value)\\n\",\"/usr/local/lib/python3.7/dist-packages/transformers/models/reformer/modeling_reformer.py:1164: UserWarning: where received a uint8 condition tensor. This behavior is deprecated and will be removed in a future version of PyTorch. Use a boolean condition instead. (Triggered internally at  /pytorch/aten/src/ATen/native/TensorCompare.cpp:255.)\\n\",\"  query_key_dots = torch.where(mask, query_key_dots, mask_value)\\n\"],\"name\":\"stderr\"},{\"output_type\":\"stream\",\"text\":[\"\\n\",\"====================       INFERENCE - SPEED - RESULT       ====================\\n\",\"--------------------------------------------------------------------------------\\n\",\"          Model Name             Batch Size     Seq Length     Time in s   \\n\",\"--------------------------------------------------------------------------------\\n\",\"         fullReformer                1              256            0.019     \\n\",\"         fullReformer                1              512            0.035     \\n\",\"         fullReformer                1              1024           0.073     \\n\",\"         fullReformer                1              2048           0.192     \\n\",\"         fullReformer                1              4096           0.525     \\n\",\"         fullReformer                1              8192           1.722     \\n\",\"         fullReformer                1             12000           3.453     \\n\",\"        sparseReformer               1              256            0.021     \\n\",\"        sparseReformer               1              512            0.045     \\n\",\"        sparseReformer               1              1024           0.081     \\n\",\"        sparseReformer               1              2048           0.161     \\n\",\"        sparseReformer               1              4096            0.29     \\n\",\"        sparseReformer               1              8192           0.563     \\n\",\"        sparseReformer               1             12000           0.852     \\n\",\"--------------------------------------------------------------------------------\\n\",\"\\n\",\"====================      INFERENCE - MEMORY - RESULT       ====================\\n\",\"--------------------------------------------------------------------------------\\n\",\"          Model Name             Batch Size     Seq Length    Memory in MB \\n\",\"--------------------------------------------------------------------------------\\n\",\"         fullReformer                1              256             1531     \\n\",\"         fullReformer                1              512             1573     \\n\",\"         fullReformer                1              1024            1693     \\n\",\"         fullReformer                1              2048            2117     \\n\",\"         fullReformer                1              4096            3797     \\n\",\"         fullReformer                1              8192            8405     \\n\",\"         fullReformer                1             12000           16165     \\n\",\"        sparseReformer               1              256             1531     \\n\",\"        sparseReformer               1              512             1711     \\n\",\"        sparseReformer               1              1024            1891     \\n\",\"        sparseReformer               1              2048            2329     \\n\",\"        sparseReformer               1              4096            3165     \\n\",\"        sparseReformer               1              8192            4823     \\n\",\"        sparseReformer               1             12000            6389     \\n\",\"--------------------------------------------------------------------------------\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"3cI5ksLZUgfi\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":513},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625430828298,\"user_tz\":-180,\"elapsed\":878,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"14f2f8e1-eba8-4762-e067-e530aaf2986c\"},\"source\":[\"plotMe(results)\"],\"execution_count\":8,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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GKVuT83z9c27N5/S+zZu3Jj77ruPoUOH0qNHD9q1awdA3759c/+85557vAypqVx11VWsW7eOvXv3HrJd6MHbfSYkJDBy5EhSU1O54oorqFu3LlOmTOGHH36gVatWAOzevZuqVavmfn3Hjh3ZsmULpUuX5qmnngKOvb3oAStWrKBWrVq5a73fcMMNjBkzhiFDhgAccbq9Z8+euT/3zp07KVOmDGXKlKF48eJs27aNyZMnM3nyZJo399b72blzJ7/99htxcXHUrFmTNm2OubquiEjw69kTunWDg3aILGxhWeJTb5x61M/FlYsjOf3ICV81y9UEoHLJysf8+qOpV68eCxcu5L///S+PPPIInTt3BsDMco858Piuu+7i3nvvpWfPnkydOpXHH38895iDt/u85pprOPfcc/nyyy+55JJLeO2113DOccMNN/D000/nmSMpKYny5cvTr18/HnvsMZ5//vljbi+aX0fb1vTgLU0PPM/KysI5x7Bhw7j11lsP+brVq1drS1MRCW3Jyd6W1ddf72uBQwReEx/ZeSQlo0se8lrJ6JKM7DzylN537dq1lCxZkmuvvZYHHnggdzvSA7O+P/zwQxISEgBIT0+nevXqAIwfn+fuqwD88ccf1K5dm7vvvptLL72UxYsX07lzZz755BM2btwIwJYtW46YhV60aFFGjRrFu+++y5YtW/K1vehZZ53F6tWrc6/bv/fee7Rv3/5k/zro1q0bb731Vu6If82aNbmZRURClnNwyy0waFDAZ57nR1iOxI+lX+N+AAyfMpyU9BTiysUxsvPI3NdP1pIlS3jggQcoUqQI0dHRvPrqq/Tu3ZutW7fSpEkTihcvzoQJEwBvAlufPn2oUKECnTp1Ouqe4x999BHvvfce0dHRVKtWjYcffpiKFSsyYsQIunbtSnZ2NtHR0YwZM4aaNWse8rWnn346ffv2ZcyYMbz00kvceeedNGnShKysLC644IIjthiNiYnh7bffpk+fPmRlZdGqVStuu+22k/776Nq1K8uXL8/9xaV06dK8//77REVFnfR7ioj47s034dtv4ZVXfJmNfriAbUUaKKG0FWl8fDwLFiygcuXKfkcJGcH6bykiQmoqNGwI55wD330HRQrvZPbRtiKNuNPpIiIiJ8w5uPVWyMqCceMKtcCPJeJOpxem1atX+x1BREQKghncdhtceSXU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\\n\",\"text/plain\":[\"<Figure size 576x576 with 1 Axes>\"]},\"metadata\":{\"tags\":[],\"needs_background\":\"light\"}}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":513},\"id\":\"3Cu1pr2-1mbn\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625430833321,\"user_tz\":-180,\"elapsed\":678,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"59382c30-b029-4f8e-8057-6d83e5a3de4f\"},\"source\":[\"plotMe(results,\\\"Memory Footprint\\\")\"],\"execution_count\":9,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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xRfzxBNPnPGzZs2axSWXXELt2rU5cOBA9nwDIiISdqKviJcpA2YnP8qUOafLDhkyhG+++YZRo0ad9XsbN27MokWL+Pnnn5k4cSI//vhjpuePGjWK3r17s2jRIvLly3fG66ekpJx1ppy8noiIZE30FfHNm8/ueAB69OjB6tWrad26NUWKFKF///7HXqtRowZr164N6Dr58uWjdu3abNy4EYCpU6fSqFEj6tSpQ6dOndi7dy/vvfceX3zxBf/4xz/o0qULzjmefPJJatSoQc2aNfn8888Br4XfuHFj2rVrR/Xq1ZkxYwZNmzalffv2VKpUiWeeeYZRo0ZRv359atasyapVqwBITk6mY8eO1KtXj3r16h37heL555/ntttu44orruC2227L8s9KRESyT0SMTj9Js2YnH7vpJrj//jO/d+tWuPHG44/NmJHpW4YOHcrXX3/N9OnTefvttwOOeaIdO3awYsUKmjRpwtatW3nppZf49ttvKVCgAK+++ioDBgzgueee44cffqBt27bceOONjBkzhkWLFvHLL7+wdetW6tWrR5MmTQBYuHAhv//+OxdccAEzZszgl19+ITExkeLFi1OpUiXuuece5s2bx5tvvslbb73FwIEDeeSRR3jssce48sorWb9+Pa1atSIxMRGAJUuW8MMPPwTU+hcRkeCLzCIeZmbNmsWll17KihUrePTRRylTpgwTJ05kyZIlXHHFFQAcPnyYRo0anfTeH374gc6dOxMbG0vp0qVp2rQp8+fPp3DhwtSvX/+46Vr16tWjbNmyAFSuXJmWLVsCULNmTaZPnw7At99+y5IlS469Z/fu3ezduxeAdu3aqYCLiISQyCziZ2g5Z6pkyXN6f65cuUhLSzv2PJApU40bN2bixImsWbOGhg0bctNNN+Gco0WLFnz66adZzlKgQIHjnufJk+fY1zExMceex8TEHLvPnZaWxty5c8mbN+8ZryciIv6KvnviQZaQkMDChQsBrzt7zZo1Ab/3ggsu4JlnnuHVV1+lYcOG/Pjjj6xcuRKAffv2sXz58pPe07hxYz7//HNSU1NJTk5m5syZ1K9fP8v5W7ZsyVtvvXXs+aJFi7J8LRERCa7oK+KlS5/d8bPUsWNHtm/fziWXXMLbb79NlSpVzur9PXr0YObMmezbt48RI0bQuXNnatWqRaNGjVi6dOlJ53fo0IFatWpx6aWXctVVV/Haa69R5hxG2g8aNIgFCxZQq1YtqlevztChQ7N8LRERCS5zzvmd4azUrVvXnbifeGJiItWqVfMpkWQn/V2KSFgqU+bUs5xKl4Y//zzny5vZT865uicej76WuIiISHYLwvTlQKiIi4iIhCkVcRERkTClIi4iIhKmVMRFRETClIq4iIjIuQry9OXTURGPIAkJCdSsWZNatWrRtGlT1q1bl+n5hw4d4uqrr6Z27drHNk4REZGzNG8e/PEHOHfyIxuml2UmKov4qN9GkTAwgZi+MSQMTGDUb2e/fWiwZXW7z+nTp/Prr7/SrFkzXnrppUzP/fnnnwFvVbabb745oOunpqZmKdepOOeOW6JWRCTszJoFDRrA8OG+fHzUFfFRv42i+4TurNu1Dodj3a51dJ/Q/ZwL+b59+7j22mu59NJLqVGjBp9//jkJCQk89dRT1KxZk/r16x9bQnXChAk0aNCAyy67jKuvvprN6fMIT9zuc/HixdSvX5/atWtTq1YtVqxYAcDHH3987Ph99913ysLaqFGjY1uanmp70S1bttC1a1fmz59P7dq1WbVqFdOmTeOyyy6jZs2a3HXXXRw6dAjwWvhPP/00derU4csvvyQhIYHevXtTu3Zt6taty8KFC2nVqhWVK1c+boW3119/nXr16lGrVi369OkDwNq1a6latSq33347NWrUYMOGDef0cxcR8c3hw3DffRAfD127+pPBORdWj8svv9ydaMmSJcc9b/pB05Meg+cNds45V2FABcfznPQo8WoJ55xzyfuST3pvIEaPHu3uueeeY8937tzp4uPj3UsvveScc27kyJHu2muvdc45t337dpeWluacc+7dd991jz/+uHPOuT59+rg6deq4/fv3O+ece/DBB93HH3/snHPu0KFDbv/+/W7JkiWubdu27vDhw84553r27OlGjhzpnHMuPj7eJScnO+ece+SRR9ywYcOcc8517tzZzZo1yznn3Lp169zFF1/snHNu+vTpxzIdOHDAlS9f3i1btsw559xtt93m/vWvfx277quvvnrse4uPj3dDhgxxzjn36KOPupo1a7rdu3e7LVu2uPPOO88559yUKVPcvffe69LS0lxqaqq79tpr3ffff+/WrFnjzMzNmTPnlD/HE/8uRURC1osvep3mkyYF/aOABe4UNTEydzHLRNLupFMe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\\n\",\"text/plain\":[\"<Figure size 576x576 with 1 Axes>\"]},\"metadata\":{\"tags\":[],\"needs_background\":\"light\"}}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"HWXdKvIZWQ08\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"4HLD9LJBYpEc\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"ARHAgjt2YrNE\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH09/CH09a_XLM_and_multilingual_BERT.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH09a_XLM_and_multilingual_BERT.ipynb\",\"provenance\":[],\"authorship_tag\":\"ABX9TyMY54LGHqp/0JHSPJcyYuTZ\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"},\"accelerator\":\"GPU\"},\"cells\":[{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"PdIoF7TKIpJW\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345757202,\"user_tz\":-180,\"elapsed\":2828,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"488d1e86-190c-4da1-d8c6-1ecc294f2d8e\"},\"source\":[\"!pip install transformers[sentencepiece]\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: transformers[sentencepiece] in /usr/local/lib/python3.7/dist-packages (4.8.2)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (20.9)\\n\",\"Requirement already satisfied: huggingface-hub==0.0.12 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (0.0.12)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (2.23.0)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (0.0.45)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (2019.12.20)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (4.41.1)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (4.5.0)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (3.13)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (3.0.12)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (1.19.5)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (0.10.3)\\n\",\"Requirement already satisfied: protobuf; extra == \\\"sentencepiece\\\" in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (3.12.4)\\n\",\"Requirement already satisfied: sentencepiece==0.1.91; extra == \\\"sentencepiece\\\" in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (0.1.91)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers[sentencepiece]) (2.4.7)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub==0.0.12->transformers[sentencepiece]) (3.7.4.3)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers[sentencepiece]) (1.24.3)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers[sentencepiece]) (2.10)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers[sentencepiece]) (3.0.4)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers[sentencepiece]) (2021.5.30)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers[sentencepiece]) (1.15.0)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers[sentencepiece]) (1.0.1)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers[sentencepiece]) (7.1.2)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers[sentencepiece]) (3.4.1)\\n\",\"Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from protobuf; extra == \\\"sentencepiece\\\"->transformers[sentencepiece]) (57.0.0)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"G-YNZD9II5G-\"},\"source\":[\"## multilingual BERT\"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"_ryKYBNMJLy8\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345769219,\"user_tz\":-180,\"elapsed\":8517,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"f117144b-15a5-453f-de10-72c7eeec4edc\"},\"source\":[\"from transformers import pipeline \\n\",\"unmasker = pipeline('fill-mask', model='bert-base-multilingual-uncased') \"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Some weights of the model checkpoint at bert-base-multilingual-uncased were not used when initializing BertForMaskedLM: ['cls.seq_relationship.bias', 'cls.seq_relationship.weight']\\n\",\"- This IS expected if you are initializing BertForMaskedLM from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing BertForMaskedLM from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\"],\"name\":\"stderr\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"DCE-chAlJbx2\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345772090,\"user_tz\":-180,\"elapsed\":768,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"3e820c2c-ddc9-4ad5-9eaa-a44551871eb4\"},\"source\":[\"sentences = [ \\n\",\"\\\"Transformers changed the [MASK] language processing\\\", \\n\",\"\\\"Transformerlar [MASK] dil işlemeyi değiştirdiler\\\", \\n\",\"\\\"ترنسفرمرها پردازش زبان [MASK] را تغییر دادند\\\" \\n\",\"] \\n\",\"for sentence in sentences: \\n\",\"    print(sentence) \\n\",\"    print(unmasker(sentence)[0][\\\"sequence\\\"]) \\n\",\"    print(\\\"=\\\"*50)\"],\"execution_count\":3,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Transformers changed the [MASK] language processing\\n\",\"transformers changed the english language processing\\n\",\"==================================================\\n\",\"Transformerlar [MASK] dil işlemeyi değiştirdiler\\n\",\"transformerlar bu dil islemeyi degistirdiler\\n\",\"==================================================\\n\",\"ترنسفرمرها پردازش زبان [MASK] را تغییر دادند\\n\",\"ترنسفرمرها پردازش زبانی را تغییر دادند\\n\",\"==================================================\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"a5C5IMAdJQzU\"},\"source\":[\"## XLM\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"-aUgA59EJWsN\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345784474,\"user_tz\":-180,\"elapsed\":7919,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"unmasker = pipeline('fill-mask', model='xlm-roberta-base')\"],\"execution_count\":4,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"mEgyVHirJllN\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345785918,\"user_tz\":-180,\"elapsed\":340,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"sentences = [ \\n\",\"\\\"Transformers changed the <mask> language processing\\\", \\n\",\"\\\"Transformerlar <mask> dil işlemeyi değiştirdiler\\\", \\n\",\"\\\"ترنسفرمرها پردازش زبان <mask> را تغییر دادند\\\" \\n\",\"]\"],\"execution_count\":5,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"fXNgWdr-JqY3\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345787854,\"user_tz\":-180,\"elapsed\":786,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"5bb99724-494d-47f8-95dd-c82a3ad51401\"},\"source\":[\"for sentence in sentences: \\n\",\"  print(sentence) \\n\",\"  print(unmasker(sentence)[0][\\\"sequence\\\"]) \\n\",\"  print(\\\"=\\\"*50) \"],\"execution_count\":6,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Transformers changed the <mask> language processing\\n\",\"Transformers changed the human language processing\\n\",\"==================================================\\n\",\"Transformerlar <mask> dil işlemeyi değiştirdiler\\n\",\"Transformerlar, dil işlemeyi değiştirdiler\\n\",\"==================================================\\n\",\"ترنسفرمرها پردازش زبان <mask> را تغییر دادند\\n\",\"ترنسفرمرها پردازش زبانی را تغییر دادند\\n\",\"==================================================\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"A7tNGZsqJrik\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345792952,\"user_tz\":-180,\"elapsed\":284,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"e072d537-9e2a-4a48-8360-27a322205a34\"},\"source\":[\"print(unmasker(\\\"Transformers changed the natural language processing. </s> Transformerlar <mask> dil işlemeyi değiştirdiler.\\\")[0][\\\"sequence\\\"]) \"],\"execution_count\":7,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Transformers changed the natural language processing. Transformerlar doğal dil işlemeyi değiştirdiler.\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"wjEP0xQ3Jz3p\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625345795856,\"user_tz\":-180,\"elapsed\":741,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"7e947d99-2e1b-42d4-9276-c74981c4e6ff\"},\"source\":[\"print(unmasker(\\\"Earth is a great place to live in. </s> زمین جای خوبی برای <mask> کردن است.\\\")[0][\\\"sequence\\\"]) \"],\"execution_count\":8,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Earth is a great place to live in. زمین جای خوبی برای زندگی کردن است.\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"HpUTAlOxJ2ER\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH09/CH09b_Cross_lingual_text_similarity.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH09b_Cross_lingual_text_similarity.ipynb\",\"provenance\":[],\"authorship_tag\":\"ABX9TyMLbAx3Cguhj7T7K+wfRy2T\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"}},\"cells\":[{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"9mUeOLEgKmaR\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625346210660,\"user_tz\":-180,\"elapsed\":3389,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"3edbc600-8a28-4dea-f7cd-6d2140762bda\"},\"source\":[\"!pip install sentence-transformers\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: sentence-transformers in /usr/local/lib/python3.7/dist-packages (2.0.0)\\n\",\"Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.19.5)\\n\",\"Requirement already satisfied: torchvision in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.10.0+cu102)\\n\",\"Requirement already satisfied: nltk in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (3.2.5)\\n\",\"Requirement already satisfied: torch>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.9.0+cu102)\\n\",\"Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.4.1)\\n\",\"Requirement already satisfied: transformers<5.0.0,>=4.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (4.8.2)\\n\",\"Requirement already satisfied: huggingface-hub in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.0.13)\\n\",\"Requirement already satisfied: sentencepiece in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.1.96)\\n\",\"Requirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (4.41.1)\\n\",\"Requirement already satisfied: scikit-learn in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.22.2.post1)\\n\",\"Requirement already satisfied: pillow>=5.3.0 in /usr/local/lib/python3.7/dist-packages (from torchvision->sentence-transformers) (7.1.2)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from nltk->sentence-transformers) (1.15.0)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from torch>=1.6.0->sentence-transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (3.13)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (0.10.3)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (2019.12.20)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (2.23.0)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (20.9)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (0.0.45)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (3.0.12)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (4.5.0)\\n\",\"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from scikit-learn->sentence-transformers) (1.0.1)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers<5.0.0,>=4.6.0->sentence-transformers) (1.24.3)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers<5.0.0,>=4.6.0->sentence-transformers) (2.10)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers<5.0.0,>=4.6.0->sentence-transformers) (2021.5.30)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers<5.0.0,>=4.6.0->sentence-transformers) (3.0.4)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers<5.0.0,>=4.6.0->sentence-transformers) (2.4.7)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers<5.0.0,>=4.6.0->sentence-transformers) (7.1.2)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers<5.0.0,>=4.6.0->sentence-transformers) (3.4.1)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"cRtiOx4PLXIz\"},\"source\":[\"## XLM-R\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"RMvCdv1qK9cR\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625346241178,\"user_tz\":-180,\"elapsed\":27635,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from sentence_transformers import SentenceTransformer, util \\n\",\"model = SentenceTransformer(\\\"stsb-xlm-r-multilingual\\\") \"],\"execution_count\":2,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"pDyTZwnNKwhL\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625346245695,\"user_tz\":-180,\"elapsed\":340,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"azeri_sentences = ['Pişik çöldə oturur', \\n\",\"              'Bir adam gitara çalır', \\n\",\"              'Mən makaron sevirəm', \\n\",\"              'Yeni film möhtəşəmdir', \\n\",\"              'Pişik bağda oynayır', \\n\",\"              'Bir qadın televizora baxır', \\n\",\"              'Yeni film çox möhtəşəmdir', \\n\",\"              'Pizzanı sevirsən?'] \\n\",\"\\n\",\"english_sentences = ['The cat sits outside', \\n\",\"             'A man is playing guitar', \\n\",\"             'I love pasta', \\n\",\"             'The new movie is awesome',\\n\",\"             'The cat plays in the garden', \\n\",\"             'A woman watches TV', \\n\",\"             'The new movie is so great', \\n\",\"             'Do you like pizza?'] \"],\"execution_count\":3,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"N2VzRqG-K5eb\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625346247899,\"user_tz\":-180,\"elapsed\":716,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"azeri_representation = model.encode(azeri_sentences) \\n\",\"english_representation = model.encode(english_sentences) \"],\"execution_count\":4,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"E3-R5yqKK8FO\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625346249466,\"user_tz\":-180,\"elapsed\":347,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"results = [] \\n\",\"\\n\",\"for azeri_sentence, query in zip(azeri_sentences, azeri_representation): \\n\",\"  id_, score = util.semantic_search( \\n\",\"              query,english_representation)[0][0].values() \\n\",\"  results.append({ \\n\",\"      \\\"azeri\\\": azeri_sentence, \\n\",\"      \\\"english\\\": english_sentences[id_], \\n\",\"      \\\"score\\\": round(score, 4) \\n\",\"  }) \"],\"execution_count\":5,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":300},\"id\":\"qa78t6TNLIM6\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625346252759,\"user_tz\":-180,\"elapsed\":388,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"abe320d9-8611-4f98-e7a4-b2345195da11\"},\"source\":[\"import pandas as pd \\n\",\"pd.DataFrame(results) \"],\"execution_count\":6,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>azeri</th>\\n\",\"      <th>english</th>\\n\",\"      <th>score</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>Pişik çöldə oturur</td>\\n\",\"      <td>The cat sits outside</td>\\n\",\"      <td>0.5969</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>Bir adam gitara çalır</td>\\n\",\"      <td>A man is playing guitar</td>\\n\",\"      <td>0.9939</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>Mən makaron sevirəm</td>\\n\",\"      <td>I love pasta</td>\\n\",\"      <td>0.6878</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>Yeni film möhtəşəmdir</td>\\n\",\"      <td>The new movie is awesome</td>\\n\",\"      <td>0.9818</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>Pişik bağda oynayır</td>\\n\",\"      <td>The cat plays in the garden</td>\\n\",\"      <td>0.2900</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5</th>\\n\",\"      <td>Bir qadın televizora baxır</td>\\n\",\"      <td>A woman watches TV</td>\\n\",\"      <td>0.9946</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>6</th>\\n\",\"      <td>Yeni film çox möhtəşəmdir</td>\\n\",\"      <td>The new movie is awesome</td>\\n\",\"      <td>0.9818</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>7</th>\\n\",\"      <td>Pizzanı sevirsən?</td>\\n\",\"      <td>Do you like pizza?</td>\\n\",\"      <td>0.9894</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"                        azeri                      english   score\\n\",\"0          Pişik çöldə oturur         The cat sits outside  0.5969\\n\",\"1       Bir adam gitara çalır      A man is playing guitar  0.9939\\n\",\"2         Mən makaron sevirəm                 I love pasta  0.6878\\n\",\"3       Yeni film möhtəşəmdir     The new movie is awesome  0.9818\\n\",\"4         Pişik bağda oynayır  The cat plays in the garden  0.2900\\n\",\"5  Bir qadın televizora baxır           A woman watches TV  0.9946\\n\",\"6   Yeni film çox möhtəşəmdir     The new movie is awesome  0.9818\\n\",\"7           Pizzanı sevirsən?           Do you like pizza?  0.9894\"]},\"metadata\":{\"tags\":[]},\"execution_count\":6}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"epBehlCKLa_x\"},\"source\":[\"## LaBSE\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Xp0xreQ2LKTN\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625346278860,\"user_tz\":-180,\"elapsed\":22382,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"model = SentenceTransformer(\\\"LaBSE\\\")\"],\"execution_count\":7,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"juktI7AaLNPT\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625346284857,\"user_tz\":-180,\"elapsed\":698,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"azeri_representation = model.encode(azeri_sentences) \\n\",\"english_representation = model.encode(english_sentences) \"],\"execution_count\":8,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"MSO3bJNfLR5n\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625346287364,\"user_tz\":-180,\"elapsed\":346,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"results = [] \\n\",\"\\n\",\"for azeri_sentence, query in zip(azeri_sentences, azeri_representation): \\n\",\"  id_, score = util.semantic_search( \\n\",\"              query,english_representation)[0][0].values() \\n\",\"  results.append({ \\n\",\"      \\\"azeri\\\": azeri_sentence, \\n\",\"      \\\"english\\\": english_sentences[id_], \\n\",\"      \\\"score\\\": round(score, 4) \\n\",\"  }) \"],\"execution_count\":9,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":300},\"id\":\"mut9-TUtLTvR\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625346288766,\"user_tz\":-180,\"elapsed\":274,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"e9dc65d7-424d-478a-c9c0-333b4acc2f35\"},\"source\":[\"import pandas as pd \\n\",\"pd.DataFrame(results) \"],\"execution_count\":10,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>azeri</th>\\n\",\"      <th>english</th>\\n\",\"      <th>score</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>Pişik çöldə oturur</td>\\n\",\"      <td>The cat sits outside</td>\\n\",\"      <td>0.8686</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>Bir adam gitara çalır</td>\\n\",\"      <td>A man is playing guitar</td>\\n\",\"      <td>0.9143</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>Mən makaron sevirəm</td>\\n\",\"      <td>I love pasta</td>\\n\",\"      <td>0.8888</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>Yeni film möhtəşəmdir</td>\\n\",\"      <td>The new movie is awesome</td>\\n\",\"      <td>0.9396</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>Pişik bağda oynayır</td>\\n\",\"      <td>The cat plays in the garden</td>\\n\",\"      <td>0.8957</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>5</th>\\n\",\"      <td>Bir qadın televizora baxır</td>\\n\",\"      <td>A woman watches TV</td>\\n\",\"      <td>0.9359</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>6</th>\\n\",\"      <td>Yeni film çox möhtəşəmdir</td>\\n\",\"      <td>The new movie is so great</td>\\n\",\"      <td>0.9258</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>7</th>\\n\",\"      <td>Pizzanı sevirsən?</td>\\n\",\"      <td>Do you like pizza?</td>\\n\",\"      <td>0.9366</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"                        azeri                      english   score\\n\",\"0          Pişik çöldə oturur         The cat sits outside  0.8686\\n\",\"1       Bir adam gitara çalır      A man is playing guitar  0.9143\\n\",\"2         Mən makaron sevirəm                 I love pasta  0.8888\\n\",\"3       Yeni film möhtəşəmdir     The new movie is awesome  0.9396\\n\",\"4         Pişik bağda oynayır  The cat plays in the garden  0.8957\\n\",\"5  Bir qadın televizora baxır           A woman watches TV  0.9359\\n\",\"6   Yeni film çox möhtəşəmdir    The new movie is so great  0.9258\\n\",\"7           Pizzanı sevirsən?           Do you like pizza?  0.9366\"]},\"metadata\":{\"tags\":[]},\"execution_count\":10}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"mtkzpj0cLVXu\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH09/CH09c_Visualizing_cross-lingual_textual_similarity.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"accelerator\":\"GPU\",\"colab\":{\"name\":\"Ch09b_Visualizing_cross-lingual_textual_similarity.ipynb\",\"provenance\":[],\"collapsed_sections\":[],\"authorship_tag\":\"ABX9TyNviMpipD/+A+N0PyqNbJac\"},\"kernelspec\":{\"display_name\":\"Python 3\",\"name\":\"python3\"},\"language_info\":{\"name\":\"python\"},\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"805745b7050c4eb5a3b1c1ab1d545d92\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_4f346291a3e54cb0b31a9eb858bde1eb\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_b3f09a1ec12c453893f2f79d1826689e\",\"IPY_MODEL_0479d01737874295afcfd69a3f1b9322\"]}},\"4f346291a3e54cb0b31a9eb858bde1eb\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"b3f09a1ec12c453893f2f79d1826689e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_9aaa6e33fce44ea29a7ecd0ae510525c\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":8972,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":8972,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_ffa39b09287743a3a470a762e30e4936\"}},\"0479d01737874295afcfd69a3f1b9322\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_91a6d981e97d4c0597beaea572cad19f\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 40.3k/? [00:00&lt;00:00, 105kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_59db3d45cd4e4d47bd664960193c83ef\"}},\"9aaa6e33fce44ea29a7ecd0ae510525c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"ffa39b09287743a3a470a762e30e4936\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"91a6d981e97d4c0597beaea572cad19f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"59db3d45cd4e4d47bd664960193c83ef\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"bb58b489ccb84f7e8c9b68ceaf7642b9\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_125c308d27f44f37b890a538a23e97d5\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_23ef7be084c14a2bb67c48e975c939f1\",\"IPY_MODEL_939aad244f3c43d390a8a04cce9e1ebf\"]}},\"125c308d27f44f37b890a538a23e97d5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"23ef7be084c14a2bb67c48e975c939f1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_7ef6b5934dd04eb688b913ddd42ecf46\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":22940,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":22940,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_2998931bb5da44c8a0fa6a6989af8244\"}},\"939aad244f3c43d390a8a04cce9e1ebf\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_99e312fff5c542a6929fa82b1b0d8c77\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 586k/? [00:00&lt;00:00, 5.06MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_015809c7086549feb1db57145888464c\"}},\"7ef6b5934dd04eb688b913ddd42ecf46\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"2998931bb5da44c8a0fa6a6989af8244\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"99e312fff5c542a6929fa82b1b0d8c77\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"015809c7086549feb1db57145888464c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"28adeefe324d446f96f10dbe815664d3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_08647e0650654ef38a11805f8810fd75\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_3a7e45fecffa4a7383414179c4b8e009\",\"IPY_MODEL_cfa87df1f2144f719e605e9510cec7ea\"]}},\"08647e0650654ef38a11805f8810fd75\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"3a7e45fecffa4a7383414179c4b8e009\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_61fb4137cedb479aa8c5ebf9d8e5c1eb\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":17229,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":17229,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_eb5b1851eb0b42b988de0741b5d5f0e3\"}},\"cfa87df1f2144f719e605e9510cec7ea\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_145c3a4d128249e1aa3671f4746571a9\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 58.8k/? [00:00&lt;00:00, 97.1kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c1725dc41666442eaa761be301ca730e\"}},\"61fb4137cedb479aa8c5ebf9d8e5c1eb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"eb5b1851eb0b42b988de0741b5d5f0e3\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"145c3a4d128249e1aa3671f4746571a9\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"c1725dc41666442eaa761be301ca730e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"4c9112485fe54311a1397a6d738622fc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_093fbc47f0c240eabdb2e7f155777cab\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_d1387370c4b6452eba815b5dc8fcf299\",\"IPY_MODEL_f9818055db844a84a2e8cd79b852f5f6\"]}},\"093fbc47f0c240eabdb2e7f155777cab\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d1387370c4b6452eba815b5dc8fcf299\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_5a33ddf86bb74e1996a47ca3713d7225\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":13294,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":13294,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_99bd6fbe13164ccf98bfecdca95b317c\"}},\"f9818055db844a84a2e8cd79b852f5f6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_a072e8543cf5427c9d17d82dd440bc93\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 33.6k/? [00:00&lt;00:00, 342kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_2d346117e88f4915acb5df375e45bdc2\"}},\"5a33ddf86bb74e1996a47ca3713d7225\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"99bd6fbe13164ccf98bfecdca95b317c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a072e8543cf5427c9d17d82dd440bc93\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"2d346117e88f4915acb5df375e45bdc2\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"2f6256f250ed4fe5958649cd513e6f85\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_d493cb4261bf4825ae65e5d2892684cb\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_d79d9d306b34483f9afdaebd0252f519\",\"IPY_MODEL_fc2f36d53ee7438da3331342c68eaf7e\"]}},\"d493cb4261bf4825ae65e5d2892684cb\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d79d9d306b34483f9afdaebd0252f519\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_d58881e26c834406a4cb569706640799\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_da3e5e792e6f4c52a45fee18965d0d9a\"}},\"fc2f36d53ee7438da3331342c68eaf7e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_e99fd1bbae45409583f19e106b76e6b3\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1000/0 [00:03&lt;00:00,  3.35s/ examples]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_37a1b5add2f249e394c2cbc929fb1b23\"}},\"d58881e26c834406a4cb569706640799\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"da3e5e792e6f4c52a45fee18965d0d9a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e99fd1bbae45409583f19e106b76e6b3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"37a1b5add2f249e394c2cbc929fb1b23\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"4eecd76780234044acb7327cff218450\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_e4cec86096bf4ffcba63c3ea17085008\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_91d97c3630ac406ea53991a4207dacd9\",\"IPY_MODEL_51586e30593a43a6b593c1e6093a9151\"]}},\"e4cec86096bf4ffcba63c3ea17085008\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"91d97c3630ac406ea53991a4207dacd9\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_054e549d7da94567a22ed357f0682a3f\",\"_dom_classes\":[],\"description\":\"100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1013951149,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1013951149,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_1d9163a6593a4e3d8df11c778efa889f\"}},\"51586e30593a43a6b593c1e6093a9151\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_3d9f29708f0148bfb29a6df8c7c2c400\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1.01G/1.01G [01:32&lt;00:00, 11.0MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a84a87692b5c43b99a38e1487d32bf80\"}},\"054e549d7da94567a22ed357f0682a3f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"1d9163a6593a4e3d8df11c778efa889f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"3d9f29708f0148bfb29a6df8c7c2c400\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"a84a87692b5c43b99a38e1487d32bf80\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}}},\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"2VixvLMw87TF\"},\"source\":[\"# Visualizing cross-lingual textual similarity \"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"F5cQP2tgH4as\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1623054610853,\"user_tz\":-180,\"elapsed\":10674,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"b2c67a02-ece5-4468-e11e-5dea47d23928\"},\"source\":[\"!pip install sentence_transformers datasets transformers umap-learn\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Collecting sentence_transformers\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/cc/75/df441011cd1726822b70fbff50042adb4860e9327b99b346154ead704c44/sentence-transformers-1.2.0.tar.gz (81kB)\\n\",\"\\u001b[K     |████████████████████████████████| 81kB 5.5MB/s \\n\",\"\\u001b[?25hCollecting datasets\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/94/f8/ff7cd6e3b400b33dcbbfd31c6c1481678a2b2f669f521ad20053009a9aa3/datasets-1.7.0-py3-none-any.whl (234kB)\\n\",\"\\u001b[K     |████████████████████████████████| 235kB 16.2MB/s \\n\",\"\\u001b[?25hCollecting transformers\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d5/43/cfe4ee779bbd6a678ac6a97c5a5cdeb03c35f9eaebbb9720b036680f9a2d/transformers-4.6.1-py3-none-any.whl (2.2MB)\\n\",\"\\u001b[K     |████████████████████████████████| 2.3MB 47.5MB/s \\n\",\"\\u001b[?25hCollecting umap-learn\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/69/85e7f950bb75792ad5d666d86c5f3e62eedbb942848e7e3126513af9999c/umap-learn-0.5.1.tar.gz (80kB)\\n\",\"\\u001b[K     |████████████████████████████████| 81kB 12.1MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from sentence_transformers) (4.41.1)\\n\",\"Requirement already satisfied: torch>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence_transformers) (1.8.1+cu101)\\n\",\"Requirement already satisfied: torchvision in /usr/local/lib/python3.7/dist-packages (from sentence_transformers) (0.9.1+cu101)\\n\",\"Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from sentence_transformers) (1.19.5)\\n\",\"Requirement already satisfied: scikit-learn in /usr/local/lib/python3.7/dist-packages (from sentence_transformers) (0.22.2.post1)\\n\",\"Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (from sentence_transformers) (1.4.1)\\n\",\"Requirement already satisfied: nltk in /usr/local/lib/python3.7/dist-packages (from sentence_transformers) (3.2.5)\\n\",\"Collecting sentencepiece\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/f5/99/e0808cb947ba10f575839c43e8fafc9cc44e4a7a2c8f79c60db48220a577/sentencepiece-0.1.95-cp37-cp37m-manylinux2014_x86_64.whl (1.2MB)\\n\",\"\\u001b[K     |████████████████████████████████| 1.2MB 40.6MB/s \\n\",\"\\u001b[?25hCollecting huggingface-hub<0.1.0\\n\",\"  Downloading https://files.pythonhosted.org/packages/32/a1/7c5261396da23ec364e296a4fb8a1cd6a5a2ff457215c6447038f18c0309/huggingface_hub-0.0.9-py3-none-any.whl\\n\",\"Requirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from datasets) (0.3.3)\\n\",\"Requirement already satisfied: pyarrow<4.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (3.0.0)\\n\",\"Requirement already satisfied: requests>=2.19.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (2.23.0)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from datasets) (20.9)\\n\",\"Requirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from datasets) (1.1.5)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from datasets) (4.0.1)\\n\",\"Collecting xxhash\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/7d/4f/0a862cad26aa2ed7a7cd87178cbbfa824fc1383e472d63596a0d018374e7/xxhash-2.0.2-cp37-cp37m-manylinux2010_x86_64.whl (243kB)\\n\",\"\\u001b[K     |████████████████████████████████| 245kB 56.1MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: multiprocess in /usr/local/lib/python3.7/dist-packages (from datasets) (0.70.11.1)\\n\",\"Collecting fsspec\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/bc/52/816d1a3a599176057bf29dfacb1f8fadb61d35fbd96cb1bab4aaa7df83c0/fsspec-2021.5.0-py3-none-any.whl (111kB)\\n\",\"\\u001b[K     |████████████████████████████████| 112kB 55.7MB/s \\n\",\"\\u001b[?25hCollecting sacremoses\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/ee/67241dc87f266093c533a2d4d3d69438e57d7a90abb216fa076e7d475d4a/sacremoses-0.0.45-py3-none-any.whl (895kB)\\n\",\"\\u001b[K     |████████████████████████████████| 901kB 36.7MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Collecting tokenizers<0.11,>=0.10.1\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d4/e2/df3543e8ffdab68f5acc73f613de9c2b155ac47f162e725dcac87c521c11/tokenizers-0.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.3MB)\\n\",\"\\u001b[K     |████████████████████████████████| 3.3MB 40.3MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: numba>=0.49 in /usr/local/lib/python3.7/dist-packages (from umap-learn) (0.51.2)\\n\",\"Collecting pynndescent>=0.5\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/af/65/8189298dd3a05bbad716ee8e249764ff8800e365d8dc652ad2192ca01b4a/pynndescent-0.5.2.tar.gz (1.1MB)\\n\",\"\\u001b[K     |████████████████████████████████| 1.2MB 42.7MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from torch>=1.6.0->sentence_transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: pillow>=4.1.1 in /usr/local/lib/python3.7/dist-packages (from torchvision->sentence_transformers) (7.1.2)\\n\",\"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from scikit-learn->sentence_transformers) (1.0.1)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from nltk->sentence_transformers) (1.15.0)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (3.0.4)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (1.24.3)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (2.10)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (2020.12.5)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->datasets) (2.4.7)\\n\",\"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2018.9)\\n\",\"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2.8.1)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->datasets) (3.4.1)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: llvmlite<0.35,>=0.34.0.dev0 in /usr/local/lib/python3.7/dist-packages (from numba>=0.49->umap-learn) (0.34.0)\\n\",\"Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from numba>=0.49->umap-learn) (57.0.0)\\n\",\"Building wheels for collected packages: sentence-transformers, umap-learn, pynndescent\\n\",\"  Building wheel for sentence-transformers (setup.py) ... \\u001b[?25l\\u001b[?25hdone\\n\",\"  Created wheel for sentence-transformers: filename=sentence_transformers-1.2.0-cp37-none-any.whl size=123339 sha256=facdd051b84d2c2ce0dcebab857c634516c5d595f51d37a6b0126af51fd56f8b\\n\",\"  Stored in directory: /root/.cache/pip/wheels/0f/06/f7/faaa96fdda87462b4fd5c47b343340e9d5531ef70d0eef8242\\n\",\"  Building wheel for umap-learn (setup.py) ... \\u001b[?25l\\u001b[?25hdone\\n\",\"  Created wheel for umap-learn: filename=umap_learn-0.5.1-cp37-none-any.whl size=76569 sha256=ff2183720276076a2f587551d22f98afc8fcc59b1106201390b9f243d5e41efe\\n\",\"  Stored in directory: /root/.cache/pip/wheels/ad/df/d5/a3691296ff779f25cd1cf415a3af954b987fb53111e3392cf4\\n\",\"  Building wheel for pynndescent (setup.py) ... \\u001b[?25l\\u001b[?25hdone\\n\",\"  Created wheel for pynndescent: filename=pynndescent-0.5.2-cp37-none-any.whl size=51362 sha256=8507438637dc7671b9d26d7145c88572629a8da22e567de55657e2d5e2a76169\\n\",\"  Stored in directory: /root/.cache/pip/wheels/ba/52/4e/4c28d04d144a28f89e2575fb63628df6e6d49b56c5ddd0c74e\\n\",\"Successfully built sentence-transformers umap-learn pynndescent\\n\",\"\\u001b[31mERROR: transformers 4.6.1 has requirement huggingface-hub==0.0.8, but you'll have huggingface-hub 0.0.9 which is incompatible.\\u001b[0m\\n\",\"Installing collected packages: sacremoses, tokenizers, huggingface-hub, transformers, sentencepiece, sentence-transformers, xxhash, fsspec, datasets, pynndescent, umap-learn\\n\",\"Successfully installed datasets-1.7.0 fsspec-2021.5.0 huggingface-hub-0.0.9 pynndescent-0.5.2 sacremoses-0.0.45 sentence-transformers-1.2.0 sentencepiece-0.1.95 tokenizers-0.10.3 transformers-4.6.1 umap-learn-0.5.1 xxhash-2.0.2\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"3JmYGWL4WzTQ\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"K8vsmcDDWEkT\"},\"source\":[\"Tatoeba is a collection of sentences and translations.\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"z4LxAo4kH853\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":669,\"referenced_widgets\":[\"805745b7050c4eb5a3b1c1ab1d545d92\",\"4f346291a3e54cb0b31a9eb858bde1eb\",\"b3f09a1ec12c453893f2f79d1826689e\",\"0479d01737874295afcfd69a3f1b9322\",\"9aaa6e33fce44ea29a7ecd0ae510525c\",\"ffa39b09287743a3a470a762e30e4936\",\"91a6d981e97d4c0597beaea572cad19f\",\"59db3d45cd4e4d47bd664960193c83ef\",\"bb58b489ccb84f7e8c9b68ceaf7642b9\",\"125c308d27f44f37b890a538a23e97d5\",\"23ef7be084c14a2bb67c48e975c939f1\",\"939aad244f3c43d390a8a04cce9e1ebf\",\"7ef6b5934dd04eb688b913ddd42ecf46\",\"2998931bb5da44c8a0fa6a6989af8244\",\"99e312fff5c542a6929fa82b1b0d8c77\",\"015809c7086549feb1db57145888464c\",\"28adeefe324d446f96f10dbe815664d3\",\"08647e0650654ef38a11805f8810fd75\",\"3a7e45fecffa4a7383414179c4b8e009\",\"cfa87df1f2144f719e605e9510cec7ea\",\"61fb4137cedb479aa8c5ebf9d8e5c1eb\",\"eb5b1851eb0b42b988de0741b5d5f0e3\",\"145c3a4d128249e1aa3671f4746571a9\",\"c1725dc41666442eaa761be301ca730e\",\"4c9112485fe54311a1397a6d738622fc\",\"093fbc47f0c240eabdb2e7f155777cab\",\"d1387370c4b6452eba815b5dc8fcf299\",\"f9818055db844a84a2e8cd79b852f5f6\",\"5a33ddf86bb74e1996a47ca3713d7225\",\"99bd6fbe13164ccf98bfecdca95b317c\",\"a072e8543cf5427c9d17d82dd440bc93\",\"2d346117e88f4915acb5df375e45bdc2\",\"2f6256f250ed4fe5958649cd513e6f85\",\"d493cb4261bf4825ae65e5d2892684cb\",\"d79d9d306b34483f9afdaebd0252f519\",\"fc2f36d53ee7438da3331342c68eaf7e\",\"d58881e26c834406a4cb569706640799\",\"da3e5e792e6f4c52a45fee18965d0d9a\",\"e99fd1bbae45409583f19e106b76e6b3\",\"37a1b5add2f249e394c2cbc929fb1b23\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1623054626897,\"user_tz\":-180,\"elapsed\":6855,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"e10e4112-df4c-4cf3-bc19-f500e7efb6b3\"},\"source\":[\"from datasets import load_dataset\\n\",\"import pandas as pd\\n\",\"data=load_dataset(\\\"xtreme\\\",\\\"tatoeba.rus\\\", split=\\\"validation\\\")\\n\",\"pd.DataFrame(data)[[\\\"source_sentence\\\",\\\"target_sentence\\\"]]\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"805745b7050c4eb5a3b1c1ab1d545d92\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=8972.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"bb58b489ccb84f7e8c9b68ceaf7642b9\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=22940.0, style=ProgressStyle(descriptio…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\",\"Downloading and preparing dataset xtreme/tatoeba.rus (download: 90.30 KiB, generated: 207.51 KiB, post-processed: Unknown size, total: 297.81 KiB) to /root/.cache/huggingface/datasets/xtreme/tatoeba.rus/1.0.0/7bf67e71297af51aebad531f84e824cf5c995d9ce994485f7cd2e90d9cc4d555...\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"28adeefe324d446f96f10dbe815664d3\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=17229.0, style=ProgressStyle(descriptio…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"4c9112485fe54311a1397a6d738622fc\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=13294.0, style=ProgressStyle(descriptio…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"2f6256f250ed4fe5958649cd513e6f85\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\rDataset xtreme downloaded and prepared to /root/.cache/huggingface/datasets/xtreme/tatoeba.rus/1.0.0/7bf67e71297af51aebad531f84e824cf5c995d9ce994485f7cd2e90d9cc4d555. Subsequent calls will reuse this data.\\n\"],\"name\":\"stdout\"},{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>source_sentence</th>\\n\",\"      <th>target_sentence</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>Я знаю много людей, у которых нет прав.\\\\n</td>\\n\",\"      <td>I know a lot of people who don't have driver's...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>У меня много знакомых, которые не умеют играть...</td>\\n\",\"      <td>I know a lot of people who don't know how to p...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>Мой начальник отпустил меня сегодня пораньше.\\\\n</td>\\n\",\"      <td>My boss let me leave early today.\\\\n</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>Я загорел на пляже.\\\\n</td>\\n\",\"      <td>I tanned myself on the beach.\\\\n</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>Вы сегодня проверяли почту?\\\\n</td>\\n\",\"      <td>Have you checked your email today?\\\\n</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>...</th>\\n\",\"      <td>...</td>\\n\",\"      <td>...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>995</th>\\n\",\"      <td>Что сказал врач?\\\\n</td>\\n\",\"      <td>What did the doctor say?\\\\n</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>996</th>\\n\",\"      <td>Я рад, что ты сегодня здесь.\\\\n</td>\\n\",\"      <td>I'm glad you're here today.\\\\n</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>997</th>\\n\",\"      <td>Фермеры пригнали в деревню пять волов, девять ...</td>\\n\",\"      <td>The farmers had brought five oxen and nine cow...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>998</th>\\n\",\"      <td>Жужжание пчёл заставляет меня немного нервнича...</td>\\n\",\"      <td>The buzzing of the bees makes me a little nerv...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>999</th>\\n\",\"      <td>С каждым годом они становились всё беднее.\\\\n</td>\\n\",\"      <td>From year to year they were growing poorer.\\\\n</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"<p>1000 rows × 2 columns</p>\\n\",\"</div>\"],\"text/plain\":[\"                                       source_sentence                                    target_sentence\\n\",\"0            Я знаю много людей, у которых нет прав.\\\\n  I know a lot of people who don't have driver's...\\n\",\"1    У меня много знакомых, которые не умеют играть...  I know a lot of people who don't know how to p...\\n\",\"2      Мой начальник отпустил меня сегодня пораньше.\\\\n                My boss let me leave early today.\\\\n\\n\",\"3                                Я загорел на пляже.\\\\n                    I tanned myself on the beach.\\\\n\\n\",\"4                        Вы сегодня проверяли почту?\\\\n               Have you checked your email today?\\\\n\\n\",\"..                                                 ...                                                ...\\n\",\"995                                 Что сказал врач?\\\\n                         What did the doctor say?\\\\n\\n\",\"996                     Я рад, что ты сегодня здесь.\\\\n                      I'm glad you're here today.\\\\n\\n\",\"997  Фермеры пригнали в деревню пять волов, девять ...  The farmers had brought five oxen and nine cow...\\n\",\"998  Жужжание пчёл заставляет меня немного нервнича...  The buzzing of the bees makes me a little nerv...\\n\",\"999       С каждым годом они становились всё беднее.\\\\n      From year to year they were growing poorer.\\\\n\\n\",\"\\n\",\"[1000 rows x 2 columns]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":2}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"xoNiwyXEWDmI\"},\"source\":[\"\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"W4mKLynoJGmP\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":66,\"referenced_widgets\":[\"4eecd76780234044acb7327cff218450\",\"e4cec86096bf4ffcba63c3ea17085008\",\"91d97c3630ac406ea53991a4207dacd9\",\"51586e30593a43a6b593c1e6093a9151\",\"054e549d7da94567a22ed357f0682a3f\",\"1d9163a6593a4e3d8df11c778efa889f\",\"3d9f29708f0148bfb29a6df8c7c2c400\",\"a84a87692b5c43b99a38e1487d32bf80\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1623054729772,\"user_tz\":-180,\"elapsed\":96408,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"e3e6a534-02df-49a7-da0a-c565d21ba7cd\"},\"source\":[\"from sentence_transformers import SentenceTransformer \\n\",\"model = SentenceTransformer(\\\"stsb-xlm-r-multilingual\\\") \"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"4eecd76780234044acb7327cff218450\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, max=1013951149.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"6-L_LWfvK3bv\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1623054765012,\"user_tz\":-180,\"elapsed\":6364,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"81f0c2f9-a4d0-4ff1-8ce5-c025f1886b71\"},\"source\":[\"K=30\\n\",\"emb=model.encode(data[\\\"source_sentence\\\"][:K]  + data[\\\"target_sentence\\\"][:K])\\n\",\"len(emb), len(emb[0])\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"(60, 768)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":4}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"yPzxKIo3Lxbd\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":700},\"id\":\"MOtVMaCGMXeP\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1623054789710,\"user_tz\":-180,\"elapsed\":21056,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"d992e305-b94e-4bea-93fb-1ba2bf21ff75\"},\"source\":[\"import matplotlib.pyplot as plt\\n\",\"import numpy as np\\n\",\"import umap\\n\",\"import pylab\\n\",\"\\n\",\"X= umap.UMAP(n_components=2, random_state=42).fit_transform(emb)\\n\",\"idx= np.arange(len(emb))\\n\",\"\\n\",\"fig, ax = plt.subplots(figsize=(12, 12))\\n\",\"ax.set_facecolor('whitesmoke')\\n\",\"\\n\",\"cm = pylab.get_cmap(\\\"prism\\\")\\n\",\"colors = list(cm(1.0*i/K) for i in range(K))\\n\",\"\\n\",\"for i in idx:\\n\",\"    if i<K:\\n\",\"        ax.annotate(\\\"RUS-\\\"+str(i), (X[i,0], X[i,1]), c=colors[i])\\n\",\"        ax.plot((X[i,0], X[i+K,0]), (X[i,1], X[i+K,1]), \\\"k:\\\" )\\n\",\"    else:\\n\",\"        ax.annotate(\\\"EN-\\\"+str(i%K), (X[i,0], X[i,1]), c=colors[i%K])\\n\",\"      \"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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4sVcddVVVKtWLdbhiIiIiEgJKuka557AVsuyfi7h+8TEtGnTWLZsmZJmERERkUqgpBPnwVSQhwLz43K5aNy4MQDPPPMML730UmwDEhEREZESU6KJs2VZt1qW9UJJ3qMsME2Tjz/+mI8//hjLsmIdjoiIiIiUAL1yuxjYbDbeeOMNbDYbhmEQDoex2+2xDktEREREipFeuV1M3G43TqeTrKwsLr/8cl599dVYhyQiIiIixUiJczFzOp0kJCSQkJAQ61BEREREpBipVKOYeTwe5s2bR+SFibBv3z7Kw/7UIiIiInJyWnEuAceS5vXr15OcnMy7774b44hERERE5EwpcS5B5513HoMGDSItLS3WoYiIiIjIGVLiXILi4uKYMWMGderUwbIs1q1bF+uQREREROQ0KXEuJbNmzaJr166sX78+1qGIiIiIyGnQw4Gl5He/+x12u502bdrEOhQREREROQ1acS4l8fHxDB06FMMw2LVrF4sWLYp1SCIiIiJyCrTiHAOPPPIIixYtYvPmzVSvXj3fNt7rErAatYwehy4eSOiacbgf6gO+w/ifSAfAtm0dzlfH4390SZ4xjB824po5BsN3GKvW2fjHvgRxVUtmUiIiIiIVnBLnGJg6dSojR44sMGkGwOXFNzUj30vGob3Y1i3FTOl90vu4nruL4C2PY7bsjP2jV3AueIrgDQ+dSegiIiIilZZKNWKgSpUq0Vrnt956i/nz559S/9CAsTjfnlJoO1vmNswLLgHAbN0De8aCUw9WRERERAAlzjFlmiYvvvgis2fPxrKs3BcDOXjuSYt+7J/MO96veUdwOLFtWnHy8Ruej/3z9wGwf/oOxr6fi30OIiIiIpWFSjViyGaz8dZbb2G326NvG4w6SakGQHDgfTjfnkzwd5MKbBO483lcL43DOe9vhNr3A4eruEIXERERqXS04hxjVatWJT4+nkAgwE033cR7771XpH7mhd0g4MP27efRc65nhuO5Jw33pKsBsBqch/+h9/BN+YTwJddh1mlSElMQERERqRS04lxG+Hw+fv75Z3bt2lXkPsFr78U1awzWWZGEODBqZu4Gh/ZAtdpgmjjnTSZ02e+LM2QRERGRSkWJcxlRtWpVPvjgAxyOo/+VHK1xPibcphfBmybm6mO26wNVaxY4pmPVWziWzIr073gl4e43F3/gIiIiIpWEkeeh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tozrH+7Ioc+8Odv6jgjT+woHN/2Pg8++tnnwrzb+oMHtsnhsqINuqQ4yjhtu/UN0mTmfF+LjLCbf76DNJXmT4937DY16hGlcBzye6LbBNzgZ2MtBz8FhNm0zVD15vVerqsWCqRpTk9IhPj5+jTEm5Zcco8RZREREREqdX5M4axaAiIiIiEghKHEWERERESkEJc4iIiIiIoWgxFlEREREpBCUOIuIiIiIFIISZxERERGRQlDiLCIiIiJSCEqcRUREREQKQYmziIiIiEghKHEWERERESkEJc4iIiIiIoWgxFlEREREpBCUOIuIiIiIFIISZxERERGRQlDiLCIiIiJSCEqcRUREREQKQYmziIiIiEghKHEWERERESkEJc4iIiIiIoWgxFlEREREpBCUOIuIiIiIFIISZxERERGRQlDiLCIiIiJSCEqcRUREREQKQYmziIiIiEghKHEWERERESkEJc4iIiIiIoWgxFlEREREpBCUOIuIiIiIFIISZxERERGRQlDiLCIiIiJSCEqcRUREREQKQYmziIiIiEghKHEWERERESkEJc4iIiIiIoWgxFlEREREpBCUOIuIiIiIFIISZxERERGRQlDiLCIiIiJSCEqcRUREREQKQYmziIiIiEghKHEWERERESkEJc4iIiIiIoWgxFlEREREpBCUOIuIiIiIFIISZxERERGRQlDiLCIiIiJSCEqcRUREREQKQYmziIiIiEghKHEWERERESkEJc4iIiIiIoWgxFlEREREpBCUOIuIiJzn2ibGcUOqj74pPkb09ZKRHt3+5XIHw/t487R99G4P7y10ArB8sYP+l/m4vr2P3m19vDLPla/vrBMwrLeXXq199EnxMe0Rd86+yv761QAAIABJREFUvTst7urhjfbRzseKJUor5MKW/y9EREREziveOHh5lR+AR+7y8PIcF3eODp/2mFAIxg318K/lAarUMAQDsOdHq8C2t44IcWkXm1AQBvX0snKpg8uvspk70c0VvSNcf1eY/3xrMay3l05p/iI/v1+qT2IctZsaImGoUscwcm6A+HKwcbmD16e5GfNqIKft9Ls9pPSI0KFXhNWLHbw41oOxIRyG/7knzFV35P89rpjv5JXJbiwLkqsZRs4LULbiuTxDiRVdGoqIiFxAWrS3ObCn4AT4505kQCRskZRsAPB4oU4jk69dXBm4tIsN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\\n\",\"text/plain\":[\"<Figure size 864x864 with 1 Axes>\"]},\"metadata\":{\"tags\":[],\"needs_background\":\"light\"}}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"cAAyhfompH_I\"},\"source\":[\"let us compare entire sentence pairs\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"2sPxWELNNIhz\"},\"source\":[\"source_emb=model.encode(data[\\\"source_sentence\\\"])\\n\",\"target_emb=model.encode(data[\\\"target_sentence\\\"])\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"GeSM59JPtwrd\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":265},\"id\":\"UF1pXbEZTfsN\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1623054800734,\"user_tz\":-180,\"elapsed\":444,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"16eccb00-6402-41b7-f0d0-fc3fd7383602\"},\"source\":[\"from scipy import spatial\\n\",\"from matplotlib import pyplot\\n\",\"sims=[ 1 - spatial.distance.cosine(s,t) for s,t in zip(source_emb, target_emb)]\\n\",\"pyplot.hist(sims, bins=100, range=(0.8,1))\\n\",\"pyplot.show()\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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\\n\",\"text/plain\":[\"<Figure size 432x288 with 1 Axes>\"]},\"metadata\":{\"tags\":[],\"needs_background\":\"light\"}}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"SW-_vSO7nsK0\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1623054803652,\"user_tz\":-180,\"elapsed\":316,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"b5e185b4-8d8c-4e90-b17d-a677c58b589c\"},\"source\":[\"np.mean(sims), np.std(sims)\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"(0.9464540086090565, 0.0825926305536311)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":8}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"KtUUoJZ3lFH5\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"nwR7J39D5KVV\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"AU0PZ42f5wzn\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH09/CH09d_Cross_lingual_classification.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH09c_Cross_lingual_classification.ipynb\",\"provenance\":[],\"collapsed_sections\":[],\"authorship_tag\":\"ABX9TyMDOCuNHEJieHunrXWSyk3A\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"},\"accelerator\":\"GPU\",\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"b3803181d0c8469c86fdc3d7c5fd248d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_b424b0b120574187a899dcf6e6630c0d\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_790c80f265c74e89abb7346327b06913\",\"IPY_MODEL_5a44b51373a74bf291cbbdf42a97824e\"]}},\"b424b0b120574187a899dcf6e6630c0d\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"790c80f265c74e89abb7346327b06913\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_6d2fc03f88384e4fa5dc49192696485f\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1916,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1916,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_de1e19bffe414e6facda81c36af2facd\"}},\"5a44b51373a74bf291cbbdf42a97824e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_c4f43e9837664cb19b781210ab1b81df\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 4.75k/? [00:03&lt;00:00, 1.22kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_ac796f522e8340f7acc968321247a58a\"}},\"6d2fc03f88384e4fa5dc49192696485f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"de1e19bffe414e6facda81c36af2facd\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c4f43e9837664cb19b781210ab1b81df\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"ac796f522e8340f7acc968321247a58a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"59883ef110d1468f8965197745e5f1f5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_10c2476ccebe4a1cbe17109fbe1f3ce5\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_19cfa619be984d1da06d621d9fe63675\",\"IPY_MODEL_ec5cb81c0bf743e197db54b344ef4a8a\"]}},\"10c2476ccebe4a1cbe17109fbe1f3ce5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"19cfa619be984d1da06d621d9fe63675\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_aa47871249ae4e57ac570e3c4786b898\",\"_dom_classes\":[],\"description\":\"Downloading: \",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1054,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1054,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_b4ed1ad07ce64e58b28b101b6c5a5a35\"}},\"ec5cb81c0bf743e197db54b344ef4a8a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_41e01299eabc41e8ba751144d40c3106\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 2.17k/? [00:00&lt;00:00, 35.7kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_024d83144b5c40cf83ca2351c89a98af\"}},\"aa47871249ae4e57ac570e3c4786b898\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"b4ed1ad07ce64e58b28b101b6c5a5a35\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"41e01299eabc41e8ba751144d40c3106\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"024d83144b5c40cf83ca2351c89a98af\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"86997849b31b44feb94173ee98f040c8\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_5197c821abe64ff98b1bdd0a7739a6cd\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_e2e2eb813c8048aaae492b3ff25f8fc9\",\"IPY_MODEL_88d9aa267eeb4a08b4365a11c3c4b901\"]}},\"5197c821abe64ff98b1bdd0a7739a6cd\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e2e2eb813c8048aaae492b3ff25f8fc9\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_b73cb08605c346b5828b7eaff06f6780\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":84125825,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":84125825,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_2443100345bc4e4783a39d6b2c93f474\"}},\"88d9aa267eeb4a08b4365a11c3c4b901\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_5efb55132c5747dbba1a7d8ac06ccd3e\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 84.1M/84.1M [00:02&lt;00:00, 28.5MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_b845117ac4de480987c8d4e28873c296\"}},\"b73cb08605c346b5828b7eaff06f6780\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"2443100345bc4e4783a39d6b2c93f474\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"5efb55132c5747dbba1a7d8ac06ccd3e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"b845117ac4de480987c8d4e28873c296\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"1655b0bb6704455aa0fbf0e7891d69da\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_adb9137d03db4f809730323bbebe914b\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_9f17a5bae5f246d197b05ec107ed63fe\",\"IPY_MODEL_25f8d10b64c7455cb4d56045d9afe681\"]}},\"adb9137d03db4f809730323bbebe914b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"9f17a5bae5f246d197b05ec107ed63fe\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_39d93d5f435f4ee9a8674d28abea6dc2\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_ef80dd4dc15d45e8aa824dc5a1a1dbf6\"}},\"25f8d10b64c7455cb4d56045d9afe681\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_098ca0fcf0aa499c8780059b5f0c744e\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 25000/0 [00:06&lt;00:00, 13.77 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_f6fb399446ea432caef675ae1d339e15\"}},\"39d93d5f435f4ee9a8674d28abea6dc2\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"ef80dd4dc15d45e8aa824dc5a1a1dbf6\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"098ca0fcf0aa499c8780059b5f0c744e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"f6fb399446ea432caef675ae1d339e15\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d7935fa82bc6491fb1d0caac1dfe9b65\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_377035ce4afa458286de0286830ca8a6\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_4a31d57bef6849fc8b6a14a97c8a9ea1\",\"IPY_MODEL_41caa06467af4529a2cdb73502855a80\"]}},\"377035ce4afa458286de0286830ca8a6\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"4a31d57bef6849fc8b6a14a97c8a9ea1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_bc85633d268648349c836c57c8af5087\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_726d171deca94a2c82e8eda2b06f9cdd\"}},\"41caa06467af4529a2cdb73502855a80\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_baeea6a8c5f0402c9f20b41db4b39244\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 25000/0 [00:01&lt;00:00, 16794.17 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_00ecebdd5950456abc77ffbcc5165495\"}},\"bc85633d268648349c836c57c8af5087\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"726d171deca94a2c82e8eda2b06f9cdd\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"baeea6a8c5f0402c9f20b41db4b39244\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"00ecebdd5950456abc77ffbcc5165495\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"91b9f4b54608425289ebbde9e0e3e54e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_34228a5e734c46ed81d7a34e275cc358\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_ca53771c60b248b591b58340b8360520\",\"IPY_MODEL_efb830c816a34b17aeecaa2790475380\"]}},\"34228a5e734c46ed81d7a34e275cc358\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ca53771c60b248b591b58340b8360520\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_76df95b327a44345b55291570d55b68b\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"info\",\"max\":1,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_60c811d256e048f69fc93026f18226f0\"}},\"efb830c816a34b17aeecaa2790475380\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_64dac7a15ee143c18348437f428e26ef\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 50000/0 [00:02&lt;00:00, 19125.59 examples/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_cd4b2bb938da41e7883cf302d9ee73d8\"}},\"76df95b327a44345b55291570d55b68b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"60c811d256e048f69fc93026f18226f0\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"64dac7a15ee143c18348437f428e26ef\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"cd4b2bb938da41e7883cf302d9ee73d8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"5566df79eb0c4e28a647081e63fa3463\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_29c9907f72664998a10f6c82ab48c4fc\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_770e912991874b2b82d5ecc710f43b5a\",\"IPY_MODEL_33b13866c73b4885969b2a4f70179575\"]}},\"29c9907f72664998a10f6c82ab48c4fc\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"770e912991874b2b82d5ecc710f43b5a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_71e05ae5b53e40bf9da3262cd592d6bf\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":574,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":574,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d984b35e306840ccbb4ce941f08fcb96\"}},\"33b13866c73b4885969b2a4f70179575\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_5cbcc18e16c14add8c170fa209babf50\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 574/574 [00:01&lt;00:00, 466B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a957d432d5874e1e9ddc90f652d02956\"}},\"71e05ae5b53e40bf9da3262cd592d6bf\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"d984b35e306840ccbb4ce941f08fcb96\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"5cbcc18e16c14add8c170fa209babf50\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"a957d432d5874e1e9ddc90f652d02956\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"a306e5a641974d9f8d79d41046edeef0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_8f0ff2e9843a42c69560d89c54b28f6f\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_ad0c60b441624df39f1124865388bd8d\",\"IPY_MODEL_318c063a1a8e4356a3fc2caedfafcc44\"]}},\"8f0ff2e9843a42c69560d89c54b28f6f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ad0c60b441624df39f1124865388bd8d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_345f64b03393485da5e235cf0bd2c735\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":3679,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":3679,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_43ea447d97244527a2c1fa5446074e26\"}},\"318c063a1a8e4356a3fc2caedfafcc44\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_c80374a3895f4c18bc1730438e17434b\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 3.68k/3.68k [00:00&lt;00:00, 5.86kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_72193d6aec3844bc9a249050937dee31\"}},\"345f64b03393485da5e235cf0bd2c735\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"43ea447d97244527a2c1fa5446074e26\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"c80374a3895f4c18bc1730438e17434b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"72193d6aec3844bc9a249050937dee31\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"043b108aeecb49a9a2a57af2136577d3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_24a4de97147048f79a0b74f1cb91d208\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_7775f1fec99d4fa298e12f0963f290a7\",\"IPY_MODEL_37b58768f8694d588f8c619e5ef639ec\"]}},\"24a4de97147048f79a0b74f1cb91d208\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"7775f1fec99d4fa298e12f0963f290a7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_f2b95f21bd914b558c04c922780df0a7\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":709,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":709,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_91099f9a948e457390a250bf4349756d\"}},\"37b58768f8694d588f8c619e5ef639ec\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_61f35cb6412440209c0db09db9b85b53\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 709/709 [00:00&lt;00:00, 19.1kB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_84f794295e624014be79c592e9d10aa9\"}},\"f2b95f21bd914b558c04c922780df0a7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"91099f9a948e457390a250bf4349756d\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"61f35cb6412440209c0db09db9b85b53\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"84f794295e624014be79c592e9d10aa9\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"b8e6c8f0e3a54b4bab5279aa255f4fd5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_2e1ef92d1ba34c21b86e88e6447e9542\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_517376891a4049dfaa1b48bd3bf512d7\",\"IPY_MODEL_6def7de5dd934c74b180fc0f5ecaec9c\"]}},\"2e1ef92d1ba34c21b86e88e6447e9542\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"517376891a4049dfaa1b48bd3bf512d7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_a145deb5fd784754ae95d1117f8b56d7\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":122,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":122,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_f91a2bebb1ce448f946b5c42e070a964\"}},\"6def7de5dd934c74b180fc0f5ecaec9c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_035a1fe6cfd44bb2a9d778871ee03b38\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 122/122 [00:01&lt;00:00, 77.3B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a12854771e0d48928982e1932db58593\"}},\"a145deb5fd784754ae95d1117f8b56d7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"f91a2bebb1ce448f946b5c42e070a964\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"035a1fe6cfd44bb2a9d778871ee03b38\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"a12854771e0d48928982e1932db58593\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"117536bac3e44d258785c5399226df5e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_8d906fa887eb45968c6d65482a5b4028\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_caf87d92b4474c01807b3ebf1fc8f637\",\"IPY_MODEL_0f1aff9290364b17a676abad67184939\"]}},\"8d906fa887eb45968c6d65482a5b4028\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"caf87d92b4474c01807b3ebf1fc8f637\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_e737e1dd5ad643888087bdfa99640f31\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":229,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":229,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d4ed2a73e864400cada47855d94106d7\"}},\"0f1aff9290364b17a676abad67184939\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_d55734e522ab46908763712b54def3b7\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 229/229 [00:00&lt;00:00, 233B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_a1414ae859a6483e9f6bc2b6543f73a8\"}},\"e737e1dd5ad643888087bdfa99640f31\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"d4ed2a73e864400cada47855d94106d7\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d55734e522ab46908763712b54def3b7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"a1414ae859a6483e9f6bc2b6543f73a8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e475c7364c7f4d7493d3463b682b476f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_add2617721dc460ebe84be20a279d57c\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_e80c48f75ce24fe6b71df469bab5cd59\",\"IPY_MODEL_4743d2135cef41e1bb78660912fdc2d5\"]}},\"add2617721dc460ebe84be20a279d57c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"e80c48f75ce24fe6b71df469bab5cd59\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_002b5d7c98ca4273a7ec8970b451c0f2\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":1112253233,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":1112253233,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e94214a09cf54dd3a40bd77cb815c2ed\"}},\"4743d2135cef41e1bb78660912fdc2d5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_8ee3bc02254f4129b2a25ab7f5a95fb1\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 1.11G/1.11G [01:03&lt;00:00, 17.4MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_d7a6000ad58546cc8818a7dcac9c6813\"}},\"002b5d7c98ca4273a7ec8970b451c0f2\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"e94214a09cf54dd3a40bd77cb815c2ed\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"8ee3bc02254f4129b2a25ab7f5a95fb1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"d7a6000ad58546cc8818a7dcac9c6813\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"2a64e60f02e74b03b09cc716152c62cc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_8b06f74e8b3d4055b171daa466442ab8\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_53a764e83741443bbc624b6fe5555db4\",\"IPY_MODEL_2eb2c619c4dd44de9f754f219ffccc30\"]}},\"8b06f74e8b3d4055b171daa466442ab8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"53a764e83741443bbc624b6fe5555db4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_11854f9df23941c696d95aa46f7f0357\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":53,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":53,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_f91ae331c37642d8985be2169f2cd580\"}},\"2eb2c619c4dd44de9f754f219ffccc30\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_f0e1ca3e19d149c0b0b1d100fa3c0178\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 53.0/53.0 [00:01&lt;00:00, 29.9B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c60665ecf3534be4a7cb440922bd7154\"}},\"11854f9df23941c696d95aa46f7f0357\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"f91ae331c37642d8985be2169f2cd580\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"f0e1ca3e19d149c0b0b1d100fa3c0178\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"c60665ecf3534be4a7cb440922bd7154\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"6008b546539043478801f48598bc6ab1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_cbae2ee94bde446794a574ea0282d3f2\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_105d95ed3178414fae3196a35290c84a\",\"IPY_MODEL_7bf01eff0a7b413db09de5fd430a2ad9\"]}},\"cbae2ee94bde446794a574ea0282d3f2\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"105d95ed3178414fae3196a35290c84a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_4d60dece46084cd68a934b75f9a2ca3d\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":5069051,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":5069051,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_31e18ca06e444ae8afd34e7416fed799\"}},\"7bf01eff0a7b413db09de5fd430a2ad9\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_5807e4ff036f40c6a9128d6db326d245\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 5.07M/5.07M [00:00&lt;00:00, 5.26MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c00341059e734425806aa705c2f0c679\"}},\"4d60dece46084cd68a934b75f9a2ca3d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"31e18ca06e444ae8afd34e7416fed799\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"5807e4ff036f40c6a9128d6db326d245\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"c00341059e734425806aa705c2f0c679\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"d251be52a61d4274b9eb0de1f8ac8c51\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_5da979e7bd214bc58b47c2140548829a\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_3fed7d1a1249409cb7e04099c26a0dc4\",\"IPY_MODEL_bc18c9cfda60481dbf69bcb9cd3322c4\"]}},\"5da979e7bd214bc58b47c2140548829a\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"3fed7d1a1249409cb7e04099c26a0dc4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_d37b5d009f1f40dfb02c335fda102fd7\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":150,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":150,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_c892e469eb2e478f884d99996fbebc7e\"}},\"bc18c9cfda60481dbf69bcb9cd3322c4\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_0c94e93f81634af9a964af2ae2ab6a42\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 150/150 [00:27&lt;00:00, 5.49B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_bd083a6525934b7d925114adb0f6abd2\"}},\"d37b5d009f1f40dfb02c335fda102fd7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"c892e469eb2e478f884d99996fbebc7e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"0c94e93f81634af9a964af2ae2ab6a42\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"bd083a6525934b7d925114adb0f6abd2\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"bb628c1a02a64667b506003901ae0086\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_87f9acef75934ffab3a69f558843b5ec\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_ea59e8327ea344449f5d6f00d082fb14\",\"IPY_MODEL_71a23c01915f40ce8fe8b1b963079825\"]}},\"87f9acef75934ffab3a69f558843b5ec\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"ea59e8327ea344449f5d6f00d082fb14\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_8d2045b805ee4c3e93be0ae7cfd9fcc6\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":9096735,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":9096735,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_0274e1ef57e647d2934aad4c9bb7aeea\"}},\"71a23c01915f40ce8fe8b1b963079825\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_39b8979cf9f54ad7b6d1c4bb9ec42b04\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 9.10M/9.10M [00:01&lt;00:00, 4.58MB/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e2dd4cadeb9b4e6cb067ee298c9bd85c\"}},\"8d2045b805ee4c3e93be0ae7cfd9fcc6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"0274e1ef57e647d2934aad4c9bb7aeea\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"39b8979cf9f54ad7b6d1c4bb9ec42b04\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"e2dd4cadeb9b4e6cb067ee298c9bd85c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"5b12b7e706c74898b08a897f6a97c71a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_416dcf77fe2e44148e418ca50de060be\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_27d96cced45140059a1658097b1986b1\",\"IPY_MODEL_ebb27aef868048a495b6a40754313f64\"]}},\"416dcf77fe2e44148e418ca50de060be\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"27d96cced45140059a1658097b1986b1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_00b440a6e06e4dbf80e18bb50eca5e16\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":505,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":505,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_27bb5b8aba86431785e077464e707219\"}},\"ebb27aef868048a495b6a40754313f64\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_8f1089b3f54149a685120a66c09db12e\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 505/505 [00:00&lt;00:00, 808B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_1e43b9f7ee2c45a886ada6c8333d109e\"}},\"00b440a6e06e4dbf80e18bb50eca5e16\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"27bb5b8aba86431785e077464e707219\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"8f1089b3f54149a685120a66c09db12e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"1e43b9f7ee2c45a886ada6c8333d109e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"51fdd0c41e314630875ea85c92061908\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_view_name\":\"HBoxView\",\"_dom_classes\":[],\"_model_name\":\"HBoxModel\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"box_style\":\"\",\"layout\":\"IPY_MODEL_dfc346bbed434a7283030f0651118533\",\"_model_module\":\"@jupyter-widgets/controls\",\"children\":[\"IPY_MODEL_be206549f12b46b28f243e983162f1c7\",\"IPY_MODEL_50cc9ffd8b6445549cb4cf7df982ee3d\"]}},\"dfc346bbed434a7283030f0651118533\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"be206549f12b46b28f243e983162f1c7\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_view_name\":\"ProgressView\",\"style\":\"IPY_MODEL_dd09d0c4ed7d4fe48dd946e71c6e2e52\",\"_dom_classes\":[],\"description\":\"Downloading: 100%\",\"_model_name\":\"FloatProgressModel\",\"bar_style\":\"success\",\"max\":190,\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":190,\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"orientation\":\"horizontal\",\"min\":0,\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_24a038bd243a4586b93687753a742405\"}},\"50cc9ffd8b6445549cb4cf7df982ee3d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_view_name\":\"HTMLView\",\"style\":\"IPY_MODEL_62a80e3a556b4dfc8d1a8ef5b1d8e78a\",\"_dom_classes\":[],\"description\":\"\",\"_model_name\":\"HTMLModel\",\"placeholder\":\"​\",\"_view_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"value\":\" 190/190 [00:24&lt;00:00, 7.81B/s]\",\"_view_count\":null,\"_view_module_version\":\"1.5.0\",\"description_tooltip\":null,\"_model_module\":\"@jupyter-widgets/controls\",\"layout\":\"IPY_MODEL_e045973f36054722bb74074ed3da54a2\"}},\"dd09d0c4ed7d4fe48dd946e71c6e2e52\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"ProgressStyleModel\",\"description_width\":\"initial\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"bar_color\":null,\"_model_module\":\"@jupyter-widgets/controls\"}},\"24a038bd243a4586b93687753a742405\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}},\"62a80e3a556b4dfc8d1a8ef5b1d8e78a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_view_name\":\"StyleView\",\"_model_name\":\"DescriptionStyleModel\",\"description_width\":\"\",\"_view_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.5.0\",\"_view_count\":null,\"_view_module_version\":\"1.2.0\",\"_model_module\":\"@jupyter-widgets/controls\"}},\"e045973f36054722bb74074ed3da54a2\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_view_name\":\"LayoutView\",\"grid_template_rows\":null,\"right\":null,\"justify_content\":null,\"_view_module\":\"@jupyter-widgets/base\",\"overflow\":null,\"_model_module_version\":\"1.2.0\",\"_view_count\":null,\"flex_flow\":null,\"width\":null,\"min_width\":null,\"border\":null,\"align_items\":null,\"bottom\":null,\"_model_module\":\"@jupyter-widgets/base\",\"top\":null,\"grid_column\":null,\"overflow_y\":null,\"overflow_x\":null,\"grid_auto_flow\":null,\"grid_area\":null,\"grid_template_columns\":null,\"flex\":null,\"_model_name\":\"LayoutModel\",\"justify_items\":null,\"grid_row\":null,\"max_height\":null,\"align_content\":null,\"visibility\":null,\"align_self\":null,\"height\":null,\"min_height\":null,\"padding\":null,\"grid_auto_rows\":null,\"grid_gap\":null,\"max_width\":null,\"order\":null,\"_view_module_version\":\"1.2.0\",\"grid_template_areas\":null,\"object_position\":null,\"object_fit\":null,\"grid_auto_columns\":null,\"margin\":null,\"display\":null,\"left\":null}}}}},\"cells\":[{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"OQSu5S08MgA2\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418381024,\"user_tz\":-180,\"elapsed\":8739,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"65bb94f7-166a-4fb8-b55a-5998fbeeba6b\"},\"source\":[\"!pip install sentence-transformers datasets\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Collecting sentence-transformers\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/3b/fd/8a81047bbd9fa134a3f27e12937d2a487bd49d353a038916a5d7ed4e5543/sentence-transformers-2.0.0.tar.gz (85kB)\\n\",\"\\u001b[K     |████████████████████████████████| 92kB 5.5MB/s \\n\",\"\\u001b[?25hCollecting datasets\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/08/a2/d4e1024c891506e1cee8f9d719d20831bac31cb5b7416983c4d2f65a6287/datasets-1.8.0-py3-none-any.whl (237kB)\\n\",\"\\u001b[K     |████████████████████████████████| 245kB 30.2MB/s \\n\",\"\\u001b[?25hCollecting transformers<5.0.0,>=4.6.0\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/fd/1a/41c644c963249fd7f3836d926afa1e3f1cc234a1c40d80c5f03ad8f6f1b2/transformers-4.8.2-py3-none-any.whl (2.5MB)\\n\",\"\\u001b[K     |████████████████████████████████| 2.5MB 40.0MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (4.41.1)\\n\",\"Requirement already satisfied: torch>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.9.0+cu102)\\n\",\"Requirement already satisfied: torchvision in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.10.0+cu102)\\n\",\"Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.19.5)\\n\",\"Requirement already satisfied: scikit-learn in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (0.22.2.post1)\\n\",\"Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (1.4.1)\\n\",\"Requirement already satisfied: nltk in /usr/local/lib/python3.7/dist-packages (from sentence-transformers) (3.2.5)\\n\",\"Collecting sentencepiece\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/ac/aa/1437691b0c7c83086ebb79ce2da16e00bef024f24fec2a5161c35476f499/sentencepiece-0.1.96-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2MB)\\n\",\"\\u001b[K     |████████████████████████████████| 1.2MB 50.2MB/s \\n\",\"\\u001b[?25hCollecting huggingface-hub\\n\",\"  Downloading https://files.pythonhosted.org/packages/35/03/071adc023c0a7e540cf4652fa9cad13ab32e6ae469bf0cc0262045244812/huggingface_hub-0.0.13-py3-none-any.whl\\n\",\"Requirement already satisfied: requests>=2.19.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (2.23.0)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from datasets) (4.5.0)\\n\",\"Requirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from datasets) (0.3.4)\\n\",\"Requirement already satisfied: pyarrow<4.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (3.0.0)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from datasets) (20.9)\\n\",\"Collecting xxhash\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/7d/4f/0a862cad26aa2ed7a7cd87178cbbfa824fc1383e472d63596a0d018374e7/xxhash-2.0.2-cp37-cp37m-manylinux2010_x86_64.whl (243kB)\\n\",\"\\u001b[K     |████████████████████████████████| 245kB 54.1MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: multiprocess in /usr/local/lib/python3.7/dist-packages (from datasets) (0.70.12.2)\\n\",\"Collecting fsspec\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/0e/3a/666e63625a19883ae8e1674099e631f9737bd5478c4790e5ad49c5ac5261/fsspec-2021.6.1-py3-none-any.whl (115kB)\\n\",\"\\u001b[K     |████████████████████████████████| 122kB 55.2MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from datasets) (1.1.5)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (2019.12.20)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (3.0.12)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (3.13)\\n\",\"Collecting sacremoses\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/ee/67241dc87f266093c533a2d4d3d69438e57d7a90abb216fa076e7d475d4a/sacremoses-0.0.45-py3-none-any.whl (895kB)\\n\",\"\\u001b[K     |████████████████████████████████| 901kB 48.8MB/s \\n\",\"\\u001b[?25hCollecting tokenizers<0.11,>=0.10.1\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d4/e2/df3543e8ffdab68f5acc73f613de9c2b155ac47f162e725dcac87c521c11/tokenizers-0.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.3MB)\\n\",\"\\u001b[K     |████████████████████████████████| 3.3MB 42.8MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from torch>=1.6.0->sentence-transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: pillow>=5.3.0 in /usr/local/lib/python3.7/dist-packages (from torchvision->sentence-transformers) (7.1.2)\\n\",\"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from scikit-learn->sentence-transformers) (1.0.1)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from nltk->sentence-transformers) (1.15.0)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (3.0.4)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (2021.5.30)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (2.10)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests>=2.19.0->datasets) (1.24.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->datasets) (3.4.1)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->datasets) (2.4.7)\\n\",\"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2018.9)\\n\",\"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2.8.1)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers<5.0.0,>=4.6.0->sentence-transformers) (7.1.2)\\n\",\"Building wheels for collected packages: sentence-transformers\\n\",\"  Building wheel for sentence-transformers (setup.py) ... \\u001b[?25l\\u001b[?25hdone\\n\",\"  Created wheel for sentence-transformers: filename=sentence_transformers-2.0.0-cp37-none-any.whl size=126711 sha256=a533d92fe07ef629089e0f3d0fcfcd91fbf65420c00b7c46a351fcc4c3259a46\\n\",\"  Stored in directory: /root/.cache/pip/wheels/38/d2/98/d191289a877a34c68aa67e05179521e060f96394a3e9336be6\\n\",\"Successfully built sentence-transformers\\n\",\"\\u001b[31mERROR: transformers 4.8.2 has requirement huggingface-hub==0.0.12, but you'll have huggingface-hub 0.0.13 which is incompatible.\\u001b[0m\\n\",\"Installing collected packages: huggingface-hub, sacremoses, tokenizers, transformers, sentencepiece, sentence-transformers, xxhash, fsspec, datasets\\n\",\"Successfully installed datasets-1.8.0 fsspec-2021.6.1 huggingface-hub-0.0.13 sacremoses-0.0.45 sentence-transformers-2.0.0 sentencepiece-0.1.96 tokenizers-0.10.3 transformers-4.8.2 xxhash-2.0.2\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":220,\"referenced_widgets\":[\"b3803181d0c8469c86fdc3d7c5fd248d\",\"b424b0b120574187a899dcf6e6630c0d\",\"790c80f265c74e89abb7346327b06913\",\"5a44b51373a74bf291cbbdf42a97824e\",\"6d2fc03f88384e4fa5dc49192696485f\",\"de1e19bffe414e6facda81c36af2facd\",\"c4f43e9837664cb19b781210ab1b81df\",\"ac796f522e8340f7acc968321247a58a\",\"59883ef110d1468f8965197745e5f1f5\",\"10c2476ccebe4a1cbe17109fbe1f3ce5\",\"19cfa619be984d1da06d621d9fe63675\",\"ec5cb81c0bf743e197db54b344ef4a8a\",\"aa47871249ae4e57ac570e3c4786b898\",\"b4ed1ad07ce64e58b28b101b6c5a5a35\",\"41e01299eabc41e8ba751144d40c3106\",\"024d83144b5c40cf83ca2351c89a98af\",\"86997849b31b44feb94173ee98f040c8\",\"5197c821abe64ff98b1bdd0a7739a6cd\",\"e2e2eb813c8048aaae492b3ff25f8fc9\",\"88d9aa267eeb4a08b4365a11c3c4b901\",\"b73cb08605c346b5828b7eaff06f6780\",\"2443100345bc4e4783a39d6b2c93f474\",\"5efb55132c5747dbba1a7d8ac06ccd3e\",\"b845117ac4de480987c8d4e28873c296\",\"1655b0bb6704455aa0fbf0e7891d69da\",\"adb9137d03db4f809730323bbebe914b\",\"9f17a5bae5f246d197b05ec107ed63fe\",\"25f8d10b64c7455cb4d56045d9afe681\",\"39d93d5f435f4ee9a8674d28abea6dc2\",\"ef80dd4dc15d45e8aa824dc5a1a1dbf6\",\"098ca0fcf0aa499c8780059b5f0c744e\",\"f6fb399446ea432caef675ae1d339e15\",\"d7935fa82bc6491fb1d0caac1dfe9b65\",\"377035ce4afa458286de0286830ca8a6\",\"4a31d57bef6849fc8b6a14a97c8a9ea1\",\"41caa06467af4529a2cdb73502855a80\",\"bc85633d268648349c836c57c8af5087\",\"726d171deca94a2c82e8eda2b06f9cdd\",\"baeea6a8c5f0402c9f20b41db4b39244\",\"00ecebdd5950456abc77ffbcc5165495\",\"91b9f4b54608425289ebbde9e0e3e54e\",\"34228a5e734c46ed81d7a34e275cc358\",\"ca53771c60b248b591b58340b8360520\",\"efb830c816a34b17aeecaa2790475380\",\"76df95b327a44345b55291570d55b68b\",\"60c811d256e048f69fc93026f18226f0\",\"64dac7a15ee143c18348437f428e26ef\",\"cd4b2bb938da41e7883cf302d9ee73d8\"]},\"id\":\"gTFdMJqFMsnp\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418418869,\"user_tz\":-180,\"elapsed\":37858,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"2c019503-210e-42c7-c0cf-0c371902a6b7\"},\"source\":[\"from datasets import load_dataset \\n\",\"imdb = load_dataset(\\\"imdb\\\")\"],\"execution_count\":2,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"b3803181d0c8469c86fdc3d7c5fd248d\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1916.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"59883ef110d1468f8965197745e5f1f5\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1054.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\",\"Downloading and preparing dataset imdb/plain_text (download: 80.23 MiB, generated: 127.02 MiB, post-processed: Unknown size, total: 207.25 MiB) to /root/.cache/huggingface/datasets/imdb/plain_text/1.0.0/e3c66f1788a67a89c7058d97ff62b6c30531e05b549de56d3ab91891f0561f9a...\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"86997849b31b44feb94173ee98f040c8\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=84125825.0, style=ProgressStyle(descrip…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"1655b0bb6704455aa0fbf0e7891d69da\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\r\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"d7935fa82bc6491fb1d0caac1dfe9b65\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\r\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"91b9f4b54608425289ebbde9e0e3e54e\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=1.0, bar_style='info', max=1.0), HTML(value='')))\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\rDataset imdb downloaded and prepared to /root/.cache/huggingface/datasets/imdb/plain_text/1.0.0/e3c66f1788a67a89c7058d97ff62b6c30531e05b549de56d3ab91891f0561f9a. Subsequent calls will reuse this data.\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"wUFlPw0irgOe\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418418874,\"user_tz\":-180,\"elapsed\":23,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"imdb = imdb.shuffle()\"],\"execution_count\":3,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"60A2Iz7gRXdd\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418419282,\"user_tz\":-180,\"elapsed\":424,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"imdb_x = [x for x in imdb['train'][:1000]['text']] \\n\",\"labels = [x for x in imdb['train'][:1000]['label']] \\n\",\"import pandas as pd \\n\",\"pd.DataFrame(imdb_x, \\n\",\"             columns=[\\\"text\\\"]).to_excel( \\n\",\"                                 \\\"imdb.xlsx\\\", \\n\",\"                                  index=None) \"],\"execution_count\":4,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":424},\"id\":\"IHUxuNHpRcg3\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418423843,\"user_tz\":-180,\"elapsed\":849,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"2724df05-a3ec-41a6-c450-f3797c8eac15\"},\"source\":[\"pd.read_excel(\\\"KHMER.xlsx\\\") \"],\"execution_count\":5,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>text</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>0</th>\\n\",\"      <td>ខណៈពេលដែលជំនាន់ដើម ១៩៣២ ជាមួយប្រេសស្តុនហ្វតគឺល...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>1</th>\\n\",\"      <td>ភាពយន្តអាមេរិចដែលនិយាយច្រើនបំផុតនៅក្នុងមហោស្រព...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>2</th>\\n\",\"      <td>ប៊ីងហ្គោគឺជាហ្គេមល្បែងអុកគឺជាឈ្មោះ។ កម្រមានអេក...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3</th>\\n\",\"      <td>មានហេតុផលជាច្រើនដែលធ្វើឱ្យខ្ញុំវាយតម្លៃសោណុសយ៉...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4</th>\\n\",\"      <td>ខ្ញុំគិតថាការមើលវីដេអូការងារស្តីពីការអនុលោមតាម...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>...</th>\\n\",\"      <td>...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>995</th>\\n\",\"      <td>ខ្ញុំបានឃើញខ្សែភាពយន្តនេះជាលើកដំបូងនៅទូរទស្សន៍...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>996</th>\\n\",\"      <td>ខ្សែភាពយន្តនេះល្អណាស់។ ខ្ញុំមិនមែនជាអ្នកគាំទ្រ...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>997</th>\\n\",\"      <td>ផលប៉ះពាល់ភ្លាមៗគឺជាខ្សែភាពយន្តទី ៤ នៃខ្សែភាពយន...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>998</th>\\n\",\"      <td>កាលពី ៣ ឆ្នាំមុនរ៉ាជែល (ថេរ៉េសហ្វ្រែលវែល) កំពុ...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>999</th>\\n\",\"      <td>ខ្ញុំមិនមានចំណាប់អារម្មណ៍ខ្លាំងពេកក្នុងការមើលរ...</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"<p>1000 rows × 1 columns</p>\\n\",\"</div>\"],\"text/plain\":[\"                                                  text\\n\",\"0    ខណៈពេលដែលជំនាន់ដើម ១៩៣២ ជាមួយប្រេសស្តុនហ្វតគឺល...\\n\",\"1    ភាពយន្តអាមេរិចដែលនិយាយច្រើនបំផុតនៅក្នុងមហោស្រព...\\n\",\"2    ប៊ីងហ្គោគឺជាហ្គេមល្បែងអុកគឺជាឈ្មោះ។ កម្រមានអេក...\\n\",\"3    មានហេតុផលជាច្រើនដែលធ្វើឱ្យខ្ញុំវាយតម្លៃសោណុសយ៉...\\n\",\"4    ខ្ញុំគិតថាការមើលវីដេអូការងារស្តីពីការអនុលោមតាម...\\n\",\"..                                                 ...\\n\",\"995  ខ្ញុំបានឃើញខ្សែភាពយន្តនេះជាលើកដំបូងនៅទូរទស្សន៍...\\n\",\"996  ខ្សែភាពយន្តនេះល្អណាស់។ ខ្ញុំមិនមែនជាអ្នកគាំទ្រ...\\n\",\"997  ផលប៉ះពាល់ភ្លាមៗគឺជាខ្សែភាពយន្តទី ៤ នៃខ្សែភាពយន...\\n\",\"998  កាលពី ៣ ឆ្នាំមុនរ៉ាជែល (ថេរ៉េសហ្វ្រែលវែល) កំពុ...\\n\",\"999  ខ្ញុំមិនមានចំណាប់អារម្មណ៍ខ្លាំងពេកក្នុងការមើលរ...\\n\",\"\\n\",\"[1000 rows x 1 columns]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":5}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"fxE6DY6NRgUn\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418427329,\"user_tz\":-180,\"elapsed\":799,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"imdb_khmer = list(pd.read_excel(\\\"KHMER.xlsx\\\").text) \"],\"execution_count\":6,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"7nioiNGqcXDn\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418428978,\"user_tz\":-180,\"elapsed\":610,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from sklearn.model_selection import train_test_split\"],\"execution_count\":7,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"UB1qHD3rRjhv\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418428981,\"user_tz\":-180,\"elapsed\":13,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"train_x, test_x, train_y, test_y, khmer_train, khmer_test = train_test_split(imdb_x, labels, imdb_khmer, test_size = 0.2, random_state = 1) \"],\"execution_count\":8,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"s0ELOlYCRmAh\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":609,\"referenced_widgets\":[\"5566df79eb0c4e28a647081e63fa3463\",\"29c9907f72664998a10f6c82ab48c4fc\",\"770e912991874b2b82d5ecc710f43b5a\",\"33b13866c73b4885969b2a4f70179575\",\"71e05ae5b53e40bf9da3262cd592d6bf\",\"d984b35e306840ccbb4ce941f08fcb96\",\"5cbcc18e16c14add8c170fa209babf50\",\"a957d432d5874e1e9ddc90f652d02956\",\"a306e5a641974d9f8d79d41046edeef0\",\"8f0ff2e9843a42c69560d89c54b28f6f\",\"ad0c60b441624df39f1124865388bd8d\",\"318c063a1a8e4356a3fc2caedfafcc44\",\"345f64b03393485da5e235cf0bd2c735\",\"43ea447d97244527a2c1fa5446074e26\",\"c80374a3895f4c18bc1730438e17434b\",\"72193d6aec3844bc9a249050937dee31\",\"043b108aeecb49a9a2a57af2136577d3\",\"24a4de97147048f79a0b74f1cb91d208\",\"7775f1fec99d4fa298e12f0963f290a7\",\"37b58768f8694d588f8c619e5ef639ec\",\"f2b95f21bd914b558c04c922780df0a7\",\"91099f9a948e457390a250bf4349756d\",\"61f35cb6412440209c0db09db9b85b53\",\"84f794295e624014be79c592e9d10aa9\",\"b8e6c8f0e3a54b4bab5279aa255f4fd5\",\"2e1ef92d1ba34c21b86e88e6447e9542\",\"517376891a4049dfaa1b48bd3bf512d7\",\"6def7de5dd934c74b180fc0f5ecaec9c\",\"a145deb5fd784754ae95d1117f8b56d7\",\"f91a2bebb1ce448f946b5c42e070a964\",\"035a1fe6cfd44bb2a9d778871ee03b38\",\"a12854771e0d48928982e1932db58593\",\"117536bac3e44d258785c5399226df5e\",\"8d906fa887eb45968c6d65482a5b4028\",\"caf87d92b4474c01807b3ebf1fc8f637\",\"0f1aff9290364b17a676abad67184939\",\"e737e1dd5ad643888087bdfa99640f31\",\"d4ed2a73e864400cada47855d94106d7\",\"d55734e522ab46908763712b54def3b7\",\"a1414ae859a6483e9f6bc2b6543f73a8\",\"e475c7364c7f4d7493d3463b682b476f\",\"add2617721dc460ebe84be20a279d57c\",\"e80c48f75ce24fe6b71df469bab5cd59\",\"4743d2135cef41e1bb78660912fdc2d5\",\"002b5d7c98ca4273a7ec8970b451c0f2\",\"e94214a09cf54dd3a40bd77cb815c2ed\",\"8ee3bc02254f4129b2a25ab7f5a95fb1\",\"d7a6000ad58546cc8818a7dcac9c6813\",\"2a64e60f02e74b03b09cc716152c62cc\",\"8b06f74e8b3d4055b171daa466442ab8\",\"53a764e83741443bbc624b6fe5555db4\",\"2eb2c619c4dd44de9f754f219ffccc30\",\"11854f9df23941c696d95aa46f7f0357\",\"f91ae331c37642d8985be2169f2cd580\",\"f0e1ca3e19d149c0b0b1d100fa3c0178\",\"c60665ecf3534be4a7cb440922bd7154\",\"6008b546539043478801f48598bc6ab1\",\"cbae2ee94bde446794a574ea0282d3f2\",\"105d95ed3178414fae3196a35290c84a\",\"7bf01eff0a7b413db09de5fd430a2ad9\",\"4d60dece46084cd68a934b75f9a2ca3d\",\"31e18ca06e444ae8afd34e7416fed799\",\"5807e4ff036f40c6a9128d6db326d245\",\"c00341059e734425806aa705c2f0c679\",\"d251be52a61d4274b9eb0de1f8ac8c51\",\"5da979e7bd214bc58b47c2140548829a\",\"3fed7d1a1249409cb7e04099c26a0dc4\",\"bc18c9cfda60481dbf69bcb9cd3322c4\",\"d37b5d009f1f40dfb02c335fda102fd7\",\"c892e469eb2e478f884d99996fbebc7e\",\"0c94e93f81634af9a964af2ae2ab6a42\",\"bd083a6525934b7d925114adb0f6abd2\",\"bb628c1a02a64667b506003901ae0086\",\"87f9acef75934ffab3a69f558843b5ec\",\"ea59e8327ea344449f5d6f00d082fb14\",\"71a23c01915f40ce8fe8b1b963079825\",\"8d2045b805ee4c3e93be0ae7cfd9fcc6\",\"0274e1ef57e647d2934aad4c9bb7aeea\",\"39b8979cf9f54ad7b6d1c4bb9ec42b04\",\"e2dd4cadeb9b4e6cb067ee298c9bd85c\",\"5b12b7e706c74898b08a897f6a97c71a\",\"416dcf77fe2e44148e418ca50de060be\",\"27d96cced45140059a1658097b1986b1\",\"ebb27aef868048a495b6a40754313f64\",\"00b440a6e06e4dbf80e18bb50eca5e16\",\"27bb5b8aba86431785e077464e707219\",\"8f1089b3f54149a685120a66c09db12e\",\"1e43b9f7ee2c45a886ada6c8333d109e\",\"51fdd0c41e314630875ea85c92061908\",\"dfc346bbed434a7283030f0651118533\",\"be206549f12b46b28f243e983162f1c7\",\"50cc9ffd8b6445549cb4cf7df982ee3d\",\"dd09d0c4ed7d4fe48dd946e71c6e2e52\",\"24a038bd243a4586b93687753a742405\",\"62a80e3a556b4dfc8d1a8ef5b1d8e78a\",\"e045973f36054722bb74074ed3da54a2\"]},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418479286,\"user_tz\":-180,\"elapsed\":48973,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"9c790e7d-ecf7-4564-9217-9d4c6f2e084f\"},\"source\":[\"from sentence_transformers import SentenceTransformer \\n\",\"model = SentenceTransformer(\\\"stsb-xlm-r-multilingual\\\") \"],\"execution_count\":9,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"5566df79eb0c4e28a647081e63fa3463\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=574.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"a306e5a641974d9f8d79d41046edeef0\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=3679.0, style=ProgressStyle(description…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"043b108aeecb49a9a2a57af2136577d3\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=709.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"b8e6c8f0e3a54b4bab5279aa255f4fd5\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=122.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"117536bac3e44d258785c5399226df5e\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=229.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"e475c7364c7f4d7493d3463b682b476f\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=1112253233.0, style=ProgressStyle(descr…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"2a64e60f02e74b03b09cc716152c62cc\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=53.0, style=ProgressStyle(description_w…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"6008b546539043478801f48598bc6ab1\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=5069051.0, style=ProgressStyle(descript…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"d251be52a61d4274b9eb0de1f8ac8c51\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=150.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"bb628c1a02a64667b506003901ae0086\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=9096735.0, style=ProgressStyle(descript…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"5b12b7e706c74898b08a897f6a97c71a\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=505.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"},{\"output_type\":\"display_data\",\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"51fdd0c41e314630875ea85c92061908\",\"version_minor\":0,\"version_major\":2},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=190.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"tPJMKF6jRoR1\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418500095,\"user_tz\":-180,\"elapsed\":20810,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"encoded_train = model.encode(train_x) \\n\",\"encoded_test = model.encode(test_x) \\n\",\"encoded_khmer_test = model.encode(khmer_test) \"],\"execution_count\":10,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"BuyQGkuTRrLE\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418500108,\"user_tz\":-180,\"elapsed\":26,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"import numpy as np \\n\",\"train_y = np.array(train_y) \\n\",\"test_y = np.array(test_y) \"],\"execution_count\":11,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"EDj8VB7zRuJk\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418504905,\"user_tz\":-180,\"elapsed\":4816,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"import tensorflow as tf \\n\",\"input_ = tf.keras.layers.Input((768,)) \\n\",\"classification = tf.keras.layers.Dense( \\n\",\"                                1, \\n\",\"                                activation=\\\"sigmoid\\\")(input_) \\n\",\"classification_model = tf.keras.Model(input_, classification) \\n\",\"classification_model.compile( \\n\",\"               loss=tf.keras.losses.BinaryCrossentropy(), \\n\",\"               optimizer=\\\"Adam\\\", \\n\",\"               metrics=[\\\"accuracy\\\", \\\"Precision\\\", \\\"Recall\\\"]) \"],\"execution_count\":12,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"speAOhBdRyOD\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418510867,\"user_tz\":-180,\"elapsed\":5971,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"c27e9048-2ebe-480b-f9ab-d697e96a0a83\"},\"source\":[\"classification_model.fit( \\n\",\"                     x = encoded_train, \\n\",\"                     y = train_y, \\n\",\"                     validation_data=(encoded_test, test_y), \\n\",\"                     epochs = 20) \"],\"execution_count\":13,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Epoch 1/20\\n\",\"25/25 [==============================] - 4s 15ms/step - loss: 0.6512 - accuracy: 0.6025 - precision: 0.6229 - recall: 0.6110 - val_loss: 0.5918 - val_accuracy: 0.7100 - val_precision: 0.7257 - val_recall: 0.7523\\n\",\"Epoch 2/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.5478 - accuracy: 0.7362 - precision: 0.7321 - recall: 0.7828 - val_loss: 0.5429 - val_accuracy: 0.7100 - val_precision: 0.7684 - val_recall: 0.6697\\n\",\"Epoch 3/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.5097 - accuracy: 0.7638 - precision: 0.7738 - recall: 0.7757 - val_loss: 0.5219 - val_accuracy: 0.7150 - val_precision: 0.7653 - val_recall: 0.6881\\n\",\"Epoch 4/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4894 - accuracy: 0.7912 - precision: 0.7986 - recall: 0.8043 - val_loss: 0.5150 - val_accuracy: 0.7150 - val_precision: 0.7653 - val_recall: 0.6881\\n\",\"Epoch 5/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4749 - accuracy: 0.7912 - precision: 0.8000 - recall: 0.8019 - val_loss: 0.5065 - val_accuracy: 0.7350 - val_precision: 0.7745 - val_recall: 0.7248\\n\",\"Epoch 6/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4613 - accuracy: 0.7925 - precision: 0.8048 - recall: 0.7971 - val_loss: 0.5006 - val_accuracy: 0.7550 - val_precision: 0.7727 - val_recall: 0.7798\\n\",\"Epoch 7/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4543 - accuracy: 0.8062 - precision: 0.8028 - recall: 0.8353 - val_loss: 0.5122 - val_accuracy: 0.7150 - val_precision: 0.7708 - val_recall: 0.6789\\n\",\"Epoch 8/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4468 - accuracy: 0.8000 - precision: 0.8076 - recall: 0.8115 - val_loss: 0.4996 - val_accuracy: 0.7450 - val_precision: 0.7685 - val_recall: 0.7615\\n\",\"Epoch 9/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4429 - accuracy: 0.8037 - precision: 0.8032 - recall: 0.8282 - val_loss: 0.5032 - val_accuracy: 0.7350 - val_precision: 0.7692 - val_recall: 0.7339\\n\",\"Epoch 10/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4335 - accuracy: 0.8100 - precision: 0.8141 - recall: 0.8258 - val_loss: 0.5043 - val_accuracy: 0.7250 - val_precision: 0.7596 - val_recall: 0.7248\\n\",\"Epoch 11/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4300 - accuracy: 0.8087 - precision: 0.8107 - recall: 0.8282 - val_loss: 0.5091 - val_accuracy: 0.7250 - val_precision: 0.7647 - val_recall: 0.7156\\n\",\"Epoch 12/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4270 - accuracy: 0.8200 - precision: 0.8313 - recall: 0.8234 - val_loss: 0.5166 - val_accuracy: 0.7250 - val_precision: 0.7755 - val_recall: 0.6972\\n\",\"Epoch 13/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4216 - accuracy: 0.8175 - precision: 0.8212 - recall: 0.8329 - val_loss: 0.5107 - val_accuracy: 0.7200 - val_precision: 0.7624 - val_recall: 0.7064\\n\",\"Epoch 14/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4166 - accuracy: 0.8150 - precision: 0.8173 - recall: 0.8329 - val_loss: 0.5174 - val_accuracy: 0.7150 - val_precision: 0.7600 - val_recall: 0.6972\\n\",\"Epoch 15/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4124 - accuracy: 0.8150 - precision: 0.8219 - recall: 0.8258 - val_loss: 0.5085 - val_accuracy: 0.7300 - val_precision: 0.7570 - val_recall: 0.7431\\n\",\"Epoch 16/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4093 - accuracy: 0.8225 - precision: 0.8274 - recall: 0.8353 - val_loss: 0.5120 - val_accuracy: 0.7100 - val_precision: 0.7476 - val_recall: 0.7064\\n\",\"Epoch 17/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4053 - accuracy: 0.8175 - precision: 0.8182 - recall: 0.8377 - val_loss: 0.5116 - val_accuracy: 0.7150 - val_precision: 0.7500 - val_recall: 0.7156\\n\",\"Epoch 18/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.4057 - accuracy: 0.8150 - precision: 0.8265 - recall: 0.8186 - val_loss: 0.5129 - val_accuracy: 0.7350 - val_precision: 0.7593 - val_recall: 0.7523\\n\",\"Epoch 19/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.3981 - accuracy: 0.8313 - precision: 0.8365 - recall: 0.8425 - val_loss: 0.5174 - val_accuracy: 0.7250 - val_precision: 0.7596 - val_recall: 0.7248\\n\",\"Epoch 20/20\\n\",\"25/25 [==============================] - 0s 4ms/step - loss: 0.3962 - accuracy: 0.8375 - precision: 0.8416 - recall: 0.8496 - val_loss: 0.5226 - val_accuracy: 0.7150 - val_precision: 0.7600 - val_recall: 0.6972\\n\"],\"name\":\"stdout\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"<tensorflow.python.keras.callbacks.History at 0x7f8d141fdc10>\"]},\"metadata\":{\"tags\":[]},\"execution_count\":13}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"QlBd4JMNR1H-\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625418510869,\"user_tz\":-180,\"elapsed\":19,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"5a10e0b0-0d87-4214-efd1-75151d99a293\"},\"source\":[\"classification_model.evaluate(x = encoded_khmer_test,\\n\",\"                              y = test_y) \"],\"execution_count\":14,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"7/7 [==============================] - 0s 3ms/step - loss: 0.5945 - accuracy: 0.7250 - precision: 0.7015 - recall: 0.8624\\n\"],\"name\":\"stdout\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"[0.5944913625717163,\\n\",\" 0.7250000238418579,\\n\",\" 0.7014925479888916,\\n\",\" 0.8623853325843811]\"]},\"metadata\":{\"tags\":[]},\"execution_count\":14}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"JTlUVGb5sdwK\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH09/CH09e_Cross_lingual_zero_shot_learning.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH09d_Cross_lingual_zero_shot_learning.ipynb\",\"provenance\":[],\"authorship_tag\":\"ABX9TyP3IdVQMGzooC9X4uBA0Sp8\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"}},\"cells\":[{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"UCthB_lEtf7S\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625405856850,\"user_tz\":-180,\"elapsed\":3634,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"4d33c447-0eae-4a96-b728-5dee71d8d088\"},\"source\":[\"!pip install transformers[sentencepiece]\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Requirement already satisfied: transformers[sentencepiece] in /usr/local/lib/python3.7/dist-packages (4.8.2)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (2.23.0)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (3.13)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (3.0.12)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (20.9)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (0.0.45)\\n\",\"Requirement already satisfied: huggingface-hub==0.0.12 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (0.0.12)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (2019.12.20)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (4.41.1)\\n\",\"Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (1.19.5)\\n\",\"Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (0.10.3)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (4.5.0)\\n\",\"Requirement already satisfied: protobuf; extra == \\\"sentencepiece\\\" in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (3.12.4)\\n\",\"Requirement already satisfied: sentencepiece==0.1.91; extra == \\\"sentencepiece\\\" in /usr/local/lib/python3.7/dist-packages (from transformers[sentencepiece]) (0.1.91)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers[sentencepiece]) (2.10)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers[sentencepiece]) (2021.5.30)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers[sentencepiece]) (1.24.3)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers[sentencepiece]) (3.0.4)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers[sentencepiece]) (2.4.7)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers[sentencepiece]) (1.15.0)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers[sentencepiece]) (1.0.1)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers[sentencepiece]) (7.1.2)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from huggingface-hub==0.0.12->transformers[sentencepiece]) (3.7.4.3)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers[sentencepiece]) (3.4.1)\\n\",\"Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from protobuf; extra == \\\"sentencepiece\\\"->transformers[sentencepiece]) (57.0.0)\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"rhUTN5MxtqhQ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406013787,\"user_tz\":-180,\"elapsed\":154843,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"from torch.nn.functional import softmax \\n\",\"from transformers import MT5ForConditionalGeneration, MT5Tokenizer \\n\",\"\\n\",\"model_name = \\\"alan-turing-institute/mt5-large-finetuned-mnli-xtreme-xnli\\\" \\n\",\"tokenizer = MT5Tokenizer.from_pretrained(model_name) \\n\",\"model = MT5ForConditionalGeneration.from_pretrained(model_name)\"],\"execution_count\":2,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"I-OW8Q1ZttoZ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406018900,\"user_tz\":-180,\"elapsed\":366,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"sequence_to_classify = \\\"Wen werden Sie bei der nächsten Wahl wählen? \\\" \\n\",\"candidate_labels = [\\\"spor\\\", \\\"ekonomi\\\", \\\"politika\\\"] \\n\",\"hypothesis_template = \\\"Dieses Beispiel ist {}.\\\"\"],\"execution_count\":3,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"9fNYHp1Jtugh\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406021259,\"user_tz\":-180,\"elapsed\":315,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"ENTAILS_LABEL = \\\"▁0\\\" \\n\",\"NEUTRAL_LABEL = \\\"▁1\\\" \\n\",\"CONTRADICTS_LABEL = \\\"▁2\\\" \\n\",\"label_inds = tokenizer.convert_tokens_to_ids([ \\n\",\"                           ENTAILS_LABEL, \\n\",\"                           NEUTRAL_LABEL, \\n\",\"                           CONTRADICTS_LABEL])\"],\"execution_count\":4,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"v5GgejAItulC\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406023719,\"user_tz\":-180,\"elapsed\":324,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"def process_nli(premise, hypothesis): \\n\",\"    return f'xnli: premise: {premise} hypothesis: {hypothesis}' \"],\"execution_count\":5,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"BFdWG5tBtzvO\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406025406,\"user_tz\":-180,\"elapsed\":294,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"pairs = [(sequence_to_classify, hypothesis_template.format(label)) for label in candidate_labels] \\n\",\"seqs = [process_nli(premise=premise, \\n\",\"                    hypothesis=hypothesis) \\n\",\"                    for premise, hypothesis in pairs] \"],\"execution_count\":6,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"lfPcT2i7t1tU\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406027557,\"user_tz\":-180,\"elapsed\":15,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"ed5fa148-5d3a-4833-e495-95d2b46cc0cb\"},\"source\":[\"print(seqs) \"],\"execution_count\":7,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"['xnli: premise: Wen werden Sie bei der nächsten Wahl wählen?  hypothesis: Dieses Beispiel ist spor.', 'xnli: premise: Wen werden Sie bei der nächsten Wahl wählen?  hypothesis: Dieses Beispiel ist ekonomi.', 'xnli: premise: Wen werden Sie bei der nächsten Wahl wählen?  hypothesis: Dieses Beispiel ist politika.']\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"eYnzpXLzt3jc\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406037740,\"user_tz\":-180,\"elapsed\":3215,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"inputs = tokenizer.batch_encode_plus(seqs, return_tensors=\\\"pt\\\", padding=True) \\n\",\"out = model.generate(**inputs, output_scores=True, return_dict_in_generate=True, num_beams=1) \"],\"execution_count\":8,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"nXFNUT9It5jS\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406039693,\"user_tz\":-180,\"elapsed\":429,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"scores = out.scores[0] \\n\",\"scores = scores[:, label_inds] \"],\"execution_count\":9,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"1pYywKNgt7qL\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406040709,\"user_tz\":-180,\"elapsed\":8,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"27499535-7c3e-4e91-c370-f1d3e09bfb18\"},\"source\":[\"print(scores)\"],\"execution_count\":10,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"tensor([[-0.9851,  2.2550, -0.0783],\\n\",\"        [-5.1690, -0.7202, -2.5855],\\n\",\"        [ 2.7442,  3.6727,  0.7169]])\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"71OFMi-4t9tp\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406043481,\"user_tz\":-180,\"elapsed\":305,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"entailment_ind = 0 \\n\",\"contradiction_ind = 2 \\n\",\"entail_vs_contra_scores = scores[:, [entailment_ind, contradiction_ind]] \"],\"execution_count\":11,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"hd4Xx9SDt_wO\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406045864,\"user_tz\":-180,\"elapsed\":304,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"entail_vs_contra_probas = softmax(entail_vs_contra_scores, dim=1) \"],\"execution_count\":12,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"EtDjbgswuBYx\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406046894,\"user_tz\":-180,\"elapsed\":6,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"00a4417f-f360-4193-b950-ffaf693a9a50\"},\"source\":[\"print(entail_vs_contra_probas)\"],\"execution_count\":13,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"tensor([[0.2877, 0.7123],\\n\",\"        [0.0702, 0.9298],\\n\",\"        [0.8836, 0.1164]])\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"o0adm4HuuDYM\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406050725,\"user_tz\":-180,\"elapsed\":276,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}}},\"source\":[\"entail_scores = scores[:, entailment_ind] \\n\",\"entail_probas = softmax(entail_scores, dim=0) \"],\"execution_count\":14,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"qefMYWs_uFFE\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406051735,\"user_tz\":-180,\"elapsed\":10,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"056d1956-44f6-4a97-fef5-7804fe7dc53e\"},\"source\":[\"print(entail_probas) \"],\"execution_count\":15,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"tensor([2.3438e-02, 3.5716e-04, 9.7620e-01])\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"Owl7ae7UuHGU\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625406055000,\"user_tz\":-180,\"elapsed\":314,\"user\":{\"displayName\":\"meysam asgari chenaghlu\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GgN-uRJ5KciT9X_sZpZ4pOpEANlj5GCtXuY2ecq=s64\",\"userId\":\"13491140841572947804\"}},\"outputId\":\"148db01d-7d8a-4d32-d636-3cc26468c946\"},\"source\":[\"print(dict(zip(candidate_labels, entail_probas.tolist()))) \"],\"execution_count\":16,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"{'spor': 0.023438096046447754, 'ekonomi': 0.0003571564157027751, 'politika': 0.9762046933174133}\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"jh3mxc4wubA3\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH09/CH09f_Fine-tuning_performance_of_multilingual_models.ipynb",
    "content": "{\"nbformat\":4,\"nbformat_minor\":0,\"metadata\":{\"colab\":{\"name\":\"CH09f_Fine-tuning_performance_of_multilingual_models.ipynb\",\"provenance\":[],\"collapsed_sections\":[],\"machine_shape\":\"hm\",\"authorship_tag\":\"ABX9TyN8AcP3t6h7ZBdETjOuck/m\"},\"kernelspec\":{\"name\":\"python3\",\"display_name\":\"Python 3\"},\"language_info\":{\"name\":\"python\"},\"accelerator\":\"GPU\"},\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"K8rPS5-aTUys\"},\"source\":[\"# Fine-tuning performance of multilingual models \"]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"bixw-FrJ-6La\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622534762825,\"user_tz\":-180,\"elapsed\":29361,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"79cb3d19-0cd7-459c-e772-eeaaba90fbd7\"},\"source\":[\"import torch, os\\n\",\"from google.colab import drive\\n\",\"drive.mount('/content/drive')\\n\",\"if os.getcwd() != \\\"/content/drive/My Drive/akademi/Packt NLP with Transformers/CH09\\\":\\n\",\"  os.chdir(\\\"drive/MyDrive/akademi/Packt NLP with Transformers/CH09\\\")\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Mounted at /content/drive\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"_3DdxVHQw9sZ\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622534771494,\"user_tz\":-180,\"elapsed\":4428,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"6b9122bb-0c6d-44a3-ec1d-5fceacc8e9fd\"},\"source\":[\"!pip install sentencepiece\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Collecting sentencepiece\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/f5/99/e0808cb947ba10f575839c43e8fafc9cc44e4a7a2c8f79c60db48220a577/sentencepiece-0.1.95-cp37-cp37m-manylinux2014_x86_64.whl (1.2MB)\\n\",\"\\u001b[K     |████████████████████████████████| 1.2MB 6.6MB/s \\n\",\"\\u001b[?25hInstalling collected packages: sentencepiece\\n\",\"Successfully installed sentencepiece-0.1.95\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"6AJ4_0bE678m\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622534779417,\"user_tz\":-180,\"elapsed\":7930,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"8c92d4af-0b2e-4562-c15a-e6784c8a842c\"},\"source\":[\"!pip install transformers datasets\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Collecting transformers\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d5/43/cfe4ee779bbd6a678ac6a97c5a5cdeb03c35f9eaebbb9720b036680f9a2d/transformers-4.6.1-py3-none-any.whl (2.2MB)\\n\",\"\\u001b[K     |████████████████████████████████| 2.3MB 6.3MB/s \\n\",\"\\u001b[?25hCollecting datasets\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/94/f8/ff7cd6e3b400b33dcbbfd31c6c1481678a2b2f669f521ad20053009a9aa3/datasets-1.7.0-py3-none-any.whl (234kB)\\n\",\"\\u001b[K     |████████████████████████████████| 235kB 21.9MB/s \\n\",\"\\u001b[?25hCollecting sacremoses\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/ee/67241dc87f266093c533a2d4d3d69438e57d7a90abb216fa076e7d475d4a/sacremoses-0.0.45-py3-none-any.whl (895kB)\\n\",\"\\u001b[K     |████████████████████████████████| 901kB 21.7MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Collecting tokenizers<0.11,>=0.10.1\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d4/e2/df3543e8ffdab68f5acc73f613de9c2b155ac47f162e725dcac87c521c11/tokenizers-0.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.3MB)\\n\",\"\\u001b[K     |████████████████████████████████| 3.3MB 36.6MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: importlib-metadata; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.0.1)\\n\",\"Collecting huggingface-hub==0.0.8\\n\",\"  Downloading https://files.pythonhosted.org/packages/a1/88/7b1e45720ecf59c6c6737ff332f41c955963090a18e72acbcbeac6b25e86/huggingface_hub-0.0.8-py3-none-any.whl\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from datasets) (1.1.5)\\n\",\"Requirement already satisfied: pyarrow<4.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from datasets) (3.0.0)\\n\",\"Collecting xxhash\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/7d/4f/0a862cad26aa2ed7a7cd87178cbbfa824fc1383e472d63596a0d018374e7/xxhash-2.0.2-cp37-cp37m-manylinux2010_x86_64.whl (243kB)\\n\",\"\\u001b[K     |████████████████████████████████| 245kB 25.0MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from datasets) (0.3.3)\\n\",\"Requirement already satisfied: multiprocess in /usr/local/lib/python3.7/dist-packages (from datasets) (0.70.11.1)\\n\",\"Collecting fsspec\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/bc/52/816d1a3a599176057bf29dfacb1f8fadb61d35fbd96cb1bab4aaa7df83c0/fsspec-2021.5.0-py3-none-any.whl (111kB)\\n\",\"\\u001b[K     |████████████████████████████████| 112kB 36.3MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.15.0)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (7.1.2)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers) (1.0.1)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (1.24.3)\\n\",\"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2.10)\\n\",\"Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (3.0.4)\\n\",\"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->transformers) (2020.12.5)\\n\",\"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers) (2.4.7)\\n\",\"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.4.1)\\n\",\"Requirement already satisfied: typing-extensions>=3.6.4; python_version < \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version < \\\"3.8\\\"->transformers) (3.7.4.3)\\n\",\"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2.8.1)\\n\",\"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas->datasets) (2018.9)\\n\",\"Installing collected packages: sacremoses, tokenizers, huggingface-hub, transformers, xxhash, fsspec, datasets\\n\",\"Successfully installed datasets-1.7.0 fsspec-2021.5.0 huggingface-hub-0.0.8 sacremoses-0.0.45 tokenizers-0.10.3 transformers-4.6.1 xxhash-2.0.2\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"BDh5EsI_BOXS\"},\"source\":[\"## Loading Pre-Trained Model\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"x9RjPCc76GjE\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":35},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622534779426,\"user_tz\":-180,\"elapsed\":32,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"32b5c5d7-008e-4fed-8451-f3459b996dca\"},\"source\":[\"from torch import cuda\\n\",\"device = 'cuda' if cuda.is_available() else 'cpu'\\n\",\"device\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"application/vnd.google.colaboratory.intrinsic+json\":{\"type\":\"string\"},\"text/plain\":[\"'cuda'\"]},\"metadata\":{\"tags\":[]},\"execution_count\":4}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"4p8rHzYVBUJU\"},\"source\":[\"### Obtaining and Preparing downstream task data\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"jeUi2zttmYBO\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622534779427,\"user_tz\":-180,\"elapsed\":20,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"fab13077-9238-4d85-bd3f-949e9558e2c0\"},\"source\":[\"if \\\"TTC4900.csv\\\" not in os.listdir():\\n\",\" !wget  https://raw.githubusercontent.com/savasy/TurkishTextClassification/master/TTC4900.csv\\n\",\"else:\\n\",\"   print(\\\"Already there !\\\")\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Already there !\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"XGvn9cWEtXcE\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":204},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622534780725,\"user_tz\":-180,\"elapsed\":1313,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"e80ae760-93d9-42c0-f7f7-3cb524fafa42\"},\"source\":[\"import pandas as pd\\n\",\"data= pd.read_csv(\\\"TTC4900.csv\\\")\\n\",\"data=data.sample(frac=1.0, random_state=42)\\n\",\"data.head(5)\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>category</th>\\n\",\"      <th>text</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>4657</th>\\n\",\"      <td>teknoloji</td>\\n\",\"      <td>acıların kedisi sam çatık kaşlı kedi sam in i...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3539</th>\\n\",\"      <td>spor</td>\\n\",\"      <td>g saray a git santos van_persie den forma ala...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>907</th>\\n\",\"      <td>dunya</td>\\n\",\"      <td>endonezya da çatışmalar 14 ölü endonezya da i...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4353</th>\\n\",\"      <td>teknoloji</td>\\n\",\"      <td>emniyetten polis logolu virüs uyarısı telefon...</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3745</th>\\n\",\"      <td>spor</td>\\n\",\"      <td>beni türk yapın cristian_baroni yıldırım dan ...</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"        category                                               text\\n\",\"4657  teknoloji    acıların kedisi sam çatık kaşlı kedi sam in i...\\n\",\"3539       spor    g saray a git santos van_persie den forma ala...\\n\",\"907       dunya    endonezya da çatışmalar 14 ölü endonezya da i...\\n\",\"4353  teknoloji    emniyetten polis logolu virüs uyarısı telefon...\\n\",\"3745       spor    beni türk yapın cristian_baroni yıldırım dan ...\"]},\"metadata\":{\"tags\":[]},\"execution_count\":6}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"5jyOH3YGvyYW\"},\"source\":[\"labels=[\\\"teknoloji\\\",\\\"ekonomi\\\",\\\"saglik\\\",\\\"siyaset\\\",\\\"kultur\\\",\\\"spor\\\",\\\"dunya\\\"]\\n\",\"NUM_LABELS= len(labels)\\n\",\"id2label={i:l for i,l in enumerate(labels)}\\n\",\"label2id={l:i for i,l in enumerate(labels)}\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"MQ6iJXbFn86y\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622534780728,\"user_tz\":-180,\"elapsed\":18,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"8eb78733-dfe1-44f0-891f-c1a9ba91d8f5\"},\"source\":[\"label2id\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"{'dunya': 6,\\n\",\" 'ekonomi': 1,\\n\",\" 'kultur': 4,\\n\",\" 'saglik': 2,\\n\",\" 'siyaset': 3,\\n\",\" 'spor': 5,\\n\",\" 'teknoloji': 0}\"]},\"metadata\":{\"tags\":[]},\"execution_count\":8}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"EJYWAXVovqOQ\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"HbdFN3VZoawV\"},\"source\":[\"data[\\\"labels\\\"]=data.category.map(lambda x: label2id[x.strip()])\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":204},\"id\":\"KGAcx7nqwJgm\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622534795482,\"user_tz\":-180,\"elapsed\":9,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"87b62118-cc1d-485b-8a3b-ac636015aaba\"},\"source\":[\"data.head()\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>category</th>\\n\",\"      <th>text</th>\\n\",\"      <th>labels</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>4657</th>\\n\",\"      <td>teknoloji</td>\\n\",\"      <td>acıların kedisi sam çatık kaşlı kedi sam in i...</td>\\n\",\"      <td>0</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3539</th>\\n\",\"      <td>spor</td>\\n\",\"      <td>g saray a git santos van_persie den forma ala...</td>\\n\",\"      <td>5</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>907</th>\\n\",\"      <td>dunya</td>\\n\",\"      <td>endonezya da çatışmalar 14 ölü endonezya da i...</td>\\n\",\"      <td>6</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>4353</th>\\n\",\"      <td>teknoloji</td>\\n\",\"      <td>emniyetten polis logolu virüs uyarısı telefon...</td>\\n\",\"      <td>0</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>3745</th>\\n\",\"      <td>spor</td>\\n\",\"      <td>beni türk yapın cristian_baroni yıldırım dan ...</td>\\n\",\"      <td>5</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"        category                                               text  labels\\n\",\"4657  teknoloji    acıların kedisi sam çatık kaşlı kedi sam in i...       0\\n\",\"3539       spor    g saray a git santos van_persie den forma ala...       5\\n\",\"907       dunya    endonezya da çatışmalar 14 ölü endonezya da i...       6\\n\",\"4353  teknoloji    emniyetten polis logolu virüs uyarısı telefon...       0\\n\",\"3745       spor    beni türk yapın cristian_baroni yıldırım dan ...       5\"]},\"metadata\":{\"tags\":[]},\"execution_count\":13}]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":483},\"id\":\"zeNYOXNBGe1B\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622534780730,\"user_tz\":-180,\"elapsed\":16,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"a854d1b6-9ff0-433d-b32e-0bb4ee254a65\"},\"source\":[\"data.category.value_counts().plot(kind='pie', figsize=(8,8))\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"<matplotlib.axes._subplots.AxesSubplot at 0x7f6d3086cbd0>\"]},\"metadata\":{\"tags\":[]},\"execution_count\":11},{\"output_type\":\"display_data\",\"data\":{\"image/png\":\"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\\n\",\"text/plain\":[\"<Figure size 576x576 with 1 Axes>\"]},\"metadata\":{\"tags\":[]}}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"bzls3s6etz0g\"},\"source\":[\"## BERT\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"r80yPEvU79rx\"},\"source\":[\"#from transformers import BertTokenizerFast\\n\",\"#tokenizer = BertTokenizerFast.from_pretrained(\\\"dbmdz/bert-base-turkish-uncased\\\", max_length=512)\\n\",\"#from transformers import BertForSequenceClassification\\n\",\"#model = BertForSequenceClassification.from_pretrained(\\\"dbmdz/bert-base-turkish-uncased\\\", num_labels=NUM_LABELS, id2label=id2label, label2id=label2id)\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"un03HbEU7M6x\"},\"source\":[\"# We will run the fine-tuning computations from the previous chapter again with new pre-traine model\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"KoKEjdDI-Nsk\"},\"source\":[\"We either instatiate mBERT or XLM-R. Firts we go with mBERT, then we will use XLM-R. Currently we instantiate mBERT and we comment out XLM-R code block as follows:\\n\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"IS9acQTet41O\"},\"source\":[\"# mBERT\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"L7mT5FEU2Jyr\"},\"source\":[\"from transformers import BertForSequenceClassification, AutoTokenizer\\n\",\"tokenizer = AutoTokenizer.from_pretrained(\\\"bert-base-multilingual-uncased\\\")\\n\",\"model = BertForSequenceClassification.from_pretrained(\\\"bert-base-multilingual-uncased\\\", num_labels=NUM_LABELS, id2label=id2label, label2id=label2id)\\n\",\"model.to(device)\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"uezW7KJWt7LN\"},\"source\":[\"## XLM-R\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"XLXZpQ4Lv6zb\"},\"source\":[\"Official Note of XLM-R:\\n\",\"This model was pre-trained on set of 100 languages, as described in the original paper.\\n\",\"It was then fine-tuned on the task of NLI on the concatenated MNLI train set and the XNLI validation and test sets. Finally, it was trained for one additional epoch on only XNLI data where the translations for the premise and hypothesis are shuffled such that the premise and hypothesis for each example come from the same original English example but the premise and hypothesis are of different languages.\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"X3ELK9wXh5z9\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":146},\"executionInfo\":{\"status\":\"error\",\"timestamp\":1625426682491,\"user_tz\":-180,\"elapsed\":23,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"1586c8c6-6d65-4152-c5c5-4166597d9247\"},\"source\":[\"'''\\n\",\"from transformers import AutoTokenizer, XLMRobertaForSequenceClassification\\n\",\"tokenizer = AutoTokenizer.from_pretrained(\\\"xlm-roberta-base\\\")\\n\",\"model = XLMRobertaForSequenceClassification.from_pretrained(\\\"xlm-roberta-base\\\",num_labels=NUM_LABELS, id2label=id2label, label2id=label2id)\\n\",\"model.to(device)\"],\"execution_count\":1,\"outputs\":[{\"output_type\":\"error\",\"ename\":\"SyntaxError\",\"evalue\":\"ignored\",\"traceback\":[\"\\u001b[0;36m  File \\u001b[0;32m\\\"<ipython-input-1-c6328def4273>\\\"\\u001b[0;36m, line \\u001b[0;32m5\\u001b[0m\\n\\u001b[0;31m    model.to(device)\\u001b[0m\\n\\u001b[0m                    \\n^\\u001b[0m\\n\\u001b[0;31mSyntaxError\\u001b[0m\\u001b[0;31m:\\u001b[0m EOF while scanning triple-quoted string literal\\n\"]}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"yrMCV-rg4jCs\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"52GnIh5c7MhO\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"id\":\"j6Hk9iK4v8AY\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622534872164,\"user_tz\":-180,\"elapsed\":541,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"86100e36-6d1a-45d9-d4c6-7c21a59308e5\"},\"source\":[\"!nvidia-smi\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"stream\",\"text\":[\"Tue Jun  1 08:07:51 2021       \\n\",\"+-----------------------------------------------------------------------------+\\n\",\"| NVIDIA-SMI 465.19.01    Driver Version: 460.32.03    CUDA Version: 11.2     |\\n\",\"|-------------------------------+----------------------+----------------------+\\n\",\"| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |\\n\",\"| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |\\n\",\"|                               |                      |               MIG M. |\\n\",\"|===============================+======================+======================|\\n\",\"|   0  Tesla P100-PCIE...  Off  | 00000000:00:04.0 Off |                    0 |\\n\",\"| N/A   48C    P0    36W / 250W |   2011MiB / 16280MiB |      0%      Default |\\n\",\"|                               |                      |                  N/A |\\n\",\"+-------------------------------+----------------------+----------------------+\\n\",\"                                                                               \\n\",\"+-----------------------------------------------------------------------------+\\n\",\"| Processes:                                                                  |\\n\",\"|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |\\n\",\"|        ID   ID                                                   Usage      |\\n\",\"|=============================================================================|\\n\",\"+-----------------------------------------------------------------------------+\\n\"],\"name\":\"stdout\"}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"ZROZOxM9xi3l\"},\"source\":[\"## Splitting data\\n\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"HM58CfgUZ0oK\"},\"source\":[\"SIZE= data.shape[0]\\n\",\"\\n\",\"train_texts= list(data.text[:SIZE//2])\\n\",\"val_texts=   list(data.text[SIZE//2:(3*SIZE)//4 ])\\n\",\"test_texts=  list(data.text[(3*SIZE)//4:])\\n\",\"\\n\",\"train_labels= list(data.labels[:SIZE//2])\\n\",\"val_labels=   list(data.labels[SIZE//2:(3*SIZE)//4])\\n\",\"test_labels=  list(data.labels[(3*SIZE)//4:])\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"vwe5Bt8CfhdU\",\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622534883575,\"user_tz\":-180,\"elapsed\":4,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"17e22ece-39af-4edc-eb40-661ea19d13a5\"},\"source\":[\"len(train_texts), len(val_texts), len(test_texts)\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"(2450, 1225, 1225)\"]},\"metadata\":{\"tags\":[]},\"execution_count\":17}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"snOgiQe2mbpx\"},\"source\":[\"train_encodings = tokenizer(train_texts, truncation=True, padding=True)\\n\",\"val_encodings  = tokenizer(val_texts, truncation=True, padding=True)\\n\",\"test_encodings = tokenizer(test_texts, truncation=True, padding=True)\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"TvN9Siw65H9G\"},\"source\":[\"from torch.utils.data import Dataset\\n\",\"class MyDataset(Dataset):\\n\",\"    def __init__(self, encodings, labels):\\n\",\"        self.encodings = encodings\\n\",\"        self.labels = labels\\n\",\"    def __getitem__(self, idx):\\n\",\"        item = {key: torch.tensor(val[idx]) for key, val in self.encodings.items()}\\n\",\"        item['labels'] = torch.tensor(self.labels[idx])\\n\",\"        return item\\n\",\"    def __len__(self):\\n\",\"        return len(self.labels)\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Vx3u-9ljtmM_\"},\"source\":[\"train_dataset = MyDataset(train_encodings, train_labels)\\n\",\"val_dataset = MyDataset(val_encodings, val_labels)\\n\",\"test_dataset = MyDataset(test_encodings, test_labels)\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"earrg8TiBojU\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"SAu_MvIdp_Gq\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"-dXcl4LWBsJy\"},\"source\":[\"## Training with Trainer Class\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"jHP9LR_QsytZ\"},\"source\":[\"from transformers import TrainingArguments, Trainer\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"PjcZ_K87l9CX\"},\"source\":[\"from sklearn.metrics import accuracy_score, precision_recall_fscore_support \\n\",\"def compute_metrics(pred): \\n\",\"    labels = pred.label_ids \\n\",\"    preds = pred.predictions.argmax(-1) \\n\",\"    precision, recall, f1, _ = precision_recall_fscore_support(labels, preds, average='macro') \\n\",\"    acc = accuracy_score(labels, preds) \\n\",\"    return { \\n\",\"        'Accuracy': acc, \\n\",\"        'F1': f1, \\n\",\"        'Precision': precision, \\n\",\"        'Recall': recall \\n\",\"    } \"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"zMiPOIVAmYI2\"},\"source\":[\"training_args = TrainingArguments(\\n\",\"    # The output directory where the model predictions and checkpoints will be written\\n\",\"    output_dir='./TTC4900Model', \\n\",\"    do_train=True,\\n\",\"    do_eval=True,\\n\",\"    #  The number of epochs, defaults to 3.0 \\n\",\"    num_train_epochs=3,              \\n\",\"    per_device_train_batch_size=16,  \\n\",\"    per_device_eval_batch_size=32,\\n\",\"    # Number of steps used for a linear warmup\\n\",\"    warmup_steps=100,                \\n\",\"    weight_decay=0.01,\\n\",\"    logging_strategy='steps',\\n\",\"   # TensorBoard log directory                 \\n\",\"    logging_dir='./multi-class-logs',            \\n\",\"    logging_steps=50,\\n\",\"    evaluation_strategy=\\\"steps\\\",\\n\",\"    eval_steps=50,\\n\",\"    save_strategy=\\\"epoch\\\", \\n\",\"    fp16=True,\\n\",\"    load_best_model_at_end=True\\n\",\")\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"8Ajz99mwj-OL\"},\"source\":[\"trainer = Trainer(\\n\",\"    # the pre-trained model that will be fine-tuned \\n\",\"    model=model,\\n\",\"     # training arguments that we defined above                        \\n\",\"    args=training_args,                 \\n\",\"    train_dataset=train_dataset,         \\n\",\"    eval_dataset=val_dataset,            \\n\",\"    compute_metrics= compute_metrics\\n\",\")\"],\"execution_count\":null,\"outputs\":[]},{\"cell_type\":\"code\",\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":425},\"id\":\"1WRhCH-Hj-RT\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622536203891,\"user_tz\":-180,\"elapsed\":1305521,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"746feab3-7e07-4b74-9493-18122886c79a\"},\"source\":[\"trainer.train()\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"text/html\":[\"\\n\",\"    <div>\\n\",\"      \\n\",\"      <progress value='462' max='462' style='width:300px; height:20px; vertical-align: middle;'></progress>\\n\",\"      [462/462 21:43, Epoch 3/3]\\n\",\"    </div>\\n\",\"    <table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: left;\\\">\\n\",\"      <th>Step</th>\\n\",\"      <th>Training Loss</th>\\n\",\"      <th>Validation Loss</th>\\n\",\"      <th>Accuracy</th>\\n\",\"      <th>F1</th>\\n\",\"      <th>Precision</th>\\n\",\"      <th>Recall</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <td>50</td>\\n\",\"      <td>1.909000</td>\\n\",\"      <td>1.640363</td>\\n\",\"      <td>0.462857</td>\\n\",\"      <td>0.385107</td>\\n\",\"      <td>0.400540</td>\\n\",\"      <td>0.458520</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>100</td>\\n\",\"      <td>1.050700</td>\\n\",\"      <td>0.606919</td>\\n\",\"      <td>0.800816</td>\\n\",\"      <td>0.785080</td>\\n\",\"      <td>0.839718</td>\\n\",\"      <td>0.803712</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>150</td>\\n\",\"      <td>0.579700</td>\\n\",\"      <td>0.815248</td>\\n\",\"      <td>0.725714</td>\\n\",\"      <td>0.706009</td>\\n\",\"      <td>0.854710</td>\\n\",\"      <td>0.724133</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>200</td>\\n\",\"      <td>0.469800</td>\\n\",\"      <td>0.496873</td>\\n\",\"      <td>0.852245</td>\\n\",\"      <td>0.850184</td>\\n\",\"      <td>0.870633</td>\\n\",\"      <td>0.852877</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>250</td>\\n\",\"      <td>0.355200</td>\\n\",\"      <td>0.346857</td>\\n\",\"      <td>0.900408</td>\\n\",\"      <td>0.899246</td>\\n\",\"      <td>0.903131</td>\\n\",\"      <td>0.899766</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>300</td>\\n\",\"      <td>0.335900</td>\\n\",\"      <td>0.347584</td>\\n\",\"      <td>0.905306</td>\\n\",\"      <td>0.905045</td>\\n\",\"      <td>0.911391</td>\\n\",\"      <td>0.905030</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>350</td>\\n\",\"      <td>0.208000</td>\\n\",\"      <td>0.387149</td>\\n\",\"      <td>0.905306</td>\\n\",\"      <td>0.905070</td>\\n\",\"      <td>0.907696</td>\\n\",\"      <td>0.905757</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>400</td>\\n\",\"      <td>0.216500</td>\\n\",\"      <td>0.339011</td>\\n\",\"      <td>0.912653</td>\\n\",\"      <td>0.912454</td>\\n\",\"      <td>0.913331</td>\\n\",\"      <td>0.912042</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <td>450</td>\\n\",\"      <td>0.179900</td>\\n\",\"      <td>0.341186</td>\\n\",\"      <td>0.920000</td>\\n\",\"      <td>0.919543</td>\\n\",\"      <td>0.920086</td>\\n\",\"      <td>0.920174</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table><p>\"],\"text/plain\":[\"<IPython.core.display.HTML object>\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"stream\",\"text\":[\"/usr/local/lib/python3.7/dist-packages/sklearn/metrics/_classification.py:1272: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior.\\n\",\"  _warn_prf(average, modifier, msg_start, len(result))\\n\"],\"name\":\"stderr\"},{\"output_type\":\"execute_result\",\"data\":{\"text/plain\":[\"TrainOutput(global_step=462, training_loss=0.5774300795096856, metrics={'train_runtime': 1304.5819, 'train_samples_per_second': 0.354, 'total_flos': 0, 'epoch': 3.0, 'init_mem_cpu_alloc_delta': 118784, 'init_mem_gpu_alloc_delta': 0, 'init_mem_cpu_peaked_delta': 0, 'init_mem_gpu_peaked_delta': 0, 'train_mem_cpu_alloc_delta': -180760576, 'train_mem_gpu_alloc_delta': 3356533248, 'train_mem_cpu_peaked_delta': 200425472, 'train_mem_gpu_peaked_delta': 10878653952})\"]},\"metadata\":{\"tags\":[]},\"execution_count\":25}]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"fXPcNP2_6_ES\"},\"source\":[\"\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"FN2i7kRIj-UQ\",\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":162},\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1622536291445,\"user_tz\":-180,\"elapsed\":87143,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}},\"outputId\":\"329da9d5-b08e-4351-fc42-5e0335fc1234\"},\"source\":[\"q=[trainer.evaluate(eval_dataset=data) for data in [train_dataset, val_dataset, test_dataset]]\\n\",\"pd.DataFrame(q, index=[\\\"train\\\",\\\"val\\\",\\\"test\\\"]).iloc[:,:5]\"],\"execution_count\":null,\"outputs\":[{\"output_type\":\"display_data\",\"data\":{\"text/html\":[\"\\n\",\"    <div>\\n\",\"      \\n\",\"      <progress value='155' max='77' style='width:300px; height:20px; vertical-align: middle;'></progress>\\n\",\"      [77/77 01:26]\\n\",\"    </div>\\n\",\"    \"],\"text/plain\":[\"<IPython.core.display.HTML object>\"]},\"metadata\":{\"tags\":[]}},{\"output_type\":\"execute_result\",\"data\":{\"text/html\":[\"<div>\\n\",\"<style scoped>\\n\",\"    .dataframe tbody tr th:only-of-type {\\n\",\"        vertical-align: middle;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe tbody tr th {\\n\",\"        vertical-align: top;\\n\",\"    }\\n\",\"\\n\",\"    .dataframe thead th {\\n\",\"        text-align: right;\\n\",\"    }\\n\",\"</style>\\n\",\"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\"  <thead>\\n\",\"    <tr style=\\\"text-align: right;\\\">\\n\",\"      <th></th>\\n\",\"      <th>eval_loss</th>\\n\",\"      <th>eval_Accuracy</th>\\n\",\"      <th>eval_F1</th>\\n\",\"      <th>eval_Precision</th>\\n\",\"      <th>eval_Recall</th>\\n\",\"    </tr>\\n\",\"  </thead>\\n\",\"  <tbody>\\n\",\"    <tr>\\n\",\"      <th>train</th>\\n\",\"      <td>0.122369</td>\\n\",\"      <td>0.968571</td>\\n\",\"      <td>0.968665</td>\\n\",\"      <td>0.968830</td>\\n\",\"      <td>0.968862</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>val</th>\\n\",\"      <td>0.339011</td>\\n\",\"      <td>0.912653</td>\\n\",\"      <td>0.912454</td>\\n\",\"      <td>0.913331</td>\\n\",\"      <td>0.912042</td>\\n\",\"    </tr>\\n\",\"    <tr>\\n\",\"      <th>test</th>\\n\",\"      <td>0.334882</td>\\n\",\"      <td>0.915918</td>\\n\",\"      <td>0.915662</td>\\n\",\"      <td>0.918334</td>\\n\",\"      <td>0.914893</td>\\n\",\"    </tr>\\n\",\"  </tbody>\\n\",\"</table>\\n\",\"</div>\"],\"text/plain\":[\"       eval_loss  eval_Accuracy   eval_F1  eval_Precision  eval_Recall\\n\",\"train   0.122369       0.968571  0.968665        0.968830     0.968862\\n\",\"val     0.339011       0.912653  0.912454        0.913331     0.912042\\n\",\"test    0.334882       0.915918  0.915662        0.918334     0.914893\"]},\"metadata\":{\"tags\":[]},\"execution_count\":26}]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"Krkngm4YKUno\",\"executionInfo\":{\"status\":\"ok\",\"timestamp\":1625426686939,\"user_tz\":-180,\"elapsed\":775,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"}}},\"source\":[\"\"],\"execution_count\":1,\"outputs\":[]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"rN4qDWpM6-aJ\"},\"source\":[\"\"]},{\"cell_type\":\"code\",\"metadata\":{\"id\":\"UCLgBO_sehJu\"},\"source\":[\"\"],\"execution_count\":null,\"outputs\":[]}]}"
  },
  {
    "path": "CH10/CH10a_fastAPI_Transformer_model_serving/main.py",
    "content": "import uvicorn\nfrom fastapi import FastAPI\nfrom pydantic import BaseModel\n\nclass QADataModel(BaseModel):\n    question: str\n    context: str\n\napp = FastAPI()\n\nfrom transformers import pipeline\nmodel_name = 'distilbert-base-cased-distilled-squad'\nmodel = pipeline(model=model_name, tokenizer=model_name, task='question-answering')\n\n@app.post(\"/question_answering\")\nasync def qa(input_data: QADataModel):\n    result = model(question = input_data.question, context=input_data.context)\n    return {\"answer\": result[\"answer\"]}\nif __name__ == '__main__': \n     uvicorn.run('main:app', workers=1) \n"
  },
  {
    "path": "CH10/CH10b_Dockerizing_API/app/main.py",
    "content": "import uvicorn\nfrom fastapi import FastAPI\nfrom pydantic import BaseModel\n\nclass QADataModel(BaseModel):\n    question: str\n    context: str\n\napp = FastAPI()\n\nfrom transformers import pipeline\nmodel_name = 'distilbert-base-cased-distilled-squad'\nmodel = pipeline(model=model_name, tokenizer=model_name, task='question-answering')\n\n@app.post(\"/question_answering\")\nasync def qa(input_data: QADataModel):\n    result = model(question = input_data.question, context=input_data.context)\n    return {\"answer\": result[\"answer\"]}"
  },
  {
    "path": "CH10/CH10b_Dockerizing_API/dockerfile",
    "content": "FROM python:3.7\n\nRUN pip install torch\n\nRUN pip install fastapi uvicorn transformers\n\nEXPOSE 80\n\nCOPY ./app /app\n\nCMD [\"uvicorn\", \"app.main:app\", \"--host\", \"0.0.0.0\", \"--port\", \"8005\"]\n"
  },
  {
    "path": "CH10/CH10c_Faster_Transformer_model_serving_using_Tensorflow_Extended/.ipynb_checkpoints/saved_model-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import TFBertForSequenceClassification\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"ecc2ef3a08f04d4b8ecf2d0ab3512291\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=642.0, style=ProgressStyle(description_…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"0ae65189c2c64f7f9ad9b85fc00561a3\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=438024457.0, style=ProgressStyle(descri…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Some weights of the PyTorch model were not used when initializing the TF 2.0 model TFBertForSequenceClassification: ['bert.embeddings.position_ids']\\n\",\n      \"- This IS expected if you are initializing TFBertForSequenceClassification from a PyTorch model trained on another task or with another architecture (e.g. initializing a TFBertForSequenceClassification model from a BertForPreTraining model).\\n\",\n      \"- This IS NOT expected if you are initializing TFBertForSequenceClassification from a PyTorch model that you expect to be exactly identical (e.g. initializing a TFBertForSequenceClassification model from a BertForSequenceClassification model).\\n\",\n      \"All the weights of TFBertForSequenceClassification were initialized from the PyTorch model.\\n\",\n      \"If your task is similar to the task the model of the checkpoint was trained on, you can already use TFBertForSequenceClassification for predictions without further training.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = TFBertForSequenceClassification.from_pretrained(\\\"nateraw/bert-base-uncased-imdb\\\", from_pt=True)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"INFO:tensorflow:Assets written to: tfx_model/saved_model/1/assets\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model.save_pretrained(\\\"tfx_model\\\", saved_model=True)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python [conda env:root] *\",\n   \"language\": \"python\",\n   \"name\": \"conda-root-py\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.8.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "CH10/CH10c_Faster_Transformer_model_serving_using_Tensorflow_Extended/main.py",
    "content": "import uvicorn\nfrom fastapi import FastAPI\nfrom pydantic import BaseModel\nfrom transformers import BertTokenizerFast, BertConfig\nimport requests\nimport json\nimport numpy as np\n\ntokenizer = BertTokenizerFast.from_pretrained(\"nateraw/bert-base-uncased-imdb\")\nconfig = BertConfig.from_pretrained(\"nateraw/bert-base-uncased-imdb\")\n\n\nclass DataModel(BaseModel):\n    text: str\n\napp = FastAPI()\n\n@app.post(\"/sentiment\")\nasync def sentiment_analysis(input_data: DataModel):\n    print(input_data.text)\n    tokenized_sentence = [dict(tokenizer(input_data.text))]\n    data_send = {\"instances\": tokenized_sentence}\n    response = requests.post(\"http://localhost:8501/v1/models/bert:predict\", data=json.dumps(data_send))\n    result = np.abs(json.loads(response.text)[\"predictions\"][0])\n    return {\"sentiment\": config.id2label[np.argmax(result)]}\n\n\nif __name__ == '__main__': \n     uvicorn.run('main:app', workers=1) \n"
  },
  {
    "path": "CH10/CH10c_Faster_Transformer_model_serving_using_Tensorflow_Extended/saved_model.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import TFBertForSequenceClassification\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"ecc2ef3a08f04d4b8ecf2d0ab3512291\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=642.0, style=ProgressStyle(description_…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"application/vnd.jupyter.widget-view+json\": {\n       \"model_id\": \"0ae65189c2c64f7f9ad9b85fc00561a3\",\n       \"version_major\": 2,\n       \"version_minor\": 0\n      },\n      \"text/plain\": [\n       \"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=438024457.0, style=ProgressStyle(descri…\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Some weights of the PyTorch model were not used when initializing the TF 2.0 model TFBertForSequenceClassification: ['bert.embeddings.position_ids']\\n\",\n      \"- This IS expected if you are initializing TFBertForSequenceClassification from a PyTorch model trained on another task or with another architecture (e.g. initializing a TFBertForSequenceClassification model from a BertForPreTraining model).\\n\",\n      \"- This IS NOT expected if you are initializing TFBertForSequenceClassification from a PyTorch model that you expect to be exactly identical (e.g. initializing a TFBertForSequenceClassification model from a BertForSequenceClassification model).\\n\",\n      \"All the weights of TFBertForSequenceClassification were initialized from the PyTorch model.\\n\",\n      \"If your task is similar to the task the model of the checkpoint was trained on, you can already use TFBertForSequenceClassification for predictions without further training.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = TFBertForSequenceClassification.from_pretrained(\\\"nateraw/bert-base-uncased-imdb\\\", from_pt=True)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"WARNING:tensorflow:The parameters `output_attentions`, `output_hidden_states` and `use_cache` cannot be updated when calling a model.They have to be set to True/False in the config object (i.e.: `config=XConfig.from_pretrained('name', output_attentions=True)`).\\n\",\n      \"WARNING:tensorflow:The parameter `return_dict` cannot be set in graph mode and will always be set to `True`.\\n\",\n      \"INFO:tensorflow:Assets written to: tfx_model/saved_model/1/assets\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model.save_pretrained(\\\"tfx_model\\\", saved_model=True)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python [conda env:root] *\",\n   \"language\": \"python\",\n   \"name\": \"conda-root-py\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.8.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "CH10/CH10d_Load_testing_using_Locust /docker/app/main.py",
    "content": "import uvicorn\nfrom fastapi import FastAPI\nfrom pydantic import BaseModel\n\nclass DataModel(BaseModel):\n    text: str\n\napp = FastAPI()\n\nfrom transformers import pipeline\nmodel_name = 'nateraw/bert-base-uncased-imdb'\nmodel = pipeline(model=model_name, tokenizer=model_name, task='sentiment-analysis')\n\n@app.post(\"/sentiment\")\nasync def predict(input_data: DataModel):\n    result = model(input_data.text)[0]\n    return result\n"
  },
  {
    "path": "CH10/CH10d_Load_testing_using_Locust /docker/dockerfile",
    "content": "FROM python:3.7\n\nRUN pip install torch\n\nRUN pip install fastapi uvicorn transformers\n\nEXPOSE 80\n\nCOPY ./app /app\n\nCMD [\"uvicorn\", \"app.main:app\", \"--host\", \"0.0.0.0\", \"--port\", \"8005\"]\n"
  },
  {
    "path": "CH10/CH10d_Load_testing_using_Locust /fastapi/main.py",
    "content": "import uvicorn\nfrom fastapi import FastAPI\nfrom pydantic import BaseModel\n\nclass DataModel(BaseModel):\n    text: str\n\napp = FastAPI()\n\nfrom transformers import pipeline\nmodel_name = 'nateraw/bert-base-uncased-imdb'\nmodel = pipeline(model=model_name, tokenizer=model_name, task='sentiment-analysis')\n\n@app.post(\"/sentiment\")\nasync def predict(input_data: DataModel):\n    result = model(input_data.text)[0]\n    return result\nif __name__ == '__main__': \n     uvicorn.run('main:app', workers=1) \n"
  },
  {
    "path": "CH10/CH10d_Load_testing_using_Locust /locust_file.py",
    "content": "from locust import HttpUser, task\nfrom random import choice\nfrom string import ascii_uppercase\n\nclass User(HttpUser):\n    @task\n    def predict(self):\n        payload = {\"text\": ''.join(choice(ascii_uppercase) for i in range(20))}\n        self.client.post(\"/sentiment\", json=payload)\n"
  },
  {
    "path": "CH11/CH11a_Visualization_with_BertViz.ipynb",
    "content": "{\"cells\":[{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"N3ITHgCVjXON\"},\"source\":[\"# Visualization with BertViz\\n\",\"##  Head View\\n\",\"\\n\"]},{\"cell_type\":\"code\",\"execution_count\":1,\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"elapsed\":19208,\"status\":\"ok\",\"timestamp\":1626168635648,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"},\"user_tz\":-180},\"id\":\"zFo1IBx-x-rC\",\"outputId\":\"136e28c6-a67b-4c69-9a60-fb8afed62713\"},\"outputs\":[{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"Collecting bertviz\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/30/5f/e4a5729cdf0ca6c8fbbbe2c7e15add55eab8868f2c6653ef92e4cfdaaa71/bertviz-1.1.0-py3-none-any.whl (153kB)\\n\",\"\\r\\u001b[K     |██▏                             | 10kB 15.8MB/s eta 0:00:01\\r\\u001b[K     |████▎                           | 20kB 20.4MB/s eta 0:00:01\\r\\u001b[K     |██████▍                         | 30kB 22.2MB/s eta 0:00:01\\r\\u001b[K     |████████▋                       | 40kB 25.7MB/s eta 0:00:01\\r\\u001b[K     |██████████▊                     | 51kB 28.9MB/s eta 0:00:01\\r\\u001b[K     |████████████▉                   | 61kB 27.9MB/s eta 0:00:01\\r\\u001b[K     |███████████████                 | 71kB 27.9MB/s eta 0:00:01\\r\\u001b[K     |█████████████████▏              | 81kB 28.5MB/s eta 0:00:01\\r\\u001b[K     |███████████████████▎            | 92kB 29.9MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████▍          | 102kB 29.1MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████▌        | 112kB 29.1MB/s eta 0:00:01\\r\\u001b[K     |█████████████████████████▊      | 122kB 29.1MB/s eta 0:00:01\\r\\u001b[K     |███████████████████████████▉    | 133kB 29.1MB/s eta 0:00:01\\r\\u001b[K     |██████████████████████████████  | 143kB 29.1MB/s eta 0:00:01\\r\\u001b[K     |████████████████████████████████| 153kB 29.1MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from bertviz) (2.23.0)\\n\",\"Collecting transformers\\u003e=2.0\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/fd/1a/41c644c963249fd7f3836d926afa1e3f1cc234a1c40d80c5f03ad8f6f1b2/transformers-4.8.2-py3-none-any.whl (2.5MB)\\n\",\"\\u001b[K     |████████████████████████████████| 2.5MB 19.5MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: regex in /usr/local/lib/python3.7/dist-packages (from bertviz) (2019.12.20)\\n\",\"Collecting sentencepiece\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/ac/aa/1437691b0c7c83086ebb79ce2da16e00bef024f24fec2a5161c35476f499/sentencepiece-0.1.96-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2MB)\\n\",\"\\u001b[K     |████████████████████████████████| 1.2MB 40.3MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from bertviz) (4.41.1)\\n\",\"Requirement already satisfied: torch\\u003e=1.0 in /usr/local/lib/python3.7/dist-packages (from bertviz) (1.9.0+cu102)\\n\",\"Collecting boto3\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/96/5d/9acf49027b9af1a3ab1d0e3ee9464eb490ed75df4f97eae9e294fe7a6d7a/boto3-1.17.110-py2.py3-none-any.whl (131kB)\\n\",\"\\u001b[K     |████████████████████████████████| 133kB 49.0MB/s \\n\",\"\\u001b[?25hRequirement already satisfied: urllib3!=1.25.0,!=1.25.1,\\u003c1.26,\\u003e=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests-\\u003ebertviz) (1.24.3)\\n\",\"Requirement already satisfied: idna\\u003c3,\\u003e=2.5 in /usr/local/lib/python3.7/dist-packages (from requests-\\u003ebertviz) (2.10)\\n\",\"Requirement already satisfied: certifi\\u003e=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests-\\u003ebertviz) (2021.5.30)\\n\",\"Requirement already satisfied: chardet\\u003c4,\\u003e=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests-\\u003ebertviz) (3.0.4)\\n\",\"Collecting tokenizers\\u003c0.11,\\u003e=0.10.1\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/d4/e2/df3543e8ffdab68f5acc73f613de9c2b155ac47f162e725dcac87c521c11/tokenizers-0.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.3MB)\\n\",\"\\u001b[K     |████████████████████████████████| 3.3MB 46.7MB/s \\n\",\"\\u001b[?25hCollecting sacremoses\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/75/ee/67241dc87f266093c533a2d4d3d69438e57d7a90abb216fa076e7d475d4a/sacremoses-0.0.45-py3-none-any.whl (895kB)\\n\",\"\\u001b[K     |████████████████████████████████| 901kB 28.7MB/s \\n\",\"\\u001b[?25hCollecting huggingface-hub==0.0.12\\n\",\"  Downloading https://files.pythonhosted.org/packages/2f/ee/97e253668fda9b17e968b3f97b2f8e53aa0127e8807d24a547687423fe0b/huggingface_hub-0.0.12-py3-none-any.whl\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers\\u003e=2.0-\\u003ebertviz) (3.13)\\n\",\"Requirement already satisfied: importlib-metadata; python_version \\u003c \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers\\u003e=2.0-\\u003ebertviz) (4.6.0)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers\\u003e=2.0-\\u003ebertviz) (3.0.12)\\n\",\"Requirement already satisfied: numpy\\u003e=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers\\u003e=2.0-\\u003ebertviz) (1.19.5)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers\\u003e=2.0-\\u003ebertviz) (20.9)\\n\",\"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.7/dist-packages (from torch\\u003e=1.0-\\u003ebertviz) (3.7.4.3)\\n\",\"Collecting s3transfer\\u003c0.5.0,\\u003e=0.4.0\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/63/d0/693477c688348654ddc21dcdce0817653a294aa43f41771084c25e7ff9c7/s3transfer-0.4.2-py2.py3-none-any.whl (79kB)\\n\",\"\\u001b[K     |████████████████████████████████| 81kB 9.5MB/s \\n\",\"\\u001b[?25hCollecting botocore\\u003c1.21.0,\\u003e=1.20.110\\n\",\"\\u001b[?25l  Downloading https://files.pythonhosted.org/packages/5e/05/5f79840491316ce0f62c266d6797cef5a213bc8db31698de28b666ad58ac/botocore-1.20.110-py2.py3-none-any.whl (7.7MB)\\n\",\"\\u001b[K     |████████████████████████████████| 7.7MB 40.1MB/s \\n\",\"\\u001b[?25hCollecting jmespath\\u003c1.0.0,\\u003e=0.7.1\\n\",\"  Downloading https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses-\\u003etransformers\\u003e=2.0-\\u003ebertviz) (1.0.1)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses-\\u003etransformers\\u003e=2.0-\\u003ebertviz) (1.15.0)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses-\\u003etransformers\\u003e=2.0-\\u003ebertviz) (7.1.2)\\n\",\"Requirement already satisfied: zipp\\u003e=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version \\u003c \\\"3.8\\\"-\\u003etransformers\\u003e=2.0-\\u003ebertviz) (3.4.1)\\n\",\"Requirement already satisfied: pyparsing\\u003e=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging-\\u003etransformers\\u003e=2.0-\\u003ebertviz) (2.4.7)\\n\",\"Requirement already satisfied: python-dateutil\\u003c3.0.0,\\u003e=2.1 in /usr/local/lib/python3.7/dist-packages (from botocore\\u003c1.21.0,\\u003e=1.20.110-\\u003eboto3-\\u003ebertviz) (2.8.1)\\n\",\"\\u001b[31mERROR: botocore 1.20.110 has requirement urllib3\\u003c1.27,\\u003e=1.25.4, but you'll have urllib3 1.24.3 which is incompatible.\\u001b[0m\\n\",\"Installing collected packages: tokenizers, sacremoses, huggingface-hub, transformers, sentencepiece, jmespath, botocore, s3transfer, boto3, bertviz\\n\",\"Successfully installed bertviz-1.1.0 boto3-1.17.110 botocore-1.20.110 huggingface-hub-0.0.12 jmespath-0.10.0 s3transfer-0.4.2 sacremoses-0.0.45 sentencepiece-0.1.96 tokenizers-0.10.3 transformers-4.8.2\\n\",\"Requirement already satisfied: transformers in /usr/local/lib/python3.7/dist-packages (4.8.2)\\n\",\"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from transformers) (3.0.12)\\n\",\"Requirement already satisfied: numpy\\u003e=1.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (1.19.5)\\n\",\"Requirement already satisfied: importlib-metadata; python_version \\u003c \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from transformers) (4.6.0)\\n\",\"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers) (2019.12.20)\\n\",\"Requirement already satisfied: tokenizers\\u003c0.11,\\u003e=0.10.1 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.10.3)\\n\",\"Requirement already satisfied: sacremoses in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.45)\\n\",\"Requirement already satisfied: huggingface-hub==0.0.12 in /usr/local/lib/python3.7/dist-packages (from transformers) (0.0.12)\\n\",\"Requirement already satisfied: tqdm\\u003e=4.27 in /usr/local/lib/python3.7/dist-packages (from transformers) (4.41.1)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers) (20.9)\\n\",\"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from transformers) (2.23.0)\\n\",\"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from transformers) (3.13)\\n\",\"Requirement already satisfied: zipp\\u003e=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version \\u003c \\\"3.8\\\"-\\u003etransformers) (3.4.1)\\n\",\"Requirement already satisfied: typing-extensions\\u003e=3.6.4; python_version \\u003c \\\"3.8\\\" in /usr/local/lib/python3.7/dist-packages (from importlib-metadata; python_version \\u003c \\\"3.8\\\"-\\u003etransformers) (3.7.4.3)\\n\",\"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses-\\u003etransformers) (1.0.1)\\n\",\"Requirement already satisfied: six in /usr/local/lib/python3.7/dist-packages (from sacremoses-\\u003etransformers) (1.15.0)\\n\",\"Requirement already satisfied: click in /usr/local/lib/python3.7/dist-packages (from sacremoses-\\u003etransformers) (7.1.2)\\n\",\"Requirement already satisfied: pyparsing\\u003e=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging-\\u003etransformers) (2.4.7)\\n\",\"Requirement already satisfied: idna\\u003c3,\\u003e=2.5 in /usr/local/lib/python3.7/dist-packages (from requests-\\u003etransformers) (2.10)\\n\",\"Requirement already satisfied: certifi\\u003e=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests-\\u003etransformers) (2021.5.30)\\n\",\"Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,\\u003c1.26,\\u003e=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests-\\u003etransformers) (1.24.3)\\n\",\"Requirement already satisfied: chardet\\u003c4,\\u003e=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests-\\u003etransformers) (3.0.4)\\n\",\"Requirement already satisfied: ipywidgets in /usr/local/lib/python3.7/dist-packages (7.6.3)\\n\",\"Requirement already satisfied: traitlets\\u003e=4.3.1 in /usr/local/lib/python3.7/dist-packages (from ipywidgets) (5.0.5)\\n\",\"Requirement already satisfied: ipython\\u003e=4.0.0; python_version \\u003e= \\\"3.3\\\" in /usr/local/lib/python3.7/dist-packages (from ipywidgets) (5.5.0)\\n\",\"Requirement already satisfied: widgetsnbextension~=3.5.0 in /usr/local/lib/python3.7/dist-packages (from ipywidgets) (3.5.1)\\n\",\"Requirement already satisfied: nbformat\\u003e=4.2.0 in /usr/local/lib/python3.7/dist-packages (from ipywidgets) (5.1.3)\\n\",\"Requirement already satisfied: ipykernel\\u003e=4.5.1 in /usr/local/lib/python3.7/dist-packages (from ipywidgets) (4.10.1)\\n\",\"Requirement already satisfied: jupyterlab-widgets\\u003e=1.0.0; python_version \\u003e= \\\"3.6\\\" in /usr/local/lib/python3.7/dist-packages (from ipywidgets) (1.0.0)\\n\",\"Requirement already satisfied: ipython-genutils in /usr/local/lib/python3.7/dist-packages (from traitlets\\u003e=4.3.1-\\u003eipywidgets) (0.2.0)\\n\",\"Requirement already satisfied: simplegeneric\\u003e0.8 in /usr/local/lib/python3.7/dist-packages (from ipython\\u003e=4.0.0; python_version \\u003e= \\\"3.3\\\"-\\u003eipywidgets) (0.8.1)\\n\",\"Requirement already satisfied: pexpect; sys_platform != \\\"win32\\\" in /usr/local/lib/python3.7/dist-packages (from ipython\\u003e=4.0.0; python_version \\u003e= \\\"3.3\\\"-\\u003eipywidgets) (4.8.0)\\n\",\"Requirement already satisfied: setuptools\\u003e=18.5 in /usr/local/lib/python3.7/dist-packages (from ipython\\u003e=4.0.0; python_version \\u003e= \\\"3.3\\\"-\\u003eipywidgets) (57.0.0)\\n\",\"Requirement already satisfied: prompt-toolkit\\u003c2.0.0,\\u003e=1.0.4 in /usr/local/lib/python3.7/dist-packages (from ipython\\u003e=4.0.0; python_version \\u003e= \\\"3.3\\\"-\\u003eipywidgets) (1.0.18)\\n\",\"Requirement already satisfied: decorator in /usr/local/lib/python3.7/dist-packages (from ipython\\u003e=4.0.0; python_version \\u003e= \\\"3.3\\\"-\\u003eipywidgets) (4.4.2)\\n\",\"Requirement already satisfied: pygments in /usr/local/lib/python3.7/dist-packages (from ipython\\u003e=4.0.0; python_version \\u003e= \\\"3.3\\\"-\\u003eipywidgets) (2.6.1)\\n\",\"Requirement already satisfied: pickleshare in /usr/local/lib/python3.7/dist-packages (from ipython\\u003e=4.0.0; python_version \\u003e= \\\"3.3\\\"-\\u003eipywidgets) (0.7.5)\\n\",\"Requirement already satisfied: notebook\\u003e=4.4.1 in /usr/local/lib/python3.7/dist-packages (from widgetsnbextension~=3.5.0-\\u003eipywidgets) (5.3.1)\\n\",\"Requirement already satisfied: jupyter-core in /usr/local/lib/python3.7/dist-packages (from nbformat\\u003e=4.2.0-\\u003eipywidgets) (4.7.1)\\n\",\"Requirement already satisfied: jsonschema!=2.5.0,\\u003e=2.4 in /usr/local/lib/python3.7/dist-packages (from nbformat\\u003e=4.2.0-\\u003eipywidgets) (2.6.0)\\n\",\"Requirement already satisfied: tornado\\u003e=4.0 in /usr/local/lib/python3.7/dist-packages (from ipykernel\\u003e=4.5.1-\\u003eipywidgets) (5.1.1)\\n\",\"Requirement already satisfied: jupyter-client in /usr/local/lib/python3.7/dist-packages (from ipykernel\\u003e=4.5.1-\\u003eipywidgets) (5.3.5)\\n\",\"Requirement already satisfied: ptyprocess\\u003e=0.5 in /usr/local/lib/python3.7/dist-packages (from pexpect; sys_platform != \\\"win32\\\"-\\u003eipython\\u003e=4.0.0; python_version \\u003e= \\\"3.3\\\"-\\u003eipywidgets) (0.7.0)\\n\",\"Requirement already satisfied: six\\u003e=1.9.0 in /usr/local/lib/python3.7/dist-packages (from prompt-toolkit\\u003c2.0.0,\\u003e=1.0.4-\\u003eipython\\u003e=4.0.0; python_version \\u003e= \\\"3.3\\\"-\\u003eipywidgets) (1.15.0)\\n\",\"Requirement already satisfied: wcwidth in /usr/local/lib/python3.7/dist-packages (from prompt-toolkit\\u003c2.0.0,\\u003e=1.0.4-\\u003eipython\\u003e=4.0.0; python_version \\u003e= \\\"3.3\\\"-\\u003eipywidgets) (0.2.5)\\n\",\"Requirement already satisfied: Send2Trash in /usr/local/lib/python3.7/dist-packages (from notebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (1.7.1)\\n\",\"Requirement already satisfied: jinja2 in /usr/local/lib/python3.7/dist-packages (from notebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (2.11.3)\\n\",\"Requirement already satisfied: terminado\\u003e=0.8.1 in /usr/local/lib/python3.7/dist-packages (from notebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (0.10.1)\\n\",\"Requirement already satisfied: nbconvert in /usr/local/lib/python3.7/dist-packages (from notebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (5.6.1)\\n\",\"Requirement already satisfied: pyzmq\\u003e=13 in /usr/local/lib/python3.7/dist-packages (from jupyter-client-\\u003eipykernel\\u003e=4.5.1-\\u003eipywidgets) (22.1.0)\\n\",\"Requirement already satisfied: python-dateutil\\u003e=2.1 in /usr/local/lib/python3.7/dist-packages (from jupyter-client-\\u003eipykernel\\u003e=4.5.1-\\u003eipywidgets) (2.8.1)\\n\",\"Requirement already satisfied: MarkupSafe\\u003e=0.23 in /usr/local/lib/python3.7/dist-packages (from jinja2-\\u003enotebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (2.0.1)\\n\",\"Requirement already satisfied: pandocfilters\\u003e=1.4.1 in /usr/local/lib/python3.7/dist-packages (from nbconvert-\\u003enotebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (1.4.3)\\n\",\"Requirement already satisfied: mistune\\u003c2,\\u003e=0.8.1 in /usr/local/lib/python3.7/dist-packages (from nbconvert-\\u003enotebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (0.8.4)\\n\",\"Requirement already satisfied: entrypoints\\u003e=0.2.2 in /usr/local/lib/python3.7/dist-packages (from nbconvert-\\u003enotebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (0.3)\\n\",\"Requirement already satisfied: defusedxml in /usr/local/lib/python3.7/dist-packages (from nbconvert-\\u003enotebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (0.7.1)\\n\",\"Requirement already satisfied: bleach in /usr/local/lib/python3.7/dist-packages (from nbconvert-\\u003enotebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (3.3.0)\\n\",\"Requirement already satisfied: testpath in /usr/local/lib/python3.7/dist-packages (from nbconvert-\\u003enotebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (0.5.0)\\n\",\"Requirement already satisfied: webencodings in /usr/local/lib/python3.7/dist-packages (from bleach-\\u003enbconvert-\\u003enotebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (0.5.1)\\n\",\"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from bleach-\\u003enbconvert-\\u003enotebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (20.9)\\n\",\"Requirement already satisfied: pyparsing\\u003e=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging-\\u003ebleach-\\u003enbconvert-\\u003enotebook\\u003e=4.4.1-\\u003ewidgetsnbextension~=3.5.0-\\u003eipywidgets) (2.4.7)\\n\"]}],\"source\":[\"!pip install bertviz\\n\",\"!pip install transformers\\n\",\"!pip install ipywidgets\"]},{\"cell_type\":\"code\",\"execution_count\":2,\"metadata\":{\"executionInfo\":{\"elapsed\":2320,\"status\":\"ok\",\"timestamp\":1626168660542,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"},\"user_tz\":-180},\"id\":\"nCKW2hAUyK_4\"},\"outputs\":[],\"source\":[\"from bertviz import head_view\\n\",\"from transformers import BertTokenizer, BertModel\"]},{\"cell_type\":\"code\",\"execution_count\":3,\"metadata\":{\"executionInfo\":{\"elapsed\":6,\"status\":\"ok\",\"timestamp\":1626168662470,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"},\"user_tz\":-180},\"id\":\"M1M1TqT1ByQe\"},\"outputs\":[],\"source\":[\"# We define getBertAttentions() function to retrieve attentions and tokens from a given model \\n\",\"\\n\",\"def get_bert_attentions(model_path, sentence_a, sentence_b):\\n\",\"    model = BertModel.from_pretrained(model_path, output_attentions=True)\\n\",\"    tokenizer = BertTokenizer.from_pretrained(model_path)\\n\",\"    inputs = tokenizer.encode_plus(sentence_a, sentence_b, return_tensors='pt', add_special_tokens=True) #, add_special_tokens=True)\\n\",\"    token_type_ids = inputs['token_type_ids']\\n\",\"    input_ids = inputs['input_ids']\\n\",\"    attention = model(input_ids, token_type_ids=token_type_ids)[-1]\\n\",\"    input_id_list = input_ids[0].tolist()\\n\",\"    tokens = tokenizer.convert_ids_to_tokens(input_id_list)\\n\",\"    return attention, tokens\\n\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"LO9ELjBu9kSF\"},\"source\":[\"# Head View\\n\",\"The head view visualizes attention in one or more heads for the selected layer.\\n\",\" \"]},{\"cell_type\":\"code\",\"execution_count\":4,\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":799},\"executionInfo\":{\"elapsed\":15964,\"status\":\"ok\",\"timestamp\":1626168681139,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"},\"user_tz\":-180},\"id\":\"oS-NGayOrIW9\",\"outputId\":\"3d432b48-b560-4259-fe92-1e26bc57c67c\"},\"outputs\":[{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"6050483578d648bc9c1c904218f7a721\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=570.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"8f417a5e49cd4c83924cd57baf3ea6bc\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=435779157.0, style=ProgressStyle(descri…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"name\":\"stderr\",\"output_type\":\"stream\",\"text\":[\"Some weights of the model checkpoint at bert-base-cased were not used when initializing BertModel: ['cls.seq_relationship.bias', 'cls.predictions.bias', 'cls.predictions.decoder.weight', 'cls.predictions.transform.LayerNorm.weight', 'cls.predictions.transform.dense.bias', 'cls.predictions.transform.LayerNorm.bias', 'cls.seq_relationship.weight', 'cls.predictions.transform.dense.weight']\\n\",\"- This IS expected if you are initializing BertModel from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing BertModel from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\"]},{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"e2d953730d0a45ebb816293a39798428\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=213450.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"4dcaf07877914f1cbc296afa03ab298f\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=29.0, style=ProgressStyle(description_w…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"1177743740b143c08387a25dcfc25004\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=435797.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"data\":{\"text/html\":[\"\\u003cscript src=\\\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js\\\"\\u003e\\u003c/script\\u003e\"],\"text/plain\":[\"\\u003cIPython.core.display.HTML object\\u003e\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"data\":{\"text/html\":[\"      \\n\",\"        \\u003cdiv id='bertviz-1de19e1432d14b4aad8c487235728dd3'\\u003e\\n\",\"            \\u003cspan style=\\\"user-select:none\\\"\\u003e\\n\",\"                Layer: \\u003cselect id=\\\"layer\\\"\\u003e\\u003c/select\\u003e\\n\",\"                \\n\",\"            \\u003c/span\\u003e\\n\",\"            \\u003cdiv id='vis'\\u003e\\u003c/div\\u003e\\n\",\"        \\u003c/div\\u003e\\n\",\"    \"],\"text/plain\":[\"\\u003cIPython.core.display.HTML object\\u003e\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"data\":{\"application/javascript\":[\"/**\\n\",\" * @fileoverview Transformer Visualization D3 javascript code.\\n\",\" *\\n\",\" *\\n\",\" *  Based on: https://github.com/tensorflow/tensor2tensor/blob/master/tensor2tensor/visualization/attention.js\\n\",\" *\\n\",\" * Change log:\\n\",\" *\\n\",\" * 12/19/18  Jesse Vig   Assorted cleanup. Changed orientation of attention matrices.\\n\",\" * 12/29/20  Jesse Vig   Significant refactor.\\n\",\" * 12/31/20  Jesse Vig   Support multiple visualizations in single notebook.\\n\",\" * 02/06/21  Jesse Vig   Move require config from separate jupyter notebook step\\n\",\" * 05/03/21  Jesse Vig   Adjust height of visualization dynamically\\n\",\" **/\\n\",\"\\n\",\"require.config({\\n\",\"  paths: {\\n\",\"      d3: '//cdnjs.cloudflare.com/ajax/libs/d3/5.7.0/d3.min',\\n\",\"    jquery: '//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min',\\n\",\"  }\\n\",\"});\\n\",\"\\n\",\"requirejs(['jquery', 'd3'], function ($, d3) {\\n\",\"\\n\",\"    const params = {\\\"attention\\\": [{\\\"name\\\": null, \\\"attn\\\": [[[[0.3859884440898895, 0.02057979628443718, 0.004500803537666798, 0.002817635191604495, 0.007266886066645384, 0.006198827177286148, 0.022021684795618057, 0.22846126556396484, 0.011731993407011032, 0.014577418565750122, 0.005260078702121973, 0.003582231467589736, 0.0059876772575080395, 0.0042801508679986, 0.023125912994146347, 0.002531171077862382, 0.029462572187185287, 0.2216254472732544], [0.06148483604192734, 0.03735759109258652, 0.05122782289981842, 0.074319027364254, 0.11066576093435287, 0.2166668027639389, 0.07667514681816101, 0.17553472518920898, 0.028059184551239014, 0.00733340997248888, 0.02269308641552925, 0.017327917739748955, 0.0176251120865345, 0.019530300050973892, 0.03719786927103996, 0.017016662284731865, 0.010122273117303848, 0.019162453711032867], [0.12165584415197372, 0.03918922692537308, 0.07658596336841583, 0.16208156943321228, 0.05594197288155556, 0.1199028417468071, 0.058835435658693314, 0.06788425892591476, 0.03651268035173416, 0.008219841867685318, 0.02993888035416603, 0.014661992900073528, 0.07781106978654861, 0.03683315962553024, 0.025120927020907402, 0.04402516037225723, 0.012414905242621899, 0.012384355068206787], [0.07096096873283386, 0.019745098426938057, 0.05076196417212486, 0.3216231167316437, 0.06517092138528824, 0.1811944991350174, 0.04948625713586807, 0.07765862345695496, 0.012555819004774094, 0.008076651953160763, 0.028512705117464066, 0.011726225726306438, 0.03718914836645126, 0.014720022678375244, 0.015112744644284248, 0.021107932552695274, 0.006007406860589981, 0.00838985200971365], [0.07757589966058731, 0.04466124624013901, 0.16430014371871948, 0.046185869723558426, 0.12793979048728943, 0.1307271420955658, 0.10753954946994781, 0.02929486148059368, 0.021969133988022804, 0.017205916345119476, 0.01572602242231369, 0.015608962625265121, 0.034000199288129807, 0.06363485008478165, 0.010910374112427235, 0.06591474264860153, 0.02178139053285122, 0.005023935344070196], [0.0819023847579956, 0.05191846936941147, 0.1298852413892746, 0.14105059206485748, 0.13406862318515778, 0.06487351655960083, 0.04303986206650734, 0.10398216545581818, 0.01162409596145153, 0.012178625911474228, 0.03137100115418434, 0.027009574696421623, 0.038939882069826126, 0.03863026574254036, 0.012019442394375801, 0.05612337216734886, 0.00793092418462038, 0.013452013023197651], [0.11052338778972626, 0.05677015706896782, 0.030181389302015305, 0.062188468873500824, 0.10704823583364487, 0.09969982504844666, 0.06574510782957077, 0.24552002549171448, 0.036487944424152374, 0.010080523788928986, 0.018517399206757545, 0.0199742428958416, 0.024447981268167496, 0.014758304692804813, 0.04125041887164116, 0.014312914572656155, 0.011077839881181717, 0.0314159132540226], [0.0007953397580422461, 4.876411549048498e-05, 1.2812875866075046e-05, 3.640283830463886e-05, 3.614966772147454e-05, 9.775860235095024e-06, 5.5430864449590445e-06, 0.0023459147196263075, 0.0016941571375355124, 0.0011871884344145656, 0.001746264286339283, 0.002546733245253563, 0.00138271099422127, 0.002552727237343788, 0.0027516118716448545, 0.0012576946755871177, 0.0013990739826112986, 0.9801912307739258], [0.041033800691366196, 0.019140129908919334, 0.03645913675427437, 0.02520899660885334, 0.01986474171280861, 0.053430553525686264, 0.011223905719816685, 0.05456050485372543, 0.08177986741065979, 0.02146817371249199, 0.05691642686724663, 0.05905153602361679, 0.07773186266422272, 0.1426154524087906, 0.03064747527241707, 0.1467110514640808, 0.020078273490071297, 0.10207813233137131], [0.05907338857650757, 0.007699300069361925, 0.010592824779450893, 0.018314367160201073, 0.039285413920879364, 0.04708310216665268, 0.009265772998332977, 0.05544352903962135, 0.12924589216709137, 0.03963834419846535, 0.04757308587431908, 0.12710076570510864, 0.06767736375331879, 0.07704311609268188, 0.049029164016246796, 0.056409794837236404, 0.022308235988020897, 0.13721652328968048], [0.08025658875703812, 0.009966498240828514, 0.020284516736865044, 0.031635433435440063, 0.04981759563088417, 0.03128658980131149, 0.007412026170641184, 0.04628734290599823, 0.08224984258413315, 0.035194363445043564, 0.0532364659011364, 0.05241034924983978, 0.12840624153614044, 0.13088573515415192, 0.029201461002230644, 0.08927406370639801, 0.01700913906097412, 0.10518563538789749], [0.05818871408700943, 0.008876489475369453, 0.0206220131367445, 0.018821116536855698, 0.017153216525912285, 0.020052596926689148, 0.00961364433169365, 0.08609303086996078, 0.08123298734426498, 0.01914294809103012, 0.03906999155879021, 0.03552168235182762, 0.09235599637031555, 0.06164407730102539, 0.04393551126122475, 0.15304714441299438, 0.02118639647960663, 0.21344241499900818], [0.1322019100189209, 0.010198456235229969, 0.02137579768896103, 0.014871306717395782, 0.07178346812725067, 0.03450319170951843, 0.0034891751129180193, 0.055315449833869934, 0.0790371522307396, 0.023913711309432983, 0.049693070352077484, 0.08445954322814941, 0.06833813339471817, 0.12909609079360962, 0.01426104735583067, 0.10646821558475494, 0.0066361562348902225, 0.09435813874006271], [0.11391817033290863, 0.004515159409493208, 0.02863706648349762, 0.004413871094584465, 0.014874010346829891, 0.007808012887835503, 0.012844865210354328, 0.07612811028957367, 0.12065095454454422, 0.024246156215667725, 0.050542186945676804, 0.036330774426460266, 0.029629232361912727, 0.05114014446735382, 0.04830091819167137, 0.05988679453730583, 0.044517964124679565, 0.27161556482315063], [0.07218439877033234, 0.013985252939164639, 0.008152703754603863, 0.013511492870748043, 0.03507611155509949, 0.02235044166445732, 0.01257773395627737, 0.08900005370378494, 0.09968076646327972, 0.03447609767317772, 0.04476483538746834, 0.1470528542995453, 0.06550410389900208, 0.039926134049892426, 0.07171313464641571, 0.046256572008132935, 0.02204972505569458, 0.1617375910282135], [0.06401970237493515, 0.010091767646372318, 0.03101954236626625, 0.013685628771781921, 0.027094975113868713, 0.02343142218887806, 0.008455997332930565, 0.07299336045980453, 0.11640565097332001, 0.01778719387948513, 0.07453975826501846, 0.06583404541015625, 0.07777038961648941, 0.10632336884737015, 0.02351183257997036, 0.11576749384403229, 0.01603761315345764, 0.1352301687002182], [0.06746115535497665, 0.011312589049339294, 0.005020038690418005, 0.008372286334633827, 0.02559451386332512, 0.02129456028342247, 0.00685887411236763, 0.09792733937501907, 0.1744057685136795, 0.018854103982448578, 0.033720143139362335, 0.08430512994527817, 0.06361143290996552, 0.041975729167461395, 0.05800855532288551, 0.04311780631542206, 0.014966471120715141, 0.22319349646568298], [9.514880366623402e-05, 1.935425189003581e-06, 4.365994925592531e-07, 1.201778673021181e-06, 1.990333430512692e-06, 4.70538481067706e-07, 1.3450089397792908e-07, 0.00015670323045924306, 0.0018361657857894897, 0.0005301811615936458, 0.0006877674022689462, 0.002672281814739108, 0.000895029806997627, 0.0020286710932850838, 0.0007105404511094093, 0.0009609679109416902, 0.00041994714410975575, 0.9890005588531494]], [[0.48492196202278137, 0.0313761830329895, 0.062025465071201324, 0.04785403236746788, 0.07392572611570358, 0.04531057924032211, 0.042899955064058304, 0.03332687169313431, 0.013483488000929356, 0.031034566462039948, 0.01563643291592598, 0.025076845660805702, 0.017967883497476578, 0.010211044922471046, 0.01587863452732563, 0.016627879813313484, 0.017795734107494354, 0.014646687544882298], [0.0401780791580677, 0.11726559698581696, 0.20787765085697174, 0.2771991491317749, 0.17741699516773224, 0.08093008399009705, 0.04228660836815834, 0.009940383024513721, 0.005029672756791115, 0.0075399382039904594, 0.009497176855802536, 0.0062021054327487946, 0.007512684445828199, 0.0017727077938616276, 0.004498015623539686, 0.003129360033199191, 0.00156165671069175, 0.00016223521379288286], [0.12272447347640991, 0.16699674725532532, 0.19795887172222137, 0.08300038427114487, 0.22756999731063843, 0.1295880824327469, 0.011665310710668564, 0.009226075373589993, 0.004625258967280388, 0.015355746261775494, 0.0035659230779856443, 0.004624908324331045, 0.005824925843626261, 0.004860021639615297, 0.005266845691949129, 0.00446165120229125, 0.0016685028094798326, 0.0010161740938201547], [0.0017791090067476034, 0.7600481510162354, 0.08021719753742218, 0.036161843687295914, 0.02425519935786724, 0.026554293930530548, 0.036614708602428436, 0.008502824231982231, 0.005615432746708393, 0.008864588104188442, 0.006349721923470497, 0.0004159089585300535, 0.0007824052590876818, 0.00071115413447842, 0.00145947455894202, 0.0005092417704872787, 0.0008249323000200093, 0.00033371325116604567], [0.039856698364019394, 0.21196560561656952, 0.24055011570453644, 0.164279043674469, 0.07473067939281464, 0.16104499995708466, 0.055420152842998505, 0.01943611167371273, 0.00689929723739624, 0.006255666259676218, 0.007603384554386139, 0.0037554819136857986, 0.0024249074049293995, 0.0011348942061886191, 0.0019796474371105433, 0.0017734228167682886, 0.0005940868286415935, 0.00029579264810308814], [0.07790723443031311, 0.11474322527647018, 0.25870364904403687, 0.2168864905834198, 0.13398407399654388, 0.06389123946428299, 0.06919674575328827, 0.03849649056792259, 0.008593826554715633, 0.008591655641794205, 0.0026872102171182632, 0.0013888266403228045, 0.0012744085397571325, 0.0005788743146695197, 0.000835889601148665, 0.0015445329481735826, 0.000552099256310612, 0.00014364378876052797], [0.0028529027476906776, 0.06480436027050018, 0.05146715044975281, 0.16399216651916504, 0.3029285967350006, 0.22712063789367676, 0.1252572238445282, 0.050571102648973465, 0.0034142478834837675, 0.002813336905092001, 0.0013557898346334696, 0.0010575293563306332, 0.0009173124562948942, 0.00026955039356835186, 0.0002900287217926234, 0.00035898791975341737, 0.00044485105900093913, 8.427644206676632e-05], [0.018830735236406326, 0.08050795644521713, 0.10390700399875641, 0.1207500696182251, 0.24439802765846252, 0.2541643977165222, 0.13718818128108978, 0.02025364711880684, 0.004664831794798374, 0.009046358987689018, 0.0032854133751243353, 0.0010267426259815693, 0.0008728880784474313, 0.0002771172730717808, 0.00037564366357401013, 0.00019066101231146604, 0.0002089762274408713, 5.130839781486429e-05], [0.032431814819574356, 0.017694825306534767, 0.03239487111568451, 0.04467219486832619, 0.06668002158403397, 0.07207076251506805, 0.29151424765586853, 0.2568607032299042, 0.024335559457540512, 0.05253708362579346, 0.06927045434713364, 0.019347703084349632, 0.007551897782832384, 0.002948594046756625, 0.005447083152830601, 0.0016938875196501613, 0.0016323501477017999, 0.0009159340406768024], [0.00554995471611619, 0.038544148206710815, 0.01838618330657482, 0.023417983204126358, 0.04727083444595337, 0.038396205753088, 0.10766711086034775, 0.3520449697971344, 0.2781014144420624, 0.027743007987737656, 0.024294964969158173, 0.01884458400309086, 0.009576973505318165, 0.0031440879683941603, 0.003472660668194294, 0.0012201153440400958, 0.0016501974314451218, 0.0006745655555278063], [0.0032676905393600464, 0.06955845654010773, 0.01105544064193964, 0.06315509974956512, 0.021326998248696327, 0.023585714399814606, 0.1183398962020874, 0.23650933802127838, 0.2345912754535675, 0.12084255367517471, 0.029237985610961914, 0.02818663977086544, 0.012761639431118965, 0.009613266214728355, 0.0068821595050394535, 0.002285981783643365, 0.006405843887478113, 0.0023939809761941433], [0.013078619726002216, 0.07446904480457306, 0.013668985106050968, 0.01248040609061718, 0.019206443801522255, 0.02604091167449951, 0.11481193453073502, 0.14750631153583527, 0.11983900517225266, 0.11786288022994995, 0.21447043120861053, 0.03698320314288139, 0.03787307068705559, 0.009572433307766914, 0.027453869581222534, 0.003539315890520811, 0.007575934287160635, 0.003567142877727747], [0.0038354378193616867, 0.043555065989494324, 0.01648613065481186, 0.026459790766239166, 0.018123440444469452, 0.025944840162992477, 0.07987315207719803, 0.1259433478116989, 0.0898256003856659, 0.07084952294826508, 0.22135029733181, 0.09620237350463867, 0.03965073823928833, 0.07267104834318161, 0.03790835291147232, 0.020598821341991425, 0.007703194860368967, 0.0030189109966158867], [0.011739352717995644, 0.01690637320280075, 0.021264394745230675, 0.019410742446780205, 0.016197672113776207, 0.02419927716255188, 0.02044660411775112, 0.041607148945331573, 0.07114701718091965, 0.06898549944162369, 0.14525386691093445, 0.09037709981203079, 0.20426394045352936, 0.10356678068637848, 0.051372140645980835, 0.07229312509298325, 0.01565321907401085, 0.005315682850778103], [0.0031852785032242537, 0.028413670137524605, 0.011132045648992062, 0.02611694112420082, 0.01607345975935459, 0.018219083547592163, 0.034111205488443375, 0.0707005187869072, 0.0830436497926712, 0.052384987473487854, 0.0887642428278923, 0.1304255872964859, 0.12386424839496613, 0.09330812841653824, 0.060179658234119415, 0.04813059791922569, 0.07658233493566513, 0.035364385694265366], [0.007466593757271767, 0.020958662033081055, 0.013801335357129574, 0.009284775704145432, 0.006714936345815659, 0.00988426897674799, 0.02518519014120102, 0.03422689065337181, 0.03861764818429947, 0.02609110064804554, 0.0643606185913086, 0.02979891747236252, 0.0874766856431961, 0.2823978662490845, 0.14537885785102844, 0.056261658668518066, 0.07252715528011322, 0.06956689059734344], [0.005946137476712465, 0.02200954034924507, 0.02092854306101799, 0.02801446057856083, 0.018816456198692322, 0.011646305210888386, 0.05115769803524017, 0.04815779998898506, 0.005277610383927822, 0.00978224165737629, 0.04645024985074997, 0.049598488956689835, 0.08027401566505432, 0.05955544114112854, 0.20990023016929626, 0.09415341913700104, 0.1537659615278244, 0.08456539362668991], [0.024198096245527267, 0.011231702752411366, 0.013167831115424633, 0.011320693418383598, 0.018685046583414078, 0.0039054416120052338, 0.007365751545876265, 0.005574868991971016, 0.005380499176681042, 0.00703040836378932, 0.018672946840524673, 0.02995717152953148, 0.07310224324464798, 0.06042541563510895, 0.16333092749118805, 0.14327214658260345, 0.2920515537261963, 0.11132721602916718]], [[0.15983577072620392, 0.07506237179040909, 0.046369150280952454, 0.02611844800412655, 0.05466730147600174, 0.08622322231531143, 0.08878053724765778, 0.0902862623333931, 0.06796588003635406, 0.02352750487625599, 0.018034908920526505, 0.050298646092414856, 0.042058732360601425, 0.03220931813120842, 0.02418982796370983, 0.024930642917752266, 0.049943771213293076, 0.039497677236795425], [0.017191259190440178, 0.08722641319036484, 0.17197996377944946, 0.09560889005661011, 0.10860612243413925, 0.11256225407123566, 0.24582897126674652, 0.09173060953617096, 0.013324488885700703, 0.00433371914550662, 0.003986181225627661, 0.007765627466142178, 0.006216979119926691, 0.004614373203366995, 0.005239209160208702, 0.01010844949632883, 0.010366321541368961, 0.003310214960947633], [0.12293726950883865, 0.07408607751131058, 0.1349191516637802, 0.02892308682203293, 0.06163245812058449, 0.26923054456710815, 0.036732979118824005, 0.06400252878665924, 0.030935591086745262, 0.008113246411085129, 0.012792707420885563, 0.009332709014415741, 0.03104393370449543, 0.048010025173425674, 0.0037548004183918238, 0.05541345849633217, 0.0032358402386307716, 0.004903540946543217], [0.01326132845133543, 0.05129855498671532, 0.12275739759206772, 0.3799687325954437, 0.077604740858078, 0.08649226278066635, 0.12618990242481232, 0.0642424151301384, 0.010082445107400417, 0.003761362051591277, 0.008240407332777977, 0.00771624268963933, 0.010397502221167088, 0.007018831092864275, 0.004858362954109907, 0.010436277836561203, 0.011071179062128067, 0.004602096043527126], [0.04662289470434189, 0.18270348012447357, 0.1281939297914505, 0.06730806827545166, 0.07318584620952606, 0.1597469300031662, 0.15702463686466217, 0.052273187786340714, 0.02997736446559429, 0.010707441717386246, 0.005865729879587889, 0.011259257793426514, 0.019525837153196335, 0.017435112968087196, 0.005480513442307711, 0.01659540832042694, 0.01230156421661377, 0.0037928412202745676], [0.05833743140101433, 0.10491776466369629, 0.2381347417831421, 0.0535334050655365, 0.05617650970816612, 0.1648051142692566, 0.11926832795143127, 0.07590142637491226, 0.03262774646282196, 0.005882548168301582, 0.00818103551864624, 0.00419929064810276, 0.02266721986234188, 0.019614417105913162, 0.004669970832765102, 0.023993944749236107, 0.004541872534900904, 0.0025471881963312626], [0.015980804339051247, 0.1038554236292839, 0.119533970952034, 0.1073264479637146, 0.09764768928289413, 0.10714861750602722, 0.24721024930477142, 0.09110913425683975, 0.011632245033979416, 0.00664938660338521, 0.008730307221412659, 0.004952302668243647, 0.013283493928611279, 0.01586185209453106, 0.009626527316868305, 0.013836013153195381, 0.020369376987218857, 0.005246245767921209], [0.045601848512887955, 0.09900110960006714, 0.07334509491920471, 0.050871577113866806, 0.12139718979597092, 0.1509479135274887, 0.26436981558799744, 0.07660618424415588, 0.014686339534819126, 0.009853742085397243, 0.010544320568442345, 0.011483008041977882, 0.012153706513345242, 0.014490860514342785, 0.007237209007143974, 0.013545524328947067, 0.01961117424070835, 0.004253461491316557], [0.042719051241874695, 0.041721161454916, 0.0789625272154808, 0.0487571656703949, 0.03793752193450928, 0.10258052498102188, 0.13323239982128143, 0.053710367530584335, 0.118159718811512, 0.0183271337300539, 0.024302413687109947, 0.02092561312019825, 0.06098403036594391, 0.0371883288025856, 0.044394709169864655, 0.0350131131708622, 0.07259813696146011, 0.02848600223660469], [0.02083250693976879, 0.021199757233262062, 0.03650709241628647, 0.0105673773214221, 0.023324832320213318, 0.02002452127635479, 0.024256061762571335, 0.028449255973100662, 0.12444552034139633, 0.056362930685281754, 0.07585839182138443, 0.05146624147891998, 0.06952106207609177, 0.15885329246520996, 0.0347466804087162, 0.1297890543937683, 0.055423688143491745, 0.05837174132466316], [0.03733883425593376, 0.02958502061665058, 0.0679180920124054, 0.04447140544652939, 0.025008423253893852, 0.025920182466506958, 0.021769216284155846, 0.03427279368042946, 0.10096690058708191, 0.04335765168070793, 0.04019574820995331, 0.09565939754247665, 0.0810832530260086, 0.09005759656429291, 0.041700515896081924, 0.14280052483081818, 0.03684455156326294, 0.04104989767074585], [0.03014657087624073, 0.02731216512620449, 0.06568917632102966, 0.028710301965475082, 0.01448636595159769, 0.03601134940981865, 0.025300487875938416, 0.028887787833809853, 0.10462921857833862, 0.03713208809494972, 0.07560978084802628, 0.07454515993595123, 0.12285148352384567, 0.06555992364883423, 0.04385388642549515, 0.10141827911138535, 0.06031458452343941, 0.05754132568836212], [0.04130689054727554, 0.03289434313774109, 0.04799177497625351, 0.009540320374071598, 0.025034328922629356, 0.029995329678058624, 0.019507477059960365, 0.02068069949746132, 0.18371360003948212, 0.06174538657069206, 0.06923719495534897, 0.09713013470172882, 0.05057593807578087, 0.08731399476528168, 0.04051646217703819, 0.09883379936218262, 0.042861223220825195, 0.04112112149596214], [0.07431540638208389, 0.03703033924102783, 0.07555990666151047, 0.0070398603565990925, 0.021023141220211983, 0.08932182937860489, 0.010731833986938, 0.03433644771575928, 0.1321326643228531, 0.05345403403043747, 0.03193601220846176, 0.048071932047605515, 0.08807594329118729, 0.09622479975223541, 0.030122870579361916, 0.09951876848936081, 0.01666012778878212, 0.054444123059511185], [0.01941988244652748, 0.046061258763074875, 0.03581860661506653, 0.025311633944511414, 0.03863845020532608, 0.027177119627594948, 0.04623662307858467, 0.04452211782336235, 0.07566419243812561, 0.05939739570021629, 0.04234561324119568, 0.07943392544984818, 0.04466516897082329, 0.06444482505321503, 0.07480153441429138, 0.059114471077919006, 0.11936286091804504, 0.09758441150188446], [0.11936795711517334, 0.028469111770391464, 0.030221227556467056, 0.00631202245131135, 0.022235220298171043, 0.0485454797744751, 0.014728923328220844, 0.026404155418276787, 0.12046324461698532, 0.0530225969851017, 0.05862191691994667, 0.05457591637969017, 0.10035941004753113, 0.13707362115383148, 0.026155700907111168, 0.06728678196668625, 0.03118743561208248, 0.054969340562820435], [0.022452104836702347, 0.03653494641184807, 0.04183012619614601, 0.0290537029504776, 0.03345632925629616, 0.03097379021346569, 0.037697963416576385, 0.042068418115377426, 0.06988009065389633, 0.05600378289818764, 0.05156230553984642, 0.03867083042860031, 0.07085612416267395, 0.10775350034236908, 0.061921022832393646, 0.08179041743278503, 0.09614192694425583, 0.0913526639342308], [0.05883180350065231, 0.02290005050599575, 0.019771311432123184, 0.013416220434010029, 0.037318743765354156, 0.037359293550252914, 0.03311112895607948, 0.02934768609702587, 0.07611296325922012, 0.09064306318759918, 0.0677872970700264, 0.09478147327899933, 0.05736275389790535, 0.08940742909908295, 0.035546839237213135, 0.07477029412984848, 0.08532383292913437, 0.0762077271938324]], [[0.7460663318634033, 0.01420966349542141, 0.018567141145467758, 0.012074879370629787, 0.013024936430156231, 0.021065441891551018, 0.015864824876189232, 0.019919808954000473, 0.015234425663948059, 0.019084833562374115, 0.010250387713313103, 0.012845492921769619, 0.009718306362628937, 0.0060110148042440414, 0.012367328628897667, 0.015002893283963203, 0.015377067029476166, 0.023315301164984703], [0.005077885463833809, 0.05524256452918053, 0.676936149597168, 0.08644968271255493, 0.10326961427927017, 0.01850024424493313, 0.020574901252985, 0.023503046482801437, 0.0005410751909948885, 0.0005479329847730696, 0.0007543357205577195, 0.0010335438419133425, 0.0012144518550485373, 0.0013881503837183118, 0.0017184546450152993, 0.0013911534333601594, 0.0012879465939477086, 0.0005688496748916805], [0.016555875539779663, 0.1488979011774063, 0.04812243953347206, 0.4883955717086792, 0.14932173490524292, 0.05877586081624031, 0.030022677034139633, 0.027218559756875038, 0.002008856041356921, 0.0003428749623708427, 0.0009485245682299137, 0.0005467746523208916, 0.005294440314173698, 0.0008647223003208637, 0.0009361288975924253, 0.019283052533864975, 0.00121393078006804, 0.0012501328019425273], [0.0026739437598735094, 0.03853078559041023, 0.08936583250761032, 0.061524853110313416, 0.5493236780166626, 0.12811121344566345, 0.07785607874393463, 0.03747691586613655, 0.004189616534858942, 0.0018143359338864684, 0.0003805507149081677, 0.0016142077511176467, 0.0007743635796941817, 0.0006419078563340008, 0.0004918686463497579, 0.0007234718650579453, 0.0038585958536714315, 0.000647859473247081], [0.0074082184582948685, 0.0271303690969944, 0.03552667051553726, 0.10482577979564667, 0.06530255824327469, 0.5876773595809937, 0.08424224704504013, 0.076046422123909, 0.0015863784356042743, 0.00292678433470428, 0.0019662135746330023, 0.0003451277734711766, 0.0013817577855661511, 0.00043416721746325493, 0.0005477041704580188, 0.0005172889796085656, 0.0006008298951201141, 0.0015341037651523948], [0.018907461315393448, 0.00424712710082531, 0.04567468538880348, 0.029030809178948402, 0.4635758101940155, 0.050079699605703354, 0.22606663405895233, 0.1492411196231842, 0.005605021491646767, 0.002167824422940612, 0.0025591589510440826, 0.0015905917389318347, 0.00020235453848727047, 0.000373012968339026, 0.00015171751147136092, 0.00033987968345172703, 7.218174869194627e-05, 0.00011494485079310834], [0.0002963423612527549, 0.0005643963813781738, 0.0016610710881650448, 0.006390635389834642, 0.01668689213693142, 0.01978261023759842, 0.018509605899453163, 0.9239943027496338, 0.007281801663339138, 0.003001447068527341, 0.000943001767154783, 0.0005456067738123238, 0.00022045431251171976, 5.743305791838793e-06, 4.6244560508057475e-05, 3.08723101625219e-05, 1.8640459529706277e-05, 2.034897443081718e-05], [0.27434247732162476, 0.00045882523409090936, 0.0008985216845758259, 0.00266679166816175, 0.01135959755629301, 0.031388089060783386, 0.11325512826442719, 0.38729169964790344, 0.13897565007209778, 0.02688005194067955, 0.006851546932011843, 0.0033937273547053337, 0.002021052874624729, 0.00011175405961694196, 1.3833945558872074e-05, 3.0440674890996888e-05, 3.4984412195626646e-05, 2.590826443338301e-05], [0.023477263748645782, 0.00037430680822581053, 0.00014326345990411937, 0.0002354988391743973, 0.0009691194863989949, 0.004532764665782452, 0.011419464834034443, 0.1708356738090515, 0.06546446681022644, 0.5147976279258728, 0.13791599869728088, 0.0389627180993557, 0.023836813867092133, 0.00308969896286726, 0.002584378933534026, 0.000244386144913733, 0.0004974809708073735, 0.0006191160064190626], [0.0007267193868756294, 0.0002393363247392699, 0.00020620299619622529, 0.0005228925147093832, 0.0002165981859434396, 0.0008768538828007877, 0.008308261632919312, 0.11612318456172943, 0.12403924763202667, 0.015605834312736988, 0.6339055299758911, 0.037174973636865616, 0.04916075989603996, 0.007169785443693399, 0.002405398292466998, 0.0022997441701591015, 0.00012879350106231868, 0.0008899266249500215], [0.0017701962497085333, 3.706294228322804e-05, 0.00012280649389140308, 5.48694260942284e-05, 0.00017600783030502498, 4.233516301610507e-05, 0.0005058334209024906, 0.012356718070805073, 0.007511744741350412, 0.029945967718958855, 0.00828047189861536, 0.863004207611084, 0.06778667122125626, 0.0036096901167184114, 0.002350287511944771, 0.001110549783334136, 0.0011270147515460849, 0.0002075050288112834], [0.00037452508695423603, 0.0001579662348376587, 1.8933067622128874e-05, 0.00040703194099478424, 0.00011435012856964022, 0.0001672261714702472, 0.00031223997939378023, 0.00719187268987298, 0.019344788044691086, 0.013400343246757984, 0.7764423489570618, 0.01204012893140316, 0.1032591164112091, 0.02098708599805832, 0.03020428866147995, 0.002734420821070671, 0.00707990350201726, 0.005763264838606119], [0.002589924493804574, 0.00020565724116750062, 0.00010695733362808824, 3.0388764571398497e-05, 0.00018723912944551557, 0.00015375718066934496, 0.00033029550104402006, 0.0008303066133521497, 0.0034576337784528732, 0.020858483389019966, 0.15963955223560333, 0.11430051922798157, 0.029671013355255127, 0.5439012050628662, 0.0749802365899086, 0.018238453194499016, 0.009103307500481606, 0.02141520567238331], [0.0354035347700119, 0.00018270361761096865, 0.00251680426299572, 0.00010463836952112615, 0.00012489460641518235, 0.00038483034586533904, 4.7625781007809564e-05, 0.0007004149374552071, 0.00014328034012578428, 0.005648400634527206, 0.005186606664210558, 0.023618601262569427, 0.2746005356311798, 0.10591736435890198, 0.2727357745170593, 0.21023234724998474, 0.02260063961148262, 0.03985099494457245], [0.001416415674611926, 0.0005408442812040448, 0.00023756561859045178, 0.000418489653384313, 0.0002378123317612335, 4.372455441625789e-05, 0.00016676033555995673, 0.000606729241553694, 0.0009922058088704944, 0.0005242967163212597, 0.006878681015223265, 0.03964662179350853, 0.10336582362651825, 0.06236257404088974, 0.051639433950185776, 0.18583132326602936, 0.18392065167427063, 0.3611701428890228], [0.004984826315194368, 0.0001338128058705479, 0.0005115257808938622, 7.47240919736214e-05, 0.00036387654836289585, 0.00020267396757844836, 2.368819696130231e-05, 0.00010058525367639959, 3.782310523092747e-05, 0.0014698312152177095, 0.0012032779632136226, 0.0122650396078825, 0.01529821939766407, 0.11055608838796616, 0.1452571451663971, 0.04979991540312767, 0.3968839645385742, 0.2608329951763153], [0.00017883063992485404, 0.0001696109538897872, 3.289520464022644e-05, 6.408420449588448e-05, 3.625653698691167e-05, 6.133173155831173e-05, 1.6641613910906017e-05, 3.129705510218628e-05, 6.887030758662149e-05, 6.156655581435189e-05, 0.00045241002226248384, 0.00021264306269586086, 0.0018295071786269546, 0.0026250139344483614, 0.015094802714884281, 0.031096668913960457, 0.01421293057501316, 0.933754563331604], [0.15466877818107605, 2.7730777219403535e-05, 0.0005085169104859233, 8.630342927062884e-05, 0.00012327017611823976, 2.1915167963015847e-05, 0.00010396597645012662, 9.898342250380665e-05, 4.928952330374159e-05, 0.00011167822958668694, 0.00019544702081475407, 0.0011651929235085845, 0.000801951508037746, 0.0033772087190300226, 0.02185829170048237, 0.02499343268573284, 0.20373255014419556, 0.5880754590034485]], [[0.014156188815832138, 0.04022469371557236, 0.019585156813263893, 0.13647012412548065, 0.029879065230488777, 0.011258168146014214, 0.07077058404684067, 0.21020589768886566, 0.002809622325003147, 0.037792108952999115, 0.008052063174545765, 0.0564674511551857, 0.007444851566106081, 0.008183589205145836, 0.05455368384718895, 0.002281598513945937, 0.07691226899623871, 0.21295291185379028], [0.0042730215936899185, 0.01212773472070694, 0.02796167880296707, 0.4831398129463196, 0.08700680732727051, 0.037955716252326965, 0.1816108524799347, 0.10003529489040375, 0.0032273612450808287, 0.005190580151975155, 0.01350369118154049, 0.006712943781167269, 0.005173283629119396, 0.0029580476693809032, 0.010805773548781872, 0.0024915686808526516, 0.012353750877082348, 0.0034720192197710276], [0.2843865156173706, 0.03365640342235565, 0.053973082453012466, 0.04539048299193382, 0.11225423961877823, 0.15507248044013977, 0.024918485432863235, 0.21957728266716003, 0.0063425893895328045, 0.0031902247574180365, 0.006306638475507498, 0.009092899970710278, 0.012172590009868145, 0.003671427024528384, 0.0044580730609595776, 0.008409091271460056, 0.002303245011717081, 0.014824282377958298], [0.013972287066280842, 0.05960482731461525, 0.02840246446430683, 0.17125006020069122, 0.11940561234951019, 0.0768502950668335, 0.17140789330005646, 0.13664555549621582, 0.013325235806405544, 0.007054883521050215, 0.09380011260509491, 0.022440893575549126, 0.03294505551457405, 0.005286387633532286, 0.015647051855921745, 0.009779240004718304, 0.01535892579704523, 0.006823214702308178], [0.1460062712430954, 0.028230370953679085, 0.041519928723573685, 0.042040903121232986, 0.04159896820783615, 0.0847703069448471, 0.09553700685501099, 0.3928827941417694, 0.009874922223389149, 0.007805925328284502, 0.020922666415572166, 0.014784073457121849, 0.014724423177540302, 0.0026528947055339813, 0.02220616675913334, 0.004380646627396345, 0.008780647069215775, 0.02128102071583271], [0.4837856888771057, 0.02325471118092537, 0.030939746648073196, 0.005176221486181021, 0.09145151823759079, 0.05004195496439934, 0.03342705965042114, 0.22584687173366547, 0.005515805911272764, 0.002825190080329776, 0.003626958467066288, 0.005634514149278402, 0.006953825242817402, 0.002125882776454091, 0.0031510298140347004, 0.0063883219845592976, 0.004468906205147505, 0.01538571435958147], [0.0006122568738646805, 0.05773477628827095, 0.011623864062130451, 0.37325891852378845, 0.06629151850938797, 0.02498384565114975, 0.29592034220695496, 0.1045428216457367, 0.0014765680534765124, 0.011600317433476448, 0.01441959198564291, 0.007582311052829027, 0.0039217788726091385, 0.000604353379458189, 0.005843065679073334, 0.0008295975276269019, 0.016213372349739075, 0.002540766028687358], [0.010062345303595066, 0.048946313560009, 0.0157312024384737, 0.00705810496583581, 0.034660592675209045, 0.013886150903999805, 0.08072858303785324, 0.7753523588180542, 0.00017106370069086552, 0.0003571068518795073, 0.00017073300841730088, 0.0008768695406615734, 6.595174636458978e-05, 0.0002369138819631189, 7.292546069948003e-05, 3.386726893950254e-05, 0.001847547828219831, 0.009741382673382759], [0.04309425130486488, 0.029747407883405685, 0.007008333690464497, 0.026733439415693283, 0.015417261980473995, 0.022728441283106804, 0.05191929265856743, 0.011945100501179695, 0.018466562032699585, 0.22427010536193848, 0.09953230619430542, 0.11423886567354202, 0.07339755445718765, 0.010225998237729073, 0.0715387761592865, 0.018147679045796394, 0.13854385912418365, 0.02304474264383316], [0.0651945024728775, 0.01147846132516861, 0.006363662425428629, 0.0459127202630043, 0.029433058574795723, 0.013399341143667698, 0.02428734116256237, 0.006515937391668558, 0.07762352377176285, 0.044080596417188644, 0.12634320557117462, 0.11853114515542984, 0.15112245082855225, 0.013925275765359402, 0.05408529192209244, 0.043062906712293625, 0.1330532431602478, 0.03558726981282234], [0.26268747448921204, 0.014668978750705719, 0.0107759153470397, 0.011197706684470177, 0.02411356382071972, 0.011785942129790783, 0.027301084250211716, 0.020757634192705154, 0.1030382513999939, 0.07175714522600174, 0.04465148225426674, 0.07388731837272644, 0.06242046505212784, 0.005216200836002827, 0.03159135952591896, 0.016403310000896454, 0.1269521266222, 0.08079389482736588], [0.31569528579711914, 0.0235137902200222, 0.006217306479811668, 0.01687891222536564, 0.01991911232471466, 0.01294030249118805, 0.015113391913473606, 0.01782402954995632, 0.05809250846505165, 0.1721380352973938, 0.06369657069444656, 0.03539353981614113, 0.06288502365350723, 0.007588313892483711, 0.0444774255156517, 0.013067690655589104, 0.05769142881035805, 0.05686718970537186], [0.30213743448257446, 0.0059951855801045895, 0.010957793332636356, 0.005861843470484018, 0.027768120169639587, 0.02261178009212017, 0.00909474864602089, 0.010114585049450397, 0.054972294718027115, 0.05813188478350639, 0.0765443742275238, 0.07104641199111938, 0.13566763699054718, 0.028290586546063423, 0.038169581443071365, 0.05242553725838661, 0.04542379453778267, 0.04478640854358673], [0.1118953675031662, 0.00148783961776644, 0.038507841527462006, 0.00422741798684001, 0.0057322862558066845, 0.09823064506053925, 0.0028139599598944187, 0.0030042147263884544, 0.05016901716589928, 0.007793492637574673, 0.014950302429497242, 0.024984441697597504, 0.24505767226219177, 0.04162048175930977, 0.013547303155064583, 0.3020901381969452, 0.016424989327788353, 0.01746266335248947], [0.09346400946378708, 0.02050267904996872, 0.006681537255644798, 0.032634202390909195, 0.03207917511463165, 0.013815727084875107, 0.013357640244066715, 0.021945426240563393, 0.12904037535190582, 0.10460545122623444, 0.07220547646284103, 0.109382763504982, 0.08125120401382446, 0.016860278323292732, 0.05324944853782654, 0.03042028285562992, 0.06248767301440239, 0.1060166284441948], [0.212510347366333, 0.0065530212596058846, 0.05337003991007805, 0.0014332195278257132, 0.007067603059113026, 0.07055573165416718, 0.004532868508249521, 0.004356249701231718, 0.039808642119169235, 0.05700171738862991, 0.01812260039150715, 0.027309106662869453, 0.14745989441871643, 0.15437881648540497, 0.013916078954935074, 0.1315579116344452, 0.02540753223001957, 0.02465852163732052], [0.0012770594330504537, 0.012641623616218567, 0.004240383859723806, 0.11038608103990555, 0.016690539196133614, 0.00651003560051322, 0.05578870698809624, 0.008996913209557533, 0.018737517297267914, 0.12822802364826202, 0.14567086100578308, 0.10221986472606659, 0.050512608140707016, 0.006367901805788279, 0.09321959316730499, 0.011814625933766365, 0.19661414623260498, 0.03008347563445568], [0.10617191344499588, 0.024962224066257477, 0.018805650994181633, 0.005283853970468044, 0.021679449826478958, 0.010703664273023605, 0.030382737517356873, 0.12004567682743073, 0.01176692359149456, 0.019496243447065353, 0.008729029446840286, 0.061539340764284134, 0.005405704490840435, 0.013714701868593693, 0.007151290308684111, 0.0031444530468434095, 0.0959378033876419, 0.4350792467594147]], [[0.21946601569652557, 0.08856115490198135, 0.012010741978883743, 0.013350749388337135, 0.011092464439570904, 0.009863588027656078, 0.06358642131090164, 0.0404152050614357, 0.0087177949026227, 0.0698448121547699, 0.029335299506783485, 0.012332087382674217, 0.02470947615802288, 0.014105014503002167, 0.2758740186691284, 0.017426954582333565, 0.05463990941643715, 0.03466836363077164], [0.002435796894133091, 0.025673875585198402, 0.060756705701351166, 0.22118322551250458, 0.23809413611888885, 0.13137942552566528, 0.06800118833780289, 0.20452582836151123, 0.004941228311508894, 0.0046875555999577045, 0.004784625954926014, 0.003779386170208454, 0.008474580943584442, 0.007194580044597387, 0.0012386038433760405, 0.006653070915490389, 0.002389595378190279, 0.0038066005799919367], [0.10727567970752716, 0.026384316384792328, 0.06942065805196762, 0.02008773572742939, 0.24128341674804688, 0.22347086668014526, 0.08817102760076523, 0.1482768952846527, 0.012862159870564938, 0.0031748879700899124, 0.0021978344302624464, 0.0019081118516623974, 0.004465782083570957, 0.022985579445958138, 0.0028152018785476685, 0.020319534465670586, 0.002257311251014471, 0.002642921870574355], [0.005761650390923023, 0.028537876904010773, 0.07028724253177643, 0.03717369586229324, 0.33596161007881165, 0.27433890104293823, 0.035044603049755096, 0.13169246912002563, 0.021777791902422905, 0.004137994255870581, 0.011359937489032745, 0.01651638001203537, 0.008352049626410007, 0.004542742855846882, 0.001618188456632197, 0.007378450129181147, 0.0017003410030156374, 0.003818040480837226], [0.030218033120036125, 0.018204476684331894, 0.13773788511753082, 0.03585006669163704, 0.1645459532737732, 0.3608922064304352, 0.03456888347864151, 0.12772831320762634, 0.013721364550292492, 0.005208119750022888, 0.029667165130376816, 0.005050454288721085, 0.018782811239361763, 0.002027111826464534, 0.0033382673282176256, 0.006740722339600325, 0.0018186992965638638, 0.0038994483184069395], [0.042152177542448044, 0.014167151413857937, 0.1732124239206314, 0.053792357444763184, 0.2828406095504761, 0.1854012906551361, 0.03246814012527466, 0.10045237094163895, 0.02553054876625538, 0.005061235278844833, 0.009855248034000397, 0.0026000957004725933, 0.01245239470154047, 0.03368663787841797, 0.0017071603797376156, 0.02122615836560726, 0.0012948625953868032, 0.0020991584751755], [0.0037649807054549456, 0.15148073434829712, 0.022682327777147293, 0.04549413174390793, 0.0939512848854065, 0.06088079512119293, 0.27632027864456177, 0.2672090530395508, 0.01053064689040184, 0.015500797890126705, 0.005583089776337147, 0.006481398828327656, 0.006552840583026409, 0.003003557212650776, 0.0077230180613696575, 0.003319422947242856, 0.01301291212439537, 0.006508696358650923], [0.35403335094451904, 0.06782686710357666, 0.048055004328489304, 0.041709743440151215, 0.05691517889499664, 0.06835395842790604, 0.2052917331457138, 0.06370219588279724, 0.008969194255769253, 0.015131470747292042, 0.013556773774325848, 0.004542376380413771, 0.01049929391592741, 0.0032242632005363703, 0.023328816518187523, 0.002469682600349188, 0.01006774790585041, 0.0023222612217068672], [0.0221893060952425, 0.0015277606435120106, 0.014765608124434948, 0.004584575537592173, 0.020156988874077797, 0.08128798753023148, 0.00263901986181736, 0.012848323211073875, 0.13028264045715332, 0.019020959734916687, 0.0465715117752552, 0.20169100165367126, 0.26902464032173157, 0.029849044978618622, 0.010912052355706692, 0.07777855545282364, 0.012530348263680935, 0.042339663952589035], [0.003137376857921481, 0.0025783570017665625, 0.013865460641682148, 0.007924074307084084, 0.02588041126728058, 0.03635750338435173, 0.003778165439143777, 0.010549071244895458, 0.14647674560546875, 0.01882418990135193, 0.046672675758600235, 0.09865592420101166, 0.1917659044265747, 0.13460831344127655, 0.017007766291499138, 0.18685293197631836, 0.01510321069508791, 0.03996185213327408], [0.001882507698610425, 0.001277439994737506, 0.010148690082132816, 0.0033443495631217957, 0.033100854605436325, 0.030836042016744614, 0.0019311498617753386, 0.0056057278998196125, 0.12626385688781738, 0.011857184581458569, 0.012181880883872509, 0.4115898609161377, 0.20442157983779907, 0.035104960203170776, 0.013035877607762814, 0.05853283405303955, 0.009984560310840607, 0.028900666162371635], [0.012753725051879883, 0.0005436936626210809, 0.007168706506490707, 0.00292002409696579, 0.0770057663321495, 0.03381152078509331, 0.0021276057232171297, 0.015130423940718174, 0.23739777505397797, 0.013365489430725574, 0.06986257433891296, 0.028561506420373917, 0.13488057255744934, 0.1005018949508667, 0.019200028851628304, 0.13489960134029388, 0.014688007533550262, 0.09518106281757355], [0.005261726211756468, 0.0012325874995440245, 0.023335199803113937, 0.0038605998270213604, 0.023067856207489967, 0.048232849687337875, 0.002491443883627653, 0.008635325357317924, 0.0888381078839302, 0.02011164464056492, 0.056381940841674805, 0.06133395433425903, 0.051242221146821976, 0.1638234406709671, 0.021654509007930756, 0.34457144141197205, 0.0176461860537529, 0.05827908590435982], [0.011151940561830997, 0.005105949472635984, 0.01685149408876896, 0.0027316769119352102, 0.0068437810987234116, 0.025159114971756935, 0.004855629522353411, 0.008087368682026863, 0.04793788865208626, 0.0280117429792881, 0.0449238084256649, 0.12069639563560486, 0.1957230269908905, 0.04740982875227928, 0.10052437335252762, 0.14674782752990723, 0.06867212802171707, 0.11856600642204285], [0.0018108169315382838, 0.0034382068552076817, 0.008704347535967827, 0.00401974655687809, 0.01840207912027836, 0.01620546355843544, 0.003443618770688772, 0.008282395079731941, 0.1020713523030281, 0.033422574400901794, 0.04625234752893448, 0.07830662280321121, 0.1665095090866089, 0.09037067741155624, 0.047019731253385544, 0.14555591344833374, 0.05484131723642349, 0.17134329676628113], [0.013460817746818066, 0.0025176263879984617, 0.01268178503960371, 0.0023254603147506714, 0.009359908290207386, 0.024501174688339233, 0.0034806602634489536, 0.00521621061488986, 0.05964691564440727, 0.02362631820142269, 0.027802137657999992, 0.0806325152516365, 0.10373253375291824, 0.34939703345298767, 0.0559384785592556, 0.10358015447854996, 0.04733164981007576, 0.0747685357928276], [0.002271614270284772, 0.00803297571837902, 0.0018527975771576166, 0.0023681907914578915, 0.00437403516843915, 0.003744883695617318, 0.011624662205576897, 0.01005508191883564, 0.03572703152894974, 0.06168544292449951, 0.03254875913262367, 0.045768871903419495, 0.06538610905408859, 0.03315340727567673, 0.12212149053812027, 0.05615752562880516, 0.2534802258014679, 0.24964690208435059], [0.15224075317382812, 0.0013417399022728205, 0.00203239475376904, 0.001342899166047573, 0.0010818406008183956, 0.0019087573746219277, 0.0032237740233540535, 0.0008614485850557685, 0.022166233509778976, 0.040748633444309235, 0.051896221935749054, 0.020042236894369125, 0.07664889842271805, 0.02747981622815132, 0.29042330384254456, 0.03469877317547798, 0.19361092150211334, 0.07825132459402084]], [[0.7077793478965759, 0.0006648007547482848, 0.025815125554800034, 0.00015044397150631994, 0.0007317618583329022, 0.004263428971171379, 0.020709795877337456, 0.11055499315261841, 0.005017583258450031, 0.00040728875319473445, 0.0003938735171686858, 0.0024819837417453527, 0.0018114898120984435, 0.0012368977768346667, 0.0003705645212903619, 0.00043696645298041403, 0.02534732036292553, 0.09182626754045486], [0.02338850125670433, 0.08509968221187592, 0.07564380019903183, 0.04830297455191612, 0.03485385701060295, 0.06675482541322708, 0.01908325031399727, 0.39064720273017883, 0.056591879576444626, 0.02612658217549324, 0.01833527907729149, 0.015345393680036068, 0.05440019816160202, 0.005292133893817663, 0.011666572652757168, 0.008840113878250122, 0.00829786341637373, 0.05132986232638359], [0.0831575095653534, 0.03701549023389816, 0.07686004042625427, 0.05041298270225525, 0.061522290110588074, 0.08659391105175018, 0.14546823501586914, 0.21837124228477478, 0.03143163397908211, 0.016772296279668808, 0.014360916800796986, 0.01184365339577198, 0.035359788686037064, 0.016307830810546875, 0.00664666760712862, 0.01933354325592518, 0.026315823197364807, 0.062226150184869766], [0.007654293440282345, 0.025044064968824387, 0.1868419498205185, 0.021921660751104355, 0.09870078414678574, 0.18761616945266724, 0.03765121474862099, 0.12223558872938156, 0.0186839047819376, 0.04257645457983017, 0.03365021571516991, 0.008727542124688625, 0.06390038132667542, 0.056297652423381805, 0.018607696518301964, 0.04391532391309738, 0.005635862238705158, 0.02033919282257557], [0.022007441148161888, 0.039059776812791824, 0.05904122442007065, 0.05559809133410454, 0.06523675471544266, 0.13959558308124542, 0.04326057806611061, 0.3214740455150604, 0.028628919273614883, 0.01370926108211279, 0.04573766887187958, 0.04121742770075798, 0.02927415445446968, 0.013703842647373676, 0.012496290728449821, 0.03472454473376274, 0.004808067809790373, 0.030426356941461563], [0.017447534948587418, 0.0068053570576012135, 0.09016481041908264, 0.03961864486336708, 0.12412192672491074, 0.25140616297721863, 0.046806976199150085, 0.27470824122428894, 0.019060594961047173, 0.011820350773632526, 0.011752610094845295, 0.012710998766124249, 0.019261052832007408, 0.02651279605925083, 0.004218890331685543, 0.028904540464282036, 0.00607572915032506, 0.008602878078818321], [0.009815232828259468, 0.12238231301307678, 0.0187850184738636, 0.04659906402230263, 0.015758929774165154, 0.005401668604463339, 0.014027934521436691, 0.6478721499443054, 0.03178137540817261, 0.015125865116715431, 0.003127653617411852, 0.006542736664414406, 0.003872025990858674, 0.001463530701585114, 0.005982274189591408, 0.0013211013283580542, 0.0024857998359948397, 0.047655243426561356], [0.030146399512887, 0.019113615155220032, 0.03416981175541878, 0.005056722555309534, 0.008286770433187485, 0.024956952780485153, 0.1271490901708603, 0.6113470196723938, 0.03805966302752495, 0.006384373176842928, 0.006786706391721964, 0.005188993643969297, 0.003318492555990815, 0.0025016029831022024, 0.0013636176008731127, 0.0006391305360011756, 0.008312058635056019, 0.06721893697977066], [0.01515678409487009, 0.01404679287225008, 0.011568723246455193, 0.010919531807303429, 0.00822002999484539, 0.03138677403330803, 0.011193682439625263, 0.4304543733596802, 0.04732296243309975, 0.05843902751803398, 0.04373849183320999, 0.055660270154476166, 0.05206875503063202, 0.013294978067278862, 0.025973593816161156, 0.011212141253054142, 0.012157744728028774, 0.1471853405237198], [0.0034248100128024817, 0.004406367428600788, 0.004670602735131979, 0.005516851786524057, 0.007998302578926086, 0.013578062877058983, 0.008141802623867989, 0.16400878131389618, 0.09777897596359253, 0.04598277807235718, 0.08122365921735764, 0.028961552307009697, 0.3209607005119324, 0.01899355836212635, 0.01550277229398489, 0.07895492762327194, 0.00903400406241417, 0.09086140245199203], [0.0034939353354275227, 0.0012089189840480685, 0.005684324540197849, 0.004325277637690306, 0.017213385552167892, 0.01814073882997036, 0.004033553414046764, 0.04532493278384209, 0.07022865116596222, 0.12242914736270905, 0.12386970967054367, 0.09598880261182785, 0.30130237340927124, 0.03690016642212868, 0.04469889774918556, 0.033223483711481094, 0.011513198725879192, 0.06042056158185005], [0.005109789315611124, 0.00430738041177392, 0.005589281674474478, 0.0020348282996565104, 0.00560182798653841, 0.016830885782837868, 0.009449761360883713, 0.052400171756744385, 0.14402258396148682, 0.0744396299123764, 0.2864311635494232, 0.043252523988485336, 0.07599972933530807, 0.07895715534687042, 0.027471134439110756, 0.0342579111456871, 0.013441819697618484, 0.12040247023105621], [0.004786254372447729, 0.0011109876213595271, 0.015174857340753078, 0.00428352877497673, 0.008514356799423695, 0.03548552468419075, 0.005666657816618681, 0.02592962235212326, 0.04369630292057991, 0.04253249615430832, 0.1057707667350769, 0.027991607785224915, 0.08742981404066086, 0.34679433703422546, 0.042461954057216644, 0.1714501827955246, 0.009672248736023903, 0.021248457953333855], [0.021113647148013115, 0.00027886926545761526, 0.01817227527499199, 0.0010561201488599181, 0.000489545171149075, 0.016057340428233147, 0.0005454684142023325, 0.009149852208793163, 0.024371318519115448, 0.012732981704175472, 0.006170892622321844, 0.008785465732216835, 0.42877256870269775, 0.02231166511774063, 0.005702458322048187, 0.38552746176719666, 0.005242460407316685, 0.03351958841085434], [0.0019749097991734743, 0.005136460997164249, 0.0024013493675738573, 0.005215476732701063, 0.011676783673465252, 0.006047931499779224, 0.003211778122931719, 0.017981432378292084, 0.0578061044216156, 0.03877407684922218, 0.03492146357893944, 0.25281137228012085, 0.2021636664867401, 0.03398710861802101, 0.03129474073648453, 0.057723503559827805, 0.029886985197663307, 0.2069849818944931], [0.03833044692873955, 0.0007006371160969138, 0.04050600901246071, 0.0027185017243027687, 0.0021553849801421165, 0.01782955415546894, 0.002635594690218568, 0.013623706996440887, 0.009059839881956577, 0.01957908272743225, 0.014958559535443783, 0.007986410520970821, 0.056173279881477356, 0.5408892631530762, 0.0374830923974514, 0.12467329949140549, 0.014251966960728168, 0.05644535273313522], [0.00481925904750824, 0.016629857942461967, 0.0017080859979614615, 0.007767789997160435, 0.0009394151857122779, 0.0002474330540280789, 0.0016963224625214934, 0.053732018917798996, 0.024032210931181908, 0.016346745193004608, 0.009945567697286606, 0.05350375920534134, 0.012363762594759464, 0.011212184093892574, 0.056953418999910355, 0.03670945391058922, 0.014209520071744919, 0.6771831512451172], [0.011940392665565014, 0.0014180492144078016, 0.002723398618400097, 0.0007338170544244349, 0.0008363890810869634, 0.0011676331050693989, 0.0024671878200024366, 0.03433897718787193, 0.01754594035446644, 0.007262146566063166, 0.004045225214213133, 0.026217596605420113, 0.016435233876109123, 0.008898379281163216, 0.01009346917271614, 0.007350347936153412, 0.16453206539154053, 0.6819937825202942]], [[0.02056620642542839, 0.0388345867395401, 0.036727506667375565, 0.0339152030646801, 0.03582252934575081, 0.020460279658436775, 0.10548464953899384, 0.023365842178463936, 0.037649016827344894, 0.08348849415779114, 0.04835808649659157, 0.040050044655799866, 0.027116427198052406, 0.04393646866083145, 0.12963198125362396, 0.056981414556503296, 0.1748104691505432, 0.04280082881450653], [0.1346444934606552, 0.1990831047296524, 0.10686486214399338, 0.11429385095834732, 0.08052102476358414, 0.1252259910106659, 0.06229378283023834, 0.172738716006279, 0.00030081940349191427, 0.0006270823068916798, 0.0006362574058584869, 0.0005713707068935037, 0.00041421689093112946, 0.00031813886016607285, 0.000327212706906721, 0.0004605437279678881, 0.0002808474819175899, 0.0003976794832851738], [0.3769966959953308, 0.08395059406757355, 0.04210367053747177, 0.08571671694517136, 0.0647554025053978, 0.043784450739622116, 0.13512001931667328, 0.16471560299396515, 0.00013817253056913614, 0.0001714686950435862, 0.0004897170583717525, 0.00019662002159748226, 0.0002297434548381716, 0.0004139683151151985, 0.00012079549196641892, 0.00043752152123488486, 0.0003943619958590716, 0.00026453673490323126], [0.10505424439907074, 0.13463732600212097, 0.1370093822479248, 0.13060390949249268, 0.06920669972896576, 0.10950202494859695, 0.06299512833356857, 0.24259334802627563, 0.0005324255325831473, 0.0007617255323566496, 0.0026742536574602127, 0.0007595870411023498, 0.0011459559900686145, 0.0006085296045057476, 0.0002869082672987133, 0.0008554139640182257, 0.0002889327588491142, 0.000484228425193578], [0.24592812359333038, 0.0968492403626442, 0.08172430098056793, 0.08929912000894547, 0.06265892833471298, 0.044100288301706314, 0.05875055491924286, 0.3151676058769226, 0.0004526495758909732, 0.0004970371373929083, 0.0006478019058704376, 0.0006638208869844675, 0.0006293926853686571, 0.00029161846032366157, 0.00042326003313064575, 0.0007516934419982135, 0.00028733632643707097, 0.0008772168075665832], [0.45405909419059753, 0.0634516179561615, 0.07555964589118958, 0.06499649584293365, 0.06882763653993607, 0.05632257089018822, 0.06202968955039978, 0.15163233876228333, 0.0002361312072025612, 0.00026763961068354547, 0.0005435108905658126, 0.00037932934355922043, 0.0003551747358869761, 0.0001551267778268084, 0.00018542000907473266, 0.00046772201312705874, 0.00022705746232531965, 0.0003037748683709651], [0.12339003384113312, 0.10643905401229858, 0.1128334254026413, 0.07866575568914413, 0.05971717834472656, 0.04031461104750633, 0.1309712827205658, 0.3423880338668823, 0.0002596908889245242, 0.000600816507358104, 0.00048162779421545565, 0.00044646550668403506, 0.0004199787217658013, 0.0004898631596006453, 0.000532814534381032, 0.0003866057959385216, 0.0007682186551392078, 0.0008946165908128023], [0.11945034563541412, 0.1424870789051056, 0.05341934785246849, 0.13542789220809937, 0.08156611025333405, 0.046619489789009094, 0.1136908084154129, 0.3018627166748047, 0.00031509847030974925, 0.0005572317750193179, 0.0004095679323654622, 0.0006457698182202876, 0.0003789298643823713, 0.000280282722087577, 0.00043254951015114784, 0.0003371487255208194, 0.0007222243002615869, 0.001397443818859756], [0.0001013238652376458, 0.00028916061273775995, 0.00023531782790087163, 0.0006783176795579493, 0.0005219492595642805, 0.00044896570034325123, 0.0002864368143491447, 0.00011966643069172278, 0.1289195418357849, 0.09859518706798553, 0.10640739649534225, 0.1495659351348877, 0.06085057556629181, 0.0639079138636589, 0.09707357734441757, 0.14183445274829865, 0.08797048777341843, 0.062193792313337326], [6.038322317181155e-05, 0.000444968871306628, 0.00027373895864002407, 0.0009505120106041431, 0.00048341305227950215, 0.00027077257982455194, 0.0005076935049146414, 0.0003857035480905324, 0.04629660025238991, 0.17760241031646729, 0.09650543332099915, 0.0915464535355568, 0.08332888036966324, 0.03245587274432182, 0.0810011550784111, 0.07445527613162994, 0.15103238821029663, 0.16239838302135468], [0.00011807872942881659, 0.00016559980576857924, 0.0003231587470509112, 0.001325486577115953, 0.0004167377483099699, 0.00025740169803611934, 0.0003097614098805934, 0.000449509039754048, 0.09572259336709976, 0.12464798986911774, 0.18659977614879608, 0.10366477072238922, 0.07555864006280899, 0.02275743894279003, 0.06825381517410278, 0.08647406101226807, 0.0750407725572586, 0.15791435539722443], [7.31126347091049e-05, 0.00040846012416295707, 0.0005582240410149097, 0.0008965814486145973, 0.0005822610692121089, 0.0004967350978404284, 0.0004397992743179202, 0.0004691999638453126, 0.08116444200277328, 0.15216758847236633, 0.08746707439422607, 0.10952652990818024, 0.09274372458457947, 0.07718652486801147, 0.07650257647037506, 0.083717480301857, 0.09999917447566986, 0.13560068607330322], [0.00016846568905748427, 0.00026553921634331346, 0.0005839367513544858, 0.0014425921253859997, 0.0006236120825633407, 0.0006667371490038931, 0.0004276481340639293, 0.0004199615796096623, 0.06518357992172241, 0.10698236525058746, 0.09798461943864822, 0.12240567058324814, 0.08249156177043915, 0.11817311495542526, 0.05152129381895065, 0.16440562903881073, 0.07391060143709183, 0.1123429536819458], [0.0005688484525308013, 0.0006461699958890676, 0.0019388465443626046, 0.00181498471647501, 0.0009647578117437661, 0.0025343578308820724, 0.0008609418873675168, 0.0007190324831753969, 0.08886639028787613, 0.07530073076486588, 0.08395237475633621, 0.06265441328287125, 0.15155768394470215, 0.12304624915122986, 0.02724629081785679, 0.21040281653404236, 0.06505189090967178, 0.10187315940856934], [6.735686474712566e-05, 0.0003264270781073719, 0.00042683351784944534, 0.0007302511367015541, 0.0003635831526480615, 0.0004266735923010856, 0.00048547357437200844, 0.0003352380299475044, 0.09031558781862259, 0.13053448498249054, 0.06933029741048813, 0.09310365468263626, 0.08760722726583481, 0.08034700155258179, 0.08227086812257767, 0.09945027530193329, 0.12915639579296112, 0.13472241163253784], [0.00031151180155575275, 0.0004667744506150484, 0.0005886050639674067, 0.0013692037900909781, 0.0005877367802895606, 0.0009267028653994203, 0.00046864827163517475, 0.0004041166394017637, 0.1397026777267456, 0.08652103692293167, 0.08314225822687149, 0.08842169493436813, 0.13995778560638428, 0.10805035382509232, 0.031117668375372887, 0.15370908379554749, 0.07116290181875229, 0.09309123456478119], [3.0295765100163408e-05, 0.0002678720629774034, 0.00044126599095761776, 0.0003755456709768623, 0.0003318021190352738, 0.00022655700740870088, 0.0005443490808829665, 0.0002996535040438175, 0.05375015735626221, 0.1431889533996582, 0.05576802417635918, 0.09939731657505035, 0.07130925357341766, 0.07818295806646347, 0.12436211109161377, 0.07282207161188126, 0.17083825170993805, 0.1278635561466217], [9.504812624072656e-06, 0.0001023414297378622, 6.876343104522675e-05, 0.00017474817286711186, 0.00014040239329915494, 7.910430576885119e-05, 0.00013459828915074468, 6.705905980197713e-05, 0.07052110880613327, 0.12836211919784546, 0.04534666985273361, 0.12361852824687958, 0.06709213554859161, 0.040042392909526825, 0.1038014218211174, 0.06631845980882645, 0.15495723485946655, 0.19916343688964844]], [[0.9700195789337158, 0.0008580813300795853, 0.0018717498751357198, 0.0005763974040746689, 0.0019344539614394307, 0.0038262850139290094, 0.00496675306931138, 0.000580561172682792, 0.0006840327405370772, 0.00034870131639763713, 0.0004513027670327574, 0.0004728724015876651, 0.003648793790489435, 0.0023270267993211746, 0.0006285731797106564, 0.0009660926298238337, 0.005196403246372938, 0.0006424961029551923], [0.014082410372793674, 0.04471450299024582, 0.019897449761629105, 0.13674600422382355, 0.11137937009334564, 0.06663018465042114, 0.24565841257572174, 0.2160404473543167, 0.013448279350996017, 0.021139677613973618, 0.036930374801158905, 0.014332127757370472, 0.004566739313304424, 0.003945161588490009, 0.007395577151328325, 0.004603146575391293, 0.026970824226737022, 0.011519329622387886], [0.08107641339302063, 0.16586150228977203, 0.03185684233903885, 0.0617898553609848, 0.10635948926210403, 0.11356557160615921, 0.016176920384168625, 0.16409049928188324, 0.049981459975242615, 0.022641241550445557, 0.015365936793386936, 0.020484140142798424, 0.013649770990014076, 0.03660242632031441, 0.02715352177619934, 0.0484282560646534, 0.0033894095104187727, 0.021526779979467392], [0.01575041003525257, 0.023165082558989525, 0.02394014224410057, 0.03906656429171562, 0.3620627522468567, 0.09344363957643509, 0.006191354710608721, 0.15845416486263275, 0.07683122158050537, 0.032627563923597336, 0.07007519900798798, 0.024022281169891357, 0.017537960782647133, 0.013864106498658657, 0.008141647092998028, 0.008738416247069836, 0.0015658519696444273, 0.024521641433238983], [0.08782869577407837, 0.04224591702222824, 0.05310908332467079, 0.03490394726395607, 0.07095352560281754, 0.39416542649269104, 0.011878740973770618, 0.09251099824905396, 0.07057419419288635, 0.008244904689490795, 0.027818938717246056, 0.036368586122989655, 0.015516509301960468, 0.007248556707054377, 0.00991786364465952, 0.02301962487399578, 0.0017447168938815594, 0.011949840933084488], [0.10432018339633942, 0.012695876881480217, 0.25966209173202515, 0.011961317621171474, 0.044086240231990814, 0.37835192680358887, 0.0027367668226361275, 0.03640657290816307, 0.06225281581282616, 0.002380517777055502, 0.008666256442666054, 0.0051878029480576515, 0.011242620646953583, 0.0365690179169178, 0.002193136140704155, 0.016632666811347008, 0.0004267009790055454, 0.004227424971759319], [0.010915194638073444, 0.04541107639670372, 0.02035568654537201, 0.028546467423439026, 0.04864875227212906, 0.036745160818099976, 0.6385228633880615, 0.043517839163541794, 0.005577698349952698, 0.0027266121469438076, 0.006282569374889135, 0.0054903654381632805, 0.00286827958188951, 0.003665380412712693, 0.007439556065946817, 0.004723019432276487, 0.0856052041053772, 0.002958339639008045], [0.2072114795446396, 0.02409360557794571, 0.015024477615952492, 0.01154197845607996, 0.018438667058944702, 0.024679556488990784, 0.5382848978042603, 0.02129044197499752, 0.0032009773422032595, 0.001751400064677, 0.003763665445148945, 0.0029827472753822803, 0.004300319589674473, 0.003045346587896347, 0.004017872270196676, 0.0028953300788998604, 0.11050541698932648, 0.002971804002299905], [0.039051689207553864, 0.004050456918776035, 0.013507927767932415, 0.00754530681297183, 0.012497014366090298, 0.03864700719714165, 0.0037188008427619934, 0.036576900631189346, 0.1772432178258896, 0.04483308270573616, 0.14466972649097443, 0.10184326767921448, 0.04846819490194321, 0.03264860063791275, 0.012519769370555878, 0.04624636843800545, 0.02055077627301216, 0.21538189053535461], [0.004100124817341566, 0.004648197442293167, 0.005038353148847818, 0.004584820009768009, 0.01256033219397068, 0.015357878990471363, 0.0010853010462597013, 0.021273724734783173, 0.1981150060892105, 0.18399189412593842, 0.0983312800526619, 0.06803997606039047, 0.07420932501554489, 0.06701964884996414, 0.03687701001763344, 0.0808037668466568, 0.006378346122801304, 0.11758504807949066], [0.0038365423679351807, 0.0011235697893425822, 0.005885755177587271, 0.006276119966059923, 0.01582239754498005, 0.04175123572349548, 0.001750968862324953, 0.041075199842453, 0.19300687313079834, 0.02269231155514717, 0.11760114133358002, 0.07372918725013733, 0.15277239680290222, 0.05504449084401131, 0.01062753051519394, 0.09328539669513702, 0.008178428746759892, 0.15554054081439972], [0.040345482528209686, 0.00453902268782258, 0.0065196543000638485, 0.004961544647812843, 0.02765006199479103, 0.03026602230966091, 0.00144700868986547, 0.03224075958132744, 0.33219048380851746, 0.031686168164014816, 0.13341854512691498, 0.05491134896874428, 0.04049593210220337, 0.03660311549901962, 0.027200935408473015, 0.05688025429844856, 0.006422737147659063, 0.13222092390060425], [0.0015983397606760263, 0.003079028567299247, 0.010411258786916733, 0.004760094918310642, 0.020164314657449722, 0.05041273683309555, 0.0010519330389797688, 0.017626669257879257, 0.2591415345668793, 0.1309189796447754, 0.06823884695768356, 0.09946803003549576, 0.029881587252020836, 0.1398739218711853, 0.0157022662460804, 0.05551992356777191, 0.0056579383090138435, 0.0864926129579544], [0.007770071737468243, 0.0024963817559182644, 0.030162755399942398, 0.007601235527545214, 0.007781951688230038, 0.024034908041357994, 0.0010557243367657065, 0.03623001277446747, 0.050789497792720795, 0.016289634630084038, 0.06822910904884338, 0.04767555370926857, 0.06359893828630447, 0.11252323538064957, 0.02847335673868656, 0.3198727071285248, 0.005739693529903889, 0.16967521607875824], [0.011186253279447556, 0.0034574673045426607, 0.004706826061010361, 0.00671941926702857, 0.016256608068943024, 0.025074047967791557, 0.005026874598115683, 0.03005567006766796, 0.09346402436494827, 0.04715467244386673, 0.09643147140741348, 0.06164153292775154, 0.12374012172222137, 0.10773654282093048, 0.020362766459584236, 0.14442813396453857, 0.02796546183526516, 0.17459213733673096], [0.035988133400678635, 0.0015623937360942364, 0.03607271984219551, 0.004737006034702063, 0.004262098111212254, 0.025015149265527725, 0.0004100348160136491, 0.018605493009090424, 0.1043463870882988, 0.016332201659679413, 0.055341508239507675, 0.0467631071805954, 0.05469796061515808, 0.26063016057014465, 0.02642122656106949, 0.15357805788516998, 0.0026773568242788315, 0.15255898237228394], [0.007563912309706211, 0.008077738806605339, 0.004432371351867914, 0.004782208241522312, 0.005953340325504541, 0.006748301908373833, 0.09467584639787674, 0.008153886534273624, 0.017574114724993706, 0.012444072403013706, 0.01969100907444954, 0.03166961297392845, 0.013924975879490376, 0.020851843059062958, 0.05681563541293144, 0.0331609807908535, 0.6025007367134094, 0.050979528576135635], [0.06372887641191483, 0.002403017831966281, 0.0022671339102089405, 0.0014673881232738495, 0.00204047211445868, 0.0025895668659359217, 0.044907957315444946, 0.0029529687017202377, 0.009100374765694141, 0.007585367187857628, 0.009074993431568146, 0.014472837559878826, 0.01811959221959114, 0.015198005363345146, 0.025973651558160782, 0.018637806177139282, 0.7147985100746155, 0.04468146711587906]], [[0.0413610078394413, 0.025531895458698273, 0.062449272722005844, 0.025360222905874252, 0.03267756104469299, 0.07439731061458588, 0.013154994696378708, 0.024567460641264915, 0.06764977425336838, 0.07143530994653702, 0.08524603396654129, 0.059026408940553665, 0.09672833979129791, 0.0782838985323906, 0.028088735416531563, 0.1105021983385086, 0.03132956847548485, 0.07221008837223053], [0.01575101725757122, 0.036276526749134064, 0.03444676101207733, 0.17455679178237915, 0.11775939166545868, 0.10098882764577866, 0.034606438130140305, 0.017568601295351982, 0.12117918580770493, 0.04697458818554878, 0.13243472576141357, 0.04314876347780228, 0.04218641668558121, 0.013344863429665565, 0.009755661711096764, 0.024537239223718643, 0.022951677441596985, 0.011532636359333992], [0.07451312988996506, 0.06196296960115433, 0.011545302346348763, 0.0978580191731453, 0.054515302181243896, 0.0763859674334526, 0.0582580603659153, 0.057643353939056396, 0.1060202419757843, 0.03282865881919861, 0.0570787712931633, 0.061781786382198334, 0.04603040963411331, 0.03795506805181503, 0.030958419665694237, 0.04579560458660126, 0.046417709439992905, 0.04245126619935036], [0.01791628822684288, 0.0583978034555912, 0.01696816273033619, 0.13682200014591217, 0.12771914899349213, 0.15517978370189667, 0.038631752133369446, 0.022055121138691902, 0.1326683759689331, 0.02965496852993965, 0.15495194494724274, 0.02165074460208416, 0.03440706059336662, 0.004851130302995443, 0.007313973736017942, 0.012421689927577972, 0.018615154549479485, 0.009774911217391491], [0.10039128363132477, 0.018085593357682228, 0.0323098748922348, 0.08236243575811386, 0.08006900548934937, 0.08787941187620163, 0.02038400061428547, 0.056845229119062424, 0.14092424511909485, 0.047177329659461975, 0.06744635850191116, 0.07262492924928665, 0.09101251512765884, 0.013375678099691868, 0.008291631937026978, 0.031680118292570114, 0.013479556888341904, 0.03566081449389458], [0.08195368945598602, 0.05853970721364021, 0.055066436529159546, 0.09230166673660278, 0.0885612890124321, 0.038306448608636856, 0.08085010945796967, 0.04910343885421753, 0.09539035707712173, 0.03561991825699806, 0.03757048398256302, 0.04367513954639435, 0.0721423551440239, 0.04047659412026405, 0.017529655247926712, 0.05211023986339569, 0.03932361677289009, 0.021478863433003426], [0.006276240106672049, 0.04200449958443642, 0.055755265057086945, 0.12592002749443054, 0.10580414533615112, 0.1849309355020523, 0.057520076632499695, 0.012714928947389126, 0.11392199993133545, 0.05778875574469566, 0.07802053540945053, 0.029583774507045746, 0.05042928084731102, 0.008594379760324955, 0.008583232760429382, 0.0216256994754076, 0.03279300779104233, 0.0077332002110779285], [0.004745782818645239, 0.11280611902475357, 0.07209917157888412, 0.06276223063468933, 0.07810988277196884, 0.042505353689193726, 0.07365302741527557, 0.0047002830542624, 0.05606960505247116, 0.06319425255060196, 0.04768901318311691, 0.06071725860238075, 0.07462245225906372, 0.04874175414443016, 0.04996512457728386, 0.05846385285258293, 0.08339830487966537, 0.0057564894668757915], [0.00517326919361949, 0.026709996163845062, 0.02406643144786358, 0.024504972621798515, 0.03265402466058731, 0.030748656019568443, 0.0293438583612442, 0.00359847629442811, 0.08914151042699814, 0.11138124763965607, 0.15067262947559357, 0.07169701159000397, 0.22373707592487335, 0.03445296734571457, 0.017874984070658684, 0.05134575068950653, 0.0642043948173523, 0.008692695759236813], [0.013818337582051754, 0.03957962244749069, 0.02994050271809101, 0.10534489899873734, 0.045682769268751144, 0.0609433650970459, 0.029782366007566452, 0.00626379856839776, 0.19185182452201843, 0.05542473867535591, 0.10272711515426636, 0.049574028700590134, 0.13790710270404816, 0.021540122106671333, 0.02639029547572136, 0.03536932170391083, 0.03908851370215416, 0.008771317079663277], [0.012441251426935196, 0.016378918662667274, 0.029129434376955032, 0.1923549771308899, 0.04493137076497078, 0.06476972252130508, 0.031049657613039017, 0.006916604936122894, 0.14469726383686066, 0.08163541555404663, 0.08986149728298187, 0.03768935427069664, 0.10839178413152695, 0.017887214198708534, 0.018150238320231438, 0.04551055282354355, 0.0453549362719059, 0.012849804013967514], [0.040239520370960236, 0.027679041028022766, 0.03432304784655571, 0.053185246884822845, 0.055830083787441254, 0.036153968423604965, 0.024741435423493385, 0.01963355951011181, 0.14631836116313934, 0.07439243793487549, 0.0912385806441307, 0.07750841975212097, 0.1922954022884369, 0.014884495176374912, 0.02143867500126362, 0.03415527939796448, 0.030748119577765465, 0.0252342838793993], [0.03798453509807587, 0.04174983501434326, 0.026269808411598206, 0.04477560520172119, 0.04458640143275261, 0.06862956285476685, 0.03149638697504997, 0.014621984213590622, 0.17684955894947052, 0.0595056377351284, 0.14831329882144928, 0.068512924015522, 0.04170726612210274, 0.04166237264871597, 0.023706618696451187, 0.055240340530872345, 0.048775818198919296, 0.025612058117985725], [0.07746365666389465, 0.02680508978664875, 0.029405364766716957, 0.03883177414536476, 0.019532714039087296, 0.05164662376046181, 0.043760113418102264, 0.07239699363708496, 0.07875723391771317, 0.06189458817243576, 0.17272977530956268, 0.0512448251247406, 0.09479855746030807, 0.0033262018114328384, 0.022180713713169098, 0.006024343892931938, 0.05949903652071953, 0.08970228582620621], [0.007860759273171425, 0.09109137952327728, 0.055738188326358795, 0.0725141242146492, 0.049418266862630844, 0.050610169768333435, 0.07914120703935623, 0.011732308194041252, 0.04964851960539818, 0.1059819832444191, 0.07788033038377762, 0.06621506065130234, 0.06746767461299896, 0.018787577748298645, 0.0372437983751297, 0.04079822823405266, 0.10123883187770844, 0.016631539911031723], [0.07959016412496567, 0.03018193133175373, 0.015238930471241474, 0.027294479310512543, 0.02104850672185421, 0.030272377654910088, 0.04153560847043991, 0.039580706506967545, 0.10034379363059998, 0.05159665644168854, 0.19884945452213287, 0.056930333375930786, 0.10392650216817856, 0.01271920558065176, 0.02524336613714695, 0.007587473839521408, 0.08257025480270386, 0.0754903256893158], [0.0028891214169561863, 0.0327761135995388, 0.04659048840403557, 0.05537763983011246, 0.05800141021609306, 0.11929281800985336, 0.051823969930410385, 0.005101901013404131, 0.10181873291730881, 0.10395711660385132, 0.14020350575447083, 0.04496835172176361, 0.08868369460105896, 0.013299727812409401, 0.012166488915681839, 0.03365498036146164, 0.0795983299612999, 0.00979564432054758], [0.0020616240799427032, 0.06975288689136505, 0.044937122613191605, 0.01921006478369236, 0.03732230141758919, 0.02202979288995266, 0.048429541289806366, 0.0013707018224522471, 0.039151761680841446, 0.08381126075983047, 0.06353797763586044, 0.07171926647424698, 0.10917554050683975, 0.06582466512918472, 0.06698926538228989, 0.0826963484287262, 0.1658305823802948, 0.006149301305413246]], [[0.626691997051239, 0.007094570901244879, 0.008814625442028046, 0.011874930933117867, 0.009022243320941925, 0.012211672961711884, 0.010055017657577991, 0.07351943105459213, 0.005482285749167204, 0.014595098793506622, 0.014182939194142818, 0.01591179519891739, 0.013364518992602825, 0.02405787818133831, 0.028487607836723328, 0.011688422411680222, 0.013304296880960464, 0.09964060038328171], [0.4011143445968628, 0.04938412085175514, 0.007712743245065212, 0.017403975129127502, 0.022787947207689285, 0.024898091331124306, 0.022284794598817825, 0.03725568577647209, 0.05762548744678497, 0.04255930334329605, 0.02558010071516037, 0.031801506876945496, 0.05449942871928215, 0.024940934032201767, 0.04533080756664276, 0.04631032422184944, 0.04571962729096413, 0.042790740728378296], [0.12879210710525513, 0.031200379133224487, 0.602861225605011, 0.024426748976111412, 0.008635839447379112, 0.021566592156887054, 0.012300312519073486, 0.014290913939476013, 0.009392378851771355, 0.008614222519099712, 0.010770623572170734, 0.011104627512395382, 0.03798162192106247, 0.0171244777739048, 0.006797113921493292, 0.025889592245221138, 0.010701660066843033, 0.017549486830830574], [0.4926165044307709, 0.036385443061590195, 0.012784443795681, 0.02696184627711773, 0.027238549664616585, 0.024793490767478943, 0.012910386547446251, 0.02890336513519287, 0.029572688043117523, 0.05156278237700462, 0.03039422631263733, 0.03298771008849144, 0.0611347034573555, 0.018208526074886322, 0.02442181296646595, 0.02562415972352028, 0.024463757872581482, 0.03903556615114212], [0.569960355758667, 0.032800909131765366, 0.009933684021234512, 0.016062481328845024, 0.0707741528749466, 0.0727560818195343, 0.01116419117897749, 0.00946906115859747, 0.01883256435394287, 0.01870182529091835, 0.02237926423549652, 0.028880849480628967, 0.0337078832089901, 0.006914185825735331, 0.016863130033016205, 0.011686818674206734, 0.01942111924290657, 0.029691409319639206], [0.386417031288147, 0.019122527912259102, 0.007321439683437347, 0.009360160678625107, 0.0248445812612772, 0.47133201360702515, 0.0027667791582643986, 0.0071074217557907104, 0.01003686897456646, 0.0035534296184778214, 0.009040233679115772, 0.01880728080868721, 0.0023761356715112925, 0.002644240390509367, 0.0028343761805444956, 0.013219444081187248, 0.002830490469932556, 0.006385589949786663], [0.6571491956710815, 0.04621743783354759, 0.007068530656397343, 0.024028355255723, 0.02637450583279133, 0.019910506904125214, 0.005551463458687067, 0.01379624754190445, 0.025569437071681023, 0.011979096569120884, 0.015370111912488937, 0.021151164546608925, 0.024795467033982277, 0.010765088722109795, 0.02362166903913021, 0.02141377329826355, 0.018260294571518898, 0.026977701112627983], [0.49870565533638, 0.019166674464941025, 0.016736336052417755, 0.018789926543831825, 0.02625402621924877, 0.01340413000434637, 0.005606402643024921, 0.02329111471772194, 0.009915006347000599, 0.011692887172102928, 0.014074670150876045, 0.020669227465987206, 0.009902887977659702, 0.009850664995610714, 0.007343071512877941, 0.010096685960888863, 0.01476783026009798, 0.2697327435016632], [0.16462591290473938, 0.0755755752325058, 0.00946720875799656, 0.024627896025776863, 0.03631897643208504, 0.05255898833274841, 0.005654236301779747, 0.007831559516489506, 0.3318311870098114, 0.044607214629650116, 0.034582894295454025, 0.0507693737745285, 0.04366261884570122, 0.008520410396158695, 0.03371957316994667, 0.02209613285958767, 0.02452777326107025, 0.02902243472635746], [0.4382213354110718, 0.04777621850371361, 0.01211890671402216, 0.08799067884683609, 0.06487710773944855, 0.02496349811553955, 0.016134385019540787, 0.0330495685338974, 0.03678324818611145, 0.03551756590604782, 0.024824708700180054, 0.039619553834199905, 0.032160572707653046, 0.009056365117430687, 0.011691717430949211, 0.016668953001499176, 0.018190452829003334, 0.050355225801467896], [0.22347809374332428, 0.046696677803993225, 0.01656576804816723, 0.10020662099123001, 0.054089829325675964, 0.039550889283418655, 0.009022096171975136, 0.013306460343301296, 0.09609034657478333, 0.028796469792723656, 0.1937621831893921, 0.0490279458463192, 0.0471244715154171, 0.007331513334065676, 0.013756784610450268, 0.031903188675642014, 0.012861213646829128, 0.01642940379679203], [0.5164746046066284, 0.033424120396375656, 0.015361773781478405, 0.034107841551303864, 0.06299843639135361, 0.06597594171762466, 0.004807245451956987, 0.008417180739343166, 0.05817459896206856, 0.028988465666770935, 0.035340335220098495, 0.03550096973776817, 0.031215909868478775, 0.004725694190710783, 0.019603552296757698, 0.010022909380495548, 0.006293745711445808, 0.0285667534917593], [0.36265993118286133, 0.04065429046750069, 0.03744257614016533, 0.09649127721786499, 0.046376295387744904, 0.02403990551829338, 0.0058161295019090176, 0.010134628042578697, 0.020299792289733887, 0.019584722816944122, 0.035856883972883224, 0.01816142164170742, 0.2414509356021881, 0.005214163567870855, 0.005399990361183882, 0.014627182856202126, 0.0036424340214580297, 0.012147362343966961], [0.2718309164047241, 0.023532340303063393, 0.040667712688446045, 0.03553299605846405, 0.01932651922106743, 0.016110682860016823, 0.011838207952678204, 0.027794180437922478, 0.026120172813534737, 0.020202718675136566, 0.007768385577946901, 0.01924576610326767, 0.03674515709280968, 0.28238123655319214, 0.013593178242444992, 0.12578177452087402, 0.009884912520647049, 0.011643222533166409], [0.5673304200172424, 0.03212139010429382, 0.009282941929996014, 0.038539376109838486, 0.03952493891119957, 0.03531679883599281, 0.014301198534667492, 0.023739730939269066, 0.058015983551740646, 0.0298509132117033, 0.041222672909498215, 0.029949961230158806, 0.01675744540989399, 0.013093034736812115, 0.019559664651751518, 0.010119151324033737, 0.007735345978289843, 0.01353912241756916], [0.39300546050071716, 0.053786732256412506, 0.032851509749889374, 0.0351395420730114, 0.02133840322494507, 0.02243722788989544, 0.00999931339174509, 0.011032560840249062, 0.04493110999464989, 0.02889498695731163, 0.014341308735311031, 0.020029133185744286, 0.05877608805894852, 0.060947172343730927, 0.0073196785524487495, 0.17418579757213593, 0.006280376575887203, 0.004703551530838013], [0.5929979681968689, 0.03599236160516739, 0.01413427572697401, 0.03694946691393852, 0.02590288780629635, 0.028486378490924835, 0.019829876720905304, 0.029089126735925674, 0.041569411754608154, 0.028920738026499748, 0.04884585738182068, 0.03373948857188225, 0.009773937053978443, 0.007020647171884775, 0.0165433157235384, 0.007258692290633917, 0.005356802139431238, 0.01758875511586666], [0.4004589021205902, 0.011804474517703056, 0.023149192333221436, 0.031069792807102203, 0.032993026077747345, 0.011041986756026745, 0.009008544497191906, 0.16368989646434784, 0.03656584769487381, 0.050224609673023224, 0.02892657183110714, 0.08310049027204514, 0.008461837656795979, 0.00845558661967516, 0.008050374686717987, 0.00694941496476531, 0.006081871222704649, 0.07996752113103867]], [[1.8579213474367862e-06, 5.735681770602241e-05, 1.5148186776059447e-06, 0.00011825547699118033, 3.5967798339697765e-06, 8.169862439899589e-07, 4.7088730070754536e-07, 0.3042333722114563, 6.052367098163813e-06, 6.727682193741202e-05, 0.0003705144044943154, 0.0007548570865765214, 2.3413345843437128e-05, 3.469564717306639e-06, 0.000467312871478498, 4.320806056057336e-06, 2.135010618076194e-06, 0.6938832998275757], [0.10208289325237274, 0.01062308344990015, 0.022545363754034042, 0.01716690883040428, 0.02242928184568882, 0.02296779863536358, 0.5865136384963989, 0.017687566578388214, 0.004040382336825132, 0.0040663122199475765, 0.001347723533399403, 0.001983159687370062, 0.00487461918964982, 0.003449241165071726, 0.012785300612449646, 0.0037014875560998917, 0.157398983836174, 0.00433622719720006], [0.028868308290839195, 0.08157433569431305, 0.14079506695270538, 0.03678205981850624, 0.1164909303188324, 0.1366155594587326, 0.01906345598399639, 0.009694562293589115, 0.09434329718351364, 0.018836386501789093, 0.03894594684243202, 0.013160822913050652, 0.029275963082909584, 0.13966530561447144, 0.005629044491797686, 0.0815560445189476, 0.00595343392342329, 0.0027494970709085464], [0.0751228928565979, 0.06518737971782684, 0.0434783473610878, 0.03290703520178795, 0.06804337352514267, 0.029278157278895378, 0.3861576318740845, 0.012211685068905354, 0.013349760323762894, 0.018963545560836792, 0.011314792558550835, 0.008984883315861225, 0.022329457104206085, 0.003875930095091462, 0.08288871496915817, 0.00813248474150896, 0.11402928084135056, 0.0037447120994329453], [0.05412215739488602, 0.1623997837305069, 0.10542279481887817, 0.1651822030544281, 0.0650765672326088, 0.07229800522327423, 0.15147630870342255, 0.01621682569384575, 0.03124251589179039, 0.029474884271621704, 0.022937828674912453, 0.019213657826185226, 0.024814235046505928, 0.006434907205402851, 0.029781416058540344, 0.013993286527693272, 0.027306945994496346, 0.002605651505291462], [0.02512863464653492, 0.07028137147426605, 0.11416228115558624, 0.04385880008339882, 0.30068856477737427, 0.13229194283485413, 0.017265522852540016, 0.012183468788862228, 0.03379829600453377, 0.02552540972828865, 0.04019201174378395, 0.036740075796842575, 0.0276871919631958, 0.03565702214837074, 0.01252366416156292, 0.06580659002065659, 0.00366183347068727, 0.002547316253185272], [0.01997203193604946, 0.01423813309520483, 0.004819045774638653, 0.014926551841199398, 0.007852155715227127, 0.0035060441587120295, 0.6613098978996277, 0.0009778629755601287, 0.0023532104678452015, 0.0016064420342445374, 0.0006048704963177443, 0.0010523811215534806, 0.002412213012576103, 0.00026497954968363047, 0.00951748713850975, 0.0008905573049560189, 0.25333306193351746, 0.000363068567821756], [0.07686124742031097, 0.0643714889883995, 0.011197881773114204, 0.01937057636678219, 0.011552153155207634, 0.00500888004899025, 0.02066519856452942, 0.016626670956611633, 0.07161831110715866, 0.041465114802122116, 0.11707054823637009, 0.09235364198684692, 0.023525971919298172, 0.003377605462446809, 0.33975014090538025, 0.010452612303197384, 0.04001981019973755, 0.034712180495262146], [0.06448223441839218, 0.013551239855587482, 0.01291366945952177, 0.012920685112476349, 0.018161024898290634, 0.00969475694000721, 0.004108731634914875, 0.008366717956960201, 0.0521199032664299, 0.12240058928728104, 0.09580084681510925, 0.10807788372039795, 0.13888812065124512, 0.028279727324843407, 0.14012083411216736, 0.08335097879171371, 0.02352099120616913, 0.06324108690023422], [0.05564403533935547, 0.02310365065932274, 0.010533842258155346, 0.010543952696025372, 0.011750133708119392, 0.0073230694979429245, 0.029747072607278824, 0.0035028669517487288, 0.13593922555446625, 0.04186180233955383, 0.07209175825119019, 0.04712926596403122, 0.08755440264940262, 0.010994468815624714, 0.20812956988811493, 0.020993540063500404, 0.19368790090084076, 0.029469480738043785], [0.05285872519016266, 0.019097425043582916, 0.009265556000173092, 0.009859723970293999, 0.019202088937163353, 0.014681718312203884, 0.031832005828619, 0.0027121573220938444, 0.16908171772956848, 0.058461744338274, 0.0436127670109272, 0.06487973034381866, 0.08803528547286987, 0.028024962171912193, 0.17594459652900696, 0.0417456328868866, 0.15182089805603027, 0.01888333633542061], [0.025324273854494095, 0.030811257660388947, 0.011354850605130196, 0.014266288839280605, 0.018213516101241112, 0.0070184869691729546, 0.010646088980138302, 0.005483886692672968, 0.09367024898529053, 0.11970622092485428, 0.11724399030208588, 0.07711224257946014, 0.10327490419149399, 0.010614720173180103, 0.21074871718883514, 0.03732709959149361, 0.06126285344362259, 0.04592038318514824], [0.07605313509702682, 0.014046091586351395, 0.02902417816221714, 0.006834162399172783, 0.010309002362191677, 0.01627711020410061, 0.0041573080234229565, 0.0080803744494915, 0.16446857154369354, 0.07745913416147232, 0.07117746025323868, 0.07824172079563141, 0.0911903977394104, 0.07274997979402542, 0.09708142280578613, 0.09421730041503906, 0.023870287463068962, 0.0647624135017395], [0.010725489817559719, 0.004000409040600061, 0.05549780651926994, 0.002276934217661619, 0.009314148686826229, 0.010380291379988194, 0.001787447021342814, 0.00034088167012669146, 0.05781888961791992, 0.029544344171881676, 0.03841885179281235, 0.020847659558057785, 0.04282527416944504, 0.16358651220798492, 0.007418642286211252, 0.5327181220054626, 0.009830372408032417, 0.002667843597009778], [0.03543946519494057, 0.009739413857460022, 0.004372351802885532, 0.005699541885405779, 0.00445307744666934, 0.0030661846976727247, 0.12302592396736145, 0.0016357554122805595, 0.02622089721262455, 0.018190033733844757, 0.01108942274004221, 0.017258035019040108, 0.019731100648641586, 0.004536594729870558, 0.05924662947654724, 0.008088314905762672, 0.6370288729667664, 0.011178386397659779], [0.02379184029996395, 0.01829889602959156, 0.04487035423517227, 0.00803100410848856, 0.018254924565553665, 0.017204642295837402, 0.005835706368088722, 0.0007973335450515151, 0.1017894297838211, 0.05175671726465225, 0.06136823073029518, 0.037107888609170914, 0.08295943588018417, 0.29246971011161804, 0.025017131119966507, 0.16939643025398254, 0.03415670245885849, 0.0068936655297875404], [0.01548201497644186, 0.002337600104510784, 0.0005942133138887584, 0.0012186106760054827, 0.0007371755200438201, 0.0003974192950408906, 0.09538595378398895, 0.0001287036866415292, 0.0064736963249742985, 0.0038609064649790525, 0.0014894066844135523, 0.002719264477491379, 0.005180261097848415, 0.0005472982884384692, 0.020594166591763496, 0.0016120614018291235, 0.8394621014595032, 0.001779220881871879], [0.020524129271507263, 0.004227800294756889, 0.0007053783629089594, 0.0007953971507959068, 0.0005802555242553353, 0.0002830219455063343, 0.001189615111798048, 0.0009770650649443269, 0.10915017873048782, 0.05464356020092964, 0.14406876266002655, 0.13867422938346863, 0.027881698682904243, 0.004344220273196697, 0.3203034996986389, 0.012855582870543003, 0.06852754205465317, 0.09026814997196198]]], [[[0.6474828124046326, 0.010252757929265499, 0.010178418830037117, 0.00864148885011673, 0.006147649139165878, 0.014786054380238056, 0.027563758194446564, 0.044757720082998276, 0.008288118988275528, 0.00554198632016778, 0.015714827924966812, 0.010427691042423248, 0.015033894218504429, 0.015515201725065708, 0.03585295379161835, 0.008657334372401237, 0.05014728382229805, 0.06501000374555588], [0.18369005620479584, 0.13011537492275238, 0.06506284326314926, 0.07416792958974838, 0.0724346935749054, 0.12624849379062653, 0.14371156692504883, 0.10553985834121704, 0.006539702415466309, 0.004403180908411741, 0.010488650761544704, 0.011605826206505299, 0.009052603505551815, 0.005559809971600771, 0.011486930772662163, 0.0055631715804338455, 0.015410168096423149, 0.01891910657286644], [0.28992488980293274, 0.2722894251346588, 0.02367902360856533, 0.03327065706253052, 0.04107848182320595, 0.041523393243551254, 0.10781066864728928, 0.10462142527103424, 0.003818000666797161, 0.006153301801532507, 0.0037157852202653885, 0.02701876498758793, 0.0029341490007936954, 0.004760709125548601, 0.004581275396049023, 0.0035396709572523832, 0.010412232019007206, 0.018868042156100273], [0.2672717571258545, 0.18058718740940094, 0.046196348965168, 0.05274194851517677, 0.040739864110946655, 0.055158112198114395, 0.12945586442947388, 0.12858694791793823, 0.007491415366530418, 0.003406999632716179, 0.011831569485366344, 0.014353339560329914, 0.005934044253081083, 0.0044295163825154305, 0.004114741925150156, 0.0043257432989776134, 0.015216889791190624, 0.02815772034227848], [0.2843383252620697, 0.16763268411159515, 0.014335612766444683, 0.014432841911911964, 0.05331752821803093, 0.06271678954362869, 0.11627109348773956, 0.16101884841918945, 0.011576118879020214, 0.004034738522022963, 0.008722742088139057, 0.027291348204016685, 0.0050409468822181225, 0.0014212909154593945, 0.009668808430433273, 0.0015886613400653005, 0.015758853405714035, 0.040832869708538055], [0.32866641879081726, 0.18833017349243164, 0.019935034215450287, 0.021811868995428085, 0.041250068694353104, 0.03188512101769447, 0.09991803765296936, 0.14144186675548553, 0.00824159849435091, 0.004244642332196236, 0.008789694868028164, 0.027699043974280357, 0.005614088382571936, 0.006268850993365049, 0.007015920709818602, 0.005608610808849335, 0.016579145565629005, 0.03669982776045799], [0.1643783450126648, 0.12950696051120758, 0.0582246370613575, 0.03318464756011963, 0.047170765697956085, 0.06470733880996704, 0.1411917805671692, 0.21834440529346466, 0.008326983079314232, 0.004664572887122631, 0.006456626113504171, 0.008999353274703026, 0.00654030404984951, 0.008434547111392021, 0.014381134882569313, 0.007185708731412888, 0.02181130275130272, 0.05649052932858467], [0.7279070615768433, 0.02002931758761406, 0.0034457736182957888, 0.0029258544091135263, 0.00325710023753345, 0.003823282662779093, 0.03238902986049652, 0.14278461039066315, 0.000659925164654851, 0.0004362259351182729, 0.0008649482042528689, 0.0011860530357807875, 0.0005265084328129888, 0.00023934732598718256, 0.0059570795856416225, 0.0001848208630690351, 0.007867872714996338, 0.04551515355706215], [0.11249826848506927, 0.021310966461896896, 0.005020970478653908, 0.0067983693443238735, 0.008596977218985558, 0.01628522016108036, 0.032871682196855545, 0.09661806374788284, 0.01875751093029976, 0.02757243812084198, 0.07178545743227005, 0.05225946009159088, 0.022617116570472717, 0.019844483584165573, 0.0761660784482956, 0.021563289687037468, 0.17017148435115814, 0.2192622274160385], [0.17533594369888306, 0.028580158948898315, 0.004213499370962381, 0.003938599023967981, 0.006433415692299604, 0.009244845248758793, 0.03572218865156174, 0.0919044092297554, 0.04012162610888481, 0.02051706053316593, 0.036480922251939774, 0.05590662360191345, 0.014043424278497696, 0.01652778685092926, 0.04556434974074364, 0.02062854915857315, 0.1795392781496048, 0.21529734134674072], [0.14763377606868744, 0.03695349022746086, 0.00795134250074625, 0.009286316111683846, 0.008627532050013542, 0.016487648710608482, 0.02814011462032795, 0.1022677943110466, 0.049132026731967926, 0.03271857649087906, 0.050296176224946976, 0.06057531759142876, 0.0195514764636755, 0.03150877729058266, 0.04273085296154022, 0.02305888570845127, 0.14369577169418335, 0.18938413262367249], [0.18253876268863678, 0.024494871497154236, 0.007131471298635006, 0.02212562784552574, 0.017165858298540115, 0.02783823385834694, 0.06138906627893448, 0.07686963677406311, 0.044444892555475235, 0.0123960692435503, 0.05285106599330902, 0.04616734758019447, 0.016321437433362007, 0.011254976503551006, 0.05856381729245186, 0.013683889992535114, 0.1956644505262375, 0.12909843027591705], [0.2572731673717499, 0.015449297614395618, 0.0024632110726088285, 0.006387148052453995, 0.005888462997972965, 0.006940991617739201, 0.03662765771150589, 0.07309107482433319, 0.02621709741652012, 0.02119545452296734, 0.030539097264409065, 0.05998281389474869, 0.0065743508748710155, 0.007706790696829557, 0.0597090981900692, 0.004937566351145506, 0.20675022900104523, 0.17226648330688477], [0.2124527543783188, 0.026088794693350792, 0.007162137422710657, 0.013061878271400928, 0.008637547492980957, 0.006664198823273182, 0.06015399843454361, 0.11134928464889526, 0.026532437652349472, 0.020645780488848686, 0.03718627244234085, 0.056622281670570374, 0.008271553553640842, 0.005010345485061407, 0.06355254352092743, 0.00320426095277071, 0.15887825191020966, 0.17452572286128998], [0.11791855096817017, 0.026306113228201866, 0.0065263621509075165, 0.003424118272960186, 0.010018771514296532, 0.014683008193969727, 0.04486130550503731, 0.07355248928070068, 0.04331741854548454, 0.02937295101583004, 0.022708628326654434, 0.05115220323204994, 0.02080918289721012, 0.025338834151625633, 0.12588146328926086, 0.0207551047205925, 0.2242489606142044, 0.13912466168403625], [0.24268418550491333, 0.0303967148065567, 0.00659356452524662, 0.009158601984381676, 0.008483822457492352, 0.006074897479265928, 0.056300293654203415, 0.09778812527656555, 0.025775181129574776, 0.0260299239307642, 0.039206717163324356, 0.06431053578853607, 0.008080578409135342, 0.0103721022605896, 0.07311607152223587, 0.0030605653300881386, 0.15257683396339417, 0.13999131321907043], [0.10672032833099365, 0.019189199432730675, 0.006397707853466272, 0.005648196209222078, 0.008322585374116898, 0.013992011547088623, 0.03747675195336342, 0.08078445494174957, 0.06863322108983994, 0.026227202266454697, 0.04304112493991852, 0.0469646230340004, 0.026110732927918434, 0.03464743494987488, 0.09546379745006561, 0.02878190204501152, 0.17624425888061523, 0.17535437643527985], [0.6356561183929443, 0.005271937698125839, 0.0012282922398298979, 0.0009256232879124582, 0.0010942529188469052, 0.0016358410939574242, 0.012216327711939812, 0.11656688898801804, 0.0036156419664621353, 0.0014291538391262293, 0.0030351264867931604, 0.00350047554820776, 0.0014004646800458431, 0.0008956961682997644, 0.016492044553160667, 0.0005241912440396845, 0.02801775000989437, 0.166494220495224]], [[0.6630561351776123, 0.025020325556397438, 0.014033949933946133, 0.02395348809659481, 0.008953293785452843, 0.008345423266291618, 0.04287020117044449, 0.049085307866334915, 0.016910139471292496, 0.007924696430563927, 0.006504780147224665, 0.0069214534014463425, 0.008674913085997105, 0.01284912507981062, 0.015659820288419724, 0.01194277498871088, 0.035212837159633636, 0.04208149015903473], [0.05950578674674034, 0.03453939035534859, 0.03657466173171997, 0.6516960263252258, 0.06496913731098175, 0.010465001687407494, 0.029324622824788094, 0.10392136871814728, 0.0027124248445034027, 0.00012393922952469438, 0.00015860084386076778, 0.00020765044610016048, 0.00015836792590562254, 0.00023798375332262367, 0.00041862137732096016, 0.0024042006116360426, 0.000605048902798444, 0.0019771219231188297], [0.7273316383361816, 0.0419829897582531, 0.013510560616850853, 0.045623503625392914, 0.05630287528038025, 0.03816257417201996, 0.020083563402295113, 0.04864710196852684, 0.0022893010172992945, 0.0001634613290661946, 2.25496096390998e-05, 2.9756713047390804e-05, 0.0003652051091194153, 0.00031677065999247134, 0.00013483419024851173, 0.0010882177157327533, 0.0016052306164056063, 0.002339904196560383], [0.05662348493933678, 0.041472695767879486, 0.012295186519622803, 0.032167233526706696, 0.07351663708686829, 0.4459228515625, 0.19671277701854706, 0.12690651416778564, 0.005100088194012642, 0.0018037825357168913, 0.00020365875388961285, 4.334514233050868e-05, 0.00038594604120589793, 0.0004286328621674329, 8.756076567806304e-05, 0.0007387168589048088, 0.0004251216596458107, 0.005165820010006428], [0.19332022964954376, 0.018706943839788437, 0.010136446915566921, 0.04140043631196022, 0.024471478536725044, 0.04333505406975746, 0.35290420055389404, 0.30658742785453796, 0.0015102919423952699, 0.002934860996901989, 0.0009046649211086333, 0.00032522808760404587, 5.105978198116645e-05, 0.00012406213500071317, 0.00013474513252731413, 0.00019107689149677753, 7.853937859181315e-05, 0.002883201465010643], [0.5128344893455505, 0.002458288101479411, 0.005751163233071566, 0.010871070437133312, 0.018509913235902786, 0.010169582441449165, 0.07953657954931259, 0.34826579689979553, 0.006138726603239775, 0.0023334065917879343, 0.0006153382710181177, 0.0003619916387833655, 0.0006718012737110257, 0.0002785699616651982, 0.00010770799417514354, 0.0006038927822373807, 0.00013098558702040464, 0.0003606928512454033], [0.4845642149448395, 0.002463200595229864, 0.001160499406978488, 0.007636849768459797, 0.014274240471422672, 0.013693313114345074, 0.058371808379888535, 0.34696194529533386, 0.05230565369129181, 0.011037170886993408, 0.001326810335740447, 0.0021818734239786863, 0.001835980685427785, 0.00037008593790233135, 9.519061859464273e-05, 0.000331030081724748, 0.0005687586963176727, 0.0008214067784138024], [0.9055132865905762, 0.0006609705160371959, 0.00016257182869594544, 0.00027606362709775567, 0.00034017013967968524, 0.0011959096882492304, 0.011209885589778423, 0.05135985463857651, 0.0050843642093241215, 0.01412435807287693, 0.003950981888920069, 0.0013649488100782037, 0.0015474612591788173, 0.00208728457801044, 0.0001977087085833773, 0.00010694583033910021, 0.00020677807333413512, 0.0006104050553403795], [0.06881191581487656, 0.00025216146605089307, 0.00026160545530728996, 0.0002853729238267988, 0.00011992034706054255, 0.002268880605697632, 0.00862447265535593, 0.061948712915182114, 0.011385967954993248, 0.195445254445076, 0.41103288531303406, 0.16089779138565063, 0.05375554785132408, 0.006668169051408768, 0.01384864654392004, 0.0017730897525325418, 0.0005400993395596743, 0.002079527825117111], [0.19554173946380615, 0.0001944683026522398, 0.0003709013981278986, 0.00022459799947682768, 0.00026497928774915636, 0.00033352646278217435, 0.0037126115057617426, 0.1059526577591896, 0.02681172452867031, 0.059439580887556076, 0.03939146175980568, 0.40642520785331726, 0.09712053835391998, 0.022020675241947174, 0.01862708106637001, 0.017573628574609756, 0.004510556813329458, 0.0014840676449239254], [0.046016257256269455, 8.143905870383605e-05, 0.0001196819866891019, 3.7954578147036955e-05, 0.00041920540388673544, 0.0003915477718692273, 0.00010760746954474598, 0.004278101492673159, 0.007452014368027449, 0.006093202158808708, 0.005723160225898027, 0.049823079258203506, 0.7826088070869446, 0.029586035758256912, 0.009486406110227108, 0.04243097081780434, 0.012377609498798847, 0.002966982312500477], [0.2510676383972168, 0.0012234856840223074, 0.0004647400928661227, 0.00015290602459572256, 0.0001905449607875198, 0.0016863784985616803, 0.000919499434530735, 0.004489482380449772, 0.0016853391425684094, 0.009674295783042908, 0.06671907007694244, 0.01191932987421751, 0.35366660356521606, 0.05986293405294418, 0.08559103310108185, 0.037977684289216995, 0.0528167188167572, 0.05989236384630203], [0.09110679477453232, 0.0008631725213490427, 0.00099993497133255, 0.0003331637126393616, 0.00020861095981672406, 0.0008240134920924902, 0.0005458366358652711, 0.0014496055664494634, 0.000735197332687676, 0.0013078383635729551, 0.021228764206171036, 0.04571628198027611, 0.02214621938765049, 0.21374772489070892, 0.3670935034751892, 0.1781773865222931, 0.02620067074894905, 0.02731533907353878], [0.7728646993637085, 0.000549849180970341, 0.0005317344912327826, 0.0002610092924442142, 5.897389564779587e-05, 4.571592580759898e-05, 0.0001724965259199962, 0.000589483417570591, 4.694129529525526e-05, 3.148971882183105e-05, 0.00013972312444821, 0.0009492229437455535, 0.003654209431260824, 0.013521111570298672, 0.04077615216374397, 0.11018279939889908, 0.0464496910572052, 0.00917466077953577], [0.11538597196340561, 0.000623778032604605, 0.00023962340492289513, 0.00016913714352995157, 0.00028047800878994167, 0.00012350964243523777, 3.739931344171055e-05, 0.00016187719302251935, 0.000130483036627993, 5.558893462875858e-05, 0.00018260732758790255, 0.00016332833911292255, 0.042468007653951645, 0.03008529730141163, 0.058127179741859436, 0.2919025421142578, 0.3881177604198456, 0.07174541801214218], [0.4764437973499298, 0.0029600535053759813, 0.0011860064696520567, 0.0006555304862558842, 0.0004961628583259881, 0.0008665112545713782, 0.0005965372547507286, 0.00032353171263821423, 9.579904872225598e-05, 5.943116048001684e-05, 6.924246554262936e-05, 8.591229561716318e-05, 0.001231478643603623, 0.1959981471300125, 0.023160135373473167, 0.0361531525850296, 0.08822355419397354, 0.17139498889446259], [0.5923401713371277, 0.0008415856282226741, 0.0006099892198108137, 0.00047692147199995816, 8.299100591102615e-05, 0.00021286774426698685, 0.0016896212473511696, 0.0008813729509711266, 3.6386085412232205e-05, 4.0119888581102714e-05, 6.835109525127336e-05, 0.00012297015928197652, 0.00017802677757572383, 0.0020230559166520834, 0.04553247615695, 0.01997191458940506, 0.08594679087400436, 0.2489444464445114], [0.9857742786407471, 7.173465564846992e-05, 3.2714942790335044e-05, 0.0002696639276109636, 6.395405944203958e-05, 1.314415658271173e-05, 0.0001468213740736246, 0.00041738792788237333, 2.6433051971253008e-05, 2.283878757225466e-06, 6.438220680138329e-06, 1.7961219782591797e-05, 2.7837539164465852e-05, 0.00010907820978900418, 0.0004034095327369869, 0.0014809878775849938, 0.005574316717684269, 0.005561461206525564]], [[0.7144526243209839, 0.04711608961224556, 0.0071736108511686325, 0.0269781406968832, 0.00986147578805685, 0.004480211529880762, 0.0425875224173069, 0.032020870596170425, 0.011615692637860775, 0.004369779489934444, 0.0065248263999819756, 0.003959796857088804, 0.01004006527364254, 0.0031355805695056915, 0.011360772885382175, 0.006438614800572395, 0.028039205819368362, 0.029845118522644043], [0.9114513397216797, 0.04436798393726349, 0.0023148157633841038, 0.036856528371572495, 0.0017039229860529304, 0.00011595192336244509, 0.0011492653284221888, 0.0013839881867170334, 7.058621849864721e-05, 2.331077439521323e-06, 1.6173887615877902e-06, 6.736016530339839e-06, 4.736097253044136e-05, 1.1910674402315635e-05, 7.743696914985776e-05, 3.947839286411181e-05, 0.00021731387823820114, 0.00018136331345885992], [0.5650302767753601, 0.41660135984420776, 0.00042153280810453, 0.0033436366356909275, 0.0008695445139892399, 0.009903306141495705, 0.002004273235797882, 0.00036459023249335587, 2.7317551939631812e-05, 1.2697143574769143e-05, 6.167005039969808e-07, 2.6223160602967255e-06, 3.796476812567562e-05, 0.0004630131006706506, 6.975741416681558e-05, 6.733932968927547e-05, 0.00021790848404634744, 0.0005622401949949563], [0.8037878274917603, 0.13827157020568848, 0.006907937116920948, 0.034852538257837296, 0.0008203562465496361, 0.00160910002887249, 0.009352278895676136, 0.0025877999141812325, 1.3123326425557025e-05, 7.609107706230134e-05, 7.190862379502505e-05, 3.019185442099115e-06, 6.231157385627739e-06, 3.955494776164414e-06, 0.00032835896126925945, 5.280810455587925e-06, 7.515927427448332e-05, 0.0012275144690647721], [0.4963754415512085, 0.04685480520129204, 0.0003455686382949352, 0.39020636677742004, 0.03410528227686882, 0.002504518488422036, 0.017581069841980934, 0.010733592323958874, 0.00011207283387193456, 1.3205268487581634e-06, 1.1533761608006898e-05, 0.0006804731674492359, 4.5027127271168865e-06, 9.350069944957795e-07, 3.535707946866751e-05, 2.8709706384688616e-05, 2.3968170353327878e-05, 0.0003944888594560325], [0.701431393623352, 0.002347077475860715, 0.0005942154093645513, 0.08430572599172592, 0.05546826496720314, 0.0172128789126873, 0.020507752895355225, 0.11704121530056, 0.00013243376452010125, 0.00010084181121783331, 1.2458981757390575e-07, 3.8573700294364244e-05, 2.7784866688307375e-05, 1.2368016541586258e-05, 2.134524766006507e-05, 0.0001340191374765709, 0.00021806875884067267, 0.0004060089704580605], [0.8447948098182678, 0.02580762282013893, 0.00019590638112276793, 0.014304502867162228, 0.012000218033790588, 0.007283468265086412, 0.05288474261760712, 0.039384834468364716, 0.0015565657522529364, 0.00018541411554906517, 1.1936595910810865e-05, 8.311141755257268e-06, 3.1840572773944587e-05, 8.669741873745807e-06, 1.0618399755912833e-05, 8.213663932110649e-06, 0.00010706228204071522, 0.0014153439551591873], [0.8465844392776489, 0.001945600495673716, 0.0007439516484737396, 0.0012785723665729165, 0.000866847753059119, 0.0027881856076419353, 0.0664701834321022, 0.07664941251277924, 0.0013580706436187029, 0.0007621141267009079, 0.0001640882110223174, 4.431427441886626e-05, 8.128623449010774e-06, 9.966266588889994e-06, 9.496691745880526e-06, 3.594928784877993e-06, 1.3284878150443546e-05, 0.00029965685098432004], [0.4110349714756012, 6.685378320980817e-05, 7.331288088607835e-06, 0.0006308424635790288, 3.428978970987373e-06, 1.3549154573411215e-05, 0.009807190857827663, 0.5733964443206787, 0.0034248565789312124, 0.0001885605015559122, 0.001006490783765912, 0.00010428734094602987, 2.147678787878249e-05, 1.2091378209788672e-07, 8.448523294646293e-05, 1.5124510355235543e-06, 9.38373887038324e-06, 0.0001982546382350847], [0.31750962138175964, 0.00010913763981079683, 4.745424178054236e-07, 0.00012085654452675954, 1.8144939531339332e-05, 4.688966873800382e-05, 0.006058725994080305, 0.5734084844589233, 0.09797707945108414, 0.0011257175356149673, 0.0017397600458934903, 0.0010192682966589928, 0.0007659472175873816, 1.3972834267406142e-06, 1.2480340956244618e-05, 1.2324586577960872e-06, 1.6731626601540484e-05, 6.796003435738385e-05], [0.34329044818878174, 4.241865099174902e-05, 1.8533332024617266e-07, 2.2281610654317774e-05, 3.507178553263657e-05, 0.0001510969887021929, 0.0010181714314967394, 0.1336943358182907, 0.07441926747560501, 0.021054111421108246, 0.0019521048525348306, 0.41920825839042664, 0.0027488612104207277, 9.862481238087639e-05, 0.0016072177095338702, 2.820653719481925e-07, 5.236091237748042e-05, 0.000604822940658778], [0.21463365852832794, 0.0002155294787371531, 1.7238937743968563e-06, 2.7032254365622066e-05, 2.3806162516848417e-06, 1.017705199046759e-05, 0.0012598548782989383, 0.01965978369116783, 0.008557715453207493, 0.07683603465557098, 0.6686860918998718, 0.0031096478924155235, 0.0008672218536958098, 0.0005089655169285834, 0.0047468929551541805, 1.2350152246654034e-05, 3.682705937535502e-05, 0.000828178774099797], [0.13172124326229095, 2.0420226064743474e-05, 1.757884274411481e-05, 3.447729250183329e-05, 1.564131224540688e-07, 3.5317002584633883e-06, 0.00019955517200287431, 0.009022031910717487, 0.0005123502924107015, 0.0029207724146544933, 0.8479445576667786, 0.005391338374465704, 0.0003734910860657692, 0.00018643510702531785, 0.0012321298709139228, 0.00013398764713201672, 0.00016069137200247496, 0.00012537113798316568], [0.6740879416465759, 0.0004144112463109195, 2.3886786948423833e-05, 4.7782392357476056e-05, 2.1518067114811856e-06, 5.389998113969341e-05, 0.0001797973964130506, 0.01780703291296959, 0.00043494312558323145, 0.005193570628762245, 4.5665557991014794e-05, 0.0016037061577662826, 0.2498108148574829, 0.007878853008151054, 0.009610146284103394, 0.005673796869814396, 0.013660353608429432, 0.013471109792590141], [0.621540904045105, 0.0018039532005786896, 6.201325504662236e-06, 8.855097985360771e-05, 4.7014518713695e-06, 2.5127706976491027e-05, 0.0001308731152676046, 0.0008565096650272608, 0.000700375356245786, 0.0005187502829357982, 0.0008129751076921821, 0.011281107552349567, 0.047648921608924866, 0.026142816990613937, 0.07806109637022018, 0.0032166854944080114, 0.1373027265071869, 0.06985766440629959], [0.7866460680961609, 0.0013858575839549303, 0.00017539785767439753, 0.00012296362547203898, 9.01043733847473e-07, 1.79518588083738e-06, 0.00022226183500606567, 0.000807024072855711, 3.067627039854415e-05, 0.0003614234447013587, 0.0009958556620404124, 9.042744932230562e-05, 0.006380838807672262, 0.006149556953459978, 0.07095624506473541, 0.007484744302928448, 0.03366963192820549, 0.08451831340789795], [0.7061026096343994, 0.00021827244199812412, 2.7331023375154473e-05, 0.00025808557984419167, 1.2860382412327453e-05, 1.0408076605017413e-06, 0.00014431578165385872, 0.0010518092894926667, 2.446483813400846e-05, 5.584790869761491e-06, 7.922058284748346e-05, 0.001381443813443184, 0.0011478333035483956, 0.00019267087918706238, 0.1103433147072792, 0.03295833244919777, 0.07282565534114838, 0.07322511821985245], [0.8998002409934998, 0.0002079564001178369, 4.9431906518293545e-05, 0.00015053620154503733, 2.1268288037390448e-05, 1.0119701073563192e-05, 3.296416252851486e-05, 0.0005075115477666259, 8.519025868736207e-06, 2.84262205241248e-06, 4.023907422379125e-06, 3.292174733360298e-05, 0.0003607344697229564, 0.00012286055425647646, 0.002653455128893256, 0.0036959664430469275, 0.05568424612283707, 0.03665456175804138]], [[0.5287801027297974, 0.05161043629050255, 0.018708303570747375, 0.027252838015556335, 0.009923928417265415, 0.009970960207283497, 0.050802066922187805, 0.0961909145116806, 0.011507820338010788, 0.011275526136159897, 0.009776260703802109, 0.011083552613854408, 0.0075829243287444115, 0.016373159363865852, 0.025607306510210037, 0.01283614058047533, 0.03198341280221939, 0.06873439252376556], [0.19896003603935242, 0.013179847039282322, 0.678489625453949, 0.07971185445785522, 0.0032569519244134426, 0.003081713570281863, 0.012210879474878311, 0.0064774625934660435, 1.7059486481230124e-06, 0.00014900323003530502, 0.00011433782492531464, 1.4299255781224929e-05, 5.082996722194366e-06, 0.00034899331512860954, 0.0018043032614514232, 9.425052121514454e-05, 0.0001623641437618062, 0.0019372982205823064], [0.607116162776947, 0.023385070264339447, 0.0034137193579226732, 0.15575239062309265, 0.004477387759834528, 6.638950435444713e-05, 0.005644241347908974, 0.18234609067440033, 6.023153673595516e-06, 1.4743891370017081e-05, 2.891710437324946e-06, 6.131713234935887e-06, 4.0340608393307775e-05, 0.0011517254170030355, 0.00010539763752603903, 0.01049128733575344, 0.0003426598268561065, 0.005637264344841242], [0.5027103424072266, 0.017580509185791016, 0.004859177861362696, 0.05456764996051788, 0.3012600839138031, 0.04071994498372078, 0.022547045722603798, 0.04464681074023247, 0.002119875978678465, 0.0005655437125824392, 9.8149894256494e-06, 3.481488238321617e-05, 0.000722686352673918, 5.9729645727202296e-05, 2.0863952158833854e-05, 0.00032108553568832576, 0.005199718289077282, 0.0020542426500469446], [0.0365985669195652, 0.0019749244675040245, 9.58690361585468e-05, 0.0007745079346932471, 0.0002849056909326464, 0.9539116024971008, 0.0016868904931470752, 0.0020869309082627296, 4.164563506492414e-06, 0.00010576655768090859, 1.3960139767732471e-05, 5.038213402031033e-08, 3.169795263602282e-06, 5.1769402489298955e-06, 1.595454705238808e-06, 4.0422480651614023e-07, 3.396264946786687e-05, 0.0024175781290978193], [0.5589464902877808, 0.005991281475871801, 0.011183829046785831, 0.0036261773202568293, 5.745122325606644e-05, 0.0013938151532784104, 0.24196740984916687, 0.1723732352256775, 4.023376095574349e-05, 0.0011207910720258951, 3.973378989030607e-05, 3.3673341022222303e-06, 6.705000032525277e-06, 1.2406463611114305e-05, 6.370834307745099e-05, 1.5670142602175474e-05, 1.5698382412665524e-05, 0.003141957800835371], [0.24123792350292206, 5.9370413509896025e-05, 0.0014215442351996899, 0.013989242725074291, 0.000450175633886829, 0.0013982552336528897, 0.01774618774652481, 0.7213520407676697, 0.0005111642531119287, 0.0005981107824482024, 0.000749424216337502, 0.0002603091998025775, 1.8793791241478175e-05, 2.4652863430674188e-06, 5.962342402199283e-05, 3.892392851412296e-05, 2.3419293938786723e-05, 8.298079774249345e-05], [0.7378543615341187, 0.0006741720717400312, 1.365337084280327e-05, 0.0012511051027104259, 0.0007666527526453137, 0.0011277494486421347, 0.005857864860445261, 0.2030348926782608, 0.04452025517821312, 0.0019063507206737995, 0.0006969809764996171, 0.0005549286142922938, 0.0009464487666264176, 7.624358840985224e-05, 3.4020201837847708e-06, 9.905222395900637e-05, 0.00011993209773208946, 0.0004960661754012108], [0.5355928540229797, 0.00030180613975971937, 1.0694666343624704e-05, 2.82499568129424e-05, 0.00011010075104422867, 0.0006177108734846115, 0.007762829307466745, 0.02385007217526436, 0.022330397740006447, 0.32286661863327026, 0.07659153640270233, 0.0006748178275302052, 0.005346196703612804, 0.0014398907078430057, 0.0004793245461769402, 3.399425622774288e-05, 0.000497449014801532, 0.001465492183342576], [0.4331305921077728, 9.882530866889283e-05, 0.00019746815087273717, 0.00014110017218627036, 8.971061902229849e-07, 0.00038672229857183993, 0.006198947783559561, 0.08033054322004318, 0.0018795834621414542, 0.031624432653188705, 0.43154487013816833, 0.0003646168624982238, 0.00580479996278882, 0.0013379150768741965, 0.00569221843034029, 0.0001687714975560084, 8.386190529563464e-06, 0.0010892592836171389], [0.0734902024269104, 5.7313800425617956e-06, 3.996091436420102e-06, 1.0202956218563486e-05, 1.4090591093918192e-06, 5.3687351453390875e-08, 6.776076043024659e-05, 0.014920098707079887, 7.255256059579551e-05, 0.0012727513676509261, 0.0010245415614917874, 0.8059977889060974, 0.09685675799846649, 4.350943345343694e-05, 0.000824017624836415, 0.005303841549903154, 6.807211320847273e-05, 3.67858046956826e-05], [0.19645759463310242, 0.0002529762568883598, 1.7472306126364856e-06, 0.0002061939740087837, 0.0004927104455418885, 6.910863157827407e-05, 2.7953397875535302e-05, 0.008981357328593731, 0.002380510326474905, 0.013403652235865593, 0.0244054663926363, 0.0008367677219212055, 0.665060818195343, 0.055998366326093674, 0.009853809140622616, 0.007744809612631798, 0.011818397790193558, 0.0020075992215424776], [0.48185983300209045, 0.003777754260227084, 6.547089287778363e-05, 1.5069252185639925e-05, 5.9706740103138145e-06, 1.4376589206221979e-05, 0.000314735050778836, 0.0003466506313998252, 2.684335777303204e-05, 0.007662189193069935, 0.005098426248878241, 0.00017254991689696908, 0.005436874460428953, 0.4047814607620239, 0.039858993142843246, 0.00031770888017490506, 0.01567019522190094, 0.034574996680021286], [0.8982521295547485, 0.001267051906324923, 0.00054796232143417, 5.633699402096681e-06, 4.955601298206602e-07, 2.9717223242187174e-06, 0.00011618637654464692, 0.001804025610908866, 1.0574818531949859e-07, 8.203244942706078e-05, 2.4773626137175597e-05, 0.0001558904186822474, 0.00033549178624525666, 0.002588742645457387, 0.05987205356359482, 0.0005931195337325335, 0.0018992271507158875, 0.03245198726654053], [0.0480198860168457, 6.407372711692005e-05, 1.6248573956545442e-05, 0.00012735134805552661, 5.496609446709044e-06, 2.9983704052938265e-07, 6.2905269260227215e-06, 0.00011017936049029231, 2.7958590180787724e-06, 3.7893087778684276e-07, 3.6726643884321675e-05, 0.0001462525106035173, 0.009377628564834595, 0.000735658104531467, 0.004195217043161392, 0.9316665530204773, 0.0029354922007769346, 0.002553500235080719], [0.6162046790122986, 0.001434066565707326, 2.5730452762218192e-05, 6.290668534347787e-05, 0.0005411857273429632, 0.00011957941023865715, 2.4218550606747158e-05, 0.0003751209005713463, 7.741643457848113e-06, 1.5323705156333745e-05, 5.122169568494428e-07, 1.6296558897010982e-05, 0.0006163068464957178, 0.0064852274954319, 0.002101045334711671, 0.00146427471190691, 0.3209829330444336, 0.04952290654182434], [0.44208574295043945, 0.0018785846186801791, 0.0001868207036750391, 0.00011536030797287822, 2.0912064428557642e-05, 0.0004562199173960835, 9.364176366943866e-05, 5.254440475255251e-05, 9.257079909730237e-06, 2.5378905775141902e-05, 5.966987009742297e-05, 1.0929595646302914e-06, 9.348071762360632e-05, 0.0013765176991000772, 0.004616415128111839, 0.0013727840268984437, 0.01626642607152462, 0.5312891602516174], [0.9609258770942688, 0.0006511632236652076, 0.0002955679374281317, 0.00016994580801110715, 2.8069567633792758e-05, 1.4459312296821736e-05, 0.0016552046872675419, 0.0010936573380604386, 2.7372998374630697e-06, 3.064841166633414e-06, 1.1714188076439314e-05, 1.2763901395373978e-05, 2.945161440948141e-06, 0.00013169228623155504, 0.0009446184849366546, 0.001238945173099637, 0.002749010920524597, 0.030068522319197655]], [[0.6347469687461853, 0.026830140501260757, 0.012878168374300003, 0.010386208072304726, 0.014975999481976032, 0.014720306731760502, 0.024834685027599335, 0.05876905471086502, 0.009265843778848648, 0.006066767033189535, 0.01112661324441433, 0.0053417496383190155, 0.014302700757980347, 0.015402846038341522, 0.01427121739834547, 0.0122474804520607, 0.03455622121691704, 0.07927702367305756], [0.9306172132492065, 0.021372923627495766, 0.0020355451852083206, 0.008331948891282082, 0.03573671728372574, 0.00032912270398810506, 1.4587109035346657e-05, 0.0004978007636964321, 3.057742287637666e-05, 2.285047912664595e-06, 1.9320761168728495e-07, 5.43916758033447e-06, 0.00041933980537578464, 6.303858390310779e-05, 1.9714921108970884e-06, 0.0001806019281502813, 0.00027669366681948304, 8.396775956498459e-05], [0.2948257327079773, 0.6812873482704163, 0.0034807370975613594, 0.0015489384531974792, 0.0019353533862158656, 0.012309454381465912, 0.002103763399645686, 2.9958133382024243e-05, 1.7883061218526564e-06, 1.159082785306964e-05, 1.8212527720606886e-05, 4.4066479176763096e-07, 1.670117308094632e-05, 0.0009293989860452712, 1.8524739061831497e-05, 2.2160196749609895e-05, 1.2426477042026818e-05, 0.0014476161450147629], [0.1007714495062828, 0.020805371925234795, 0.7748910784721375, 0.07438978552818298, 0.006807815749198198, 0.007984641939401627, 0.012326598167419434, 0.0017382593359798193, 1.943155751860104e-07, 1.7944904584510368e-06, 4.880327196588041e-06, 1.890927251224639e-06, 4.869000349572161e-07, 5.08953917233157e-06, 0.00011968394392170012, 9.195838356390595e-05, 1.9161420823365916e-06, 5.705601870431565e-05], [0.009332665242254734, 0.0005710844416171312, 0.0019985188264399767, 0.9837195873260498, 0.0007841516053304076, 0.0005917263915762305, 0.0001591792970430106, 0.0023185270838439465, 1.5402796407215646e-06, 3.1410269940579383e-09, 2.8450926947698463e-07, 5.718370175600285e-06, 7.502228527300758e-07, 2.6568478972421872e-08, 1.5945771281167254e-07, 0.000511928228661418, 4.645640387934691e-07, 3.593337396523566e-06], [0.5255415439605713, 0.005992764141410589, 0.0020323677454143763, 0.005718899890780449, 0.3985154926776886, 0.03065548650920391, 0.00766269164159894, 0.022821342572569847, 0.00026053530746139586, 3.107773227384314e-05, 1.2045312303143874e-07, 5.531712304218672e-06, 1.0978590580634773e-05, 5.2878995120408945e-06, 3.862460928871769e-08, 1.4004491276864428e-05, 0.0007031167624518275, 2.8756789106409997e-05], [0.2258010357618332, 0.004150584805756807, 0.0005801107618026435, 0.001272817375138402, 0.004307536408305168, 0.7463493347167969, 0.012472879141569138, 0.0036236566957086325, 0.00033638623426668346, 0.00031410640804097056, 1.3022340681345668e-05, 6.795745122190056e-08, 3.883604676957475e-06, 1.3334322829905432e-05, 2.645276708790334e-07, 7.382176363535109e-07, 2.236543195976992e-06, 0.0007580964011140168], [0.9078269600868225, 0.00015045788313727826, 0.0018992888508364558, 0.0005588829517364502, 0.00021210922568570822, 0.0019939325284212828, 0.052769046276807785, 0.032949890941381454, 2.608275281090755e-05, 0.00037262222031131387, 0.0012015808606520295, 2.394542570982594e-05, 2.566816306170949e-07, 2.3296463496080833e-06, 1.1585642596401158e-06, 1.5359199778686161e-06, 8.710956400648229e-09, 9.93986577668693e-06], [0.0392935574054718, 3.121623706192622e-07, 2.221259137513698e-06, 0.0001345216587651521, 8.198431169148535e-05, 1.3186084288463462e-05, 0.00028392652166076005, 0.9483358263969421, 0.00457722507417202, 0.0001665780000621453, 0.000996392103843391, 0.006005575880408287, 8.16245810710825e-05, 1.726067750951188e-07, 7.708414386797813e-07, 2.5239112801500596e-05, 7.198811431408103e-07, 2.335821847054831e-07], [0.01378820464015007, 1.914203721753438e-06, 5.188790908050578e-08, 2.2248245841183234e-06, 0.00017592527728993446, 0.0005047540180385113, 4.5672972191823646e-05, 0.006497118156403303, 0.971583366394043, 0.004548331256955862, 0.0005277776508592069, 0.00020234708790667355, 0.002069885144010186, 4.3414445826783776e-05, 1.3313596447517284e-08, 5.367058292904403e-06, 1.835402485994564e-06, 1.88375236120919e-06], [0.14082886278629303, 1.1845211702166125e-05, 5.530226189875975e-06, 1.324829934645777e-08, 1.0521376907490776e-06, 0.00016863358905538917, 0.0002495705848559737, 0.0024922797456383705, 0.004934253636747599, 0.8414005041122437, 0.005519691854715347, 0.001057462184689939, 0.00063498126110062, 0.002658841433003545, 6.1484738580475096e-06, 3.935813026600954e-07, 2.125534592778422e-06, 2.7989510272163898e-05], [0.014280306175351143, 2.1783912416140083e-06, 7.083266609697603e-06, 1.0570460062808706e-06, 2.475643690047491e-09, 2.524159754102584e-06, 0.00011160022404510528, 0.000631219067145139, 0.0001234808296430856, 0.0006921718013472855, 0.9811609387397766, 0.0006429061759263277, 0.00023367961694020778, 0.0002919360704254359, 0.001753219054080546, 5.474518911796622e-05, 6.511367445227734e-08, 1.0672376447473653e-05], [0.21305908262729645, 6.4164701143454295e-06, 4.927616464556195e-05, 1.1418192116252612e-05, 3.9313894376391545e-05, 5.456512326418306e-07, 1.734764919092413e-05, 0.01289238128811121, 0.0014259163290262222, 0.0005643683834932745, 0.08194728195667267, 0.6249119639396667, 0.02508700080215931, 0.004005196038633585, 0.028185635805130005, 0.0075082783587276936, 0.00028168558492325246, 6.882397883600788e-06], [0.3131648600101471, 0.00014325641677714884, 1.251716457773e-05, 6.165157628856832e-06, 5.4389714932767674e-05, 2.563651833042968e-05, 1.9495937522151507e-06, 0.0007423133938573301, 0.003788087982684374, 0.0005043255514465272, 0.0014519902179017663, 0.0012273808242753148, 0.6157182455062866, 0.02032432146370411, 0.0014003474498167634, 0.0023109016474336386, 0.036123186349868774, 0.0030001727864146233], [0.054160669445991516, 0.00044216832611709833, 4.071924922754988e-05, 7.664349510605462e-08, 6.0129752910143e-07, 1.5371686458820477e-05, 4.197911493974971e-06, 3.656226397197315e-07, 1.5628640539944172e-05, 0.0004115327028557658, 0.0006462354212999344, 0.0003024066099897027, 0.0056999679654836655, 0.9197182059288025, 0.006426658481359482, 0.0017611597431823611, 0.001137402025051415, 0.009216568432748318], [0.07809707522392273, 5.080446135252714e-05, 0.0007621908443979919, 6.5304211602779105e-06, 2.258001643440366e-07, 1.3876475577490055e-06, 2.710369517444633e-05, 9.809818584471941e-05, 2.4921681074374646e-07, 9.472865940551856e-07, 0.0012395801022648811, 3.709628072101623e-05, 0.00018491533410269767, 0.0016968713607639074, 0.9087789058685303, 0.004269568715244532, 0.0015129372477531433, 0.0032356323208659887], [0.17066633701324463, 4.826418262382504e-06, 1.137328399636317e-05, 0.000284210400423035, 8.745058948989026e-06, 3.1658717603022524e-07, 8.453700957034016e-07, 3.21710467687808e-05, 4.564177743304754e-06, 7.2897137215477414e-09, 8.094887562037911e-06, 0.0006262508686631918, 0.001026083598844707, 0.00026980089023709297, 0.002226444659754634, 0.8102136850357056, 0.011468102224171162, 0.0031481480691581964], [0.9819633960723877, 4.9237827624892816e-05, 4.250970596331172e-05, 6.641042546107201e-06, 0.0003195524332113564, 1.1983257536485326e-05, 9.941965117832297e-08, 5.8651444305724e-06, 6.94038874371472e-07, 8.861777018864814e-07, 5.44163079041482e-08, 2.1367181943787728e-06, 0.00030731470906175673, 0.00016532155859749764, 4.380714744911529e-05, 0.0005344924866221845, 0.01441381499171257, 0.002132035791873932]], [[0.39489200711250305, 0.02204625867307186, 0.0026458282954990864, 0.01159547921270132, 0.0036052907817065716, 0.0023878177162259817, 0.08903733640909195, 0.15689076483249664, 0.0025186201091855764, 0.02099110372364521, 0.002248486503958702, 0.004801247268915176, 0.001952250604517758, 0.0015527078649029136, 0.0223524272441864, 0.0018148199887946248, 0.12508365511894226, 0.13358385860919952], [0.16048334538936615, 0.047392480075359344, 0.044589072465896606, 0.08688253164291382, 0.041184570640325546, 0.008246021345257759, 0.0736490860581398, 0.3237828314304352, 0.007572511676698923, 0.02278473600745201, 0.013851731084287167, 0.0118565633893013, 0.00785333476960659, 0.006260094232857227, 0.02087520621716976, 0.008656910620629787, 0.019339846447110176, 0.09473911672830582], [0.06920427083969116, 0.043371591717004776, 0.0901377722620964, 0.040832508355379105, 0.09944973140954971, 0.2677275836467743, 0.03472379595041275, 0.06433232873678207, 0.03974243998527527, 0.005408829543739557, 0.019162360578775406, 0.007829630747437477, 0.07842694967985153, 0.036679431796073914, 0.011454129591584206, 0.06721119582653046, 0.007029596716165543, 0.017275767400860786], [0.1724867820739746, 0.04343586415052414, 0.01760733500123024, 0.019348131492733955, 0.06568186730146408, 0.029142659157514572, 0.054439835250377655, 0.32231882214546204, 0.06533758342266083, 0.03852825611829758, 0.019002733752131462, 0.0274153221398592, 0.008182821795344353, 0.0059648361057043076, 0.018148181959986687, 0.005742782261222601, 0.013263885863125324, 0.07395224273204803], [0.23252911865711212, 0.055874958634376526, 0.031549546867609024, 0.04789920896291733, 0.03126436471939087, 0.05533749610185623, 0.06291335821151733, 0.1449284851551056, 0.06673690676689148, 0.02745319902896881, 0.05362660437822342, 0.03608410060405731, 0.050524938851594925, 0.0003653856983873993, 0.03840818628668785, 0.0008696380537003279, 0.020724471658468246, 0.04291000962257385], [0.08008098602294922, 0.022928940132260323, 0.14068228006362915, 0.0954984575510025, 0.15050409734249115, 0.049253422766923904, 0.043897949159145355, 0.05007218196988106, 0.060602620244026184, 0.008485059253871441, 0.023631403222680092, 0.018798165023326874, 0.17447718977928162, 0.0055432552471756935, 0.029616544023156166, 0.017652178183197975, 0.012269971892237663, 0.01600528135895729], [0.05511985346674919, 0.07158645242452621, 0.004468199331313372, 0.175722137093544, 0.012744980864226818, 0.0027828358579427004, 0.28895634412765503, 0.17016807198524475, 0.005900440271943808, 0.05074504762887955, 0.003614163026213646, 0.007532991468906403, 0.0014766146196052432, 0.0017118650721386075, 0.023814154788851738, 0.0013256032252684236, 0.081438347697258, 0.04089193418622017], [0.2908197343349457, 0.02826507017016411, 0.0011990772327408195, 0.025837013497948647, 0.002060960279777646, 0.0009624933009035885, 0.30213457345962524, 0.09826306253671646, 0.00041966894059441984, 0.017098285257816315, 0.001486459979787469, 0.0043169972486793995, 0.0006020214641466737, 0.00034968878026120365, 0.03694068640470505, 0.0004588896408677101, 0.1579936444759369, 0.03079170361161232], [0.12402020394802094, 0.011948339641094208, 0.0011898765806108713, 0.020197471603751183, 0.050678011029958725, 0.0024574967101216316, 0.017276862636208534, 0.08895281702280045, 0.028963686898350716, 0.22526906430721283, 0.0784665122628212, 0.12019772827625275, 0.007399360649287701, 0.004120205994695425, 0.06486991792917252, 0.004754344001412392, 0.04191708564758301, 0.10732103884220123], [0.12359782308340073, 0.010656408965587616, 0.02071237750351429, 0.011800779029726982, 0.01721263863146305, 0.02435126341879368, 0.01698436215519905, 0.12054549902677536, 0.07969961315393448, 0.020680248737335205, 0.09730646014213562, 0.022846568375825882, 0.07666688412427902, 0.06450553238391876, 0.03159169480204582, 0.11478938162326813, 0.035162732005119324, 0.11088975518941879], [0.09782757610082626, 0.007388404570519924, 0.005044019781053066, 0.00326895946636796, 0.023159876465797424, 0.00596447940915823, 0.013440991751849651, 0.18895354866981506, 0.12342680990695953, 0.12674902379512787, 0.01716296188533306, 0.04259251058101654, 0.03770536184310913, 0.03031543269753456, 0.023618968203663826, 0.020143067464232445, 0.03583249822258949, 0.19740556180477142], [0.20640504360198975, 0.009363381192088127, 0.0035297428257763386, 0.018866294994950294, 0.03449933975934982, 0.005321939941495657, 0.07170930504798889, 0.13955283164978027, 0.07702500373125076, 0.07358332723379135, 0.023019790649414062, 0.017129939049482346, 0.008651181124150753, 0.0006875517428852618, 0.02781076915562153, 0.000500042806379497, 0.13980016112327576, 0.1425444483757019], [0.31219518184661865, 0.020607436075806618, 0.009600479155778885, 0.0047058179043233395, 0.009457523003220558, 0.07032064348459244, 0.012713147327303886, 0.1267087161540985, 0.0606362447142601, 0.03936387971043587, 0.07745947688817978, 0.011968046426773071, 0.02099229395389557, 0.008630999363958836, 0.04130742326378822, 0.011619172058999538, 0.02766343206167221, 0.13405005633831024], [0.12629388272762299, 0.04244907200336456, 0.07159604132175446, 0.002706148661673069, 0.004937484860420227, 0.09398107975721359, 0.018261514604091644, 0.02743924967944622, 0.04724384471774101, 0.011913154274225235, 0.028138084337115288, 0.010348666459321976, 0.2663276791572571, 0.022994454950094223, 0.021977419033646584, 0.08914704620838165, 0.06695500016212463, 0.047290097922086716], [0.2702387571334839, 0.016799651086330414, 0.00453268364071846, 0.006030054297298193, 0.0070564900524914265, 0.008309820666909218, 0.018024872988462448, 0.13275162875652313, 0.023990165442228317, 0.07700489461421967, 0.014192071743309498, 0.021294837817549706, 0.0112102460116148, 0.01555623859167099, 0.025018444284796715, 0.030073784291744232, 0.07859326153993607, 0.23932211101055145], [0.22672238945960999, 0.01948077417910099, 0.06721559166908264, 0.0012209073174744844, 0.009652002714574337, 0.10364580154418945, 0.02503625489771366, 0.057965803891420364, 0.030476683750748634, 0.01357414573431015, 0.016671940684318542, 0.014131502248346806, 0.18003253638744354, 0.01716219261288643, 0.02286471240222454, 0.01857760362327099, 0.08029606938362122, 0.09527301788330078], [0.07141245156526566, 0.0225827656686306, 0.0011872698087245226, 0.03713677078485489, 0.0038320899475365877, 0.0010050373384729028, 0.09513930976390839, 0.06744261085987091, 0.01293413620442152, 0.09600874781608582, 0.007970948703587055, 0.013161406852304935, 0.0032170747872442007, 0.004113773815333843, 0.07525596767663956, 0.004240681417286396, 0.38145172595977783, 0.10190722346305847], [0.34228819608688354, 0.011734990403056145, 0.00036943439044989645, 0.006590693257749081, 0.0006899810978211462, 0.00039101496804505587, 0.10885000228881836, 0.03562074527144432, 0.0004658307007048279, 0.015167244710028172, 0.0014917603693902493, 0.004349757917225361, 0.0007103277021087706, 0.0005421526730060577, 0.061305686831474304, 0.0009432088118046522, 0.3642558455467224, 0.04423313960433006]], [[0.14792905747890472, 0.03498668596148491, 0.019579390063881874, 0.05981855094432831, 0.059724271297454834, 0.037036772817373276, 0.05486282706260681, 0.10872121155261993, 0.06024261564016342, 0.0428982675075531, 0.06642161309719086, 0.038540445268154144, 0.0579729788005352, 0.02296305261552334, 0.02204216830432415, 0.02353832498192787, 0.05611332505941391, 0.08660837262868881], [0.19013240933418274, 0.04189268872141838, 0.025937959551811218, 0.13410022854804993, 0.01951706036925316, 0.009879845194518566, 0.07783842086791992, 0.061417106539011, 0.0566277839243412, 0.032437488436698914, 0.050880324095487595, 0.04894096031785011, 0.05163358524441719, 0.011997482739388943, 0.025524768978357315, 0.014625992625951767, 0.10081787407398224, 0.045798081904649734], [0.1246684193611145, 0.06460680812597275, 0.0981350839138031, 0.10616064071655273, 0.011994154192507267, 0.017856644466519356, 0.04254448413848877, 0.03808651119470596, 0.09900987893342972, 0.030397387221455574, 0.040455419570207596, 0.027776040136814117, 0.07078514993190765, 0.026169903576374054, 0.0388130247592926, 0.0629597082734108, 0.0679694265127182, 0.03161134943366051], [0.12258679419755936, 0.018676310777664185, 0.006911942735314369, 0.1890057474374771, 0.010696975514292717, 0.03714485466480255, 0.02513519860804081, 0.02967340126633644, 0.1410321295261383, 0.042692117393016815, 0.1184859499335289, 0.06546910107135773, 0.09963919967412949, 0.013239397667348385, 0.001846865052357316, 0.012199523858726025, 0.040576327592134476, 0.024988120421767235], [0.16715194284915924, 0.01942441798746586, 0.004433324094861746, 0.05983338877558708, 0.17111241817474365, 0.10635028779506683, 0.02918528951704502, 0.059668347239494324, 0.04643208906054497, 0.05999617651104927, 0.1008620485663414, 0.04837029427289963, 0.018759585916996002, 0.008165769279003143, 0.011297622695565224, 0.013497565872967243, 0.02864782139658928, 0.04681163281202316], [0.27442044019699097, 0.008151579648256302, 0.004173852037638426, 0.02657933719456196, 0.06976152211427689, 0.26898154616355896, 0.032419878989458084, 0.07530572265386581, 0.04190901294350624, 0.027518443763256073, 0.020532604306936264, 0.013028193265199661, 0.012273089028894901, 0.007838346064090729, 0.010757040232419968, 0.011679287999868393, 0.04367825388908386, 0.05099178105592728], [0.24429677426815033, 0.020901745185256004, 0.013802478089928627, 0.11879374831914902, 0.07859978824853897, 0.027111733332276344, 0.034618642181158066, 0.1261853724718094, 0.03789544478058815, 0.026279829442501068, 0.052114337682724, 0.033711988478899, 0.03193630650639534, 0.004998058546334505, 0.0038671817164868116, 0.00989419873803854, 0.04207669943571091, 0.09291569888591766], [0.6332403421401978, 0.018668662756681442, 0.009326382540166378, 0.017085108906030655, 0.009716080501675606, 0.010530322790145874, 0.0628371387720108, 0.04825675114989281, 0.002646763576194644, 0.007480057422071695, 0.004814140498638153, 0.0042725177481770515, 0.01312720775604248, 0.02282847836613655, 0.00802543479949236, 0.010398240759968758, 0.0663447231054306, 0.05040161311626434], [0.12318334728479385, 0.025060202926397324, 0.008817941881716251, 0.16164886951446533, 0.05327509716153145, 0.030514447018504143, 0.01399667002260685, 0.06494036316871643, 0.13027329742908478, 0.011044777929782867, 0.11035476624965668, 0.07884609699249268, 0.05927637964487076, 0.004102251026779413, 0.003902529599145055, 0.031521789729595184, 0.017985636368393898, 0.07125548273324966], [0.23466937243938446, 0.038542017340660095, 0.006282054353505373, 0.12152427434921265, 0.031735535711050034, 0.023476243019104004, 0.02817055769264698, 0.10937408357858658, 0.03893574699759483, 0.012147219851613045, 0.0692090168595314, 0.05216589570045471, 0.04653779789805412, 0.008558327332139015, 0.008976468816399574, 0.025963859632611275, 0.03974919393658638, 0.10398227721452713], [0.15430141985416412, 0.018441665917634964, 0.004045779816806316, 0.10159175097942352, 0.026814932003617287, 0.018141107633709908, 0.020880384370684624, 0.07264574617147446, 0.13363893330097198, 0.0408371202647686, 0.19213669002056122, 0.09352292120456696, 0.033731792122125626, 0.0022783037275075912, 0.003915840294212103, 0.0069558629766106606, 0.02562100999057293, 0.050498832017183304], [0.13931094110012054, 0.029022768139839172, 0.006338905077427626, 0.1226004958152771, 0.0201227068901062, 0.01566593535244465, 0.026579398661851883, 0.06444656848907471, 0.06499504297971725, 0.017048567533493042, 0.18513089418411255, 0.12753307819366455, 0.054733458906412125, 0.004377479199320078, 0.010360384359955788, 0.009938989765942097, 0.03321867063641548, 0.06857580691576004], [0.2890412509441376, 0.05081595852971077, 0.04306190833449364, 0.07660036534070969, 0.014548806473612785, 0.015177651308476925, 0.029508378356695175, 0.07152348756790161, 0.022010015323758125, 0.043737322092056274, 0.052729107439517975, 0.03801875561475754, 0.12014839053153992, 0.024047259241342545, 0.014923715963959694, 0.01715315505862236, 0.02212044969201088, 0.054834116250276566], [0.12577328085899353, 0.09460897743701935, 0.014022246934473515, 0.0435977466404438, 0.012130707502365112, 0.003427795134484768, 0.024662379175424576, 0.014453177340328693, 0.01159041840583086, 0.00618252158164978, 0.009246110916137695, 0.009058262221515179, 0.03527715802192688, 0.16131755709648132, 0.022731546312570572, 0.37324458360671997, 0.026849912479519844, 0.011825636960566044], [0.38019999861717224, 0.022309618070721626, 0.00809379294514656, 0.03205467388033867, 0.0446072593331337, 0.022142110392451286, 0.0274101160466671, 0.15284675359725952, 0.032191529870033264, 0.01126316748559475, 0.027508998289704323, 0.03911349177360535, 0.023424658924341202, 0.00944837462157011, 0.00986282154917717, 0.00993255339562893, 0.02340724691748619, 0.12418286502361298], [0.24393364787101746, 0.06682218611240387, 0.01432123500853777, 0.010774508118629456, 0.007080251816660166, 0.006979026831686497, 0.051341138780117035, 0.017270419746637344, 0.01372787170112133, 0.01644003577530384, 0.0038793396670371294, 0.005176500417292118, 0.03291783854365349, 0.2787448763847351, 0.03293636813759804, 0.11778159439563751, 0.06818133592605591, 0.011691815219819546], [0.22507795691490173, 0.024672988802194595, 0.01405488420277834, 0.11070944368839264, 0.09822072088718414, 0.03419467434287071, 0.038059983402490616, 0.12456252425909042, 0.05209002643823624, 0.027792999520897865, 0.05349237099289894, 0.03947718068957329, 0.02461295574903488, 0.00591821176931262, 0.004162137862294912, 0.011706261895596981, 0.024197766557335854, 0.08699695020914078], [0.6475711464881897, 0.0176213588565588, 0.006612791679799557, 0.013723349198698997, 0.01201371755450964, 0.00707657914608717, 0.06364189088344574, 0.06721778959035873, 0.0030094855464994907, 0.009245350956916809, 0.00392666133120656, 0.004130053333938122, 0.009801246225833893, 0.012238729745149612, 0.008076163940131664, 0.00610748864710331, 0.06392064690589905, 0.04406551271677017]], [[0.7850435376167297, 0.022766709327697754, 0.014464317820966244, 0.020886369049549103, 0.010464177466928959, 0.006927211303263903, 0.028134476393461227, 0.025060897693037987, 0.006838500499725342, 0.004096251912415028, 0.007214589975774288, 0.004271169658750296, 0.005428660660982132, 0.005906756967306137, 0.00969067495316267, 0.008684039115905762, 0.018041886389255524, 0.016079679131507874], [0.9741997718811035, 0.012368910014629364, 0.0048215645365417, 0.0029488096479326487, 0.0004981555975973606, 4.6333938371390104e-05, 0.0019303084118291736, 0.001615455374121666, 5.842915561515838e-05, 4.905708192382008e-05, 2.480699185980484e-05, 3.632584775914438e-05, 5.987794793327339e-05, 9.25224885577336e-05, 0.00019502070790622383, 0.00015065664774738252, 0.0004884439404122531, 0.0004154797352384776], [0.9228028059005737, 0.03786777704954147, 0.008239811286330223, 0.016423994675278664, 0.006933682132512331, 0.001108477939851582, 0.0015944874612614512, 0.0017853878671303391, 0.000221596346818842, 0.0001776304270606488, 0.00010445620864629745, 8.64595131133683e-05, 0.0006069928058423102, 0.0003221659571863711, 9.26516077015549e-05, 0.0007138218497857451, 0.0005196069832891226, 0.00039828690933063626], [0.4282112717628479, 0.4454202353954315, 0.03936225175857544, 0.05475625395774841, 0.01839565485715866, 0.0032353918068110943, 0.006176779977977276, 0.0010159207740798593, 0.0002780909708235413, 8.516480011167005e-05, 1.4230552551453002e-05, 1.7294376448262483e-05, 0.00014249897503759712, 0.0002984421153087169, 0.00013796611165162176, 0.00038866675458848476, 0.0007611528853885829, 0.0013027505483478308], [0.6552793979644775, 0.13359013199806213, 0.0854690670967102, 0.08103126287460327, 0.022642431780695915, 0.0039414879865944386, 0.011781965382397175, 0.0027880887500941753, 0.00019600581435952336, 0.00017089264292735606, 5.965071977698244e-05, 0.0011639588046818972, 0.00012526428326964378, 8.069771865848452e-05, 0.0002704944636207074, 0.0002185264602303505, 0.0004760040028486401, 0.0007147506694309413], [0.4253208339214325, 0.1906057447195053, 0.048666246235370636, 0.25546011328697205, 0.022936012595891953, 0.007426503114402294, 0.028369177132844925, 0.016433557495474815, 0.0014987012837082148, 0.000863758847117424, 2.2498041289509274e-05, 0.00033393874764442444, 0.0003216054756194353, 0.0001719603023957461, 4.6713597839698195e-05, 0.0007747496129013598, 0.0001870750420494005, 0.0005607984494417906], [0.2658526599407196, 0.09405361115932465, 0.05932256206870079, 0.27032458782196045, 0.16983208060264587, 0.04381425306200981, 0.05155523866415024, 0.03560873493552208, 0.004092334304004908, 0.0011686180951073766, 0.00020289506937842816, 0.0003961050824727863, 0.0003523033519741148, 0.0002676123986020684, 0.00011905231804121286, 0.0007340072770603001, 0.0012232528533786535, 0.0010801480384543538], [0.9273274540901184, 0.011018110439181328, 0.0014982271241024137, 0.009167453274130821, 0.00520317954942584, 0.005039580166339874, 0.02124897390604019, 0.01726658083498478, 0.0011986525496467948, 0.0002975155075546354, 0.00013060661149211228, 3.0246405003708787e-05, 3.184476008755155e-05, 2.6090372557519004e-05, 1.6367004718631506e-05, 2.7775788112194277e-05, 0.0001107815041905269, 0.0003606786485761404], [0.7271817922592163, 0.010374600999057293, 0.0073190974071621895, 0.0060573117807507515, 0.00275930343195796, 0.005643139127641916, 0.1048792228102684, 0.12422090023756027, 0.002105931518599391, 0.005616179201751947, 0.0007770120282657444, 9.462193702347577e-05, 4.8138088459381834e-05, 0.00034775224048644304, 0.00011312586138956249, 8.765966776991263e-05, 0.00039916878449730575, 0.0019748806953430176], [0.20267407596111298, 0.005745159462094307, 0.007677736692130566, 0.020429085940122604, 0.006108550354838371, 0.01412333082407713, 0.07365680485963821, 0.5085815191268921, 0.07130033522844315, 0.07790541648864746, 0.008182051591575146, 0.001390489749610424, 0.001042623771354556, 0.00029208746855147183, 6.353092612698674e-05, 0.00016266366583295166, 0.00014923881099093705, 0.0005151964141987264], [0.16616642475128174, 0.0036189823877066374, 0.00048769928980618715, 0.0029770187102258205, 0.007385541684925556, 0.008336176164448261, 0.050789736211299896, 0.3248666524887085, 0.26981931924819946, 0.13859272003173828, 0.007985621690750122, 0.006483697798103094, 0.009369617328047752, 0.0012636736501008272, 0.00020437969942577183, 0.0004037464677821845, 0.0007173512713052332, 0.0005316843162290752], [0.12821099162101746, 0.0044145742431283, 0.0009954071138054132, 0.002128303749486804, 0.0021611806005239487, 0.007380824536085129, 0.034494224935770035, 0.15968385338783264, 0.2891254127025604, 0.1945846527814865, 0.14876329898834229, 0.013287138193845749, 0.009876780211925507, 0.0015770152676850557, 0.0012968709925189614, 0.00018557898874860257, 0.0009689975413493812, 0.000864856003317982], [0.12011424452066422, 0.003413159865885973, 0.0007312736706808209, 0.0015864836750552058, 0.0007508783601224422, 0.0024412127677351236, 0.030509086325764656, 0.13712970912456512, 0.07044210284948349, 0.13939370214939117, 0.4492643475532532, 0.013248862698674202, 0.010912884026765823, 0.00879144947975874, 0.00619144830852747, 0.0009317098883911967, 0.0016058858018368483, 0.002541552996262908], [0.4032190144062042, 0.005296158604323864, 0.003259530058130622, 0.0028756940737366676, 0.002089623361825943, 0.0012972737895324826, 0.011892837472259998, 0.11644971370697021, 0.06519916653633118, 0.050439219921827316, 0.05779176205396652, 0.024492133408784866, 0.15532392263412476, 0.024483175948262215, 0.03310240060091019, 0.017955956980586052, 0.015280639752745628, 0.009551718831062317], [0.07476947456598282, 0.002326613524928689, 0.0003993394202552736, 0.0014054127968847752, 0.0010949019342660904, 0.0011917719384655356, 0.0022318814881145954, 0.02894021011888981, 0.069755919277668, 0.0763229951262474, 0.07384335994720459, 0.050018660724163055, 0.3944796919822693, 0.060732077807188034, 0.09102877229452133, 0.022706177085638046, 0.036610111594200134, 0.012142613530158997], [0.1302720457315445, 0.008110039867460728, 0.0026833603624254465, 0.0023433652240782976, 0.001566243008710444, 0.002587416907772422, 0.006773964501917362, 0.03130154684185982, 0.016497280448675156, 0.05497581884264946, 0.050565898418426514, 0.017427094280719757, 0.162911057472229, 0.1921079456806183, 0.08237145841121674, 0.03821668401360512, 0.1098434254527092, 0.0894453153014183], [0.152701735496521, 0.0025931852869689465, 0.0030546975322067738, 0.0017097804229706526, 0.0005425452836789191, 0.0009917609859257936, 0.0018507870845496655, 0.009766452014446259, 0.0033482180442661047, 0.005448789335787296, 0.03585747629404068, 0.025317860767245293, 0.0851176530122757, 0.09430628269910812, 0.2655743360519409, 0.1018986850976944, 0.10384916514158249, 0.10607059299945831], [0.9491733312606812, 0.0004729126812890172, 0.00018275127513334155, 0.00029160824487917125, 9.985362703446299e-05, 2.807131750159897e-05, 0.0003357576497364789, 0.0013231775956228375, 0.0001215702504850924, 3.771951378439553e-05, 0.0005021545221097767, 0.0010137403151020408, 0.0012280866503715515, 0.0012795374495908618, 0.008841759525239468, 0.009323826991021633, 0.016825437545776367, 0.00891886930912733]], [[0.32095274329185486, 0.03657433018088341, 0.02903362736105919, 0.03491799533367157, 0.030993400141596794, 0.03070320375263691, 0.055084649473428726, 0.06062694638967514, 0.03818162903189659, 0.03331824764609337, 0.020391203463077545, 0.023547625169157982, 0.04050157964229584, 0.042799871414899826, 0.03753434121608734, 0.044783469289541245, 0.06417066603899002, 0.05588439851999283], [0.6270635724067688, 0.0196485947817564, 0.023481935262680054, 0.013402273878455162, 0.019236881285905838, 0.012086833827197552, 0.02805490233004093, 0.047903336584568024, 0.04328364506363869, 0.014899875037372112, 0.01421300508081913, 0.012750568799674511, 0.025568433105945587, 0.009706293232738972, 0.0230654738843441, 0.008721264079213142, 0.025293776765465736, 0.03161938488483429], [0.40536078810691833, 0.0664295181632042, 0.004981621168553829, 0.04389466345310211, 0.033493973314762115, 0.021935241296887398, 0.05180380493402481, 0.1565890908241272, 0.00575615931302309, 0.013801383785903454, 0.017679067328572273, 0.008369453251361847, 0.004379190970212221, 0.0235377699136734, 0.007902444340288639, 0.018700119107961655, 0.02836604416370392, 0.0870196670293808], [0.20111793279647827, 0.014174417592585087, 0.004988879431039095, 0.01141006126999855, 0.0034991896245628595, 0.004238980822265148, 0.028442423790693283, 0.07409588992595673, 0.049695130437612534, 0.012472258880734444, 0.42873212695121765, 0.022212248295545578, 0.008408998139202595, 0.008909761905670166, 0.020608950406312943, 0.004046416841447353, 0.04108922556042671, 0.06185708940029144], [0.537833034992218, 0.043125707656145096, 0.010494218207895756, 0.007883302867412567, 0.0003141312045045197, 0.0044804844073951244, 0.02271520160138607, 0.09478296339511871, 0.06536903232336044, 0.027581872418522835, 0.01890648528933525, 0.009558402933180332, 0.016625244170427322, 0.002810331294313073, 0.017916947603225708, 0.005031290464103222, 0.02980063483119011, 0.08477074652910233], [0.4576583802700043, 0.04723799228668213, 0.020154519006609917, 0.016620799899101257, 0.006878830958157778, 0.00012640160275623202, 0.05278441309928894, 0.13098731637001038, 0.014170721173286438, 0.011137793771922588, 0.010640672408044338, 0.009528091177344322, 0.021817849949002266, 0.014055797830224037, 0.018151266500353813, 0.01410852000117302, 0.05510832369327545, 0.09883230179548264], [0.4591291844844818, 0.04578638821840286, 0.015587068162858486, 0.03312048316001892, 0.04013102129101753, 0.025582343339920044, 0.03181188181042671, 0.07595562189817429, 0.03561205044388771, 0.029739975929260254, 0.01302055548876524, 0.011191270314157009, 0.030542010441422462, 0.025690553709864616, 0.020363423973321915, 0.014886744320392609, 0.032931577414274216, 0.05891789123415947], [0.2784324288368225, 0.04997860640287399, 0.03713328763842583, 0.024212682619690895, 0.021068213507533073, 0.02695470117032528, 0.04621801897883415, 0.0697326809167862, 0.041210729628801346, 0.04421441629528999, 0.019020747393369675, 0.02496943064033985, 0.03141140937805176, 0.062061190605163574, 0.03563620522618294, 0.0504850409924984, 0.061593230813741684, 0.07566703110933304], [0.2206444889307022, 0.13422392308712006, 0.024385832250118256, 0.13795572519302368, 0.07034482061862946, 0.004185260273516178, 0.024063846096396446, 0.1057710349559784, 0.003749046241864562, 0.02343466877937317, 0.017828140407800674, 0.010275355540215969, 0.05075773596763611, 0.01463311817497015, 0.02883198671042919, 0.011088571511209011, 0.027561143040657043, 0.09026536345481873], [0.29760977625846863, 0.042845938354730606, 0.016185998916625977, 0.03252869099378586, 0.026974651962518692, 0.017992114648222923, 0.021680792793631554, 0.15741170942783356, 0.031598351895809174, 0.0062066032551229, 0.018163586035370827, 0.023859389126300812, 0.031724076718091965, 0.050020165741443634, 0.026917416602373123, 0.027360402047634125, 0.024986760690808296, 0.14593352377414703], [0.09272105991840363, 0.027519790455698967, 0.011971518397331238, 0.5726126432418823, 0.007813136093318462, 0.008383861742913723, 0.01405258383601904, 0.08472687751054764, 0.013918137177824974, 0.011164353229105473, 0.0039016029331833124, 0.004482250194996595, 0.039570339024066925, 0.0021411278285086155, 0.009028732776641846, 0.006218467373400927, 0.015157578513026237, 0.07461586594581604], [0.2873852550983429, 0.054623767733573914, 0.021894726902246475, 0.042454060167074203, 0.03366519510746002, 0.02629113756120205, 0.030040334910154343, 0.11816948652267456, 0.07899630814790726, 0.035132285207509995, 0.01995816081762314, 0.007402085233479738, 0.08104204386472702, 0.008409936912357807, 0.030704550445079803, 0.012122640386223793, 0.02595130354166031, 0.08575669676065445], [0.22128544747829437, 0.047447945922613144, 0.006567740347236395, 0.04068082943558693, 0.04146323725581169, 0.03512491658329964, 0.03534490987658501, 0.12833952903747559, 0.02265271358191967, 0.03419968858361244, 0.13316914439201355, 0.04648708924651146, 0.0034302854910492897, 0.02634247951209545, 0.01799965836107731, 0.030645180493593216, 0.03299737721681595, 0.09582189470529556], [0.3617018461227417, 0.04116459935903549, 0.008840714581310749, 0.014528943225741386, 0.00550812715664506, 0.006845358293503523, 0.029756896197795868, 0.2224249243736267, 0.01954120583832264, 0.0301659032702446, 0.006673789583146572, 0.005295419134199619, 0.012324048206210136, 0.0002981895231641829, 0.014630616642534733, 0.0006355512305162847, 0.02802179753780365, 0.19164203107357025], [0.5071396231651306, 0.04375411197543144, 0.013780048117041588, 0.023201901465654373, 0.024100152775645256, 0.016465894877910614, 0.02381468191742897, 0.08282022923231125, 0.018101396039128304, 0.023930193856358528, 0.008438127115368843, 0.012465999461710453, 0.026234351098537445, 0.025290265679359436, 0.02187524549663067, 0.024708451703190804, 0.030083009973168373, 0.07379626482725143], [0.3178822100162506, 0.04834682494401932, 0.009358709678053856, 0.02278856560587883, 0.013860547915101051, 0.0042919316329061985, 0.0438031442463398, 0.18213459849357605, 0.03201836347579956, 0.024363262578845024, 0.05903524532914162, 0.012949815019965172, 0.017695829272270203, 0.0005349763086996973, 0.03758526220917702, 0.00028382777236402035, 0.040576592087745667, 0.13249021768569946], [0.4141971468925476, 0.03777381032705307, 0.014003231190145016, 0.03874066844582558, 0.053667355328798294, 0.028834225609898567, 0.02745012380182743, 0.07035838067531586, 0.04546866565942764, 0.0331701785326004, 0.015442561358213425, 0.011666304431855679, 0.036778368055820465, 0.03280104324221611, 0.021880999207496643, 0.01863778568804264, 0.0340559259057045, 0.06507326662540436], [0.2861727774143219, 0.04888245463371277, 0.03397905454039574, 0.021918145939707756, 0.022333864122629166, 0.025343287736177444, 0.04974432289600372, 0.06773857772350311, 0.03847179189324379, 0.0408741794526577, 0.020850878208875656, 0.02409864030778408, 0.031604405492544174, 0.061999306082725525, 0.04047291353344917, 0.0458093099296093, 0.06745870411396027, 0.07224731892347336]], [[0.408369779586792, 0.03505634889006615, 0.021179934963583946, 0.028733057901263237, 0.02711358666419983, 0.016126440837979317, 0.05544150993227959, 0.10631505399942398, 0.03143152967095375, 0.027992643415927887, 0.013471405953168869, 0.015986310318112373, 0.025467030704021454, 0.013928499072790146, 0.021340712904930115, 0.017212631180882454, 0.04656509310007095, 0.08826841413974762], [0.06896554678678513, 0.033680275082588196, 0.017749469727277756, 0.050417810678482056, 0.06906351447105408, 0.036670465022325516, 0.3020959496498108, 0.19343651831150055, 0.09715010970830917, 0.02232600934803486, 0.008740195073187351, 0.009343208745121956, 0.024505799636244774, 0.004607504699379206, 0.007195362355560064, 0.009229895658791065, 0.028202379122376442, 0.01661996729671955], [0.5029242038726807, 0.033069200813770294, 0.02205822430551052, 0.02090946026146412, 0.014966350048780441, 0.03134956955909729, 0.14056052267551422, 0.10759786516427994, 0.021950915455818176, 0.047625474631786346, 0.0012523866025730968, 0.001631913473829627, 0.0067148515954613686, 0.003383016213774681, 0.004118779674172401, 0.0074762990698218346, 0.019923577085137367, 0.012487323023378849], [0.22934319078922272, 0.022205989807844162, 0.0136062977835536, 0.03162691742181778, 0.01429093349725008, 0.014042750932276249, 0.1955702006816864, 0.15989677608013153, 0.10733915120363235, 0.04630756005644798, 0.025479964911937714, 0.008309511467814445, 0.0645226314663887, 0.0036043343134224415, 0.004278132226318121, 0.009147240780293941, 0.029910149052739143, 0.020518261939287186], [0.3622117340564728, 0.014993713237345219, 0.01384651754051447, 0.03163367137312889, 0.05010487884283066, 0.04280446469783783, 0.14077556133270264, 0.1313035488128662, 0.06882064789533615, 0.01705947145819664, 0.013378631323575974, 0.017888542264699936, 0.027234425768256187, 0.00826996099203825, 0.005576442461460829, 0.010906696319580078, 0.02877374365925789, 0.014417425729334354], [0.48655086755752563, 0.017427196726202965, 0.022890605032444, 0.01449177972972393, 0.01733502186834812, 0.005947625730186701, 0.1292327344417572, 0.12228163331747055, 0.034204915165901184, 0.026933247223496437, 0.003329632803797722, 0.007536906749010086, 0.02538595162332058, 0.00581948971375823, 0.006096417549997568, 0.007682587951421738, 0.04435443505644798, 0.022499026730656624], [0.2964383065700531, 0.027965154498815536, 0.03612606227397919, 0.04107418656349182, 0.042996831238269806, 0.03744421526789665, 0.09338419884443283, 0.11798610538244247, 0.029320187866687775, 0.024866674095392227, 0.02443331480026245, 0.02379337139427662, 0.06549882143735886, 0.02760680951178074, 0.027008505538105965, 0.03000299446284771, 0.030270664021372795, 0.023783622309565544], [0.4819127023220062, 0.013822713866829872, 0.02074730582535267, 0.02157505787909031, 0.03972107544541359, 0.022724293172359467, 0.06082776188850403, 0.07592664659023285, 0.018242247402668, 0.031167753040790558, 0.013463537208735943, 0.039993662387132645, 0.036997780203819275, 0.029822181910276413, 0.02084302343428135, 0.02088232897222042, 0.034400008618831635, 0.016929911449551582], [0.056054312735795975, 0.006313319317996502, 0.0012158898171037436, 0.00349437166005373, 0.00271207676269114, 0.0015541845932602882, 0.0364927314221859, 0.017471401020884514, 0.1366838663816452, 0.018559779971837997, 0.08776495605707169, 0.115309938788414, 0.04925312474370003, 0.023778444156050682, 0.06133226305246353, 0.03098786436021328, 0.3242274224758148, 0.026794016361236572], [0.13408945500850677, 0.004871328826993704, 0.003345697419717908, 0.002365753287449479, 0.0009690854349173605, 0.001131689641624689, 0.014263243414461613, 0.02796490490436554, 0.09567340463399887, 0.20290832221508026, 0.025506362318992615, 0.0154530955478549, 0.15131929516792297, 0.025246039032936096, 0.04153428599238396, 0.07492636144161224, 0.12040212005376816, 0.058029655367136], [0.22906184196472168, 0.0055916691198945045, 0.0009131956030614674, 0.010169045999646187, 0.0025512438733130693, 0.0022034896537661552, 0.015493785962462425, 0.016369299963116646, 0.11790825426578522, 0.009240138344466686, 0.030729399994015694, 0.04900454729795456, 0.04672228544950485, 0.010934597812592983, 0.0789826288819313, 0.020766522735357285, 0.2842444181442261, 0.06911369413137436], [0.19644580781459808, 0.00551061425358057, 0.0018531179521232843, 0.007916921749711037, 0.004361140541732311, 0.004134137649089098, 0.013740711845457554, 0.014988034032285213, 0.14277814328670502, 0.013482092879712582, 0.023822348564863205, 0.0281613077968359, 0.03135208785533905, 0.04663702845573425, 0.033958710730075836, 0.09542068839073181, 0.2534492313861847, 0.08198796212673187], [0.28343436121940613, 0.0070771025493741035, 0.006420825608074665, 0.009775864891707897, 0.003369865007698536, 0.004412220790982246, 0.0070615410804748535, 0.012595622800290585, 0.05553988739848137, 0.01248275488615036, 0.018742073327302933, 0.02628900483250618, 0.025735976174473763, 0.03934268280863762, 0.10289798676967621, 0.16256777942180634, 0.1360224485397339, 0.08623208105564117], [0.4982929825782776, 0.01369821559637785, 0.010060945525765419, 0.0033272462897002697, 0.0014470330206677318, 0.0022592630703002214, 0.010261907242238522, 0.015838004648685455, 0.016509616747498512, 0.1043868213891983, 0.002459038980305195, 0.006533654406666756, 0.01024779211729765, 0.006239604204893112, 0.06506447494029999, 0.031807880848646164, 0.1284162551164627, 0.07314921170473099], [0.278795450925827, 0.0068181464448571205, 0.004313440062105656, 0.008145646192133427, 0.0044907270930707455, 0.002635402837768197, 0.012903740629553795, 0.017193224281072617, 0.03523383289575577, 0.009247096255421638, 0.016994450241327286, 0.013084549456834793, 0.0637669563293457, 0.022920705378055573, 0.13854902982711792, 0.07305796444416046, 0.17300179600715637, 0.11884783208370209], [0.6750248670578003, 0.007412255275994539, 0.008796656504273415, 0.004824212286621332, 0.002028362127020955, 0.0020868421997874975, 0.011612888425588608, 0.013263799250125885, 0.006423336453735828, 0.03338874131441116, 0.001640498056076467, 0.004992990754544735, 0.011621568351984024, 0.0033482119906693697, 0.032354533672332764, 0.013690919615328312, 0.10904854536056519, 0.05844084545969963], [0.3663770854473114, 0.017352918162941933, 0.015988215804100037, 0.014442641288042068, 0.015929346904158592, 0.008700591512024403, 0.02076534554362297, 0.024614451453089714, 0.019669638946652412, 0.013633951544761658, 0.011758944019675255, 0.01584061235189438, 0.033272139728069305, 0.030184630304574966, 0.05806661769747734, 0.08683179318904877, 0.13217227160930634, 0.11439887434244156], [0.7920008301734924, 0.01288311742246151, 0.012327831238508224, 0.010148278437554836, 0.013315784744918346, 0.006200702860951424, 0.018509315326809883, 0.017847469076514244, 0.006493482738733292, 0.008002284914255142, 0.0024569823872298002, 0.008124521002173424, 0.007288898807018995, 0.009198271669447422, 0.00979009922593832, 0.012786882929503918, 0.030893875285983086, 0.021731317043304443]], [[0.5366690754890442, 0.003622647374868393, 0.0013749715872108936, 0.005464241839945316, 0.0007989861769601703, 0.0016929578268900514, 0.07662682235240936, 0.14350590109825134, 0.002438287017866969, 0.002076012548059225, 0.0009762230329215527, 0.0007108587305992842, 0.0016881815390661359, 0.000833998725283891, 0.007657819893211126, 0.0015281193191185594, 0.09726191312074661, 0.11507291346788406], [0.7476437091827393, 0.005793314892798662, 0.007370953448116779, 0.01274452731013298, 0.004154524765908718, 0.005501919891685247, 0.04292525351047516, 0.07215248793363571, 0.003895572619512677, 0.0046030315570533276, 0.0015689623542129993, 0.0015363380080088973, 0.004243482835590839, 0.0012046769261360168, 0.00876053050160408, 0.004000014625489712, 0.0312128197401762, 0.040687885135412216], [0.41057100892066956, 0.004235431086272001, 0.0935913622379303, 0.008988595567643642, 0.005695252679288387, 0.01266716793179512, 0.11559569835662842, 0.11617811024188995, 0.011631682515144348, 0.0019818341825157404, 0.002263003960251808, 0.0008509937906637788, 0.0038880568463355303, 0.016327813267707825, 0.013477391563355923, 0.014028520323336124, 0.06948627531528473, 0.09854185581207275], [0.7977582216262817, 0.01403262559324503, 0.02012540027499199, 0.005823857616633177, 0.013389755971729755, 0.01366534922271967, 0.03113771416246891, 0.03722434863448143, 0.00387822138145566, 0.003597147995606065, 0.008413403294980526, 0.0023797473404556513, 0.007234296761453152, 0.0005333960871212184, 0.006523129530251026, 0.0018565626814961433, 0.016272224485874176, 0.01615455001592636], [0.7144118547439575, 0.004490814171731472, 0.009089356288313866, 0.016648825258016586, 0.0068082427605986595, 0.008522897958755493, 0.0952150821685791, 0.017895516008138657, 0.0031830386724323034, 0.006248298101127148, 0.016491547226905823, 0.004628240596503019, 0.0006927225622348487, 0.00023026001872494817, 0.021265724673867226, 0.0028325356543064117, 0.061630215495824814, 0.009714934043586254], [0.580128014087677, 0.0014100928092375398, 0.012978419661521912, 0.03847270458936691, 0.008458132855594158, 0.029307609423995018, 0.1158686950802803, 0.048847898840904236, 0.003374591236934066, 0.002322552027180791, 0.00578411016613245, 0.001701221102848649, 0.0034428087528795004, 0.0022403306793421507, 0.011531194671988487, 0.012460039928555489, 0.08632586151361465, 0.035345666110515594], [0.5326424241065979, 0.05756990239024162, 0.0041890074498951435, 0.019941158592700958, 0.004986030515283346, 0.009623748250305653, 0.13145168125629425, 0.08040367811918259, 0.006909061688929796, 0.009203621186316013, 0.001386898453347385, 0.0014663473702967167, 0.0028398260474205017, 0.00045767627307213843, 0.014728989452123642, 0.0012288212310522795, 0.08132188767194748, 0.03964913263916969], [0.00971802044659853, 0.9268496036529541, 0.0001258047268493101, 0.0023365917149931192, 0.00045404673437587917, 0.0008377744816243649, 0.029127564281225204, 0.00255272607319057, 0.0011999203125014901, 0.00375361368060112, 0.00029474886832758784, 0.00014692865079268813, 0.00014038280642125756, 2.9349546821322292e-05, 0.0035889206919819117, 8.830726437736303e-05, 0.017561888322234154, 0.0011938815005123615], [0.8898469805717468, 0.0020249527879059315, 0.001647873199544847, 0.003878379240632057, 0.0026345786172896624, 0.005133132450282574, 0.006491037551313639, 0.010614462196826935, 0.0007832538103684783, 0.011005867272615433, 0.020105093717575073, 0.006649763789027929, 0.00471733370795846, 0.00035033453605137765, 0.007814125157892704, 0.0009516734280623496, 0.014169585891067982, 0.011181444860994816], [0.6683849692344666, 0.0027591066900640726, 0.005099059082567692, 0.008784572593867779, 0.012027677148580551, 0.008761029690504074, 0.020289359614253044, 0.04242658615112305, 0.015637166798114777, 0.004741532262414694, 0.038531817495822906, 0.004747455008327961, 0.06035982817411423, 0.0014377031475305557, 0.014959566295146942, 0.007492058910429478, 0.03750487044453621, 0.046055711805820465], [0.5836392045021057, 0.00301366881467402, 0.011753669008612633, 0.005870434921234846, 0.03096615895628929, 0.03347928822040558, 0.014409626834094524, 0.030009882524609566, 0.02084701880812645, 0.015249492600560188, 0.04805629700422287, 0.012746850959956646, 0.07033456116914749, 0.018724657595157623, 0.021927574649453163, 0.014744327403604984, 0.028354696929454803, 0.03587266057729721], [0.7269658446311951, 0.002810519654303789, 0.0014270178508013487, 0.0040729474276304245, 0.008698376826941967, 0.003017868148162961, 0.026324043050408363, 0.036773886531591415, 0.007537943311035633, 0.0046029966324567795, 0.08471303433179855, 0.0006976778386160731, 0.001984714763239026, 0.0005935259978286922, 0.013348122127354145, 0.000672360067255795, 0.0434911772608757, 0.032267890870571136], [0.1909598857164383, 0.002218226669356227, 0.04354230687022209, 0.0031411289237439632, 0.0317499116063118, 0.029576806351542473, 0.009627311490476131, 0.05955741927027702, 0.020811431109905243, 0.015366451814770699, 0.3453698456287384, 0.010871455073356628, 0.011228853836655617, 0.03652256727218628, 0.03608296439051628, 0.08023582398891449, 0.013983037322759628, 0.05915457010269165], [0.35163426399230957, 0.0008202367462217808, 0.1756528913974762, 0.002688102889806032, 0.0006956520956009626, 0.005062268115580082, 0.015927782282233238, 0.04864279180765152, 0.0007693024817854166, 0.003908826503902674, 0.0011139789130538702, 0.0014374339953064919, 0.005322156939655542, 0.03729965537786484, 0.016580544412136078, 0.23512229323387146, 0.04215899482369423, 0.05516286566853523], [0.6542384624481201, 0.013341977261006832, 0.0014062949921935797, 0.003854511072859168, 0.003644242649897933, 0.01004706509411335, 0.03670203313231468, 0.06471146643161774, 0.007959761656820774, 0.021662766113877296, 0.006820282898843288, 0.002217019209638238, 0.005670372396707535, 0.003168731462210417, 0.009270092472434044, 0.01030033826828003, 0.07503320276737213, 0.06995134800672531], [0.5125508904457092, 0.0007114954059943557, 0.06258583813905716, 0.0038234409876167774, 0.0013585267588496208, 0.006350864190608263, 0.03643873706459999, 0.07522773742675781, 0.0020177443511784077, 0.0027568931691348553, 0.00243608420714736, 0.0009067946230061352, 0.003214168595150113, 0.055364128202199936, 0.03436872363090515, 0.025142379105091095, 0.08193350583314896, 0.09281198680400848], [0.4528334438800812, 0.046775784343481064, 0.0023994590155780315, 0.010029671713709831, 0.003374067135155201, 0.009358654730021954, 0.08623510599136353, 0.08375757187604904, 0.011989478021860123, 0.0222439244389534, 0.003146054921671748, 0.00264567113481462, 0.005251118913292885, 0.0009569644462317228, 0.030345061793923378, 0.0025939031038433313, 0.1459210216999054, 0.08014315366744995], [0.009822417050600052, 0.9220951199531555, 8.508333849022165e-05, 0.0016367516946047544, 0.00032516688224859536, 0.0007503070519305766, 0.022758150473237038, 0.0022131050936877728, 0.0013712452491745353, 0.004216616973280907, 0.0003850214707199484, 0.00022286511375568807, 0.00021498357818927616, 5.067864913144149e-05, 0.005622716620564461, 0.00015210622223094106, 0.026598691940307617, 0.0014788454864174128]], [[0.6988199949264526, 0.02446332573890686, 0.023238837718963623, 0.05681376904249191, 0.015044620260596275, 0.02523927390575409, 0.07497381418943405, 0.019924655556678772, 0.0039170184172689915, 0.005693632178008556, 0.008818036876618862, 0.0023239036090672016, 0.00259804236702621, 0.004800260998308659, 0.0070388056337833405, 0.005454113706946373, 0.006428851746022701, 0.014409095048904419], [0.013341831043362617, 0.0008474225178360939, 0.9848886728286743, 0.0003252850438002497, 3.284115518908948e-05, 7.838845340302214e-05, 0.0004358543665148318, 1.6745108950999565e-05, 4.49569513560899e-11, 4.535700526275832e-08, 1.4393264358147917e-08, 5.9427054388550005e-09, 1.540064853422507e-09, 1.8937289780751598e-07, 3.089757956331596e-05, 3.2213396394809024e-08, 2.6652262619109024e-08, 1.8060620732285315e-06], [0.016757259145379066, 3.939195812563412e-05, 0.00015269739378709346, 0.9822005033493042, 1.0627559277054388e-05, 5.98492761128e-06, 2.9358609026530758e-05, 0.0007914693560451269, 1.1113898246151166e-08, 4.089467653400902e-11, 5.528360436102275e-09, 2.485808003882539e-09, 1.9737870005087643e-08, 1.4224051936295723e-09, 5.080819320824048e-08, 1.195170079881791e-05, 3.294393735586709e-08, 5.967586957922322e-07], [0.0004009148688055575, 3.204210952389985e-05, 1.221826551045524e-05, 0.0002016672515310347, 0.9991436004638672, 0.00019874548888765275, 1.8649001276571653e-06, 7.074337190715596e-06, 8.819974368634576e-07, 1.8065829943125777e-09, 1.0594131095390674e-13, 2.5901758515800566e-09, 1.3346166838346107e-08, 6.299339383453173e-10, 1.2644171300257856e-11, 3.976017737272741e-08, 8.474834203298087e-07, 6.754097725547581e-09], [0.0003587817191146314, 2.6316067305742763e-05, 4.572898433252703e-06, 2.4423518425464863e-06, 5.808041532873176e-05, 0.9995415210723877, 3.414513230381999e-06, 2.0265329112589825e-06, 4.818289767172246e-08, 5.275412036098714e-07, 2.217931047154842e-11, 2.2645742973979172e-13, 3.272058846093273e-09, 3.3963922785318346e-09, 1.1384405917969076e-10, 3.8265588614416757e-11, 1.1788037213023017e-08, 2.29210922952916e-06], [0.015196706168353558, 7.419531175401062e-05, 0.0028927151579409838, 0.000120595570479054, 3.3542612072778866e-05, 0.0021127702202647924, 0.9783214926719666, 0.0012234512250870466, 1.1561445489860489e-07, 2.0427347408258356e-05, 1.3304534149938263e-06, 3.7648857365013555e-09, 9.718277571568734e-11, 2.0385114396503923e-07, 1.7179965894342786e-08, 4.622046745339503e-09, 9.476370799177403e-10, 2.3533702915301546e-06], [0.002963780425488949, 8.982213195452005e-09, 1.9472548956400715e-05, 0.000149362109368667, 3.970318630308611e-06, 1.0803350050991867e-05, 0.00016276916721835732, 0.9966842532157898, 2.391960606473731e-06, 6.501964548988326e-07, 6.362016051753017e-07, 1.849159161793068e-06, 5.04624919628327e-09, 3.246320573468964e-11, 1.1304641667209125e-08, 3.511788904120294e-08, 2.4341068050048875e-10, 1.4723229302404661e-09], [0.9925260543823242, 1.9126520101053757e-07, 4.559054911368321e-09, 2.2080048438510858e-05, 5.6178239901782945e-05, 5.3035724704386666e-05, 2.396391937509179e-05, 0.003012673929333687, 0.004292801953852177, 4.835069830733119e-06, 1.1449141084085568e-06, 3.699454396155488e-07, 6.412969923985656e-06, 2.379197816537726e-08, 8.060397835296662e-12, 1.184558868772001e-07, 4.14019485361905e-09, 8.156995079389162e-09], [0.010987430810928345, 6.847181452940276e-07, 1.0658988003342529e-07, 1.7567004795271401e-10, 7.082275601533183e-07, 0.00010182694677496329, 2.501020753697958e-05, 0.0001637170644244179, 0.0007245627348311245, 0.9876676201820374, 0.00010785678023239598, 3.1518368359684246e-06, 0.000143780154758133, 7.307147461688146e-05, 4.909373529926597e-08, 9.7755947781053e-10, 9.327982297691051e-08, 2.2955644851663237e-07], [0.0016571589512750506, 5.952424775301779e-09, 1.5615177062500152e-07, 1.0605673006480743e-09, 2.2828247538825286e-12, 1.3131984815117903e-06, 1.5593508578604087e-05, 0.00022414101113099605, 2.13609610000276e-06, 0.00021186079538892955, 0.997867226600647, 6.5256031120952684e-06, 1.8846486682377872e-06, 6.742739969922695e-06, 5.058571787230903e-06, 2.0170389802842692e-08, 2.096240498891677e-12, 1.3869603776583972e-07], [0.0002593377430457622, 4.657012969699892e-11, 6.885110792609339e-08, 2.8085489489626525e-10, 6.75636546709768e-10, 1.4096267555996356e-11, 9.013970903026802e-09, 8.146520849550143e-05, 1.4211375400918769e-06, 4.841902409680188e-06, 9.614925511414185e-05, 0.9992832541465759, 0.00024037256662268192, 1.3141982435627142e-06, 4.253809493093286e-06, 2.7584657800616696e-05, 4.990279300898237e-09, 7.753376413122126e-11], [0.00044669152703136206, 8.519777772164616e-09, 1.2958460970935448e-09, 2.313225833106003e-09, 5.398929303623845e-08, 4.3004792615874976e-08, 3.2249435760745016e-11, 8.971195711637847e-06, 0.00023515900829806924, 4.9415182729717344e-05, 1.5280746083590202e-05, 0.000235294719459489, 0.9988503456115723, 0.00011070170148741454, 6.799958100600634e-06, 1.8666256437427364e-05, 2.259231223433744e-05, 9.26803735978865e-08], [0.01979576237499714, 4.799546513822861e-05, 1.5093838783286628e-06, 1.01656738582534e-09, 3.390870872976848e-08, 6.431868087020121e-07, 8.91178402184778e-08, 1.1895791907079456e-08, 5.213615281718376e-07, 0.0006530119571834803, 0.00012434078962542117, 1.98064972209977e-05, 0.006899585481733084, 0.9715622067451477, 0.0002242482005385682, 5.057191810919903e-05, 0.00012590381084010005, 0.0004937250050716102], [0.5682762861251831, 6.5138433456013445e-06, 0.0012812350178137422, 1.292601297109286e-07, 3.5556232957922873e-10, 1.5354676463630312e-07, 3.551062491169432e-06, 1.3018774552620016e-05, 9.604872452939617e-10, 1.7327263776678592e-05, 0.0004324207257013768, 1.2228758350829594e-05, 0.00012216468167025596, 0.010407127439975739, 0.41521933674812317, 0.0005413384060375392, 0.00017712026601657271, 0.0034900775644928217], [0.0002477786620147526, 4.71336880636386e-09, 6.428090415511178e-08, 1.3842650332662743e-06, 2.3124897552406765e-09, 6.209595337924867e-11, 1.3911388707654737e-10, 3.643642187967089e-08, 1.7116922323978656e-09, 1.6635194740807768e-12, 1.1772953456556934e-07, 5.744476948166266e-05, 4.821693437406793e-05, 6.748380656063091e-06, 0.00016936886822804809, 0.99945467710495, 1.0535017281654291e-05, 3.677964286907809e-06], [0.02406776137650013, 3.193907332388335e-06, 7.033435167613789e-07, 2.657408515460702e-07, 0.00015324054402299225, 5.188976714975979e-08, 1.0205133404994626e-09, 1.2763524637193768e-07, 4.50725501366378e-08, 8.177244126272853e-08, 7.64057705993082e-11, 3.8804367363809433e-07, 0.0003469078801572323, 0.0005105736781843007, 6.631627002207097e-06, 0.0013494141167029738, 0.9733189940452576, 0.00024157902225852013], [0.01812838576734066, 9.623124242352787e-06, 1.1866019633544056e-07, 2.903189466607614e-09, 6.353751746956959e-09, 4.386985892779194e-05, 4.6549812893204034e-09, 1.3614659399863172e-09, 7.137205493279453e-09, 1.3712290858336473e-08, 4.2976715519671416e-09, 2.2693813842011856e-11, 2.828378910635365e-06, 0.00047104014083743095, 3.3721429645083845e-05, 3.551002373569645e-05, 0.0006022073212079704, 0.9806727766990662], [0.9999648332595825, 2.0680444023923883e-08, 5.223843800195027e-06, 2.6364961769331785e-08, 1.4620356036942894e-09, 2.67318589486365e-09, 4.545575393422041e-06, 3.3507923546949314e-08, 1.0577675887968319e-12, 5.436106079170777e-11, 6.580465616856657e-10, 2.563935452837285e-10, 1.9753497448871116e-11, 2.0941297407262027e-07, 3.203773758286843e-06, 3.4816257539205253e-06, 4.98498536671832e-07, 1.7971038687392138e-05]]], [[[0.41048306226730347, 0.022179385647177696, 0.031881626695394516, 0.022729504853487015, 0.009945773519575596, 0.008917178958654404, 0.060166239738464355, 0.1390417367219925, 0.012219917960464954, 0.011785422451794147, 0.014031385071575642, 0.013973420485854149, 0.012329917401075363, 0.006504470016807318, 0.015355909243226051, 0.014424142427742481, 0.06056307628750801, 0.13346777856349945], [0.24250046908855438, 0.030895112082362175, 0.17349740862846375, 0.03962859883904457, 0.006432553753256798, 0.03699127584695816, 0.08813225477933884, 0.09250285476446152, 0.01353526022285223, 0.021609336137771606, 0.01567075029015541, 0.018382001668214798, 0.01772882416844368, 0.012122666463255882, 0.02365565113723278, 0.019388854503631592, 0.061836324632167816, 0.08548979461193085], [0.06801578402519226, 0.04271895810961723, 0.13268591463565826, 0.03221091628074646, 0.012149874120950699, 0.0019990515429526567, 0.04999067634344101, 0.20187048614025116, 0.009034995920956135, 0.026581672951579094, 0.0026425218675285578, 0.013566527515649796, 0.06600767374038696, 0.020262347534298897, 0.020097533240914345, 0.07930516451597214, 0.042383212596178055, 0.17847666144371033], [0.39360007643699646, 0.015700040385127068, 0.0993192195892334, 0.014618759043514729, 0.005232505965977907, 0.01498157624155283, 0.055641721934080124, 0.1484028697013855, 0.01736396551132202, 0.015614712610840797, 0.0061594718135893345, 0.009455908089876175, 0.014260327443480492, 0.0028207646682858467, 0.009834682568907738, 0.002505263313651085, 0.03908107057213783, 0.13540704548358917], [0.45644986629486084, 0.015692656859755516, 0.014548963867127895, 0.015509076416492462, 0.006509296130388975, 0.024150501936674118, 0.0357629656791687, 0.15326392650604248, 0.007947958074510098, 0.02711547538638115, 0.015058889053761959, 0.007829043082892895, 0.005529699847102165, 0.01854166015982628, 0.009472601115703583, 0.007673527579754591, 0.030018258839845657, 0.1489255577325821], [0.1728684902191162, 0.0342039056122303, 0.003396799322217703, 0.03817978873848915, 0.004363297019153833, 0.007052283268421888, 0.0894412100315094, 0.2809889018535614, 0.008164633065462112, 0.01778312772512436, 0.0023928419686853886, 0.005890576168894768, 0.0025511698331683874, 0.0013909951085224748, 0.014290428720414639, 0.0005463556735776365, 0.05887413024902344, 0.25762107968330383], [0.5288692116737366, 0.009768236428499222, 0.006482081022113562, 0.014649521559476852, 0.007647046819329262, 0.008163033053278923, 0.03254604712128639, 0.16374899446964264, 0.006695815362036228, 0.008876500651240349, 0.005264695733785629, 0.007607227191329002, 0.005558808334171772, 0.0017663369653746486, 0.0048037078231573105, 0.003458920167759061, 0.025130221620202065, 0.15896359086036682], [0.6415647268295288, 0.00712309405207634, 0.016498085111379623, 0.0071295504458248615, 0.0022226290311664343, 0.002763110212981701, 0.0335630364716053, 0.11134777218103409, 0.00272642495110631, 0.0053002964705228806, 0.0032272757962346077, 0.0013970502186566591, 0.0020886678248643875, 0.010999124497175217, 0.0033246739767491817, 0.004370503593236208, 0.03676392883062363, 0.10759011656045914], [0.6517054438591003, 0.00446524890139699, 0.0008362498483620584, 0.021132897585630417, 0.003092499217018485, 0.010977929458022118, 0.025190824642777443, 0.11402782052755356, 0.005206739064306021, 0.00602384191006422, 0.00844753161072731, 0.006036211270838976, 0.010916400700807571, 0.0010213990462943912, 0.004242137540131807, 0.003119266591966152, 0.02289613150060177, 0.10066135227680206], [0.31994709372520447, 0.016088590025901794, 0.23362354934215546, 0.011928193271160126, 0.0039856028743088245, 0.018287088721990585, 0.05351793393492699, 0.09430834650993347, 0.01729806326329708, 0.005375312641263008, 0.03370123729109764, 0.011579162441194057, 0.02333967573940754, 0.002992469584569335, 0.015329686924815178, 0.007776186335831881, 0.048274535685777664, 0.08264711499214172], [0.522566020488739, 0.006948432419449091, 0.023267382755875587, 0.003349936567246914, 0.0018638058099895716, 0.003045848570764065, 0.032673127949237823, 0.16296552121639252, 0.005462600849568844, 0.009451394900679588, 0.007559807505458593, 0.0032505986746400595, 0.02731727622449398, 0.0027111023664474487, 0.004873099271208048, 0.0024479683488607407, 0.034602656960487366, 0.14564332365989685], [0.49064433574676514, 0.0100944759324193, 0.011842319741845131, 0.01189664751291275, 0.0049193138256669044, 0.018855731934309006, 0.047505538910627365, 0.17613446712493896, 0.003372772829607129, 0.0064629558473825455, 0.005381763447076082, 0.001827312633395195, 0.002642498118802905, 0.002953891409561038, 0.007185230031609535, 0.0014498066157102585, 0.035675905644893646, 0.161155104637146], [0.10472225397825241, 0.03256503865122795, 0.004003938753157854, 0.023036055266857147, 0.012121281586587429, 0.0007078967173583806, 0.05851662531495094, 0.23173949122428894, 0.019836943596601486, 0.026585500687360764, 0.027817875146865845, 0.006131441332399845, 0.08615343272686005, 0.05451568216085434, 0.029610533267259598, 0.0054361759684979916, 0.0736670047044754, 0.20283280313014984], [0.012466351501643658, 0.07768801599740982, 0.06678450852632523, 0.004964115098118782, 0.004168947227299213, 0.0012415117816999555, 0.0221115555614233, 0.16524186730384827, 0.00046833796659484506, 0.004404434934258461, 0.0006583996000699699, 0.006358356215059757, 0.0119535643607378, 0.016902990639209747, 0.007396238390356302, 0.4226495623588562, 0.0291607603430748, 0.14538045227527618], [0.3621971905231476, 0.015938591212034225, 0.016383256763219833, 0.014239253476262093, 0.007173337507992983, 0.007932120934128761, 0.03772057965397835, 0.19661113619804382, 0.01315724104642868, 0.01504933089017868, 0.013579693622887135, 0.013838274404406548, 0.02003900147974491, 0.017797917127609253, 0.006964103784412146, 0.019998494535684586, 0.039802223443984985, 0.18157818913459778], [0.013020187616348267, 0.07120100408792496, 0.057807307690382004, 0.009664873592555523, 0.0028674553614109755, 0.000877963553648442, 0.04227424040436745, 0.24330267310142517, 0.0010516524780541658, 0.012401130050420761, 0.0033770594745874405, 0.0016537930350750685, 0.0036120163276791573, 0.24096006155014038, 0.015868034213781357, 0.019589189440011978, 0.04584785923361778, 0.21462346613407135], [0.5698583722114563, 0.008143335580825806, 0.0043904767371714115, 0.010047337040305138, 0.005261255893856287, 0.008230789564549923, 0.029459677636623383, 0.148011714220047, 0.006483671721071005, 0.006472637411206961, 0.010877187363803387, 0.006797253619879484, 0.004722068551927805, 0.0023535615764558315, 0.005383889190852642, 0.0038744634948670864, 0.030855264514684677, 0.1387770026922226], [0.6395006775856018, 0.0071521359495818615, 0.01480559166520834, 0.006965959444642067, 0.002141870791092515, 0.0026967141311615705, 0.03302450478076935, 0.11340627074241638, 0.002611186122521758, 0.005183137953281403, 0.003307203995063901, 0.001387930242344737, 0.00210313918069005, 0.011551883071660995, 0.0032608776818960905, 0.004722073674201965, 0.03682675212621689, 0.10935207456350327]], [[0.46248865127563477, 0.031068457290530205, 0.006144278217107058, 0.014802747406065464, 0.012910256162285805, 0.007381013128906488, 0.03889605402946472, 0.155929833650589, 0.009618544019758701, 0.011196997947990894, 0.006434344686567783, 0.007767225615680218, 0.006640628445893526, 0.016391240060329437, 0.013254743069410324, 0.008501273579895496, 0.03108721598982811, 0.15948647260665894], [0.7185338735580444, 0.03322257846593857, 0.007092181593179703, 0.021706484258174896, 0.00033139539300464094, 0.0003377244283910841, 0.005087394267320633, 0.09028077870607376, 0.0007008712855167687, 0.00056145602138713, 3.4564713132567704e-05, 0.00018844239821191877, 0.005060547962784767, 0.0013642829144373536, 0.0018059726571664214, 0.0017627422930672765, 0.02495473064482212, 0.08697398751974106], [0.36571386456489563, 0.2619903087615967, 0.0011159830028191209, 0.03810329735279083, 0.0007117699133232236, 0.005627007689327002, 0.01440725289285183, 0.09368530660867691, 3.913603359251283e-05, 6.976300210226327e-05, 0.0005830798763781786, 3.003724486916326e-05, 0.0004242275608703494, 0.005111657083034515, 0.002605730900540948, 0.00026330730179324746, 0.005296613089740276, 0.20422163605690002], [0.387296199798584, 0.06860289722681046, 0.11096227169036865, 0.01818835362792015, 0.0004155013884883374, 0.0021947817876935005, 0.040356073528528214, 0.17851068079471588, 0.0003789684851653874, 0.0011449828743934631, 2.9739008823526092e-05, 3.424731767154299e-05, 5.128536213305779e-05, 0.0007720707799308002, 0.002867641858756542, 0.000668564869556576, 0.0037695772480219603, 0.18375623226165771], [0.18055981397628784, 0.005064310971647501, 0.001437961240299046, 0.5145166516304016, 0.010763626545667648, 0.0005054826615378261, 0.021132996305823326, 0.14820311963558197, 0.00032641549478285015, 6.97719442541711e-05, 0.00018894993991125375, 0.0007279908750206232, 2.3428314307238907e-05, 0.0004729516222141683, 0.00023648765636608005, 0.010569355450570583, 0.0037098033353686333, 0.10149092227220535], [0.1955549716949463, 0.018833233043551445, 0.0008443479891866446, 0.25352397561073303, 0.10342889279127121, 0.001610313425771892, 0.054462775588035583, 0.19899097084999084, 0.0001879141927929595, 0.0006254276959225535, 3.387433389434591e-05, 0.00013241295528132468, 0.00016516787582077086, 0.00031395681435242295, 4.2716143070720136e-05, 0.0006969004170969129, 0.022406326606869698, 0.1481458693742752], [0.32574132084846497, 0.03241702914237976, 0.004789676517248154, 0.06268501281738281, 0.011686540208756924, 0.05324592441320419, 0.09965179860591888, 0.17308513820171356, 0.004386698827147484, 0.0076475623063743114, 0.0005442131659947336, 0.00027243970544077456, 0.0005385929835028946, 0.0020362918730825186, 0.0006741533288732171, 0.00042387869325466454, 0.005234168376773596, 0.21493946015834808], [0.6877604126930237, 0.013357890769839287, 0.001155511592514813, 0.006766709499061108, 0.002177779795601964, 0.001057893387041986, 0.05776643753051758, 0.09329553693532944, 0.0047929598949849606, 0.009202925488352776, 0.004323957022279501, 0.0012017842382192612, 0.0036895843222737312, 0.002360130427405238, 0.006023014895617962, 0.0011016344651579857, 0.011989069171249866, 0.09197679162025452], [0.8074590563774109, 0.000195902626728639, 3.524066778481938e-05, 0.0005433170008473098, 9.587645763531327e-06, 2.5362987798871472e-05, 0.0032701732125133276, 0.13106048107147217, 0.0012684797402471304, 0.005972197744995356, 0.0009632279397919774, 0.00017421480151824653, 2.4209726689150557e-05, 3.083514093304984e-05, 8.695622091181576e-05, 6.428614597098203e-06, 0.00020260833844076842, 0.04867177456617355], [0.524001955986023, 0.00018371678015682846, 7.434788130922243e-05, 0.0013236504746600986, 6.052235221432056e-06, 0.0008484047721140087, 0.007680181413888931, 0.2548110783100128, 0.03919048607349396, 0.0037106696981936693, 0.019721752032637596, 0.0009970876853913069, 0.0008372269221581519, 0.0016092050354927778, 5.321136268321425e-05, 0.0001081439622794278, 0.0013496638275682926, 0.14349330961704254], [0.2536250948905945, 0.0003752741904463619, 0.00013067912368569523, 4.373935007606633e-05, 1.0266957133353571e-06, 0.0001126428905990906, 0.0093154888600111, 0.21323935687541962, 0.02657410502433777, 0.3312443792819977, 0.005489998962730169, 0.0015059432480484247, 0.0011901273392140865, 0.004189156461507082, 0.0007885210798121989, 1.26924023788888e-05, 0.002771033439785242, 0.14939069747924805], [0.02285807393491268, 0.000982922618277371, 0.00013445885269902647, 0.003244121326133609, 2.0011434571642894e-06, 0.0002213220577687025, 0.015251879580318928, 0.10891859978437424, 0.001978230429813266, 0.038025155663490295, 0.7124751806259155, 0.0017049299785867333, 0.0028317244723439217, 0.0137467160820961, 0.005167372990399599, 2.6511363103054464e-05, 0.0009032475645653903, 0.07152760028839111], [0.37545058131217957, 0.0016478166216984391, 7.552349416073412e-05, 0.001029294915497303, 3.1261133699445054e-06, 2.1159260086278664e-06, 0.0036964735481888056, 0.28425681591033936, 0.006151278968900442, 0.024861710146069527, 0.0802556574344635, 0.036044955253601074, 0.0008765638340264559, 0.014473755843937397, 0.0403493233025074, 0.0005863129044882953, 0.008269906975328922, 0.12196875363588333], [0.4672282338142395, 0.007776134647428989, 0.00041941917152144015, 0.0007148025324568152, 5.192075332161039e-05, 2.681213663890958e-05, 0.0013074689777567983, 0.1292279213666916, 0.0004764127661474049, 0.004360479302704334, 0.00026918231742456555, 0.01453615166246891, 0.1814325600862503, 0.0027088148053735495, 0.025264212861657143, 0.0007124324911274016, 0.04208560287952423, 0.12140141427516937], [0.20678310096263885, 0.017141200602054596, 7.342323078773916e-05, 0.00049034837866202, 0.0002311451971763745, 5.894497371627949e-05, 0.004617524333298206, 0.14960579574108124, 0.0006167823448777199, 0.0008483532583341002, 0.005989954341202974, 0.002454728353768587, 0.0249225664883852, 0.17643067240715027, 0.01925051398575306, 0.002727511106058955, 0.09475553035736084, 0.29300180077552795], [0.15218405425548553, 0.003848828375339508, 0.014599175192415714, 0.0006475598784163594, 2.1825951534992782e-06, 1.1759399967559148e-05, 0.0024566156789660454, 0.14633437991142273, 3.960045432904735e-05, 0.001628390746191144, 0.0011800596257671714, 0.003069070167839527, 0.00025940302293747663, 0.019904272630810738, 0.4424070417881012, 0.0008598743588663638, 0.02454233169555664, 0.1860254555940628], [0.4421442747116089, 0.002933231648057699, 0.0007026009261608124, 0.0031028022058308125, 0.0006425220635719597, 9.561469778418541e-05, 0.0027762209065258503, 0.15431268513202667, 0.0009203975787386298, 0.0004431812558323145, 0.00038735364796593785, 0.004089856054633856, 0.002761353272944689, 0.00552881695330143, 0.028393208980560303, 0.06665049493312836, 0.09242101013660431, 0.19169439375400543], [0.6866924166679382, 0.013480518013238907, 0.001036844332702458, 0.006195941008627415, 0.003718856954947114, 0.0009861482540145516, 0.026033669710159302, 0.09064270555973053, 0.004855248611420393, 0.00708780949935317, 0.002017053309828043, 0.0010867438977584243, 0.007539696991443634, 0.0035062998067587614, 0.008031816221773624, 0.0019054178847000003, 0.03764643892645836, 0.09753632545471191]], [[0.15915706753730774, 0.025982538238167763, 0.010177387855947018, 0.021579155698418617, 0.02142207697033882, 0.03453708440065384, 0.06742031127214432, 0.07876638323068619, 0.061091456562280655, 0.047820866107940674, 0.04052190110087395, 0.03116336464881897, 0.04537665471434593, 0.045751847326755524, 0.04754588380455971, 0.042364392429590225, 0.13755397498607635, 0.08176768571138382], [0.15448983013629913, 0.15827125310897827, 0.062254998832941055, 0.05895471200346947, 0.02546028234064579, 0.03648654744029045, 0.1135750338435173, 0.08567876368761063, 0.02455889992415905, 0.055267177522182465, 0.014423210173845291, 0.01291271299123764, 0.020236840471625328, 0.031339652836322784, 0.01958671770989895, 0.01426240336149931, 0.035524770617485046, 0.07671613246202469], [0.10699436068534851, 0.03320922702550888, 0.4373771548271179, 0.021668212488293648, 0.001900972449220717, 0.014281497336924076, 0.048032015562057495, 0.060496117919683456, 0.01755484752357006, 0.014646841213107109, 0.011983916163444519, 0.010676677338778973, 0.011313281022012234, 0.053448669612407684, 0.025788534432649612, 0.02853456139564514, 0.04105165973305702, 0.06104140356183052], [0.12197820097208023, 0.07973062247037888, 0.03164880350232124, 0.1485532820224762, 0.02738480269908905, 0.03058951534330845, 0.09230692684650421, 0.09649387747049332, 0.019477060064673424, 0.041964322328567505, 0.0322236642241478, 0.029485806822776794, 0.03862898796796799, 0.018663085997104645, 0.030959615483880043, 0.02079896256327629, 0.04585647955536842, 0.09325601160526276], [0.08139893412590027, 0.043674539774656296, 0.007658720016479492, 0.04085156321525574, 0.26363441348075867, 0.08453965932130814, 0.04729049652814865, 0.10176669806241989, 0.021084357053041458, 0.018273290246725082, 0.015956534072756767, 0.03242127597332001, 0.02637929655611515, 0.02842896059155464, 0.01989162527024746, 0.02568398416042328, 0.036767322570085526, 0.1042981743812561], [0.14506496489048004, 0.03586437180638313, 0.006397253833711147, 0.02794617973268032, 0.010318458080291748, 0.329653799533844, 0.09143826365470886, 0.10277752578258514, 0.01563846692442894, 0.005066259298473597, 0.005131978075951338, 0.005692821461707354, 0.00572325149551034, 0.007742875721305609, 0.010896904394030571, 0.0048595028929412365, 0.07834988832473755, 0.11143717169761658], [0.11954256147146225, 0.06823086738586426, 0.018338406458497047, 0.06743555516004562, 0.037342485040426254, 0.05138305574655533, 0.1369820386171341, 0.1429908275604248, 0.02088785730302334, 0.022305160760879517, 0.01538777630776167, 0.021284205839037895, 0.016710203140974045, 0.024218197911977768, 0.018128776922822, 0.017600052058696747, 0.06103193759918213, 0.14020000398159027], [0.251545250415802, 0.021991416811943054, 0.027282625436782837, 0.021869756281375885, 0.009045012295246124, 0.024684369564056396, 0.042285528033971786, 0.18722939491271973, 0.012713219039142132, 0.01746513321995735, 0.007851305417716503, 0.009778260253369808, 0.012564425356686115, 0.05623793974518776, 0.02185734361410141, 0.033936627209186554, 0.05489866062998772, 0.18676385283470154], [0.03328987956047058, 0.05005520209670067, 0.0033570299856364727, 0.02080634795129299, 0.00467046769335866, 0.004181514494121075, 0.015384274534881115, 0.12164609134197235, 0.33927151560783386, 0.07091110944747925, 0.04974469915032387, 0.027252042666077614, 0.015420578420162201, 0.019021781161427498, 0.04641589894890785, 0.011057347059249878, 0.04537547007203102, 0.12213867902755737], [0.025728454813361168, 0.0517200268805027, 0.006776852998882532, 0.02555641159415245, 0.004255283623933792, 0.0011918043019250035, 0.008872810751199722, 0.13227170705795288, 0.026135234162211418, 0.31599509716033936, 0.06691847741603851, 0.02435830421745777, 0.04973920062184334, 0.022314297035336494, 0.04115836322307587, 0.015223142690956593, 0.03799542039632797, 0.1437891721725464], [0.02903570421040058, 0.030670346692204475, 0.0014151795767247677, 0.019248194992542267, 0.00556017505005002, 0.0014086604351177812, 0.008513138629496098, 0.13990822434425354, 0.049678608775138855, 0.08827958256006241, 0.268351286649704, 0.058560967445373535, 0.04150829091668129, 0.006820357870310545, 0.05087738856673241, 0.009293009527027607, 0.04494519531726837, 0.14592549204826355], [0.03884414583444595, 0.032851047813892365, 0.008965653367340565, 0.04875017702579498, 0.010228895582258701, 0.00294537958689034, 0.01829981617629528, 0.16276557743549347, 0.034521933645009995, 0.045510753989219666, 0.05471959710121155, 0.11211194097995758, 0.05879780277609825, 0.048936519771814346, 0.048122894018888474, 0.04336853325366974, 0.05032534524798393, 0.1799340844154358], [0.055632155388593674, 0.022168345749378204, 0.0050419350154697895, 0.01012501958757639, 0.003886986756697297, 0.0017256863648071885, 0.018959954380989075, 0.11295192688703537, 0.013663267716765404, 0.01882089488208294, 0.012041531503200531, 0.010190640576183796, 0.3481351435184479, 0.05559425801038742, 0.03468998521566391, 0.07769330590963364, 0.07034137845039368, 0.12833766639232635], [0.06432493031024933, 0.018406610935926437, 0.0030194108840078115, 0.0038188411854207516, 0.0010992982424795628, 0.0009496885468252003, 0.01735827699303627, 0.10811292380094528, 0.0059360321611166, 0.003089240053668618, 0.0035972227342426777, 0.0032897228375077248, 0.012066056951880455, 0.42356207966804504, 0.03444059193134308, 0.10830845683813095, 0.0688311755657196, 0.1197894737124443], [0.10043665021657944, 0.021352743729948997, 0.003687869757413864, 0.01795804128050804, 0.00698624923825264, 0.003859313204884529, 0.02593044377863407, 0.15295752882957458, 0.024360250681638718, 0.014530614018440247, 0.02833014726638794, 0.01684160716831684, 0.05702533572912216, 0.06712672114372253, 0.127043217420578, 0.0799950584769249, 0.0851791501045227, 0.1663990467786789], [0.08664295822381973, 0.01068065408617258, 0.005051865242421627, 0.0039730314165353775, 0.0007793995318934321, 0.0006704758852720261, 0.014646691270172596, 0.09003929048776627, 0.002783259842544794, 0.002168768085539341, 0.005433287005871534, 0.005742891691625118, 0.018213314935564995, 0.27480730414390564, 0.02515840344130993, 0.30237194895744324, 0.052402496337890625, 0.09843400120735168], [0.15918192267417908, 0.02849520556628704, 0.009868058376014233, 0.02289295382797718, 0.014430399984121323, 0.01564134657382965, 0.040094077587127686, 0.19739387929439545, 0.02751941606402397, 0.037233538925647736, 0.03430642932653427, 0.020653672516345978, 0.02006329596042633, 0.04309127852320671, 0.024230822920799255, 0.028205906972289085, 0.08526952564716339, 0.1914283037185669], [0.2816135287284851, 0.021359693259000778, 0.027841918170452118, 0.021237224340438843, 0.00874271709471941, 0.023226138204336166, 0.04176893085241318, 0.18424326181411743, 0.012212969362735748, 0.01654926687479019, 0.007511529140174389, 0.009180829860270023, 0.011625915765762329, 0.05247091129422188, 0.02055247686803341, 0.030133668333292007, 0.05139797180891037, 0.17833106219768524]], [[0.39533430337905884, 0.022898752242326736, 0.013821201398968697, 0.0775483250617981, 0.00259297713637352, 0.006614973768591881, 0.3437402844429016, 0.06828334927558899, 0.0004175345238763839, 0.00023867323761805892, 0.0006068805232644081, 0.0005168254137970507, 0.00038177374517545104, 0.00233101355843246, 0.0015050198417156935, 0.0016755693359300494, 0.011821487918496132, 0.04967112839221954], [1.558656066436015e-07, 2.607014948807773e-06, 0.9999951124191284, 8.93930177880975e-07, 1.1012250666908585e-07, 6.952761566481058e-08, 1.432716913996046e-07, 4.234523487411934e-07, 1.2065747164412277e-14, 2.1432082497607752e-10, 2.4056312497577892e-11, 3.409765525486108e-11, 9.464334697895094e-12, 6.792996742888135e-08, 2.2901170382283453e-07, 2.1071776268311027e-10, 2.066921772625463e-10, 1.8303715876299975e-07], [3.1895905294732074e-07, 2.741083271473599e-08, 1.82756831890174e-08, 0.9999954700469971, 1.0096636859913133e-09, 4.554925325805925e-09, 3.3676775501589873e-07, 2.893044211305096e-06, 7.575084765183704e-13, 4.629118171852701e-16, 3.579148435961521e-11, 7.111324029640542e-11, 1.4356195052189769e-11, 9.897421424098773e-14, 5.087711585360921e-08, 1.3071901605599123e-07, 2.1630898461300063e-10, 8.284411023851135e-07], [3.9437182408619265e-07, 3.746648189917323e-06, 3.601245737172576e-07, 8.061489643296227e-05, 0.9998865127563477, 1.0584019037196413e-05, 1.388958850156996e-07, 1.361160320811905e-05, 2.594674031186628e-09, 3.497444001077099e-11, 1.1803089659007007e-15, 2.121607473037912e-10, 2.1031064389998022e-10, 5.976777406324629e-10, 4.801687137636311e-14, 1.5453809343313196e-09, 2.246498276292641e-08, 4.049686594953528e-06], [3.24575255561399e-09, 1.656312917930336e-07, 3.1797432598068553e-07, 2.934291920553278e-08, 1.909241973407916e-06, 0.9999970197677612, 2.5637467260253288e-08, 6.12508017638902e-08, 3.3445657268010853e-12, 1.323162968080993e-10, 5.691213017348928e-14, 4.048311915085163e-17, 6.714716976885526e-11, 2.470416093913741e-09, 2.542872325466544e-13, 7.393844786646522e-14, 6.196053392582002e-11, 4.2655705101424246e-07], [2.9870798243791796e-06, 4.95779666209728e-08, 1.0676831152522936e-07, 6.439920241518848e-08, 5.4662104703728787e-11, 1.0449752352315045e-07, 0.9999790191650391, 6.635695626755478e-06, 9.018800246549108e-13, 1.1910325503627917e-10, 6.681723924151228e-11, 2.465654362539954e-13, 1.720283384023469e-17, 4.0135159085075145e-11, 2.636648928702745e-12, 5.685121834018633e-14, 7.922762272627448e-12, 1.105033607018413e-05], [0.031495992094278336, 3.732567144254517e-09, 2.2784337971870627e-08, 3.658115383586846e-05, 3.029657191788715e-09, 1.8581534533268496e-08, 0.0010479956399649382, 0.9505757093429565, 8.234237292015223e-09, 1.5480035031600892e-08, 1.1622410811540362e-09, 1.850855397833584e-07, 1.0867456240459816e-11, 3.08970026213079e-13, 5.016760340481596e-10, 1.2746710631450497e-10, 2.116740560609287e-09, 0.016843482851982117], [0.6555027365684509, 0.00231177662499249, 5.606389095191844e-05, 0.03449440747499466, 0.0015668310225009918, 0.005495816003531218, 0.08228211849927902, 0.10423523932695389, 0.0034140930511057377, 0.0013552125310525298, 0.003043252509087324, 0.003629965241998434, 0.004464301280677319, 0.0018997350707650185, 0.00046963480417616665, 0.0007646034355275333, 0.019334236159920692, 0.07567994296550751], [1.8406169033369224e-07, 4.1120269855809966e-08, 1.0728591626207873e-10, 5.822224213164473e-13, 5.052419815854137e-09, 3.316987928769777e-08, 2.438247825864437e-08, 2.371670461798203e-06, 1.6283123841276392e-05, 0.9999721050262451, 5.027574729865592e-07, 1.342121436209709e-07, 1.0557322127624502e-07, 6.71790348860668e-06, 2.1234560984573214e-11, 1.3879942659632272e-13, 4.725938751448666e-09, 1.5143425571295666e-06], [1.7793748696703915e-08, 1.0406816901287197e-11, 2.2189250437065766e-11, 1.0250503224007446e-10, 3.004141049082489e-15, 1.5181896850791077e-09, 3.6729090879816795e-08, 7.742771686025662e-07, 4.954822685476756e-08, 1.001066902972525e-05, 0.9999779462814331, 8.838514986564405e-06, 1.8046721095288376e-07, 1.8829357628646903e-08, 1.6299027265631594e-06, 7.827229142609582e-11, 1.1128460349410507e-12, 4.7243577228073264e-07], [5.873142527867969e-10, 2.5263584356016028e-14, 4.134133898929526e-13, 2.674344307205395e-13, 1.7990349607168582e-13, 2.309319029094725e-17, 4.7689192005095915e-12, 3.4369145396340173e-07, 2.787681419036403e-09, 2.103203229353312e-07, 4.05442278861301e-06, 0.9999939203262329, 1.4793318996453309e-06, 8.354331670901161e-10, 3.1254590027174345e-08, 1.972360408331042e-08, 1.654163785114182e-11, 7.72309327601306e-09], [9.504051989850382e-10, 2.496597980433668e-12, 3.190249171607096e-13, 4.056136503061136e-12, 2.0364876451850478e-11, 6.595913919216212e-12, 9.762125020840434e-15, 1.4715602958403906e-07, 3.094965350669554e-08, 5.513827261438564e-08, 8.246757232655e-08, 1.1301539416308515e-05, 0.9999876022338867, 2.8534913099065307e-07, 1.5278057929890565e-08, 4.834945457332651e-07, 7.770775312110345e-08, 2.633831996945446e-08], [2.1989743359540626e-08, 1.9388834004985256e-07, 8.831703701694948e-10, 8.05706209757763e-14, 1.9377269233622485e-10, 1.0012118911717494e-09, 3.157802838660295e-11, 1.0606164835280651e-07, 3.3341232552608346e-10, 1.9058089719692362e-06, 2.3567591256323794e-07, 1.8459310524576722e-07, 0.00014087359886616468, 0.9998519420623779, 1.7371579588143504e-06, 1.8874814600167156e-07, 5.596685923592304e-07, 1.9828016775136348e-06], [6.886859296173498e-07, 1.186980291834061e-09, 4.000370665835362e-07, 5.22925425183729e-10, 2.2172271546441573e-14, 1.715589476036783e-11, 1.449188502533616e-08, 5.420965408120537e-06, 4.307172701183484e-14, 6.967550980618853e-10, 8.915012585930526e-07, 2.6906270989002223e-08, 3.263069459080725e-08, 4.232300852891058e-06, 0.9999655485153198, 3.909342183305853e-07, 4.704986167780589e-06, 1.764976514095906e-05], [3.279283689039403e-08, 1.4695845651502282e-09, 2.563859125004342e-09, 2.621040096073557e-07, 5.2911727083104765e-11, 6.292648422733665e-14, 4.223633161964946e-12, 8.219879532589403e-07, 2.724586181668265e-12, 1.6177234925989284e-14, 2.226385298342848e-09, 8.348372830369044e-06, 2.293836405442562e-05, 6.056960728528793e-07, 2.458119524817448e-05, 0.9999402761459351, 5.909681135563005e-07, 1.5656670484531787e-06], [3.548288077581674e-06, 9.116015498022989e-09, 2.1996758581277476e-10, 1.869510324326029e-09, 2.678782777820743e-07, 5.822290566337429e-12, 2.93480101332122e-11, 6.3149473135126755e-06, 2.982894140024506e-11, 1.1201801639049158e-11, 2.476281678353339e-14, 2.3510222657563418e-09, 5.418261821432679e-07, 5.529077952814987e-06, 6.347367502712586e-07, 1.263127433048794e-05, 0.999950647354126, 1.9843717382173054e-05], [0.01954437419772148, 2.016878715949133e-05, 1.5658772889448613e-10, 3.7071985481418324e-09, 1.4336311304763427e-10, 7.811186151229776e-07, 2.4109507279490572e-08, 0.008833643980324268, 2.4067717263598354e-10, 1.2367922241907081e-09, 1.239703617539334e-10, 1.8114412964412296e-12, 2.4858936242821983e-08, 2.79641189990798e-05, 2.3188340492197312e-06, 5.800586109216965e-07, 0.0009520503226667643, 0.9706182479858398], [0.5175744295120239, 0.001817859592847526, 0.0030991402454674244, 0.007844197563827038, 0.00027903117006644607, 0.0007775485864840448, 0.29522186517715454, 0.06415415555238724, 2.7091749871033244e-05, 0.00042875821236521006, 0.0011346414685249329, 0.000922106031794101, 9.350161417387426e-05, 0.003092027036473155, 0.009615597315132618, 0.0007508493144996464, 0.03034578077495098, 0.06282154470682144]], [[0.10117112845182419, 0.02123088762164116, 0.013692854903638363, 0.02449299953877926, 0.013271111063659191, 0.027162708342075348, 0.08633143454790115, 0.26872509717941284, 0.01309226918965578, 0.011028957553207874, 0.0127119030803442, 0.009702041745185852, 0.013850542716681957, 0.02681182138621807, 0.02112465351819992, 0.014880706556141376, 0.06681279838085175, 0.2539060711860657], [0.03410477936267853, 0.03243443742394447, 0.0538095198571682, 0.4819604754447937, 0.021102236583828926, 0.05623903125524521, 0.11887940019369125, 0.09150765836238861, 0.004525152035057545, 0.0042213317938148975, 0.003872459754347801, 0.0007109970902092755, 0.00491514103487134, 0.005037211813032627, 0.002486088778823614, 0.0036074474919587374, 0.009772862307727337, 0.07081372290849686], [0.11132748425006866, 0.2420152872800827, 0.041733402758836746, 0.0258020106703043, 0.006247233133763075, 0.06309456378221512, 0.06547223031520844, 0.20804835855960846, 0.0020373151637613773, 0.010208732448518276, 0.002247465308755636, 0.0011079410323873162, 0.003463504835963249, 0.018106410279870033, 0.008259023539721966, 0.011472123675048351, 0.009766663424670696, 0.16959026455879211], [0.02372651733458042, 0.06836353242397308, 0.035416971892118454, 0.09263821691274643, 0.011939460411667824, 0.12382274121046066, 0.3958032429218292, 0.10350372642278671, 0.009972639381885529, 0.0019811007659882307, 0.011766297742724419, 0.0020309388637542725, 0.009513497352600098, 0.007540591526776552, 0.007041227072477341, 0.004259479697793722, 0.01597467251121998, 0.07470506429672241], [0.16582448780536652, 0.028513114899396896, 0.012755279429256916, 0.02552502229809761, 0.007424670737236738, 0.06753727793693542, 0.1373828947544098, 0.2871399521827698, 0.006022199057042599, 0.0023595846723765135, 0.0024844759609550238, 0.0007553212926723063, 0.0022114980965852737, 0.003107556374743581, 0.0039061307907104492, 0.005524978041648865, 0.009838663041591644, 0.23168689012527466], [0.19913175702095032, 0.06118692457675934, 0.07547656446695328, 0.01008541975170374, 0.006296693347394466, 0.014680054038763046, 0.11121563613414764, 0.25764378905296326, 0.017796507105231285, 0.00992144551128149, 0.0014726548688486218, 0.002633007476106286, 0.0035489187575876713, 0.008219035342335701, 0.012718448415398598, 0.00410003075376153, 0.008210888132452965, 0.19566215574741364], [0.09523028135299683, 0.0474831685423851, 0.019999122247099876, 0.03435466066002846, 0.022315463051199913, 0.040152408182621, 0.12569007277488708, 0.31753820180892944, 0.0046635400503873825, 0.009081012569367886, 0.00402850890532136, 0.00277328840456903, 0.00211194041185081, 0.008097953163087368, 0.003621830837801099, 0.0037473435513675213, 0.01377863623201847, 0.24533262848854065], [0.1646033227443695, 0.005312271881848574, 0.0017389977583661675, 0.001972025725990534, 0.003595049027353525, 0.0017611072398722172, 0.01803271472454071, 0.3894035816192627, 0.0021352372132241726, 0.0013884756481274962, 0.0007922508521005511, 0.002856557723134756, 0.002645049011334777, 0.003750590141862631, 0.005875844042748213, 0.002035052515566349, 0.019246919080615044, 0.37285488843917847], [0.02456945739686489, 0.0020170731004327536, 0.001132457284256816, 0.003926329780369997, 0.0007084408425725996, 0.002682839520275593, 0.03826859965920448, 0.38873985409736633, 0.02336128242313862, 0.02121746353805065, 0.07771705836057663, 0.029350724071264267, 0.007617346942424774, 0.007244879379868507, 0.008492923341691494, 0.0047662025317549706, 0.053010713309049606, 0.30517634749412537], [0.04750063642859459, 0.007867437787353992, 0.004864268470555544, 0.003445344278588891, 0.0007359334267675877, 0.00880128052085638, 0.06878088414669037, 0.1638726145029068, 0.11390960216522217, 0.02249651588499546, 0.11260415613651276, 0.03949812054634094, 0.09678380936384201, 0.018218601122498512, 0.06251709908246994, 0.010392718948423862, 0.08794092386960983, 0.129769966006279], [0.02234642766416073, 0.0011792478617280722, 0.0006715250783599913, 0.001042592921294272, 0.00016990758012980223, 0.00016893766587600112, 0.011515429243445396, 0.15270531177520752, 0.028343964368104935, 0.030383147299289703, 0.027865605428814888, 0.06056633219122887, 0.3067712187767029, 0.02169806882739067, 0.09109532088041306, 0.029251452535390854, 0.07759387046098709, 0.13663159310817719], [0.03600102290511131, 0.0010603500995784998, 9.540680912323296e-05, 0.00048256301670335233, 0.00013464553921949118, 0.0002191912499256432, 0.01661108247935772, 0.33968454599380493, 0.004520505201071501, 0.0009978461312130094, 0.03562432527542114, 0.0056800018064677715, 0.09339138865470886, 0.004728297237306833, 0.049719229340553284, 0.004505899269133806, 0.07565730810165405, 0.3308864235877991], [0.038914717733860016, 0.0015406340826302767, 0.000530738674569875, 0.0007224739529192448, 0.00019604110275395215, 0.0008639627485536039, 0.010124695487320423, 0.21252216398715973, 0.0006588876713067293, 0.0013134623877704144, 0.01415943168103695, 0.00888774637132883, 0.008163584396243095, 0.046273667365312576, 0.25700485706329346, 0.06360357999801636, 0.11255552619695663, 0.2219637930393219], [0.20601731538772583, 0.00702363857999444, 0.004935659468173981, 0.0027221557684242725, 0.0008774200105108321, 0.0017518092645332217, 0.00949495006352663, 0.23929409682750702, 0.00475626066327095, 0.00506719620898366, 0.0018070980440825224, 0.003187087131664157, 0.008125313557684422, 0.01566432975232601, 0.08808059245347977, 0.020444856956601143, 0.09293383359909058, 0.28781625628471375], [0.10585162788629532, 0.0019509647972881794, 0.0005308916443027556, 0.0007839368772692978, 0.0004284297174308449, 0.00047977163922041655, 0.006925113499164581, 0.2715771198272705, 0.0010420199250802398, 0.0007465875241905451, 0.0037147104740142822, 0.003287743078544736, 0.014780089259147644, 0.014497959055006504, 0.023868009448051453, 0.05815818905830383, 0.14071208238601685, 0.3506646752357483], [0.3585926592350006, 0.00452825054526329, 0.002272315789014101, 0.0018343165284022689, 0.0027816740330308676, 0.0023837240878492594, 0.006256009452044964, 0.19884981215000153, 0.0009850511560216546, 0.001580567448399961, 0.0007794109405949712, 0.0011953851208090782, 0.0033450850751250982, 0.01979518122971058, 0.038892775774002075, 0.0158188808709383, 0.08807806670665741, 0.2520309090614319], [0.12734673917293549, 0.007072914391756058, 0.0038903746753931046, 0.0033149949740618467, 0.004551919177174568, 0.0054043009877204895, 0.01401819009333849, 0.2658526599407196, 0.0028272473718971014, 0.005200936459004879, 0.005712901242077351, 0.0028400144074112177, 0.004259804263710976, 0.0201515331864357, 0.02010275050997734, 0.027697350829839706, 0.1384631097316742, 0.34129223227500916], [0.1708187311887741, 0.004710400942713022, 0.001645650016143918, 0.0018174370052292943, 0.003370924387127161, 0.0016864725621417165, 0.01595473662018776, 0.37388086318969727, 0.0018205168889835477, 0.0010822094045579433, 0.000639018602669239, 0.002290675649419427, 0.0022048212122172117, 0.003572989022359252, 0.006008215714246035, 0.002270884346216917, 0.022976813837885857, 0.383248507976532]], [[0.11496731638908386, 0.031449269503355026, 0.005312016699463129, 0.02010347694158554, 0.009101896546781063, 0.0028657412622123957, 0.02397173084318638, 0.3136724531650543, 0.01666570082306862, 0.006019906140863895, 0.008507903665304184, 0.010216416791081429, 0.011546324007213116, 0.010165027342736721, 0.014512610621750355, 0.009389664977788925, 0.045654766261577606, 0.34587767720222473], [0.11362795531749725, 0.20693299174308777, 0.0012255655601620674, 0.0009236777550540864, 0.00015418187831528485, 7.323254249058664e-05, 0.003948281519114971, 0.27693426609039307, 0.0007116903434507549, 0.001275300164707005, 0.00010417897283332422, 8.479518146486953e-05, 0.0010273235384374857, 0.00327732739970088, 0.0017547615570947528, 0.0004366690991446376, 0.041584312915802, 0.34592345356941223], [0.13370250165462494, 0.006704307161271572, 0.43771809339523315, 0.00034891319228336215, 8.00344605522696e-06, 3.305137579445727e-05, 0.0018951871898025274, 0.181797057390213, 0.00015948805958032608, 0.0001331852254224941, 7.003057544352487e-05, 2.6215773686999455e-05, 0.00031593607855029404, 0.0006068509537726641, 0.00012948826770298183, 0.0002785338438116014, 0.015571792609989643, 0.22050143778324127], [0.1417934149503708, 0.011701957322657108, 0.00032441996154375374, 0.05681397020816803, 0.00013369796215556562, 3.2467341952724382e-06, 0.0030612980481237173, 0.3250209093093872, 7.704547169851139e-05, 0.0005661703180521727, 3.862866651616059e-05, 8.571795478928834e-05, 0.0002131841902155429, 0.000650575733743608, 0.00046684403787367046, 0.00039536747499369085, 0.018407296389341354, 0.4402463138103485], [0.08758286386728287, 0.003606510814279318, 1.218200759467436e-05, 0.0025766841135919094, 0.4523037075996399, 3.249365545343608e-05, 0.0006798004033043981, 0.19947679340839386, 1.576722934260033e-05, 6.34030147921294e-05, 7.715635001659393e-05, 1.9485774828353897e-05, 5.682900518877432e-05, 0.000853808072861284, 0.0007530828006565571, 0.00043431814992800355, 0.002221598755568266, 0.24923354387283325], [0.3675343990325928, 0.007482118904590607, 0.0004083711246494204, 0.0005261770565994084, 0.00010403829219285399, 0.08387602865695953, 0.00874242465943098, 0.2944765090942383, 6.948796362848952e-05, 5.132545993546955e-06, 8.441551472060382e-06, 2.572347511886619e-05, 1.0526702681090683e-05, 7.056325557641685e-05, 0.0001113970938604325, 4.294232712709345e-05, 0.010461381636559963, 0.22604431211948395], [0.21370922029018402, 0.08302906900644302, 0.0034948259126394987, 0.10404310375452042, 0.013849346898496151, 0.0011612322414293885, 0.018833009526133537, 0.26406508684158325, 0.002939432393759489, 0.0007739119464531541, 0.0012787418672814965, 0.0010151559254154563, 0.002287386916577816, 0.0015979792224243283, 0.0032141420524567366, 0.002088546985760331, 0.023930229246616364, 0.2586897909641266], [0.1686466932296753, 0.03571189567446709, 0.01354086585342884, 0.034539252519607544, 0.013729947619140148, 0.003761387662962079, 0.026667850092053413, 0.3292270004749298, 0.006943430285900831, 0.005923853721469641, 0.00221914891153574, 0.0038485578261315823, 0.009376720525324345, 0.007374865468591452, 0.010624496266245842, 0.007137260399758816, 0.017373494803905487, 0.30335336923599243], [0.22262048721313477, 0.03193654119968414, 0.0002902806445490569, 0.004612600896507502, 0.00016337416309397668, 0.00894789770245552, 0.08025109767913818, 0.3190822899341583, 0.10655614733695984, 3.223460225854069e-05, 0.00011356578033883125, 0.0021416409872472286, 5.9602516557788476e-05, 0.0005425404524430633, 0.0004873543221037835, 5.0495946197770536e-05, 0.0058822608552873135, 0.21622951328754425], [0.09279565513134003, 0.24485431611537933, 0.02538931369781494, 0.40892791748046875, 0.0011906404979526997, 0.000320967665174976, 0.030705254524946213, 0.10122669488191605, 0.00043983475188724697, 0.02396906539797783, 9.037289419211447e-05, 0.00019814848201349378, 0.00010986141569446772, 0.0002879435778595507, 0.00011591389193199575, 4.4434567826101556e-05, 0.0018695801263675094, 0.06746413558721542], [0.13280272483825684, 0.005109886173158884, 0.0010054082376882434, 0.012433464638888836, 0.003741447115316987, 0.00038429730921052396, 0.06940016895532608, 0.2749839425086975, 0.00035114423371851444, 3.7453453842317685e-05, 0.36490756273269653, 0.00022945144155528396, 0.0001832174020819366, 3.589686093619093e-05, 8.168549538822845e-05, 7.321670636883937e-06, 0.004239071626216173, 0.1300658881664276], [0.2035144865512848, 0.008087322115898132, 0.0034411114174872637, 0.06770498305559158, 0.0005738254985772073, 0.0023302938789129257, 0.04928365722298622, 0.31825777888298035, 0.0034662503749132156, 0.0003623931552283466, 0.00037316398811526597, 0.1350419819355011, 0.00010916572500718758, 0.00023060638341121376, 0.00036645832005888224, 8.876684296410531e-05, 0.0016005682991817594, 0.20516720414161682], [0.25808465480804443, 0.04580129683017731, 0.0056488108821213245, 0.034686584025621414, 0.0006299747037701309, 0.0006637466140091419, 0.09731048345565796, 0.2846877872943878, 0.0010774334659799933, 0.0007265760796144605, 0.0013623412232846022, 0.00033657101448625326, 0.11179036647081375, 0.0013667058665305376, 0.0012294512707740068, 0.0001711859367787838, 0.003410576144233346, 0.15101540088653564], [0.2089017927646637, 0.013379637151956558, 0.011068549938499928, 0.006450489163398743, 0.0010512890294194221, 0.0016446833033114672, 0.04550996795296669, 0.23588654398918152, 0.0033476795069873333, 0.00044766830978915095, 0.000578868028242141, 0.0006795158260501921, 0.0016410405514761806, 0.3100205957889557, 0.0016421388136222959, 0.03579461947083473, 0.005613835994154215, 0.11634102463722229], [0.19725002348423004, 0.00814784225076437, 0.00044107556459493935, 0.02299627475440502, 0.005162074230611324, 0.00041255532414652407, 0.0722150057554245, 0.37023764848709106, 0.008956615813076496, 0.004366842098534107, 0.002717328257858753, 0.010685029439628124, 0.004512878600507975, 0.004136509727686644, 0.06658182293176651, 0.0006056934362277389, 0.009800647385418415, 0.21077406406402588], [0.13468202948570251, 0.003092770464718342, 0.004108984488993883, 0.008456941694021225, 0.0003901669988408685, 0.00016630130994599313, 0.043297164142131805, 0.2449452131986618, 0.005099867936223745, 0.001107602147385478, 0.00043853477109223604, 0.0013566724956035614, 0.002176306676119566, 0.1146010309457779, 0.002472289139404893, 0.2797287404537201, 0.010570027865469456, 0.14330936968326569], [0.12472254782915115, 0.022664004936814308, 0.00239238771609962, 0.06546814739704132, 0.004602761939167976, 0.0036919210106134415, 0.14366303384304047, 0.27085790038108826, 0.028250329196453094, 0.013157493434846401, 0.03372664749622345, 0.02584007941186428, 0.021289963275194168, 0.011708210222423077, 0.014452208764851093, 0.005257105454802513, 0.024266373366117477, 0.18398892879486084], [0.1500306874513626, 0.02518407814204693, 0.01525766309350729, 0.02848273701965809, 0.012398646213114262, 0.003938437905162573, 0.03236209973692894, 0.34967947006225586, 0.010422904044389725, 0.010047408752143383, 0.0039461152628064156, 0.008876638486981392, 0.015570477582514286, 0.009558236226439476, 0.017595501616597176, 0.009343701414763927, 0.023803703486919403, 0.2735014855861664]], [[0.11614342778921127, 0.02371871843934059, 0.01616739295423031, 0.017305588349699974, 0.013959595002233982, 0.00870294775813818, 0.02502204291522503, 0.274948388338089, 0.01689366064965725, 0.027354124933481216, 0.03167147561907768, 0.012202474288642406, 0.031423404812812805, 0.026413898915052414, 0.023121625185012817, 0.030068129301071167, 0.032496389001607895, 0.27238672971725464], [0.07138775289058685, 0.13183370232582092, 0.057280827313661575, 0.0690106451511383, 0.04382940009236336, 0.0242531169205904, 0.06612537801265717, 0.19032151997089386, 0.039506781846284866, 0.02503690868616104, 0.01451338641345501, 0.018715351819992065, 0.015863586217164993, 0.01260669156908989, 0.01843097433447838, 0.014776648953557014, 0.01795790158212185, 0.16854947805404663], [0.10225947201251984, 0.06644951552152634, 0.014728852547705173, 0.07631663978099823, 0.0362810343503952, 0.09329333156347275, 0.07497195899486542, 0.09123434871435165, 0.029680373147130013, 0.01095398236066103, 0.014028753153979778, 0.04893755167722702, 0.05962711572647095, 0.06339486688375473, 0.026474783197045326, 0.08603504300117493, 0.021191010251641273, 0.08414137363433838], [0.053357720375061035, 0.05767389386892319, 0.03852345421910286, 0.1159578263759613, 0.019377317279577255, 0.07660190016031265, 0.14089258015155792, 0.17655110359191895, 0.008172602392733097, 0.00863624457269907, 0.06765702366828918, 0.011877133511006832, 0.02318868786096573, 0.006535701919347048, 0.010220981203019619, 0.008543743751943111, 0.0234452523291111, 0.15278689563274384], [0.21271470189094543, 0.03589296340942383, 0.022521166130900383, 0.030386777594685555, 0.0029858266934752464, 0.04902850091457367, 0.051041483879089355, 0.2729702889919281, 0.004298283252865076, 0.006983757950365543, 0.004067244939506054, 0.00733491824939847, 0.012728543020784855, 0.0057798270136117935, 0.017904862761497498, 0.004837492015212774, 0.016241135075688362, 0.24228224158287048], [0.18812909722328186, 0.04007834196090698, 0.09920098632574081, 0.10162340104579926, 0.03619339317083359, 0.016336940228939056, 0.07621346414089203, 0.08384568244218826, 0.016021165996789932, 0.0081082908436656, 0.013163409195840359, 0.021763358265161514, 0.06103021278977394, 0.05788012593984604, 0.022712526842951775, 0.062465328723192215, 0.021194027736783028, 0.07404020428657532], [0.07808350026607513, 0.11051834374666214, 0.02808803878724575, 0.06465816497802734, 0.03597104549407959, 0.019529473036527634, 0.06247006356716156, 0.25632917881011963, 0.027193663641810417, 0.012071864679455757, 0.008683620020747185, 0.010088251903653145, 0.009783868677914143, 0.009009514935314655, 0.010383839718997478, 0.006114281248301268, 0.018056191504001617, 0.23296701908111572], [0.36539125442504883, 0.009633664973080158, 0.0031349482014775276, 0.0023352999705821276, 0.0017312332056462765, 0.0020411163568496704, 0.006990710273385048, 0.29811444878578186, 0.0027397300582379103, 0.004247654695063829, 0.0027497909031808376, 0.0015116207068786025, 0.007311997003853321, 0.0016637846129015088, 0.0040950533002614975, 0.0015348601154983044, 0.006800977047532797, 0.2779718339443207], [0.08663450926542282, 0.027136731892824173, 0.007087472826242447, 0.008581986650824547, 0.005577050615102053, 0.001090322621166706, 0.018811918795108795, 0.33671340346336365, 0.020689522847533226, 0.022394884377717972, 0.01655031181871891, 0.009848067536950111, 0.01755259558558464, 0.008596512489020824, 0.018109243363142014, 0.009174181148409843, 0.04948824644088745, 0.33596307039260864], [0.10244522988796234, 0.044216882437467575, 0.012586675584316254, 0.020663736388087273, 0.003499413374811411, 0.010545027442276478, 0.0337475948035717, 0.24369890987873077, 0.014407414011657238, 0.008303976617753506, 0.045269083231687546, 0.021645568311214447, 0.041432108730077744, 0.029495444148778915, 0.012716887518763542, 0.04371202364563942, 0.07043606787919998, 0.24117796123027802], [0.06278131157159805, 0.004851628560572863, 0.0016517604235559702, 0.0564032681286335, 0.002419994678348303, 0.010076052509248257, 0.01841958425939083, 0.2788999378681183, 0.009057107381522655, 0.04509585350751877, 0.027131659910082817, 0.010752263478934765, 0.04255831614136696, 0.008077742531895638, 0.026565678417682648, 0.010771945118904114, 0.09253726154565811, 0.2919485867023468], [0.146281898021698, 0.01173178106546402, 0.0070163230411708355, 0.01849641092121601, 0.006383879110217094, 0.008296911604702473, 0.04927438497543335, 0.29349732398986816, 0.0056352377869188786, 0.032020919024944305, 0.014258209615945816, 0.00488761393353343, 0.017738059163093567, 0.002221730537712574, 0.02203582227230072, 0.004769416060298681, 0.07469291239976883, 0.2807612121105194], [0.07624039053916931, 0.03088175319135189, 0.04587915912270546, 0.0511757954955101, 0.01527180802077055, 0.058094218373298645, 0.03626595810055733, 0.16801981627941132, 0.014089901000261307, 0.041535522788763046, 0.034253187477588654, 0.03450261428952217, 0.012562986463308334, 0.030125169083476067, 0.03805997967720032, 0.09353092312812805, 0.05382465571165085, 0.16568619012832642], [0.22664979100227356, 0.024560432881116867, 0.05530337616801262, 0.01741025038063526, 0.012045220471918583, 0.0731295794248581, 0.051764391362667084, 0.11426886171102524, 0.02331286482512951, 0.027295265346765518, 0.015790287405252457, 0.025294234976172447, 0.05083129182457924, 0.0034212733153253794, 0.0614703968167305, 0.008271081373095512, 0.090242899954319, 0.11893850564956665], [0.08990857750177383, 0.01911243423819542, 0.0161838848143816, 0.020137213170528412, 0.0054848045110702515, 0.020096825435757637, 0.03678454831242561, 0.2481233775615692, 0.010253950022161007, 0.013759391382336617, 0.053504444658756256, 0.009082441218197346, 0.043891094624996185, 0.02134900912642479, 0.028832314535975456, 0.027799123898148537, 0.08278582245111465, 0.2529107332229614], [0.31694504618644714, 0.008026136085391045, 0.01795959286391735, 0.011918117292225361, 0.0038746444042772055, 0.06027005612850189, 0.03921595588326454, 0.12048974633216858, 0.010367259383201599, 0.018304385244846344, 0.017220880836248398, 0.020880093798041344, 0.07884788513183594, 0.005841611418873072, 0.04653189703822136, 0.003578278236091137, 0.09161960333585739, 0.12810881435871124], [0.06995929032564163, 0.02499118633568287, 0.005934143904596567, 0.009500463493168354, 0.008314322680234909, 0.005289306864142418, 0.02250799536705017, 0.26350316405296326, 0.060611311346292496, 0.04622254520654678, 0.039687592536211014, 0.015369156375527382, 0.01864432357251644, 0.02226429618895054, 0.030877768993377686, 0.013234663754701614, 0.06903109699487686, 0.2740572988986969], [0.36609068512916565, 0.009198806248605251, 0.0029769064858555794, 0.0022291087079793215, 0.001703560585156083, 0.0020103787537664175, 0.007047555409371853, 0.2953207790851593, 0.0028177271597087383, 0.004540067166090012, 0.0029065809212625027, 0.0015740948729217052, 0.007680057547986507, 0.0018121185712516308, 0.004601449705660343, 0.001676066080108285, 0.007641550153493881, 0.2781725227832794]], [[0.37399664521217346, 0.00735437823459506, 0.009051569737493992, 0.009427241049706936, 0.006001888774335384, 0.007769325282424688, 0.008606757037341595, 0.15979738533496857, 0.034007832407951355, 0.02584853768348694, 0.026589175686240196, 0.017202269285917282, 0.027688082307577133, 0.0379844568669796, 0.00807409267872572, 0.03811550512909889, 0.03602498769760132, 0.1664598286151886], [0.15762129426002502, 0.03896050900220871, 0.07980167120695114, 0.09920518845319748, 0.052419401705265045, 0.06769270449876785, 0.04911469295620918, 0.09902513027191162, 0.06265765428543091, 0.025069275870919228, 0.006710823159664869, 0.032851770520210266, 0.03567001223564148, 0.04006305709481239, 0.008972745388746262, 0.028709879145026207, 0.02232852764427662, 0.09312558174133301], [0.21751663088798523, 0.024916741997003555, 0.044075366109609604, 0.06717897951602936, 0.021885862573981285, 0.060777585953474045, 0.04204327240586281, 0.09582895785570145, 0.031406939029693604, 0.020605189725756645, 0.0019074456067755818, 0.05858626961708069, 0.049546316266059875, 0.05019819736480713, 0.007001262158155441, 0.0947241485118866, 0.02221394143998623, 0.08958692848682404], [0.14561142027378082, 0.0176361296325922, 0.015509984456002712, 0.16268591582775116, 0.11514925211668015, 0.09157751500606537, 0.0609908364713192, 0.10025396943092346, 0.06528812646865845, 0.006449702195823193, 0.008876137435436249, 0.039082564413547516, 0.022642919793725014, 0.012091297656297684, 0.004614355508238077, 0.015400130301713943, 0.025512220337986946, 0.09062755852937698], [0.22779583930969238, 0.029461251571774483, 0.008990736678242683, 0.08672682195901871, 0.01605532318353653, 0.034902580082416534, 0.06884264945983887, 0.1762111932039261, 0.06759864091873169, 0.01820063591003418, 0.006587839685380459, 0.02279178984463215, 0.011543751694262028, 0.00576396519318223, 0.009924097917973995, 0.009896615520119667, 0.035725731402635574, 0.1629806011915207], [0.17365720868110657, 0.03794551640748978, 0.022295650094747543, 0.08449451625347137, 0.03215685486793518, 0.018490580841898918, 0.050490852445364, 0.15463966131210327, 0.09244613349437714, 0.01590188406407833, 0.00856759399175644, 0.02867889776825905, 0.03441089764237404, 0.020051948726177216, 0.012594270519912243, 0.04662523791193962, 0.028299866244196892, 0.13825243711471558], [0.18499840795993805, 0.03519713133573532, 0.010400865226984024, 0.013537012971937656, 0.021947303786873817, 0.008113331161439419, 0.07290809601545334, 0.23036262392997742, 0.06698329746723175, 0.010617075487971306, 0.003738132771104574, 0.019714070484042168, 0.015560814179480076, 0.008356303907930851, 0.03609374910593033, 0.0051897261291742325, 0.046250712126493454, 0.21003128588199615], [0.19708582758903503, 0.019466908648610115, 0.0007006816449575126, 0.0022488392423838377, 0.0010793677065521479, 0.0006839160341769457, 0.05161329731345177, 0.3144049346446991, 0.0027736492920666933, 0.004550606943666935, 0.0012327218428254128, 0.0016071881400421262, 0.0015074253315106034, 0.0009549416718073189, 0.036052778363227844, 0.0007097552297636867, 0.06691179424524307, 0.29641538858413696], [0.1354198008775711, 0.005075883120298386, 0.005782712250947952, 0.029901999980211258, 0.012287955731153488, 0.028797803446650505, 0.028191622346639633, 0.18694616854190826, 0.0695372074842453, 0.03668830543756485, 0.04903123527765274, 0.046957630664110184, 0.03667407110333443, 0.018000366166234016, 0.010121773928403854, 0.0252174511551857, 0.08688057214021683, 0.1884874403476715], [0.19129396975040436, 0.012705168686807156, 0.01449858769774437, 0.030016159638762474, 0.015610449016094208, 0.0242861770093441, 0.029792236164212227, 0.15259584784507751, 0.14923863112926483, 0.021694013848900795, 0.020274557173252106, 0.043544430285692215, 0.028751714155077934, 0.02055247500538826, 0.016334429383277893, 0.01519856322556734, 0.064785897731781, 0.14882659912109375], [0.10719415545463562, 0.005955762695521116, 0.004969829227775335, 0.036854565143585205, 0.008541792631149292, 0.014889635145664215, 0.010772034525871277, 0.07956220954656601, 0.1590738296508789, 0.06837578862905502, 0.04999804496765137, 0.09207283705472946, 0.20867234468460083, 0.01722409389913082, 0.007001059129834175, 0.018126193434000015, 0.03322795405983925, 0.07748793810606003], [0.07608238607645035, 0.006174130830913782, 0.01598982885479927, 0.04806666076183319, 0.031564779579639435, 0.026102809235453606, 0.01599733531475067, 0.04813354089856148, 0.3112606108188629, 0.1792823076248169, 0.048077475279569626, 0.02000928483903408, 0.027438875287771225, 0.02992260828614235, 0.02207978069782257, 0.016102422028779984, 0.029564250260591507, 0.048150915652513504], [0.2436625063419342, 0.009835802949965, 0.008140253834426403, 0.01227801013737917, 0.003518464742228389, 0.00463468162342906, 0.02864786610007286, 0.24647271633148193, 0.045466285198926926, 0.007093059364706278, 0.034874528646469116, 0.010070368647575378, 0.01346116978675127, 0.011229501105844975, 0.009188095107674599, 0.017117401584982872, 0.0628279447555542, 0.23148134350776672], [0.19239045679569244, 0.01627804897725582, 0.06261186301708221, 0.02732008509337902, 0.015379497781395912, 0.018272889778017998, 0.015269952826201916, 0.1052897572517395, 0.056839004158973694, 0.03050549328327179, 0.10134710371494293, 0.05377088487148285, 0.03947540745139122, 0.05427123233675957, 0.0188764538615942, 0.06879912316799164, 0.02344328537583351, 0.09985940903425217], [0.17587530612945557, 0.0066928742453455925, 0.0021838133689016104, 0.009526947513222694, 0.004817228764295578, 0.003585024503991008, 0.02370704896748066, 0.3132355213165283, 0.015982385724782944, 0.010659446008503437, 0.010500356554985046, 0.008817877620458603, 0.03323385864496231, 0.005165471229702234, 0.008153523318469524, 0.004909402225166559, 0.0623600035905838, 0.3005939722061157], [0.19286379218101501, 0.013968581333756447, 0.03573702648282051, 0.023532064631581306, 0.015675991773605347, 0.011826819740235806, 0.01928197778761387, 0.20909187197685242, 0.027857167646288872, 0.0269766915589571, 0.037970032542943954, 0.02000270038843155, 0.05456714704632759, 0.04521926864981651, 0.014709451235830784, 0.024150002747774124, 0.03193351998925209, 0.19463585317134857], [0.14727255702018738, 0.012424510903656483, 0.0048353178426623344, 0.003343869000673294, 0.007365239784121513, 0.003082635346800089, 0.029912620782852173, 0.21109198033809662, 0.12909184396266937, 0.019412638619542122, 0.011962205171585083, 0.02113756537437439, 0.01866472139954567, 0.013504604808986187, 0.0567295141518116, 0.007398984860628843, 0.09487476199865341, 0.207894429564476], [0.19121241569519043, 0.019350683316588402, 0.0007102292729541659, 0.0022389229852706194, 0.0010932704899460077, 0.000675263290759176, 0.05178043246269226, 0.3130890130996704, 0.0028337561525404453, 0.004988440312445164, 0.0013467876706272364, 0.001676031737588346, 0.001577930524945259, 0.0009906667983159423, 0.03807368502020836, 0.0007402110495604575, 0.07165390253067017, 0.29596826434135437]], [[0.06526875495910645, 0.06263616681098938, 0.029784655198454857, 0.05710018426179886, 0.10913307964801788, 0.11792536824941635, 0.17321833968162537, 0.07217548787593842, 0.05925212800502777, 0.011463492177426815, 0.007926169782876968, 0.013803612440824509, 0.03167595714330673, 0.029440708458423615, 0.02104313299059868, 0.02660669945180416, 0.04651254788041115, 0.06503349542617798], [0.050435423851013184, 0.0625990554690361, 0.004553079139441252, 0.015926891937851906, 0.002704752143472433, 0.001219630823470652, 0.38357558846473694, 0.0688059851527214, 0.00016739341663196683, 0.003121541813015938, 0.0003947475634049624, 0.0009564186912029982, 0.0005540763377211988, 0.0009950478561222553, 0.12624630331993103, 0.0014225421473383904, 0.21448121964931488, 0.061840254813432693], [0.17227664589881897, 0.2534501254558563, 0.004941239953041077, 0.04673979803919792, 0.0011148100020363927, 0.0037346831522881985, 0.11958815902471542, 0.16023758053779602, 0.0010964545654132962, 0.0030244358349591494, 0.0014422640670090914, 0.0009285866399295628, 0.001511329086497426, 0.002362599363550544, 0.029305467382073402, 0.010955128818750381, 0.05321952700614929, 0.13407114148139954], [0.13018320500850677, 0.061033524572849274, 0.006825176067650318, 0.20780737698078156, 0.004063080996274948, 0.002476638415828347, 0.13259316980838776, 0.16921964287757874, 0.0006822587456554174, 0.0032110826577991247, 0.0334843285381794, 0.00210581230930984, 0.0024249518755823374, 0.00340747507289052, 0.03616912662982941, 0.003194146789610386, 0.048222556710243225, 0.152896448969841], [0.17897608876228333, 0.08575022965669632, 0.010627192445099354, 0.025136122480034828, 0.004801763221621513, 0.007063964381814003, 0.13322468101978302, 0.2035961002111435, 0.0029748287051916122, 0.0015731740277260542, 0.003556684358045459, 0.002179523929953575, 0.0071831997483968735, 0.016713453456759453, 0.049321498721838, 0.011382173746824265, 0.06511110812425613, 0.19082821905612946], [0.13277702033519745, 0.17275524139404297, 0.05418233200907707, 0.02293614111840725, 0.0026665658224374056, 0.0015699098585173488, 0.21228830516338348, 0.1459144800901413, 0.0007519331993535161, 0.00284206704236567, 0.005755803547799587, 0.0050315819680690765, 0.0006757215596735477, 0.003179487306624651, 0.03463570773601532, 0.004095565527677536, 0.06674904376268387, 0.13119302690029144], [0.055945638567209244, 0.04021959751844406, 0.04706903174519539, 0.04014265164732933, 0.07300732284784317, 0.08392038196325302, 0.13758230209350586, 0.07578907161951065, 0.12845751643180847, 0.015761543065309525, 0.010411292314529419, 0.019761288538575172, 0.04478466138243675, 0.03609401360154152, 0.03115181066095829, 0.02544790506362915, 0.06566797941923141, 0.06878592818975449], [0.1686776578426361, 0.0145655432716012, 0.006630254909396172, 0.008901212364435196, 0.008672179654240608, 0.011839461512863636, 0.042614731937646866, 0.2518090307712555, 0.038507718592882156, 0.01061276625841856, 0.014252550899982452, 0.010931017808616161, 0.017065659165382385, 0.03245622292160988, 0.023349734023213387, 0.02089809998869896, 0.07389166951179504, 0.2443246692419052], [0.1435510367155075, 0.03212575986981392, 0.0027728842105716467, 0.010402104817330837, 0.0012204361846670508, 0.0018410524353384972, 0.12957823276519775, 0.17071861028671265, 0.0005948203033767641, 0.006468537729233503, 0.005576497875154018, 0.002687056316062808, 0.0018463113810867071, 0.010125475004315376, 0.0656050369143486, 0.004110853187739849, 0.24347534775733948, 0.1673000156879425], [0.1767054945230484, 0.03187907487154007, 0.0038606757298111916, 0.003925566095858812, 0.00029964809073135257, 0.0010677390964701772, 0.07738879323005676, 0.24230319261550903, 0.00038714968832209706, 0.0025193176697939634, 0.004109250847250223, 0.002411891706287861, 0.0009296720381826162, 0.004373625852167606, 0.05535629391670227, 0.00174985162448138, 0.15727870166301727, 0.23345410823822021], [0.12049639970064163, 0.011478676460683346, 0.0004329811781644821, 0.008128327317535877, 0.00040192026062868536, 0.00042249399120919406, 0.07518373429775238, 0.20843109488487244, 0.00047864983207546175, 0.002060115337371826, 0.013819720596075058, 0.0012871393701061606, 0.0008250137325376272, 0.0052375029772520065, 0.09507625550031662, 0.002825905103236437, 0.24732080101966858, 0.2060932070016861], [0.25751373171806335, 0.0605446957051754, 0.0027273923624306917, 0.011306489817798138, 0.0012434819946065545, 0.0009583575301803648, 0.06131241098046303, 0.2391488254070282, 0.0008856501081027091, 0.003888685954734683, 0.00694023072719574, 0.0015411830972880125, 0.001748027978464961, 0.0024881511926651, 0.028706464916467667, 0.001585171208716929, 0.07986254245042801, 0.23759843409061432], [0.20791438221931458, 0.022281622514128685, 0.0032043198589235544, 0.012799043208360672, 0.0010823984630405903, 0.0004705151659436524, 0.06451962143182755, 0.2376442402601242, 0.0005590197397395968, 0.0038556382060050964, 0.007771630305796862, 0.0013659012038260698, 0.0008452957263216376, 0.035962630063295364, 0.04581291228532791, 0.020743360742926598, 0.10329815745353699, 0.22986935079097748], [0.17229820787906647, 0.06321310251951218, 0.017938146367669106, 0.004619932267814875, 0.000723844685126096, 0.008330629207193851, 0.04856492206454277, 0.2053747922182083, 0.0062198275700211525, 0.006657394114881754, 0.008913247846066952, 0.010036216117441654, 0.0072295148856937885, 0.07770837098360062, 0.05356837064027786, 0.05391297861933708, 0.06062236428260803, 0.1940680891275406], [0.12038363516330719, 0.03094714879989624, 0.0019446617225185037, 0.007779296021908522, 0.0018649488920345902, 0.0018647327087819576, 0.11805371195077896, 0.1576075404882431, 0.0013121147640049458, 0.006159968674182892, 0.006014973856508732, 0.0036057736724615097, 0.00464087026193738, 0.015539929270744324, 0.10215301811695099, 0.01132987067103386, 0.2513138949871063, 0.15748381614685059], [0.2318347841501236, 0.03531287610530853, 0.04399769753217697, 0.004528341814875603, 0.0004774024127982557, 0.009918496012687683, 0.030932949855923653, 0.2314092367887497, 0.0014239804586395621, 0.007872452028095722, 0.009369662962853909, 0.004882471170276403, 0.010189621709287167, 0.05287134274840355, 0.0487932488322258, 0.013303873129189014, 0.04439887776970863, 0.2184826135635376], [0.0467175655066967, 0.012163163162767887, 0.015747103840112686, 0.007155043072998524, 0.02806193195283413, 0.04023834690451622, 0.04090696945786476, 0.05671440437436104, 0.29993268847465515, 0.026410657912492752, 0.02764636091887951, 0.023834897205233574, 0.0660165548324585, 0.0814855694770813, 0.030365876853466034, 0.04874403774738312, 0.09259213507175446, 0.05526666343212128], [0.16631726920604706, 0.01397373154759407, 0.0062793102115392685, 0.008192408829927444, 0.008677910082042217, 0.011716741137206554, 0.04002454876899719, 0.2457706332206726, 0.04139180853962898, 0.011469966731965542, 0.015443173237144947, 0.011412331834435463, 0.018190253525972366, 0.036096327006816864, 0.024384429678320885, 0.023141756653785706, 0.0768866166472435, 0.2406308799982071]], [[0.23177844285964966, 0.009016918949782848, 0.008160405792295933, 0.011166618205606937, 0.007916998118162155, 0.013676786795258522, 0.026221472769975662, 0.27181026339530945, 0.007380856201052666, 0.01209170650690794, 0.01015844102948904, 0.010952620767056942, 0.009468570351600647, 0.016933174803853035, 0.015932641923427582, 0.02074010856449604, 0.04342406615614891, 0.27316993474960327], [0.23470649123191833, 0.06909729540348053, 0.022421110421419144, 0.04756457731127739, 0.010842200368642807, 0.06000800430774689, 0.09011295437812805, 0.16874948143959045, 0.012121150270104408, 0.022980138659477234, 0.010046320967376232, 0.02581756003201008, 0.008663090877234936, 0.010107701644301414, 0.019060958176851273, 0.007562838960438967, 0.03311736136674881, 0.14702069759368896], [0.18942297995090485, 0.09120112657546997, 0.09026594460010529, 0.06833037734031677, 0.016229044646024704, 0.06389831006526947, 0.12309422343969345, 0.07809869945049286, 0.01850542239844799, 0.020799119025468826, 0.005889722146093845, 0.0219695046544075, 0.036469053477048874, 0.011343715712428093, 0.010959558188915253, 0.024510249495506287, 0.056859806180000305, 0.07215315103530884], [0.3428649306297302, 0.01874847337603569, 0.020708367228507996, 0.032938189804553986, 0.0162880327552557, 0.06405911594629288, 0.05747656896710396, 0.19979633390903473, 0.0077477251179516315, 0.01319295633584261, 0.00396001897752285, 0.010565203614532948, 0.005478422157466412, 0.0025703944265842438, 0.00901210866868496, 0.0038733056280761957, 0.015007441863417625, 0.17571240663528442], [0.1973193734884262, 0.005578941665589809, 0.0071618943475186825, 0.035681143403053284, 0.01575106754899025, 0.07234586775302887, 0.02790147438645363, 0.22674886882305145, 0.046809934079647064, 0.019509578123688698, 0.01698295585811138, 0.0706363245844841, 0.017924122512340546, 0.0062258546240627766, 0.011475645005702972, 0.011498791165649891, 0.00809540692716837, 0.20235276222229004], [0.24935010075569153, 0.02483288198709488, 0.10598801076412201, 0.04694075137376785, 0.0048635294660925865, 0.055515993386507034, 0.11723342537879944, 0.14015500247478485, 0.02879008650779724, 0.013811049051582813, 0.001950882957316935, 0.011122328229248524, 0.004098531790077686, 0.01871725730597973, 0.007167981006205082, 0.013263762928545475, 0.03319977968931198, 0.12299869954586029], [0.23950406908988953, 0.007638230454176664, 0.006360712926834822, 0.051207829266786575, 0.03379206359386444, 0.03679215535521507, 0.10775113850831985, 0.17612618207931519, 0.008902481757104397, 0.011989410035312176, 0.013803270645439625, 0.03254292905330658, 0.010074608959257603, 0.006861485540866852, 0.013390027917921543, 0.012510300613939762, 0.06655097752809525, 0.16420213878154755], [0.22938159108161926, 0.010497979819774628, 0.005237402860075235, 0.00427938112989068, 0.005856228061020374, 0.004202816169708967, 0.017270609736442566, 0.3382432758808136, 0.002918344223871827, 0.003424231428653002, 0.001955332001671195, 0.0023958657402545214, 0.0032941519748419523, 0.003389294259250164, 0.008643732406198978, 0.003582029603421688, 0.022759409621357918, 0.3326682448387146], [0.22256222367286682, 0.001078935107216239, 0.0012263262178748846, 0.016598381102085114, 0.0022324607707560062, 0.005086782854050398, 0.017885765060782433, 0.20735333859920502, 0.048210036009550095, 0.04561522230505943, 0.09164172410964966, 0.04604826495051384, 0.007074725814163685, 0.02502479776740074, 0.016425762325525284, 0.007580524310469627, 0.044041115790605545, 0.19431360065937042], [0.26399895548820496, 0.013750621117651463, 0.022536180913448334, 0.011904115788638592, 0.0023443298414349556, 0.006462994031608105, 0.02367585338652134, 0.2191505879163742, 0.05408143252134323, 0.02090494893491268, 0.021449610590934753, 0.01459458377212286, 0.00856600608676672, 0.031047580763697624, 0.014068949967622757, 0.03160405531525612, 0.04298052191734314, 0.19687868654727936], [0.2672095000743866, 0.0014031579485163093, 0.0015224505914375186, 0.0027386918663978577, 0.0013122416567057371, 0.0009873248636722565, 0.011712946929037571, 0.2647572457790375, 0.015211430378258228, 0.05139315873384476, 0.019654499366879463, 0.020124968141317368, 0.007959679700434208, 0.008853829465806484, 0.030392244458198547, 0.005587695632129908, 0.04830876737833023, 0.2408701479434967], [0.31882861256599426, 0.009150827303528786, 0.0028792789671570063, 0.0019402742618694901, 0.0011084525613114238, 0.002327686408534646, 0.007822778075933456, 0.2891474962234497, 0.00869370810687542, 0.031288910657167435, 0.00572418374940753, 0.0027044713497161865, 0.005874332506209612, 0.012486523017287254, 0.015403162688016891, 0.007809897419065237, 0.012242619879543781, 0.2645667493343353], [0.22198712825775146, 0.0044528646394610405, 0.007791364565491676, 0.011190135963261127, 0.003595407586544752, 0.004105175379663706, 0.017300467938184738, 0.2227591723203659, 0.0033381260000169277, 0.01487482339143753, 0.010298422537744045, 0.009125156328082085, 0.01127483882009983, 0.08888585865497589, 0.013047389686107635, 0.08546716719865799, 0.05541282519698143, 0.21509364247322083], [0.3455490171909332, 0.024353310465812683, 0.050042204558849335, 0.010098977014422417, 0.0024075102992355824, 0.003903424832969904, 0.029498182237148285, 0.14673855900764465, 0.014711922034621239, 0.02859228104352951, 0.02588934823870659, 0.016501102596521378, 0.021005459129810333, 0.01594257354736328, 0.04065829515457153, 0.021008474752306938, 0.06419636309146881, 0.13890308141708374], [0.29080572724342346, 0.009679332375526428, 0.006451654247939587, 0.002988870721310377, 0.00236666202545166, 0.0015280310763046145, 0.013688185252249241, 0.20745733380317688, 0.02338843233883381, 0.03141989931464195, 0.021195417270064354, 0.014553354121744633, 0.02237194962799549, 0.016047745943069458, 0.04553605616092682, 0.03143319860100746, 0.05340282618999481, 0.20568528771400452], [0.32600927352905273, 0.03142834082245827, 0.14109013974666595, 0.015503991395235062, 0.003906885627657175, 0.0037078491877764463, 0.02873443253338337, 0.108656145632267, 0.016190139576792717, 0.039168830960989, 0.012721688486635685, 0.005262508988380432, 0.024226300418376923, 0.025112956762313843, 0.029527129605412483, 0.015833906829357147, 0.06881078332662582, 0.10410868376493454], [0.2230718731880188, 0.0026593890506774187, 0.0016949499258771539, 0.01066264882683754, 0.007503882981836796, 0.005501530598849058, 0.03227834403514862, 0.14588819444179535, 0.018671149387955666, 0.01727702096104622, 0.04748954996466637, 0.03543238714337349, 0.017849186435341835, 0.021378159523010254, 0.03140082582831383, 0.036106888204813004, 0.19109156727790833, 0.15404243767261505], [0.230844184756279, 0.010134227573871613, 0.005120152607560158, 0.003905802732333541, 0.005623640026897192, 0.003855313640087843, 0.016188133507966995, 0.3356981873512268, 0.0029824574012309313, 0.003315548412501812, 0.0019482322968542576, 0.0022324305027723312, 0.0033228956162929535, 0.0035511089954525232, 0.00879747699946165, 0.003747915383428335, 0.024010194465517998, 0.33472204208374023]], [[0.18840758502483368, 0.006761573255062103, 0.010558251291513443, 0.00821959413588047, 0.009397272020578384, 0.008067965507507324, 0.026308929547667503, 0.23617343604564667, 0.026288926601409912, 0.018870338797569275, 0.019377771764993668, 0.011583170853555202, 0.012976647354662418, 0.029357697814702988, 0.028161583468317986, 0.022123219445347786, 0.09036356955766678, 0.2470024973154068], [0.06690052896738052, 0.026885902509093285, 0.16488584876060486, 0.10497447103261948, 0.10604412853717804, 0.08164133876562119, 0.054200299084186554, 0.1283031404018402, 0.022960878908634186, 0.010777032934129238, 0.012709547765552998, 0.025910528376698494, 0.01278596930205822, 0.024234585464000702, 0.013367987237870693, 0.0165301114320755, 0.013627545908093452, 0.11326012015342712], [0.1197395995259285, 0.01774008572101593, 0.03244277834892273, 0.036024875938892365, 0.016530262306332588, 0.027864687144756317, 0.06121402606368065, 0.2969691753387451, 0.013595850206911564, 0.002129525179043412, 0.00567967863753438, 0.006305231712758541, 0.009355361573398113, 0.01770772598683834, 0.018793154507875443, 0.007641254458576441, 0.03378603234887123, 0.27648067474365234], [0.03738326206803322, 0.0928480476140976, 0.12195983529090881, 0.03180105611681938, 0.22304707765579224, 0.08281313627958298, 0.02251361310482025, 0.10363098978996277, 0.05692976340651512, 0.011025190353393555, 0.00671006552875042, 0.04831487312912941, 0.015505527146160603, 0.030191617086529732, 0.009793502278625965, 0.012056122533977032, 0.004360046703368425, 0.08911619335412979], [0.07396551221609116, 0.02841535396873951, 0.04020003229379654, 0.06297516822814941, 0.13516530394554138, 0.1724930852651596, 0.05150190368294716, 0.1407773345708847, 0.03242407739162445, 0.009112473577260971, 0.014120380394160748, 0.019302548840641975, 0.012789357453584671, 0.031140636652708054, 0.02405981719493866, 0.015167365781962872, 0.010084215551614761, 0.12630534172058105], [0.05294744670391083, 0.028137385845184326, 0.1972869336605072, 0.03483227640390396, 0.1619025319814682, 0.05640412122011185, 0.04181113466620445, 0.1343313306570053, 0.03712976723909378, 0.021823197603225708, 0.007945277728140354, 0.011213194578886032, 0.028694286942481995, 0.00975736416876316, 0.02401575818657875, 0.01307887677103281, 0.01663530245423317, 0.12205380946397781], [0.14776471257209778, 0.03387289121747017, 0.009095531888306141, 0.024485884234309196, 0.05319550260901451, 0.018570449203252792, 0.044698067009449005, 0.30540362000465393, 0.013696925714612007, 0.0072076935321092606, 0.005531605798751116, 0.0031706125009804964, 0.004553330596536398, 0.0069602904841303825, 0.016461608931422234, 0.003341573290526867, 0.019189314916729927, 0.2828002870082855], [0.3969096541404724, 0.0013910182751715183, 0.00019752111984416842, 0.0009944457560777664, 0.0002251647092634812, 0.00033324648393318057, 0.07312241941690445, 0.20820748805999756, 0.00017454041517339647, 0.0003640757640823722, 0.00023174220405053347, 0.00023892970057204366, 0.000295927282422781, 0.0008046116563491523, 0.0013782484456896782, 0.000580815423745662, 0.11437098681926727, 0.20017915964126587], [0.014788034372031689, 0.006585907656699419, 0.0208240058273077, 0.016144882887601852, 0.1869499683380127, 0.02760101482272148, 0.0035901067312806845, 0.06092827022075653, 0.08786500245332718, 0.10507974028587341, 0.13318683207035065, 0.08140714466571808, 0.09675361216068268, 0.03536447882652283, 0.0219146478921175, 0.03405630961060524, 0.007585585117340088, 0.05937451124191284], [0.0663667693734169, 0.009211482480168343, 0.05309710651636124, 0.004970685113221407, 0.04917367547750473, 0.03725142776966095, 0.011325536295771599, 0.1351228803396225, 0.15697434544563293, 0.010583898983895779, 0.053158633410930634, 0.03912569209933281, 0.043405089527368546, 0.10173552483320236, 0.029039055109024048, 0.049308743327856064, 0.019577404484152794, 0.1305721253156662], [0.016905810683965683, 0.010422163642942905, 0.023811504244804382, 0.001542522688396275, 0.01871727965772152, 0.012610197067260742, 0.003463025437667966, 0.035810183733701706, 0.2705534100532532, 0.06982278823852539, 0.03607246279716492, 0.26187247037887573, 0.08725959062576294, 0.03885070979595184, 0.020601332187652588, 0.044718168675899506, 0.011907165870070457, 0.03505922481417656], [0.033416807651519775, 0.01724047027528286, 0.012117935344576836, 0.008382346481084824, 0.07856708765029907, 0.041315339505672455, 0.00984850712120533, 0.08611111342906952, 0.22651296854019165, 0.02271968312561512, 0.12254492193460464, 0.01883450523018837, 0.04372764751315117, 0.0786486491560936, 0.04650278761982918, 0.04760533198714256, 0.01952771283686161, 0.08637620508670807], [0.020134154707193375, 0.01764058880507946, 0.02795197255909443, 0.0023598079569637775, 0.0061493548564612865, 0.021369569003582, 0.004942969419062138, 0.04100930690765381, 0.07312382012605667, 0.012022405862808228, 0.027218542993068695, 0.043493300676345825, 0.005724899470806122, 0.4460931718349457, 0.03542216494679451, 0.16222938895225525, 0.012518331408500671, 0.040596235543489456], [0.06568345427513123, 0.0178653784096241, 0.08898939937353134, 0.04074271768331528, 0.04044349864125252, 0.033229101449251175, 0.03402460366487503, 0.07001729309558868, 0.027297118678689003, 0.04466843232512474, 0.03022116795182228, 0.056219909340143204, 0.08650120347738266, 0.041884567588567734, 0.0439583994448185, 0.13535872101783752, 0.07226161658763885, 0.07063349336385727], [0.07272116839885712, 0.017914285883307457, 0.019031692296266556, 0.005901832599192858, 0.02865898422896862, 0.011312663555145264, 0.015175985172390938, 0.19650088250637054, 0.06854676455259323, 0.03342251852154732, 0.0218898206949234, 0.060166116803884506, 0.04939538985490799, 0.04343608394265175, 0.04111025854945183, 0.07126592099666595, 0.04619253799319267, 0.19735708832740784], [0.05506259575486183, 0.020329194143414497, 0.2088211476802826, 0.014450016431510448, 0.05005038529634476, 0.038776639848947525, 0.028963161632418633, 0.11454232037067413, 0.033131394535303116, 0.03628163784742355, 0.017227690666913986, 0.03663219138979912, 0.023689132183790207, 0.06414170563220978, 0.050926096737384796, 0.041133955121040344, 0.0554349347949028, 0.11040579527616501], [0.15614549815654755, 0.006023980677127838, 0.0019445938523858786, 0.003848867956548929, 0.007803231943398714, 0.0040822019800543785, 0.01321367546916008, 0.29552313685417175, 0.02814982458949089, 0.016865013167262077, 0.018230311572551727, 0.004961779806762934, 0.007603655103594065, 0.013753061182796955, 0.0366346538066864, 0.008631321601569653, 0.06563374400138855, 0.3109514117240906], [0.3992187976837158, 0.0012508085928857327, 0.00017913947522174567, 0.0008692066767252982, 0.00019746813632082194, 0.0002979004057124257, 0.06978925317525864, 0.20499248802661896, 0.000161585325258784, 0.0003476796846371144, 0.00022132252342998981, 0.00022926101519260556, 0.00028329697670415044, 0.0007596738869324327, 0.0013280268758535385, 0.0005667912191711366, 0.12014314532279968, 0.19916416704654694]], [[0.13745637238025665, 0.050162047147750854, 0.03446057811379433, 0.13856953382492065, 0.03605016693472862, 0.11384551227092743, 0.12187586724758148, 0.011966499499976635, 0.04562266543507576, 0.014086851850152016, 0.09817298501729965, 0.016078831627964973, 0.016512297093868256, 0.02155858650803566, 0.003235497511923313, 0.04552112892270088, 0.08359473198652267, 0.011229798197746277], [0.13695171475410461, 0.16251085698604584, 0.044054560363292694, 0.08992696553468704, 0.03204122930765152, 0.08050069212913513, 0.12995800375938416, 0.029275977984070778, 0.035434987396001816, 0.04149770736694336, 0.032472748309373856, 0.017151378095149994, 0.011664632707834244, 0.01741609536111355, 0.003426431445404887, 0.030352503061294556, 0.07789348065853119, 0.02747013047337532], [0.12264012545347214, 0.22295208275318146, 0.017813649028539658, 0.07063274830579758, 0.016455426812171936, 0.06535535305738449, 0.05678039416670799, 0.04319395497441292, 0.04056832566857338, 0.1025317832827568, 0.006188032682985067, 0.027358803898096085, 0.01279585249722004, 0.08543258160352707, 0.005866740830242634, 0.03340034559369087, 0.02933024987578392, 0.040703535079956055], [0.23564545810222626, 0.1155063807964325, 0.06224764138460159, 0.027807112783193588, 0.01972048357129097, 0.032765164971351624, 0.15880057215690613, 0.0514608733355999, 0.07063795626163483, 0.02316187135875225, 0.019372113049030304, 0.02136293053627014, 0.010387427173554897, 0.021119223907589912, 0.006024612113833427, 0.017571035772562027, 0.061554886400699615, 0.04485422745347023], [0.2976570725440979, 0.03164852410554886, 0.026580827310681343, 0.056151777505874634, 0.03905099630355835, 0.05442719906568527, 0.1180984228849411, 0.05837623402476311, 0.052888255566358566, 0.013391987420618534, 0.030512437224388123, 0.02744746021926403, 0.011896033771336079, 0.045039188116788864, 0.00971617829054594, 0.02656419388949871, 0.04761555790901184, 0.05293763801455498], [0.2666008174419403, 0.02442570962011814, 0.04427086561918259, 0.0786454826593399, 0.010753468610346317, 0.004442903678864241, 0.1608782857656479, 0.08757051825523376, 0.042281750589609146, 0.009100450202822685, 0.011281066574156284, 0.016087353229522705, 0.029673263430595398, 0.014441006816923618, 0.02847660705447197, 0.014219780452549458, 0.07613328099250793, 0.08071733266115189], [0.09416990727186203, 0.05235547944903374, 0.0396030955016613, 0.13485537469387054, 0.051804665476083755, 0.12934385240077972, 0.09693871438503265, 0.026575688272714615, 0.09036386758089066, 0.025173228234052658, 0.07807611674070358, 0.020054085180163383, 0.01669015921652317, 0.029336977750062943, 0.005627666600048542, 0.03425222635269165, 0.05003815144300461, 0.024740735068917274], [0.1062750443816185, 0.007336172740906477, 0.007554736454039812, 0.0024290625005960464, 0.0018766527064144611, 0.0013471735874190927, 0.008215014822781086, 0.42787355184555054, 0.0003981992485933006, 0.003754247212782502, 0.002188313053920865, 0.0006329542957246304, 0.005429350305348635, 0.006851165555417538, 0.0028127545956522226, 0.0038844081573188305, 0.009540691040456295, 0.40160056948661804], [0.2571696639060974, 0.014689053408801556, 0.045763541013002396, 0.018712328746914864, 0.08144783228635788, 0.02044818364083767, 0.10775471478700638, 0.048349522054195404, 0.029330790042877197, 0.017501357942819595, 0.04635738208889961, 0.049948856234550476, 0.008710663765668869, 0.03192462772130966, 0.006840257439762354, 0.07169916480779648, 0.09877336770296097, 0.04457877576351166], [0.11669010668992996, 0.08141135424375534, 0.01643838733434677, 0.0347476564347744, 0.021170612424612045, 0.0153327826410532, 0.055765118449926376, 0.03845375031232834, 0.06987067312002182, 0.16965261101722717, 0.028213992714881897, 0.1082238033413887, 0.026900839060544968, 0.05977989733219147, 0.025372633710503578, 0.01960550807416439, 0.07688532769680023, 0.03548490256071091], [0.12576822936534882, 0.011907325126230717, 0.004880785476416349, 0.2875458002090454, 0.009142311289906502, 0.016558222472667694, 0.038783494383096695, 0.01930484175682068, 0.08121801167726517, 0.02703089267015457, 0.13686656951904297, 0.06649120151996613, 0.04292783513665199, 0.004239181522279978, 0.015248332172632217, 0.014432985335588455, 0.07906241714954376, 0.01859155111014843], [0.144586443901062, 0.05220945551991463, 0.04407442733645439, 0.03857988491654396, 0.060191214084625244, 0.01610109582543373, 0.05863987281918526, 0.06202993169426918, 0.04140615090727806, 0.018517717719078064, 0.13437221944332123, 0.04624545946717262, 0.023804880678653717, 0.06078602746129036, 0.04741615056991577, 0.04318896681070328, 0.051325976848602295, 0.0565241277217865], [0.16976970434188843, 0.040584541857242584, 0.007875078357756138, 0.013641733676195145, 0.021166766062378883, 0.006592150311917067, 0.04230622947216034, 0.14959797263145447, 0.03316618874669075, 0.03636949881911278, 0.01338182669132948, 0.04273374378681183, 0.01147929672151804, 0.03642040118575096, 0.13291394710540771, 0.029491333290934563, 0.07346533983945847, 0.13904422521591187], [0.14746227860450745, 0.03607584163546562, 0.02425595186650753, 0.012616107240319252, 0.018992237746715546, 0.006499775219708681, 0.027925526723265648, 0.08204635232686996, 0.17363427579402924, 0.01730017177760601, 0.003935430198907852, 0.021874696016311646, 0.08089771866798401, 0.013484499417245388, 0.12695510685443878, 0.047950629144907, 0.07443293929100037, 0.08366032689809799], [0.12891951203346252, 0.024949969723820686, 0.01770532689988613, 0.01756572164595127, 0.03833971545100212, 0.011084186844527721, 0.024932140484452248, 0.1397048979997635, 0.018138660117983818, 0.020990470424294472, 0.03992150351405144, 0.1128055602312088, 0.03297208622097969, 0.04436596482992172, 0.10899721831083298, 0.03868711739778519, 0.04681049659848213, 0.13310939073562622], [0.16742824018001556, 0.020144006237387657, 0.034478966146707535, 0.00825194176286459, 0.014483002945780754, 0.0021009244956076145, 0.012774520553648472, 0.1844293624162674, 0.049537595361471176, 0.0061189946718513966, 0.0036744948010891676, 0.014983762986958027, 0.06292724609375, 0.03768472373485565, 0.11705886572599411, 0.04208366200327873, 0.031602367758750916, 0.19023728370666504], [0.11069484055042267, 0.023612026125192642, 0.024295344948768616, 0.05044462904334068, 0.026651274412870407, 0.050704021006822586, 0.05417909100651741, 0.03182353079319, 0.1415931135416031, 0.0368904285132885, 0.1618758887052536, 0.02541937306523323, 0.02637551911175251, 0.04049346596002579, 0.012382406741380692, 0.056055936962366104, 0.09541076421737671, 0.03109828755259514], [0.1044466570019722, 0.006854222156107426, 0.006928645074367523, 0.002273461315780878, 0.001759708859026432, 0.001255650888197124, 0.007934908382594585, 0.4289371371269226, 0.0003798650286626071, 0.0034865138586610556, 0.0020947372540831566, 0.0005966915632598102, 0.005189530551433563, 0.006375344004482031, 0.0028163292445242405, 0.0036642812192440033, 0.009546573273837566, 0.40545976161956787]]], [[[0.039927370846271515, 0.010668551549315453, 0.025423990562558174, 0.013395324349403381, 0.0013462493661791086, 0.014284237287938595, 0.011309710331261158, 0.27312755584716797, 0.016346009448170662, 0.06316936016082764, 0.01634182035923004, 0.023307543247938156, 0.01612682081758976, 0.05203910544514656, 0.050246961414813995, 0.05039509758353233, 0.06076962128281593, 0.26177462935447693], [0.04279358685016632, 0.011726117692887783, 0.09083914011716843, 0.01056581735610962, 0.001191876595839858, 0.062309518456459045, 0.05653326213359833, 0.3268633484840393, 0.0012529462110251188, 0.009160935878753662, 0.0005588672356680036, 0.003864011960104108, 0.0072076707147061825, 0.011514698155224323, 0.0019557515624910593, 0.01844283938407898, 0.022513817995786667, 0.32070574164390564], [0.030200766399502754, 0.02649892121553421, 0.06860698014497757, 0.03314366191625595, 0.004175487905740738, 0.049377668648958206, 0.071141317486763, 0.32062503695487976, 0.004407459404319525, 0.009546696208417416, 0.0018733131000772119, 0.006525455974042416, 0.019178111106157303, 0.006553690880537033, 0.005639702081680298, 0.004077672027051449, 0.028507912531495094, 0.30992019176483154], [0.0665907934308052, 0.04309407249093056, 0.07253212481737137, 0.01405242457985878, 0.0012260944349691272, 0.034922365099191666, 0.07238636910915375, 0.3149593770503998, 0.0013154895277693868, 0.014275859110057354, 0.0004237256944179535, 0.002738172421231866, 0.005754783283919096, 0.004678451456129551, 0.006693792529404163, 0.008317096158862114, 0.0263689998537302, 0.3096699118614197], [0.0794607549905777, 0.020320231094956398, 0.005821686703711748, 0.013528645038604736, 0.0001815698778955266, 0.0022825398482382298, 0.03235449641942978, 0.40381449460983276, 0.0006310991593636572, 0.006580366753041744, 0.0019839296583086252, 0.0017140294658020139, 0.0015484234318137169, 0.0015338071389123797, 0.019124718382954597, 0.0027966569177806377, 0.0214107483625412, 0.3849118649959564], [0.025455452501773834, 0.04411782696843147, 0.07378262281417847, 0.05076540634036064, 0.005716584622859955, 0.06724534928798676, 0.06633520871400833, 0.2874789237976074, 0.0032819367479532957, 0.016611630097031593, 0.0034574060700833797, 0.007219596300274134, 0.001905347453430295, 0.009075338952243328, 0.009251585230231285, 0.018863650038838387, 0.028567466884851456, 0.28086861968040466], [0.084690622985363, 0.05601583793759346, 0.043844208121299744, 0.1809176206588745, 0.01223018579185009, 0.008525275625288486, 0.045342668890953064, 0.2312459498643875, 0.01670978032052517, 0.035332344472408295, 0.006122537422925234, 0.006871478632092476, 0.0018813200294971466, 0.004630250856280327, 0.011159245856106281, 0.001674699131399393, 0.02667257934808731, 0.22613346576690674], [0.099197156727314, 0.004111211746931076, 0.0011682185577228665, 0.0010876591550186276, 0.0010847151279449463, 0.0013435358414426446, 0.02815828286111355, 0.42227619886398315, 0.0019038923783227801, 0.002301236381754279, 0.0013633060734719038, 0.0008718101307749748, 0.0007843556813895702, 0.00041862830403260887, 0.0017845077672973275, 0.0007753226673230529, 0.026840010657906532, 0.4045298993587494], [0.2237694412469864, 0.008630914613604546, 0.013844641856849194, 0.00805127527564764, 0.00134505913592875, 0.004086348228156567, 0.03318837657570839, 0.28604215383529663, 0.0009252337622456253, 0.017670705914497375, 0.014051007106900215, 0.010670159012079239, 0.005581304896622896, 0.0019912507850676775, 0.028667394071817398, 0.0020423305686563253, 0.06788478046655655, 0.27155765891075134], [0.02128504402935505, 0.02379612997174263, 0.3011510670185089, 0.016073985025286674, 0.00039854939677752554, 0.05113432928919792, 0.0340646430850029, 0.14788739383220673, 0.0034042000770568848, 0.009985605254769325, 0.00611204095184803, 0.008521420881152153, 0.02689112350344658, 0.027292657643556595, 0.025912821292877197, 0.10322805494070053, 0.04751892387866974, 0.14534202218055725], [0.0379609540104866, 0.0057250941172242165, 0.012886229902505875, 0.010513766668736935, 0.0002415676135569811, 0.003754835808649659, 0.014316543936729431, 0.391783207654953, 0.0018820035038515925, 0.012919425964355469, 0.0050966753624379635, 0.013295669108629227, 0.011688361875712872, 0.0029656875412911177, 0.032372184097766876, 0.011204387061297894, 0.05196122080087662, 0.3794322907924652], [0.028267614543437958, 0.004139944911003113, 0.003257719799876213, 0.003370913676917553, 0.00020852267334703356, 0.0019362791208550334, 0.009806862100958824, 0.4686003625392914, 0.0003088282246608287, 0.0038722495082765818, 0.002536363434046507, 0.0014559359988197684, 0.0021187595557421446, 0.00035484012914821506, 0.00505682872608304, 0.0007367039797827601, 0.01761052757501602, 0.44636082649230957], [0.02720515988767147, 0.003847257699817419, 0.001990122254937887, 0.0038523958064615726, 0.00026519078528508544, 0.0046157254837453365, 0.009767244569957256, 0.4507097601890564, 0.0007372355903498828, 0.0050607891753315926, 0.003663962706923485, 0.0027861162088811398, 0.008321686647832394, 0.0022508520632982254, 0.011652931571006775, 0.002960656536743045, 0.026620838791131973, 0.4336920380592346], [0.015256076119840145, 0.013842451386153698, 0.03170451521873474, 0.002498450456187129, 0.0022773602977395058, 0.035399921238422394, 0.035880256444215775, 0.3887113630771637, 0.0007684185402467847, 0.004508805926889181, 0.0006834729574620724, 0.00798022747039795, 0.009546407498419285, 0.0037509151734411716, 0.011952046304941177, 0.024808499962091446, 0.0433666855096817, 0.36706408858299255], [0.03606889769434929, 0.0056025246158242226, 0.005975532811135054, 0.003005386097356677, 0.0003225567634217441, 0.00429846066981554, 0.015659308061003685, 0.4335079789161682, 0.001264640362933278, 0.005632095504552126, 0.0025230783503502607, 0.0030151179526001215, 0.020208919420838356, 0.006051517091691494, 0.008276676759123802, 0.007193739525973797, 0.02744259499013424, 0.41395097970962524], [0.012613079510629177, 0.008798990398645401, 0.012409877963364124, 0.0013372706016525626, 0.0016276350943371654, 0.019957609474658966, 0.01775863580405712, 0.4353967010974884, 0.000709985033608973, 0.0033082712907344103, 0.0015336635988205671, 0.002939381869509816, 0.012714788317680359, 0.007548564113676548, 0.008137133903801441, 0.011045644991099834, 0.023737462237477303, 0.4184253215789795], [0.08531798422336578, 0.021704889833927155, 0.011338997632265091, 0.06483350694179535, 0.004470475018024445, 0.0026010728906840086, 0.020845914259552956, 0.30402737855911255, 0.025534093379974365, 0.05241836979985237, 0.01825014315545559, 0.008552411571145058, 0.002805947093293071, 0.004287172108888626, 0.021848788484930992, 0.0017714869463816285, 0.05598924681544304, 0.29340216517448425], [0.09870890527963638, 0.00419641612097621, 0.0011771739227697253, 0.0011376969050616026, 0.0011287895031273365, 0.0013665097067132592, 0.02844199165701866, 0.42202943563461304, 0.0019610277377068996, 0.0023383821826428175, 0.0014142923755571246, 0.000893391901627183, 0.0007972288876771927, 0.0004161411488894373, 0.0018322638934478164, 0.0007748621865175664, 0.026885125786066055, 0.40450039505958557]], [[0.1004447191953659, 0.08697658777236938, 0.14815954864025116, 0.2926809787750244, 0.05787771940231323, 0.09773397445678711, 0.094001404941082, 0.04529911279678345, 0.009029654785990715, 0.0010368170915171504, 0.0023225971963256598, 0.0014622259186580777, 0.0028899498283863068, 0.00505652604624629, 0.0012946100905537605, 0.0038514365442097187, 0.00511001143604517, 0.044772181659936905], [0.13509494066238403, 0.3662252724170685, 0.02289281226694584, 0.006042062770575285, 0.001133958576247096, 0.0021682491060346365, 0.08152801543474197, 0.150120809674263, 0.002295786514878273, 0.024448463693261147, 0.0005395695334300399, 0.001492215204052627, 0.0022575827315449715, 0.006895842961966991, 0.004439093638211489, 0.0036304015666246414, 0.03954494372010231, 0.14925000071525574], [0.1635245382785797, 0.0681450366973877, 0.00655555073171854, 0.00357191264629364, 0.0022181132808327675, 0.009824017994105816, 0.07880403846502304, 0.2917289137840271, 0.0008846977725625038, 0.003197682788595557, 6.305569695541635e-05, 0.001846805796958506, 0.000943402701523155, 0.01015840657055378, 0.009610074572265148, 0.025885451585054398, 0.03254038095474243, 0.29049792885780334], [0.16444192826747894, 0.08166542649269104, 0.005680874455720186, 0.008536402136087418, 0.0013874724972993135, 0.003488669404760003, 0.09340620785951614, 0.2838193476200104, 0.0017577616963535547, 0.0075034406036138535, 8.482092380290851e-05, 0.0017505657160654664, 0.001151096192188561, 0.0024136954452842474, 0.010241279378533363, 0.0030571066308766603, 0.044980239123106, 0.284633606672287], [0.09307387471199036, 0.06721414625644684, 0.007192071061581373, 0.001226519700139761, 0.001736088772304356, 0.0011016014032065868, 0.0759558230638504, 0.2973990738391876, 0.005977197550237179, 0.037753552198410034, 0.00022827037901151925, 0.0101469112560153, 0.003002574434503913, 0.002955061150714755, 0.03939761221408844, 0.0016250984044745564, 0.058296240866184235, 0.2957184314727783], [0.07513685524463654, 0.034686580300331116, 0.00382444029673934, 0.005243759602308273, 0.005894680507481098, 0.0008140284917317331, 0.05787088721990585, 0.3670696020126343, 0.0016058632172644138, 0.008419140242040157, 0.0008317311876453459, 0.005574050825089216, 0.0006784722208976746, 0.009379821829497814, 0.02080925926566124, 0.004885843489319086, 0.03133060410618782, 0.3659442961215973], [0.17047469317913055, 0.026460934430360794, 0.019532661885023117, 0.025373170152306557, 0.009625977836549282, 0.014175202697515488, 0.18750348687171936, 0.19479922950267792, 0.019072990864515305, 0.009064772166311741, 0.003561051795259118, 0.00674331234768033, 0.006686551030725241, 0.005474025383591652, 0.0066201938316226006, 0.005026650615036488, 0.09797956794500351, 0.19182561337947845], [0.020873380824923515, 0.007711055688560009, 0.0067887031473219395, 0.004606418777257204, 0.0057013025507330894, 0.026407793164253235, 0.0075332410633563995, 0.42983558773994446, 0.017538510262966156, 0.006337795872241259, 0.003082175739109516, 0.013335008174180984, 0.009606325067579746, 0.006055791396647692, 0.007286397740244865, 0.004829463083297014, 0.00992259755730629, 0.4125485122203827], [0.15987329185009003, 0.010595112107694149, 0.004633331671357155, 0.0005805359687656164, 0.0013927927939221263, 0.0008206074708141387, 0.06265925616025925, 0.2888340353965759, 0.01051555760204792, 0.005855455528944731, 0.0013988042483106256, 0.008465155959129333, 0.0042140004225075245, 0.002222393173724413, 0.017400523647665977, 0.0020684334449470043, 0.13448211550712585, 0.2839885950088501], [0.148858442902565, 0.03894448280334473, 0.0015642219223082066, 0.002215384040027857, 0.00024125554773490876, 0.00020401259826030582, 0.04379577562212944, 0.3236675262451172, 0.0028393473476171494, 0.015314935706555843, 0.0020320406183600426, 0.000787015538662672, 0.00044386490480974317, 0.003602523822337389, 0.007715044543147087, 0.0025459839962422848, 0.0823238343000412, 0.3229043185710907], [0.06869526952505112, 0.009253841824829578, 0.000805002695415169, 0.17795144021511078, 0.000485600990941748, 0.0010269463527947664, 0.03555695712566376, 0.2375638335943222, 0.0055615101009607315, 0.014557267539203167, 0.08508272469043732, 0.002563643269240856, 0.00972051452845335, 0.0019391686655580997, 0.007594093214720488, 0.0014777608448639512, 0.11000239849090576, 0.23016200959682465], [0.12722359597682953, 0.009255512617528439, 0.0006522368057630956, 0.0006996101583354175, 0.0011498975800350308, 0.000678436947055161, 0.07193395495414734, 0.29237738251686096, 0.0021806887816637754, 0.004005508963018656, 0.0008179774740710855, 0.005866870284080505, 0.0010028800461441278, 0.0031410858500748873, 0.038690097630023956, 0.001258685952052474, 0.15306714177131653, 0.28599831461906433], [0.07806295901536942, 0.007074024993926287, 0.0008128152694553137, 0.0017547878669574857, 0.00028320986893959343, 0.00014794597518630326, 0.02122882567346096, 0.3718090355396271, 0.0015148078091442585, 0.00201263721100986, 0.0004639709950424731, 0.0017382525838911533, 0.0020605905447155237, 0.012563331983983517, 0.08362829685211182, 0.010424165986478329, 0.04088355973362923, 0.3635367155075073], [0.13270114362239838, 0.007692325860261917, 0.0016272233333438635, 0.0043623861856758595, 0.0007901415228843689, 0.0033263189252465963, 0.052610334008932114, 0.2889975309371948, 0.0024821495171636343, 0.014894410036504269, 0.0015901929000392556, 0.00469441432505846, 0.02117910422384739, 0.03024669550359249, 0.056963011622428894, 0.025782926008105278, 0.07216000556945801, 0.27789971232414246], [0.05340107902884483, 0.004849651828408241, 0.0014526500599458814, 0.0020803441293537617, 0.0011938614770770073, 0.001302318531088531, 0.019555892795324326, 0.14268942177295685, 0.0037122147623449564, 0.007203707471489906, 0.0017562095308676362, 0.017090022563934326, 0.010307184420526028, 0.012858710251748562, 0.5344483256340027, 0.008620180189609528, 0.03847604990005493, 0.1390022337436676], [0.13852062821388245, 0.009660283103585243, 0.006158177740871906, 0.002498967805877328, 0.0007568130968138576, 0.0011358256451785564, 0.0398440808057785, 0.3283310830593109, 0.0006706080166622996, 0.004166875034570694, 0.0003609689592849463, 0.004514767788350582, 0.010477501899003983, 0.02475035935640335, 0.04856542497873306, 0.011445309966802597, 0.050397370010614395, 0.3177449405193329], [0.1203346773982048, 0.010878846049308777, 0.010787240229547024, 0.00921997707337141, 0.007359100505709648, 0.01050320640206337, 0.09011030942201614, 0.20504777133464813, 0.036303602159023285, 0.016572514548897743, 0.009502016939222813, 0.01654214598238468, 0.014703618362545967, 0.007359298877418041, 0.014052575454115868, 0.008457101881504059, 0.21100963652133942, 0.20125627517700195], [0.020869050174951553, 0.007777991704642773, 0.00685927364975214, 0.004707410931587219, 0.00586279109120369, 0.026851659640669823, 0.007558899465948343, 0.428874135017395, 0.017636504024267197, 0.006521133705973625, 0.0031691440381109715, 0.013562708161771297, 0.009754634462296963, 0.006119623780250549, 0.0073306383565068245, 0.004845588933676481, 0.009951596148312092, 0.4117472171783447]], [[0.03466535732150078, 0.005906739737838507, 0.05680963769555092, 0.01432802900671959, 0.020989058539271355, 0.016076814383268356, 0.0028270555194467306, 0.07333064079284668, 0.10866568237543106, 0.09725113958120346, 0.12021805346012115, 0.0845312550663948, 0.0794367641210556, 0.09288670122623444, 0.019418762996792793, 0.08038876950740814, 0.020366769284009933, 0.07190272212028503], [0.04252896457910538, 0.029817499220371246, 0.5160648226737976, 0.040217190980911255, 0.05508490279316902, 0.09229681640863419, 0.018258174881339073, 0.03884297236800194, 0.03623262420296669, 0.01191285252571106, 0.004939763806760311, 0.02308192104101181, 0.007258732803165913, 0.02145150490105152, 0.006162031088024378, 0.010289904661476612, 0.007102116476744413, 0.038457222282886505], [0.08611851185560226, 0.04335745424032211, 0.14748285710811615, 0.04791613668203354, 0.026255717501044273, 0.03325994312763214, 0.02993939444422722, 0.2490779608488083, 0.015052839182317257, 0.017226001247763634, 0.005980141460895538, 0.018188780173659325, 0.0059185633435845375, 0.009482339955866337, 0.0034330838825553656, 0.005506662651896477, 0.011204253882169724, 0.24459941685199738], [0.04532117024064064, 0.019750380888581276, 0.2661151885986328, 0.06385651230812073, 0.18861046433448792, 0.04972066730260849, 0.011997582390904427, 0.038802944123744965, 0.07614709436893463, 0.005162123590707779, 0.012577616609632969, 0.14519554376602173, 0.008565749041736126, 0.011092117056250572, 0.0050905668176710606, 0.00957192201167345, 0.004218634683638811, 0.03820377588272095], [0.0393734835088253, 0.029615730047225952, 0.05496162176132202, 0.07653293013572693, 0.4306057393550873, 0.0901598110795021, 0.007612872868776321, 0.03054128773510456, 0.07277911901473999, 0.010665071196854115, 0.03441762179136276, 0.0218783151358366, 0.02840597741305828, 0.013920282945036888, 0.007013923488557339, 0.017717374488711357, 0.003534315386787057, 0.03026452474296093], [0.07206086069345474, 0.0348307229578495, 0.15316787362098694, 0.02445731870830059, 0.06375640630722046, 0.09266769886016846, 0.03103839047253132, 0.18232282996177673, 0.05040578916668892, 0.021723689511418343, 0.011673368513584137, 0.020133396610617638, 0.012675839476287365, 0.02526470459997654, 0.005389898084104061, 0.008351814933121204, 0.011300373822450638, 0.1787789911031723], [0.06632090359926224, 0.057847436517477036, 0.24257613718509674, 0.09720002114772797, 0.09520717710256577, 0.10470359027385712, 0.020591994747519493, 0.09545079618692398, 0.03409520536661148, 0.014590109698474407, 0.009484008885920048, 0.035269223153591156, 0.004725113045424223, 0.009066988714039326, 0.004088010638952255, 0.006137330085039139, 0.006054155062884092, 0.09659188240766525], [0.0039885276928544044, 0.0058994898572564125, 0.0014845558907836676, 0.0006871134974062443, 0.00045502957073040307, 0.0006014243699610233, 0.01861751079559326, 0.4765521287918091, 0.002298631239682436, 0.0012838615803048015, 0.0005638358416035771, 0.0013968913117423654, 0.00040113599970936775, 0.00020359645714052022, 0.001030260929837823, 0.00038791861152276397, 0.0211165901273489, 0.4630315601825714], [0.05808135122060776, 0.007903077639639378, 0.008251064456999302, 0.013762669637799263, 0.04246354103088379, 0.08224475383758545, 0.004855191335082054, 0.1874433308839798, 0.07008587568998337, 0.015389678999781609, 0.050404228270053864, 0.07908821105957031, 0.1332848221063614, 0.0154644176363945, 0.02325836755335331, 0.01167977787554264, 0.013358823023736477, 0.18298077583312988], [0.020741919055581093, 0.019646262750029564, 0.6629657745361328, 0.009310458786785603, 0.013878319412469864, 0.02863168716430664, 0.015410681255161762, 0.03666144981980324, 0.006111299153417349, 0.04664858058094978, 0.0107496976852417, 0.046498920768499374, 0.00442558154463768, 0.006670255213975906, 0.006250779610127211, 0.003506392939016223, 0.02588919922709465, 0.036002617329359055], [0.09043166786432266, 0.005342531017959118, 0.01100019458681345, 0.01014859788119793, 0.013801252469420433, 0.03068246692419052, 0.004590142052620649, 0.21873824298381805, 0.09665105491876602, 0.023738723248243332, 0.04312926158308983, 0.1440122276544571, 0.030539188534021378, 0.014483828097581863, 0.027538307011127472, 0.008782132528722286, 0.01345953531563282, 0.2129305750131607], [0.05307503789663315, 0.016318999230861664, 0.09278155863285065, 0.02379555255174637, 0.08495921641588211, 0.05140041932463646, 0.005888082552701235, 0.07419399917125702, 0.17507097125053406, 0.02380201406776905, 0.11751517653465271, 0.1161857321858406, 0.033722955733537674, 0.026157855987548828, 0.00770624540746212, 0.011657008901238441, 0.013421137817203999, 0.07234807312488556], [0.044378265738487244, 0.003078899346292019, 0.002254289109259844, 0.0014298766618594527, 0.004492605105042458, 0.004540660418570042, 0.014481196179986, 0.41853848099708557, 0.02368905209004879, 0.011915361508727074, 0.003375017549842596, 0.007493525743484497, 0.00600089505314827, 0.005945438053458929, 0.01276878360658884, 0.004112950526177883, 0.03191183879971504, 0.3995928168296814], [0.09029122442007065, 0.011645961552858353, 0.015567945316433907, 0.0049962918274104595, 0.002368813380599022, 0.010742565616965294, 0.03488537296652794, 0.3467831313610077, 0.01785646378993988, 0.012669862248003483, 0.007006247062236071, 0.018267590552568436, 0.00970123615115881, 0.006956860888749361, 0.010292592458426952, 0.008475204929709435, 0.05866408348083496, 0.3328286111354828], [0.030545616522431374, 0.010430654510855675, 0.06136385723948479, 0.008205211721360683, 0.023616882041096687, 0.017605125904083252, 0.008149153552949429, 0.3048078417778015, 0.069024458527565, 0.02400542050600052, 0.057900190353393555, 0.024323586374521255, 0.022823728621006012, 0.0077410307712852955, 0.010895826853811741, 0.005037324037402868, 0.017333542928099632, 0.29619067907333374], [0.032056234776973724, 0.014220052398741245, 0.03894845396280289, 0.004008129239082336, 0.002649441361427307, 0.010989345610141754, 0.013052254915237427, 0.36704763770103455, 0.0203681830316782, 0.027634596452116966, 0.01223784126341343, 0.013203668408095837, 0.011192014440894127, 0.032391779124736786, 0.009829528629779816, 0.01158920954912901, 0.026710744947195053, 0.35187092423439026], [0.06471012532711029, 0.025389958173036575, 0.11018400639295578, 0.05772120878100395, 0.08866102248430252, 0.07823659479618073, 0.010580687783658504, 0.10807028412818909, 0.11370342969894409, 0.039599642157554626, 0.04852229729294777, 0.07820114493370056, 0.012975751422345638, 0.01794624514877796, 0.009802806191146374, 0.013724887743592262, 0.014304733835160732, 0.10766521841287613], [0.004074168391525745, 0.00608546007424593, 0.0015134536661207676, 0.0007231977651827037, 0.0004749887448269874, 0.0006209992570802569, 0.01933569647371769, 0.47565674781799316, 0.002321261912584305, 0.0013110651634633541, 0.0005758790066465735, 0.0014232597313821316, 0.00040720979450270534, 0.00020564463920891285, 0.001044130534864962, 0.0003930812526959926, 0.021542847156524658, 0.4622909426689148]], [[0.12743180990219116, 0.011733721010386944, 0.02740498259663582, 0.005554643459618092, 0.00457743788138032, 0.016678322106599808, 0.024960454553365707, 0.11539267003536224, 0.022948553785681725, 0.10770302265882492, 0.02678835764527321, 0.02862645871937275, 0.024837063625454903, 0.0783766508102417, 0.030008988454937935, 0.09172317385673523, 0.1433921456336975, 0.1118614599108696], [0.08733322471380234, 0.03530232608318329, 0.14969612658023834, 0.06534449011087418, 0.022119130939245224, 0.05197777971625328, 0.10706999897956848, 0.20034390687942505, 0.02044832333922386, 0.004827376455068588, 0.004260435234755278, 0.006534361746162176, 0.007389443460851908, 0.00716952932998538, 0.0051629203371703625, 0.009490355849266052, 0.01586132124066353, 0.19966891407966614], [0.16202987730503082, 0.07704012840986252, 0.034857653081417084, 0.04618297889828682, 0.012616577558219433, 0.213375523686409, 0.10733926296234131, 0.11787305027246475, 0.012523176148533821, 0.025694087147712708, 0.0016423385823145509, 0.008480128832161427, 0.009036370553076267, 0.016727149486541748, 0.00900261104106903, 0.007346793543547392, 0.021806176751852036, 0.11642615497112274], [0.08302342891693115, 0.03763379901647568, 0.13300342857837677, 0.040006376802921295, 0.04485664889216423, 0.07791782170534134, 0.06445290148258209, 0.21958208084106445, 0.007538627367466688, 0.00831550545990467, 0.01153781171888113, 0.0070167118683457375, 0.019203146919608116, 0.007331408094614744, 0.007380517199635506, 0.005162830930203199, 0.010622087866067886, 0.21541492640972137], [0.030860701575875282, 0.02419825829565525, 0.038320448249578476, 0.05378545820713043, 0.012617412023246288, 0.04933851584792137, 0.05774189531803131, 0.3110387325286865, 0.028018176555633545, 0.010501767508685589, 0.014387954026460648, 0.008220909163355827, 0.021153369918465614, 0.005949904676526785, 0.008020126260817051, 0.004470017738640308, 0.014340141788125038, 0.3070361018180847], [0.14601340889930725, 0.05080786347389221, 0.15833823382854462, 0.04711734876036644, 0.03141247481107712, 0.00348980026319623, 0.08976146578788757, 0.11916311085224152, 0.039669446647167206, 0.01129006315022707, 0.03447737917304039, 0.011588691733777523, 0.037929534912109375, 0.02423391118645668, 0.013567402958869934, 0.037922777235507965, 0.024976300075650215, 0.1182408332824707], [0.08092018216848373, 0.04083489626646042, 0.09220860153436661, 0.06137646362185478, 0.05279597267508507, 0.05098963528871536, 0.10699112713336945, 0.20822440087795258, 0.006333335768431425, 0.011830657720565796, 0.002363272476941347, 0.008359072729945183, 0.005418083164840937, 0.013369405642151833, 0.004643585067242384, 0.017415549606084824, 0.029956672340631485, 0.20596899092197418], [0.021826570853590965, 0.01013452559709549, 0.015553249046206474, 0.00632872711867094, 0.005897911265492439, 0.006930015981197357, 0.01409920398145914, 0.4265640079975128, 0.00488376384600997, 0.008348834700882435, 0.003512097056955099, 0.004518778994679451, 0.005811029113829136, 0.013484722934663296, 0.006485698278993368, 0.010515416972339153, 0.01563264988362789, 0.4194728136062622], [0.056247640401124954, 0.02062574215233326, 0.031225431710481644, 0.012340448796749115, 0.02037731371819973, 0.014243409037590027, 0.01911298930644989, 0.1185140460729599, 0.020575737580657005, 0.058351002633571625, 0.0544712208211422, 0.045930080115795135, 0.060205843299627304, 0.10090139508247375, 0.03919772803783417, 0.09355749189853668, 0.11764536798000336, 0.11647704243659973], [0.1484278440475464, 0.016109086573123932, 0.02758353017270565, 0.01338847354054451, 0.0076916515827178955, 0.010690069757401943, 0.04038388654589653, 0.16215583682060242, 0.08564462512731552, 0.004245890770107508, 0.038900744169950485, 0.01719525083899498, 0.06566111743450165, 0.037011437118053436, 0.055177584290504456, 0.02677491120994091, 0.0876389816403389, 0.15531909465789795], [0.03536484017968178, 0.0030045395251363516, 0.0026903084944933653, 0.01040639542043209, 0.009763960726559162, 0.01067189872264862, 0.009185884147882462, 0.25588661432266235, 0.06535129994153976, 0.045358963310718536, 0.02577025815844536, 0.027688778936862946, 0.05279473215341568, 0.02699274569749832, 0.04840739816427231, 0.04066108167171478, 0.08615981787443161, 0.24384048581123352], [0.09812001138925552, 0.01470017246901989, 0.0392032228410244, 0.019477656111121178, 0.050850044935941696, 0.03860669210553169, 0.025741437450051308, 0.1519668996334076, 0.0589691624045372, 0.06008013337850571, 0.033762164413928986, 0.02192785032093525, 0.04184814915060997, 0.05041876062750816, 0.027038125321269035, 0.06118982657790184, 0.05748332291841507, 0.14861640334129333], [0.021508989855647087, 0.009861184284090996, 0.008583263494074345, 0.012337841093540192, 0.008833758533000946, 0.04811158403754234, 0.0073131415992975235, 0.12631851434707642, 0.027699049562215805, 0.06854362785816193, 0.03434881195425987, 0.023282039910554886, 0.005025592166930437, 0.13821686804294586, 0.03051151894032955, 0.27048978209495544, 0.034631699323654175, 0.12438273429870605], [0.06481388211250305, 0.030631477013230324, 0.051119256764650345, 0.009009292349219322, 0.0028977079782634974, 0.03185376152396202, 0.018175076693296432, 0.17838120460510254, 0.06533259153366089, 0.06518315523862839, 0.05659039691090584, 0.012497221119701862, 0.0963718369603157, 0.006770670879632235, 0.06490276753902435, 0.010870288126170635, 0.059995003044605255, 0.17460443079471588], [0.030923038721084595, 0.007563164923340082, 0.01864892803132534, 0.010142209008336067, 0.0055441525764763355, 0.009704366326332092, 0.005053847562521696, 0.2871916890144348, 0.03108331933617592, 0.03602399677038193, 0.024220837280154228, 0.018962010741233826, 0.04091940447688103, 0.062025800347328186, 0.01888330653309822, 0.0871492549777031, 0.025185275822877884, 0.28077542781829834], [0.06625939160585403, 0.017245648428797722, 0.015610597096383572, 0.005524837877601385, 0.0022841168101876974, 0.02201263979077339, 0.013477462343871593, 0.2743147313594818, 0.034794311970472336, 0.03650306910276413, 0.02527291141450405, 0.014333965256810188, 0.07101932913064957, 0.005042278673499823, 0.07414592802524567, 0.003906632773578167, 0.05083887279033661, 0.26741328835487366], [0.07612056285142899, 0.007207421585917473, 0.015059876255691051, 0.008600425906479359, 0.011254877783358097, 0.008697813376784325, 0.020706906914711, 0.23183558881282806, 0.03408888727426529, 0.0446951650083065, 0.020419331267476082, 0.022335968911647797, 0.030206739902496338, 0.048930574208498, 0.02210208959877491, 0.0706065371632576, 0.10293996334075928, 0.2241913378238678], [0.02207666076719761, 0.01035249512642622, 0.01584656909108162, 0.006427697371691465, 0.006028728559613228, 0.0069670891389250755, 0.014458661898970604, 0.4261413514614105, 0.004864797927439213, 0.008128922432661057, 0.003446537535637617, 0.0044856020249426365, 0.005777550861239433, 0.013383190147578716, 0.00643945625051856, 0.010447707027196884, 0.015540446154773235, 0.4191865026950836]], [[0.029000084847211838, 0.007147778756916523, 0.0012732738396152854, 0.006536349654197693, 0.003698871238157153, 0.00419430760666728, 0.017737606540322304, 0.4168916642665863, 0.011217436753213406, 0.023666420951485634, 0.010360737331211567, 0.002569466596469283, 0.0087733780965209, 0.0018550571985542774, 0.005549428518861532, 0.0057951114140450954, 0.01825687475502491, 0.4254761040210724], [0.07583723217248917, 0.00866509135812521, 0.23003174364566803, 0.3994467854499817, 0.01237899623811245, 0.02590174973011017, 0.050183121114969254, 0.08425033837556839, 0.0006643888773396611, 0.0012660007923841476, 0.0010733491508290172, 0.0015532600227743387, 0.0011666343780234456, 0.0021106433123350143, 0.006294535472989082, 0.003380643203854561, 0.012371652759611607, 0.08342378586530685], [0.057553187012672424, 0.007599798962473869, 0.0038285732734948397, 0.021059835329651833, 0.01292149443179369, 0.04675150290131569, 0.05218619108200073, 0.38445407152175903, 0.00032767406082712114, 0.003441272769123316, 0.00023672192764934152, 0.0008177513373084366, 0.0020439201034605503, 0.0010684612207114697, 0.00574119295924902, 0.005741660948842764, 0.011131688952445984, 0.3830949366092682], [0.011754250153899193, 0.002550513483583927, 0.0037371909711509943, 0.005155552644282579, 0.02368428371846676, 0.8183836936950684, 0.07194622606039047, 0.026134267449378967, 0.0008711349219083786, 0.0007436875021085143, 0.00014266058860812336, 8.480919495923445e-05, 0.0006984791834838688, 0.002855242695659399, 0.0003231409646105021, 0.0008175754337571561, 0.002391560235992074, 0.027725694701075554], [0.059166070073843, 0.005712205544114113, 0.003698964836075902, 0.012400583364069462, 0.02311685122549534, 0.2987513542175293, 0.21054722368717194, 0.18115822970867157, 0.0014946138253435493, 0.001495890086516738, 0.001273671630769968, 0.0006927768117748201, 0.0019109556451439857, 0.0015320221427828074, 0.0010408355155959725, 0.0007471466087736189, 0.006036452483385801, 0.18922406435012817], [0.038888659328222275, 0.004667897243052721, 0.005042595788836479, 0.012932277284562588, 0.010641931556165218, 0.03225531801581383, 0.19805973768234253, 0.34680962562561035, 0.0031483632046729326, 0.002063401509076357, 0.0006474539986811578, 0.0006903455941937864, 0.0003479349543340504, 0.0004786626959685236, 0.0020905842538923025, 0.0009374577202834189, 0.0047715213149785995, 0.3355262577533722], [0.019925884902477264, 0.002147180959582329, 0.0005512902862392366, 0.0019139813957735896, 0.0020143429283052683, 0.003076439956203103, 0.010763746686279774, 0.48099783062934875, 0.0022921410854905844, 0.003853387897834182, 0.0016092297155410051, 0.0009803248103708029, 0.0013252162607386708, 0.0003729851741809398, 0.00029977934900671244, 0.0004902426153421402, 0.0009376475936733186, 0.4664483666419983], [0.004776326939463615, 0.001787360874004662, 0.000561191700398922, 0.0011889796005561948, 0.0007774977711960673, 0.0005999394343234599, 0.003705322276800871, 0.48159369826316833, 0.0009145598160102963, 0.0023839501664042473, 0.0010290108621120453, 0.00048499213880859315, 0.0008886504219844937, 0.0008400732767768204, 0.0019582619424909353, 0.0012964761117473245, 0.0030506630428135395, 0.49216315150260925], [0.10887381434440613, 0.0016528887208551168, 0.0008396539487875998, 0.0021106423810124397, 0.0016514967428520322, 0.002206712029874325, 0.03871900215744972, 0.15040111541748047, 0.02383054792881012, 0.1182660311460495, 0.1581474393606186, 0.11741871386766434, 0.05201048031449318, 0.011664210818707943, 0.01854226365685463, 0.0036009768955409527, 0.03982894495129585, 0.15023504197597504], [0.014213803224265575, 0.00047932483721524477, 0.000392376707168296, 0.0002953741932287812, 0.00037678456283174455, 0.009012782014906406, 0.0044897920452058315, 0.027142180129885674, 0.0026526441797614098, 0.04124090448021889, 0.12916181981563568, 0.0764131024479866, 0.4299333691596985, 0.05489332228899002, 0.0999566838145256, 0.06744007766246796, 0.01573309302330017, 0.026172596961259842], [0.03599332273006439, 0.0005511943018063903, 0.0002024235436692834, 6.679161742795259e-05, 0.00013851228868588805, 0.0008589829667471349, 0.0012404705630615354, 0.05542965605854988, 0.0017245732014998794, 0.005991565994918346, 0.016350816935300827, 0.06449104100465775, 0.5990520715713501, 0.04106612876057625, 0.04730425402522087, 0.04806898906826973, 0.025875328108668327, 0.05559390038251877], [0.12207271158695221, 0.001878964016214013, 0.0015057666460052133, 0.0009395303204655647, 0.0009343416313640773, 0.0007851410191506147, 0.005704561714082956, 0.12007022649049759, 0.0016397549770772457, 0.009542828425765038, 0.018711136654019356, 0.02638634480535984, 0.07186067849397659, 0.11997956782579422, 0.0839112251996994, 0.026758529245853424, 0.252912312746048, 0.13440638780593872], [0.016105180606245995, 0.00023643490567337722, 0.0012779179960489273, 0.000554002239368856, 0.0001638978865230456, 0.0006986370426602662, 0.0015096071874722838, 0.03591961786150932, 0.00024158517771866173, 0.00039618738810531795, 0.004387632478028536, 0.0020379077177494764, 0.007544557098299265, 0.2416580319404602, 0.568833589553833, 0.03495413064956665, 0.04389135167002678, 0.03958973288536072], [0.042449116706848145, 0.0019704473670572042, 0.0037396997213363647, 0.006051092408597469, 0.0004523280658759177, 0.0006119764875620604, 0.005847590044140816, 0.24254074692726135, 0.0004464400699362159, 0.007964756339788437, 0.005200890824198723, 0.010665896348655224, 0.023169873282313347, 0.015363779850304127, 0.12722401320934296, 0.10153602063655853, 0.15670551359653473, 0.24805977940559387], [0.017132937908172607, 0.0007276865653693676, 0.0012802222045138478, 0.0013481313362717628, 0.0010906750103458762, 0.0006449866923503578, 0.001009977306239307, 0.08792145550251007, 0.00020034007320646197, 0.00018708285642787814, 0.00030999036971479654, 0.002006865805014968, 0.02224629558622837, 0.019411791115999222, 0.03269414231181145, 0.4077534079551697, 0.313664048910141, 0.09036993235349655], [0.015058044344186783, 0.0006887116469442844, 0.00031699606915935874, 0.0007740752771496773, 0.00033644892391748726, 0.0006628187256865203, 0.002054744865745306, 0.4127197265625, 0.0001035248496918939, 0.00091585423797369, 0.0001452276046620682, 7.190446194726974e-05, 0.0007205376750789583, 0.002284085378050804, 0.007971799932420254, 0.0030932421796023846, 0.09025414288043976, 0.4618280529975891], [0.026131536811590195, 0.0015239936765283346, 0.001111907185986638, 0.0018891094950959086, 0.0010762738529592752, 0.0019098371267318726, 0.003660482820123434, 0.4383814334869385, 0.001805235631763935, 0.00344840157777071, 0.002491562394425273, 0.0005669896490871906, 0.0026247671339660883, 0.0031149715650826693, 0.008613880723714828, 0.011722362600266933, 0.03323199599981308, 0.4566952586174011], [0.004680306650698185, 0.001867090119048953, 0.0006128898821771145, 0.0013643414713442326, 0.0008105731103569269, 0.00058481574524194, 0.003819627221673727, 0.4826640486717224, 0.0008622640161775053, 0.002172580687329173, 0.0009537982405163348, 0.0004677009128499776, 0.0007916021277196705, 0.0007577108917757869, 0.0019820036832243204, 0.001351688988506794, 0.0030400550458580256, 0.49121683835983276]], [[0.1898135542869568, 0.024469781666994095, 0.022570321336388588, 0.11235058307647705, 0.008875341154634953, 0.024839598685503006, 0.04574994742870331, 0.19065448641777039, 0.021216675639152527, 0.028335366398096085, 0.013072430156171322, 0.017592521384358406, 0.021822869777679443, 0.012569335289299488, 0.01108807884156704, 0.014909174293279648, 0.05248589068651199, 0.1875840425491333], [0.14636147022247314, 0.05775781720876694, 0.029096826910972595, 0.09808610379695892, 0.036975085735321045, 0.027523772791028023, 0.11357832700014114, 0.1960916370153427, 0.013634162954986095, 0.02244700863957405, 0.004214777145534754, 0.004942431580275297, 0.0046357265673577785, 0.007176742888987064, 0.0047178613021969795, 0.004920807667076588, 0.032487280666828156, 0.19535212218761444], [0.04954651743173599, 0.058844488114118576, 0.07180391997098923, 0.05107466131448746, 0.02123534493148327, 0.15546070039272308, 0.117716945707798, 0.15454530715942383, 0.004417264834046364, 0.020678777247667313, 0.004518123343586922, 0.0035898941569030285, 0.010071584023535252, 0.06150102987885475, 0.005395074374973774, 0.022909197956323624, 0.030926022678613663, 0.15576519072055817], [0.22788771986961365, 0.1278296709060669, 0.01585344411432743, 0.0542810894548893, 0.0037494369316846132, 0.026037994772195816, 0.22009287774562836, 0.11290376633405685, 0.01430949755012989, 0.006528706289827824, 0.019689301028847694, 0.0026883301325142384, 0.0066045308485627174, 0.0011064099380746484, 0.00043914082925766706, 0.0021288031712174416, 0.04539739340543747, 0.11247190833091736], [0.13683469593524933, 0.03138038516044617, 0.010127684101462364, 0.01902218535542488, 0.01398143358528614, 0.08491285890340805, 0.10582420974969864, 0.20966807007789612, 0.06176525354385376, 0.05028801038861275, 0.006909007206559181, 0.019915984943509102, 0.004523326642811298, 0.004532352089881897, 0.0010633234633132815, 0.004060027189552784, 0.027375003322958946, 0.20781631767749786], [0.10490696877241135, 0.08926695585250854, 0.07655267417430878, 0.1143251359462738, 0.03971071168780327, 0.019472619518637657, 0.12750303745269775, 0.1289055496454239, 0.019713949412107468, 0.0663122832775116, 0.00972814206033945, 0.011214181780815125, 0.02741907350718975, 0.005005299113690853, 0.0029371625278145075, 0.004108913242816925, 0.02427578531205654, 0.12864165008068085], [0.11647169291973114, 0.020201662555336952, 0.01141404826194048, 0.01924986019730568, 0.0075114332139492035, 0.016302665695548058, 0.0732162594795227, 0.3386465311050415, 0.010013083927333355, 0.008722017519176006, 0.002533279825001955, 0.0021642104256898165, 0.004135716240853071, 0.004147868137806654, 0.0018979271408170462, 0.004552953410893679, 0.023112375289201736, 0.3357063829898834], [0.009671689942479134, 0.004078553058207035, 0.0037028708029538393, 0.0010955199832096696, 0.002285686554387212, 0.0025623913388699293, 0.00671121571213007, 0.4710530638694763, 0.002601702231913805, 0.004217065405100584, 0.0013990441802889109, 0.001545774401165545, 0.0028271256014704704, 0.006766390986740589, 0.002993031870573759, 0.003166576148942113, 0.008003068156540394, 0.4653192162513733], [0.09688569605350494, 0.0067462497390806675, 0.00342676998116076, 0.002785325516015291, 0.004024249501526356, 0.02847684547305107, 0.04021775349974632, 0.28458601236343384, 0.01187425572425127, 0.08946657180786133, 0.017887486144900322, 0.01804516650736332, 0.006039950530976057, 0.011811818927526474, 0.0035153813660144806, 0.012178303673863411, 0.09200217574834824, 0.27003008127212524], [0.11452146619558334, 0.02722747065126896, 0.016492191702127457, 0.012556299567222595, 0.008565055206418037, 0.03399953991174698, 0.03857249766588211, 0.21412736177444458, 0.0671038031578064, 0.047025542706251144, 0.03230413794517517, 0.03494720160961151, 0.021309491246938705, 0.010279509238898754, 0.009759888052940369, 0.013415969908237457, 0.09254729002714157, 0.20524540543556213], [0.23417404294013977, 0.0022669928148388863, 0.0010255704401060939, 0.10202788561582565, 0.002520071342587471, 0.03613690659403801, 0.017391901463270187, 0.09866224974393845, 0.16682711243629456, 0.05816785991191864, 0.031840331852436066, 0.02351282350718975, 0.009413088671863079, 0.003942681010812521, 0.0009616203606128693, 0.008939091116189957, 0.1076887995004654, 0.09450092911720276], [0.12351202964782715, 0.004916330799460411, 0.0018114919075742364, 0.004900195635855198, 0.016935938969254494, 0.012285050004720688, 0.03734509274363518, 0.21231167018413544, 0.07278730720281601, 0.030463624745607376, 0.05948183313012123, 0.027706848457455635, 0.06796776503324509, 0.020853396505117416, 0.008121873252093792, 0.009039019234478474, 0.08317866921424866, 0.20638185739517212], [0.10656459629535675, 0.0025680125690996647, 0.0023171070497483015, 0.010463278740644455, 0.0018146485090255737, 0.020979823544621468, 0.02911553345620632, 0.12230540812015533, 0.089584119617939, 0.03094104677438736, 0.08568814396858215, 0.0876552164554596, 0.027510622516274452, 0.03167940303683281, 0.0969771072268486, 0.01935032568871975, 0.11476052552461624, 0.11972504109144211], [0.08672112226486206, 0.018617162480950356, 0.020719259977340698, 0.010841356590390205, 0.0013416684232652187, 0.014346066862344742, 0.07718836516141891, 0.12921956181526184, 0.013321918435394764, 0.029920287430286407, 0.05022290721535683, 0.037485260516405106, 0.048758503049612045, 0.012963212095201015, 0.03405534848570824, 0.024714384227991104, 0.26355165243148804, 0.1260118931531906], [0.07079195231199265, 0.005354415159672499, 0.0015910292277112603, 0.0039986963383853436, 0.004974174778908491, 0.01142896432429552, 0.030676737427711487, 0.13875643908977509, 0.12835577130317688, 0.05574692040681839, 0.0631493479013443, 0.04520823433995247, 0.03209730610251427, 0.023062216117978096, 0.07280167192220688, 0.020404014736413956, 0.15557295083999634, 0.1360292285680771], [0.03068418987095356, 0.009456842206418514, 0.004208556842058897, 0.007445477414876223, 0.0014743845677003264, 0.004620094317942858, 0.026595918461680412, 0.17016087472438812, 0.013460319489240646, 0.029851362109184265, 0.042603813111782074, 0.06689020991325378, 0.10502595454454422, 0.019346607849001884, 0.15758411586284637, 0.011745587922632694, 0.13173674046993256, 0.1671089380979538], [0.12531808018684387, 0.005682461895048618, 0.0019499718910083175, 0.003014781279489398, 0.0013442833442240953, 0.002333641517907381, 0.021314384415745735, 0.2540670931339264, 0.030001552775502205, 0.024341292679309845, 0.019269177690148354, 0.006752975285053253, 0.027585284784436226, 0.026226770132780075, 0.012674259953200817, 0.03415518254041672, 0.15601636469364166, 0.24795250594615936], [0.009874818846583366, 0.004306211601942778, 0.003830734407529235, 0.0011434295447543263, 0.0024270201101899147, 0.002603889675810933, 0.0068541583605110645, 0.4698355197906494, 0.0026529713068157434, 0.0042480723932385445, 0.0014116937527433038, 0.0016240270342677832, 0.0029714147094637156, 0.00716816820204258, 0.003163087647408247, 0.0033483824227005243, 0.008051041513681412, 0.4644853472709656]], [[0.04051059111952782, 0.0027342529501765966, 0.01240144856274128, 0.05648796632885933, 0.003566890023648739, 0.012792261317372322, 0.023313913494348526, 0.23161672055721283, 0.031507913023233414, 0.019769271835684776, 0.1136975958943367, 0.02363441325724125, 0.038308486342430115, 0.010702691040933132, 0.010979412123560905, 0.031771790236234665, 0.1131720095872879, 0.2230323851108551], [0.1154751405119896, 0.04278756305575371, 0.09939058125019073, 0.006112650968134403, 0.004254584200680256, 0.022746888920664787, 0.1204175129532814, 0.22756686806678772, 0.003176480531692505, 0.053042616695165634, 0.0018106169300153852, 0.008299848064780235, 0.002473072847351432, 0.014462118968367577, 0.0077202594839036465, 0.006272444035857916, 0.038909655064344406, 0.22508111596107483], [0.2919662296772003, 0.051674142479896545, 0.15580306947231293, 0.002196056069806218, 0.014843749813735485, 0.02373332343995571, 0.060914624482393265, 0.09535445272922516, 0.001900108647532761, 0.08966410160064697, 0.0005021147080697119, 0.0042074499651789665, 0.0008831843733787537, 0.07327037304639816, 0.004054825287312269, 0.020114270970225334, 0.0162255447357893, 0.09269236773252487], [0.3032740354537964, 0.01573142036795616, 0.01069963164627552, 0.1897830367088318, 0.0070920055732131, 0.03519553691148758, 0.07827738672494888, 0.11347062140703201, 0.0014641183661296964, 0.011439483612775803, 0.05749828740954399, 0.01537828054279089, 0.009744605980813503, 0.003563577076420188, 0.0043988716788589954, 0.007826639339327812, 0.022374002262949944, 0.1127883717417717], [0.018434293568134308, 0.001962803304195404, 0.0006880526198074222, 0.0003164648078382015, 0.0010282611474394798, 0.0033481160644441843, 0.03023291565477848, 0.46431756019592285, 0.0004977919161319733, 0.0016159010119736195, 0.00023836074979044497, 0.0012134697753936052, 0.00017134580411948264, 0.0013569017173722386, 0.0006324647110886872, 0.0008532380452379584, 0.01334379892796278, 0.4597482681274414], [0.05440220236778259, 0.017099492251873016, 0.008393975906074047, 0.006317699793726206, 0.010813345201313496, 0.01379154622554779, 0.10961709171533585, 0.34109511971473694, 0.002184326760470867, 0.01163073256611824, 0.0018704483518376946, 0.005341154057532549, 0.0009261674131266773, 0.004193359054625034, 0.003467137925326824, 0.0016247808234766126, 0.07585954666137695, 0.33137187361717224], [0.047062020748853683, 0.006214362569153309, 0.01143714226782322, 0.0017552126664668322, 0.0035263027530163527, 0.007792086340487003, 0.1030898243188858, 0.35297417640686035, 0.0034185827244073153, 0.009663574397563934, 0.0014018345391377807, 0.006045541726052761, 0.0009382253047078848, 0.004115231800824404, 0.004839732311666012, 0.0017742400523275137, 0.08399467170238495, 0.3499571979045868], [0.005335805471986532, 0.0024048832710832357, 0.00306447665207088, 0.0016067485557869077, 0.0013090725988149643, 0.001941537600941956, 0.010907617397606373, 0.4711945056915283, 0.0030737505294382572, 0.0027664334047585726, 0.001324014156125486, 0.0019785501062870026, 0.0032420088537037373, 0.003715289058163762, 0.0029313364066183567, 0.004366198088973761, 0.0133240120485425, 0.46551376581192017], [0.02441510558128357, 0.0014469834277406335, 0.0005135140963830054, 0.00029641634318977594, 0.00044630857883021235, 0.0005495317745953798, 0.02086280845105648, 0.41375428438186646, 0.004800512455403805, 0.007440448738634586, 0.006831322330981493, 0.004572458099573851, 0.004462669137865305, 0.0025333219673484564, 0.0032966139260679483, 0.0009834251832216978, 0.0992937833070755, 0.4035005271434784], [0.0983787253499031, 0.017580874264240265, 0.004480340518057346, 0.0011594168609008193, 0.0014811719302088022, 0.0016751886578276753, 0.032075993716716766, 0.26690441370010376, 0.005918745417147875, 0.14661124348640442, 0.005146463867276907, 0.018433816730976105, 0.007623132783919573, 0.012275150045752525, 0.0060899280942976475, 0.010375911369919777, 0.10493560880422592, 0.2588539123535156], [0.010830682702362537, 0.0003139636537525803, 4.669767076848075e-05, 7.856250704207923e-06, 4.544930561678484e-05, 0.00019098885240964592, 0.0053873551078140736, 0.48488950729370117, 0.0006189068662934005, 0.0021053138189017773, 0.00021935311087872833, 0.0009431520593352616, 0.00013883435167372227, 0.001033357111737132, 0.0003838574339170009, 0.00023357053578365594, 0.025441547855734825, 0.4671696424484253], [0.038577575236558914, 0.003152578603476286, 0.0010186489671468735, 0.0003602229699026793, 0.001179163926281035, 0.0036062959115952253, 0.032447658479213715, 0.42638570070266724, 0.0028004113119095564, 0.0041219377890229225, 0.00044519154471345246, 0.0009763616835698485, 0.0004454087757039815, 0.0021444065496325493, 0.00383399217389524, 0.0014224238693714142, 0.06331462413072586, 0.4137674570083618], [0.029332416132092476, 0.0011100406991317868, 0.0006920002633705735, 0.0011774436570703983, 0.0007278651464730501, 0.0012018437264487147, 0.013485853560268879, 0.45311564207077026, 0.0040902686305344105, 0.0063625904731452465, 0.0029285575728863478, 0.00266622519120574, 0.0019375024130567908, 0.009135818108916283, 0.006128075998276472, 0.005330691114068031, 0.02674531191587448, 0.4338318407535553], [0.09717009216547012, 0.003413236001506448, 0.000989239546470344, 0.0005236476426944137, 0.001573924208059907, 0.003803426865488291, 0.022947661578655243, 0.3490760028362274, 0.007549758534878492, 0.02245294488966465, 0.0012076750863343477, 0.009624339640140533, 0.005415264051407576, 0.04021771252155304, 0.005775426980108023, 0.057116828858852386, 0.04138324037194252, 0.3297595977783203], [0.010741339065134525, 0.0006323796696960926, 0.00016041932394728065, 6.31463699392043e-05, 0.00024222582578659058, 0.0010042586363852024, 0.010518786497414112, 0.4795875549316406, 0.0017753083957359195, 0.0016808699583634734, 0.00018743824330158532, 0.0002771536819636822, 0.0002796528860926628, 0.0013187758158892393, 0.0005695041618309915, 0.0009652483859099448, 0.03165781870484352, 0.45833820104599], [0.0897192433476448, 0.005494409240782261, 0.00564882205799222, 0.002247800584882498, 0.0023075842764228582, 0.0054451958276331425, 0.01283179596066475, 0.2541712522506714, 0.009219247847795486, 0.016834324225783348, 0.003524625673890114, 0.013194670900702477, 0.005391900427639484, 0.2133517563343048, 0.014401024207472801, 0.08511505275964737, 0.01888132467865944, 0.2422199696302414], [0.03301606327295303, 0.0019798565190285444, 0.002567355055361986, 0.0008055699872784317, 0.001616348628886044, 0.0035776214208453894, 0.04576456546783447, 0.3545674681663513, 0.008028393611311913, 0.013375431299209595, 0.006678159814327955, 0.009300271980464458, 0.001859714975580573, 0.004649742040783167, 0.009663594886660576, 0.002426216145977378, 0.15671516954898834, 0.3434084355831146], [0.005404025316238403, 0.002483427757397294, 0.0031278785318136215, 0.0016856518341228366, 0.0013692547800019383, 0.0019929884001612663, 0.01107796747237444, 0.4712371826171875, 0.0030878002289682627, 0.0027647744864225388, 0.001346764387562871, 0.0020226258784532547, 0.003300917334854603, 0.003682753536850214, 0.0029712833929806948, 0.004445344675332308, 0.013280020095407963, 0.46471932530403137]], [[0.025670606642961502, 0.027007730677723885, 0.013261687010526657, 0.009730588644742966, 0.005816834047436714, 0.007528935093432665, 0.043794091790914536, 0.36354538798332214, 0.004183698911219835, 0.010299169458448887, 0.011515132151544094, 0.01168832927942276, 0.004233929794281721, 0.012844836339354515, 0.01879953220486641, 0.01572336070239544, 0.05217484012246132, 0.36218124628067017], [0.03626928851008415, 0.1609206646680832, 0.0019450595136731863, 0.0041676852852106094, 0.0015128467930480838, 0.0017055809730663896, 0.10246318578720093, 0.3125901520252228, 0.0033144813496619463, 0.014554415829479694, 0.002213999629020691, 0.005422137212008238, 0.004151170141994953, 0.0033380186650902033, 0.006178212817758322, 0.00304523971863091, 0.05024758353829384, 0.28596019744873047], [0.06706171482801437, 0.0063871354795992374, 0.2897675335407257, 0.0015890008071437478, 5.418584987637587e-05, 0.00020129892800468951, 0.05497562885284424, 0.24781395494937897, 0.00014797809126321226, 0.0006285303388722241, 0.0007626094156876206, 0.0007778070284985006, 0.0001530124864075333, 0.00243566045537591, 0.0008791713626123965, 0.0005613851244561374, 0.07491008937358856, 0.250893235206604], [0.024099087342619896, 0.0025341517757624388, 0.0005784925306215882, 0.08137806504964828, 0.010271172970533371, 0.00022368002100847661, 0.01850832812488079, 0.42457395792007446, 0.0007215708610601723, 0.0018726132111623883, 0.0005742452340200543, 0.004338197875767946, 0.0017363724764436483, 0.00018804686260409653, 0.0013296987162902951, 0.0001414786238456145, 0.014583717100322247, 0.4123471677303314], [0.020855680108070374, 0.0018106960924342275, 5.794348908239044e-05, 0.015193730592727661, 0.3253132700920105, 0.0002017993392655626, 0.020924989134073257, 0.30458864569664, 0.00041118389344774187, 0.000387703999876976, 0.0001252807560376823, 0.0008523715077899396, 0.00017080783436540514, 9.745998977450654e-05, 0.00020852913439739496, 0.00013193694758228958, 0.006870999466627836, 0.30179697275161743], [0.08436092734336853, 0.0039040492847561836, 0.0017540783155709505, 0.0013980250805616379, 0.00016648700693622231, 0.23073908686637878, 0.03705703467130661, 0.31649473309516907, 0.00211464730091393, 0.004112242721021175, 0.0015755894128233194, 0.0010870130499824882, 0.00048663170309737325, 0.0005572022637352347, 0.002348958281800151, 0.00043608801206573844, 0.029125705361366272, 0.2822814881801605], [0.026230588555336, 0.008443380706012249, 0.0025043601635843515, 0.011270636692643166, 0.0014038269873708487, 0.001351306913420558, 0.041361596435308456, 0.4078596234321594, 0.0022959767375141382, 0.008257913403213024, 0.0028736477252095938, 0.006437730509787798, 0.0058175609447062016, 0.0026766944210976362, 0.007416756823658943, 0.0027750125154852867, 0.06486839801073074, 0.3961549699306488], [0.00802674051374197, 0.0063758487813174725, 0.003388600889593363, 0.005481375847011805, 0.0017541964771226048, 0.0029338374733924866, 0.011310710571706295, 0.46409207582473755, 0.0019770946819335222, 0.003005183534696698, 0.002482436131685972, 0.002780927112326026, 0.0030374210327863693, 0.0019657970406115055, 0.0032177248504012823, 0.005189491435885429, 0.010556628927588463, 0.4624238610267639], [0.023973986506462097, 0.006036511156708002, 0.0001683053415035829, 0.00688097532838583, 0.0030532425735145807, 0.001259483047761023, 0.02132720686495304, 0.3818996548652649, 0.18572691082954407, 0.0033393464982509613, 0.0007791067473590374, 0.006754481699317694, 0.000287567701889202, 0.0005516775418072939, 0.004571692552417517, 0.00025876169092953205, 0.010557038709521294, 0.34257400035858154], [0.02642899937927723, 0.025956355035305023, 0.0028238557279109955, 0.010562342591583729, 0.002131757326424122, 0.002025263151153922, 0.02831532061100006, 0.2842455804347992, 0.0024457238614559174, 0.31376340985298157, 0.002974107628688216, 0.0017525693401694298, 0.001006077160127461, 0.0008649316732771695, 0.005715170409530401, 0.0014249893138185143, 0.024362564086914062, 0.2632010281085968], [0.03198095038533211, 0.0035297691356390715, 0.0007756758132018149, 0.005251281429082155, 0.0011574079981073737, 0.0016831886023283005, 0.009083660319447517, 0.37003201246261597, 0.0007690066704526544, 0.0013337930431589484, 0.2019464373588562, 0.006054956000298262, 0.00021703813399653882, 0.0007356568239629269, 0.004231130238622427, 0.0002139744465239346, 0.012857673689723015, 0.34814637899398804], [0.03654735907912254, 0.005685775075107813, 0.0009657901828177273, 0.01401080284267664, 0.0018547724466770887, 0.0006888877833262086, 0.02250070869922638, 0.3037083148956299, 0.005245792213827372, 0.0021727958228439093, 0.009195526130497456, 0.2614940404891968, 0.003724924987182021, 0.0025683275889605284, 0.009247958660125732, 0.00032735493732616305, 0.01840929314494133, 0.30165162682533264], [0.043829258531332016, 0.010973513126373291, 0.0020198975689709187, 0.007667346391826868, 0.0009331292822025716, 0.0002659711171872914, 0.04770282655954361, 0.3403909504413605, 0.00032105366699397564, 0.0014359523775056005, 0.0006122501217760146, 0.0016750497743487358, 0.1605229377746582, 0.0017647312488406897, 0.017833806574344635, 0.0025915266014635563, 0.020826412364840508, 0.3386334478855133], [0.08582525700330734, 0.011950998567044735, 0.0029125341679900885, 0.0007368908263742924, 8.106893074000254e-05, 0.00017132636276073754, 0.027533184736967087, 0.16352349519729614, 0.0006801406852900982, 0.0013513460289686918, 0.0005668108933605254, 0.0005319516640156507, 0.000533182465005666, 0.4909414052963257, 0.005362015217542648, 0.02997184731066227, 0.025049390271306038, 0.1522771120071411], [0.04055727273225784, 0.007073371205478907, 0.00040214104228653014, 0.0044445618987083435, 0.00017250158998649567, 0.0011595968389883637, 0.0305840615183115, 0.2937029004096985, 0.003841143101453781, 0.0016524475067853928, 0.0038841573987156153, 0.004814191721379757, 0.004141538869589567, 0.004390619695186615, 0.28952929377555847, 0.0013404893688857555, 0.022687766700983047, 0.28562191128730774], [0.12003473937511444, 0.03922765702009201, 0.0018012748332694173, 0.00047243700828403234, 8.68668284965679e-05, 0.0002229337114840746, 0.0399010144174099, 0.280264288187027, 0.0005967370234429836, 0.004502824507653713, 0.0003667262499220669, 0.00032200111309066415, 0.0013669519685208797, 0.069576196372509, 0.0015127704245969653, 0.13888835906982422, 0.02597074769437313, 0.2748854160308838], [0.020140506327152252, 0.007967175915837288, 0.0024484507739543915, 0.01289057545363903, 0.0011588084744289517, 0.0010048511903733015, 0.036693207919597626, 0.43143990635871887, 0.0015622461214661598, 0.0069846054539084435, 0.004633956588804722, 0.00458482513204217, 0.00300720427185297, 0.0014420965453609824, 0.010493895038962364, 0.0014633157989010215, 0.029067879542708397, 0.42301642894744873], [0.00803172867745161, 0.006335534621030092, 0.0034461081959307194, 0.005669820588082075, 0.001782717416062951, 0.002940692938864231, 0.011528070084750652, 0.4660159647464752, 0.002020755084231496, 0.003105789190158248, 0.002485625445842743, 0.0029349438846111298, 0.00309133343398571, 0.001935320789925754, 0.0032393019646406174, 0.00520690344274044, 0.01080315001308918, 0.4594261348247528]], [[0.0032108344603329897, 0.11815442144870758, 0.08632669597864151, 0.11831721663475037, 0.16497313976287842, 0.023416735231876373, 0.4045349657535553, 0.03317072242498398, 0.0002283276990056038, 0.0016392128309234977, 0.00025295239174738526, 0.002324268687516451, 0.0007510551367886364, 0.0005739342304877937, 0.00181951851118356, 0.00032047845888882875, 0.00646572932600975, 0.03351971507072449], [0.008315922692418098, 0.07168921083211899, 0.06934123486280441, 0.1584230363368988, 0.11869116872549057, 0.08191408216953278, 0.41807201504707336, 0.020794188603758812, 0.0004042340733576566, 0.0011031570611521602, 0.000731577689293772, 0.0031136381439864635, 0.0006665752152912319, 0.0022469402756541967, 0.008050918579101562, 0.0005889339372515678, 0.01461358554661274, 0.021239537745714188], [0.018937284126877785, 0.248390793800354, 0.03219769150018692, 0.1841193288564682, 0.13519679009914398, 0.013326494954526424, 0.19740109145641327, 0.06473736464977264, 0.0020623665768653154, 0.002953913528472185, 0.001538991229608655, 0.00530552351847291, 0.00261456286534667, 0.0022312114015221596, 0.014188158325850964, 0.000914103293325752, 0.008600571192800999, 0.06528383493423462], [0.012123215943574905, 0.13345232605934143, 0.22976617515087128, 0.11484463512897491, 0.07530136406421661, 0.08420990407466888, 0.207474023103714, 0.06378908455371857, 0.0003604823141358793, 0.000525417854078114, 0.00034631622838787735, 0.0016572566237300634, 0.00043017129064537585, 0.0030510304495692253, 0.002372601069509983, 0.0009903402533382177, 0.0036340232472866774, 0.06567160040140152], [0.04328305646777153, 0.14635002613067627, 0.25117722153663635, 0.11720200628042221, 0.042301908135414124, 0.05510634928941727, 0.22852547466754913, 0.03482944518327713, 0.001871054177172482, 0.0025866450741887093, 0.001049606828019023, 0.006021075416356325, 0.0030283427331596613, 0.009053005836904049, 0.005300512071698904, 0.004266155418008566, 0.013196375221014023, 0.03485177457332611], [0.04450904205441475, 0.304496705532074, 0.059316687285900116, 0.16636118292808533, 0.07313547283411026, 0.01440997514873743, 0.2443283647298813, 0.03896922618150711, 0.0006071730167604983, 0.0010336239356547594, 0.00038599566323682666, 0.0015785061987116933, 0.0007489714189432561, 0.001076331245712936, 0.002846074989065528, 0.0005448233569040895, 0.006885281763970852, 0.03876657038927078], [0.016514645889401436, 0.0845881775021553, 0.2959120571613312, 0.1561969369649887, 0.07701285928487778, 0.1277254819869995, 0.14015480875968933, 0.04262761399149895, 0.0004746649938169867, 0.0006381644052453339, 0.00048192311078310013, 0.0015745278215035796, 0.0011928280582651496, 0.005387976765632629, 0.0008812654996290803, 0.0029608297627419233, 0.002965946216136217, 0.04270917922258377], [0.08999355137348175, 0.007105126511305571, 0.03151920810341835, 0.012070338241755962, 0.004951144102960825, 0.012052345089614391, 0.011341198347508907, 0.3860589563846588, 0.010966657660901546, 0.006962261162698269, 0.00439418712630868, 0.0103874821215868, 0.005669040605425835, 0.0068944301456213, 0.0019206752767786384, 0.008227115496993065, 0.006510009057819843, 0.3829762637615204], [0.0007479825289919972, 0.0008628543000668287, 0.0034560118801891804, 0.0007455533486790955, 0.0010222018463537097, 0.0020235516130924225, 0.001590434112586081, 3.67367611033842e-05, 0.041531648486852646, 0.11167040467262268, 0.16938385367393494, 0.04673547297716141, 0.02770479954779148, 0.14505866169929504, 0.16188713908195496, 0.15591348707675934, 0.12959173321723938, 3.749892857740633e-05], [0.00048178943688981235, 0.00047706664190627635, 0.0017086693551391363, 0.0007496091420762241, 0.00045622000470757484, 0.000562101777177304, 0.0014968810137361288, 1.8365275536780246e-05, 0.08588453382253647, 0.08279009908437729, 0.26881325244903564, 0.06230821833014488, 0.029633667320013046, 0.09039943665266037, 0.15779080986976624, 0.054637469351291656, 0.16177304089069366, 1.8830582121154293e-05], [0.0025575358886271715, 0.0007741937879472971, 0.002193907741457224, 0.00034079732722602785, 0.00019229175813961774, 0.0003930291277356446, 0.0017555831000208855, 1.1824621651612688e-05, 0.05516095459461212, 0.15485073626041412, 0.082722969353199, 0.039128001779317856, 0.04727261886000633, 0.15346458554267883, 0.128886878490448, 0.14194589853286743, 0.18833626806735992, 1.1935369002458174e-05], [0.003437437815591693, 0.0059328763745725155, 0.006466363091021776, 0.0026614645030349493, 0.002159125404432416, 0.0021481304429471493, 0.007085047196596861, 0.0002331550931558013, 0.06892135739326477, 0.13371123373508453, 0.12486299127340317, 0.038973137736320496, 0.03844314068555832, 0.06725165992975235, 0.20217621326446533, 0.0720972865819931, 0.223208487033844, 0.00023082178086042404], [0.0014124567387625575, 0.0019557359628379345, 0.0005474553327076137, 0.0016848392551764846, 0.0026078990194946527, 0.0006135765579529107, 0.0022161644883453846, 0.00018238740449305624, 0.10031890124082565, 0.1380937397480011, 0.2793520390987396, 0.05298154056072235, 0.013685649260878563, 0.014977927319705486, 0.2398582100868225, 0.016619618982076645, 0.1327080875635147, 0.00018372482736594975], [0.006130675785243511, 0.00701903086155653, 0.0009469244396314025, 0.0017832613084465265, 0.004192412830889225, 0.0011318911565467715, 0.00811332743614912, 0.0002239282475784421, 0.08892035484313965, 0.11410945653915405, 0.14469151198863983, 0.06367439031600952, 0.01635170727968216, 0.008734198287129402, 0.24876302480697632, 0.014107449911534786, 0.2708820402622223, 0.0002244420029455796], [0.0035430171992629766, 0.0022565301042050123, 0.001247258041985333, 0.0013677075039595366, 0.0023447300773113966, 0.0009804499568417668, 0.003589627332985401, 8.411303861066699e-05, 0.07954435050487518, 0.12754063308238983, 0.20418725907802582, 0.04064216837286949, 0.022801756858825684, 0.046393804252147675, 0.1834993213415146, 0.05710357427597046, 0.22278717160224915, 8.656030695419759e-05], [0.003690105862915516, 0.0030049942433834076, 0.0004138624935876578, 0.0015679375501349568, 0.0025539344642311335, 0.0003798304533120245, 0.0029008269775658846, 0.0002683453494682908, 0.11494991183280945, 0.16048848628997803, 0.2143472284078598, 0.05116556957364082, 0.014730730094015598, 0.010582725517451763, 0.23399148881435394, 0.0107026482000947, 0.17399200797080994, 0.0002693433198146522], [0.011742486618459225, 0.003505811793729663, 0.014168779365718365, 0.004418619908392429, 0.0024733813479542732, 0.005001476034522057, 0.007178101688623428, 0.0001507587730884552, 0.04489779844880104, 0.06717347353696823, 0.08816950023174286, 0.03023746982216835, 0.06619181483983994, 0.24729463458061218, 0.04827559366822243, 0.24417220056056976, 0.11479586362838745, 0.00015210908895824105], [0.08488977700471878, 0.007167384028434753, 0.03222804516553879, 0.012203183956444263, 0.004996705334633589, 0.01242879033088684, 0.011213884688913822, 0.3873778283596039, 0.011196698993444443, 0.007079006638377905, 0.004467932041734457, 0.01065729558467865, 0.005782532040029764, 0.007086345460265875, 0.0019466935191303492, 0.008473213762044907, 0.006480320822447538, 0.3843243718147278]], [[0.01573910005390644, 0.02252853661775589, 0.03711342066526413, 0.028044959530234337, 0.025665340945124626, 0.02020139992237091, 0.03835510089993477, 0.35273125767707825, 0.015296148136258125, 0.029749711975455284, 0.018740428611636162, 0.01058770902454853, 0.0032918169163167477, 0.004935872741043568, 0.0035158952232450247, 0.004360780119895935, 0.01974789798259735, 0.34939464926719666], [0.020543916150927544, 0.01619742065668106, 0.01080248225480318, 0.05702666565775871, 0.0031426989007741213, 0.004783398471772671, 0.04851166158914566, 0.3980577290058136, 0.0037369036581367254, 0.007069539278745651, 0.0014629828510805964, 0.0017829290591180325, 0.0009598516626283526, 0.002257751999422908, 0.004165554419159889, 0.0019324905006214976, 0.020817087963223457, 0.3967488706111908], [0.03661312162876129, 0.21804220974445343, 0.030628811568021774, 0.008882277645170689, 0.002527934033423662, 0.005887358449399471, 0.06122737005352974, 0.3040611147880554, 0.00022654699569102377, 0.0024333971086889505, 0.0028126912657171488, 0.00019458378665149212, 0.0003402094589546323, 0.00484048668295145, 0.003955162595957518, 0.0025986821856349707, 0.017439184710383415, 0.2972888946533203], [0.03923092782497406, 0.02232562005519867, 0.016020433977246284, 0.009082519449293613, 0.006163120735436678, 0.007338706869632006, 0.07101985812187195, 0.3846994936466217, 0.018251243978738785, 0.02023397572338581, 0.0019468464888632298, 0.0007041543140076101, 0.001780470134690404, 0.001118565909564495, 0.00166874669957906, 0.00024434790248051286, 0.01869630627334118, 0.3794746398925781], [0.033191531896591187, 0.004230838268995285, 0.015073098242282867, 0.04499406740069389, 0.005416854750365019, 0.018266452476382256, 0.059495434165000916, 0.36232587695121765, 0.0040835486724972725, 0.004645326640456915, 0.0036618313752114773, 0.03568283095955849, 0.003496787277981639, 0.0009612726280465722, 0.010174275375902653, 0.0009037054260261357, 0.0333380363881588, 0.36005812883377075], [0.051210805773735046, 0.044337715953588486, 0.0070729246363043785, 0.177444189786911, 0.07663831114768982, 0.032205309718847275, 0.07659867405891418, 0.21796336770057678, 0.026347775012254715, 0.02944280207157135, 0.0006617745966650546, 0.0013255317462608218, 0.003016346599906683, 0.015831226482987404, 0.001633924781344831, 0.006050410680472851, 0.021213069558143616, 0.21100585162639618], [0.03469458967447281, 0.015577889047563076, 0.011159500107169151, 0.10047098994255066, 0.01464392151683569, 0.025161033496260643, 0.04525807127356529, 0.34360209107398987, 0.009884039871394634, 0.01228157989680767, 0.010054887272417545, 0.004841316025704145, 0.0054865083657205105, 0.0019422470359131694, 0.003490068716928363, 0.0018610573606565595, 0.017252136021852493, 0.34233808517456055], [0.01742316596210003, 0.00867557991296053, 0.013735471293330193, 0.006551029160618782, 0.0049576289020478725, 0.0073640416376292706, 0.021013488993048668, 0.430029958486557, 0.007422099355608225, 0.006347598508000374, 0.005721805151551962, 0.007524607237428427, 0.006457591895014048, 0.0024408879689872265, 0.008604318834841251, 0.0028184305410832167, 0.021309038624167442, 0.421603262424469], [0.01855151727795601, 0.0010174746857956052, 0.0010617062216624618, 0.013842363841831684, 3.518670200719498e-05, 0.0018627980025485158, 0.02043137699365616, 0.339730441570282, 0.007928377948701382, 0.1305312067270279, 0.02263799123466015, 0.016324253752827644, 0.0017779468325898051, 0.0007062169024720788, 0.013517077080905437, 0.0022792972158640623, 0.06954975426197052, 0.3382149338722229], [0.04688643664121628, 0.013353507965803146, 0.003203147556632757, 0.012365278787910938, 0.00043963734060525894, 0.0006987105589359999, 0.04777655005455017, 0.3191636800765991, 0.07017244398593903, 0.007736068218946457, 0.009087818674743176, 0.003077697241678834, 0.004679087549448013, 0.0018159851897507906, 0.007289031520485878, 0.0041717239655554295, 0.14111778140068054, 0.3069654107093811], [0.014468973502516747, 0.0003420076100155711, 0.001088990131393075, 0.0005055443616583943, 6.300752284005284e-05, 0.000434553949162364, 0.017321458086371422, 0.3358152508735657, 0.1328989714384079, 0.01964285783469677, 0.005810268688946962, 0.037839051336050034, 0.001249015098437667, 0.0008427969878539443, 0.010697655379772186, 0.00045273377327248454, 0.08793111890554428, 0.33259570598602295], [0.045079831033945084, 0.0003502634062897414, 0.00018825693405233324, 0.0016455317381769419, 0.0005892802146263421, 0.0034579054918140173, 0.013695873320102692, 0.22727026045322418, 0.09741939604282379, 0.010777871124446392, 0.29260483384132385, 0.0022039448376744986, 0.006769656669348478, 0.006169917993247509, 0.02808648720383644, 0.0013071036664769053, 0.039742596447467804, 0.2226409763097763], [0.019906776025891304, 0.0008350311545655131, 0.00023286537907551974, 0.0011784201487898827, 0.0004915014724247158, 0.0007806852809153497, 0.008979761973023415, 0.2330792397260666, 0.009377684444189072, 0.019490286707878113, 0.03403949737548828, 0.009140854701399803, 0.016011293977499008, 0.03302323818206787, 0.3434722125530243, 0.001969731179997325, 0.03846871107816696, 0.22952225804328918], [0.04422939941287041, 0.0009553604177199304, 0.0020400583744049072, 0.0009921886958181858, 0.00016237524687312543, 0.00016530376160517335, 0.005560234189033508, 0.10483144968748093, 0.0002505936718080193, 0.002708974527195096, 0.00011295658623566851, 0.0035899414215236902, 0.679668128490448, 0.005005329847335815, 0.0035372686106711626, 0.024590913206338882, 0.0187616478651762, 0.10283800214529037], [0.03354030102491379, 0.0033013015054166317, 0.00020996358944103122, 0.0027890484780073166, 0.009552395902574062, 0.0021544648334383965, 0.01790698990225792, 0.3256649374961853, 0.015601913444697857, 0.031238194555044174, 0.05398700013756752, 0.03565679490566254, 0.04633040353655815, 0.027501726523041725, 0.005115050822496414, 0.005498337093740702, 0.06959952414035797, 0.3143515884876251], [0.044837526977062225, 0.0034850568044930696, 0.006873472593724728, 0.0009374823421239853, 0.0002712935383897275, 0.0013692511711269617, 0.007902228273451328, 0.24063512682914734, 0.00043056439608335495, 0.006972337141633034, 0.0036144524347037077, 0.0018409445183351636, 0.12770403921604156, 0.21779529750347137, 0.04456990212202072, 0.027040643617510796, 0.029568776488304138, 0.2341516613960266], [0.0253034308552742, 0.005295141134411097, 0.0035962124820798635, 0.024149727076292038, 0.005559510551393032, 0.009894301183521748, 0.013857852667570114, 0.35541391372680664, 0.03335284814238548, 0.04817918315529823, 0.031642843037843704, 0.00853887852281332, 0.01869133859872818, 0.005408050958067179, 0.011312671937048435, 0.005554552655667067, 0.04828992113471031, 0.3459595739841461], [0.017435451969504356, 0.009048127569258213, 0.01419906597584486, 0.006760388147085905, 0.005271307658404112, 0.007556742522865534, 0.021110881119966507, 0.42909517884254456, 0.007569765672087669, 0.006390853319317102, 0.005703930277377367, 0.007482856512069702, 0.006680550053715706, 0.0024685999378561974, 0.00861543882638216, 0.0029285114724189043, 0.020890163257718086, 0.4207921028137207]], [[0.05523046851158142, 0.015368589200079441, 0.027481669560074806, 0.010169532150030136, 0.004577915649861097, 0.019378861412405968, 0.015806877985596657, 0.34125789999961853, 0.010618097148835659, 0.019539495930075645, 0.039367757737636566, 0.0043543423525989056, 0.01292523555457592, 0.024309486150741577, 0.008352966047823429, 0.018605617806315422, 0.04022995010018349, 0.33242520689964294], [0.08984565734863281, 0.034324005246162415, 0.04999161884188652, 0.0317574143409729, 0.008447417058050632, 0.08137988299131393, 0.09106265008449554, 0.2832145094871521, 0.0021744430996477604, 0.004085899330675602, 0.0051406812854111195, 0.0045174905098974705, 0.0023124353028833866, 0.005691612139344215, 0.0036691403947770596, 0.005461294669657946, 0.015311569906771183, 0.2816122770309448], [0.0929444283246994, 0.1228213831782341, 0.06186280399560928, 0.08291009813547134, 0.013574222102761269, 0.10125886648893356, 0.04348248988389969, 0.21741586923599243, 0.0019085474777966738, 0.007977288216352463, 0.0033453733194619417, 0.0028915717266499996, 0.004195685498416424, 0.006146114785224199, 0.004835384897887707, 0.006250292062759399, 0.007888210006058216, 0.21829143166542053], [0.05790405347943306, 0.22311556339263916, 0.08216211944818497, 0.026964781805872917, 0.010332044214010239, 0.035532884299755096, 0.09072687476873398, 0.2104131579399109, 0.004054232966154814, 0.004582046996802092, 0.0032203886657953262, 0.0044565037824213505, 0.0026600444689393044, 0.0026373271830379963, 0.006281391251832247, 0.0016140402294695377, 0.018813669681549072, 0.2145288586616516], [0.04476775601506233, 0.040707070380449295, 0.038213711231946945, 0.049802329391241074, 0.004603090230375528, 0.02172333002090454, 0.04863373190164566, 0.35530784726142883, 0.004872187506407499, 0.003350798273459077, 0.004584731068462133, 0.005504411645233631, 0.0013606164138764143, 0.001771476469002664, 0.0031632157042622566, 0.0007968690479174256, 0.013940765522420406, 0.3568960130214691], [0.018107986077666283, 0.10759339481592178, 0.2520819902420044, 0.23316384851932526, 0.06496797502040863, 0.07894016057252884, 0.030772529542446136, 0.04833194240927696, 0.01935563050210476, 0.027223894372582436, 0.013705959543585777, 0.008842992596328259, 0.018686780706048012, 0.007326757535338402, 0.011700487695634365, 0.004570621997117996, 0.006486631464213133, 0.048140350729227066], [0.06800565868616104, 0.044947605580091476, 0.024293862283229828, 0.05743803456425667, 0.014211288653314114, 0.04223937913775444, 0.03584694117307663, 0.33916062116622925, 0.00735087413340807, 0.004445943050086498, 0.002608182141557336, 0.0017206682823598385, 0.0019821322057396173, 0.0025591603480279446, 0.0023789771366864443, 0.0018011498032137752, 0.009302292950451374, 0.3397071957588196], [0.020484425127506256, 0.0006972685223445296, 0.0008642361499369144, 0.0007236156961880624, 0.0003525837673805654, 0.0004926907131448388, 0.004878959618508816, 0.48385289311408997, 0.0007098600035533309, 0.0005408736178651452, 0.00021109751833137125, 0.0004685762105509639, 0.00031367645715363324, 0.00029365860973484814, 0.00046428502537310123, 0.0002269408287247643, 0.004064921755343676, 0.4803595542907715], [0.02813522331416607, 0.006606557406485081, 0.023363381624221802, 0.008844085969030857, 0.0011690991232171655, 0.011969259940087795, 0.014423268847167492, 0.4131597876548767, 0.005364537704735994, 0.020405402407050133, 0.02269430086016655, 0.006799138616770506, 0.005227627698332071, 0.004246650263667107, 0.0038639060221612453, 0.004142123274505138, 0.02404884062707424, 0.3955368101596832], [0.028956515714526176, 0.02168651856482029, 0.0827801525592804, 0.01577857881784439, 0.0038892985321581364, 0.029109880328178406, 0.02107342518866062, 0.2773037850856781, 0.01871073804795742, 0.07392803579568863, 0.06221747025847435, 0.006954856216907501, 0.01387113332748413, 0.02892252802848816, 0.005930788815021515, 0.01998566836118698, 0.025669896975159645, 0.26323068141937256], [0.023374637588858604, 0.008144605904817581, 0.006364472676068544, 0.0018250106368213892, 0.0011603482998907566, 0.0036248250398784876, 0.007345544174313545, 0.30566415190696716, 0.06620019674301147, 0.19428260624408722, 0.03761584684252739, 0.011458158493041992, 0.006425780709832907, 0.004403994418680668, 0.007922885939478874, 0.0008895638748072088, 0.023629456758499146, 0.2896680235862732], [0.08100461214780807, 0.016545971855521202, 0.020198002457618713, 0.008255385793745518, 0.00241271685808897, 0.008120476268231869, 0.019451294094324112, 0.21584658324718475, 0.09061381965875626, 0.14840638637542725, 0.108067087829113, 0.014456179924309254, 0.012703689746558666, 0.006375688128173351, 0.01050157193094492, 0.0014539544936269522, 0.02834438532590866, 0.20724225044250488], [0.014596758410334587, 0.007016697898507118, 0.018718894571065903, 0.003413188038393855, 0.002123671816661954, 0.008427074179053307, 0.004254699684679508, 0.07761278748512268, 0.08967112004756927, 0.4667845368385315, 0.10205905884504318, 0.018065202981233597, 0.02081151120364666, 0.052448272705078125, 0.017903868108987808, 0.008516215719282627, 0.012990656308829784, 0.07458578050136566], [0.024552984163165092, 0.00946857314556837, 0.037572361528873444, 0.013209464959800243, 0.0025820524897426367, 0.011799118481576443, 0.008195475675165653, 0.12242677807807922, 0.03887827321887016, 0.25173744559288025, 0.06084541976451874, 0.03621939569711685, 0.1216202899813652, 0.020776083692908287, 0.07667826861143112, 0.01513805240392685, 0.031179022043943405, 0.11712096631526947], [0.023634525015950203, 0.005545102991163731, 0.0033189363311976194, 0.005793123971670866, 0.002564271679148078, 0.003916232846677303, 0.007631384767591953, 0.038940005004405975, 0.06431657820940018, 0.10478533804416656, 0.3077114522457123, 0.14211729168891907, 0.12125242501497269, 0.019062794744968414, 0.0565209798514843, 0.010907442308962345, 0.044084612280130386, 0.03789747133851051], [0.011146201752126217, 0.00466806348413229, 0.03402581438422203, 0.006774022709578276, 0.0020926366560161114, 0.008651487529277802, 0.004482911434024572, 0.07379452884197235, 0.029944520443677902, 0.3292624056339264, 0.05256461352109909, 0.03537718951702118, 0.11203436553478241, 0.0494491383433342, 0.1343456208705902, 0.009240538813173771, 0.030531104654073715, 0.0716148167848587], [0.07219091057777405, 0.008371536619961262, 0.0024847015738487244, 0.004567266441881657, 0.0018457022961229086, 0.004408905748277903, 0.006662778090685606, 0.3170572817325592, 0.03454805165529251, 0.032286711037158966, 0.03262348473072052, 0.014087476767599583, 0.02265552617609501, 0.01614176295697689, 0.03949996083974838, 0.009415963664650917, 0.06809527426958084, 0.31305667757987976], [0.021520216017961502, 0.0007513410528190434, 0.0009003444574773312, 0.0008016551146283746, 0.00038365929503925145, 0.0005229440284892917, 0.0051895854994654655, 0.48269957304000854, 0.0007444525253959, 0.0005625795456580818, 0.00022392395476344973, 0.0005163753521628678, 0.00033834922942332923, 0.00030381555552594364, 0.0004988893633708358, 0.0002366280386922881, 0.004181268159300089, 0.4796244502067566]], [[0.18701988458633423, 0.017147798091173172, 0.02941509708762169, 0.05313686653971672, 0.02230292186141014, 0.011165183037519455, 0.4810388684272766, 0.06069588288664818, 0.0008762081270106137, 0.00275365705601871, 0.000802756636403501, 0.0008488394669257104, 0.002571464516222477, 0.0023841506335884333, 0.0026491903699934483, 0.0030846879817545414, 0.06199129670858383, 0.0601152628660202], [0.5041621327400208, 0.002201351337134838, 7.300855941139162e-05, 0.0002536497195251286, 2.1739564544986933e-05, 2.9244518373161554e-05, 0.00014113991346675903, 0.24528522789478302, 0.0002500270202290267, 8.877179425326176e-06, 4.2472497625567485e-06, 7.997264219739009e-06, 0.0005129177588969469, 1.6024428987293504e-05, 3.500164166325703e-05, 3.4097112802555785e-05, 0.0031978716142475605, 0.24376548826694489], [0.033347126096487045, 0.9636524319648743, 3.888399533025222e-06, 3.580031989258714e-05, 1.3153871805116069e-05, 7.647203688065929e-07, 2.7903555746888742e-05, 0.0010550026781857014, 1.5548696410405682e-06, 6.072721703276329e-08, 1.275687964152894e-07, 1.8609101815059148e-08, 1.1005610076608718e-06, 3.2082739380712155e-06, 1.4715433280798607e-05, 2.0589531857240218e-07, 1.0931682481896132e-05, 0.0018318125512450933], [4.979756704415195e-05, 0.00024533344549126923, 0.9813268780708313, 0.000880985870026052, 2.863763938876218e-06, 0.00035231770016252995, 0.0004037530452478677, 0.00826941430568695, 1.2233725499299908e-07, 2.7046336981584318e-05, 1.342853579444636e-07, 1.2371737057037535e-07, 4.1740978673487916e-08, 4.10861503041815e-05, 2.622125975904055e-05, 0.0006285989074967802, 8.551067730877548e-05, 0.0076596736907958984], [0.008829222992062569, 0.0004121342208236456, 0.00015531764074694365, 0.9453215003013611, 0.0005216964636929333, 6.0816706536570564e-05, 0.0009909680811688304, 0.02296609804034233, 0.00018192549759987742, 4.112399949462997e-07, 3.62044847861398e-05, 1.3432439118332695e-05, 4.882346274825977e-06, 7.060380085022189e-07, 1.9203426404601487e-07, 0.000492804974783212, 0.0004889349802397192, 0.019522840157151222], [0.00037871766835451126, 9.543979103909805e-06, 3.950362952309661e-06, 0.0012753029586747289, 0.9976117610931396, 1.450907984690275e-05, 2.080382182612084e-05, 0.0003192393633071333, 4.815295255866658e-07, 5.330051635610289e-07, 1.8549672020640173e-08, 6.281619846504327e-08, 1.2130856248404598e-06, 2.2694362655784062e-07, 8.947850793639134e-10, 5.106531020260263e-08, 0.00014045841817278415, 0.00022310912027023733], [0.0008180620498023927, 2.5470588298048824e-05, 0.00025567240663804114, 6.556037260452285e-05, 8.688080561114475e-05, 0.9906801581382751, 0.003148223040625453, 0.0019436718430370092, 8.730934496270493e-06, 5.2216273616068065e-05, 1.2624178680198384e-06, 1.0020026763868373e-07, 2.1215098513494013e-06, 8.470285683870316e-05, 5.0919976501973e-07, 6.992982525844127e-05, 5.4349435231415555e-05, 0.00270248344168067], [0.6757625341415405, 0.019275445491075516, 0.0075362385250627995, 0.012470445595681667, 0.01056464109569788, 0.005613361950963736, 0.04021362215280533, 0.040430568158626556, 0.006115566939115524, 0.01318604126572609, 0.015948178246617317, 0.016970377415418625, 0.023034920915961266, 0.008981152437627316, 0.030848538503050804, 0.006910607684403658, 0.025215748697519302, 0.04092194139957428], [0.5244669318199158, 4.3039139541178884e-07, 3.142494264807283e-08, 1.0171491027222146e-07, 1.3241439944522426e-07, 3.338424292564923e-08, 8.162399353750516e-06, 0.28845229744911194, 0.0016177002107724547, 3.454725447227247e-05, 4.554933184408583e-06, 4.4395928853191435e-06, 7.307386340471567e-07, 3.764015588103575e-08, 3.042935858843521e-08, 2.655775688253925e-07, 4.471145530260401e-06, 0.1854051798582077], [0.0012715889606624842, 1.943394408954191e-06, 7.587512840245836e-09, 3.5999614400594737e-09, 1.89373583481256e-08, 1.1252262765992782e-07, 8.162403901224025e-06, 0.02130001224577427, 0.9522722363471985, 6.830029451521114e-05, 0.0003147190436720848, 1.929189784277696e-05, 2.6672094463719986e-05, 1.2439593774615787e-05, 2.802289733594421e-09, 2.7916709655073646e-07, 4.582673227560008e-06, 0.024699753150343895], [2.4904125893954188e-05, 3.0195941747024335e-08, 1.2061175311828265e-06, 2.309062246963478e-10, 7.319438943831358e-10, 1.787374941386588e-07, 1.9737719014756294e-07, 0.001601806259714067, 1.3709325685340445e-05, 0.9958783388137817, 0.000621455314103514, 5.605726983048953e-05, 9.14463362278184e-06, 0.0001255402312381193, 6.614804988203105e-07, 1.6025089166760154e-07, 3.9547313690491137e-07, 0.001666215481236577], [5.952585070190253e-06, 1.2835315033044026e-08, 5.028321226063781e-08, 1.1360906881918709e-07, 8.820000979570253e-11, 7.075731556227538e-09, 2.661034557149833e-07, 0.00022218655794858932, 6.107808985689189e-06, 0.00013512445730157197, 0.9992896318435669, 6.993424176471308e-05, 2.044248731181142e-06, 1.4252203072828706e-05, 1.7082855265471153e-05, 1.577596009383342e-07, 6.375623584631285e-09, 0.0002370728034293279], [6.406695320038125e-05, 1.1512528885759821e-07, 1.1857095216782909e-07, 2.505046268197475e-07, 3.922695839264634e-07, 2.863015380327738e-10, 1.0035758180038101e-07, 0.0007803702028468251, 1.5230069038807414e-05, 0.0005066173034720123, 0.0089727733284235, 0.987377941608429, 0.0005629532388411462, 4.269513374310918e-05, 0.0011350979330018163, 3.550348992575891e-05, 5.2037876230315305e-06, 0.0005005548009648919], [0.00016901854542084038, 5.1752504077740014e-05, 1.0754807711066405e-08, 7.09705005874639e-08, 9.82300662144553e-07, 7.302180904389388e-08, 1.3849092539430785e-08, 0.0004875829617958516, 5.447414514492266e-05, 2.170404286516714e-06, 7.435113275278127e-06, 4.8606638301862404e-05, 0.9983580708503723, 4.0165796235669404e-05, 7.908725092420354e-05, 7.514180651924107e-06, 7.239467959152535e-05, 0.0006205282988958061], [2.7779640277003637e-07, 1.9988299300166545e-06, 2.287850293214433e-06, 1.132799631875514e-09, 7.4476145250912396e-09, 6.516577144566327e-08, 1.3250472719050777e-08, 8.587592310504988e-05, 2.634226348163793e-08, 1.7855569240055047e-05, 8.279236499220133e-05, 1.3304567119121202e-06, 4.244753654347733e-05, 0.9995366334915161, 3.403204391361214e-05, 3.590642518247478e-05, 4.186569640296511e-06, 0.00015419740520883352], [4.265150710125454e-05, 5.752355264121434e-06, 1.7712578710415983e-06, 2.1904000391259615e-07, 1.4755471511307405e-08, 3.440518758779376e-09, 6.068876245990396e-08, 0.0002092726354021579, 5.58408741468952e-09, 4.607700532233139e-07, 3.8005502574378625e-05, 4.0169998101191595e-05, 7.579012890346348e-05, 1.6886873709154315e-05, 0.9993160963058472, 3.3447970054112375e-05, 4.620952950062929e-06, 0.0002147658378817141], [0.0004424157668836415, 9.336350558442064e-06, 1.4380645552591886e-05, 2.7244112061453052e-05, 8.988362424133811e-06, 8.446555511909537e-06, 7.5620914685714524e-06, 0.005239679012447596, 3.3569986044312827e-06, 1.6319394262609421e-06, 2.695338935154723e-06, 8.36774634080939e-05, 0.0003034199180547148, 0.0008060917025431991, 0.0003097225562669337, 0.9779735207557678, 0.009081605821847916, 0.005676144268363714], [0.6465809941291809, 0.017073173075914383, 0.0076857018284499645, 0.011831340380012989, 0.01610330119729042, 0.007380658760666847, 0.025623733177781105, 0.043107736855745316, 0.00668030371889472, 0.015256601385772228, 0.010696898214519024, 0.015012562274932861, 0.0453854538500309, 0.01016989629715681, 0.03159622102975845, 0.006821665912866592, 0.04014907777309418, 0.04284469783306122]]], [[[0.021537618711590767, 0.05413591489195824, 0.10612097382545471, 0.10892120003700256, 0.062354523688554764, 0.03767572343349457, 0.11161340773105621, 0.1816212385892868, 0.011664198711514473, 0.019044632092118263, 0.01091531477868557, 0.009766189381480217, 0.008821023628115654, 0.018205104395747185, 0.018360797315835953, 0.013089797459542751, 0.024654308333992958, 0.18149806559085846], [0.08840508759021759, 0.10267304629087448, 0.0006315679638646543, 0.00012094285921193659, 5.50800068594981e-05, 3.9059137634467334e-05, 0.030768398195505142, 0.20488257706165314, 0.0014833819586783648, 0.1387920081615448, 0.0007212272030301392, 0.0008439872763119638, 0.001175061916001141, 0.0012554362183436751, 0.005331540945917368, 0.0010799472220242023, 0.21907979249954224, 0.20266197621822357], [0.07539638876914978, 0.00022841223108116537, 0.07105249166488647, 1.2811407941626385e-05, 2.591286147435312e-06, 4.2418618249939755e-05, 0.012827272526919842, 0.37843722105026245, 0.0001888369588414207, 0.001902204006910324, 0.00037382979644462466, 0.0002558898413553834, 0.004033676814287901, 0.002002556109800935, 0.0007519855280406773, 0.005124846938997507, 0.07375217229127884, 0.3736144006252289], [0.05645609647035599, 0.00010969523282255977, 3.086878496105783e-05, 0.02125740423798561, 5.791364674223587e-05, 2.541604953876231e-05, 0.013698933646082878, 0.356584757566452, 0.001362594193778932, 0.005135109182447195, 0.0036678011529147625, 0.0026709497906267643, 0.005886552855372429, 0.001168724149465561, 0.002018455881625414, 0.0023017199710011482, 0.1740713268518448, 0.35349562764167786], [0.1368228793144226, 0.00015092779358383268, 1.387906104355352e-05, 0.00015167421952355653, 0.021793825551867485, 0.00011693914711941034, 0.011585265398025513, 0.38953426480293274, 0.0005961314309388399, 0.0005579753778874874, 0.0002478875976521522, 0.0004488645354285836, 0.0008417723583988845, 0.001930899452418089, 0.0009021121077239513, 0.0005660842289216816, 0.04592352733016014, 0.38781511783599854], [0.11849930137395859, 2.9684963010367937e-05, 1.9869381503667682e-05, 2.171601590816863e-05, 4.742015153169632e-05, 0.04086234048008919, 0.00950186513364315, 0.37483465671539307, 0.0013172673061490059, 0.00016713236982468516, 0.0007547531859017909, 0.000115283350169193, 0.00043459254084154963, 0.002024881076067686, 9.676857007434592e-05, 0.0014582197181880474, 0.0806489810347557, 0.36916524171829224], [0.06362536549568176, 0.004503198433667421, 0.004122976213693619, 0.0020143697038292885, 0.0015305237611755729, 0.0005466362927109003, 0.07291050255298615, 0.24183666706085205, 0.036042820662260056, 0.01908978819847107, 0.011188888922333717, 0.0023287110961973667, 0.0064323944970965385, 0.024747008457779884, 0.003067954909056425, 0.015751171857118607, 0.25668632984161377, 0.23357462882995605], [0.016253910958766937, 0.001511957379989326, 0.0019217763328924775, 0.0026652675587683916, 0.002220605267211795, 0.001254631788469851, 0.011762886308133602, 0.46358075737953186, 0.00158187176566571, 0.002424072939902544, 0.002043483778834343, 0.003007682505995035, 0.0024868613108992577, 0.004762281663715839, 0.0017206603661179543, 0.005433693062514067, 0.02162950299680233, 0.4537380635738373], [0.15981720387935638, 0.0011770433047786355, 0.00104898726567626, 0.0016585782868787646, 0.0003243147803004831, 0.0080375075340271, 0.16781899333000183, 0.3115764260292053, 0.012589167803525925, 2.980443969136104e-05, 3.606381869758479e-05, 8.520206029061228e-05, 9.461055924475659e-06, 8.302497008116916e-06, 5.0746366468956694e-05, 2.154787944164127e-05, 0.030738690868020058, 0.30497196316719055], [0.07900562137365341, 0.23790061473846436, 0.008056898601353168, 0.010416662320494652, 0.0005487060989253223, 0.0003902194439433515, 0.1315627545118332, 0.2099246382713318, 4.4748245272785425e-05, 0.09598208218812943, 0.00016871407569851726, 0.0003134299477096647, 0.00015086273197084665, 0.00022252615599427372, 0.0002671466500032693, 0.00014687700604554266, 0.01883227936923504, 0.2060650736093521], [0.17837770283222198, 0.0007613662746734917, 0.00035393587313592434, 0.002606374444440007, 5.041294207330793e-05, 0.0007464016671292484, 0.061835337430238724, 0.3418695628643036, 2.2943368094274774e-05, 6.881753506604582e-05, 0.06420259177684784, 5.7893335906555876e-05, 7.367401121882722e-05, 1.061124748957809e-05, 0.00012222268560435623, 9.893864444165956e-06, 0.013165120035409927, 0.33566510677337646], [0.12217862904071808, 0.0014378034975379705, 0.0005137810949236155, 0.0030387050937861204, 0.0002507077588234097, 7.465307135134935e-05, 0.03276819735765457, 0.39068126678466797, 0.00012302660616114736, 0.0001695662795100361, 6.147826206870377e-05, 0.04518021643161774, 9.355996735394001e-05, 1.395197250531055e-05, 0.00034534375299699605, 0.00012154263094998896, 0.01356495264917612, 0.38938257098197937], [0.11956439912319183, 0.0008446139981970191, 0.0019992515444755554, 0.0020330529659986496, 9.913880057865754e-05, 0.0002433253830531612, 0.08587537705898285, 0.3751601576805115, 3.1453105293621775e-06, 5.97216458118055e-05, 9.277016943087801e-05, 0.00010057399776997045, 0.031388819217681885, 2.028122435149271e-05, 0.00014779501361772418, 0.00039613398257642984, 0.011208969168365002, 0.37076255679130554], [0.07828839868307114, 0.001526480307802558, 0.009665501303970814, 0.0014276213478296995, 0.0008041340624913573, 0.0012665592366829515, 0.04362867400050163, 0.32067811489105225, 1.3523659617931116e-05, 0.00015969277592375875, 2.914229298767168e-05, 2.8829597795265727e-05, 3.7202498788246885e-05, 0.20605768263339996, 0.0005121711874380708, 0.015384938567876816, 0.006694282870739698, 0.31379708647727966], [0.14402629435062408, 0.004144330974668264, 0.001329502440057695, 0.0018941559828817844, 0.0002025944268098101, 5.666711149387993e-05, 0.05153302848339081, 0.29393160343170166, 2.4021381250349805e-05, 0.00011850854934891686, 0.0001718025450827554, 0.0002061188279185444, 0.00020175600366201252, 9.941263124346733e-05, 0.20603346824645996, 7.83202558523044e-05, 0.00691754836589098, 0.2890309691429138], [0.08552919328212738, 0.001904022297821939, 0.008618734776973724, 0.0023127493914216757, 5.242591578280553e-05, 0.00028718786779791117, 0.042567867785692215, 0.2928728461265564, 1.5863121006987058e-05, 0.00010450428089825436, 1.1320105841150507e-05, 5.357235932024196e-05, 0.0003540106408763677, 0.008419588208198547, 0.00015581103798467666, 0.2607387602329254, 0.007464660797268152, 0.288536936044693], [0.09341487288475037, 0.039887432008981705, 0.03688642382621765, 0.02155260555446148, 0.00811756867915392, 0.005079877562820911, 0.19806912541389465, 0.2631339430809021, 0.012007947079837322, 0.004914932884275913, 0.0032786887604743242, 0.0012287693098187447, 0.0013003292260691524, 0.003860088996589184, 0.0006304767448455095, 0.001993210520595312, 0.046307068318128586, 0.25833675265312195], [0.016172563657164574, 0.0015281441155821085, 0.0019390531815588474, 0.0026901760138571262, 0.002244945615530014, 0.0012578468304127455, 0.011720936745405197, 0.46350786089897156, 0.0015695550246164203, 0.002423481550067663, 0.0020521502010524273, 0.0030563785694539547, 0.0025247016455978155, 0.004814495798200369, 0.0017377035692334175, 0.005552895832806826, 0.021885942667722702, 0.4533211588859558]], [[0.030434563755989075, 0.003261659061536193, 0.018362082540988922, 0.0038697870913892984, 0.007150906603783369, 0.013395234011113644, 0.006957588251680136, 0.06768140941858292, 0.1930849850177765, 0.051022473722696304, 0.04946316406130791, 0.06637069582939148, 0.10191372036933899, 0.12087137252092361, 0.025847336277365685, 0.11277268826961517, 0.060957204550504684, 0.06658316403627396], [0.015657197684049606, 0.02258964069187641, 0.16511541604995728, 0.08459056168794632, 0.05668487772345543, 0.2893175780773163, 0.04409819468855858, 0.0446043387055397, 0.029805483296513557, 0.010689427144825459, 0.014392639510333538, 0.03594178333878517, 0.03760061785578728, 0.03535124287009239, 0.01149205956608057, 0.03741288557648659, 0.020325955003499985, 0.04433009773492813], [0.008489750325679779, 0.06167420744895935, 0.13156084716320038, 0.027836998924613, 0.0505857840180397, 0.13193385303020477, 0.06314299255609512, 0.20572298765182495, 0.009616228751838207, 0.013230690732598305, 0.011693823151290417, 0.0062479181215167046, 0.014394375495612621, 0.020304381847381592, 0.005802764557301998, 0.015311267226934433, 0.019530881196260452, 0.20292025804519653], [0.003555492265149951, 0.030382536351680756, 0.09537922590970993, 0.13728731870651245, 0.10567794740200043, 0.1659322828054428, 0.03778160735964775, 0.0583982989192009, 0.03658667951822281, 0.008805859833955765, 0.019787244498729706, 0.17804661393165588, 0.019428405910730362, 0.008589528501033783, 0.010405201464891434, 0.012092896737158298, 0.014156874269247055, 0.05770603567361832], [0.00750766322016716, 0.021181169897317886, 0.03452887013554573, 0.13970766961574554, 0.020956357941031456, 0.3030017912387848, 0.04370180517435074, 0.06736189126968384, 0.0880548283457756, 0.00881781242787838, 0.02323480322957039, 0.0877406895160675, 0.0210198275744915, 0.008946415968239307, 0.019834153354167938, 0.008281616494059563, 0.029671678319573402, 0.06645092368125916], [0.01753910444676876, 0.0626688301563263, 0.11316372454166412, 0.043460287153720856, 0.048139918595552444, 0.16159728169441223, 0.10871126502752304, 0.16623122990131378, 0.014110463671386242, 0.006425789091736078, 0.013388133607804775, 0.006138610187917948, 0.014652524143457413, 0.01080254279077053, 0.009392312727868557, 0.01403605006635189, 0.026302505284547806, 0.16323938965797424], [0.009196829982101917, 0.029443034902215004, 0.07632076740264893, 0.07258690148591995, 0.06069575995206833, 0.14246106147766113, 0.07052502036094666, 0.15918029844760895, 0.07494612038135529, 0.01272502914071083, 0.02051651105284691, 0.025855345651507378, 0.022963333874940872, 0.007712800987064838, 0.013433204032480717, 0.009215097874403, 0.03509979695081711, 0.1571231484413147], [0.0036648192908614874, 0.0006576250889338553, 0.0009318678639829159, 0.0007644909201189876, 0.0011926554143428802, 0.0005265133804641664, 0.004080122336745262, 0.49108800292015076, 0.002726140199229121, 0.0007345074554905295, 0.0010696003446355462, 0.0008631455129943788, 0.0013138341018930078, 0.0007903185905888677, 0.0005975810345262289, 0.0009507612558081746, 0.009132384322583675, 0.47891566157341003], [0.02067660354077816, 0.012849344871938229, 0.02965516783297062, 0.013393135741353035, 0.023182334378361702, 0.051855701953172684, 0.02687544748187065, 0.19114677608013153, 0.12967577576637268, 0.013361606746912003, 0.027877412736415863, 0.03318608179688454, 0.0655595138669014, 0.03808646649122238, 0.015448692254722118, 0.06151075288653374, 0.056380901485681534, 0.18927818536758423], [0.006137806456536055, 0.008433952927589417, 0.0746663361787796, 0.01836778037250042, 0.011526010930538177, 0.1155829131603241, 0.005070325452834368, 0.06341125071048737, 0.10675980895757675, 0.022064706310629845, 0.09709732234477997, 0.055303554981946945, 0.0687270313501358, 0.09228333085775375, 0.029110349714756012, 0.1482492834329605, 0.014592628926038742, 0.06261565536260605], [0.012324857525527477, 0.008180491626262665, 0.03070227988064289, 0.025839949026703835, 0.012710422277450562, 0.021477868780493736, 0.012766005471348763, 0.223636195063591, 0.10926752537488937, 0.025878340005874634, 0.03997540473937988, 0.06580716371536255, 0.07583077251911163, 0.03542260453104973, 0.0168643556535244, 0.027521241456270218, 0.03465801849961281, 0.22113654017448425], [0.00735541433095932, 0.012030630372464657, 0.016989141702651978, 0.07194972038269043, 0.029617980122566223, 0.07898988574743271, 0.014545250684022903, 0.1212354525923729, 0.11715511232614517, 0.028652487322688103, 0.05450792610645294, 0.10951541364192963, 0.09267400205135345, 0.0362970195710659, 0.030167067423462868, 0.026522381231188774, 0.03181013464927673, 0.11998507380485535], [0.002542876172810793, 0.002306232461705804, 0.002456529065966606, 0.0015234930906444788, 0.0012265461264178157, 0.005929487757384777, 0.003284241072833538, 0.47282612323760986, 0.012271394021809101, 0.0031100220512598753, 0.006111857946962118, 0.0018906606128439307, 0.003529824549332261, 0.005073534790426493, 0.004376869648694992, 0.00384961417876184, 0.007758363615721464, 0.4599322974681854], [0.03031584620475769, 0.010897520929574966, 0.05077418312430382, 0.006516766734421253, 0.008025262504816055, 0.03686504065990448, 0.01496187038719654, 0.29583144187927246, 0.05060361325740814, 0.013912168331444263, 0.01954188570380211, 0.01908761076629162, 0.019197337329387665, 0.04733313247561455, 0.013765809126198292, 0.03888629004359245, 0.03351336717605591, 0.28997090458869934], [0.0015409934567287564, 0.0025492629501968622, 0.0031634243205189705, 0.004153302870690823, 0.0038439310155808926, 0.006573033984750509, 0.0020221243612468243, 0.4458523690700531, 0.04414975270628929, 0.0037445053458213806, 0.005642854142934084, 0.015064140781760216, 0.01100806426256895, 0.0032730514649301767, 0.0032002590596675873, 0.0037590765859931707, 0.005601753015071154, 0.4348580837249756], [0.013198008760809898, 0.00902887899428606, 0.029283318668603897, 0.00807236973196268, 0.008098929189145565, 0.03538082540035248, 0.008928816765546799, 0.3598131537437439, 0.018328819423913956, 0.008254420012235641, 0.018848877400159836, 0.013683446682989597, 0.01845734752714634, 0.04470443353056908, 0.012176495976746082, 0.022850440815091133, 0.017894845455884933, 0.3529966175556183], [0.009159340523183346, 0.0150224594399333, 0.03517501428723335, 0.04421379417181015, 0.0401315800845623, 0.048998262733221054, 0.030272919684648514, 0.1397554725408554, 0.23555263876914978, 0.02159370481967926, 0.03203815966844559, 0.04870451241731644, 0.07287348806858063, 0.013128501363098621, 0.01816944032907486, 0.017153004184365273, 0.0399615652859211, 0.1380961835384369], [0.003670863341540098, 0.0006600673077628016, 0.0009385439334437251, 0.0007733855163678527, 0.0012065701885148883, 0.000530096294824034, 0.004117552191019058, 0.49098119139671326, 0.0027451026253402233, 0.0007357163704000413, 0.001076779910363257, 0.0008754500886425376, 0.0013262990396469831, 0.0007934113964438438, 0.0006001040455885231, 0.0009556386503390968, 0.009186030365526676, 0.47882726788520813]], [[0.0066079809330403805, 0.011315207928419113, 0.007938464172184467, 0.004242634400725365, 0.0052033946849405766, 0.007014320697635412, 0.036600321531295776, 0.4562828242778778, 0.002461161697283387, 0.0014188281493261456, 0.0007139774388633668, 0.0005441443063318729, 0.000888269511051476, 0.001383815542794764, 0.0005895551876164973, 0.000882305612321943, 0.007420496549457312, 0.44849225878715515], [0.08182786405086517, 0.028638949617743492, 0.015224859118461609, 0.005910331849008799, 0.0021526729688048363, 0.006130129098892212, 0.05801507458090782, 0.3994421660900116, 0.0031992632430046797, 0.00045039845281280577, 0.0005270343972370028, 0.0009946504142135382, 0.0006214965251274407, 0.000759599672164768, 0.0003981162153650075, 0.0002263705973746255, 0.007647589780390263, 0.38783350586891174], [0.019447995349764824, 0.11102356016635895, 0.009973163716495037, 0.004938789177685976, 0.00373585382476449, 0.0027078711427748203, 0.015022206120193005, 0.4170157015323639, 0.0006434441893361509, 0.0002664921048562974, 0.00019052570860367268, 0.00043285463470965624, 0.0004504162061493844, 0.0008169256034307182, 0.0006068439106456935, 0.00021309813018888235, 0.0034403596073389053, 0.40907394886016846], [0.09925954788923264, 0.27372393012046814, 0.06353210657835007, 0.012930668890476227, 0.006896003149449825, 0.0250614732503891, 0.03243737667798996, 0.22990623116493225, 0.0042722951620817184, 0.0006447873311117291, 0.00017665352788753808, 0.0013011727714911103, 0.000997242284938693, 0.0013470696285367012, 0.0008678808808326721, 0.0007336637936532497, 0.015549789182841778, 0.2303621917963028], [0.05148565396666527, 0.03704288974404335, 0.08990951627492905, 0.14350809156894684, 0.07626163214445114, 0.1475410759449005, 0.08781302720308304, 0.16109979152679443, 0.005004079546779394, 0.0004628194437827915, 0.0014581945724785328, 0.022765949368476868, 8.787084516370669e-05, 0.0006335845100693405, 0.0012249959399923682, 0.0006961681065149605, 0.0157452505081892, 0.15725944936275482], [0.017292017117142677, 0.025115393102169037, 0.0573853999376297, 0.29776591062545776, 0.09726478159427643, 0.023892633616924286, 0.01400215458124876, 0.23590900003910065, 0.0008269668905995786, 0.0007263123407028615, 0.00014251330867409706, 0.0005870343302376568, 5.004037666367367e-05, 9.937160211848095e-05, 7.755070691928267e-05, 0.0006089030648581684, 0.0033360174857079983, 0.2249179631471634], [0.015154029242694378, 0.014127898029983044, 0.02783813886344433, 0.2913612425327301, 0.22661133110523224, 0.166086345911026, 0.029368791729211807, 0.11102248728275299, 0.0008983899606391788, 0.0009311775211244822, 0.0003948946250602603, 0.0005048328312113881, 0.00019522012735251337, 0.00041403117938898504, 0.0001603957498446107, 0.001061948947608471, 0.004103717859834433, 0.10976501554250717], [0.010817666538059711, 0.012594386003911495, 0.0034455277491360903, 0.003032159758731723, 0.004513731691986322, 0.0028964474331587553, 0.023238932713866234, 0.4453880488872528, 0.0026809037663042545, 0.0011007654247805476, 0.0008670646930113435, 0.003503039013594389, 0.006411248352378607, 0.00321485148742795, 0.0037586570251733065, 0.003203765954822302, 0.03134356066584587, 0.43798914551734924], [0.08506066352128983, 0.0005747622926719487, 0.0004662408318836242, 0.0007302563171833754, 0.00030359000083990395, 0.0008503185817971826, 0.008998352102935314, 0.44195643067359924, 0.01788548193871975, 0.002043089596554637, 0.0017966505838558078, 0.0008855757769197226, 0.00013365401537157595, 0.0009350049076601863, 0.0001094697872758843, 0.0006355558871291578, 0.012061696499586105, 0.42457324266433716], [0.07333287596702576, 0.001946002128534019, 0.0007038511685095727, 0.0006147025851532817, 0.0009588497341610491, 0.0004552564350888133, 0.004646515008062124, 0.31217026710510254, 0.28865236043930054, 0.005079726222902536, 0.005144454538822174, 0.0012141861952841282, 0.0014532897621393204, 0.0011659523006528616, 0.00029878990608267486, 0.0009485500049777329, 0.005336533300578594, 0.2958778142929077], [0.03707887604832649, 0.0010587674332782626, 0.00015958782751113176, 8.162539597833529e-05, 0.00016241378034465015, 0.0003184092347510159, 0.0034061039332300425, 0.17868942022323608, 0.3243807256221771, 0.24920065701007843, 0.016661353409290314, 0.006944655906409025, 0.003817035350948572, 0.002086183289065957, 8.571384387323633e-05, 0.0003415764949750155, 0.0016942023066803813, 0.17383261024951935], [0.04303490370512009, 0.0011792631121352315, 0.0003126279916614294, 7.100504444679245e-05, 0.0003896044800058007, 0.0007858643075451255, 0.008758383803069592, 0.20285844802856445, 0.3285650610923767, 0.1129697784781456, 0.0558210164308548, 0.03385154902935028, 0.0018566360231488943, 0.0047980062663555145, 0.0005501080304384232, 0.0003945317293982953, 0.0039764754474163055, 0.19982679188251495], [0.01505610253661871, 0.000584750494454056, 0.000646750966552645, 0.00026827838155440986, 0.00012159963080193847, 0.00020800705533474684, 0.0031552608124911785, 0.27190908789634705, 0.05903036892414093, 0.12366236001253128, 0.15293508768081665, 0.0681159496307373, 0.013731739483773708, 0.018279528245329857, 0.005643226206302643, 0.0027960382867604494, 0.0022157339844852686, 0.2616402208805084], [0.01031425129622221, 0.0010446306550875306, 0.000793259241618216, 0.00012315285857766867, 0.00014166008622851223, 0.00012265740951988846, 0.00039849692257121205, 0.29842329025268555, 0.012571930885314941, 0.03090527653694153, 0.016464263200759888, 0.1916501224040985, 0.11404005438089371, 0.010183652862906456, 0.012622580863535404, 0.004413849674165249, 0.0065255481749773026, 0.2892613410949707], [0.006609772797673941, 0.00211119232699275, 0.00019566075934562832, 8.924917347030714e-05, 0.00016333341773133725, 0.00013258894614409655, 7.558192737633362e-05, 0.016755511984229088, 0.008752018213272095, 0.006965440697968006, 0.0322999432682991, 0.05882953479886055, 0.779111385345459, 0.051258135586977005, 0.011631043627858162, 0.004955441690981388, 0.003125061048194766, 0.016939153894782066], [0.00485847145318985, 0.0009102660114876926, 0.0015139022143557668, 0.00010373944678576663, 0.00010742209997260943, 0.00014815726899541914, 5.18146189278923e-05, 0.02578197605907917, 0.0011865886626765132, 0.010905178263783455, 0.02760382555425167, 0.2412172108888626, 0.10605032742023468, 0.08563077449798584, 0.4566906988620758, 0.00606431532651186, 0.004795623943209648, 0.026379724964499474], [0.01648111268877983, 0.0029477477073669434, 0.002902927342802286, 0.0022366857156157494, 0.0012222316581755877, 0.0008346043759956956, 0.0007081297226250172, 0.21035628020763397, 0.004698367323726416, 0.009563340805470943, 0.017161842435598373, 0.07172999531030655, 0.05460318177938461, 0.07920365780591965, 0.17181584239006042, 0.08479326218366623, 0.060552891343832016, 0.20818780362606049], [0.01076355017721653, 0.012413381598889828, 0.00337919220328331, 0.003059231210500002, 0.004587475210428238, 0.0028417722787708044, 0.02295435220003128, 0.44599682092666626, 0.0027265148237347603, 0.0010869504185393453, 0.0008626185008324683, 0.003645386314019561, 0.006541611161082983, 0.0031363023445010185, 0.0036829791497439146, 0.0032446631230413914, 0.031116042286157608, 0.43796107172966003]], [[0.013416002504527569, 0.005477843340486288, 0.004634995013475418, 0.004950294271111488, 0.003318337257951498, 0.020358171314001083, 0.014292421750724316, 0.18035918474197388, 0.13584311306476593, 0.05463586747646332, 0.020036181434988976, 0.025233356282114983, 0.09174304455518723, 0.05707283690571785, 0.05236155167222023, 0.07682139426469803, 0.06139388307929039, 0.17805159091949463], [0.0044917156919837, 0.016133015975356102, 0.07207312434911728, 0.03202234208583832, 0.012521826662123203, 0.35445111989974976, 0.024476906284689903, 0.12400934100151062, 0.03750843554735184, 0.020673096179962158, 0.010001827031373978, 0.016857683658599854, 0.060949284583330154, 0.01959531009197235, 0.03562745824456215, 0.026536257937550545, 0.008524221368134022, 0.1235470101237297], [0.006459751632064581, 0.01957428641617298, 0.02758968435227871, 0.011878248304128647, 0.005886025261133909, 0.06152255833148956, 0.01801352947950363, 0.3721249997615814, 0.013169980607926846, 0.01124278362840414, 0.0020122313871979713, 0.010458741337060928, 0.03519528731703758, 0.009985351003706455, 0.014219794422388077, 0.008594480343163013, 0.0077920411713421345, 0.36428016424179077], [0.00388321396894753, 0.007620387244969606, 0.023093488067388535, 0.007385466247797012, 0.061101675033569336, 0.19591054320335388, 0.014350125566124916, 0.29207634925842285, 0.034675199538469315, 0.008875041268765926, 0.0026560041587799788, 0.009961770847439766, 0.022305617108941078, 0.0037320631090551615, 0.010567042045295238, 0.007239216938614845, 0.004674975294619799, 0.28989171981811523], [0.004121847450733185, 0.0058451248332858086, 0.009231414645910263, 0.009834003634750843, 0.01105272676795721, 0.047511026263237, 0.004672386683523655, 0.4445199966430664, 0.0036663543432950974, 0.0006715406198054552, 0.0028607251588255167, 0.008194927126169205, 0.002082410966977477, 0.0008446542778983712, 0.005317407660186291, 0.001393364043906331, 0.002018623985350132, 0.43616151809692383], [0.00955398753285408, 0.007842875085771084, 0.005400092341005802, 0.04756597429513931, 0.04561293125152588, 0.025266392156481743, 0.035811085253953934, 0.3981539309024811, 0.0063993064686656, 0.003782339161261916, 0.0014588342746719718, 0.007859253324568272, 0.0025481872726231813, 0.0026083632837980986, 0.0023489424493163824, 0.002021246124058962, 0.008226261474192142, 0.3875400424003601], [0.010838949121534824, 0.011144833639264107, 0.013546297326683998, 0.04365720972418785, 0.0262167789041996, 0.10204556584358215, 0.02721056528389454, 0.35473552346229553, 0.022365113720297813, 0.006782440468668938, 0.003140740329399705, 0.008197867311537266, 0.0020931940525770187, 0.0018359286477789283, 0.004984323866665363, 0.002246830379590392, 0.010798144154250622, 0.3481597602367401], [0.000832104473374784, 0.00037623714888468385, 0.0023634578101336956, 0.0015781063120812178, 0.0013996908674016595, 0.010013234801590443, 0.0017044139094650745, 0.4886111915111542, 0.0022657958324998617, 0.0006029423675499856, 0.00028564027161337435, 0.0019088577246293426, 0.001436930731870234, 0.0025985308457165956, 0.0009477093117311597, 0.002293842611834407, 0.001506699831224978, 0.4792746305465698], [0.012825368903577328, 0.005159531254321337, 0.006005235482007265, 0.060052309185266495, 0.020389866083860397, 0.10852421820163727, 0.007560436613857746, 0.2960466146469116, 0.020215682685375214, 0.0049596731550991535, 0.06353787332773209, 0.03554400056600571, 0.019502578303217888, 0.014595456421375275, 0.01791379414498806, 0.006917067337781191, 0.010372702032327652, 0.28987762331962585], [0.005584817845374346, 0.011361737735569477, 0.03375698998570442, 0.022484660148620605, 0.014892438426613808, 0.20088498294353485, 0.012206638231873512, 0.14985902607440948, 0.059445906430482864, 0.017818059772253036, 0.02098858542740345, 0.050345584750175476, 0.1487468183040619, 0.0220466498285532, 0.03818698227405548, 0.02453269623219967, 0.01817811280488968, 0.1486792415380478], [0.007707878481596708, 0.0022322600707411766, 0.006970589514821768, 0.0014555795351043344, 0.003916421439498663, 0.013076906092464924, 0.0043579149059951305, 0.3272406756877899, 0.017085634171962738, 0.026882866397500038, 0.014820915646851063, 0.018741514533758163, 0.2088312953710556, 0.005885469261556864, 0.007595313247293234, 0.0061784666031599045, 0.005790884140878916, 0.32122939825057983], [0.016117295250296593, 0.0023668340872973204, 0.0019996736664325, 0.003336711088195443, 0.003570755012333393, 0.00577695993706584, 0.00287752621807158, 0.4262455105781555, 0.014461327344179153, 0.006935810204595327, 0.04194106534123421, 0.0038329237140715122, 0.04270513355731964, 0.0012295389315113425, 0.0060296268202364445, 0.0006524227210320532, 0.004155816975980997, 0.41576504707336426], [0.009053463116288185, 0.008594822138547897, 0.029202952980995178, 0.0016099757049232721, 0.004352244082838297, 0.014853328466415405, 0.006029084790498018, 0.24843457341194153, 0.024430669844150543, 0.03279094025492668, 0.026037072762846947, 0.006297733169049025, 0.08102931827306747, 0.12996551394462585, 0.09524078667163849, 0.02885865606367588, 0.008454728871583939, 0.24476419389247894], [0.006670882925391197, 0.003633924527093768, 0.002019614214077592, 0.0010659267427399755, 0.0014089636970311403, 0.003492741845548153, 0.010123170912265778, 0.31271377205848694, 0.0031799122225493193, 0.006329339928925037, 0.002014902886003256, 0.004216383211314678, 0.10345956683158875, 0.06262592226266861, 0.03565540909767151, 0.10985711216926575, 0.024767838418483734, 0.3067646324634552], [0.01111713144928217, 0.01686342991888523, 0.0035973042249679565, 0.003851931309327483, 0.0041189659386873245, 0.008219714276492596, 0.009738394059240818, 0.2103174924850464, 0.008001334965229034, 0.05344225466251373, 0.012327049858868122, 0.009010088630020618, 0.3555586040019989, 0.044211383908987045, 0.018802152946591377, 0.012109351344406605, 0.01233674492686987, 0.20637671649456024], [0.007959901355206966, 0.004343620501458645, 0.003951844293624163, 0.0016829329542815685, 0.002566414652392268, 0.007125908508896828, 0.008194350637495518, 0.34881410002708435, 0.005942061077803373, 0.0067154704593122005, 0.0017966098384931684, 0.0028338944539427757, 0.11790728569030762, 0.04978134110569954, 0.05468103662133217, 0.018802618607878685, 0.016341879963874817, 0.3405587375164032], [0.00889111589640379, 0.004000481218099594, 0.005811948794871569, 0.011780109256505966, 0.0060135116800665855, 0.03476916626095772, 0.007610488682985306, 0.3837549686431885, 0.05251113325357437, 0.013499642722308636, 0.006806972436606884, 0.019055461511015892, 0.0079291807487607, 0.011564918793737888, 0.015471484512090683, 0.014758579432964325, 0.01907876878976822, 0.3766920864582062], [0.0008363601518794894, 0.0003803645959123969, 0.0023730408865958452, 0.001587206032127142, 0.0014159799320623279, 0.01013411208987236, 0.0017178335692733526, 0.4885159432888031, 0.0022699907422065735, 0.0005984851159155369, 0.0002851857279893011, 0.001910315710119903, 0.001440875232219696, 0.002599617699161172, 0.0009413525694981217, 0.002301733708009124, 0.0015039185527712107, 0.47918757796287537]], [[0.013284656219184399, 0.007227989844977856, 0.018252737820148468, 0.005501358304172754, 0.004776627290993929, 0.004455446265637875, 0.0056704324670135975, 0.085121288895607, 0.08606810122728348, 0.05529347062110901, 0.020597059279680252, 0.059300001710653305, 0.06061488389968872, 0.16288693249225616, 0.05342665687203407, 0.2097252607345581, 0.06358135491609573, 0.08421571552753448], [0.046710189431905746, 0.08360853046178818, 0.1115955263376236, 0.07336781173944473, 0.011135685257613659, 0.011815616860985756, 0.05735858529806137, 0.06396060436964035, 0.012440428137779236, 0.3130056858062744, 0.005607022438198328, 0.007335035130381584, 0.01197829656302929, 0.03569663316011429, 0.03177231550216675, 0.03729068860411644, 0.022235648706555367, 0.06308580935001373], [0.06795583665370941, 0.050702642649412155, 0.042903292924165726, 0.010407334193587303, 0.004641596227884293, 0.008430982939898968, 0.07089795172214508, 0.20598983764648438, 0.009024870581924915, 0.22657354176044464, 0.0011386750265955925, 0.00556200509890914, 0.004429718013852835, 0.022876756265759468, 0.006875480059534311, 0.03507707267999649, 0.024160034954547882, 0.2023524045944214], [0.04673292115330696, 0.05631914734840393, 0.024491453543305397, 0.04276900738477707, 0.004485772922635078, 0.00662468746304512, 0.08802355080842972, 0.2112189531326294, 0.00664145965129137, 0.20886775851249695, 0.004972499795258045, 0.014816489070653915, 0.007700077723711729, 0.004883452318608761, 0.01748781092464924, 0.005711548961699009, 0.03957280516624451, 0.20868059992790222], [0.014659097418189049, 0.014724908396601677, 0.0068899597972631454, 0.01489944290369749, 0.009097001515328884, 0.02422001212835312, 0.020773902535438538, 0.40835487842559814, 0.005427915137261152, 0.0025425441563129425, 0.0049171107821166515, 0.04153010994195938, 0.011705740354955196, 0.0009414437226951122, 0.004209692124277353, 0.0012718505458906293, 0.009546649642288685, 0.404287725687027], [0.0327603854238987, 0.04898732528090477, 0.023032816126942635, 0.05891319364309311, 0.053390081971883774, 0.02433890663087368, 0.04503088444471359, 0.2301274836063385, 0.026271384209394455, 0.020531529560685158, 0.010786082595586777, 0.122834712266922, 0.007813447155058384, 0.02022484503686428, 0.011441916227340698, 0.021974220871925354, 0.015522335655987263, 0.22601844370365143], [0.054831959307193756, 0.028447307646274567, 0.021422741934657097, 0.048755474388599396, 0.028732692822813988, 0.006798785645514727, 0.026943696662783623, 0.3001415431499481, 0.11101704090833664, 0.0086654182523489, 0.00839500967413187, 0.01129857636988163, 0.0038021367508918047, 0.005707922391593456, 0.014918633736670017, 0.0060424949042499065, 0.017635393887758255, 0.2964431345462799], [0.0032974518835544586, 0.0010405660141259432, 0.0020783315412700176, 0.00041495158802717924, 0.0004234906518831849, 0.0003473341348581016, 0.0007545904954895377, 0.4965965449810028, 0.0018546627834439278, 0.002420966047793627, 0.0009765815921127796, 0.001080984016880393, 0.0005645895143970847, 0.0009522530599497259, 0.000278051826171577, 0.0004894377198070288, 0.0015159405302256346, 0.4849132001399994], [0.026299849152565002, 0.008739209733903408, 0.0036980072036385536, 0.015982359647750854, 0.007572704926133156, 0.008572963066399097, 0.017778683453798294, 0.21962802112102509, 0.010267859324812889, 0.07852444052696228, 0.05739040672779083, 0.16024765372276306, 0.031594354659318924, 0.005096520762890577, 0.04427115246653557, 0.004696890711784363, 0.08221209794282913, 0.2174268215894699], [0.04352688789367676, 0.041024100035429, 0.004280082881450653, 0.01797121949493885, 0.0006533916457556188, 0.0003671578015200794, 0.012972965836524963, 0.03610752895474434, 0.010276975110173225, 0.667766273021698, 0.009216408245265484, 0.005166804417967796, 0.005188280716538429, 0.020217828452587128, 0.033837318420410156, 0.010958255268633366, 0.04497487470507622, 0.035493575036525726], [0.05195846036076546, 0.01608046144247055, 0.006163245998322964, 0.007462259382009506, 0.009333468042314053, 0.0031193485483527184, 0.008771272376179695, 0.18921475112438202, 0.18654903769493103, 0.06435122340917587, 0.0068754591047763824, 0.041081178933382034, 0.032521530985832214, 0.0270738136023283, 0.037455953657627106, 0.10085870325565338, 0.02360154688358307, 0.18752829730510712], [0.0890008807182312, 0.008809089660644531, 0.0016821197932586074, 0.010965812020003796, 0.007770802825689316, 0.02332625910639763, 0.030447615310549736, 0.21600556373596191, 0.1442694067955017, 0.013381609693169594, 0.021019605919718742, 0.058472082018852234, 0.02867106720805168, 0.0038220679853111506, 0.029000675305724144, 0.008898027241230011, 0.08854580670595169, 0.21591144800186157], [0.039989423006772995, 0.012573220767080784, 0.00943691749125719, 0.00973555352538824, 0.008830035105347633, 0.009814785793423653, 0.007274684961885214, 0.1474837064743042, 0.021552175283432007, 0.015892058610916138, 0.020455820485949516, 0.010703496634960175, 0.051368631422519684, 0.11615084856748581, 0.1671324074268341, 0.1866706907749176, 0.01921313814818859, 0.14572244882583618], [0.04782263934612274, 0.00904055405408144, 0.02888783998787403, 0.004680734593421221, 0.0017562914872542024, 0.02331177145242691, 0.008854557760059834, 0.15610207617282867, 0.008380315266549587, 0.1714010238647461, 0.004877375904470682, 0.006504338700324297, 0.035441480576992035, 0.10686328262090683, 0.029429346323013306, 0.1896696388721466, 0.012446518056094646, 0.15453019738197327], [0.01393205113708973, 0.006149200722575188, 0.00409643305465579, 0.0026545797009021044, 0.0026561119593679905, 0.0027667805552482605, 0.003818874480202794, 0.299826979637146, 0.02260787971317768, 0.011141540482640266, 0.011467074044048786, 0.014427685178816319, 0.13057459890842438, 0.05083857476711273, 0.011319625191390514, 0.10651520639657974, 0.01068729069083929, 0.2945196330547333], [0.04217859357595444, 0.02207983285188675, 0.02260054275393486, 0.005331137217581272, 0.0013133244356140494, 0.025668783113360405, 0.02095022052526474, 0.19637003540992737, 0.0155656598508358, 0.14647893607616425, 0.010123927146196365, 0.0063982461579144, 0.0419909693300724, 0.12186463922262192, 0.03188594803214073, 0.06661571562290192, 0.02883065491914749, 0.19375279545783997], [0.034994859248399734, 0.0091980816796422, 0.007155266124755144, 0.016039032489061356, 0.010613853111863136, 0.0017207561759278178, 0.010233215987682343, 0.271910160779953, 0.2039155513048172, 0.017694810405373573, 0.023219948634505272, 0.027991387993097305, 0.007805486209690571, 0.01326433103531599, 0.024876844137907028, 0.014032765291631222, 0.03768051415681839, 0.26765310764312744], [0.0033043462317436934, 0.0010553321335464716, 0.002089006593450904, 0.0004177714290563017, 0.000426497426815331, 0.00034813256934285164, 0.0007588896551169455, 0.4965958893299103, 0.0018605605000630021, 0.002411331282928586, 0.0009827297180891037, 0.0010807713260874152, 0.0005639070295728743, 0.0009534871787764132, 0.0002786644035950303, 0.0004854605649597943, 0.0015121137257665396, 0.4848751127719879]], [[0.0157695934176445, 0.02629631944000721, 0.007044770289212465, 0.004541644360870123, 0.002969098975881934, 0.0043016900308430195, 0.010153582319617271, 0.44006288051605225, 0.018427621573209763, 0.009432465769350529, 0.003433217527344823, 0.0006800668779760599, 0.0011761629721149802, 0.0018089136574417353, 0.0018929439829662442, 0.0030483948066830635, 0.010010190308094025, 0.43895047903060913], [0.023414401337504387, 0.027318626642227173, 0.22731630504131317, 0.012072243727743626, 0.0013409985695034266, 0.0034306880552321672, 0.005532498005777597, 0.3499128520488739, 0.0006450853543356061, 0.0004889157135039568, 0.0004909521667286754, 0.00027281895745545626, 0.00033211184199899435, 0.0005590905784629285, 0.0015032830415293574, 0.001216559554450214, 0.002395415212959051, 0.3417570888996124], [0.028635356575250626, 0.007158661726862192, 0.0059987688437104225, 0.0863676592707634, 0.003029851708561182, 0.0014843903481960297, 0.006054678000509739, 0.439287006855011, 0.00023352282005362213, 0.00024405041767749935, 0.0006241193041205406, 0.00021722257952205837, 0.0005191321251913905, 1.9007135051651858e-05, 0.0005879553500562906, 0.00047794575220905244, 0.0025031070690602064, 0.41655758023262024], [0.043184418231248856, 0.00834771990776062, 0.005665005650371313, 0.004861549474298954, 0.06606049835681915, 0.448731392621994, 0.04416749253869057, 0.1886502057313919, 0.0008486834121868014, 8.05333475000225e-05, 7.880822522565722e-05, 0.00011144445306854323, 0.0010110590374097228, 0.00073915661778301, 0.00016175386554095894, 0.001387298572808504, 0.005300472024828196, 0.18061253428459167], [0.038620322942733765, 0.009393262676894665, 0.0036605335772037506, 0.003956201486289501, 0.017014695331454277, 0.4300213158130646, 0.013566444627940655, 0.23694315552711487, 0.0002744118683040142, 5.5195345339598134e-05, 7.251535134855658e-05, 9.542986663291231e-05, 3.086958531639539e-05, 0.0003630660066846758, 6.76586787449196e-05, 0.00016402940673287958, 0.0015103173209354281, 0.24419064819812775], [0.01634250581264496, 0.003909350838512182, 0.008575769141316414, 0.006675802171230316, 0.0016608181176707149, 0.0027155415154993534, 0.14240774512290955, 0.40734291076660156, 0.00041081695235334337, 0.0008039134554564953, 0.0005582979647442698, 0.00013940001372247934, 1.9277587853139266e-05, 0.0002898804668802768, 0.0006875874823890626, 0.00011084823927376419, 0.0011306768283247948, 0.40621885657310486], [0.004172847606241703, 0.0028619251679629087, 0.0016587049467489123, 0.0007242193096317351, 0.0007840769249014556, 0.0005407280987128615, 0.011635479517281055, 0.503649115562439, 0.0015474274987354875, 0.0005147148622199893, 5.500806946656667e-05, 0.00014779821503907442, 2.3319487809203565e-05, 1.0387153452029452e-05, 9.26011853152886e-06, 0.00019186653662472963, 0.00033956568222492933, 0.47113358974456787], [0.004239741712808609, 0.008683063089847565, 0.008143840357661247, 0.0029230720829218626, 0.00179782893974334, 0.003399607492610812, 0.019028233364224434, 0.44622695446014404, 0.0040067750960588455, 0.0014952090568840504, 0.0018893660744652152, 0.0007545718108303845, 0.0023556086234748363, 0.005261128768324852, 0.01025745552033186, 0.011875900439918041, 0.02559625916182995, 0.44206538796424866], [0.012265289202332497, 0.002106976928189397, 0.002563965506851673, 0.00015292961325030774, 0.00022848538355901837, 0.0007469628471881151, 0.0014184187166392803, 0.37324199080467224, 0.05212600529193878, 0.17705152928829193, 0.003638278692960739, 0.0026900421362370253, 0.0011806631227955222, 0.001810855115763843, 5.473393321153708e-05, 0.0005044052959419787, 0.001340196467936039, 0.3668781816959381], [0.04869745671749115, 0.0014844521647319198, 0.0009666171972639859, 0.0006975571741349995, 0.00037595053436234593, 0.002489911625161767, 0.0014170199865475297, 0.18804064393043518, 0.02020624466240406, 0.017393821850419044, 0.36501505970954895, 0.01940138451755047, 0.14041577279567719, 0.0019558100029826164, 0.0031020271126180887, 0.001523455954156816, 0.0008917069062590599, 0.18592508137226105], [0.07998968660831451, 0.0003467097703833133, 0.00047271663788706064, 4.804510172107257e-05, 0.00011380807700334117, 0.0002205612836405635, 0.0004324855108279735, 0.1253684014081955, 0.00577172776684165, 0.005630229599773884, 0.014130158349871635, 0.07587260007858276, 0.5579158067703247, 0.0017640619771555066, 0.001031173625960946, 0.013250435702502728, 0.0006793267093598843, 0.11696206778287888], [0.05695215240120888, 0.003439569380134344, 0.0012334962375462055, 0.00020576217502821237, 0.0003818781697191298, 0.0003507636138238013, 0.00024683657102286816, 0.38625603914260864, 0.009943701326847076, 0.010995395481586456, 0.01356042642146349, 0.014568758197128773, 0.062406908720731735, 0.015218505635857582, 0.0014243952464312315, 0.04720116779208183, 0.002612919546663761, 0.3730013966560364], [0.012655393220484257, 0.002014972036704421, 0.0006186942337080836, 3.09613642457407e-05, 0.000179180788109079, 0.00017458846559748054, 0.00027372545446269214, 0.15057653188705444, 0.00039494544034823775, 0.001576080685481429, 0.0014652782119810581, 0.003217047546058893, 0.011256400495767593, 0.6427573561668396, 0.00336557743139565, 0.004059752449393272, 0.005623438861221075, 0.15976007282733917], [0.016087768599390984, 0.0019245659932494164, 0.0010082937078550458, 0.0008582069422118366, 7.782864122418687e-05, 2.703389873204287e-05, 0.0002610559167806059, 0.3275318145751953, 0.0008920026011765003, 0.0007621169206686318, 0.010978611186146736, 0.0032636767718940973, 0.00743905222043395, 0.002745131030678749, 0.2720590829849243, 0.014314343221485615, 0.011376602575182915, 0.32839271426200867], [0.0031630091834813356, 0.000366891676094383, 0.00017546625167597085, 4.483301381696947e-05, 2.2479907784145325e-05, 2.7674857392412378e-06, 6.417437816708116e-06, 0.04531732574105263, 2.9628121410496533e-05, 1.2853794942202512e-05, 6.333705096039921e-05, 0.0005970138590782881, 0.002658790210261941, 0.0016619657399132848, 0.0003622792137321085, 0.901421070098877, 0.0009687875863164663, 0.043125178664922714], [0.009287689812481403, 0.00031718157697468996, 0.0003770703624468297, 0.0005990590434521437, 0.0004633904609363526, 6.486393976956606e-05, 0.0006377789541147649, 0.37655365467071533, 0.0006052558310329914, 0.00039940676651895046, 0.00019301408610772341, 0.00020605836471077055, 0.0015160148032009602, 0.003702945075929165, 0.005001372192054987, 0.0024970839731395245, 0.22294284403324127, 0.37463533878326416], [0.005674484185874462, 0.00405089883133769, 0.0014514069771394134, 0.00027673839940689504, 0.0004193297936581075, 0.00041740332380868495, 0.00041815813165158033, 0.4738040864467621, 0.0017729686805978417, 0.0007484589004889131, 5.519692422240041e-05, 6.18872873019427e-05, 0.00018329489103052765, 0.0010139303049072623, 0.0004345809866208583, 0.005660653114318848, 0.021699625998735428, 0.48185694217681885], [0.004198017530143261, 0.008711486123502254, 0.008625805377960205, 0.002901906380429864, 0.001723785768263042, 0.0032997725065797567, 0.01956166699528694, 0.4456275999546051, 0.00382436765357852, 0.0014902751427143812, 0.0019420157186686993, 0.0007542064995504916, 0.002215675311163068, 0.005446304567158222, 0.010986859910190105, 0.01202418189495802, 0.025229889899492264, 0.4414362907409668]], [[0.002203426556661725, 0.06672593206167221, 0.4385266900062561, 0.1814957708120346, 0.0434844084084034, 0.22033406794071198, 0.0364554226398468, 0.0031639416702091694, 0.0001974978658836335, 0.000980576267465949, 9.07568319234997e-05, 0.000591598975006491, 0.0004696854157373309, 0.0007754597463645041, 0.00010620267858030275, 0.0007714396924711764, 0.0004740217700600624, 0.0031530619598925114], [0.1499362736940384, 0.11455092579126358, 0.03525315225124359, 0.02877526544034481, 0.029874147847294807, 0.011378724128007889, 0.10798078030347824, 0.24289293587207794, 0.004590412601828575, 0.00880175270140171, 0.003945975564420223, 0.0015898633282631636, 0.0046088495291769505, 0.0009554613498039544, 0.002423641737550497, 0.001471704221330583, 0.010426907800137997, 0.2405432015657425], [0.04851547256112099, 0.018044643104076385, 0.0024775657802820206, 0.0048618982546031475, 0.0029324728529900312, 0.000820597109850496, 0.031521592289209366, 0.4460924565792084, 0.00038150319596752524, 0.0008671648101881146, 0.00012552895350381732, 5.033419802202843e-05, 0.00032154127256944776, 0.0002524017181713134, 0.00037195184268057346, 0.00032126650330610573, 0.0027577842120081186, 0.4392838776111603], [0.16253310441970825, 0.17671294510364532, 0.04768095910549164, 0.03226573392748833, 0.016224846243858337, 0.01184953935444355, 0.18405066430568695, 0.1384296715259552, 0.008914759382605553, 0.011634395457804203, 0.033319100737571716, 0.003112168749794364, 0.007452166639268398, 0.0012673167511820793, 0.006105107720941305, 0.001583086559548974, 0.02022557519376278, 0.13663889467716217], [0.06041582301259041, 0.04204079136252403, 0.0031932515557855368, 0.004763190634548664, 0.01566406339406967, 0.004646776244044304, 0.02974291332066059, 0.41169828176498413, 0.004349640570580959, 0.0025660761166363955, 0.0008570513455197215, 0.00427594780921936, 0.0011736874002963305, 0.0005094124935567379, 0.0008039544336497784, 0.0010371237294748425, 0.004797094035893679, 0.4074649214744568], [0.05575447157025337, 0.07125259190797806, 0.019491657614707947, 0.006926634814590216, 0.0164397731423378, 0.0034684177953749895, 0.044381033629179, 0.38573533296585083, 0.0020946720615029335, 0.002195986919105053, 0.0009633529116399586, 0.0007043115328997374, 0.0006694638286717236, 0.0011421556118875742, 0.00044762424658983946, 0.0014069173485040665, 0.005851127207279205, 0.38107454776763916], [0.0730193704366684, 0.16535231471061707, 0.07896202057600021, 0.10541388392448425, 0.09156407415866852, 0.04808103293180466, 0.10069525986909866, 0.13935376703739166, 0.016433605924248695, 0.004678765777498484, 0.003265219274908304, 0.0028357836417853832, 0.0013914083829149604, 0.002262462629005313, 0.0035222461447119713, 0.0015369317261502147, 0.0224361140280962, 0.13919579982757568], [0.007129143923521042, 0.001326060388237238, 0.00028389840736053884, 0.0003745120484381914, 0.0013171652099117637, 0.000337653502356261, 0.0009419673588126898, 0.49067309498786926, 0.0006129568791948259, 0.000647050968836993, 0.000458618305856362, 0.0003683566174004227, 0.0011821031803265214, 0.0008398345671594143, 0.0017832661978900433, 0.0006829454214312136, 0.0012190352426841855, 0.4898224174976349], [0.047509968280792236, 0.031639158725738525, 0.028677335008978844, 0.01423579640686512, 0.05225571244955063, 0.022490208968520164, 0.04746553674340248, 0.25533968210220337, 0.07165541499853134, 0.028070634230971336, 0.010758535005152225, 0.06132811680436134, 0.013607710599899292, 0.00619640713557601, 0.010946355760097504, 0.0048905047588050365, 0.03905969113111496, 0.25387322902679443], [0.18573924899101257, 0.1414441615343094, 0.04111001268029213, 0.012548697181046009, 0.018179941922426224, 0.002155523281544447, 0.06994488835334778, 0.18717138469219208, 0.03685289993882179, 0.012288052588701248, 0.013624327257275581, 0.0020765040535479784, 0.01234132144600153, 0.004783939104527235, 0.013366120867431164, 0.010037272237241268, 0.05244726315140724, 0.18388843536376953], [0.031575676053762436, 0.02739034593105316, 0.017009785398840904, 0.06142883002758026, 0.0049319141544401646, 0.00419152295216918, 0.02715320885181427, 0.23642931878566742, 0.08435282856225967, 0.0332295224070549, 0.026383696123957634, 0.056685078889131546, 0.08990118652582169, 0.006316980812698603, 0.01233543362468481, 0.00866415910422802, 0.03897005692124367, 0.2330504059791565], [0.06472619622945786, 0.02118462324142456, 0.005841939244419336, 0.003083219053223729, 0.009349375031888485, 0.005146661773324013, 0.04024042189121246, 0.19557403028011322, 0.26101043820381165, 0.014109770767390728, 0.0321999154984951, 0.08158387243747711, 0.015953289344906807, 0.004336759448051453, 0.01485925167798996, 0.00526000838726759, 0.03424692153930664, 0.19129325449466705], [0.04243604093790054, 0.010129638016223907, 0.003790641902014613, 0.005172022618353367, 0.0016371557721868157, 0.0016081184148788452, 0.030522992834448814, 0.34397274255752563, 0.01032305508852005, 0.030258191749453545, 0.013879227451980114, 0.04509595036506653, 0.06751121580600739, 0.006131280679255724, 0.01384730264544487, 0.012320727109909058, 0.026167316362261772, 0.3351963460445404], [0.04412152245640755, 0.008274322375655174, 0.0028039407916367054, 0.0005385386175476015, 0.0022883450146764517, 0.0007043649675324559, 0.02451944351196289, 0.42231079936027527, 0.00731706665828824, 0.009204372763633728, 0.0031233227346092463, 0.0027739563956856728, 0.004634530749171972, 0.009612152352929115, 0.004487700294703245, 0.008425627835094929, 0.03013600781559944, 0.4147239625453949], [0.058009468019008636, 0.011899244971573353, 0.006722069811075926, 0.002604705048725009, 0.002899046055972576, 0.003330998122692108, 0.020736195147037506, 0.24822232127189636, 0.06490540504455566, 0.009277860634028912, 0.04932280257344246, 0.02557249180972576, 0.08648282289505005, 0.024160711094737053, 0.1051715761423111, 0.015253468416631222, 0.0227118618786335, 0.2427169233560562], [0.0497904047369957, 0.006081985309720039, 0.0014838851056993008, 0.0029991345945745707, 0.0009286265703849494, 0.0007639813702553511, 0.01713147759437561, 0.33014607429504395, 0.01522857416421175, 0.050400249660015106, 0.030214136466383934, 0.020977986976504326, 0.042393919080495834, 0.012265753000974655, 0.020138928666710854, 0.009851665236055851, 0.06463329493999481, 0.324569970369339], [0.05990118905901909, 0.01920318230986595, 0.008678398095071316, 0.010514970868825912, 0.010323802009224892, 0.006036693695932627, 0.027783626690506935, 0.10340506583452225, 0.31059530377388, 0.06020069122314453, 0.08076241612434387, 0.04486515372991562, 0.012578009627759457, 0.01002352125942707, 0.0213396567851305, 0.004728902131319046, 0.10671313107013702, 0.10234629362821579], [0.007132439874112606, 0.0013282217551022768, 0.000284794281469658, 0.00037730479380115867, 0.0013226208975538611, 0.0003394052910152823, 0.0009540937026031315, 0.4906928241252899, 0.0006087317597121, 0.0006450394866988063, 0.00045824062544852495, 0.0003713339101523161, 0.0011784507660195231, 0.0008381153456866741, 0.0017776961904019117, 0.0006814813241362572, 0.0012194953160360456, 0.48978978395462036]], [[0.007244938053190708, 0.024209927767515182, 0.004405792336910963, 0.0053467038087546825, 0.00418474804610014, 0.004175320267677307, 0.2312188744544983, 0.3071093261241913, 0.0028293097857385874, 0.0018904159078374505, 0.0009614824084565043, 0.0016075248131528497, 0.003344343975186348, 0.0011946953600272536, 0.013027699664235115, 0.002852628007531166, 0.08054951578378677, 0.30384665727615356], [0.060958486050367355, 0.13200615346431732, 0.006853333208709955, 0.008012470789253712, 0.001851218519732356, 0.0037431553937494755, 0.1994222104549408, 0.2843891978263855, 0.0024457313120365143, 0.001594071974977851, 7.91048732935451e-05, 0.00020738792954944074, 0.00014605477917939425, 9.28082808968611e-05, 0.0016319117275997996, 8.861327660270035e-05, 0.018928557634353638, 0.27754947543144226], [0.004283356945961714, 0.026532256975769997, 0.0015128122176975012, 0.00598599947988987, 0.002021399326622486, 0.0033085381146520376, 0.14428815245628357, 0.3945738971233368, 0.000890607014298439, 0.0005929935723543167, 0.00024411104095634073, 0.00024927465710788965, 0.00011670406820485368, 0.00021075992844998837, 0.0030741668306291103, 0.00025224886485375464, 0.023544998839497566, 0.38831767439842224], [0.13664713501930237, 0.02203996852040291, 0.001241409918293357, 0.028010377660393715, 0.003337324596941471, 0.0035256736446172, 0.10843118280172348, 0.3350714147090912, 0.001328645390458405, 0.003958230372518301, 0.0010674509685486555, 0.0006680673686787486, 0.0013463482027873397, 0.00025049789110198617, 0.0020224270410835743, 0.00023170052736531943, 0.021748250350356102, 0.329073965549469], [0.06333088874816895, 0.010391521267592907, 0.0022814616095274687, 0.015420214273035526, 0.021077727898955345, 0.00883272010833025, 0.20807811617851257, 0.3177618086338043, 0.0020021097734570503, 0.0023895755875855684, 0.0008760569617152214, 0.0012390619376674294, 0.0015518724685534835, 0.000551567180082202, 0.0021851323544979095, 0.0010817076545208693, 0.02913307584822178, 0.3118153512477875], [0.01803603209555149, 0.017840595915913582, 0.006577459163963795, 0.007965819910168648, 0.004415736999362707, 0.004474171437323093, 0.15382973849773407, 0.3672012686729431, 0.0012962034670636058, 0.0013848227681592107, 0.0005674589774571359, 0.0012097042053937912, 0.0012482883175835013, 0.0029615224339067936, 0.004225045908242464, 0.004786673001945019, 0.03703382983803749, 0.364945650100708], [0.07255030423402786, 0.02867729589343071, 0.008568994700908661, 0.010876134037971497, 0.00490372721105814, 0.010694080032408237, 0.1973649114370346, 0.29812198877334595, 0.008496064692735672, 0.0032626588363200426, 0.002354650991037488, 0.001775115728378296, 0.0020379885099828243, 0.0014078618260100484, 0.004361215513199568, 0.002290252363309264, 0.0475262813270092, 0.2947304844856262], [0.06710067391395569, 0.020432010293006897, 0.011401724070310593, 0.008363409899175167, 0.004059341736137867, 0.004897071048617363, 0.016073070466518402, 0.3982893228530884, 0.020592227578163147, 0.007998389191925526, 0.006573839113116264, 0.004872464574873447, 0.005754176527261734, 0.004291790537536144, 0.005294569302350283, 0.00445041386410594, 0.019422922283411026, 0.3901325464248657], [0.07262855768203735, 0.012507054954767227, 0.006373679265379906, 0.0017387204570695758, 0.0007541756494902074, 0.001059407601132989, 0.08048836141824722, 0.3745821416378021, 0.02480785734951496, 0.003144107526168227, 0.0016186516731977463, 0.0011833450989797711, 0.0009530069073662162, 0.000527150637935847, 0.002818639390170574, 0.0008057335508055985, 0.047790613025426865, 0.36621880531311035], [0.06753184646368027, 0.06220145896077156, 0.0031800945289433002, 0.0062868306413292885, 0.0005129282944835722, 0.0010330721270292997, 0.049070924520492554, 0.31157752871513367, 0.09144465625286102, 0.04079096019268036, 0.002983575686812401, 0.00553319975733757, 0.0013288578484207392, 0.000842440640553832, 0.00946551188826561, 0.00032272175303660333, 0.04038098827004433, 0.3055124580860138], [0.08016782253980637, 0.004825182259082794, 0.0011399653740227222, 0.003414190374314785, 0.0003800580743700266, 0.0006110760732553899, 0.03642194718122482, 0.3923160135746002, 0.040267955511808395, 0.006155021488666534, 0.0022313715890049934, 0.002168677980080247, 0.002034995937719941, 0.0004975196206942201, 0.010760994628071785, 0.0004854794533457607, 0.031164053827524185, 0.3849576711654663], [0.12829412519931793, 0.0016617155633866787, 0.00037267582956701517, 0.002270685276016593, 0.002546022878959775, 0.001191534916870296, 0.040822286158800125, 0.36031031608581543, 0.018180273473262787, 0.011383489705622196, 0.0027769736479967833, 0.0043859356082975864, 0.006665499415248632, 0.000881363928783685, 0.008818372152745724, 0.0017115832306444645, 0.052457887679338455, 0.35526928305625916], [0.09683002531528473, 0.007237708196043968, 0.0009576834854669869, 0.008112862706184387, 0.0015764209674671292, 0.0005587349296547472, 0.03140054643154144, 0.34358593821525574, 0.02456439845263958, 0.013659193180501461, 0.007203185465186834, 0.005403862800449133, 0.014178652316331863, 0.0018774939235299826, 0.040627479553222656, 0.00403830548748374, 0.058709125965833664, 0.33947837352752686], [0.022466719150543213, 0.0038489210419356823, 0.0006840115529485047, 0.001006406033411622, 0.0008322288049384952, 0.00043541716877371073, 0.055190104991197586, 0.38812902569770813, 0.007747527677565813, 0.0018926687771454453, 0.0007352126413024962, 0.0016117851482704282, 0.0008284255745820701, 0.001340394839644432, 0.029389701783657074, 0.0025018001906573772, 0.09635099023580551, 0.3850085139274597], [0.19707700610160828, 0.0041472720913589, 0.0006086649373173714, 0.003181845648214221, 0.0007363345939666033, 0.0003686634008772671, 0.036989904940128326, 0.23720408976078033, 0.016532069072127342, 0.012216661125421524, 0.00442617479711771, 0.009875334799289703, 0.0036280560307204723, 0.0016810866072773933, 0.12358931452035904, 0.0028464964125305414, 0.10993994027376175, 0.23495112359523773], [0.0523831732571125, 0.0016676605446264148, 0.0003061624593101442, 0.0011603268794715405, 0.000717030605301261, 0.00036804843693971634, 0.04830221086740494, 0.3287089765071869, 0.003216506913304329, 0.002716694725677371, 0.0005357938935048878, 0.002499246969819069, 0.0023334966972470284, 0.0015305780107155442, 0.012435974553227425, 0.005725139752030373, 0.20750759541988373, 0.32788538932800293], [0.07543500512838364, 0.005652903113514185, 0.0019112129230052233, 0.0020897637587040663, 0.001025223871693015, 0.002559832762926817, 0.06765742599964142, 0.26377204060554504, 0.024370532482862473, 0.008103551343083382, 0.006087286863476038, 0.004779611248522997, 0.006153743714094162, 0.005165905226022005, 0.018710704520344734, 0.006966068875044584, 0.23787154257297516, 0.26168766617774963], [0.06826996058225632, 0.020447373390197754, 0.011460437439382076, 0.008358090184628963, 0.0040671019814908504, 0.004934827331453562, 0.016078239306807518, 0.3976481258869171, 0.020546937361359596, 0.007995812222361565, 0.006564078852534294, 0.004868591204285622, 0.00578113179653883, 0.004315556492656469, 0.005293304566293955, 0.0044697909615933895, 0.019407371059060097, 0.38949334621429443]], [[0.020141510292887688, 0.006565316580235958, 0.004207630641758442, 0.002126897918060422, 0.003274453803896904, 0.0026621920987963676, 0.007464031223207712, 0.31695839762687683, 0.09821376204490662, 0.03765493631362915, 0.028368327766656876, 0.036863457411527634, 0.02210068888962269, 0.024379009380936623, 0.014807223342359066, 0.028924470767378807, 0.03460773453116417, 0.31068000197410583], [0.025371618568897247, 0.09177588671445847, 0.05258125066757202, 0.09308483451604843, 0.04820286110043526, 0.024668799713253975, 0.21716324985027313, 0.17693442106246948, 0.013776428066194057, 0.022533388808369637, 0.001265927916392684, 0.00448725325986743, 0.00718033267185092, 0.007054505404084921, 0.008873782120645046, 0.0043689049780368805, 0.0261157788336277, 0.1745607703924179], [0.03572499006986618, 0.05165848508477211, 0.0029108088929206133, 0.008675258606672287, 0.015718471258878708, 0.06690772622823715, 0.12491336464881897, 0.33057132363319397, 0.004339014645665884, 0.0032792463898658752, 0.00038063095416873693, 0.0026977804955095053, 0.0031447832006961107, 0.005318835377693176, 0.0018429418560117483, 0.003942933864891529, 0.012692214921116829, 0.32528120279312134], [0.04176698625087738, 0.044883813709020615, 0.01571602001786232, 0.03222804516553879, 0.03920526057481766, 0.18301238119602203, 0.47236865758895874, 0.06427089124917984, 0.005031660199165344, 0.006284340750426054, 0.004071846604347229, 0.0013703163713216782, 0.0030688552651554346, 0.0044349669478833675, 0.0037376058753579855, 0.0035030883736908436, 0.011679047718644142, 0.06336619704961777], [0.02286192774772644, 0.04282812401652336, 0.015040706843137741, 0.019236823543906212, 0.07604530453681946, 0.16130472719669342, 0.14934960007667542, 0.24525736272335052, 0.008641641587018967, 0.0038338371086865664, 0.000722339900676161, 0.00556337321177125, 0.000558264902792871, 0.00030140698072500527, 0.0005007225554436445, 0.0006281818496063352, 0.005004263482987881, 0.2423214465379715], [0.032990820705890656, 0.031429048627614975, 0.10449822247028351, 0.0132970055565238, 0.10201237350702286, 0.006762251257896423, 0.14207777380943298, 0.2635473906993866, 0.0022240872494876385, 0.0014533697394654155, 0.0021020928397774696, 0.004615461453795433, 0.008457505144178867, 0.00837631244212389, 0.0018702098168432713, 0.01104077510535717, 0.0031756777316331863, 0.26006972789764404], [0.02126018889248371, 0.023271098732948303, 0.019215857610106468, 0.008188173174858093, 0.022374015301465988, 0.008936412632465363, 0.04776572436094284, 0.39921921491622925, 0.004903240595012903, 0.004226452670991421, 0.0046014245599508286, 0.00851240660995245, 0.00769056985154748, 0.0065331291407346725, 0.00350148044526577, 0.008838360197842121, 0.005472950171679258, 0.39548927545547485], [0.0034131810534745455, 0.0047414470463991165, 0.007066689431667328, 0.0011095516383647919, 0.005345670506358147, 0.002908592112362385, 0.0051202354952692986, 0.4675405025482178, 0.004717353265732527, 0.003647690871730447, 0.0007515105535276234, 0.0037448368966579437, 0.001769709400832653, 0.0034505126532167196, 0.0019213733030483127, 0.012092421762645245, 0.00932392943650484, 0.46133479475975037], [0.034139636904001236, 0.003579389536753297, 0.002981185680255294, 0.0013126339763402939, 0.004044013097882271, 0.0008440596866421402, 0.015337315388023853, 0.1866409182548523, 0.051048025488853455, 0.07675610482692719, 0.08904615044593811, 0.06590723246335983, 0.03588072210550308, 0.011990522965788841, 0.02911129780113697, 0.014247621409595013, 0.19393259286880493, 0.18320056796073914], [0.01200922206044197, 0.007315611932426691, 0.002290295669808984, 0.00022065294615458697, 0.0005864644190296531, 0.0003481410094536841, 0.005352117586880922, 0.07352093607187271, 0.04937814921140671, 0.017155392095446587, 0.10945514589548111, 0.04247373715043068, 0.14243987202644348, 0.14120957255363464, 0.10630348324775696, 0.09059969335794449, 0.12698805332183838, 0.07235342264175415], [0.04170354828238487, 0.0021694814786314964, 0.0001864584774011746, 0.003791545983403921, 0.0005967507604509592, 0.004289273172616959, 0.0037424659822136164, 0.12452544271945953, 0.08826963603496552, 0.015545960515737534, 0.04474636912345886, 0.0648350939154625, 0.05826639384031296, 0.009226689115166664, 0.2114858478307724, 0.008747175335884094, 0.1944916546344757, 0.12338028103113174], [0.026665525510907173, 0.003968629986047745, 0.0015740118687972426, 0.0023654329124838114, 0.002583914902061224, 0.0034999046474695206, 0.009303069673478603, 0.14439719915390015, 0.011911275796592236, 0.020346565172076225, 0.045237064361572266, 0.026573676615953445, 0.03149270638823509, 0.00615291902795434, 0.05674324929714203, 0.010638552717864513, 0.45341336727142334, 0.14313296973705292], [0.06311667710542679, 0.0017305677756667137, 0.0016944798408076167, 0.004366558976471424, 0.0003068452642764896, 0.0028732172213494778, 0.0021093240939080715, 0.09476214647293091, 0.009887542575597763, 0.009683914482593536, 0.010128878988325596, 0.014105388894677162, 0.013371778652071953, 0.014900739304721355, 0.47117525339126587, 0.04375205561518669, 0.1477712094783783, 0.09426335990428925], [0.03007378801703453, 0.0025666221044957638, 0.009909206070005894, 0.0006925056804902852, 0.00047518612700514495, 0.005416426341980696, 0.0024724320974200964, 0.2180163860321045, 0.005040721967816353, 0.006376037374138832, 0.003909578081220388, 0.01622779294848442, 0.04837613180279732, 0.0021826066076755524, 0.10169214010238647, 0.023851264268159866, 0.3071678876876831, 0.21555334329605103], [0.04479151591658592, 0.003817690769210458, 0.001428892370313406, 0.0030994494445621967, 0.0026991888880729675, 0.002947963774204254, 0.004655490163713694, 0.1925891488790512, 0.01322907954454422, 0.012164182029664516, 0.008762960322201252, 0.02495095506310463, 0.01681419648230076, 0.01832973025739193, 0.08157441020011902, 0.03457252308726311, 0.34358924627304077, 0.1899832934141159], [0.022832036018371582, 0.00187500414904207, 0.0057416800409555435, 0.0008530499180778861, 0.0007688312325626612, 0.0029075259808450937, 0.0042299916967749596, 0.2941924035549164, 0.017865777015686035, 0.00414644181728363, 0.0020214177202433348, 0.0048175775445997715, 0.039320092648267746, 0.008785085752606392, 0.13958673179149628, 0.007571267895400524, 0.15246453881263733, 0.29002055525779724], [0.012914114631712437, 0.0017943507991731167, 0.0018045235192403197, 0.0010831820545718074, 0.0024361812975257635, 0.0009164638468064368, 0.006027135066688061, 0.35107436776161194, 0.04032545164227486, 0.01603207364678383, 0.008637531660497189, 0.008739348500967026, 0.011677093803882599, 0.026822632178664207, 0.016786087304353714, 0.08271589875221252, 0.06744562834501266, 0.34276795387268066], [0.003395186271518469, 0.004748899023979902, 0.0071097067557275295, 0.0011134351370856166, 0.005413369741290808, 0.0029241146985441446, 0.005112327169626951, 0.46775397658348083, 0.004621786065399647, 0.003560711396858096, 0.0007300759316422045, 0.003674483159556985, 0.0017301113111898303, 0.0034168714191764593, 0.0018941605230793357, 0.012045581825077534, 0.00924371462315321, 0.4615115523338318]], [[0.005907149985432625, 0.00998100358992815, 0.008991045877337456, 0.0013616308569908142, 0.0028967619873583317, 0.0015482140006497502, 0.007891824468970299, 0.26571032404899597, 0.013509665615856647, 0.06907281279563904, 0.05297338217496872, 0.014679166488349438, 0.05626147612929344, 0.05033043399453163, 0.042042847722768784, 0.06240195408463478, 0.07357902824878693, 0.2608613073825836], [0.009729049168527126, 0.021692069247364998, 0.5888610482215881, 0.02303321473300457, 0.01305537298321724, 0.013076758943498135, 0.041023921221494675, 0.1156020313501358, 0.0010230415500700474, 0.012338025495409966, 0.00383241125382483, 0.005280552431941032, 0.006488656159490347, 0.002319471212103963, 0.006686103530228138, 0.008493498899042606, 0.013785638846457005, 0.11367909610271454], [0.0031496556475758553, 0.009324857965111732, 0.03876443952322006, 0.005001407116651535, 0.008807268925011158, 0.005087022669613361, 0.01291347574442625, 0.4570605754852295, 0.00047002313658595085, 0.0013595225755125284, 0.0010146813001483679, 0.0005565679166465998, 0.0013475817395374179, 0.0007502908119931817, 0.001661317190155387, 0.004043942783027887, 0.003373349318280816, 0.4453140199184418], [0.017646273598074913, 0.10965266823768616, 0.26903390884399414, 0.014843774959445, 0.009996161796152592, 0.11843312531709671, 0.04387347772717476, 0.13498534262180328, 0.009582585655152798, 0.04772726446390152, 0.0028014504350721836, 0.002414959715679288, 0.010374379344284534, 0.032102711498737335, 0.005058723036199808, 0.030662477016448975, 0.008140414021909237, 0.13267022371292114], [0.014795072376728058, 0.018252843990921974, 0.03532279282808304, 0.02829003892838955, 0.02180507592856884, 0.05143715441226959, 0.03553308919072151, 0.36556729674339294, 0.0025972474832087755, 0.005873288027942181, 0.002094919327646494, 0.00473110331222415, 0.01935897022485733, 0.010419444181025028, 0.003481553867459297, 0.014393042773008347, 0.005895985756069422, 0.3601510226726532], [0.02256283536553383, 0.0618680864572525, 0.1069200336933136, 0.05870482698082924, 0.10253174602985382, 0.00831032544374466, 0.030924707651138306, 0.2650090754032135, 0.004909209907054901, 0.020271342247724533, 0.007574395276606083, 0.0030195864383131266, 0.022174933925271034, 0.003321415511891246, 0.006352327764034271, 0.01051604188978672, 0.006772973109036684, 0.258256196975708], [0.018133442848920822, 0.0737743228673935, 0.051535047590732574, 0.03906116262078285, 0.02581619657576084, 0.03257466107606888, 0.03565209358930588, 0.2806246280670166, 0.021604301407933235, 0.02484174259006977, 0.016756922006607056, 0.024444788694381714, 0.021121857687830925, 0.011892426759004593, 0.015019065700471401, 0.019219422712922096, 0.01122327707707882, 0.2767045199871063], [0.0019067939138039947, 0.0024070078507065773, 0.007254293188452721, 0.0026939876843243837, 0.0013598272344097495, 0.0024740085937082767, 0.0033445190638303757, 0.4643879234790802, 0.0016362355090677738, 0.0024735780898481607, 0.004645160865038633, 0.002338931430131197, 0.00609026150777936, 0.01178396213799715, 0.003956760745495558, 0.02165490761399269, 0.00516405189409852, 0.4544277489185333], [0.005493118893355131, 0.008504404686391354, 0.010530941188335419, 0.02012590877711773, 0.009383227676153183, 0.006955153774470091, 0.004285901319235563, 0.22740109264850616, 0.027987414970993996, 0.04069986566901207, 0.22448322176933289, 0.07017853856086731, 0.06025339663028717, 0.007918613031506538, 0.02092825248837471, 0.022248825058341026, 0.00944769848138094, 0.22317443788051605], [0.005750542506575584, 0.01598355919122696, 0.7010908722877502, 0.0007085585966706276, 0.000353155133780092, 0.009864225052297115, 0.010778438299894333, 0.040777452290058136, 0.0060541038401424885, 0.10381685942411423, 0.0036319722421467304, 0.0023072364274412394, 0.004554798826575279, 0.017540423199534416, 0.0029919855296611786, 0.02138475514948368, 0.012702840380370617, 0.03970814496278763], [0.010637310333549976, 0.007185822352766991, 0.002746300073340535, 0.001458709710277617, 0.0014047451550140977, 0.0032445259857922792, 0.007086767349392176, 0.15535520017147064, 0.004649404436349869, 0.013811490498483181, 0.0035920068621635437, 0.014509936794638634, 0.41200143098831177, 0.020543456077575684, 0.01020672544836998, 0.16524247825145721, 0.014278393238782883, 0.152045339345932], [0.01245045941323042, 0.010638720355927944, 0.006160269025713205, 0.004447157494723797, 0.011670194566249847, 0.004313299898058176, 0.007393580861389637, 0.21559453010559082, 0.005469965282827616, 0.01505280751734972, 0.02965761534869671, 0.009742528200149536, 0.10272278636693954, 0.059713467955589294, 0.027763064950704575, 0.24893559515476227, 0.016268938779830933, 0.21200501918792725], [0.11776246130466461, 0.02526560053229332, 0.009783141314983368, 0.0024342115502804518, 0.0011497261002659798, 0.008603823371231556, 0.051161494106054306, 0.11877205967903137, 0.014821021817624569, 0.014748787507414818, 0.007952757179737091, 0.0054958174005150795, 0.009077288210391998, 0.25391969084739685, 0.07987137883901596, 0.06055474281311035, 0.10193227231502533, 0.11669377237558365], [0.0067725833505392075, 0.003461252199485898, 0.011317862197756767, 0.001045660232193768, 0.0006894575199112296, 0.00034240493550896645, 0.005217781290411949, 0.40158161520957947, 0.0008068974129855633, 0.003602755954489112, 0.0007752004894427955, 0.00032797991298139095, 0.01567116752266884, 0.015080279670655727, 0.010240178555250168, 0.1164453774690628, 0.013893409632146358, 0.39272817969322205], [0.0073055243119597435, 0.0036758228670805693, 0.008338946849107742, 0.0009274752228520811, 0.0018520117737352848, 0.0021689103450626135, 0.0055369115434587, 0.1220623105764389, 0.002686082851141691, 0.007770322263240814, 0.002531560603529215, 0.0042187063954770565, 0.09051483869552612, 0.09235949069261551, 0.018151886761188507, 0.4927971661090851, 0.01663796789944172, 0.120464026927948], [0.0354108102619648, 0.014757677912712097, 0.056680381298065186, 0.002862538443878293, 0.0006819570553489029, 0.0016362012829631567, 0.014693628996610641, 0.2872825562953949, 0.0027866919990628958, 0.025356434285640717, 0.004346715286374092, 0.0009957851143553853, 0.0018857319373637438, 0.14692862331867218, 0.03770308569073677, 0.04776805639266968, 0.03451206162571907, 0.2837110757827759], [0.013927056454122066, 0.021763939410448074, 0.013860363513231277, 0.008383020758628845, 0.005323117598891258, 0.00708086509257555, 0.01081193145364523, 0.21264903247356415, 0.0691007524728775, 0.07230902463197708, 0.045368265360593796, 0.04167085140943527, 0.07515963912010193, 0.047842249274253845, 0.04183681309223175, 0.07179680466651917, 0.032053060829639435, 0.20906326174736023], [0.0019133841851726174, 0.002422854769974947, 0.007215257268399, 0.0027064792811870575, 0.0013572538737207651, 0.0024694493040442467, 0.003365193260833621, 0.46454131603240967, 0.0016242280835285783, 0.002451953710988164, 0.004590810742229223, 0.002309846691787243, 0.006097760517150164, 0.011676007881760597, 0.003919933456927538, 0.02162957563996315, 0.005140390712767839, 0.4545683264732361]], [[0.023929104208946228, 0.005574812181293964, 0.006079287733882666, 0.03116774559020996, 0.009885412640869617, 0.04010802134871483, 0.014603639952838421, 0.15932337939739227, 0.10216107219457626, 0.04099278524518013, 0.23679928481578827, 0.04176020249724388, 0.018968401476740837, 0.003943003248423338, 0.0035463992971926928, 0.0028137429617345333, 0.1029004380106926, 0.15544331073760986], [0.01861504837870598, 0.029260100796818733, 0.059565428644418716, 0.1837323158979416, 0.026589179411530495, 0.3219969868659973, 0.1293502002954483, 0.017841340973973274, 0.017761053517460823, 0.013959445990622044, 0.046579957008361816, 0.017473887652158737, 0.016712622717022896, 0.006136730313301086, 0.0022173379547894, 0.005742447450757027, 0.06894559413194656, 0.017520392313599586], [0.036280449479818344, 0.06792660802602768, 0.22320687770843506, 0.15526987612247467, 0.043522387742996216, 0.08230850100517273, 0.130107119679451, 0.026386167854070663, 0.028862906619906425, 0.020655430853366852, 0.023864051327109337, 0.007931037805974483, 0.013690046966075897, 0.022340994328260422, 0.01339407917112112, 0.015692340210080147, 0.06274120509624481, 0.025819862261414528], [0.06874656677246094, 0.07422599196434021, 0.04092711955308914, 0.17071488499641418, 0.017355110496282578, 0.17766672372817993, 0.14659486711025238, 0.054015181958675385, 0.04064846411347389, 0.018986700102686882, 0.023891231045126915, 0.009710404090583324, 0.017535267397761345, 0.0013201633701100945, 0.00240167323499918, 0.0017311739502474666, 0.08024248480796814, 0.05328598618507385], [0.06727346777915955, 0.014405517838895321, 0.01536508183926344, 0.08282887935638428, 0.005333570763468742, 0.08472380042076111, 0.06736737489700317, 0.2750081419944763, 0.02084076963365078, 0.004736579954624176, 0.02010718360543251, 0.017628328874707222, 0.006231005769222975, 0.00043677203939296305, 0.0020267204381525517, 0.0006065754569135606, 0.045006051659584045, 0.27007415890693665], [0.07877794653177261, 0.03021324798464775, 0.026895742863416672, 0.2550457715988159, 0.04245547577738762, 0.07965133339166641, 0.14178597927093506, 0.09627051651477814, 0.040308550000190735, 0.004122202750295401, 0.02762686461210251, 0.0054067932069301605, 0.005758601240813732, 0.003525222884491086, 0.008134299889206886, 0.0025386724155396223, 0.05726998299360275, 0.09421279281377792], [0.030644025653600693, 0.054892756044864655, 0.01080395933240652, 0.21909171342849731, 0.06595313549041748, 0.06271582096815109, 0.06225820258259773, 0.15384747087955475, 0.04676837846636772, 0.009743992239236832, 0.04330011084675789, 0.011978561989963055, 0.0042522200383245945, 0.0012610682751983404, 0.0023272321559488773, 0.0007216290105134249, 0.06839742511510849, 0.15104228258132935], [0.0007713225786574185, 0.0007338574505411088, 0.0009129350655712187, 0.00035363464849069715, 0.0004095361800864339, 0.00011931703920708969, 0.00042453562491573393, 0.5021253824234009, 0.0006139689940027893, 0.0003585021768230945, 0.0003878324059769511, 0.0005110232159495354, 0.00034517431049607694, 0.0001987598225241527, 0.0004347130306996405, 0.00021045921312179416, 0.0005918697570450604, 0.4904971420764923], [0.02563907951116562, 0.009976995177567005, 0.008234388194978237, 0.1377711445093155, 0.03520228713750839, 0.1033235490322113, 0.12908978760242462, 0.13836243748664856, 0.014415400102734566, 0.006750768516212702, 0.07182610034942627, 0.030743490904569626, 0.009394648484885693, 0.0008712569833733141, 0.0033702608197927475, 0.001211870345287025, 0.13856609165668488, 0.13525046408176422], [0.01583108864724636, 0.03373080864548683, 0.0927928164601326, 0.10659156739711761, 0.04722478240728378, 0.06854202598333359, 0.10906989127397537, 0.009425587020814419, 0.08969058096408844, 0.04192640259861946, 0.08554688841104507, 0.034246817231178284, 0.11946669220924377, 0.013123736716806889, 0.008691119030117989, 0.023459091782569885, 0.09141787886619568, 0.009222300723195076], [0.04306735098361969, 0.017329126596450806, 0.00911541748791933, 0.06540731340646744, 0.013034176081418991, 0.10959096997976303, 0.05086269602179527, 0.06082818657159805, 0.21154922246932983, 0.09233441948890686, 0.12282950431108475, 0.03091893531382084, 0.016964897513389587, 0.0003026722406502813, 0.007553212344646454, 0.00023822196817491204, 0.08818651735782623, 0.05988714098930359], [0.025939809158444405, 0.003888464765623212, 0.012787500396370888, 0.032721105962991714, 0.0045832740142941475, 0.07685735821723938, 0.01666761003434658, 0.21784165501594543, 0.25849100947380066, 0.00551107432693243, 0.05947316065430641, 0.00696472218260169, 0.015939101576805115, 0.00027524831239134073, 0.0031001765746623278, 0.0003250647569075227, 0.044139329344034195, 0.2144944816827774], [0.03028751164674759, 0.02293332666158676, 0.027447020635008812, 0.018862342461943626, 0.04023170843720436, 0.04260096698999405, 0.025353997945785522, 0.10830459743738174, 0.09273838996887207, 0.08844339102506638, 0.052929461002349854, 0.13676899671554565, 0.12514401972293854, 0.003486224915832281, 0.03066549450159073, 0.0028344355523586273, 0.044121287763118744, 0.10684673488140106], [0.1339784562587738, 0.011300736106932163, 0.008617333136498928, 0.02654220350086689, 0.02178250439465046, 0.029832804575562477, 0.04779254272580147, 0.11363888531923294, 0.04916718602180481, 0.027559684589505196, 0.033997952938079834, 0.03066246025264263, 0.19994965195655823, 0.02732275053858757, 0.05054302141070366, 0.013901778496801853, 0.06191456690430641, 0.1114954948425293], [0.03259282931685448, 0.015643108636140823, 0.013202974572777748, 0.056499820202589035, 0.01971968077123165, 0.09064007550477982, 0.04331926256418228, 0.10539422929286957, 0.06808876246213913, 0.04102012515068054, 0.08926734328269958, 0.11597415059804916, 0.12380451709032059, 0.004591961856931448, 0.01157948188483715, 0.004012157674878836, 0.0609784796833992, 0.10367100685834885], [0.07522633671760559, 0.022100966423749924, 0.01197951938956976, 0.04137016087770462, 0.031161483377218246, 0.03393331170082092, 0.0498877577483654, 0.14751765131950378, 0.02742411382496357, 0.024691924452781677, 0.035686105489730835, 0.031290192157030106, 0.1955835521221161, 0.014661186374723911, 0.05540918931365013, 0.004772119224071503, 0.052515432238578796, 0.14478899538516998], [0.027347221970558167, 0.05383768677711487, 0.009148738346993923, 0.17304958403110504, 0.0636356770992279, 0.04727370664477348, 0.05161852017045021, 0.12436186522245407, 0.08536282926797867, 0.016117116436362267, 0.07610929757356644, 0.023591376841068268, 0.00921639334410429, 0.0014859052607789636, 0.0031620082445442677, 0.0010226257145404816, 0.11169832199811935, 0.12196105718612671], [0.0007738046115264297, 0.0007352015818469226, 0.0009124922216869891, 0.0003543598868418485, 0.00041154262726195157, 0.00011949414329137653, 0.00042912320350296795, 0.5021130442619324, 0.0006129780085757375, 0.00035738907172344625, 0.000386492203688249, 0.0005117555847391486, 0.00034746932215057313, 0.00019759140559472144, 0.0004348427173681557, 0.0002105892781401053, 0.0005929534672759473, 0.4904989004135132]], [[0.006878724787384272, 0.026999149471521378, 0.009585677646100521, 0.013490633107721806, 0.030200019478797913, 0.02145296335220337, 0.10425040125846863, 0.21331821382045746, 0.01904897578060627, 0.02000477723777294, 0.01213878020644188, 0.023896709084510803, 0.019027909263968468, 0.02111613191664219, 0.005674741230905056, 0.016414040699601173, 0.224401593208313, 0.2121005803346634], [0.07299105823040009, 0.06486918032169342, 0.03521587699651718, 0.03831959143280983, 0.022743461653590202, 0.006452356930822134, 0.12377119809389114, 0.13665874302387238, 0.061504025012254715, 0.037690285593271255, 0.023552794009447098, 0.025345081463456154, 0.03598649427294731, 0.020828235894441605, 0.022379092872142792, 0.020084848627448082, 0.11606606841087341, 0.1355416178703308], [0.1282862424850464, 0.02995789609849453, 0.04647700488567352, 0.008113696239888668, 0.001349233789369464, 0.019955959171056747, 0.0671253576874733, 0.26752081513404846, 0.006941555999219418, 0.02219969965517521, 0.005633849184960127, 0.004211569670587778, 0.013881880789995193, 0.03521718084812164, 0.005109495483338833, 0.020810890942811966, 0.05493339151144028, 0.2622743248939514], [0.028139948844909668, 0.03759507089853287, 0.00957005936652422, 0.02608197182416916, 0.009737850166857243, 0.0179709754884243, 0.13338279724121094, 0.20372986793518066, 0.036578647792339325, 0.040291521698236465, 0.06501901894807816, 0.01635025069117546, 0.04032127186655998, 0.007316004019230604, 0.027048222720623016, 0.011552434414625168, 0.09004366397857666, 0.19927041232585907], [0.01605028286576271, 0.017629029229283333, 0.005071824416518211, 0.02154316008090973, 0.0007997513166628778, 0.01656569354236126, 0.05959472805261612, 0.3456140160560608, 0.028454413637518883, 0.012779691256582737, 0.01751059852540493, 0.01795830950140953, 0.018072819337248802, 0.0019014535937458277, 0.014573026448488235, 0.004879575222730637, 0.0632525160908699, 0.33774909377098083], [0.02116170898079872, 0.024446694180369377, 0.024733826518058777, 0.041584573686122894, 0.010942154563963413, 0.007800463121384382, 0.05368797481060028, 0.24869391322135925, 0.00961764995008707, 0.008699950762093067, 0.046817511320114136, 0.021167879924178123, 0.1310552954673767, 0.02225840464234352, 0.007786093279719353, 0.023734521120786667, 0.05213404819369316, 0.24367722868919373], [0.011378748342394829, 0.03530550003051758, 0.010206175968050957, 0.02973896637558937, 0.01361855212599039, 0.020060574635863304, 0.18925468623638153, 0.22235986590385437, 0.030837878584861755, 0.007314636837691069, 0.005025214981287718, 0.015537056140601635, 0.00506926141679287, 0.0027035358361899853, 0.0034148201812058687, 0.003684834809973836, 0.1749967634677887, 0.2194928675889969], [0.0045479172840714455, 0.0008620181470178068, 0.0010397828882560134, 0.0017421027878299356, 0.0015476307598873973, 0.0008731813868507743, 0.010938096791505814, 0.4839063882827759, 0.0021055766846984625, 0.00031822986784391105, 0.0004988462314940989, 0.001821866724640131, 0.0005227220244705677, 0.0005428817821666598, 0.0012501974124461412, 0.0004998519434593618, 0.012719674035906792, 0.47426310181617737], [0.011075270362198353, 0.022011881694197655, 0.02005341835319996, 0.028808141127228737, 0.005288480781018734, 0.025278739631175995, 0.06754565238952637, 0.3217301070690155, 0.005747434217482805, 0.015818046405911446, 0.015933988615870476, 0.011675376445055008, 0.009718621149659157, 0.00805689301341772, 0.00744788208976388, 0.0067467945627868176, 0.10150220990180969, 0.3155611455440521], [0.12283845990896225, 0.03395971283316612, 0.07465019822120667, 0.031526971608400345, 0.010828310623764992, 0.006370220333337784, 0.08878742903470993, 0.17144407331943512, 0.03343994542956352, 0.00858550425618887, 0.020062463358044624, 0.01330328918993473, 0.045730553567409515, 0.02804098092019558, 0.020044077187776566, 0.015798885375261307, 0.1047930121421814, 0.1697959154844284], [0.015693817287683487, 0.02230065129697323, 0.01014333963394165, 0.033437345176935196, 0.010472382418811321, 0.052718888968229294, 0.06429550796747208, 0.3355485200881958, 0.007989543490111828, 0.015487723983824253, 0.002116457326337695, 0.01014786772429943, 0.015541269443929195, 0.0033039466943591833, 0.00784289836883545, 0.0026136506348848343, 0.0614263191819191, 0.3289198875427246], [0.017189133912324905, 0.018185686320066452, 0.009044802747666836, 0.0372760146856308, 0.02968277409672737, 0.04832229018211365, 0.034379564225673676, 0.3238956332206726, 0.013590581715106964, 0.002934448653832078, 0.028449539095163345, 0.006979215424507856, 0.04921586066484451, 0.004869156051427126, 0.010130451060831547, 0.0059088896960020065, 0.04330558329820633, 0.31664034724235535], [0.03515470027923584, 0.012679834850132465, 0.004741883836686611, 0.018560385331511497, 0.008552244864404202, 0.09447944164276123, 0.01938215270638466, 0.32700127363204956, 0.012990760616958141, 0.030013374984264374, 0.012916946783661842, 0.029718974605202675, 0.0031225658021867275, 0.01268808078020811, 0.023766152560710907, 0.017461493611335754, 0.01584644988179207, 0.3209232985973358], [0.07601515203714371, 0.00803692452609539, 0.05469117313623428, 0.010522366501390934, 0.001917841611430049, 0.03606509044766426, 0.019736692309379578, 0.35914313793182373, 0.0034069449175149202, 0.0053794714622199535, 0.0011755432933568954, 0.005396371707320213, 0.0170926321297884, 0.0061318217776715755, 0.005335015244781971, 0.006658115889877081, 0.0308228749781847, 0.35247287154197693], [0.025526126846671104, 0.011528179980814457, 0.01172284223139286, 0.03683984652161598, 0.009365119971334934, 0.0313178151845932, 0.031116537749767303, 0.32139211893081665, 0.022566387429833412, 0.00912583526223898, 0.009298744611442089, 0.020709646865725517, 0.07822265475988388, 0.0094671081751585, 0.01205877773463726, 0.011011491529643536, 0.03374643996357918, 0.31498435139656067], [0.10894758999347687, 0.008482926525175571, 0.09056515991687775, 0.01424167025834322, 0.0038619947154074907, 0.010868899524211884, 0.028050867840647697, 0.32218390703201294, 0.0030620808247476816, 0.004148047883063555, 0.003138713538646698, 0.003912295214831829, 0.028548968955874443, 0.008921737782657146, 0.014322715811431408, 0.0018598586320877075, 0.02933013066649437, 0.3155524730682373], [0.015179849229753017, 0.027886826545000076, 0.010275972075760365, 0.02450818009674549, 0.014098240993916988, 0.016634732484817505, 0.16027897596359253, 0.22274410724639893, 0.045589644461870193, 0.00831490196287632, 0.007816152647137642, 0.021968690678477287, 0.005705620627850294, 0.00418913783505559, 0.005923012271523476, 0.0048799761570990086, 0.1837804913520813, 0.22022555768489838], [0.00456100283190608, 0.0008620642474852502, 0.001039374154061079, 0.0017463804688304663, 0.0015395432710647583, 0.0008758173207752407, 0.010920820757746696, 0.48398444056510925, 0.002099204808473587, 0.00031740317353978753, 0.0004975793417543173, 0.0018148445524275303, 0.0005243850173428655, 0.0005381349474191666, 0.0012495300034061074, 0.0004992943722754717, 0.012646576389670372, 0.47428351640701294]]], [[[0.03322302922606468, 0.00576139148324728, 0.010215260088443756, 0.008125592954456806, 0.01671169139444828, 0.008071644231677055, 0.004845234099775553, 0.03086560033261776, 0.10970155149698257, 0.1080237478017807, 0.04796259477734566, 0.04371480643749237, 0.03170818090438843, 0.1333511471748352, 0.03658445551991463, 0.1413136124610901, 0.1990274041891098, 0.03079293482005596], [0.0011863986728712916, 0.0732053741812706, 0.07613783329725266, 0.16484306752681732, 0.08885551244020462, 0.0810604989528656, 0.3186812102794647, 0.06113724038004875, 0.005223269108682871, 0.007011053152382374, 0.004193974193185568, 0.004751640371978283, 0.005226594861596823, 0.008720467798411846, 0.009187824092805386, 0.00692512933164835, 0.022717436775565147, 0.060935456305742264], [0.0014782692305743694, 0.08324021100997925, 0.0071272351779043674, 0.06928722560405731, 0.03152221813797951, 0.10460978001356125, 0.18348900973796844, 0.23656560480594635, 0.007815810851752758, 0.003947611432522535, 0.002334528136998415, 0.0021072907838970423, 0.004332428798079491, 0.003294704481959343, 0.004963498562574387, 0.0016049827681854367, 0.016493404284119606, 0.23578612506389618], [0.0018851726781576872, 0.23458144068717957, 0.04099798575043678, 0.06927605718374252, 0.06988931447267532, 0.10171174257993698, 0.22451373934745789, 0.09455271065235138, 0.00786865409463644, 0.00865838024765253, 0.011486959643661976, 0.003607191378250718, 0.0070387921296060085, 0.0030820006504654884, 0.007350025698542595, 0.0031935004517436028, 0.015972653403878212, 0.09433366358280182], [0.0013462683418765664, 0.12197022885084152, 0.0378616601228714, 0.13714534044265747, 0.04329022765159607, 0.09126920998096466, 0.12933661043643951, 0.19881847500801086, 0.008961775340139866, 0.004766496829688549, 0.00422046659514308, 0.0054016378708183765, 0.0022168552968651056, 0.0010655472287908196, 0.0033472205977886915, 0.0013575527118518949, 0.009518207050859928, 0.19810621440410614], [0.0008512724307365716, 0.0929633155465126, 0.0926482081413269, 0.14422760903835297, 0.04142884537577629, 0.01425248384475708, 0.13873246312141418, 0.22311444580554962, 0.0030781629029661417, 0.0030723295640200377, 0.005029106047004461, 0.0011476926738396287, 0.003902037627995014, 0.002412504516541958, 0.0031724777072668076, 0.0017474356573075056, 0.0057990094646811485, 0.2224205881357193], [0.0024105331394821405, 0.10721666365861893, 0.1343681812286377, 0.15598462522029877, 0.1006312444806099, 0.07755022495985031, 0.07394599914550781, 0.14843986928462982, 0.010575760155916214, 0.009027787484228611, 0.0021516024135053158, 0.0034335211385041475, 0.003517983015626669, 0.0035504938568919897, 0.0030162178445607424, 0.004279742948710918, 0.011881677433848381, 0.14801791310310364], [0.0005476450314745307, 0.0007118482608348131, 0.0004897220642305911, 0.001517082448117435, 0.0007368131773546338, 0.0011101261479780078, 0.0010940403444692492, 0.4948752224445343, 0.0008435239433310926, 0.0013338553253561258, 0.0011130900820717216, 0.0008959942497313023, 0.0009331760229542851, 0.0005736627499572933, 0.0006855054525658488, 0.0005945488810539246, 0.001246414496563375, 0.49069780111312866], [0.0059998794458806515, 0.031520090997219086, 0.012651436030864716, 0.02855454385280609, 0.024283766746520996, 0.007521628402173519, 0.05558834224939346, 0.24474209547042847, 0.01629352942109108, 0.0620591938495636, 0.027327217161655426, 0.01957150176167488, 0.013609956949949265, 0.010786594823002815, 0.02451888844370842, 0.012748600915074348, 0.15803682804107666, 0.24418599903583527], [0.08005223423242569, 0.010246933437883854, 0.004981826059520245, 0.02024245634675026, 0.007489698939025402, 0.011461229994893074, 0.03891809657216072, 0.09236892312765121, 0.1793309599161148, 0.006625715177506208, 0.06001710146665573, 0.026547448709607124, 0.04946441948413849, 0.06720175594091415, 0.04784136265516281, 0.05716104805469513, 0.1481265127658844, 0.0919223353266716], [0.023868801072239876, 0.03526593744754791, 0.00764401676133275, 0.06260623037815094, 0.016538158059120178, 0.01930011436343193, 0.030325360596179962, 0.10278085619211197, 0.1292913407087326, 0.09153055399656296, 0.015040453523397446, 0.022192951291799545, 0.045355889946222305, 0.022012438625097275, 0.03644827753305435, 0.03759637847542763, 0.19944661855697632, 0.10275562852621078], [0.06063001975417137, 0.025680603459477425, 0.008350794203579426, 0.024850547313690186, 0.02453506365418434, 0.007138413842767477, 0.0349898487329483, 0.16936343908309937, 0.09035457670688629, 0.058016952127218246, 0.04915707930922508, 0.011443084105849266, 0.03336494043469429, 0.03317711502313614, 0.03253394737839699, 0.023042302578687668, 0.14453838765621185, 0.16883283853530884], [0.015642020851373672, 0.010911433957517147, 0.0067215170711278915, 0.010598673485219479, 0.006412459071725607, 0.019120721146464348, 0.01791166327893734, 0.24135252833366394, 0.05506870523095131, 0.06032325699925423, 0.04813998565077782, 0.036411039531230927, 0.015184244140982628, 0.02561011165380478, 0.035177506506443024, 0.05645538866519928, 0.09828507155179977, 0.24067360162734985], [0.015292397700250149, 0.007464058231562376, 0.0048585133627057076, 0.005040497053414583, 0.0009916817070916295, 0.0048874723725020885, 0.011996818706393242, 0.26309260725975037, 0.05805276706814766, 0.06077450513839722, 0.042330652475357056, 0.028911801055073738, 0.040971167385578156, 0.00250330101698637, 0.04133973270654678, 0.0137472003698349, 0.1354197859764099, 0.2623250186443329], [0.01803569681942463, 0.008672364056110382, 0.004079163074493408, 0.005786711350083351, 0.0034915513824671507, 0.010068449191749096, 0.013853033073246479, 0.3612139821052551, 0.025938719511032104, 0.030857885256409645, 0.01728753186762333, 0.012299849651753902, 0.018425609916448593, 0.01037018932402134, 0.010281837545335293, 0.01306087989360094, 0.07653088867664337, 0.3597456216812134], [0.017445629462599754, 0.005351199768483639, 0.002130641369149089, 0.004464265890419483, 0.0009565642685629427, 0.004564579110592604, 0.010630468837916851, 0.2887508273124695, 0.06532794237136841, 0.04799147695302963, 0.034458309412002563, 0.024576762691140175, 0.050471462309360504, 0.008805062621831894, 0.03671199828386307, 0.006332147866487503, 0.10375313460826874, 0.287277489900589], [0.034989889711141586, 0.013388767838478088, 0.00988900475203991, 0.01381254754960537, 0.0062907845713198185, 0.005707685369998217, 0.0142442611977458, 0.2634611427783966, 0.08714257180690765, 0.04497785493731499, 0.018270904198288918, 0.026516327634453773, 0.022396288812160492, 0.025752980262041092, 0.03077726811170578, 0.02663244493305683, 0.09377899765968323, 0.26197028160095215], [0.00054739456390962, 0.0007118078647181392, 0.0004890374257229269, 0.001514336559921503, 0.0007364572957158089, 0.0011096972739323974, 0.0010934587335214019, 0.4948829710483551, 0.0008429123554378748, 0.0013302399311214685, 0.0011113409418612719, 0.0008954209624789655, 0.0009332222980447114, 0.0005733476718887687, 0.0006857124390080571, 0.0005939342663623393, 0.0012439042329788208, 0.4907047748565674]], [[0.08358187973499298, 0.019300831481814384, 0.002826751209795475, 0.0006423344020731747, 0.00023471821623388678, 0.00013794424012303352, 0.02787652239203453, 0.3326724171638489, 0.05364298075437546, 0.027363412082195282, 0.0006237946799956262, 0.002401728183031082, 0.0005029789754189551, 0.0006095069111324847, 0.00814940594136715, 0.0012933507096022367, 0.10990718752145767, 0.3282322585582733], [0.009460142813622952, 0.018626412376761436, 0.00035008121631108224, 3.1722491257824004e-05, 1.1410309525672346e-05, 8.589628851041198e-05, 0.005028627812862396, 0.4837720990180969, 0.0002419003430986777, 4.683255156123778e-06, 3.427563228797226e-07, 8.251163876593637e-07, 1.002507360681193e-05, 1.2745847016049083e-05, 7.888532309152652e-06, 9.630893146095332e-06, 0.0029636763501912355, 0.4793819785118103], [0.0009540801984257996, 0.6279464364051819, 0.0005376380868256092, 0.0004684224841184914, 0.00015300414816010743, 0.00015743014228064567, 0.00022907850507181138, 0.18303263187408447, 1.3692874745174777e-05, 6.5314306993968785e-06, 2.285603386553703e-07, 2.359467714541097e-07, 2.1960079266136745e-06, 4.327803708292777e-06, 1.971240089915227e-05, 1.338047610488502e-07, 6.235636828932911e-05, 0.18641197681427002], [0.0005647051730193198, 0.006305418908596039, 0.9611104726791382, 0.0017639086581766605, 6.213729648152366e-06, 0.0031684357672929764, 0.00015443099255207926, 0.013316682539880276, 1.022130049932457e-06, 0.0001655949599808082, 2.9278763236106897e-07, 1.6266258739960904e-07, 3.6781191425916404e-08, 1.3500722161552403e-05, 8.681508347763156e-07, 9.282465180149302e-05, 2.823873182933312e-05, 0.013307110406458378], [0.0018907515332102776, 0.009118708781898022, 0.020864304155111313, 0.9032202363014221, 0.0035882212687283754, 0.0004854200524277985, 0.0030846174340695143, 0.029127955436706543, 2.6195639293291606e-05, 1.7467382349423133e-06, 8.872614671417978e-06, 1.1934757822018582e-06, 4.734949925477849e-06, 7.912061846582219e-06, 3.624522264544794e-07, 8.424474799539894e-06, 0.00026101042749360204, 0.028299307450652122], [0.0009143414790742099, 0.006125332787632942, 0.0008170264773070812, 0.21664394438266754, 0.582625150680542, 0.0008532318170182407, 0.0006351767806336284, 0.09705068171024323, 2.293438410561066e-05, 1.2906546544400044e-05, 1.0369994924985804e-06, 1.1318084034428466e-06, 2.7127869088872103e-06, 1.8103071397490567e-06, 2.6960714549773e-08, 7.030239430605434e-07, 2.084434891003184e-05, 0.09427093714475632], [0.0029027913697063923, 0.00037366090691648424, 0.0011348527623340487, 0.00029086798895150423, 0.0007863902137614787, 0.8698605298995972, 0.006817433517426252, 0.05838221311569214, 0.00013261435378808528, 2.220244459749665e-05, 1.3364774531510193e-07, 4.244911622208747e-07, 2.7994531137665035e-07, 9.997409506468102e-06, 2.297291068487084e-08, 6.049206422176212e-05, 9.0981366156484e-06, 0.05921606719493866], [0.3783470094203949, 0.018570922315120697, 0.013726558536291122, 0.010073617100715637, 0.0050921207293868065, 0.008606519550085068, 0.017618460580706596, 0.20345439016819, 0.005005421116948128, 0.008788598701357841, 0.00844341516494751, 0.020824842154979706, 0.017679471522569656, 0.007230877876281738, 0.04645824432373047, 0.00959745328873396, 0.017567409202456474, 0.2029145359992981], [0.02392464689910412, 3.1936142477206886e-05, 1.0267737025060342e-06, 7.997932129910623e-07, 1.0232819249722525e-06, 7.551157523266738e-06, 0.004373923409730196, 0.46123772859573364, 0.06372766196727753, 0.0007044902886264026, 0.00010445844964124262, 4.155569331487641e-05, 4.483604243432637e-06, 1.897396828098863e-06, 9.79507717602246e-07, 1.3451974155032076e-05, 0.0009877198608592153, 0.4448346197605133], [0.000315748417051509, 2.4044902602327056e-05, 1.1260697192483349e-06, 1.7008390784667426e-07, 1.4020238836565113e-07, 8.580307735428505e-07, 0.0014182956656441092, 0.03669028356671333, 0.9234538078308105, 0.0003321155090816319, 0.0003459048457443714, 0.00017938087694346905, 0.00042659565224312246, 1.2300907656026538e-05, 4.5971555096002703e-07, 2.0048914848302957e-06, 0.0005395967164076865, 0.036257240921258926], [0.00012822648568544537, 2.016016424022382e-06, 1.5208781860565068e-06, 2.4532353037898247e-08, 1.407482663751125e-08, 1.3090536867821356e-06, 7.665242378607218e-07, 0.006748106796294451, 0.0003779917606152594, 0.9848799705505371, 0.0005147720221430063, 0.0003504272026475519, 6.23780624664505e-06, 0.0001691406941972673, 2.8959429982933216e-06, 5.368962320062565e-06, 7.555008778581396e-07, 0.006810567807406187], [0.00010347291390644386, 6.600865845030057e-07, 2.6633856577973347e-06, 3.854463102470618e-06, 1.7789817619018322e-08, 3.092206100063777e-07, 2.5164272301481105e-06, 0.0027801143005490303, 0.0003778291284106672, 0.0064571574330329895, 0.9845407605171204, 0.0025389650836586952, 4.961863669450395e-05, 0.0003562477941159159, 3.480123996268958e-05, 1.683498453530774e-06, 8.171435297299467e-07, 0.0027484563179314137], [0.0019737440161406994, 6.249947091419017e-06, 2.2971766156842932e-05, 1.15385716981109e-06, 1.7159781862119416e-07, 7.263983661687234e-06, 4.82467748952331e-06, 0.014886338263750076, 0.0005217208527028561, 0.3228423595428467, 0.32180169224739075, 0.305348664522171, 0.0027804989367723465, 0.004696542397141457, 0.009725913405418396, 0.0009849924826994538, 2.3891072487458587e-05, 0.014370933175086975], [0.0005891936598345637, 0.0004198386741336435, 5.045649231760763e-07, 2.7607691777120635e-07, 2.8814099550800165e-07, 2.3819210070996633e-07, 8.936468702813727e-07, 0.2552725076675415, 0.0012644716771319509, 2.0402467271196656e-05, 1.4541297787218355e-05, 0.00038683219463564456, 0.4861803352832794, 0.0006343221175484359, 0.0003315980138722807, 0.00011337000614730641, 0.0005570356734097004, 0.25421327352523804], [8.639216503070202e-06, 9.265207836506306e-07, 4.806073775398545e-06, 4.4779526753302434e-09, 2.0049917281994567e-09, 1.4409890809474746e-06, 2.8981967048480328e-08, 0.005464782007038593, 1.0394884384368197e-06, 4.291883305995725e-05, 2.455405774526298e-05, 6.275216037465725e-06, 1.6115942344185896e-05, 0.9869539141654968, 4.496928522712551e-05, 0.0017753440188243985, 3.214373646187596e-05, 0.005622209515422583], [0.0018798178061842918, 2.596358535811305e-05, 0.00026696952409110963, 2.560752363933716e-06, 7.58927001243137e-08, 1.3885355087950302e-07, 2.3562571982438385e-07, 0.009953686036169529, 3.882117198372725e-06, 0.0002653842675499618, 9.150484402198344e-05, 0.0015304790576919913, 0.00010143336112378165, 0.0010811472311615944, 0.9746374487876892, 0.0002444011333864182, 0.000104860111605376, 0.009810018353164196], [0.0011498607927933335, 2.434436282783281e-05, 3.8114107155706733e-05, 4.884536338067846e-06, 3.3280795719292655e-07, 1.7051179383997805e-05, 6.406139618775342e-07, 0.058921460062265396, 6.228472193470225e-05, 1.466931735194521e-05, 7.396049568342278e-07, 1.7650165318627842e-05, 7.593729242216796e-05, 0.004377240780740976, 0.0002827006974257529, 0.8692548871040344, 0.007687313016504049, 0.05806992948055267], [0.3761729300022125, 0.018650569021701813, 0.01338690984994173, 0.009904902428388596, 0.005229683592915535, 0.00877019390463829, 0.017336204648017883, 0.2047376185655594, 0.0050139958038926125, 0.008822373114526272, 0.008213990367949009, 0.020478110760450363, 0.018299108371138573, 0.007370942272245884, 0.045782510191202164, 0.009724216535687447, 0.01789327897131443, 0.2042125165462494]], [[0.0060458192601799965, 0.0056103128008544445, 0.0023220195434987545, 0.025587137788534164, 0.037089768797159195, 0.07939517498016357, 0.010649461299180984, 0.3985046148300171, 0.023900363594293594, 0.0006924244808033109, 0.0036369862500578165, 0.0028203472029417753, 0.0009983301861211658, 0.0017007207497954369, 0.00034973351284861565, 0.0008253947016783059, 0.003750853007659316, 0.39612051844596863], [0.0020660925656557083, 0.005812018644064665, 0.004385117441415787, 0.024011550471186638, 0.0926986038684845, 0.034081101417541504, 0.005181804299354553, 0.4116872251033783, 0.008726421743631363, 0.00015227800759021193, 0.00033652124693617225, 0.0007324926555156708, 0.00021392051712609828, 0.0003179203486070037, 6.216166366357356e-05, 0.00016065375530160964, 0.0002490612678229809, 0.4091249704360962], [0.010239792056381702, 0.0361139252781868, 0.009713319130241871, 0.030721092596650124, 0.05069705471396446, 0.1457635909318924, 0.019890720024704933, 0.339591383934021, 0.008584405295550823, 0.00041157874511554837, 0.0008172947564162314, 0.00044645083835348487, 7.101416122168303e-05, 0.0037626854609698057, 0.001987295690923929, 0.0025243773125112057, 0.0014202867168933153, 0.33724379539489746], [0.0048680417239665985, 0.04690713807940483, 0.009750817902386189, 0.01275763288140297, 0.09081625193357468, 0.030382957309484482, 0.004867756273597479, 0.3917013108730316, 0.017339760437607765, 3.334804205223918e-05, 8.918621460907161e-05, 0.000391146371839568, 0.00013212746125645936, 4.6008226490812376e-05, 1.9007031369255856e-05, 8.376914593100082e-06, 0.0005460799438878894, 0.3893430829048157], [0.0023481352254748344, 0.00938381813466549, 0.07011985033750534, 0.02743782289326191, 0.03109852783381939, 0.014221465215086937, 0.007457545027136803, 0.4105890691280365, 0.002587808296084404, 0.00011508435272844508, 0.0005587558262050152, 0.014197563752532005, 0.00039447739254683256, 5.216731733526103e-05, 2.5639808882260695e-05, 0.00010278257832396775, 0.0004527677083387971, 0.40885671973228455], [0.012724236585199833, 0.06855641305446625, 0.03794575482606888, 0.25952616333961487, 0.23296311497688293, 0.05105229467153549, 0.036825649440288544, 0.14607608318328857, 0.006377981975674629, 0.0001762642350513488, 0.00010728531196946278, 0.00039866805309429765, 0.00033904286101460457, 0.00012412320938892663, 0.00013459321053232998, 0.00010374622070230544, 0.001314892782829702, 0.1452537626028061], [0.005167700350284576, 0.007313728332519531, 0.009762258268892765, 0.030082587152719498, 0.11312205344438553, 0.09657537192106247, 0.009428747929632664, 0.36213281750679016, 0.004228138830512762, 4.343289401731454e-05, 0.00022878602612763643, 0.0008389409631490707, 9.034918184624985e-05, 0.00010206561273662373, 6.412204675143585e-05, 9.537734149489552e-05, 0.001073419931344688, 0.3596501350402832], [0.0012562519405037165, 0.0017727763624861836, 0.001313325366936624, 0.007512780837714672, 0.00817585363984108, 0.004598089028149843, 0.0012761628022417426, 0.4802653193473816, 0.0075978245586156845, 0.00033316342160105705, 0.0017232215031981468, 0.0023351581767201424, 0.0014041358372196555, 0.0008053971105255187, 0.00041820426122285426, 0.0008046658476814628, 0.0010968629503622651, 0.4773108661174774], [0.0022373723331838846, 0.0002987858315464109, 0.0002118190604960546, 0.0021411653142422438, 0.0043735625222325325, 0.013054872862994671, 0.00038993070484139025, 0.4571307897567749, 0.05029537156224251, 0.0012503244215622544, 0.006382729392498732, 0.003921144641935825, 0.0005329984705895185, 0.0009306049905717373, 0.0003532633127178997, 0.000451596308266744, 0.005070424638688564, 0.45097315311431885], [0.008275138214230537, 0.003295459086075425, 0.0009332294575870037, 0.0023181410506367683, 0.004754400812089443, 0.00048332774895243347, 0.0015824653673917055, 0.22132433950901031, 0.49964162707328796, 0.016600720584392548, 0.006849171128123999, 0.002344979904592037, 0.0007332470268011093, 0.0010619332315400243, 0.0008472261251881719, 0.0008622303139418364, 0.00910039059817791, 0.21899202466011047], [0.029991256073117256, 0.001325756311416626, 0.000739435141440481, 0.00048201021854765713, 0.0006566664087586105, 0.0020382229704409838, 0.003310680855065584, 0.29918667674064636, 0.2738628089427948, 0.0034835815895348787, 0.029840946197509766, 0.03140787035226822, 0.0033930866047739983, 0.0004147914587520063, 0.00026127672754228115, 0.0004050594288855791, 0.022940825670957565, 0.2962590754032135], [0.007062517572194338, 0.001134654856286943, 0.00020571147615555674, 0.0009330331813544035, 0.0008548400946892798, 0.004711682442575693, 0.0017410031286999583, 0.100410595536232, 0.725119948387146, 0.0045128390192985535, 0.043866392225027084, 0.004109445493668318, 0.0002581483277026564, 0.00010877316526602954, 0.0009903787868097425, 3.502957770251669e-05, 0.004606802482157946, 0.09933825582265854], [0.01851806975901127, 0.0009635879541747272, 0.0003221136284992099, 0.0001373568520648405, 0.0006174707668833435, 0.0026792753487825394, 0.004162986297160387, 0.05920719355344772, 0.010906467214226723, 0.01611470617353916, 0.6898331046104431, 0.086669921875, 0.00424039363861084, 0.013273598626255989, 0.016947653144598007, 0.0023928142618387938, 0.014290313236415386, 0.058723051100969315], [0.019258012995123863, 0.00022361472656484693, 0.0002197575377067551, 0.00037425445043481886, 0.0005193947581574321, 0.0004607336886692792, 0.0034843655303120613, 0.08340654522180557, 0.003163800807669759, 0.00553029915317893, 0.014603814110159874, 0.19082628190517426, 0.16736586391925812, 0.05097980797290802, 0.018410613760352135, 0.33676785230636597, 0.02139878459274769, 0.08300625532865524], [0.07330363988876343, 0.00045064170262776315, 0.00025926841772161424, 6.973108975216746e-05, 9.934803529176861e-05, 0.0002770843857433647, 0.007513661868870258, 0.015214109793305397, 0.0005990233039483428, 0.11454552412033081, 0.024305488914251328, 0.03345402702689171, 0.6679829955101013, 0.006984773091971874, 0.0183865949511528, 0.00017314183060079813, 0.021267704665660858, 0.015113291330635548], [0.03621477633714676, 0.00059200992109254, 0.0008993680239655077, 0.000264083209913224, 0.0008283809875138104, 0.0006741717224940658, 0.005476376507431269, 0.06190286576747894, 0.002667761640623212, 0.046455226838588715, 0.061324093490839005, 0.16665196418762207, 0.1701556295156479, 0.10617367178201675, 0.23165297508239746, 0.022922750562429428, 0.02345881797373295, 0.061685141175985336], [0.0078510083258152, 0.0003892119275406003, 0.00033747838460840285, 0.0009681443334557116, 0.0028751299250870943, 0.001777379889972508, 0.0013230907497927547, 0.4249602258205414, 0.06212220713496208, 0.0013319706777110696, 0.013897943310439587, 0.031189734116196632, 0.004615218378603458, 0.005383390933275223, 0.0030230646952986717, 0.002633661264553666, 0.013920620083808899, 0.4214005172252655], [0.0012601997004821897, 0.001778271864168346, 0.0013127099955454469, 0.007534971460700035, 0.008202075958251953, 0.004596475977450609, 0.0012812138302251697, 0.4802170395851135, 0.0076101128943264484, 0.0003339551913086325, 0.0017314872238785028, 0.00234186090528965, 0.001408715732395649, 0.0008069375180639327, 0.0004199077666271478, 0.0008042232366278768, 0.0010981725063174963, 0.4772617220878601]], [[0.0050031584687530994, 0.009027029387652874, 0.018070146441459656, 0.005699703935533762, 0.0053654261864721775, 0.011317472904920578, 0.003272562986239791, 0.2588420510292053, 0.10934793949127197, 0.1528548151254654, 0.006650561932474375, 0.008505993522703648, 0.02037874236702919, 0.056223493069410324, 0.011256575584411621, 0.04889640212059021, 0.011928601190447807, 0.2573593258857727], [0.013055001385509968, 0.04623790830373764, 0.039795227348804474, 0.02681378833949566, 0.01850750483572483, 0.027091750875115395, 0.034038033336400986, 0.3851572871208191, 0.004306751769036055, 0.01435808464884758, 0.0016861549811437726, 0.001182169304229319, 0.0014119961997494102, 0.000960247591137886, 0.00024912922526709735, 0.00024837625096552074, 0.0019149088766425848, 0.3829856216907501], [0.010085547342896461, 0.031615979969501495, 0.04133704677224159, 0.004111381247639656, 0.0019236743682995439, 0.0037921485491096973, 0.014043509028851986, 0.442196249961853, 0.0008539824048057199, 0.00852056872099638, 0.00032817418104968965, 0.0002622554311528802, 0.0002350508439121768, 0.000563141074962914, 6.452818342950195e-05, 9.82285346253775e-05, 0.0011716234730556607, 0.43879687786102295], [0.026639465242624283, 0.09073454886674881, 0.025416536256670952, 0.02808697521686554, 0.021483570337295532, 0.023594966158270836, 0.03187568858265877, 0.36781319975852966, 0.008402042090892792, 0.0018978603184223175, 0.002204315038397908, 0.0015210396377369761, 0.0016425888752564788, 0.00020734674762934446, 0.0002567468036431819, 9.670478902989998e-05, 0.002603767206892371, 0.3655226230621338], [0.016524264588952065, 0.038229070603847504, 0.009335431270301342, 0.025380246341228485, 0.03348955512046814, 0.10557353496551514, 0.029469376429915428, 0.3661765456199646, 0.007196014281362295, 0.0006426931940950453, 0.0003019878931809217, 0.0011536076199263334, 6.688967550871894e-05, 4.937034100294113e-05, 9.334411151940003e-05, 3.497581201372668e-05, 0.001323328004218638, 0.36495983600616455], [0.014617719687521458, 0.03144366294145584, 0.034620221704244614, 0.021215494722127914, 0.015820452943444252, 0.1009969711303711, 0.03679937869310379, 0.36936303973197937, 0.0026387053076177835, 0.0013557441998273134, 0.0004814104177057743, 0.0003990992554463446, 0.00034424132900312543, 0.0002280955814057961, 5.630915256915614e-05, 0.00015598084428347647, 0.0025064866058528423, 0.3669569492340088], [0.017210127785801888, 0.12177712470293045, 0.05963576212525368, 0.16640733182430267, 0.24060365557670593, 0.1789882332086563, 0.04050299525260925, 0.07132596522569656, 0.021574195474386215, 0.003036156529560685, 0.0006520200404338539, 0.0005663327756337821, 0.0006963239284232259, 0.0005789441638626158, 0.0003787824825849384, 0.0005864376435056329, 0.0044549559243023396, 0.07102463394403458], [0.005072913598269224, 0.006156499031931162, 0.004323720000684261, 0.0022622104734182358, 0.002937384182587266, 0.0023012582678347826, 0.005710800644010305, 0.47258177399635315, 0.004146023653447628, 0.003332097316160798, 0.0010922696674242616, 0.0020814179442822933, 0.00457343552261591, 0.0032001954969018698, 0.002889123512431979, 0.0020955982618033886, 0.0054806615225970745, 0.4697625935077667], [0.008740846067667007, 0.002012209966778755, 0.0018676244653761387, 0.0019198289373889565, 0.0030726827681064606, 0.0059237172827124596, 0.00205209874548018, 0.4363616108894348, 0.06746416538953781, 0.015739301219582558, 0.005202957894653082, 0.001485376968048513, 0.00395455677062273, 0.0013581705279648304, 0.00034079988836310804, 0.003146959701552987, 0.007114998530596495, 0.4322419762611389], [0.024053392931818962, 0.008211519569158554, 0.007308132480829954, 0.013330655172467232, 0.0024296296760439873, 0.003125753253698349, 0.008401451632380486, 0.29721498489379883, 0.09992148727178574, 0.11370541155338287, 0.03839755058288574, 0.04099443927407265, 0.011859088204801083, 0.013408773578703403, 0.0013632139889523387, 0.003826007479801774, 0.018425555899739265, 0.294022798538208], [0.007989608682692051, 0.0006531178369186819, 0.0006016883999109268, 0.00042969451169483364, 8.558892295695841e-05, 0.000252148398431018, 0.00150276068598032, 0.43665799498558044, 0.029337601736187935, 0.04419094696640968, 0.02423911914229393, 0.007019475568085909, 0.005760346073657274, 0.0029123539570719004, 0.0007931432919576764, 0.0007662197458557785, 0.0039071799255907536, 0.432900995016098], [0.015223266556859016, 0.002117662690579891, 0.0005866231513209641, 0.0004191373009234667, 0.001433291588909924, 0.00111956219188869, 0.002327756956219673, 0.3497609496116638, 0.14106056094169617, 0.02992638386785984, 0.04056422412395477, 0.049738142639398575, 0.008866649121046066, 0.003900097915902734, 0.001297001144848764, 0.0004941230872645974, 0.004187467508018017, 0.34697702527046204], [0.012866525910794735, 0.0011433983454480767, 0.0026114294305443764, 0.0005054341745562851, 0.0002013807388721034, 0.0013082699151709676, 0.007180608343333006, 0.33624300360679626, 0.030727514997124672, 0.06476608663797379, 0.046442072838544846, 0.027265770360827446, 0.03959106281399727, 0.06072345748543739, 0.004420620854943991, 0.01597035676240921, 0.014945857226848602, 0.33308717608451843], [0.016407515853643417, 0.000330184557242319, 0.0017166577745229006, 0.00023068618611432612, 0.0001864940713858232, 0.0017998801777139306, 0.003162128385156393, 0.3967726230621338, 0.007081977091729641, 0.08238722383975983, 0.017542125657200813, 0.009549771435558796, 0.006778724491596222, 0.03662898391485214, 0.00398479588329792, 0.00886260624974966, 0.012694858014583588, 0.3938828110694885], [0.008975492790341377, 0.00043009803630411625, 0.00018695359176490456, 0.00012561744370032102, 0.00019790689111687243, 0.0012436513788998127, 0.0024856168311089277, 0.0421212762594223, 0.0235105212777853, 0.014260012656450272, 0.03661763295531273, 0.02261299267411232, 0.6700192093849182, 0.11084957420825958, 0.011579057201743126, 0.009827280417084694, 0.003217612160369754, 0.041739482432603836], [0.016095781698822975, 0.0003237201599404216, 0.0009599719778634608, 0.00038679642602801323, 0.00030101678567007184, 0.0008385961991734803, 0.0034487664233893156, 0.14403797686100006, 0.008542215451598167, 0.09500104188919067, 0.018424933776259422, 0.010250228457152843, 0.09381029009819031, 0.39758822321891785, 0.008344154804944992, 0.03807130083441734, 0.020530622452497482, 0.1430443525314331], [0.015580812469124794, 0.006223216652870178, 0.002654142677783966, 0.002479380927979946, 0.004129177425056696, 0.005324141588062048, 0.0031540163327008486, 0.08248958736658096, 0.41590002179145813, 0.12653549015522003, 0.0768832340836525, 0.037007179111242294, 0.03930474445223808, 0.040283095091581345, 0.018166830763220787, 0.01824169047176838, 0.023645266890525818, 0.08199798315763474], [0.005070492625236511, 0.006155345588922501, 0.004327089991420507, 0.0022562791127711535, 0.002931157825514674, 0.0023000375367701054, 0.0057151648215949535, 0.4726390242576599, 0.004120017401874065, 0.003325176890939474, 0.0010886387899518013, 0.002072918927296996, 0.004562224727123976, 0.003194461576640606, 0.00287901284173131, 0.0020897428039461374, 0.005456356331706047, 0.46981680393218994]], [[0.011212988756597042, 0.009888334199786186, 0.013162845745682716, 0.0041388049721717834, 0.01048683188855648, 0.002732729073613882, 0.012199338525533676, 0.4392438232898712, 0.0075243678875267506, 0.005853976123034954, 0.0034768490586429834, 0.004871181678026915, 0.007513744290918112, 0.006592566147446632, 0.002960305893793702, 0.009924579411745071, 0.011188631877303123, 0.4370282292366028], [0.004248390439897776, 0.01169416680932045, 0.5964747071266174, 0.024309271946549416, 0.01620797999203205, 0.042587775737047195, 0.012573450803756714, 0.14308984577655792, 0.0004189950705040246, 0.0014680210733786225, 0.00018624561198521405, 0.0003038739669136703, 7.763168832752854e-05, 0.001322468277066946, 0.0005558962584473193, 0.0005772655131295323, 0.0014175312826409936, 0.14248652756214142], [0.013308624736964703, 0.018160369247198105, 0.016638923436403275, 0.0183628648519516, 0.0042503150179982185, 0.014588996767997742, 0.02677038684487343, 0.444271057844162, 0.00024277003831230104, 0.00023825501557439566, 4.9547925300430506e-05, 2.955985110020265e-05, 0.00010202405246673152, 0.00029385826201178133, 5.8083838666789234e-05, 0.00031188572756946087, 0.0011262445477768779, 0.4411962330341339], [0.010096956044435501, 0.01905645616352558, 0.040909770876169205, 0.011321241036057472, 0.05663401260972023, 0.12422625720500946, 0.10642688721418381, 0.312862753868103, 0.0009194735321216285, 0.0017682898323982954, 0.0002555965620558709, 0.0002869217423722148, 0.00023395959578920156, 0.0007104880060069263, 8.190755761461332e-05, 0.0016703573055565357, 0.0013728877529501915, 0.31116577982902527], [0.007758096791803837, 0.011312837712466717, 0.006468120031058788, 0.004192100837826729, 0.0274664219468832, 0.06669838726520538, 0.07739458233118057, 0.39969316124916077, 0.0003657909983303398, 0.0006115622236393392, 5.2695831982418895e-05, 0.0002830550947692245, 9.403634066984523e-06, 4.9854359531309456e-05, 7.072469998092856e-06, 8.900265675038099e-05, 0.0010272195795550942, 0.3965207040309906], [0.006597702857106924, 0.04283144325017929, 0.05074044317007065, 0.016358112916350365, 0.024379992857575417, 0.03339897096157074, 0.05973540246486664, 0.38003623485565186, 0.001113875419832766, 0.001524900901131332, 0.00012404374137986451, 0.0010743207531049848, 0.00010534204920986667, 0.0012897469568997622, 0.0002598431019578129, 0.0013112686574459076, 0.0008111147326417267, 0.3783072233200073], [0.0034733274951577187, 0.012655842117965221, 0.013282964937388897, 0.002122217556461692, 0.0035143636632710695, 0.006919681094586849, 0.04287946969270706, 0.4563295841217041, 0.0011950379703193903, 0.0012208977714180946, 0.0003487641515675932, 0.00045351064181886613, 0.0004104819963686168, 0.0003505723725538701, 0.0001587183214724064, 0.0004286942130420357, 0.0011158323613926768, 0.4531399607658386], [0.0027843210846185684, 0.0027269087731838226, 0.0012171706184744835, 0.0021440996788442135, 0.002939843572676182, 0.0012563576456159353, 0.011342262849211693, 0.471207857131958, 0.003881976241245866, 0.0006907387869432569, 0.0017748853424564004, 0.0014041101094335318, 0.00254739448428154, 0.0009186757379211485, 0.004109398927539587, 0.0022195293568074703, 0.018960433080792427, 0.46787407994270325], [0.007759611122310162, 0.0004939812351949513, 0.0005992561345919967, 9.942987526301295e-05, 0.00021878817642573267, 0.0001477609039284289, 0.0018182402709499002, 0.46507325768470764, 0.0029557454399764538, 0.0241558738052845, 0.0032886371482163668, 0.010187895968556404, 0.004068747628480196, 0.0025190834421664476, 0.0006783079588785768, 0.005118418950587511, 0.00944013986736536, 0.461376816034317], [0.005398201290518045, 0.0011106996098533273, 0.002285213675349951, 0.00038796127773821354, 0.0002591531665530056, 0.0007300523575395346, 0.0007174468482844532, 0.4352826178073883, 0.031072227284312248, 0.010384838096797466, 0.008654589764773846, 0.02918553538620472, 0.007262899540364742, 0.014747199602425098, 0.004250132013112307, 0.005655534565448761, 0.010645127855241299, 0.43197059631347656], [0.01970161311328411, 0.0007909644045867026, 0.0012237250339239836, 0.0003772448981180787, 0.0003519254387356341, 0.00016748692723922431, 0.0003989313845522702, 0.3125453293323517, 0.00815054401755333, 0.028402557596564293, 0.0215561892837286, 0.06659098714590073, 0.14131556451320648, 0.02914748340845108, 0.006020735017955303, 0.039820216596126556, 0.01221929956227541, 0.3112192153930664], [0.024967746809124947, 0.0008144473540596664, 0.0048633175902068615, 0.002734171459451318, 0.0004581017419695854, 0.0002759323688223958, 0.0008055152138695121, 0.3887260854244232, 0.0029323420021682978, 0.010776217095553875, 0.051188185811042786, 0.0248296856880188, 0.041325222700834274, 0.009893967770040035, 0.011448733508586884, 0.018787316977977753, 0.01906115747988224, 0.38611188530921936], [0.02027376927435398, 0.00045244296779856086, 0.0016221074620261788, 0.0008137944969348609, 0.00014668858784716576, 0.000135444279294461, 0.0004050819843541831, 0.15208478271961212, 0.0017738515743985772, 0.007241218350827694, 0.02428874559700489, 0.013124960474669933, 0.053130559623241425, 0.23526489734649658, 0.041737765073776245, 0.2642151713371277, 0.031547464430332184, 0.15174119174480438], [0.036647211760282516, 0.00041235238313674927, 0.0020457610953599215, 0.0002468531019985676, 9.981026232708246e-05, 0.0009075984125956893, 0.0001622205600142479, 0.2988474369049072, 0.0005443809204734862, 0.002335414756089449, 0.009251711890101433, 0.006268193945288658, 0.028386853635311127, 0.020736461505293846, 0.01811469905078411, 0.2447044551372528, 0.032719310373067856, 0.29756924510002136], [0.002026333473622799, 0.0001892546861199662, 0.0010846740333363414, 5.6127089919755235e-05, 2.5486813683528453e-05, 8.197686111088842e-05, 7.318642019527033e-05, 0.09415179491043091, 5.243397754384205e-05, 0.0011494789505377412, 0.0002203390613431111, 0.0016577630303800106, 0.0025703769642859697, 0.010429354384541512, 0.004454115871340036, 0.7685666084289551, 0.019277596846222878, 0.09393314272165298], [0.004860538989305496, 0.00013066831161268055, 0.0002926453307736665, 0.0005286757368594408, 0.0001378347515128553, 0.0001507772976765409, 0.00023328249517362565, 0.445921391248703, 0.000574120378587395, 0.00018312560860067606, 0.000509887293446809, 0.0003989251854363829, 0.011637064628303051, 0.02089446410536766, 0.0011962034041061997, 0.04568247124552727, 0.022386722266674042, 0.4442811906337738], [0.0036216387525200844, 0.00064891017973423, 0.0017158216796815395, 0.00033750833244994283, 0.0005372059531509876, 0.0005907400045543909, 0.003236255142837763, 0.47660011053085327, 0.0033273857552558184, 0.002375205745920539, 0.0004957834607921541, 0.0005025244317948818, 0.0005560524296015501, 0.0014444346306845546, 0.0006624118541367352, 0.0048534804955124855, 0.026007818058133125, 0.47248679399490356], [0.0027810900937765837, 0.002728840569034219, 0.0012173864524811506, 0.002147446386516094, 0.0029424310196191072, 0.00125831866171211, 0.011322574689984322, 0.471239298582077, 0.0038701731245964766, 0.0006909440271556377, 0.0017713485285639763, 0.0014002100797370076, 0.002539570676162839, 0.000917670491617173, 0.004117495846003294, 0.002218737965449691, 0.018930483609437943, 0.4679059684276581]], [[0.0067216516472399235, 0.004841063637286425, 0.0005971830105409026, 0.015156722627580166, 0.002724067308008671, 0.006993062328547239, 0.005213884171098471, 0.05204989016056061, 0.2951253652572632, 0.06136612221598625, 0.22061380743980408, 0.05123018100857735, 0.07536744326353073, 0.011719641275703907, 0.01584722101688385, 0.015437044203281403, 0.10712730139493942, 0.05186835676431656], [0.030329173430800438, 0.040183354169130325, 0.019574278965592384, 0.39242982864379883, 0.10098960250616074, 0.0886107087135315, 0.08044978976249695, 0.07389125227928162, 0.02351769618690014, 0.028087154030799866, 0.01366353128105402, 0.008634629659354687, 0.006339061073958874, 0.0012433943338692188, 0.003455081954598427, 0.002500904956832528, 0.012528148479759693, 0.07357248663902283], [0.07635039836168289, 0.023343682289123535, 0.05244942009449005, 0.050924237817525864, 0.0233306847512722, 0.024862566962838173, 0.023655792698264122, 0.27544450759887695, 0.003734767436981201, 0.11505374312400818, 0.011116929352283478, 0.0014584463788196445, 0.020693376660346985, 0.007880117744207382, 0.002402489073574543, 0.011086448095738888, 0.002719102194532752, 0.2734932601451874], [0.08786849677562714, 0.07873991131782532, 0.007443486247211695, 0.08534324169158936, 0.13192932307720184, 0.051634132862091064, 0.1290907859802246, 0.16110031306743622, 0.04151362180709839, 0.026001691818237305, 0.012287674471735954, 0.00825527124106884, 0.004304138012230396, 0.0005324689554981887, 0.000817639462184161, 0.0006914355326443911, 0.012208282016217709, 0.16023802757263184], [0.020997747778892517, 0.028613710775971413, 0.0028170619625598192, 0.011209635995328426, 0.020777858793735504, 0.013467694632709026, 0.031591493636369705, 0.42236313223838806, 0.01803545653820038, 0.0007473767036572099, 0.002152730245143175, 0.0018630228005349636, 0.0015851740026846528, 0.000524768081959337, 0.0007658032118342817, 0.0005435078055597842, 0.0017420020885765553, 0.42020183801651], [0.07159120589494705, 0.009128428995609283, 0.008388066664338112, 0.02050822600722313, 0.03704596683382988, 0.015235220082104206, 0.03372124582529068, 0.3881596326828003, 0.020810531452298164, 0.0014371079159900546, 0.0006016292609274387, 0.00110178894829005, 0.001312226871959865, 0.0019524155650287867, 0.0005050707259215415, 0.0012529748491942883, 0.0021741411183029413, 0.3850741386413574], [0.024134360253810883, 0.01884893886744976, 0.0019611737225204706, 0.07982149720191956, 0.00856749713420868, 0.011832735501229763, 0.016498468816280365, 0.07577969878911972, 0.18921208381652832, 0.044244252145290375, 0.21055810153484344, 0.03738494962453842, 0.08821472525596619, 0.013897145166993141, 0.018187731504440308, 0.012588427402079105, 0.0727427527308464, 0.07552547007799149], [0.008714757859706879, 0.002541179768741131, 0.0045815035700798035, 0.0016537427436560392, 0.0006920216255821288, 0.000812988611869514, 0.0030611229594796896, 0.4834141135215759, 0.0028268108144402504, 0.001211855560541153, 0.0007139019435271621, 0.0004973462200723588, 0.0011683146003633738, 0.0018893388332799077, 0.0010382577311247587, 0.001477004960179329, 0.0034945488441735506, 0.4802112281322479], [0.07538861781358719, 0.0019908801186829805, 0.00016928251716308296, 0.0036453413777053356, 0.0013412726111710072, 0.0007771541713736951, 0.009777292609214783, 0.14006684720516205, 0.06898313760757446, 0.02358212321996689, 0.028350073844194412, 0.011827371083199978, 0.007585453800857067, 0.004170604981482029, 0.005918113049119711, 0.0037683381233364344, 0.4736504852771759, 0.13900765776634216], [0.053609833121299744, 0.0027122804895043373, 0.0013741563307121396, 0.010171434842050076, 0.003301667282357812, 0.0015122806653380394, 0.0032070139423012733, 0.15438544750213623, 0.02127065882086754, 0.08232079446315765, 0.09518694132566452, 0.061465248465538025, 0.15887390077114105, 0.017959775403141975, 0.01296448614448309, 0.043467506766319275, 0.12253598868846893, 0.1536807119846344], [0.021868251264095306, 0.0006798853864893317, 0.00013983949611429125, 0.0006761383265256882, 0.0008401250815950334, 0.0002567068731877953, 0.001544252852909267, 0.33480075001716614, 0.03234878554940224, 0.009982611984014511, 0.031463176012039185, 0.040859490633010864, 0.01975642889738083, 0.0037986801471561193, 0.021453168243169785, 0.015738775953650475, 0.13134175539016724, 0.3324512243270874], [0.017869671806693077, 0.0006073967088013887, 6.925209891051054e-05, 0.0005125525640323758, 0.0016824217746034265, 0.0008105522720143199, 0.0012064914917573333, 0.414646714925766, 0.06592455506324768, 0.004655258264392614, 0.004062978085130453, 0.01831706240773201, 0.006800558418035507, 0.0020802076905965805, 0.005607981700450182, 0.005410715471953154, 0.038291577249765396, 0.4114440381526947], [0.010083329863846302, 0.0005181630258448422, 6.733813643222675e-05, 0.0005584257887676358, 0.0006343962741084397, 0.00022722514404449612, 0.0004363825428299606, 0.42601510882377625, 0.022821780294179916, 0.005259039346128702, 0.010027807205915451, 0.011133420281112194, 0.02410985715687275, 0.005336049944162369, 0.031816355884075165, 0.013096733950078487, 0.014731619507074356, 0.4231269359588623], [0.010987350717186928, 0.00032247870694845915, 0.0001274297828786075, 0.0003678190987557173, 0.0004991329042240977, 0.00010428454697830603, 0.00033050408819690347, 0.443516343832016, 0.0031876564025878906, 0.0066018919460475445, 0.005139416083693504, 0.0034534300211817026, 0.017837833613157272, 0.021695058792829514, 0.01918330416083336, 0.01868596486747265, 0.007696225307881832, 0.4402638375759125], [0.004739687778055668, 0.00021732789173256606, 4.957415148965083e-05, 0.00011218662984902039, 8.171088120434433e-05, 8.410663576796651e-05, 0.00018556590657681227, 0.4799368977546692, 0.01067147497087717, 0.0010011494159698486, 0.0015047190245240927, 0.0015781647525727749, 0.009503837674856186, 0.002036292338743806, 0.006902705412358046, 0.0032198859844356775, 0.002824985422194004, 0.47534966468811035], [0.009694122709333897, 0.00013188092270866036, 0.00011364813690306619, 0.0001653578510740772, 0.00027660318301059306, 0.00011351685679983348, 0.0002259511238662526, 0.46344834566116333, 0.00470264907926321, 0.0031935160513967276, 0.005761472973972559, 0.0015680153155699372, 0.010889408178627491, 0.019292088225483894, 0.004878138657659292, 0.012377995997667313, 0.004325077403336763, 0.45884230732917786], [0.019373858347535133, 0.0007883429643698037, 0.00017994962399825454, 0.0016581554664298892, 0.00029690415249206126, 0.00028907076921314, 0.0014942275593057275, 0.20906688272953033, 0.10235230624675751, 0.04462483152747154, 0.12642987072467804, 0.022290386259555817, 0.06933347135782242, 0.02957170456647873, 0.012532584369182587, 0.02896013855934143, 0.12298861145973206, 0.20776866376399994], [0.008708353154361248, 0.0025395085103809834, 0.004584540147334337, 0.0016522107180207968, 0.0006911491509526968, 0.0008122901199385524, 0.003057724330574274, 0.48344922065734863, 0.0028183197136968374, 0.001207541092298925, 0.0007100453949533403, 0.0004946000408381224, 0.00116223213262856, 0.0018868532497435808, 0.0010321945883333683, 0.0014725670916959643, 0.0034770735073834658, 0.4802435636520386]], [[0.011996145360171795, 0.004913589917123318, 0.004026347771286964, 0.011123217642307281, 0.009635357186198235, 0.006956611759960651, 0.006216733250766993, 0.12812213599681854, 0.1031179428100586, 0.034350279718637466, 0.07854577898979187, 0.027663087472319603, 0.13740403950214386, 0.07585521787405014, 0.06494022905826569, 0.12949348986148834, 0.0378512404859066, 0.1277884542942047], [0.02760428562760353, 0.02297535538673401, 0.40235787630081177, 0.07617504149675369, 0.08625110238790512, 0.10824012756347656, 0.035532280802726746, 0.10553421825170517, 0.0029633608646690845, 0.004883293993771076, 0.0017516834195703268, 0.0032654781825840473, 0.007056998088955879, 0.0019496642053127289, 0.002218260196968913, 0.0029933408368378878, 0.003147586015984416, 0.1051001027226448], [0.008856088854372501, 0.015828043222427368, 0.015604665502905846, 0.015109403990209103, 0.028514839708805084, 0.016432611271739006, 0.010414733551442623, 0.44084274768829346, 0.0013667054008692503, 0.0005336891044862568, 0.00017003854736685753, 0.0006522036856040359, 0.0018544610356912017, 0.0008403001702390611, 0.0006350196781568229, 0.003467731410637498, 0.0015353471972048283, 0.4373413920402527], [0.024437032639980316, 0.023355457931756973, 0.024685088545084, 0.014856013469398022, 0.015948738902807236, 0.7288690209388733, 0.04732900485396385, 0.051068879663944244, 0.004947029519826174, 0.0025470710825175047, 0.0009844442829489708, 0.00108275655657053, 0.0006653794553130865, 0.0026595108211040497, 0.0015449452912434936, 0.00152937404345721, 0.0025642244145274162, 0.050926048308610916], [0.02571370266377926, 0.020106373354792595, 0.0033918051049113274, 0.02725696936249733, 0.004704214166849852, 0.7535688877105713, 0.03942834213376045, 0.060158148407936096, 0.0005814685137011111, 0.0005405583651736379, 0.001243057893589139, 0.0004210031474940479, 3.579453186830506e-05, 0.0006833235966041684, 0.00024045215104706585, 0.0007753124227747321, 0.0014436834026128054, 0.05970693379640579], [0.011583438143134117, 0.04733068123459816, 0.08784603327512741, 0.049929507076740265, 0.054505132138729095, 0.021627379581332207, 0.039088040590286255, 0.3325674831867218, 0.00570160336792469, 0.0038756723515689373, 0.0006169340922497213, 0.001556567964144051, 0.006761492229998112, 0.0017814283492043614, 0.0004822846094612032, 0.0019400996388867497, 0.0025993878953158855, 0.3302067220211029], [0.0034449880477041006, 0.018932290375232697, 0.030160507187247276, 0.11785625666379929, 0.08165060728788376, 0.0570872500538826, 0.012407434172928333, 0.32325470447540283, 0.008730349130928516, 0.0027159927412867546, 0.007050759624689817, 0.004244364332407713, 0.005804788786917925, 0.0013041881611570716, 0.0018311206949874759, 0.0008476540679112077, 0.0010151817696169019, 0.3216615915298462], [0.0013454597210511565, 0.000340208993293345, 0.0027407421730458736, 0.00042145056067965925, 0.0012664170935750008, 0.0005918154492974281, 0.0007605473510921001, 0.49454542994499207, 0.00031816549017094076, 0.0003723735280800611, 0.0002949512272607535, 0.0003420430002734065, 0.0010878939647227526, 0.0012398845283314586, 0.0005953923100605607, 0.000711281260009855, 0.0006114766583777964, 0.4924144744873047], [0.014603598043322563, 0.0010387102374807, 0.0017541765701025724, 0.003581329481676221, 0.002705339575186372, 0.027621690183877945, 0.002476586028933525, 0.3321686387062073, 0.03009900450706482, 0.02675703540444374, 0.08536726981401443, 0.06164754182100296, 0.009875042364001274, 0.02417687699198723, 0.015487182885408401, 0.015708209946751595, 0.015076937153935432, 0.32985490560531616], [0.03931818902492523, 0.005837051663547754, 0.0037418727297335863, 0.002679110737517476, 0.002769144019111991, 0.03984701260924339, 0.013755337335169315, 0.21775192022323608, 0.05270848423242569, 0.029149863868951797, 0.031402669847011566, 0.018822532147169113, 0.11762495338916779, 0.09684694558382034, 0.017414048314094543, 0.036061134189367294, 0.05790488421916962, 0.21636490523815155], [0.029290076345205307, 0.0004700493300333619, 0.0002293706638738513, 4.196711961412802e-05, 5.4100644774734974e-05, 2.3542812414234504e-05, 0.0014677825383841991, 0.03576879948377609, 0.001094628474675119, 0.0029113944619894028, 0.00627022422850132, 0.008324631489813328, 0.8364294767379761, 0.004814554005861282, 0.003830494126304984, 0.02514980547130108, 0.008247027173638344, 0.03558194637298584], [0.027225306257605553, 0.0021201432682573795, 0.0002723569341469556, 0.0008407172281295061, 0.0019364149775356054, 0.0009136553853750229, 0.0018907625926658511, 0.061896830797195435, 0.01298042107373476, 0.025598932057619095, 0.3063618540763855, 0.0035424665547907352, 0.2524365782737732, 0.17021645605564117, 0.03744802996516228, 0.022839857265353203, 0.01002265140414238, 0.061456598341464996], [0.013010939583182335, 0.0002208953519584611, 2.1055831894045696e-05, 4.123813414480537e-05, 1.3847298760083504e-05, 2.1027217371738516e-05, 0.000954337534494698, 0.028867051005363464, 0.0005948854377493262, 0.00116308918222785, 0.009013562463223934, 0.0011049762833863497, 0.0008708173991180956, 0.8988788723945618, 0.007362909149378538, 0.0017601341241970658, 0.007317854557186365, 0.028782563284039497], [0.012863477692008018, 9.95324517134577e-05, 0.0002846286806743592, 9.267549467040226e-05, 0.00017332012066617608, 0.00041530790622346103, 0.0007888968102633953, 0.37059545516967773, 0.0003073810657951981, 0.0010063120862469077, 0.002162109361961484, 0.003244582563638687, 0.041095808148384094, 0.05219404771924019, 0.010928490199148655, 0.11836755275726318, 0.017786459997296333, 0.36759400367736816], [0.011986113153398037, 0.00014129982446320355, 0.0002080744889099151, 0.00017948435561265796, 0.000358286575647071, 0.0013989818980917335, 0.000689180102199316, 0.08219180256128311, 0.0005037696682848036, 0.0007199195679277182, 0.0046662939712405205, 0.005494982469826937, 0.31061920523643494, 0.055167943239212036, 0.00286984839476645, 0.4319482743740082, 0.009317115880548954, 0.08153939247131348], [0.005921895615756512, 0.00012437916302587837, 0.0007156059145927429, 0.00011545241432031617, 0.00017756132001522928, 0.0006804969161748886, 0.0004675225354731083, 0.38896453380584717, 0.0010067278053611517, 0.0005807313718833029, 0.006095216143876314, 0.0013638243544846773, 0.002726960927248001, 0.18020647764205933, 0.009589838795363903, 0.008437239564955235, 0.006018304731696844, 0.3868071734905243], [0.004934112075716257, 0.0012570999097079039, 0.002957609947770834, 0.005415930878371, 0.0038479838985949755, 0.003077075118198991, 0.0011143018491566181, 0.4024099111557007, 0.027998069301247597, 0.01099197193980217, 0.032021816819906235, 0.014708677306771278, 0.032357651740312576, 0.014983151108026505, 0.013188653625547886, 0.01618000492453575, 0.012514408677816391, 0.4000415802001953], [0.001346377655863762, 0.0003403586451895535, 0.002746062818914652, 0.0004219746624585241, 0.0012658352497965097, 0.0005921246483922005, 0.0007613693014718592, 0.4945440888404846, 0.0003165934467688203, 0.00037199343205429614, 0.0002943632425740361, 0.000341233768267557, 0.0010893320431932807, 0.0012401697458699346, 0.0005934421205893159, 0.0007121090893633664, 0.0006103898631408811, 0.49241217970848083]], [[0.008347292430698872, 0.007073314860463142, 0.011688168160617352, 0.007694452069699764, 0.0030551007948815823, 0.01230920385569334, 0.026996677741408348, 0.4232940077781677, 0.007361052092164755, 0.005052684806287289, 0.00528979254886508, 0.0037535419687628746, 0.010292471386492252, 0.005951473489403725, 0.0032883821986615658, 0.007135386113077402, 0.029627077281475067, 0.4217899441719055], [0.012166834436357021, 0.020551320165395737, 0.012199698016047478, 0.008225611411035061, 0.002132251625880599, 0.019635185599327087, 0.041180238127708435, 0.4382820427417755, 0.0015418716939166188, 0.0008361851214431226, 0.0015492243692278862, 0.0009717245120555162, 0.0011796182952821255, 0.00036575610283762217, 0.0001766500499797985, 0.0002098502591252327, 0.003527456196025014, 0.4352685809135437], [0.030074771493673325, 0.1658446341753006, 0.05010632425546646, 0.010934139601886272, 0.005076300352811813, 0.03991236537694931, 0.03007069230079651, 0.32388290762901306, 0.001192804891616106, 0.006942467298358679, 0.000920100836083293, 0.0014718171441927552, 0.0009099251474253833, 0.0038998513482511044, 0.0008337310864590108, 0.0011803662637248635, 0.004102854523807764, 0.322643905878067], [0.01110126543790102, 0.0619017668068409, 0.02985478937625885, 0.005762813612818718, 0.009134284220635891, 0.013322681188583374, 0.025783691555261612, 0.415605366230011, 0.0038078322540968657, 0.0006456972332671285, 0.0002390683366684243, 0.00046412122901529074, 0.00040893591358326375, 0.00029534261557273567, 0.00019078620243817568, 0.0004543244722299278, 0.006886566989123821, 0.41414064168930054], [0.005867430940270424, 0.044631391763687134, 0.1484639197587967, 0.065543532371521, 0.029931917786598206, 0.03144162893295288, 0.047110166400671005, 0.3108271360397339, 0.0010152263566851616, 0.0006391875213012099, 0.0006230738945305347, 0.00013654485519509763, 0.00012888931087218225, 0.00017961599223781377, 2.554841739765834e-05, 0.0001141789834946394, 0.004103336948901415, 0.30921727418899536], [0.0128662483766675, 0.021574730053544044, 0.045648153871297836, 0.1595083624124527, 0.0832856297492981, 0.0511171817779541, 0.05326658487319946, 0.28108298778533936, 0.0017035874770954251, 0.0007465326343663037, 0.0008814543834887445, 0.00021056810510344803, 0.0016528988489881158, 0.0007207044982351363, 0.00017595083045307547, 0.000540193694178015, 0.005646087229251862, 0.2793722152709961], [0.01650756038725376, 0.017370162531733513, 0.02776099555194378, 0.05718556046485901, 0.03310411050915718, 0.029786929488182068, 0.06338715553283691, 0.37412595748901367, 0.0009676179033704102, 0.0007505370303988457, 0.00020019349176436663, 0.00010222207492915913, 0.00020879300427623093, 0.00013269911869429052, 8.885706483852118e-05, 0.00023076360230334103, 0.006378417368978262, 0.37171152234077454], [0.001320573384873569, 0.02112177573144436, 0.00078882573870942, 0.0035127478186041117, 0.002810243982821703, 0.0011248545488342643, 0.008719894103705883, 0.4653289020061493, 0.009275288321077824, 0.0024855672381818295, 0.0010535444598644972, 0.0036750000435858965, 0.0030698601622134447, 0.0013927114196121693, 0.0018560695461928844, 0.0003926416684407741, 0.008970537222921848, 0.46310096979141235], [0.0020373601000756025, 0.0002334932651137933, 0.00024932503583841026, 0.0002819305518642068, 0.00030200916808098555, 0.0001846261293394491, 0.002429487183690071, 0.4835171103477478, 0.014109372161328793, 0.0034968170803040266, 0.0042427233420312405, 0.0018762131221592426, 0.0004942778614349663, 0.000119127900688909, 1.4539596122631337e-05, 0.00044640194391831756, 0.006545055657625198, 0.479420006275177], [0.016087517142295837, 0.003133656457066536, 0.0006052759708836675, 0.0005649469676427543, 0.00024796498473733664, 0.000685958715621382, 0.007310146000236273, 0.3347473442554474, 0.20004133880138397, 0.025215426459908485, 0.03432096913456917, 0.025148525834083557, 0.0045240093022584915, 0.0009061272721737623, 0.000816685555037111, 0.0012317073997110128, 0.013669912703335285, 0.3307425081729889], [0.01101798564195633, 0.00022815207194071263, 5.0276816182304174e-05, 0.00010124264372279868, 3.662201561382972e-05, 0.0002312665164936334, 0.0023055875208228827, 0.29386597871780396, 0.29890191555023193, 0.05128135159611702, 0.0193930733948946, 0.01304793730378151, 0.013375913724303246, 0.0016636126674711704, 0.00011260924657108262, 0.0003172166761942208, 0.003347430843859911, 0.2907218337059021], [0.012371794320642948, 0.00037118876934982836, 4.9032369133783504e-05, 9.760192187968642e-05, 8.330099080922082e-05, 0.00039955563261173666, 0.00328175351023674, 0.3320257365703583, 0.20057514309883118, 0.04440563917160034, 0.03294280543923378, 0.01272515207529068, 0.020374519750475883, 0.004847241099923849, 0.000514045066665858, 0.001047333120368421, 0.004732571076601744, 0.32915550470352173], [0.01505112461745739, 0.00020861977827735245, 1.2440397767932154e-05, 0.00015205959789454937, 0.00021048763301223516, 0.0006974166026338935, 0.0011141487630084157, 0.03924204036593437, 0.06885363161563873, 0.062077902257442474, 0.6160556077957153, 0.09865061193704605, 0.038207098841667175, 0.008680247701704502, 0.007429773453623056, 0.0014339692424982786, 0.0030279536731541157, 0.03889484331011772], [0.006303845439106226, 0.00013369455700740218, 4.528972931439057e-05, 5.521931961993687e-05, 2.4003078578971326e-05, 0.00021608064707834274, 0.00018654232553672045, 0.10581665486097336, 0.004308381117880344, 0.013433510437607765, 0.01945858635008335, 0.017482150346040726, 0.6761730313301086, 0.030867910012602806, 0.003231524955481291, 0.013448244892060757, 0.003976153675466776, 0.10483919084072113], [0.010721512138843536, 0.0004249968333169818, 1.0030971679952927e-05, 9.187637624563649e-05, 2.7815065550385043e-05, 0.00013184263661969453, 0.0002145941834896803, 0.11136484146118164, 0.018052075058221817, 0.00682453578338027, 0.040650613605976105, 0.018085967749357224, 0.6532189249992371, 0.011425470001995564, 0.009175922721624374, 0.004744285251945257, 0.004408958368003368, 0.11042582988739014], [0.04096667468547821, 0.0005897438386455178, 9.655301255406812e-05, 0.0005358662456274033, 0.00014150395873002708, 0.0010689528426155448, 0.000575839658267796, 0.12950710952281952, 0.004532185848802328, 0.012512191198766232, 0.017870109528303146, 0.01477788109332323, 0.27780604362487793, 0.11799512803554535, 0.19233402609825134, 0.0347299762070179, 0.025127271190285683, 0.12883298099040985], [0.01642780564725399, 0.0007707946933805943, 0.0004469251143746078, 0.0003390251658856869, 0.0001602821284905076, 0.00020823873637709767, 0.0008648918592371047, 0.39459383487701416, 0.003554544411599636, 0.0061580948531627655, 0.003981753718107939, 0.0038765943609178066, 0.014454531483352184, 0.022830048575997353, 0.027372470125555992, 0.022333567962050438, 0.08901149779558182, 0.39261507987976074], [0.0013212139019742608, 0.02106444165110588, 0.000785943353548646, 0.003510724985972047, 0.002809367375448346, 0.0011240765452384949, 0.008711636066436768, 0.4653952419757843, 0.009256224147975445, 0.002481907606124878, 0.0010532180313020945, 0.003674465464428067, 0.003073080675676465, 0.001395158120431006, 0.0018571591936051846, 0.0003927380603272468, 0.008929652161896229, 0.4631638824939728]], [[0.003969502169638872, 0.01257952768355608, 0.0014828767161816359, 0.003658238798379898, 0.0018746239366009831, 0.000527728465385735, 0.0006019650609232485, 0.045413777232170105, 0.8255900740623474, 0.017119169235229492, 0.013761191628873348, 0.0025100421626120806, 0.015160192735493183, 0.00494123762473464, 0.0006171527202241123, 0.0024845118168741465, 0.0026149291079491377, 0.045093290507793427], [0.03376736491918564, 0.02624046616256237, 0.09826327115297318, 0.49166977405548096, 0.0443747341632843, 0.02409864403307438, 0.01706537976861, 0.12298266589641571, 0.002857060171663761, 0.0015037168050184846, 0.0023935257922858, 0.0012691289884969592, 0.0014635312836617231, 0.0003694547340273857, 0.004346905741840601, 0.000949643028434366, 0.00462000397965312, 0.12176477164030075], [0.03816201165318489, 0.010690726339817047, 0.008575605228543282, 0.11674462258815765, 0.011617607437074184, 0.012048467062413692, 0.013223858550190926, 0.3950999975204468, 0.00017782034410629421, 0.0001876934984466061, 0.0001616015943000093, 8.265699580078945e-05, 0.000511318736243993, 0.00020436801423784345, 0.0003378496039658785, 0.0011588378110900521, 0.001781668048352003, 0.38923338055610657], [0.03546600788831711, 0.0045999218709766865, 0.014416317455470562, 0.021481633186340332, 0.22190208733081818, 0.40573930740356445, 0.0730026587843895, 0.11045173555612564, 0.0006188646657392383, 0.0001799718156689778, 8.400949445785955e-05, 7.241228740895167e-05, 9.632902219891548e-05, 0.00011555966193554923, 6.104312342358753e-05, 0.00021376564109232277, 0.0018944800831377506, 0.10960405319929123], [0.02147112600505352, 0.005898535251617432, 0.023070750758051872, 0.018133942037820816, 0.05560937523841858, 0.27779847383499146, 0.09185220301151276, 0.25252285599708557, 0.0003541092446539551, 0.00036157225258648396, 0.00011625736078713089, 3.6771161830984056e-05, 7.849198300391436e-05, 4.8098794650286436e-05, 5.9549882280407473e-05, 5.759340638178401e-05, 0.0008176950505003333, 0.2517125904560089], [0.008070970885455608, 0.007869608700275421, 0.007888351567089558, 0.029925720766186714, 0.014506149105727673, 0.004757189657539129, 0.3125043511390686, 0.3057909905910492, 0.0008989110356196761, 0.0006209244602359831, 0.0003623803786467761, 7.483173976652324e-05, 0.00016446711379103363, 0.00010517019109101966, 0.00017119693802669644, 0.00017368233238812536, 0.0017629835056141019, 0.30435213446617126], [0.012778351083397865, 0.010715442709624767, 0.0038239823188632727, 0.008288733661174774, 0.01263072807341814, 0.0022610174492001534, 0.018902922049164772, 0.45526716113090515, 0.019165638834238052, 0.00172859663143754, 0.001240239362232387, 0.001619248534552753, 0.0014987903414294124, 0.00012164933286840096, 2.418308940832503e-05, 6.70822337269783e-05, 0.00024413120991084725, 0.44962209463119507], [0.005108638200908899, 0.008485332131385803, 0.0065895006991922855, 0.006771457847207785, 0.003939557820558548, 0.001196507248096168, 0.015056723728775978, 0.44964849948883057, 0.006074128672480583, 0.006539452355355024, 0.0023363055661320686, 0.0031349281780421734, 0.004733178298920393, 0.0035488782450556755, 0.008176732808351517, 0.004378313664346933, 0.017132198438048363, 0.4471496641635895], [0.011817888356745243, 0.000634176074527204, 0.0005601576995104551, 0.0006655228207819164, 0.00284595531411469, 0.0008428902365267277, 0.0020386625546962023, 0.14202013611793518, 0.11172430962324142, 0.13493962585926056, 0.24618855118751526, 0.15189166367053986, 0.04082086682319641, 0.00791765097528696, 0.00030873878858983517, 0.0014822013908997178, 0.0023580908309668303, 0.14094287157058716], [0.060308389365673065, 0.0003023503231815994, 0.00026544707361608744, 0.0011064837453886867, 0.0003962899500038475, 0.0003570162516552955, 0.0009120738250203431, 0.1327182948589325, 0.007835477590560913, 0.024260230362415314, 0.3249751031398773, 0.10213549435138702, 0.18481327593326569, 0.009435553103685379, 0.0029146599117666483, 0.01215957198292017, 0.003227263456210494, 0.13187702000141144], [0.07369168102741241, 0.00023076521756593138, 0.0001246169558726251, 8.543946751160547e-05, 0.00019704832811839879, 0.00032051015296019614, 0.0004938419442623854, 0.15644682943820953, 0.012989765033125877, 0.025875240564346313, 0.023394618183374405, 0.28963664174079895, 0.23246793448925018, 0.015953166410326958, 0.002105123596265912, 0.007280472666025162, 0.004017055034637451, 0.15468920767307281], [0.024392275139689445, 0.001122897956520319, 0.000502153707202524, 0.00028037428273819387, 0.000392577814636752, 0.00027350406162440777, 0.00042290077544748783, 0.1729099452495575, 0.009640964679419994, 0.05358132719993591, 0.21807551383972168, 0.031131450086832047, 0.22167791426181793, 0.052471183240413666, 0.008676049299538136, 0.021627817302942276, 0.010593825951218605, 0.17222729325294495], [0.013675125315785408, 0.0006388830952346325, 0.000585226051043719, 3.503863263176754e-05, 9.8469688964542e-05, 0.00034462183248251677, 0.00018418327090330422, 0.2273574024438858, 0.0014181563165038824, 0.00642968388274312, 0.004585898015648127, 0.010099072009325027, 0.026246793568134308, 0.3334694504737854, 0.0965573862195015, 0.02934039942920208, 0.02047708071768284, 0.22845718264579773], [0.026937512680888176, 0.0005549369961954653, 0.000770975137129426, 0.00025088211987167597, 0.00010401198960607871, 0.00010790403030114248, 0.00019856082508340478, 0.23651538789272308, 0.0009625327656976879, 0.002464547986164689, 0.007467655930668116, 0.006594952195882797, 0.032554153352975845, 0.01249753963202238, 0.3159988522529602, 0.06341829895973206, 0.056838732212781906, 0.23576265573501587], [0.015613829717040062, 0.00019345112377777696, 0.0002589585492387414, 0.00018742497195489705, 0.0002090691268676892, 2.982537989737466e-05, 2.8957609174540266e-05, 0.252867192029953, 0.00010565507545834407, 0.00023520950344391167, 0.0007280115969479084, 0.0055565666407346725, 0.020048445090651512, 0.021288657560944557, 0.00784510001540184, 0.3855004906654358, 0.03890497609972954, 0.25039809942245483], [0.004645058885216713, 5.170485019334592e-05, 4.014025398646481e-05, 8.966470340965316e-05, 7.701010326854885e-05, 2.4341788957826793e-05, 0.000135847381898202, 0.46545132994651794, 0.0002459289680700749, 0.00012543954653665423, 0.00012812289060093462, 0.00013916310854256153, 0.001820615609176457, 0.0022443567868322134, 0.006827367935329676, 0.008864760398864746, 0.04500599950551987, 0.46408307552337646], [0.01626325584948063, 0.0014857491478323936, 0.0009607687243260443, 0.001464369473978877, 0.0011640123557299376, 0.00022834408446215093, 0.00042222090996801853, 0.4678059220314026, 0.009290090762078762, 0.0013528758427128196, 0.0003208205453120172, 0.0008764620870351791, 0.0018989588133990765, 0.0012978791492059827, 0.00037339067785069346, 0.0024701012298464775, 0.027039363980293274, 0.46528536081314087], [0.005099104717373848, 0.008477045223116875, 0.00661819614470005, 0.006784116383641958, 0.003922952804714441, 0.001188013469800353, 0.015092844143509865, 0.4497091472148895, 0.005995586980134249, 0.006497753784060478, 0.0023392660077661276, 0.0031339593697339296, 0.004678028170019388, 0.0035338206216692924, 0.008244600147008896, 0.004376344848424196, 0.01710747741162777, 0.447201669216156]], [[0.008247443474829197, 0.002816413762047887, 0.00600821990519762, 0.0011385357938706875, 0.0005382300587370992, 0.0011564248707145452, 0.0016848298255354166, 0.14612874388694763, 0.018574051558971405, 0.0763675644993782, 0.009258811362087727, 0.004317607264965773, 0.007590665947645903, 0.2764110565185547, 0.037232525646686554, 0.17672036588191986, 0.07996208965778351, 0.1458463817834854], [0.004182016476988792, 0.01182102132588625, 0.21631711721420288, 0.034075286239385605, 0.01273618545383215, 0.009955987334251404, 0.005343809723854065, 0.3453264832496643, 0.0006402534781955183, 0.004158944357186556, 0.0017625316977500916, 0.002574850572273135, 0.0006458315765485168, 0.0017979649128392339, 0.0015021010767668486, 0.001274686655960977, 0.00162304297555238, 0.34426191449165344], [0.010286623612046242, 0.028465386480093002, 0.018378525972366333, 0.015107817947864532, 0.03190508857369423, 0.0075805941596627235, 0.0046639153733849525, 0.44160032272338867, 0.00014390626165550202, 0.0010316305560991168, 0.0001327868812950328, 0.0007357039721682668, 0.000191757659194991, 0.00019533834711182863, 0.0003613782173488289, 0.0001193076022900641, 0.0008164099417626858, 0.4382835030555725], [0.011566615663468838, 0.04819989576935768, 0.028468670323491096, 0.016766829416155815, 0.00974301714450121, 0.03461141884326935, 0.009259698912501335, 0.41871845722198486, 0.00025676103541627526, 0.0014121555723249912, 0.00019569290452636778, 0.0017484136624261737, 0.00024722618400119245, 0.00024318366195075214, 0.0001951500162249431, 0.000252362311584875, 0.0017380672506988049, 0.41637641191482544], [0.013766543939709663, 0.017683319747447968, 0.000722832337487489, 0.06131168082356453, 0.01137147843837738, 0.004767164587974548, 0.005644233897328377, 0.4431621730327606, 0.0003724883426912129, 0.00021470803767442703, 0.00011587402696022764, 5.6924691307358444e-05, 3.9539743738714606e-05, 1.929449717863463e-05, 4.187597824056866e-06, 3.0248711482272483e-05, 0.0005616232519969344, 0.44015568494796753], [0.0060445466078817844, 0.01164760161191225, 0.0013837093720212579, 0.06317942589521408, 0.09100787341594696, 0.0029838383197784424, 0.007420079316943884, 0.40922898054122925, 8.706039079697803e-05, 8.074053039308637e-05, 2.907108500949107e-05, 5.8161105698673055e-05, 4.0204999095294625e-05, 8.383581734960899e-05, 1.591242107679136e-05, 3.235643816879019e-05, 0.00041689988574944437, 0.406259685754776], [0.032161008566617966, 0.010584022849798203, 0.0092160077765584, 0.01128107588738203, 0.029773017391562462, 0.007809610106050968, 0.0522514283657074, 0.4211822748184204, 0.00102250708732754, 0.0016722879372537136, 0.0002510949852876365, 0.0007945416728034616, 3.263825783506036e-05, 0.00011504554277053103, 0.00013754762767348439, 0.00028992712032049894, 0.0027930138166993856, 0.41863298416137695], [0.015181370079517365, 0.006408156361430883, 0.007607686333358288, 0.01065170019865036, 0.006129681598395109, 0.0024463848676532507, 0.003362618386745453, 0.45542198419570923, 0.0008729765540920198, 0.0039505986496806145, 0.007388199679553509, 0.003560049459338188, 0.010845120064914227, 0.0036114456597715616, 0.0036602281033992767, 0.0016491906717419624, 0.004032702650874853, 0.4532198905944824], [0.014200188219547272, 0.0005860925302840769, 0.00016889662947505713, 0.0005540382699109614, 0.00010086732072522864, 0.00016858283197507262, 0.0017211150843650103, 0.4494353234767914, 0.02560596540570259, 0.03331351280212402, 0.006417346652597189, 0.014711021445691586, 0.0009417634573765099, 0.0005411988240666687, 4.0815612010192126e-05, 0.0004262283619027585, 0.005276425275951624, 0.44579067826271057], [0.008584382012486458, 0.0005467188311740756, 0.0007814770215190947, 0.0011910529574379325, 0.0001276609255000949, 0.0006169656408019364, 0.0013619710225611925, 0.3699909448623657, 0.014661240391433239, 0.0052435328252613544, 0.044780880212783813, 0.06394939869642258, 0.11221115291118622, 0.0021647082176059484, 0.0006920301239006221, 0.002420577686280012, 0.003185209119692445, 0.36749014258384705], [0.003927377983927727, 0.0002569934003986418, 4.808433004654944e-05, 3.2888252462726086e-05, 9.218096238328144e-06, 2.2603482648264617e-05, 0.001038766698911786, 0.2935420274734497, 0.0037835179828107357, 0.01143865566700697, 0.0034838702995330095, 0.32152360677719116, 0.06624939292669296, 0.0007720467401668429, 0.0007473226869478822, 0.0003104837378486991, 0.000946320709772408, 0.29186689853668213], [0.001197131467051804, 0.00016214334755204618, 1.7249150914722122e-05, 0.0009461467852815986, 0.00011331559653626755, 4.9766960728447884e-05, 0.00011373761662980542, 0.15649928152561188, 0.007998321205377579, 0.009855616837739944, 0.6284424066543579, 0.022050749510526657, 0.014359510503709316, 0.0013128621503710747, 0.00022072491992730647, 0.0009575151489116251, 0.0004313573008403182, 0.15527227520942688], [0.012962265871465206, 0.0002732524008024484, 0.00015645349049009383, 9.163210779661313e-05, 4.9000194849213585e-05, 0.00032009463757276535, 0.0004199116083327681, 0.4104534685611725, 0.00046375885722227395, 0.013947609812021255, 0.05021406337618828, 0.024885185062885284, 0.01871352642774582, 0.04368758574128151, 0.008200853131711483, 0.003934172447770834, 0.0032112181652337313, 0.40801599621772766], [0.006350010633468628, 0.0006185273523442447, 0.00034835527185350657, 3.490694143692963e-05, 2.4068280254141428e-05, 2.9817081667715684e-05, 0.00011548875772859901, 0.4518931806087494, 0.0001715605176286772, 0.0016938390908762813, 0.0008668094524182379, 0.0018982070032507181, 0.04280824214220047, 0.009452487342059612, 0.031136678531765938, 0.0009420808055438101, 0.0020883462857455015, 0.44952741265296936], [0.010732915252447128, 0.0007329983054660261, 0.00018865354650188237, 4.775397974299267e-05, 1.7467238649260253e-05, 3.660691436380148e-05, 0.0002185232879128307, 0.36163878440856934, 0.00023844462702982128, 0.0025841989554464817, 0.0016025567892938852, 0.07874348759651184, 0.11395314335823059, 0.02271920070052147, 0.0235285721719265, 0.01399135310202837, 0.008950773626565933, 0.3600744903087616], [0.014588771387934685, 0.0006741524557583034, 0.00041906212572939694, 0.00012240612704772502, 7.341891614487395e-05, 0.0001579479139763862, 7.422607450280339e-05, 0.21881666779518127, 6.514575215987861e-05, 0.0017151087522506714, 0.003643926465883851, 0.0019789873622357845, 0.00489234272390604, 0.012301226146519184, 0.5151316523551941, 0.0015710191801190376, 0.005680277477949858, 0.2180936336517334], [0.03403805196285248, 0.001776989782229066, 0.0020504712592810392, 0.0009265231201425195, 0.0012850858038291335, 0.00026022779638879, 0.000903844484128058, 0.4242282509803772, 0.0023154644295573235, 0.006384273059666157, 0.0012632581638172269, 0.005996176972985268, 0.0010924130911007524, 0.0060777971521019936, 0.007183297071605921, 0.019482454285025597, 0.06262211501598358, 0.4221133589744568], [0.015141116455197334, 0.00640959432348609, 0.0076100751757621765, 0.01065982598811388, 0.00612041587010026, 0.00244323187507689, 0.003355981083586812, 0.4554770290851593, 0.0008715227013453841, 0.00394716439768672, 0.007368119899183512, 0.003549046814441681, 0.010844343341886997, 0.0036036730743944645, 0.003657449735328555, 0.001647604862228036, 0.004019342362880707, 0.4532744288444519]], [[0.007964424788951874, 0.024657774716615677, 0.01107295136898756, 0.01683739572763443, 0.004388827830553055, 0.02030966989696026, 0.01642514206469059, 0.4342079758644104, 0.004886533599346876, 0.009104635566473007, 0.0005058032111264765, 0.0010017750319093466, 0.001944590825587511, 0.003678226610645652, 0.0017108506290242076, 0.005290872883051634, 0.003678280860185623, 0.4323343336582184], [0.012576590292155743, 0.032333843410015106, 0.005817724391818047, 0.016120007261633873, 0.003129872726276517, 0.0016563081881031394, 0.09172562509775162, 0.4156753420829773, 0.0004817847511731088, 0.00046015781117603183, 8.886118303053081e-05, 0.0004826872900594026, 0.0006096035940572619, 0.00017015224148053676, 0.00041245625470764935, 8.88295762706548e-05, 0.004345443099737167, 0.4138246476650238], [0.01132385153323412, 0.03296910971403122, 0.0029438857454806566, 0.008610842749476433, 0.0021301484666764736, 0.0008909472962841392, 0.004933223128318787, 0.46737608313560486, 5.6441404012730345e-05, 0.001178188482299447, 0.000307776324916631, 0.0002572492230683565, 0.00021204650693107396, 0.0002818026696331799, 0.0002053814532700926, 8.1874561146833e-05, 0.0008810904109850526, 0.46535998582839966], [0.007288050837814808, 0.09565132856369019, 0.04088825732469559, 0.01471093762665987, 0.008887087926268578, 0.004397527780383825, 0.006032345816493034, 0.4078465700149536, 0.0030725260730832815, 0.0006798667600378394, 0.000613957759924233, 0.0009086705395020545, 0.00025066573289223015, 7.726955664111301e-05, 0.0009307723958045244, 6.450008368119597e-05, 0.0014579849084839225, 0.40624159574508667], [0.0062510184943675995, 0.017535101622343063, 0.0050973291508853436, 0.005719579756259918, 0.07138656079769135, 0.033305343240499496, 0.012955054640769958, 0.4212624728679657, 0.0013525765389204025, 0.0001746485650073737, 0.00016151696036104113, 0.00340035418048501, 2.6882795282290317e-05, 3.707204814418219e-05, 0.00013333451352082193, 2.6581257770885713e-05, 0.001735655590891838, 0.419438898563385], [0.04220925271511078, 0.051100701093673706, 0.022732840850949287, 0.07889988273382187, 0.055231671780347824, 0.027987884357571602, 0.05365772172808647, 0.3319677710533142, 0.00033690215786919, 0.0015601421473547816, 0.00028674094937741756, 0.00032714317785575986, 0.00022854581766296178, 6.151005072752014e-05, 6.0662143368972465e-05, 3.397095133550465e-05, 0.003235274227336049, 0.33008137345314026], [0.006321406923234463, 0.019908711314201355, 0.010871808975934982, 0.07596098631620407, 0.012492207810282707, 0.058407314121723175, 0.04667467251420021, 0.383708655834198, 0.0010367842623963952, 0.0003400773275643587, 7.320934673771262e-05, 0.0001604340213816613, 2.4449342163279653e-05, 0.00011387933045625687, 5.860356759512797e-05, 0.00023743795463815331, 0.0017728045349940658, 0.38183653354644775], [0.011104216799139977, 0.005494651850312948, 0.0015335838543251157, 0.002811003476381302, 0.0007445435039699078, 0.0009738922817632556, 0.015768911689519882, 0.469172865152359, 0.0008529568440280855, 0.0025412938557565212, 0.0014579178532585502, 0.0018234021263197064, 0.004293264355510473, 0.0017566928872838616, 0.002144526457414031, 0.0007760200533084571, 0.010045595467090607, 0.4667046070098877], [0.03576231375336647, 0.00034482876071706414, 0.0002353066811338067, 0.0005003531696274877, 0.00019469870312605053, 0.001384042901918292, 0.014546847902238369, 0.4578434228897095, 0.010388156399130821, 0.002508786739781499, 0.004892739001661539, 0.0033036337699741125, 0.0010645384900271893, 0.0005236140568740666, 8.704886568011716e-05, 8.377676567761227e-05, 0.014479415491223335, 0.45185649394989014], [0.03732180595397949, 0.004450242035090923, 0.00032887805718928576, 0.0008396513876505196, 0.0006977726588957012, 0.00014467633445747197, 0.004748932551592588, 0.38144850730895996, 0.16916951537132263, 0.007092652376741171, 0.0044631012715399265, 0.0031410029623657465, 0.001491966308094561, 0.0010176970390602946, 0.00018182024359703064, 0.0001347616343991831, 0.005440655630081892, 0.3778863847255707], [0.012147683650255203, 0.00025290000485256314, 5.8416128013050184e-05, 7.698246918153018e-05, 9.157562089967541e-06, 3.457920320215635e-05, 0.0009491703822277486, 0.4279460608959198, 0.04970310255885124, 0.015220996923744678, 0.050123635679483414, 0.013165716081857681, 0.0012644595699384809, 0.0012568177189677954, 0.0014982923166826367, 0.00010853722778847441, 0.001567745115607977, 0.4246157705783844], [0.013947725296020508, 0.0003372949140612036, 0.00019174693443346769, 2.134161513822619e-05, 0.00015076146519277245, 0.0001448078255634755, 0.0018623899668455124, 0.3976404070854187, 0.07441766560077667, 0.024462591856718063, 0.042087145149707794, 0.0405251570045948, 0.0003986678784713149, 0.002238936023786664, 0.005199812352657318, 2.0339934053481556e-05, 0.0028705454897135496, 0.3934825360774994], [0.012538210488855839, 0.00023219869763124734, 0.0005286125815473497, 7.053348235785961e-05, 2.1038789782323875e-05, 0.0006732290494255722, 0.00035812632995657623, 0.23972468078136444, 0.00623854948207736, 0.14925561845302582, 0.13930116593837738, 0.05284510925412178, 0.014457757584750652, 0.13599297404289246, 0.0020307728555053473, 0.00638228515163064, 0.000765557459089905, 0.23858362436294556], [0.008948990143835545, 0.0003795944503508508, 8.387718116864562e-05, 5.4708692914573476e-05, 6.875120743643492e-05, 5.2267161663621664e-05, 0.0002052202180493623, 0.45003005862236023, 0.00026847096160054207, 0.004880684893578291, 0.013495314866304398, 0.030586782842874527, 0.030881818383932114, 0.003911431413143873, 0.00714487861841917, 0.0006739698583260179, 0.0013587020803242922, 0.44697439670562744], [0.002452543703839183, 0.00014394865138456225, 0.00010121901868842542, 2.4338964067283086e-05, 1.8082853785017505e-05, 0.0002489649341441691, 7.786827336531132e-05, 0.12210171669721603, 0.0003416731778997928, 0.0013829631498083472, 0.003258178010582924, 0.00905757024884224, 0.6144006252288818, 0.09566916525363922, 0.020643698051571846, 0.006753774359822273, 0.0016283441800624132, 0.12169530242681503], [0.018234575167298317, 0.000609167676884681, 0.0003605839447118342, 0.00038770827814005315, 5.129828059580177e-05, 0.00041568910819478333, 0.00021164296776987612, 0.3616745173931122, 0.0017728905659168959, 0.004426000639796257, 0.021076945587992668, 0.00810248963534832, 0.08356691896915436, 0.09862613677978516, 0.021102534607052803, 0.011694340966641903, 0.007774583529680967, 0.3599119782447815], [0.008446455001831055, 0.0012707831338047981, 0.0003553503775037825, 0.0008549292106181383, 6.734312773915008e-05, 0.0002564139722380787, 0.0007180441753007472, 0.4440603256225586, 0.0021547386422753334, 0.0016069068806245923, 0.0020337183959782124, 0.006722195539623499, 0.00277516501955688, 0.012569190002977848, 0.026878617703914642, 0.016035115346312523, 0.0315663143992424, 0.4416283667087555], [0.011094655841588974, 0.005488550756126642, 0.0015328506706282496, 0.0028109955601394176, 0.0007440278423018754, 0.0009709802689030766, 0.01574062928557396, 0.4691983759403229, 0.0008523413562215865, 0.0025469372048974037, 0.0014614368556067348, 0.0018301476957276464, 0.00431244820356369, 0.0017568647162988782, 0.0021463651210069656, 0.0007763162138871849, 0.010006734170019627, 0.4667293131351471]], [[0.011037410236895084, 0.005444298032671213, 0.0039802007377147675, 0.0038440204225480556, 0.003202727297320962, 0.002901167841628194, 0.002189015271142125, 0.05924060195684433, 0.0899021252989769, 0.17659060657024384, 0.07919451594352722, 0.08243147283792496, 0.14169201254844666, 0.11415804922580719, 0.045501820743083954, 0.07922226935625076, 0.040335070341825485, 0.05913272127509117], [0.015009195543825626, 0.036638207733631134, 0.07299177348613739, 0.09844609349966049, 0.10432619601488113, 0.08664881438016891, 0.10677695274353027, 0.2187950611114502, 0.002300125313922763, 0.004484564531594515, 0.0021154270507395267, 0.003958535380661488, 0.008073513396084309, 0.004550612065941095, 0.003306094091385603, 0.005925762467086315, 0.007595621515065432, 0.21805739402770996], [0.005992196500301361, 0.003083621384575963, 0.008319023065268993, 0.004736252129077911, 0.0032520585227757692, 0.020656941458582878, 0.008229426108300686, 0.4723682999610901, 0.00028949961415492, 0.0005360344657674432, 0.00013085313548799604, 6.39880818198435e-05, 0.000452149921329692, 0.0008129618945531547, 0.00015888470807112753, 0.0012246243422850966, 0.0004934626631438732, 0.46919965744018555], [0.027191022410988808, 0.03412795066833496, 0.05208142474293709, 0.04087786003947258, 0.06434323638677597, 0.0592980794608593, 0.08865188807249069, 0.29904472827911377, 0.003989696968346834, 0.0068847546353936195, 0.001788948429748416, 0.001253086724318564, 0.003416803665459156, 0.006269571837037802, 0.002723865443840623, 0.006937449332326651, 0.002873168094083667, 0.2982464134693146], [0.00871329102665186, 0.013001693412661552, 0.008765993639826775, 0.013521227985620499, 0.010091138072311878, 0.017409728839993477, 0.04696899652481079, 0.4376659393310547, 0.0014957883395254612, 0.000442393560661003, 0.0009575400617904961, 0.00029701890889555216, 0.0013170528691262007, 0.0008582110749557614, 0.00030088957282714546, 0.001155701931566, 0.0011073644272983074, 0.4359301030635834], [0.005427089054137468, 0.010413446463644505, 0.021214943379163742, 0.008771192282438278, 0.007928679697215557, 0.027291029691696167, 0.01899779587984085, 0.448013573884964, 0.000825856055598706, 0.0005568696651607752, 0.00016484349907841533, 0.00041793915443122387, 0.0009576393640600145, 0.0005892633344046772, 0.0004337358695920557, 0.00073147815419361, 0.0006956026772968471, 0.4465689957141876], [0.015233384445309639, 0.02633974887430668, 0.02182508446276188, 0.019814610481262207, 0.016723908483982086, 0.015862951055169106, 0.022430555894970894, 0.4081510603427887, 0.004178945906460285, 0.006964591331779957, 0.0030348843429237604, 0.003117630258202553, 0.009094269014894962, 0.0072732968255877495, 0.0036418926902115345, 0.005098247434943914, 0.004251591395586729, 0.4069632589817047], [0.007630374748259783, 0.0005940346163697541, 0.0006600425112992525, 0.0005489684990607202, 0.0006564981304109097, 0.0008835440967231989, 0.0015093244146555662, 0.49131637811660767, 0.001102454960346222, 0.0004993004840798676, 0.00028017302975058556, 0.0003671131271403283, 0.0010058555053547025, 0.0008047128212638199, 0.0009942862670868635, 0.0011586941545829177, 0.0018165742512792349, 0.48817169666290283], [0.02550077810883522, 0.0022099388297647238, 0.004549129866063595, 0.004527718294411898, 0.00902981124818325, 0.002267870819196105, 0.004983158782124519, 0.11827757954597473, 0.04638034850358963, 0.08822289109230042, 0.06137065961956978, 0.07268624007701874, 0.11073093116283417, 0.1017875224351883, 0.008866630494594574, 0.07861373573541641, 0.1424252688884735, 0.11756975948810577], [0.01441687997430563, 0.0014773741131648421, 0.0022588782012462616, 0.0013969800202175975, 0.0012822472490370274, 0.0007522169034928083, 0.0030600621830672026, 0.09724225103855133, 0.010274224914610386, 0.10107214748859406, 0.00964251346886158, 0.025585193186998367, 0.036982063204050064, 0.12055013328790665, 0.2273724377155304, 0.16263644397258759, 0.08693636953830719, 0.09706158190965652], [0.014231368899345398, 0.001402979833073914, 0.0017495177453383803, 0.0006446999032050371, 0.0006063150358386338, 0.0007761239539831877, 0.0019175810739398003, 0.18625155091285706, 0.01896492764353752, 0.015875592827796936, 0.019389651715755463, 0.024824252352118492, 0.07430285215377808, 0.09813601523637772, 0.05429607257246971, 0.1818333864212036, 0.11906706541776657, 0.18573006987571716], [0.0163023192435503, 0.001263883663341403, 0.001103888964280486, 0.0007803551270626485, 0.0009950780076906085, 0.0005197437712922692, 0.0015124303754419088, 0.20973260700702667, 0.029897311702370644, 0.006372870411723852, 0.009290107525885105, 0.006825609598308802, 0.034313350915908813, 0.1970190703868866, 0.06322161853313446, 0.14006370306015015, 0.07198595255613327, 0.20880010724067688], [0.04954914376139641, 0.000980122946202755, 0.0006647204863838851, 0.0005868381704203784, 0.00047434287262149155, 0.001599677256308496, 0.000943496881518513, 0.27301639318466187, 0.0017968544270843267, 0.003986758179962635, 0.01026272401213646, 0.005640234332531691, 0.012612578459084034, 0.04261745885014534, 0.2071552276611328, 0.08112648129463196, 0.03489911928772926, 0.27208781242370605], [0.013362865895032883, 0.00034473463892936707, 0.000529858167283237, 0.00029003291274420917, 0.0003662793315015733, 0.00049441127339378, 0.0003265977429691702, 0.3909473121166229, 0.0013629099121317267, 0.00414385786280036, 0.0026397097390145063, 0.0037034270353615284, 0.01582268252968788, 0.041990309953689575, 0.012009699828922749, 0.10644078999757767, 0.01591549441218376, 0.38930898904800415], [0.005483370274305344, 0.00015438783157151192, 0.0005999414133839309, 0.00011008365254383534, 0.00025017998996190727, 0.00016344421601388603, 0.00030383578268811107, 0.427717000246048, 0.0011429026490077376, 0.0005902023403905332, 0.000748976890463382, 0.001777237863279879, 0.0046209185384213924, 0.01838986948132515, 0.05330997332930565, 0.04589875787496567, 0.012881324626505375, 0.4258575439453125], [0.004431731533259153, 0.00017697237490210682, 0.00027749204309657216, 0.00021232715516816825, 0.00014516901865135878, 0.00030759215587750077, 0.0001712496450636536, 0.47397634387016296, 0.0017971385968849063, 0.0009865593165159225, 0.0015030362410470843, 0.0005832983297295868, 0.0036907996982336044, 0.019404109567403793, 0.0018247762927785516, 0.01399683766067028, 0.0048743863590061665, 0.4716401994228363], [0.011343167163431644, 0.0009208053234033287, 0.0009765942813828588, 0.0010998096549883485, 0.0012656304752454162, 0.000877679733093828, 0.0021240406204015017, 0.42095494270324707, 0.024457523599267006, 0.02024953067302704, 0.007310026325285435, 0.005480256397277117, 0.015846649184823036, 0.017496969550848007, 0.005921155214309692, 0.01972387544810772, 0.02535494603216648, 0.41859638690948486], [0.007621467113494873, 0.0005937133100815117, 0.0006596531602554023, 0.0005478368257172406, 0.0006580709596164525, 0.0008825160330161452, 0.0015079219592735171, 0.4913436472415924, 0.0010979727376252413, 0.0004963210667483509, 0.00027880133711732924, 0.00036584766348823905, 0.0009990036487579346, 0.0008013406186364591, 0.0009885040344670415, 0.001151922275312245, 0.0018077729037031531, 0.4881976246833801]]], [[[0.026481814682483673, 0.08557512611150742, 0.2443300187587738, 0.17964591085910797, 0.03706035390496254, 0.04112624749541283, 0.16170041263103485, 0.09999113529920578, 0.002200931776314974, 0.0013681486016139388, 0.0015149663668125868, 0.002307536778971553, 0.00289552821777761, 0.002935160417109728, 0.0006531931576319039, 0.004274381790310144, 0.006313334219157696, 0.09962578862905502], [0.09190548956394196, 0.045806583017110825, 0.01197098195552826, 0.022974859923124313, 0.002182434778660536, 0.006130334455519915, 0.047785766422748566, 0.36213916540145874, 0.002260102890431881, 0.014580429531633854, 0.0017724785720929503, 0.0016766012413427234, 0.0013705746969208121, 0.0005858351942151785, 0.0011421499075368047, 0.0005656285211443901, 0.02451947331428528, 0.36063116788864136], [0.06826411932706833, 0.05880553647875786, 0.02379344403743744, 0.01754595898091793, 0.000688073574565351, 0.002281118417158723, 0.019827350974082947, 0.3451470732688904, 0.0021682539954781532, 0.08902166783809662, 0.0024035682436078787, 0.0020880592055618763, 0.0010885420488193631, 0.0024484675377607346, 0.0014155535027384758, 0.002069497248157859, 0.017166920006275177, 0.34377673268318176], [0.05949222296476364, 0.010640914551913738, 0.0021794899366796017, 0.020008031278848648, 0.0037498786114156246, 0.003864527912810445, 0.032507143914699554, 0.4231923222541809, 0.0007029557600617409, 0.002720288932323456, 0.002120519755408168, 0.0016184380510821939, 0.0007109862635843456, 0.0001531702873762697, 0.00042761859367601573, 0.0001943900715559721, 0.014466827735304832, 0.42125028371810913], [0.028130728751420975, 0.004651540424674749, 0.0006185945239849389, 0.018698660656809807, 0.010386173613369465, 0.007334546186029911, 0.022737698629498482, 0.44159576296806335, 0.0013020845362916589, 0.0017661739839240909, 0.0024133739061653614, 0.004151221830397844, 0.0006561325280927122, 7.885459490353242e-05, 0.0008163995807990432, 0.00015707395505160093, 0.014889546670019627, 0.439615398645401], [0.016484146937727928, 0.008850419893860817, 0.0015243754023686051, 0.009026742540299892, 0.004476738628000021, 0.007664080243557692, 0.013671452179551125, 0.4600639343261719, 0.002373727736994624, 0.0029677539132535458, 0.0015838582767173648, 0.0013733693631365895, 0.0008263805648311973, 0.0006379680708050728, 0.001999085070565343, 0.0004980863886885345, 0.008147940039634705, 0.4578299820423126], [0.07230816036462784, 0.045247845351696014, 0.01254234928637743, 0.03451651707291603, 0.024746518582105637, 0.011442786082625389, 0.13472412526607513, 0.30964672565460205, 0.00656281178817153, 0.0033698491752147675, 0.0017822259105741978, 0.0019905862864106894, 0.0016501148929819465, 0.0010301043512299657, 0.0017108095344156027, 0.001073790597729385, 0.027082735672593117, 0.3085719048976898], [0.009328673593699932, 0.006816675420850515, 0.0037168480921536684, 0.0032009880524128675, 0.003187675727531314, 0.00495973601937294, 0.002722351811826229, 0.4398411512374878, 0.033010274171829224, 0.003313547233119607, 0.008857897482812405, 0.010466523468494415, 0.008944615721702576, 0.004075122531503439, 0.010965881869196892, 0.004849397111684084, 0.004166929982602596, 0.4375758171081543], [0.021293582394719124, 0.012416252866387367, 0.00389310740865767, 0.013543504290282726, 0.0038629695773124695, 0.004902760963886976, 0.02992946095764637, 0.4204588532447815, 0.011470659635961056, 0.00539842713624239, 0.006057856138795614, 0.0037813265807926655, 0.00125591189134866, 0.00042097095865756273, 0.0008351505384780467, 0.0011577425757423043, 0.04063452407717705, 0.41868695616722107], [0.10303620249032974, 0.022508369758725166, 0.002925269305706024, 0.010957101359963417, 0.0003733622143045068, 0.0006620035856030881, 0.04897373542189598, 0.35826388001441956, 0.00827723927795887, 0.02156267873942852, 0.004590979777276516, 0.005280553363263607, 0.0024465397000312805, 0.001542360638268292, 0.004818625282496214, 0.0017951003974303603, 0.04509545490145683, 0.35689064860343933], [0.04397024214267731, 0.009952859953045845, 0.0025434091221541166, 0.012741968967020512, 0.002532407408580184, 0.0026380212511867285, 0.0321667306125164, 0.4010145962238312, 0.004878397565335035, 0.01036154292523861, 0.017628571018576622, 0.019203942269086838, 0.003936768509447575, 0.0006974608404561877, 0.0014897871296852827, 0.002659783000126481, 0.03246055915951729, 0.399122953414917], [0.035535041242837906, 0.006202523596584797, 0.0006720859091728926, 0.005425056908279657, 0.0028979561757296324, 0.0017321699997410178, 0.017717698588967323, 0.4129545986652374, 0.006320551969110966, 0.012105853296816349, 0.018199497833848, 0.023010045289993286, 0.0033763740211725235, 0.0007328347419388592, 0.003859409363940358, 0.001880401512607932, 0.03600045293569565, 0.41137751936912537], [0.013070671819150448, 0.012995384633541107, 0.006092330440878868, 0.007229406852275133, 0.001463400898501277, 0.005683384370058775, 0.008837632834911346, 0.41879764199256897, 0.005289121996611357, 0.01908227801322937, 0.008802060969173908, 0.005820379126816988, 0.012901246547698975, 0.014740608632564545, 0.0071442387998104095, 0.01823309436440468, 0.016934288665652275, 0.41688284277915955], [0.02876579388976097, 0.005876548588275909, 0.0019749936182051897, 0.005577561445534229, 0.0005580628640018404, 0.0021727934945374727, 0.007099397014826536, 0.4265022277832031, 0.004899768158793449, 0.027099816128611565, 0.0040311082266271114, 0.004681243095546961, 0.006114488001912832, 0.01115936879068613, 0.0087629659101367, 0.014547445811331272, 0.015462907031178474, 0.42471346259117126], [0.008922280743718147, 0.0023851206060498953, 0.0015868408372625709, 0.003711308818310499, 0.0016656963853165507, 0.0022018805611878633, 0.007982584647834301, 0.4075644016265869, 0.0036005559377372265, 0.007340351119637489, 0.02116716094315052, 0.011289562098681927, 0.00831524282693863, 0.006690225098282099, 0.07876960933208466, 0.0043718102388083935, 0.01657344028353691, 0.40586185455322266], [0.00826102215796709, 0.002255165483802557, 0.0008633949910290539, 0.0015251422300934792, 0.0002569667703937739, 0.0004428161773830652, 0.008359583094716072, 0.4526274502277374, 0.0036349191796034575, 0.008383512496948242, 0.002014204626902938, 0.002102058380842209, 0.0034337141551077366, 0.007745388895273209, 0.014441857114434242, 0.012055966071784496, 0.020929574966430664, 0.45066723227500916], [0.05780795216560364, 0.020138101652264595, 0.00589833315461874, 0.013181171379983425, 0.008371427655220032, 0.0042925672605633736, 0.06037972494959831, 0.2940208315849304, 0.0403350368142128, 0.02005920372903347, 0.01206313818693161, 0.016038229689002037, 0.008184853009879589, 0.007684640120714903, 0.014960529282689095, 0.008931046351790428, 0.11469361931085587, 0.29295963048934937], [0.009329685941338539, 0.006809926126152277, 0.00371501874178648, 0.0031955232843756676, 0.003183068009093404, 0.004956008866429329, 0.002722941804677248, 0.4398528039455414, 0.033033519983291626, 0.003313704626634717, 0.008852994069457054, 0.01046090666204691, 0.0089374128729105, 0.004074262920767069, 0.01095660962164402, 0.0048489077016711235, 0.004170246887952089, 0.4375864565372467]], [[0.007456916384398937, 0.019748354330658913, 0.010614421218633652, 0.007380427327007055, 0.001003714045509696, 0.016802409663796425, 0.3041449189186096, 0.2772410213947296, 0.0030639488250017166, 0.0005095059750601649, 0.00030385382706299424, 6.385624874383211e-05, 0.000176858578925021, 0.0004810547980014235, 0.001048981212079525, 0.0010587931610643864, 0.07257451862096786, 0.27632638812065125], [0.01946539804339409, 0.028490975499153137, 0.0017422122182324529, 0.0011134325759485364, 0.0002513738290872425, 0.0009966486832126975, 0.01510295458137989, 0.4655972421169281, 0.00038089320878498256, 3.176514292135835e-05, 7.520892540924251e-05, 2.7951753509114496e-05, 0.00013713573571294546, 5.9678535762941465e-05, 5.387759301811457e-05, 2.6199009880656376e-05, 0.003572531044483185, 0.46287447214126587], [0.00020424052490852773, 0.14468541741371155, 0.0006401221035048366, 0.002674936084076762, 0.0008652980905026197, 0.0001260419376194477, 0.0010199368698522449, 0.4256056547164917, 2.2184225599630736e-05, 7.669427759537939e-06, 6.407386990758823e-06, 1.7274695665037143e-06, 6.022200614097528e-05, 9.533812772133388e-06, 1.951597550942097e-05, 2.4363735064980574e-06, 0.00048139828140847385, 0.4235672950744629], [0.00357159785926342, 0.02498128078877926, 0.3113937973976135, 0.008314848877489567, 0.00047333110705949366, 0.02731098048388958, 0.001196386874653399, 0.31127458810806274, 4.964217805536464e-05, 0.0005100687849335372, 9.33338833419839e-06, 2.286885319335852e-06, 3.891759206453571e-06, 9.981796029023826e-05, 1.1659550182230305e-05, 0.00022545503452420235, 0.000547552015632391, 0.3100234866142273], [0.02395898476243019, 0.043958880007267, 0.15956154465675354, 0.4374580383300781, 0.06464681029319763, 0.015606846660375595, 0.003314597299322486, 0.12325786799192429, 0.0007647442980669439, 0.0005388592253439128, 0.0007404804928228259, 0.0001476357429055497, 0.00020400348876137286, 0.0003949419187847525, 7.949326391099021e-05, 0.0002989856293424964, 0.0024039398413151503, 0.12266337126493454], [0.0007219218532554805, 0.020259572193026543, 0.004574962891638279, 0.2166409194469452, 0.07521393895149231, 0.0036236110609024763, 0.0075501976534724236, 0.33649593591690063, 8.246229845099151e-05, 2.471647530910559e-05, 3.105413634330034e-05, 6.2381213865592144e-06, 8.062665074248798e-06, 2.7077724098489853e-06, 1.0534075045143254e-05, 4.408897439134307e-06, 0.0005618843715637922, 0.3341867923736572], [0.000885229732375592, 0.0016856224974617362, 0.0012280596420168877, 0.0011619264259934425, 0.0017821311485022306, 0.08989909291267395, 0.03819524496793747, 0.432573527097702, 0.001059795031324029, 1.9843451809720136e-05, 9.491862329014111e-06, 4.2237384150212165e-06, 1.0712787116062827e-05, 6.910602678544819e-06, 1.757496761456423e-06, 4.1297949792351574e-05, 0.00040179063216783106, 0.4310334026813507], [0.0006792716449126601, 0.0008318563341163099, 0.00012552177940960974, 0.00019619982049334794, 0.0001526096457382664, 0.00017479478265158832, 0.003999566659331322, 0.48705998063087463, 0.0011320660123601556, 0.000918035744689405, 0.0006560370093211532, 0.0004565200943034142, 0.0006446575280278921, 0.00047826700028963387, 0.0018090190133079886, 0.0005916249356232584, 0.01530185155570507, 0.484792023897171], [0.4178440272808075, 0.0004018929903395474, 0.00011909125896636397, 4.8596179112792015e-05, 4.3285202991683036e-05, 0.0005035300855524838, 0.005253628361970186, 0.2684715688228607, 0.02136797085404396, 0.005523549858480692, 0.007082249969244003, 0.00163164921104908, 0.0001873985747806728, 0.0003760007966775447, 4.761985474033281e-05, 0.00018230860587209463, 0.003385911462828517, 0.26752984523773193], [0.004736202768981457, 0.0003182774526067078, 2.7048832635045983e-05, 6.543976724060485e-06, 8.828423005979857e-07, 1.7870430383482017e-05, 0.001882337499409914, 0.09312139451503754, 0.7912555932998657, 0.005027545616030693, 0.0076599386520683765, 0.00042211581603623927, 0.0015972097171470523, 0.00042000567191280425, 3.554657814675011e-05, 1.736118247208651e-05, 0.0008544308366253972, 0.09259969741106033], [0.0027804740238934755, 6.098761150497012e-05, 3.5907891287934035e-05, 6.488101462309714e-06, 2.852738589353976e-06, 9.855675671133213e-06, 8.193469693651423e-05, 0.06914256513118744, 0.011617882177233696, 0.8365142345428467, 0.0051848916336894035, 0.0028349056374281645, 0.0002608014619909227, 0.002393761184066534, 0.00010876095620915294, 2.7166548534296453e-05, 5.174282705411315e-05, 0.06888473033905029], [0.0011741956695914268, 2.0162500732112676e-05, 1.00630713859573e-05, 8.353435259778053e-05, 6.601833774766419e-06, 1.0883254617510829e-05, 3.884863690473139e-05, 0.03811867907643318, 0.003184740664437413, 0.017677398398518562, 0.8888947367668152, 0.004222948104143143, 0.003108506090939045, 0.0034634412731975317, 0.001716742292046547, 0.00019349512876942754, 6.146978557808325e-05, 0.038013383746147156], [0.0006708450382575393, 5.634342596749775e-05, 7.546067536168266e-06, 1.317496662522899e-05, 1.4862128409731667e-05, 1.804443854780402e-05, 7.399849710054696e-05, 0.025400793179869652, 0.0033711064606904984, 0.026390526443719864, 0.519016444683075, 0.34007784724235535, 0.013287335634231567, 0.004547204356640577, 0.04036760702729225, 0.0011615403927862644, 0.00016407515795435756, 0.02536063641309738], [3.746397123904899e-05, 0.0001501094811828807, 1.5690089867348433e-06, 3.492064024612773e-06, 2.4604703412478557e-06, 3.7836923638678854e-07, 3.5505963751347736e-06, 0.09908010810613632, 0.00051494175568223, 0.00023000164947006851, 0.004405040759593248, 0.003745854366570711, 0.784683108329773, 0.0009549838141538203, 0.006755055859684944, 0.00039223299245350063, 0.0003089784877374768, 0.09873078763484955], [0.0007064780220389366, 6.599266271223314e-06, 0.00020361269707791507, 8.987998967313615e-07, 2.105443854816258e-06, 5.00981559525826e-06, 5.304786441229226e-07, 0.014273562468588352, 4.6623081288998947e-05, 0.0014295133296400309, 0.0003272485046181828, 0.0002056206576526165, 0.0002633655385579914, 0.9454433917999268, 0.001727751106955111, 0.020880768075585365, 0.0002423753176117316, 0.014234671369194984], [9.610585402697325e-05, 3.824420491582714e-05, 1.856396374932956e-05, 1.632242856430821e-05, 6.535590273415437e-06, 1.1159462474097381e-06, 1.68830183611135e-06, 0.0182113666087389, 2.1246516553219408e-05, 0.00024150089302565902, 0.000994207221083343, 0.0018930926453322172, 0.0017384202219545841, 0.001733824028633535, 0.9540845155715942, 0.002074799034744501, 0.0006727026775479317, 0.018155699595808983], [0.0004595192731358111, 0.0001944268005900085, 5.314316877047531e-05, 5.6674936786293983e-05, 2.317306280019693e-05, 5.861731915501878e-05, 2.4182387278415263e-05, 0.43570584058761597, 0.0003716778301168233, 4.35090005339589e-05, 0.00015693472232669592, 5.5015902034938335e-05, 0.0011575504904612899, 0.0029985259752720594, 0.008302553556859493, 0.08041325211524963, 0.035842593759298325, 0.4340827465057373], [0.0006789897452108562, 0.0008291039266623557, 0.00012496502313297242, 0.00019540914217941463, 0.00015206218813546002, 0.00017447705613449216, 0.003987350035458803, 0.4870937764644623, 0.0011317619355395436, 0.0009161022608168423, 0.0006559467874467373, 0.00045609872904606164, 0.0006454814574681222, 0.00047710456419736147, 0.0018046669429168105, 0.000590916839428246, 0.015261508524417877, 0.4848242998123169]], [[0.018384195864200592, 0.006182671058923006, 0.0009216436883434653, 0.007159084547311068, 0.0019954119343310595, 0.002075891476124525, 0.009753432124853134, 0.4589051306247711, 0.0024179071187973022, 0.0034700927790254354, 0.0033849079627543688, 0.0009666469413787127, 0.008108066394925117, 0.0007264150190167129, 0.0028053107671439648, 0.001732134958729148, 0.01371863391250372, 0.4572924077510834], [0.005784773733466864, 0.00975858885794878, 0.0013906852109357715, 0.003035573987290263, 0.0011052528861910105, 0.00113102572504431, 0.007539027836173773, 0.48449990153312683, 0.0001682140282355249, 0.00025220244424417615, 0.00015641651407349855, 0.00017119469703175128, 0.0008123147999867797, 8.077172969933599e-05, 0.0004441956407390535, 6.256496271817014e-05, 0.0016990702133625746, 0.48190826177597046], [0.00934271514415741, 0.012757014483213425, 0.0008282576454803348, 0.0010514253517612815, 0.001056821784004569, 0.00021840751287527382, 0.0016012610867619514, 0.4874616265296936, 2.877724364225287e-05, 0.00012941235036123544, 2.6332692868891172e-05, 8.258688467321917e-05, 0.00016109467833302915, 5.046447040513158e-05, 0.00014628512144554406, 3.2677191484253854e-05, 0.0006851366488263011, 0.48433977365493774], [0.007466534618288279, 0.02750219777226448, 0.017084794119000435, 0.018645014613866806, 0.0036875063087791204, 0.014461878687143326, 0.008600635454058647, 0.4498559534549713, 0.00040273863123729825, 0.0011588942725211382, 9.139913163380697e-05, 3.3555472327861935e-05, 5.7254888815805316e-05, 1.9949482521042228e-05, 9.849304478848353e-05, 0.00010889083205256611, 0.0029585007578134537, 0.4477657377719879], [0.0018329338636249304, 0.02840842492878437, 0.021140392869710922, 0.13140152394771576, 0.024590246379375458, 0.020757276564836502, 0.007548883557319641, 0.3801409602165222, 0.0008604570757597685, 0.0006772958440706134, 0.00044227723265066743, 0.0002139240241376683, 0.0002475271176081151, 0.00017066272266674787, 0.00012492365203797817, 5.196227357373573e-05, 0.0029091404285281897, 0.3784811198711395], [0.0036422002594918013, 0.012293266132473946, 0.003223598003387451, 0.10387197881937027, 0.028548235073685646, 0.004506832454353571, 0.007560649886727333, 0.4186076819896698, 6.0473194025689736e-05, 0.0001815811701817438, 0.0003189837734680623, 4.762806202052161e-05, 0.00016672919446136802, 3.0569757655030116e-05, 0.00019246083684265614, 3.11015137413051e-05, 0.0010147782741114497, 0.41570132970809937], [0.009595092386007309, 0.0021485520992428064, 0.0010752175003290176, 0.003418735694140196, 0.002160436473786831, 0.016970055177807808, 0.06961249560117722, 0.44717156887054443, 0.00022543435625266284, 0.00020228988432791084, 4.34436478826683e-05, 1.6397829313063994e-05, 4.9687452701618895e-05, 5.073419742984697e-06, 9.977269655792043e-06, 1.9148255887557752e-05, 0.0017898890655487776, 0.4454863965511322], [0.060443103313446045, 0.007805324159562588, 0.0018429069314152002, 0.0036921037826687098, 0.0018570092506706715, 0.001991359982639551, 0.00971943512558937, 0.43277332186698914, 0.0013448232784867287, 0.00392181659117341, 0.004492208361625671, 0.0033394356723874807, 0.010407068766653538, 0.0020542864222079515, 0.008818639442324638, 0.0015092679532244802, 0.012560267001390457, 0.43142765760421753], [0.021800970658659935, 0.00039200339233502746, 0.00012329242599662393, 0.0007884282968007028, 3.249476503697224e-05, 0.0004140303935855627, 0.002073277486488223, 0.4599134027957916, 0.0028892294503748417, 0.00439339829608798, 0.039892781525850296, 0.0017914040945470333, 0.0037517512682825327, 0.00041047140257433057, 0.0005727372481487691, 0.00016834086272865534, 0.002807669574394822, 0.4577842950820923], [0.013790248893201351, 0.0002860628010239452, 0.00015007497859187424, 6.112510163802654e-05, 2.835733539541252e-05, 5.21001493325457e-05, 0.004984177649021149, 0.4603201746940613, 0.035796575248241425, 0.007788661867380142, 0.0072706020437181, 0.003130954457446933, 0.0022192455362528563, 0.00043152953730896115, 0.00029130425537005067, 0.0001206905726576224, 0.005629965104162693, 0.4576481282711029], [0.017275920137763023, 0.00014746462693437934, 7.048332918202505e-05, 7.051667489577085e-05, 5.284026883600745e-06, 2.1164527424843982e-05, 0.0010090491268783808, 0.43599674105644226, 0.0052789123728871346, 0.08405274897813797, 0.014633351936936378, 0.002237512031570077, 0.002569372532889247, 0.0007314070244319737, 0.00030499498825520277, 0.00014925618597771972, 0.0012895832769572735, 0.4341561496257782], [0.006300475914031267, 0.0005140785360708833, 4.762611206388101e-05, 0.00011404814722482115, 2.3617525584995747e-05, 8.027312287595123e-05, 0.0008879186934791505, 0.4032323956489563, 0.011577054858207703, 0.028521139174699783, 0.131627157330513, 0.00785849429666996, 0.004993095062673092, 0.0013680161209776998, 0.0006421170546673238, 6.544682400999591e-05, 0.0012376238591969013, 0.4009094834327698], [0.009160232730209827, 0.0005252932314760983, 1.741096275509335e-05, 0.00016864592907950282, 7.748126517981291e-05, 3.3765587431844324e-05, 0.0011447544675320387, 0.3194960057735443, 0.0032442256342619658, 0.010127970017492771, 0.2494230419397354, 0.023874927312135696, 0.025155626237392426, 0.004221870098263025, 0.03219272196292877, 0.000619409023784101, 0.0026634519454091787, 0.3178532123565674], [0.0026706987991929054, 8.504695870215073e-05, 2.191993007727433e-05, 1.816356052586343e-05, 1.0467195352248382e-05, 2.280395619891351e-06, 3.354025830049068e-05, 0.4803737998008728, 5.579883145401254e-05, 0.0005317161558195949, 0.0025423539336770773, 0.0025228001177310944, 0.02343442291021347, 0.003504569409415126, 0.005989961791783571, 0.00025035373982973397, 0.0004281259316485375, 0.477524071931839], [0.0034534966107457876, 0.00018813599308487028, 7.231776544358581e-05, 0.00012571409752126783, 2.5016206564032473e-06, 4.4009677367284894e-05, 0.00017919528181664646, 0.4018857479095459, 0.00021768851729575545, 0.0008682822226546705, 0.021487250924110413, 0.0016664126887917519, 0.05631611868739128, 0.09391902387142181, 0.011254101991653442, 0.003210001392289996, 0.005275383125990629, 0.3998345732688904], [0.009067130275070667, 0.00014014492626301944, 1.5217593499983195e-05, 3.450503936619498e-05, 2.0727251467178576e-05, 9.408858204551507e-06, 6.652650336036459e-05, 0.395229309797287, 0.00014667199866380543, 0.00038031162694096565, 0.0019080605125054717, 0.0007600192329846323, 0.008138337172567844, 0.0029010209254920483, 0.17433495819568634, 0.00490317540243268, 0.008722065016627312, 0.3932224214076996], [0.022165510803461075, 0.00037216939381323755, 0.00017094194481614977, 0.0002525823365431279, 9.25835847738199e-05, 0.00023829893325455487, 0.0006096573197282851, 0.46361228823661804, 0.00043732309131883085, 0.0006998764001764357, 0.0007375204586423934, 0.00024085640325210989, 0.004109865054488182, 0.00091555155813694, 0.0027561034075915813, 0.006861226633191109, 0.033824373036623, 0.46190327405929565], [0.06030655279755592, 0.00779240345582366, 0.0018365097930654883, 0.0036858764942735434, 0.00185472855810076, 0.0019869008101522923, 0.00970473699271679, 0.43288883566856384, 0.0013432400301098824, 0.003911917097866535, 0.004491089843213558, 0.003333499189466238, 0.01040648389607668, 0.002052342751994729, 0.008812956511974335, 0.0015078664291650057, 0.012543311342597008, 0.4315407872200012]], [[0.01209974568337202, 0.016095107421278954, 0.00150271225720644, 0.012709102593362331, 0.010624082759022713, 0.01783568598330021, 0.008407233282923698, 0.292235404253006, 0.08759653568267822, 0.02109278179705143, 0.05288616195321083, 0.014282332733273506, 0.020892014726996422, 0.029408298432826996, 0.011319896206259727, 0.020511260256171227, 0.07834254950284958, 0.29215914011001587], [0.002470897976309061, 0.032749760895967484, 0.023778654634952545, 0.046959638595581055, 0.0968065857887268, 0.14030714333057404, 0.023399675264954567, 0.31130251288414, 0.0006384783191606402, 0.00112511171028018, 0.0026824437081813812, 0.0014255872229114175, 0.0007733848178759217, 0.0006831635255366564, 0.0018309319857507944, 0.0015808596508577466, 0.0012536144349724054, 0.31023159623146057], [0.0006774525973014534, 0.006669004447758198, 0.0065162875689566135, 0.01207410916686058, 0.026962950825691223, 0.02605702541768551, 0.004018251318484545, 0.458290159702301, 0.0002218073495896533, 0.00022444526257459074, 0.00039246256346814334, 0.00011023718980140984, 7.838090823497623e-05, 0.00027945562032982707, 0.0004804809286724776, 0.0002865350106731057, 0.0004110472509637475, 0.4562499523162842], [0.003948146011680365, 0.054139815270900726, 0.0053841667249798775, 0.02355094440281391, 0.10456125438213348, 0.23248732089996338, 0.040531713515520096, 0.26179730892181396, 0.0023532763589173555, 0.0005530287744477391, 0.0015167843084782362, 0.003368544392287731, 0.00026002281811088324, 0.00023857712221797556, 0.0005662913899868727, 0.00039169148658402264, 0.003431000281125307, 0.26092007756233215], [0.0017693802947178483, 0.015442909672856331, 0.004819773603230715, 0.005449074320495129, 0.02567659690976143, 0.16318276524543762, 0.020911522209644318, 0.3753257095813751, 0.0006468788487836719, 0.00015379094111267477, 0.002605494111776352, 0.008752571418881416, 8.002771210158244e-05, 0.00010404288332210854, 6.048648720025085e-05, 8.965098095359281e-05, 0.0012177525786682963, 0.373711496591568], [0.000665789470076561, 0.011580051854252815, 0.006373008247464895, 0.013142433017492294, 0.06946597248315811, 0.13435985147953033, 0.009479581378400326, 0.3771902322769165, 0.00034866895293816924, 0.00013568269787356257, 0.0003232362796552479, 0.0002602500608190894, 8.576548134442419e-05, 0.00012469773355405778, 7.627295417478308e-05, 0.00012854888336732984, 0.0005096916574984789, 0.37575018405914307], [0.0027798565570265055, 0.0058890413492918015, 0.0064411223866045475, 0.012123862281441689, 0.04943566769361496, 0.053400080651044846, 0.026593094691634178, 0.4186093509197235, 0.0013005072250962257, 0.00018394182552583516, 0.0005812261370010674, 0.001215688418596983, 0.00041325698839500546, 0.00021991514950059354, 0.0005314055015332997, 0.00029917925712652504, 0.002626036060974002, 0.4173568785190582], [0.00141566910315305, 0.0008934416109696031, 0.0010256407549604774, 0.0010901066707447171, 0.0013753384118899703, 0.0019511943683028221, 0.002461104653775692, 0.4905875623226166, 0.0008772302535362542, 0.000838158477563411, 0.0013235332444310188, 0.0016880149487406015, 0.0004796736757270992, 0.000563451845664531, 0.0007850769907236099, 0.0010456055169925094, 0.003183257533237338, 0.4884158968925476], [0.005949440877884626, 0.00041632913053035736, 0.000476123474072665, 0.0006495119305327535, 0.0018432697979733348, 0.0011155144311487675, 0.0012150425463914871, 0.4200403094291687, 0.022490931674838066, 0.02595113404095173, 0.027240755036473274, 0.038984183222055435, 0.0017228721408173442, 0.013071899302303791, 0.002661498263478279, 0.0036242608912289143, 0.013788496144115925, 0.4187583923339844], [0.006385211367160082, 0.0008249419624917209, 0.0009829796617850661, 0.0011638806900009513, 0.001098615350201726, 0.005497665144503117, 0.0020460530649870634, 0.32449501752853394, 0.056401245296001434, 0.006690996699035168, 0.14303553104400635, 0.08961017429828644, 0.011686800979077816, 0.007318031508475542, 0.00483969459310174, 0.008199058473110199, 0.006314004771411419, 0.3234100043773651], [0.036519959568977356, 0.0006938129081390798, 0.0006996147567406297, 0.0001595542998984456, 0.0007532629533670843, 0.00045407944708131254, 0.0008565931348130107, 0.22796858847141266, 0.03634600713849068, 0.016097448766231537, 0.05959414318203926, 0.34686416387557983, 0.024800483137369156, 0.007248878013342619, 0.00423395773395896, 0.005252305418252945, 0.004348041955381632, 0.22710905969142914], [0.0030045141465961933, 0.00014734192518517375, 0.00021027785260230303, 0.000228829201660119, 0.00020775124721694738, 0.0005697003216482699, 0.0010177312651649117, 0.288550466299057, 0.004578245338052511, 0.0029798950999975204, 0.35005226731300354, 0.0071357605047523975, 0.013542285189032555, 0.0076293498277664185, 0.026529885828495026, 0.003087327117100358, 0.0033936090767383575, 0.28713467717170715], [0.004471647087484598, 0.0003139120526611805, 0.0001042126095853746, 0.00011228003859287128, 0.00017002614913508296, 0.00027909758500754833, 0.00026589055778458714, 0.14176173508167267, 0.005528365261852741, 0.005177916958928108, 0.38485124707221985, 0.03567405417561531, 0.006256654858589172, 0.11992757022380829, 0.11702349781990051, 0.03400745242834091, 0.0029333720449358225, 0.14114105701446533], [0.0015389180043712258, 0.00010772891255328432, 8.638917643111199e-05, 4.477962283999659e-05, 0.00022179140069056302, 0.00013505468086805195, 0.00013981446682009846, 0.42504265904426575, 0.003910798579454422, 0.002986626699566841, 0.0238056518137455, 0.05682724714279175, 0.011868025176227093, 0.018690474331378937, 0.012804049998521805, 0.016820374876260757, 0.0015985132195055485, 0.4233710467815399], [0.005081959534436464, 0.0002441607357468456, 0.0002936568344011903, 0.00011095870286226273, 0.0006981912301853299, 0.0001983637921512127, 0.00028360856231302023, 0.16502201557159424, 0.009016615338623524, 0.00327496649697423, 0.038272466510534286, 0.3920040726661682, 0.037325166165828705, 0.09922550618648529, 0.0680118203163147, 0.011995792388916016, 0.004569653887301683, 0.16437096893787384], [0.0016512037254869938, 0.0002458428789395839, 5.857077121618204e-05, 6.885085895191878e-05, 0.00020385075185913593, 0.00012377611710689962, 0.00018725405971053988, 0.3250991702079773, 0.0025145085528492928, 0.002662685001268983, 0.05316776782274246, 0.038385745137929916, 0.008192344568669796, 0.051136668771505356, 0.14171399176120758, 0.04491031914949417, 0.005707683973014355, 0.3239697813987732], [0.004472633358091116, 0.0003596524184104055, 0.0006215054308995605, 0.0007196643273346126, 0.0018742252141237259, 0.0009059981093741953, 0.0011535573285073042, 0.43141812086105347, 0.007761357817798853, 0.0016857597511261702, 0.004112403839826584, 0.01614849828183651, 0.009043831378221512, 0.011544100008904934, 0.016189171001315117, 0.029366066679358482, 0.03248491510748863, 0.43013840913772583], [0.0014135242672637105, 0.0008917626109905541, 0.0010242460994049907, 0.0010891155106946826, 0.0013744225725531578, 0.0019485346274450421, 0.002457230817526579, 0.4906035363674164, 0.0008761927601881325, 0.0008364980458281934, 0.0013206391595304012, 0.0016841433243826032, 0.00047914727474562824, 0.0005631718086078763, 0.0007834051502868533, 0.0010449193650856614, 0.0031774116214364767, 0.48843204975128174]], [[0.00859883427619934, 0.003227681154385209, 0.005098774563521147, 0.012230023741722107, 0.005257493816316128, 0.004257365129888058, 0.0015935221454128623, 0.07667698711156845, 0.27015045285224915, 0.030436115339398384, 0.12859979271888733, 0.0739399641752243, 0.027652831748127937, 0.08476059883832932, 0.12069366127252579, 0.030656002461910248, 0.03970146179199219, 0.07646843791007996], [0.012430654838681221, 0.023312347009778023, 0.5266166925430298, 0.07631678134202957, 0.027462175115942955, 0.05806102976202965, 0.01089517679065466, 0.12716224789619446, 0.0007942476659081876, 0.0022798567079007626, 0.0025346262846142054, 0.0021194242872297764, 0.0007501063519157469, 0.0005244605126790702, 0.00039143653702922165, 0.0008919715182855725, 0.000971927831415087, 0.12648476660251617], [0.003255832940340042, 0.005147488787770271, 0.008877607993781567, 0.0015337393851950765, 0.0012339159147813916, 0.005673637613654137, 0.006142506375908852, 0.4843016266822815, 0.000258419691817835, 9.222361404681578e-05, 7.152865873649716e-05, 5.501301711774431e-05, 0.00032896012999117374, 0.00019377347780391574, 6.785224104532972e-05, 0.0005708002136088908, 0.00037938659079372883, 0.4818155765533447], [0.02657482400536537, 0.01771308295428753, 0.010599682107567787, 0.006678753532469273, 0.021079573780298233, 0.5877737998962402, 0.048985131084918976, 0.13507868349552155, 0.0027525725308805704, 0.0006526784272864461, 0.0006021771114319563, 0.00045698683243244886, 0.001093718339689076, 0.0015841696877032518, 0.00041825530934147537, 0.002582636894658208, 0.0009206809918396175, 0.13445252180099487], [0.0021230352576822042, 0.018254458904266357, 0.0006652002921327949, 0.00537482975050807, 0.011115186847746372, 0.3740028738975525, 0.02214129827916622, 0.2823454439640045, 0.0011307427193969488, 5.265615618554875e-05, 0.00021153449779376388, 0.0001952316815732047, 0.00011519515828695148, 7.15197529643774e-05, 0.0002812068269122392, 0.000642094761133194, 0.0003370770427864045, 0.2809404134750366], [0.006360401399433613, 0.009895608760416508, 0.021931542083621025, 0.007295310962945223, 0.0023837725166231394, 0.007224562112241983, 0.008690635673701763, 0.4666893184185028, 0.0002747843973338604, 8.583368617109954e-05, 0.00021805283904541284, 0.0003207254339940846, 0.001864053076133132, 0.0003006227780133486, 0.00018491137598175555, 0.0007197566446848214, 0.00047294850810430944, 0.4650871455669403], [0.008967306464910507, 0.021697506308555603, 0.033901941031217575, 0.01679813116788864, 0.011427684687077999, 0.01784246414899826, 0.004792521242052317, 0.42569446563720703, 0.0053724185563623905, 0.0016873100539669394, 0.0045473817735910416, 0.004003457259386778, 0.005721746478229761, 0.005905004218220711, 0.003830786095932126, 0.0023397826589643955, 0.0014433215837925673, 0.424026757478714], [0.0004821474140044302, 0.000298674771329388, 0.0011679001618176699, 0.0002080565900541842, 0.0001409990800311789, 0.00014072746853344142, 0.0001471231662435457, 0.49817362427711487, 0.00033303722739219666, 0.0002478004607837647, 0.0005324636003933847, 0.00023435002367477864, 0.00040790531784296036, 0.000401166791561991, 0.0002688224194571376, 0.00046349893091246486, 0.0003473845717962831, 0.4960043430328369], [0.006920421961694956, 0.000941227946896106, 0.0010215286165475845, 0.0012571291299536824, 9.047768980963156e-05, 0.0005228251102380455, 0.0003715196799021214, 0.02847716026008129, 0.008063539862632751, 0.018814031034708023, 0.448276162147522, 0.3072715997695923, 0.03779948502779007, 0.010279647074639797, 0.07294127345085144, 0.01720254123210907, 0.0113591980189085, 0.028390266001224518], [0.019747892394661903, 0.00119636463932693, 0.0007383002084679902, 0.00039181672036647797, 0.0002728175313677639, 0.00074439134914428, 0.0007175097125582397, 0.2379932701587677, 0.030588746070861816, 0.03009270690381527, 0.0567517951130867, 0.04074821621179581, 0.070014588534832, 0.06023440882563591, 0.02088085561990738, 0.15020012855529785, 0.041844673454761505, 0.23684148490428925], [0.0432688407599926, 0.0003532749542500824, 0.0001617438974790275, 3.284107879153453e-05, 0.0001979254448087886, 8.959464321378618e-05, 0.00044635869562625885, 0.04174632206559181, 0.03675263747572899, 0.003988287411630154, 0.0034705360885709524, 0.006502379197627306, 0.4301886558532715, 0.11209914833307266, 0.021990695968270302, 0.22216661274433136, 0.034994255751371384, 0.04154987260699272], [0.0070500425063073635, 0.00010466437379363924, 9.27628789213486e-05, 2.3153084839577787e-05, 0.0001903368829516694, 0.00016518920892849565, 5.321902426658198e-05, 0.008457913063466549, 0.0015929387882351875, 0.0012585774529725313, 0.010079543106257915, 0.002514051739126444, 0.3260042071342468, 0.1404876410961151, 0.13264411687850952, 0.3574926555156708, 0.0033767586573958397, 0.008412189781665802], [0.011442204006016254, 0.00026376903406344354, 0.00022459926549345255, 0.00015901128062978387, 0.000181634517502971, 0.00038439963827840984, 0.000758509908337146, 0.017304163426160812, 0.001284631434828043, 0.0006433511734940112, 0.0048116655088961124, 0.002224712399765849, 0.0016517655458301306, 0.7110041975975037, 0.09697425365447998, 0.062214430421590805, 0.07125718891620636, 0.017215484753251076], [0.002719201846048236, 0.00017823981761466712, 0.00046833211672492325, 3.492692849249579e-05, 2.531134850869421e-05, 4.263877053745091e-05, 0.00010275958629790694, 0.3061511516571045, 0.0005331928259693086, 0.00029841045034117997, 0.0006366237648762763, 0.0009509709780104458, 0.004140397999435663, 0.027289021760225296, 0.0048630270175635815, 0.33990219235420227, 0.006802161689847708, 0.30486148595809937], [0.00026806583628058434, 8.781614269537386e-06, 6.721292265865486e-06, 9.203196782436862e-07, 7.264899977599271e-06, 3.608797851484269e-05, 9.495116501057055e-06, 0.003539297729730606, 9.830670023802668e-05, 5.7492423366056755e-05, 3.082038165302947e-05, 0.0001064281677827239, 0.003767465939745307, 0.0037680731620639563, 0.0012401529820635915, 0.9828580617904663, 0.0006732711917720735, 0.003523207036778331], [0.0014297479065135121, 0.0003796096716541797, 0.0005835560150444508, 1.6461101040476933e-05, 1.667091783019714e-05, 3.107411248493008e-05, 0.00013273311196826398, 0.45161160826683044, 0.0009610066190361977, 0.0007649051258340478, 0.0001443652727175504, 0.0002766147372312844, 0.000290243566269055, 0.05990508943796158, 0.0005838184733875096, 0.02803860791027546, 0.004712632857263088, 0.45012131333351135], [0.01187110785394907, 0.0006773665081709623, 0.002378536621108651, 0.0007259618723765016, 0.00032939703669399023, 0.0007748593925498426, 0.0007921630167402327, 0.44087278842926025, 0.024598000571131706, 0.004903891589492559, 0.009749972261488438, 0.004911878611892462, 0.007580883800983429, 0.017294295132160187, 0.005921066738665104, 0.01596219651401043, 0.011424969881772995, 0.43923065066337585], [0.00048199581215158105, 0.0002982983714900911, 0.0011654931586235762, 0.00020742019114550203, 0.00014061016554478556, 0.0001403811911586672, 0.00014689614181406796, 0.4981810748577118, 0.0003321221156511456, 0.0002473659405950457, 0.0005303762154653668, 0.0002335031022084877, 0.00040711063775233924, 0.00040003846515901387, 0.00026807846734300256, 0.00046268265577964485, 0.00034674600465223193, 0.49600985646247864]], [[0.004702632315456867, 0.02299257554113865, 0.021542571485042572, 0.005989348981529474, 0.0037509300746023655, 0.010056506842374802, 0.005161590874195099, 0.25637367367744446, 0.17032386362552643, 0.09152621030807495, 0.03515561297535896, 0.016869433224201202, 0.01825129985809326, 0.020090220496058464, 0.030798649415373802, 0.017680734395980835, 0.01292048767209053, 0.2558136582374573], [0.009115179069340229, 0.05127738043665886, 0.052103739231824875, 0.03029545024037361, 0.00503458920866251, 0.025243381038308144, 0.03291455656290054, 0.39246124029159546, 0.003123749978840351, 0.0019040846964344382, 0.001485232962295413, 0.0007378752925433218, 0.0012170455884188414, 0.00044821202754974365, 0.000277983519481495, 0.00027181801851838827, 0.0014569185441359878, 0.3906315565109253], [0.003995193634182215, 0.06780991703271866, 0.02108209766447544, 0.009831181727349758, 0.0015142186312004924, 0.0044698454439640045, 0.009768160060048103, 0.43770310282707214, 0.001772601972334087, 0.0005409230361692607, 0.0006829366902820766, 0.0008214634144678712, 0.0019499254412949085, 0.00025444268248975277, 0.0004656171367969364, 0.0002683279453776777, 0.0014898375375196338, 0.43558022379875183], [0.007743677590042353, 0.3719298541545868, 0.3323259949684143, 0.017013920471072197, 0.014451419934630394, 0.045228127390146255, 0.007256846409291029, 0.09922296553850174, 0.0013381585013121367, 0.0012177780736237764, 0.0007915917667560279, 0.0005794005119241774, 0.0005445334245450795, 0.0004266455944161862, 0.00021064808242954314, 0.00024577247677370906, 0.000742530741263181, 0.09873019903898239], [0.014872598461806774, 0.09828831255435944, 0.061342909932136536, 0.0616438128054142, 0.016781620681285858, 0.0997273176908493, 0.01779615506529808, 0.31059062480926514, 0.0034621357917785645, 0.0005823826650157571, 0.001181111205369234, 0.0007984305266290903, 0.0006235047476366162, 0.00040157526382245123, 0.00026667097699828446, 0.00040303129935637116, 0.002089489484205842, 0.309148371219635], [0.010811814107000828, 0.10690692067146301, 0.20774829387664795, 0.22261382639408112, 0.019596122205257416, 0.04726655036211014, 0.014684509485960007, 0.18360422551631927, 0.0007301735458895564, 0.0009400853887200356, 0.0004556665662676096, 0.00013448434765450656, 0.00038001922075636685, 8.88860085979104e-05, 0.00010020406625699252, 0.00022656908549834043, 0.0011066892184317112, 0.18260495364665985], [0.0033545615151524544, 0.07792802900075912, 0.1559886336326599, 0.20479747653007507, 0.07811424881219864, 0.1680859625339508, 0.008210849948227406, 0.14784051477909088, 0.0032109811436384916, 0.0006260902737267315, 0.0006163836806081235, 0.0003821767750196159, 0.0005660387687385082, 0.0007965559489093721, 0.00044595470535568893, 0.0009358471143059433, 0.0007999996887519956, 0.14729967713356018], [0.0031854035332798958, 0.003972804639488459, 0.0011682643089443445, 0.0027582936454564333, 0.00065525685204193, 0.001772694755345583, 0.004130767658352852, 0.48205915093421936, 0.003661802737042308, 0.0014582985313609242, 0.0026369732804596424, 0.0018130947137251496, 0.0034528211690485477, 0.0009683311218395829, 0.0015016755787655711, 0.000700076634529978, 0.004070253577083349, 0.4800341725349426], [0.022211192175745964, 0.003981295973062515, 0.001171839190647006, 0.0028045435901731253, 0.0010481798090040684, 0.0037350610364228487, 0.0023157165851444006, 0.40555521845817566, 0.10300616919994354, 0.012637910433113575, 0.01234821230173111, 0.006212884560227394, 0.004689337685704231, 0.0019793862011283636, 0.0012834646040573716, 0.0027919691056013107, 0.008391032926738262, 0.40383657813072205], [0.01983514241874218, 0.004843535367399454, 0.007476324215531349, 0.0008145833853632212, 0.00013505828974302858, 0.0007132713217288256, 0.0021051231306046247, 0.37725183367729187, 0.0787852331995964, 0.0438600592315197, 0.03230033442378044, 0.01058151014149189, 0.016275621950626373, 0.013327703811228275, 0.001972947036847472, 0.00620975811034441, 0.008261008188128471, 0.37525105476379395], [0.03187720850110054, 0.0034801382571458817, 0.006223074626177549, 0.00018453084339853376, 6.590438715647906e-05, 0.0002862320689018816, 0.004936582874506712, 0.265079140663147, 0.07219649851322174, 0.27736401557922363, 0.026092473417520523, 0.018982509151101112, 0.016198476776480675, 0.005535814445465803, 0.000529158569406718, 0.0014096025843173265, 0.0058980658650398254, 0.2636606991291046], [0.03263792023062706, 0.0037944528739899397, 0.0014001114759594202, 0.00034804598544724286, 0.00012035674444632605, 0.0004495327884797007, 0.0025689383037388325, 0.23749518394470215, 0.15958918631076813, 0.13032644987106323, 0.09040325880050659, 0.028556907549500465, 0.05544190853834152, 0.012475863099098206, 0.0009422476286999881, 0.0021529486402869225, 0.0049606626853346825, 0.23633599281311035], [0.024775030091404915, 0.002803708426654339, 0.0034753233194351196, 0.0001986925199162215, 8.969102782430127e-05, 0.000229948345804587, 0.0026495191268622875, 0.15689261257648468, 0.054375048726797104, 0.33585259318351746, 0.12635640799999237, 0.04160601645708084, 0.05742309242486954, 0.029546553269028664, 0.0027244561351835728, 0.00225186999887228, 0.0026015667244791985, 0.15614798665046692], [0.007735919672995806, 0.0009266439010389149, 0.0002516559907235205, 5.8042969612870365e-05, 2.078122088278178e-05, 6.631870928686112e-05, 0.0004657572426367551, 0.3505301773548126, 0.02029389888048172, 0.017393438145518303, 0.027314258739352226, 0.030445484444499016, 0.14854949712753296, 0.029979532584547997, 0.008226499892771244, 0.005051751621067524, 0.0037865652702748775, 0.3489037752151489], [0.004105089697986841, 0.0007689908961765468, 0.0003167624236084521, 1.5378585885628127e-05, 2.4351735191885382e-05, 5.537650213227607e-05, 0.00015131320105865598, 0.028721721842885017, 0.002085284562781453, 0.0073965019546449184, 0.012544163502752781, 0.013235347345471382, 0.09676927328109741, 0.7591394782066345, 0.009376883506774902, 0.03530817851424217, 0.001369322882965207, 0.028616581112146378], [0.005473427474498749, 0.001267101033590734, 0.0026597066316753626, 5.2311654144432396e-05, 2.8243228371138684e-05, 0.00011899600940523669, 0.00039361126255244017, 0.09015584737062454, 0.014013504609465599, 0.13075564801692963, 0.053874190896749496, 0.022455619648098946, 0.12812380492687225, 0.25281843543052673, 0.1735984832048416, 0.028022564947605133, 0.006349317263811827, 0.08983918279409409], [0.0039217667654156685, 0.0024488058406859636, 0.001991497352719307, 0.001235741307027638, 0.000439256924437359, 0.0006262859096750617, 0.00027205306105315685, 0.1831098049879074, 0.027397869154810905, 0.01204609964042902, 0.048970047384500504, 0.04575479030609131, 0.12153331935405731, 0.18423883616924286, 0.1281646192073822, 0.04737510904669762, 0.007927323691546917, 0.1825467199087143], [0.003181694308295846, 0.003964923322200775, 0.00116605288349092, 0.0027567169163376093, 0.0006544479983858764, 0.0017690127715468407, 0.0041241953149437904, 0.4820907711982727, 0.0036540369037538767, 0.0014558288967236876, 0.002633542288094759, 0.0018103885231539607, 0.0034482809714972973, 0.0009660120704211295, 0.0014983877772465348, 0.0006980045582167804, 0.004062420688569546, 0.4800652265548706]], [[0.021048760041594505, 0.026070119813084602, 0.0047711641527712345, 0.04077927768230438, 0.014783954247832298, 0.03735841065645218, 0.009908978827297688, 0.15992338955402374, 0.18846653401851654, 0.10515154898166656, 0.07618539035320282, 0.014555757865309715, 0.05260595679283142, 0.011422987096011639, 0.01966763846576214, 0.014845144934952259, 0.04276406764984131, 0.15969085693359375], [0.007944658398628235, 0.1819705367088318, 0.10066018253564835, 0.08053939789533615, 0.01636311411857605, 0.048688050359487534, 0.029552709311246872, 0.264199435710907, 0.001350673264823854, 0.0018880742136389017, 0.0004103926185052842, 0.00024645699886605144, 0.0008562085567973554, 0.0005161879817023873, 0.0005914976354688406, 0.00022262656420934945, 0.0008615547558292747, 0.26313817501068115], [0.004351677838712931, 0.1049218475818634, 0.023654935881495476, 0.01347657572478056, 0.0033231237903237343, 0.011732801795005798, 0.009367807768285275, 0.4128333628177643, 0.0010776525596156716, 0.0030532439704984426, 0.00035810109693557024, 8.635554695501924e-05, 0.0002827808493748307, 0.00011901708785444498, 8.885247370926663e-05, 5.58290230401326e-05, 0.0005026459693908691, 0.41071340441703796], [0.00298727722838521, 0.09147679060697556, 0.0357806421816349, 0.03487347438931465, 0.018024416640400887, 0.03183107078075409, 0.01556073222309351, 0.3836572468280792, 0.0011362363584339619, 0.0006782917771488428, 0.00022001239995006472, 0.00016230341861955822, 0.0006807062891311944, 0.00014496099902316928, 0.00013147392019163817, 6.161232886370271e-05, 0.0005786609835922718, 0.38201409578323364], [0.0035966821014881134, 0.06551025807857513, 0.013189633376896381, 0.04333202540874481, 0.024851441383361816, 0.03478101268410683, 0.011727338656783104, 0.4012100100517273, 0.00043924665078520775, 0.0005194744444452226, 0.00027736168703995645, 0.00031563822994939983, 0.0002725331869442016, 3.6761030060006306e-05, 0.00011857205390697345, 2.758514710876625e-05, 0.00039944861782714725, 0.3993949294090271], [0.0031793289817869663, 0.08813859522342682, 0.021468086168169975, 0.018493860960006714, 0.010618675500154495, 0.0279953982681036, 0.010299609042704105, 0.41028106212615967, 0.0004112966707907617, 0.00034848120412789285, 0.0001248004991794005, 4.7105029807426035e-05, 0.00018984006601385772, 5.57861894776579e-05, 5.206191053730436e-05, 3.185711466358043e-05, 0.0003260566736571491, 0.4079381823539734], [0.013703657314181328, 0.22077995538711548, 0.04344845563173294, 0.16952601075172424, 0.061844389885663986, 0.22852610051631927, 0.02430669404566288, 0.11165245622396469, 0.006443170364946127, 0.002744769910350442, 0.0013868489768356085, 0.0010230879997834563, 0.0007518786587752402, 0.0003185270179528743, 0.0007320276345126331, 0.00017135565576609224, 0.0014815531903877854, 0.11115910857915878], [0.001001332071609795, 0.0025553430896252394, 0.00044469410204328597, 0.001190469483844936, 0.0006735154893249273, 0.0013918038457632065, 0.0009122511837631464, 0.4957064986228943, 0.0005680855829268694, 0.0005603294121101499, 0.0006452477537095547, 0.0001919170463224873, 0.0004129624576307833, 0.000152635489939712, 8.403157698921859e-05, 0.00011135741806356236, 0.0006951546529307961, 0.4927023649215698], [0.08107738941907883, 0.011324528604745865, 0.002080666832625866, 0.007459750398993492, 0.005246025510132313, 0.02239394746720791, 0.004761590622365475, 0.2691228985786438, 0.12580597400665283, 0.031250301748514175, 0.06340057402849197, 0.014039249159395695, 0.013083997182548046, 0.003814124967902899, 0.046004507690668106, 0.010202397592365742, 0.0211389921605587, 0.26779311895370483], [0.0782075747847557, 0.022505832836031914, 0.10314581543207169, 0.008031794801354408, 0.0010371037060394883, 0.004485743585973978, 0.004472496919333935, 0.27600163221359253, 0.010892135091125965, 0.11153902113437653, 0.020691072568297386, 0.0043562836945056915, 0.02049797773361206, 0.030513733625411987, 0.008059033192694187, 0.006501671392470598, 0.01419130526483059, 0.2748698890209198], [0.07825551182031631, 0.00940665602684021, 0.0060021053068339825, 0.004198170732706785, 0.0020313498098403215, 0.005787610542029142, 0.003600470023229718, 0.3718862533569336, 0.016161860898137093, 0.034793421626091, 0.05748305469751358, 0.0012402019929140806, 0.0164076779037714, 0.004419525619596243, 0.005775935016572475, 0.0032254557590931654, 0.009297475218772888, 0.37002718448638916], [0.05057526379823685, 0.008323089219629765, 0.0009085085475817323, 0.006656618323177099, 0.014173698611557484, 0.008025627583265305, 0.0035993054043501616, 0.3454916477203369, 0.05397433415055275, 0.02203592099249363, 0.08836708962917328, 0.005449588410556316, 0.020773759111762047, 0.004984206985682249, 0.00826052576303482, 0.004036776255816221, 0.010634067468345165, 0.3437299430370331], [0.034963395446538925, 0.0014047794975340366, 0.002178360242396593, 0.0014297130983322859, 0.0012178141623735428, 0.002676863456144929, 0.001752951880916953, 0.38912492990493774, 0.0195494182407856, 0.021251898258924484, 0.027202356606721878, 0.003961822483688593, 0.03671063110232353, 0.03246776759624481, 0.007089388091117144, 0.022583840414881706, 0.007069713436067104, 0.38736435770988464], [0.017442811280488968, 0.001918150344863534, 0.0006926674977876246, 0.0007144970004446805, 0.0001875092857517302, 0.0009876707335934043, 0.0007910492131486535, 0.44749048352241516, 0.03008483536541462, 0.008609713986515999, 0.002312814351171255, 0.0021903866436332464, 0.012001578696072102, 0.012441456317901611, 0.0018477686680853367, 0.009241306222975254, 0.005874434486031532, 0.44517087936401367], [0.03174576908349991, 0.0011304107028990984, 0.00082830322207883, 0.0006876364350318909, 0.0010677077807486057, 0.0006451161461882293, 0.003848656080663204, 0.31862542033195496, 0.023449184373021126, 0.07950320094823837, 0.02319246530532837, 0.007079004775732756, 0.1097661703824997, 0.04684983566403389, 0.020655497908592224, 0.005785191897302866, 0.008344809524714947, 0.3167956471443176], [0.03174343705177307, 0.0026678559370338917, 0.0017658871365711093, 0.0007326514460146427, 0.0005521929706446826, 0.0016383921029046178, 0.0017758198082447052, 0.3592188060283661, 0.03332483395934105, 0.060916077345609665, 0.011876175180077553, 0.019806725904345512, 0.04726152494549751, 0.03568797931075096, 0.0059629566967487335, 0.01980133354663849, 0.0077992877922952175, 0.3574680685997009], [0.0613168366253376, 0.013692638836801052, 0.0027491282671689987, 0.01076579187065363, 0.00255439430475235, 0.007069970015436411, 0.005471363663673401, 0.09839829802513123, 0.24366287887096405, 0.11935289949178696, 0.13109666109085083, 0.10287721455097198, 0.028928713873028755, 0.024575980380177498, 0.018888669088482857, 0.009318804368376732, 0.02128894440829754, 0.09799080342054367], [0.0010009740944951773, 0.0025523146614432335, 0.0004442945646587759, 0.0011882990365847945, 0.0006727419095113873, 0.0013891947455704212, 0.0009112672996707261, 0.4957152307033539, 0.0005664158379659057, 0.0005594454705715179, 0.0006444310420192778, 0.00019166499259881675, 0.00041232476360164583, 0.00015241997607517987, 8.388685091631487e-05, 0.00011124494631076232, 0.0006936229765415192, 0.492710143327713]], [[0.0036422070115804672, 0.007057573180645704, 0.0010539778741076589, 0.003334842622280121, 0.0010891295969486237, 0.00022427176008932292, 0.0019795389380306005, 0.024170737713575363, 0.7064722180366516, 0.10251493006944656, 0.06283649802207947, 0.026493264362215996, 0.014696556143462658, 0.0036413546185940504, 0.004593214951455593, 0.0027418159879744053, 0.009413661435246468, 0.024044346064329147], [0.011851780116558075, 0.0614747516810894, 0.20172077417373657, 0.3653539717197418, 0.04379682242870331, 0.06633026152849197, 0.02939881756901741, 0.09917144477367401, 0.0016688149189576507, 0.003589991247281432, 0.004183994606137276, 0.0012096449499949813, 0.005809845868498087, 0.000798914406914264, 0.001420599757693708, 0.0008567941840738058, 0.002724414924159646, 0.09863844513893127], [0.01582595333456993, 0.03478624299168587, 0.019529998302459717, 0.0939466655254364, 0.05436807498335838, 0.10193905234336853, 0.03646329045295715, 0.3162924647331238, 0.0016282853903248906, 0.001046043005771935, 0.0014808594714850187, 0.0010655458318069577, 0.0018016586545854807, 0.0005934956134296954, 0.00023437694471795112, 0.001904696342535317, 0.00217512552626431, 0.3149181604385376], [0.00448690727353096, 0.015007348731160164, 0.021600916981697083, 0.04702111333608627, 0.047102414071559906, 0.16032768785953522, 0.11787434667348862, 0.2902652621269226, 0.0021734731271862984, 0.00109265954233706, 0.0005623113247565925, 0.00029423358500935137, 0.001028856378979981, 0.0008378850179724395, 0.00038919184589758515, 0.00018598910537548363, 0.0006842610891908407, 0.2890651226043701], [0.005119938403367996, 0.019047295674681664, 0.006153302267193794, 0.02742820419371128, 0.024271495640277863, 0.03505076840519905, 0.12567727267742157, 0.37512344121932983, 0.00481015257537365, 0.0006357395905070007, 0.0006049498333595693, 0.0003315678332000971, 0.0002693079586606473, 0.0004132818430662155, 0.0004477749753277749, 6.652808224316686e-05, 0.0009656226029619575, 0.37358328700065613], [0.005925264209508896, 0.010493136942386627, 0.004021467640995979, 0.013691513799130917, 0.010804780758917332, 0.023570671677589417, 0.06311199069023132, 0.43231654167175293, 0.0028083231300115585, 0.0003323245909996331, 0.00030892156064510345, 0.00041790769319050014, 0.00019518942281138152, 0.00028414398548193276, 0.0004166628932580352, 0.00026019298820756376, 0.0007343369070440531, 0.4303065836429596], [0.012965837493538857, 0.03347909450531006, 0.008550948463380337, 0.021701518446207047, 0.009008733555674553, 0.005245594773441553, 0.01656460203230381, 0.40263140201568604, 0.042080193758010864, 0.015322872437536716, 0.011309266090393066, 0.009454583749175072, 0.007300923112779856, 0.0019606235437095165, 0.0005834015901200473, 0.00033132676617242396, 0.0010185432620346546, 0.40049049258232117], [0.0034260712563991547, 0.0025198296643793583, 0.002815804909914732, 0.0032265048939734697, 0.0011934671783819795, 0.002185315126553178, 0.0032762540504336357, 0.47856155037879944, 0.0020523176062852144, 0.0017993149813264608, 0.0013456615852192044, 0.002048744820058346, 0.0016328591154888272, 0.0017753656720742583, 0.00690334290266037, 0.004298403859138489, 0.004337972495704889, 0.4766012728214264], [0.01875324174761772, 0.00973748229444027, 0.0023574193473905325, 0.00362397194840014, 0.0016492892755195498, 0.0005858060321770608, 0.0023392443545162678, 0.1943603754043579, 0.12121763825416565, 0.1884276121854782, 0.10740137100219727, 0.05705871805548668, 0.05927840247750282, 0.013295712880790234, 0.0028583635576069355, 0.00543217221274972, 0.01804482936859131, 0.19357836246490479], [0.0030198576860129833, 0.0004927876289002597, 0.001078512636013329, 0.00043710783938877285, 0.0002686312946025282, 0.0006558963214047253, 0.0014635849511250854, 0.1313413828611374, 0.004360636696219444, 0.009575261734426022, 0.08685693889856339, 0.014123336412012577, 0.5559082627296448, 0.01223449595272541, 0.00896140281111002, 0.021504301577806473, 0.0170684065669775, 0.13064928352832794], [0.008353309705853462, 0.000321437866659835, 0.0005293457070365548, 5.8156903833150864e-05, 8.247432560892776e-05, 5.2001170843141153e-05, 0.0005973565857857466, 0.20362906157970428, 0.011075942777097225, 0.022517679259181023, 0.020920759066939354, 0.02357378602027893, 0.3198128640651703, 0.09502879530191422, 0.013496230356395245, 0.035608358681201935, 0.041424043476581573, 0.2029183804988861], [0.009152067825198174, 0.0009852458024397492, 0.0002541527501307428, 0.00016967757255770266, 0.00021692343580070883, 6.081242099753581e-05, 0.0009654249879531562, 0.307730108499527, 0.016295215114951134, 0.01114632934331894, 0.012875951826572418, 0.020904896780848503, 0.06028498709201813, 0.07499139755964279, 0.04586907848715782, 0.018223868682980537, 0.1132555827498436, 0.30661824345588684], [0.006740658078342676, 0.0005175302503630519, 0.0013778547290712595, 0.0002406312123639509, 7.279677811311558e-05, 0.00024307562853209674, 0.0004967139102518559, 0.25359541177749634, 0.0038795266300439835, 0.006846184376627207, 0.00870208814740181, 0.011079325340688229, 0.04094932600855827, 0.1541336476802826, 0.08064188808202744, 0.12790735065937042, 0.04998618736863136, 0.25258976221084595], [0.007080951239913702, 0.00021327511058188975, 0.00019897586025763303, 0.00011743741924874485, 9.135235450230539e-05, 0.00010144914267584682, 7.871707930462435e-05, 0.4141731262207031, 0.0026629457715898752, 0.0014274833956733346, 0.0023692648392170668, 0.0037362955044955015, 0.006342861335724592, 0.027015259489417076, 0.03168857842683792, 0.07161383330821991, 0.018621942028403282, 0.4124661684036255], [0.003499235026538372, 0.00031571750878356397, 0.00020319961186032742, 0.00017789349658414721, 0.0004091156297363341, 5.91629977861885e-05, 0.00010845696670003235, 0.41317248344421387, 0.0008407923742197454, 0.0005684671341441572, 0.000779435271397233, 0.001076255808584392, 0.006953460164368153, 0.017655963078141212, 0.010025746189057827, 0.10316696017980576, 0.029494084417819977, 0.41149359941482544], [0.0030118892900645733, 0.00013112528540659696, 6.154992297524586e-05, 5.3001589549239725e-05, 6.184765516081825e-05, 9.815933299250901e-05, 0.00011483454727567732, 0.4757375419139862, 0.0026274300180375576, 0.00029131394694559276, 0.00018223555525764823, 0.00028768618358299136, 0.0005731444689445198, 0.0026430757716298103, 0.0009993682615458965, 0.02990439347922802, 0.009313120506703854, 0.47390812635421753], [0.009829029440879822, 0.0009976509027183056, 0.0009463561000302434, 0.001816954230889678, 0.0007712733931839466, 0.0005233948468230665, 0.0009721603128127754, 0.4456765651702881, 0.04528362303972244, 0.012060627341270447, 0.005588527303189039, 0.006055388133972883, 0.003394325030967593, 0.005084871314466, 0.001248743967153132, 0.0037569780834019184, 0.012452364899218082, 0.443541020154953], [0.0034210931044071913, 0.002512470819056034, 0.002807773184031248, 0.0032167001627385616, 0.001190570299513638, 0.002180249197408557, 0.0032669962383806705, 0.4786283075809479, 0.00204465608112514, 0.0017922809347510338, 0.0013399231247603893, 0.0020405820105224848, 0.0016272638458758593, 0.0017691388493403792, 0.0068800910376012325, 0.004286604933440685, 0.004327340051531792, 0.47666797041893005]], [[0.020751314237713814, 0.004799561109393835, 0.0019199488451704383, 0.011148693040013313, 0.005613589193671942, 0.002854570047929883, 0.0025009375531226397, 0.09518235921859741, 0.3986840844154358, 0.09826471656560898, 0.1441383808851242, 0.049914002418518066, 0.009908169507980347, 0.006296933628618717, 0.013394632376730442, 0.004382498096674681, 0.035288382321596146, 0.09495726227760315], [0.0063170562498271465, 0.06808137893676758, 0.0244463924318552, 0.43810713291168213, 0.0389971025288105, 0.07027948647737503, 0.0071087186224758625, 0.16663572192192078, 0.004495683591812849, 0.001299315015785396, 0.0014399454230442643, 0.00024494214449077845, 0.0012541819596663117, 0.0001653982326388359, 0.001058100489899516, 0.0007199249230325222, 0.0034015250857919455, 0.16594800353050232], [0.011267751455307007, 0.008968206122517586, 0.002810870995745063, 0.018706360831856728, 0.002490292303264141, 0.017054222524166107, 0.018888814374804497, 0.45918408036231995, 0.0004455807211343199, 0.00013847854279447347, 0.000195062966668047, 3.27895613736473e-05, 0.00019244305440224707, 0.00013042817590758204, 9.624501399230212e-05, 0.0001623142889002338, 0.002006535418331623, 0.45722946524620056], [0.007357630878686905, 0.010242868214845657, 0.006551855709403753, 0.012094696052372456, 0.029264381155371666, 0.12965093553066254, 0.04332613945007324, 0.3792388141155243, 0.0012675425969064236, 0.00022477094898931682, 0.00044663582229986787, 6.498249422293156e-05, 0.00040139901102520525, 0.0002590409421827644, 0.00017475479398854077, 0.00019948005501646549, 0.0014698648592457175, 0.3777642548084259], [0.0056627057492733, 0.006732357200235128, 0.0003934691194444895, 0.008208667859435081, 0.011397861875593662, 0.21560978889465332, 0.034584805369377136, 0.35830745100975037, 0.0008527575992047787, 9.588804095983505e-05, 0.00022381392773240805, 0.00011451172031229362, 0.00017321806808467954, 0.00010812437540153041, 6.2616090872325e-05, 0.00019935290038120002, 0.0005989354685880244, 0.3566737174987793], [0.004096203483641148, 0.005384576041251421, 0.002170428168028593, 0.001310622552409768, 0.0007041344069875777, 0.006439523305743933, 0.031729549169540405, 0.4746916890144348, 8.405628614127636e-05, 0.00011596980039030313, 3.840967110591009e-05, 5.9437323216116056e-05, 0.00017175795801449567, 4.98275003337767e-05, 0.00017790160200092942, 0.00015131272084545344, 0.00044390567927621305, 0.47218066453933716], [0.013427460566163063, 0.010918931104242802, 0.003710235934704542, 0.007505948189646006, 0.006578024011105299, 0.007909275591373444, 0.017037607729434967, 0.4567281901836395, 0.012575414963066578, 0.002385006519034505, 0.0018776056822389364, 0.0018559142481535673, 0.0009115739958360791, 0.00038237383705563843, 0.0003272334288340062, 0.00013741855218540877, 0.0011080330004915595, 0.454623818397522], [0.00931310374289751, 0.002043264452368021, 0.0009078295552171767, 0.0012289800215512514, 0.0006137617165222764, 0.0013266542227938771, 0.004078489262610674, 0.4844159781932831, 0.0008568183402530849, 0.001052974141202867, 0.0013946084072813392, 0.000907968613319099, 0.0018376810476183891, 0.0010192907648161054, 0.0015269870636984706, 0.001625138451345265, 0.0033921042922884226, 0.4824583828449249], [0.041845064610242844, 0.0014211677480489016, 0.0010739774443209171, 0.0022051555570214987, 0.0027691309805959463, 0.001864167395979166, 0.0007332231034524739, 0.17150144279003143, 0.13701580464839935, 0.02929798513650894, 0.1972234547138214, 0.19314946234226227, 0.015112253837287426, 0.009518761187791824, 0.011236514896154404, 0.004896503407508135, 0.00823812186717987, 0.17089775204658508], [0.03835882619023323, 0.0014122627908363938, 0.0014373030280694366, 0.0015098517760634422, 0.000273301440756768, 0.00030480301938951015, 0.000676378549542278, 0.3460597097873688, 0.03104487434029579, 0.011769531294703484, 0.11456726491451263, 0.026815883815288544, 0.05415477603673935, 0.00569314556196332, 0.005290685221552849, 0.0033986505586653948, 0.01246266532689333, 0.34477007389068604], [0.012215996161103249, 0.00022063068172428757, 0.0002967352047562599, 5.586546831182204e-05, 4.291735967854038e-05, 4.190787149127573e-05, 0.0001948511489899829, 0.0593157522380352, 0.002997629577293992, 0.006254294421523809, 0.009349319152534008, 0.015662996098399162, 0.77195143699646, 0.009479538537561893, 0.0328594446182251, 0.014618106186389923, 0.005338371731340885, 0.059104252606630325], [0.008182763122022152, 0.000944608123973012, 0.00015276652993634343, 0.00022439021267928183, 0.0002934311924036592, 0.0006249533616937697, 0.00013672579370904714, 0.07767671346664429, 0.005449604708701372, 0.0036976486444473267, 0.07359808683395386, 0.015978191047906876, 0.38160690665245056, 0.08131539076566696, 0.10984190553426743, 0.1582321673631668, 0.004691052250564098, 0.07735270261764526], [0.006390031427145004, 0.0003995358129031956, 0.00017632533854339272, 0.00011897386866621673, 0.0001413556601619348, 0.00020264093473087996, 0.00031828568899072707, 0.2741048336029053, 0.0006060952437110245, 0.003205413930118084, 0.009265284053981304, 0.00717315124347806, 0.026316219940781593, 0.05662928521633148, 0.20915424823760986, 0.11072582006454468, 0.022327108308672905, 0.27274537086486816], [0.0033899538684636354, 0.00010152572940569371, 8.424166298937052e-05, 2.1436753740999848e-05, 2.34245653700782e-05, 4.69936421723105e-05, 7.727346383035183e-05, 0.4635946452617645, 0.00030037836404517293, 0.0003546596853993833, 0.00141679379157722, 0.0023534621577709913, 0.006953537929803133, 0.004299550782889128, 0.011724716983735561, 0.03646763786673546, 0.007749668322503567, 0.46104007959365845], [0.0031703165732324123, 0.0001256372925126925, 0.0001768103684298694, 6.991021655267105e-05, 0.00011035898205591366, 0.00014179418212734163, 2.4866711100912653e-05, 0.05497220903635025, 0.0007178115774877369, 0.0002625630295369774, 0.0005267371307127178, 0.002004470909014344, 0.028926579281687737, 0.0021679329220205545, 0.004161909222602844, 0.8444170355796814, 0.0032676609698683023, 0.0547553114593029], [0.0037812539376318455, 8.499257091898471e-05, 0.00013007900270167738, 3.832468428299762e-05, 3.395142266526818e-05, 0.00017415509501006454, 0.00025531640858389437, 0.469820111989975, 0.00034310019691474736, 0.0004103026876691729, 8.775234164204448e-05, 0.00010796101560117677, 0.0037994615267962217, 0.002857225015759468, 0.011160237714648247, 0.02383141592144966, 0.015399402007460594, 0.4676850736141205], [0.014507394284009933, 0.0006518413429148495, 0.0007256737444549799, 0.00084561703260988, 0.0012786348816007376, 0.0009370215702801943, 0.0011542655993252993, 0.4649701416492462, 0.01440021488815546, 0.0032844403758645058, 0.0019431088585406542, 0.0014942371053621173, 0.0009428785997442901, 0.0014801366487517953, 0.003478387603536248, 0.0039110989309847355, 0.021029872819781303, 0.46296507120132446], [0.009303167462348938, 0.002040123799815774, 0.0009067964274436235, 0.001227068598382175, 0.0006124984356574714, 0.0013231176417320967, 0.004076721612364054, 0.4844406843185425, 0.0008550868951715529, 0.0010501407086849213, 0.0013898775214329362, 0.0009051992674358189, 0.001833724440075457, 0.0010180545505136251, 0.001523445243947208, 0.0016230366891250014, 0.00338873197324574, 0.48248252272605896]], [[0.010739102959632874, 0.035216644406318665, 0.09318838268518448, 0.01607787050306797, 0.022773142904043198, 0.033835072070360184, 0.032645050436258316, 0.3586094081401825, 0.007223067805171013, 0.0005059897084720433, 0.002031706040725112, 0.004577308427542448, 0.005930930841714144, 0.005927142221480608, 0.000706797291059047, 0.004443760495632887, 0.008122655563056469, 0.3574458658695221], [7.376516441581771e-05, 0.002476709894835949, 0.9942256808280945, 0.0013813140103593469, 0.000667559274006635, 0.0008037805091589689, 5.074025921203429e-06, 0.0001157826918642968, 1.8883078155340627e-05, 2.1585708964266814e-05, 3.3695760066621006e-06, 2.2813023861090187e-06, 8.392678864765912e-06, 7.348423969233409e-05, 6.464802737582431e-08, 6.3217280512617435e-06, 7.591816597596335e-07, 0.00011535495286807418], [0.011573401279747486, 0.01070353388786316, 0.006627531722187996, 0.6762381196022034, 0.0036514888051897287, 0.0018089571967720985, 0.0033066552132368088, 0.1426980048418045, 6.897190178278834e-05, 4.292085213819519e-05, 8.20855493657291e-05, 2.6496070404391503e-06, 7.246096356539056e-05, 6.872538051538868e-06, 3.069247031817213e-05, 0.00020832280279137194, 0.0010169529123231769, 0.14186039566993713], [0.0006160908960737288, 0.00015899499703664333, 0.0030842525884509087, 0.0034458155278116465, 0.33417969942092896, 0.6519339084625244, 0.00014194434334058315, 0.0032139963004738092, 8.991200957098044e-06, 5.216325575929659e-07, 6.436745820792567e-07, 1.029315717460122e-05, 2.277415660500992e-06, 1.3444147271002294e-06, 2.8569901999730973e-08, 1.1361851193214534e-06, 5.170564691070467e-06, 0.0031948492396622896], [7.603752601426095e-05, 1.856725793913938e-05, 0.007021680008620024, 0.0005639520240947604, 0.011241745203733444, 0.9782938957214355, 5.4092553909868e-05, 0.0013557372149080038, 4.623369477485539e-06, 1.1317769121887977e-07, 4.6429411781900853e-07, 1.406587671226589e-05, 4.54208156952518e-06, 8.771768307269667e-07, 1.6399999580585245e-08, 1.0204817044723313e-06, 3.5763869732363673e-07, 0.001348167541436851], [0.0026723502669483423, 0.001085659139789641, 0.0004051367868669331, 0.009398607537150383, 0.0002153673121938482, 0.00036421630647964776, 0.3406936526298523, 0.3231770098209381, 0.00024878274416550994, 6.021094122843351e-06, 1.049535285346792e-06, 2.1661760456481716e-06, 7.335820100706769e-06, 2.502153790828743e-07, 4.090417178304051e-07, 1.0641939525157795e-06, 0.00036656862357631326, 0.32135435938835144], [0.00023723015328869224, 0.0006981005426496267, 2.4141647372744046e-05, 2.7388308808440343e-05, 2.6869329303735867e-05, 2.9445191103150137e-05, 0.0034527024254202843, 0.4995739459991455, 2.7182299163541757e-05, 1.0028976248577237e-05, 7.592287261104502e-07, 4.656002943193016e-07, 3.776534356347838e-07, 1.33890332154607e-09, 3.6247999046779e-10, 2.3842370300286575e-09, 1.4079528227739502e-06, 0.4958899915218353], [0.04862619936466217, 0.010345939546823502, 0.011460083536803722, 0.009015029296278954, 0.0040201121009886265, 0.006995554082095623, 0.017382990568876266, 0.4154266119003296, 0.004361375235021114, 0.0036321976222097874, 0.009084069170057774, 0.003381872782483697, 0.0069866967387497425, 0.0029012251179665327, 0.0034599476493895054, 0.004867488984018564, 0.023211710155010223, 0.4148408770561218], [0.0025427357759326696, 0.0005715533625334501, 7.800157618476078e-06, 5.661114300892223e-06, 8.262705932793324e-07, 6.325914228000329e-07, 4.651262133847922e-05, 0.013930053450167179, 0.0080681461840868, 0.9516995549201965, 0.003245079889893532, 0.004849835764616728, 0.0010300236754119396, 6.644712266279384e-05, 2.958356617455138e-06, 5.798077836516313e-06, 4.938444180879742e-05, 0.013877182267606258], [0.0017017682548612356, 8.346433787664864e-06, 7.107277724571759e-06, 2.2483165594167076e-05, 1.4175762430568284e-07, 4.973904310645594e-07, 1.9757344489335082e-06, 0.006309520918875933, 0.0013878701720386744, 0.001177509198896587, 0.9150026440620422, 0.006744782906025648, 0.060930199921131134, 0.00010960926010739058, 0.00019088649423792958, 0.0001158466620836407, 9.964558557840064e-06, 0.006278964225202799], [0.0020337742753326893, 3.529844616423361e-05, 2.4121014575939626e-05, 9.663378932600608e-07, 6.157587904453976e-06, 1.5592542695230804e-05, 1.2699849776254268e-06, 0.0043902406468987465, 0.0032813656143844128, 0.028831880539655685, 0.005410725250840187, 0.21648848056793213, 0.7304946780204773, 0.0029678514692932367, 4.8133097152458504e-05, 0.0015799568500369787, 1.3770111763733439e-05, 0.004375702701508999], [0.0005303443176671863, 3.9675505831837654e-05, 3.254097009630641e-06, 1.245289240614511e-07, 3.2402775218542956e-07, 3.6152459870208986e-07, 1.8789179989653348e-07, 0.002272923244163394, 0.0046205236576497555, 0.0068222335539758205, 0.00458117900416255, 0.0023222819436341524, 0.9605902433395386, 0.013480154797434807, 8.107777830446139e-05, 0.002388590946793556, 4.747116690850817e-06, 0.002261755056679249], [2.281972592754755e-05, 1.624000105948653e-05, 1.0081356776936445e-05, 1.3843344959241222e-07, 7.069632829370676e-06, 8.678030098963063e-07, 1.9053494781928748e-08, 7.118482608348131e-05, 3.3621238344494486e-06, 0.00015069826622493565, 3.0588049412472174e-05, 0.0004417619202286005, 0.00038664171006530523, 0.9986591339111328, 1.8347587683820166e-05, 8.73598110047169e-05, 2.2565334802493453e-05, 7.110259321052581e-05], [0.0032094810158014297, 3.641888906713575e-05, 1.0902310350502376e-05, 1.6410942407674156e-05, 1.4611745200454607e-06, 8.242199669439287e-07, 2.1959504010737874e-06, 0.03874398022890091, 0.00022332201479002833, 8.637216524221003e-05, 0.002761505078524351, 0.002770136808976531, 0.013012364506721497, 0.002262247260659933, 0.8887390494346619, 0.0015880463179200888, 0.008026362396776676, 0.0385088175535202], [6.218979251571e-05, 2.1565676888712915e-07, 3.651579447705444e-07, 1.926905213167629e-08, 4.639971962205891e-09, 7.630453779938762e-08, 1.5179700829648368e-09, 0.0011349233100190759, 1.602050474502903e-07, 1.021900970954448e-06, 3.350788233547064e-07, 3.6265521430323133e-06, 0.0017977836541831493, 0.00012570687977131456, 3.6488570913206786e-05, 0.9956827163696289, 2.4340452000615187e-05, 0.0011299801990389824], [0.002804720774292946, 1.023280401568627e-05, 1.8472463807484019e-06, 8.07148462627083e-05, 1.713002149017484e-07, 1.8818593616742874e-06, 1.0591280442895368e-05, 0.3480708599090576, 7.352324610110372e-05, 1.911680328703369e-06, 6.203565135365352e-05, 2.282212153659202e-05, 0.00048755796160548925, 0.0001137986037065275, 0.0011730189435184002, 0.0030736043117940426, 0.2974979877471924, 0.34651273488998413], [0.0003206044784747064, 0.00015877415717113763, 8.22908987174742e-06, 7.803750122548081e-06, 4.569463271764107e-06, 3.1908862752061395e-07, 3.2273526358039817e-06, 0.49984389543533325, 5.2718711231136695e-05, 1.4634963008575141e-05, 1.1255574463575613e-06, 1.4057759472052567e-06, 1.674311079113977e-06, 2.537396142088255e-07, 7.450087764482305e-07, 7.41702706363867e-06, 0.0035545669961720705, 0.4960179328918457], [0.0485931858420372, 0.010334265418350697, 0.011445838958024979, 0.009006194770336151, 0.004006421193480492, 0.006970596965402365, 0.01736915484070778, 0.4154735207557678, 0.004366021137684584, 0.0036354269832372665, 0.009095427580177784, 0.003381686983630061, 0.006999317556619644, 0.002906666835770011, 0.0034656899515539408, 0.0048728808760643005, 0.023190118372440338, 0.4148876368999481]], [[0.012844174169003963, 0.0798042044043541, 0.02089909464120865, 0.00836143922060728, 0.009879563003778458, 0.026802949607372284, 0.02147362008690834, 0.3655009865760803, 0.04412395507097244, 0.006276862230151892, 0.008986221626400948, 0.005198250524699688, 0.0039042446296662092, 0.0020785119850188494, 0.0003550256078597158, 0.011095521971583366, 0.00840063951909542, 0.36401474475860596], [0.0028570315334945917, 0.05234939977526665, 0.19034412503242493, 0.025746742263436317, 0.06097949668765068, 0.027981102466583252, 0.0012445069150999188, 0.3173777461051941, 0.0007383592892438173, 0.0013314195675775409, 0.0001955327024916187, 0.00034650886664167047, 0.0006495795678347349, 0.0005395866464823484, 0.00016830993990879506, 0.0004968298017047346, 0.0004924914101138711, 0.31616121530532837], [0.006136682815849781, 0.01146556157618761, 0.009361186064779758, 0.01500844955444336, 0.004675759933888912, 0.00569231528788805, 0.0016274754889309406, 0.473429799079895, 0.00011368421837687492, 0.0002641089085955173, 6.203964585438371e-05, 1.4243978512240574e-05, 7.455216109519824e-05, 0.00012118379527237266, 0.0002380314836045727, 0.0007043914520181715, 0.00031047113589011133, 0.47070005536079407], [0.003466307418420911, 0.008990129455924034, 0.012424010783433914, 0.008494686335325241, 0.02612609788775444, 0.08612176775932312, 0.009130601771175861, 0.42225393652915955, 0.000520925153978169, 0.00038446561666205525, 7.057125912979245e-05, 4.501350849750452e-05, 0.0001744671753840521, 0.00024384367861784995, 3.244137769797817e-05, 5.129660712555051e-05, 0.0006882306770421565, 0.4207812249660492], [0.0013054993469268084, 0.0018940384034067392, 0.003884206060320139, 0.0037377597764134407, 0.005761050619184971, 0.09599050879478455, 0.011348559521138668, 0.43779850006103516, 0.0006217652116902173, 0.00013963092351332307, 9.481894812779501e-05, 3.73477341781836e-05, 0.0005518122343346477, 6.806761666666716e-05, 2.502367897250224e-05, 1.589303974469658e-05, 0.0002663562772795558, 0.4364590644836426], [0.010308688506484032, 0.0014664509799331427, 0.0005080963601358235, 0.00362275424413383, 0.0015095262788236141, 0.013284358195960522, 0.16884632408618927, 0.3999566435813904, 0.0006568006938323379, 4.1631526983110234e-05, 1.460044313716935e-05, 5.936832894803956e-05, 0.00016476496239192784, 3.833779919659719e-05, 8.019567758310586e-05, 3.8985155697446316e-05, 0.0010843705385923386, 0.3983181416988373], [0.006326482631266117, 0.016756873577833176, 0.004989859648048878, 0.0022639245726168156, 0.0036894602235406637, 0.008774670772254467, 0.025241641327738762, 0.4627170264720917, 0.005648818798363209, 0.0015040470752865076, 0.0007923016091808677, 0.00034435675479471684, 0.0003507158544380218, 9.937327558873221e-05, 1.1070238542743027e-05, 0.00013364804908633232, 0.0002544164308346808, 0.46010124683380127], [0.0074259270913898945, 0.0025825803168118, 0.002699341857805848, 0.0035687170457094908, 0.002208363963291049, 0.004321923945099115, 0.007163169328123331, 0.4735374450683594, 0.0021978095173835754, 0.0023925371933728456, 0.0025940099731087685, 0.0022662749979645014, 0.0034476330038160086, 0.002051194431260228, 0.0019496784079819918, 0.002557227620854974, 0.004368294961750507, 0.47266778349876404], [0.010363788343966007, 0.00221996963955462, 0.00028333021327853203, 0.00022574860486201942, 0.0003813230141531676, 0.00025015787105076015, 0.0009960770839825273, 0.39267635345458984, 0.017529914155602455, 0.1454702913761139, 0.017429856583476067, 0.005330340936779976, 0.009252765215933323, 0.003269227221608162, 0.00026004217215813696, 0.0016475818119943142, 0.0011724071810021996, 0.39124077558517456], [0.007024009712040424, 0.00032848032424226403, 0.0002180506708100438, 8.483139390591532e-05, 9.839046106208116e-05, 0.0003330608597025275, 0.0003289499436505139, 0.4584265351295471, 0.005763299763202667, 0.011496031656861305, 0.02137327753007412, 0.00482274079695344, 0.016936782747507095, 0.010892217047512531, 0.0029559284448623657, 0.0010347227798774838, 0.0011406763223931193, 0.4567421078681946], [0.004309942480176687, 0.0006949015078134835, 0.0006724866689182818, 0.00019897845049854368, 0.001451589516364038, 0.0005847359425388277, 0.0006988535169512033, 0.3003343641757965, 0.009630396962165833, 0.12034106254577637, 0.02156457118690014, 0.14578095078468323, 0.05986659973859787, 0.02222859114408493, 0.00602375902235508, 0.0026746727526187897, 0.0034049905370920897, 0.29953858256340027], [0.0029643962625414133, 0.0006692204624414444, 0.00040533739957027137, 6.326146831270307e-05, 0.0006685216794721782, 0.00029780768090859056, 0.0001575941132614389, 0.4217769503593445, 0.00631742924451828, 0.03040814958512783, 0.009120620787143707, 0.020581409335136414, 0.02309538424015045, 0.051448456943035126, 0.006610249634832144, 0.0028994509484618902, 0.0018828649772331119, 0.420632928609848], [0.0018011615611612797, 0.0009151097037829459, 0.0004891938879154623, 3.94701273762621e-05, 4.397658631205559e-05, 0.00025211929460056126, 0.00017071719048544765, 0.35902509093284607, 0.0011423559626564384, 0.0030309688299894333, 0.005649940576404333, 0.005907784216105938, 0.01582212746143341, 0.21821896731853485, 0.0035398041363805532, 0.01576819084584713, 0.0096874525770545, 0.3584956228733063], [0.0022777696140110493, 7.42414194974117e-05, 0.00010910586570389569, 2.774424137896858e-05, 2.026858419412747e-05, 4.3960251787211746e-05, 4.957142300554551e-05, 0.4659847915172577, 0.00024186834343709052, 0.0004234013322275132, 0.0008418430224992335, 0.0008809684659354389, 0.0028999261558055878, 0.012522848322987556, 0.0293912123888731, 0.015852419659495354, 0.004182854667305946, 0.46417516469955444], [0.001988678239285946, 0.0005271757254377007, 0.00023859803332015872, 0.00011534810619195923, 0.0005994653911329806, 0.00026491089374758303, 1.8572067347122356e-05, 0.3413005471229553, 0.00015226945106405765, 0.0003291224129498005, 0.0005546271568164229, 0.0020807706750929356, 0.005171212833374739, 0.07925518602132797, 0.012170820496976376, 0.2019495666027069, 0.012987622059881687, 0.3402954638004303], [0.0055058542639017105, 4.991352398064919e-05, 4.2294817831134424e-05, 4.501306830206886e-05, 1.1363406883901916e-05, 6.326483708107844e-05, 0.0003240192891098559, 0.42916765809059143, 0.0002106890024151653, 0.0001240645651705563, 0.00011310317495372146, 0.00026939387316815555, 0.0009564697975292802, 0.004547665826976299, 0.010004445910453796, 0.01889570616185665, 0.10194670408964157, 0.4277224540710449], [0.009638904593884945, 0.003501611528918147, 0.0030555815901607275, 0.00112821941729635, 0.0013083498924970627, 0.0010055378079414368, 0.0010755303082987666, 0.46245238184928894, 0.004783840384334326, 0.0018289550207555294, 0.0010401075705885887, 0.0008228583610616624, 0.0015458957059308887, 0.0014571206411346793, 0.000449574610684067, 0.01614176668226719, 0.028757963329553604, 0.46000587940216064], [0.0074120769277215, 0.0025762582663446665, 0.002694974420592189, 0.0035594243090599775, 0.0022035588044673204, 0.0043113031424582005, 0.007153714075684547, 0.473585307598114, 0.002194031374529004, 0.002386929700151086, 0.0025871640536934137, 0.002261222107335925, 0.0034439442679286003, 0.0020488405134528875, 0.0019478540634736419, 0.002553340746089816, 0.004364998545497656, 0.4727151095867157]], [[0.052090659737586975, 0.002184901386499405, 0.0048636808060109615, 0.0025722146965563297, 0.0014157937839627266, 0.002135984366759658, 0.007379084825515747, 0.05510512366890907, 0.10771066695451736, 0.09795472770929337, 0.14250078797340393, 0.023203276097774506, 0.05535798519849777, 0.1301063448190689, 0.01747569814324379, 0.11263162642717361, 0.1303369700908661, 0.05497439578175545], [0.019005930051207542, 0.1590835452079773, 0.09061627089977264, 0.04581692814826965, 0.048733022063970566, 0.029990745708346367, 0.1322750747203827, 0.20815229415893555, 0.010672581382095814, 0.0076275174506008625, 0.003390495665371418, 0.0030649350956082344, 0.009822240099310875, 0.00764884939417243, 0.001791561720892787, 0.004078608471900225, 0.01087079755961895, 0.20735867321491241], [0.014433973468840122, 0.0880531594157219, 0.07811418175697327, 0.025221742689609528, 0.007888401858508587, 0.05956242233514786, 0.07660578191280365, 0.2965799868106842, 0.003878543386235833, 0.0061511872336268425, 0.0013668339233845472, 0.0009939747396856546, 0.004884499125182629, 0.018866483122110367, 0.003180424915626645, 0.002672426635399461, 0.015901267528533936, 0.29564470052719116], [0.017160840332508087, 0.0538535974919796, 0.037526920437812805, 0.04595709219574928, 0.029709894210100174, 0.02497101202607155, 0.16450288891792297, 0.28642570972442627, 0.0030923252925276756, 0.0022176923230290413, 0.017148872837424278, 0.00275771738961339, 0.009007244370877743, 0.0046106367371976376, 0.0025053690187633038, 0.004298071842640638, 0.008863374590873718, 0.2853906750679016], [0.009029701352119446, 0.04390275105834007, 0.03652947396039963, 0.06385244429111481, 0.10592278838157654, 0.05497579649090767, 0.09197823703289032, 0.2754691541194916, 0.0039887879975140095, 0.002595728263258934, 0.004820017144083977, 0.018887631595134735, 0.00461242813616991, 0.0012559709139168262, 0.0020406160037964582, 0.0015585626242682338, 0.003971225582063198, 0.27460870146751404], [0.016578320413827896, 0.03908045217394829, 0.10073107481002808, 0.035165317356586456, 0.03728099539875984, 0.03865600377321243, 0.10135293751955032, 0.26606327295303345, 0.008089425042271614, 0.0042185052298009396, 0.007212627213448286, 0.005364152602851391, 0.014577221125364304, 0.03742063418030739, 0.0031429212540388107, 0.010746891610324383, 0.009438537992537022, 0.2648807466030121], [0.015786821022629738, 0.02948293834924698, 0.0934114158153534, 0.04438027739524841, 0.041531480848789215, 0.042542241513729095, 0.059665970504283905, 0.29884546995162964, 0.01240166649222374, 0.005023085977882147, 0.00642746826633811, 0.007863108068704605, 0.0040274555794894695, 0.012273977510631084, 0.004727882798761129, 0.004532523453235626, 0.0192925576120615, 0.29778367280960083], [0.006030738353729248, 0.0023392923176288605, 0.005748499184846878, 0.0027461848221719265, 0.0019342971500009298, 0.002150171436369419, 0.009220965206623077, 0.4717944860458374, 0.0033330449368804693, 0.001902337302453816, 0.0019142376258969307, 0.0021520627196878195, 0.0019297396065667272, 0.0016741558210924268, 0.0004917584592476487, 0.0010305935284122825, 0.01413970161229372, 0.46946775913238525], [0.07993964105844498, 0.0027988022193312645, 0.002320235362276435, 0.002305284608155489, 0.0023923267144709826, 0.0010912404395639896, 0.007339422591030598, 0.19986312091350555, 0.03302154317498207, 0.04152246192097664, 0.08813502639532089, 0.1377996802330017, 0.02136269211769104, 0.0258950088173151, 0.024599319323897362, 0.015068632550537586, 0.11539774388074875, 0.1991477757692337], [0.08311568945646286, 0.005008289590477943, 0.012060679495334625, 0.0013727740151807666, 0.0003883234749082476, 0.00036722028744407, 0.003588092979043722, 0.09027409553527832, 0.025588011369109154, 0.08640909194946289, 0.05732601135969162, 0.0395367331802845, 0.08872028440237045, 0.21484820544719696, 0.07040558010339737, 0.03960118815302849, 0.09140832722187042, 0.08998134732246399], [0.0555092990398407, 0.0010100443614646792, 0.000561111664865166, 0.0057987854816019535, 0.001230020192451775, 0.002007002243772149, 0.004329096991568804, 0.17694149911403656, 0.022444628179073334, 0.020271124318242073, 0.08008985221385956, 0.07794909179210663, 0.0647805705666542, 0.018461761996150017, 0.10288785398006439, 0.019986581057310104, 0.1693289577960968, 0.17641273140907288], [0.04985124617815018, 0.001903466647490859, 0.0008971985662356019, 0.003410105360671878, 0.0036717457696795464, 0.0030870907939970493, 0.005994782317429781, 0.23521101474761963, 0.014776114374399185, 0.02036803960800171, 0.0523671917617321, 0.07634344696998596, 0.03216150775551796, 0.030668415129184723, 0.0426567979156971, 0.021524589508771896, 0.17067310214042664, 0.23443415760993958], [0.08185428380966187, 0.0016140748048201203, 0.0009582791826687753, 0.0013916378375142813, 0.0006667936686426401, 0.00393654964864254, 0.004610504489392042, 0.15251100063323975, 0.019260644912719727, 0.026944225654006004, 0.027461031451821327, 0.02499232441186905, 0.13205774128437042, 0.03910479322075844, 0.11330936849117279, 0.1194438561797142, 0.09803228825330734, 0.15185050666332245], [0.04373820126056671, 0.0013439134927466512, 0.013023088686168194, 0.0008012279286049306, 0.00044838577741757035, 0.005062331445515156, 0.0023424848914146423, 0.21114830672740936, 0.00901955645531416, 0.028735289350152016, 0.012988061644136906, 0.009261177852749825, 0.06049458310008049, 0.1171187236905098, 0.04373032599687576, 0.13701216876506805, 0.09353122115135193, 0.21020089089870453], [0.047847066074609756, 0.001156259560957551, 0.0017387664411216974, 0.002434162423014641, 0.0022532062139362097, 0.0021263642702251673, 0.0030353169422596693, 0.17679449915885925, 0.01974545791745186, 0.020326262339949608, 0.02233302965760231, 0.04081903025507927, 0.013439544476568699, 0.20141346752643585, 0.11315732449293137, 0.03762490674853325, 0.11737623810768127, 0.1763792186975479], [0.06787757575511932, 0.0008852275204844773, 0.002366378204897046, 0.0012901215814054012, 0.00014013375039212406, 0.003571044420823455, 0.0029307121876627207, 0.21902814507484436, 0.008981623686850071, 0.01992524042725563, 0.00858902744948864, 0.008849120698869228, 0.10506978631019592, 0.07391723990440369, 0.0223555751144886, 0.10521212220191956, 0.13090288639068604, 0.21810802817344666], [0.04927131161093712, 0.0022126000840216875, 0.0052202604711055756, 0.0033018947578966618, 0.0029009829740971327, 0.001966975163668394, 0.007025912869721651, 0.33490821719169617, 0.036221131682395935, 0.02017240785062313, 0.01974027417600155, 0.020180750638246536, 0.016847550868988037, 0.05306928977370262, 0.009960493072867393, 0.024757836014032364, 0.058607880026102066, 0.3336341977119446], [0.0060246591456234455, 0.002337387762963772, 0.005739856977015734, 0.002741975476965308, 0.0019332412630319595, 0.0021465588361024857, 0.009212481789290905, 0.4718326926231384, 0.0033306328114122152, 0.0018994248239323497, 0.0019120032666251063, 0.002149031264707446, 0.0019259025575593114, 0.0016709137707948685, 0.0004907639813609421, 0.0010284932795912027, 0.014118067920207977, 0.46950578689575195]]], [[[0.0198357030749321, 0.06936673074960709, 0.09549589455127716, 0.04435005784034729, 0.05328927934169769, 0.13864509761333466, 0.17221511900424957, 0.1903165876865387, 0.0033662288915365934, 0.009243504144251347, 0.0021781709510833025, 0.00207845913246274, 0.00017927895532920957, 0.0005661554750986397, 0.0018799557583406568, 0.000555303820874542, 0.006812863517552614, 0.1896256059408188], [0.007963762618601322, 0.016742318868637085, 0.012472191825509071, 0.0020592662040144205, 0.0026153794024139643, 0.004086544271558523, 0.0036961862351745367, 0.47501203417778015, 0.0003098894376307726, 0.000287247181404382, 0.00030760146910324693, 0.0001648959587328136, 0.00023569242330268025, 9.597042662790045e-05, 0.00013741022848989815, 0.00011434373300289735, 0.000613885116763413, 0.4730854630470276], [0.0002830388257279992, 0.03930000588297844, 0.0035642434377223253, 0.0004981998936273158, 0.0030839056707918644, 0.00046691964962519705, 0.0010312205413356423, 0.47620129585266113, 0.00010498386109247804, 0.00013606913853436708, 0.00020151807984802872, 0.0002990549255628139, 7.56510125938803e-05, 3.746096626855433e-05, 7.097942580003291e-05, 1.6067249816842377e-05, 0.0003392927465029061, 0.47429001331329346], [0.00446266308426857, 0.06989709287881851, 0.4190283715724945, 0.016530873253941536, 0.002636696444824338, 0.015375549905002117, 0.0010259931441396475, 0.23205652832984924, 0.0003654521715361625, 0.005422619171440601, 0.00027639706968329847, 0.00023947392764966935, 0.0001316989801125601, 0.000385541730793193, 0.00015174891450442374, 0.0002819782530423254, 0.0005226696957834065, 0.23120859265327454], [0.02804722636938095, 0.03617863357067108, 0.4235079884529114, 0.1779247224330902, 0.016106240451335907, 0.005510479211807251, 0.0037310183979570866, 0.14683204889297485, 0.00117478147149086, 0.007664066273719072, 0.0008031700272113085, 0.0003400433633942157, 0.00047261835425160825, 0.0012937731808051467, 0.000253152014920488, 0.001010341220535338, 0.002899410203099251, 0.14625035226345062], [0.006059535779058933, 0.026572220027446747, 0.1781032830476761, 0.1149151548743248, 0.09017074108123779, 0.008880454115569592, 0.005825142841786146, 0.2820753753185272, 0.00045368948485702276, 0.002319447696208954, 0.0005668747471645474, 0.0003588380350265652, 0.00011267008812865242, 0.0005472124903462827, 9.347544255433604e-05, 0.0005169360083527863, 0.0013132994063198566, 0.28111571073532104], [0.002722575794905424, 0.0087135536596179, 0.004873128142207861, 0.010396331548690796, 0.019262010231614113, 0.355297327041626, 0.08294752985239029, 0.25481200218200684, 0.0029435749165713787, 0.0007735161925666034, 0.0004732540110126138, 0.0002592862874735147, 0.00012160457845311612, 0.0002667648659553379, 0.0001134481790359132, 0.0005550141213461757, 0.0015133682172745466, 0.25395575165748596], [0.0010898113250732422, 0.003750736126676202, 0.0017022984102368355, 0.001974439015612006, 0.0031029079109430313, 0.0018419966800138354, 0.005618029274046421, 0.47816482186317444, 0.0012843201402574778, 0.0011919261887669563, 0.0021610234398394823, 0.001329431775957346, 0.001791071379557252, 0.002343082567676902, 0.004804319702088833, 0.0022571496665477753, 0.008350817486643791, 0.4772418141365051], [0.48288941383361816, 0.0036717320326715708, 0.001377971493639052, 0.0023675193078815937, 0.0014998248079791665, 0.013999790884554386, 0.005092821549624205, 0.19941426813602448, 0.02730611152946949, 0.01440039835870266, 0.014395291917026043, 0.011561168357729912, 0.0005549857742153108, 0.003097251523286104, 0.000556406332179904, 0.008160283789038658, 0.01086170133203268, 0.1987929791212082], [0.01184326782822609, 0.00494607537984848, 0.002553569618612528, 0.00035076990025117993, 0.0004445216909516603, 0.001061841263435781, 0.004431784152984619, 0.46193641424179077, 0.014392171986401081, 0.020469358190894127, 0.004964571911841631, 0.0022654873318970203, 0.0009601128404028714, 0.000878683989867568, 0.000250015698838979, 0.0005257470766082406, 0.007521709892898798, 0.46020394563674927], [0.007179558277130127, 0.0026985437143594027, 0.013979402370750904, 0.00016493750445079058, 4.244291631039232e-05, 0.00015718421491328627, 0.00017608079360798, 0.08089958876371384, 0.0035381480120122433, 0.7820203304290771, 0.009053444489836693, 0.013260775245726109, 0.000898693164344877, 0.0032689240761101246, 0.0007828425150364637, 0.0007618338568136096, 0.0005212344694882631, 0.08059602975845337], [0.011376898735761642, 0.001788318739272654, 0.006709528621286154, 0.0008927182061597705, 0.00018925988115370274, 0.0003210977592971176, 0.0003764079592656344, 0.06733069568872452, 0.025048764422535896, 0.5982553958892822, 0.1286170333623886, 0.028685450553894043, 0.024124734103679657, 0.0099724680185318, 0.013553672470152378, 0.014092433266341686, 0.0015347582520917058, 0.06713036447763443], [0.010121445171535015, 0.0016177400248125196, 0.01166220847517252, 0.00046832492807880044, 0.0001558509684400633, 0.0014978689141571522, 0.0005233543342910707, 0.0676753893494606, 0.007183567620813847, 0.4864169657230377, 0.08801326155662537, 0.08397214859724045, 0.021456483751535416, 0.06578300148248672, 0.05767304450273514, 0.02696061134338379, 0.0013436544686555862, 0.06747498363256454], [0.0004244083247613162, 0.0007299181306734681, 0.0005132246878929436, 2.1792886400362477e-05, 8.751631685299799e-05, 2.1516798369702883e-05, 6.463241879828274e-05, 0.4721575081348419, 0.0001698044507065788, 0.005626303143799305, 0.0054524666629731655, 0.0067330352030694485, 0.027964990586042404, 0.003480780404061079, 0.0046842461451888084, 0.0009209192357957363, 0.0005608578212559223, 0.4703860282897949], [5.811641312902793e-05, 0.00014541142445523292, 0.0003329585015308112, 3.0411134503083304e-05, 5.086290912004188e-05, 0.0001979120570467785, 3.830804780591279e-05, 0.33010002970695496, 0.00042407127330079675, 0.0005526455934159458, 0.0010584346018731594, 0.0016241088742390275, 0.0013137692585587502, 0.28990504145622253, 0.013115125708281994, 0.030940385535359383, 0.0010199840180575848, 0.32909244298934937], [0.003297432092949748, 0.00035095325438305736, 0.002527621341869235, 3.125232979073189e-05, 4.182582051726058e-05, 0.0001655129308346659, 4.524572068476118e-05, 0.24974699318408966, 0.00027983018662780523, 0.07696076482534409, 0.0032998560927808285, 0.004801527597010136, 0.0031629574950784445, 0.02051280066370964, 0.372971773147583, 0.01206239964812994, 0.000802380614914, 0.24893885850906372], [0.0015863875159993768, 0.0006073348340578377, 0.00026210080250166357, 0.0004717164265457541, 0.00037955096922814846, 0.004354387987405062, 0.0015525959897786379, 0.4257729649543762, 0.004350158851593733, 0.0009823022410273552, 0.002736498834565282, 0.002721665194258094, 0.0032789683900773525, 0.010538192465901375, 0.013733623549342155, 0.08009224385023117, 0.021989766508340836, 0.4245895743370056], [0.0010887060780078173, 0.0037434021942317486, 0.0016992298187687993, 0.0019713479559868574, 0.003097923006862402, 0.0018366205040365458, 0.005603366531431675, 0.47820135951042175, 0.0012824948644265532, 0.001190404174849391, 0.0021584760397672653, 0.001327403704635799, 0.0017906284192577004, 0.002339616185054183, 0.004796708934009075, 0.00225403206422925, 0.008340297266840935, 0.47727805376052856]], [[0.0032114319037646055, 0.00013090315042063594, 0.00034904692438431084, 0.0006393910734914243, 0.0010621969122439623, 0.0007431411067955196, 0.008632294833660126, 0.06634023040533066, 0.7102252840995789, 0.05519091710448265, 0.0031111338175833225, 0.013691863045096397, 0.014591249637305737, 0.0013430803082883358, 0.03435889258980751, 0.0031536363530904055, 0.01711997389793396, 0.06610535830259323], [0.019719427451491356, 0.024167226627469063, 0.0059783426113426685, 0.005212769843637943, 0.0027863585855811834, 0.007687233854085207, 0.003696197411045432, 0.45558908581733704, 0.00775065878406167, 0.001591218519024551, 0.0018187231617048383, 0.000845509406644851, 0.002295931801199913, 0.0007309811189770699, 0.002990799257531762, 0.001636104891076684, 0.001538593671284616, 0.45396485924720764], [0.013290983624756336, 0.1337961107492447, 0.008775420486927032, 0.007490844465792179, 0.004998033866286278, 0.0406293123960495, 0.003949788864701986, 0.3816623389720917, 0.0016432666452601552, 0.0024369729217141867, 0.001821141573600471, 0.0013144816039130092, 0.006068480666726828, 0.005593474488705397, 0.0024943393655121326, 0.0022883464116603136, 0.0014911094913259149, 0.3802556097507477], [0.01963750086724758, 0.01606578752398491, 0.007824479602277279, 0.028928380459547043, 0.007104481570422649, 0.00461278110742569, 0.007818643003702164, 0.44637635350227356, 0.006365820299834013, 0.002038645325228572, 0.00018129916861653328, 0.00013725316966883838, 0.00029798789182677865, 0.00020003262034151703, 0.0005150617798790336, 0.001063570030964911, 0.005929863080382347, 0.44490206241607666], [0.008750522509217262, 0.020058250054717064, 0.034273333847522736, 0.15813247859477997, 0.08429761976003647, 0.011156564578413963, 0.007983031682670116, 0.3324251174926758, 0.003040933283045888, 0.0009596023010089993, 0.0003028068458661437, 0.0005657217116095126, 0.0005226721405051649, 0.000724549638107419, 0.0004815302381757647, 0.0011828838614746928, 0.0036625622306019068, 0.3314798176288605], [0.008771915920078754, 0.0304811280220747, 0.01771901734173298, 0.23007294535636902, 0.14507973194122314, 0.01170822698622942, 0.010087354108691216, 0.2615654766559601, 0.007105929311364889, 0.0026740427128970623, 0.0005285755614750087, 0.0023073796182870865, 0.0005569985369220376, 0.001289823674596846, 0.004069311544299126, 0.0011789572890847921, 0.003944925963878632, 0.2608582377433777], [0.022190244868397713, 0.002946162363514304, 0.0017048761947080493, 0.021689174696803093, 0.025856316089630127, 0.020759446546435356, 0.055512621998786926, 0.4185470938682556, 0.005572992376983166, 0.0008618462597951293, 0.0004357017751317471, 0.0004524882242549211, 0.0005107258912175894, 0.00018928847566712648, 0.00042232044506818056, 0.001198497717268765, 0.0038108781445771456, 0.4173392057418823], [0.011188250035047531, 0.013476544991135597, 0.005470729433000088, 0.008650447241961956, 0.004335899371653795, 0.002370525151491165, 0.0014445886481553316, 0.45691919326782227, 0.005162179935723543, 0.005457889288663864, 0.004646385088562965, 0.005357591435313225, 0.0038983498234301805, 0.0033542767632752657, 0.006505399942398071, 0.0025111937429755926, 0.0032651068177074194, 0.4559854567050934], [0.015613935887813568, 0.00048396395868621767, 0.0004490090359468013, 0.0014017182402312756, 0.0007230761111713946, 0.0009963136399164796, 0.5107212662696838, 0.178949236869812, 0.03378476947546005, 0.004268806427717209, 0.0026619553100317717, 0.0019101154757663608, 0.0008536335080862045, 0.00014770810957998037, 0.004275203216820955, 0.0023854663595557213, 0.06206618621945381, 0.1783076971769333], [0.023368721827864647, 0.0011420976370573044, 0.0006572111160494387, 0.0007549949223175645, 0.0007354072295129299, 0.0021123650949448347, 0.012593423016369343, 0.35899797081947327, 0.19064292311668396, 0.011285515502095222, 0.018310239538550377, 0.003059466602280736, 0.004168070387095213, 0.0012553917476907372, 0.0034442462492734194, 0.0020430698059499264, 0.007789727300405502, 0.3576391041278839], [0.029853250831365585, 0.0008325186208821833, 0.0003610258863773197, 0.0009481299202889204, 0.000601341831497848, 0.00032201522844843566, 0.026896288618445396, 0.3786247968673706, 0.032540399581193924, 0.06601249426603317, 0.020571351051330566, 0.01668149046599865, 0.006908417213708162, 0.0060795811004936695, 0.0128866545855999, 0.0026791223790496588, 0.020055139437317848, 0.3771459758281708], [0.013873845338821411, 0.0005254732095636427, 0.0003911054809577763, 0.0012402221327647567, 0.0006464222678914666, 0.00026710378006100655, 0.020009184256196022, 0.27534469962120056, 0.03271089494228363, 0.15640050172805786, 0.11559490859508514, 0.02168264612555504, 0.01601887308061123, 0.004834466148167849, 0.03524492308497429, 0.0033099488355219364, 0.027524808421730995, 0.2743799388408661], [0.02214457467198372, 0.00037986368988640606, 0.00026715794228948653, 0.00075014733010903, 0.0007584996055811644, 0.0007202107808552682, 0.023250963538885117, 0.22936193645000458, 0.019034970551729202, 0.029392875730991364, 0.2232811003923416, 0.05708605796098709, 0.03230017051100731, 0.003910001367330551, 0.09177181124687195, 0.001439649029634893, 0.035524558275938034, 0.22862555086612701], [0.007113738916814327, 0.0006498713046312332, 0.0003090251993853599, 0.0004530122969299555, 6.875237886561081e-05, 0.00037506158696487546, 0.0016356968553736806, 0.18895839154720306, 0.010990725830197334, 0.003803421277552843, 0.052337586879730225, 0.06071186810731888, 0.2979121208190918, 0.010120478458702564, 0.1673673838376999, 0.0024491609074175358, 0.0064687905833125114, 0.18827494978904724], [0.0031717054080218077, 0.0002986885665450245, 9.306650463258848e-05, 0.0004830407560802996, 7.479701162083074e-05, 3.410624776734039e-05, 0.0010800394229590893, 0.4053138792514801, 0.005141880828887224, 0.00234306906349957, 0.016423499211668968, 0.006071711890399456, 0.05012787505984306, 0.009697899222373962, 0.0751737430691719, 0.012558813206851482, 0.00812035147100687, 0.4037918746471405], [0.0021895403042435646, 6.32161827525124e-05, 1.8947535863844678e-05, 0.0001729504729155451, 0.00012533670815173537, 9.961295290850103e-05, 0.001541618607006967, 0.057948999106884, 0.0025393518153578043, 0.00047149937017820776, 0.005157999694347382, 0.0029004013631492853, 0.018878212198615074, 0.004145929589867592, 0.8321943283081055, 0.0026455214247107506, 0.011156431399285793, 0.05775003135204315], [0.01979810744524002, 0.0008183920290321112, 0.00032908638240769506, 0.002786231692880392, 0.0016714920056983829, 0.0015682430239394307, 0.007797266822308302, 0.4183644950389862, 0.0031669382005929947, 0.0013748655328527093, 0.001944647985510528, 0.0017040690872818232, 0.0023405516985803843, 0.002495987107977271, 0.012995108030736446, 0.04501843824982643, 0.058572594076395035, 0.41725340485572815], [0.011182286776602268, 0.013463879004120827, 0.005462278611958027, 0.0086446488276124, 0.004329335410147905, 0.0023684215266257524, 0.0014446486020460725, 0.4569592773914337, 0.00515475869178772, 0.005449405871331692, 0.004643140360713005, 0.005351749714463949, 0.003896940965205431, 0.003350475337356329, 0.00650010397657752, 0.0025090526323765516, 0.003264644183218479, 0.45602503418922424]], [[0.0015919063007459044, 0.00023388373665511608, 0.00018545846978668123, 0.006803056690841913, 0.0031412991229444742, 0.005325880832970142, 0.014740907587110996, 0.20477768778800964, 0.4324082136154175, 0.004299475345760584, 0.0016226677689701319, 0.001946906908415258, 0.0016350287478417158, 0.002965702908113599, 0.00261878315359354, 0.0026707688812166452, 0.10900192707777023, 0.20403030514717102], [0.004224590491503477, 0.04981125891208649, 0.00444025220349431, 0.19406437873840332, 0.032126009464263916, 0.02445823699235916, 0.024604953825473785, 0.32032519578933716, 0.008055930025875568, 0.006316736340522766, 0.004558903630822897, 0.0005819599027745426, 0.0004960131482221186, 6.573435530299321e-05, 0.00012776632502209395, 0.0001487328700022772, 0.006616715807467699, 0.31897658109664917], [0.0023816332686692476, 0.06349281221628189, 0.006596241611987352, 0.027716509997844696, 0.003398604691028595, 0.006398774217814207, 0.009261146187782288, 0.4353353679180145, 0.000737754802685231, 0.0024823094718158245, 0.0010043750517070293, 0.0009026756160892546, 0.0013696526875719428, 0.0005678092129528522, 0.000840228283777833, 0.0003785362059716135, 0.0033189153764396906, 0.4338166415691376], [0.00716417608782649, 0.01307949610054493, 0.0013401187025010586, 0.05052318796515465, 0.19508983194828033, 0.02593156322836876, 0.016679955646395683, 0.3339204490184784, 0.012805447913706303, 0.0013138161739334464, 0.0015873931115493178, 0.0020420742221176624, 0.00023377197794616222, 3.0358600270119496e-05, 8.018818334676325e-05, 5.5722150136716664e-05, 0.005541261751204729, 0.33258119225502014], [0.009210345335304737, 0.036848366260528564, 0.003598419250920415, 0.052611950784921646, 0.11422156542539597, 0.023925086483359337, 0.025763679295778275, 0.3605382442474365, 0.006301281973719597, 0.002046118024736643, 0.00034485573996789753, 0.0005120487767271698, 0.00016939043416641653, 5.282276470097713e-05, 5.469312236527912e-05, 4.163683479418978e-05, 0.004401382990181446, 0.3593580722808838], [0.02130940929055214, 0.015226727351546288, 0.009451772086322308, 0.0764726996421814, 0.09114345163106918, 0.016775405034422874, 0.04087820276618004, 0.35607075691223145, 0.008115779608488083, 0.0018123869085684419, 0.0016528911655768752, 0.0013958945637568831, 0.00016599825175944716, 0.0004599544918164611, 0.0007877404568716884, 0.00028195854974910617, 0.0031386353075504303, 0.3548603653907776], [0.020775312557816505, 0.008406789042055607, 0.0012552778935059905, 0.03061218187212944, 0.007357859518378973, 0.015877289697527885, 0.07635678350925446, 0.39632555842399597, 0.011350494809448719, 0.0032104968558996916, 0.0006408367189578712, 0.0010408599628135562, 0.0007168087176978588, 0.00038456713082268834, 0.0010350859956815839, 0.0011247077491134405, 0.028626708313822746, 0.39490222930908203], [0.019139837473630905, 0.007747821044176817, 0.0045446124859154224, 0.003295864909887314, 0.001629959442652762, 0.004631776828318834, 0.010625804774463177, 0.44511961936950684, 0.005369405262172222, 0.010123602114617825, 0.003923578653484583, 0.0049577634781599045, 0.004810146521776915, 0.006993243936449289, 0.0027425168082118034, 0.003756278892979026, 0.016398848965764046, 0.44418925046920776], [0.013066074810922146, 0.000597621314227581, 0.00021678546909242868, 0.002629011170938611, 0.002416633302345872, 0.0019268810283392668, 0.002734334906563163, 0.4571897089481354, 0.028470557183027267, 0.00815275963395834, 0.005794010125100613, 0.003926226403564215, 0.0003838609263766557, 0.0005489303730428219, 0.00014695426216349006, 0.0002773484739009291, 0.016052475199103355, 0.45546984672546387], [0.012452282942831516, 0.0019131734734401107, 0.00040188897401094437, 0.004953394178301096, 0.0015349533641710877, 0.0011433492181822658, 0.006439296994358301, 0.3674314618110657, 0.04960252717137337, 0.016772141680121422, 0.1067410260438919, 0.015721844509243965, 0.015234784223139286, 0.0004872052522841841, 0.0005075965309515595, 0.0012909944634884596, 0.03140871226787567, 0.3659633696079254], [0.011807125061750412, 0.0006608111434616148, 0.0003155194572173059, 0.0008886565919965506, 0.002358725294470787, 0.00012113802949897945, 0.0017902886029332876, 0.35721123218536377, 0.018293827772140503, 0.010796325281262398, 0.008344249799847603, 0.21248884499073029, 0.006389576941728592, 0.0028339666314423084, 0.0003760062681976706, 0.00033859253744594753, 0.008922209963202477, 0.3560628294944763], [0.008579464629292488, 0.0007328075589612126, 3.2342111808247864e-05, 0.0015760724199935794, 0.0003965023788623512, 9.889760985970497e-05, 0.002443406032398343, 0.40842410922050476, 0.0242437906563282, 0.029078271239995956, 0.07370910793542862, 0.01740134507417679, 0.00353580922819674, 0.0036789397709071636, 0.0044410377740859985, 0.0006925452616997063, 0.014166800305247307, 0.4067687690258026], [0.01760338433086872, 0.0005018892115913332, 5.6269505876116455e-05, 0.0005447225994430482, 0.0013171160826459527, 0.0005111576174385846, 0.0013966219266876578, 0.38478928804397583, 0.015783654525876045, 0.007116598077118397, 0.0573749765753746, 0.03381834179162979, 0.016822632402181625, 0.04711425304412842, 0.009025078266859055, 0.005393289495259523, 0.017322583124041557, 0.3835081458091736], [0.00583166629076004, 0.0002452265180181712, 0.00011990418715868145, 0.0002569336793385446, 0.0005108966142870486, 0.00021578100859187543, 0.0005966334138065577, 0.45361873507499695, 0.00449518533423543, 0.001683377893641591, 0.014497029595077038, 0.01418666448444128, 0.011421904899179935, 0.010187213309109211, 0.008641134947538376, 0.0026877978816628456, 0.018816448748111725, 0.45198750495910645], [0.0017042444087564945, 0.0005432125763036311, 6.676803604932502e-05, 0.0004121949605178088, 0.0002309448318555951, 0.00024072818632703274, 0.0006195068126544356, 0.33023717999458313, 0.003927028272300959, 0.0006242171511985362, 0.0609479658305645, 0.05393989756703377, 0.17119739949703217, 0.018775567412376404, 0.012661164626479149, 0.006549193058162928, 0.008450963534414768, 0.3288719058036804], [0.009993198327720165, 0.00036609446397051215, 0.0001395911822328344, 0.00023735039576422423, 0.0010359009029343724, 0.00023008791322354227, 0.0012113201664760709, 0.42079851031303406, 0.02658989280462265, 0.0027027649339288473, 0.011188065633177757, 0.020617034286260605, 0.009854421950876713, 0.006151218432933092, 0.05140562355518341, 0.002112812362611294, 0.016328411176800728, 0.41903766989707947], [0.020920278504490852, 0.0011103719007223845, 0.00036050903145223856, 0.002374558709561825, 0.0009713756153360009, 0.0016950835706666112, 0.005621424410492182, 0.40433767437934875, 0.031358882784843445, 0.008115009404718876, 0.004574395716190338, 0.006168106105178595, 0.006446888204663992, 0.004209088161587715, 0.008972656913101673, 0.00959857739508152, 0.08012130111455917, 0.4030437171459198], [0.01912708207964897, 0.007735878694802523, 0.004537401720881462, 0.0032907987479120493, 0.0016268363688141108, 0.004620361607521772, 0.010611922480165958, 0.4451892375946045, 0.005358974449336529, 0.010110758244991302, 0.003921797964721918, 0.004952574614435434, 0.004802997689694166, 0.006983943283557892, 0.0027385845314711332, 0.003751524491235614, 0.01638111099600792, 0.44425830245018005]], [[0.0035134549252688885, 0.003635057946667075, 0.012837131507694721, 0.005170042160898447, 0.006220436189323664, 0.004258905537426472, 0.0029826625250279903, 0.16019825637340546, 0.28187647461891174, 0.06679555028676987, 0.015798572450876236, 0.022557275369763374, 0.04098406806588173, 0.07524382323026657, 0.0057694558054208755, 0.036703478544950485, 0.09565354883670807, 0.15980182588100433], [0.026954179629683495, 0.012621690519154072, 0.022246697917580605, 0.21727041900157928, 0.09373077750205994, 0.3343869745731354, 0.08587531000375748, 0.07631329447031021, 0.009837162680923939, 0.002503428841009736, 0.013006489723920822, 0.002942983992397785, 0.013217204250395298, 0.0019813631661236286, 0.0012005891185253859, 0.0037745011504739523, 0.006102943792939186, 0.07603397220373154], [0.08178704231977463, 0.01206069253385067, 0.0031022783368825912, 0.12753313779830933, 0.0532655268907547, 0.20283091068267822, 0.0762537345290184, 0.18688608705997467, 0.009967767633497715, 0.002982653910294175, 0.02304486744105816, 0.0044324761256575584, 0.016701696440577507, 0.0009577691089361906, 0.0017925353022292256, 0.003907524514943361, 0.006253866944462061, 0.18623939156532288], [0.04530467838048935, 0.022900596261024475, 0.020893609151244164, 0.03417029231786728, 0.042955126613378525, 0.20527689158916473, 0.31012162566185, 0.130679652094841, 0.0232633538544178, 0.004502459429204464, 0.004494642838835716, 0.002138282638043165, 0.003905443474650383, 0.004182246048003435, 0.0012195103336125612, 0.0026956964284181595, 0.011050563305616379, 0.13024522364139557], [0.01831619255244732, 0.019513484090566635, 0.014799145981669426, 0.015110624022781849, 0.0075492290779948235, 0.045755062252283096, 0.21055930852890015, 0.3256617486476898, 0.007397973444312811, 0.0008425130508840084, 0.0004859247710555792, 0.0005223428597673774, 0.0008904454880394042, 0.0015780633548274636, 0.000582531385589391, 0.0005947126192040741, 0.005292251240462065, 0.3245483636856079], [0.0300949327647686, 0.02918820269405842, 0.015124128200113773, 0.016608603298664093, 0.02027222514152527, 0.023663248866796494, 0.31198692321777344, 0.25557783246040344, 0.016589175909757614, 0.0019632382318377495, 0.0012302255490794778, 0.0015317868674173951, 0.0021414130460470915, 0.0021525032352656126, 0.0006637044134549797, 0.0009563406347297132, 0.015534387901425362, 0.25472119450569153], [0.0148920938372612, 0.011793441139161587, 0.03429233282804489, 0.00830005295574665, 0.007773756980895996, 0.011432222090661526, 0.023165397346019745, 0.429213285446167, 0.004036993253976107, 0.0030616563744843006, 0.0016706481110304594, 0.0014584846794605255, 0.0031285155564546585, 0.0030671986751258373, 0.0010851770639419556, 0.002573449397459626, 0.011627797968685627, 0.4274274408817291], [0.01094119343906641, 0.0019662436097860336, 0.001626766286790371, 0.0024644751101732254, 0.0014723227359354496, 0.0013434209395200014, 0.006927358452230692, 0.4768715798854828, 0.003287305124104023, 0.0014802879886701703, 0.0008353571174666286, 0.0008135495008900762, 0.0012949479278177023, 0.0016507381806150079, 0.0019162234384566545, 0.0018545594066381454, 0.00804862380027771, 0.4752050042152405], [0.012125003151595592, 0.0029378978069871664, 0.0066084228456020355, 0.003963661380112171, 0.0021443478763103485, 0.0020779361948370934, 0.004997702315449715, 0.30614346265792847, 0.02880997210741043, 0.04123511537909508, 0.030271979048848152, 0.024223433807492256, 0.030474787577986717, 0.03969903662800789, 0.005080569535493851, 0.01571415551006794, 0.13827741146087646, 0.30521512031555176], [0.03525887802243233, 0.0005241723847575486, 0.002011724980548024, 0.0028200645465403795, 0.0012890193611383438, 0.006424519699066877, 0.0017316181911155581, 0.13115297257900238, 0.018508894369006157, 0.015650374814867973, 0.14490686357021332, 0.017007509246468544, 0.26589566469192505, 0.02739458903670311, 0.0093076815828681, 0.1398724466562271, 0.04948048293590546, 0.13076253235340118], [0.025035712867975235, 0.001210469868965447, 0.0018016787944361567, 0.001429136609658599, 0.001360169262625277, 0.002438850235193968, 0.00524144945666194, 0.13084883987903595, 0.0426182821393013, 0.02359423041343689, 0.014893478713929653, 0.01174903754144907, 0.03690185397863388, 0.08553874492645264, 0.03030153550207615, 0.12406913191080093, 0.33049750328063965, 0.13046984374523163], [0.018787626177072525, 0.0005173925310373306, 0.0005890955217182636, 0.0010707267792895436, 0.0004354093107394874, 0.001141576562076807, 0.00363619951531291, 0.13934752345085144, 0.047797754406929016, 0.00878962967544794, 0.013212563470005989, 0.0069074612110853195, 0.02979489229619503, 0.07795476168394089, 0.030918510630726814, 0.11990846693515778, 0.3602267801761627, 0.13896366953849792], [0.025374721735715866, 0.0006293085752986372, 0.0007789228111505508, 0.0003860180440824479, 0.00022225332213565707, 0.0006950432434678078, 0.0016027615638449788, 0.26963379979133606, 0.02149254083633423, 0.008310957811772823, 0.002857002429664135, 0.0037004882469773293, 0.006715182680636644, 0.0445842444896698, 0.1962052285671234, 0.06014250963926315, 0.08789097517728806, 0.26877811551094055], [0.037308692932128906, 0.0006539790774695575, 0.000598291982896626, 0.0011927587911486626, 0.0008116864482872188, 0.0008516936795786023, 0.0036801642272621393, 0.25467467308044434, 0.021468717604875565, 0.013331138528883457, 0.004819012247025967, 0.010891188867390156, 0.016124434769153595, 0.03308803588151932, 0.17079739272594452, 0.04829118773341179, 0.12750184535980225, 0.25391513109207153], [0.02273661084473133, 0.0003360709815751761, 0.0006075215642340481, 0.0004934939206577837, 0.0005860488163307309, 0.0015297551872208714, 0.0021494291722774506, 0.20775067806243896, 0.019501471891999245, 0.002594982273876667, 0.002792871557176113, 0.00510429497808218, 0.01332266628742218, 0.044305138289928436, 0.09832457453012466, 0.20912346243858337, 0.1615930050611496, 0.20714786648750305], [0.019155101850628853, 0.0004001872439403087, 0.000528076954651624, 0.0003714477061294019, 0.00010116051271324977, 0.00029195877141319215, 0.003377786371856928, 0.37871143221855164, 0.012738373130559921, 0.006057244259864092, 0.0027221115306019783, 0.004367413464933634, 0.005431849043816328, 0.032156724482774734, 0.017594555392861366, 0.014320648275315762, 0.12418583035469055, 0.3774881660938263], [0.012513994239270687, 0.00036859363899566233, 0.0013485198142006993, 0.0006234294269233942, 0.0005386409466154873, 0.0006531456601805985, 0.0021016139071434736, 0.4563835859298706, 0.011521046049892902, 0.00850912556052208, 0.002839181572198868, 0.0019049861002713442, 0.0034304303117096424, 0.004280328284949064, 0.001281600329093635, 0.005466521251946688, 0.03179124370217323, 0.45444393157958984], [0.010930686257779598, 0.0019617353100329638, 0.001623596646822989, 0.0024591197725385427, 0.001469305483624339, 0.0013410720275714993, 0.00691478094086051, 0.47691452503204346, 0.0032795611768960953, 0.0014768437249585986, 0.0008335724705830216, 0.0008117282413877547, 0.0012923568719998002, 0.0016478636534884572, 0.001912646577693522, 0.0018508160719648004, 0.008032661862671375, 0.4752471148967743]], [[0.004703460726886988, 0.0021060509607195854, 0.0008910932810977101, 0.000632877869065851, 0.0004485228273551911, 0.0007297082920558751, 0.0009494191617704928, 0.1379329264163971, 0.6023712158203125, 0.03174760565161705, 0.027142927050590515, 0.002448084531351924, 0.027127297595143318, 0.005863082595169544, 0.00158996123354882, 0.009851193986833096, 0.005945626646280289, 0.1375190019607544], [0.002010579686611891, 0.018595727160573006, 0.6054059267044067, 0.029375877231359482, 0.008425894193351269, 0.03174864873290062, 0.0011441175593063235, 0.14741593599319458, 0.0005955111118964851, 0.0019031419651582837, 0.0015373432543128729, 0.00040933251148089767, 0.0009517593425698578, 0.0017594941891729832, 0.0006355684599839151, 0.0006733875488862395, 0.0004757058632094413, 0.14693599939346313], [0.0195135660469532, 0.008310072124004364, 0.0037238949444144964, 0.033694133162498474, 0.030081871896982193, 0.00912865623831749, 0.0013068387052044272, 0.44557949900627136, 0.0001929278951138258, 0.0009926315397024155, 0.0008749238331802189, 0.0002854607591871172, 0.0008340866770595312, 0.00022348793572746217, 0.00027271840372122824, 0.0007661677664145827, 0.00033628795063123107, 0.4438827633857727], [0.0047878990881145, 0.005811389070004225, 0.007816675119102001, 0.0126274935901165, 0.11921181529760361, 0.5883634090423584, 0.005930792074650526, 0.12471432238817215, 0.0013273883378133178, 0.0008232243708334863, 0.0004918227205052972, 0.00047347997315227985, 0.0013095088070258498, 0.0006972895935177803, 9.362917626276612e-05, 0.0007165046990849078, 0.0004191181214991957, 0.12438417226076126], [0.0010211030021309853, 0.014636826701462269, 0.0335337370634079, 0.01545848697423935, 0.05295880138874054, 0.32927900552749634, 0.012567942962050438, 0.268846720457077, 0.00048045883886516094, 0.0009929060470312834, 0.00024453570949845016, 0.00015255283506121486, 0.00021370277681853622, 0.00047756967251189053, 7.29362218407914e-05, 0.00017214582476299256, 0.0006810772465541959, 0.26820942759513855], [0.008959944359958172, 0.007063385099172592, 0.005312228109687567, 0.006303444504737854, 0.00439616572111845, 0.002663549967110157, 0.042356349527835846, 0.45958489179611206, 0.0005244390922598541, 0.0005689163808710873, 0.0001642534334678203, 0.00016358452558051795, 0.0006207357509993017, 0.00014047182048670948, 5.311368659022264e-05, 0.00024464927264489233, 0.002938487334176898, 0.4579413831233978], [0.0013016011798754334, 0.0055235521867871284, 0.00047290456132031977, 0.001782236504368484, 0.0013782226014882326, 0.001091851620003581, 0.013374029658734798, 0.044121067970991135, 0.8497501015663147, 0.019013486802577972, 0.006559546571224928, 0.0010433475254103541, 0.0032370109111070633, 0.0012551170075312257, 0.0004498318594414741, 0.0007044218364171684, 0.004944490268826485, 0.04399725794792175], [0.00260465731844306, 0.0025359010323882103, 0.003438376821577549, 0.004461813252419233, 0.0013475873274728656, 0.003392899176105857, 0.010917956940829754, 0.4644705355167389, 0.0010748900240287185, 0.005100206006318331, 0.008053034543991089, 0.0032972439657896757, 0.004346642177551985, 0.003521532518789172, 0.001953689381480217, 0.004977209027856588, 0.010964086279273033, 0.463541716337204], [0.003001914592459798, 0.0012694201432168484, 0.0009007036569528282, 0.0012464133324101567, 0.0007356803398579359, 0.0008157159900292754, 0.003023480297997594, 0.41005024313926697, 0.021338552236557007, 0.04996831342577934, 0.0420968160033226, 0.017888130620121956, 0.014002114534378052, 0.0035062432289123535, 0.000375213916413486, 0.00774064427241683, 0.013017348013818264, 0.40902307629585266], [0.001262722653336823, 5.8562669437378645e-05, 0.0007352718384936452, 0.0005166166229173541, 0.00013810579548589885, 0.0009103966876864433, 0.00011169970821356401, 0.1923498958349228, 0.001073247753083706, 0.0027434935327619314, 0.305990993976593, 0.0322222076356411, 0.2514931857585907, 0.003264885861426592, 0.0022097527980804443, 0.012565727345645428, 0.000665040744934231, 0.1916881799697876], [0.0022606372367590666, 0.00032879330683499575, 0.0006015349645167589, 0.00036341865779832006, 0.0007308354252018034, 0.0007207955932244658, 0.0007849439280107617, 0.17951737344264984, 0.008669105358421803, 0.03673747181892395, 0.023716820403933525, 0.0713011622428894, 0.3290594816207886, 0.057056743651628494, 0.009732987731695175, 0.09045872092247009, 0.008829383179545403, 0.17912985384464264], [0.0013807940995320678, 0.0002953005605377257, 0.0003378393594175577, 0.00010585950803942978, 0.00018650214769877493, 0.0002743954537436366, 5.314287045621313e-05, 0.05149948224425316, 0.006141613703221083, 0.024148717522621155, 0.051629748195409775, 0.008512741886079311, 0.3232559859752655, 0.2270423024892807, 0.05577974021434784, 0.1963721215724945, 0.0015981802716851234, 0.05138550326228142], [0.0013636549701914191, 0.0002382104139542207, 0.000852126395329833, 8.280757174361497e-05, 0.00011185814219061285, 0.00016580721421632916, 0.0003967465308960527, 0.3090096712112427, 0.001000192016363144, 0.0033913012593984604, 0.0021660190541297197, 0.002797359600663185, 0.01722930744290352, 0.17815479636192322, 0.0915326178073883, 0.06506738811731339, 0.018328852951526642, 0.3081112802028656], [0.007013851776719093, 0.0002462979464326054, 0.0004270646895747632, 0.00020958356617484242, 0.0001352481049252674, 0.00025576382176950574, 0.0002658866287674755, 0.365887850522995, 0.0003725714923348278, 0.0012731400784105062, 0.0025132764130830765, 0.0006614289595745504, 0.005100436974316835, 0.018566902726888657, 0.17449332773685455, 0.0485834926366806, 0.009387997910380363, 0.36460599303245544], [0.000502848532050848, 2.7953234166488983e-05, 4.0709976019570604e-05, 1.7170663340948522e-05, 2.1064699467387982e-05, 3.0264167435234413e-05, 5.47545678273309e-05, 0.02733972854912281, 9.255836630472913e-05, 0.00022380582231562585, 0.0003030003572348505, 0.0010149473091587424, 0.021600451320409775, 0.018561193719506264, 0.003196235978975892, 0.8954961895942688, 0.004177845548838377, 0.027299344539642334], [0.028646675869822502, 0.00016146464622579515, 0.0001692300575086847, 5.171618613530882e-05, 4.256370448274538e-05, 0.0001385742798447609, 0.0010461034253239632, 0.42528167366981506, 0.0003936339926440269, 0.0004141769895795733, 0.00021306140115484595, 0.0001248412736458704, 0.0014585343888029456, 0.010223057121038437, 0.010837682522833347, 0.03965286165475845, 0.05744621530175209, 0.4236977994441986], [0.003085262142121792, 0.000763840158469975, 0.0006028733332641423, 0.0014592681545764208, 0.0008588036289438605, 0.00047840483603067696, 0.0037942512426525354, 0.38355278968811035, 0.05617150664329529, 0.010043961927294731, 0.007145170588046312, 0.0031658997759222984, 0.005247401539236307, 0.006793301552534103, 0.003964412026107311, 0.010104332119226456, 0.12035489827394485, 0.3824135959148407], [0.002604776294901967, 0.002533301478251815, 0.0034362527076154947, 0.0044607240706682205, 0.0013462764909490943, 0.0033903149887919426, 0.010918139480054379, 0.46449732780456543, 0.0010728463530540466, 0.005092490464448929, 0.008041806519031525, 0.0032925119157880545, 0.004339896608144045, 0.003517791396006942, 0.0019537433981895447, 0.004972677677869797, 0.010961176827549934, 0.4635680019855499]], [[0.007133976090699434, 0.0036486806347966194, 0.013694689609110355, 0.022555558010935783, 0.00400915089994669, 0.011421109549701214, 0.007462416309863329, 0.31763216853141785, 0.01602444238960743, 0.05103781819343567, 0.03762131556868553, 0.02208351530134678, 0.027022715657949448, 0.021438058465719223, 0.007521684281527996, 0.024429166689515114, 0.08814197033643723, 0.3171214759349823], [0.0018261722289025784, 0.055822111666202545, 0.16279178857803345, 0.030061107128858566, 0.01970612443983555, 0.12059216946363449, 0.07308568805456161, 0.23113630712032318, 0.0055749909952282906, 0.019542228430509567, 0.0037104105576872826, 0.0015032810624688864, 0.006620224565267563, 0.006310068536549807, 0.0015747055877000093, 0.005706780590116978, 0.023745432496070862, 0.23069047927856445], [0.001203885767608881, 0.016644282266497612, 0.05915764719247818, 0.004941114224493504, 0.00251925946213305, 0.040944959968328476, 0.022699177265167236, 0.417000412940979, 0.0022587093990296125, 0.0025322474539279938, 0.0005588610656559467, 0.00041814727592281997, 0.0013018468162044883, 0.002831142395734787, 0.0007363702752627432, 0.001723660621792078, 0.006440965924412012, 0.4160873293876648], [0.005036621820181608, 0.03225668519735336, 0.10419771820306778, 0.10984805226325989, 0.11568436026573181, 0.2228316068649292, 0.06831786781549454, 0.12240039557218552, 0.009115801192820072, 0.010196859948337078, 0.03659561276435852, 0.0023595960810780525, 0.010540246963500977, 0.004686351399868727, 0.0015851937932893634, 0.004302572924643755, 0.01786939427256584, 0.12217506021261215], [0.0013003905769437551, 0.014757774770259857, 0.023958561941981316, 0.00942666083574295, 0.09385282546281815, 0.12767231464385986, 0.03583850339055061, 0.334160715341568, 0.007151308469474316, 0.0028423750773072243, 0.0010497048497200012, 0.001803155173547566, 0.0017346381209790707, 0.001302781980484724, 0.0007287351181730628, 0.0013207686133682728, 0.007871247828006744, 0.33322757482528687], [0.0011710980907082558, 0.010171179659664631, 0.023416567593812943, 0.01930866949260235, 0.05137924477458, 0.16393601894378662, 0.02693132683634758, 0.33647775650024414, 0.002933697309345007, 0.0026875741314142942, 0.0032519912347197533, 0.0024460875429213047, 0.0040799998678267, 0.002847757190465927, 0.0011755264131352305, 0.00439093355089426, 0.007827214896678925, 0.3355673551559448], [0.0016543715028092265, 0.04189522936940193, 0.10146720707416534, 0.06659071147441864, 0.06545370817184448, 0.11831139028072357, 0.020366445183753967, 0.26968178153038025, 0.003314840141683817, 0.006175152957439423, 0.005438556428998709, 0.002392002148553729, 0.006717070937156677, 0.0037245480343699455, 0.0009535911376588047, 0.002733545145019889, 0.01354785542935133, 0.26958194375038147], [0.0003320943214930594, 0.00036673492286354303, 0.00052372005302459, 0.0007036644383333623, 0.0003697556385304779, 0.001005062717013061, 0.0006513808621093631, 0.4974937438964844, 0.0007621444528922439, 0.0002817533095367253, 0.000306679867208004, 0.00023461254022549838, 0.00015121715841814876, 0.0002209200756624341, 8.417401113547385e-05, 0.00014016931527294219, 0.0013639350654557347, 0.4950081706047058], [0.08482888340950012, 0.021299898624420166, 0.030565768480300903, 0.030732346698641777, 0.05271414667367935, 0.03789405897259712, 0.009168239310383797, 0.24669195711612701, 0.029816845431923866, 0.07573117315769196, 0.017854653298854828, 0.019534332677721977, 0.034685034304857254, 0.02175157144665718, 0.008844352327287197, 0.018321093171834946, 0.013572011142969131, 0.245993509888649], [0.07446546107530594, 0.024279760196805, 0.10235140472650528, 0.0088340500369668, 0.0015273450408130884, 0.027354136109352112, 0.039507944136857986, 0.1514521986246109, 0.03746456652879715, 0.16653606295585632, 0.0223331768065691, 0.008957444690167904, 0.033952273428440094, 0.028717398643493652, 0.009808013215661049, 0.025192009285092354, 0.0861692801117897, 0.15109758079051971], [0.11514639109373093, 0.010837000794708729, 0.023534564301371574, 0.044434454292058945, 0.018433140590786934, 0.04135784134268761, 0.029653694480657578, 0.03984970226883888, 0.11256717890501022, 0.18081091344356537, 0.05028824880719185, 0.023741791024804115, 0.09471941739320755, 0.025114113464951515, 0.014851260930299759, 0.061169713735580444, 0.07371219992637634, 0.03977836295962334], [0.07189832627773285, 0.009790394455194473, 0.0198721494525671, 0.010831089690327644, 0.10519378632307053, 0.055477600544691086, 0.01574387401342392, 0.07853534817695618, 0.06841520965099335, 0.15208901464939117, 0.014292802661657333, 0.03663429990410805, 0.08583814650774002, 0.041152458637952805, 0.030347110703587532, 0.08930264413356781, 0.036208342760801315, 0.07837732881307602], [0.04913941025733948, 0.013765797950327396, 0.016453305259346962, 0.006282368674874306, 0.0019476464949548244, 0.021181896328926086, 0.012029705569148064, 0.13073156774044037, 0.029399042949080467, 0.24753107130527496, 0.02068702131509781, 0.04079723730683327, 0.04978758469223976, 0.053182415664196014, 0.018554111942648888, 0.10840044915676117, 0.04978310316801071, 0.1303463876247406], [0.024243328720331192, 0.00713155884295702, 0.06508326530456543, 0.0025163565296679735, 0.001464469009079039, 0.02753756381571293, 0.006088677328079939, 0.191781148314476, 0.00843647588044405, 0.10593408346176147, 0.007119174115359783, 0.02227812632918358, 0.049164146184921265, 0.12523534893989563, 0.017917031422257423, 0.13400667905807495, 0.012748189270496368, 0.19131436944007874], [0.053175706416368484, 0.005200300365686417, 0.006512355525046587, 0.002218019450083375, 0.00247882679104805, 0.0107317715883255, 0.015728779137134552, 0.24229086935520172, 0.02413155324757099, 0.053974591195583344, 0.012088503688573837, 0.04840419441461563, 0.038670413196086884, 0.08266042917966843, 0.05969521403312683, 0.060683514922857285, 0.03993557393550873, 0.24141941964626312], [0.01986028626561165, 0.005007908679544926, 0.03327835351228714, 0.003115382045507431, 0.0013903663493692875, 0.028380421921610832, 0.005395513027906418, 0.24684007465839386, 0.014400188811123371, 0.05211898311972618, 0.014915015548467636, 0.027980182319879532, 0.06694792211055756, 0.10838402062654495, 0.01694648154079914, 0.090973399579525, 0.017800601199269295, 0.24626494944095612], [0.02001413144171238, 0.018269238993525505, 0.052794139832258224, 0.03452420234680176, 0.042563796043395996, 0.0315411202609539, 0.010431023314595222, 0.2776332199573517, 0.015563685446977615, 0.05883592739701271, 0.027328068390488625, 0.014039149507880211, 0.03194583207368851, 0.02572314627468586, 0.005963411647826433, 0.014141731895506382, 0.04125357046723366, 0.2774345874786377], [0.0003316991205792874, 0.00036630863905884326, 0.0005229566595517099, 0.000703103025443852, 0.0003695541527122259, 0.0010040686465799809, 0.0006514799897558987, 0.4974965751171112, 0.0007616765215061605, 0.0002813332248479128, 0.00030646700179204345, 0.00023451198649127036, 0.0001510802103439346, 0.0002207705401815474, 8.419174992013723e-05, 0.00014004224794916809, 0.0013645231956616044, 0.49500957131385803]], [[0.008741435594856739, 0.0010353107936680317, 0.001969011500477791, 0.004377477802336216, 0.002658567391335964, 0.004651160910725594, 0.00744390906766057, 0.34764716029167175, 0.10511141270399094, 0.06707712262868881, 0.024213390424847603, 0.014390080235898495, 0.009203583002090454, 0.010995528660714626, 0.004379797726869583, 0.0018411967903375626, 0.03775564953684807, 0.3465081751346588], [0.0024000736884772778, 0.013963311910629272, 0.01835140399634838, 0.007532652001827955, 0.006826403550803661, 0.041874028742313385, 0.021743781864643097, 0.44272956252098083, 0.0016412707045674324, 0.00010928616393357515, 7.91196507634595e-05, 9.720881644170731e-05, 8.298266038764268e-05, 0.00023679168953094631, 4.4681335566565394e-05, 0.00031652586767449975, 0.0011694085551425815, 0.4408015012741089], [0.0064755757339298725, 0.07031883299350739, 0.027939725667238235, 0.007650735322386026, 0.0097708310931921, 0.07546510547399521, 0.03657405450940132, 0.3784624934196472, 0.003425664035603404, 0.0003700218512676656, 0.00025626507704146206, 0.00042603001929819584, 0.0002537565305829048, 0.0012224032543599606, 0.00011760833876905963, 0.0004311606753617525, 0.0036904301960021257, 0.377149373292923], [0.00673571415245533, 0.16138072311878204, 0.07654454559087753, 0.008574418723583221, 0.004153128247708082, 0.027028227224946022, 0.03423719480633736, 0.3360532522201538, 0.006187976337969303, 0.0009832839714363217, 0.00016776802658569068, 0.00016120518557727337, 2.975883944600355e-05, 0.00018930216901935637, 3.8254169339779764e-05, 0.0001383185590384528, 0.0026719318702816963, 0.3347250521183014], [0.001988949254155159, 0.32910704612731934, 0.1359463334083557, 0.07171252369880676, 0.00576783949509263, 0.019093962386250496, 0.01964329183101654, 0.20679159462451935, 0.0010038422187790275, 0.0003363300347700715, 8.031898323679343e-05, 0.0004079868085682392, 0.00022268058091867715, 0.0003526012587826699, 4.6863318857504055e-05, 9.176932508125901e-05, 0.001317009562626481, 0.20608903467655182], [0.008139817975461483, 0.1827867329120636, 0.048818085342645645, 0.07335802167654037, 0.031795211136341095, 0.024543194100260735, 0.038980063050985336, 0.29051733016967773, 0.004286309704184532, 0.0007903389050625265, 0.00012017062545055524, 0.00045393354957923293, 0.00014245724014472216, 0.00027704107924364507, 0.00016394101839978248, 0.000149175786646083, 0.005187909118831158, 0.289490282535553], [0.01841980405151844, 0.096003457903862, 0.020895909518003464, 0.02571166679263115, 0.040932897478342056, 0.027565844357013702, 0.05835587531328201, 0.3485168516635895, 0.0071208481676876545, 0.0009022027370519936, 0.0003902393509633839, 0.00014290495892055333, 0.0001368293014820665, 0.00011818327038781717, 7.588879816466942e-05, 0.00011125046148663387, 0.007526608649641275, 0.34707269072532654], [0.0017977850511670113, 0.0011058454401791096, 0.0030106371268630028, 0.0018889588536694646, 0.0018310589948669076, 0.002135032322257757, 0.0024377836380153894, 0.4903436005115509, 0.0011058702366426587, 0.0006145065417513251, 0.0008392814779654145, 0.000751134823076427, 0.0003308333980385214, 0.0005700003821402788, 0.000283211178611964, 0.00019510752463247627, 0.0023688841611146927, 0.4883904755115509], [0.03231092169880867, 0.0004984384868294001, 0.000814964878372848, 0.007034876383841038, 0.0019784639589488506, 0.0022017161827534437, 0.0030662165954709053, 0.4494611918926239, 0.026442576199769974, 0.003739076666533947, 0.002883904380723834, 0.0008017693762667477, 0.0005767690599896014, 0.0006202285876497626, 0.0006725804996676743, 0.0003466107009444386, 0.018643207848072052, 0.4479064345359802], [0.04989539086818695, 0.03339098021388054, 0.018114838749170303, 0.002892731921747327, 7.157886284403503e-05, 0.003354741260409355, 0.00460426090285182, 0.33526912331581116, 0.05662856623530388, 0.09367705881595612, 0.002818870358169079, 0.001757316873408854, 0.001283302903175354, 0.004744819365441799, 8.757196337683126e-05, 0.0020100746769458055, 0.05531077831983566, 0.3340880274772644], [0.044578611850738525, 0.00440105190500617, 0.0026154916267842054, 0.0013481674250215292, 7.897191972006112e-05, 0.0034392662346363068, 0.004906210117042065, 0.12212797999382019, 0.5259491205215454, 0.13301177322864532, 0.0068127806298434734, 0.0015887399204075336, 0.002983669750392437, 0.002944033592939377, 0.0005194061086513102, 0.0015908306231722236, 0.019409574568271637, 0.12169431895017624], [0.056135158985853195, 0.002827811287716031, 0.0008061944390647113, 0.0007788229850120842, 0.00012191813584649935, 0.001716602360829711, 0.002939684549346566, 0.1488768458366394, 0.49624666571617126, 0.08039674907922745, 0.01855006441473961, 0.0026005394756793976, 0.0119723966345191, 0.004616983700543642, 0.0006466124905273318, 0.0023124932777136564, 0.020163754001259804, 0.1482906937599182], [0.0698125809431076, 0.003805510001257062, 0.0036040411796420813, 0.0011782344663515687, 0.0004293117090128362, 0.00463634729385376, 0.0063835675828158855, 0.28597235679626465, 0.15375255048274994, 0.09310512244701385, 0.018562491983175278, 0.008696352131664753, 0.015583637170493603, 0.01306920312345028, 0.00746811693534255, 0.004536974243819714, 0.024339022114872932, 0.28506454825401306], [0.06455770134925842, 0.0021257917396724224, 0.0009803101420402527, 0.002536106389015913, 0.0013561153318732977, 0.004629350267350674, 0.006269311998039484, 0.1490713506937027, 0.25245705246925354, 0.0192771814763546, 0.04557275027036667, 0.07802551239728928, 0.13991208374500275, 0.029144827276468277, 0.01111624389886856, 0.010594723746180534, 0.033799316734075546, 0.14857427775859833], [0.04502037540078163, 0.00045257757301442325, 0.00023210598737932742, 0.0008667945512570441, 0.00030577072175219655, 0.0003063382755499333, 0.003267715685069561, 0.08075962960720062, 0.0362887904047966, 0.045014988631010056, 0.03501470386981964, 0.1218474954366684, 0.49464288353919983, 0.028193309903144836, 0.006965215317904949, 0.001136736012995243, 0.019232740625739098, 0.0804518312215805], [0.07233080267906189, 0.002761795883998275, 0.0015895881224423647, 0.0032948057632893324, 0.001141947228461504, 0.0017397054471075535, 0.008549679070711136, 0.1815878301858902, 0.13464675843715668, 0.05915571376681328, 0.03704475238919258, 0.09646254777908325, 0.07308874279260635, 0.042043380439281464, 0.0605708509683609, 0.0075686308555305, 0.03545375168323517, 0.18096865713596344], [0.09476043283939362, 0.0029335529543459415, 0.0007503658998757601, 0.0016947721596807241, 0.0012904044706374407, 0.0006853397935628891, 0.009757301770150661, 0.3025563061237335, 0.16276292502880096, 0.008595291525125504, 0.01965535245835781, 0.007608727086335421, 0.009216437116265297, 0.007011095993220806, 0.0026177908293902874, 0.006250352133065462, 0.06035734713077545, 0.3014961779117584], [0.0017944670980796218, 0.0011035172501578927, 0.003004701342433691, 0.0018842952558770776, 0.0018250453285872936, 0.002131672343239188, 0.002432835754007101, 0.49036675691604614, 0.0011036298237740993, 0.0006129267858341336, 0.0008376462501473725, 0.0007495741010643542, 0.0003300311218481511, 0.0005689091049134731, 0.0002824726398102939, 0.00019473479187581688, 0.0023639521095901728, 0.48841285705566406]], [[0.0205942764878273, 0.02287082001566887, 0.0034041584003716707, 0.014083187095820904, 0.006734323222190142, 0.0016071811551228166, 0.005780426785349846, 0.3102053105831146, 0.1848866194486618, 0.028534287586808205, 0.01971232146024704, 0.0059596761129796505, 0.007484495639801025, 0.006599155254662037, 0.00806314218789339, 0.004783976823091507, 0.039006441831588745, 0.3096901774406433], [0.1506384313106537, 0.08583632111549377, 0.020669234916567802, 0.015763888135552406, 0.010665983892977238, 0.004739514552056789, 0.06315789371728897, 0.29998210072517395, 0.018449028953909874, 0.005517129320651293, 0.002441094256937504, 0.0010214599315077066, 0.003754803678020835, 0.002881212392821908, 0.004063934087753296, 0.0008889310993254185, 0.010477449744939804, 0.2990516126155853], [0.04346701130270958, 0.025184093043208122, 0.03631184995174408, 0.008672949858009815, 0.0028629282023757696, 0.0048791817389428616, 0.01968945749104023, 0.4185647964477539, 0.002861680695787072, 0.001715020858682692, 0.0007307250634767115, 0.0004809871898032725, 0.0016234456561505795, 0.0077306972816586494, 0.0018461233703419566, 0.0010048332624137402, 0.005283324047923088, 0.41709083318710327], [0.3587123155593872, 0.03378531336784363, 0.008350818417966366, 0.021072354167699814, 0.023520372807979584, 0.013139676302671432, 0.05637538060545921, 0.21345342695713043, 0.014317469671368599, 0.004809877369552851, 0.009805390611290932, 0.004221010021865368, 0.003551670117303729, 0.0015886345645412803, 0.0015036007389426231, 0.0008268782985396683, 0.01808619685471058, 0.21287952363491058], [0.20681561529636383, 0.04574739933013916, 0.0035574217326939106, 0.05738549679517746, 0.05679855868220329, 0.019177179783582687, 0.03596110641956329, 0.2592707872390747, 0.03559814393520355, 0.0019046264933422208, 0.00450443010777235, 0.0068910615518689156, 0.0008829138241708279, 0.00040041361353360116, 0.0014540741685777903, 0.00022715360682923347, 0.005004449747502804, 0.2584191560745239], [0.09187386929988861, 0.03233972191810608, 0.014091258868575096, 0.037110380828380585, 0.1276874989271164, 0.03801923990249634, 0.024652672931551933, 0.2924749255180359, 0.014217879623174667, 0.0016136786434799433, 0.008489355444908142, 0.005032167304307222, 0.0023371742572635412, 0.002047572750598192, 0.004674972966313362, 0.004335088189691305, 0.00737280398607254, 0.2916296720504761], [0.09004618972539902, 0.13467447459697723, 0.011748936027288437, 0.07983613759279251, 0.02515392005443573, 0.02801007777452469, 0.032640520483255386, 0.1717488169670105, 0.16792649030685425, 0.026850568130612373, 0.018855731934309006, 0.0029959252569824457, 0.0019054495496675372, 0.002603289671242237, 0.007662659510970116, 0.0029027352575212717, 0.022890353575348854, 0.1715477555990219], [0.005053951404988766, 0.006962640210986137, 0.004372571129351854, 0.003798477351665497, 0.0028401962481439114, 0.0023061372339725494, 0.0033456659875810146, 0.47234535217285156, 0.006774421315640211, 0.0037630253937095404, 0.003393549704924226, 0.002775627188384533, 0.0008678733138367534, 0.0015210581477731466, 0.003800838254392147, 0.0011042894329875708, 0.004329307936131954, 0.4706449806690216], [0.04524007812142372, 0.003915293142199516, 0.0007445617811754346, 0.0018498707795515656, 0.0042504807934165, 0.0023017623461782932, 0.009446845389902592, 0.27880027890205383, 0.11405840516090393, 0.036552317440509796, 0.040580473840236664, 0.033475518226623535, 0.01041332446038723, 0.010911469347774982, 0.023923110216856003, 0.004039268009364605, 0.10135211050510406, 0.278144896030426], [0.09243987500667572, 0.004651952069252729, 0.002333770738914609, 0.0015813326463103294, 0.0003922714095097035, 0.0002362930536037311, 0.0041954307816922665, 0.2623688876628876, 0.03460461273789406, 0.015018794685602188, 0.015982892364263535, 0.006685108877718449, 0.07576620578765869, 0.10298123210668564, 0.05814056098461151, 0.019638368859887123, 0.0412435457110405, 0.2617388963699341], [0.058290060609579086, 0.002785642398521304, 0.0019513018196448684, 0.024432362988591194, 0.010036335326731205, 0.0031228598672896624, 0.009842553175985813, 0.24091742932796478, 0.06263729184865952, 0.04152071848511696, 0.05439584702253342, 0.04095703363418579, 0.02103710174560547, 0.0213136188685894, 0.08352013677358627, 0.01221061684191227, 0.07061336189508438, 0.2404157519340515], [0.027848882600665092, 0.0011539964471012354, 0.0006306683644652367, 0.004658573307096958, 0.012613422237336636, 0.0013314808020368218, 0.0034604675602167845, 0.3045365512371063, 0.04788781329989433, 0.014388306997716427, 0.04933458939194679, 0.06229441612958908, 0.02884952537715435, 0.019293945282697678, 0.06353849917650223, 0.012831873260438442, 0.041590455919504166, 0.303756445646286], [0.005344905890524387, 0.0012741110986098647, 0.0015428733313456178, 0.00380618660710752, 0.0020909085869789124, 0.0005509222391992807, 0.0014518446987494826, 0.3446556329727173, 0.0052897813729941845, 0.011493224650621414, 0.009438886307179928, 0.017347848042845726, 0.09875262528657913, 0.052425093948841095, 0.03487153351306915, 0.051544588059186935, 0.014338891953229904, 0.34378013014793396], [0.012812796980142593, 0.005217900965362787, 0.004822629038244486, 0.0014530858024954796, 0.003637476358562708, 0.002543245442211628, 0.0030133328400552273, 0.34651726484298706, 0.014273146167397499, 0.012962240725755692, 0.012758007273077965, 0.013017606921494007, 0.02649456076323986, 0.07959217578172684, 0.04483449459075928, 0.05360356718301773, 0.016927672550082207, 0.34551873803138733], [0.012274214997887611, 0.0012428212212398648, 0.001615638379007578, 0.0009370772750116885, 0.0028144591487944126, 0.0009021922596730292, 0.001740620587952435, 0.30766868591308594, 0.01713193953037262, 0.02741854451596737, 0.01666327752172947, 0.035177990794181824, 0.025144541636109352, 0.04293074458837509, 0.16563156247138977, 0.014687866903841496, 0.01923132874071598, 0.30678653717041016], [0.006138079334050417, 0.0012235321337357163, 0.002659621648490429, 0.0008541694842278957, 0.0009435959509573877, 0.0014703418128192425, 0.0018676136387512088, 0.3395836353302002, 0.008971195667982101, 0.005006623454391956, 0.005326618906110525, 0.00527207599952817, 0.02666185051202774, 0.14918890595436096, 0.02327709086239338, 0.06125039607286453, 0.02192671410739422, 0.338377982378006], [0.04570205882191658, 0.014165720902383327, 0.0013731904327869415, 0.011881320737302303, 0.004912983160465956, 0.004937153309583664, 0.006018593907356262, 0.11710669100284576, 0.44858136773109436, 0.07449407130479813, 0.04336925968527794, 0.017085321247577667, 0.004060022067278624, 0.006528460420668125, 0.03499073535203934, 0.009795009158551693, 0.037999436259269714, 0.11699865758419037], [0.005056479014456272, 0.006958456244319677, 0.004371073096990585, 0.003795621218159795, 0.0028383948374539614, 0.0023047439754009247, 0.0033466957975178957, 0.47236233949661255, 0.006768045946955681, 0.0037593136075884104, 0.003390626050531864, 0.0027740439400076866, 0.0008667205111123621, 0.0015196368331089616, 0.0037964715156704187, 0.001103530521504581, 0.004326540976762772, 0.4706612527370453]], [[0.005157587118446827, 0.002607206581160426, 0.0052429731003940105, 0.002982516773045063, 0.0012886215699836612, 0.009966992773115635, 0.002310782205313444, 0.2873063087463379, 0.16048164665699005, 0.039469458162784576, 0.04418636113405228, 0.05027441307902336, 0.015162796713411808, 0.027279289439320564, 0.02218647114932537, 0.016750654205679893, 0.02070254273712635, 0.2866433262825012], [0.010983536019921303, 0.0319424606859684, 0.2845625877380371, 0.02276727557182312, 0.07387477159500122, 0.20636598765850067, 0.015422604978084564, 0.16591329872608185, 0.0011355032911524177, 0.00625594099983573, 0.001019866089336574, 0.0006482280441559851, 0.0011416067136451602, 0.005948192905634642, 0.0005415042396634817, 0.0041075232438743114, 0.001958222361281514, 0.1654108315706253], [0.0021578052546828985, 0.0032767169177532196, 0.01828181743621826, 0.007894240319728851, 0.01002697367221117, 0.07070138305425644, 0.005833707749843597, 0.437512069940567, 0.00010959053906844929, 0.0008272927952930331, 0.0011416139313951135, 0.0001115800259867683, 0.0011669958475977182, 0.002541331807151437, 0.00027539077564142644, 0.00139622634742409, 0.0007810235838405788, 0.43596431612968445], [0.016254959627985954, 0.064155213534832, 0.05148359015583992, 0.04268379881978035, 0.1214112788438797, 0.25082606077194214, 0.027266323566436768, 0.1926519125699997, 0.0035176321398466825, 0.006074552424252033, 0.005816238466650248, 0.0024598506279289722, 0.0021900441497564316, 0.003984234295785427, 0.0038184230215847492, 0.010307937860488892, 0.002990131266415119, 0.19210778176784515], [0.004848156590014696, 0.06457964330911636, 0.06637994945049286, 0.03009202517569065, 0.019513027742505074, 0.10823097825050354, 0.010187224484980106, 0.34227198362350464, 0.0007041884236969054, 0.001696089282631874, 0.0021533803083002567, 0.000651185808237642, 0.001190406153909862, 0.001576654496602714, 0.000855148013215512, 0.002929053734987974, 0.0009169495897367597, 0.3412240147590637], [0.0030904903542250395, 0.02272896282374859, 0.04716073349118233, 0.017536355182528496, 0.006478507537394762, 0.050713010132312775, 0.01861545443534851, 0.4107263386249542, 0.0009161514462903142, 0.002179099014028907, 0.0017221432644873857, 0.00048476242227479815, 0.0018213784787803888, 0.0013333854731172323, 0.0007019070326350629, 0.002105174819007516, 0.0022811980452388525, 0.4094049036502838], [0.005731336306780577, 0.007357066031545401, 0.011048559099435806, 0.009393731132149696, 0.005382094997912645, 0.015399196185171604, 0.00950756948441267, 0.4544544219970703, 0.007972938008606434, 0.005374385975301266, 0.0027498360723257065, 0.004675358533859253, 0.0010947422124445438, 0.0011260459432378411, 0.0017617312259972095, 0.0008607550407759845, 0.0031165757682174444, 0.45299360156059265], [0.0021746130660176277, 0.001762309344485402, 0.0056307376362383366, 0.0012691441224887967, 0.00046659845975227654, 0.004264606162905693, 0.002963823266327381, 0.4836689829826355, 0.0019645127467811108, 0.002000516979023814, 0.0013608346926048398, 0.0012318564113229513, 0.0017839826177805662, 0.0015354022616520524, 0.000468848564196378, 0.0010809953091666102, 0.004016002174466848, 0.48235616087913513], [0.006414595525711775, 0.0009598477045074105, 0.0016836368013173342, 0.0004395676660351455, 0.00047185091534629464, 0.0010353535180911422, 0.0010581212118268013, 0.4301435649394989, 0.015750160440802574, 0.026093220338225365, 0.012028365395963192, 0.04367531090974808, 0.003567217383533716, 0.00518526416271925, 0.0023423205129802227, 0.005384604446589947, 0.01470178458839655, 0.4290652275085449], [0.03610489144921303, 0.0019066398963332176, 0.005519962403923273, 0.0019207933219149709, 0.0008720480254851282, 0.0057324692606925964, 0.0010587091092020273, 0.21095003187656403, 0.007254201918840408, 0.08742093294858932, 0.1967637985944748, 0.018871411681175232, 0.021620314568281174, 0.08475260436534882, 0.010619774460792542, 0.07814845442771912, 0.020072298124432564, 0.21041066944599152], [0.021453939378261566, 0.0006558343302458525, 0.000838709354866296, 0.0008571874350309372, 0.0017295049037784338, 0.0012076505227014422, 0.0006258597131818533, 0.24290649592876434, 0.009628321044147015, 0.02869918756186962, 0.09332958608865738, 0.04230623319745064, 0.019907258450984955, 0.011525899171829224, 0.17157571017742157, 0.09783578664064407, 0.012751162052154541, 0.24216563999652863], [0.007849892601370811, 0.00037152343429625034, 0.0001898540649563074, 0.0005945939919911325, 0.0009720000089146197, 0.0005252219852991402, 0.00014452684263233095, 0.23021824657917023, 0.0023691949900239706, 0.00577097712084651, 0.1934666633605957, 0.007333261426538229, 0.05523684620857239, 0.011828550137579441, 0.17758417129516602, 0.07199344784021378, 0.004101110156625509, 0.22944989800453186], [0.006568162702023983, 0.0003397821565158665, 0.0005543000297620893, 6.396707613021135e-05, 5.2538303862093017e-05, 0.00034698357922025025, 0.00010326377378078178, 0.426433801651001, 0.0024475238751620054, 0.001444889698177576, 0.008886056020855904, 0.002476603491231799, 0.004621365573257208, 0.024735692888498306, 0.019148653373122215, 0.07464881986379623, 0.00235075899399817, 0.42477676272392273], [0.0008241005125455558, 4.082337181898765e-05, 0.0015089703956618905, 4.934058597427793e-05, 4.192691994830966e-05, 0.0014754391741007566, 0.00017849767755251378, 0.4087394177913666, 0.0006186016835272312, 0.0014078033855184913, 0.009800062514841557, 0.006196698639541864, 0.02365957573056221, 0.032693326473236084, 0.009315885603427887, 0.09261243045330048, 0.003284007776528597, 0.4075530171394348], [0.001898443209938705, 0.00017949807806871831, 0.0004418061871547252, 0.00012566773511935025, 0.00016264148871414363, 0.0005511341150850058, 0.00015877914847806096, 0.19409972429275513, 0.00032789079705253243, 0.005320036318153143, 0.015648599714040756, 0.047704581171274185, 0.0034847918432205915, 0.03330376744270325, 0.07935314625501633, 0.4189006984233856, 0.004887791350483894, 0.19345098733901978], [0.0007830546237528324, 0.00011027191067114472, 0.0009184398804791272, 4.456722308532335e-05, 1.960897134267725e-05, 0.0006123065832071006, 0.00021708228450734168, 0.4527873396873474, 0.00040088381501846015, 0.0017542763380333781, 0.006554611027240753, 0.005190360825508833, 0.006841655354946852, 0.03713098168373108, 0.020510751754045486, 0.009973075240850449, 0.004996884148567915, 0.4511539340019226], [0.003230018075555563, 0.00031083388603292406, 0.0007917153416201472, 0.0003515584976412356, 0.00016508671978954226, 0.0009045777842402458, 0.0006155814044177532, 0.4475916624069214, 0.025278862565755844, 0.01545734517276287, 0.004914215300232172, 0.015003956854343414, 0.0033451321069151163, 0.006278409622609615, 0.005545167252421379, 0.010956300422549248, 0.013000249862670898, 0.4462592899799347], [0.0021721036173403263, 0.0017586156027391553, 0.005620249081403017, 0.0012672366574406624, 0.0004658436810132116, 0.0042572119273245335, 0.0029589300975203514, 0.48369845747947693, 0.0019603914115577936, 0.0019970512948930264, 0.0013590777525678277, 0.0012291044695302844, 0.0017815869068726897, 0.0015325933927670121, 0.00046814262168481946, 0.0010795056587085128, 0.004008765798062086, 0.4823853373527527]], [[0.004407381173223257, 0.001734409132041037, 0.0025065543595701456, 0.0008236733847297728, 0.0010080502834171057, 0.0011047024745494127, 0.004108716733753681, 0.4724222421646118, 0.002697872929275036, 0.008516219444572926, 0.0034887271467596292, 0.0032455604523420334, 0.0007307384512387216, 0.0028999471105635166, 0.002563835820183158, 0.0038968310691416264, 0.012667964212596416, 0.4711765646934509], [0.002307770075276494, 0.00830857828259468, 0.00801195576786995, 0.0027147310320287943, 0.0015072055393829942, 0.00856899842619896, 0.009235227480530739, 0.47920849919319153, 0.00024196227604988962, 0.0008181669400073588, 0.0001821657206164673, 0.00010648588795447722, 7.913728768471628e-05, 0.0002331644354853779, 9.902695455821231e-05, 0.00016594611224718392, 0.0009518158622086048, 0.47725921869277954], [0.0014916686341166496, 0.002516165841370821, 0.002671005204319954, 0.0011065953876823187, 0.0012756830547004938, 0.0006215155590325594, 0.002704387763515115, 0.49396950006484985, 3.556628871592693e-05, 0.0002917388337664306, 9.326062718173489e-05, 8.454379712929949e-05, 0.00011462908878456801, 0.0001839493925217539, 0.00012166634405730292, 6.680927617708221e-05, 0.0007136217318475246, 0.49193763732910156], [0.004446723498404026, 0.03454939275979996, 0.017377281561493874, 0.0034365945030003786, 0.0033910805359482765, 0.0025822289753705263, 0.00738102151080966, 0.46021026372909546, 0.0001173846103483811, 0.003104571020230651, 0.0007917459588497877, 0.00019951595459133387, 0.00011956359230680391, 0.0007962537347339094, 0.0006889309152029455, 0.0001637761015444994, 0.0026091316249221563, 0.45803457498550415], [0.004226563964039087, 0.00837545096874237, 0.004716512281447649, 0.004791846498847008, 0.0075523946434259415, 0.0022555491887032986, 0.005775174591690302, 0.48055964708328247, 7.954841566970572e-05, 0.0003679604269564152, 0.0010474707232788205, 0.000195014028577134, 4.9083380872616544e-05, 0.00034201538073830307, 0.00027613865677267313, 3.758403909159824e-05, 0.001268800813704729, 0.47808322310447693], [0.00375535199418664, 0.0029951201286166906, 0.003199674654752016, 0.005065584089607, 0.0022608537692576647, 0.006922917906194925, 0.004355806857347488, 0.4843987822532654, 0.00023398226767312735, 0.0005426154821179807, 0.0013495655730366707, 5.687285010935739e-05, 6.0892132751177996e-05, 0.00014671792450826615, 0.00012899129069410264, 0.00010888665565289557, 0.0015989213716238737, 0.48281845450401306], [0.015108625404536724, 0.0032525230199098587, 0.002790642436593771, 0.003767872229218483, 0.0040984125807881355, 0.01825324259698391, 0.13285242021083832, 0.4027814269065857, 0.002624178770929575, 0.0005411375313997269, 7.995244232006371e-05, 0.00013272867363411933, 2.2571459339815192e-05, 0.00011950098996749148, 5.115277599543333e-05, 0.00023131101625040174, 0.011699517257511616, 0.40159279108047485], [0.008124866522848606, 0.004090022295713425, 0.0036466140300035477, 0.003690734039992094, 0.0023305234499275684, 0.006818700116127729, 0.01764748990535736, 0.45650240778923035, 0.0024543667677789927, 0.001900282921269536, 0.0016325925244018435, 0.002665339969098568, 0.003358502173796296, 0.0038977593649178743, 0.0012561228359118104, 0.00457017682492733, 0.019466659054160118, 0.45594677329063416], [0.0036743301898241043, 0.00241920817643404, 0.0005543075385503471, 0.0013343595201149583, 0.0004929229617118835, 0.0038485724944621325, 0.002678892109543085, 0.47910240292549133, 0.00683320127427578, 0.005189281422644854, 0.00263544381596148, 0.0018157926388084888, 0.0007159855449572206, 0.0023620338179171085, 0.0010064035886898637, 0.0018396512605249882, 0.005986301694065332, 0.47751089930534363], [0.0055195242166519165, 0.0018171436386182904, 0.0043961647897958755, 0.0006468818755820394, 0.0004335251869633794, 0.002526666736230254, 0.0054366858676075935, 0.47471633553504944, 0.005686014425009489, 0.01157248392701149, 0.0023107624147087336, 0.0007060436764732003, 0.0015282537788152695, 0.0015768033917993307, 0.00025979583733715117, 0.0006406042375601828, 0.007309043779969215, 0.47291722893714905], [0.0017258153529837728, 0.0008280836627818644, 0.0006134491413831711, 0.0002841047244146466, 0.00013074239541310817, 0.00011374717723811045, 0.001167243579402566, 0.47666293382644653, 0.000916109187528491, 0.017909454181790352, 0.016063597053289413, 0.004164636600762606, 0.0008493586210533977, 0.0014373129233717918, 0.0002680790494196117, 0.0002955053059849888, 0.0017855692422017455, 0.4747842252254486], [0.0034119735937565565, 0.0005037131486460567, 0.0003177962207701057, 9.257932106265798e-05, 7.581266254419461e-05, 0.000250512472121045, 0.0015589752001687884, 0.4758191704750061, 0.0016442269552499056, 0.01514727808535099, 0.014201752841472626, 0.006090882699936628, 0.001501594204455614, 0.0020555739756673574, 0.0004179638053756207, 0.0003742687404155731, 0.0025099399499595165, 0.47402605414390564], [0.002042519161477685, 0.00046767794992774725, 0.0004185929719824344, 8.134824747685343e-05, 3.103886774624698e-05, 0.00010750562069006264, 0.0016099890926852822, 0.47326597571372986, 0.0012084485497325659, 0.011337311938405037, 0.012396534904837608, 0.007502404507249594, 0.0030972235836088657, 0.006614373996853828, 0.001754512544721365, 0.0017130408668890595, 0.004880664870142937, 0.47147080302238464], [0.0007736713741905987, 0.00020665892225224525, 9.985189535655081e-05, 2.882321314245928e-05, 2.512023456802126e-05, 9.50325556914322e-06, 0.0002843051333911717, 0.4956972897052765, 7.404669304378331e-05, 0.0007246010354720056, 0.0006848112097941339, 0.0010794552508741617, 0.0010413472773507237, 0.0033662612549960613, 0.0007460784399881959, 0.00023220092407427728, 0.0010918311309069395, 0.493833988904953], [0.007553341798484325, 0.00025493878638371825, 3.5377834137761965e-05, 7.173231279011816e-05, 5.104316642245976e-06, 9.244327884516679e-06, 0.0003569780383259058, 0.4167351722717285, 1.778902515070513e-05, 0.0013997871428728104, 0.0018827287713065743, 0.001442587235942483, 0.008905038237571716, 0.0791643038392067, 0.06020142883062363, 0.004280392080545425, 0.0027928848285228014, 0.41489121317863464], [0.0006191005231812596, 8.590179641032591e-05, 9.435132233193144e-05, 1.9928140318370424e-05, 1.2734648407786153e-05, 3.386436583241448e-05, 0.00036443144199438393, 0.48700836300849915, 0.00019266751769464463, 0.002591229509562254, 0.0007898779585957527, 0.0014279353199526668, 0.001383203431032598, 0.007083851844072342, 0.0050478288903832436, 0.004942741710692644, 0.002839150605723262, 0.48546281456947327], [0.01908237673342228, 0.0006016665720380843, 0.0005895863869227469, 0.00026817762409336865, 0.0002711809938773513, 0.0008502258569933474, 0.012576966546475887, 0.4270147681236267, 0.008272266015410423, 0.0020664085168391466, 0.002402727724984288, 0.005791954696178436, 0.0013582328101620078, 0.004662791732698679, 0.004401750862598419, 0.011396695859730244, 0.07262099534273148, 0.4257712662220001], [0.008116938173770905, 0.004084412008523941, 0.0036377571523189545, 0.0036851498298346996, 0.0023274309933185577, 0.00680303480476141, 0.01761259138584137, 0.456576943397522, 0.002450775820761919, 0.0018972420366480947, 0.0016303530428558588, 0.0026619250420480967, 0.003352072788402438, 0.0038925090339034796, 0.001255833194591105, 0.004557525273412466, 0.019435493275523186, 0.45602187514305115]], [[0.0028692728374153376, 0.0022778233978897333, 0.008481488563120365, 0.0022271478082984686, 0.0017116015078499913, 0.002535314066335559, 0.0036528916098177433, 0.40421968698501587, 0.033325012773275375, 0.03356371447443962, 0.014503641985356808, 0.016175858676433563, 0.00965824257582426, 0.016946900635957718, 0.0030061337165534496, 0.006041502580046654, 0.03564918786287308, 0.40315452218055725], [0.006535624153912067, 0.01749577187001705, 0.006123032420873642, 0.013018699362874031, 0.02278379537165165, 0.010980265215039253, 0.01137410756200552, 0.45135971903800964, 0.003592172171920538, 0.0024036522954702377, 0.0011933682253584266, 0.00047031184658408165, 0.0007610356551595032, 0.0003169188858009875, 0.000200604583369568, 0.00031217263313010335, 0.001454718760214746, 0.44962403178215027], [0.012116850353777409, 0.040481965988874435, 0.010523748584091663, 0.01785765402019024, 0.014038210734724998, 0.014112104661762714, 0.010210595093667507, 0.4330395460128784, 0.003485706401988864, 0.005521893501281738, 0.0012945450143888593, 0.0007315752445720136, 0.0012568071251735091, 0.00048644706839695573, 0.0009014626266434789, 0.0006347252638079226, 0.0018798892851918936, 0.43142637610435486], [0.007986452430486679, 0.11973032355308533, 0.005987429525703192, 0.01745009794831276, 0.043420057743787766, 0.0237280260771513, 0.01090783067047596, 0.3657437860965729, 0.027541624382138252, 0.0015955922426655889, 0.001765555003657937, 0.003541313111782074, 0.0013559532817453146, 0.0004298286803532392, 0.0002328755217604339, 0.0004737736308015883, 0.003786450019106269, 0.36432310938835144], [0.0033521594014018774, 0.06627464294433594, 0.0074727293103933334, 0.027683783322572708, 0.04366937652230263, 0.025468051433563232, 0.010914803482592106, 0.3904446065425873, 0.01781349815428257, 0.0002792785526253283, 0.0016328708734363317, 0.012245802208781242, 0.00022171722957864404, 0.0004469837585929781, 8.959484694059938e-05, 9.916867566062137e-05, 0.0029330593533813953, 0.38895782828330994], [0.013902301900088787, 0.030455367639660835, 0.009804795496165752, 0.09853202849626541, 0.19601145386695862, 0.06574243307113647, 0.0149624552577734, 0.2721903622150421, 0.012060267850756645, 0.00034599838545545936, 0.002407590625807643, 0.003179436782374978, 0.0004990223096683621, 0.0011091753840446472, 0.0004785657220054418, 0.0009462376474402845, 0.006145392078906298, 0.27122706174850464], [0.013463610783219337, 0.02603691630065441, 0.02766711264848709, 0.15159842371940613, 0.1853441447019577, 0.04740029573440552, 0.03331150859594345, 0.24159173667430878, 0.018327787518501282, 0.001319360570050776, 0.0015058685094118118, 0.00035792746348306537, 0.0004244940064381808, 0.001258421572856605, 0.0011575049720704556, 0.0008461806573905051, 0.0075254556722939014, 0.24086332321166992], [0.004005236551165581, 0.003968173172324896, 0.0010925830574706197, 0.0029899654909968376, 0.0020909246522933245, 0.002452773740515113, 0.00294467038474977, 0.48116567730903625, 0.004016621969640255, 0.0021174054127186537, 0.0035920224618166685, 0.0024769629817456007, 0.0026088645681738853, 0.0008507434977218509, 0.0006609254633076489, 0.0007772973040118814, 0.0026672689709812403, 0.47952181100845337], [0.03875404968857765, 0.0007796744466759264, 0.00041523706750012934, 0.003593933768570423, 0.00323826284147799, 0.004364966414868832, 0.004536302760243416, 0.42849457263946533, 0.043321702629327774, 0.002470750827342272, 0.003337063128128648, 0.002112850546836853, 0.0009663602104410529, 0.002294385340064764, 0.0024851092603057623, 0.005477696657180786, 0.026235202327370644, 0.4271218776702881], [0.06046505644917488, 0.002413819544017315, 0.0012858231784775853, 0.002643842715770006, 0.0012064788024872541, 0.0015019697602838278, 0.004432941321283579, 0.336842805147171, 0.16956567764282227, 0.021477829664945602, 0.012998365797102451, 0.010357504710555077, 0.004773739259690046, 0.0041780369356274605, 0.001689641154371202, 0.0027116923592984676, 0.02595297247171402, 0.3355017304420471], [0.01557206455618143, 0.0019898575264960527, 0.0005683218478225172, 0.0013454037252813578, 0.0017573329387232661, 0.0020990201737731695, 0.0017210529185831547, 0.2715396583080292, 0.3439616858959198, 0.026492713019251823, 0.01772950403392315, 0.017573773860931396, 0.0040604728274047375, 0.005382623989135027, 0.000892930431291461, 0.006939910817891359, 0.0097334710881114, 0.270640105009079], [0.04221123456954956, 0.0007753651007078588, 0.0003058660659007728, 0.0008448648150078952, 0.0008630129741504788, 0.002237071515992284, 0.0017392929876223207, 0.21533381938934326, 0.45430558919906616, 0.02041759341955185, 0.012976312078535557, 0.004941133316606283, 0.0024910003412514925, 0.007802597247064114, 0.0013999382499605417, 0.006024612113833427, 0.01081544253975153, 0.21451528370380402], [0.050225019454956055, 0.0015845519956201315, 0.0006524866912513971, 0.002212389139458537, 0.0005589915672317147, 0.004158854950219393, 0.004571559373289347, 0.2400471270084381, 0.1898464560508728, 0.038499485701322556, 0.059062328189611435, 0.02017313800752163, 0.016754433512687683, 0.042618684470653534, 0.03028697706758976, 0.03901209309697151, 0.020507190376520157, 0.23922817409038544], [0.03430863097310066, 0.002720401156693697, 0.00038902743835933506, 0.0007976244669407606, 0.0002919957914855331, 0.0017360063502565026, 0.00200619176030159, 0.2901170551776886, 0.05480216071009636, 0.03226308524608612, 0.04593300446867943, 0.0802692398428917, 0.043141745030879974, 0.024725059047341347, 0.058824531733989716, 0.025409864261746407, 0.013168745674192905, 0.2890956997871399], [0.02308051660656929, 0.0030509524513036013, 0.0004671454953495413, 0.0009740118402987719, 0.0006574925500899553, 0.0012186754029244184, 0.0025993918534368277, 0.2097139060497284, 0.031117230653762817, 0.027615029364824295, 0.036225687712430954, 0.10392376035451889, 0.14177636802196503, 0.09900818765163422, 0.07835537940263748, 0.020756332203745842, 0.01049452368170023, 0.2089654505252838], [0.020841246470808983, 0.0007777739665471017, 0.0003468064242042601, 0.0004086908302269876, 7.860577898100019e-05, 0.00044301306479610503, 0.0014262665063142776, 0.05063233524560928, 0.022387873381376266, 0.017251845449209213, 0.030209962278604507, 0.02657386101782322, 0.04401961714029312, 0.05696498230099678, 0.6494208574295044, 0.01990491896867752, 0.007829518988728523, 0.05048184469342232], [0.0354778878390789, 0.0030366024002432823, 0.0014637337299063802, 0.006497723516076803, 0.00437145447358489, 0.0032250857912003994, 0.005633423570543528, 0.20934611558914185, 0.16600404679775238, 0.06762401014566422, 0.08168625086545944, 0.019294651225209236, 0.0176997072994709, 0.027766549959778786, 0.07353268563747406, 0.023468883708119392, 0.045064520090818405, 0.2088066190481186], [0.004002569243311882, 0.003963063471019268, 0.001090875593945384, 0.0029863708186894655, 0.0020879863295704126, 0.0024502312298864126, 0.00294015696272254, 0.48119208216667175, 0.0040127914398908615, 0.002114643109962344, 0.0035867271944880486, 0.0024726123083382845, 0.0026043513789772987, 0.0008491625194437802, 0.0006600842461921275, 0.0007761495653539896, 0.002662521554157138, 0.4795476794242859]], [[0.0021670463029295206, 0.013582326471805573, 0.015603365376591682, 0.12113938480615616, 0.3204556703567505, 0.07895073294639587, 0.028734959661960602, 0.20736584067344666, 0.00244047655723989, 0.00029377132887020707, 0.0008432645699940622, 0.0004156486829742789, 0.00044288928620517254, 0.00018850072228815407, 7.485730020562187e-05, 7.031548739178106e-05, 0.0005450957105495036, 0.20668578147888184], [0.0016396718565374613, 0.00578753836452961, 0.004135849419981241, 0.01189459953457117, 0.005762663669884205, 0.006808342877775431, 0.0030881164129823446, 0.4811140298843384, 0.0002775294706225395, 4.192330379737541e-05, 7.816350989742205e-05, 6.692836905131117e-05, 0.00012973413686268032, 5.49301621504128e-05, 2.1972033209749497e-05, 0.00011149565398227423, 0.00010139738878933713, 0.4788849651813507], [0.0015208667609840631, 0.0036915920209139585, 0.002801444148644805, 0.005837243981659412, 0.0034012221731245518, 0.006499228533357382, 0.0038592463824898005, 0.4869619905948639, 0.00018607119272928685, 5.430034070741385e-05, 0.00022069227998144925, 0.00010042680514743552, 6.892991223139688e-05, 2.5780056603252888e-05, 5.212250835029408e-05, 7.668105536140501e-05, 0.00016248899919446558, 0.4844796061515808], [0.0015696907648816705, 0.003876219503581524, 0.0019066723762080073, 0.008163969963788986, 0.002721591619774699, 0.00794295035302639, 0.008547782897949219, 0.4810613989830017, 0.004429150838404894, 5.547203909372911e-05, 0.00016605750715825707, 8.197313582058996e-05, 6.542792561958777e-06, 2.2627129510510713e-05, 1.896005960588809e-05, 7.630763320776168e-06, 0.0006127723027020693, 0.47880861163139343], [0.001205161795951426, 0.0019487133249640465, 0.013316118158400059, 0.11414221674203873, 0.014467488043010235, 0.005426487419754267, 0.006326730363070965, 0.421607106924057, 0.00039731350261718035, 5.916443114983849e-05, 0.0003296284703537822, 0.00021058873971924186, 0.00012476410483941436, 3.317456503282301e-05, 0.00015865653404034674, 1.9145221813232638e-05, 0.0003568310057744384, 0.4198707044124603], [0.002906623762100935, 0.005818450357764959, 0.006104825530201197, 0.1397770494222641, 0.023366540670394897, 0.022423334419727325, 0.01663016341626644, 0.39026495814323425, 0.0017943336861208081, 7.936924521345645e-05, 0.00048384422552771866, 0.00012723014515358955, 4.8727273679105565e-05, 5.627387508866377e-05, 5.8464698668103665e-05, 5.224054984864779e-05, 0.0014887278666719794, 0.3885188400745392], [0.002862463938072324, 0.0021550122182816267, 0.0024644220247864723, 0.017932267859578133, 0.011810032650828362, 0.015771878883242607, 0.005673056934028864, 0.4701506197452545, 0.0016665766015648842, 0.00013645316357724369, 0.0002571502118371427, 0.00017912124167196453, 0.00011495189392007887, 5.3069161367602646e-05, 3.073859988944605e-05, 8.276161679532379e-05, 0.00044069578871130943, 0.46821877360343933], [0.0014163595624268055, 0.0026461079251021147, 0.0022624945268034935, 0.0063165295869112015, 0.00460139149799943, 0.003090138779953122, 0.001445645117200911, 0.4821208119392395, 0.002567717107012868, 0.000994244241155684, 0.0024293691385537386, 0.0021642204374074936, 0.0022104105446487665, 0.0005523471045307815, 0.0019569869618862867, 0.0011947343591600657, 0.0011398240458220243, 0.4808906316757202], [0.0067082056775689125, 0.00014646847557742149, 0.00034091173438355327, 0.001393736805766821, 0.00036600782186724246, 0.0033955094404518604, 0.001503109117038548, 0.4704768657684326, 0.028937676921486855, 0.002461508149281144, 0.004681190941482782, 0.001424669288098812, 0.0005727821262553334, 0.0004000752232968807, 0.00016847024380695075, 0.0011146684410050511, 0.007191162556409836, 0.4687170684337616], [0.005219805985689163, 0.003218630328774452, 0.0005617482238449156, 0.002544587943702936, 0.0015827552415430546, 0.0013842404587194324, 0.004916468635201454, 0.46261948347091675, 0.014106298796832561, 0.00786651112139225, 0.01433328166604042, 0.007136091589927673, 0.0005911225453019142, 0.0007570995367132127, 0.00027111510280519724, 0.0007506359252147377, 0.011433162726461887, 0.4607069194316864], [0.005082271061837673, 0.00019596610218286514, 0.00012112857075408101, 0.00032982995617203414, 5.194816185394302e-05, 0.0002942667924799025, 0.005827978253364563, 0.41920486092567444, 0.04542720690369606, 0.004087214823812246, 0.06848159432411194, 0.023950306698679924, 0.0004666457243729383, 0.0006312045152299106, 9.930250234901905e-05, 4.8546917241765186e-05, 0.008409814909100533, 0.4172898828983307], [0.005411125719547272, 0.00020572434004861861, 0.00010501040378585458, 0.0006587380194105208, 0.00022530222486238927, 0.0006348242168314755, 0.0030377362854778767, 0.32761064171791077, 0.024871625006198883, 0.0026249371003359556, 0.27588266134262085, 0.027028033509850502, 0.0007308984058909118, 0.00035650114296004176, 0.00031442250474356115, 9.174188016913831e-05, 0.004103681072592735, 0.3261062800884247], [0.009535553865134716, 5.7128385378746316e-05, 8.683592022862285e-05, 4.0527131204726174e-05, 1.9118118871119805e-05, 3.7103138311067596e-05, 0.0029558513779193163, 0.24868473410606384, 0.00036009997711516917, 0.004175570327788591, 0.34636443853378296, 0.11901815980672836, 0.013984914869070053, 0.0006758717354387045, 0.0011214915430173278, 0.001598200062289834, 0.003463804256170988, 0.24782060086727142], [0.003961473703384399, 0.0001308826176682487, 0.00023898683139123023, 0.0003485619672574103, 0.00015711570449639112, 0.00018091488163918257, 0.0012068533105775714, 0.43998223543167114, 0.0003036900598090142, 0.0008030924946069717, 0.006821148097515106, 0.010950676165521145, 0.07214503735303879, 0.0047742039896547794, 0.004147299099713564, 0.012751265428960323, 0.002761951182037592, 0.4383346140384674], [0.030528824776411057, 0.0004744963371194899, 0.00011534325312823057, 0.00035790944821201265, 0.00019102590158581734, 0.0001325263292528689, 0.014411302283406258, 0.09634147584438324, 0.00028842483879998326, 0.036115650087594986, 0.011372034437954426, 0.02972797490656376, 0.3575076460838318, 0.17481818795204163, 0.10466473549604416, 0.0034950650297105312, 0.04346591606736183, 0.09599145501852036], [0.006284166593104601, 0.0002177246642531827, 0.00048941804561764, 0.0003813930961769074, 9.45303327171132e-05, 0.00025000388268381357, 0.0031697021331638098, 0.2976183593273163, 0.0006750391330569983, 0.006453041452914476, 0.032598819583654404, 0.04595211148262024, 0.07650534808635712, 0.05080404505133629, 0.14176185429096222, 0.029373416677117348, 0.010953649878501892, 0.29641735553741455], [0.002938863355666399, 0.00015727465506643057, 0.00017418432980775833, 0.0011524222791194916, 0.0002659005986060947, 0.0002967260661534965, 0.001134113292209804, 0.4629450738430023, 0.028943393379449844, 0.0021928411442786455, 0.00944981724023819, 0.0068855080753564835, 0.006816987879574299, 0.0033002658747136593, 0.0015620513586327434, 0.00533041637390852, 0.0051353126764297485, 0.46131882071495056], [0.0014150608330965042, 0.002639253158122301, 0.002256257925182581, 0.00630378071218729, 0.00459184218198061, 0.0030857364181429148, 0.0014432210009545088, 0.4821475148200989, 0.0025665017310529947, 0.0009922835743054748, 0.002427811734378338, 0.0021625810768455267, 0.002209525555372238, 0.0005516546661965549, 0.0019575778860598803, 0.0011945271398872137, 0.0011389737483114004, 0.4809158742427826]]], [[[0.002205552998930216, 0.001938913599587977, 0.004721165634691715, 0.0030071204528212547, 0.0006366019370034337, 0.014355839230120182, 0.00879349373281002, 0.4278900921344757, 0.06323640793561935, 0.007267501670867205, 0.0028672576881945133, 0.002119160257279873, 0.0009138106252066791, 0.0017955994699150324, 0.0032248820643872023, 0.006210570689290762, 0.02228531613945961, 0.42653074860572815], [0.003487406298518181, 0.028230709955096245, 0.015518903732299805, 0.004577597603201866, 0.0010398378362879157, 0.005711960140615702, 0.01334109716117382, 0.45710673928260803, 0.01110152993351221, 0.0006766467122361064, 0.00020466376736294478, 0.00021989467495586723, 8.964996959548444e-05, 8.746313687879592e-05, 8.153075759764761e-05, 0.000113415859232191, 0.0027020347770303488, 0.45570889115333557], [0.002813936211168766, 0.3749983608722687, 0.03350284695625305, 0.007134597282856703, 0.007288957946002483, 0.021897701546549797, 0.006441708188503981, 0.26180052757263184, 0.006646944675594568, 0.005484987050294876, 0.0010084774112328887, 0.0029054414480924606, 0.0011427606223151088, 0.0017012135358527303, 0.0004052454314660281, 0.000967906613368541, 0.0026971378829330206, 0.26116126775741577], [0.0049230726435780525, 0.07562769204378128, 0.015214218758046627, 0.013928018510341644, 0.0055821798741817474, 0.01723390631377697, 0.028802059590816498, 0.40255722403526306, 0.023386115208268166, 0.0017950779292732477, 0.0005689429235644639, 0.00038712495006620884, 5.7359851780347526e-05, 0.00017674887203611434, 4.3937023292528465e-05, 0.00012997406884096563, 0.008002393878996372, 0.40158402919769287], [0.015249945223331451, 0.03750603646039963, 0.03316423296928406, 0.25233644247055054, 0.05417700856924057, 0.01821124739944935, 0.05663798749446869, 0.25277191400527954, 0.010795976035296917, 0.002434032503515482, 0.000854753889143467, 0.0006011283840052783, 0.00026842905208468437, 0.0003572709101717919, 0.00019350118236616254, 0.00020327630045358092, 0.011990041472017765, 0.2522467076778412], [0.01952933520078659, 0.039124663919210434, 0.041507869958877563, 0.35603222250938416, 0.1392851173877716, 0.040932293981313705, 0.042327143251895905, 0.14362740516662598, 0.01803860068321228, 0.0024460332933813334, 0.0012417456600815058, 0.001354752341285348, 0.0008521554991602898, 0.0010358671424910426, 0.001089331228286028, 0.0010223365388810635, 0.007161618210375309, 0.14339159429073334], [0.0249756071716547, 0.005297448020428419, 0.009300237521529198, 0.043174080550670624, 0.03264578431844711, 0.045726925134658813, 0.06045341119170189, 0.38121137022972107, 0.006931839045137167, 0.0009227444534189999, 0.0007477466715499759, 0.0004514835891313851, 0.00046129588736221194, 0.00019746425095945597, 0.0002749985142145306, 9.04185653780587e-05, 0.0069231316447257996, 0.38021400570869446], [0.014301635324954987, 0.013172158971428871, 0.007191451266407967, 0.009796821512281895, 0.008314904756844044, 0.0059452662244439125, 0.017693255096673965, 0.4298948645591736, 0.007166246417909861, 0.01011216826736927, 0.008323478512465954, 0.004506580997258425, 0.007747048977762461, 0.004140064120292664, 0.002014926401898265, 0.002766975434496999, 0.018104860559105873, 0.4288073480129242], [0.025981329381465912, 0.0014550987398251891, 0.006943130865693092, 0.023817850276827812, 0.006135422270745039, 0.004333184566348791, 0.1627124547958374, 0.3308541178703308, 0.03574217110872269, 0.003386643948033452, 0.0006886495975777507, 0.0010070445714518428, 0.0003710342280101031, 0.0005621417076326907, 0.0005267086671665311, 0.0006423923186957836, 0.06479993462562561, 0.33004075288772583], [0.010227436199784279, 0.018344799056649208, 0.010432385839521885, 0.0018197958124801517, 0.0009470446966588497, 0.00282952724955976, 0.015206553041934967, 0.35833996534347534, 0.14859908819198608, 0.02080184780061245, 0.004125547595322132, 0.007136275060474873, 0.000990880886092782, 0.0033154510892927647, 0.0008113927906379104, 0.00324735464528203, 0.03537103161215782, 0.35745373368263245], [0.017923232167959213, 0.004334207158535719, 0.003526487620547414, 0.0026954857166856527, 0.0014163381420075893, 0.000749365717638284, 0.031248552724719048, 0.16807341575622559, 0.5004020929336548, 0.04581097885966301, 0.007498736958950758, 0.018495244905352592, 0.0023288873489946127, 0.002315590623766184, 0.00018423680739942938, 0.0011597734410315752, 0.02418747916817665, 0.16764983534812927], [0.02505761757493019, 0.0011838942300528288, 0.0020859225187450647, 0.002034158678725362, 0.001079503446817398, 0.0019374993862584233, 0.015916600823402405, 0.21624422073364258, 0.25339585542678833, 0.04208911955356598, 0.1121760681271553, 0.06350839883089066, 0.020774900913238525, 0.005537643563002348, 0.0021602457854896784, 0.0023646617773920298, 0.016735119745135307, 0.2157185673713684], [0.013658261857926846, 0.0007195448852144182, 0.0011023451806977391, 0.00055248400894925, 0.00032055939664132893, 0.0016090917633846402, 0.0040816655382514, 0.18177953362464905, 0.1267407089471817, 0.042897872626781464, 0.2531942129135132, 0.1418415755033493, 0.01644792966544628, 0.010590563528239727, 0.00584259582683444, 0.0025399010628461838, 0.014749987982213497, 0.18133117258548737], [0.002560274675488472, 0.0002552675432525575, 0.00033054666710086167, 0.000478395726531744, 0.0004809728416148573, 0.0032221178989857435, 0.003061475697904825, 0.09517674893140793, 0.03360999748110771, 0.008000760339200497, 0.1150292456150055, 0.2139822393655777, 0.349261611700058, 0.016715524718165398, 0.038156624883413315, 0.016796378418803215, 0.007979723624885082, 0.0949021652340889], [0.014709251001477242, 0.0009058778523467481, 0.0005896259099245071, 0.0007347799255512655, 0.0007699498091824353, 0.0011013398179784417, 0.009397360496222973, 0.1613071709871292, 0.06933829933404922, 0.014825208112597466, 0.12214479595422745, 0.13597586750984192, 0.19265542924404144, 0.05179104954004288, 0.040473099797964096, 0.0037415495608001947, 0.01870591938495636, 0.16083353757858276], [0.006800639443099499, 0.0007335758418776095, 0.001177071826532483, 0.00067954818950966, 0.0003758256498258561, 0.0013253106735646725, 0.005083039868623018, 0.2823100686073303, 0.0655796155333519, 0.019172921776771545, 0.049292996525764465, 0.05358964204788208, 0.0645906999707222, 0.015557090751826763, 0.1253562569618225, 0.004759456962347031, 0.022093763574957848, 0.2815224528312683], [0.015319906175136566, 0.0007976097404025495, 0.0008818986243568361, 0.0024239346385002136, 0.003528408706188202, 0.0027717850171029568, 0.01421092264354229, 0.4107055366039276, 0.029722867533564568, 0.005051125772297382, 0.012493700720369816, 0.011990186758339405, 0.009869908913969994, 0.003531920025125146, 0.010242908261716366, 0.001793789560906589, 0.055088110268116, 0.40957555174827576], [0.01430531032383442, 0.013166163116693497, 0.0071884263306856155, 0.009799618273973465, 0.008320698514580727, 0.005944350268691778, 0.017687048763036728, 0.42990177869796753, 0.007165401708334684, 0.010106208734214306, 0.008322394452989101, 0.0045063612051308155, 0.007753212004899979, 0.004139323253184557, 0.002015854464843869, 0.0027659551706165075, 0.018098309636116028, 0.428813636302948]], [[0.004490458406507969, 0.0018359092064201832, 0.001109542092308402, 0.001179960323497653, 0.0014623890165239573, 0.0010745791951194406, 0.0009670212748460472, 0.17951878905296326, 0.48448505997657776, 0.03723008930683136, 0.018827108666300774, 0.018354903906583786, 0.018796652555465698, 0.007219143211841583, 0.006390651222318411, 0.005910744424909353, 0.032086510211229324, 0.17906050384044647], [0.007153951562941074, 0.08183009922504425, 0.07466541975736618, 0.1904962956905365, 0.07947516441345215, 0.14841237664222717, 0.018024280667304993, 0.15580038726329803, 0.005973838269710541, 0.048502612859010696, 0.015309898182749748, 0.00839347206056118, 0.005290187429636717, 0.0006786889280192554, 0.00036692863795906305, 0.001996611477807164, 0.0021879449486732483, 0.15544185042381287], [0.006517992354929447, 0.01503735315054655, 0.011795124039053917, 0.06958921253681183, 0.010494065470993519, 0.014448227360844612, 0.0073721446096897125, 0.42020121216773987, 0.0011970388004556298, 0.01808892749249935, 0.0028812261298298836, 0.0006999720353633165, 0.0008341279462911189, 0.00015120873285923153, 0.0002739172778092325, 0.00025141696096397936, 0.001245158608071506, 0.4189216196537018], [0.017199980095028877, 0.05242743715643883, 0.016178138554096222, 0.017849894240498543, 0.11597107350826263, 0.23306065797805786, 0.02788013033568859, 0.21507790684700012, 0.059082791209220886, 0.008827793411910534, 0.0020774814765900373, 0.00569932721555233, 0.0031790712382644415, 0.002672523492947221, 0.0006953039555810392, 0.005104631185531616, 0.0024419038090854883, 0.2145739644765854], [0.022663403302431107, 0.09423581510782242, 0.011933538131415844, 0.025371195748448372, 0.036742087453603745, 0.09105056524276733, 0.03584037348628044, 0.3279011845588684, 0.013286401517689228, 0.006336212158203125, 0.0006458954885601997, 0.0007526634144596756, 0.0008566429605707526, 0.0016877142479643226, 0.0004532715247478336, 0.0021566348150372505, 0.001283685676753521, 0.3268027603626251], [0.014466652646660805, 0.0628577321767807, 0.08449120074510574, 0.034680675715208054, 0.013771231286227703, 0.02768353931605816, 0.05851711705327034, 0.3404473662376404, 0.010729695670306683, 0.0020641270093619823, 0.0012096842983737588, 0.0010074954479932785, 0.0017860651714727283, 0.0026419665664434433, 0.00027463643345981836, 0.0010804968187585473, 0.0028158489149063826, 0.3394745886325836], [0.04719780758023262, 0.06416289508342743, 0.015065028332173824, 0.0346592478454113, 0.038530461490154266, 0.04415621981024742, 0.004981682635843754, 0.3373880386352539, 0.0333116240799427, 0.012397529557347298, 0.003277316689491272, 0.0055904630571603775, 0.008871277794241905, 0.005565514322370291, 0.0041361600160598755, 0.0024820545222610235, 0.0017963215941563249, 0.3364304006099701], [0.003977834712713957, 0.005555904470384121, 0.005562560632824898, 0.0026425474788993597, 0.000830473902169615, 0.0009189628763124347, 0.0009624881786294281, 0.48475316166877747, 0.0019110464490950108, 0.0016900468617677689, 0.0005261797341518104, 0.000761670817155391, 0.0016915706219151616, 0.0018893495434895158, 0.0009432205115444958, 0.0006120357429608703, 0.0017173824599012733, 0.4830535054206848], [0.008547679521143436, 0.0050874752923846245, 0.0028058760799467564, 0.004711025860160589, 0.006714242976158857, 0.0049107871018350124, 0.0014047501608729362, 0.1992693543434143, 0.05343379080295563, 0.05375159531831741, 0.1455473005771637, 0.24148890376091003, 0.028677603229880333, 0.01581394113600254, 0.007281014695763588, 0.009228336624801159, 0.012524975463747978, 0.19880136847496033], [0.005211012437939644, 0.002522660419344902, 0.0016416667494922876, 0.00600874237716198, 0.004272017162293196, 0.0036081864964216948, 0.0010914092417806387, 0.3906038999557495, 0.030578913167119026, 0.041850198060274124, 0.05193469673395157, 0.02959868125617504, 0.02576533891260624, 0.0030033441726118326, 0.0013612386537715793, 0.0044104051776230335, 0.007058152463287115, 0.3894794285297394], [0.0029769742395728827, 0.0012462736340239644, 0.0010856614680960774, 0.00035836908500641584, 0.001115992316044867, 0.0008067512535490096, 0.0007839143509045243, 0.217646986246109, 0.014126552268862724, 0.011490218341350555, 0.016015712171792984, 0.13360291719436646, 0.24396120011806488, 0.038476888090372086, 0.017386622726917267, 0.05769116058945656, 0.02413799799978733, 0.21708977222442627], [0.002314712619408965, 0.0007844743086025119, 0.002046556444838643, 0.00046072996337898076, 0.0007348694489337504, 0.0005643048789352179, 0.0007496958714909852, 0.29964709281921387, 0.005336620844900608, 0.008091171272099018, 0.01053590513765812, 0.01376333273947239, 0.19708824157714844, 0.06207354739308357, 0.04392227530479431, 0.0278185848146677, 0.025268027558922768, 0.2987998425960541], [0.0029419888742268085, 0.00045940157724544406, 0.0005252252449281514, 7.659653783775866e-05, 0.00038794829742982984, 0.0007882662466727197, 0.0006106296787038445, 0.29213738441467285, 0.0015560262836515903, 0.0075152041390538216, 0.018076160922646523, 0.04176067188382149, 0.031898826360702515, 0.09939910471439362, 0.15277168154716492, 0.03066375106573105, 0.027222316712141037, 0.2912088930606842], [0.0039913044311106205, 0.00042892174678854644, 0.0012108589289709926, 0.00044116118806414306, 0.00018662710499484092, 0.0008315884042531252, 0.0009984767530113459, 0.4288358986377716, 0.0015607725363224745, 0.003128163982182741, 0.00945806223899126, 0.011290328577160835, 0.01999489963054657, 0.017464537173509598, 0.012033498845994473, 0.03436749055981636, 0.026466820389032364, 0.4273107051849365], [0.0026535079814493656, 0.0006040373118594289, 0.00040625856490805745, 5.997822881909087e-05, 6.933948316145688e-05, 0.00032080267556011677, 0.00030359072843566537, 0.2825179696083069, 0.0033157861325889826, 0.003186516696587205, 0.00253898068331182, 0.008568746037781239, 0.03518863394856453, 0.06300302594900131, 0.019185004755854607, 0.28569284081459045, 0.010861153714358807, 0.2815238833427429], [0.002375608077272773, 0.0018199641490355134, 0.009827176108956337, 0.0006454618996940553, 0.00015495576371904463, 0.0009838881669566035, 0.001499229110777378, 0.3982278108596802, 0.005417344160377979, 0.0038598368410021067, 0.0043493956327438354, 0.003291171509772539, 0.018801305443048477, 0.12710264325141907, 0.0038877923507243395, 0.005737483035773039, 0.015078090131282806, 0.3969409167766571], [0.014531392604112625, 0.0030100326985120773, 0.0016052304999902844, 0.0024385114666074514, 0.0030244369991123676, 0.0027870540507137775, 0.0006754342466592789, 0.4400123357772827, 0.033053454011678696, 0.01489318162202835, 0.0026591503992676735, 0.008047149516642094, 0.008761858567595482, 0.010106958448886871, 0.005096636712551117, 0.004121484234929085, 0.006669244263321161, 0.4385063350200653], [0.003978085704147816, 0.005556278862059116, 0.005563670769333839, 0.002641403814777732, 0.0008302736678160727, 0.000918912177439779, 0.0009628863772377372, 0.4847564697265625, 0.0019095365423709154, 0.0016884086653590202, 0.0005256744916550815, 0.0007612362969666719, 0.0016901696799322963, 0.001888515893369913, 0.000942581333220005, 0.0006116615259088576, 0.0017171698855236173, 0.48305702209472656]], [[0.03606101870536804, 0.08949510008096695, 0.07494383305311203, 0.13559673726558685, 0.05311950296163559, 0.11841189116239548, 0.08749297261238098, 0.08260536193847656, 0.02526092529296875, 0.012262089177966118, 0.04731687903404236, 0.026043780148029327, 0.023767346516251564, 0.0126188350841403, 0.03768163174390793, 0.0180481169372797, 0.03677866980433464, 0.0824953094124794], [0.083663709461689, 0.033820465207099915, 0.023604964837431908, 0.01205995213240385, 0.033834706991910934, 0.01676921360194683, 0.09057426452636719, 0.10044951736927032, 0.05949622765183449, 0.07052209228277206, 0.03069990500807762, 0.008608034811913967, 0.08392363041639328, 0.007293378934264183, 0.07800597697496414, 0.012164906598627567, 0.15417388081550598, 0.10033507645130157], [0.04019042104482651, 0.01575823314487934, 0.02934880554676056, 0.017999939620494843, 0.0065142922103405, 0.01585359312593937, 0.04800806939601898, 0.2893596589565277, 0.028379620984196663, 0.031938083469867706, 0.0059600332751870155, 0.0061975750140845776, 0.008991120383143425, 0.02929062582552433, 0.015440970659255981, 0.02946828305721283, 0.09253872185945511, 0.2887619435787201], [0.1299571841955185, 0.01428306382149458, 0.012106514535844326, 0.007367556914687157, 0.011742956936359406, 0.01589917205274105, 0.0638025626540184, 0.0506703145802021, 0.026348913088440895, 0.014357144013047218, 0.3640223443508148, 0.00391432736068964, 0.04661005735397339, 0.0029050069861114025, 0.013318438082933426, 0.009353396482765675, 0.16273869574069977, 0.05060227960348129], [0.10853829979896545, 0.022909652441740036, 0.009754595346748829, 0.03021569736301899, 0.003897478338330984, 0.03189052268862724, 0.06206204742193222, 0.17089979350566864, 0.11071822047233582, 0.05382443591952324, 0.046890344470739365, 0.04104453697800636, 0.052649401128292084, 0.0008259390597231686, 0.007976992055773735, 0.0014255223795771599, 0.07383552193641663, 0.17064104974269867], [0.07293227314949036, 0.015202508307993412, 0.0556306429207325, 0.03797628730535507, 0.0568845197558403, 0.002504420932382345, 0.034256741404533386, 0.17782019078731537, 0.023145558312535286, 0.04751567915081978, 0.047926392406225204, 0.06446604430675507, 0.033436309546232224, 0.0310370996594429, 0.028790103271603584, 0.027176976203918457, 0.06580058485269547, 0.17749756574630737], [0.25251707434654236, 0.025523319840431213, 0.024737577885389328, 0.011961512267589569, 0.020844941958785057, 0.019119223579764366, 0.10039878636598587, 0.12869593501091003, 0.06401525437831879, 0.028210103511810303, 0.016731707379221916, 0.03310725837945938, 0.004761492367833853, 0.00044988628360442817, 0.002113306662067771, 0.00048010298633016646, 0.13780049979686737, 0.12853196263313293], [0.0040365285240113735, 0.001644961885176599, 0.011094813235104084, 0.0017161014256998897, 0.0011876916978508234, 0.0025092230644077063, 0.004036847967654467, 0.4760563373565674, 0.003982375841587782, 0.0028088099788874388, 0.002017577411606908, 0.0028325654566287994, 0.0009720368543639779, 0.0022412266116589308, 0.0013358078431338072, 0.0014394813915714622, 0.005734093952924013, 0.47435349225997925], [0.08207438141107559, 0.06348273903131485, 0.010624637827277184, 0.10427745431661606, 0.062317315489053726, 0.043228067457675934, 0.1370605230331421, 0.17347107827663422, 0.005753165110945702, 0.005970626603811979, 0.018564211204648018, 0.021960755810141563, 0.005412404891103506, 0.003407047362998128, 0.004443775862455368, 0.0035975368227809668, 0.08129305392503738, 0.1730612814426422], [0.0641620010137558, 0.10870026797056198, 0.11324746161699295, 0.04215479642152786, 0.03999941423535347, 0.0506444089114666, 0.08833688497543335, 0.13866211473941803, 0.030778737738728523, 0.030087878927588463, 0.004413197282701731, 0.0054748267866671085, 0.02396128512918949, 0.008542345836758614, 0.038560088723897934, 0.0052892412059009075, 0.06856083124876022, 0.1384240984916687], [0.0689290463924408, 0.01901511289179325, 0.015240401029586792, 0.5261639356613159, 0.03831062838435173, 0.037125471979379654, 0.06929606199264526, 0.06961280107498169, 0.006727441214025021, 0.0048691825941205025, 0.0006996676092967391, 0.0032434077002108097, 0.004922997206449509, 0.0020354955922812223, 0.010939443483948708, 0.0043568117544054985, 0.049026474356651306, 0.069485604763031], [0.15737199783325195, 0.018242565914988518, 0.02009078860282898, 0.03252120316028595, 0.050803255289793015, 0.02703992836177349, 0.10573256015777588, 0.1744561493396759, 0.015299107879400253, 0.013381531462073326, 0.023346075788140297, 0.001703984453342855, 0.03649614751338959, 0.0026370957493782043, 0.009457103908061981, 0.005074932239949703, 0.1321844607591629, 0.17416109144687653], [0.03928672522306442, 0.014188544824719429, 0.024722184985876083, 0.08560159057378769, 0.029580652713775635, 0.07070209085941315, 0.045435503125190735, 0.25605037808418274, 0.026690611615777016, 0.006712325848639011, 0.00999282207340002, 0.009331176057457924, 0.002077109646052122, 0.009760494343936443, 0.0264589823782444, 0.022159915417432785, 0.06581781059503555, 0.25543099641799927], [0.025913238525390625, 0.008334618993103504, 0.07405028492212296, 0.004716706462204456, 0.0007081185467541218, 0.07147478312253952, 0.016568074002861977, 0.3555847108364105, 0.014784793369472027, 0.0053877984173595905, 0.004488660953938961, 0.007198264356702566, 0.016505587846040726, 0.0043135941959917545, 0.013804879039525986, 0.003192536300048232, 0.018351880833506584, 0.3546214997768402], [0.05609684810042381, 0.028787540271878242, 0.0657448098063469, 0.015621067024767399, 0.002135538263246417, 0.05590019002556801, 0.025199810042977333, 0.2536788582801819, 0.02443721331655979, 0.08593947440385818, 0.019952695816755295, 0.015718115493655205, 0.04078742489218712, 0.004590537399053574, 0.004183133132755756, 0.006886712275445461, 0.04126155748963356, 0.253078430891037], [0.045720793306827545, 0.009310035035014153, 0.0692824125289917, 0.0069668833166360855, 0.0005668723024427891, 0.03729478269815445, 0.0160320196300745, 0.3532688617706299, 0.029626915231347084, 0.010792290791869164, 0.005473826080560684, 0.007705858908593655, 0.023050354793667793, 0.002307979157194495, 0.006283333525061607, 0.001182269654236734, 0.022737938910722733, 0.3523966073989868], [0.20974703133106232, 0.013524588197469711, 0.020626211538910866, 0.011559596285223961, 0.012173586525022984, 0.014711779542267323, 0.08431898057460785, 0.2230524718761444, 0.04132255166769028, 0.012657992541790009, 0.00985614862293005, 0.021917618811130524, 0.004089022986590862, 0.0006657966296188533, 0.002074006712064147, 0.0005290719564072788, 0.09452180564403534, 0.22265169024467468], [0.004038936458528042, 0.0016445954097434878, 0.01109329890459776, 0.0017164956079795957, 0.001188345835544169, 0.0025088193360716105, 0.004038874991238117, 0.4760555922985077, 0.003982725087553263, 0.00280861952342093, 0.0020174155943095684, 0.002832204569131136, 0.0009715131600387394, 0.0022398962173610926, 0.0013357090065255761, 0.0014385719550773501, 0.005735708866268396, 0.47435274720191956]], [[0.005342738702893257, 0.0008327391115017235, 0.0018323834519833326, 0.0014597921399399638, 0.00034648424480110407, 0.0010376195423305035, 0.0006421722355298698, 0.35099005699157715, 0.004922098014503717, 0.17370222508907318, 0.004308400209993124, 0.003177179954946041, 0.01694466546177864, 0.01143562886863947, 0.020423706620931625, 0.022901447489857674, 0.0298934206366539, 0.3498072624206543], [0.0028326029423624277, 0.028331927955150604, 0.10543349385261536, 0.02885887213051319, 0.019304130226373672, 0.09553549438714981, 0.006470999680459499, 0.34420135617256165, 0.0011639773147180676, 0.0183520819991827, 0.0007175643113441765, 0.0007051390712149441, 0.0006662390660494566, 0.00021972066315356642, 0.001089753000997007, 0.0008563772425986826, 0.002099091187119484, 0.3431612253189087], [0.0010641493136063218, 0.003867071820423007, 0.042643457651138306, 0.012881748378276825, 0.0067345816642045975, 0.03817727789282799, 0.0011501590488478541, 0.44485411047935486, 0.0009681519004516304, 0.0012985313078388572, 0.00047044220264069736, 0.00024389538157265633, 0.00025121925864368677, 0.0004897757899016142, 0.0004816638247575611, 0.0005973625229671597, 0.00028804625617340207, 0.4435383677482605], [0.006218090187758207, 0.04683905467391014, 0.043608587235212326, 0.03141339123249054, 0.019138284027576447, 0.08687731623649597, 0.02376135252416134, 0.35594287514686584, 0.004297773353755474, 0.013607258908450603, 0.0010189791209995747, 0.0005603883182629943, 0.0015241217333823442, 0.0005230277311056852, 0.0016300431452691555, 0.0016660741530358791, 0.006535147782415152, 0.3548383116722107], [0.0018188904505223036, 0.020754484459757805, 0.030051834881305695, 0.03454875946044922, 0.01805795542895794, 0.12443803250789642, 0.007529524154961109, 0.3783200681209564, 0.0014087717281654477, 0.0030653993599116802, 0.0003032598760910332, 0.00017718934395816177, 0.0003456522535998374, 0.00018733103934209794, 0.00027827933081425726, 0.0005603159079328179, 0.0011642429744824767, 0.3769899904727936], [0.0015911106020212173, 0.012635596096515656, 0.023168524727225304, 0.03313648700714111, 0.017086632549762726, 0.03993156924843788, 0.002577519277110696, 0.43385010957717896, 0.0006732209003530443, 0.0009303135448135436, 0.0003697180363815278, 0.00017588162154424936, 0.0004648033354897052, 0.0003750774485524744, 0.00020504182612057775, 0.00018459907732903957, 0.00028972988366149366, 0.4323540925979614], [0.0048108212649822235, 0.03527335822582245, 0.013639784418046474, 0.02313554659485817, 0.023971950635313988, 0.04059118032455444, 0.016002042219042778, 0.4146815538406372, 0.002555028535425663, 0.003346323035657406, 0.0010075914906337857, 0.0007240216946229339, 0.001250875648111105, 0.00035730074159801006, 0.003018635092303157, 0.00017074459174182266, 0.0021749879233539104, 0.41328829526901245], [0.006026057060807943, 0.003859426360577345, 0.0030079984571784735, 0.002106456086039543, 0.001308905309997499, 0.0016901727067306638, 0.003772065741941333, 0.4830738306045532, 0.0019198991358280182, 0.0031192831229418516, 0.0009711642051115632, 0.0008612941019237041, 0.0007349099032580853, 0.0009224752429872751, 0.000768362486269325, 0.0002878007653634995, 0.004347856622189283, 0.4812219440937042], [0.003134517464786768, 0.0008782708900980651, 0.0008973946678452194, 0.0019245740259066224, 0.00208502309396863, 0.0039850082248449326, 0.0005990003701299429, 0.45363178849220276, 0.00934865977615118, 0.024801703169941902, 0.006452712696045637, 0.006405132822692394, 0.016003701835870743, 0.0014642454916611314, 0.005323823541402817, 0.0035501618403941393, 0.0074846819043159485, 0.45202961564064026], [0.0064382292330265045, 0.003342734184116125, 0.07510248571634293, 0.0018068444915115833, 0.000455703295301646, 0.003407792653888464, 0.0005699527100659907, 0.2738252878189087, 0.005071330349892378, 0.26748454570770264, 0.018403032794594765, 0.008001279085874557, 0.007455812767148018, 0.006209763698279858, 0.010195833630859852, 0.02924160100519657, 0.010016021318733692, 0.2729717791080475], [0.0058145904913544655, 0.00127401202917099, 0.002513802144676447, 0.0015933908289298415, 0.0004470737767405808, 0.0016577208880335093, 0.0001425123045919463, 0.23309558629989624, 0.00421247910708189, 0.04484329745173454, 0.030700497329235077, 0.018515290692448616, 0.2527672052383423, 0.008820702321827412, 0.08146935701370239, 0.07653206586837769, 0.003177572740241885, 0.2324228733778], [0.003437079256400466, 0.000490710895974189, 0.001387723837979138, 0.0009962092153728008, 0.0006339536048471928, 0.0013982804957777262, 0.00012918193533550948, 0.31428343057632446, 0.004292083904147148, 0.015419801697134972, 0.033139102160930634, 0.01881001517176628, 0.08976631611585617, 0.01025454606860876, 0.13403473794460297, 0.05499676987528801, 0.003244290128350258, 0.3132857382297516], [0.0029332321137189865, 0.000190581486094743, 0.00010476255556568503, 0.00021373578056227416, 6.21478829998523e-05, 0.0006858205306343734, 3.7251247704261914e-05, 0.175265833735466, 0.0009819148108363152, 0.0017120784614235163, 0.005972342565655708, 0.003658887231722474, 0.009103458374738693, 0.05354408547282219, 0.49699872732162476, 0.07299672812223434, 0.0008905564318411052, 0.1746477484703064], [0.0014424169203266501, 0.00010296506661688909, 0.005638367962092161, 0.0003063226176891476, 6.613902951357886e-05, 0.0016708457842469215, 3.783807551371865e-05, 0.4513896405696869, 0.00055875931866467, 0.0022046437952667475, 0.0020293868146836758, 0.0015407283790409565, 0.0047771502286195755, 0.033551499247550964, 0.01100802794098854, 0.03318266198039055, 0.0009793577482923865, 0.44951319694519043], [0.0029605606105178595, 0.0003008602652698755, 0.0007003972423262894, 0.0002496571687515825, 0.00018017354886978865, 0.001057496527209878, 5.305671948008239e-05, 0.25440719723701477, 0.0005639658775180578, 0.008244034834206104, 0.008044741116464138, 0.007622423116117716, 0.03019876964390278, 0.04992205277085304, 0.08673994243144989, 0.29307806491851807, 0.002253306098282337, 0.2534233331680298], [0.0048241023905575275, 0.0005655200220644474, 0.009161769412457943, 0.000510299694724381, 4.605759386322461e-05, 0.0013884685467928648, 0.00010143523832084611, 0.30232328176498413, 0.002620236249640584, 0.0033084817696362734, 0.003746350761502981, 0.0029312600381672382, 0.018763937056064606, 0.3264048397541046, 0.009301764890551567, 0.011711958795785904, 0.001102664740756154, 0.30118757486343384], [0.0035831304267048836, 0.0012364062713459134, 0.0010387806687504053, 0.00095287652220577, 0.0007755320984870195, 0.0010151499882340431, 0.0005666162469424307, 0.4798605740070343, 0.004832458682358265, 0.0055599091574549675, 0.0027786768041551113, 0.0022757709957659245, 0.0030314065515995026, 0.001710474956780672, 0.0067117707803845406, 0.0006101815379224718, 0.005643466953188181, 0.4778168201446533], [0.006022482644766569, 0.0038569977041333914, 0.0030056952964514494, 0.0021048574708402157, 0.0013084347592666745, 0.0016885066870599985, 0.003773454111069441, 0.4830857515335083, 0.0019184319535270333, 0.003115138504654169, 0.0009701749659143388, 0.0008604495669715106, 0.0007337420829571784, 0.0009208354167640209, 0.0007669619517400861, 0.0002873220364563167, 0.004347118083387613, 0.4812335968017578]], [[0.002842508489266038, 0.0003871527733281255, 0.00030783272814005613, 0.00540468655526638, 0.00042273913277313113, 0.0017834445461630821, 0.00032196109532378614, 0.45496055483818054, 0.0438765287399292, 0.006740847136825323, 0.012211283668875694, 0.003066675504669547, 0.0042096031829714775, 0.0006524968193843961, 0.0005191072123125196, 0.0011000047670677304, 0.007816938683390617, 0.45337551832199097], [0.0016422347398474813, 0.013052892871201038, 0.012060738168656826, 0.17514581978321075, 0.0789961889386177, 0.08156123757362366, 0.012275122106075287, 0.3054814338684082, 0.006163210608065128, 0.0014602738665416837, 0.0025892897974699736, 0.0010476327734068036, 0.0007085021934472024, 0.0002503802243154496, 0.0008976226090453565, 0.0007847992819733918, 0.0011939003597944975, 0.3046887516975403], [0.01239930372685194, 0.054147541522979736, 0.013065020553767681, 0.032268982380628586, 0.027186313644051552, 0.023890387266874313, 0.027656668797135353, 0.38797229528427124, 0.0014926263829693198, 0.00904793106019497, 0.004025990609079599, 0.002362632192671299, 0.0019890896510332823, 0.0009167797397822142, 0.006501912139356136, 0.002525397576391697, 0.005472976714372635, 0.3870781362056732], [0.0022046086378395557, 0.036312174052000046, 0.013918840326368809, 0.02807186357676983, 0.07292350381612778, 0.04182276502251625, 0.009926175698637962, 0.39403384923934937, 0.0022340980358421803, 0.0014389267889782786, 0.0005362796364352107, 0.0009234851459041238, 0.00019060037448070943, 0.00024147293879650533, 0.0001721180451568216, 0.00038132708868943155, 0.001779224956408143, 0.3928886353969574], [0.0019822302274405956, 0.028688950464129448, 0.008171462453901768, 0.0972062349319458, 0.0488918162882328, 0.011080804280936718, 0.006391496397554874, 0.39575159549713135, 0.0015469436766579747, 0.0009448966011404991, 0.0015457196859642863, 0.0008556463290005922, 0.00024968560319393873, 9.019826393341646e-05, 8.705898653715849e-05, 0.00027501481235958636, 0.0016832549590617418, 0.39455699920654297], [0.001694440608844161, 0.05265922471880913, 0.02099491097033024, 0.08774179965257645, 0.0419779010117054, 0.012338031083345413, 0.0087070157751441, 0.3827889561653137, 0.0023553946521133184, 0.001494178781285882, 0.0014595481334254146, 0.0007596117211505771, 0.00022925449593458325, 0.00041515417979098856, 0.00035645178286358714, 0.00026377508766017854, 0.001914451364427805, 0.38184991478919983], [0.0009890012443065643, 0.008465934544801712, 0.0070349895395338535, 0.06529724597930908, 0.012180539779365063, 0.011635905131697655, 0.0039000450633466244, 0.4439033269882202, 0.0004345540073700249, 0.0008386578410863876, 0.0009330385946668684, 0.00042945524910464883, 0.00014938692038413137, 0.00012353139754850417, 0.00012097202125005424, 0.00019166400306858122, 0.0009274513577111065, 0.4424443542957306], [0.041569266468286514, 0.013485359027981758, 0.012813558802008629, 0.007852211594581604, 0.003250470384955406, 0.0024741131346672773, 0.045719314366579056, 0.3923056423664093, 0.0015940556768327951, 0.009152294136583805, 0.00275246798992157, 0.001801670528948307, 0.004597566090524197, 0.0025006167124956846, 0.0019903057254850864, 0.00289619411341846, 0.0617988258600235, 0.3914460837841034], [0.005349173676222563, 0.002176536712795496, 0.0012248916318640113, 0.016679195687174797, 0.002657540375366807, 0.004845778923481703, 0.0014487180160358548, 0.4596449136734009, 0.011263390071690083, 0.008792025037109852, 0.009874576702713966, 0.00453320425003767, 0.0035735222045332193, 0.0011500889668241143, 0.0006919506704434752, 0.0009791188640519977, 0.006935891229659319, 0.45817941427230835], [0.014693407341837883, 0.001597164198756218, 0.001288830884732306, 0.037301596254110336, 0.01445693802088499, 0.00734800286591053, 0.003803253173828125, 0.3355780243873596, 0.07830691337585449, 0.01503521017730236, 0.10554087907075882, 0.028560658916831017, 0.0028389955405145884, 0.0018418414983898401, 0.0029630023054778576, 0.0028074162546545267, 0.011369839310646057, 0.33466798067092896], [0.00461615389212966, 0.0017365306848660111, 0.000815345614682883, 0.009847737848758698, 0.0014813357265666127, 0.0019426848739385605, 0.00437456090003252, 0.38693955540657043, 0.07295238226652145, 0.008079354651272297, 0.04986429214477539, 0.03474828228354454, 0.013486622832715511, 0.003134452272206545, 0.0012556870933622122, 0.0032513327896595, 0.015633942559361458, 0.3858397901058197], [0.004313070792704821, 0.0011175806866958737, 0.0005794645985588431, 0.0061029102653265, 0.0004998352378606796, 0.0019018205348402262, 0.0063989004120230675, 0.4050646722316742, 0.022344764322042465, 0.006778544746339321, 0.08747932314872742, 0.01613812893629074, 0.009672625921666622, 0.002920332830399275, 0.0010425643995404243, 0.0034910417161881924, 0.020273223519325256, 0.4038812518119812], [0.01100065279752016, 0.0005292267305776477, 0.0002615625853650272, 0.001751475501805544, 0.0002665387582965195, 0.0009145631338469684, 0.0033527652267366648, 0.3227202296257019, 0.0066073122434318066, 0.019017795100808144, 0.18662896752357483, 0.05702756345272064, 0.036670442670583725, 0.0035130109172314405, 0.0024515450932085514, 0.008129727095365524, 0.017351461574435234, 0.3218051493167877], [0.006072263233363628, 0.0008781563374213874, 0.0009844353189691901, 0.0013316258555278182, 0.00020500570826698095, 0.0014590772334486246, 0.001918976427987218, 0.3170277178287506, 0.003044040407985449, 0.007644332014024258, 0.13054578006267548, 0.03854767605662346, 0.036933235824108124, 0.03441934287548065, 0.02175106294453144, 0.06508928537368774, 0.016098352149128914, 0.31604963541030884], [0.0033998042345046997, 0.0002743174263741821, 0.0003045121266040951, 0.000417733215726912, 0.0001289980864385143, 0.0007063528173603117, 0.0005669575184583664, 0.18107225000858307, 0.0022219959646463394, 0.004255662206560373, 0.108763188123703, 0.07983893156051636, 0.3278147578239441, 0.05800849571824074, 0.010831834748387337, 0.03604169189929962, 0.0049820258282125, 0.18037043511867523], [0.003059870097786188, 0.0006750889006070793, 0.0007660695118829608, 0.0013329912908375263, 7.621166878379881e-05, 0.0006868542404845357, 0.0011596271069720387, 0.338310182094574, 0.003964389208704233, 0.010165702551603317, 0.0955643355846405, 0.02567995712161064, 0.028520602732896805, 0.10870577394962311, 0.01205600704997778, 0.022622380405664444, 0.00936112180352211, 0.3372928202152252], [0.0012177533935755491, 0.0005266949301585555, 0.001248212531208992, 0.00286910985596478, 0.000501281232573092, 0.0004677773977164179, 0.0005299672484397888, 0.4880906939506531, 0.000855723163112998, 0.002963053295388818, 0.0028677203226834536, 0.0016119416104629636, 0.001027510385029018, 0.0011867884313687682, 0.0010374820558354259, 0.0014271446270868182, 0.005194127559661865, 0.4863770306110382], [0.0415513701736927, 0.013486068695783615, 0.012812448665499687, 0.007852323353290558, 0.0032505581621080637, 0.0024736407212913036, 0.045730531215667725, 0.3923321068286896, 0.0015924293547868729, 0.009144180454313755, 0.002749734790995717, 0.0018000109121203423, 0.0045959013514220715, 0.0024994693230837584, 0.0019889886025339365, 0.0028950569685548544, 0.06177273392677307, 0.3914724886417389]], [[0.038364097476005554, 0.02105657383799553, 0.06236020103096962, 0.13914130628108978, 0.18732789158821106, 0.05078530311584473, 0.03737104684114456, 0.02744271047413349, 0.04166463017463684, 0.04670598357915878, 0.03585002198815346, 0.1106080412864685, 0.03899262472987175, 0.021112915128469467, 0.019842226058244705, 0.017035484313964844, 0.07691506296396255, 0.02742389775812626], [0.0935581773519516, 0.012045607902109623, 0.0786166712641716, 0.03265126049518585, 0.033748023211956024, 0.035035014152526855, 0.0942964255809784, 0.1957671195268631, 0.030948899686336517, 0.010034963488578796, 0.015083333477377892, 0.006623496301472187, 0.022696100175380707, 0.031967293471097946, 0.017387470230460167, 0.020989539101719856, 0.07297488301992416, 0.19557568430900574], [0.05030015856027603, 0.030726823955774307, 0.01813807338476181, 0.025964198634028435, 0.021160094067454338, 0.07496895641088486, 0.06030682474374771, 0.2645462155342102, 0.010897800326347351, 0.010438445024192333, 0.026369484141469002, 0.009372142143547535, 0.005771236028522253, 0.043920572847127914, 0.019766973331570625, 0.017604706808924675, 0.045521412044763565, 0.26422590017318726], [0.10687870532274246, 0.024347318336367607, 0.17167021334171295, 0.01649528555572033, 0.013915551826357841, 0.01186109147965908, 0.07330133765935898, 0.09227310866117477, 0.021123006939888, 0.1508999913930893, 0.038744352757930756, 0.0338447205722332, 0.027400042861700058, 0.021953586488962173, 0.008721612393856049, 0.02121797949075699, 0.07315724343061447, 0.09219487756490707], [0.1694689244031906, 0.047488149255514145, 0.12041694670915604, 0.03018302656710148, 0.0020658194553107023, 0.012760958634316921, 0.09405370056629181, 0.15798626840114594, 0.06290162354707718, 0.035711225122213364, 0.00579481665045023, 0.007700122892856598, 0.007132720667868853, 0.007458357606083155, 0.005292635876685381, 0.006097280420362949, 0.06969097256660461, 0.15779638290405273], [0.0762961357831955, 0.02817871980369091, 0.060499418526887894, 0.055355504155159, 0.05941377207636833, 0.009491919539868832, 0.05643150582909584, 0.21811915934085846, 0.008893512189388275, 0.01880587637424469, 0.014822122640907764, 0.01751752197742462, 0.02211296372115612, 0.04739682003855705, 0.019052211195230484, 0.03164531663060188, 0.03800871968269348, 0.21795876324176788], [0.06162238121032715, 0.04216615855693817, 0.1718829870223999, 0.07736942917108536, 0.0832357332110405, 0.018288731575012207, 0.047932613641023636, 0.0884319394826889, 0.032978806644678116, 0.056822702288627625, 0.02589183859527111, 0.06422702223062515, 0.03607393056154251, 0.007253945339471102, 0.008028795942664146, 0.011000731028616428, 0.07845429331064224, 0.08833811432123184], [0.08246062695980072, 0.12615595757961273, 0.07161033153533936, 0.05607972666621208, 0.023169638589024544, 0.028344761580228806, 0.05291827768087387, 0.05891838297247887, 0.09772708266973495, 0.10019413381814957, 0.06260319799184799, 0.03056594356894493, 0.042576856911182404, 0.02183537743985653, 0.020322933793067932, 0.010711271315813065, 0.05496832728385925, 0.058837153017520905], [0.14174774289131165, 0.025840291753411293, 0.03406619280576706, 0.0726933628320694, 0.07498478144407272, 0.013267286121845245, 0.02099902741611004, 0.1385275274515152, 0.008797104470431805, 0.06336234509944916, 0.02547760121524334, 0.10361161082983017, 0.019129019230604172, 0.025883255526423454, 0.015227183699607849, 0.02413266710937023, 0.053938865661621094, 0.1383141130208969], [0.3109875023365021, 0.0116390036419034, 0.03976275399327278, 0.02204963192343712, 0.027463223785161972, 0.040019161999225616, 0.0666126012802124, 0.1194990873336792, 0.026467427611351013, 0.003220060607418418, 0.018416352570056915, 0.003954046871513128, 0.025666816160082817, 0.02930239588022232, 0.054204680025577545, 0.019481973722577095, 0.06193210929632187, 0.11932114511728287], [0.24860066175460815, 0.0036703383084386587, 0.03026353381574154, 0.2950461506843567, 0.04788254201412201, 0.01657235249876976, 0.035273484885692596, 0.1036103367805481, 0.014351794496178627, 0.0039404029957950115, 0.00859462097287178, 0.012440459802746773, 0.00782778300344944, 0.0076140291057527065, 0.012855391949415207, 0.010068521834909916, 0.037969496101140976, 0.10341812670230865], [0.5035139918327332, 0.000724322977475822, 0.01775011420249939, 0.020144538953900337, 0.021684696897864342, 0.00448654918000102, 0.09177280217409134, 0.057670027017593384, 0.04533408209681511, 0.0018150252290070057, 0.013632982969284058, 0.0018165924120694399, 0.009023411199450493, 0.009391700848937035, 0.015187986195087433, 0.020319703966379166, 0.10813608020544052, 0.05759541317820549], [0.14527001976966858, 0.007272873539477587, 0.024769598618149757, 0.07092174887657166, 0.12326041609048843, 0.046444181352853775, 0.02160988561809063, 0.13420581817626953, 0.04578482732176781, 0.002439751522615552, 0.02884085848927498, 0.03501959890127182, 0.008977026678621769, 0.03482341766357422, 0.06313053518533707, 0.028321633115410805, 0.044941481202840805, 0.1339663863182068], [0.12251147627830505, 0.011607415974140167, 0.29927921295166016, 0.012461618520319462, 0.00648482283577323, 0.012044842354953289, 0.0609254315495491, 0.15127260982990265, 0.007542783860117197, 0.013875164091587067, 0.015420489013195038, 0.016142526641488075, 0.008663593791425228, 0.008088011294603348, 0.026900537312030792, 0.0033186650834977627, 0.07248067855834961, 0.15098007023334503], [0.12533120810985565, 0.030376523733139038, 0.04278109595179558, 0.04024532437324524, 0.022133581340312958, 0.034883443266153336, 0.01751905120909214, 0.20573998987674713, 0.02412610687315464, 0.03516119346022606, 0.023382386192679405, 0.06528734415769577, 0.024786069989204407, 0.02361903339624405, 0.01312747411429882, 0.03085874579846859, 0.03520287200808525, 0.2054385095834732], [0.1837671846151352, 0.02891257219016552, 0.06765293329954147, 0.02736399881541729, 0.008937989361584187, 0.016478298231959343, 0.028178969398140907, 0.24070459604263306, 0.007814481854438782, 0.013602955266833305, 0.019526109099388123, 0.014397207647562027, 0.012171718291938305, 0.007353032007813454, 0.03624802082777023, 0.006033566780388355, 0.04068706929683685, 0.24016930162906647], [0.17391909658908844, 0.025566119700670242, 0.06256259232759476, 0.07983090728521347, 0.03271893784403801, 0.009200185537338257, 0.04399177059531212, 0.09679270535707474, 0.06346341967582703, 0.05204279348254204, 0.029659446328878403, 0.06147534400224686, 0.04630379378795624, 0.00561262434348464, 0.006869800854474306, 0.005631415639072657, 0.10772894322872162, 0.09663014113903046], [0.08242890983819962, 0.12618646025657654, 0.07163672149181366, 0.05607518553733826, 0.023160945624113083, 0.02833411656320095, 0.052935585379600525, 0.05898590385913849, 0.09769926220178604, 0.10017500817775726, 0.06257142871618271, 0.030557828024029732, 0.042549289762973785, 0.021813225001096725, 0.020310912281274796, 0.010697301477193832, 0.054977431893348694, 0.05890457332134247]], [[0.014232073910534382, 0.0030244069639593363, 0.0012028607307001948, 0.0015118595911189914, 0.0013457585591822863, 0.00120535958558321, 0.0006394743104465306, 0.09606895595788956, 0.5862753987312317, 0.08486901223659515, 0.023375676944851875, 0.007649652659893036, 0.026008406654000282, 0.017094431445002556, 0.013839018531143665, 0.012525464408099651, 0.013345681130886078, 0.095786452293396], [0.0027835024520754814, 0.04475957900285721, 0.056275274604558945, 0.011399772949516773, 0.008505243808031082, 0.019575422629714012, 0.010077842511236668, 0.4193718433380127, 0.0030976994894444942, 0.0032342246267944574, 0.00032302417093887925, 0.00019161241652909666, 0.00010750670480774716, 0.0001753830147208646, 0.0002450415340717882, 0.0001369220408378169, 0.0015738364309072495, 0.4181661307811737], [0.005553338211029768, 0.025470223277807236, 0.030326660722494125, 0.006135739851742983, 0.0049618082121014595, 0.002709073480218649, 0.004595947451889515, 0.4583224058151245, 0.0017303009517490864, 0.0016364570474252105, 6.58958379062824e-05, 1.1774834092648234e-05, 7.833456038497388e-05, 5.766913454863243e-05, 0.0001956750056706369, 0.00013193723862059414, 0.0011452350299805403, 0.4568715989589691], [0.006314502563327551, 0.1291472166776657, 0.07115254551172256, 0.014485836029052734, 0.008953781798481941, 0.012810316868126392, 0.007977142930030823, 0.36959177255630493, 0.0016955073224380612, 0.0038162656128406525, 0.0006927347858436406, 0.0006165193044580519, 0.00015340583922807127, 0.00024652082356624305, 0.00030115744448266923, 0.00012073272955603898, 0.0034883355256170034, 0.36843588948249817], [0.009548366069793701, 0.14803540706634521, 0.07972562313079834, 0.020936645567417145, 0.008153294213116169, 0.038739584386348724, 0.011814877390861511, 0.3368188440799713, 0.0010969714494422078, 0.0037277520168572664, 0.0010459724580869079, 0.001013226923532784, 0.00011003567487932742, 0.00037009865627624094, 0.00013181318354327232, 8.616485865786672e-05, 0.002781979739665985, 0.335863322019577], [0.006333753000944853, 0.14694055914878845, 0.07304700464010239, 0.03476782888174057, 0.014289761893451214, 0.050288569182157516, 0.011297537945210934, 0.3286292552947998, 0.001558872521854937, 0.0013079604832455516, 0.00035987907904200256, 0.00016147445421665907, 0.0003126984811387956, 0.0002174892433686182, 0.0003276298812124878, 0.00036087213084101677, 0.0019905443768948317, 0.3278083801269531], [0.016908710822463036, 0.1651051789522171, 0.030959125608205795, 0.17479921877384186, 0.20607633888721466, 0.13923019170761108, 0.019471680745482445, 0.10156650841236115, 0.03176029026508331, 0.0031034727580845356, 0.0016741763101890683, 0.0010821280302479863, 0.0008928761235438287, 0.0008811047882772982, 0.001699042972177267, 0.000377645599655807, 0.003077973611652851, 0.10133425891399384], [0.004997182637453079, 0.0058428137563169, 0.003958540502935648, 0.0026310584507882595, 0.0011828989954665303, 0.0026704114861786366, 0.0027434146031737328, 0.48156556487083435, 0.002009354066103697, 0.0024977955035865307, 0.0007810894167050719, 0.0005675291758961976, 0.0007257507531903684, 0.0012396059464663267, 0.0010499291820451617, 0.0008529259939678013, 0.004692518152296543, 0.47999152541160583], [0.04353301599621773, 0.002059685066342354, 0.002411301014944911, 0.0019134529866278172, 0.0013282869476824999, 0.023253509774804115, 0.0013353315880522132, 0.4146895110607147, 0.02240440435707569, 0.010982677340507507, 0.018572432920336723, 0.013521098531782627, 0.007099444977939129, 0.005047848913818598, 0.005049724131822586, 0.00448586605489254, 0.008989660069346428, 0.4133228063583374], [0.16282154619693756, 0.021626736968755722, 0.16986802220344543, 0.013565069064497948, 0.0006209695711731911, 0.0029221095610409975, 0.004791930317878723, 0.24738726019859314, 0.03356879949569702, 0.04477206617593765, 0.01683461107313633, 0.001739483093842864, 0.0020583944860845804, 0.004415503237396479, 0.001230555004440248, 0.0011510655749589205, 0.023915650323033333, 0.24671025574207306], [0.07679063081741333, 0.01646515727043152, 0.027703434228897095, 0.00989726185798645, 0.000755836779717356, 0.00926950667053461, 0.005420221947133541, 0.30644458532333374, 0.012805638834834099, 0.10343103855848312, 0.07441642880439758, 0.012347649782896042, 0.01016076561063528, 0.006299667526036501, 0.005516286473721266, 0.004939740523695946, 0.011692526750266552, 0.3056437075138092], [0.0586792528629303, 0.00797545537352562, 0.007728953845798969, 0.005622033961117268, 0.0011551378993317485, 0.006194650195538998, 0.003537925658747554, 0.38363924622535706, 0.020191174000501633, 0.03510259464383125, 0.04339791461825371, 0.007419108878821135, 0.006643056869506836, 0.006667823530733585, 0.004787210840731859, 0.004991143476217985, 0.013684420846402645, 0.38258299231529236], [0.046703822910785675, 0.0037728692404925823, 0.029347781091928482, 0.0014739494072273374, 0.0001134310441557318, 0.0006832193466834724, 0.0018465510802343488, 0.355971097946167, 0.013757584616541862, 0.13027259707450867, 0.012087692506611347, 0.002053384203463793, 0.011206069029867649, 0.014870770275592804, 0.003348955186083913, 0.005572462920099497, 0.012055238708853722, 0.3548625707626343], [0.02635027840733528, 0.001787533052265644, 0.007751272525638342, 0.0006717712385579944, 0.00010217803355772048, 0.000518410000950098, 0.0015451121143996716, 0.4418589770793915, 0.006871701683849096, 0.019563540816307068, 0.0013468221295624971, 0.0003444541653152555, 0.007991666905581951, 0.01222061738371849, 0.004348756279796362, 0.01814224384725094, 0.008175595663487911, 0.4404090642929077], [0.07476043701171875, 0.004609743598848581, 0.006368848495185375, 0.0010310098296031356, 7.992028986336663e-05, 0.0009822327410802245, 0.004141811281442642, 0.3028593361377716, 0.014321916736662388, 0.07584994286298752, 0.013155653141438961, 0.0051845768466591835, 0.06484092026948929, 0.06855839490890503, 0.01025230810046196, 0.038169339299201965, 0.012892079539597034, 0.30194151401519775], [0.048716362565755844, 0.0031780218705534935, 0.020492836833000183, 0.0008240041206590831, 0.0001798736775526777, 0.0007326488848775625, 0.0032747043296694756, 0.3875483572483063, 0.013022465631365776, 0.08738748729228973, 0.001768380985595286, 0.0007670859340578318, 0.004437396302819252, 0.014170654118061066, 0.002639202866703272, 0.008102373220026493, 0.016446325927972794, 0.3863118290901184], [0.04212776944041252, 0.006840460933744907, 0.0016250385669991374, 0.007115326821804047, 0.00463134003803134, 0.0016010993858799338, 0.0018281318480148911, 0.17217601835727692, 0.38074299693107605, 0.06325235962867737, 0.04291986674070358, 0.023576032370328903, 0.020929545164108276, 0.0124350069090724, 0.022268671542406082, 0.0040178014896810055, 0.02024780958890915, 0.17166481912136078], [0.004996979143470526, 0.00584239698946476, 0.003957288805395365, 0.0026310866232961416, 0.0011829122668132186, 0.002669955138117075, 0.0027432322967797518, 0.48157167434692383, 0.0020085577853024006, 0.0024956318084150553, 0.000780526315793395, 0.0005671198014169931, 0.0007251932984218001, 0.0012391677591949701, 0.0010493288282305002, 0.0008520323317497969, 0.004689530935138464, 0.4799973666667938]], [[0.005711628124117851, 0.001133992220275104, 0.0012095634592697024, 0.0023093465715646744, 0.005231793969869614, 0.002917215693742037, 0.002611172618344426, 0.0844331681728363, 0.3299865126609802, 0.14072147011756897, 0.051547031849622726, 0.024086570367217064, 0.04533419758081436, 0.027395807206630707, 0.07093091309070587, 0.029413113370537758, 0.09071493148803711, 0.08431152999401093], [0.09804148972034454, 0.05119817703962326, 0.027293646708130836, 0.04475631192326546, 0.03501012176275253, 0.11585451662540436, 0.02072889171540737, 0.08314283937215805, 0.046979647129774094, 0.23879306018352509, 0.027169859036803246, 0.013546156696975231, 0.027122559025883675, 0.019079461693763733, 0.029683033004403114, 0.031565334647893906, 0.0070840283297002316, 0.08295101672410965], [0.09631534665822983, 0.025729643180966377, 0.02092141844332218, 0.024907631799578667, 0.008051655255258083, 0.022085070610046387, 0.008287644013762474, 0.1783367544412613, 0.015808766707777977, 0.3106938302516937, 0.014701327309012413, 0.011472174897789955, 0.02099671959877014, 0.01652216911315918, 0.01650831662118435, 0.024223851040005684, 0.006548003759235144, 0.17788967490196228], [0.1089082807302475, 0.04676656424999237, 0.016209406778216362, 0.02896539866924286, 0.03305753320455551, 0.047326862812042236, 0.02355574257671833, 0.1254148781299591, 0.11780853569507599, 0.1485520899295807, 0.017989126965403557, 0.011417538858950138, 0.010954377241432667, 0.040766119956970215, 0.03457627817988396, 0.047773368656635284, 0.014821119606494904, 0.12513674795627594], [0.14484275877475739, 0.017520099878311157, 0.011805081740021706, 0.020923350006341934, 0.026136161759495735, 0.04272771254181862, 0.05927102267742157, 0.22633516788482666, 0.06395088881254196, 0.0233597494661808, 0.022664183750748634, 0.026994628831744194, 0.010044755414128304, 0.019337154924869537, 0.012989680282771587, 0.02188892476260662, 0.023379335179924965, 0.22582930326461792], [0.2141983062028885, 0.011143091134727001, 0.007787181064486504, 0.02162698097527027, 0.022875409573316574, 0.026108521968126297, 0.04875670000910759, 0.19885846972465515, 0.09265115112066269, 0.031034156680107117, 0.01627286709845066, 0.017646528780460358, 0.012896629050374031, 0.01819036714732647, 0.018755311146378517, 0.021712996065616608, 0.021016454324126244, 0.19846880435943604], [0.03559761866927147, 0.06371350586414337, 0.02530844137072563, 0.045746833086013794, 0.06578060984611511, 0.03629040718078613, 0.016729602590203285, 0.3038642704486847, 0.024120638146996498, 0.009401191025972366, 0.008822929114103317, 0.018254106864333153, 0.004427962936460972, 0.0025696437805891037, 0.004592297598719597, 0.003447073744609952, 0.02811008132994175, 0.30322277545928955], [0.021912874653935432, 0.002788187935948372, 0.002688049105927348, 0.0025489525869488716, 0.0009959967574104667, 0.0012483897153288126, 0.0025680074468255043, 0.4737817943096161, 0.003014401998370886, 0.002787474077194929, 0.0014892701292410493, 0.0027074399404227734, 0.0011876225471496582, 0.0008289981633424759, 0.0004992637550458312, 0.0008449025335721672, 0.005743934772908688, 0.47236448526382446], [0.007444963790476322, 0.005131646990776062, 0.0028475159779191017, 0.005636001471430063, 0.009424884803593159, 0.007328802719712257, 0.0015054468531161547, 0.33591318130493164, 0.05640840530395508, 0.034653257578611374, 0.03637484461069107, 0.050566624850034714, 0.020501136779785156, 0.010533719323575497, 0.0255374014377594, 0.008710656315088272, 0.04636494815349579, 0.33511653542518616], [0.010200955905020237, 0.0042754849418997765, 0.01400208380073309, 0.003544869367033243, 0.002793419174849987, 0.0051890346221625805, 0.00043055604328401387, 0.09391020983457565, 0.018593374639749527, 0.21963940560817719, 0.05904795229434967, 0.009331685490906239, 0.1569502204656601, 0.032427120953798294, 0.08278496563434601, 0.18549183011054993, 0.007713226601481438, 0.09367362409830093], [0.028261806815862656, 0.005524148233234882, 0.014380388893187046, 0.009047158993780613, 0.007697990629822016, 0.013674660585820675, 0.0023574840743094683, 0.26348012685775757, 0.05416691303253174, 0.03996363282203674, 0.08363329619169235, 0.022350890561938286, 0.056548189371824265, 0.02069096639752388, 0.0381275899708271, 0.026065682992339134, 0.0511261522769928, 0.2629028856754303], [0.029738686978816986, 0.003899782430380583, 0.008881456218659878, 0.00634412094950676, 0.005692504812031984, 0.010211736895143986, 0.0019677826203405857, 0.3008929491043091, 0.06376167386770248, 0.0163078922778368, 0.06323655694723129, 0.03551143780350685, 0.03404288738965988, 0.029279988259077072, 0.02714259922504425, 0.02615804225206375, 0.036763302981853485, 0.30016660690307617], [0.011417093686759472, 0.0013026142260059714, 0.003540465608239174, 0.0014734906144440174, 0.0006704445695504546, 0.0015654336893931031, 0.0005700031761080027, 0.39120882749557495, 0.022654885426163673, 0.007257689256221056, 0.024058466777205467, 0.013888126239180565, 0.027469241991639137, 0.024647055193781853, 0.03105800971388817, 0.026946093887090683, 0.020195631310343742, 0.3900764584541321], [0.014683234505355358, 0.0003905683115590364, 0.0018602709751576185, 0.0007003890350461006, 0.0002229461242677644, 0.0009868796914815903, 0.0004573663172777742, 0.41326287388801575, 0.00891679897904396, 0.008134972304105759, 0.0065480382181704044, 0.008466805331408978, 0.011800406500697136, 0.040612295269966125, 0.028113022446632385, 0.023649292066693306, 0.019159911200404167, 0.4120338559150696], [0.015461116097867489, 0.0005639717564918101, 0.0017511924961581826, 0.0010174637427553535, 0.0004856193845625967, 0.0012849833583459258, 0.0012520712334662676, 0.39233216643333435, 0.022522909566760063, 0.007504936773329973, 0.01464441604912281, 0.007561471313238144, 0.023904209956526756, 0.015216153115034103, 0.01690785586833954, 0.02866584248840809, 0.057688456028699875, 0.39123499393463135], [0.00585609395056963, 0.0009678196511231363, 0.001840684562921524, 0.00102305319160223, 0.0004074878816027194, 0.0007620466640219092, 0.0004518597270362079, 0.4574013948440552, 0.005522680934518576, 0.011305003426969051, 0.004427983425557613, 0.005430434364825487, 0.004798815120011568, 0.01174563355743885, 0.006340957246720791, 0.007970902137458324, 0.01794913038611412, 0.45579805970191956], [0.0028254014905542135, 0.004951308015733957, 0.00333961914293468, 0.002887774957343936, 0.0017659366130828857, 0.0010185888968408108, 0.0008140706922858953, 0.4771941304206848, 0.003095044055953622, 0.0024583530612289906, 0.0013498994521796703, 0.0036327047273516655, 0.0007925605750642717, 0.0004537247004918754, 0.0006610573618672788, 0.0005927378078922629, 0.016363972797989845, 0.4758031368255615], [0.02190978266298771, 0.002789172111079097, 0.002688387408852577, 0.0025500322226434946, 0.00099636719096452, 0.0012484040344133973, 0.0025704344734549522, 0.4737854301929474, 0.003011683700606227, 0.002784301759675145, 0.0014879874652251601, 0.002705515595152974, 0.0011864820262417197, 0.0008282664348371327, 0.0004989581648260355, 0.0008442376856692135, 0.005745852366089821, 0.4723687767982483]], [[0.009353775531053543, 0.006635352503508329, 0.021925903856754303, 0.0035688006319105625, 0.0014420109800994396, 0.005379037000238895, 0.00412369379773736, 0.2697131037712097, 0.023345261812210083, 0.31337592005729675, 0.003342860843986273, 0.001316230627708137, 0.014752394519746304, 0.0075667379423975945, 0.006372712552547455, 0.010473896749317646, 0.02835206128656864, 0.2689601182937622], [0.0016390103846788406, 0.05267651006579399, 0.20384134352207184, 0.02188654989004135, 0.01068024430423975, 0.020415617153048515, 0.015452937223017216, 0.31039926409721375, 0.0037041741888970137, 0.03910326957702637, 0.0023755370639264584, 0.0007564637344330549, 0.0012848690384998918, 0.00016196974320337176, 0.0004324600740801543, 0.0010574507759884, 0.004672426730394363, 0.309459924697876], [0.0033783919643610716, 0.07977224886417389, 0.16810643672943115, 0.048198893666267395, 0.026631386950612068, 0.03620787337422371, 0.021888073533773422, 0.28750792145729065, 0.0035891940351575613, 0.010186437517404556, 0.008360518142580986, 0.0067393602803349495, 0.0019942678045481443, 0.0010027893586084247, 0.001442888518795371, 0.0018580935429781675, 0.006350176874548197, 0.28678497672080994], [0.002211370738223195, 0.1583373099565506, 0.3959755301475525, 0.04033539071679115, 0.011165295727550983, 0.027603227645158768, 0.018362829461693764, 0.1539592146873474, 0.004185536876320839, 0.022953996434807777, 0.002012713812291622, 0.000823534035589546, 0.0016885530203580856, 0.0005506534944288433, 0.0004699377459473908, 0.0010076004546135664, 0.004779130686074495, 0.15357817709445953], [0.0023617055267095566, 0.14064808189868927, 0.2539482116699219, 0.04151991382241249, 0.0193451177328825, 0.04892819747328758, 0.02155274711549282, 0.22779694199562073, 0.001530761132016778, 0.009174280799925327, 0.0010036510648205876, 0.0006404047599062324, 0.0008977129473350942, 0.0002886805741582066, 0.00028396007837727666, 0.00040429149521514773, 0.0025113015435636044, 0.22716417908668518], [0.00358903082087636, 0.11883443593978882, 0.294259250164032, 0.05448174849152565, 0.014114505611360073, 0.029820263385772705, 0.020514052361249924, 0.21952685713768005, 0.006068424321711063, 0.009111076593399048, 0.0024609947577118874, 0.0010829989332705736, 0.0019088948611170053, 0.0007166822324506938, 0.0009298797813244164, 0.0013592350296676159, 0.0022480194456875324, 0.21897363662719727], [0.008689707145094872, 0.1032840758562088, 0.21193602681159973, 0.032195039093494415, 0.033691998571157455, 0.03395777568221092, 0.04928624629974365, 0.24608607590198517, 0.014906205236911774, 0.0077950479462742805, 0.0005571942310780287, 0.00042046993621625006, 0.0006284413975663483, 0.0005259389290586114, 0.00041182327549904585, 0.0004931211587972939, 0.009656691923737526, 0.2454780489206314], [0.004165980499237776, 0.0022244586143642664, 0.002964823506772518, 0.0017528889002278447, 0.002060640836134553, 0.001663234201259911, 0.00807795487344265, 0.4777083396911621, 0.0032872436568140984, 0.002987763611599803, 0.0009666621335782111, 0.0007772857788950205, 0.0009261809173040092, 0.002629820955917239, 0.0009751333855092525, 0.001411373377777636, 0.009384643286466599, 0.4760356545448303], [0.007470988668501377, 0.05487135425209999, 0.05091075599193573, 0.1446503847837448, 0.05917883291840553, 0.06920347362756729, 0.012608644552528858, 0.2299526482820511, 0.0145139554515481, 0.07219185680150986, 0.022533416748046875, 0.00856035016477108, 0.007351210340857506, 0.002950799185782671, 0.0031750353518873453, 0.0028131587896496058, 0.007605562452226877, 0.2294575721025467], [0.004280739929527044, 0.19203919172286987, 0.46389952301979065, 0.0063909911550581455, 0.0007423676433973014, 0.00290478952229023, 0.01079888828098774, 0.021705618128180504, 0.0033491668291389942, 0.25623902678489685, 0.0009027456399053335, 0.00035419806954450905, 0.0007566432468593121, 0.0005301418714225292, 0.0016406357754021883, 0.0024573584087193012, 0.009352117776870728, 0.021655794233083725], [0.01396894920617342, 0.06213776767253876, 0.1660071313381195, 0.018415965139865875, 0.004884917754679918, 0.019311752170324326, 0.006809057202190161, 0.1677028387784958, 0.01692342199385166, 0.3020274341106415, 0.0027776136994361877, 0.002524212235584855, 0.006456022150814533, 0.016063498333096504, 0.00904756411910057, 0.012727554887533188, 0.004957856610417366, 0.1672564595937729], [0.0153112867847085, 0.033329207450151443, 0.0676112100481987, 0.018296295776963234, 0.009472908452153206, 0.019582806155085564, 0.011029276065528393, 0.27412906289100647, 0.04935858026146889, 0.13859650492668152, 0.007802880369126797, 0.00468370970338583, 0.012104358524084091, 0.008773737587034702, 0.012965179979801178, 0.028957249596714973, 0.014566553756594658, 0.27342918515205383], [0.017731236293911934, 0.009775225073099136, 0.11468075960874557, 0.011538224294781685, 0.0025369571521878242, 0.016167163848876953, 0.008298840373754501, 0.22969433665275574, 0.019316311925649643, 0.14345403015613556, 0.008068624883890152, 0.0051506697200238705, 0.045283086597919464, 0.045183151960372925, 0.02933802269399166, 0.05310457944869995, 0.011585761792957783, 0.22909300029277802], [0.005737485829740763, 0.02153158187866211, 0.07691361755132675, 0.013535941019654274, 0.003956115338951349, 0.03689846396446228, 0.0024940036237239838, 0.3206254243850708, 0.00589584419503808, 0.07440219819545746, 0.00478271534666419, 0.0037253526970744133, 0.006629838142544031, 0.030057579278945923, 0.003673149971291423, 0.06484217196702957, 0.004649327136576176, 0.31964921951293945], [0.009928259067237377, 0.013749041594564915, 0.06443724036216736, 0.002915105549618602, 0.00424561370164156, 0.005472242366522551, 0.004837712738662958, 0.2779078483581543, 0.008557657711207867, 0.2264925092458725, 0.00506177544593811, 0.004879934713244438, 0.008942871354520321, 0.018463725224137306, 0.015805836766958237, 0.03820779547095299, 0.01296350546181202, 0.2771313190460205], [0.009903473779559135, 0.03167591243982315, 0.18253351747989655, 0.011948144994676113, 0.0026101330295205116, 0.022358618676662445, 0.0038303041364997625, 0.19687528908252716, 0.007305999752134085, 0.20886512100696564, 0.0168367438018322, 0.007219064515084028, 0.017290914431214333, 0.023365363478660583, 0.011678743176162243, 0.043938059359788895, 0.005496196448802948, 0.19626836478710175], [0.026221036911010742, 0.010997181758284569, 0.01441290881484747, 0.007582854013890028, 0.004052975680679083, 0.0018146506045013666, 0.021687213331460953, 0.33698225021362305, 0.09359665215015411, 0.04439708590507507, 0.005326184909790754, 0.00470297085121274, 0.0069356271997094154, 0.0056534712202847, 0.0038057174533605576, 0.004697652533650398, 0.0711527168750763, 0.3359808921813965], [0.004164740908890963, 0.002223366405814886, 0.002963077975437045, 0.0017521617701277137, 0.002060436410829425, 0.0016621955437585711, 0.008077716454863548, 0.4777156114578247, 0.003286956576630473, 0.0029835819732397795, 0.0009663003729656339, 0.0007770608062855899, 0.0009256705525331199, 0.0026297231670469046, 0.0009748190059326589, 0.0014106903690844774, 0.009383020922541618, 0.47604289650917053]], [[0.00649135559797287, 0.006235244683921337, 0.007422870956361294, 0.007218163926154375, 0.001384963165037334, 0.0014241982717067003, 0.000657863391097635, 0.3901377022266388, 0.12261888384819031, 0.03863265737891197, 0.006310265976935625, 0.004217368550598621, 0.0028095149900764227, 0.005231491755694151, 0.0018585235811769962, 0.0022240993566811085, 0.00628335727378726, 0.38884153962135315], [0.001894456217996776, 0.029243765398859978, 0.08517590910196304, 0.5483393669128418, 0.04617813974618912, 0.04804740473628044, 0.003376217093318701, 0.09489155560731888, 0.007355008274316788, 0.011264771223068237, 0.009303526021540165, 0.0026469859294593334, 0.01246420107781887, 0.0016516840551048517, 0.0013769841752946377, 0.0012848896440118551, 0.0008183632744476199, 0.0946868434548378], [0.008202162571251392, 0.025307266041636467, 0.007525780238211155, 0.2432926893234253, 0.06069905310869217, 0.08897167444229126, 0.010513017885386944, 0.24560397863388062, 0.004576300270855427, 0.0075560458935797215, 0.017702443525195122, 0.0055513991974294186, 0.01908138394355774, 0.0025526401586830616, 0.003344448283314705, 0.0017556349048390985, 0.0026991432532668114, 0.2450648546218872], [0.010043579153716564, 0.023318301886320114, 0.020816858857870102, 0.046186719089746475, 0.06568741798400879, 0.29862380027770996, 0.014964867383241653, 0.2417948693037033, 0.018299946561455727, 0.004345424938946962, 0.0011700689792633057, 0.0009943366749212146, 0.005392062943428755, 0.0016624063719063997, 0.0008310727425850928, 0.0029800771735608578, 0.0016362812602892518, 0.24125197529792786], [0.006869597360491753, 0.02675536647439003, 0.019418494775891304, 0.03938192129135132, 0.02908252738416195, 0.03800487518310547, 0.025090647861361504, 0.3997918367385864, 0.005454605910927057, 0.004816219210624695, 0.00041757168946787715, 0.0009683477692306042, 0.0008154332754202187, 0.0004828730598092079, 0.00026700651505962014, 0.0011014094343408942, 0.002552279969677329, 0.3987291157245636], [0.012172234244644642, 0.037068963050842285, 0.018416132777929306, 0.030478114262223244, 0.020660704001784325, 0.019673561677336693, 0.06562679260969162, 0.362435519695282, 0.04386572167277336, 0.0076975212432444096, 0.0008301985217258334, 0.0023439109791070223, 0.003527561202645302, 0.0025891736149787903, 0.0015662185614928603, 0.002678660210222006, 0.006720439065247774, 0.3616485595703125], [0.030183136463165283, 0.03078930266201496, 0.006906577385962009, 0.018989624455571175, 0.0039712488651275635, 0.007573762908577919, 0.00582488439977169, 0.3623722195625305, 0.09886161237955093, 0.04236216098070145, 0.010167974978685379, 0.007369248662143946, 0.004070333670824766, 0.002343582222238183, 0.0025809896178543568, 0.0015389416366815567, 0.0028434228152036667, 0.36125096678733826], [0.06782698631286621, 0.013277675956487656, 0.0044382899068295956, 0.008007233962416649, 0.0048665208742022514, 0.0037732208147644997, 0.003380213398486376, 0.4237516522407532, 0.004132250789552927, 0.005400396417826414, 0.009144174866378307, 0.0051851519383490086, 0.005345222540199757, 0.00267193466424942, 0.00799113605171442, 0.004155182745307684, 0.004139394033700228, 0.4225134253501892], [0.016106951981782913, 0.006473186891525984, 0.008808710612356663, 0.004756937734782696, 0.0011802379740402102, 0.0019066757522523403, 0.0016614049673080444, 0.39745190739631653, 0.04850579425692558, 0.0499398447573185, 0.026412829756736755, 0.016749709844589233, 0.005963939242064953, 0.004752962850034237, 0.003537094220519066, 0.0013063077349215746, 0.008062305860221386, 0.39642319083213806], [0.002520043635740876, 0.0013689830666407943, 0.0034292631316930056, 0.0033816834911704063, 0.0008374117314815521, 0.002326721791177988, 0.000609391019679606, 0.16862177848815918, 0.004357399884611368, 0.015812423080205917, 0.12855002284049988, 0.02107849158346653, 0.3611932694911957, 0.016739828512072563, 0.007552388124167919, 0.08776584267616272, 0.005649649538099766, 0.1682053953409195], [0.006079941056668758, 0.0009556891745887697, 0.0011159587884321809, 0.0006806142628192902, 0.0006218983908183873, 0.00037549203261733055, 0.00046679802471771836, 0.3787008225917816, 0.009150473400950432, 0.013888080604374409, 0.01544366218149662, 0.02075251191854477, 0.10925173759460449, 0.01410562265664339, 0.008252203464508057, 0.027554184198379517, 0.014972561970353127, 0.37763169407844543], [0.009112861938774586, 0.0009589432156644762, 0.0010272787185385823, 0.0005563742597587407, 0.000229306286200881, 0.00024611555272713304, 0.00031638925429433584, 0.3591143488883972, 0.008037848398089409, 0.01221152301877737, 0.03012913279235363, 0.015552817843854427, 0.08101573586463928, 0.022647732868790627, 0.03547528013586998, 0.053990788757801056, 0.011390257626771927, 0.35798731446266174], [0.005558989942073822, 0.0006613763980567455, 0.0005188482464291155, 0.0002602333261165768, 8.124035957735032e-05, 5.807681009173393e-05, 0.0006950490060262382, 0.3556230366230011, 0.005766155198216438, 0.005609138403087854, 0.004192129708826542, 0.006315624341368675, 0.0462644100189209, 0.033423904329538345, 0.1039491519331932, 0.03581705689430237, 0.040681347250938416, 0.3545241951942444], [0.007100177463144064, 0.0004979806253686547, 0.0005130635690875351, 0.0003564265207387507, 8.508125756634399e-05, 9.674236207501963e-05, 0.0007262957515195012, 0.341004878282547, 0.005626346915960312, 0.0045608412474393845, 0.003858313662931323, 0.0045961979776620865, 0.01540632825344801, 0.014368182048201561, 0.18593348562717438, 0.003122694557532668, 0.07207681238651276, 0.3400702178478241], [0.003475711215287447, 0.00011099308176198974, 6.460797158069909e-05, 3.167674003634602e-05, 1.0358629879192449e-05, 2.3729237000225112e-05, 0.00012128282833145931, 0.1687944531440735, 0.0003633623418863863, 0.001193706993944943, 0.0009490741067565978, 0.00031532259890809655, 0.013308815658092499, 0.006752018816769123, 0.1517898142337799, 0.4693732261657715, 0.015132223255932331, 0.1681896299123764], [0.004844163544476032, 0.000700260978192091, 0.0004978078068234026, 0.00014612700033467263, 5.175143451197073e-05, 0.0001307091151829809, 0.00044092501047998667, 0.45597198605537415, 0.002068607835099101, 0.002233259379863739, 0.0009047474595718086, 0.0018291979795321822, 0.010807710699737072, 0.008290118537843227, 0.016450945287942886, 0.01214576791971922, 0.028042828664183617, 0.4544430375099182], [0.03965975344181061, 0.0023353698197752237, 0.0008585615432821214, 0.003901471383869648, 0.000575559854041785, 0.0007954664761200547, 0.0005700328038074076, 0.4203619658946991, 0.06140691041946411, 0.019685037434101105, 0.006861889269202948, 0.003112139878794551, 0.0028233772609382868, 0.0022869736421853304, 0.0055818273685872555, 0.002312683267518878, 0.00803104043006897, 0.4188399314880371], [0.06782563775777817, 0.013271369971334934, 0.0044369203969836235, 0.008008195087313652, 0.00486731855198741, 0.003774555865675211, 0.0033808790612965822, 0.42375949025154114, 0.00413268618285656, 0.005397944711148739, 0.009141671471297741, 0.005183324217796326, 0.005344083067029715, 0.002670528134331107, 0.007991423830389977, 0.004154964350163937, 0.004138019867241383, 0.42252102494239807]], [[0.0072449324652552605, 0.008087466470897198, 0.019160602241754532, 0.0037453668192029, 0.0015731131425127387, 0.001727225841023028, 0.004778558854013681, 0.2784905731678009, 0.050650909543037415, 0.023337384685873985, 0.017086928710341454, 0.018534990027546883, 0.019983122125267982, 0.07087689638137817, 0.01088639721274376, 0.006889968644827604, 0.17905838787555695, 0.27788713574409485], [0.004711966495960951, 0.07068659365177155, 0.06950633227825165, 0.0704261064529419, 0.061714619398117065, 0.06846170127391815, 0.09797372668981552, 0.2581937313079834, 0.018552692607045174, 0.001440353225916624, 0.0009082868928089738, 0.0007570963352918625, 0.0029838322661817074, 0.0038078362122178078, 0.0024251064751297235, 0.0021610751282423735, 0.007617955561727285, 0.257671058177948], [0.010838245041668415, 0.04885802045464516, 0.020748203620314598, 0.029342101886868477, 0.01289483904838562, 0.01379541028290987, 0.01196863129734993, 0.4200318455696106, 0.0018257700139656663, 0.004134046845138073, 0.0009548458619974554, 0.0005996265099383891, 0.0007919261115603149, 0.000756454246584326, 0.0009796880185604095, 0.00023513691849075258, 0.0022475928999483585, 0.4189976453781128], [0.004046330228447914, 0.02046251855790615, 0.018049651756882668, 0.01680995710194111, 0.0330260694026947, 0.01898917369544506, 0.03418391942977905, 0.41706621646881104, 0.012110182084143162, 0.0008221006719395518, 0.0005357578047551215, 0.00044998363591730595, 0.0018791207112371922, 0.0004502764204517007, 0.0002744962403085083, 0.0004511588776949793, 0.004398839548230171, 0.4159942865371704], [0.0038070331793278456, 0.01658875122666359, 0.007005542051047087, 0.007962399162352085, 0.06103259325027466, 0.04044976457953453, 0.0553206168115139, 0.39832013845443726, 0.00725212600082159, 0.00044648442417383194, 0.00021410691260825843, 0.0003142345231026411, 0.000777678971644491, 8.042772969929501e-05, 7.979902147781104e-05, 0.00036198573070578277, 0.002831648802384734, 0.39715471863746643], [0.02210048772394657, 0.03435175120830536, 0.0047173709608614445, 0.014841648750007153, 0.08045823872089386, 0.09110294282436371, 0.09870811551809311, 0.31402987241744995, 0.014346448704600334, 0.0013827919028699398, 0.000976740731857717, 0.0009404494776390493, 0.001334040192887187, 0.0004429457476362586, 0.00041709872311912477, 0.0008027931908145547, 0.005705983843654394, 0.31334033608436584], [0.004210203420370817, 0.01834605075418949, 0.00955263338983059, 0.010623817332088947, 0.015332967042922974, 0.021112479269504547, 0.015423116274178028, 0.44236060976982117, 0.012129334732890129, 0.0011371772270649672, 0.0009959080489352345, 0.000427019753260538, 0.0008542977157048881, 0.0007351511740125716, 0.0005328838597051799, 0.0009288312867283821, 0.004182851407676935, 0.4411146938800812], [0.0061184135265648365, 0.005090853199362755, 0.003667894983664155, 0.005748693365603685, 0.00790134072303772, 0.00653182715177536, 0.003253897652029991, 0.44706806540489197, 0.0069965762086212635, 0.003134586149826646, 0.007865640334784985, 0.00429847277700901, 0.01029928121715784, 0.00805398914963007, 0.007336335722357035, 0.016231050714850426, 0.004437831696122885, 0.4459652602672577], [0.006695086136460304, 0.0017265864880755544, 0.0016735784010961652, 0.0013602572726085782, 0.00206259754486382, 0.0010956279002130032, 0.0018463931046426296, 0.40699172019958496, 0.03190593793988228, 0.015398741699755192, 0.0034761400893330574, 0.010177495889365673, 0.011073848232626915, 0.0060057248920202255, 0.00618375139310956, 0.0028656518552452326, 0.08362238109111786, 0.4058384299278259], [0.006013853941112757, 0.0011839009821414948, 0.01569557376205921, 0.0008895136998035014, 0.000715379195753485, 0.000556056562345475, 0.002230457728728652, 0.21343372762203217, 0.015945708379149437, 0.006882630754262209, 0.014175995253026485, 0.016265496611595154, 0.09833954274654388, 0.16588903963565826, 0.1050620973110199, 0.06955573707818985, 0.05427178740501404, 0.21289348602294922], [0.004647564608603716, 0.0005275576841086149, 0.0009464313625358045, 0.0019445513607934117, 0.0019123746315017343, 0.000786268268711865, 0.0019100179197266698, 0.33645135164260864, 0.13146129250526428, 0.013147332705557346, 0.004175068810582161, 0.007923423312604427, 0.010620927438139915, 0.01829393394291401, 0.011151839047670364, 0.015870874747633934, 0.10258936136960983, 0.3356398940086365], [0.004428165964782238, 0.000438450719229877, 0.0005032001645304263, 0.0005816424963995814, 0.0008608272764831781, 0.0006355149671435356, 0.00187974632717669, 0.34298327565193176, 0.06812767684459686, 0.011961067095398903, 0.00461222231388092, 0.005510579328984022, 0.013833955861628056, 0.05109625682234764, 0.02024877816438675, 0.031629614531993866, 0.0986974686384201, 0.34197160601615906], [0.02054976113140583, 0.0004742494784295559, 0.0007228469476103783, 0.0016299848211929202, 0.00040587616967968643, 0.00018790723697748035, 0.0009325253195129335, 0.25124838948249817, 0.05021142587065697, 0.039179954677820206, 0.009629428386688232, 0.00946796778589487, 0.06403175741434097, 0.027364147827029228, 0.05266176164150238, 0.1847132444381714, 0.03596515581011772, 0.2506236732006073], [0.030353127047419548, 0.0006551043479703367, 0.00020233291434124112, 0.0002809426805470139, 0.00021694427414331585, 0.00037845640326850116, 0.0010982364183291793, 0.29212498664855957, 0.06180565804243088, 0.030276000499725342, 0.044612374156713486, 0.020017070695757866, 0.01828484982252121, 0.06312758475542068, 0.0674433708190918, 0.01852385886013508, 0.05924345552921295, 0.291355699300766], [0.0243020448833704, 0.0009655127068981528, 0.0020491196773946285, 0.000535728526301682, 0.00048570125363767147, 0.00047473827726207674, 0.0028561714570969343, 0.31524360179901123, 0.031026259064674377, 0.04087495058774948, 0.010822881944477558, 0.014677010476589203, 0.021436961367726326, 0.030209144577383995, 0.05412911996245384, 0.02144458144903183, 0.11413809657096863, 0.3143284320831299], [0.04448538273572922, 0.0004986399435438216, 6.882287561893463e-05, 0.00047871304559521377, 0.0004355241544544697, 0.0014931753976270556, 0.0008589931530877948, 0.26229462027549744, 0.030990276485681534, 0.02195162884891033, 0.018170276656746864, 0.019002439454197884, 0.08157682418823242, 0.012940503656864166, 0.013305709697306156, 0.18953993916511536, 0.040331561118364334, 0.26157695055007935], [0.003736646380275488, 0.000922922685276717, 0.000946033513173461, 0.0013548448914662004, 0.0008881074609234929, 0.001015836256556213, 0.0014061486581340432, 0.4352092742919922, 0.04467364400625229, 0.010006727650761604, 0.004411226138472557, 0.0024626825470477343, 0.006428970955312252, 0.013278576545417309, 0.0036144049372524023, 0.009207764640450478, 0.026621732860803604, 0.43381446599960327], [0.006119539029896259, 0.005091692786663771, 0.0036685802042484283, 0.005749320611357689, 0.00789890717715025, 0.006532234605401754, 0.0032556853257119656, 0.447086364030838, 0.0069919126108288765, 0.003134140744805336, 0.007862785831093788, 0.004295757040381432, 0.010294357314705849, 0.008048029616475105, 0.007330313324928284, 0.016220465302467346, 0.004436984658241272, 0.44598299264907837]], [[0.02822449803352356, 0.02687816694378853, 0.017177017405629158, 0.06758271157741547, 0.05268522724509239, 0.1050669476389885, 0.07251130044460297, 0.2539790868759155, 0.006517237983644009, 0.003736543469130993, 0.03100883774459362, 0.03363306075334549, 0.013114672154188156, 0.0031619181390851736, 0.014996517449617386, 0.0015169066609814763, 0.014723382890224457, 0.25348594784736633], [0.014856377616524696, 0.04517171531915665, 0.06868106126785278, 0.0013730546925216913, 0.0005253195995464921, 0.0010999171063303947, 0.005162129644304514, 0.16022032499313354, 0.005310893524438143, 0.48580536246299744, 0.001481501036323607, 0.0012614388251677155, 0.0040791453793644905, 0.009608122520148754, 0.00208987295627594, 0.017511354759335518, 0.015880830585956573, 0.15988171100616455], [0.005436382256448269, 0.016109881922602654, 0.07949595898389816, 0.00030668420367874205, 0.00017003192624542862, 0.0002409948210697621, 0.002253412501886487, 0.1586759388446808, 0.0010209201136603951, 0.5489580631256104, 0.002133551985025406, 0.0007323863101191819, 0.0019802956376224756, 0.0077832043170928955, 0.0006195628666318953, 0.008542497642338276, 0.007291001733392477, 0.15824924409389496], [0.012125330977141857, 0.005898939911276102, 0.013083841651678085, 0.06028825789690018, 0.0026182541623711586, 0.010454635135829449, 0.013611743226647377, 0.38327085971832275, 0.019416164606809616, 0.041236504912376404, 0.0057894582860171795, 0.0048637185245752335, 0.0011572148650884628, 0.0054529281333088875, 0.0018198714824393392, 0.004205217584967613, 0.032345496118068695, 0.38236162066459656], [0.025399094447493553, 0.0008986395550891757, 0.0021165735088288784, 0.003248675027862191, 0.011415122076869011, 0.012014884501695633, 0.008986202999949455, 0.40268760919570923, 0.024378979578614235, 0.007182565052062273, 0.005181458313018084, 0.004840650130063295, 0.0009523636545054615, 0.02822571061551571, 0.0015979402232915163, 0.041656069457530975, 0.017510198056697845, 0.4017072319984436], [0.03291871398687363, 0.006537158507853746, 0.001706287614069879, 0.005502654239535332, 0.006653270684182644, 0.13431093096733093, 0.012340160086750984, 0.22973434627056122, 0.06483062356710434, 0.04841776192188263, 0.032293494790792465, 0.021019719541072845, 0.012284930795431137, 0.04747014120221138, 0.005556862335652113, 0.0706632137298584, 0.03863690048456192, 0.2291228026151657], [0.10553066432476044, 0.01046657096594572, 0.02234434150159359, 0.008712504990398884, 0.00677887350320816, 0.003154963720589876, 0.023326952010393143, 0.35093721747398376, 0.02725137397646904, 0.013629346154630184, 0.003499878104776144, 0.002560931956395507, 0.0034537881147116423, 0.0029937373474240303, 0.002053678035736084, 0.0015623312210664153, 0.06165727600455284, 0.35008564591407776], [0.005497328471392393, 0.002808538731187582, 0.005099039524793625, 0.0019498999463394284, 0.0011361691867932677, 0.002441758057102561, 0.004157111048698425, 0.4799897372722626, 0.0020218912977725267, 0.0035759196616709232, 0.0012540938332676888, 0.002198587404564023, 0.001301427953876555, 0.0010890583507716656, 0.0005993940867483616, 0.0007701669237576425, 0.00548291951417923, 0.47862687706947327], [0.04544711485505104, 0.005273644812405109, 0.0032745911739766598, 0.016436804085969925, 0.01142325159162283, 0.014944971539080143, 0.12951037287712097, 0.357177734375, 0.031820911914110184, 0.00011677155998768285, 0.0019758918788284063, 0.00168419792316854, 0.00036025673034600914, 0.0002473084314260632, 0.001347371726296842, 6.0959831898799166e-05, 0.022731540724635124, 0.3561663031578064], [0.0008267996599897742, 0.06396003067493439, 0.9035478830337524, 0.0014103865250945091, 0.0003607453836593777, 0.00016896697343327105, 0.0012772816698998213, 0.005097050219774246, 3.4226468414999545e-06, 0.017827970907092094, 2.650491296662949e-05, 4.579313099384308e-06, 9.266465895052534e-06, 1.3829989256919362e-05, 7.366714271483943e-06, 1.753532706061378e-05, 0.0003558485768735409, 0.005084560718387365], [0.07895984500646591, 0.022557346150279045, 0.06934602558612823, 0.008951911702752113, 0.005785936955362558, 0.023429324850440025, 0.030499132350087166, 0.2764936685562134, 0.0012763665290549397, 0.009462599642574787, 0.14387671649456024, 0.01361819263547659, 0.009459423832595348, 0.0020574498921632767, 0.009741745889186859, 0.0008861463866196573, 0.017631130293011665, 0.2759670615196228], [0.050265226513147354, 0.010402374900877476, 0.02528410777449608, 0.016969241201877594, 0.00800932478159666, 0.024472607299685478, 0.024285463616251945, 0.37361234426498413, 0.0026958563830703497, 0.0017985037993639708, 0.016358816996216774, 0.048045963048934937, 0.0027558142319321632, 0.0005491509800776839, 0.006788026075810194, 0.000783697993028909, 0.01410754770040512, 0.37281596660614014], [0.02985457330942154, 0.005657408852130175, 0.005867755506187677, 0.0035946897696703672, 0.001102020381949842, 0.005610182415693998, 0.03155108541250229, 0.38686510920524597, 0.00015190616250038147, 0.0006529453676193953, 0.0024348474107682705, 0.0006948277004994452, 0.08904875069856644, 0.006222117226570845, 0.01254233904182911, 0.0030886828899383545, 0.029042918235063553, 0.3860178291797638], [0.03919912129640579, 0.017419982701539993, 0.07773434370756149, 0.0025473868008702993, 0.01643117517232895, 0.09891413152217865, 0.06053805351257324, 0.2123480588197708, 6.688461144221947e-05, 0.002307848073542118, 0.00020952335034962744, 0.00013382172619458288, 0.004006197676062584, 0.09370057284832001, 0.00983093585819006, 0.13489705324172974, 0.017827004194259644, 0.21188794076442719], [0.024208959192037582, 0.0025414233095943928, 0.006479698698967695, 0.0012048204662278295, 0.001153938239440322, 0.004721543751657009, 0.016603384166955948, 0.2010192722082138, 0.00028608631691895425, 0.0009230392752215266, 0.0015206258976832032, 0.0011138805421069264, 0.010425828397274017, 0.029948147013783455, 0.46904152631759644, 0.019678113982081413, 0.00856032781302929, 0.20056946575641632], [0.034426622092723846, 0.02712579257786274, 0.3798339366912842, 0.003912570420652628, 0.0072620585560798645, 0.04911571368575096, 0.04556149244308472, 0.14185751974582672, 0.00016099223284982145, 0.014388698153197765, 0.0007755009573884308, 0.0001393262209603563, 0.002052500145509839, 0.09957606345415115, 0.004550946410745382, 0.030280770733952522, 0.017423460260033607, 0.1415560096502304], [0.03599721938371658, 0.023649116978049278, 0.0385950542986393, 0.010081788524985313, 0.004971147980540991, 0.0030308470595628023, 0.046893928200006485, 0.39878222346305847, 0.006862873211503029, 0.003129811491817236, 0.000482063100207597, 0.0005564063903875649, 0.0006670349976047873, 0.00022906283265911043, 0.000495098065584898, 0.00015705550322309136, 0.027830632403492928, 0.39758870005607605], [0.00550092663615942, 0.002809621160849929, 0.005099686793982983, 0.001950994716025889, 0.001136987586505711, 0.002441813936457038, 0.004159651696681976, 0.47998106479644775, 0.0020233141258358955, 0.0035779087338596582, 0.0012535498244687915, 0.0021978141739964485, 0.0013012983836233616, 0.0010891830315813422, 0.0005995730753056705, 0.0007702654111199081, 0.005487623158842325, 0.47861871123313904]]], [[[0.003282914636656642, 0.043607957661151886, 0.0048064677976071835, 0.03444560617208481, 0.02522188052535057, 0.013604823499917984, 0.19586828351020813, 0.3261401653289795, 0.009355944581329823, 0.0005330315325409174, 0.0009703958057798445, 0.0003416354884393513, 0.001951170270331204, 6.706207932438701e-05, 0.00012616216554306448, 7.361452298937365e-05, 0.01366819441318512, 0.3259347975254059], [0.016875404864549637, 0.0851658508181572, 0.05127401649951935, 0.11015671491622925, 0.09526897966861725, 0.08968305587768555, 0.08387580513954163, 0.20179732143878937, 0.01278919167816639, 0.019386956468224525, 0.006528729572892189, 0.0018024365417659283, 0.0023063807748258114, 0.00036926520988345146, 8.852143946569413e-05, 0.0018617388559505343, 0.019073953852057457, 0.20169568061828613], [0.03253095597028732, 0.05841881036758423, 0.06340325623750687, 0.07668168097734451, 0.034265387803316116, 0.059076469391584396, 0.021094121038913727, 0.29171326756477356, 0.007364474702626467, 0.02422766387462616, 0.008093318901956081, 0.0017605382017791271, 0.0068627516739070415, 0.002782664727419615, 0.0004498462367337197, 0.010195079259574413, 0.009513523429632187, 0.2915661931037903], [0.03206720948219299, 0.04037494957447052, 0.01028243824839592, 0.03708629310131073, 0.05091888830065727, 0.03699146583676338, 0.04821289703249931, 0.3418560326099396, 0.042003851383924484, 0.0025910385884344578, 0.0019666245207190514, 0.001605602796189487, 0.00043236641795374453, 0.00022243392595555633, 3.846479739877395e-05, 0.0002449997700750828, 0.011461435817182064, 0.3416430354118347], [0.029558412730693817, 0.020458901301026344, 0.0053135124035179615, 0.013110259547829628, 0.02650674246251583, 0.01504544634371996, 0.06961123645305634, 0.38769251108169556, 0.030529357492923737, 0.0007531255832873285, 0.0006184800295159221, 0.0006138519383966923, 0.00018626700330059975, 0.00013803812908008695, 8.706359221832827e-05, 0.0003871155495289713, 0.011952267959713936, 0.38743749260902405], [0.09060260653495789, 0.02367309108376503, 0.015340491198003292, 0.029130565002560616, 0.03341452404856682, 0.040305037051439285, 0.04896215349435806, 0.2983732223510742, 0.09980994462966919, 0.001245427061803639, 0.0020505483262240887, 0.0023639982100576162, 0.002138913841918111, 0.001852750894613564, 0.0010291278595104814, 0.0022683346178382635, 0.009204751811921597, 0.29823461174964905], [0.009770726785063744, 0.01527613215148449, 0.005621404852718115, 0.014119409024715424, 0.00571288401260972, 0.006639859173446894, 0.01541982963681221, 0.4450565278530121, 0.02044263668358326, 0.0007841346669010818, 0.001331244595348835, 0.0015677264891564846, 0.0024988739751279354, 0.0003203141677659005, 0.00035142642445862293, 0.0007097925990819931, 0.009628605097532272, 0.44474849104881287], [0.0172122810035944, 0.013933205977082253, 0.010457136668264866, 0.01252710074186325, 0.004220578819513321, 0.005090771708637476, 0.003446927759796381, 0.42483869194984436, 0.008741882629692554, 0.018231848254799843, 0.006184066645801067, 0.008636397309601307, 0.007179826498031616, 0.004536094143986702, 0.003983618691563606, 0.011912918649613857, 0.01432502456009388, 0.4245416224002838], [0.05744302645325661, 0.001115466351620853, 0.0003202245570719242, 0.0004204327706247568, 0.00012803188292309642, 0.00021613540593534708, 0.0006620479398407042, 0.37080320715904236, 0.08245845139026642, 0.005373657215386629, 0.010799162089824677, 0.02449614554643631, 0.013414829969406128, 0.0035335985012352467, 0.0006007650517858565, 0.0020893835462629795, 0.05560974031686783, 0.3705156445503235], [0.02871544659137726, 0.0022122247610241175, 0.002373423893004656, 0.0021657475735992193, 0.0012842727592214942, 0.0020621400326490402, 0.0011881784303113818, 0.2640300989151001, 0.035334400832653046, 0.05373862385749817, 0.12852710485458374, 0.03019200637936592, 0.07239420711994171, 0.006873623002320528, 0.0015851408243179321, 0.06771638989448547, 0.03574176877737045, 0.26386508345603943], [0.01340238656848669, 0.0009228439885191619, 0.0005295865121297538, 0.000982576864771545, 0.0020097694359719753, 0.0016009814571589231, 0.005241937469691038, 0.24259065091609955, 0.18118570744991302, 0.0053269932977855206, 0.011388291604816914, 0.04485105350613594, 0.030408523976802826, 0.03431578725576401, 0.007213187403976917, 0.02884010039269924, 0.14672189950942993, 0.24246765673160553], [0.008043590001761913, 0.0004072719893883914, 0.00013756452244706452, 0.00026703663752414286, 0.0002670957474038005, 0.00019590029842220247, 0.004947087727487087, 0.40017378330230713, 0.043540988117456436, 0.0009654263849370182, 0.0034924917854368687, 0.008338585495948792, 0.007796582765877247, 0.006795684341341257, 0.001770239556208253, 0.014453829266130924, 0.09851150959730148, 0.3998952805995941], [0.010609393939375877, 0.0005288795218802989, 0.00045474301441572607, 0.0003390686179045588, 0.00016208177839871496, 0.00038099102675914764, 0.0038254493847489357, 0.33921629190444946, 0.012736810371279716, 0.004960827995091677, 0.005199687089771032, 0.012951504439115524, 0.02091950550675392, 0.037420593202114105, 0.03806999698281288, 0.05087098106741905, 0.12231291830539703, 0.33904018998146057], [0.013933449983596802, 0.00028039596509188414, 0.0003532427654135972, 0.00021350123279262334, 0.0001357606379315257, 0.00015841404092498124, 0.0020322997588664293, 0.33881112933158875, 0.014093931764364243, 0.0013663661666214466, 0.0041108098812401295, 0.008538497611880302, 0.01787927933037281, 0.03284164518117905, 0.023238161578774452, 0.14060735702514648, 0.0627937987446785, 0.33861199021339417], [0.009900882840156555, 0.0002970850619021803, 0.0002122784499078989, 7.958034984767437e-05, 7.27766819181852e-05, 6.01516330789309e-05, 0.004291241522878408, 0.31717464327812195, 0.007837558165192604, 0.0014225052436813712, 0.0005379882059060037, 0.008639659732580185, 0.003918459173291922, 0.013423379510641098, 0.012103264220058918, 0.02821802720427513, 0.2748185396194458, 0.31699201464653015], [0.03192180022597313, 0.0004819895839318633, 0.0016924252267926931, 0.0002789235732052475, 6.816002860432491e-05, 0.0003259196528233588, 0.0008055918151512742, 0.3619123697280884, 0.04674067720770836, 0.00722033204510808, 0.0050194705836474895, 0.016021698713302612, 0.02255132980644703, 0.031380459666252136, 0.007084297016263008, 0.056401703506708145, 0.04841126129031181, 0.3616816997528076], [0.004878190346062183, 0.0012032531667500734, 0.0008035224163904786, 0.0023947078734636307, 0.000594808254390955, 0.000682119803968817, 0.0007737302803434432, 0.4606066048145294, 0.017963923513889313, 0.004715639632195234, 0.00445366557687521, 0.00761759839951992, 0.005695569794625044, 0.0013990311417728662, 0.001109517295844853, 0.0038523641414940357, 0.021015629172325134, 0.4602401852607727], [0.017209768295288086, 0.01393081247806549, 0.010455409996211529, 0.012525654397904873, 0.004220008850097656, 0.005090382415801287, 0.0034463689662516117, 0.4248473644256592, 0.008741418831050396, 0.01823018305003643, 0.006183473393321037, 0.008635712787508965, 0.007179229985922575, 0.004535414278507233, 0.00398301612585783, 0.011911755427718163, 0.01432424783706665, 0.42454975843429565]], [[0.11301513016223907, 0.02735166996717453, 0.12345936894416809, 0.047295451164245605, 0.07558590173721313, 0.20709405839443207, 0.06528133898973465, 0.0705636590719223, 0.007676165085285902, 0.0017003912944346666, 0.04930529743432999, 0.0014136412646621466, 0.0010352382669225335, 0.07870791107416153, 0.03552362322807312, 0.02019055187702179, 0.00427126232534647, 0.07052936404943466], [3.174379526171833e-05, 0.006977093406021595, 0.01857793517410755, 0.0009690506849437952, 0.00022421355242840946, 0.00026288474327884614, 0.0006335462094284594, 0.26701122522354126, 0.006957043893635273, 0.36567389965057373, 0.0009240226936526597, 0.0020674075931310654, 0.00014920324611011893, 0.0014397616032510996, 0.0016078099142760038, 0.0015142696211114526, 0.05810719355940819, 0.26687172055244446], [1.300017288485833e-06, 0.00011591996008064598, 0.28671103715896606, 7.797426405886654e-06, 1.8775496073430986e-06, 1.6789599612820894e-05, 3.177530743414536e-05, 0.18117766082286835, 0.0003532080154400319, 0.29611125588417053, 0.0010315632680431008, 0.00045966447214595973, 0.00037927183439023793, 0.0045209177769720554, 0.0007558076176792383, 0.005248076282441616, 0.04197848588228226, 0.1810975819826126], [4.3928041122853756e-05, 9.382644930155948e-05, 0.00016319395217578858, 0.030863726511597633, 0.0004925586981698871, 0.00024204932560678571, 0.00012568938836921006, 0.2744765877723694, 0.25077134370803833, 0.011524454690515995, 0.011208203621208668, 0.02278042584657669, 0.0021607072558254004, 0.00429701991379261, 0.031977299600839615, 0.009428348392248154, 0.07501518726348877, 0.2743355333805084], [2.7788524675997905e-05, 2.190271879953798e-05, 3.5199380363337696e-05, 0.0003231464943382889, 0.03816664591431618, 0.0006498780567198992, 0.00017300504259765148, 0.252808541059494, 0.1470828503370285, 0.011756240390241146, 0.018000589683651924, 0.1624150574207306, 0.0017680323217064142, 0.021609434857964516, 0.006802873685956001, 0.04903993383049965, 0.0366215743124485, 0.25269731879234314], [3.5862747608916834e-05, 2.3397884433506988e-05, 0.00017435969493817538, 4.6581753849750385e-05, 0.00018552927940618247, 0.08781063556671143, 3.2229978387476876e-05, 0.32781708240509033, 0.07073330134153366, 0.015938425436615944, 0.015820452943444252, 0.017877280712127686, 0.014822125434875488, 0.03621390089392662, 0.006743438076227903, 0.04649554565548897, 0.03152552992105484, 0.32770439982414246], [0.00021363589621614665, 3.1465217034565285e-05, 5.1019975217059255e-05, 1.937833621923346e-05, 8.759217053011525e-06, 1.582200638949871e-05, 0.004093839321285486, 0.2487371563911438, 0.1337137222290039, 0.0032470952719449997, 0.00047455180902034044, 0.0007905550883151591, 0.0003423942835070193, 0.0009671172010712326, 0.0015374115901067853, 0.0014941139379516244, 0.35560905933380127, 0.248652845621109], [0.0021388863679021597, 0.00031962248613126576, 0.0012489375658333302, 0.0005023265839554369, 0.00014720931358169764, 0.00037351142964325845, 0.0008516649249941111, 0.291628360748291, 0.17558719217777252, 0.040974538773298264, 0.016696104779839516, 0.010834909044206142, 0.021995414048433304, 0.026634229347109795, 0.008344462141394615, 0.02228039689362049, 0.08787969499826431, 0.29156264662742615], [0.21186737716197968, 0.04393219202756882, 0.0014640704030171037, 0.05318685621023178, 0.14203065633773804, 0.3624117374420166, 0.021714389324188232, 0.014274399727582932, 0.13433770835399628, 6.445393955800682e-05, 8.513812645105645e-05, 7.212532364064828e-05, 1.548225736769382e-05, 7.369105787802255e-06, 4.6209846914280206e-05, 1.3502384717867244e-05, 0.00021107771317474544, 0.014265209436416626], [0.003460004460066557, 0.051055293530225754, 0.43775674700737, 0.0006145794177427888, 0.00042350549483671784, 0.0007477101753465831, 0.0001265664614038542, 0.00026412849547341466, 1.8129728118765343e-07, 0.505203127861023, 8.294246981677134e-06, 1.8501513068258646e-06, 1.2970574516657507e-06, 1.0654006473487243e-05, 7.009198270679917e-06, 3.998662214144133e-05, 1.5119610907277092e-05, 0.00026396935572847724], [0.41690295934677124, 0.0053331442177295685, 0.0014837923226878047, 0.013383976183831692, 0.04633897542953491, 0.050609394907951355, 0.008958258666098118, 0.050291258841753006, 0.0004975793999619782, 6.557715096278116e-05, 0.31323742866516113, 0.010914706625044346, 0.023956771939992905, 0.0010457405587658286, 0.005392167251557112, 0.0008223872864618897, 0.0005025999271310866, 0.05026330426335335], [0.5122829079627991, 0.005566535051912069, 0.0013814177364110947, 0.10206595063209534, 0.0401250422000885, 0.006458235438913107, 0.001401208806782961, 0.010543501935899258, 7.27823717170395e-05, 4.491194704314694e-05, 0.005899252835661173, 0.3013988137245178, 0.0011722436174750328, 4.4329732190817595e-05, 0.0009176994790323079, 3.17638368869666e-05, 5.63097491976805e-05, 0.010537066496908665], [0.08870083093643188, 0.0009028120548464358, 0.0003147684328723699, 0.0008583693415857852, 0.0003239319194108248, 0.001325243036262691, 0.00037135224556550384, 0.004964462947100401, 6.686447250103811e-06, 1.0293360901414417e-05, 0.0031863774638623, 0.00021197699243202806, 0.8793156743049622, 0.005676909349858761, 0.006152795627713203, 0.002662673592567444, 5.35241088073235e-05, 0.004961393773555756], [0.03703493997454643, 0.0004511882143560797, 0.0058209593407809734, 0.0017508795717731118, 0.002227526856586337, 0.011733775958418846, 0.0005065074074082077, 0.004124392755329609, 2.0117299754929263e-06, 1.0014276995207183e-05, 3.1032654078444466e-05, 1.6811654859338887e-05, 0.0006639542407356203, 0.7989490628242493, 0.011034205555915833, 0.12151113897562027, 1.0275533895764966e-05, 0.004121394362300634], [0.09761098027229309, 0.0072177317924797535, 0.003202045802026987, 0.010493570938706398, 0.0026305660139769316, 0.005863823462277651, 0.008223390206694603, 0.1660657823085785, 0.0008801348158158362, 0.00023477806826122105, 0.0010435476433485746, 0.00019575085025280714, 0.0033947741612792015, 0.08688521385192871, 0.4171500504016876, 0.021845387294888496, 0.0011151924263685942, 0.16594728827476501], [0.037100572139024734, 0.0003243070386815816, 0.008809557184576988, 0.0005745005328208208, 0.0005834014737047255, 0.010504172183573246, 0.00014711671974509954, 0.003283532103523612, 2.4186563223338453e-06, 0.00021169953106436878, 2.3732500267215073e-05, 1.9980481738457456e-05, 0.0010989359579980373, 0.4316554367542267, 0.004578051157295704, 0.4977775514125824, 2.3793620130163617e-05, 0.003281275276094675], [0.09668385982513428, 0.002801962196826935, 0.0017192071536555886, 0.002033411990851164, 0.0010661925189197063, 0.0013035498559474945, 0.06394456326961517, 0.2897103726863861, 0.08552973717451096, 0.005140807945281267, 0.0018749397713690996, 0.0016754824900999665, 0.001237424905411899, 0.001635125488974154, 0.001261145225726068, 0.0015869814669713378, 0.1512056440114975, 0.289589524269104], [0.002138751093298197, 0.00031957030296325684, 0.0012486414052546024, 0.0005021782126277685, 0.0001471922150813043, 0.00037346058525145054, 0.0008517515379935503, 0.2916206419467926, 0.17560240626335144, 0.04096778482198715, 0.016696181148290634, 0.010835599154233932, 0.021996134892106056, 0.026632945984601974, 0.008343103341758251, 0.022278469055891037, 0.08789017051458359, 0.29155492782592773]], [[0.021666107699275017, 0.21407239139080048, 0.2005547285079956, 0.08653931319713593, 0.05317966267466545, 0.07244014739990234, 0.03771384060382843, 0.10874711722135544, 0.01670624502003193, 0.01719953492283821, 0.04360039532184601, 0.0029142647981643677, 0.00244432152248919, 0.0017276890575885773, 0.0017993681831285357, 0.0021661303471773863, 0.007836530916392803, 0.10869228094816208], [0.004052462987601757, 0.021947568282485008, 0.23919431865215302, 0.004937307443469763, 0.0004404462524689734, 0.0012528635561466217, 0.02067948877811432, 0.17231342196464539, 0.008274193853139877, 0.2038782387971878, 0.0005966951721347868, 0.0008999836281873286, 0.0008433397160843015, 0.00040884106419980526, 0.00026150161284022033, 0.005645154044032097, 0.14210066199302673, 0.17227353155612946], [0.004032894503325224, 0.026512708514928818, 0.11988885700702667, 0.0069366563111543655, 0.0007886533858254552, 0.00145362364128232, 0.012098325416445732, 0.23383815586566925, 0.0049386098980903625, 0.21953752636909485, 0.002158285351470113, 0.0025267035234719515, 0.0014490664470940828, 0.00040233979234471917, 0.0003192579897586256, 0.0027693170122802258, 0.1265987902879715, 0.23375029861927032], [0.009650912135839462, 0.036195408552885056, 0.2977176606655121, 0.014963374473154545, 0.0004869654949288815, 0.002602607710286975, 0.02138880081474781, 0.0870053619146347, 0.010251347906887531, 0.37838515639305115, 0.00037966904346831143, 0.0005098389810882509, 0.0005717257154174149, 0.00014348805416375399, 3.633650703704916e-05, 0.0018084277398884296, 0.05092282220721245, 0.08698012679815292], [0.023096203804016113, 0.030579233542084694, 0.16933898627758026, 0.028014307841658592, 0.0020434274338185787, 0.011983667500317097, 0.019098104909062386, 0.17186693847179413, 0.026374392211437225, 0.2567598819732666, 0.0018825097940862179, 0.004683643579483032, 0.0022303760051727295, 0.0030825806315988302, 0.0003789809416048229, 0.016115840524435043, 0.060652196407318115, 0.17181861400604248], [0.01391972042620182, 0.016203653067350388, 0.12498446553945541, 0.008557859808206558, 0.000642427708953619, 0.002549248980358243, 0.009172610007226467, 0.05286700651049614, 0.008707382716238499, 0.6594030857086182, 0.002156902337446809, 0.001841633697040379, 0.0018464891472831368, 0.0007740722503513098, 0.00030241278000175953, 0.005002464167773724, 0.03821687772870064, 0.0528515949845314], [0.09384769946336746, 0.032413456588983536, 0.02897675707936287, 0.034552235156297684, 0.003678762586787343, 0.008360813371837139, 0.008671424351632595, 0.34156090021133423, 0.01939394511282444, 0.033503588289022446, 0.0018972273683175445, 0.0033829559106379747, 0.0013939763884991407, 0.0012183415237814188, 0.0004710520152002573, 0.004058591090142727, 0.04120279848575592, 0.34141549468040466], [0.02580040879547596, 0.010319427587091923, 0.0046037063002586365, 0.024968039244413376, 0.0170565377920866, 0.012372422963380814, 0.013925977051258087, 0.3483527898788452, 0.08296313136816025, 0.004419094417244196, 0.008384278044104576, 0.026557784527540207, 0.010917679406702518, 0.014303931966423988, 0.006504778750240803, 0.006509237922728062, 0.03385286033153534, 0.3481878936290741], [0.023603733628988266, 0.07933028787374496, 0.07777489721775055, 0.13375963270664215, 0.07620099931955338, 0.08568195253610611, 0.010809707455337048, 0.1747809201478958, 0.07931829243898392, 0.015624086372554302, 0.04743552207946777, 0.008941630832850933, 0.004871435463428497, 0.0007193558849394321, 0.0005888429586775601, 0.0020045440178364515, 0.003887325990945101, 0.17466695606708527], [0.0001259101409232244, 0.006392784416675568, 0.9336204528808594, 0.00018870012718252838, 4.796634675585665e-05, 0.00022459527826867998, 0.0002337440091650933, 0.020495574921369553, 0.00016424848581664264, 0.016068371012806892, 0.0002120453427778557, 6.048521390766837e-05, 3.899563580489485e-06, 9.941213647834957e-06, 1.7128839999713819e-06, 9.470999066252261e-05, 0.0015678530326113105, 0.020487016066908836], [0.0029651715885847807, 0.03556936979293823, 0.4912947416305542, 0.0007020495249889791, 0.0006074365228414536, 0.0006820547278039157, 0.005633796099573374, 0.14433160424232483, 0.0015317407669499516, 0.12184523046016693, 0.014698156155645847, 0.005907515995204449, 0.0023522262927144766, 0.0007170831086114049, 0.0017987230094149709, 0.012505895458161831, 0.012596992775797844, 0.1442601978778839], [0.006222984753549099, 0.0940578356385231, 0.33427557349205017, 0.006282632239162922, 0.0025040977634489536, 0.004047761671245098, 0.016485268250107765, 0.14239251613616943, 0.009402062743902206, 0.09855040162801743, 0.04229509457945824, 0.01202149223536253, 0.014264372177422047, 0.007097482681274414, 0.009744545444846153, 0.031748924404382706, 0.02626054547727108, 0.14234645664691925], [0.003306315978989005, 0.040133267641067505, 0.31697210669517517, 0.0025134950410574675, 0.0007555820629931986, 0.007763315923511982, 0.01246658805757761, 0.14210174977779388, 0.006077309139072895, 0.2013273686170578, 0.03359627351164818, 0.00436847610399127, 0.010608010925352573, 0.0098935067653656, 0.002708820393308997, 0.03745795041322708, 0.02589484676718712, 0.14205507934093475], [0.002151448279619217, 0.013902489095926285, 0.10603442043066025, 0.002527141710743308, 0.006300575565546751, 0.017435980960726738, 0.0063188038766384125, 0.2478872537612915, 0.01098267175257206, 0.045045558363199234, 0.0036024563014507294, 0.004384548403322697, 0.003902456723153591, 0.06953666359186172, 0.017934206873178482, 0.16909614205360413, 0.025187315419316292, 0.2477697879076004], [0.0019573781173676252, 0.00899300817400217, 0.12050911784172058, 0.0009640741627663374, 0.0008903827401809394, 0.005993370898067951, 0.001316782901994884, 0.3351048231124878, 0.0031826712656766176, 0.04266246780753136, 0.0014220468001440167, 0.0025215279310941696, 0.0026351697742938995, 0.0464591346681118, 0.006683823186904192, 0.07873045653104782, 0.005107504315674305, 0.33486634492874146], [0.001350606675259769, 0.01489256788045168, 0.282688707113266, 0.0020902312826365232, 0.002089892281219363, 0.022914255037903786, 0.005472949706017971, 0.14891861379146576, 0.004262707661837339, 0.1774744987487793, 0.0025929841212928295, 0.0019030945841223001, 0.0013272122014313936, 0.035864390432834625, 0.008899674750864506, 0.10917777568101883, 0.029208578169345856, 0.14887118339538574], [0.012726906687021255, 0.01032362598925829, 0.005195222795009613, 0.008197830989956856, 0.005614818073809147, 0.006206143647432327, 0.005685864947736263, 0.42992720007896423, 0.03766636550426483, 0.0017363539664074779, 0.004249212332069874, 0.006793427746742964, 0.002806057222187519, 0.004005604423582554, 0.0039530410431325436, 0.003357840469107032, 0.02186463214457035, 0.429689884185791], [0.02579837292432785, 0.01031865831464529, 0.004603496752679348, 0.024965297430753708, 0.017054619267582893, 0.012371465563774109, 0.013922249898314476, 0.34837713837623596, 0.08295143395662308, 0.004418636206537485, 0.008382088504731655, 0.02655237913131714, 0.010915007442235947, 0.014300347305834293, 0.006503317505121231, 0.006507096812129021, 0.033846452832221985, 0.34821197390556335]], [[0.006490394007414579, 0.0011318130418658257, 0.0011359135387465358, 0.003593339119106531, 0.0007005541701801121, 0.0012307449942454696, 0.0004162069526501, 0.03835965692996979, 0.01870698854327202, 0.05728498473763466, 0.7049698829650879, 0.034266043454408646, 0.03261067345738411, 0.006769775878638029, 0.008648289367556572, 0.009236937388777733, 0.03610576316714287, 0.03834204375743866], [0.00800966378301382, 0.15977148711681366, 0.03824090585112572, 0.2984657287597656, 0.17591187357902527, 0.10533423721790314, 0.03923729434609413, 0.06477070599794388, 0.0029195116367191076, 0.0024070197250694036, 0.0218388419598341, 0.0024069887585937977, 0.002249176148325205, 0.0006060122977942228, 0.003915839362889528, 0.00061478913994506, 0.008556394837796688, 0.06474359333515167], [0.0031356699764728546, 0.01689271256327629, 0.021812688559293747, 0.07619007676839828, 0.029516998678445816, 0.033731237053871155, 0.007169598247855902, 0.39910876750946045, 0.0022212339099496603, 0.0008275677682831883, 0.0012315352214500308, 0.00115491496399045, 0.0016384209739044309, 0.0008648561197333038, 0.002355307573452592, 0.0005271333502605557, 0.0028073310386389494, 0.3988139033317566], [0.018448282033205032, 0.2246318757534027, 0.0903279110789299, 0.10159283131361008, 0.15388080477714539, 0.09631083905696869, 0.08354620635509491, 0.1024564802646637, 0.002647005720064044, 0.002074327552691102, 0.004067458678036928, 0.0008323404472321272, 0.0004959958605468273, 0.0006386688910424709, 0.0012192621361464262, 0.0003219771897420287, 0.014094367623329163, 0.10241340100765228], [0.016371015459299088, 0.14157068729400635, 0.10112287849187851, 0.11200234293937683, 0.08795607089996338, 0.09402554482221603, 0.05555993318557739, 0.18298475444316864, 0.004233238287270069, 0.0025736880488693714, 0.0056203450076282024, 0.000927536457311362, 0.0005453886114992201, 0.0008323276997543871, 0.0014778926270082593, 0.0006439081626012921, 0.008675162680447102, 0.1828772872686386], [0.004777851980179548, 0.03852260485291481, 0.03639886528253555, 0.0434696227312088, 0.01669018529355526, 0.03134234622120857, 0.01246593613177538, 0.4024730920791626, 0.002210477599874139, 0.0010902403155341744, 0.0017199832946062088, 0.000840015069115907, 0.0005620578886009753, 0.000769564532674849, 0.0003664210962597281, 0.0005601440789178014, 0.003567894222214818, 0.40217268466949463], [0.006526848766952753, 0.09907430410385132, 0.04533185437321663, 0.3682357966899872, 0.11016818135976791, 0.0631822794675827, 0.03593853488564491, 0.12610994279384613, 0.001801087986677885, 0.0022454806603491306, 0.005041090771555901, 0.0008078012033365667, 0.0007169779855757952, 0.00038589490577578545, 0.0009724312694743276, 0.00022325311147142202, 0.0071882158517837524, 0.12605005502700806], [0.009834560565650463, 0.017733655869960785, 0.023159196600317955, 0.02018558792769909, 0.008853329345583916, 0.008355662226676941, 0.010585485026240349, 0.4146430194377899, 0.008130893111228943, 0.006499584298580885, 0.0070143952034413815, 0.0076536089181900024, 0.00463853869587183, 0.0037010512314736843, 0.003046890953555703, 0.003565663704648614, 0.027930116280913353, 0.4144688546657562], [0.014309059828519821, 0.005290920380502939, 0.006279794964939356, 0.005204182118177414, 0.0014291023835539818, 0.004766401369124651, 0.0025706724263727665, 0.11817122995853424, 0.011516338214278221, 0.0570836178958416, 0.46053680777549744, 0.044534165412187576, 0.024741604924201965, 0.018005741760134697, 0.015777330845594406, 0.020454421639442444, 0.07120774686336517, 0.11812087148427963], [0.009786107577383518, 0.003811642760410905, 0.004353285767138004, 0.010602249763906002, 0.002790675265714526, 0.0034177936613559723, 0.0014234905829653144, 0.17037814855575562, 0.048350293189287186, 0.029595108702778816, 0.26249581575393677, 0.05717170611023903, 0.06991247087717056, 0.018042510375380516, 0.07768113166093826, 0.020951006561517715, 0.03893953934311867, 0.1702970564365387], [0.017169594764709473, 0.0022879750467836857, 0.0015562738990411162, 0.0022114883176982403, 0.001281628618016839, 0.002897938247770071, 0.0017467513680458069, 0.03709280118346214, 0.07071344554424286, 0.11124570667743683, 0.1957087218761444, 0.1073639914393425, 0.11136071383953094, 0.029186803847551346, 0.032884545624256134, 0.0801125094294548, 0.1580943614244461, 0.03708473965525627], [0.011835029348731041, 0.007109570782631636, 0.017591042444109917, 0.03109542652964592, 0.0027132555842399597, 0.007140154018998146, 0.0011477230582386255, 0.1257842779159546, 0.04741737246513367, 0.12933789193630219, 0.30472415685653687, 0.036633532494306564, 0.031048458069562912, 0.03624887019395828, 0.014054274186491966, 0.027237141504883766, 0.04315374791622162, 0.12572817504405975], [0.006249197758734226, 0.003340657101944089, 0.005344448611140251, 0.007464536465704441, 0.001776551129296422, 0.0026592568028718233, 0.00039766114787198603, 0.23017331957817078, 0.04211774095892906, 0.081845723092556, 0.23610128462314606, 0.03445175662636757, 0.03449711948633194, 0.02058769389986992, 0.01767847128212452, 0.024961819872260094, 0.020338859409093857, 0.23001384735107422], [0.0030787272844463587, 0.0018525606719776988, 0.0067709931172430515, 0.005218512378633022, 0.0010562207316979766, 0.0022206169087439775, 0.00022533483570441604, 0.36330386996269226, 0.03418305888772011, 0.04166083037853241, 0.06716451048851013, 0.02200399339199066, 0.022831663489341736, 0.022722478955984116, 0.009695667773485184, 0.017926188185811043, 0.015044760890305042, 0.36303994059562683], [0.012182031758129597, 0.007318699732422829, 0.006884124595671892, 0.006507262121886015, 0.0021669473499059677, 0.0019069000845775008, 0.0005439266678877175, 0.3435782194137573, 0.04371805489063263, 0.09544778615236282, 0.07654760032892227, 0.011359521187841892, 0.011711527593433857, 0.008049692958593369, 0.004881396424025297, 0.005199748557060957, 0.018667258322238922, 0.3433292806148529], [0.002725719241425395, 0.002156197791919112, 0.0017573233926668763, 0.0035833173897117376, 0.0004367858055047691, 0.0003616970789153129, 0.00022305166930891573, 0.39218461513519287, 0.020214980468153954, 0.027403125539422035, 0.0827830508351326, 0.01591375842690468, 0.018932394683361053, 0.011774372309446335, 0.00868484377861023, 0.006433181930333376, 0.012570851482450962, 0.3918606638908386], [0.010103399865329266, 0.010783174075186253, 0.017116116359829903, 0.05080138146877289, 0.005468753632158041, 0.0055965278297662735, 0.0030990547966212034, 0.3392944633960724, 0.017402147874236107, 0.03390384465456009, 0.07285657525062561, 0.01723777875304222, 0.01113102212548256, 0.003660115646198392, 0.00551272090524435, 0.00393178965896368, 0.052965473383665085, 0.33913561701774597], [0.009832489304244518, 0.017731083557009697, 0.023155085742473602, 0.020180683583021164, 0.008851515129208565, 0.00835371296852827, 0.010584093630313873, 0.4146599769592285, 0.008128835819661617, 0.006498145870864391, 0.007012079935520887, 0.007651477120816708, 0.004637100268155336, 0.0037000556476414204, 0.0030459959525614977, 0.0035646380856633186, 0.027927448973059654, 0.4144856035709381]], [[0.007065205834805965, 0.006132482085376978, 0.023403408005833626, 0.00982634723186493, 0.005099179223179817, 0.009788447059690952, 0.003221652703359723, 0.30124881863594055, 0.08448820561170578, 0.165086030960083, 0.012971051968634129, 0.008067544549703598, 0.004023935180157423, 0.002674829214811325, 0.0045645455829799175, 0.005513140931725502, 0.045713916420936584, 0.301111102104187], [0.007233350072056055, 0.05001747980713844, 0.3268229067325592, 0.045756299048662186, 0.023861879482865334, 0.04794660955667496, 0.010816123336553574, 0.12887047231197357, 0.002376121934503317, 0.21291103959083557, 0.002156053204089403, 0.0031976760365068913, 0.0011382874799892306, 8.202750177588314e-05, 0.00015486216580029577, 0.0010689856717363, 0.006787348072975874, 0.12880252301692963], [0.010313877835869789, 0.12591610848903656, 0.048415664583444595, 0.0853983610868454, 0.051766205579042435, 0.0782974362373352, 0.03913135826587677, 0.1417546421289444, 0.0043435730040073395, 0.16407492756843567, 0.011638413183391094, 0.027739493176341057, 0.011150196194648743, 0.0009288157452829182, 0.0031254002824425697, 0.01874602399766445, 0.03553593531250954, 0.14172348380088806], [0.004559612367302179, 0.14592450857162476, 0.2416878044605255, 0.018995899707078934, 0.027574412524700165, 0.024198755621910095, 0.01741545833647251, 0.24284960329532623, 0.0008624232723377645, 0.02193279191851616, 0.0007057687034830451, 0.0013458245666697621, 0.0008302739006467164, 0.00023461892851628363, 0.00022609585721511394, 0.0007351842359639704, 0.007222023326903582, 0.24269887804985046], [0.003418954322114587, 0.07661040872335434, 0.14934059977531433, 0.027147402986884117, 0.013820446096360683, 0.03959297016263008, 0.009060405194759369, 0.32815641164779663, 0.0005408389843069017, 0.013370566070079803, 0.0007917156326584518, 0.0009572832495905459, 0.0004436059680301696, 0.00021660550555679947, 0.00013423548080027103, 0.00032569427276030183, 0.008131736889481544, 0.32794007658958435], [0.008602975867688656, 0.08282556384801865, 0.3053935170173645, 0.023455241695046425, 0.021215252578258514, 0.037370361387729645, 0.021856650710105896, 0.23099714517593384, 0.002096298150718212, 0.012580648064613342, 0.00178138364572078, 0.003087547840550542, 0.00105760816950351, 0.003101014532148838, 0.0006474469555541873, 0.0009451505029574037, 0.012127549387514591, 0.2308586835861206], [0.006145949941128492, 0.017007773742079735, 0.09145116060972214, 0.014242022298276424, 0.01123705692589283, 0.031113265082240105, 0.016219886019825935, 0.3933916389942169, 0.0020156146492809057, 0.011193164624273777, 0.000835849903523922, 0.0012307940050959587, 0.00030808139126747847, 0.0008417611243203282, 0.00041585814324207604, 0.0006975590367801487, 0.008502845652401447, 0.393149733543396], [0.0182955265045166, 0.011533164419233799, 0.0038304778281599283, 0.011797847226262093, 0.008848976343870163, 0.007533586118370295, 0.013634603470563889, 0.38545721769332886, 0.009614367038011551, 0.0069218291901052, 0.017657971009612083, 0.018942883238196373, 0.015365640632808208, 0.006718448828905821, 0.0068044280633330345, 0.005994752980768681, 0.06566756218671799, 0.38538074493408203], [0.006676082033663988, 0.002007888862863183, 0.009058489464223385, 0.0013850495452061296, 0.0007333643734455109, 0.001723536173813045, 0.0010282605653628707, 0.4099805951118469, 0.015492275357246399, 0.09189413487911224, 0.003293881192803383, 0.004176429007202387, 0.001756592420861125, 0.0027707330882549286, 0.001341667608357966, 0.0034803892485797405, 0.03345203027129173, 0.4097486138343811], [0.004222735296934843, 0.01245082262903452, 0.10468698292970657, 0.006460479460656643, 0.0011615020921453834, 0.005781529471278191, 0.0014881822280585766, 0.09437381476163864, 0.0015681586228311062, 0.48187410831451416, 0.05489327758550644, 0.04226788878440857, 0.03583763167262077, 0.00012878239795099944, 0.0007983724353834987, 0.021268682554364204, 0.0364011712372303, 0.09433592855930328], [0.0012986232759431005, 0.0015676020411774516, 0.009153150022029877, 0.00048563204472884536, 0.00026010253350250423, 0.0002518952824175358, 0.00019228149903938174, 0.3455808460712433, 0.000588804658036679, 0.2475433051586151, 0.0037374431267380714, 0.010429548099637032, 0.0018438748084008694, 0.0002893600903917104, 0.0006938382866792381, 0.0012635343009606004, 0.029452519491314888, 0.3453676700592041], [0.0022740166168659925, 0.0013499644119292498, 0.01357035618275404, 0.0008809705032035708, 0.0004941539955325425, 0.0012116626603528857, 0.0005230690003372729, 0.41780105233192444, 0.0023135135415941477, 0.08425747603178024, 0.0030617916490882635, 0.007032271474599838, 0.0041477270424366, 0.002367089968174696, 0.003027859842404723, 0.004887694958597422, 0.03324025869369507, 0.41755905747413635], [0.001862861099652946, 0.0007444010698236525, 0.0037125719245523214, 0.0011326111853122711, 0.0005776046891696751, 0.0017818398773670197, 0.001141619635745883, 0.41413241624832153, 0.000900838291272521, 0.02334659732878208, 0.007886509411036968, 0.018476249650120735, 0.006891705561429262, 0.018449291586875916, 0.008474410511553288, 0.005782661028206348, 0.07078692317008972, 0.41391900181770325], [0.0010048565454781055, 9.533227421343327e-05, 0.00016270675405394286, 8.139081910485402e-05, 0.0005068757454864681, 0.0004975615302100778, 0.0004378907033242285, 0.4482923448085785, 0.0037505694199353456, 0.0008229029481299222, 0.004364596214145422, 0.014322122558951378, 0.004308164119720459, 0.008696288801729679, 0.009163247421383858, 0.005125922616571188, 0.05027499422430992, 0.44809210300445557], [0.0008486209553666413, 0.00011925188300665468, 0.00020196237892378122, 8.127417822834104e-05, 0.00022132406593300402, 7.85752636147663e-05, 0.0002250190736958757, 0.4771670401096344, 0.0006658027996309102, 0.001879681833088398, 0.0010496588656678796, 0.006202373653650284, 0.0019209255697205663, 0.004571006167680025, 0.006186334881931543, 0.0024336236529052258, 0.019314764067530632, 0.47683268785476685], [0.01005719043314457, 0.0043390654027462006, 0.016896333545446396, 0.0018567603547126055, 0.002026359550654888, 0.006532595492899418, 0.004569150973111391, 0.21925221383571625, 0.018241025507450104, 0.04142820090055466, 0.02260487712919712, 0.048833414912223816, 0.03453337028622627, 0.07904116809368134, 0.05696048587560654, 0.01823863573372364, 0.19540287554264069, 0.21918630599975586], [0.002404416911303997, 0.0007968454156070948, 0.0019106515683233738, 0.0016974007012322545, 0.0005678660236299038, 0.0012422464787960052, 0.0006914600962772965, 0.46717560291290283, 0.004122971091419458, 0.009228494018316269, 0.003299559699371457, 0.005985158495604992, 0.0027839227113872766, 0.004171378444880247, 0.0018623977666720748, 0.002933064941316843, 0.02220151759684086, 0.4669250547885895], [0.018290651962161064, 0.011530481278896332, 0.003829855239018798, 0.011795339174568653, 0.008846825920045376, 0.007531921844929457, 0.013631012290716171, 0.38548389077186584, 0.009612529538571835, 0.0069196587428450584, 0.0176529623568058, 0.018937375396490097, 0.015360943041741848, 0.006718080025166273, 0.006802627816796303, 0.005993215832859278, 0.06565523892641068, 0.385407418012619]], [[0.011528701521456242, 0.054237473756074905, 0.02721344120800495, 0.12930776178836823, 0.02720172517001629, 0.13311035931110382, 0.10641521960496902, 0.20495015382766724, 0.04201659560203552, 0.014715339988470078, 0.0017968160100281239, 0.0011737305903807282, 0.0009911875240504742, 0.0009450296638533473, 8.708091627340764e-05, 0.00212856475263834, 0.037335146218538284, 0.20484575629234314], [0.030130671337246895, 0.06721463799476624, 0.01773366704583168, 0.07397180795669556, 0.04931989684700966, 0.018314698711037636, 0.05172189697623253, 0.33469656109809875, 0.002740624826401472, 0.002090616850182414, 0.00031511817360296845, 0.00042963854502886534, 0.00019665522268041968, 0.0001331356179434806, 0.00020181645231787115, 0.00021210822160355747, 0.01602344773709774, 0.33455297350883484], [0.021905558183789253, 0.046953968703746796, 0.02222965471446514, 0.02199309691786766, 0.013661190867424011, 0.00863358099013567, 0.02813616581261158, 0.4082218110561371, 0.0017256283899769187, 0.0036374698393046856, 0.0003374071093276143, 0.00047666713362559676, 0.0002408519940217957, 0.0002375279291300103, 0.00030257803155109286, 0.00016552300076000392, 0.013138528913259506, 0.4080027639865875], [0.02252563089132309, 0.07945697754621506, 0.014320066198706627, 0.017024261876940727, 0.01162798423320055, 0.004297558683902025, 0.02859124355018139, 0.401214063167572, 0.0027216868475079536, 0.00044757549767382443, 7.260489655891433e-05, 0.0001300082221860066, 3.4180535294581205e-05, 4.710323628387414e-05, 1.7441236195736565e-05, 3.444434696575627e-05, 0.0164041630923748, 0.4010329246520996], [0.010347781702876091, 0.054033420979976654, 0.0053180824033916, 0.02547752484679222, 0.014010565355420113, 0.001985415816307068, 0.017429152503609657, 0.43099191784858704, 0.0013750665821135044, 0.0003619804629124701, 3.988966636825353e-05, 8.389159484067932e-05, 1.2218052688695025e-05, 1.0855452273972332e-05, 5.3779349400429055e-06, 1.428339510312071e-05, 0.007784753106534481, 0.4307178258895874], [0.018477382138371468, 0.05871026590466499, 0.012478077784180641, 0.04830429330468178, 0.02442808821797371, 0.007472063880413771, 0.015499564819037914, 0.39893776178359985, 0.0032446926925331354, 0.0008435590425506234, 0.00021153494890313596, 0.000356239324901253, 0.00013605182175524533, 0.00010538903734413907, 5.0781603931682184e-05, 8.062084089033306e-05, 0.011910319328308105, 0.39875328540802], [0.058276500552892685, 0.04552600905299187, 0.007141733076423407, 0.06008978188037872, 0.056633900851011276, 0.019338931888341904, 0.018752768635749817, 0.360116183757782, 0.007459891494363546, 0.0009672177257016301, 0.00015915289986878633, 0.00015036440163385123, 6.588760152226314e-05, 2.19999419641681e-05, 2.3232491003000177e-05, 2.054629112535622e-05, 0.005366697441786528, 0.3598892390727997], [0.006375780329108238, 0.004033134784549475, 0.005677571054548025, 0.004202685318887234, 0.003724876558408141, 0.0047480217181146145, 0.00433821277692914, 0.4766741991043091, 0.00209832563996315, 0.0017323318170383573, 0.0009401958086527884, 0.0011404091492295265, 0.0006154117290861905, 0.001297605107538402, 0.000467635050881654, 0.0007299950812011957, 0.004892949014902115, 0.476310670375824], [0.02139473892748356, 0.01064989622682333, 0.004096803721040487, 0.014623766764998436, 0.011167708784341812, 0.01625748723745346, 0.10125309228897095, 0.3580736219882965, 0.007981712929904461, 0.007483798544853926, 0.0016078919870778918, 0.0008148069609887898, 0.00042509924969635904, 0.00015069983783178031, 6.730470340698957e-05, 0.00023842712107580155, 0.08588311821222305, 0.3578300476074219], [0.013039274141192436, 0.02705606259405613, 0.00688618328422308, 0.010372494347393513, 0.004922821186482906, 0.005470875650644302, 0.07090236246585846, 0.33862075209617615, 0.014479460194706917, 0.034266188740730286, 0.007711159065365791, 0.007623240351676941, 0.0017623944440856576, 0.0017239321023225784, 0.0012980999890714884, 0.0014633794780820608, 0.11397463083267212, 0.3384266495704651], [0.017331188544631004, 0.032682958990335464, 0.011563564650714397, 0.009640369564294815, 0.007162199355661869, 0.03300080820918083, 0.29163649678230286, 0.0869867131114006, 0.16190385818481445, 0.10005512833595276, 0.008930199779570103, 0.005299144424498081, 0.0012920401059091091, 0.002452644519507885, 4.004616857855581e-05, 0.001417778548784554, 0.14166638255119324, 0.08693838864564896], [0.024272656068205833, 0.03268452733755112, 0.01282554492354393, 0.012100198306143284, 0.006049585994333029, 0.011142182163894176, 0.239413782954216, 0.1610245555639267, 0.15628933906555176, 0.04542924836277962, 0.00712569709867239, 0.002432897686958313, 0.0018712962046265602, 0.0020789087284356356, 0.00016168583533726633, 0.000977438990958035, 0.1231834888458252, 0.16093702614307404], [0.027165468782186508, 0.013020861893892288, 0.014759107492864132, 0.007360607851296663, 0.004202057141810656, 0.014214088208973408, 0.05916544422507286, 0.14478328824043274, 0.18289409577846527, 0.1102871298789978, 0.08099158108234406, 0.02466009370982647, 0.02500559203326702, 0.01911466009914875, 0.002016629558056593, 0.015311318449676037, 0.11034025251865387, 0.14470770955085754], [0.01400767546147108, 0.026919322088360786, 0.020397137850522995, 0.0052842325530946255, 0.0030121931340545416, 0.005896985065191984, 0.11226453632116318, 0.16386951506137848, 0.1256628930568695, 0.10081946849822998, 0.054485369473695755, 0.04963555186986923, 0.020481882616877556, 0.010506516322493553, 0.005927978549152613, 0.011666379868984222, 0.10538679361343384, 0.1637754589319229], [0.04591706767678261, 0.019192958250641823, 0.0050673410296440125, 0.007772371638566256, 0.003931316081434488, 0.0037589913699775934, 0.09298351407051086, 0.1706009805202484, 0.088727667927742, 0.06450195610523224, 0.03869980573654175, 0.06784173101186752, 0.027600158005952835, 0.011853359639644623, 0.005446311552077532, 0.002757043344900012, 0.17283150553703308, 0.17051583528518677], [0.014584186486899853, 0.009322872385382652, 0.008526623249053955, 0.0029394717421382666, 0.0009729793528094888, 0.0037885578349232674, 0.07155149430036545, 0.31793031096458435, 0.02416328340768814, 0.060254137963056564, 0.012104470282793045, 0.023181574419140816, 0.014997605234384537, 0.00908589456230402, 0.00975025724619627, 0.006368233822286129, 0.09276486188173294, 0.3177131414413452], [0.04730251803994179, 0.013121413066983223, 0.005337106063961983, 0.00891196820884943, 0.006792128086090088, 0.006959282327443361, 0.026463648304343224, 0.3754878044128418, 0.045536722987890244, 0.01527316216379404, 0.012610168196260929, 0.01076988223940134, 0.0033724470995366573, 0.0009249246795661747, 0.0004930008435621858, 0.0005539054400287569, 0.0448472686111927, 0.37524259090423584], [0.006375173572450876, 0.0040322281420230865, 0.005676029250025749, 0.004201323259621859, 0.003723451402038336, 0.0047464449889957905, 0.004337191581726074, 0.4766797423362732, 0.002097907941788435, 0.001732012489810586, 0.0009399947593919933, 0.0011400439543649554, 0.0006152486894279718, 0.0012972031254321337, 0.000467526784632355, 0.0007297185366041958, 0.0048921681009233, 0.4763166606426239]], [[0.007102787494659424, 0.009760402143001556, 0.0016009225510060787, 0.03353908285498619, 0.020473118871450424, 0.008725096471607685, 0.02029731124639511, 0.25741010904312134, 0.16263630986213684, 0.006516450084745884, 0.013156004250049591, 0.03855215385556221, 0.019644318148493767, 0.0025722947902977467, 0.011170662008225918, 0.0034595842007547617, 0.12605373561382294, 0.25732967257499695], [0.0059470864944159985, 0.036954473704099655, 0.046262867748737335, 0.19597771763801575, 0.15340659022331238, 0.04713646322488785, 0.05318642780184746, 0.16415517032146454, 0.08054576069116592, 0.006746793165802956, 0.0012086376082152128, 0.006392796523869038, 0.001633533975109458, 0.0015386559534817934, 0.001687744166702032, 0.0008567022741772234, 0.032270245254039764, 0.16409240663051605], [0.005190955940634012, 0.01486253086477518, 0.02926573157310486, 0.04020613804459572, 0.056116733700037, 0.020893240347504616, 0.044811148196458817, 0.3384983539581299, 0.059014350175857544, 0.0029771695844829082, 0.0011134358355775476, 0.006708336062729359, 0.0010651485063135624, 0.0006724871345795691, 0.0004612368065863848, 0.0007512632291764021, 0.03908266872167587, 0.33830907940864563], [0.00614264328032732, 0.051796622574329376, 0.029166098684072495, 0.13552556931972504, 0.16507147252559662, 0.026538753882050514, 0.07765547186136246, 0.22391259670257568, 0.01842495985329151, 0.003193104173988104, 0.0009989371756091714, 0.006710894405841827, 0.0004448162508197129, 0.00043019428267143667, 0.0011673257686197758, 0.00029575719963759184, 0.028703905642032623, 0.22382089495658875], [0.0021886294707655907, 0.01857449859380722, 0.010522926226258278, 0.07945528626441956, 0.12380620092153549, 0.0231724064797163, 0.06391123682260513, 0.28614968061447144, 0.031654056161642075, 0.0020006359554827213, 0.0019043951760977507, 0.0244735199958086, 0.001640762435272336, 0.0006452033994719386, 0.0014693917473778129, 0.0007650083280168474, 0.041634753346443176, 0.2860313951969147], [0.002833138220012188, 0.036932170391082764, 0.03098175674676895, 0.05929810553789139, 0.07016408443450928, 0.03553943708539009, 0.028853051364421844, 0.3325783610343933, 0.03314932808279991, 0.003207273781299591, 0.0017992042703554034, 0.008707494474947453, 0.001243322272785008, 0.000675863993819803, 0.0006381431012414396, 0.0008576338877901435, 0.020140862092375755, 0.3324007987976074], [0.0026471104938536882, 0.017526663839817047, 0.007580991368740797, 0.060689087957143784, 0.22612027823925018, 0.038697175681591034, 0.043678443878889084, 0.2704411745071411, 0.01878707855939865, 0.0010377460857853293, 0.00046127213863655925, 0.005291948094964027, 0.0008293152786791325, 0.0005530249909497797, 0.0012306584976613522, 0.0003710864402819425, 0.03374448046088219, 0.27031245827674866], [0.056961409747600555, 0.009968402795493603, 0.004784039221704006, 0.003147813258692622, 0.005059734918177128, 0.004263469949364662, 0.00917611550539732, 0.4092007875442505, 0.004630301147699356, 0.006308042909950018, 0.008962309919297695, 0.006886001210659742, 0.009120973758399487, 0.004487775266170502, 0.00294028059579432, 0.009615054354071617, 0.035458069294691086, 0.40902939438819885], [0.005293082445859909, 0.011015460826456547, 0.0045346589758992195, 0.10305464267730713, 0.107365183532238, 0.033651985228061676, 0.036609821021556854, 0.24388639628887177, 0.04631182551383972, 0.0024154288694262505, 0.00950362253934145, 0.03279130533337593, 0.008190811611711979, 0.0038863979279994965, 0.005534972529858351, 0.0014821701915934682, 0.100704126060009, 0.2437680959701538], [0.026736753061413765, 0.00920577347278595, 0.016680430620908737, 0.010594481602311134, 0.01880458928644657, 0.007805191446095705, 0.011724095791578293, 0.33949270844459534, 0.0564594492316246, 0.013237079605460167, 0.006979082245379686, 0.017343418672680855, 0.008569139987230301, 0.0031484311912208796, 0.003653479041531682, 0.0030012058559805155, 0.10725878924131393, 0.33930596709251404], [0.025324441492557526, 0.016434580087661743, 0.02178897149860859, 0.05555824935436249, 0.09438662230968475, 0.04813609644770622, 0.011558497324585915, 0.18209709227085114, 0.12942489981651306, 0.024509696289896965, 0.03194648399949074, 0.05713570490479469, 0.013905363157391548, 0.003940650261938572, 0.006215511821210384, 0.0072084045968949795, 0.08841653913259506, 0.18201212584972382], [0.009710355661809444, 0.01674424111843109, 0.03122565522789955, 0.05929179489612579, 0.21420139074325562, 0.09645689278841019, 0.008308016695082188, 0.06534264981746674, 0.1764276623725891, 0.038781870156526566, 0.027040774002671242, 0.053436774760484695, 0.01670089177787304, 0.008527557365596294, 0.01634928397834301, 0.008361243642866611, 0.08776841312646866, 0.06532452255487442], [0.01613941788673401, 0.03974241018295288, 0.1527465581893921, 0.05243587866425514, 0.043006785213947296, 0.10094435513019562, 0.005052422638982534, 0.11505065858364105, 0.06285449117422104, 0.0977252721786499, 0.01674591563642025, 0.009632403030991554, 0.020437736064195633, 0.04057471454143524, 0.023716924712061882, 0.04972586780786514, 0.03847137838602066, 0.11499683558940887], [0.02354186400771141, 0.024907272309064865, 0.1435699462890625, 0.03602318838238716, 0.023998267948627472, 0.03552643954753876, 0.005635477136820555, 0.13283555209636688, 0.11568056046962738, 0.13890068233013153, 0.011065718717873096, 0.020565956830978394, 0.01760556548833847, 0.022415410727262497, 0.028424428775906563, 0.019881675019860268, 0.0666411817073822, 0.1327807605266571], [0.022522306069731712, 0.019050374627113342, 0.12439615279436111, 0.0437474325299263, 0.024538012221455574, 0.07011444866657257, 0.00726452749222517, 0.19419321417808533, 0.08179087936878204, 0.0490943007171154, 0.011212260462343693, 0.04860103875398636, 0.022956663742661476, 0.02367125079035759, 0.005138167645782232, 0.01573059894144535, 0.04190340265631676, 0.19407500326633453], [0.016246741637587547, 0.030979547649621964, 0.15724162757396698, 0.02507607266306877, 0.027815988287329674, 0.0383831225335598, 0.005896523129194975, 0.1414041370153427, 0.04573839157819748, 0.12167516350746155, 0.006594080477952957, 0.01921323500573635, 0.018827741965651512, 0.05242546647787094, 0.05709061771631241, 0.03316973149776459, 0.06088057532906532, 0.14134125411510468], [0.008390429429709911, 0.003748873248696327, 0.0022748345509171486, 0.010337778367102146, 0.03177941218018532, 0.007678635884076357, 0.012900236994028091, 0.35861900448799133, 0.026506569236516953, 0.004345961846411228, 0.003360471222549677, 0.015223859809339046, 0.004206427838653326, 0.0012987389927729964, 0.003404877381399274, 0.001674624509178102, 0.14579027891159058, 0.35845890641212463], [0.056954316794872284, 0.00996638648211956, 0.004782998468726873, 0.0031471974216401577, 0.005059034563601017, 0.004262750968337059, 0.00917469896376133, 0.4092165231704712, 0.004629152361303568, 0.006306655704975128, 0.00895994994789362, 0.006884371861815453, 0.009118461050093174, 0.004486319608986378, 0.0029394924640655518, 0.009612462483346462, 0.03545437753200531, 0.40904492139816284]], [[0.0066305967047810555, 0.01580345630645752, 0.0040158540941774845, 0.4263521730899811, 0.046586956828832626, 0.12947706878185272, 0.09570223838090897, 0.1313149482011795, 0.00436998438090086, 0.0002532796061132103, 0.0007204607245512307, 0.00023264475748874247, 0.0004055383033119142, 6.878169369883835e-05, 0.00010846233635675162, 3.875118636642583e-05, 0.006672313436865807, 0.13124652206897736], [0.04126134514808655, 0.010204151272773743, 0.024260113015770912, 0.016467217355966568, 0.003642029594630003, 0.03397466242313385, 0.013629022054374218, 0.41925501823425293, 0.008966125547885895, 0.0003786943561863154, 0.000160019684699364, 0.00037253694608807564, 2.601123742351774e-05, 0.00024672149447724223, 2.051521369139664e-05, 0.0002893713244702667, 0.0078124492429196835, 0.4190339744091034], [0.031770143657922745, 0.10870874673128128, 0.03764163702726364, 0.05476754903793335, 0.018123459070920944, 0.13684725761413574, 0.024098902940750122, 0.2751730978488922, 0.007983311079442501, 0.005016759037971497, 0.0012208035914227366, 0.002105941530317068, 0.00020371335267554969, 0.0017775720916688442, 0.0001676483516348526, 0.0019228404853492975, 0.017399217933416367, 0.27507150173187256], [0.013640441931784153, 0.02683480642735958, 0.006268450990319252, 0.016705112531781197, 0.005117951892316341, 0.02258526347577572, 0.008502642624080181, 0.4398016035556793, 0.009291453287005424, 0.0005745891248807311, 0.0001804022176656872, 0.00030799361411482096, 2.1994870621711016e-05, 0.00011971703497692943, 1.6065248928498477e-05, 0.00024879921693354845, 0.01024728175252676, 0.43953534960746765], [0.010035095736384392, 0.025803711265325546, 0.013055582530796528, 0.07138121873140335, 0.014869983308017254, 0.01894157938659191, 0.006507670506834984, 0.4131014049053192, 0.0038774842396378517, 0.0005826012929901481, 0.0003163070068694651, 0.00026603860897012055, 6.20315404376015e-05, 9.131369006354362e-05, 2.8971715437364765e-05, 0.0018592940177768469, 0.006381368730217218, 0.41283831000328064], [0.03325716778635979, 0.050601787865161896, 0.010358616709709167, 0.268787145614624, 0.10390398651361465, 0.02643989399075508, 0.025430072098970413, 0.21592293679714203, 0.012378187850117683, 0.0011926514562219381, 0.001136707840487361, 0.0013102462980896235, 0.0005072283674962819, 0.0003469582588877529, 0.0013521937653422356, 0.002272832440212369, 0.028962470591068268, 0.21583889424800873], [0.027621397748589516, 0.011487078852951527, 0.012888765893876553, 0.07383536547422409, 0.04610864445567131, 0.03245430812239647, 0.032126955687999725, 0.3661448657512665, 0.009207937866449356, 0.000938081881031394, 0.0004940330400131643, 0.0010819995077326894, 0.00102220568805933, 0.0003784167056437582, 0.0012624813243746758, 0.0009011913207359612, 0.016089266166090965, 0.3659570515155792], [0.04305632784962654, 0.02233712375164032, 0.02576764114201069, 0.02606096677482128, 0.018852701410651207, 0.02201680652797222, 0.03822287172079086, 0.2820354700088501, 0.014198416844010353, 0.010577303357422352, 0.010965880937874317, 0.01426728256046772, 0.01262750569730997, 0.023771146312355995, 0.026261262595653534, 0.02625400200486183, 0.10073482245206833, 0.28199249505996704], [0.032033778727054596, 0.0010692835785448551, 0.0010314369574189186, 0.006944156251847744, 0.002281618071720004, 0.0020238899160176516, 0.013113769702613354, 0.39806950092315674, 0.02143007330596447, 0.0019483031937852502, 0.0005346675752662122, 0.0012402641586959362, 0.0006596189923584461, 0.001635891618207097, 0.0022678005043417215, 0.0007822001934982836, 0.1150999590754509, 0.39783382415771484], [0.019556136801838875, 0.00216502882540226, 0.0050071789883077145, 0.0049835857935249805, 0.0010128094581887126, 0.006861844565719366, 0.0034731829073280096, 0.4026062786579132, 0.09605776518583298, 0.005283326841890812, 0.005764338653534651, 0.004983127117156982, 0.00024710697471164167, 0.0028765290044248104, 0.0001459544146200642, 0.0009141254122368991, 0.035640086978673935, 0.40242165327072144], [0.026613907888531685, 0.0008175998227670789, 0.0007449227850884199, 0.0007702913717366755, 0.0006906467606313527, 0.0017040771199390292, 0.0025470806285738945, 0.3826439082622528, 0.07682577520608902, 0.012663456611335278, 0.012795879505574703, 0.04006350412964821, 0.005559956654906273, 0.0019086379325017333, 0.0001451418356737122, 0.001498522120527923, 0.04957786947488785, 0.3824288547039032], [0.012242220342159271, 0.0028645494021475315, 0.0034075663425028324, 0.002500425558537245, 0.0007093750173225999, 0.005584878847002983, 0.005910238716751337, 0.3741600215435028, 0.09756489843130112, 0.018415842205286026, 0.020218566060066223, 0.01419015321880579, 0.007458850275725126, 0.005804592277854681, 0.00031233581830747426, 0.00974093284457922, 0.044961098581552505, 0.3739534914493561], [0.01221540942788124, 0.0004111038288101554, 0.0005061092087998986, 0.00044226960744708776, 0.00017532033962197602, 0.002729256171733141, 0.005382895935326815, 0.24820296466350555, 0.05283341556787491, 0.028117872774600983, 0.09409227222204208, 0.1617394983768463, 0.026194920763373375, 0.009609011933207512, 0.006369629874825478, 0.01565433107316494, 0.0872550755739212, 0.2480686604976654], [0.004077843390405178, 0.0012604896910488605, 0.0005061991396360099, 0.0011054676724597812, 0.00040310597978532314, 0.004709941800683737, 0.0029859431087970734, 0.20387011766433716, 0.015456938184797764, 0.007602012250572443, 0.05962659791111946, 0.16652652621269226, 0.049708928912878036, 0.017274677753448486, 0.037594228982925415, 0.16079136729240417, 0.06270938366651535, 0.20379017293453217], [0.0041514793410897255, 0.00035947992000728846, 0.00030754439649172127, 0.0003878830175381154, 0.00015078675642143935, 0.0006799915572628379, 0.004491663072258234, 0.39818114042282104, 0.007402351126074791, 0.004963025450706482, 0.03675217926502228, 0.05180609971284866, 0.015306713990867138, 0.006330129690468311, 0.012193397618830204, 0.0035448495764285326, 0.05504114553332329, 0.397950142621994], [0.0022309659980237484, 0.0008986527682282031, 0.0009199268533848226, 0.000990656204521656, 0.0006562622147612274, 0.0017419569194316864, 0.004413938615471125, 0.14258483052253723, 0.023323802277445793, 0.029961731284856796, 0.045119863003492355, 0.2266373187303543, 0.04524458572268486, 0.04118739441037178, 0.1941700279712677, 0.023261047899723053, 0.0741381049156189, 0.14251889288425446], [0.02180439606308937, 0.0019952617585659027, 0.0012766319559887052, 0.004251405596733093, 0.0023202260490506887, 0.002992167603224516, 0.003770676674321294, 0.4104235768318176, 0.023640001192688942, 0.004067805130034685, 0.004525755066424608, 0.011676747351884842, 0.0056276204995810986, 0.002898591570556164, 0.011798979714512825, 0.004734511021524668, 0.07195307314395905, 0.41024258732795715], [0.04304874315857887, 0.022332509979605675, 0.025762200355529785, 0.02605695091187954, 0.01884884387254715, 0.02201189659535885, 0.038212139159440994, 0.2820638120174408, 0.014196374453604221, 0.010576396249234676, 0.010964851826429367, 0.014266529120504856, 0.012627272866666317, 0.023767102509737015, 0.02625987119972706, 0.02625209093093872, 0.10073161125183105, 0.28202083706855774]], [[0.0033399155363440514, 0.0029845875687897205, 0.007724374067038298, 0.0005362462834455073, 0.0010496329050511122, 0.00045786896953359246, 0.0017961272969841957, 0.21101641654968262, 0.08305753767490387, 0.06400678306818008, 0.02963855490088463, 0.15263386070728302, 0.027867291122674942, 0.07281734049320221, 0.009735890664160252, 0.023276379331946373, 0.09717297554016113, 0.21088826656341553], [0.014531627297401428, 0.07280654460191727, 0.22719933092594147, 0.02530909888446331, 0.15561768412590027, 0.04027295485138893, 0.05885831266641617, 0.1800381988286972, 0.007783154491335154, 0.0026416415348649025, 0.0015510086668655276, 0.014951306395232677, 0.002129750791937113, 0.0038011076394468546, 0.0008755263406783342, 0.0012696057092398405, 0.010417290963232517, 0.17994588613510132], [0.010302634909749031, 0.03137285262346268, 0.06847856938838959, 0.03154530003666878, 0.07303839176893234, 0.018173839896917343, 0.013618700206279755, 0.36805567145347595, 0.004205843433737755, 0.002327928552404046, 0.0009055281989276409, 0.003912975080311298, 0.0008235336863435805, 0.0006086729699745774, 0.000419836986111477, 0.000727167702279985, 0.0036720335483551025, 0.3678104877471924], [0.015339684672653675, 0.1177988275885582, 0.27887463569641113, 0.017734985798597336, 0.08536671847105026, 0.02111276052892208, 0.05812150985002518, 0.19031812250614166, 0.004981769248843193, 0.001890630112029612, 0.0007492313161492348, 0.0053736562840640545, 0.001162083470262587, 0.0014571858337149024, 0.0002330234565306455, 0.0005575380637310445, 0.008717043325304985, 0.1902107149362564], [0.013886078260838985, 0.06240703910589218, 0.1573222428560257, 0.021269135177135468, 0.0634448379278183, 0.01946648396551609, 0.12184803932905197, 0.2584213614463806, 0.0026020475197583437, 0.0006268168799579144, 0.0003668776771519333, 0.002516228472813964, 0.0005176659906283021, 0.0007713766535744071, 0.0001254710223292932, 0.0003027084458153695, 0.015822937712073326, 0.2582825720310211], [0.0053745717741549015, 0.04830382019281387, 0.05676524341106415, 0.01119735836982727, 0.052615221589803696, 0.010106443427503109, 0.02368035539984703, 0.38853171467781067, 0.003081054426729679, 0.0005068880273029208, 0.0008881949470378458, 0.0017795037711039186, 0.0011406297562643886, 0.0008831166196614504, 0.00028633163310587406, 0.00036280901986174285, 0.006242114119231701, 0.38825464248657227], [0.017168356105685234, 0.10164614766836166, 0.17372436821460724, 0.04831669107079506, 0.13951998949050903, 0.016451139003038406, 0.027258438989520073, 0.22189389169216156, 0.007943403907120228, 0.0035111689940094948, 0.0012013231171295047, 0.010391317307949066, 0.000904558808542788, 0.0019622051622718573, 0.0007146630086936057, 0.0011531568598002195, 0.004475039429962635, 0.22176410257816315], [0.002765756333246827, 0.007708872202783823, 0.008883612230420113, 0.007915610447525978, 0.0015551794786006212, 0.004186165984719992, 0.004273642785847187, 0.45814138650894165, 0.0028304869774729013, 0.004535026382654905, 0.003438361454755068, 0.0027105563785880804, 0.004969637840986252, 0.004666666500270367, 0.0015386472223326564, 0.002905077999457717, 0.01909908466041088, 0.4578762650489807], [0.006149673834443092, 0.0025199465453624725, 0.00780907366424799, 0.0009449123754166067, 0.001235715113580227, 0.0003130486875306815, 0.0009258587961085141, 0.2268964946269989, 0.03297567367553711, 0.051644466817379, 0.024110009893774986, 0.2724580764770508, 0.02262204885482788, 0.05249539390206337, 0.004038785584270954, 0.016149096190929413, 0.04996563121676445, 0.22674605250358582], [0.0015214119339361787, 0.00041248122579418123, 0.0021518943831324577, 0.00020919047528877854, 0.0005820563528686762, 0.0002124161401297897, 0.00044491462176665664, 0.2987601161003113, 0.031818486750125885, 0.008146454580128193, 0.009831147268414497, 0.20394669473171234, 0.023465469479560852, 0.04798167943954468, 0.002557532163336873, 0.018075358122587204, 0.05131560564041138, 0.2985670864582062], [0.0019456412410363555, 0.0008667836664244533, 0.002609026385471225, 6.628697883570567e-05, 0.00032179453410208225, 0.00015472491213586181, 0.0007586561841890216, 0.16365259885787964, 0.03722698241472244, 0.017458267509937286, 0.03031746670603752, 0.27741602063179016, 0.07421446591615677, 0.08447925001382828, 0.004833051469177008, 0.02803144045174122, 0.11208617687225342, 0.16356134414672852], [0.0062008751556277275, 0.0010518189519643784, 0.008549364283680916, 0.0003560901677701622, 0.0004103240789845586, 0.00011825755063910037, 0.0014296063454821706, 0.12921012938022614, 0.032881833612918854, 0.03298049792647362, 0.025875015184283257, 0.24010568857192993, 0.1307946741580963, 0.11971700191497803, 0.017173895612359047, 0.036923132836818695, 0.0870814323425293, 0.129140242934227], [0.0011574962409213185, 0.0005889616440981627, 0.0014442807296290994, 0.00017171599029097706, 0.0005239894962869585, 0.000244284572545439, 0.0007617813535034657, 0.25279030203819275, 0.018522288650274277, 0.018716026097536087, 0.06553925573825836, 0.19510796666145325, 0.07899745553731918, 0.03148192912340164, 0.008794330060482025, 0.0205159280449152, 0.0520426481962204, 0.2525993287563324], [0.004678572062402964, 0.0007939616334624588, 0.01177691575139761, 0.00027247960679233074, 0.0002900549734476954, 0.00012347919982858002, 0.0008766781538724899, 0.3334469795227051, 0.03386124223470688, 0.08416992425918579, 0.02249598503112793, 0.046469546854496, 0.06764797121286392, 0.010366994887590408, 0.0027911930810660124, 0.011462620459496975, 0.03529752418398857, 0.3331778943538666], [0.00253148446790874, 0.002122388454154134, 0.012036943808197975, 0.000328249967424199, 0.0004571769095491618, 0.00031833257526159286, 0.0014919243985787034, 0.3597014546394348, 0.014106396585702896, 0.036222852766513824, 0.01774607226252556, 0.053775232285261154, 0.04210255667567253, 0.030031682923436165, 0.007960153743624687, 0.016648683696985245, 0.042977094650268555, 0.359441339969635], [0.002886387752369046, 0.0003158835170324892, 0.005584379192441702, 9.328967280453071e-05, 7.728367927484214e-05, 5.4515581723535433e-05, 0.0004377424775157124, 0.42011839151382446, 0.015055696479976177, 0.03386766090989113, 0.003777759848162532, 0.020311161875724792, 0.03284952789545059, 0.009668561629951, 0.0017888033762574196, 0.006369252223521471, 0.02696189098060131, 0.41978177428245544], [0.0027614873833954334, 0.003846723586320877, 0.006184411700814962, 0.0017160680145025253, 0.0031012811232358217, 0.0004946023691445589, 0.0009716950007714331, 0.40148454904556274, 0.023902589455246925, 0.01595066674053669, 0.010392822325229645, 0.07572852820158005, 0.009805566631257534, 0.009953653439879417, 0.00291319377720356, 0.00589806167408824, 0.023696772754192352, 0.40119728446006775], [0.0027650296688079834, 0.0077070859260857105, 0.008881763555109501, 0.007913459092378616, 0.0015548235969617963, 0.004185030236840248, 0.004272520542144775, 0.4581518769264221, 0.0028295409865677357, 0.004533850587904453, 0.0034372941590845585, 0.0027096697594970465, 0.004968190100044012, 0.00466562295332551, 0.0015383244026452303, 0.0029043119866400957, 0.019095009192824364, 0.4578865170478821]], [[0.006621889770030975, 0.0007486482500098646, 0.0022782650776207447, 0.0009143533534370363, 0.00016527361003682017, 0.0012382962740957737, 0.0006688106805086136, 0.12948334217071533, 0.22715310752391815, 0.18777813017368317, 0.04160095378756523, 0.008292868733406067, 0.1038895770907402, 0.03623737022280693, 0.02004365809261799, 0.0719667375087738, 0.03150060400366783, 0.12941808998584747], [0.011147302575409412, 0.04960253834724426, 0.18386374413967133, 0.05613591521978378, 0.05682023987174034, 0.1394062638282776, 0.011897925287485123, 0.19086885452270508, 0.011147352866828442, 0.02219049632549286, 0.012546051293611526, 0.006808778736740351, 0.020928913727402687, 0.010373052209615707, 0.007526489440351725, 0.011516733095049858, 0.006456745322793722, 0.19076262414455414], [0.004272707737982273, 0.010812528431415558, 0.02799476869404316, 0.020522907376289368, 0.017959140241146088, 0.05886058509349823, 0.008070535026490688, 0.40130743384361267, 0.004292461089789867, 0.003918281756341457, 0.006824880372732878, 0.004320855718106031, 0.0060636913403868675, 0.0038725603371858597, 0.0022644642740488052, 0.007398296147584915, 0.010171731933951378, 0.4010721445083618], [0.01143257413059473, 0.07092161476612091, 0.12952083349227905, 0.047771986573934555, 0.039255645126104355, 0.12228652834892273, 0.01793302595615387, 0.23790457844734192, 0.008434475399553776, 0.016324101015925407, 0.009323129430413246, 0.005454695783555508, 0.008676308207213879, 0.00878157652914524, 0.00632158387452364, 0.014524093829095364, 0.007343790959566832, 0.23778940737247467], [0.005908099934458733, 0.03808145970106125, 0.061638541519641876, 0.031916581094264984, 0.01815713755786419, 0.08791785687208176, 0.00775656895712018, 0.35339370369911194, 0.00452410988509655, 0.0030256579630076885, 0.0045775738544762135, 0.0029896539635956287, 0.005687437020242214, 0.004014822654426098, 0.0019456245936453342, 0.00944061204791069, 0.005822382867336273, 0.35320213437080383], [0.010895006358623505, 0.013606345281004906, 0.019715867936611176, 0.021940624341368675, 0.0079161012545228, 0.022351589053869247, 0.009674097411334515, 0.4170003831386566, 0.006231302861124277, 0.002245008945465088, 0.007081103511154652, 0.0035818424075841904, 0.014571650885045528, 0.0054468619637191296, 0.0021776126231998205, 0.009993900544941425, 0.008789894171059132, 0.4167807102203369], [0.005698092747479677, 0.06015706807374954, 0.11749213188886642, 0.03595772385597229, 0.05119616165757179, 0.08511355519294739, 0.005717838183045387, 0.2994444668292999, 0.010108848102390766, 0.01171489804983139, 0.0033310959115624428, 0.0027550358790904284, 0.0013547138078138232, 0.0027412583585828543, 0.0015950931701809168, 0.002173295011743903, 0.004208527039736509, 0.29924020171165466], [0.0025535495951771736, 0.00592331076040864, 0.018082572147250175, 0.005383425857871771, 0.0034052878618240356, 0.005542564671486616, 0.003936476539820433, 0.4583795666694641, 0.0024282941594719887, 0.0035541353281587362, 0.0019926561508327723, 0.0031849327497184277, 0.001628012047149241, 0.004575440194457769, 0.0009166349773295224, 0.004135478287935257, 0.01624573953449726, 0.45813196897506714], [0.014127857983112335, 0.0039241802878677845, 0.007517064921557903, 0.0021606944501399994, 0.001226510968990624, 0.004106480162590742, 0.0011650488013401628, 0.24066390097141266, 0.06088307499885559, 0.17008714377880096, 0.0783739760518074, 0.02743174321949482, 0.05163101479411125, 0.019663020968437195, 0.013121888972818851, 0.027888985350728035, 0.035484787076711655, 0.24054257571697235], [0.002321830252185464, 0.0014360612258315086, 0.004558362532407045, 0.0008802366792224348, 0.0005409238510765135, 0.0023272803518921137, 0.0004997878568246961, 0.3579338490962982, 0.010232130996882915, 0.04872081056237221, 0.032225850969552994, 0.01293314341455698, 0.0800810307264328, 0.013281987980008125, 0.011536969803273678, 0.036556877195835114, 0.02622697688639164, 0.35770589113235474], [0.0019296330865472555, 0.0006502563483081758, 0.0013650074834004045, 0.00021292849851306528, 0.00011564891610760242, 0.0005993241793476045, 0.00013106339611113071, 0.16233108937740326, 0.011723853647708893, 0.04433589428663254, 0.029427887871861458, 0.014301200397312641, 0.3253481090068817, 0.07986114174127579, 0.042333122342824936, 0.10158691555261612, 0.0215038750320673, 0.1622430384159088], [0.00307720759883523, 0.001914406195282936, 0.0057872892357409, 0.0011512318160384893, 0.0009422735893167555, 0.0037209633737802505, 0.00043522342457436025, 0.09923908114433289, 0.015327662229537964, 0.04119448736310005, 0.04718628153204918, 0.0257191751152277, 0.326259046792984, 0.14264936745166779, 0.04609929397702217, 0.12397978454828262, 0.016126498579978943, 0.09919071197509766], [0.0021943694446235895, 8.827172860037535e-05, 0.0004784248012583703, 0.00013113822205923498, 6.40137805021368e-05, 0.000931953894905746, 0.00019801018061116338, 0.16131417453289032, 0.0041343653574585915, 0.006371557712554932, 0.005722361151129007, 0.005157811101526022, 0.07796038687229156, 0.21184438467025757, 0.05571604147553444, 0.2956608831882477, 0.010811816900968552, 0.16122005879878998], [0.0005051370826549828, 0.00019581816741265357, 0.003107841592282057, 8.321271889144555e-05, 5.070388942840509e-05, 0.0030729644931852818, 0.00010444082727190107, 0.40536895394325256, 0.005089986603707075, 0.004004498943686485, 0.002106135245412588, 0.003827087813988328, 0.013518175110220909, 0.05356067419052124, 0.007846539840102196, 0.0848388597369194, 0.007626843638718128, 0.4050920605659485], [0.00015503392205573618, 8.093746146187186e-05, 0.0005248825182206929, 1.4206435480446089e-05, 4.0117571188602597e-05, 0.0008290596306324005, 3.955950523959473e-05, 0.44225436449050903, 0.0006602046778425574, 0.0007915194728411734, 0.0002780460345093161, 0.0019606442656368017, 0.005678869318217039, 0.04636797681450844, 0.002615950768813491, 0.049931321293115616, 0.005896910093724728, 0.44188040494918823], [0.0007758845458738506, 0.0003506553184706718, 0.0037231005262583494, 0.00036602094769477844, 0.00025454844580963254, 0.006328932475298643, 0.00041660654824227095, 0.3531220853328705, 0.011865570209920406, 0.0036600399762392044, 0.0032341368496418, 0.006877207197248936, 0.042020805180072784, 0.13026925921440125, 0.01833859272301197, 0.048978034406900406, 0.01650126837193966, 0.35291722416877747], [0.0016423313645645976, 0.006059861276298761, 0.016797106713056564, 0.002537247957661748, 0.002702589612454176, 0.004677341785281897, 0.0005713252467103302, 0.42993050813674927, 0.016092684119939804, 0.03672835975885391, 0.009536199271678925, 0.010462775826454163, 0.00405540969222784, 0.007998312823474407, 0.002353699179366231, 0.0051240473985672, 0.013124186545610428, 0.4296059012413025], [0.002552916295826435, 0.0059222085401415825, 0.018079005181789398, 0.005382452625781298, 0.0034045001957565546, 0.0055412244983017445, 0.003935449756681919, 0.4583895802497864, 0.002427509054541588, 0.003553220070898533, 0.0019920107442885637, 0.00318409432657063, 0.001627458492293954, 0.0045737712644040585, 0.0009162769420072436, 0.004134111572057009, 0.016242288053035736, 0.4581419825553894]], [[0.008755365386605263, 0.085393987596035, 0.0840752050280571, 0.06987924128770828, 0.044497255235910416, 0.09370259195566177, 0.04576384648680687, 0.1271476149559021, 0.08524535596370697, 0.007529150694608688, 0.1251458078622818, 0.016352998092770576, 0.008540392853319645, 0.013807937502861023, 0.01697290502488613, 0.00430510425940156, 0.03577527776360512, 0.12711003422737122], [0.0077162496745586395, 0.09281083941459656, 0.04174220189452171, 0.18757981061935425, 0.05660831183195114, 0.0796927735209465, 0.055482167750597, 0.061803773045539856, 0.06538443267345428, 0.06354086101055145, 0.05453214794397354, 0.04309527203440666, 0.02680591307580471, 0.010539316572248936, 0.010726023465394974, 0.018192028626799583, 0.061964716762304306, 0.06178312003612518], [0.00434673810377717, 0.1056293398141861, 0.10787280648946762, 0.058295369148254395, 0.03212060034275055, 0.047234565019607544, 0.042655207216739655, 0.150835320353508, 0.006018718704581261, 0.12346483021974564, 0.009182808920741081, 0.018346238881349564, 0.017031485214829445, 0.023391904309391975, 0.01802430860698223, 0.034994836896657944, 0.04977233707904816, 0.15078261494636536], [0.008462097495794296, 0.046678826212882996, 0.03949115052819252, 0.12904863059520721, 0.03571934252977371, 0.0463552363216877, 0.043638866394758224, 0.10682421922683716, 0.046252574771642685, 0.07823836803436279, 0.025335386395454407, 0.06704723089933395, 0.020436855033040047, 0.01652464084327221, 0.010623586364090443, 0.026523591950535774, 0.14601066708564758, 0.10678869485855103], [0.011922911740839481, 0.05090850591659546, 0.07776570320129395, 0.06043253466486931, 0.05415920168161392, 0.05432939901947975, 0.057738859206438065, 0.1294170767068863, 0.026495952159166336, 0.03119269385933876, 0.024176806211471558, 0.07152096182107925, 0.035307712852954865, 0.055326126515865326, 0.01124202273786068, 0.027592523023486137, 0.09110568463802338, 0.1293652504682541], [0.01106247864663601, 0.0341234914958477, 0.01016886718571186, 0.016968607902526855, 0.04836290702223778, 0.044574350118637085, 0.024242807179689407, 0.15800775587558746, 0.031216958537697792, 0.032544173300266266, 0.027184123173356056, 0.10501566529273987, 0.10228201001882553, 0.04749540612101555, 0.07234938442707062, 0.027598470449447632, 0.04885856807231903, 0.15794406831264496], [0.005358492024242878, 0.037793904542922974, 0.044849712401628494, 0.07320660352706909, 0.04445181041955948, 0.037865858525037766, 0.02535250596702099, 0.09133318066596985, 0.134329155087471, 0.16957847774028778, 0.016452716663479805, 0.054800357669591904, 0.009898370131850243, 0.038467928767204285, 0.012139489874243736, 0.014898842200636864, 0.09792418032884598, 0.09129837155342102], [0.0038412492722272873, 0.005975072737783194, 0.012391438707709312, 0.009258807636797428, 0.00298120966181159, 0.006027287803590298, 0.011865697801113129, 0.3821197748184204, 0.03276537358760834, 0.021087002009153366, 0.004135945811867714, 0.0147102614864707, 0.009546857327222824, 0.013135886751115322, 0.0063255466520786285, 0.011368409730494022, 0.07044357061386108, 0.38202059268951416], [0.003770163981243968, 0.027125703170895576, 0.02641078270971775, 0.021739855408668518, 0.019060146063566208, 0.03155314922332764, 0.016400588676333427, 0.34154340624809265, 0.05837323144078255, 0.008659214712679386, 0.026374902576208115, 0.00775831937789917, 0.00685223238542676, 0.00726417638361454, 0.011572708375751972, 0.001736368052661419, 0.04237016290426254, 0.3414348065853119], [0.008092778734862804, 0.04846600070595741, 0.040710993111133575, 0.012648754753172398, 0.006687825080007315, 0.019744018092751503, 0.03150336816906929, 0.2683933675289154, 0.04772971197962761, 0.07496995478868484, 0.03513791039586067, 0.01744994707405567, 0.009027223102748394, 0.006924494169652462, 0.006598623003810644, 0.005224520340561867, 0.09239363670349121, 0.26829689741134644], [0.023876111954450607, 0.055648885667324066, 0.04809007793664932, 0.01633607968688011, 0.031719714403152466, 0.0451149046421051, 0.017818905413150787, 0.23205268383026123, 0.030190875753760338, 0.023145532235503197, 0.08928507566452026, 0.03067563660442829, 0.041699185967445374, 0.0165583323687315, 0.033139750361442566, 0.006333386525511742, 0.026355134323239326, 0.23195980489253998], [0.03776724636554718, 0.03040214441716671, 0.018964983522892, 0.030986810103058815, 0.055010829120874405, 0.0655641108751297, 0.01684516668319702, 0.22371454536914825, 0.021600373089313507, 0.02310974895954132, 0.026865849271416664, 0.04136645421385765, 0.053661804646253586, 0.02677098847925663, 0.036433760076761246, 0.02468150109052658, 0.04259095713496208, 0.22366270422935486], [0.013093036599457264, 0.018341295421123505, 0.015536308288574219, 0.006248830817639828, 0.011909312568604946, 0.013482712209224701, 0.00553885055705905, 0.36582013964653015, 0.012145346030592918, 0.01849774271249771, 0.009540549479424953, 0.014332246966660023, 0.020256031304597855, 0.028942350298166275, 0.04157041013240814, 0.018683701753616333, 0.020372504368424416, 0.36568862199783325], [0.00712650828063488, 0.02438744530081749, 0.02926337718963623, 0.007665867917239666, 0.015205834992229939, 0.008229426108300686, 0.01540397945791483, 0.210547536611557, 0.004243038594722748, 0.011685029603540897, 0.006872621364891529, 0.006667579524219036, 0.03892185911536217, 0.11000547558069229, 0.15338559448719025, 0.09720911830663681, 0.04269617423415184, 0.21048349142074585], [0.015966614708304405, 0.03542995825409889, 0.03655711188912392, 0.024002404883503914, 0.021151045337319374, 0.026503808796405792, 0.01643133908510208, 0.2990038990974426, 0.005454862955957651, 0.005001578480005264, 0.025871016085147858, 0.0096585126593709, 0.02801714465022087, 0.05044449493288994, 0.042404208332300186, 0.030781378969550133, 0.028465408831834793, 0.2988553047180176], [0.013400151394307613, 0.0211554616689682, 0.009477301500737667, 0.005788358859717846, 0.010356271639466286, 0.006833139806985855, 0.010219433344900608, 0.24571140110492706, 0.009669160470366478, 0.01911131478846073, 0.011418808251619339, 0.015120475552976131, 0.05956007540225983, 0.09481726586818695, 0.13417275249958038, 0.04334514960646629, 0.04422777518630028, 0.24561569094657898], [0.014852224849164486, 0.022914063185453415, 0.0328233577311039, 0.041153598576784134, 0.012388882227241993, 0.024395277723670006, 0.016040949150919914, 0.2212088406085968, 0.14842894673347473, 0.06568718701601028, 0.017302902415394783, 0.0324135422706604, 0.007789904251694679, 0.01595824398100376, 0.006222301162779331, 0.005873482674360275, 0.09342480450868607, 0.22112151980400085], [0.003841606667265296, 0.005974780302494764, 0.012389949522912502, 0.009259353391826153, 0.002980909775942564, 0.006027070339769125, 0.01186563353985548, 0.3821229040622711, 0.03276592493057251, 0.02108694799244404, 0.004135541617870331, 0.014710476621985435, 0.009546378627419472, 0.013133990578353405, 0.006324585061520338, 0.01136741042137146, 0.07044272124767303, 0.38202381134033203]], [[0.001813104492612183, 0.04248844087123871, 0.014217257499694824, 0.0451245941221714, 0.016109880059957504, 0.013742823153734207, 0.17230086028575897, 0.3412632644176483, 0.001677454449236393, 0.00017853167082648724, 0.00043538579484447837, 0.00033062693546526134, 0.00013237936946097761, 6.49014109512791e-05, 4.4914664613315836e-05, 8.5988845967222e-05, 0.008967075496912003, 0.3410225212574005], [0.004063393920660019, 0.032766107469797134, 0.21467533707618713, 0.011618250049650669, 0.006104916799813509, 0.004533471539616585, 0.0011748214019462466, 0.35314762592315674, 0.0003332459309604019, 0.010545951314270496, 0.0015826834132894874, 0.0021012919023633003, 0.00012740519014187157, 0.0003341733245179057, 0.00019932110444642603, 0.0004854462167713791, 0.003268435364589095, 0.3529380261898041], [0.00994330644607544, 0.016781970858573914, 0.023980874568223953, 0.0340874008834362, 0.008895489387214184, 0.0034637947101145983, 0.008695092983543873, 0.42381423711776733, 0.0012164327781647444, 0.011830938048660755, 0.005762784741818905, 0.005132898222655058, 0.00039331542211584747, 0.0002631262468639761, 0.0001429929689038545, 0.00029892983729951084, 0.021780511364340782, 0.42351585626602173], [0.005622460972517729, 0.009639570489525795, 0.015958691015839577, 0.009091063402593136, 0.03405135124921799, 0.10790453106164932, 0.005868077278137207, 0.38777801394462585, 0.007807925809174776, 0.008705783635377884, 0.0016617870423942804, 0.002453730907291174, 0.002711560344323516, 0.0022650102619081736, 0.0009471819503232837, 0.0031224472913891077, 0.006857831031084061, 0.38755306601524353], [0.001281521748751402, 0.0031558265909552574, 0.010601446963846684, 0.004754284396767616, 0.0063980957493186, 0.03756324574351311, 0.0028206752613186836, 0.4612174332141876, 0.002567646559327841, 0.0030432932544499636, 0.0009721932001411915, 0.00023457736824639142, 0.0005050203180871904, 0.0003807290631812066, 0.0003456888080108911, 0.000230277277296409, 0.0030450134072452784, 0.4608830511569977], [0.007778235245496035, 0.0382704995572567, 0.2538185119628906, 0.02519458532333374, 0.00549273518845439, 0.011556095443665981, 0.023195989429950714, 0.24971820414066315, 0.025069478899240494, 0.059121232479810715, 0.005963107105344534, 0.002604394918307662, 0.004873654339462519, 0.008634590543806553, 0.002496421104297042, 0.0019799110013991594, 0.024632930755615234, 0.24959945678710938], [0.023200934752821922, 0.03260485455393791, 0.007574193179607391, 0.007568443194031715, 0.0047631836496293545, 0.005150182638317347, 0.03253496065735817, 0.39125415682792664, 0.04859807342290878, 0.010383558459579945, 0.0026418748311698437, 0.0016529583372175694, 0.0015900864964351058, 0.00142582762055099, 0.00048660353058949113, 0.0005950457416474819, 0.036912258714437485, 0.39106279611587524], [0.031879931688308716, 0.010097661055624485, 0.007000666111707687, 0.004867990501224995, 0.0037472795229405165, 0.0075203911401331425, 0.035023294389247894, 0.3542229235172272, 0.01224515400826931, 0.01342802494764328, 0.010859697125852108, 0.009577766992151737, 0.02264242060482502, 0.019066769629716873, 0.007964779622852802, 0.010630438104271889, 0.08511415123939514, 0.3541107177734375], [0.023197714239358902, 0.012913876213133335, 0.014399520121514797, 0.0039900848641991615, 0.0021458629053086042, 0.0028213532641530037, 0.006424938328564167, 0.36655640602111816, 0.030458195134997368, 0.10739286243915558, 0.01641877181828022, 0.0036381639074534178, 0.005676453933119774, 0.0013533245073631406, 0.0006593960570171475, 0.0008653944823890924, 0.03470771759748459, 0.3663800060749054], [0.004966949578374624, 0.004932013340294361, 0.02109142392873764, 0.007447937969118357, 0.0021165101788938046, 0.0010623426642268896, 0.001300435047596693, 0.454574853181839, 0.0003001643344759941, 0.003578985808417201, 0.02038433961570263, 0.014624319039285183, 0.0012988869566470385, 0.00033677794272080064, 0.0005568995838984847, 0.0004517927882261574, 0.0067022619768977165, 0.4542730152606964], [0.0025927333626896143, 0.0004054545715916902, 0.0003263536491431296, 0.0002568810305092484, 0.0013088532723486423, 0.0012089546071365476, 0.0011221285676583648, 0.3455178439617157, 0.0007797432481311262, 0.004449994768947363, 0.050547126680612564, 0.07880429923534393, 0.14103280007839203, 0.003122203517705202, 0.003466330235823989, 0.00545525411143899, 0.014279753901064396, 0.3453233242034912], [0.0029745118226855993, 0.0009607813553884625, 0.001126750372350216, 0.0007831113180145621, 0.0008681774488650262, 0.0029321855399757624, 0.0036943398881703615, 0.37612688541412354, 0.0014093974605202675, 0.0058670649304986, 0.023109018802642822, 0.013105575926601887, 0.09669435769319534, 0.03599962964653969, 0.013098166324198246, 0.01856296882033348, 0.026775188744068146, 0.3759119212627411], [0.0022550795692950487, 0.00044458647607825696, 0.0005006145220249891, 0.0003426030743867159, 0.0001943474489962682, 0.00037094869185239077, 0.0018955639097839594, 0.46793049573898315, 0.0002581537701189518, 0.0019006760558113456, 0.005144079681485891, 0.00686101708561182, 0.01175981666892767, 0.007834062911570072, 0.0061559793539345264, 0.0017304440261796117, 0.016848944127559662, 0.46757251024246216], [0.004191416781395674, 0.0023808779660612345, 0.003736256854608655, 0.0026902910321950912, 0.0009699596557766199, 0.0009056075941771269, 0.0030546672642230988, 0.4347741901874542, 0.0034211857710033655, 0.008348970673978329, 0.018068281933665276, 0.012510347180068493, 0.002274670172482729, 0.0020114656072109938, 0.009669727645814419, 0.003995960578322411, 0.05253816395998001, 0.434457927942276], [0.0036043080035597086, 0.00025641938555054367, 0.00014495621144305915, 0.00015029676433186978, 0.00017677007417660207, 0.00027679113554768264, 0.0005792779847979546, 0.3799659311771393, 0.00047235595411621034, 0.004544449038803577, 0.007545948959887028, 0.014322449453175068, 0.05192272737622261, 0.005387027747929096, 0.009053882211446762, 0.11611897498369217, 0.025821879506111145, 0.37965551018714905], [0.006857318803668022, 0.006967168767005205, 0.05478499084711075, 0.0019330886425450444, 0.0014171901857480407, 0.00260934978723526, 0.0035965372808277607, 0.33804649114608765, 0.028950462117791176, 0.009847275912761688, 0.004533323924988508, 0.007458565291017294, 0.002832560334354639, 0.12952706217765808, 0.026314347982406616, 0.008319306187331676, 0.02815433219075203, 0.3378506898880005], [0.021196050569415092, 0.009086833335459232, 0.0036361205857247114, 0.00482879439368844, 0.00205933372490108, 0.0032743753399699926, 0.00866122730076313, 0.4096187353134155, 0.03935008868575096, 0.013540235348045826, 0.01184989046305418, 0.004131614230573177, 0.0056513636372983456, 0.005262521095573902, 0.001477565965615213, 0.0021315324120223522, 0.044824350625276566, 0.40941935777664185], [0.03187692165374756, 0.010096738114953041, 0.007000591140240431, 0.004867604933679104, 0.0037462806794792414, 0.007518926169723272, 0.03501344099640846, 0.3542419970035553, 0.012243764474987984, 0.013427569530904293, 0.010858251713216305, 0.009576250799000263, 0.02263990417122841, 0.019064728170633316, 0.00796434748917818, 0.0106285335496068, 0.0851045697927475, 0.3541296124458313]]], [[[0.013549810275435448, 0.005128208082169294, 0.021467629820108414, 0.015570278279483318, 0.004190122243016958, 0.011706532910466194, 0.014042462222278118, 0.06389257311820984, 0.2096249908208847, 0.47308576107025146, 0.01199420727789402, 0.013188785873353481, 0.006796224508434534, 0.011628815904259682, 0.008412526920437813, 0.017816001549363136, 0.03401662036776543, 0.06388844549655914], [0.015196827240288258, 0.03342068940401077, 0.2102811336517334, 0.05856173485517502, 0.015151633881032467, 0.10179190337657928, 0.12473109364509583, 0.13641314208507538, 0.022472411394119263, 0.004912528209388256, 0.026471151039004326, 0.0035913619212806225, 0.00380410416983068, 0.005825775675475597, 0.011502359993755817, 0.00553101534023881, 0.08393590897321701, 0.1364053189754486], [0.02724342979490757, 0.025073865428566933, 0.07320749759674072, 0.04857044667005539, 0.020522043108940125, 0.08646932989358902, 0.03914492577314377, 0.2530406713485718, 0.01825954206287861, 0.00596009474247694, 0.012939618900418282, 0.011929955333471298, 0.003830066416412592, 0.015033597126603127, 0.003297878196462989, 0.006614819169044495, 0.09583860635757446, 0.2530236542224884], [0.006185930222272873, 0.053517408668994904, 0.3145344853401184, 0.008909774012863636, 0.013175266794860363, 0.0786752700805664, 0.034158337861299515, 0.06372401863336563, 0.001640926580876112, 0.004137820564210415, 0.3047647774219513, 0.0016229208558797836, 0.003876851173117757, 0.002339550293982029, 0.012927650474011898, 0.002513416577130556, 0.029576458036899567, 0.0637192502617836], [0.01381186954677105, 0.04498526453971863, 0.20923003554344177, 0.06172192841768265, 0.012070356868207455, 0.05950862169265747, 0.10018126666545868, 0.1443091779947281, 0.020263170823454857, 0.005952739622443914, 0.023636551573872566, 0.004598582629114389, 0.005525469314306974, 0.011080709286034107, 0.011504452675580978, 0.012303110212087631, 0.11501464247703552, 0.1443021595478058], [0.011203103698790073, 0.025027260184288025, 0.07459292560815811, 0.019046122208237648, 0.010340079665184021, 0.01185463648289442, 0.06348152458667755, 0.29753902554512024, 0.008136054500937462, 0.0034804167225956917, 0.008757522329688072, 0.004773473832756281, 0.005848560482263565, 0.01021607220172882, 0.006575399078428745, 0.009770355187356472, 0.1318361461162567, 0.29752135276794434], [0.021978488191962242, 0.09323447197675705, 0.27321699261665344, 0.040713779628276825, 0.024932386353611946, 0.13082876801490784, 0.11271824687719345, 0.07651258260011673, 0.01890719309449196, 0.008307931944727898, 0.02416599728167057, 0.01489225123077631, 0.003761019092053175, 0.011896129697561264, 0.004812072962522507, 0.013050656765699387, 0.049563534557819366, 0.07650759816169739], [0.01364920288324356, 0.006912685930728912, 0.017807720229029655, 0.01321531180292368, 0.00992736965417862, 0.01547488383948803, 0.004114208277314901, 0.37634536623954773, 0.013172561302781105, 0.01420341245830059, 0.003539330093190074, 0.008368020877242088, 0.006324032787233591, 0.006049542222172022, 0.0020194866228848696, 0.005536858458071947, 0.10702190548181534, 0.376318097114563], [0.03012237697839737, 0.004353049211204052, 0.0127840181812644, 0.006629724986851215, 0.003675620537251234, 0.004714025650173426, 0.009629768319427967, 0.3070123791694641, 0.028503406792879105, 0.0519554540514946, 0.002591437427327037, 0.016261937096714973, 0.018647044897079468, 0.021530698984861374, 0.007124246563762426, 0.03536286577582359, 0.1321113258600235, 0.3069906532764435], [0.04568248242139816, 0.005417000036686659, 0.02354680746793747, 0.027106305584311485, 0.008193012326955795, 0.024150757119059563, 0.010990560986101627, 0.2812500596046448, 0.060765136033296585, 0.04281879961490631, 0.010328934527933598, 0.011095508933067322, 0.009211606346070766, 0.015370126813650131, 0.004803416784852743, 0.012487705796957016, 0.12555034458637238, 0.28123149275779724], [0.015485059469938278, 0.0034845347981899977, 0.027485951781272888, 0.15779174864292145, 0.0035333677660673857, 0.011080731637775898, 0.007696857210248709, 0.11056507378816605, 0.09010264277458191, 0.20728519558906555, 0.033911895006895065, 0.015021816827356815, 0.01683027110993862, 0.025524698197841644, 0.025986775755882263, 0.06734523177146912, 0.07030800729990005, 0.11056017875671387], [0.025614077225327492, 0.00609877472743392, 0.05716176703572273, 0.05419895425438881, 0.00905959215015173, 0.016400985419750214, 0.053342510014772415, 0.21837495267391205, 0.08375870436429977, 0.028390392661094666, 0.002794144907966256, 0.0016126992413774133, 0.002509437268599868, 0.02331068180501461, 0.007310985121876001, 0.041592612862586975, 0.15010620653629303, 0.21836254000663757], [0.040075793862342834, 0.0014692555414512753, 0.020433874800801277, 0.0043752966448664665, 0.0020950292237102985, 0.006423546466976404, 0.0021786082070320845, 0.3246033489704132, 0.04667237773537636, 0.07605517655611038, 0.004923549015074968, 0.006335753481835127, 0.00397597998380661, 0.008655824698507786, 0.0035210736095905304, 0.014698666520416737, 0.10891816020011902, 0.32458871603012085], [0.07552879303693771, 0.004736039787530899, 0.02196396514773369, 0.007403442170470953, 0.007128676865249872, 0.017462603747844696, 0.023556379601359367, 0.2404724359512329, 0.11965246498584747, 0.057888563722372055, 0.01162620261311531, 0.006304158363491297, 0.00837224256247282, 0.004831442143768072, 0.0047317249700427055, 0.003911652136594057, 0.14397032558918, 0.24045896530151367], [0.08092810958623886, 0.01498949434608221, 0.020093953236937523, 0.021059619262814522, 0.011276287958025932, 0.015360516496002674, 0.030795132741332054, 0.21106722950935364, 0.11676234006881714, 0.029241351410746574, 0.032307565212249756, 0.022416135296225548, 0.012724619358778, 0.007363264448940754, 0.01212539803236723, 0.006370312999933958, 0.1440620720386505, 0.21105660498142242], [0.09998906403779984, 0.002636574674397707, 0.015150956809520721, 0.0056723845191299915, 0.006208955310285091, 0.012295122258365154, 0.012362184002995491, 0.2801917791366577, 0.08522772043943405, 0.03898544982075691, 0.009228537790477276, 0.005544964224100113, 0.00846713688224554, 0.0032699229195713997, 0.0039029791951179504, 0.002277180552482605, 0.12841272354125977, 0.2801763415336609], [0.012222960591316223, 0.008288772776722908, 0.02481243945658207, 0.021768609061837196, 0.009702847339212894, 0.014165392145514488, 0.006225546821951866, 0.3657015860080719, 0.018379736691713333, 0.015426586382091045, 0.0037137214094400406, 0.009291733615100384, 0.0038259716238826513, 0.006977856159210205, 0.0013819923624396324, 0.006263406947255135, 0.10617946833372116, 0.3656713366508484], [0.0136489262804389, 0.006912560202181339, 0.017807215452194214, 0.013215113431215286, 0.009927203878760338, 0.015474654734134674, 0.004114073701202869, 0.3763468861579895, 0.013172313570976257, 0.014202771708369255, 0.0035393210127949715, 0.008368145674467087, 0.006324009969830513, 0.00604943698272109, 0.0020194444805383682, 0.005536738317459822, 0.1070212721824646, 0.3763199746608734]], [[0.16206179559230804, 0.0549604631960392, 0.026109730824828148, 0.05951164290308952, 0.0425395704805851, 0.15640544891357422, 0.11594370007514954, 0.033108871430158615, 0.16605690121650696, 0.011809117160737514, 0.06443270295858383, 0.017453305423259735, 0.008889910764992237, 0.0011883575934916735, 0.0018773970659822226, 0.0011428530560806394, 0.04340004175901413, 0.0331081859767437], [0.014622938819229603, 0.06111598759889603, 0.1056828498840332, 0.043596141040325165, 0.011823217384517193, 0.03927893936634064, 0.27589356899261475, 0.12229936569929123, 0.06472960859537125, 0.01353952195495367, 0.003606907557696104, 0.0020779145415872335, 0.0006931760581210256, 0.001424289308488369, 0.0011490649776533246, 0.0006856280961073935, 0.11548614501953125, 0.12229472398757935], [0.011518852785229683, 0.10652577877044678, 0.16740690171718597, 0.03083288110792637, 0.004550592973828316, 0.03131212666630745, 0.03619431331753731, 0.1561274379491806, 0.02725578099489212, 0.18412727117538452, 0.0050795357674360275, 0.0019327321788296103, 0.0021381524857133627, 0.0018431945936754346, 0.0012318305671215057, 0.001386925345286727, 0.07441617548465729, 0.1561194360256195], [0.0089286919683218, 0.04505812004208565, 0.056132614612579346, 0.0572061687707901, 0.011997184716165066, 0.017350127920508385, 0.26469093561172485, 0.17223286628723145, 0.033876121044158936, 0.009103273041546345, 0.0018602368654683232, 0.0018668827833607793, 0.0005223951884545386, 0.0015065117040649056, 0.0011535931844264269, 0.0007107809651643038, 0.14357829093933105, 0.17222531139850616], [0.012517181225121021, 0.009878517128527164, 0.00956074520945549, 0.018434900790452957, 0.006259595043957233, 0.01928931102156639, 0.14181192219257355, 0.2270381897687912, 0.1105942651629448, 0.004653510171920061, 0.005758451297879219, 0.004126565530896187, 0.001675032777711749, 0.0031873914413154125, 0.005119631066918373, 0.002323735971003771, 0.1907425820827484, 0.22702844440937042], [0.013837264850735664, 0.00915475282818079, 0.010142248123884201, 0.021548809483647346, 0.017947141081094742, 0.028872311115264893, 0.06022539362311363, 0.30123427510261536, 0.03722001612186432, 0.004863589536398649, 0.00239131273701787, 0.002023705979809165, 0.0005765573005191982, 0.0022064330987632275, 0.0027508109342306852, 0.0017597578698769212, 0.18202464282512665, 0.30122092366218567], [0.017871083691716194, 0.024737855419516563, 0.02007325366139412, 0.06476782262325287, 0.03345030918717384, 0.026083258911967278, 0.19232237339019775, 0.19105765223503113, 0.0670914351940155, 0.00673803361132741, 0.003875333582982421, 0.0047760093584656715, 0.0009663900709711015, 0.00201698811724782, 0.0013030748814344406, 0.001201467588543892, 0.15061615407466888, 0.19105149805545807], [0.018326448276638985, 0.026453735306859016, 0.03188322111964226, 0.029671356081962585, 0.0176540520042181, 0.04184500500559807, 0.022566357627511024, 0.2642470896244049, 0.04902372509241104, 0.021204695105552673, 0.02011704444885254, 0.013957662507891655, 0.01865488849580288, 0.020936787128448486, 0.013348720036447048, 0.013079856522381306, 0.11278685182332993, 0.2642425000667572], [0.07166837155818939, 0.015820825472474098, 0.0071954005397856236, 0.060406289994716644, 0.06125306710600853, 0.06939011067152023, 0.0532836839556694, 0.19497565925121307, 0.11061683297157288, 0.002588800620287657, 0.017246950417757034, 0.0069871325977146626, 0.002420336939394474, 0.00020034759654663503, 0.0007714558742009103, 0.00027387402951717377, 0.1299365758895874, 0.19496436417102814], [0.06018756330013275, 0.14959211647510529, 0.27012526988983154, 0.0204587634652853, 0.005659835413098335, 0.0596516989171505, 0.022927124053239822, 0.011212993413209915, 0.009982436895370483, 0.3407772183418274, 0.0209308210760355, 0.0024840999394655228, 0.0009559812606312335, 0.00018417435057926923, 0.00038383950595743954, 0.0005902480334043503, 0.012683197855949402, 0.011212533339858055], [0.22101305425167084, 0.02155044861137867, 0.031362134963274, 0.012973015196621418, 0.00883103534579277, 0.26934415102005005, 0.04051840305328369, 0.022148732095956802, 0.10202109068632126, 0.01105621736496687, 0.1501762568950653, 0.052993956953287125, 0.011834844946861267, 0.0009555928991176188, 0.0015154617140069604, 0.001073781750164926, 0.018483931198716164, 0.022147871553897858], [0.04176855832338333, 0.007715017069131136, 0.015556075610220432, 0.014949420467019081, 0.009762922301888466, 0.21113480627536774, 0.02902047149837017, 0.1656070351600647, 0.160879448056221, 0.004407146945595741, 0.05653833970427513, 0.030826319009065628, 0.012579960748553276, 0.0010040922788903117, 0.004591288976371288, 0.0008632358512841165, 0.06719691306352615, 0.16559894382953644], [0.04957904666662216, 0.01359544973820448, 0.01980016380548477, 0.016465231776237488, 0.015013542026281357, 0.31932327151298523, 0.010703882202506065, 0.06408655643463135, 0.0400443971157074, 0.004992131609469652, 0.1065213680267334, 0.09597864001989365, 0.11912364512681961, 0.007925091311335564, 0.0077298968099057674, 0.01187282707542181, 0.033161044120788574, 0.0640837699174881], [0.009447723627090454, 0.008912444114685059, 0.009246859699487686, 0.04095418006181717, 0.060303982347249985, 0.2681410610675812, 0.02089763805270195, 0.08859740197658539, 0.011987321078777313, 0.0017085711006075144, 0.013139946386218071, 0.02510051801800728, 0.12462842464447021, 0.05394149571657181, 0.012296422384679317, 0.10897097736597061, 0.05313151329755783, 0.088593490421772], [0.059911467134952545, 0.02951579913496971, 0.021966364234685898, 0.05232448875904083, 0.04919903725385666, 0.29283061623573303, 0.04006730392575264, 0.04294547066092491, 0.049502331763505936, 0.00801292434334755, 0.08953571319580078, 0.050974730402231216, 0.08747679740190506, 0.013532211072742939, 0.02432100847363472, 0.012105418369174004, 0.032834865152835846, 0.042943473905324936], [0.008832355961203575, 0.02322821132838726, 0.025911638513207436, 0.03905950114130974, 0.041694968938827515, 0.22345319390296936, 0.011457860469818115, 0.06251929700374603, 0.007097361143678427, 0.006608771625906229, 0.014782463200390339, 0.025177106261253357, 0.11643540859222412, 0.12170624732971191, 0.008750563487410545, 0.16570152342319489, 0.03506699576973915, 0.06251657009124756], [0.017044873908162117, 0.019619764760136604, 0.018431704491376877, 0.02674650214612484, 0.015585135668516159, 0.04076001048088074, 0.023699311539530754, 0.299846351146698, 0.05507644638419151, 0.013168617151677608, 0.015367687679827213, 0.010424723848700523, 0.007670934312045574, 0.008019862696528435, 0.0033293215092271566, 0.0047160848043859005, 0.12065718322992325, 0.29983556270599365], [0.018326546996831894, 0.026453882455825806, 0.031883109360933304, 0.029671378433704376, 0.017654158174991608, 0.0418449342250824, 0.02256619744002819, 0.2642472982406616, 0.04902378097176552, 0.02120468206703663, 0.020117131993174553, 0.01395757682621479, 0.018655022606253624, 0.02093645930290222, 0.013348514214158058, 0.013079782016575336, 0.11278679221868515, 0.2642427682876587]], [[0.005065480247139931, 0.015371983870863914, 0.03710480406880379, 0.2679102420806885, 0.25155511498451233, 0.15514759719371796, 0.023828748613595963, 0.08964689075946808, 0.01796899177134037, 0.0031170977745205164, 0.006576558109372854, 0.004122092388570309, 0.003273582551628351, 0.0005259099416434765, 0.0019686766900122166, 0.0012893478851765394, 0.02588481269776821, 0.08964207768440247], [0.004681572318077087, 0.02660680189728737, 0.009278313256800175, 0.0033490473870187998, 0.0006857651751488447, 0.0027923716697841883, 0.007606711238622665, 0.1324308067560196, 0.013911651447415352, 0.5708554983139038, 0.001859772833995521, 0.001187657006084919, 0.0004245740419719368, 0.00018059046124108136, 0.00043646147241815925, 0.0011578507255762815, 0.09013353288173676, 0.13242095708847046], [0.016755396500229836, 0.0019321006257086992, 0.001989270094782114, 0.0006816454697400331, 0.00019641313701868057, 0.0004923432134091854, 0.0027629451360553503, 0.08798446506261826, 0.009839997626841068, 0.733964741230011, 0.0014016787754371762, 0.0007614511414431036, 7.568689761683345e-05, 2.5517825633869506e-05, 5.1719227485591546e-05, 0.0001964856346603483, 0.05290841683745384, 0.08797972649335861], [0.030495546758174896, 0.0029772771522402763, 0.0017394042806699872, 0.05953643471002579, 0.01663067936897278, 0.01793152093887329, 0.028640205040574074, 0.1696348935365677, 0.10952671617269516, 0.23487558960914612, 0.007075120694935322, 0.004260754678398371, 0.0009210732532665133, 0.0020944704301655293, 0.001417808118276298, 0.0087372912093997, 0.13388146460056305, 0.1696237474679947], [0.05502675473690033, 0.000837745436001569, 0.00026725284988060594, 0.013276791200041771, 0.023952731862664223, 0.010681554675102234, 0.01059128250926733, 0.196482315659523, 0.2916257679462433, 0.06065111979842186, 0.004432421177625656, 0.00427594780921936, 0.0016718828119337559, 0.0024134018458426, 0.0018528447253629565, 0.007831922732293606, 0.11766020953655243, 0.19646808505058289], [0.047915324568748474, 0.007746267598122358, 0.005722092930227518, 0.018776748329401016, 0.01421777717769146, 0.03146935626864433, 0.011563990265130997, 0.23445723950862885, 0.08597755432128906, 0.1528182327747345, 0.006868877913802862, 0.008167862892150879, 0.0024217518512159586, 0.0015155116561800241, 0.0012437923578545451, 0.007861808873713017, 0.12681026756763458, 0.23444566130638123], [0.005182898137718439, 0.0029999632388353348, 0.001339776092208922, 0.002629854716360569, 0.0012181862257421017, 0.00253112381324172, 0.043773528188467026, 0.2659885585308075, 0.1274304836988449, 0.007755719590932131, 0.000844997470267117, 0.0007832774426788092, 0.0003357208042871207, 0.001538164564408362, 0.002363003557547927, 0.001998536055907607, 0.26531028747558594, 0.26597580313682556], [0.006760827731341124, 0.0009964111959561706, 0.0007097541238181293, 0.0007759673753753304, 0.0018517663702368736, 0.0014456574572250247, 0.005238167475908995, 0.3955886662006378, 0.010647616349160671, 0.0014017467619851232, 0.0021308204159140587, 0.004990768618881702, 0.00215726625174284, 0.0011640448356047273, 0.0005696690641343594, 0.001051656436175108, 0.1669471561908722, 0.39557206630706787], [0.008996979333460331, 0.04340985417366028, 0.025431036949157715, 0.11839611828327179, 0.17385509610176086, 0.10249002277851105, 0.07476254552602768, 0.1688055545091629, 0.037400614470243454, 0.001485873362980783, 0.0020089903846383095, 0.00270233117043972, 0.0015113255940377712, 0.0013917282922193408, 0.001175295328721404, 0.0010118175996467471, 0.06636790186166763, 0.16879689693450928], [0.0036444186698645353, 0.12891452014446259, 0.15237785875797272, 0.14179472625255585, 0.03943638876080513, 0.04372537136077881, 0.020053528249263763, 0.17948703467845917, 0.0009186728857457638, 0.05867098644375801, 0.0029831358697265387, 0.0010823941556736827, 0.0009255563491024077, 0.00012599924230016768, 0.000390929460991174, 0.0001926015829667449, 0.04579663276672363, 0.17947916686534882], [0.005306720267981291, 0.0013485623057931662, 0.0011839137878268957, 0.030841443687677383, 0.025289475917816162, 0.011534220539033413, 0.00845489464700222, 0.38835853338241577, 0.002753531327471137, 0.00011148904741276056, 0.011315195821225643, 0.017993595451116562, 0.008442862890660763, 0.0003031780361197889, 0.0007356561836786568, 0.00036098502459935844, 0.09733208268880844, 0.3883337080478668], [0.0029731402173638344, 0.00027464894810691476, 0.00025725929299369454, 0.0006353156641125679, 0.0018428255571052432, 0.0016788681969046593, 0.001608180464245379, 0.4159233272075653, 0.003282858757302165, 8.452770998701453e-05, 0.0018853973597288132, 0.016533182933926582, 0.01970564015209675, 0.0025545053649693727, 0.0030551960226148367, 0.0014286923687905073, 0.11038979142904282, 0.41588664054870605], [0.001148459268733859, 7.419321627821773e-05, 6.23178857495077e-05, 0.000664860475808382, 0.0016707003815099597, 0.001909353188239038, 0.000977815710939467, 0.32697442173957825, 0.0015086052007973194, 2.4269376808661036e-05, 0.0015572640113532543, 0.009318147785961628, 0.2188655287027359, 0.005171582568436861, 0.0017881946405395865, 0.005149575415998697, 0.09618134051561356, 0.32695338129997253], [0.00036327826092019677, 0.00013798117288388312, 9.691157902125269e-05, 0.0007452177233062685, 0.0028258312959223986, 0.0013292159419506788, 0.002238839864730835, 0.43055224418640137, 0.000412020948715508, 1.2075209269823972e-05, 0.00025244528660550714, 0.0028625079430639744, 0.015561843290925026, 0.009393722750246525, 0.0021897307597100735, 0.003412883495911956, 0.09708698093891144, 0.43052616715431213], [0.0014193610986694694, 5.7936242228606716e-05, 2.1601077605737373e-05, 0.0002975897223223001, 0.001538142911158502, 0.0007225857116281986, 0.002761289943009615, 0.4037676751613617, 0.00573012325912714, 0.00011465427814982831, 0.0007767475908622146, 0.00451380992308259, 0.0032044416293501854, 0.0033055434469133615, 0.014052408747375011, 0.0050184037536382675, 0.14896106719970703, 0.4037364721298218], [0.001379176857881248, 0.0017438952345401049, 0.0014238165458664298, 0.014574048109352589, 0.00791929755359888, 0.009980510920286179, 0.009379765950143337, 0.39980319142341614, 0.0006419955170713365, 8.592626545578241e-05, 0.0007160064997151494, 0.0033541880548000336, 0.018816236406564713, 0.007488710340112448, 0.003085654228925705, 0.005714591592550278, 0.11411044746637344, 0.39978259801864624], [0.0021231553982943296, 0.0006759881507605314, 0.0004716636030934751, 0.00046339648542925715, 0.0007369122467935085, 0.0008492633933201432, 0.00458193477243185, 0.4074662923812866, 0.006669594906270504, 0.00024024110462050885, 0.0004310373915359378, 0.0011043853592127562, 0.0007064184173941612, 0.0004194749053567648, 0.000238447159063071, 0.0003562509664334357, 0.16502070426940918, 0.40744492411613464], [0.006760743446648121, 0.000996405491605401, 0.0007097577326931059, 0.0007759429281577468, 0.001851675333455205, 0.0014456402277573943, 0.005238041747361422, 0.39558881521224976, 0.010647703893482685, 0.0014017245266586542, 0.0021308099385350943, 0.004990743938833475, 0.002157259965315461, 0.0011640569427981973, 0.0005696660373359919, 0.0010516548063606024, 0.16694723069667816, 0.3955720365047455]], [[0.003599234391003847, 0.0015920393634587526, 0.0012059489963576198, 0.011302780359983444, 0.005396614782512188, 0.006300016772001982, 0.0007071447325870395, 0.43996959924697876, 0.0037390440702438354, 0.0015314772026613355, 0.008545001968741417, 0.01099904254078865, 0.0010048544500023127, 0.0008130042697302997, 0.0006920970045030117, 0.0006695308838970959, 0.06201270967721939, 0.4399198889732361], [0.00020371480786707252, 0.00809909775853157, 0.002689384389668703, 0.001130554242990911, 0.0016633766936138272, 0.0011404164833948016, 0.0006959060556255281, 0.45441746711730957, 0.0029417802579700947, 0.0016431749099865556, 0.0006772623746655881, 0.0011647589271888137, 0.0004045538080390543, 0.0004684033337980509, 0.00013082822260912508, 0.0006027609924785793, 0.06756602972745895, 0.4543604850769043], [8.983511361293495e-05, 0.0011112798238173127, 0.00517114344984293, 0.0006547815864905715, 0.0003489558002911508, 0.00041880927165038884, 0.0007508281851187348, 0.45383304357528687, 0.0006032653618603945, 0.0009923212928697467, 0.000781694776378572, 0.0012283010873943567, 0.00015017128316685557, 0.0005881143151782453, 0.0001304102479480207, 0.0004741430748254061, 0.07888541370630264, 0.4537873864173889], [0.0002138301351806149, 0.0018528590444475412, 0.002014734083786607, 0.009544429369270802, 0.006572066806256771, 0.0017392027657479048, 0.0005752446595579386, 0.4492584764957428, 0.0008655150304548442, 0.0009505120106041431, 0.0024727850686758757, 0.002599245635792613, 0.0005850079469382763, 0.00022972993610892445, 0.0002704844227991998, 0.0003988880489487201, 0.07065266370773315, 0.4492042660713196], [0.00024555905838496983, 0.0041578602977097034, 0.0013587538851425052, 0.005971898790448904, 0.03262573853135109, 0.0045287287794053555, 0.0011568063637241721, 0.433220773935318, 0.0009785370202735066, 0.0015020942082628608, 0.0016139725921675563, 0.005315732676535845, 0.0006148271495476365, 0.00046915109851397574, 0.0002944655134342611, 0.0005476431106217206, 0.07222725450992584, 0.4331701695919037], [0.00025959694175980985, 0.0008021888206712902, 0.0005630837404169142, 0.0014948968309909105, 0.002568099880591035, 0.009547492489218712, 0.000891996081918478, 0.4507938325405121, 0.00044625328155234456, 0.000753544270992279, 0.002241388661786914, 0.005037541501224041, 0.0005239872843958437, 0.0005400290829129517, 0.00014471229224000126, 0.0009919175645336509, 0.0716548040509224, 0.4507445991039276], [0.002247139113023877, 0.0020471003372222185, 0.0035776705481112003, 0.0018238526536151767, 0.005193034652620554, 0.009586701169610023, 0.016449356451630592, 0.40074586868286133, 0.008492032065987587, 0.001230989582836628, 0.001100055524148047, 0.002289417665451765, 0.0006474655820056796, 0.001678736531175673, 0.0007632611086592078, 0.0018350989557802677, 0.13957995176315308, 0.4007122218608856], [0.0003427485644351691, 0.002454611472785473, 0.0032344928476959467, 0.0024256857577711344, 0.00782182440161705, 0.00219267257489264, 0.0017643158789724112, 0.42870816588401794, 0.0019347057677805424, 0.002365813124924898, 0.003750165458768606, 0.006729722023010254, 0.0006327489973045886, 0.0007026760722510517, 0.0010912952711805701, 0.00038637270336039364, 0.10479532927274704, 0.4286666810512543], [0.0004594536148943007, 0.0050069065764546394, 0.0030763456597924232, 0.0024403471034020185, 0.007703725714236498, 0.006918722297996283, 0.0034463987685739994, 0.41896316409111023, 0.014893028885126114, 0.0037909047678112984, 0.0024026399478316307, 0.005073843523859978, 0.001603868673555553, 0.0013569318689405918, 0.0004128921718802303, 0.0013088840059936047, 0.10222381353378296, 0.4189182221889496], [0.0007708169287070632, 0.004026878625154495, 0.0047936392948031425, 0.0010040279012173414, 0.0021771404426544905, 0.002424531616270542, 0.0013200415996834636, 0.41911551356315613, 0.004244321957230568, 0.04145686700940132, 0.0015708536375313997, 0.004624996799975634, 0.0005749391275458038, 0.0019918533507734537, 0.0006839503766968846, 0.0010815910063683987, 0.08906391263008118, 0.419074147939682], [0.00048007789882831275, 0.001822446589358151, 0.003143219742923975, 0.005581065081059933, 0.0032509900629520416, 0.002039929386228323, 0.0015156423905864358, 0.4225105047225952, 0.0011509936302900314, 0.002241124864667654, 0.021360138431191444, 0.011904114857316017, 0.0013953694142401218, 0.00040474467095918953, 0.0003051086387131363, 0.00041154780774377286, 0.09801166504621506, 0.42247122526168823], [0.0004738743882626295, 0.0008172529051080346, 0.0019637062214314938, 0.0015859821578487754, 0.0041350750252604485, 0.001985349925234914, 0.0005600576987490058, 0.42510899901390076, 0.0007586521678604186, 0.0025024793576449156, 0.006343620363622904, 0.04363267496228218, 0.0024031682405620813, 0.001253669150173664, 0.0004184118879493326, 0.0005451265606097877, 0.08044840395450592, 0.4250634014606476], [0.00031211969326250255, 0.001037435606122017, 0.0005060528637841344, 0.0008150709327310324, 0.001442534034140408, 0.00061510264640674, 0.0012685132678598166, 0.40865132212638855, 0.0004606822330970317, 0.002333106007426977, 0.001609631348401308, 0.0075092315673828125, 0.028996042907238007, 0.0029469102155417204, 0.00021885619207751006, 0.004500118549913168, 0.1281689554452896, 0.40860846638679504], [0.00032739288872107863, 0.00042273447616025805, 0.000515233026817441, 0.0005470355972647667, 0.0003928651276510209, 0.000368821230949834, 0.0006613057921640575, 0.4389447271823883, 0.00022121056099422276, 0.0005370149738155305, 0.000701583456248045, 0.004092245828360319, 0.002083962317556143, 0.002644561231136322, 0.0005751260905526578, 0.0008707577944733202, 0.10719884932041168, 0.43889448046684265], [0.0002544191956985742, 0.00047363771591335535, 0.0005111396312713623, 0.0004507185658439994, 0.00038921309169381857, 0.0003809584304690361, 0.002564836060628295, 0.3998028635978699, 0.0005777714541181922, 0.0006145576480776072, 0.0009945646161213517, 0.0022086126264184713, 0.0014959614491090178, 0.0011668383376672864, 0.027405189350247383, 0.0006169546977616847, 0.16033880412578583, 0.3997529149055481], [0.0002776408800855279, 0.0004655321827158332, 0.00047129273298196495, 0.0005220651510171592, 0.0003495201235637069, 0.000366757798474282, 0.0005082431016489863, 0.4469011425971985, 9.051641973201185e-05, 0.0005596568225882947, 0.00044064901885576546, 0.0017644553445279598, 0.002462074626237154, 0.0007535337936133146, 0.000300915795378387, 0.005181869957596064, 0.09173525124788284, 0.44684892892837524], [0.00026551823248155415, 0.0009952320251613855, 0.0014288312522694468, 0.0008923627901822329, 0.002964702667668462, 0.0011593494564294815, 0.0014570958446711302, 0.4317452907562256, 0.001137888408266008, 0.0009290913003496826, 0.0011693827109411359, 0.0027277839835733175, 0.0002208041842095554, 0.00032597751123830676, 0.00036103298771195114, 0.00020646008488256484, 0.12031283229589462, 0.4317004084587097], [0.00034276064252480865, 0.002454585861414671, 0.0032344914507120848, 0.0024256741162389517, 0.007821835577487946, 0.00219274265691638, 0.001764322747476399, 0.42870816588401794, 0.0019347360357642174, 0.00236579985357821, 0.0037501691840589046, 0.006729728542268276, 0.0006327523151412606, 0.0007026897510513663, 0.0010912874713540077, 0.0003863723250105977, 0.10479557514190674, 0.42866647243499756]], [[0.0032790987752377987, 0.014265084639191628, 0.00805346854031086, 0.051032230257987976, 0.04439675062894821, 0.15787772834300995, 0.02337358519434929, 0.02882556803524494, 0.5180152654647827, 0.031102582812309265, 0.027134442701935768, 0.00846695713698864, 0.0101704653352499, 0.013139236718416214, 0.004449603147804737, 0.004172074142843485, 0.02342209964990616, 0.02882377989590168], [0.001469105132855475, 0.02302776277065277, 0.20413796603679657, 0.039402320981025696, 0.021295610815286636, 0.1219911277294159, 0.0056359353475272655, 0.2267150729894638, 0.04111021012067795, 0.018473586067557335, 0.004016225691884756, 0.0072724297642707825, 0.0016180528327822685, 0.003226320259273052, 0.0004432879213709384, 0.003367797704413533, 0.05010500177741051, 0.22669225931167603], [0.0018999265739694238, 0.011115686036646366, 0.2733903229236603, 0.014268536120653152, 0.00556353572756052, 0.030841495841741562, 0.0028687736485153437, 0.28386104106903076, 0.005337242502719164, 0.02014417201280594, 0.002218896523118019, 0.0027426276355981827, 0.0006040180451236665, 0.0009077321155928075, 0.00022732846264261752, 0.002168965060263872, 0.05800969526171684, 0.28383004665374756], [0.00245596282184124, 0.01727631874382496, 0.04174289107322693, 0.12437298148870468, 0.048110589385032654, 0.19338935613632202, 0.004294795449823141, 0.21021534502506256, 0.06061951816082001, 0.008638416416943073, 0.011754006147384644, 0.009184561669826508, 0.007567041087895632, 0.00324023119173944, 0.002118039643391967, 0.005313578527420759, 0.039511539041996, 0.21019479632377625], [0.0018585724756121635, 0.012082763016223907, 0.03587961569428444, 0.03162924200296402, 0.05624169483780861, 0.2520900070667267, 0.0016662146663293242, 0.25791117548942566, 0.032094914466142654, 0.0068973032757639885, 0.00602083932608366, 0.005651292856782675, 0.0026507119182497263, 0.0008695640717633069, 0.0015419904375448823, 0.001200811704620719, 0.03583010286092758, 0.2578832507133484], [0.0023401544895023108, 0.01024358719587326, 0.03699512034654617, 0.025719914585351944, 0.015051606111228466, 0.12752816081047058, 0.0027358054649084806, 0.328978031873703, 0.02689450979232788, 0.0042948415502905846, 0.007199451327323914, 0.005597708746790886, 0.004356002435088158, 0.000788948789704591, 0.0006171842105686665, 0.0009699813090264797, 0.07074422389268875, 0.32894477248191833], [0.0017057869117707014, 0.009456495754420757, 0.012059221975505352, 0.046989426016807556, 0.04275370389223099, 0.04635361582040787, 0.012815609574317932, 0.2886880040168762, 0.146025151014328, 0.006269930861890316, 0.0064554414711892605, 0.009179143235087395, 0.0007378277368843555, 0.0005298458854667842, 0.00044705727486871183, 0.0005758714396506548, 0.08029480278491974, 0.2886630892753601], [0.00029861574876122177, 0.0006389690097421408, 0.0010823518969118595, 0.0008453875198028982, 0.0012002025032415986, 0.0012378348037600517, 0.00040626400732435286, 0.46155473589897156, 0.003321785479784012, 0.0003569863038137555, 0.000681072473526001, 0.0013613682240247726, 0.0004572253383230418, 0.00024089281214401126, 0.0001325275661656633, 0.00025833575637079775, 0.06442489475011826, 0.4615005850791931], [0.003885416081175208, 0.018645968288183212, 0.039869166910648346, 0.027553586289286613, 0.017359627410769463, 0.09230875223875046, 0.006832537241280079, 0.31347784399986267, 0.04449060186743736, 0.009965307079255581, 0.009285897947847843, 0.008054309524595737, 0.004465612582862377, 0.0010642324341461062, 0.0004458365438040346, 0.0013065930688753724, 0.0875367820262909, 0.31345197558403015], [0.0018364019924774766, 0.03382977843284607, 0.5991441011428833, 0.015336329117417336, 0.0066644358448684216, 0.05839848145842552, 0.006613109260797501, 0.0718870535492897, 0.010950466617941856, 0.06882041692733765, 0.004989304579794407, 0.003945652861148119, 0.0021382553968578577, 0.008777023293077946, 0.001353649073280394, 0.007816283032298088, 0.025617560371756554, 0.07188183069229126], [0.003539355704560876, 0.00489558931440115, 0.024808047339320183, 0.009181241504848003, 0.006688850000500679, 0.05698227137327194, 0.0017550983466207981, 0.335409939289093, 0.01819087378680706, 0.007590685039758682, 0.04067442938685417, 0.01504823099821806, 0.05555162951350212, 0.002663158345967531, 0.002599403029307723, 0.006648382171988487, 0.07239503413438797, 0.3353777825832367], [0.0019415683345869184, 0.002274005440995097, 0.014151439070701599, 0.0013173478655517101, 0.001987713621929288, 0.015169227495789528, 0.0009175190352834761, 0.40147945284843445, 0.014295799657702446, 0.004466657061129808, 0.007842408493161201, 0.01300603523850441, 0.027676736935973167, 0.005450068973004818, 0.0012972818221896887, 0.008297002874314785, 0.07699507474899292, 0.40143465995788574], [0.001905662938952446, 0.0006398847326636314, 0.0063690426759421825, 0.0010407449444755912, 0.0005045255529694259, 0.0053245448507368565, 0.00017684952763374895, 0.42756184935569763, 0.004579153377562761, 0.0009226998081430793, 0.0033032421488314867, 0.002501492155715823, 0.042732927948236465, 0.002317445818334818, 0.0006215890753082931, 0.004395878408104181, 0.06759403645992279, 0.4275084435939789], [0.0004543954855762422, 0.00033188771340064704, 0.01323113776743412, 0.0006833897205069661, 0.0004347867798060179, 0.004855477251112461, 0.0009616127354092896, 0.42146793007850647, 0.001345873693935573, 0.0006999275065027177, 0.00039335794281214476, 0.0010783405741676688, 0.0016005480429157615, 0.014826063998043537, 0.0006545179639942944, 0.019954459741711617, 0.09561119228601456, 0.4214150607585907], [0.0008759490447118878, 0.00018731222371570766, 0.002486472949385643, 0.0002203641925007105, 0.00036636460572481155, 0.002170547377318144, 0.0005175332771614194, 0.4265150725841522, 0.0038235222455114126, 0.0012487105559557676, 0.0008595815161243081, 0.0034318282268941402, 0.0018513350514695048, 0.024049509316682816, 0.0010818131268024445, 0.023337386548519135, 0.08052485436201096, 0.42645183205604553], [0.0006958151352591813, 0.0005498644895851612, 0.012966915965080261, 0.001219040947034955, 0.0006719160010106862, 0.004943782929331064, 0.0009462318266741931, 0.410341739654541, 0.0009453478851355612, 0.0006018405547365546, 0.0008143697632476687, 0.0016901497729122639, 0.0029697557911276817, 0.014319704845547676, 0.0008609719225205481, 0.022021887823939323, 0.11315125972032547, 0.41028928756713867], [0.00020261654572095722, 0.0005247960798442364, 0.0006758988020010293, 0.0009005678002722561, 0.0012792088091373444, 0.00135267642326653, 0.0003841780999209732, 0.46017104387283325, 0.004197299480438232, 0.00028629470034502447, 0.0006222661468200386, 0.001538697979412973, 0.00030602383776567876, 0.00019425837672315538, 9.32296461542137e-05, 0.00017200967704411596, 0.06698355078697205, 0.46011531352996826], [0.00029861650546081364, 0.0006389705813489854, 0.0010823339689522982, 0.0008453879854641855, 0.0012001883005723357, 0.0012378282845020294, 0.0004062578664161265, 0.46155455708503723, 0.003321815747767687, 0.0003569911059457809, 0.000681081903167069, 0.0013613956980407238, 0.00045722711365669966, 0.00024089546059258282, 0.00013252928329166025, 0.0002583357854746282, 0.064425028860569, 0.4615006446838379]], [[0.006297331303358078, 0.08532749116420746, 0.04146086052060127, 0.14273907244205475, 0.1955622285604477, 0.22956785559654236, 0.04546564072370529, 0.0823705866932869, 0.026250770315527916, 0.01977717876434326, 0.00694336649030447, 0.003679543500766158, 0.001857744762673974, 0.001063231728039682, 0.0010634305654093623, 0.0009714777115732431, 0.027237188071012497, 0.08236498385667801], [0.01598490960896015, 0.045713819563388824, 0.021603349596261978, 0.01347297616302967, 0.002162151737138629, 0.0031395929399877787, 0.003049702849239111, 0.31883272528648376, 0.02181444689631462, 0.07929780334234238, 0.033361129462718964, 0.0030523783061653376, 0.006102860439568758, 0.0011486392468214035, 0.0009163944632746279, 0.006425557192414999, 0.1051192432641983, 0.3188023269176483], [0.0024169913958758116, 0.0016946605173870921, 0.001723308814689517, 0.001713485922664404, 0.0010416985023766756, 0.0006710849702358246, 0.0009589678375050426, 0.4268689453601837, 0.007016446907073259, 0.0038305921480059624, 0.0040815738029778, 0.0017249564407393336, 0.001102731446735561, 0.0007984595140442252, 0.0005283535574562848, 0.002488987985998392, 0.11451146751642227, 0.42682743072509766], [0.04703891649842262, 0.05165586620569229, 0.013763758353888988, 0.030119044706225395, 0.011079514399170876, 0.011957813054323196, 0.00863686203956604, 0.2660178542137146, 0.07599765062332153, 0.038539819419384, 0.040893543511629105, 0.004505797754973173, 0.02131768688559532, 0.0029803398065268993, 0.005579153075814247, 0.00928732380270958, 0.09463594853878021, 0.26599305868148804], [0.013265848159790039, 0.021234016865491867, 0.00865547638386488, 0.007966461591422558, 0.0027485089376568794, 0.0024729541037231684, 0.00547496322542429, 0.378327876329422, 0.016870692372322083, 0.014227237552404404, 0.006594040431082249, 0.002073013223707676, 0.00881649274379015, 0.0020075496286153793, 0.0021196601446717978, 0.0051454887725412846, 0.1237088069319725, 0.37829089164733887], [0.02331109344959259, 0.016410144045948982, 0.008005302399396896, 0.014670119620859623, 0.0074540735222399235, 0.007472431752830744, 0.007501291576772928, 0.34845253825187683, 0.04625697806477547, 0.019385330379009247, 0.02136767841875553, 0.005910944193601608, 0.011156143620610237, 0.0021100970916450024, 0.0009773691417649388, 0.005178247112780809, 0.10596292465925217, 0.3484173119068146], [0.005123291164636612, 0.026676343753933907, 0.005671131424605846, 0.03360878676176071, 0.01250111497938633, 0.009473467245697975, 0.010769111104309559, 0.3563310205936432, 0.04112229868769646, 0.009895117953419685, 0.007191711105406284, 0.001947607146576047, 0.0019795026164501905, 0.0006004475872032344, 0.0007936520269140601, 0.0017034257762134075, 0.11831441521644592, 0.3562975525856018], [0.00031610828591510653, 0.0008862669346854091, 0.0008077698294073343, 0.0018173721618950367, 0.0016589416190981865, 0.0005471894983202219, 0.0009045967599377036, 0.4486299157142639, 0.0012632157886400819, 0.0007773445686325431, 0.0014324584044516087, 0.0031418839935213327, 0.001226242515258491, 0.0005330907879397273, 0.0003935286367777735, 0.0004570217279251665, 0.08661710470914841, 0.44858992099761963], [0.022488154470920563, 0.06413812935352325, 0.026145711541175842, 0.09613041579723358, 0.040167298167943954, 0.08163842558860779, 0.019167926162481308, 0.2504718005657196, 0.028030510991811752, 0.03004797361791134, 0.00804862380027771, 0.007176229730248451, 0.008818475529551506, 0.0031971826683729887, 0.0011248255614191294, 0.004194369073957205, 0.05856720358133316, 0.25044670701026917], [0.0075888740830123425, 0.05084892734885216, 0.09341619163751602, 0.05321898311376572, 0.0211724154651165, 0.06662339717149734, 0.008127011358737946, 0.2633773386478424, 0.006168150343000889, 0.05950368195772171, 0.01562147494405508, 0.007986525073647499, 0.010767567902803421, 0.003610653104260564, 0.0036190147511661053, 0.01085670292377472, 0.05413883179426193, 0.2633543014526367], [0.028269924223423004, 0.08416488021612167, 0.03996463119983673, 0.05015932396054268, 0.010897519066929817, 0.04549421742558479, 0.006890983786433935, 0.21412983536720276, 0.011186528019607067, 0.0796014666557312, 0.06848928332328796, 0.02633088454604149, 0.05050520971417427, 0.004938958678394556, 0.008788404054939747, 0.013008142821490765, 0.04307267442345619, 0.21410711109638214], [0.003220055252313614, 0.0172969251871109, 0.007245936896651983, 0.015297734178602695, 0.004290791694074869, 0.004289126489311457, 0.0032145429868251085, 0.3914172053337097, 0.004181950818747282, 0.013778210617601871, 0.013861458748579025, 0.011831087060272694, 0.013678730465471745, 0.0028582410886883736, 0.0028103196527808905, 0.003571186913177371, 0.09578048437833786, 0.39137595891952515], [0.0023123109713196754, 0.00985004473477602, 0.005529484711587429, 0.009037571027874947, 0.0030212311539798975, 0.019009409472346306, 0.003284463658928871, 0.3677755296230316, 0.001531496411189437, 0.008609248325228691, 0.018579667434096336, 0.013053442351520061, 0.06257408857345581, 0.006757975555956364, 0.007292815949767828, 0.013581220991909504, 0.08046532422304153, 0.3677346706390381], [0.0017613810487091541, 0.0098361661657691, 0.004452899564057589, 0.015934335067868233, 0.006262433715164661, 0.01029908936470747, 0.004809537436813116, 0.4085994362831116, 0.0026546847075223923, 0.0034107263199985027, 0.0044774278067052364, 0.008058068342506886, 0.012329118326306343, 0.0025219502858817577, 0.003866781946271658, 0.0033661844208836555, 0.08880159258842468, 0.4085581302642822], [0.005130374804139137, 0.04777655005455017, 0.017369503155350685, 0.024532634764909744, 0.008006365038454533, 0.026997502893209457, 0.01033091265708208, 0.33486422896385193, 0.0013800963060930371, 0.0346033088862896, 0.014193654991686344, 0.014274499379098415, 0.015505463816225529, 0.0033798643853515387, 0.003500360529869795, 0.014157491736114025, 0.08916700631380081, 0.33483022451400757], [0.0008487168815918267, 0.003566997591406107, 0.0020271639805287123, 0.006957596633583307, 0.001989784650504589, 0.006283788941800594, 0.004550759214907885, 0.4158172011375427, 0.0021665645763278008, 0.0016643350245431066, 0.0026682945899665356, 0.005294850096106529, 0.01106880884617567, 0.002734646899625659, 0.0028897584415972233, 0.002805691445246339, 0.11088928580284119, 0.41577577590942383], [0.0001494945026934147, 0.0006759926327504218, 0.0004098378703929484, 0.0016393475234508514, 0.0012104922207072377, 0.00039050914347171783, 0.0005939449765719473, 0.45512276887893677, 0.0010999254882335663, 0.0005121354479342699, 0.0009576489683240652, 0.0017272352706640959, 0.0006277127540670335, 0.00017832986486610025, 0.00018855679081752896, 0.00020953521016053855, 0.07923123985528946, 0.4550752341747284], [0.00031610357109457254, 0.0008862466202117503, 0.0008077713428065181, 0.0018173200078308582, 0.0016588994767516851, 0.0005471772165037692, 0.0009045746992342174, 0.44862988591194153, 0.0012632084544748068, 0.0007773504476062953, 0.001432453515008092, 0.003141885157674551, 0.0012262377422302961, 0.0005330843850970268, 0.0003935188287869096, 0.0004570190794765949, 0.08661680668592453, 0.4485905170440674]], [[0.0104027409106493, 0.011686058714985847, 0.0008456174400635064, 0.025782277807593346, 0.02186555229127407, 0.005683401599526405, 0.06537509709596634, 0.3679440915584564, 0.014696236699819565, 0.0014378326013684273, 0.004056754056364298, 0.0047688414342701435, 0.002949155168607831, 0.00016155815683305264, 0.0023437906056642532, 0.0003053822729270905, 0.09178788959980011, 0.3679077625274658], [0.01558005716651678, 0.004394535906612873, 0.004494654014706612, 0.007845793850719929, 0.008311945013701916, 0.008764463476836681, 0.018945960327982903, 0.3004174530506134, 0.1963895857334137, 0.004687453154474497, 0.004691140726208687, 0.002858177525922656, 0.0007776233251206577, 0.0006266087293624878, 0.0006174093578010798, 0.0007406104123219848, 0.1194581538438797, 0.30039840936660767], [0.016451722010970116, 0.032476454973220825, 0.016381816938519478, 0.01234723161906004, 0.008065125904977322, 0.02439766563475132, 0.011779064312577248, 0.32950469851493835, 0.057379499077796936, 0.026393288746476173, 0.016225235536694527, 0.0051675820723176, 0.0027440006379038095, 0.0010920221684500575, 0.000573157100006938, 0.0011717643355950713, 0.1083669513463974, 0.3294827938079834], [0.008323585614562035, 0.006614216603338718, 0.022023655474185944, 0.020651759579777718, 0.013295830227434635, 0.023808525875210762, 0.009911352768540382, 0.343033105134964, 0.05970768257975578, 0.015118260867893696, 0.01198335736989975, 0.005325316917151213, 0.005610394757241011, 0.002235064283013344, 0.000687452673446387, 0.004346427973359823, 0.10431338101625443, 0.3430105447769165], [0.030036896467208862, 0.003016051137819886, 0.001725266920402646, 0.03342822939157486, 0.03522833436727524, 0.02117353118956089, 0.00836935918778181, 0.25898030400276184, 0.2011900246143341, 0.023748895153403282, 0.01663295552134514, 0.009413463994860649, 0.009216157719492912, 0.0023369956761598587, 0.0009371329215355217, 0.005059422925114632, 0.08053864538669586, 0.25896838307380676], [0.016368698328733444, 0.005496216472238302, 0.0013369262451305985, 0.0774649977684021, 0.12293829768896103, 0.019299857318401337, 0.010552860796451569, 0.27443933486938477, 0.09968256950378418, 0.014722159132361412, 0.008518029935657978, 0.004805529955774546, 0.002040817867964506, 0.000243469126871787, 0.0004553321923594922, 0.0006365873850882053, 0.066579170525074, 0.27441903948783875], [0.009047520346939564, 0.003776408499106765, 0.005945539567619562, 0.01317522767931223, 0.01347169280052185, 0.055143725126981735, 0.020402994006872177, 0.3278920650482178, 0.09457932412624359, 0.004291293676942587, 0.008294518105685711, 0.006849305704236031, 0.007144730072468519, 0.0027364955749362707, 0.0020630203653126955, 0.006569042336195707, 0.09074169397354126, 0.32787540555000305], [0.01883692480623722, 0.021225934848189354, 0.014139561913907528, 0.013667677529156208, 0.009771912358701229, 0.015209545381367207, 0.049045074731111526, 0.320063978433609, 0.014358550310134888, 0.005417169071733952, 0.0060692462138831615, 0.00920344702899456, 0.0038502071984112263, 0.004427313804626465, 0.0015898896381258965, 0.006094998214393854, 0.1669812649488449, 0.3200472593307495], [0.06619083881378174, 0.008834784850478172, 0.0014442611718550324, 0.021129781380295753, 0.005155290476977825, 0.0073651764541864395, 0.18240246176719666, 0.2697386145591736, 0.01007398497313261, 0.0014601584989577532, 0.001117392093874514, 0.004648519679903984, 0.0019443175988271832, 0.0016500736819580197, 0.00020116922678425908, 0.0026958377566188574, 0.14421787858009338, 0.26972949504852295], [0.03842972591519356, 0.01734660007059574, 0.005194937344640493, 0.012511210516095161, 0.01937790773808956, 0.02525627426803112, 0.03693227842450142, 0.171565979719162, 0.33135589957237244, 0.006928511895239353, 0.053579166531562805, 0.018863311037421227, 0.004878569860011339, 0.0021064067259430885, 0.0028996372129768133, 0.0031004133634269238, 0.07811615616083145, 0.17155690491199493], [0.025454740971326828, 0.016478128731250763, 0.005001118406653404, 0.04040030390024185, 0.060175519436597824, 0.01655706763267517, 0.07534428685903549, 0.3008618652820587, 0.034021977335214615, 0.009096034802496433, 0.005346979480236769, 0.00595424510538578, 0.004934538621455431, 0.002283176640048623, 0.0002498074318282306, 0.0016681234119459987, 0.09532710909843445, 0.30084508657455444], [0.05286598950624466, 0.005600742530077696, 0.0018647739198058844, 0.06438227742910385, 0.03787828981876373, 0.012499187141656876, 0.04145728424191475, 0.2623468041419983, 0.09114021807909012, 0.004009597469121218, 0.04228987917304039, 0.015675874426960945, 0.015180528163909912, 0.0018386957235634327, 0.0006606329116038978, 0.002225032076239586, 0.08575312048196793, 0.2623310983181], [0.016162211075425148, 0.0033486064057797194, 0.00234211259521544, 0.0371091365814209, 0.01789132133126259, 0.014177304692566395, 0.030864663422107697, 0.2706007957458496, 0.031202692538499832, 0.004128722008317709, 0.13456155359745026, 0.05254668369889259, 0.031656913459300995, 0.0043642292730510235, 0.007305806968361139, 0.0038561250548809767, 0.06729786843061447, 0.27058324217796326], [0.008112045004963875, 0.006922518834471703, 0.0016048833495005965, 0.012033897452056408, 0.013989761471748352, 0.008082813583314419, 0.01747989095747471, 0.3806762993335724, 0.010320665314793587, 0.003533738199621439, 0.01049191877245903, 0.012784305959939957, 0.02133012004196644, 0.0026814667508006096, 0.006869908422231674, 0.005037190392613411, 0.09739840030670166, 0.3806501626968384], [0.00937111396342516, 0.0025394223630428314, 0.0017733376007527113, 0.006246636155992746, 0.013013171032071114, 0.008405379019677639, 0.009810232557356358, 0.3444838225841522, 0.013604317791759968, 0.004168971907347441, 0.0099873635917902, 0.027253536507487297, 0.034710586071014404, 0.05740400403738022, 0.014388328418135643, 0.013606877066195011, 0.08477841317653656, 0.34445440769195557], [0.004825809970498085, 0.009824281558394432, 0.0026713786646723747, 0.021895622834563255, 0.010604104027152061, 0.007582413032650948, 0.025370122864842415, 0.3679702579975128, 0.010488948784768581, 0.0038965719286352396, 0.013833933509886265, 0.014176782220602036, 0.011691407300531864, 0.0014744336949661374, 0.036776553839445114, 0.006747033447027206, 0.08222738653421402, 0.3679428994655609], [0.012151944451034069, 0.0052777500823140144, 0.005633995868265629, 0.005866574589163065, 0.0038045162800699472, 0.0110716437920928, 0.029694056138396263, 0.37352773547172546, 0.01347900927066803, 0.0018294814508408308, 0.0033932882361114025, 0.005619253031909466, 0.003155312268063426, 0.004069290589541197, 0.0006852914812043309, 0.006506103556603193, 0.1407306045293808, 0.3735042214393616], [0.0188369769603014, 0.02122507244348526, 0.014139669016003609, 0.013667292892932892, 0.009771808050572872, 0.015209569595754147, 0.049043696373701096, 0.3200649619102478, 0.014358771964907646, 0.005417118314653635, 0.00606929836794734, 0.009203455410897732, 0.0038502009119838476, 0.0044274223037064075, 0.001589871826581657, 0.006095118820667267, 0.16698125004768372, 0.3200484812259674]], [[0.14302843809127808, 0.15763142704963684, 0.055315714329481125, 0.03820159658789635, 0.1274343580007553, 0.15437008440494537, 0.053679898381233215, 0.006044565234333277, 0.0208832286298275, 0.0266279149800539, 0.04942239820957184, 0.04440025985240936, 0.05071457102894783, 0.012489601038396358, 0.022998042404651642, 0.02450394816696644, 0.006209638901054859, 0.006044275127351284], [0.0007040731143206358, 0.09411334991455078, 0.2667628228664398, 0.054379791021347046, 0.02008090168237686, 0.025682326406240463, 0.024708470329642296, 0.09195776283740997, 0.008389054797589779, 0.16440576314926147, 0.016465282067656517, 0.018862465396523476, 0.009857609868049622, 0.013006304390728474, 0.01902945712208748, 0.018357792869210243, 0.06128286197781563, 0.09195392578840256], [0.00011887256550835446, 0.019254418089985847, 0.1521340012550354, 0.009472423233091831, 0.00565860653296113, 0.009819095022976398, 0.012788975611329079, 0.13819146156311035, 0.005971151869744062, 0.28051185607910156, 0.009770789183676243, 0.021591633558273315, 0.016098320484161377, 0.04578258469700813, 0.008237168192863464, 0.051323436200618744, 0.07508816570043564, 0.138186976313591], [5.707809032173827e-05, 0.031892772763967514, 0.005479601211845875, 0.43873074650764465, 0.012240923941135406, 0.010932954028248787, 0.08429867774248123, 0.10133752971887589, 0.007212257944047451, 0.02147694118320942, 0.02310183085501194, 0.032452549785375595, 0.0014224224723875523, 0.004783123265951872, 0.009018619544804096, 0.005551518872380257, 0.1086762547492981, 0.10133417695760727], [0.00013123157259542495, 0.008215920999646187, 0.0016052728751674294, 0.014704431407153606, 0.04071065038442612, 0.04364342987537384, 0.04994354024529457, 0.09868775308132172, 0.02314959466457367, 0.01729562133550644, 0.038434721529483795, 0.30112966895103455, 0.02561972849071026, 0.02890847995877266, 0.055694181472063065, 0.05889933183789253, 0.0945432111620903, 0.09868326783180237], [0.0004061304498463869, 0.028840048238635063, 0.010499266907572746, 0.006227478850632906, 0.002952067879959941, 0.3711761236190796, 0.016347724944353104, 0.08949792385101318, 0.009464818984270096, 0.021740587428212166, 0.050703249871730804, 0.038709789514541626, 0.052481453865766525, 0.025475425645709038, 0.059198059141635895, 0.05272292345762253, 0.07406292855739594, 0.08949397504329681], [0.0006967731169424951, 0.017886202782392502, 0.008466911502182484, 0.035237543284893036, 0.0046896860003471375, 0.005728060845285654, 0.1416461020708084, 0.1652752161026001, 0.15988677740097046, 0.004085449036210775, 0.08859708160161972, 0.010559587739408016, 0.0022640216629952192, 0.001045921933837235, 0.0030383365228772163, 0.00033105857437476516, 0.18529759347438812, 0.1652676910161972], [0.005263092927634716, 0.04396868869662285, 0.07975968718528748, 0.027498146519064903, 0.010034213773906231, 0.01965143345296383, 0.03965795412659645, 0.14697149395942688, 0.051617126911878586, 0.023492207750678062, 0.04158293083310127, 0.0258173868060112, 0.023753764107823372, 0.07159411162137985, 0.01986905187368393, 0.027400732040405273, 0.19509702920913696, 0.1469709575176239], [0.5214704871177673, 0.012269379571080208, 0.012967837043106556, 0.01592603139579296, 0.07705417275428772, 0.19444318115711212, 0.010770391672849655, 0.0016674239886924624, 0.09720782190561295, 0.00443641934543848, 0.01674141362309456, 0.013721429742872715, 0.009126831777393818, 0.0006717421347275376, 0.006575108505785465, 0.0017102084821090102, 0.0015727878781035542, 0.0016673190984874964], [0.00509173097088933, 0.0031852605752646923, 0.8862209916114807, 0.00023403474187944084, 0.00037700808024965227, 0.0010648443130776286, 1.1201423149032053e-05, 2.8476808438426815e-05, 4.005103255622089e-05, 0.10284564644098282, 5.197343125473708e-05, 4.152390101808123e-05, 5.974277519271709e-05, 0.00010597726213745773, 3.9766044210409746e-05, 0.0005594596732407808, 1.3930495697422884e-05, 2.847436371666845e-05], [0.27924060821533203, 0.013357702642679214, 0.03068910352885723, 0.00552718061953783, 0.039644304662942886, 0.24558648467063904, 0.0015927243512123823, 0.00044941992382518947, 0.006575297098606825, 0.001394799561239779, 0.09293553233146667, 0.05359356850385666, 0.2089489847421646, 0.003151772078126669, 0.012655665166676044, 0.003925555385649204, 0.0002818829088937491, 0.00044938584323972464], [0.22567610442638397, 0.010481292381882668, 0.011316144838929176, 0.020651470869779587, 0.15034717321395874, 0.0335950143635273, 0.0008207337814383209, 0.00036507192999124527, 0.004260329995304346, 0.001210718066431582, 0.018504833802580833, 0.4532274305820465, 0.0507325679063797, 0.0034904894419014454, 0.011009199544787407, 0.003769354661926627, 0.00017706374637782574, 0.00036504966556094587], [0.07220824807882309, 0.004308277741074562, 0.024945877492427826, 0.0014931270852684975, 0.0037807326298207045, 0.06533361971378326, 0.00021812727209180593, 0.00022244079445954412, 0.0005256431177258492, 0.000578097184188664, 0.0025694272480905056, 0.004454462323337793, 0.3519984781742096, 0.2108721286058426, 0.013372394256293774, 0.242824524641037, 7.200489926617593e-05, 0.00022242742124944925], [0.13061220943927765, 0.02296077460050583, 0.2990608513355255, 0.006427838932722807, 0.030263252556324005, 0.09459486603736877, 0.0008143977611325681, 0.00022544260718859732, 0.0003785690641961992, 0.00301058660261333, 0.0011033850023522973, 0.0008035832433961332, 0.01338626816868782, 0.1260257214307785, 0.0008932178025133908, 0.2691502571105957, 6.332747580017895e-05, 0.00022542283113580197], [0.02808099240064621, 0.013364974409341812, 0.05114878714084625, 0.020480850711464882, 0.03498018532991409, 0.42208901047706604, 0.014435835182666779, 0.0023719852324575186, 0.0013217423111200333, 0.002049052156507969, 0.003116863314062357, 0.0018186761299148202, 0.018972231075167656, 0.18678712844848633, 0.04582175984978676, 0.14921708405017853, 0.0015709159197285771, 0.0023718755692243576], [0.007589342538267374, 0.004101108759641647, 0.0849313735961914, 0.0004314427496865392, 0.001648096484132111, 0.021074671298265457, 4.233192521496676e-05, 2.9821549105690792e-05, 6.491263047792017e-05, 0.0010601007379591465, 0.0001775818964233622, 0.00010169186134589836, 0.0036413988564163446, 0.15281423926353455, 0.00021566409850493073, 0.7220378518104553, 8.593799975642469e-06, 2.981887519126758e-05], [0.019363868981599808, 0.05517375469207764, 0.12015185505151749, 0.06461784243583679, 0.016063131392002106, 0.04088779538869858, 0.04670502990484238, 0.12345916777849197, 0.13100287318229675, 0.015019338577985764, 0.03952156379818916, 0.018142011016607285, 0.010438955388963223, 0.018996279686689377, 0.00709927175194025, 0.005723273381590843, 0.14417888224124908, 0.12345511466264725], [0.005262835882604122, 0.04396757856011391, 0.0797572210431099, 0.027497077360749245, 0.010033848695456982, 0.01965136080980301, 0.03965746983885765, 0.14697392284870148, 0.05161760747432709, 0.023491954430937767, 0.041582733392715454, 0.025816895067691803, 0.023753296583890915, 0.07159406691789627, 0.01986881159245968, 0.0274005439132452, 0.19509951770305634, 0.1469733864068985]], [[0.011868099682033062, 0.011866113170981407, 0.028826173394918442, 0.040174610912799835, 0.03671519458293915, 0.16737936437129974, 0.015067142434418201, 0.03657398000359535, 0.4242737293243408, 0.014169917441904545, 0.10657025873661041, 0.02190527878701687, 0.024208087474107742, 0.0051759155467152596, 0.001746505149640143, 0.0015658685006201267, 0.015341459773480892, 0.03657224774360657], [0.009969159960746765, 0.022574041038751602, 0.05360949784517288, 0.01494637131690979, 0.005246432032436132, 0.008984969928860664, 0.01154350582510233, 0.17612561583518982, 0.07799863815307617, 0.2982204258441925, 0.009588122367858887, 0.02151237614452839, 0.005503916647285223, 0.0074156210757792, 0.002987409010529518, 0.006654092110693455, 0.09100405871868134, 0.1761157512664795], [0.01246985699981451, 0.00694256043061614, 0.042884279042482376, 0.004853075835853815, 0.00349889462813735, 0.0032942318357527256, 0.0016710386844351888, 0.39552316069602966, 0.008867023512721062, 0.020658772438764572, 0.0006813371437601745, 0.0032523958943784237, 0.0004861743364017457, 0.0005320875789038837, 0.0007142575923353434, 0.00033536460250616074, 0.09784331172704697, 0.39549222588539124], [0.011425687000155449, 0.04879587143659592, 0.025735830888152122, 0.034533143043518066, 0.01515966560691595, 0.013020730577409267, 0.02005556970834732, 0.13130123913288116, 0.09217079728841782, 0.2922942340373993, 0.03917568549513817, 0.01781928539276123, 0.005257526412606239, 0.0034863038454204798, 0.00636629294604063, 0.004476737231016159, 0.10762981325387955, 0.13129569590091705], [0.026102405041456223, 0.01294988114386797, 0.0160819198936224, 0.007850591093301773, 0.007077161222696304, 0.014570544473826885, 0.00692379055544734, 0.15805520117282867, 0.06962611526250839, 0.3010726571083069, 0.026740944012999535, 0.03234212473034859, 0.015814686194062233, 0.013712335377931595, 0.011992722749710083, 0.021149875596165657, 0.09988979250192642, 0.15804725885391235], [0.029373526573181152, 0.01624767854809761, 0.03162512555718422, 0.011388481594622135, 0.014061281457543373, 0.061045121401548386, 0.0028384001925587654, 0.2544732093811035, 0.04932163283228874, 0.08926396816968918, 0.01828639768064022, 0.026807935908436775, 0.01996442675590515, 0.013004066422581673, 0.01859750598669052, 0.011146371252834797, 0.07809716463088989, 0.25445762276649475], [0.015458601526916027, 0.012426157481968403, 0.03603725880384445, 0.012860151007771492, 0.012190515175461769, 0.01611039787530899, 0.023583974689245224, 0.21772868931293488, 0.17364566028118134, 0.06025224179029465, 0.022609809413552284, 0.024782666936516762, 0.0065252636559307575, 0.007064149249345064, 0.005501278676092625, 0.005971082020550966, 0.12953485548496246, 0.21771737933158875], [0.0020865905098617077, 0.0004763801989611238, 0.0009668020065873861, 0.00638701394200325, 0.0006998740718699992, 0.0015220356872305274, 0.0084080770611763, 0.3398228585720062, 0.0041663129813969135, 0.0008049883181229234, 0.0020464633125811815, 0.0010964380344375968, 0.0009379592374898493, 0.002368893474340439, 0.0009237495833076537, 0.0020331875421106815, 0.2854275703430176, 0.3398247957229614], [0.06646418571472168, 0.023851638659834862, 0.010888628661632538, 0.06488964706659317, 0.046550452709198, 0.08551754057407379, 0.011534559540450573, 0.10917546600103378, 0.31876441836357117, 0.002229174366220832, 0.05492463707923889, 0.01485848892480135, 0.026193464174866676, 0.01052581425756216, 0.006162620149552822, 0.0012753293849527836, 0.03702634200453758, 0.10916752368211746], [0.03110838681459427, 0.012635564431548119, 0.20749276876449585, 0.017810599878430367, 0.01201528962701559, 0.027282819151878357, 0.013193401508033276, 0.24026581645011902, 0.04482117295265198, 0.05386078357696533, 0.0008430399466305971, 0.0013893713476136327, 0.0004115079645998776, 0.0010532408487051725, 0.0005701639456674457, 0.0006788299069739878, 0.09431399405002594, 0.24025321006774902], [0.07720266282558441, 0.03253690525889397, 0.03357374668121338, 0.11965829879045486, 0.02432592585682869, 0.07844208925962448, 0.004770488012582064, 0.1570630669593811, 0.13122378289699554, 0.01701528951525688, 0.06761053204536438, 0.014704686589539051, 0.035437144339084625, 0.007331768050789833, 0.0033764790277928114, 0.002512118546292186, 0.036162182688713074, 0.15705269575119019], [0.05446213483810425, 0.04039971902966499, 0.04617607221007347, 0.0763707384467125, 0.025430697947740555, 0.042804211378097534, 0.011995943263173103, 0.21974465250968933, 0.12090633064508438, 0.014877177774906158, 0.029596470296382904, 0.017725203186273575, 0.01362651214003563, 0.004145327024161816, 0.0015845162561163306, 0.0018419524421915412, 0.058584194630384445, 0.21972814202308655], [0.01675376668572426, 0.017808696255087852, 0.0754895955324173, 0.030613211914896965, 0.01811813935637474, 0.08262578397989273, 0.003139476291835308, 0.2591349184513092, 0.01947939209640026, 0.014754301868379116, 0.0063150981441140175, 0.009350714273750782, 0.051342304795980453, 0.06613776087760925, 0.006476022303104401, 0.025981999933719635, 0.037365254014730453, 0.2591136693954468], [0.021573828533291817, 0.007401375100016594, 0.06467655301094055, 0.02103315107524395, 0.011479895561933517, 0.07115773111581802, 0.0033968568313866854, 0.3214164674282074, 0.01069694384932518, 0.0015208012191578746, 0.0011894921772181988, 0.001703375717625022, 0.007047131657600403, 0.06814897060394287, 0.0017429987201467156, 0.014887986704707146, 0.049537815153598785, 0.3213885724544525], [0.010589735582470894, 0.021265747025609016, 0.07180570065975189, 0.04205022007226944, 0.02244281955063343, 0.037895526736974716, 0.009569608606398106, 0.32143256068229675, 0.020434267818927765, 0.006640437059104443, 0.004264981020241976, 0.007354019675403833, 0.006078788544982672, 0.02039937488734722, 0.003636743873357773, 0.005351977422833443, 0.06737891584634781, 0.3214085102081299], [0.009219646453857422, 0.004009172786027193, 0.040879298001527786, 0.02640310488641262, 0.006759168580174446, 0.062067750841379166, 0.0017084477003663778, 0.37194758653640747, 0.006939296144992113, 0.0029453402385115623, 0.00048595399130135775, 0.0007927699480205774, 0.0018139242893084884, 0.024849828332662582, 0.0008668414084240794, 0.0075021362863481045, 0.05888979882001877, 0.3719199299812317], [0.0014275753637775779, 0.0004417349409777671, 0.0010091110598295927, 0.004934363998472691, 0.0006916601560078561, 0.0014808464329689741, 0.0062220836989581585, 0.37869054079055786, 0.006427027750760317, 0.00042801658855751157, 0.0015390535118058324, 0.0007240763516165316, 0.00047469427227042615, 0.0012639417545869946, 0.00035492554889060557, 0.0008694390999153256, 0.21433983743190765, 0.37868115305900574], [0.002086570020765066, 0.0004763823817484081, 0.0009668000275269151, 0.006386859342455864, 0.0006998682511039078, 0.0015220100758597255, 0.008407999761402607, 0.33982378244400024, 0.00416621332988143, 0.00080499128671363, 0.0020464288536459208, 0.0010964436223730445, 0.0009379600523971021, 0.002368888584896922, 0.0009237529593519866, 0.00203321548178792, 0.2854257822036743, 0.3398260474205017]], [[0.001402710098773241, 0.03571569547057152, 0.004660988692194223, 0.11625371873378754, 0.1332743614912033, 0.20944775640964508, 0.4227329194545746, 0.02206283062696457, 0.010259658098220825, 0.0007831560214981437, 0.0016408392693847418, 0.0006786928861401975, 0.00030825354042463005, 4.500401337281801e-05, 7.481904322048649e-05, 5.004384001949802e-05, 0.01854674518108368, 0.02206183597445488], [0.015827666968107224, 0.054683782160282135, 0.016850046813488007, 0.09326890110969543, 0.045818205922842026, 0.04576438292860985, 0.04036014527082443, 0.2720123827457428, 0.010182454250752926, 0.00759928347542882, 0.0032586168963462114, 0.0021621976047754288, 0.0005041334079578519, 8.967658504843712e-05, 0.00017175290849991143, 0.00023794053413439542, 0.11921276152133942, 0.2719956636428833], [0.051031965762376785, 0.2407917082309723, 0.03788847476243973, 0.11659052222967148, 0.10807184875011444, 0.06017569825053215, 0.046094220131635666, 0.09334595501422882, 0.016923541203141212, 0.045506056398153305, 0.012738104909658432, 0.008586562238633633, 0.0025472540874034166, 0.0005817724741064012, 0.0014378185151144862, 0.0013465775409713387, 0.06299994885921478, 0.09334193170070648], [0.01713913306593895, 0.26662126183509827, 0.09003165364265442, 0.06251651048660278, 0.06294523179531097, 0.02407086081802845, 0.04434148967266083, 0.1410040706396103, 0.006576164159923792, 0.06607935577630997, 0.0009365120204165578, 0.0015796213410794735, 0.0001878144103102386, 0.000270062533672899, 0.00013451151608023793, 0.0008136899559758604, 0.07375752180814743, 0.14099448919296265], [0.015129843726754189, 0.05613076686859131, 0.03715785965323448, 0.08917548507452011, 0.05564951151609421, 0.04084712266921997, 0.05549345165491104, 0.2598997950553894, 0.005046267528086901, 0.010683093219995499, 0.001088995486497879, 0.0009882573504000902, 0.00014574725355487317, 8.648145012557507e-05, 0.00015711106243543327, 0.0001307404163526371, 0.11230438947677612, 0.2598850429058075], [0.013830074109137058, 0.1300552636384964, 0.0176690760999918, 0.2589797079563141, 0.08879104256629944, 0.04894714429974556, 0.08405352383852005, 0.1278192102909088, 0.005027140956372023, 0.00851956196129322, 0.0020085389260202646, 0.0012339656241238117, 0.0004973908653482795, 0.00011365488171577454, 0.00039048847975209355, 0.00023678508296143264, 0.08401328325271606, 0.12781420350074768], [0.007832836359739304, 0.02573966234922409, 0.004745896905660629, 0.08163752406835556, 0.07160299271345139, 0.0615580677986145, 0.06221981346607208, 0.27624183893203735, 0.023538310080766678, 0.005181790795177221, 0.0019269188633188605, 0.0017179747810587287, 0.0011663229670375586, 0.0001993543264688924, 0.0005614832043647766, 0.0005181067972443998, 0.09738672524690628, 0.2762243151664734], [0.015903372317552567, 0.005447694566100836, 0.008410177193582058, 0.011061413213610649, 0.01540575921535492, 0.016176093369722366, 0.017725810408592224, 0.337411105632782, 0.0317387618124485, 0.00975853856652975, 0.010332375764846802, 0.02008046954870224, 0.010722589679062366, 0.00751888332888484, 0.005296035204082727, 0.007937593385577202, 0.131681427359581, 0.3373919725418091], [0.019855044782161713, 0.026007192209362984, 0.010679082944989204, 0.05931461974978447, 0.07294002175331116, 0.1671418696641922, 0.19897247850894928, 0.14038756489753723, 0.02910730428993702, 0.007864573039114475, 0.008851852267980576, 0.008190318942070007, 0.0025479078758507967, 0.0016051516868174076, 0.0032759197056293488, 0.004184652119874954, 0.09869510680437088, 0.14037935435771942], [0.06108887493610382, 0.026043234393000603, 0.005324383266270161, 0.04613710939884186, 0.024457618594169617, 0.05538265034556389, 0.06328964233398438, 0.17954154312610626, 0.14715299010276794, 0.0072495052590966225, 0.052963223308324814, 0.030040299519896507, 0.01229169499129057, 0.00270544714294374, 0.01029872801154852, 0.0028247060254216194, 0.09367936849594116, 0.17952899634838104], [0.06052675098180771, 0.043303728103637695, 0.011399085633456707, 0.01546687725931406, 0.01624555140733719, 0.017302224412560463, 0.07101225107908249, 0.19823254644870758, 0.06978707015514374, 0.0877697616815567, 0.01980719156563282, 0.02773495949804783, 0.0018614038126543164, 0.0016776863485574722, 0.0011707101948559284, 0.0026518930681049824, 0.1558312177658081, 0.19821912050247192], [0.024378599599003792, 0.016066282987594604, 0.005751576274633408, 0.014647138305008411, 0.010010471567511559, 0.011260587722063065, 0.03998507559299469, 0.2892588675022125, 0.058973025530576706, 0.01955472305417061, 0.01547648198902607, 0.01441813725978136, 0.0021189902909100056, 0.0016138787614181638, 0.000892529496923089, 0.002580508589744568, 0.18377497792243958, 0.28923818469047546], [0.042049653828144073, 0.019075242802500725, 0.010896755382418633, 0.017936544492840767, 0.024752864614129066, 0.015516054816544056, 0.051307883113622665, 0.1418749988079071, 0.10197999328374863, 0.06148790940642357, 0.10742402821779251, 0.114211805164814, 0.03306610509753227, 0.004925677552819252, 0.01259599532932043, 0.007864745333790779, 0.0911683514714241, 0.14186535775661469], [0.056853219866752625, 0.013024919666349888, 0.0020798789337277412, 0.018867408856749535, 0.020429180935025215, 0.013835259713232517, 0.07328362762928009, 0.10861379653215408, 0.0727725550532341, 0.012570273131132126, 0.13115496933460236, 0.15820585191249847, 0.06709980964660645, 0.00550033850595355, 0.02576221339404583, 0.0075365700758993626, 0.10380163788795471, 0.10860846191644669], [0.018308572471141815, 0.0007102982490323484, 0.0006115377182140946, 0.0034158658236265182, 0.004515369888395071, 0.0035254585091024637, 0.019576286897063255, 0.21504421532154083, 0.028267715126276016, 0.0030774034094065428, 0.07418420165777206, 0.10370735079050064, 0.12402581423521042, 0.01105734333395958, 0.017321286723017693, 0.007896704599261284, 0.14972613751888275, 0.2150285243988037], [0.03215261548757553, 0.018296798691153526, 0.005698926281183958, 0.013713165186345577, 0.018848419189453125, 0.005363021977245808, 0.06072307378053665, 0.14788150787353516, 0.030274439603090286, 0.03761895373463631, 0.06097249686717987, 0.15335901081562042, 0.03298162296414375, 0.005824557505548, 0.07915055006742477, 0.007495258469134569, 0.14177121222019196, 0.14787428081035614], [0.007767023518681526, 0.0025155365001410246, 0.0022886304650455713, 0.0072553218342363834, 0.00988297164440155, 0.009658006951212883, 0.013190315105021, 0.36710137128829956, 0.04389556869864464, 0.004571304190903902, 0.006860820576548576, 0.0118398517370224, 0.005418805405497551, 0.002645164495334029, 0.00323122669942677, 0.0036883207503706217, 0.13111458718776703, 0.367075115442276], [0.015902822837233543, 0.005447473842650652, 0.008409939706325531, 0.011061049997806549, 0.01540546864271164, 0.016175728291273117, 0.01772507280111313, 0.3374136984348297, 0.03173814341425896, 0.009758277796208858, 0.010332011617720127, 0.020080018788576126, 0.010722448118031025, 0.007518754340708256, 0.0052960580214858055, 0.007937527261674404, 0.13168089091777802, 0.3373945653438568]], [[0.13984361290931702, 0.018560903146862984, 0.050399865955114365, 0.07778041064739227, 0.004485273268073797, 0.016196928918361664, 0.015675552189350128, 0.14307767152786255, 0.02106771059334278, 0.13150714337825775, 0.017724446952342987, 0.004533273633569479, 0.01688644289970398, 0.017086684703826904, 0.07483423501253128, 0.025222279131412506, 0.08204331248998642, 0.14307421445846558], [0.03150355815887451, 0.0027779662050306797, 0.006857425905764103, 0.0012034738902002573, 0.0008517625974491239, 0.009661326184868813, 0.025052910670638084, 0.3043685853481293, 0.04152214154601097, 0.006504308432340622, 0.020004114136099815, 0.0020678129512816668, 0.007285501342266798, 0.006811641156673431, 0.011499556712806225, 0.0029199798591434956, 0.2147493213415146, 0.3043586015701294], [0.10766579955816269, 0.011028194800019264, 0.015468954108655453, 0.0027200302574783564, 0.0017386649269610643, 0.015904659405350685, 0.030884522944688797, 0.2584443986415863, 0.04957464337348938, 0.00867677852511406, 0.015273026190698147, 0.00825681071728468, 0.016180913895368576, 0.030742647126317024, 0.020732063800096512, 0.011283531785011292, 0.13699281215667725, 0.25843146443367004], [0.018768753856420517, 0.0010663215070962906, 0.0007890997221693397, 0.00046813380322419107, 0.0008981481078080833, 0.013738206587731838, 0.011053957976400852, 0.21551932394504547, 0.02348024956882, 0.002022145316004753, 0.30030936002731323, 0.010744362138211727, 0.00841929018497467, 0.002422010526061058, 0.007848873734474182, 0.0011751236161217093, 0.1657624989748001, 0.21551409363746643], [0.01804509572684765, 0.0009870936628431082, 0.0009208664996549487, 0.00042665936052799225, 5.283325299387798e-05, 0.004072870593518019, 0.00936741940677166, 0.2712550461292267, 0.044902559369802475, 0.00773763470351696, 0.026049448177218437, 0.00416952557861805, 0.0027592370752245188, 0.0007949782884679735, 0.0017925073625519872, 0.00037963181966915727, 0.3350314497947693, 0.27125516533851624], [0.08379101753234863, 0.006975832395255566, 0.012332702055573463, 0.005730460863560438, 0.0034405607730150223, 0.009999838657677174, 0.027565959841012955, 0.2601664066314697, 0.06155912205576897, 0.016848668456077576, 0.029027575626969337, 0.002463755663484335, 0.011614048853516579, 0.016287537291646004, 0.01105448231101036, 0.0064912582747638226, 0.17449112236499786, 0.2601596415042877], [0.03811647370457649, 0.0069527472369372845, 0.007208085153251886, 0.0025261600967496634, 0.003157954663038254, 0.007573285605758429, 0.02439037151634693, 0.2203928828239441, 0.16326682269573212, 0.039651140570640564, 0.029598036780953407, 0.018511921167373657, 0.0043287258595228195, 0.0035484260879456997, 0.0022720929700881243, 0.001295132446102798, 0.2068224847316742, 0.2203873097896576], [0.21676607429981232, 0.02304753288626671, 0.02914409339427948, 0.02990765869617462, 0.019477088004350662, 0.027199286967515945, 0.10854141414165497, 0.03818250447511673, 0.12667864561080933, 0.1348763108253479, 0.032513171434402466, 0.029293658211827278, 0.019479813054203987, 0.01776442676782608, 0.024351032450795174, 0.020345337688922882, 0.06424945592880249, 0.03818245232105255], [0.015247874893248081, 0.006159441079944372, 0.0036028095055371523, 0.01859564520418644, 0.003508293768391013, 0.017323726788163185, 0.01503417082130909, 0.3588577210903168, 0.00047747042845003307, 0.0026134655345231295, 0.006609360221773386, 0.0013197885127738118, 0.00334364571608603, 0.0036817023064941168, 0.0030875634402036667, 0.0016115750186145306, 0.18008244037628174, 0.35884326696395874], [0.025459589436650276, 0.03088635392487049, 0.0337035171687603, 0.018580486997961998, 0.0077684782445430756, 0.032787322998046875, 0.044368330389261246, 0.2785733938217163, 0.018451495096087456, 0.0032557907979935408, 0.007989775389432907, 0.0008375708130188286, 0.006446884013712406, 0.008521226234734058, 0.03947953134775162, 0.004956098739057779, 0.1593765765428543, 0.2785574793815613], [0.00917859561741352, 0.013299979269504547, 0.007770261261612177, 0.15238624811172485, 0.00569591810926795, 0.03666301816701889, 0.014601493254303932, 0.2765861749649048, 0.007017730735242367, 0.002930870046839118, 0.0008442483376711607, 0.00042809563456103206, 0.004052490461617708, 0.0022303475998342037, 0.004602181259542704, 0.0017903512343764305, 0.1833428293466568, 0.2765791416168213], [0.020052488893270493, 0.0033710284624248743, 0.0047568464651703835, 0.008090794086456299, 0.002925906563177705, 0.00640509556978941, 0.03764095902442932, 0.31643640995025635, 0.009350812062621117, 0.0010242970893159509, 0.0010208332678303123, 0.0001307333295699209, 0.0008293266873806715, 0.0005960458656772971, 0.0007955892360769212, 0.00029968153103254735, 0.269845575094223, 0.31642764806747437], [0.042581044137477875, 0.027637246996164322, 0.04167725890874863, 0.04275878146290779, 0.016704263165593147, 0.0878242552280426, 0.025053443387150764, 0.24490627646446228, 0.02848641574382782, 0.012176397256553173, 0.004604180809110403, 0.002713502151891589, 0.004623819142580032, 0.011650986969470978, 0.015377841889858246, 0.006067830137908459, 0.1402619183063507, 0.24489456415176392], [0.023724278435111046, 0.015023096464574337, 0.02419174090027809, 0.006644562352448702, 0.002815568121150136, 0.06347222626209259, 0.0230399277061224, 0.335224986076355, 0.00588874239474535, 0.005488316994160414, 0.0015712883323431015, 0.0013965629041194916, 0.00164895283523947, 0.001439891173504293, 0.000704489357303828, 0.0005941185518167913, 0.15192335844039917, 0.33520787954330444], [0.03157288208603859, 0.04563266783952713, 0.016842102631926537, 0.04205803573131561, 0.027741238474845886, 0.10527612268924713, 0.05626041814684868, 0.23187975585460663, 0.01850445754826069, 0.011372750625014305, 0.010860934853553772, 0.006757262162864208, 0.004923420026898384, 0.009460369125008583, 0.002315620891749859, 0.003390431636944413, 0.14328637719154358, 0.23186521232128143], [0.03169449791312218, 0.016576925292611122, 0.024668509140610695, 0.017913267016410828, 0.003352701896801591, 0.06440699100494385, 0.03437579795718193, 0.28358790278434753, 0.023539045825600624, 0.017531007528305054, 0.0037000486627221107, 0.001634252374060452, 0.0022306691389530897, 0.002974714618176222, 0.0038364168722182512, 0.0007199952960945666, 0.18367716670036316, 0.28357994556427], [0.13794150948524475, 0.020889604464173317, 0.024538790807127953, 0.034731656312942505, 0.023323725908994675, 0.024383453652262688, 0.12261222302913666, 0.07502564787864685, 0.16177485883235931, 0.09557163715362549, 0.03501236066222191, 0.03446067124605179, 0.01098981499671936, 0.00957640539854765, 0.008522570133209229, 0.006309824530035257, 0.09931119531393051, 0.0750240683555603], [0.21676616370677948, 0.02304765209555626, 0.029143784195184708, 0.02990754134953022, 0.019477397203445435, 0.02719936892390251, 0.10854054242372513, 0.038182422518730164, 0.12667904794216156, 0.13487565517425537, 0.03251362591981888, 0.029294328764081, 0.019479913637042046, 0.017764629796147346, 0.02435089834034443, 0.0203454177826643, 0.06424928456544876, 0.038182370364665985]], [[0.013339191675186157, 0.06692492961883545, 0.07357432693243027, 0.009639644995331764, 0.015530918724834919, 0.017048871144652367, 0.08090446144342422, 0.08498449623584747, 0.3086695671081543, 0.02507549710571766, 0.04660232365131378, 0.0651245191693306, 0.011531435884535313, 0.011357051320374012, 0.0019904254004359245, 0.0036533321253955364, 0.0790686085820198, 0.08498043566942215], [0.023506706580519676, 0.08710464835166931, 0.04788447916507721, 0.050236623734235764, 0.08745115250349045, 0.03509688749909401, 0.13620370626449585, 0.04721231013536453, 0.18782155215740204, 0.06794694066047668, 0.015624861232936382, 0.08234605193138123, 0.009472105652093887, 0.00738377682864666, 0.006943619344383478, 0.006673847790807486, 0.053880199790000916, 0.04721038416028023], [0.046304889023303986, 0.056376826018095016, 0.024488795548677444, 0.038360439240932465, 0.05008452385663986, 0.038269124925136566, 0.075077585875988, 0.10326432436704636, 0.15731947124004364, 0.09046151489019394, 0.02283698134124279, 0.03297176584601402, 0.020033787935972214, 0.011011403985321522, 0.009702823124825954, 0.009350377134978771, 0.1108260452747345, 0.10325930267572403], [0.036395084112882614, 0.1433962881565094, 0.061773691326379776, 0.06990332156419754, 0.09449522197246552, 0.02670755237340927, 0.19563907384872437, 0.03532647341489792, 0.07803257554769516, 0.04329304024577141, 0.013719791546463966, 0.09260060638189316, 0.005846214946359396, 0.007419824134558439, 0.004445970524102449, 0.005935036577284336, 0.049745965749025345, 0.035324305295944214], [0.03239904344081879, 0.13268090784549713, 0.05360790714621544, 0.02527764067053795, 0.10160805284976959, 0.017578260973095894, 0.09292685240507126, 0.04610895738005638, 0.17145264148712158, 0.05836840718984604, 0.035660892724990845, 0.11635469645261765, 0.010864702053368092, 0.006525102071464062, 0.004227695986628532, 0.007406802847981453, 0.040845584124326706, 0.04610597714781761], [0.048492878675460815, 0.02311316877603531, 0.01184682734310627, 0.009414500556886196, 0.01968308910727501, 0.007435660809278488, 0.011552569456398487, 0.2975021302700043, 0.0644102692604065, 0.026493264362215996, 0.021658802404999733, 0.029116811230778694, 0.013745683245360851, 0.0017375134630128741, 0.0027809988241642714, 0.0016411570832133293, 0.11189841479063034, 0.29747623205184937], [0.12442252784967422, 0.069790780544281, 0.04320492595434189, 0.07223799079656601, 0.09544534981250763, 0.03856677934527397, 0.1657094806432724, 0.028212031349539757, 0.17184637486934662, 0.027087436988949776, 0.029665639623999596, 0.051496781408786774, 0.006687361281365156, 0.003101598471403122, 0.003682996379211545, 0.00326774874702096, 0.03736317530274391, 0.028211066499352455], [0.016629142686724663, 0.002614869736135006, 0.008046346716582775, 0.004066511057317257, 0.00116616056766361, 0.003766304813325405, 0.0022688317112624645, 0.427503764629364, 0.008320456370711327, 0.002499646507203579, 0.001159296720288694, 0.0012386846356093884, 0.0016170359449461102, 0.0018144838977605104, 0.00048295760643668473, 0.000408647843869403, 0.08891833573579788, 0.42747849225997925], [0.04636108875274658, 0.1385994702577591, 0.18626739084720612, 0.013536983169615269, 0.02105683833360672, 0.04047426953911781, 0.07529886811971664, 0.09623131901025772, 0.10757157951593399, 0.01335906982421875, 0.052524384111166, 0.017358746379613876, 0.016003381460905075, 0.01294406782835722, 0.002473164116963744, 0.00435684947296977, 0.05935388803482056, 0.09622848033905029], [0.013616188429296017, 0.014855406247079372, 0.029664671048521996, 0.007046052720397711, 0.011409185826778412, 0.03886856883764267, 0.04563818499445915, 0.11751280725002289, 0.3306155204772949, 0.018958082422614098, 0.01551858615130186, 0.022304126992821693, 0.0353974848985672, 0.06454642862081528, 0.014713001437485218, 0.020720764994621277, 0.08110475540161133, 0.11751020699739456], [0.018248550593852997, 0.17799173295497894, 0.08284018188714981, 0.017093485221266747, 0.06876735389232635, 0.06948214024305344, 0.08715546876192093, 0.0436217375099659, 0.19859760999679565, 0.013882030732929707, 0.06245208531618118, 0.05987037718296051, 0.011498851701617241, 0.006483976263552904, 0.003093493403866887, 0.0021433571819216013, 0.03315742686390877, 0.0436202809214592], [0.03711824491620064, 0.15567070245742798, 0.06221190467476845, 0.020521285012364388, 0.058775395154953, 0.07874374836683273, 0.045986108481884, 0.041478272527456284, 0.13444173336029053, 0.03508923947811127, 0.08756338059902191, 0.13691018521785736, 0.013466293923556805, 0.008842375129461288, 0.004049394279718399, 0.00865152757614851, 0.02900334633886814, 0.04147674888372421], [0.014259940013289452, 0.07744491845369339, 0.0651799738407135, 0.026523197069764137, 0.10212982445955276, 0.07276712357997894, 0.024086592718958855, 0.1850319653749466, 0.08928047865629196, 0.009606694802641869, 0.018950840458273888, 0.047134771943092346, 0.006798564922064543, 0.005454865284264088, 0.002816801657900214, 0.003001632634550333, 0.06450752168893814, 0.18502429127693176], [0.042495161294937134, 0.12484557181596756, 0.09720741212368011, 0.07180838286876678, 0.05602211132645607, 0.06066390872001648, 0.03572588786482811, 0.14171594381332397, 0.07620959728956223, 0.022642167285084724, 0.01814638264477253, 0.034986186772584915, 0.0033052044454962015, 0.0017649258952587843, 0.0008645679918117821, 0.0005471128970384598, 0.06934025883674622, 0.14170919358730316], [0.019375044852495193, 0.24510076642036438, 0.1857498735189438, 0.03227536380290985, 0.058874089270830154, 0.026175888255238533, 0.03637358546257019, 0.09886396676301956, 0.05526745319366455, 0.02501055598258972, 0.012385981157422066, 0.03304082155227661, 0.0036288215778768063, 0.0025635510683059692, 0.0014623281313106418, 0.0006583856302313507, 0.06433584541082382, 0.09885767102241516], [0.02250809222459793, 0.04988715797662735, 0.058618687093257904, 0.017592066898941994, 0.03494744747877121, 0.028549278154969215, 0.025132223963737488, 0.2739860415458679, 0.06165757402777672, 0.014179724268615246, 0.011301420629024506, 0.01810561493039131, 0.002934766234830022, 0.002742090029641986, 0.0008533401996828616, 0.0010194616625085473, 0.1020144522190094, 0.27397048473358154], [0.03201789781451225, 0.006486291531473398, 0.02277442254126072, 0.008063187822699547, 0.0031994173768907785, 0.008093170821666718, 0.006726772990077734, 0.3829738199710846, 0.023035963997244835, 0.003357668872922659, 0.0027053614612668753, 0.0028285777661949396, 0.0017818522173911333, 0.002062750980257988, 0.00043706977157853544, 0.00045907858293503523, 0.11004773527383804, 0.38294899463653564], [0.016628798097372055, 0.0026148410979658365, 0.00804618839174509, 0.004066439811140299, 0.0011661528842523694, 0.0037662205286324024, 0.002268772339448333, 0.42750459909439087, 0.008320222608745098, 0.0024995775893330574, 0.001159265753813088, 0.0012386752059683204, 0.001617030706256628, 0.0018144822679460049, 0.00048295603482984006, 0.00040864705806598067, 0.08891791105270386, 0.4274793267250061]]], [[[0.02340208739042282, 0.00451767910271883, 0.011100330390036106, 0.021269258111715317, 0.0012558476300910115, 0.00400499626994133, 0.011098033748567104, 0.2367687225341797, 0.03753255307674408, 0.15550880134105682, 0.003967777360230684, 0.0161124374717474, 0.009962808340787888, 0.026189368218183517, 0.007675748784095049, 0.011730263940989971, 0.18113963305950165, 0.23676370084285736], [0.0051076291128993034, 0.0028600054793059826, 0.0035260526929050684, 0.004514771979302168, 0.000916537712328136, 0.0016943729715421796, 0.004743682220578194, 0.3576122522354126, 0.0120207779109478, 0.011538435705006123, 0.0011929306201636791, 0.0038104017730802298, 0.0020112781785428524, 0.005200243089348078, 0.0016114888712763786, 0.0025668423622846603, 0.2214720994234085, 0.35760024189949036], [0.013258220627903938, 0.010001569986343384, 0.014225874096155167, 0.010118292644619942, 0.005620767828077078, 0.007501001935452223, 0.008454602211713791, 0.30899032950401306, 0.02337305061519146, 0.016332130879163742, 0.005850758403539658, 0.012633212842047215, 0.008542967960238457, 0.018914110958576202, 0.006158117670565844, 0.009402833878993988, 0.21163970232009888, 0.3089824616909027], [0.005938328802585602, 0.0032220371067523956, 0.007358156610280275, 0.005117904860526323, 0.0007950125727802515, 0.0019406905630603433, 0.002623145002871752, 0.3569716513156891, 0.006499163806438446, 0.016109425574541092, 0.0015804290305823088, 0.0029664472676813602, 0.002402580576017499, 0.006940559018403292, 0.0031388886272907257, 0.003913782071322203, 0.21552103757858276, 0.35696089267730713], [0.011330362409353256, 0.006248231045901775, 0.0074388328939676285, 0.005624298471957445, 0.001613495172932744, 0.0038245245814323425, 0.004336978774517775, 0.3388198912143707, 0.019382856786251068, 0.013519058004021645, 0.00401262054219842, 0.007196642458438873, 0.0052935280837118626, 0.00884063821285963, 0.005133847240358591, 0.0061793457716703415, 0.2123951017856598, 0.33880969882011414], [0.008956397883594036, 0.006928980350494385, 0.007514236029237509, 0.009382734075188637, 0.0032091273460537195, 0.005238179583102465, 0.006132815964519978, 0.3411223292350769, 0.013561534695327282, 0.01033556368201971, 0.004814574960619211, 0.005734677892178297, 0.004644965287297964, 0.005986708682030439, 0.004509249702095985, 0.003267868421971798, 0.21754728257656097, 0.34111276268959045], [0.013455898500978947, 0.011449119076132774, 0.008599903434515, 0.00669511454179883, 0.0034349700435996056, 0.005964525043964386, 0.011119489558041096, 0.3157176673412323, 0.024567658081650734, 0.016865350306034088, 0.004454202950000763, 0.006242782808840275, 0.007380262948572636, 0.012272714637219906, 0.006625316571444273, 0.00902172364294529, 0.22042347490787506, 0.3157099783420563], [0.060939423739910126, 0.04314053803682327, 0.04526404291391373, 0.05521136894822121, 0.03957109525799751, 0.04330482706427574, 0.05480676889419556, 0.07093644887208939, 0.05754844471812248, 0.07936128973960876, 0.04575279727578163, 0.05208485946059227, 0.056336164474487305, 0.0530814565718174, 0.051914047449827194, 0.050654519349336624, 0.0691554918885231, 0.07093635946512222], [0.010345888324081898, 0.010796762071549892, 0.007631788961589336, 0.003964838571846485, 0.0030659614130854607, 0.004325459711253643, 0.009263504296541214, 0.33686715364456177, 0.01078127697110176, 0.008611906319856644, 0.003325398312881589, 0.003742033150047064, 0.0031402495224028826, 0.0031097528990358114, 0.005199457053095102, 0.003000278491526842, 0.23596949875354767, 0.336858868598938], [0.0045708054676651955, 0.005785858258605003, 0.006656329147517681, 0.00618340540677309, 0.00233343499712646, 0.006478305906057358, 0.008556879125535488, 0.3491038382053375, 0.008357005193829536, 0.004888051655143499, 0.0026127288583666086, 0.0036415683571249247, 0.0016852193512022495, 0.0025468559470027685, 0.004134138580411673, 0.002021810971200466, 0.23134946823120117, 0.34909430146217346], [0.002465550322085619, 0.005165162030607462, 0.005229467526078224, 0.004624004941433668, 0.0008737092721275985, 0.0018602299969643354, 0.002497829729691148, 0.36743444204330444, 0.0035798787139356136, 0.004918759688735008, 0.0010905530070886016, 0.002003792906180024, 0.0019505837699398398, 0.001967363292351365, 0.005389310885220766, 0.002661149250343442, 0.2188652604818344, 0.3674229681491852], [0.004613119643181562, 0.007852687500417233, 0.007314504589885473, 0.00499064102768898, 0.0010791372042149305, 0.0024874715600162745, 0.005989415105432272, 0.3422306478023529, 0.010169818066060543, 0.005588704254478216, 0.002351820468902588, 0.0030257662292569876, 0.005325841251760721, 0.00651075504720211, 0.011381707154214382, 0.005170347634702921, 0.23169489204883575, 0.342222660779953], [0.004262150730937719, 0.0042647672817111015, 0.00948286335915327, 0.0014297120505943894, 0.0017004930414259434, 0.0051046619191765785, 0.006787250284105539, 0.33958137035369873, 0.01188928447663784, 0.007000621873885393, 0.0034847459755837917, 0.008410211652517319, 0.009558974765241146, 0.008975975215435028, 0.009881933219730854, 0.005820435006171465, 0.22279177606105804, 0.3395726978778839], [0.004148669075220823, 0.005037850700318813, 0.00674081314355135, 0.0038048841524869204, 0.0007300947327166796, 0.0023257280699908733, 0.005672045983374119, 0.3562498092651367, 0.0037782168947160244, 0.005727726966142654, 0.0013109472347423434, 0.0031086234375834465, 0.0030944463796913624, 0.0034605213440954685, 0.0030260675121098757, 0.002510407008230686, 0.23303206264972687, 0.35624104738235474], [0.003922911360859871, 0.011884759180247784, 0.012308306060731411, 0.014724013395607471, 0.007087160833179951, 0.008480752818286419, 0.017777929082512856, 0.33024653792381287, 0.008814274333417416, 0.004569265525788069, 0.0034112748689949512, 0.015680262818932533, 0.0031721917912364006, 0.0029265740886330605, 0.00392531044781208, 0.0017290960531681776, 0.21910269558429718, 0.3302367031574249], [0.0030315814074128866, 0.0038064168766140938, 0.0054756938479840755, 0.0021557817235589027, 0.0006615279125981033, 0.003397663589566946, 0.005509921349585056, 0.35827356576919556, 0.005467936862260103, 0.0037571692373603582, 0.001247473875992, 0.003994966857135296, 0.002174633089452982, 0.0026410017162561417, 0.0035120053216814995, 0.0015066727064549923, 0.23512133955955505, 0.35826462507247925], [0.05594996362924576, 0.04495818912982941, 0.04400479421019554, 0.05222972109913826, 0.03740241751074791, 0.041039492934942245, 0.053819410502910614, 0.09153398871421814, 0.05645093694329262, 0.07578344643115997, 0.040491387248039246, 0.04751749709248543, 0.04802469536662102, 0.04619436711072922, 0.04367414489388466, 0.04325435310602188, 0.08613761514425278, 0.09153364598751068], [0.060939058661460876, 0.04314043000340462, 0.045264117419719696, 0.055210940539836884, 0.039571017026901245, 0.043304771184921265, 0.0548066645860672, 0.07093736529350281, 0.05754833295941353, 0.07936102151870728, 0.04575248435139656, 0.05208488181233406, 0.05633588880300522, 0.05308141931891441, 0.051913775503635406, 0.05065431073307991, 0.06915625184774399, 0.07093727588653564]], [[0.075400710105896, 0.011661311611533165, 0.012041746638715267, 0.16048340499401093, 0.011955601163208485, 0.07864908128976822, 0.021902287378907204, 0.08314035087823868, 0.046438463032245636, 0.15666517615318298, 0.04310417175292969, 0.02619512751698494, 0.04387877136468887, 0.024361759424209595, 0.04099787399172783, 0.01771601475775242, 0.06226952746510506, 0.08313857018947601], [0.0012044113827869296, 0.0019433184061199427, 0.004804658703505993, 0.006174733862280846, 0.004021642729640007, 0.008479081094264984, 0.0022509396076202393, 0.3697056174278259, 0.01178681943565607, 0.0018103192560374737, 0.002812241902574897, 0.003093936713412404, 0.003973308950662613, 0.004114185459911823, 0.0005750248092226684, 0.0031594529282301664, 0.2003970593214035, 0.36969321966171265], [0.010707801207900047, 0.006175165064632893, 0.019516102969646454, 0.008377647027373314, 0.0062818038277328014, 0.013448704965412617, 0.00452300114557147, 0.3298623561859131, 0.03706109896302223, 0.011123791337013245, 0.007128428667783737, 0.00641945656388998, 0.003486337373033166, 0.003794198390096426, 0.0013519150670617819, 0.0029455975163728, 0.1979444921016693, 0.32985222339630127], [0.007445164956152439, 0.005332510452717543, 0.00715596554800868, 0.014549710787832737, 0.006199507042765617, 0.012761736288666725, 0.007175540551543236, 0.3249330520629883, 0.038684964179992676, 0.00545521778985858, 0.010123373940587044, 0.005835439544171095, 0.011321237310767174, 0.006626336369663477, 0.002971835434436798, 0.006972344592213631, 0.20153270661830902, 0.3249233365058899], [0.0073495726101100445, 0.009099304676055908, 0.005370693281292915, 0.02203913778066635, 0.016863461583852768, 0.021909208968281746, 0.005269226152449846, 0.298660546541214, 0.08520698547363281, 0.005180469714105129, 0.013866481371223927, 0.009629187174141407, 0.005504456348717213, 0.00442862743511796, 0.006029203534126282, 0.002748918952420354, 0.18219329416751862, 0.2986512780189514], [0.01097138412296772, 0.01550054270774126, 0.011355184949934483, 0.022307051345705986, 0.019324397668242455, 0.06367402523756027, 0.012118369340896606, 0.19938205182552338, 0.1148906797170639, 0.015399492345750332, 0.04256120324134827, 0.016859672963619232, 0.05540108308196068, 0.02344890497624874, 0.017665181308984756, 0.027292940765619278, 0.13247141242027283, 0.1993764489889145], [0.010524625889956951, 0.008830955252051353, 0.005877844989299774, 0.02419881522655487, 0.01859736628830433, 0.020766833797097206, 0.0169586930423975, 0.2338232696056366, 0.20137901604175568, 0.009960212744772434, 0.010426620952785015, 0.013423255644738674, 0.006222487892955542, 0.005299067124724388, 0.008321189321577549, 0.0032160067930817604, 0.16835562884807587, 0.2338181436061859], [0.04466968774795532, 0.04115252569317818, 0.042773500084877014, 0.06272224336862564, 0.045259129256010056, 0.0563906654715538, 0.06886953860521317, 0.08863077312707901, 0.056065455079078674, 0.05374269559979439, 0.041363686323165894, 0.04692498594522476, 0.04914539307355881, 0.04373405501246452, 0.04491714388132095, 0.04134954512119293, 0.08365853130817413, 0.08863043785095215], [0.0032245847396552563, 0.009947609156370163, 0.0286715067923069, 0.007784950081259012, 0.011111062951385975, 0.018782837316393852, 0.012061968445777893, 0.3328832685947418, 0.012802659533917904, 0.005477603059262037, 0.0027057474944740534, 0.002840411150828004, 0.003999323584139347, 0.002922480460256338, 0.0013559142826125026, 0.0031261900439858437, 0.20742852985858917, 0.3328733444213867], [0.0018657167674973607, 0.002232598140835762, 0.00550434272736311, 0.00403868593275547, 0.0038735016714781523, 0.008211754262447357, 0.0027248470578342676, 0.37242791056632996, 0.011912953108549118, 0.002738306066021323, 0.0010989279253408313, 0.0010930642019957304, 0.001460777479223907, 0.0007817281293682754, 0.0007068615523166955, 0.0010396991856396198, 0.2058728188276291, 0.37241557240486145], [0.001303627621382475, 0.004142126068472862, 0.007884939201176167, 0.004454181529581547, 0.0037138042971491814, 0.010682076215744019, 0.0026991486083716154, 0.37312978506088257, 0.00574185885488987, 0.0020648024510592222, 0.0022183828987181187, 0.0010658863466233015, 0.0036317291669547558, 0.0004809751990251243, 0.000831949117127806, 0.0009513206896372139, 0.20188581943511963, 0.373117595911026], [0.002179788425564766, 0.006274423096328974, 0.00979804340749979, 0.007878337986767292, 0.0059838490560650826, 0.010561701841652393, 0.0032277978025376797, 0.3631340563297272, 0.005265184212476015, 0.003193498821929097, 0.00420562457293272, 0.004503430332988501, 0.005870676599442959, 0.001487866509705782, 0.0014296306762844324, 0.0013982905074954033, 0.2004852592945099, 0.3631226420402527], [0.0005865899147465825, 0.0009781194385141134, 0.0028782724402844906, 0.0024644879158586264, 0.0019431739347055554, 0.007536779623478651, 0.0011093301000073552, 0.3862408995628357, 0.0026104797143489122, 0.0007431870908476412, 0.0020308152306824923, 0.001743796980008483, 0.007215403486043215, 0.0012084206100553274, 0.0016214927891269326, 0.0012566220248118043, 0.1916041225194931, 0.3862279951572418], [0.0006139890756458044, 0.0017582336440682411, 0.004594922997057438, 0.003811003640294075, 0.0027964783366769552, 0.0082457410171628, 0.0018495363183319569, 0.37806883454322815, 0.0034562028013169765, 0.0008542367140762508, 0.0007017159950919449, 0.0014103982830420136, 0.0019903930369764566, 0.0018022957956418395, 0.002293279394507408, 0.0007656466332264245, 0.20692980289459229, 0.3780573010444641], [0.00026843853993341327, 0.0013621147954836488, 0.007024775259196758, 0.001583706820383668, 0.001116185449063778, 0.005416150204837322, 0.0010154813062399626, 0.3876023292541504, 0.0018946961499750614, 0.0011735704028978944, 0.00029067732975818217, 0.0006589606637135148, 0.0015927082858979702, 0.002035011537373066, 0.0012339467648416758, 0.000927379063796252, 0.19721461832523346, 0.38758930563926697], [0.0007791576790623367, 0.0022793777752667665, 0.006896756123751402, 0.004115710966289043, 0.0021231998689472675, 0.009980044327676296, 0.0015046511543914676, 0.3758177161216736, 0.0048735965974628925, 0.0013537568738684058, 0.0007531163282692432, 0.0016957323532551527, 0.0016915797023102641, 0.0016191612230613828, 0.001886397018097341, 0.0005592790548689663, 0.2062647044658661, 0.37580606341362], [0.03701796755194664, 0.03777420148253441, 0.03816921263933182, 0.06058584153652191, 0.04407146945595741, 0.0557657815515995, 0.06781464070081711, 0.1142038106918335, 0.06097494810819626, 0.044852472841739655, 0.03544341400265694, 0.04237726330757141, 0.03801539167761803, 0.036193348467350006, 0.036253344267606735, 0.03184141218662262, 0.10444241017103195, 0.11420312523841858], [0.044669363647699356, 0.04115249589085579, 0.0427735298871994, 0.06272201985120773, 0.04525897651910782, 0.05639060214161873, 0.06886938214302063, 0.08863198757171631, 0.056065209209918976, 0.0537424199283123, 0.04136335477232933, 0.046924807131290436, 0.0491449348628521, 0.04373377561569214, 0.044916704297065735, 0.04134918376803398, 0.08365950733423233, 0.08863165229558945]], [[0.011389306746423244, 0.027631044387817383, 0.05485335737466812, 0.017855219542980194, 0.011387210339307785, 0.033696334809064865, 0.01228275615721941, 0.22581495344638824, 0.022523794323205948, 0.059361185878515244, 0.034015461802482605, 0.03899843245744705, 0.01564846560359001, 0.012185636907815933, 0.0023092948831617832, 0.009912485256791115, 0.18432506918907166, 0.22581005096435547], [0.0021000744309276342, 0.047964341938495636, 0.04983482137322426, 0.01757415384054184, 0.01261482760310173, 0.01861000806093216, 0.007639278657734394, 0.29855936765670776, 0.007702655158936977, 0.02601633407175541, 0.004232503939419985, 0.005843155086040497, 0.002938679652288556, 0.002459482289850712, 0.001210144255310297, 0.0027459210250526667, 0.19340388476848602, 0.29855039715766907], [0.0026949094608426094, 0.013507272116839886, 0.3687843978404999, 0.009237769059836864, 0.012288402765989304, 0.04665648937225342, 0.006065972615033388, 0.1904381662607193, 0.005321196746081114, 0.022662367671728134, 0.002721472643315792, 0.003439835738390684, 0.0007725026225671172, 0.00240865396335721, 0.0005839436198584735, 0.0010361230233684182, 0.12094796448945999, 0.19043253362178802], [0.00432286411523819, 0.011620813049376011, 0.012366081587970257, 0.16132427752017975, 0.05152450501918793, 0.027268387377262115, 0.007889984175562859, 0.24404461681842804, 0.01663714088499546, 0.007536803837865591, 0.02103322558104992, 0.009519275277853012, 0.012968391180038452, 0.003978220280259848, 0.004619789309799671, 0.00516756484284997, 0.15414027869701385, 0.24403786659240723], [0.007351352367550135, 0.007163702044636011, 0.007526344619691372, 0.04501761496067047, 0.4078703820705414, 0.12800879776477814, 0.007967079058289528, 0.10466022789478302, 0.04286837577819824, 0.00347881275229156, 0.013292204588651657, 0.018677817657589912, 0.016692839562892914, 0.007441590540111065, 0.0015174056170508265, 0.004467778839170933, 0.07134022563695908, 0.10465748608112335], [0.0069095678627491, 0.005615741014480591, 0.008471756242215633, 0.01302997674793005, 0.03802356868982315, 0.5005066990852356, 0.009443172253668308, 0.1309894472360611, 0.0117291659116745, 0.00812672171741724, 0.018785282969474792, 0.01023633312433958, 0.005007300991564989, 0.007130141835659742, 0.0008189757354557514, 0.004768533632159233, 0.08942154049873352, 0.13098599016666412], [0.011299301870167255, 0.019753390923142433, 0.014429427683353424, 0.0219174325466156, 0.024904867634177208, 0.04723941907286644, 0.03361935913562775, 0.23078179359436035, 0.04692286252975464, 0.023623935878276825, 0.03774102404713631, 0.037860073149204254, 0.013941768556833267, 0.008530929684638977, 0.007382699754089117, 0.007148894015699625, 0.18212580680847168, 0.23077701032161713], [0.02201911248266697, 0.04518504813313484, 0.05376140773296356, 0.04332171007990837, 0.03883574903011322, 0.04102367162704468, 0.04456010088324547, 0.13096481561660767, 0.033780522644519806, 0.054059531539678574, 0.04945866018533707, 0.04509304463863373, 0.042961157858371735, 0.04107337072491646, 0.02277803048491478, 0.04206440970301628, 0.11809580773115158, 0.13096368312835693], [0.006473707966506481, 0.024969426915049553, 0.07693061977624893, 0.026432497426867485, 0.046431269496679306, 0.08950585871934891, 0.017274728044867516, 0.16652685403823853, 0.19178864359855652, 0.01747077703475952, 0.010509105399250984, 0.018997227773070335, 0.0031287875026464462, 0.010551881976425648, 0.001122628222219646, 0.0043039144948124886, 0.12105924636125565, 0.16652284562587738], [0.01188663113862276, 0.01892593875527382, 0.09769851714372635, 0.011356388218700886, 0.029786618426442146, 0.12784351408481598, 0.016101432964205742, 0.17911137640476227, 0.03899265080690384, 0.11109916865825653, 0.01094404049217701, 0.007130856160074472, 0.002398009644821286, 0.00947202742099762, 0.0032315831631422043, 0.008954452350735664, 0.13595953583717346, 0.17910733819007874], [0.010886916890740395, 0.011552265845239162, 0.024533452466130257, 0.054951343685388565, 0.03923468664288521, 0.12030009925365448, 0.021563159301877022, 0.1242111325263977, 0.020681649446487427, 0.015012667514383793, 0.2379160076379776, 0.03326753154397011, 0.033641643822193146, 0.010046950541436672, 0.010644584894180298, 0.012417401187121868, 0.09492988884449005, 0.12420866638422012], [0.005998189095407724, 0.0055794790387153625, 0.011536089703440666, 0.016065148636698723, 0.03252232074737549, 0.06507288664579391, 0.014622882008552551, 0.24852949380874634, 0.02338682860136032, 0.007533922325819731, 0.030602581799030304, 0.07225915789604187, 0.023777108639478683, 0.009422188624739647, 0.006148246116936207, 0.004898468963801861, 0.17352207005023956, 0.24852298200130463], [0.002877473598346114, 0.002402295358479023, 0.0054634809494018555, 0.007307842839509249, 0.006572098936885595, 0.006612549535930157, 0.004209616687148809, 0.1889979988336563, 0.002073269337415695, 0.002568859839811921, 0.015337103977799416, 0.008772803470492363, 0.40503165125846863, 0.006655723322182894, 0.007863962091505527, 0.01448525208979845, 0.1237751692533493, 0.18899287283420563], [0.0028595628682523966, 0.0019241997506469488, 0.005365248303860426, 0.0054974970407783985, 0.007906715385615826, 0.025202449411153793, 0.0033199344761669636, 0.10043671727180481, 0.008529115468263626, 0.007944113574922085, 0.005466958973556757, 0.006223645526915789, 0.011408582329750061, 0.5465405583381653, 0.034439567476511, 0.05343795195221901, 0.07306249439716339, 0.10043468326330185], [0.000680984347127378, 0.0007656666566617787, 0.004529918543994427, 0.002499490976333618, 0.003473874880000949, 0.003884054720401764, 0.0020001446828246117, 0.030846834182739258, 0.007155945990234613, 0.005311836022883654, 0.0031118534971028566, 0.005171274766325951, 0.0023837711196392775, 0.02705126255750656, 0.8443924188613892, 0.0025863265618681908, 0.02330823428928852, 0.030846230685710907], [0.008716853335499763, 0.0031789997592568398, 0.004506035707890987, 0.009453298524022102, 0.007081592921167612, 0.0262632854282856, 0.006949462927877903, 0.12550188601016998, 0.010383945889770985, 0.00929022952914238, 0.009802685119211674, 0.004965212196111679, 0.04462086036801338, 0.11158346384763718, 0.015601830556988716, 0.3805297911167145, 0.09607087820768356, 0.1254996657371521], [0.01796172559261322, 0.041182905435562134, 0.046356216073036194, 0.0391051284968853, 0.03514072671532631, 0.03698161616921425, 0.043150682002305984, 0.1555275321006775, 0.033446960151195526, 0.04917823523283005, 0.04633985832333565, 0.04345810040831566, 0.036142539232969284, 0.032756656408309937, 0.019023673608899117, 0.03143928945064545, 0.13728228211402893, 0.15552584826946259], [0.022019047290086746, 0.04518481343984604, 0.05376100912690163, 0.04332156851887703, 0.03883557766675949, 0.04102367162704468, 0.04456005245447159, 0.13096582889556885, 0.03378051146864891, 0.054059214890003204, 0.049458593130111694, 0.04509297013282776, 0.042960863560438156, 0.04107307642698288, 0.02277788147330284, 0.04206409305334091, 0.11809657514095306, 0.13096469640731812]], [[0.021773697808384895, 0.06356582045555115, 0.06799773871898651, 0.16259582340717316, 0.11835724860429764, 0.15514568984508514, 0.04558338597416878, 0.10804777592420578, 0.017374921590089798, 0.009276945143938065, 0.015033540315926075, 0.018095683306455612, 0.0041685462929308414, 0.002070159651339054, 0.0013741492293775082, 0.0010692651849240065, 0.08042401075363159, 0.10804558545351028], [0.0008729675319045782, 0.18191005289554596, 0.02214173972606659, 0.027409657835960388, 0.048645906150341034, 0.009506750851869583, 0.011635174974799156, 0.24576695263385773, 0.00996134802699089, 0.018972985446453094, 0.003740535583347082, 0.0068558999337255955, 0.007823565974831581, 0.0011770016280934215, 0.0005283892387524247, 0.0007072716252878308, 0.15658406913280487, 0.24575968086719513], [0.0009543902706354856, 0.00939712394028902, 0.4565982222557068, 0.00798308290541172, 0.008799539878964424, 0.030299467965960503, 0.0025967720430344343, 0.15866439044475555, 0.005169018171727657, 0.046392206102609634, 0.005688751582056284, 0.008019250817596912, 0.004033407662063837, 0.003135011065751314, 0.0007660894189029932, 0.000896640180144459, 0.09194739907979965, 0.1586591899394989], [0.003918488975614309, 0.012496690265834332, 0.012844420969486237, 0.2724403440952301, 0.046752698719501495, 0.007717785891145468, 0.005670339334756136, 0.21147063374519348, 0.010648385621607304, 0.011456298641860485, 0.02688458375632763, 0.014906958676874638, 0.012776101008057594, 0.002462368458509445, 0.0014186238404363394, 0.0022199032828211784, 0.13245119154453278, 0.21146412193775177], [0.002995518734678626, 0.009006563574075699, 0.003132299520075321, 0.037629202008247375, 0.7131736874580383, 0.04004936292767525, 0.0023939432576298714, 0.0471867136657238, 0.018338488414883614, 0.0034823149908334017, 0.01578858681023121, 0.019829394295811653, 0.005642238073050976, 0.0021750307641923428, 0.0004197446396574378, 0.0014047004515305161, 0.030166665092110634, 0.04718546196818352], [0.002822358161211014, 0.0030996270943433046, 0.017094943672418594, 0.0054029361344873905, 0.04131441190838814, 0.3759758174419403, 0.0022956784814596176, 0.18763667345046997, 0.014414748176932335, 0.005375257693231106, 0.01733320951461792, 0.017126621678471565, 0.006749588064849377, 0.005673389881849289, 0.0003235895710531622, 0.0036719662602990866, 0.10605830699205399, 0.18763084709644318], [0.011963914148509502, 0.02532421052455902, 0.01956229843199253, 0.04344341903924942, 0.03614351898431778, 0.02223331294953823, 0.13171450793743134, 0.1971934735774994, 0.058770522475242615, 0.008349067531526089, 0.012003283947706223, 0.022380748763680458, 0.008748450316488743, 0.011708746664226055, 0.005917219910770655, 0.009386084042489529, 0.17796705663204193, 0.19719021022319794], [0.0209652129560709, 0.0465623214840889, 0.07984644174575806, 0.06836013495922089, 0.05271691083908081, 0.053868550807237625, 0.055311694741249084, 0.13472092151641846, 0.03299633413553238, 0.040179215371608734, 0.022301366552710533, 0.03009784407913685, 0.03612365201115608, 0.03316088020801544, 0.01594305969774723, 0.02658821828663349, 0.11553765088319778, 0.1347196102142334], [0.006923320237547159, 0.005992857739329338, 0.021934615448117256, 0.018813148140907288, 0.025606291368603706, 0.05955886095762253, 0.013066807761788368, 0.20182527601718903, 0.2702428102493286, 0.008151785470545292, 0.0095045305788517, 0.005903765559196472, 0.011144210584461689, 0.00544506823644042, 0.002268634270876646, 0.00444995379075408, 0.12734846770763397, 0.20181959867477417], [0.0075874244794249535, 0.02448335476219654, 0.03044973500072956, 0.008655613288283348, 0.015318128280341625, 0.014434578828513622, 0.0032245756592601538, 0.03152736648917198, 0.015905313193798065, 0.7591051459312439, 0.010715383104979992, 0.009430468082427979, 0.004526115022599697, 0.004586576484143734, 0.0014112036442384124, 0.003199355211108923, 0.023913174867630005, 0.03152664378285408], [0.0199534110724926, 0.003742789151147008, 0.011539602652192116, 0.0444503128528595, 0.032091472297906876, 0.037458308041095734, 0.003987431991845369, 0.0692637488245964, 0.013529515825212002, 0.012262621894478798, 0.47690969705581665, 0.05348365381360054, 0.04958551377058029, 0.005497112404555082, 0.03383113816380501, 0.015476180240511894, 0.047674890607595444, 0.06926259398460388], [0.0040458994917571545, 0.0035674406681209803, 0.012667415663599968, 0.01782217063009739, 0.036044757813215256, 0.027528323233127594, 0.004114909563213587, 0.17973877489566803, 0.008913972415030003, 0.014806930907070637, 0.08366747945547104, 0.2467593550682068, 0.04690484702587128, 0.008422115817666054, 0.010645145550370216, 0.004228854086250067, 0.11038753390312195, 0.17973405122756958], [0.0002284541114931926, 0.0001457585603930056, 0.0005704616196453571, 0.0008239652379415929, 0.0011466636788100004, 0.0008096462697722018, 0.00028186410781927407, 0.031109318137168884, 0.0003482690081000328, 0.0006788168102502823, 0.004310113377869129, 0.005886079277843237, 0.8942784070968628, 0.00169663829728961, 0.0006026700721122324, 0.008603066205978394, 0.017371341586112976, 0.031108450144529343], [0.003287749132141471, 0.0007529549184255302, 0.0026643751189112663, 0.001647442695684731, 0.002142881276085973, 0.013849795795977116, 0.001930822734721005, 0.07086705416440964, 0.0033265012316405773, 0.0029247859492897987, 0.0035822088830173016, 0.006689584814012051, 0.03136007860302925, 0.6191822290420532, 0.012244588695466518, 0.10471402108669281, 0.047967251390218735, 0.07086566835641861], [0.00037622242234647274, 0.0004969431320205331, 0.0009713004692457616, 0.0010725453030318022, 0.00041907691047526896, 0.0011826640693470836, 0.0009163704817183316, 0.006446029990911484, 0.0021025699097663164, 0.00417444109916687, 0.007328104693442583, 0.0033721611835062504, 0.0007007242529653013, 0.004928196780383587, 0.9530309438705444, 0.0010816690046340227, 0.004954152274876833, 0.006445922423154116], [0.006482766009867191, 0.00042406932334415615, 0.001260953489691019, 0.0010666348971426487, 0.00120858836453408, 0.010767403990030289, 0.0012505239574238658, 0.04083308205008507, 0.0023792674764990807, 0.0015053653623908758, 0.005691094323992729, 0.0025559489149600267, 0.06580767780542374, 0.06776614487171173, 0.004775846842676401, 0.7159215807914734, 0.02947063557803631, 0.04083244130015373], [0.017283091321587563, 0.042709458619356155, 0.06652002781629562, 0.06459444016218185, 0.046047765761613846, 0.04511043801903725, 0.06171476095914841, 0.1592058390378952, 0.0320015475153923, 0.031460076570510864, 0.018879512324929237, 0.02718355506658554, 0.028443971648812294, 0.028135331347584724, 0.013798682950437069, 0.021716604009270668, 0.13599087297916412, 0.15920396149158478], [0.020965246483683586, 0.04656212404370308, 0.07984572649002075, 0.06835988163948059, 0.052716489881277084, 0.053868476301431656, 0.05531167984008789, 0.13472187519073486, 0.032996270805597305, 0.04017888754606247, 0.02230129763484001, 0.03009773977100849, 0.03612342104315758, 0.03316083177924156, 0.01594296470284462, 0.026588199660182, 0.11553840339183807, 0.1347205638885498]], [[0.0643300861120224, 0.015360631048679352, 0.009645918384194374, 0.07369370013475418, 0.025597279891371727, 0.04289710894227028, 0.055517226457595825, 0.1410757452249527, 0.023240040987730026, 0.16030257940292358, 0.022199152037501335, 0.030620887875556946, 0.011500329710543156, 0.023215696215629578, 0.022258950397372246, 0.01671142876148224, 0.12075937539339066, 0.14107386767864227], [0.018455520272254944, 0.030316198244690895, 0.01917223259806633, 0.02470279298722744, 0.017531543970108032, 0.022960612550377846, 0.020639976486563683, 0.27874308824539185, 0.02077808976173401, 0.027225665748119354, 0.007635217159986496, 0.0070086196064949036, 0.005286060273647308, 0.0047983224503695965, 0.005765583831816912, 0.007102408912032843, 0.2031400352716446, 0.2787380814552307], [0.016707096248865128, 0.02958751656115055, 0.050620630383491516, 0.013814767822623253, 0.008424009196460247, 0.00523254182189703, 0.01285488996654749, 0.30095526576042175, 0.004545389208942652, 0.025650208815932274, 0.007827162742614746, 0.005810645874589682, 0.003393407678231597, 0.002712333807721734, 0.0035576908849179745, 0.0034916282165795565, 0.20386648178100586, 0.30094829201698303], [0.011502197943627834, 0.017966359853744507, 0.01272173598408699, 0.009472214616835117, 0.007706614211201668, 0.006266291718930006, 0.009582670405507088, 0.324425607919693, 0.004468639846891165, 0.01215802039951086, 0.01465579867362976, 0.007223944645375013, 0.007703816052526236, 0.002790489001199603, 0.002181071089580655, 0.004773238208144903, 0.21998289227485657, 0.32441845536231995], [0.02073904499411583, 0.017141306772828102, 0.006269718520343304, 0.009906540624797344, 0.009232520125806332, 0.008569109253585339, 0.012976747006177902, 0.31307679414749146, 0.0116246547549963, 0.011693386361002922, 0.015116562135517597, 0.012558825314044952, 0.005933667067438364, 0.0038160057738423347, 0.005230907816439867, 0.003926312085241079, 0.21911799907684326, 0.3130698502063751], [0.01027681864798069, 0.0333138071000576, 0.01570851355791092, 0.009297659620642662, 0.011729146353900433, 0.0204221960157156, 0.01475661713629961, 0.30888617038726807, 0.006007412914186716, 0.01377173699438572, 0.014728216454386711, 0.00988788716495037, 0.0026140157133340836, 0.0036649596877396107, 0.0025336777325719595, 0.006977146491408348, 0.2065451741218567, 0.3088788390159607], [0.01860436424612999, 0.019694175571203232, 0.01873893290758133, 0.014576508663594723, 0.009924407117068768, 0.01254681684076786, 0.02818409539759159, 0.2807709574699402, 0.018896782770752907, 0.012223072350025177, 0.010019572451710701, 0.01278793066740036, 0.011953688226640224, 0.011914911679923534, 0.007222924847155809, 0.011643105186522007, 0.21953079104423523, 0.28076696395874023], [0.04615642875432968, 0.04015931859612465, 0.052779488265514374, 0.05675456300377846, 0.04644649475812912, 0.060872286558151245, 0.05509241297841072, 0.051987938582897186, 0.05026863142848015, 0.06515763700008392, 0.055062223225831985, 0.049408089369535446, 0.06511466205120087, 0.07416369765996933, 0.05756928026676178, 0.06830494105815887, 0.052713871002197266, 0.051987990736961365], [0.012653580866754055, 0.013896940276026726, 0.004811398684978485, 0.006307905539870262, 0.010859972797334194, 0.0073935226537287235, 0.020262692123651505, 0.32983097434043884, 0.011253119446337223, 0.009616724215447903, 0.004066321067512035, 0.006394595839083195, 0.0015553671400994062, 0.002634539036080241, 0.0025238299276679754, 0.0018967125797644258, 0.22421862185001373, 0.3298233151435852], [0.007898184470832348, 0.013918784447014332, 0.022185631096363068, 0.014333881437778473, 0.010014466941356659, 0.00932247657328844, 0.015052438713610172, 0.3010321259498596, 0.003318493254482746, 0.0575004406273365, 0.002440131502225995, 0.007554017007350922, 0.003025788813829422, 0.008651677519083023, 0.004231042228639126, 0.004538676701486111, 0.21395649015903473, 0.3010253310203552], [0.009268972091376781, 0.0068961563520133495, 0.004579153377562761, 0.007088531740009785, 0.008500245399773121, 0.003851969027891755, 0.007561076898127794, 0.31332090497016907, 0.007720928639173508, 0.02589748427271843, 0.03602142259478569, 0.014164106920361519, 0.008250264450907707, 0.010229918174445629, 0.006300619803369045, 0.007152802776545286, 0.20988239347934723, 0.31331297755241394], [0.009954363107681274, 0.02108144573867321, 0.011242496781051159, 0.015404533594846725, 0.013175477273762226, 0.007408284116536379, 0.017144154757261276, 0.3069658875465393, 0.011429790407419205, 0.0204425361007452, 0.012583904899656773, 0.009066612459719181, 0.006478421855717897, 0.008754519745707512, 0.005704190116375685, 0.0072323353961110115, 0.20897230505943298, 0.30695876479148865], [0.004631375893950462, 0.010343536734580994, 0.011001767590641975, 0.008692419156432152, 0.007111115846782923, 0.0026053281035274267, 0.010699176229536533, 0.33143049478530884, 0.0028117906767874956, 0.014241392724215984, 0.006708210334181786, 0.006042060907930136, 0.009166287258267403, 0.013499336317181587, 0.003205892164260149, 0.013246618211269379, 0.2131417989730835, 0.331421434879303], [0.018721619620919228, 0.043379031121730804, 0.019705597311258316, 0.03505129739642143, 0.012002050876617432, 0.0035233672242611647, 0.014482175931334496, 0.2681395411491394, 0.00884232483804226, 0.03743718937039375, 0.00983433611690998, 0.006866208277642727, 0.006267997901886702, 0.032937191426754, 0.011312372051179409, 0.013846338726580143, 0.18951722979545593, 0.2681339979171753], [0.007412302307784557, 0.019635874778032303, 0.014862382784485817, 0.018430324271321297, 0.007377102039754391, 0.003574344329535961, 0.01482505351305008, 0.30400460958480835, 0.005758247803896666, 0.019497890025377274, 0.010098390281200409, 0.006979567464441061, 0.002735355170443654, 0.03289859741926193, 0.011506515555083752, 0.007654104381799698, 0.20875133574008942, 0.30399802327156067], [0.016391679644584656, 0.04142432287335396, 0.014467613771557808, 0.02882358245551586, 0.011532005853950977, 0.00445237010717392, 0.014403175562620163, 0.26350706815719604, 0.005011659115552902, 0.026863573119044304, 0.026678793132305145, 0.013758477754890919, 0.01780502125620842, 0.019062500447034836, 0.010195081122219563, 0.03387762978672981, 0.18824408948421478, 0.2635014057159424], [0.04420119896531105, 0.038305409252643585, 0.04647273197770119, 0.05345498397946358, 0.04220382869243622, 0.0530327707529068, 0.054767973721027374, 0.07366775721311569, 0.04794139415025711, 0.06204358488321304, 0.051665227860212326, 0.04764150083065033, 0.060151904821395874, 0.0646943673491478, 0.05061821639537811, 0.06327733397483826, 0.07219206541776657, 0.07366767525672913], [0.04615650326013565, 0.04015931114554405, 0.052779149264097214, 0.0567544624209404, 0.046446412801742554, 0.06087204068899155, 0.05509236827492714, 0.051988717168569565, 0.05026843026280403, 0.06515751034021378, 0.055062342435121536, 0.049408093094825745, 0.06511448323726654, 0.07416313141584396, 0.05756904184818268, 0.0683046281337738, 0.052714575082063675, 0.05198876932263374]], [[0.01465621404349804, 0.12789005041122437, 0.04911899194121361, 0.3620072901248932, 0.06162385269999504, 0.09518586844205856, 0.03903176635503769, 0.020862547680735588, 0.03536246716976166, 0.045823805034160614, 0.091482974588871, 0.010279606096446514, 0.0048127807676792145, 0.0016050828853622079, 0.0008517115493305027, 0.0018025558674708009, 0.01674032397568226, 0.02086213044822216], [0.005308585707098246, 0.02932455576956272, 0.02648395113646984, 0.025055695325136185, 0.008795293979346752, 0.018370024859905243, 0.025200730189681053, 0.2957809567451477, 0.008179611526429653, 0.01183785405009985, 0.026556391268968582, 0.010855918750166893, 0.0027670436538755894, 0.00533166341483593, 0.000932870083488524, 0.004887763876467943, 0.19855833053588867, 0.29577285051345825], [0.007961212657392025, 0.02762932889163494, 0.08006361126899719, 0.028907181695103645, 0.011046954430639744, 0.040101442486047745, 0.016998426988720894, 0.23974092304706573, 0.020069221034646034, 0.05118471384048462, 0.009786668233573437, 0.009969833306968212, 0.007058772724121809, 0.03208122402429581, 0.0030689965933561325, 0.018782397732138634, 0.15581411123275757, 0.23973491787910461], [0.011743267066776752, 0.023188546299934387, 0.02019307017326355, 0.019494008272886276, 0.007091592065989971, 0.024758880957961082, 0.022119838744401932, 0.2882867157459259, 0.007668698206543922, 0.007415983360260725, 0.03337083011865616, 0.011891118250787258, 0.005874205380678177, 0.012089820578694344, 0.0015891805524006486, 0.012637496925890446, 0.202307790517807, 0.28827908635139465], [0.0012361184926703572, 0.005165999289602041, 0.003133337013423443, 0.005649958271533251, 0.00430276058614254, 0.0069975536316633224, 0.010038408450782299, 0.36430808901786804, 0.0029260304290801287, 0.0018263141391798854, 0.004552647937089205, 0.0027178002055734396, 0.0013379630399867892, 0.0019797207787632942, 0.00042313302401453257, 0.0013503885129466653, 0.2177559733390808, 0.3642978370189667], [0.002833395265042782, 0.007180888671427965, 0.008572284132242203, 0.012716192752122879, 0.006274551618844271, 0.022425452247262, 0.015697935596108437, 0.3339393138885498, 0.009000308811664581, 0.005692535080015659, 0.008057271130383015, 0.004728882573544979, 0.004970724694430828, 0.009985176846385002, 0.0015283183893188834, 0.005322180222719908, 0.20714443922042847, 0.3339301645755768], [0.003191836643964052, 0.010891830548644066, 0.015178822912275791, 0.011800631880760193, 0.005091185215860605, 0.01665188930928707, 0.014599516987800598, 0.3321448564529419, 0.006271555088460445, 0.006556862965226173, 0.007812688127160072, 0.00576593866571784, 0.0028688348829746246, 0.008213434368371964, 0.0015015538083389401, 0.005034732166677713, 0.21428747475147247, 0.3321363925933838], [0.03354479372501373, 0.05856155604124069, 0.07769481092691422, 0.07764343172311783, 0.059998102486133575, 0.06279995292425156, 0.05980123206973076, 0.08032851666212082, 0.042614731937646866, 0.058249007910490036, 0.04217243939638138, 0.04205166921019554, 0.044993165880441666, 0.042370762676000595, 0.02493664249777794, 0.038064852356910706, 0.07384622097015381, 0.08032812178134918], [0.004515858367085457, 0.0122488709166646, 0.025904839858412743, 0.021589389070868492, 0.013147939927875996, 0.0398595817387104, 0.027364537119865417, 0.30397453904151917, 0.005618509370833635, 0.012375366874039173, 0.007788412738591433, 0.004958969075232744, 0.0035060287918895483, 0.007828018628060818, 0.0009215856553055346, 0.007464625407010317, 0.19696670770645142, 0.3039662837982178], [0.00547017203643918, 0.0467882938683033, 0.04439972713589668, 0.031125327572226524, 0.015753746032714844, 0.04517124965786934, 0.019621217623353004, 0.2547342777252197, 0.011660763993859291, 0.05543467774987221, 0.012814060784876347, 0.006475396454334259, 0.004562295041978359, 0.008311953395605087, 0.0025730805937200785, 0.01003069058060646, 0.17034514248371124, 0.254727840423584], [0.0033353737089782953, 0.010665279813110828, 0.006117064040154219, 0.01324588805437088, 0.015983492136001587, 0.02998795546591282, 0.022121340036392212, 0.3203886151313782, 0.0055060675367712975, 0.0034904731437563896, 0.027127234265208244, 0.0072932168841362, 0.007534290198236704, 0.0031353277154266834, 0.0017430192092433572, 0.0030328461434692144, 0.1989135593175888, 0.3203790783882141], [0.0013811365934088826, 0.0033014442306011915, 0.006255523767322302, 0.005041276570409536, 0.004875634331256151, 0.020788783207535744, 0.014662020839750767, 0.350338339805603, 0.004049560986459255, 0.0016983653185889125, 0.005812115967273712, 0.005092528648674488, 0.002451235894113779, 0.0034894985146820545, 0.0009306255960837007, 0.002139079850167036, 0.21736402809619904, 0.3503287434577942], [0.0006405527819879353, 0.0020499282982200384, 0.00894206203520298, 0.0020379461348056793, 0.002202934818342328, 0.015189127996563911, 0.0035996423102915287, 0.3758513927459717, 0.0017268540104851127, 0.0012652212753891945, 0.00210780231282115, 0.0021529539953917265, 0.0029397348407655954, 0.006318442523479462, 0.0009657997288741171, 0.0026815698947757483, 0.19348841905593872, 0.37583956122398376], [0.0008976104436442256, 0.006854171399027109, 0.014604556374251842, 0.009365570731461048, 0.008954115211963654, 0.04245178401470184, 0.02954043820500374, 0.3212205171585083, 0.003754087258130312, 0.001833610120229423, 0.0038194290827959776, 0.0039839674718678, 0.0034792637452483177, 0.010691815055906773, 0.0027061940636485815, 0.005390940234065056, 0.20923972129821777, 0.3212123215198517], [0.005668803583830595, 0.035402655601501465, 0.03522016853094101, 0.03213200345635414, 0.023815816268324852, 0.07240273058414459, 0.035625334829092026, 0.263528972864151, 0.006505541503429413, 0.017559656873345375, 0.0073532601818442345, 0.0045885248109698296, 0.003080239985138178, 0.0070634158328175545, 0.0033822946716099977, 0.005258737597614527, 0.17788925766944885, 0.2635226249694824], [0.0009729212615638971, 0.0054113976657390594, 0.006210748106241226, 0.006592933088541031, 0.006143676117062569, 0.025802403688430786, 0.015295110642910004, 0.3448973298072815, 0.005491521675139666, 0.0020554985385388136, 0.0023835015017539263, 0.003468362847343087, 0.001350934850051999, 0.005227770656347275, 0.0013463919749483466, 0.0018227787222713232, 0.22063854336738586, 0.34488821029663086], [0.02624525874853134, 0.05483940243721008, 0.0715213268995285, 0.07250618189573288, 0.05272561311721802, 0.05992153286933899, 0.0578446164727211, 0.10816768556833267, 0.03829915076494217, 0.050541315227746964, 0.037792470306158066, 0.03852885216474533, 0.03656664863228798, 0.03766033798456192, 0.020263761281967163, 0.03247745707631111, 0.0959315299987793, 0.1081668958067894], [0.03354443982243538, 0.05856114998459816, 0.07769470661878586, 0.0776429995894432, 0.059997741132974625, 0.06279975920915604, 0.05980108305811882, 0.08032988011837006, 0.04261443018913269, 0.05824849382042885, 0.042172107845544815, 0.04205157980322838, 0.04499289020895958, 0.042370762676000595, 0.02493651583790779, 0.03806467726826668, 0.07384731620550156, 0.08032947033643723]], [[0.013573568314313889, 0.05616680905222893, 0.6053544282913208, 0.06581319123506546, 0.01271013356745243, 0.19267794489860535, 0.008974073454737663, 0.008976958692073822, 0.00680658221244812, 0.002156981034204364, 0.0014123988803476095, 0.0011032299371436238, 0.0027334869373589754, 0.001947972341440618, 0.002693467540666461, 0.0010284872259944677, 0.006893610116094351, 0.008976765908300877], [0.002135019050911069, 0.01150672510266304, 0.045718636363744736, 0.028713317587971687, 0.007991332560777664, 0.044882092624902725, 0.008949082344770432, 0.30866312980651855, 0.009233430027961731, 0.006381839048117399, 0.004746772348880768, 0.004627611488103867, 0.0027650021947920322, 0.0021622616332024336, 0.0016656366642564535, 0.0016320198774337769, 0.19957080483436584, 0.30865517258644104], [0.0025195979978889227, 0.012060029432177544, 0.011253120377659798, 0.026254210621118546, 0.010460407473146915, 0.038953278213739395, 0.01824992150068283, 0.2966846227645874, 0.02182077430188656, 0.007215016055852175, 0.012872455641627312, 0.00941394455730915, 0.0053746881894767284, 0.0024107294157147408, 0.0050430078990757465, 0.0032039231155067682, 0.21953167021274567, 0.2966785430908203], [0.00832593534141779, 0.025398796424269676, 0.06701356172561646, 0.047824449837207794, 0.024232927709817886, 0.21032750606536865, 0.033935997635126114, 0.17265048623085022, 0.04082312807440758, 0.005336855072528124, 0.012856240384280682, 0.015028167515993118, 0.005618642549961805, 0.014577660709619522, 0.011503703892230988, 0.004477924667298794, 0.12742123007774353, 0.17264676094055176], [0.005282000172883272, 0.019511329010128975, 0.021120410412549973, 0.06344520300626755, 0.03006150759756565, 0.07818733900785446, 0.04425309970974922, 0.23748797178268433, 0.04716905578970909, 0.0036727541591972113, 0.00918166060000658, 0.00796721875667572, 0.0032979233656078577, 0.002637677127495408, 0.006312957499176264, 0.0016615183558315039, 0.1812673956155777, 0.23748287558555603], [0.01677255518734455, 0.02211076393723488, 0.02575179561972618, 0.09219110757112503, 0.030524693429470062, 0.07308880984783173, 0.05767513066530228, 0.1659349948167801, 0.0908123254776001, 0.008746602572500706, 0.03805584833025932, 0.01869007758796215, 0.012567967176437378, 0.011351906694471836, 0.0297737717628479, 0.007746731396764517, 0.1322728991508484, 0.1659320741891861], [0.008242924697697163, 0.023640133440494537, 0.044237468391656876, 0.07364946603775024, 0.02534453757107258, 0.055902719497680664, 0.04132944345474243, 0.23152892291545868, 0.03905665874481201, 0.008566664531826973, 0.013787342235445976, 0.01001738477498293, 0.006131166126579046, 0.004998329561203718, 0.0030292824376374483, 0.004312583245337009, 0.17470107972621918, 0.2315237820148468], [0.0352071076631546, 0.057943377643823624, 0.15023812651634216, 0.06525316089391708, 0.04232834279537201, 0.08784279972314835, 0.05977099761366844, 0.06110837310552597, 0.028781598433852196, 0.04076041653752327, 0.030050063505768776, 0.033202316612005234, 0.04295707866549492, 0.06327438354492188, 0.03593211621046066, 0.04701364412903786, 0.05722795054316521, 0.06110813468694687], [0.012400200590491295, 0.01021388079971075, 0.03426751494407654, 0.0692484974861145, 0.024724913761019707, 0.06868921220302582, 0.026784004643559456, 0.22760841250419617, 0.046837933361530304, 0.009347738698124886, 0.035907991230487823, 0.012097330763936043, 0.008812068961560726, 0.006629324518144131, 0.0034077404998242855, 0.005220562685281038, 0.1701992154121399, 0.22760342061519623], [0.0010586350690573454, 0.0035477899946272373, 0.007342956960201263, 0.009949112311005592, 0.004958137404173613, 0.01761048287153244, 0.009675884619355202, 0.3426739573478699, 0.009950321167707443, 0.0019447478698566556, 0.0038632983341813087, 0.0036260054912418127, 0.003997225314378738, 0.0013219625689089298, 0.002005093963816762, 0.0018685013055801392, 0.2319403886795044, 0.3426654636859894], [0.008405444212257862, 0.00892642978578806, 0.012455666437745094, 0.01873284950852394, 0.010595366358757019, 0.03063427470624447, 0.01835937239229679, 0.28214365243911743, 0.015419533476233482, 0.004030067007988691, 0.023425858467817307, 0.02811228111386299, 0.02196389250457287, 0.008181700482964516, 0.016695724800229073, 0.008388645946979523, 0.2013920694589615, 0.2821371257305145], [0.006932300515472889, 0.014204027131199837, 0.011509962379932404, 0.024698924273252487, 0.009423703886568546, 0.02545781061053276, 0.020250314846634865, 0.2807304859161377, 0.015114557929337025, 0.004207230173051357, 0.02029869146645069, 0.019838610664010048, 0.031685128808021545, 0.010539748705923557, 0.010380581952631474, 0.009938038885593414, 0.2040655016899109, 0.2807243764400482], [0.002454378642141819, 0.006895528640598059, 0.005045170430094004, 0.010752441361546516, 0.008009144105017185, 0.03182252496480942, 0.009808951988816261, 0.272167444229126, 0.008310227654874325, 0.001475505530834198, 0.015613041818141937, 0.011647030711174011, 0.07371244579553604, 0.011830729432404041, 0.06094394251704216, 0.00953565165400505, 0.18781538307666779, 0.27216050028800964], [0.0007158369990065694, 0.0016370663652196527, 0.003916564863175154, 0.006051620002835989, 0.002383260056376457, 0.006304801907390356, 0.005781020503491163, 0.35141175985336304, 0.002034437842667103, 0.0007341276505030692, 0.003525967476889491, 0.003664143616333604, 0.011715032160282135, 0.003733345540240407, 0.013796255923807621, 0.006720342673361301, 0.2244729846715927, 0.3514014482498169], [0.00026967376470565796, 0.0001554269838379696, 0.0005772563745267689, 0.00071291986387223, 0.0002731611020863056, 0.0006041572196409106, 0.002072200644761324, 0.38231393694877625, 0.0005139856366440654, 0.00019470960251055658, 0.001144999754615128, 0.0009482590830884874, 0.0018516889540478587, 0.0014806929975748062, 0.000929145491681993, 0.0030455891974270344, 0.2206113040447235, 0.38230082392692566], [0.0012313545448705554, 0.0015584970824420452, 0.003199417842552066, 0.005411247722804546, 0.0028624008409678936, 0.005185118410736322, 0.008172991685569286, 0.34480586647987366, 0.0033160727471113205, 0.0006630128482356668, 0.00289077777415514, 0.003621116979047656, 0.009428081102669239, 0.007118097506463528, 0.016907714307308197, 0.00746777793392539, 0.23136447370052338, 0.34479591250419617], [0.03267582505941391, 0.057139016687870026, 0.13678033649921417, 0.06828891485929489, 0.04216119647026062, 0.08118888735771179, 0.059447869658470154, 0.08109322190284729, 0.029147503897547722, 0.03829602524638176, 0.02894759550690651, 0.03257155045866966, 0.0368657149374485, 0.051667969673871994, 0.029014231637120247, 0.03950155898928642, 0.07411995530128479, 0.0810927152633667], [0.03520699590444565, 0.05794326588511467, 0.1502375453710556, 0.06525295972824097, 0.04232821986079216, 0.0878424122929573, 0.059770893305540085, 0.06110938638448715, 0.028781389817595482, 0.04076037555932999, 0.030050037428736687, 0.03320233151316643, 0.04295691102743149, 0.06327416747808456, 0.035931773483753204, 0.04701344296336174, 0.05722878873348236, 0.06110914424061775]], [[0.014772654511034489, 0.057357463985681534, 0.12445595115423203, 0.009205170907080173, 0.02394700050354004, 0.04874555021524429, 0.02254628948867321, 0.15415433049201965, 0.03824383020401001, 0.010754570364952087, 0.04980441927909851, 0.06635726243257523, 0.05445272475481033, 0.02238183468580246, 0.004480423871427774, 0.0221090130507946, 0.12208042293787003, 0.1541510969400406], [0.0006133581046015024, 0.0062444559298455715, 0.01015004888176918, 0.01975620537996292, 0.018565094098448753, 0.012686901725828648, 0.013947907835245132, 0.3422665297985077, 0.0034903590567409992, 0.0011110462946817279, 0.006409022957086563, 0.004489853046834469, 0.002305080881342292, 0.0029397334437817335, 0.0005317808827385306, 0.002439026487991214, 0.20979702472686768, 0.34225645661354065], [0.0013389679370447993, 0.007072627078741789, 0.015874044969677925, 0.023342782631516457, 0.02057737670838833, 0.018518421798944473, 0.0110541433095932, 0.32905566692352295, 0.003935473971068859, 0.0022620861418545246, 0.006964161526411772, 0.0071723987348377705, 0.003774948650971055, 0.0077905370853841305, 0.0014148701447993517, 0.006972635164856911, 0.20383168756961823, 0.32904723286628723], [0.0011337153846397996, 0.005346143152564764, 0.012442302890121937, 0.020775925368070602, 0.005624624900519848, 0.005760231055319309, 0.005781397223472595, 0.34722110629081726, 0.004872282035648823, 0.0024394516367465258, 0.005684585310518742, 0.003604304511100054, 0.0029341336339712143, 0.007016735151410103, 0.0010602680267766118, 0.004807834047824144, 0.2162838876247406, 0.3472111225128174], [0.0003181564970873296, 0.0017156440299004316, 0.0035300154704600573, 0.006838562898337841, 0.0047255572862923145, 0.0026161770801991224, 0.005576054099947214, 0.37160083651542664, 0.001533580245450139, 0.00048066090676002204, 0.002403953345492482, 0.0018316125497221947, 0.0008886869181878865, 0.001984564121812582, 0.00033528765197843313, 0.0013090050779283047, 0.22072207927703857, 0.37158963084220886], [0.0019382380414754152, 0.003302214667201042, 0.007746160961687565, 0.00729024363681674, 0.004442588426172733, 0.009294372983276844, 0.007630454376339912, 0.35245299339294434, 0.004192365799099207, 0.0017063801642507315, 0.010362592525780201, 0.0051781050860881805, 0.005036844406276941, 0.0034476565197110176, 0.0012884672032669187, 0.002712011570110917, 0.21953493356704712, 0.3524433672428131], [0.005403326824307442, 0.013646841049194336, 0.01668303646147251, 0.024739256128668785, 0.034199122339487076, 0.02511238493025303, 0.017736079171299934, 0.2934208810329437, 0.012110568583011627, 0.006581100169569254, 0.016701171174645424, 0.014078554697334766, 0.007671821862459183, 0.008664319291710854, 0.0027343195397406816, 0.006725729443132877, 0.20037773251533508, 0.29341375827789307], [0.04654552787542343, 0.05790629982948303, 0.05779441446065903, 0.05434105545282364, 0.05917336046695709, 0.060553617775440216, 0.06124533712863922, 0.058705177158117294, 0.06074381619691849, 0.048264436423778534, 0.06017059460282326, 0.05602530017495155, 0.060460034757852554, 0.04877138510346413, 0.041912809014320374, 0.05039351060986519, 0.05828816071152687, 0.05870509892702103], [0.0031593709718436003, 0.00358353229239583, 0.00553785590454936, 0.002866302151232958, 0.004511821549385786, 0.004553765524178743, 0.00529657956212759, 0.35362952947616577, 0.008822431787848473, 0.002673201495781541, 0.015919294208288193, 0.011869603767991066, 0.004008451011031866, 0.00440919678658247, 0.0008029621676541865, 0.0023950450122356415, 0.21234166622161865, 0.35361936688423157], [0.0033614912535995245, 0.004677047021687031, 0.005664237774908543, 0.0026319806929677725, 0.005140896886587143, 0.0038100166711956263, 0.003128175623714924, 0.36816146969795227, 0.0020687258802354336, 0.0012960209278389812, 0.0046238163486123085, 0.00428886990994215, 0.0014859243528917432, 0.005136172752827406, 0.0006473140674643219, 0.0029861389193683863, 0.21274027228355408, 0.36815136671066284], [0.000660837278701365, 0.0016434653662145138, 0.003539038123562932, 0.0007295755203813314, 0.0012581829214468598, 0.0017122958088293672, 0.0014780675992369652, 0.382868230342865, 0.0008211847161874175, 0.0007291936199180782, 0.001622748444788158, 0.0017373847076669335, 0.001165351364761591, 0.0028612674213945866, 0.000253286532824859, 0.0015394387301057577, 0.2125236839056015, 0.3828568160533905], [0.0016585191478952765, 0.002130035776644945, 0.004698263946920633, 0.0014149619964882731, 0.0023404958192259073, 0.003422208596020937, 0.005402354057878256, 0.3665357828140259, 0.0018692456651479006, 0.0008189132204279304, 0.0035150586627423763, 0.004294571001082659, 0.0030088864732533693, 0.004463209770619869, 0.001622051582671702, 0.0030964496545493603, 0.22318235039710999, 0.36652666330337524], [0.000529590412043035, 0.0008407316636294127, 0.0018093740800395608, 0.0006300591630861163, 0.0011537900427356362, 0.0014544270234182477, 0.0015124037163332105, 0.38732123374938965, 0.0006282369140535593, 0.00039127643685787916, 0.0009089072700589895, 0.0014177054399624467, 0.0008464549318887293, 0.0029013250023126602, 0.0006074181292206049, 0.0021614395081996918, 0.20757590234279633, 0.3873097002506256], [0.002165050944313407, 0.00102227833122015, 0.0016233972273766994, 0.001816281583160162, 0.001905907178297639, 0.002463132841512561, 0.0026815510354936123, 0.37805676460266113, 0.0012587194796651602, 0.0007943771779537201, 0.0028134447056800127, 0.001421613385900855, 0.0013018934987485409, 0.002125610364601016, 0.0007476423634216189, 0.0020244054030627012, 0.21773067116737366, 0.37804728746414185], [0.0022126876283437014, 0.003876312868669629, 0.007322690449655056, 0.0027881294954568148, 0.004532850347459316, 0.0035188496112823486, 0.004836416337639093, 0.3690224587917328, 0.0016640443354845047, 0.0018129836535081267, 0.0011601594742387533, 0.0028667887672781944, 0.0011085093719884753, 0.002968511776998639, 0.0017468712758272886, 0.0017346537206321955, 0.2178139090538025, 0.3690131902694702], [0.0031054620631039143, 0.0017794128507375717, 0.0016136157792061567, 0.0021729369182139635, 0.0021560394670814276, 0.001751200994476676, 0.0029989404138177633, 0.38212084770202637, 0.0009959820890799165, 0.0010374304838478565, 0.0018160754116252065, 0.0011406588600948453, 0.0010013207793235779, 0.0014550781343132257, 0.00057272519916296, 0.0014190261717885733, 0.21075214445590973, 0.3821111023426056], [0.04147067293524742, 0.05429472401738167, 0.05534331873059273, 0.05016234517097473, 0.05889105424284935, 0.06090005859732628, 0.05692301690578461, 0.08129588514566422, 0.0552898533642292, 0.042494162917137146, 0.05711822211742401, 0.053287114948034286, 0.05319403111934662, 0.044515419751405716, 0.03358159959316254, 0.042913004755973816, 0.0770300030708313, 0.08129554241895676], [0.046545445919036865, 0.05790632218122482, 0.057794537395238876, 0.054340895265340805, 0.059173159301280975, 0.060553524643182755, 0.06124505028128624, 0.05870617553591728, 0.06074343994259834, 0.04826437681913376, 0.060170210897922516, 0.05602516233921051, 0.06045963615179062, 0.04877133667469025, 0.041912421584129333, 0.05039321258664131, 0.05828901380300522, 0.058706097304821014]], [[0.029471512883901596, 0.04934141784906387, 0.11698214709758759, 0.06221551075577736, 0.03735045716166496, 0.05687480419874191, 0.06018809229135513, 0.15246057510375977, 0.019339190796017647, 0.06327738612890244, 0.003914506174623966, 0.02847275137901306, 0.008434047922492027, 0.012228008359670639, 0.008431351743638515, 0.01294653583317995, 0.1256132870912552, 0.1524583101272583], [0.058216504752635956, 0.037461649626493454, 0.0904889777302742, 0.04552004486322403, 0.029702018946409225, 0.049803510308265686, 0.015490186400711536, 0.13148632645606995, 0.028996344655752182, 0.11903045326471329, 0.02852100133895874, 0.04687899351119995, 0.017974426969885826, 0.03423093259334564, 0.009350365027785301, 0.02580968476831913, 0.09955526888370514, 0.1314833164215088], [0.03664383664727211, 0.01765647530555725, 0.025693388655781746, 0.016693077981472015, 0.01690751314163208, 0.02141975611448288, 0.013664006255567074, 0.2734411954879761, 0.013614222407341003, 0.026232872158288956, 0.019545678049325943, 0.016748860478401184, 0.009157449007034302, 0.009304068982601166, 0.005364706739783287, 0.010211394168436527, 0.1942664533853531, 0.2734350264072418], [0.021615324541926384, 0.02046838402748108, 0.05288420990109444, 0.006593889556825161, 0.01715990900993347, 0.022667042911052704, 0.018746530637145042, 0.26378652453422546, 0.00482667051255703, 0.02936524711549282, 0.012592915445566177, 0.0204596109688282, 0.012493828311562538, 0.015769071877002716, 0.001402823836542666, 0.024592477828264236, 0.19079405069351196, 0.2637813985347748], [0.07839793711900711, 0.025380918756127357, 0.04307612404227257, 0.017455196008086205, 0.020216593518853188, 0.02806168794631958, 0.016861332580447197, 0.22208163142204285, 0.015503418631851673, 0.04070493206381798, 0.0131272217258811, 0.020542748272418976, 0.01943613402545452, 0.026853490620851517, 0.003304688958451152, 0.023735221475362778, 0.1631840169429779, 0.22207672894001007], [0.03113313391804695, 0.01256184745579958, 0.017333129420876503, 0.011143282055854797, 0.008289605379104614, 0.012725009582936764, 0.013502753339707851, 0.30539920926094055, 0.007918340153992176, 0.020100831985473633, 0.007577370386570692, 0.00886598601937294, 0.006541305687278509, 0.007403912954032421, 0.001774108037352562, 0.009448081254959106, 0.21289002895355225, 0.3053920269012451], [0.06839075684547424, 0.058208391070365906, 0.03575912490487099, 0.04182491824030876, 0.04408102482557297, 0.040167465806007385, 0.018634548410773277, 0.16354599595069885, 0.023502390831708908, 0.10078973323106766, 0.012204008176922798, 0.029445499181747437, 0.013655050657689571, 0.033308178186416626, 0.006852684076875448, 0.023203253746032715, 0.12288399785757065, 0.16354301571846008], [0.06814131140708923, 0.058276597410440445, 0.06192515790462494, 0.06670831888914108, 0.060655128210783005, 0.07228991389274597, 0.05503964051604271, 0.03659874573349953, 0.05827347934246063, 0.07164715975522995, 0.04523887485265732, 0.05767513066530228, 0.053472112864255905, 0.05186563730239868, 0.06227807700634003, 0.04541073366999626, 0.03790522739291191, 0.03659878671169281], [0.03372485190629959, 0.026096897199749947, 0.015424108132719994, 0.019273657351732254, 0.027813708409667015, 0.021115709096193314, 0.03615870699286461, 0.22991468012332916, 0.04047698155045509, 0.024495363235473633, 0.018047120422124863, 0.04289764538407326, 0.016565479338169098, 0.014173073694109917, 0.0052199168130755424, 0.014932346530258656, 0.1837591975927353, 0.22991053760051727], [0.0334579274058342, 0.02372969128191471, 0.04619657248258591, 0.020072543993592262, 0.018052196130156517, 0.045951418578624725, 0.0360981784760952, 0.22473399341106415, 0.011685221455991268, 0.03354613855481148, 0.01582108438014984, 0.02239786833524704, 0.011031890287995338, 0.017265791073441505, 0.016476409509778023, 0.013416023924946785, 0.18533673882484436, 0.22473037242889404], [0.025612950325012207, 0.01253033708781004, 0.02179664745926857, 0.007199130021035671, 0.008522945456206799, 0.015206987969577312, 0.019049612805247307, 0.2771133482456207, 0.013772820122539997, 0.022783083841204643, 0.009494717232882977, 0.016367195174098015, 0.017938928678631783, 0.015599947422742844, 0.005649683531373739, 0.016166096553206444, 0.21808691322803497, 0.2771086096763611], [0.025739097967743874, 0.015283194370567799, 0.01467055082321167, 0.011276095174252987, 0.009479639120399952, 0.01220652088522911, 0.026436245068907738, 0.28903019428253174, 0.014590956270694733, 0.010864286683499813, 0.011730377562344074, 0.012808679603040218, 0.007732069585472345, 0.0080303605645895, 0.007299893535673618, 0.004723810125142336, 0.22907188534736633, 0.28902605175971985], [0.0391249880194664, 0.01587737910449505, 0.02027924172580242, 0.012456451542675495, 0.009943787008523941, 0.015398852527141571, 0.018051443621516228, 0.27508488297462463, 0.012947930954396725, 0.011733410879969597, 0.013956209644675255, 0.020223932340741158, 0.015572918578982353, 0.016694994643330574, 0.009481132961809635, 0.012466280721127987, 0.20562651753425598, 0.2750796675682068], [0.03203089162707329, 0.02481062151491642, 0.032213158905506134, 0.021143076941370964, 0.016430186107754707, 0.020931297913193703, 0.020654110237956047, 0.24707330763339996, 0.008169624023139477, 0.028807025402784348, 0.01920127309858799, 0.02249963767826557, 0.026157012209296227, 0.01602890156209469, 0.008414310403168201, 0.022031016647815704, 0.18633496761322021, 0.2470695674419403], [0.027566464617848396, 0.031563900411129, 0.027904080227017403, 0.015834519639611244, 0.028902439400553703, 0.016563603654503822, 0.022464247420430183, 0.22637927532196045, 0.02383129671216011, 0.015516569837927818, 0.02089894562959671, 0.03680070862174034, 0.01737489178776741, 0.022985367104411125, 0.030280351638793945, 0.03180914372205734, 0.17694807052612305, 0.22637614607810974], [0.04195506125688553, 0.03179970011115074, 0.041627008467912674, 0.02144000679254532, 0.021536897867918015, 0.022886579856276512, 0.028449684381484985, 0.20258928835391998, 0.009785806760191917, 0.02696431428194046, 0.025294702500104904, 0.04856469854712486, 0.031261738389730453, 0.027430197224020958, 0.018860185518860817, 0.035099733620882034, 0.16186851263046265, 0.20258590579032898], [0.06669706106185913, 0.05710075795650482, 0.05984163284301758, 0.06630229949951172, 0.0575217604637146, 0.06855405122041702, 0.052097804844379425, 0.0512692928314209, 0.05671345070004463, 0.07546204328536987, 0.04102300480008125, 0.055178187787532806, 0.04742857813835144, 0.048308126628398895, 0.052554450929164886, 0.04169754683971405, 0.050980765372514725, 0.051269225776195526], [0.06814123690128326, 0.0582764595746994, 0.06192509084939957, 0.06670814752578735, 0.06065500155091286, 0.07228998839855194, 0.05503961443901062, 0.03659921512007713, 0.058273427188396454, 0.07164699584245682, 0.045238807797431946, 0.05767511576414108, 0.05347192659974098, 0.05186571925878525, 0.06227748468518257, 0.04541081562638283, 0.03790564835071564, 0.036599256098270416]], [[0.045241329818964005, 0.051679886877536774, 0.07608166337013245, 0.03425301983952522, 0.11099235713481903, 0.06271696090698242, 0.05446857586503029, 0.03524656966328621, 0.18958309292793274, 0.009154712781310081, 0.09488273411989212, 0.06855364143848419, 0.03859549015760422, 0.030140606686472893, 0.010841749608516693, 0.0208584014326334, 0.031463298946619034, 0.03524605929851532], [0.0020937048830091953, 0.07343846559524536, 0.02310866490006447, 0.034495532512664795, 0.028906837105751038, 0.026322292163968086, 0.05614318698644638, 0.23827944695949554, 0.04966798797249794, 0.005824148654937744, 0.02105977199971676, 0.012330555357038975, 0.0020239821169525385, 0.0056267692707479, 0.0082067446783185, 0.0034050981048494577, 0.17079319059848785, 0.23827362060546875], [0.003157536732032895, 0.01715700887143612, 0.022424103692173958, 0.02764214016497135, 0.020321551710367203, 0.022765278816223145, 0.02114645205438137, 0.2967184782028198, 0.037321314215660095, 0.0077076503075659275, 0.014285826124250889, 0.009495184756815434, 0.0025037769228219986, 0.002842768095433712, 0.004419784992933273, 0.002030696254223585, 0.1913490742444992, 0.2967112958431244], [0.003238894045352936, 0.02927226573228836, 0.029789824038743973, 0.024839702993631363, 0.018108226358890533, 0.019004179164767265, 0.016261808574199677, 0.29341042041778564, 0.03705960512161255, 0.006236654240638018, 0.012772513553500175, 0.012549018487334251, 0.005124598741531372, 0.00692087784409523, 0.004720080643892288, 0.005335500463843346, 0.18195432424545288, 0.2934015989303589], [0.0016570002771914005, 0.02221091277897358, 0.03171105682849884, 0.037725821137428284, 0.03466009348630905, 0.023696284741163254, 0.06894615292549133, 0.2665174901485443, 0.02266213670372963, 0.0037866171915084124, 0.009253024123609066, 0.007121424190700054, 0.0029377418104559183, 0.005111026577651501, 0.0067098080180585384, 0.0034166735131293535, 0.1853657215833664, 0.26651111245155334], [0.002448531100526452, 0.0058496021665632725, 0.01059554610401392, 0.023191845044493675, 0.010298785753548145, 0.018305983394384384, 0.017450891435146332, 0.32319825887680054, 0.025924166664481163, 0.003567968960851431, 0.006729903630912304, 0.007573300041258335, 0.0031559576746076345, 0.005297482013702393, 0.003684547496959567, 0.0024309654254466295, 0.2071063369512558, 0.32318994402885437], [0.01943693496286869, 0.05754685774445534, 0.045879118144512177, 0.07778378576040268, 0.11234430223703384, 0.06288564950227737, 0.06978631764650345, 0.12227030843496323, 0.07562100887298584, 0.011694501154124737, 0.03909781202673912, 0.04041694104671478, 0.0051363310776650906, 0.013653161004185677, 0.014563153497874737, 0.012985475361347198, 0.09662997722625732, 0.12226828187704086], [0.06409956514835358, 0.0546971932053566, 0.05989396199584007, 0.05407964065670967, 0.0710546150803566, 0.06508578360080719, 0.04947297275066376, 0.03546296805143356, 0.09803793579339981, 0.03592453524470329, 0.07413345575332642, 0.06002320721745491, 0.0575718954205513, 0.05239664390683174, 0.04586324095726013, 0.051443085074424744, 0.03529650345444679, 0.0354628823697567], [0.0019992482848465443, 0.010059215128421783, 0.012739337980747223, 0.008027522824704647, 0.008512336760759354, 0.007924835197627544, 0.037889666855335236, 0.32397139072418213, 0.008337326347827911, 0.0036951443180441856, 0.0031020946335047483, 0.005948980804532766, 0.00206000916659832, 0.0026748101226985455, 0.0015568669186905026, 0.0016281140269711614, 0.23590964078903198, 0.3239634335041046], [0.01373794861137867, 0.027752423658967018, 0.029386188834905624, 0.011869963258504868, 0.01630166918039322, 0.016184888780117035, 0.01209369208663702, 0.27903303503990173, 0.026529347524046898, 0.04262739419937134, 0.02562619373202324, 0.012009521946310997, 0.0040947445668280125, 0.0021421071141958237, 0.009900908917188644, 0.0017513290513306856, 0.1899314522743225, 0.2790272831916809], [0.002725322265177965, 0.01552762370556593, 0.025339029729366302, 0.008453890681266785, 0.006916177924722433, 0.011914653703570366, 0.008458212949335575, 0.327211856842041, 0.0056927925907075405, 0.0061653791926801205, 0.007525674533098936, 0.010086839087307453, 0.005365884397178888, 0.005766361020505428, 0.007694437634199858, 0.004013333003968, 0.21393917500972748, 0.3272033631801605], [0.007191864773631096, 0.028165601193904877, 0.0597192645072937, 0.01732105016708374, 0.03472928702831268, 0.032520316541194916, 0.02225119061768055, 0.2539860010147095, 0.02061305195093155, 0.00697838282212615, 0.012994213029742241, 0.019320089370012283, 0.018820825964212418, 0.016278792172670364, 0.006942253094166517, 0.012728355824947357, 0.17545941472053528, 0.25398004055023193], [0.00833525788038969, 0.02152109704911709, 0.03997316211462021, 0.019907347857952118, 0.03047926537692547, 0.023679077625274658, 0.019526472315192223, 0.21106326580047607, 0.03744348883628845, 0.0074837482534348965, 0.05171442776918411, 0.04984680935740471, 0.049515124410390854, 0.03397803381085396, 0.024338701739907265, 0.015399754047393799, 0.1447366625070572, 0.2110583335161209], [0.005418404936790466, 0.029719702899456024, 0.02197408489882946, 0.021174781024456024, 0.02293505147099495, 0.014240358956158161, 0.023715084418654442, 0.2657718062400818, 0.028903121128678322, 0.01003760565072298, 0.019322272390127182, 0.024424517527222633, 0.013480259105563164, 0.018012283369898796, 0.019203804433345795, 0.007929445244371891, 0.18797072768211365, 0.2657666802406311], [0.002784471493214369, 0.02111930027604103, 0.01956159435212612, 0.00815935991704464, 0.0119766341522336, 0.011861935257911682, 0.011898905038833618, 0.28813716769218445, 0.002978227799758315, 0.008998232893645763, 0.004023048561066389, 0.01505186315625906, 0.013616286218166351, 0.019657250493764877, 0.06055738404393196, 0.011039448902010918, 0.20044758915901184, 0.28813132643699646], [0.0035723827313631773, 0.022865712642669678, 0.04040729999542236, 0.01478203572332859, 0.020224206149578094, 0.021422414109110832, 0.020671013742685318, 0.2994537353515625, 0.009262473322451115, 0.008548026904463768, 0.006946086417883635, 0.009102324023842812, 0.005362405441701412, 0.006282137241214514, 0.007013469468802214, 0.005172816105186939, 0.19946472346782684, 0.29944682121276855], [0.062322162091732025, 0.05652236193418503, 0.05917619168758392, 0.053685326129198074, 0.07318957895040512, 0.06510530412197113, 0.05269702151417732, 0.04463417828083038, 0.10345757007598877, 0.03150395303964615, 0.07197653502225876, 0.059389472007751465, 0.04786273464560509, 0.04596312716603279, 0.040307026356458664, 0.044161729514598846, 0.04341182857751846, 0.044633977115154266], [0.06409965455532074, 0.054697319865226746, 0.059894148260354996, 0.05407959595322609, 0.07105447351932526, 0.06508573889732361, 0.04947301372885704, 0.035463497042655945, 0.09803766757249832, 0.03592454269528389, 0.07413328438997269, 0.06002308428287506, 0.057571522891521454, 0.052396260201931, 0.04586298018693924, 0.051442716270685196, 0.0352969728410244, 0.03546341508626938]], [[0.003998899832367897, 0.03155961260199547, 0.20299828052520752, 0.022630970925092697, 0.023841170594096184, 0.22606328129768372, 0.020785879343748093, 0.08347228169441223, 0.08060310035943985, 0.003800528822466731, 0.048794813454151154, 0.012584509328007698, 0.052256353199481964, 0.017587777227163315, 0.009544933214783669, 0.012604774907231331, 0.06340242177248001, 0.08347044140100479], [0.0010164749110117555, 0.002939949743449688, 0.014420665800571442, 0.003551576752215624, 0.002739009913057089, 0.009358233772218227, 0.0057924180291593075, 0.35885822772979736, 0.010729462839663029, 0.0009032338857650757, 0.0023063544649630785, 0.002408701926469803, 0.004521715920418501, 0.0028325796592980623, 0.0007285315077751875, 0.0016580820083618164, 0.21638861298561096, 0.35884615778923035], [0.006524423137307167, 0.009523102082312107, 0.06395179033279419, 0.00806471984833479, 0.005664894822984934, 0.01596103608608246, 0.020896295085549355, 0.3064194619655609, 0.014489484019577503, 0.004999065306037664, 0.003153136931359768, 0.005275678355246782, 0.0023225052282214165, 0.001859982730820775, 0.0025224059354513884, 0.0015393666690215468, 0.2204209566116333, 0.3064117133617401], [0.0019611301831901073, 0.01727454550564289, 0.05934420973062515, 0.013218063861131668, 0.009782474488019943, 0.04379032924771309, 0.009040581062436104, 0.28773507475852966, 0.015520995482802391, 0.007672528736293316, 0.007348437327891588, 0.00728655606508255, 0.01944999396800995, 0.012385031208395958, 0.003305118065327406, 0.011848255060613155, 0.18530884385108948, 0.2877277731895447], [0.0019346448825672269, 0.008898555301129818, 0.015675757080316544, 0.005808596964925528, 0.007801953703165054, 0.048538945615291595, 0.006698574870824814, 0.3226040005683899, 0.020715812221169472, 0.0029882933013141155, 0.009180618450045586, 0.008113802410662174, 0.0074618225917220116, 0.0049956804141402245, 0.0020838058553636074, 0.004861936438828707, 0.1990429311990738, 0.3225942850112915], [0.0016883601201698184, 0.006039753556251526, 0.018505575135350227, 0.009805617853999138, 0.00841502659022808, 0.09077376872301102, 0.005633986555039883, 0.29350483417510986, 0.01953960582613945, 0.0030480390414595604, 0.011257801204919815, 0.006132103502750397, 0.01102176122367382, 0.020695319399237633, 0.004464173223823309, 0.023746293038129807, 0.17223238945007324, 0.2934955656528473], [0.0033760550431907177, 0.011007403023540974, 0.015801159664988518, 0.007142371032387018, 0.008497164584696293, 0.024084851145744324, 0.009973191656172276, 0.32934990525245667, 0.009413265623152256, 0.004563957452774048, 0.004894511308521032, 0.006380677223205566, 0.006862711161375046, 0.004649853799492121, 0.0035419613122940063, 0.006091092247515917, 0.21502818167209625, 0.3293416500091553], [0.045030176639556885, 0.04232853651046753, 0.05346163362264633, 0.03513100743293762, 0.03733356297016144, 0.05589524656534195, 0.05000380054116249, 0.09644489735364914, 0.06555010378360748, 0.03408675640821457, 0.0569164976477623, 0.04481598362326622, 0.06017940491437912, 0.05323905870318413, 0.038750384002923965, 0.045841339975595474, 0.08854725956916809, 0.09644438326358795], [0.00653301365673542, 0.014668452553451061, 0.03677042946219444, 0.005483715329319239, 0.006279755849391222, 0.029509326443076134, 0.005378578789532185, 0.3178277313709259, 0.01896415278315544, 0.00859830155968666, 0.004076340701431036, 0.0030420387629419565, 0.003267444670200348, 0.002929158741608262, 0.0011235279962420464, 0.0029890770092606544, 0.21473939716815948, 0.3178195059299469], [0.003964275121688843, 0.004328371025621891, 0.02834230288863182, 0.0027580971363931894, 0.0016066511161625385, 0.007350620348006487, 0.00571123231202364, 0.3489009737968445, 0.00560680590569973, 0.004121818114072084, 0.0011126877507194877, 0.0017758626490831375, 0.0008160301367752254, 0.0006380673730745912, 0.0005581648438237607, 0.0011240442981943488, 0.23239338397979736, 0.3488905727863312], [0.00036088499473407865, 0.0021443674340844154, 0.00943862833082676, 0.0007296942640095949, 0.0011535825906321406, 0.00938350334763527, 0.0013727956684306264, 0.3749156892299652, 0.0019380636513233185, 0.0016309963539242744, 0.0019990496803075075, 0.0014146942412480712, 0.003810831345617771, 0.0015721898525953293, 0.0007201497792266309, 0.002147648250684142, 0.21036358177661896, 0.3749036192893982], [0.0010293679079040885, 0.0027237648610025644, 0.007519975304603577, 0.0008659223676659167, 0.0015248716808855534, 0.0070081111043691635, 0.002567447256296873, 0.37171024084091187, 0.004152927082031965, 0.00107064179610461, 0.0020847413688898087, 0.002918981248512864, 0.003688163124024868, 0.0018455215031281114, 0.000481138180475682, 0.0013382671168074012, 0.21577125787734985, 0.3716987073421478], [0.0008394678006879985, 0.0019495347514748573, 0.008243054151535034, 0.0009115004795603454, 0.0012049421202391386, 0.0051543996669352055, 0.0013452456332743168, 0.3726404011249542, 0.0022584544494748116, 0.001491676433943212, 0.001941994414664805, 0.0018317745998501778, 0.007704612798988819, 0.004425507504492998, 0.001103533199056983, 0.004918585531413555, 0.20940624177455902, 0.3726290166378021], [0.002974697155877948, 0.0026332661509513855, 0.010431922040879726, 0.003130942350253463, 0.0027384248096495867, 0.013282899744808674, 0.004716901574283838, 0.3540663719177246, 0.005549907684326172, 0.002146015176549554, 0.0018186187371611595, 0.0024907283950597048, 0.001394731691107154, 0.0028164656832814217, 0.0017148860497400165, 0.002745633013546467, 0.23129107058048248, 0.3540565073490143], [0.001072988728992641, 0.0012800897238776088, 0.0072280424647033215, 0.0008801527437753975, 0.0008332192664965987, 0.00460073072463274, 0.002615450182929635, 0.372471421957016, 0.0013400021707639098, 0.0018590891268104315, 0.0005560442805290222, 0.0009934890549629927, 0.0004648126778192818, 0.0010716060642153025, 0.0008929191390052438, 0.0010502903023734689, 0.22832921147346497, 0.37246042490005493], [0.0022712484933435917, 0.004080384969711304, 0.022914379835128784, 0.004628492519259453, 0.0022590691223740578, 0.01502297818660736, 0.005682620219886303, 0.3449508249759674, 0.0038565241266041994, 0.004494885448366404, 0.002220769878476858, 0.00234971777535975, 0.002381717087700963, 0.0045191142708063126, 0.0029865489341318607, 0.004838564898818731, 0.22560051083564758, 0.3449416160583496], [0.036972563713788986, 0.03857256844639778, 0.04735071584582329, 0.029441654682159424, 0.033535346388816833, 0.053073689341545105, 0.04458972439169884, 0.12805020809173584, 0.05870215594768524, 0.028448136523365974, 0.04941699281334877, 0.04159381985664368, 0.051031798124313354, 0.04626472294330597, 0.0318976528942585, 0.04011762887239456, 0.11289145052433014, 0.12804920971393585], [0.04502998664975166, 0.04232855141162872, 0.05346156656742096, 0.03513088449835777, 0.037333399057388306, 0.05589514598250389, 0.05000362917780876, 0.09644610434770584, 0.06554966419935226, 0.03408673033118248, 0.056916140019893646, 0.044815853238105774, 0.06017882376909256, 0.05323868617415428, 0.038750045001506805, 0.045841023325920105, 0.0885482057929039, 0.09644558280706406]], [[0.026621613651514053, 0.010369090363383293, 0.0068130879662930965, 0.05335598066449165, 0.08700788766145706, 0.06353089213371277, 0.03868170455098152, 0.17560455203056335, 0.05451774597167969, 0.019108042120933533, 0.09328537434339523, 0.02643721178174019, 0.01966830901801586, 0.0064767999574542046, 0.003026567865163088, 0.005363601725548506, 0.1345314234495163, 0.17559999227523804], [0.0023898149374872446, 0.13510265946388245, 0.012019813060760498, 0.01865272782742977, 0.02521962858736515, 0.01162776630371809, 0.027171829715371132, 0.20558902621269226, 0.0778900757431984, 0.050435490906238556, 0.04177508130669594, 0.019083717837929726, 0.019544893875718117, 0.003257393604144454, 0.0012578268069773912, 0.0036643249914050102, 0.13973461091518402, 0.2055833339691162], [0.001712072524242103, 0.020069211721420288, 0.20937040448188782, 0.013164193369448185, 0.01665794663131237, 0.020537201315164566, 0.012166931293904781, 0.2295093536376953, 0.017552174627780914, 0.04046766832470894, 0.010790187865495682, 0.009438786655664444, 0.006877962499856949, 0.012472822330892086, 0.0016717585967853665, 0.004872838035225868, 0.14316587150096893, 0.2295026183128357], [0.0019680545665323734, 0.00725901871919632, 0.010422389023005962, 0.5353659987449646, 0.028752179816365242, 0.006045505870133638, 0.006149277091026306, 0.09926734119653702, 0.008447284810245037, 0.011669589206576347, 0.09445198625326157, 0.010951251722872257, 0.012852165848016739, 0.0011547181056812406, 0.000743611715734005, 0.0020816875621676445, 0.06315317004919052, 0.09926474094390869], [0.007135676220059395, 0.021258851513266563, 0.020343074575066566, 0.05540064722299576, 0.43390780687332153, 0.036455363035202026, 0.009183808229863644, 0.0671643614768982, 0.05916950851678848, 0.019643528386950493, 0.05369943380355835, 0.057656992226839066, 0.02867281436920166, 0.01123485155403614, 0.0018708186689764261, 0.004619144834578037, 0.045420702546834946, 0.06716267019510269], [0.005806670058518648, 0.010867584496736526, 0.018619181588292122, 0.008656198158860207, 0.030529746785759926, 0.1125747412443161, 0.012224772945046425, 0.2286948561668396, 0.061055589467287064, 0.021137362346053123, 0.028597533702850342, 0.021115796640515327, 0.0197934340685606, 0.029159778729081154, 0.0016165858833119273, 0.014957714825868607, 0.14590336382389069, 0.2286890149116516], [0.030316513031721115, 0.03879543021321297, 0.007956680841743946, 0.01359756663441658, 0.015689292922616005, 0.023446492850780487, 0.06349673867225647, 0.07191929966211319, 0.3704768717288971, 0.09273990988731384, 0.049393296241760254, 0.030201833695173264, 0.017676008865237236, 0.0209237951785326, 0.010948611423373222, 0.005773745942860842, 0.06472981721162796, 0.07191812247037888], [0.03621935844421387, 0.05627012997865677, 0.05244666710495949, 0.04209093004465103, 0.042922765016555786, 0.03797050938010216, 0.05890250205993652, 0.08297575265169144, 0.0777658224105835, 0.0773826614022255, 0.05960889160633087, 0.0585535392165184, 0.05033449828624725, 0.0375998429954052, 0.027386588975787163, 0.039667095988988876, 0.07892712205648422, 0.08297532051801682], [0.0047097220085561275, 0.02104305662214756, 0.023678375408053398, 0.01301337219774723, 0.04403382167220116, 0.0271775983273983, 0.03632831946015358, 0.17442628741264343, 0.2561720907688141, 0.025161731988191605, 0.01114196702837944, 0.013367220759391785, 0.013920623809099197, 0.02073431760072708, 0.0035718251019716263, 0.012082167901098728, 0.12501521408557892, 0.17442230880260468], [0.006271233782172203, 0.044838014990091324, 0.025669768452644348, 0.019179170951247215, 0.013802420347929, 0.026137063279747963, 0.01925434172153473, 0.06547089666128159, 0.03255748376250267, 0.5350325107574463, 0.018948249518871307, 0.011779241263866425, 0.0071566724218428135, 0.03801869601011276, 0.008669998496770859, 0.010303410701453686, 0.05144151672720909, 0.0654693990945816], [0.005432494450360537, 0.00951183307915926, 0.011587444692850113, 0.10128558427095413, 0.016842449083924294, 0.01959051564335823, 0.009477442130446434, 0.02988453395664692, 0.008573477156460285, 0.044769011437892914, 0.5585584044456482, 0.021569902077317238, 0.07984048873186111, 0.017245516180992126, 0.0025508496910333633, 0.010558915324509144, 0.02283707819879055, 0.029884012416005135], [0.007137647829949856, 0.007566405460238457, 0.014024150557816029, 0.012998114340007305, 0.034137435257434845, 0.018865983933210373, 0.012306420132517815, 0.16478049755096436, 0.012592228129506111, 0.027673829346895218, 0.055813197046518326, 0.2153676599264145, 0.11686892062425613, 0.011709877289831638, 0.0034052592236548662, 0.008832820691168308, 0.11114322394132614, 0.16477641463279724], [0.0016505694948136806, 0.0015152761479839683, 0.003414463484659791, 0.0031267625745385885, 0.00574470916762948, 0.005987811833620071, 0.0019297819817438722, 0.036490075290203094, 0.0024994572158902884, 0.0050597405061125755, 0.03269215300679207, 0.015622940845787525, 0.79578697681427, 0.009272861294448376, 0.0023268579971045256, 0.016897300258278847, 0.0234930831938982, 0.0364890955388546], [0.007396682631224394, 0.002788861747831106, 0.015297865495085716, 0.005443950183689594, 0.01072902511805296, 0.03501064330339432, 0.00952388159930706, 0.06019143387675285, 0.015691129490733147, 0.0303693525493145, 0.01978149823844433, 0.013150992803275585, 0.06967347115278244, 0.5017579793930054, 0.01460969913750887, 0.08411876857280731, 0.04427453875541687, 0.06019027158617973], [0.002926530549302697, 0.002742255572229624, 0.009964917786419392, 0.019907522946596146, 0.009834645316004753, 0.007285849656909704, 0.012043509632349014, 0.04490362107753754, 0.006707755383104086, 0.030755523592233658, 0.05203564092516899, 0.021475572139024734, 0.04084320738911629, 0.021074922755360603, 0.6258460283279419, 0.013182269409298897, 0.03356762230396271, 0.044902555644512177], [0.014777680858969688, 0.0030116883572191, 0.008053864352405071, 0.00926940143108368, 0.00568968802690506, 0.02660328708589077, 0.004842663649469614, 0.07880431413650513, 0.00824185274541378, 0.019027331843972206, 0.008385454304516315, 0.0034933181013911963, 0.09414523094892502, 0.06610362231731415, 0.005094907246530056, 0.5057491064071655, 0.059903599321842194, 0.07880298048257828], [0.032718293368816376, 0.05432064086198807, 0.04460839927196503, 0.03585963696241379, 0.037962768226861954, 0.03468015789985657, 0.062041349709033966, 0.10010959953069687, 0.08464337140321732, 0.07680552452802658, 0.05521955341100693, 0.056955642998218536, 0.043188780546188354, 0.03315672278404236, 0.02260960079729557, 0.031088383868336678, 0.09392273426055908, 0.10010888427495956], [0.03621932119131088, 0.056269947439432144, 0.05244641378521919, 0.042090918868780136, 0.04292267560958862, 0.03797059506177902, 0.058902591466903687, 0.08297652751207352, 0.07776574790477753, 0.07738237082958221, 0.059608664363622665, 0.05855333432555199, 0.0503341406583786, 0.03759972006082535, 0.027386344969272614, 0.039666883647441864, 0.07892779260873795, 0.08297610282897949]]]], \\\"left_text\\\": [\\\"[CLS]\\\", \\\"The\\\", \\\"cat\\\", \\\"is\\\", \\\"very\\\", \\\"sad\\\", \\\".\\\", \\\"[SEP]\\\", \\\"Because\\\", \\\"it\\\", \\\"could\\\", \\\"not\\\", \\\"find\\\", \\\"food\\\", \\\"to\\\", \\\"eat\\\", \\\".\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"[CLS]\\\", \\\"The\\\", \\\"cat\\\", \\\"is\\\", \\\"very\\\", \\\"sad\\\", \\\".\\\", \\\"[SEP]\\\", \\\"Because\\\", \\\"it\\\", \\\"could\\\", \\\"not\\\", \\\"find\\\", \\\"food\\\", \\\"to\\\", \\\"eat\\\", \\\".\\\", \\\"[SEP]\\\"]}], \\\"default_filter\\\": \\\"0\\\", \\\"root_div_id\\\": \\\"bertviz-1de19e1432d14b4aad8c487235728dd3\\\", \\\"layer\\\": null, \\\"heads\\\": null}; // HACK: {\\\"attention\\\": [{\\\"name\\\": null, \\\"attn\\\": [[[[0.3859884440898895, 0.02057979628443718, 0.004500803537666798, 0.002817635191604495, 0.007266886066645384, 0.006198827177286148, 0.022021684795618057, 0.22846126556396484, 0.011731993407011032, 0.014577418565750122, 0.005260078702121973, 0.003582231467589736, 0.0059876772575080395, 0.0042801508679986, 0.023125912994146347, 0.002531171077862382, 0.029462572187185287, 0.2216254472732544], [0.06148483604192734, 0.03735759109258652, 0.05122782289981842, 0.074319027364254, 0.11066576093435287, 0.2166668027639389, 0.07667514681816101, 0.17553472518920898, 0.028059184551239014, 0.00733340997248888, 0.02269308641552925, 0.017327917739748955, 0.0176251120865345, 0.019530300050973892, 0.03719786927103996, 0.017016662284731865, 0.010122273117303848, 0.019162453711032867], [0.12165584415197372, 0.03918922692537308, 0.07658596336841583, 0.16208156943321228, 0.05594197288155556, 0.1199028417468071, 0.058835435658693314, 0.06788425892591476, 0.03651268035173416, 0.008219841867685318, 0.02993888035416603, 0.014661992900073528, 0.07781106978654861, 0.03683315962553024, 0.025120927020907402, 0.04402516037225723, 0.012414905242621899, 0.012384355068206787], [0.07096096873283386, 0.019745098426938057, 0.05076196417212486, 0.3216231167316437, 0.06517092138528824, 0.1811944991350174, 0.04948625713586807, 0.07765862345695496, 0.012555819004774094, 0.008076651953160763, 0.028512705117464066, 0.011726225726306438, 0.03718914836645126, 0.014720022678375244, 0.015112744644284248, 0.021107932552695274, 0.006007406860589981, 0.00838985200971365], [0.07757589966058731, 0.04466124624013901, 0.16430014371871948, 0.046185869723558426, 0.12793979048728943, 0.1307271420955658, 0.10753954946994781, 0.02929486148059368, 0.021969133988022804, 0.017205916345119476, 0.01572602242231369, 0.015608962625265121, 0.034000199288129807, 0.06363485008478165, 0.010910374112427235, 0.06591474264860153, 0.02178139053285122, 0.005023935344070196], [0.0819023847579956, 0.05191846936941147, 0.1298852413892746, 0.14105059206485748, 0.13406862318515778, 0.06487351655960083, 0.04303986206650734, 0.10398216545581818, 0.01162409596145153, 0.012178625911474228, 0.03137100115418434, 0.027009574696421623, 0.038939882069826126, 0.03863026574254036, 0.012019442394375801, 0.05612337216734886, 0.00793092418462038, 0.013452013023197651], [0.11052338778972626, 0.05677015706896782, 0.030181389302015305, 0.062188468873500824, 0.10704823583364487, 0.09969982504844666, 0.06574510782957077, 0.24552002549171448, 0.036487944424152374, 0.010080523788928986, 0.018517399206757545, 0.0199742428958416, 0.024447981268167496, 0.014758304692804813, 0.04125041887164116, 0.014312914572656155, 0.011077839881181717, 0.0314159132540226], [0.0007953397580422461, 4.876411549048498e-05, 1.2812875866075046e-05, 3.640283830463886e-05, 3.614966772147454e-05, 9.775860235095024e-06, 5.5430864449590445e-06, 0.0023459147196263075, 0.0016941571375355124, 0.0011871884344145656, 0.001746264286339283, 0.002546733245253563, 0.00138271099422127, 0.002552727237343788, 0.0027516118716448545, 0.0012576946755871177, 0.0013990739826112986, 0.9801912307739258], [0.041033800691366196, 0.019140129908919334, 0.03645913675427437, 0.02520899660885334, 0.01986474171280861, 0.053430553525686264, 0.011223905719816685, 0.05456050485372543, 0.08177986741065979, 0.02146817371249199, 0.05691642686724663, 0.05905153602361679, 0.07773186266422272, 0.1426154524087906, 0.03064747527241707, 0.1467110514640808, 0.020078273490071297, 0.10207813233137131], [0.05907338857650757, 0.007699300069361925, 0.010592824779450893, 0.018314367160201073, 0.039285413920879364, 0.04708310216665268, 0.009265772998332977, 0.05544352903962135, 0.12924589216709137, 0.03963834419846535, 0.04757308587431908, 0.12710076570510864, 0.06767736375331879, 0.07704311609268188, 0.049029164016246796, 0.056409794837236404, 0.022308235988020897, 0.13721652328968048], [0.08025658875703812, 0.009966498240828514, 0.020284516736865044, 0.031635433435440063, 0.04981759563088417, 0.03128658980131149, 0.007412026170641184, 0.04628734290599823, 0.08224984258413315, 0.035194363445043564, 0.0532364659011364, 0.05241034924983978, 0.12840624153614044, 0.13088573515415192, 0.029201461002230644, 0.08927406370639801, 0.01700913906097412, 0.10518563538789749], [0.05818871408700943, 0.008876489475369453, 0.0206220131367445, 0.018821116536855698, 0.017153216525912285, 0.020052596926689148, 0.00961364433169365, 0.08609303086996078, 0.08123298734426498, 0.01914294809103012, 0.03906999155879021, 0.03552168235182762, 0.09235599637031555, 0.06164407730102539, 0.04393551126122475, 0.15304714441299438, 0.02118639647960663, 0.21344241499900818], [0.1322019100189209, 0.010198456235229969, 0.02137579768896103, 0.014871306717395782, 0.07178346812725067, 0.03450319170951843, 0.0034891751129180193, 0.055315449833869934, 0.0790371522307396, 0.023913711309432983, 0.049693070352077484, 0.08445954322814941, 0.06833813339471817, 0.12909609079360962, 0.01426104735583067, 0.10646821558475494, 0.0066361562348902225, 0.09435813874006271], [0.11391817033290863, 0.004515159409493208, 0.02863706648349762, 0.004413871094584465, 0.014874010346829891, 0.007808012887835503, 0.012844865210354328, 0.07612811028957367, 0.12065095454454422, 0.024246156215667725, 0.050542186945676804, 0.036330774426460266, 0.029629232361912727, 0.05114014446735382, 0.04830091819167137, 0.05988679453730583, 0.044517964124679565, 0.27161556482315063], [0.07218439877033234, 0.013985252939164639, 0.008152703754603863, 0.013511492870748043, 0.03507611155509949, 0.02235044166445732, 0.01257773395627737, 0.08900005370378494, 0.09968076646327972, 0.03447609767317772, 0.04476483538746834, 0.1470528542995453, 0.06550410389900208, 0.039926134049892426, 0.07171313464641571, 0.046256572008132935, 0.02204972505569458, 0.1617375910282135], [0.06401970237493515, 0.010091767646372318, 0.03101954236626625, 0.013685628771781921, 0.027094975113868713, 0.02343142218887806, 0.008455997332930565, 0.07299336045980453, 0.11640565097332001, 0.01778719387948513, 0.07453975826501846, 0.06583404541015625, 0.07777038961648941, 0.10632336884737015, 0.02351183257997036, 0.11576749384403229, 0.01603761315345764, 0.1352301687002182], [0.06746115535497665, 0.011312589049339294, 0.005020038690418005, 0.008372286334633827, 0.02559451386332512, 0.02129456028342247, 0.00685887411236763, 0.09792733937501907, 0.1744057685136795, 0.018854103982448578, 0.033720143139362335, 0.08430512994527817, 0.06361143290996552, 0.041975729167461395, 0.05800855532288551, 0.04311780631542206, 0.014966471120715141, 0.22319349646568298], [9.514880366623402e-05, 1.935425189003581e-06, 4.365994925592531e-07, 1.201778673021181e-06, 1.990333430512692e-06, 4.70538481067706e-07, 1.3450089397792908e-07, 0.00015670323045924306, 0.0018361657857894897, 0.0005301811615936458, 0.0006877674022689462, 0.002672281814739108, 0.000895029806997627, 0.0020286710932850838, 0.0007105404511094093, 0.0009609679109416902, 0.00041994714410975575, 0.9890005588531494]], [[0.48492196202278137, 0.0313761830329895, 0.062025465071201324, 0.04785403236746788, 0.07392572611570358, 0.04531057924032211, 0.042899955064058304, 0.03332687169313431, 0.013483488000929356, 0.031034566462039948, 0.01563643291592598, 0.025076845660805702, 0.017967883497476578, 0.010211044922471046, 0.01587863452732563, 0.016627879813313484, 0.017795734107494354, 0.014646687544882298], [0.0401780791580677, 0.11726559698581696, 0.20787765085697174, 0.2771991491317749, 0.17741699516773224, 0.08093008399009705, 0.04228660836815834, 0.009940383024513721, 0.005029672756791115, 0.0075399382039904594, 0.009497176855802536, 0.0062021054327487946, 0.007512684445828199, 0.0017727077938616276, 0.004498015623539686, 0.003129360033199191, 0.00156165671069175, 0.00016223521379288286], [0.12272447347640991, 0.16699674725532532, 0.19795887172222137, 0.08300038427114487, 0.22756999731063843, 0.1295880824327469, 0.011665310710668564, 0.009226075373589993, 0.004625258967280388, 0.015355746261775494, 0.0035659230779856443, 0.004624908324331045, 0.005824925843626261, 0.004860021639615297, 0.005266845691949129, 0.00446165120229125, 0.0016685028094798326, 0.0010161740938201547], [0.0017791090067476034, 0.7600481510162354, 0.08021719753742218, 0.036161843687295914, 0.02425519935786724, 0.026554293930530548, 0.036614708602428436, 0.008502824231982231, 0.005615432746708393, 0.008864588104188442, 0.006349721923470497, 0.0004159089585300535, 0.0007824052590876818, 0.00071115413447842, 0.00145947455894202, 0.0005092417704872787, 0.0008249323000200093, 0.00033371325116604567], [0.039856698364019394, 0.21196560561656952, 0.24055011570453644, 0.164279043674469, 0.07473067939281464, 0.16104499995708466, 0.055420152842998505, 0.01943611167371273, 0.00689929723739624, 0.006255666259676218, 0.007603384554386139, 0.0037554819136857986, 0.0024249074049293995, 0.0011348942061886191, 0.0019796474371105433, 0.0017734228167682886, 0.0005940868286415935, 0.00029579264810308814], [0.07790723443031311, 0.11474322527647018, 0.25870364904403687, 0.2168864905834198, 0.13398407399654388, 0.06389123946428299, 0.06919674575328827, 0.03849649056792259, 0.008593826554715633, 0.008591655641794205, 0.0026872102171182632, 0.0013888266403228045, 0.0012744085397571325, 0.0005788743146695197, 0.000835889601148665, 0.0015445329481735826, 0.000552099256310612, 0.00014364378876052797], [0.0028529027476906776, 0.06480436027050018, 0.05146715044975281, 0.16399216651916504, 0.3029285967350006, 0.22712063789367676, 0.1252572238445282, 0.050571102648973465, 0.0034142478834837675, 0.002813336905092001, 0.0013557898346334696, 0.0010575293563306332, 0.0009173124562948942, 0.00026955039356835186, 0.0002900287217926234, 0.00035898791975341737, 0.00044485105900093913, 8.427644206676632e-05], [0.018830735236406326, 0.08050795644521713, 0.10390700399875641, 0.1207500696182251, 0.24439802765846252, 0.2541643977165222, 0.13718818128108978, 0.02025364711880684, 0.004664831794798374, 0.009046358987689018, 0.0032854133751243353, 0.0010267426259815693, 0.0008728880784474313, 0.0002771172730717808, 0.00037564366357401013, 0.00019066101231146604, 0.0002089762274408713, 5.130839781486429e-05], [0.032431814819574356, 0.017694825306534767, 0.03239487111568451, 0.04467219486832619, 0.06668002158403397, 0.07207076251506805, 0.29151424765586853, 0.2568607032299042, 0.024335559457540512, 0.05253708362579346, 0.06927045434713364, 0.019347703084349632, 0.007551897782832384, 0.002948594046756625, 0.005447083152830601, 0.0016938875196501613, 0.0016323501477017999, 0.0009159340406768024], [0.00554995471611619, 0.038544148206710815, 0.01838618330657482, 0.023417983204126358, 0.04727083444595337, 0.038396205753088, 0.10766711086034775, 0.3520449697971344, 0.2781014144420624, 0.027743007987737656, 0.024294964969158173, 0.01884458400309086, 0.009576973505318165, 0.0031440879683941603, 0.003472660668194294, 0.0012201153440400958, 0.0016501974314451218, 0.0006745655555278063], [0.0032676905393600464, 0.06955845654010773, 0.01105544064193964, 0.06315509974956512, 0.021326998248696327, 0.023585714399814606, 0.1183398962020874, 0.23650933802127838, 0.2345912754535675, 0.12084255367517471, 0.029237985610961914, 0.02818663977086544, 0.012761639431118965, 0.009613266214728355, 0.0068821595050394535, 0.002285981783643365, 0.006405843887478113, 0.0023939809761941433], [0.013078619726002216, 0.07446904480457306, 0.013668985106050968, 0.01248040609061718, 0.019206443801522255, 0.02604091167449951, 0.11481193453073502, 0.14750631153583527, 0.11983900517225266, 0.11786288022994995, 0.21447043120861053, 0.03698320314288139, 0.03787307068705559, 0.009572433307766914, 0.027453869581222534, 0.003539315890520811, 0.007575934287160635, 0.003567142877727747], [0.0038354378193616867, 0.043555065989494324, 0.01648613065481186, 0.026459790766239166, 0.018123440444469452, 0.025944840162992477, 0.07987315207719803, 0.1259433478116989, 0.0898256003856659, 0.07084952294826508, 0.22135029733181, 0.09620237350463867, 0.03965073823928833, 0.07267104834318161, 0.03790835291147232, 0.020598821341991425, 0.007703194860368967, 0.0030189109966158867], [0.011739352717995644, 0.01690637320280075, 0.021264394745230675, 0.019410742446780205, 0.016197672113776207, 0.02419927716255188, 0.02044660411775112, 0.041607148945331573, 0.07114701718091965, 0.06898549944162369, 0.14525386691093445, 0.09037709981203079, 0.20426394045352936, 0.10356678068637848, 0.051372140645980835, 0.07229312509298325, 0.01565321907401085, 0.005315682850778103], [0.0031852785032242537, 0.028413670137524605, 0.011132045648992062, 0.02611694112420082, 0.01607345975935459, 0.018219083547592163, 0.034111205488443375, 0.0707005187869072, 0.0830436497926712, 0.052384987473487854, 0.0887642428278923, 0.1304255872964859, 0.12386424839496613, 0.09330812841653824, 0.060179658234119415, 0.04813059791922569, 0.07658233493566513, 0.035364385694265366], [0.007466593757271767, 0.020958662033081055, 0.013801335357129574, 0.009284775704145432, 0.006714936345815659, 0.00988426897674799, 0.02518519014120102, 0.03422689065337181, 0.03861764818429947, 0.02609110064804554, 0.0643606185913086, 0.02979891747236252, 0.0874766856431961, 0.2823978662490845, 0.14537885785102844, 0.056261658668518066, 0.07252715528011322, 0.06956689059734344], [0.005946137476712465, 0.02200954034924507, 0.02092854306101799, 0.02801446057856083, 0.018816456198692322, 0.011646305210888386, 0.05115769803524017, 0.04815779998898506, 0.005277610383927822, 0.00978224165737629, 0.04645024985074997, 0.049598488956689835, 0.08027401566505432, 0.05955544114112854, 0.20990023016929626, 0.09415341913700104, 0.1537659615278244, 0.08456539362668991], [0.024198096245527267, 0.011231702752411366, 0.013167831115424633, 0.011320693418383598, 0.018685046583414078, 0.0039054416120052338, 0.007365751545876265, 0.005574868991971016, 0.005380499176681042, 0.00703040836378932, 0.018672946840524673, 0.02995717152953148, 0.07310224324464798, 0.06042541563510895, 0.16333092749118805, 0.14327214658260345, 0.2920515537261963, 0.11132721602916718]], [[0.15983577072620392, 0.07506237179040909, 0.046369150280952454, 0.02611844800412655, 0.05466730147600174, 0.08622322231531143, 0.08878053724765778, 0.0902862623333931, 0.06796588003635406, 0.02352750487625599, 0.018034908920526505, 0.050298646092414856, 0.042058732360601425, 0.03220931813120842, 0.02418982796370983, 0.024930642917752266, 0.049943771213293076, 0.039497677236795425], [0.017191259190440178, 0.08722641319036484, 0.17197996377944946, 0.09560889005661011, 0.10860612243413925, 0.11256225407123566, 0.24582897126674652, 0.09173060953617096, 0.013324488885700703, 0.00433371914550662, 0.003986181225627661, 0.007765627466142178, 0.006216979119926691, 0.004614373203366995, 0.005239209160208702, 0.01010844949632883, 0.010366321541368961, 0.003310214960947633], [0.12293726950883865, 0.07408607751131058, 0.1349191516637802, 0.02892308682203293, 0.06163245812058449, 0.26923054456710815, 0.036732979118824005, 0.06400252878665924, 0.030935591086745262, 0.008113246411085129, 0.012792707420885563, 0.009332709014415741, 0.03104393370449543, 0.048010025173425674, 0.0037548004183918238, 0.05541345849633217, 0.0032358402386307716, 0.004903540946543217], [0.01326132845133543, 0.05129855498671532, 0.12275739759206772, 0.3799687325954437, 0.077604740858078, 0.08649226278066635, 0.12618990242481232, 0.0642424151301384, 0.010082445107400417, 0.003761362051591277, 0.008240407332777977, 0.00771624268963933, 0.010397502221167088, 0.007018831092864275, 0.004858362954109907, 0.010436277836561203, 0.011071179062128067, 0.004602096043527126], [0.04662289470434189, 0.18270348012447357, 0.1281939297914505, 0.06730806827545166, 0.07318584620952606, 0.1597469300031662, 0.15702463686466217, 0.052273187786340714, 0.02997736446559429, 0.010707441717386246, 0.005865729879587889, 0.011259257793426514, 0.019525837153196335, 0.017435112968087196, 0.005480513442307711, 0.01659540832042694, 0.01230156421661377, 0.0037928412202745676], [0.05833743140101433, 0.10491776466369629, 0.2381347417831421, 0.0535334050655365, 0.05617650970816612, 0.1648051142692566, 0.11926832795143127, 0.07590142637491226, 0.03262774646282196, 0.005882548168301582, 0.00818103551864624, 0.00419929064810276, 0.02266721986234188, 0.019614417105913162, 0.004669970832765102, 0.023993944749236107, 0.004541872534900904, 0.0025471881963312626], [0.015980804339051247, 0.1038554236292839, 0.119533970952034, 0.1073264479637146, 0.09764768928289413, 0.10714861750602722, 0.24721024930477142, 0.09110913425683975, 0.011632245033979416, 0.00664938660338521, 0.008730307221412659, 0.004952302668243647, 0.013283493928611279, 0.01586185209453106, 0.009626527316868305, 0.013836013153195381, 0.020369376987218857, 0.005246245767921209], [0.045601848512887955, 0.09900110960006714, 0.07334509491920471, 0.050871577113866806, 0.12139718979597092, 0.1509479135274887, 0.26436981558799744, 0.07660618424415588, 0.014686339534819126, 0.009853742085397243, 0.010544320568442345, 0.011483008041977882, 0.012153706513345242, 0.014490860514342785, 0.007237209007143974, 0.013545524328947067, 0.01961117424070835, 0.004253461491316557], [0.042719051241874695, 0.041721161454916, 0.0789625272154808, 0.0487571656703949, 0.03793752193450928, 0.10258052498102188, 0.13323239982128143, 0.053710367530584335, 0.118159718811512, 0.0183271337300539, 0.024302413687109947, 0.02092561312019825, 0.06098403036594391, 0.0371883288025856, 0.044394709169864655, 0.0350131131708622, 0.07259813696146011, 0.02848600223660469], [0.02083250693976879, 0.021199757233262062, 0.03650709241628647, 0.0105673773214221, 0.023324832320213318, 0.02002452127635479, 0.024256061762571335, 0.028449255973100662, 0.12444552034139633, 0.056362930685281754, 0.07585839182138443, 0.05146624147891998, 0.06952106207609177, 0.15885329246520996, 0.0347466804087162, 0.1297890543937683, 0.055423688143491745, 0.05837174132466316], [0.03733883425593376, 0.02958502061665058, 0.0679180920124054, 0.04447140544652939, 0.025008423253893852, 0.025920182466506958, 0.021769216284155846, 0.03427279368042946, 0.10096690058708191, 0.04335765168070793, 0.04019574820995331, 0.09565939754247665, 0.0810832530260086, 0.09005759656429291, 0.041700515896081924, 0.14280052483081818, 0.03684455156326294, 0.04104989767074585], [0.03014657087624073, 0.02731216512620449, 0.06568917632102966, 0.028710301965475082, 0.01448636595159769, 0.03601134940981865, 0.025300487875938416, 0.028887787833809853, 0.10462921857833862, 0.03713208809494972, 0.07560978084802628, 0.07454515993595123, 0.12285148352384567, 0.06555992364883423, 0.04385388642549515, 0.10141827911138535, 0.06031458452343941, 0.05754132568836212], [0.04130689054727554, 0.03289434313774109, 0.04799177497625351, 0.009540320374071598, 0.025034328922629356, 0.029995329678058624, 0.019507477059960365, 0.02068069949746132, 0.18371360003948212, 0.06174538657069206, 0.06923719495534897, 0.09713013470172882, 0.05057593807578087, 0.08731399476528168, 0.04051646217703819, 0.09883379936218262, 0.042861223220825195, 0.04112112149596214], [0.07431540638208389, 0.03703033924102783, 0.07555990666151047, 0.0070398603565990925, 0.021023141220211983, 0.08932182937860489, 0.010731833986938, 0.03433644771575928, 0.1321326643228531, 0.05345403403043747, 0.03193601220846176, 0.048071932047605515, 0.08807594329118729, 0.09622479975223541, 0.030122870579361916, 0.09951876848936081, 0.01666012778878212, 0.054444123059511185], [0.01941988244652748, 0.046061258763074875, 0.03581860661506653, 0.025311633944511414, 0.03863845020532608, 0.027177119627594948, 0.04623662307858467, 0.04452211782336235, 0.07566419243812561, 0.05939739570021629, 0.04234561324119568, 0.07943392544984818, 0.04466516897082329, 0.06444482505321503, 0.07480153441429138, 0.059114471077919006, 0.11936286091804504, 0.09758441150188446], [0.11936795711517334, 0.028469111770391464, 0.030221227556467056, 0.00631202245131135, 0.022235220298171043, 0.0485454797744751, 0.014728923328220844, 0.026404155418276787, 0.12046324461698532, 0.0530225969851017, 0.05862191691994667, 0.05457591637969017, 0.10035941004753113, 0.13707362115383148, 0.026155700907111168, 0.06728678196668625, 0.03118743561208248, 0.054969340562820435], [0.022452104836702347, 0.03653494641184807, 0.04183012619614601, 0.0290537029504776, 0.03345632925629616, 0.03097379021346569, 0.037697963416576385, 0.042068418115377426, 0.06988009065389633, 0.05600378289818764, 0.05156230553984642, 0.03867083042860031, 0.07085612416267395, 0.10775350034236908, 0.061921022832393646, 0.08179041743278503, 0.09614192694425583, 0.0913526639342308], [0.05883180350065231, 0.02290005050599575, 0.019771311432123184, 0.013416220434010029, 0.037318743765354156, 0.037359293550252914, 0.03311112895607948, 0.02934768609702587, 0.07611296325922012, 0.09064306318759918, 0.0677872970700264, 0.09478147327899933, 0.05736275389790535, 0.08940742909908295, 0.035546839237213135, 0.07477029412984848, 0.08532383292913437, 0.0762077271938324]], [[0.7460663318634033, 0.01420966349542141, 0.018567141145467758, 0.012074879370629787, 0.013024936430156231, 0.021065441891551018, 0.015864824876189232, 0.019919808954000473, 0.015234425663948059, 0.019084833562374115, 0.010250387713313103, 0.012845492921769619, 0.009718306362628937, 0.0060110148042440414, 0.012367328628897667, 0.015002893283963203, 0.015377067029476166, 0.023315301164984703], [0.005077885463833809, 0.05524256452918053, 0.676936149597168, 0.08644968271255493, 0.10326961427927017, 0.01850024424493313, 0.020574901252985, 0.023503046482801437, 0.0005410751909948885, 0.0005479329847730696, 0.0007543357205577195, 0.0010335438419133425, 0.0012144518550485373, 0.0013881503837183118, 0.0017184546450152993, 0.0013911534333601594, 0.0012879465939477086, 0.0005688496748916805], [0.016555875539779663, 0.1488979011774063, 0.04812243953347206, 0.4883955717086792, 0.14932173490524292, 0.05877586081624031, 0.030022677034139633, 0.027218559756875038, 0.002008856041356921, 0.0003428749623708427, 0.0009485245682299137, 0.0005467746523208916, 0.005294440314173698, 0.0008647223003208637, 0.0009361288975924253, 0.019283052533864975, 0.00121393078006804, 0.0012501328019425273], [0.0026739437598735094, 0.03853078559041023, 0.08936583250761032, 0.061524853110313416, 0.5493236780166626, 0.12811121344566345, 0.07785607874393463, 0.03747691586613655, 0.004189616534858942, 0.0018143359338864684, 0.0003805507149081677, 0.0016142077511176467, 0.0007743635796941817, 0.0006419078563340008, 0.0004918686463497579, 0.0007234718650579453, 0.0038585958536714315, 0.000647859473247081], [0.0074082184582948685, 0.0271303690969944, 0.03552667051553726, 0.10482577979564667, 0.06530255824327469, 0.5876773595809937, 0.08424224704504013, 0.076046422123909, 0.0015863784356042743, 0.00292678433470428, 0.0019662135746330023, 0.0003451277734711766, 0.0013817577855661511, 0.00043416721746325493, 0.0005477041704580188, 0.0005172889796085656, 0.0006008298951201141, 0.0015341037651523948], [0.018907461315393448, 0.00424712710082531, 0.04567468538880348, 0.029030809178948402, 0.4635758101940155, 0.050079699605703354, 0.22606663405895233, 0.1492411196231842, 0.005605021491646767, 0.002167824422940612, 0.0025591589510440826, 0.0015905917389318347, 0.00020235453848727047, 0.000373012968339026, 0.00015171751147136092, 0.00033987968345172703, 7.218174869194627e-05, 0.00011494485079310834], [0.0002963423612527549, 0.0005643963813781738, 0.0016610710881650448, 0.006390635389834642, 0.01668689213693142, 0.01978261023759842, 0.018509605899453163, 0.9239943027496338, 0.007281801663339138, 0.003001447068527341, 0.000943001767154783, 0.0005456067738123238, 0.00022045431251171976, 5.743305791838793e-06, 4.6244560508057475e-05, 3.08723101625219e-05, 1.8640459529706277e-05, 2.034897443081718e-05], [0.27434247732162476, 0.00045882523409090936, 0.0008985216845758259, 0.00266679166816175, 0.01135959755629301, 0.031388089060783386, 0.11325512826442719, 0.38729169964790344, 0.13897565007209778, 0.02688005194067955, 0.006851546932011843, 0.0033937273547053337, 0.002021052874624729, 0.00011175405961694196, 1.3833945558872074e-05, 3.0440674890996888e-05, 3.4984412195626646e-05, 2.590826443338301e-05], [0.023477263748645782, 0.00037430680822581053, 0.00014326345990411937, 0.0002354988391743973, 0.0009691194863989949, 0.004532764665782452, 0.011419464834034443, 0.1708356738090515, 0.06546446681022644, 0.5147976279258728, 0.13791599869728088, 0.0389627180993557, 0.023836813867092133, 0.00308969896286726, 0.002584378933534026, 0.000244386144913733, 0.0004974809708073735, 0.0006191160064190626], [0.0007267193868756294, 0.0002393363247392699, 0.00020620299619622529, 0.0005228925147093832, 0.0002165981859434396, 0.0008768538828007877, 0.008308261632919312, 0.11612318456172943, 0.12403924763202667, 0.015605834312736988, 0.6339055299758911, 0.037174973636865616, 0.04916075989603996, 0.007169785443693399, 0.002405398292466998, 0.0022997441701591015, 0.00012879350106231868, 0.0008899266249500215], [0.0017701962497085333, 3.706294228322804e-05, 0.00012280649389140308, 5.48694260942284e-05, 0.00017600783030502498, 4.233516301610507e-05, 0.0005058334209024906, 0.012356718070805073, 0.007511744741350412, 0.029945967718958855, 0.00828047189861536, 0.863004207611084, 0.06778667122125626, 0.0036096901167184114, 0.002350287511944771, 0.001110549783334136, 0.0011270147515460849, 0.0002075050288112834], [0.00037452508695423603, 0.0001579662348376587, 1.8933067622128874e-05, 0.00040703194099478424, 0.00011435012856964022, 0.0001672261714702472, 0.00031223997939378023, 0.00719187268987298, 0.019344788044691086, 0.013400343246757984, 0.7764423489570618, 0.01204012893140316, 0.1032591164112091, 0.02098708599805832, 0.03020428866147995, 0.002734420821070671, 0.00707990350201726, 0.005763264838606119], [0.002589924493804574, 0.00020565724116750062, 0.00010695733362808824, 3.0388764571398497e-05, 0.00018723912944551557, 0.00015375718066934496, 0.00033029550104402006, 0.0008303066133521497, 0.0034576337784528732, 0.020858483389019966, 0.15963955223560333, 0.11430051922798157, 0.029671013355255127, 0.5439012050628662, 0.0749802365899086, 0.018238453194499016, 0.009103307500481606, 0.02141520567238331], [0.0354035347700119, 0.00018270361761096865, 0.00251680426299572, 0.00010463836952112615, 0.00012489460641518235, 0.00038483034586533904, 4.7625781007809564e-05, 0.0007004149374552071, 0.00014328034012578428, 0.005648400634527206, 0.005186606664210558, 0.023618601262569427, 0.2746005356311798, 0.10591736435890198, 0.2727357745170593, 0.21023234724998474, 0.02260063961148262, 0.03985099494457245], [0.001416415674611926, 0.0005408442812040448, 0.00023756561859045178, 0.000418489653384313, 0.0002378123317612335, 4.372455441625789e-05, 0.00016676033555995673, 0.000606729241553694, 0.0009922058088704944, 0.0005242967163212597, 0.006878681015223265, 0.03964662179350853, 0.10336582362651825, 0.06236257404088974, 0.051639433950185776, 0.18583132326602936, 0.18392065167427063, 0.3611701428890228], [0.004984826315194368, 0.0001338128058705479, 0.0005115257808938622, 7.47240919736214e-05, 0.00036387654836289585, 0.00020267396757844836, 2.368819696130231e-05, 0.00010058525367639959, 3.782310523092747e-05, 0.0014698312152177095, 0.0012032779632136226, 0.0122650396078825, 0.01529821939766407, 0.11055608838796616, 0.1452571451663971, 0.04979991540312767, 0.3968839645385742, 0.2608329951763153], [0.00017883063992485404, 0.0001696109538897872, 3.289520464022644e-05, 6.408420449588448e-05, 3.625653698691167e-05, 6.133173155831173e-05, 1.6641613910906017e-05, 3.129705510218628e-05, 6.887030758662149e-05, 6.156655581435189e-05, 0.00045241002226248384, 0.00021264306269586086, 0.0018295071786269546, 0.0026250139344483614, 0.015094802714884281, 0.031096668913960457, 0.01421293057501316, 0.933754563331604], [0.15466877818107605, 2.7730777219403535e-05, 0.0005085169104859233, 8.630342927062884e-05, 0.00012327017611823976, 2.1915167963015847e-05, 0.00010396597645012662, 9.898342250380665e-05, 4.928952330374159e-05, 0.00011167822958668694, 0.00019544702081475407, 0.0011651929235085845, 0.000801951508037746, 0.0033772087190300226, 0.02185829170048237, 0.02499343268573284, 0.20373255014419556, 0.5880754590034485]], [[0.014156188815832138, 0.04022469371557236, 0.019585156813263893, 0.13647012412548065, 0.029879065230488777, 0.011258168146014214, 0.07077058404684067, 0.21020589768886566, 0.002809622325003147, 0.037792108952999115, 0.008052063174545765, 0.0564674511551857, 0.007444851566106081, 0.008183589205145836, 0.05455368384718895, 0.002281598513945937, 0.07691226899623871, 0.21295291185379028], [0.0042730215936899185, 0.01212773472070694, 0.02796167880296707, 0.4831398129463196, 0.08700680732727051, 0.037955716252326965, 0.1816108524799347, 0.10003529489040375, 0.0032273612450808287, 0.005190580151975155, 0.01350369118154049, 0.006712943781167269, 0.005173283629119396, 0.0029580476693809032, 0.010805773548781872, 0.0024915686808526516, 0.012353750877082348, 0.0034720192197710276], [0.2843865156173706, 0.03365640342235565, 0.053973082453012466, 0.04539048299193382, 0.11225423961877823, 0.15507248044013977, 0.024918485432863235, 0.21957728266716003, 0.0063425893895328045, 0.0031902247574180365, 0.006306638475507498, 0.009092899970710278, 0.012172590009868145, 0.003671427024528384, 0.0044580730609595776, 0.008409091271460056, 0.002303245011717081, 0.014824282377958298], [0.013972287066280842, 0.05960482731461525, 0.02840246446430683, 0.17125006020069122, 0.11940561234951019, 0.0768502950668335, 0.17140789330005646, 0.13664555549621582, 0.013325235806405544, 0.007054883521050215, 0.09380011260509491, 0.022440893575549126, 0.03294505551457405, 0.005286387633532286, 0.015647051855921745, 0.009779240004718304, 0.01535892579704523, 0.006823214702308178], [0.1460062712430954, 0.028230370953679085, 0.041519928723573685, 0.042040903121232986, 0.04159896820783615, 0.0847703069448471, 0.09553700685501099, 0.3928827941417694, 0.009874922223389149, 0.007805925328284502, 0.020922666415572166, 0.014784073457121849, 0.014724423177540302, 0.0026528947055339813, 0.02220616675913334, 0.004380646627396345, 0.008780647069215775, 0.02128102071583271], [0.4837856888771057, 0.02325471118092537, 0.030939746648073196, 0.005176221486181021, 0.09145151823759079, 0.05004195496439934, 0.03342705965042114, 0.22584687173366547, 0.005515805911272764, 0.002825190080329776, 0.003626958467066288, 0.005634514149278402, 0.006953825242817402, 0.002125882776454091, 0.0031510298140347004, 0.0063883219845592976, 0.004468906205147505, 0.01538571435958147], [0.0006122568738646805, 0.05773477628827095, 0.011623864062130451, 0.37325891852378845, 0.06629151850938797, 0.02498384565114975, 0.29592034220695496, 0.1045428216457367, 0.0014765680534765124, 0.011600317433476448, 0.01441959198564291, 0.007582311052829027, 0.0039217788726091385, 0.000604353379458189, 0.005843065679073334, 0.0008295975276269019, 0.016213372349739075, 0.002540766028687358], [0.010062345303595066, 0.048946313560009, 0.0157312024384737, 0.00705810496583581, 0.034660592675209045, 0.013886150903999805, 0.08072858303785324, 0.7753523588180542, 0.00017106370069086552, 0.0003571068518795073, 0.00017073300841730088, 0.0008768695406615734, 6.595174636458978e-05, 0.0002369138819631189, 7.292546069948003e-05, 3.386726893950254e-05, 0.001847547828219831, 0.009741382673382759], [0.04309425130486488, 0.029747407883405685, 0.007008333690464497, 0.026733439415693283, 0.015417261980473995, 0.022728441283106804, 0.05191929265856743, 0.011945100501179695, 0.018466562032699585, 0.22427010536193848, 0.09953230619430542, 0.11423886567354202, 0.07339755445718765, 0.010225998237729073, 0.0715387761592865, 0.018147679045796394, 0.13854385912418365, 0.02304474264383316], [0.0651945024728775, 0.01147846132516861, 0.006363662425428629, 0.0459127202630043, 0.029433058574795723, 0.013399341143667698, 0.02428734116256237, 0.006515937391668558, 0.07762352377176285, 0.044080596417188644, 0.12634320557117462, 0.11853114515542984, 0.15112245082855225, 0.013925275765359402, 0.05408529192209244, 0.043062906712293625, 0.1330532431602478, 0.03558726981282234], [0.26268747448921204, 0.014668978750705719, 0.0107759153470397, 0.011197706684470177, 0.02411356382071972, 0.011785942129790783, 0.027301084250211716, 0.020757634192705154, 0.1030382513999939, 0.07175714522600174, 0.04465148225426674, 0.07388731837272644, 0.06242046505212784, 0.005216200836002827, 0.03159135952591896, 0.016403310000896454, 0.1269521266222, 0.08079389482736588], [0.31569528579711914, 0.0235137902200222, 0.006217306479811668, 0.01687891222536564, 0.01991911232471466, 0.01294030249118805, 0.015113391913473606, 0.01782402954995632, 0.05809250846505165, 0.1721380352973938, 0.06369657069444656, 0.03539353981614113, 0.06288502365350723, 0.007588313892483711, 0.0444774255156517, 0.013067690655589104, 0.05769142881035805, 0.05686718970537186], [0.30213743448257446, 0.0059951855801045895, 0.010957793332636356, 0.005861843470484018, 0.027768120169639587, 0.02261178009212017, 0.00909474864602089, 0.010114585049450397, 0.054972294718027115, 0.05813188478350639, 0.0765443742275238, 0.07104641199111938, 0.13566763699054718, 0.028290586546063423, 0.038169581443071365, 0.05242553725838661, 0.04542379453778267, 0.04478640854358673], [0.1118953675031662, 0.00148783961776644, 0.038507841527462006, 0.00422741798684001, 0.0057322862558066845, 0.09823064506053925, 0.0028139599598944187, 0.0030042147263884544, 0.05016901716589928, 0.007793492637574673, 0.014950302429497242, 0.024984441697597504, 0.24505767226219177, 0.04162048175930977, 0.013547303155064583, 0.3020901381969452, 0.016424989327788353, 0.01746266335248947], [0.09346400946378708, 0.02050267904996872, 0.006681537255644798, 0.032634202390909195, 0.03207917511463165, 0.013815727084875107, 0.013357640244066715, 0.021945426240563393, 0.12904037535190582, 0.10460545122623444, 0.07220547646284103, 0.109382763504982, 0.08125120401382446, 0.016860278323292732, 0.05324944853782654, 0.03042028285562992, 0.06248767301440239, 0.1060166284441948], [0.212510347366333, 0.0065530212596058846, 0.05337003991007805, 0.0014332195278257132, 0.007067603059113026, 0.07055573165416718, 0.004532868508249521, 0.004356249701231718, 0.039808642119169235, 0.05700171738862991, 0.01812260039150715, 0.027309106662869453, 0.14745989441871643, 0.15437881648540497, 0.013916078954935074, 0.1315579116344452, 0.02540753223001957, 0.02465852163732052], [0.0012770594330504537, 0.012641623616218567, 0.004240383859723806, 0.11038608103990555, 0.016690539196133614, 0.00651003560051322, 0.05578870698809624, 0.008996913209557533, 0.018737517297267914, 0.12822802364826202, 0.14567086100578308, 0.10221986472606659, 0.050512608140707016, 0.006367901805788279, 0.09321959316730499, 0.011814625933766365, 0.19661414623260498, 0.03008347563445568], [0.10617191344499588, 0.024962224066257477, 0.018805650994181633, 0.005283853970468044, 0.021679449826478958, 0.010703664273023605, 0.030382737517356873, 0.12004567682743073, 0.01176692359149456, 0.019496243447065353, 0.008729029446840286, 0.061539340764284134, 0.005405704490840435, 0.013714701868593693, 0.007151290308684111, 0.0031444530468434095, 0.0959378033876419, 0.4350792467594147]], [[0.21946601569652557, 0.08856115490198135, 0.012010741978883743, 0.013350749388337135, 0.011092464439570904, 0.009863588027656078, 0.06358642131090164, 0.0404152050614357, 0.0087177949026227, 0.0698448121547699, 0.029335299506783485, 0.012332087382674217, 0.02470947615802288, 0.014105014503002167, 0.2758740186691284, 0.017426954582333565, 0.05463990941643715, 0.03466836363077164], [0.002435796894133091, 0.025673875585198402, 0.060756705701351166, 0.22118322551250458, 0.23809413611888885, 0.13137942552566528, 0.06800118833780289, 0.20452582836151123, 0.004941228311508894, 0.0046875555999577045, 0.004784625954926014, 0.003779386170208454, 0.008474580943584442, 0.007194580044597387, 0.0012386038433760405, 0.006653070915490389, 0.002389595378190279, 0.0038066005799919367], [0.10727567970752716, 0.026384316384792328, 0.06942065805196762, 0.02008773572742939, 0.24128341674804688, 0.22347086668014526, 0.08817102760076523, 0.1482768952846527, 0.012862159870564938, 0.0031748879700899124, 0.0021978344302624464, 0.0019081118516623974, 0.004465782083570957, 0.022985579445958138, 0.0028152018785476685, 0.020319534465670586, 0.002257311251014471, 0.002642921870574355], [0.005761650390923023, 0.028537876904010773, 0.07028724253177643, 0.03717369586229324, 0.33596161007881165, 0.27433890104293823, 0.035044603049755096, 0.13169246912002563, 0.021777791902422905, 0.004137994255870581, 0.011359937489032745, 0.01651638001203537, 0.008352049626410007, 0.004542742855846882, 0.001618188456632197, 0.007378450129181147, 0.0017003410030156374, 0.003818040480837226], [0.030218033120036125, 0.018204476684331894, 0.13773788511753082, 0.03585006669163704, 0.1645459532737732, 0.3608922064304352, 0.03456888347864151, 0.12772831320762634, 0.013721364550292492, 0.005208119750022888, 0.029667165130376816, 0.005050454288721085, 0.018782811239361763, 0.002027111826464534, 0.0033382673282176256, 0.006740722339600325, 0.0018186992965638638, 0.0038994483184069395], [0.042152177542448044, 0.014167151413857937, 0.1732124239206314, 0.053792357444763184, 0.2828406095504761, 0.1854012906551361, 0.03246814012527466, 0.10045237094163895, 0.02553054876625538, 0.005061235278844833, 0.009855248034000397, 0.0026000957004725933, 0.01245239470154047, 0.03368663787841797, 0.0017071603797376156, 0.02122615836560726, 0.0012948625953868032, 0.0020991584751755], [0.0037649807054549456, 0.15148073434829712, 0.022682327777147293, 0.04549413174390793, 0.0939512848854065, 0.06088079512119293, 0.27632027864456177, 0.2672090530395508, 0.01053064689040184, 0.015500797890126705, 0.005583089776337147, 0.006481398828327656, 0.006552840583026409, 0.003003557212650776, 0.0077230180613696575, 0.003319422947242856, 0.01301291212439537, 0.006508696358650923], [0.35403335094451904, 0.06782686710357666, 0.048055004328489304, 0.041709743440151215, 0.05691517889499664, 0.06835395842790604, 0.2052917331457138, 0.06370219588279724, 0.008969194255769253, 0.015131470747292042, 0.013556773774325848, 0.004542376380413771, 0.01049929391592741, 0.0032242632005363703, 0.023328816518187523, 0.002469682600349188, 0.01006774790585041, 0.0023222612217068672], [0.0221893060952425, 0.0015277606435120106, 0.014765608124434948, 0.004584575537592173, 0.020156988874077797, 0.08128798753023148, 0.00263901986181736, 0.012848323211073875, 0.13028264045715332, 0.019020959734916687, 0.0465715117752552, 0.20169100165367126, 0.26902464032173157, 0.029849044978618622, 0.010912052355706692, 0.07777855545282364, 0.012530348263680935, 0.042339663952589035], [0.003137376857921481, 0.0025783570017665625, 0.013865460641682148, 0.007924074307084084, 0.02588041126728058, 0.03635750338435173, 0.003778165439143777, 0.010549071244895458, 0.14647674560546875, 0.01882418990135193, 0.046672675758600235, 0.09865592420101166, 0.1917659044265747, 0.13460831344127655, 0.017007766291499138, 0.18685293197631836, 0.01510321069508791, 0.03996185213327408], [0.001882507698610425, 0.001277439994737506, 0.010148690082132816, 0.0033443495631217957, 0.033100854605436325, 0.030836042016744614, 0.0019311498617753386, 0.0056057278998196125, 0.12626385688781738, 0.011857184581458569, 0.012181880883872509, 0.4115898609161377, 0.20442157983779907, 0.035104960203170776, 0.013035877607762814, 0.05853283405303955, 0.009984560310840607, 0.028900666162371635], [0.012753725051879883, 0.0005436936626210809, 0.007168706506490707, 0.00292002409696579, 0.0770057663321495, 0.03381152078509331, 0.0021276057232171297, 0.015130423940718174, 0.23739777505397797, 0.013365489430725574, 0.06986257433891296, 0.028561506420373917, 0.13488057255744934, 0.1005018949508667, 0.019200028851628304, 0.13489960134029388, 0.014688007533550262, 0.09518106281757355], [0.005261726211756468, 0.0012325874995440245, 0.023335199803113937, 0.0038605998270213604, 0.023067856207489967, 0.048232849687337875, 0.002491443883627653, 0.008635325357317924, 0.0888381078839302, 0.02011164464056492, 0.056381940841674805, 0.06133395433425903, 0.051242221146821976, 0.1638234406709671, 0.021654509007930756, 0.34457144141197205, 0.0176461860537529, 0.05827908590435982], [0.011151940561830997, 0.005105949472635984, 0.01685149408876896, 0.0027316769119352102, 0.0068437810987234116, 0.025159114971756935, 0.004855629522353411, 0.008087368682026863, 0.04793788865208626, 0.0280117429792881, 0.0449238084256649, 0.12069639563560486, 0.1957230269908905, 0.04740982875227928, 0.10052437335252762, 0.14674782752990723, 0.06867212802171707, 0.11856600642204285], [0.0018108169315382838, 0.0034382068552076817, 0.008704347535967827, 0.00401974655687809, 0.01840207912027836, 0.01620546355843544, 0.003443618770688772, 0.008282395079731941, 0.1020713523030281, 0.033422574400901794, 0.04625234752893448, 0.07830662280321121, 0.1665095090866089, 0.09037067741155624, 0.047019731253385544, 0.14555591344833374, 0.05484131723642349, 0.17134329676628113], [0.013460817746818066, 0.0025176263879984617, 0.01268178503960371, 0.0023254603147506714, 0.009359908290207386, 0.024501174688339233, 0.0034806602634489536, 0.00521621061488986, 0.05964691564440727, 0.02362631820142269, 0.027802137657999992, 0.0806325152516365, 0.10373253375291824, 0.34939703345298767, 0.0559384785592556, 0.10358015447854996, 0.04733164981007576, 0.0747685357928276], [0.002271614270284772, 0.00803297571837902, 0.0018527975771576166, 0.0023681907914578915, 0.00437403516843915, 0.003744883695617318, 0.011624662205576897, 0.01005508191883564, 0.03572703152894974, 0.06168544292449951, 0.03254875913262367, 0.045768871903419495, 0.06538610905408859, 0.03315340727567673, 0.12212149053812027, 0.05615752562880516, 0.2534802258014679, 0.24964690208435059], [0.15224075317382812, 0.0013417399022728205, 0.00203239475376904, 0.001342899166047573, 0.0010818406008183956, 0.0019087573746219277, 0.0032237740233540535, 0.0008614485850557685, 0.022166233509778976, 0.040748633444309235, 0.051896221935749054, 0.020042236894369125, 0.07664889842271805, 0.02747981622815132, 0.29042330384254456, 0.03469877317547798, 0.19361092150211334, 0.07825132459402084]], [[0.7077793478965759, 0.0006648007547482848, 0.025815125554800034, 0.00015044397150631994, 0.0007317618583329022, 0.004263428971171379, 0.020709795877337456, 0.11055499315261841, 0.005017583258450031, 0.00040728875319473445, 0.0003938735171686858, 0.0024819837417453527, 0.0018114898120984435, 0.0012368977768346667, 0.0003705645212903619, 0.00043696645298041403, 0.02534732036292553, 0.09182626754045486], [0.02338850125670433, 0.08509968221187592, 0.07564380019903183, 0.04830297455191612, 0.03485385701060295, 0.06675482541322708, 0.01908325031399727, 0.39064720273017883, 0.056591879576444626, 0.02612658217549324, 0.01833527907729149, 0.015345393680036068, 0.05440019816160202, 0.005292133893817663, 0.011666572652757168, 0.008840113878250122, 0.00829786341637373, 0.05132986232638359], [0.0831575095653534, 0.03701549023389816, 0.07686004042625427, 0.05041298270225525, 0.061522290110588074, 0.08659391105175018, 0.14546823501586914, 0.21837124228477478, 0.03143163397908211, 0.016772296279668808, 0.014360916800796986, 0.01184365339577198, 0.035359788686037064, 0.016307830810546875, 0.00664666760712862, 0.01933354325592518, 0.026315823197364807, 0.062226150184869766], [0.007654293440282345, 0.025044064968824387, 0.1868419498205185, 0.021921660751104355, 0.09870078414678574, 0.18761616945266724, 0.03765121474862099, 0.12223558872938156, 0.0186839047819376, 0.04257645457983017, 0.03365021571516991, 0.008727542124688625, 0.06390038132667542, 0.056297652423381805, 0.018607696518301964, 0.04391532391309738, 0.005635862238705158, 0.02033919282257557], [0.022007441148161888, 0.039059776812791824, 0.05904122442007065, 0.05559809133410454, 0.06523675471544266, 0.13959558308124542, 0.04326057806611061, 0.3214740455150604, 0.028628919273614883, 0.01370926108211279, 0.04573766887187958, 0.04121742770075798, 0.02927415445446968, 0.013703842647373676, 0.012496290728449821, 0.03472454473376274, 0.004808067809790373, 0.030426356941461563], [0.017447534948587418, 0.0068053570576012135, 0.09016481041908264, 0.03961864486336708, 0.12412192672491074, 0.25140616297721863, 0.046806976199150085, 0.27470824122428894, 0.019060594961047173, 0.011820350773632526, 0.011752610094845295, 0.012710998766124249, 0.019261052832007408, 0.02651279605925083, 0.004218890331685543, 0.028904540464282036, 0.00607572915032506, 0.008602878078818321], [0.009815232828259468, 0.12238231301307678, 0.0187850184738636, 0.04659906402230263, 0.015758929774165154, 0.005401668604463339, 0.014027934521436691, 0.6478721499443054, 0.03178137540817261, 0.015125865116715431, 0.003127653617411852, 0.006542736664414406, 0.003872025990858674, 0.001463530701585114, 0.005982274189591408, 0.0013211013283580542, 0.0024857998359948397, 0.047655243426561356], [0.030146399512887, 0.019113615155220032, 0.03416981175541878, 0.005056722555309534, 0.008286770433187485, 0.024956952780485153, 0.1271490901708603, 0.6113470196723938, 0.03805966302752495, 0.006384373176842928, 0.006786706391721964, 0.005188993643969297, 0.003318492555990815, 0.0025016029831022024, 0.0013636176008731127, 0.0006391305360011756, 0.008312058635056019, 0.06721893697977066], [0.01515678409487009, 0.01404679287225008, 0.011568723246455193, 0.010919531807303429, 0.00822002999484539, 0.03138677403330803, 0.011193682439625263, 0.4304543733596802, 0.04732296243309975, 0.05843902751803398, 0.04373849183320999, 0.055660270154476166, 0.05206875503063202, 0.013294978067278862, 0.025973593816161156, 0.011212141253054142, 0.012157744728028774, 0.1471853405237198], [0.0034248100128024817, 0.004406367428600788, 0.004670602735131979, 0.005516851786524057, 0.007998302578926086, 0.013578062877058983, 0.008141802623867989, 0.16400878131389618, 0.09777897596359253, 0.04598277807235718, 0.08122365921735764, 0.028961552307009697, 0.3209607005119324, 0.01899355836212635, 0.01550277229398489, 0.07895492762327194, 0.00903400406241417, 0.09086140245199203], [0.0034939353354275227, 0.0012089189840480685, 0.005684324540197849, 0.004325277637690306, 0.017213385552167892, 0.01814073882997036, 0.004033553414046764, 0.04532493278384209, 0.07022865116596222, 0.12242914736270905, 0.12386970967054367, 0.09598880261182785, 0.30130237340927124, 0.03690016642212868, 0.04469889774918556, 0.033223483711481094, 0.011513198725879192, 0.06042056158185005], [0.005109789315611124, 0.00430738041177392, 0.005589281674474478, 0.0020348282996565104, 0.00560182798653841, 0.016830885782837868, 0.009449761360883713, 0.052400171756744385, 0.14402258396148682, 0.0744396299123764, 0.2864311635494232, 0.043252523988485336, 0.07599972933530807, 0.07895715534687042, 0.027471134439110756, 0.0342579111456871, 0.013441819697618484, 0.12040247023105621], [0.004786254372447729, 0.0011109876213595271, 0.015174857340753078, 0.00428352877497673, 0.008514356799423695, 0.03548552468419075, 0.005666657816618681, 0.02592962235212326, 0.04369630292057991, 0.04253249615430832, 0.1057707667350769, 0.027991607785224915, 0.08742981404066086, 0.34679433703422546, 0.042461954057216644, 0.1714501827955246, 0.009672248736023903, 0.021248457953333855], [0.021113647148013115, 0.00027886926545761526, 0.01817227527499199, 0.0010561201488599181, 0.000489545171149075, 0.016057340428233147, 0.0005454684142023325, 0.009149852208793163, 0.024371318519115448, 0.012732981704175472, 0.006170892622321844, 0.008785465732216835, 0.42877256870269775, 0.02231166511774063, 0.005702458322048187, 0.38552746176719666, 0.005242460407316685, 0.03351958841085434], [0.0019749097991734743, 0.005136460997164249, 0.0024013493675738573, 0.005215476732701063, 0.011676783673465252, 0.006047931499779224, 0.003211778122931719, 0.017981432378292084, 0.0578061044216156, 0.03877407684922218, 0.03492146357893944, 0.25281137228012085, 0.2021636664867401, 0.03398710861802101, 0.03129474073648453, 0.057723503559827805, 0.029886985197663307, 0.2069849818944931], [0.03833044692873955, 0.0007006371160969138, 0.04050600901246071, 0.0027185017243027687, 0.0021553849801421165, 0.01782955415546894, 0.002635594690218568, 0.013623706996440887, 0.009059839881956577, 0.01957908272743225, 0.014958559535443783, 0.007986410520970821, 0.056173279881477356, 0.5408892631530762, 0.0374830923974514, 0.12467329949140549, 0.014251966960728168, 0.05644535273313522], [0.00481925904750824, 0.016629857942461967, 0.0017080859979614615, 0.007767789997160435, 0.0009394151857122779, 0.0002474330540280789, 0.0016963224625214934, 0.053732018917798996, 0.024032210931181908, 0.016346745193004608, 0.009945567697286606, 0.05350375920534134, 0.012363762594759464, 0.011212184093892574, 0.056953418999910355, 0.03670945391058922, 0.014209520071744919, 0.6771831512451172], [0.011940392665565014, 0.0014180492144078016, 0.002723398618400097, 0.0007338170544244349, 0.0008363890810869634, 0.0011676331050693989, 0.0024671878200024366, 0.03433897718787193, 0.01754594035446644, 0.007262146566063166, 0.004045225214213133, 0.026217596605420113, 0.016435233876109123, 0.008898379281163216, 0.01009346917271614, 0.007350347936153412, 0.16453206539154053, 0.6819937825202942]], [[0.02056620642542839, 0.0388345867395401, 0.036727506667375565, 0.0339152030646801, 0.03582252934575081, 0.020460279658436775, 0.10548464953899384, 0.023365842178463936, 0.037649016827344894, 0.08348849415779114, 0.04835808649659157, 0.040050044655799866, 0.027116427198052406, 0.04393646866083145, 0.12963198125362396, 0.056981414556503296, 0.1748104691505432, 0.04280082881450653], [0.1346444934606552, 0.1990831047296524, 0.10686486214399338, 0.11429385095834732, 0.08052102476358414, 0.1252259910106659, 0.06229378283023834, 0.172738716006279, 0.00030081940349191427, 0.0006270823068916798, 0.0006362574058584869, 0.0005713707068935037, 0.00041421689093112946, 0.00031813886016607285, 0.000327212706906721, 0.0004605437279678881, 0.0002808474819175899, 0.0003976794832851738], [0.3769966959953308, 0.08395059406757355, 0.04210367053747177, 0.08571671694517136, 0.0647554025053978, 0.043784450739622116, 0.13512001931667328, 0.16471560299396515, 0.00013817253056913614, 0.0001714686950435862, 0.0004897170583717525, 0.00019662002159748226, 0.0002297434548381716, 0.0004139683151151985, 0.00012079549196641892, 0.00043752152123488486, 0.0003943619958590716, 0.00026453673490323126], [0.10505424439907074, 0.13463732600212097, 0.1370093822479248, 0.13060390949249268, 0.06920669972896576, 0.10950202494859695, 0.06299512833356857, 0.24259334802627563, 0.0005324255325831473, 0.0007617255323566496, 0.0026742536574602127, 0.0007595870411023498, 0.0011459559900686145, 0.0006085296045057476, 0.0002869082672987133, 0.0008554139640182257, 0.0002889327588491142, 0.000484228425193578], [0.24592812359333038, 0.0968492403626442, 0.08172430098056793, 0.08929912000894547, 0.06265892833471298, 0.044100288301706314, 0.05875055491924286, 0.3151676058769226, 0.0004526495758909732, 0.0004970371373929083, 0.0006478019058704376, 0.0006638208869844675, 0.0006293926853686571, 0.00029161846032366157, 0.00042326003313064575, 0.0007516934419982135, 0.00028733632643707097, 0.0008772168075665832], [0.45405909419059753, 0.0634516179561615, 0.07555964589118958, 0.06499649584293365, 0.06882763653993607, 0.05632257089018822, 0.06202968955039978, 0.15163233876228333, 0.0002361312072025612, 0.00026763961068354547, 0.0005435108905658126, 0.00037932934355922043, 0.0003551747358869761, 0.0001551267778268084, 0.00018542000907473266, 0.00046772201312705874, 0.00022705746232531965, 0.0003037748683709651], [0.12339003384113312, 0.10643905401229858, 0.1128334254026413, 0.07866575568914413, 0.05971717834472656, 0.04031461104750633, 0.1309712827205658, 0.3423880338668823, 0.0002596908889245242, 0.000600816507358104, 0.00048162779421545565, 0.00044646550668403506, 0.0004199787217658013, 0.0004898631596006453, 0.000532814534381032, 0.0003866057959385216, 0.0007682186551392078, 0.0008946165908128023], [0.11945034563541412, 0.1424870789051056, 0.05341934785246849, 0.13542789220809937, 0.08156611025333405, 0.046619489789009094, 0.1136908084154129, 0.3018627166748047, 0.00031509847030974925, 0.0005572317750193179, 0.0004095679323654622, 0.0006457698182202876, 0.0003789298643823713, 0.000280282722087577, 0.00043254951015114784, 0.0003371487255208194, 0.0007222243002615869, 0.001397443818859756], [0.0001013238652376458, 0.00028916061273775995, 0.00023531782790087163, 0.0006783176795579493, 0.0005219492595642805, 0.00044896570034325123, 0.0002864368143491447, 0.00011966643069172278, 0.1289195418357849, 0.09859518706798553, 0.10640739649534225, 0.1495659351348877, 0.06085057556629181, 0.0639079138636589, 0.09707357734441757, 0.14183445274829865, 0.08797048777341843, 0.062193792313337326], [6.038322317181155e-05, 0.000444968871306628, 0.00027373895864002407, 0.0009505120106041431, 0.00048341305227950215, 0.00027077257982455194, 0.0005076935049146414, 0.0003857035480905324, 0.04629660025238991, 0.17760241031646729, 0.09650543332099915, 0.0915464535355568, 0.08332888036966324, 0.03245587274432182, 0.0810011550784111, 0.07445527613162994, 0.15103238821029663, 0.16239838302135468], [0.00011807872942881659, 0.00016559980576857924, 0.0003231587470509112, 0.001325486577115953, 0.0004167377483099699, 0.00025740169803611934, 0.0003097614098805934, 0.000449509039754048, 0.09572259336709976, 0.12464798986911774, 0.18659977614879608, 0.10366477072238922, 0.07555864006280899, 0.02275743894279003, 0.06825381517410278, 0.08647406101226807, 0.0750407725572586, 0.15791435539722443], [7.31126347091049e-05, 0.00040846012416295707, 0.0005582240410149097, 0.0008965814486145973, 0.0005822610692121089, 0.0004967350978404284, 0.0004397992743179202, 0.0004691999638453126, 0.08116444200277328, 0.15216758847236633, 0.08746707439422607, 0.10952652990818024, 0.09274372458457947, 0.07718652486801147, 0.07650257647037506, 0.083717480301857, 0.09999917447566986, 0.13560068607330322], [0.00016846568905748427, 0.00026553921634331346, 0.0005839367513544858, 0.0014425921253859997, 0.0006236120825633407, 0.0006667371490038931, 0.0004276481340639293, 0.0004199615796096623, 0.06518357992172241, 0.10698236525058746, 0.09798461943864822, 0.12240567058324814, 0.08249156177043915, 0.11817311495542526, 0.05152129381895065, 0.16440562903881073, 0.07391060143709183, 0.1123429536819458], [0.0005688484525308013, 0.0006461699958890676, 0.0019388465443626046, 0.00181498471647501, 0.0009647578117437661, 0.0025343578308820724, 0.0008609418873675168, 0.0007190324831753969, 0.08886639028787613, 0.07530073076486588, 0.08395237475633621, 0.06265441328287125, 0.15155768394470215, 0.12304624915122986, 0.02724629081785679, 0.21040281653404236, 0.06505189090967178, 0.10187315940856934], [6.735686474712566e-05, 0.0003264270781073719, 0.00042683351784944534, 0.0007302511367015541, 0.0003635831526480615, 0.0004266735923010856, 0.00048547357437200844, 0.0003352380299475044, 0.09031558781862259, 0.13053448498249054, 0.06933029741048813, 0.09310365468263626, 0.08760722726583481, 0.08034700155258179, 0.08227086812257767, 0.09945027530193329, 0.12915639579296112, 0.13472241163253784], [0.00031151180155575275, 0.0004667744506150484, 0.0005886050639674067, 0.0013692037900909781, 0.0005877367802895606, 0.0009267028653994203, 0.00046864827163517475, 0.0004041166394017637, 0.1397026777267456, 0.08652103692293167, 0.08314225822687149, 0.08842169493436813, 0.13995778560638428, 0.10805035382509232, 0.031117668375372887, 0.15370908379554749, 0.07116290181875229, 0.09309123456478119], [3.0295765100163408e-05, 0.0002678720629774034, 0.00044126599095761776, 0.0003755456709768623, 0.0003318021190352738, 0.00022655700740870088, 0.0005443490808829665, 0.0002996535040438175, 0.05375015735626221, 0.1431889533996582, 0.05576802417635918, 0.09939731657505035, 0.07130925357341766, 0.07818295806646347, 0.12436211109161377, 0.07282207161188126, 0.17083825170993805, 0.1278635561466217], [9.504812624072656e-06, 0.0001023414297378622, 6.876343104522675e-05, 0.00017474817286711186, 0.00014040239329915494, 7.910430576885119e-05, 0.00013459828915074468, 6.705905980197713e-05, 0.07052110880613327, 0.12836211919784546, 0.04534666985273361, 0.12361852824687958, 0.06709213554859161, 0.040042392909526825, 0.1038014218211174, 0.06631845980882645, 0.15495723485946655, 0.19916343688964844]], [[0.9700195789337158, 0.0008580813300795853, 0.0018717498751357198, 0.0005763974040746689, 0.0019344539614394307, 0.0038262850139290094, 0.00496675306931138, 0.000580561172682792, 0.0006840327405370772, 0.00034870131639763713, 0.0004513027670327574, 0.0004728724015876651, 0.003648793790489435, 0.0023270267993211746, 0.0006285731797106564, 0.0009660926298238337, 0.005196403246372938, 0.0006424961029551923], [0.014082410372793674, 0.04471450299024582, 0.019897449761629105, 0.13674600422382355, 0.11137937009334564, 0.06663018465042114, 0.24565841257572174, 0.2160404473543167, 0.013448279350996017, 0.021139677613973618, 0.036930374801158905, 0.014332127757370472, 0.004566739313304424, 0.003945161588490009, 0.007395577151328325, 0.004603146575391293, 0.026970824226737022, 0.011519329622387886], [0.08107641339302063, 0.16586150228977203, 0.03185684233903885, 0.0617898553609848, 0.10635948926210403, 0.11356557160615921, 0.016176920384168625, 0.16409049928188324, 0.049981459975242615, 0.022641241550445557, 0.015365936793386936, 0.020484140142798424, 0.013649770990014076, 0.03660242632031441, 0.02715352177619934, 0.0484282560646534, 0.0033894095104187727, 0.021526779979467392], [0.01575041003525257, 0.023165082558989525, 0.02394014224410057, 0.03906656429171562, 0.3620627522468567, 0.09344363957643509, 0.006191354710608721, 0.15845416486263275, 0.07683122158050537, 0.032627563923597336, 0.07007519900798798, 0.024022281169891357, 0.017537960782647133, 0.013864106498658657, 0.008141647092998028, 0.008738416247069836, 0.0015658519696444273, 0.024521641433238983], [0.08782869577407837, 0.04224591702222824, 0.05310908332467079, 0.03490394726395607, 0.07095352560281754, 0.39416542649269104, 0.011878740973770618, 0.09251099824905396, 0.07057419419288635, 0.008244904689490795, 0.027818938717246056, 0.036368586122989655, 0.015516509301960468, 0.007248556707054377, 0.00991786364465952, 0.02301962487399578, 0.0017447168938815594, 0.011949840933084488], [0.10432018339633942, 0.012695876881480217, 0.25966209173202515, 0.011961317621171474, 0.044086240231990814, 0.37835192680358887, 0.0027367668226361275, 0.03640657290816307, 0.06225281581282616, 0.002380517777055502, 0.008666256442666054, 0.0051878029480576515, 0.011242620646953583, 0.0365690179169178, 0.002193136140704155, 0.016632666811347008, 0.0004267009790055454, 0.004227424971759319], [0.010915194638073444, 0.04541107639670372, 0.02035568654537201, 0.028546467423439026, 0.04864875227212906, 0.036745160818099976, 0.6385228633880615, 0.043517839163541794, 0.005577698349952698, 0.0027266121469438076, 0.006282569374889135, 0.0054903654381632805, 0.00286827958188951, 0.003665380412712693, 0.007439556065946817, 0.004723019432276487, 0.0856052041053772, 0.002958339639008045], [0.2072114795446396, 0.02409360557794571, 0.015024477615952492, 0.01154197845607996, 0.018438667058944702, 0.024679556488990784, 0.5382848978042603, 0.02129044197499752, 0.0032009773422032595, 0.001751400064677, 0.003763665445148945, 0.0029827472753822803, 0.004300319589674473, 0.003045346587896347, 0.004017872270196676, 0.0028953300788998604, 0.11050541698932648, 0.002971804002299905], [0.039051689207553864, 0.004050456918776035, 0.013507927767932415, 0.00754530681297183, 0.012497014366090298, 0.03864700719714165, 0.0037188008427619934, 0.036576900631189346, 0.1772432178258896, 0.04483308270573616, 0.14466972649097443, 0.10184326767921448, 0.04846819490194321, 0.03264860063791275, 0.012519769370555878, 0.04624636843800545, 0.02055077627301216, 0.21538189053535461], [0.004100124817341566, 0.004648197442293167, 0.005038353148847818, 0.004584820009768009, 0.01256033219397068, 0.015357878990471363, 0.0010853010462597013, 0.021273724734783173, 0.1981150060892105, 0.18399189412593842, 0.0983312800526619, 0.06803997606039047, 0.07420932501554489, 0.06701964884996414, 0.03687701001763344, 0.0808037668466568, 0.006378346122801304, 0.11758504807949066], [0.0038365423679351807, 0.0011235697893425822, 0.005885755177587271, 0.006276119966059923, 0.01582239754498005, 0.04175123572349548, 0.001750968862324953, 0.041075199842453, 0.19300687313079834, 0.02269231155514717, 0.11760114133358002, 0.07372918725013733, 0.15277239680290222, 0.05504449084401131, 0.01062753051519394, 0.09328539669513702, 0.008178428746759892, 0.15554054081439972], [0.040345482528209686, 0.00453902268782258, 0.0065196543000638485, 0.004961544647812843, 0.02765006199479103, 0.03026602230966091, 0.00144700868986547, 0.03224075958132744, 0.33219048380851746, 0.031686168164014816, 0.13341854512691498, 0.05491134896874428, 0.04049593210220337, 0.03660311549901962, 0.027200935408473015, 0.05688025429844856, 0.006422737147659063, 0.13222092390060425], [0.0015983397606760263, 0.003079028567299247, 0.010411258786916733, 0.004760094918310642, 0.020164314657449722, 0.05041273683309555, 0.0010519330389797688, 0.017626669257879257, 0.2591415345668793, 0.1309189796447754, 0.06823884695768356, 0.09946803003549576, 0.029881587252020836, 0.1398739218711853, 0.0157022662460804, 0.05551992356777191, 0.0056579383090138435, 0.0864926129579544], [0.007770071737468243, 0.0024963817559182644, 0.030162755399942398, 0.007601235527545214, 0.007781951688230038, 0.024034908041357994, 0.0010557243367657065, 0.03623001277446747, 0.050789497792720795, 0.016289634630084038, 0.06822910904884338, 0.04767555370926857, 0.06359893828630447, 0.11252323538064957, 0.02847335673868656, 0.3198727071285248, 0.005739693529903889, 0.16967521607875824], [0.011186253279447556, 0.0034574673045426607, 0.004706826061010361, 0.00671941926702857, 0.016256608068943024, 0.025074047967791557, 0.005026874598115683, 0.03005567006766796, 0.09346402436494827, 0.04715467244386673, 0.09643147140741348, 0.06164153292775154, 0.12374012172222137, 0.10773654282093048, 0.020362766459584236, 0.14442813396453857, 0.02796546183526516, 0.17459213733673096], [0.035988133400678635, 0.0015623937360942364, 0.03607271984219551, 0.004737006034702063, 0.004262098111212254, 0.025015149265527725, 0.0004100348160136491, 0.018605493009090424, 0.1043463870882988, 0.016332201659679413, 0.055341508239507675, 0.0467631071805954, 0.05469796061515808, 0.26063016057014465, 0.02642122656106949, 0.15357805788516998, 0.0026773568242788315, 0.15255898237228394], [0.007563912309706211, 0.008077738806605339, 0.004432371351867914, 0.004782208241522312, 0.005953340325504541, 0.006748301908373833, 0.09467584639787674, 0.008153886534273624, 0.017574114724993706, 0.012444072403013706, 0.01969100907444954, 0.03166961297392845, 0.013924975879490376, 0.020851843059062958, 0.05681563541293144, 0.0331609807908535, 0.6025007367134094, 0.050979528576135635], [0.06372887641191483, 0.002403017831966281, 0.0022671339102089405, 0.0014673881232738495, 0.00204047211445868, 0.0025895668659359217, 0.044907957315444946, 0.0029529687017202377, 0.009100374765694141, 0.007585367187857628, 0.009074993431568146, 0.014472837559878826, 0.01811959221959114, 0.015198005363345146, 0.025973651558160782, 0.018637806177139282, 0.7147985100746155, 0.04468146711587906]], [[0.0413610078394413, 0.025531895458698273, 0.062449272722005844, 0.025360222905874252, 0.03267756104469299, 0.07439731061458588, 0.013154994696378708, 0.024567460641264915, 0.06764977425336838, 0.07143530994653702, 0.08524603396654129, 0.059026408940553665, 0.09672833979129791, 0.0782838985323906, 0.028088735416531563, 0.1105021983385086, 0.03132956847548485, 0.07221008837223053], [0.01575101725757122, 0.036276526749134064, 0.03444676101207733, 0.17455679178237915, 0.11775939166545868, 0.10098882764577866, 0.034606438130140305, 0.017568601295351982, 0.12117918580770493, 0.04697458818554878, 0.13243472576141357, 0.04314876347780228, 0.04218641668558121, 0.013344863429665565, 0.009755661711096764, 0.024537239223718643, 0.022951677441596985, 0.011532636359333992], [0.07451312988996506, 0.06196296960115433, 0.011545302346348763, 0.0978580191731453, 0.054515302181243896, 0.0763859674334526, 0.0582580603659153, 0.057643353939056396, 0.1060202419757843, 0.03282865881919861, 0.0570787712931633, 0.061781786382198334, 0.04603040963411331, 0.03795506805181503, 0.030958419665694237, 0.04579560458660126, 0.046417709439992905, 0.04245126619935036], [0.01791628822684288, 0.0583978034555912, 0.01696816273033619, 0.13682200014591217, 0.12771914899349213, 0.15517978370189667, 0.038631752133369446, 0.022055121138691902, 0.1326683759689331, 0.02965496852993965, 0.15495194494724274, 0.02165074460208416, 0.03440706059336662, 0.004851130302995443, 0.007313973736017942, 0.012421689927577972, 0.018615154549479485, 0.009774911217391491], [0.10039128363132477, 0.018085593357682228, 0.0323098748922348, 0.08236243575811386, 0.08006900548934937, 0.08787941187620163, 0.02038400061428547, 0.056845229119062424, 0.14092424511909485, 0.047177329659461975, 0.06744635850191116, 0.07262492924928665, 0.09101251512765884, 0.013375678099691868, 0.008291631937026978, 0.031680118292570114, 0.013479556888341904, 0.03566081449389458], [0.08195368945598602, 0.05853970721364021, 0.055066436529159546, 0.09230166673660278, 0.0885612890124321, 0.038306448608636856, 0.08085010945796967, 0.04910343885421753, 0.09539035707712173, 0.03561991825699806, 0.03757048398256302, 0.04367513954639435, 0.0721423551440239, 0.04047659412026405, 0.017529655247926712, 0.05211023986339569, 0.03932361677289009, 0.021478863433003426], [0.006276240106672049, 0.04200449958443642, 0.055755265057086945, 0.12592002749443054, 0.10580414533615112, 0.1849309355020523, 0.057520076632499695, 0.012714928947389126, 0.11392199993133545, 0.05778875574469566, 0.07802053540945053, 0.029583774507045746, 0.05042928084731102, 0.008594379760324955, 0.008583232760429382, 0.0216256994754076, 0.03279300779104233, 0.0077332002110779285], [0.004745782818645239, 0.11280611902475357, 0.07209917157888412, 0.06276223063468933, 0.07810988277196884, 0.042505353689193726, 0.07365302741527557, 0.0047002830542624, 0.05606960505247116, 0.06319425255060196, 0.04768901318311691, 0.06071725860238075, 0.07462245225906372, 0.04874175414443016, 0.04996512457728386, 0.05846385285258293, 0.08339830487966537, 0.0057564894668757915], [0.00517326919361949, 0.026709996163845062, 0.02406643144786358, 0.024504972621798515, 0.03265402466058731, 0.030748656019568443, 0.0293438583612442, 0.00359847629442811, 0.08914151042699814, 0.11138124763965607, 0.15067262947559357, 0.07169701159000397, 0.22373707592487335, 0.03445296734571457, 0.017874984070658684, 0.05134575068950653, 0.0642043948173523, 0.008692695759236813], [0.013818337582051754, 0.03957962244749069, 0.02994050271809101, 0.10534489899873734, 0.045682769268751144, 0.0609433650970459, 0.029782366007566452, 0.00626379856839776, 0.19185182452201843, 0.05542473867535591, 0.10272711515426636, 0.049574028700590134, 0.13790710270404816, 0.021540122106671333, 0.02639029547572136, 0.03536932170391083, 0.03908851370215416, 0.008771317079663277], [0.012441251426935196, 0.016378918662667274, 0.029129434376955032, 0.1923549771308899, 0.04493137076497078, 0.06476972252130508, 0.031049657613039017, 0.006916604936122894, 0.14469726383686066, 0.08163541555404663, 0.08986149728298187, 0.03768935427069664, 0.10839178413152695, 0.017887214198708534, 0.018150238320231438, 0.04551055282354355, 0.0453549362719059, 0.012849804013967514], [0.040239520370960236, 0.027679041028022766, 0.03432304784655571, 0.053185246884822845, 0.055830083787441254, 0.036153968423604965, 0.024741435423493385, 0.01963355951011181, 0.14631836116313934, 0.07439243793487549, 0.0912385806441307, 0.07750841975212097, 0.1922954022884369, 0.014884495176374912, 0.02143867500126362, 0.03415527939796448, 0.030748119577765465, 0.0252342838793993], [0.03798453509807587, 0.04174983501434326, 0.026269808411598206, 0.04477560520172119, 0.04458640143275261, 0.06862956285476685, 0.03149638697504997, 0.014621984213590622, 0.17684955894947052, 0.0595056377351284, 0.14831329882144928, 0.068512924015522, 0.04170726612210274, 0.04166237264871597, 0.023706618696451187, 0.055240340530872345, 0.048775818198919296, 0.025612058117985725], [0.07746365666389465, 0.02680508978664875, 0.029405364766716957, 0.03883177414536476, 0.019532714039087296, 0.05164662376046181, 0.043760113418102264, 0.07239699363708496, 0.07875723391771317, 0.06189458817243576, 0.17272977530956268, 0.0512448251247406, 0.09479855746030807, 0.0033262018114328384, 0.022180713713169098, 0.006024343892931938, 0.05949903652071953, 0.08970228582620621], [0.007860759273171425, 0.09109137952327728, 0.055738188326358795, 0.0725141242146492, 0.049418266862630844, 0.050610169768333435, 0.07914120703935623, 0.011732308194041252, 0.04964851960539818, 0.1059819832444191, 0.07788033038377762, 0.06621506065130234, 0.06746767461299896, 0.018787577748298645, 0.0372437983751297, 0.04079822823405266, 0.10123883187770844, 0.016631539911031723], [0.07959016412496567, 0.03018193133175373, 0.015238930471241474, 0.027294479310512543, 0.02104850672185421, 0.030272377654910088, 0.04153560847043991, 0.039580706506967545, 0.10034379363059998, 0.05159665644168854, 0.19884945452213287, 0.056930333375930786, 0.10392650216817856, 0.01271920558065176, 0.02524336613714695, 0.007587473839521408, 0.08257025480270386, 0.0754903256893158], [0.0028891214169561863, 0.0327761135995388, 0.04659048840403557, 0.05537763983011246, 0.05800141021609306, 0.11929281800985336, 0.051823969930410385, 0.005101901013404131, 0.10181873291730881, 0.10395711660385132, 0.14020350575447083, 0.04496835172176361, 0.08868369460105896, 0.013299727812409401, 0.012166488915681839, 0.03365498036146164, 0.0795983299612999, 0.00979564432054758], [0.0020616240799427032, 0.06975288689136505, 0.044937122613191605, 0.01921006478369236, 0.03732230141758919, 0.02202979288995266, 0.048429541289806366, 0.0013707018224522471, 0.039151761680841446, 0.08381126075983047, 0.06353797763586044, 0.07171926647424698, 0.10917554050683975, 0.06582466512918472, 0.06698926538228989, 0.0826963484287262, 0.1658305823802948, 0.006149301305413246]], [[0.626691997051239, 0.007094570901244879, 0.008814625442028046, 0.011874930933117867, 0.009022243320941925, 0.012211672961711884, 0.010055017657577991, 0.07351943105459213, 0.005482285749167204, 0.014595098793506622, 0.014182939194142818, 0.01591179519891739, 0.013364518992602825, 0.02405787818133831, 0.028487607836723328, 0.011688422411680222, 0.013304296880960464, 0.09964060038328171], [0.4011143445968628, 0.04938412085175514, 0.007712743245065212, 0.017403975129127502, 0.022787947207689285, 0.024898091331124306, 0.022284794598817825, 0.03725568577647209, 0.05762548744678497, 0.04255930334329605, 0.02558010071516037, 0.031801506876945496, 0.05449942871928215, 0.024940934032201767, 0.04533080756664276, 0.04631032422184944, 0.04571962729096413, 0.042790740728378296], [0.12879210710525513, 0.031200379133224487, 0.602861225605011, 0.024426748976111412, 0.008635839447379112, 0.021566592156887054, 0.012300312519073486, 0.014290913939476013, 0.009392378851771355, 0.008614222519099712, 0.010770623572170734, 0.011104627512395382, 0.03798162192106247, 0.0171244777739048, 0.006797113921493292, 0.025889592245221138, 0.010701660066843033, 0.017549486830830574], [0.4926165044307709, 0.036385443061590195, 0.012784443795681, 0.02696184627711773, 0.027238549664616585, 0.024793490767478943, 0.012910386547446251, 0.02890336513519287, 0.029572688043117523, 0.05156278237700462, 0.03039422631263733, 0.03298771008849144, 0.0611347034573555, 0.018208526074886322, 0.02442181296646595, 0.02562415972352028, 0.024463757872581482, 0.03903556615114212], [0.569960355758667, 0.032800909131765366, 0.009933684021234512, 0.016062481328845024, 0.0707741528749466, 0.0727560818195343, 0.01116419117897749, 0.00946906115859747, 0.01883256435394287, 0.01870182529091835, 0.02237926423549652, 0.028880849480628967, 0.0337078832089901, 0.006914185825735331, 0.016863130033016205, 0.011686818674206734, 0.01942111924290657, 0.029691409319639206], [0.386417031288147, 0.019122527912259102, 0.007321439683437347, 0.009360160678625107, 0.0248445812612772, 0.47133201360702515, 0.0027667791582643986, 0.0071074217557907104, 0.01003686897456646, 0.0035534296184778214, 0.009040233679115772, 0.01880728080868721, 0.0023761356715112925, 0.002644240390509367, 0.0028343761805444956, 0.013219444081187248, 0.002830490469932556, 0.006385589949786663], [0.6571491956710815, 0.04621743783354759, 0.007068530656397343, 0.024028355255723, 0.02637450583279133, 0.019910506904125214, 0.005551463458687067, 0.01379624754190445, 0.025569437071681023, 0.011979096569120884, 0.015370111912488937, 0.021151164546608925, 0.024795467033982277, 0.010765088722109795, 0.02362166903913021, 0.02141377329826355, 0.018260294571518898, 0.026977701112627983], [0.49870565533638, 0.019166674464941025, 0.016736336052417755, 0.018789926543831825, 0.02625402621924877, 0.01340413000434637, 0.005606402643024921, 0.02329111471772194, 0.009915006347000599, 0.011692887172102928, 0.014074670150876045, 0.020669227465987206, 0.009902887977659702, 0.009850664995610714, 0.007343071512877941, 0.010096685960888863, 0.01476783026009798, 0.2697327435016632], [0.16462591290473938, 0.0755755752325058, 0.00946720875799656, 0.024627896025776863, 0.03631897643208504, 0.05255898833274841, 0.005654236301779747, 0.007831559516489506, 0.3318311870098114, 0.044607214629650116, 0.034582894295454025, 0.0507693737745285, 0.04366261884570122, 0.008520410396158695, 0.03371957316994667, 0.02209613285958767, 0.02452777326107025, 0.02902243472635746], [0.4382213354110718, 0.04777621850371361, 0.01211890671402216, 0.08799067884683609, 0.06487710773944855, 0.02496349811553955, 0.016134385019540787, 0.0330495685338974, 0.03678324818611145, 0.03551756590604782, 0.024824708700180054, 0.039619553834199905, 0.032160572707653046, 0.009056365117430687, 0.011691717430949211, 0.016668953001499176, 0.018190452829003334, 0.050355225801467896], [0.22347809374332428, 0.046696677803993225, 0.01656576804816723, 0.10020662099123001, 0.054089829325675964, 0.039550889283418655, 0.009022096171975136, 0.013306460343301296, 0.09609034657478333, 0.028796469792723656, 0.1937621831893921, 0.0490279458463192, 0.0471244715154171, 0.007331513334065676, 0.013756784610450268, 0.031903188675642014, 0.012861213646829128, 0.01642940379679203], [0.5164746046066284, 0.033424120396375656, 0.015361773781478405, 0.034107841551303864, 0.06299843639135361, 0.06597594171762466, 0.004807245451956987, 0.008417180739343166, 0.05817459896206856, 0.028988465666770935, 0.035340335220098495, 0.03550096973776817, 0.031215909868478775, 0.004725694190710783, 0.019603552296757698, 0.010022909380495548, 0.006293745711445808, 0.0285667534917593], [0.36265993118286133, 0.04065429046750069, 0.03744257614016533, 0.09649127721786499, 0.046376295387744904, 0.02403990551829338, 0.0058161295019090176, 0.010134628042578697, 0.020299792289733887, 0.019584722816944122, 0.035856883972883224, 0.01816142164170742, 0.2414509356021881, 0.005214163567870855, 0.005399990361183882, 0.014627182856202126, 0.0036424340214580297, 0.012147362343966961], [0.2718309164047241, 0.023532340303063393, 0.040667712688446045, 0.03553299605846405, 0.01932651922106743, 0.016110682860016823, 0.011838207952678204, 0.027794180437922478, 0.026120172813534737, 0.020202718675136566, 0.007768385577946901, 0.01924576610326767, 0.03674515709280968, 0.28238123655319214, 0.013593178242444992, 0.12578177452087402, 0.009884912520647049, 0.011643222533166409], [0.5673304200172424, 0.03212139010429382, 0.009282941929996014, 0.038539376109838486, 0.03952493891119957, 0.03531679883599281, 0.014301198534667492, 0.023739730939269066, 0.058015983551740646, 0.0298509132117033, 0.041222672909498215, 0.029949961230158806, 0.01675744540989399, 0.013093034736812115, 0.019559664651751518, 0.010119151324033737, 0.007735345978289843, 0.01353912241756916], [0.39300546050071716, 0.053786732256412506, 0.032851509749889374, 0.0351395420730114, 0.02133840322494507, 0.02243722788989544, 0.00999931339174509, 0.011032560840249062, 0.04493110999464989, 0.02889498695731163, 0.014341308735311031, 0.020029133185744286, 0.05877608805894852, 0.060947172343730927, 0.0073196785524487495, 0.17418579757213593, 0.006280376575887203, 0.004703551530838013], [0.5929979681968689, 0.03599236160516739, 0.01413427572697401, 0.03694946691393852, 0.02590288780629635, 0.028486378490924835, 0.019829876720905304, 0.029089126735925674, 0.041569411754608154, 0.028920738026499748, 0.04884585738182068, 0.03373948857188225, 0.009773937053978443, 0.007020647171884775, 0.0165433157235384, 0.007258692290633917, 0.005356802139431238, 0.01758875511586666], [0.4004589021205902, 0.011804474517703056, 0.023149192333221436, 0.031069792807102203, 0.032993026077747345, 0.011041986756026745, 0.009008544497191906, 0.16368989646434784, 0.03656584769487381, 0.050224609673023224, 0.02892657183110714, 0.08310049027204514, 0.008461837656795979, 0.00845558661967516, 0.008050374686717987, 0.00694941496476531, 0.006081871222704649, 0.07996752113103867]], [[1.8579213474367862e-06, 5.735681770602241e-05, 1.5148186776059447e-06, 0.00011825547699118033, 3.5967798339697765e-06, 8.169862439899589e-07, 4.7088730070754536e-07, 0.3042333722114563, 6.052367098163813e-06, 6.727682193741202e-05, 0.0003705144044943154, 0.0007548570865765214, 2.3413345843437128e-05, 3.469564717306639e-06, 0.000467312871478498, 4.320806056057336e-06, 2.135010618076194e-06, 0.6938832998275757], [0.10208289325237274, 0.01062308344990015, 0.022545363754034042, 0.01716690883040428, 0.02242928184568882, 0.02296779863536358, 0.5865136384963989, 0.017687566578388214, 0.004040382336825132, 0.0040663122199475765, 0.001347723533399403, 0.001983159687370062, 0.00487461918964982, 0.003449241165071726, 0.012785300612449646, 0.0037014875560998917, 0.157398983836174, 0.00433622719720006], [0.028868308290839195, 0.08157433569431305, 0.14079506695270538, 0.03678205981850624, 0.1164909303188324, 0.1366155594587326, 0.01906345598399639, 0.009694562293589115, 0.09434329718351364, 0.018836386501789093, 0.03894594684243202, 0.013160822913050652, 0.029275963082909584, 0.13966530561447144, 0.005629044491797686, 0.0815560445189476, 0.00595343392342329, 0.0027494970709085464], [0.0751228928565979, 0.06518737971782684, 0.0434783473610878, 0.03290703520178795, 0.06804337352514267, 0.029278157278895378, 0.3861576318740845, 0.012211685068905354, 0.013349760323762894, 0.018963545560836792, 0.011314792558550835, 0.008984883315861225, 0.022329457104206085, 0.003875930095091462, 0.08288871496915817, 0.00813248474150896, 0.11402928084135056, 0.0037447120994329453], [0.05412215739488602, 0.1623997837305069, 0.10542279481887817, 0.1651822030544281, 0.0650765672326088, 0.07229800522327423, 0.15147630870342255, 0.01621682569384575, 0.03124251589179039, 0.029474884271621704, 0.022937828674912453, 0.019213657826185226, 0.024814235046505928, 0.006434907205402851, 0.029781416058540344, 0.013993286527693272, 0.027306945994496346, 0.002605651505291462], [0.02512863464653492, 0.07028137147426605, 0.11416228115558624, 0.04385880008339882, 0.30068856477737427, 0.13229194283485413, 0.017265522852540016, 0.012183468788862228, 0.03379829600453377, 0.02552540972828865, 0.04019201174378395, 0.036740075796842575, 0.0276871919631958, 0.03565702214837074, 0.01252366416156292, 0.06580659002065659, 0.00366183347068727, 0.002547316253185272], [0.01997203193604946, 0.01423813309520483, 0.004819045774638653, 0.014926551841199398, 0.007852155715227127, 0.0035060441587120295, 0.6613098978996277, 0.0009778629755601287, 0.0023532104678452015, 0.0016064420342445374, 0.0006048704963177443, 0.0010523811215534806, 0.002412213012576103, 0.00026497954968363047, 0.00951748713850975, 0.0008905573049560189, 0.25333306193351746, 0.000363068567821756], [0.07686124742031097, 0.0643714889883995, 0.011197881773114204, 0.01937057636678219, 0.011552153155207634, 0.00500888004899025, 0.02066519856452942, 0.016626670956611633, 0.07161831110715866, 0.041465114802122116, 0.11707054823637009, 0.09235364198684692, 0.023525971919298172, 0.003377605462446809, 0.33975014090538025, 0.010452612303197384, 0.04001981019973755, 0.034712180495262146], [0.06448223441839218, 0.013551239855587482, 0.01291366945952177, 0.012920685112476349, 0.018161024898290634, 0.00969475694000721, 0.004108731634914875, 0.008366717956960201, 0.0521199032664299, 0.12240058928728104, 0.09580084681510925, 0.10807788372039795, 0.13888812065124512, 0.028279727324843407, 0.14012083411216736, 0.08335097879171371, 0.02352099120616913, 0.06324108690023422], [0.05564403533935547, 0.02310365065932274, 0.010533842258155346, 0.010543952696025372, 0.011750133708119392, 0.0073230694979429245, 0.029747072607278824, 0.0035028669517487288, 0.13593922555446625, 0.04186180233955383, 0.07209175825119019, 0.04712926596403122, 0.08755440264940262, 0.010994468815624714, 0.20812956988811493, 0.020993540063500404, 0.19368790090084076, 0.029469480738043785], [0.05285872519016266, 0.019097425043582916, 0.009265556000173092, 0.009859723970293999, 0.019202088937163353, 0.014681718312203884, 0.031832005828619, 0.0027121573220938444, 0.16908171772956848, 0.058461744338274, 0.0436127670109272, 0.06487973034381866, 0.08803528547286987, 0.028024962171912193, 0.17594459652900696, 0.0417456328868866, 0.15182089805603027, 0.01888333633542061], [0.025324273854494095, 0.030811257660388947, 0.011354850605130196, 0.014266288839280605, 0.018213516101241112, 0.0070184869691729546, 0.010646088980138302, 0.005483886692672968, 0.09367024898529053, 0.11970622092485428, 0.11724399030208588, 0.07711224257946014, 0.10327490419149399, 0.010614720173180103, 0.21074871718883514, 0.03732709959149361, 0.06126285344362259, 0.04592038318514824], [0.07605313509702682, 0.014046091586351395, 0.02902417816221714, 0.006834162399172783, 0.010309002362191677, 0.01627711020410061, 0.0041573080234229565, 0.0080803744494915, 0.16446857154369354, 0.07745913416147232, 0.07117746025323868, 0.07824172079563141, 0.0911903977394104, 0.07274997979402542, 0.09708142280578613, 0.09421730041503906, 0.023870287463068962, 0.0647624135017395], [0.010725489817559719, 0.004000409040600061, 0.05549780651926994, 0.002276934217661619, 0.009314148686826229, 0.010380291379988194, 0.001787447021342814, 0.00034088167012669146, 0.05781888961791992, 0.029544344171881676, 0.03841885179281235, 0.020847659558057785, 0.04282527416944504, 0.16358651220798492, 0.007418642286211252, 0.5327181220054626, 0.009830372408032417, 0.002667843597009778], [0.03543946519494057, 0.009739413857460022, 0.004372351802885532, 0.005699541885405779, 0.00445307744666934, 0.0030661846976727247, 0.12302592396736145, 0.0016357554122805595, 0.02622089721262455, 0.018190033733844757, 0.01108942274004221, 0.017258035019040108, 0.019731100648641586, 0.004536594729870558, 0.05924662947654724, 0.008088314905762672, 0.6370288729667664, 0.011178386397659779], [0.02379184029996395, 0.01829889602959156, 0.04487035423517227, 0.00803100410848856, 0.018254924565553665, 0.017204642295837402, 0.005835706368088722, 0.0007973335450515151, 0.1017894297838211, 0.05175671726465225, 0.06136823073029518, 0.037107888609170914, 0.08295943588018417, 0.29246971011161804, 0.025017131119966507, 0.16939643025398254, 0.03415670245885849, 0.0068936655297875404], [0.01548201497644186, 0.002337600104510784, 0.0005942133138887584, 0.0012186106760054827, 0.0007371755200438201, 0.0003974192950408906, 0.09538595378398895, 0.0001287036866415292, 0.0064736963249742985, 0.0038609064649790525, 0.0014894066844135523, 0.002719264477491379, 0.005180261097848415, 0.0005472982884384692, 0.020594166591763496, 0.0016120614018291235, 0.8394621014595032, 0.001779220881871879], [0.020524129271507263, 0.004227800294756889, 0.0007053783629089594, 0.0007953971507959068, 0.0005802555242553353, 0.0002830219455063343, 0.001189615111798048, 0.0009770650649443269, 0.10915017873048782, 0.05464356020092964, 0.14406876266002655, 0.13867422938346863, 0.027881698682904243, 0.004344220273196697, 0.3203034996986389, 0.012855582870543003, 0.06852754205465317, 0.09026814997196198]]], [[[0.6474828124046326, 0.010252757929265499, 0.010178418830037117, 0.00864148885011673, 0.006147649139165878, 0.014786054380238056, 0.027563758194446564, 0.044757720082998276, 0.008288118988275528, 0.00554198632016778, 0.015714827924966812, 0.010427691042423248, 0.015033894218504429, 0.015515201725065708, 0.03585295379161835, 0.008657334372401237, 0.05014728382229805, 0.06501000374555588], [0.18369005620479584, 0.13011537492275238, 0.06506284326314926, 0.07416792958974838, 0.0724346935749054, 0.12624849379062653, 0.14371156692504883, 0.10553985834121704, 0.006539702415466309, 0.004403180908411741, 0.010488650761544704, 0.011605826206505299, 0.009052603505551815, 0.005559809971600771, 0.011486930772662163, 0.0055631715804338455, 0.015410168096423149, 0.01891910657286644], [0.28992488980293274, 0.2722894251346588, 0.02367902360856533, 0.03327065706253052, 0.04107848182320595, 0.041523393243551254, 0.10781066864728928, 0.10462142527103424, 0.003818000666797161, 0.006153301801532507, 0.0037157852202653885, 0.02701876498758793, 0.0029341490007936954, 0.004760709125548601, 0.004581275396049023, 0.0035396709572523832, 0.010412232019007206, 0.018868042156100273], [0.2672717571258545, 0.18058718740940094, 0.046196348965168, 0.05274194851517677, 0.040739864110946655, 0.055158112198114395, 0.12945586442947388, 0.12858694791793823, 0.007491415366530418, 0.003406999632716179, 0.011831569485366344, 0.014353339560329914, 0.005934044253081083, 0.0044295163825154305, 0.004114741925150156, 0.0043257432989776134, 0.015216889791190624, 0.02815772034227848], [0.2843383252620697, 0.16763268411159515, 0.014335612766444683, 0.014432841911911964, 0.05331752821803093, 0.06271678954362869, 0.11627109348773956, 0.16101884841918945, 0.011576118879020214, 0.004034738522022963, 0.008722742088139057, 0.027291348204016685, 0.0050409468822181225, 0.0014212909154593945, 0.009668808430433273, 0.0015886613400653005, 0.015758853405714035, 0.040832869708538055], [0.32866641879081726, 0.18833017349243164, 0.019935034215450287, 0.021811868995428085, 0.041250068694353104, 0.03188512101769447, 0.09991803765296936, 0.14144186675548553, 0.00824159849435091, 0.004244642332196236, 0.008789694868028164, 0.027699043974280357, 0.005614088382571936, 0.006268850993365049, 0.007015920709818602, 0.005608610808849335, 0.016579145565629005, 0.03669982776045799], [0.1643783450126648, 0.12950696051120758, 0.0582246370613575, 0.03318464756011963, 0.047170765697956085, 0.06470733880996704, 0.1411917805671692, 0.21834440529346466, 0.008326983079314232, 0.004664572887122631, 0.006456626113504171, 0.008999353274703026, 0.00654030404984951, 0.008434547111392021, 0.014381134882569313, 0.007185708731412888, 0.02181130275130272, 0.05649052932858467], [0.7279070615768433, 0.02002931758761406, 0.0034457736182957888, 0.0029258544091135263, 0.00325710023753345, 0.003823282662779093, 0.03238902986049652, 0.14278461039066315, 0.000659925164654851, 0.0004362259351182729, 0.0008649482042528689, 0.0011860530357807875, 0.0005265084328129888, 0.00023934732598718256, 0.0059570795856416225, 0.0001848208630690351, 0.007867872714996338, 0.04551515355706215], [0.11249826848506927, 0.021310966461896896, 0.005020970478653908, 0.0067983693443238735, 0.008596977218985558, 0.01628522016108036, 0.032871682196855545, 0.09661806374788284, 0.01875751093029976, 0.02757243812084198, 0.07178545743227005, 0.05225946009159088, 0.022617116570472717, 0.019844483584165573, 0.0761660784482956, 0.021563289687037468, 0.17017148435115814, 0.2192622274160385], [0.17533594369888306, 0.028580158948898315, 0.004213499370962381, 0.003938599023967981, 0.006433415692299604, 0.009244845248758793, 0.03572218865156174, 0.0919044092297554, 0.04012162610888481, 0.02051706053316593, 0.036480922251939774, 0.05590662360191345, 0.014043424278497696, 0.01652778685092926, 0.04556434974074364, 0.02062854915857315, 0.1795392781496048, 0.21529734134674072], [0.14763377606868744, 0.03695349022746086, 0.00795134250074625, 0.009286316111683846, 0.008627532050013542, 0.016487648710608482, 0.02814011462032795, 0.1022677943110466, 0.049132026731967926, 0.03271857649087906, 0.050296176224946976, 0.06057531759142876, 0.0195514764636755, 0.03150877729058266, 0.04273085296154022, 0.02305888570845127, 0.14369577169418335, 0.18938413262367249], [0.18253876268863678, 0.024494871497154236, 0.007131471298635006, 0.02212562784552574, 0.017165858298540115, 0.02783823385834694, 0.06138906627893448, 0.07686963677406311, 0.044444892555475235, 0.0123960692435503, 0.05285106599330902, 0.04616734758019447, 0.016321437433362007, 0.011254976503551006, 0.05856381729245186, 0.013683889992535114, 0.1956644505262375, 0.12909843027591705], [0.2572731673717499, 0.015449297614395618, 0.0024632110726088285, 0.006387148052453995, 0.005888462997972965, 0.006940991617739201, 0.03662765771150589, 0.07309107482433319, 0.02621709741652012, 0.02119545452296734, 0.030539097264409065, 0.05998281389474869, 0.0065743508748710155, 0.007706790696829557, 0.0597090981900692, 0.004937566351145506, 0.20675022900104523, 0.17226648330688477], [0.2124527543783188, 0.026088794693350792, 0.007162137422710657, 0.013061878271400928, 0.008637547492980957, 0.006664198823273182, 0.06015399843454361, 0.11134928464889526, 0.026532437652349472, 0.020645780488848686, 0.03718627244234085, 0.056622281670570374, 0.008271553553640842, 0.005010345485061407, 0.06355254352092743, 0.00320426095277071, 0.15887825191020966, 0.17452572286128998], [0.11791855096817017, 0.026306113228201866, 0.0065263621509075165, 0.003424118272960186, 0.010018771514296532, 0.014683008193969727, 0.04486130550503731, 0.07355248928070068, 0.04331741854548454, 0.02937295101583004, 0.022708628326654434, 0.05115220323204994, 0.02080918289721012, 0.025338834151625633, 0.12588146328926086, 0.0207551047205925, 0.2242489606142044, 0.13912466168403625], [0.24268418550491333, 0.0303967148065567, 0.00659356452524662, 0.009158601984381676, 0.008483822457492352, 0.006074897479265928, 0.056300293654203415, 0.09778812527656555, 0.025775181129574776, 0.0260299239307642, 0.039206717163324356, 0.06431053578853607, 0.008080578409135342, 0.0103721022605896, 0.07311607152223587, 0.0030605653300881386, 0.15257683396339417, 0.13999131321907043], [0.10672032833099365, 0.019189199432730675, 0.006397707853466272, 0.005648196209222078, 0.008322585374116898, 0.013992011547088623, 0.03747675195336342, 0.08078445494174957, 0.06863322108983994, 0.026227202266454697, 0.04304112493991852, 0.0469646230340004, 0.026110732927918434, 0.03464743494987488, 0.09546379745006561, 0.02878190204501152, 0.17624425888061523, 0.17535437643527985], [0.6356561183929443, 0.005271937698125839, 0.0012282922398298979, 0.0009256232879124582, 0.0010942529188469052, 0.0016358410939574242, 0.012216327711939812, 0.11656688898801804, 0.0036156419664621353, 0.0014291538391262293, 0.0030351264867931604, 0.00350047554820776, 0.0014004646800458431, 0.0008956961682997644, 0.016492044553160667, 0.0005241912440396845, 0.02801775000989437, 0.166494220495224]], [[0.6630561351776123, 0.025020325556397438, 0.014033949933946133, 0.02395348809659481, 0.008953293785452843, 0.008345423266291618, 0.04287020117044449, 0.049085307866334915, 0.016910139471292496, 0.007924696430563927, 0.006504780147224665, 0.0069214534014463425, 0.008674913085997105, 0.01284912507981062, 0.015659820288419724, 0.01194277498871088, 0.035212837159633636, 0.04208149015903473], [0.05950578674674034, 0.03453939035534859, 0.03657466173171997, 0.6516960263252258, 0.06496913731098175, 0.010465001687407494, 0.029324622824788094, 0.10392136871814728, 0.0027124248445034027, 0.00012393922952469438, 0.00015860084386076778, 0.00020765044610016048, 0.00015836792590562254, 0.00023798375332262367, 0.00041862137732096016, 0.0024042006116360426, 0.000605048902798444, 0.0019771219231188297], [0.7273316383361816, 0.0419829897582531, 0.013510560616850853, 0.045623503625392914, 0.05630287528038025, 0.03816257417201996, 0.020083563402295113, 0.04864710196852684, 0.0022893010172992945, 0.0001634613290661946, 2.25496096390998e-05, 2.9756713047390804e-05, 0.0003652051091194153, 0.00031677065999247134, 0.00013483419024851173, 0.0010882177157327533, 0.0016052306164056063, 0.002339904196560383], [0.05662348493933678, 0.041472695767879486, 0.012295186519622803, 0.032167233526706696, 0.07351663708686829, 0.4459228515625, 0.19671277701854706, 0.12690651416778564, 0.005100088194012642, 0.0018037825357168913, 0.00020365875388961285, 4.334514233050868e-05, 0.00038594604120589793, 0.0004286328621674329, 8.756076567806304e-05, 0.0007387168589048088, 0.0004251216596458107, 0.005165820010006428], [0.19332022964954376, 0.018706943839788437, 0.010136446915566921, 0.04140043631196022, 0.024471478536725044, 0.04333505406975746, 0.35290420055389404, 0.30658742785453796, 0.0015102919423952699, 0.002934860996901989, 0.0009046649211086333, 0.00032522808760404587, 5.105978198116645e-05, 0.00012406213500071317, 0.00013474513252731413, 0.00019107689149677753, 7.853937859181315e-05, 0.002883201465010643], [0.5128344893455505, 0.002458288101479411, 0.005751163233071566, 0.010871070437133312, 0.018509913235902786, 0.010169582441449165, 0.07953657954931259, 0.34826579689979553, 0.006138726603239775, 0.0023334065917879343, 0.0006153382710181177, 0.0003619916387833655, 0.0006718012737110257, 0.0002785699616651982, 0.00010770799417514354, 0.0006038927822373807, 0.00013098558702040464, 0.0003606928512454033], [0.4845642149448395, 0.002463200595229864, 0.001160499406978488, 0.007636849768459797, 0.014274240471422672, 0.013693313114345074, 0.058371808379888535, 0.34696194529533386, 0.05230565369129181, 0.011037170886993408, 0.001326810335740447, 0.0021818734239786863, 0.001835980685427785, 0.00037008593790233135, 9.519061859464273e-05, 0.000331030081724748, 0.0005687586963176727, 0.0008214067784138024], [0.9055132865905762, 0.0006609705160371959, 0.00016257182869594544, 0.00027606362709775567, 0.00034017013967968524, 0.0011959096882492304, 0.011209885589778423, 0.05135985463857651, 0.0050843642093241215, 0.01412435807287693, 0.003950981888920069, 0.0013649488100782037, 0.0015474612591788173, 0.00208728457801044, 0.0001977087085833773, 0.00010694583033910021, 0.00020677807333413512, 0.0006104050553403795], [0.06881191581487656, 0.00025216146605089307, 0.00026160545530728996, 0.0002853729238267988, 0.00011992034706054255, 0.002268880605697632, 0.00862447265535593, 0.061948712915182114, 0.011385967954993248, 0.195445254445076, 0.41103288531303406, 0.16089779138565063, 0.05375554785132408, 0.006668169051408768, 0.01384864654392004, 0.0017730897525325418, 0.0005400993395596743, 0.002079527825117111], [0.19554173946380615, 0.0001944683026522398, 0.0003709013981278986, 0.00022459799947682768, 0.00026497928774915636, 0.00033352646278217435, 0.0037126115057617426, 0.1059526577591896, 0.02681172452867031, 0.059439580887556076, 0.03939146175980568, 0.40642520785331726, 0.09712053835391998, 0.022020675241947174, 0.01862708106637001, 0.017573628574609756, 0.004510556813329458, 0.0014840676449239254], [0.046016257256269455, 8.143905870383605e-05, 0.0001196819866891019, 3.7954578147036955e-05, 0.00041920540388673544, 0.0003915477718692273, 0.00010760746954474598, 0.004278101492673159, 0.007452014368027449, 0.006093202158808708, 0.005723160225898027, 0.049823079258203506, 0.7826088070869446, 0.029586035758256912, 0.009486406110227108, 0.04243097081780434, 0.012377609498798847, 0.002966982312500477], [0.2510676383972168, 0.0012234856840223074, 0.0004647400928661227, 0.00015290602459572256, 0.0001905449607875198, 0.0016863784985616803, 0.000919499434530735, 0.004489482380449772, 0.0016853391425684094, 0.009674295783042908, 0.06671907007694244, 0.01191932987421751, 0.35366660356521606, 0.05986293405294418, 0.08559103310108185, 0.037977684289216995, 0.0528167188167572, 0.05989236384630203], [0.09110679477453232, 0.0008631725213490427, 0.00099993497133255, 0.0003331637126393616, 0.00020861095981672406, 0.0008240134920924902, 0.0005458366358652711, 0.0014496055664494634, 0.000735197332687676, 0.0013078383635729551, 0.021228764206171036, 0.04571628198027611, 0.02214621938765049, 0.21374772489070892, 0.3670935034751892, 0.1781773865222931, 0.02620067074894905, 0.02731533907353878], [0.7728646993637085, 0.000549849180970341, 0.0005317344912327826, 0.0002610092924442142, 5.897389564779587e-05, 4.571592580759898e-05, 0.0001724965259199962, 0.000589483417570591, 4.694129529525526e-05, 3.148971882183105e-05, 0.00013972312444821, 0.0009492229437455535, 0.003654209431260824, 0.013521111570298672, 0.04077615216374397, 0.11018279939889908, 0.0464496910572052, 0.00917466077953577], [0.11538597196340561, 0.000623778032604605, 0.00023962340492289513, 0.00016913714352995157, 0.00028047800878994167, 0.00012350964243523777, 3.739931344171055e-05, 0.00016187719302251935, 0.000130483036627993, 5.558893462875858e-05, 0.00018260732758790255, 0.00016332833911292255, 0.042468007653951645, 0.03008529730141163, 0.058127179741859436, 0.2919025421142578, 0.3881177604198456, 0.07174541801214218], [0.4764437973499298, 0.0029600535053759813, 0.0011860064696520567, 0.0006555304862558842, 0.0004961628583259881, 0.0008665112545713782, 0.0005965372547507286, 0.00032353171263821423, 9.579904872225598e-05, 5.943116048001684e-05, 6.924246554262936e-05, 8.591229561716318e-05, 0.001231478643603623, 0.1959981471300125, 0.023160135373473167, 0.0361531525850296, 0.08822355419397354, 0.17139498889446259], [0.5923401713371277, 0.0008415856282226741, 0.0006099892198108137, 0.00047692147199995816, 8.299100591102615e-05, 0.00021286774426698685, 0.0016896212473511696, 0.0008813729509711266, 3.6386085412232205e-05, 4.0119888581102714e-05, 6.835109525127336e-05, 0.00012297015928197652, 0.00017802677757572383, 0.0020230559166520834, 0.04553247615695, 0.01997191458940506, 0.08594679087400436, 0.2489444464445114], [0.9857742786407471, 7.173465564846992e-05, 3.2714942790335044e-05, 0.0002696639276109636, 6.395405944203958e-05, 1.314415658271173e-05, 0.0001468213740736246, 0.00041738792788237333, 2.6433051971253008e-05, 2.283878757225466e-06, 6.438220680138329e-06, 1.7961219782591797e-05, 2.7837539164465852e-05, 0.00010907820978900418, 0.0004034095327369869, 0.0014809878775849938, 0.005574316717684269, 0.005561461206525564]], [[0.7144526243209839, 0.04711608961224556, 0.0071736108511686325, 0.0269781406968832, 0.00986147578805685, 0.004480211529880762, 0.0425875224173069, 0.032020870596170425, 0.011615692637860775, 0.004369779489934444, 0.0065248263999819756, 0.003959796857088804, 0.01004006527364254, 0.0031355805695056915, 0.011360772885382175, 0.006438614800572395, 0.028039205819368362, 0.029845118522644043], [0.9114513397216797, 0.04436798393726349, 0.0023148157633841038, 0.036856528371572495, 0.0017039229860529304, 0.00011595192336244509, 0.0011492653284221888, 0.0013839881867170334, 7.058621849864721e-05, 2.331077439521323e-06, 1.6173887615877902e-06, 6.736016530339839e-06, 4.736097253044136e-05, 1.1910674402315635e-05, 7.743696914985776e-05, 3.947839286411181e-05, 0.00021731387823820114, 0.00018136331345885992], [0.5650302767753601, 0.41660135984420776, 0.00042153280810453, 0.0033436366356909275, 0.0008695445139892399, 0.009903306141495705, 0.002004273235797882, 0.00036459023249335587, 2.7317551939631812e-05, 1.2697143574769143e-05, 6.167005039969808e-07, 2.6223160602967255e-06, 3.796476812567562e-05, 0.0004630131006706506, 6.975741416681558e-05, 6.733932968927547e-05, 0.00021790848404634744, 0.0005622401949949563], [0.8037878274917603, 0.13827157020568848, 0.006907937116920948, 0.034852538257837296, 0.0008203562465496361, 0.00160910002887249, 0.009352278895676136, 0.0025877999141812325, 1.3123326425557025e-05, 7.609107706230134e-05, 7.190862379502505e-05, 3.019185442099115e-06, 6.231157385627739e-06, 3.955494776164414e-06, 0.00032835896126925945, 5.280810455587925e-06, 7.515927427448332e-05, 0.0012275144690647721], [0.4963754415512085, 0.04685480520129204, 0.0003455686382949352, 0.39020636677742004, 0.03410528227686882, 0.002504518488422036, 0.017581069841980934, 0.010733592323958874, 0.00011207283387193456, 1.3205268487581634e-06, 1.1533761608006898e-05, 0.0006804731674492359, 4.5027127271168865e-06, 9.350069944957795e-07, 3.535707946866751e-05, 2.8709706384688616e-05, 2.3968170353327878e-05, 0.0003944888594560325], [0.701431393623352, 0.002347077475860715, 0.0005942154093645513, 0.08430572599172592, 0.05546826496720314, 0.0172128789126873, 0.020507752895355225, 0.11704121530056, 0.00013243376452010125, 0.00010084181121783331, 1.2458981757390575e-07, 3.8573700294364244e-05, 2.7784866688307375e-05, 1.2368016541586258e-05, 2.134524766006507e-05, 0.0001340191374765709, 0.00021806875884067267, 0.0004060089704580605], [0.8447948098182678, 0.02580762282013893, 0.00019590638112276793, 0.014304502867162228, 0.012000218033790588, 0.007283468265086412, 0.05288474261760712, 0.039384834468364716, 0.0015565657522529364, 0.00018541411554906517, 1.1936595910810865e-05, 8.311141755257268e-06, 3.1840572773944587e-05, 8.669741873745807e-06, 1.0618399755912833e-05, 8.213663932110649e-06, 0.00010706228204071522, 0.0014153439551591873], [0.8465844392776489, 0.001945600495673716, 0.0007439516484737396, 0.0012785723665729165, 0.000866847753059119, 0.0027881856076419353, 0.0664701834321022, 0.07664941251277924, 0.0013580706436187029, 0.0007621141267009079, 0.0001640882110223174, 4.431427441886626e-05, 8.128623449010774e-06, 9.966266588889994e-06, 9.496691745880526e-06, 3.594928784877993e-06, 1.3284878150443546e-05, 0.00029965685098432004], [0.4110349714756012, 6.685378320980817e-05, 7.331288088607835e-06, 0.0006308424635790288, 3.428978970987373e-06, 1.3549154573411215e-05, 0.009807190857827663, 0.5733964443206787, 0.0034248565789312124, 0.0001885605015559122, 0.001006490783765912, 0.00010428734094602987, 2.147678787878249e-05, 1.2091378209788672e-07, 8.448523294646293e-05, 1.5124510355235543e-06, 9.38373887038324e-06, 0.0001982546382350847], [0.31750962138175964, 0.00010913763981079683, 4.745424178054236e-07, 0.00012085654452675954, 1.8144939531339332e-05, 4.688966873800382e-05, 0.006058725994080305, 0.5734084844589233, 0.09797707945108414, 0.0011257175356149673, 0.0017397600458934903, 0.0010192682966589928, 0.0007659472175873816, 1.3972834267406142e-06, 1.2480340956244618e-05, 1.2324586577960872e-06, 1.6731626601540484e-05, 6.796003435738385e-05], [0.34329044818878174, 4.241865099174902e-05, 1.8533332024617266e-07, 2.2281610654317774e-05, 3.507178553263657e-05, 0.0001510969887021929, 0.0010181714314967394, 0.1336943358182907, 0.07441926747560501, 0.021054111421108246, 0.0019521048525348306, 0.41920825839042664, 0.0027488612104207277, 9.862481238087639e-05, 0.0016072177095338702, 2.820653719481925e-07, 5.236091237748042e-05, 0.000604822940658778], [0.21463365852832794, 0.0002155294787371531, 1.7238937743968563e-06, 2.7032254365622066e-05, 2.3806162516848417e-06, 1.017705199046759e-05, 0.0012598548782989383, 0.01965978369116783, 0.008557715453207493, 0.07683603465557098, 0.6686860918998718, 0.0031096478924155235, 0.0008672218536958098, 0.0005089655169285834, 0.0047468929551541805, 1.2350152246654034e-05, 3.682705937535502e-05, 0.000828178774099797], [0.13172124326229095, 2.0420226064743474e-05, 1.757884274411481e-05, 3.447729250183329e-05, 1.564131224540688e-07, 3.5317002584633883e-06, 0.00019955517200287431, 0.009022031910717487, 0.0005123502924107015, 0.0029207724146544933, 0.8479445576667786, 0.005391338374465704, 0.0003734910860657692, 0.00018643510702531785, 0.0012321298709139228, 0.00013398764713201672, 0.00016069137200247496, 0.00012537113798316568], [0.6740879416465759, 0.0004144112463109195, 2.3886786948423833e-05, 4.7782392357476056e-05, 2.1518067114811856e-06, 5.389998113969341e-05, 0.0001797973964130506, 0.01780703291296959, 0.00043494312558323145, 0.005193570628762245, 4.5665557991014794e-05, 0.0016037061577662826, 0.2498108148574829, 0.007878853008151054, 0.009610146284103394, 0.005673796869814396, 0.013660353608429432, 0.013471109792590141], [0.621540904045105, 0.0018039532005786896, 6.201325504662236e-06, 8.855097985360771e-05, 4.7014518713695e-06, 2.5127706976491027e-05, 0.0001308731152676046, 0.0008565096650272608, 0.000700375356245786, 0.0005187502829357982, 0.0008129751076921821, 0.011281107552349567, 0.047648921608924866, 0.026142816990613937, 0.07806109637022018, 0.0032166854944080114, 0.1373027265071869, 0.06985766440629959], [0.7866460680961609, 0.0013858575839549303, 0.00017539785767439753, 0.00012296362547203898, 9.01043733847473e-07, 1.79518588083738e-06, 0.00022226183500606567, 0.000807024072855711, 3.067627039854415e-05, 0.0003614234447013587, 0.0009958556620404124, 9.042744932230562e-05, 0.006380838807672262, 0.006149556953459978, 0.07095624506473541, 0.007484744302928448, 0.03366963192820549, 0.08451831340789795], [0.7061026096343994, 0.00021827244199812412, 2.7331023375154473e-05, 0.00025808557984419167, 1.2860382412327453e-05, 1.0408076605017413e-06, 0.00014431578165385872, 0.0010518092894926667, 2.446483813400846e-05, 5.584790869761491e-06, 7.922058284748346e-05, 0.001381443813443184, 0.0011478333035483956, 0.00019267087918706238, 0.1103433147072792, 0.03295833244919777, 0.07282565534114838, 0.07322511821985245], [0.8998002409934998, 0.0002079564001178369, 4.9431906518293545e-05, 0.00015053620154503733, 2.1268288037390448e-05, 1.0119701073563192e-05, 3.296416252851486e-05, 0.0005075115477666259, 8.519025868736207e-06, 2.84262205241248e-06, 4.023907422379125e-06, 3.292174733360298e-05, 0.0003607344697229564, 0.00012286055425647646, 0.002653455128893256, 0.0036959664430469275, 0.05568424612283707, 0.03665456175804138]], [[0.5287801027297974, 0.05161043629050255, 0.018708303570747375, 0.027252838015556335, 0.009923928417265415, 0.009970960207283497, 0.050802066922187805, 0.0961909145116806, 0.011507820338010788, 0.011275526136159897, 0.009776260703802109, 0.011083552613854408, 0.0075829243287444115, 0.016373159363865852, 0.025607306510210037, 0.01283614058047533, 0.03198341280221939, 0.06873439252376556], [0.19896003603935242, 0.013179847039282322, 0.678489625453949, 0.07971185445785522, 0.0032569519244134426, 0.003081713570281863, 0.012210879474878311, 0.0064774625934660435, 1.7059486481230124e-06, 0.00014900323003530502, 0.00011433782492531464, 1.4299255781224929e-05, 5.082996722194366e-06, 0.00034899331512860954, 0.0018043032614514232, 9.425052121514454e-05, 0.0001623641437618062, 0.0019372982205823064], [0.607116162776947, 0.023385070264339447, 0.0034137193579226732, 0.15575239062309265, 0.004477387759834528, 6.638950435444713e-05, 0.005644241347908974, 0.18234609067440033, 6.023153673595516e-06, 1.4743891370017081e-05, 2.891710437324946e-06, 6.131713234935887e-06, 4.0340608393307775e-05, 0.0011517254170030355, 0.00010539763752603903, 0.01049128733575344, 0.0003426598268561065, 0.005637264344841242], [0.5027103424072266, 0.017580509185791016, 0.004859177861362696, 0.05456764996051788, 0.3012600839138031, 0.04071994498372078, 0.022547045722603798, 0.04464681074023247, 0.002119875978678465, 0.0005655437125824392, 9.8149894256494e-06, 3.481488238321617e-05, 0.000722686352673918, 5.9729645727202296e-05, 2.0863952158833854e-05, 0.00032108553568832576, 0.005199718289077282, 0.0020542426500469446], [0.0365985669195652, 0.0019749244675040245, 9.58690361585468e-05, 0.0007745079346932471, 0.0002849056909326464, 0.9539116024971008, 0.0016868904931470752, 0.0020869309082627296, 4.164563506492414e-06, 0.00010576655768090859, 1.3960139767732471e-05, 5.038213402031033e-08, 3.169795263602282e-06, 5.1769402489298955e-06, 1.595454705238808e-06, 4.0422480651614023e-07, 3.396264946786687e-05, 0.0024175781290978193], [0.5589464902877808, 0.005991281475871801, 0.011183829046785831, 0.0036261773202568293, 5.745122325606644e-05, 0.0013938151532784104, 0.24196740984916687, 0.1723732352256775, 4.023376095574349e-05, 0.0011207910720258951, 3.973378989030607e-05, 3.3673341022222303e-06, 6.705000032525277e-06, 1.2406463611114305e-05, 6.370834307745099e-05, 1.5670142602175474e-05, 1.5698382412665524e-05, 0.003141957800835371], [0.24123792350292206, 5.9370413509896025e-05, 0.0014215442351996899, 0.013989242725074291, 0.000450175633886829, 0.0013982552336528897, 0.01774618774652481, 0.7213520407676697, 0.0005111642531119287, 0.0005981107824482024, 0.000749424216337502, 0.0002603091998025775, 1.8793791241478175e-05, 2.4652863430674188e-06, 5.962342402199283e-05, 3.892392851412296e-05, 2.3419293938786723e-05, 8.298079774249345e-05], [0.7378543615341187, 0.0006741720717400312, 1.365337084280327e-05, 0.0012511051027104259, 0.0007666527526453137, 0.0011277494486421347, 0.005857864860445261, 0.2030348926782608, 0.04452025517821312, 0.0019063507206737995, 0.0006969809764996171, 0.0005549286142922938, 0.0009464487666264176, 7.624358840985224e-05, 3.4020201837847708e-06, 9.905222395900637e-05, 0.00011993209773208946, 0.0004960661754012108], [0.5355928540229797, 0.00030180613975971937, 1.0694666343624704e-05, 2.82499568129424e-05, 0.00011010075104422867, 0.0006177108734846115, 0.007762829307466745, 0.02385007217526436, 0.022330397740006447, 0.32286661863327026, 0.07659153640270233, 0.0006748178275302052, 0.005346196703612804, 0.0014398907078430057, 0.0004793245461769402, 3.399425622774288e-05, 0.000497449014801532, 0.001465492183342576], [0.4331305921077728, 9.882530866889283e-05, 0.00019746815087273717, 0.00014110017218627036, 8.971061902229849e-07, 0.00038672229857183993, 0.006198947783559561, 0.08033054322004318, 0.0018795834621414542, 0.031624432653188705, 0.43154487013816833, 0.0003646168624982238, 0.00580479996278882, 0.0013379150768741965, 0.00569221843034029, 0.0001687714975560084, 8.386190529563464e-06, 0.0010892592836171389], [0.0734902024269104, 5.7313800425617956e-06, 3.996091436420102e-06, 1.0202956218563486e-05, 1.4090591093918192e-06, 5.3687351453390875e-08, 6.776076043024659e-05, 0.014920098707079887, 7.255256059579551e-05, 0.0012727513676509261, 0.0010245415614917874, 0.8059977889060974, 0.09685675799846649, 4.350943345343694e-05, 0.000824017624836415, 0.005303841549903154, 6.807211320847273e-05, 3.67858046956826e-05], [0.19645759463310242, 0.0002529762568883598, 1.7472306126364856e-06, 0.0002061939740087837, 0.0004927104455418885, 6.910863157827407e-05, 2.7953397875535302e-05, 0.008981357328593731, 0.002380510326474905, 0.013403652235865593, 0.0244054663926363, 0.0008367677219212055, 0.665060818195343, 0.055998366326093674, 0.009853809140622616, 0.007744809612631798, 0.011818397790193558, 0.0020075992215424776], [0.48185983300209045, 0.003777754260227084, 6.547089287778363e-05, 1.5069252185639925e-05, 5.9706740103138145e-06, 1.4376589206221979e-05, 0.000314735050778836, 0.0003466506313998252, 2.684335777303204e-05, 0.007662189193069935, 0.005098426248878241, 0.00017254991689696908, 0.005436874460428953, 0.4047814607620239, 0.039858993142843246, 0.00031770888017490506, 0.01567019522190094, 0.034574996680021286], [0.8982521295547485, 0.001267051906324923, 0.00054796232143417, 5.633699402096681e-06, 4.955601298206602e-07, 2.9717223242187174e-06, 0.00011618637654464692, 0.001804025610908866, 1.0574818531949859e-07, 8.203244942706078e-05, 2.4773626137175597e-05, 0.0001558904186822474, 0.00033549178624525666, 0.002588742645457387, 0.05987205356359482, 0.0005931195337325335, 0.0018992271507158875, 0.03245198726654053], [0.0480198860168457, 6.407372711692005e-05, 1.6248573956545442e-05, 0.00012735134805552661, 5.496609446709044e-06, 2.9983704052938265e-07, 6.2905269260227215e-06, 0.00011017936049029231, 2.7958590180787724e-06, 3.7893087778684276e-07, 3.6726643884321675e-05, 0.0001462525106035173, 0.009377628564834595, 0.000735658104531467, 0.004195217043161392, 0.9316665530204773, 0.0029354922007769346, 0.002553500235080719], [0.6162046790122986, 0.001434066565707326, 2.5730452762218192e-05, 6.290668534347787e-05, 0.0005411857273429632, 0.00011957941023865715, 2.4218550606747158e-05, 0.0003751209005713463, 7.741643457848113e-06, 1.5323705156333745e-05, 5.122169568494428e-07, 1.6296558897010982e-05, 0.0006163068464957178, 0.0064852274954319, 0.002101045334711671, 0.00146427471190691, 0.3209829330444336, 0.04952290654182434], [0.44208574295043945, 0.0018785846186801791, 0.0001868207036750391, 0.00011536030797287822, 2.0912064428557642e-05, 0.0004562199173960835, 9.364176366943866e-05, 5.254440475255251e-05, 9.257079909730237e-06, 2.5378905775141902e-05, 5.966987009742297e-05, 1.0929595646302914e-06, 9.348071762360632e-05, 0.0013765176991000772, 0.004616415128111839, 0.0013727840268984437, 0.01626642607152462, 0.5312891602516174], [0.9609258770942688, 0.0006511632236652076, 0.0002955679374281317, 0.00016994580801110715, 2.8069567633792758e-05, 1.4459312296821736e-05, 0.0016552046872675419, 0.0010936573380604386, 2.7372998374630697e-06, 3.064841166633414e-06, 1.1714188076439314e-05, 1.2763901395373978e-05, 2.945161440948141e-06, 0.00013169228623155504, 0.0009446184849366546, 0.001238945173099637, 0.002749010920524597, 0.030068522319197655]], [[0.6347469687461853, 0.026830140501260757, 0.012878168374300003, 0.010386208072304726, 0.014975999481976032, 0.014720306731760502, 0.024834685027599335, 0.05876905471086502, 0.009265843778848648, 0.006066767033189535, 0.01112661324441433, 0.0053417496383190155, 0.014302700757980347, 0.015402846038341522, 0.01427121739834547, 0.0122474804520607, 0.03455622121691704, 0.07927702367305756], [0.9306172132492065, 0.021372923627495766, 0.0020355451852083206, 0.008331948891282082, 0.03573671728372574, 0.00032912270398810506, 1.4587109035346657e-05, 0.0004978007636964321, 3.057742287637666e-05, 2.285047912664595e-06, 1.9320761168728495e-07, 5.43916758033447e-06, 0.00041933980537578464, 6.303858390310779e-05, 1.9714921108970884e-06, 0.0001806019281502813, 0.00027669366681948304, 8.396775956498459e-05], [0.2948257327079773, 0.6812873482704163, 0.0034807370975613594, 0.0015489384531974792, 0.0019353533862158656, 0.012309454381465912, 0.002103763399645686, 2.9958133382024243e-05, 1.7883061218526564e-06, 1.159082785306964e-05, 1.8212527720606886e-05, 4.4066479176763096e-07, 1.670117308094632e-05, 0.0009293989860452712, 1.8524739061831497e-05, 2.2160196749609895e-05, 1.2426477042026818e-05, 0.0014476161450147629], [0.1007714495062828, 0.020805371925234795, 0.7748910784721375, 0.07438978552818298, 0.006807815749198198, 0.007984641939401627, 0.012326598167419434, 0.0017382593359798193, 1.943155751860104e-07, 1.7944904584510368e-06, 4.880327196588041e-06, 1.890927251224639e-06, 4.869000349572161e-07, 5.08953917233157e-06, 0.00011968394392170012, 9.195838356390595e-05, 1.9161420823365916e-06, 5.705601870431565e-05], [0.009332665242254734, 0.0005710844416171312, 0.0019985188264399767, 0.9837195873260498, 0.0007841516053304076, 0.0005917263915762305, 0.0001591792970430106, 0.0023185270838439465, 1.5402796407215646e-06, 3.1410269940579383e-09, 2.8450926947698463e-07, 5.718370175600285e-06, 7.502228527300758e-07, 2.6568478972421872e-08, 1.5945771281167254e-07, 0.000511928228661418, 4.645640387934691e-07, 3.593337396523566e-06], [0.5255415439605713, 0.005992764141410589, 0.0020323677454143763, 0.005718899890780449, 0.3985154926776886, 0.03065548650920391, 0.00766269164159894, 0.022821342572569847, 0.00026053530746139586, 3.107773227384314e-05, 1.2045312303143874e-07, 5.531712304218672e-06, 1.0978590580634773e-05, 5.2878995120408945e-06, 3.862460928871769e-08, 1.4004491276864428e-05, 0.0007031167624518275, 2.8756789106409997e-05], [0.2258010357618332, 0.004150584805756807, 0.0005801107618026435, 0.001272817375138402, 0.004307536408305168, 0.7463493347167969, 0.012472879141569138, 0.0036236566957086325, 0.00033638623426668346, 0.00031410640804097056, 1.3022340681345668e-05, 6.795745122190056e-08, 3.883604676957475e-06, 1.3334322829905432e-05, 2.645276708790334e-07, 7.382176363535109e-07, 2.236543195976992e-06, 0.0007580964011140168], [0.9078269600868225, 0.00015045788313727826, 0.0018992888508364558, 0.0005588829517364502, 0.00021210922568570822, 0.0019939325284212828, 0.052769046276807785, 0.032949890941381454, 2.608275281090755e-05, 0.00037262222031131387, 0.0012015808606520295, 2.394542570982594e-05, 2.566816306170949e-07, 2.3296463496080833e-06, 1.1585642596401158e-06, 1.5359199778686161e-06, 8.710956400648229e-09, 9.93986577668693e-06], [0.0392935574054718, 3.121623706192622e-07, 2.221259137513698e-06, 0.0001345216587651521, 8.198431169148535e-05, 1.3186084288463462e-05, 0.00028392652166076005, 0.9483358263969421, 0.00457722507417202, 0.0001665780000621453, 0.000996392103843391, 0.006005575880408287, 8.16245810710825e-05, 1.726067750951188e-07, 7.708414386797813e-07, 2.5239112801500596e-05, 7.198811431408103e-07, 2.335821847054831e-07], [0.01378820464015007, 1.914203721753438e-06, 5.188790908050578e-08, 2.2248245841183234e-06, 0.00017592527728993446, 0.0005047540180385113, 4.5672972191823646e-05, 0.006497118156403303, 0.971583366394043, 0.004548331256955862, 0.0005277776508592069, 0.00020234708790667355, 0.002069885144010186, 4.3414445826783776e-05, 1.3313596447517284e-08, 5.367058292904403e-06, 1.835402485994564e-06, 1.88375236120919e-06], [0.14082886278629303, 1.1845211702166125e-05, 5.530226189875975e-06, 1.324829934645777e-08, 1.0521376907490776e-06, 0.00016863358905538917, 0.0002495705848559737, 0.0024922797456383705, 0.004934253636747599, 0.8414005041122437, 0.005519691854715347, 0.001057462184689939, 0.00063498126110062, 0.002658841433003545, 6.1484738580475096e-06, 3.935813026600954e-07, 2.125534592778422e-06, 2.7989510272163898e-05], [0.014280306175351143, 2.1783912416140083e-06, 7.083266609697603e-06, 1.0570460062808706e-06, 2.475643690047491e-09, 2.524159754102584e-06, 0.00011160022404510528, 0.000631219067145139, 0.0001234808296430856, 0.0006921718013472855, 0.9811609387397766, 0.0006429061759263277, 0.00023367961694020778, 0.0002919360704254359, 0.001753219054080546, 5.474518911796622e-05, 6.511367445227734e-08, 1.0672376447473653e-05], [0.21305908262729645, 6.4164701143454295e-06, 4.927616464556195e-05, 1.1418192116252612e-05, 3.9313894376391545e-05, 5.456512326418306e-07, 1.734764919092413e-05, 0.01289238128811121, 0.0014259163290262222, 0.0005643683834932745, 0.08194728195667267, 0.6249119639396667, 0.02508700080215931, 0.004005196038633585, 0.028185635805130005, 0.0075082783587276936, 0.00028168558492325246, 6.882397883600788e-06], [0.3131648600101471, 0.00014325641677714884, 1.251716457773e-05, 6.165157628856832e-06, 5.4389714932767674e-05, 2.563651833042968e-05, 1.9495937522151507e-06, 0.0007423133938573301, 0.003788087982684374, 0.0005043255514465272, 0.0014519902179017663, 0.0012273808242753148, 0.6157182455062866, 0.02032432146370411, 0.0014003474498167634, 0.0023109016474336386, 0.036123186349868774, 0.0030001727864146233], [0.054160669445991516, 0.00044216832611709833, 4.071924922754988e-05, 7.664349510605462e-08, 6.0129752910143e-07, 1.5371686458820477e-05, 4.197911493974971e-06, 3.656226397197315e-07, 1.5628640539944172e-05, 0.0004115327028557658, 0.0006462354212999344, 0.0003024066099897027, 0.0056999679654836655, 0.9197182059288025, 0.006426658481359482, 0.0017611597431823611, 0.001137402025051415, 0.009216568432748318], [0.07809707522392273, 5.080446135252714e-05, 0.0007621908443979919, 6.5304211602779105e-06, 2.258001643440366e-07, 1.3876475577490055e-06, 2.710369517444633e-05, 9.809818584471941e-05, 2.4921681074374646e-07, 9.472865940551856e-07, 0.0012395801022648811, 3.709628072101623e-05, 0.00018491533410269767, 0.0016968713607639074, 0.9087789058685303, 0.004269568715244532, 0.0015129372477531433, 0.0032356323208659887], [0.17066633701324463, 4.826418262382504e-06, 1.137328399636317e-05, 0.000284210400423035, 8.745058948989026e-06, 3.1658717603022524e-07, 8.453700957034016e-07, 3.21710467687808e-05, 4.564177743304754e-06, 7.2897137215477414e-09, 8.094887562037911e-06, 0.0006262508686631918, 0.001026083598844707, 0.00026980089023709297, 0.002226444659754634, 0.8102136850357056, 0.011468102224171162, 0.0031481480691581964], [0.9819633960723877, 4.9237827624892816e-05, 4.250970596331172e-05, 6.641042546107201e-06, 0.0003195524332113564, 1.1983257536485326e-05, 9.941965117832297e-08, 5.8651444305724e-06, 6.94038874371472e-07, 8.861777018864814e-07, 5.44163079041482e-08, 2.1367181943787728e-06, 0.00030731470906175673, 0.00016532155859749764, 4.380714744911529e-05, 0.0005344924866221845, 0.01441381499171257, 0.002132035791873932]], [[0.39489200711250305, 0.02204625867307186, 0.0026458282954990864, 0.01159547921270132, 0.0036052907817065716, 0.0023878177162259817, 0.08903733640909195, 0.15689076483249664, 0.0025186201091855764, 0.02099110372364521, 0.002248486503958702, 0.004801247268915176, 0.001952250604517758, 0.0015527078649029136, 0.0223524272441864, 0.0018148199887946248, 0.12508365511894226, 0.13358385860919952], [0.16048334538936615, 0.047392480075359344, 0.044589072465896606, 0.08688253164291382, 0.041184570640325546, 0.008246021345257759, 0.0736490860581398, 0.3237828314304352, 0.007572511676698923, 0.02278473600745201, 0.013851731084287167, 0.0118565633893013, 0.00785333476960659, 0.006260094232857227, 0.02087520621716976, 0.008656910620629787, 0.019339846447110176, 0.09473911672830582], [0.06920427083969116, 0.043371591717004776, 0.0901377722620964, 0.040832508355379105, 0.09944973140954971, 0.2677275836467743, 0.03472379595041275, 0.06433232873678207, 0.03974243998527527, 0.005408829543739557, 0.019162360578775406, 0.007829630747437477, 0.07842694967985153, 0.036679431796073914, 0.011454129591584206, 0.06721119582653046, 0.007029596716165543, 0.017275767400860786], [0.1724867820739746, 0.04343586415052414, 0.01760733500123024, 0.019348131492733955, 0.06568186730146408, 0.029142659157514572, 0.054439835250377655, 0.32231882214546204, 0.06533758342266083, 0.03852825611829758, 0.019002733752131462, 0.0274153221398592, 0.008182821795344353, 0.0059648361057043076, 0.018148181959986687, 0.005742782261222601, 0.013263885863125324, 0.07395224273204803], [0.23252911865711212, 0.055874958634376526, 0.031549546867609024, 0.04789920896291733, 0.03126436471939087, 0.05533749610185623, 0.06291335821151733, 0.1449284851551056, 0.06673690676689148, 0.02745319902896881, 0.05362660437822342, 0.03608410060405731, 0.050524938851594925, 0.0003653856983873993, 0.03840818628668785, 0.0008696380537003279, 0.020724471658468246, 0.04291000962257385], [0.08008098602294922, 0.022928940132260323, 0.14068228006362915, 0.0954984575510025, 0.15050409734249115, 0.049253422766923904, 0.043897949159145355, 0.05007218196988106, 0.060602620244026184, 0.008485059253871441, 0.023631403222680092, 0.018798165023326874, 0.17447718977928162, 0.0055432552471756935, 0.029616544023156166, 0.017652178183197975, 0.012269971892237663, 0.01600528135895729], [0.05511985346674919, 0.07158645242452621, 0.004468199331313372, 0.175722137093544, 0.012744980864226818, 0.0027828358579427004, 0.28895634412765503, 0.17016807198524475, 0.005900440271943808, 0.05074504762887955, 0.003614163026213646, 0.007532991468906403, 0.0014766146196052432, 0.0017118650721386075, 0.023814154788851738, 0.0013256032252684236, 0.081438347697258, 0.04089193418622017], [0.2908197343349457, 0.02826507017016411, 0.0011990772327408195, 0.025837013497948647, 0.002060960279777646, 0.0009624933009035885, 0.30213457345962524, 0.09826306253671646, 0.00041966894059441984, 0.017098285257816315, 0.001486459979787469, 0.0043169972486793995, 0.0006020214641466737, 0.00034968878026120365, 0.03694068640470505, 0.0004588896408677101, 0.1579936444759369, 0.03079170361161232], [0.12402020394802094, 0.011948339641094208, 0.0011898765806108713, 0.020197471603751183, 0.050678011029958725, 0.0024574967101216316, 0.017276862636208534, 0.08895281702280045, 0.028963686898350716, 0.22526906430721283, 0.0784665122628212, 0.12019772827625275, 0.007399360649287701, 0.004120205994695425, 0.06486991792917252, 0.004754344001412392, 0.04191708564758301, 0.10732103884220123], [0.12359782308340073, 0.010656408965587616, 0.02071237750351429, 0.011800779029726982, 0.01721263863146305, 0.02435126341879368, 0.01698436215519905, 0.12054549902677536, 0.07969961315393448, 0.020680248737335205, 0.09730646014213562, 0.022846568375825882, 0.07666688412427902, 0.06450553238391876, 0.03159169480204582, 0.11478938162326813, 0.035162732005119324, 0.11088975518941879], [0.09782757610082626, 0.007388404570519924, 0.005044019781053066, 0.00326895946636796, 0.023159876465797424, 0.00596447940915823, 0.013440991751849651, 0.18895354866981506, 0.12342680990695953, 0.12674902379512787, 0.01716296188533306, 0.04259251058101654, 0.03770536184310913, 0.03031543269753456, 0.023618968203663826, 0.020143067464232445, 0.03583249822258949, 0.19740556180477142], [0.20640504360198975, 0.009363381192088127, 0.0035297428257763386, 0.018866294994950294, 0.03449933975934982, 0.005321939941495657, 0.07170930504798889, 0.13955283164978027, 0.07702500373125076, 0.07358332723379135, 0.023019790649414062, 0.017129939049482346, 0.008651181124150753, 0.0006875517428852618, 0.02781076915562153, 0.000500042806379497, 0.13980016112327576, 0.1425444483757019], [0.31219518184661865, 0.020607436075806618, 0.009600479155778885, 0.0047058179043233395, 0.009457523003220558, 0.07032064348459244, 0.012713147327303886, 0.1267087161540985, 0.0606362447142601, 0.03936387971043587, 0.07745947688817978, 0.011968046426773071, 0.02099229395389557, 0.008630999363958836, 0.04130742326378822, 0.011619172058999538, 0.02766343206167221, 0.13405005633831024], [0.12629388272762299, 0.04244907200336456, 0.07159604132175446, 0.002706148661673069, 0.004937484860420227, 0.09398107975721359, 0.018261514604091644, 0.02743924967944622, 0.04724384471774101, 0.011913154274225235, 0.028138084337115288, 0.010348666459321976, 0.2663276791572571, 0.022994454950094223, 0.021977419033646584, 0.08914704620838165, 0.06695500016212463, 0.047290097922086716], [0.2702387571334839, 0.016799651086330414, 0.00453268364071846, 0.006030054297298193, 0.0070564900524914265, 0.008309820666909218, 0.018024872988462448, 0.13275162875652313, 0.023990165442228317, 0.07700489461421967, 0.014192071743309498, 0.021294837817549706, 0.0112102460116148, 0.01555623859167099, 0.025018444284796715, 0.030073784291744232, 0.07859326153993607, 0.23932211101055145], [0.22672238945960999, 0.01948077417910099, 0.06721559166908264, 0.0012209073174744844, 0.009652002714574337, 0.10364580154418945, 0.02503625489771366, 0.057965803891420364, 0.030476683750748634, 0.01357414573431015, 0.016671940684318542, 0.014131502248346806, 0.18003253638744354, 0.01716219261288643, 0.02286471240222454, 0.01857760362327099, 0.08029606938362122, 0.09527301788330078], [0.07141245156526566, 0.0225827656686306, 0.0011872698087245226, 0.03713677078485489, 0.0038320899475365877, 0.0010050373384729028, 0.09513930976390839, 0.06744261085987091, 0.01293413620442152, 0.09600874781608582, 0.007970948703587055, 0.013161406852304935, 0.0032170747872442007, 0.004113773815333843, 0.07525596767663956, 0.004240681417286396, 0.38145172595977783, 0.10190722346305847], [0.34228819608688354, 0.011734990403056145, 0.00036943439044989645, 0.006590693257749081, 0.0006899810978211462, 0.00039101496804505587, 0.10885000228881836, 0.03562074527144432, 0.0004658307007048279, 0.015167244710028172, 0.0014917603693902493, 0.004349757917225361, 0.0007103277021087706, 0.0005421526730060577, 0.061305686831474304, 0.0009432088118046522, 0.3642558455467224, 0.04423313960433006]], [[0.14792905747890472, 0.03498668596148491, 0.019579390063881874, 0.05981855094432831, 0.059724271297454834, 0.037036772817373276, 0.05486282706260681, 0.10872121155261993, 0.06024261564016342, 0.0428982675075531, 0.06642161309719086, 0.038540445268154144, 0.0579729788005352, 0.02296305261552334, 0.02204216830432415, 0.02353832498192787, 0.05611332505941391, 0.08660837262868881], [0.19013240933418274, 0.04189268872141838, 0.025937959551811218, 0.13410022854804993, 0.01951706036925316, 0.009879845194518566, 0.07783842086791992, 0.061417106539011, 0.0566277839243412, 0.032437488436698914, 0.050880324095487595, 0.04894096031785011, 0.05163358524441719, 0.011997482739388943, 0.025524768978357315, 0.014625992625951767, 0.10081787407398224, 0.045798081904649734], [0.1246684193611145, 0.06460680812597275, 0.0981350839138031, 0.10616064071655273, 0.011994154192507267, 0.017856644466519356, 0.04254448413848877, 0.03808651119470596, 0.09900987893342972, 0.030397387221455574, 0.040455419570207596, 0.027776040136814117, 0.07078514993190765, 0.026169903576374054, 0.0388130247592926, 0.0629597082734108, 0.0679694265127182, 0.03161134943366051], [0.12258679419755936, 0.018676310777664185, 0.006911942735314369, 0.1890057474374771, 0.010696975514292717, 0.03714485466480255, 0.02513519860804081, 0.02967340126633644, 0.1410321295261383, 0.042692117393016815, 0.1184859499335289, 0.06546910107135773, 0.09963919967412949, 0.013239397667348385, 0.001846865052357316, 0.012199523858726025, 0.040576327592134476, 0.024988120421767235], [0.16715194284915924, 0.01942441798746586, 0.004433324094861746, 0.05983338877558708, 0.17111241817474365, 0.10635028779506683, 0.02918528951704502, 0.059668347239494324, 0.04643208906054497, 0.05999617651104927, 0.1008620485663414, 0.04837029427289963, 0.018759585916996002, 0.008165769279003143, 0.011297622695565224, 0.013497565872967243, 0.02864782139658928, 0.04681163281202316], [0.27442044019699097, 0.008151579648256302, 0.004173852037638426, 0.02657933719456196, 0.06976152211427689, 0.26898154616355896, 0.032419878989458084, 0.07530572265386581, 0.04190901294350624, 0.027518443763256073, 0.020532604306936264, 0.013028193265199661, 0.012273089028894901, 0.007838346064090729, 0.010757040232419968, 0.011679287999868393, 0.04367825388908386, 0.05099178105592728], [0.24429677426815033, 0.020901745185256004, 0.013802478089928627, 0.11879374831914902, 0.07859978824853897, 0.027111733332276344, 0.034618642181158066, 0.1261853724718094, 0.03789544478058815, 0.026279829442501068, 0.052114337682724, 0.033711988478899, 0.03193630650639534, 0.004998058546334505, 0.0038671817164868116, 0.00989419873803854, 0.04207669943571091, 0.09291569888591766], [0.6332403421401978, 0.018668662756681442, 0.009326382540166378, 0.017085108906030655, 0.009716080501675606, 0.010530322790145874, 0.0628371387720108, 0.04825675114989281, 0.002646763576194644, 0.007480057422071695, 0.004814140498638153, 0.0042725177481770515, 0.01312720775604248, 0.02282847836613655, 0.00802543479949236, 0.010398240759968758, 0.0663447231054306, 0.05040161311626434], [0.12318334728479385, 0.025060202926397324, 0.008817941881716251, 0.16164886951446533, 0.05327509716153145, 0.030514447018504143, 0.01399667002260685, 0.06494036316871643, 0.13027329742908478, 0.011044777929782867, 0.11035476624965668, 0.07884609699249268, 0.05927637964487076, 0.004102251026779413, 0.003902529599145055, 0.031521789729595184, 0.017985636368393898, 0.07125548273324966], [0.23466937243938446, 0.038542017340660095, 0.006282054353505373, 0.12152427434921265, 0.031735535711050034, 0.023476243019104004, 0.02817055769264698, 0.10937408357858658, 0.03893574699759483, 0.012147219851613045, 0.0692090168595314, 0.05216589570045471, 0.04653779789805412, 0.008558327332139015, 0.008976468816399574, 0.025963859632611275, 0.03974919393658638, 0.10398227721452713], [0.15430141985416412, 0.018441665917634964, 0.004045779816806316, 0.10159175097942352, 0.026814932003617287, 0.018141107633709908, 0.020880384370684624, 0.07264574617147446, 0.13363893330097198, 0.0408371202647686, 0.19213669002056122, 0.09352292120456696, 0.033731792122125626, 0.0022783037275075912, 0.003915840294212103, 0.0069558629766106606, 0.02562100999057293, 0.050498832017183304], [0.13931094110012054, 0.029022768139839172, 0.006338905077427626, 0.1226004958152771, 0.0201227068901062, 0.01566593535244465, 0.026579398661851883, 0.06444656848907471, 0.06499504297971725, 0.017048567533493042, 0.18513089418411255, 0.12753307819366455, 0.054733458906412125, 0.004377479199320078, 0.010360384359955788, 0.009938989765942097, 0.03321867063641548, 0.06857580691576004], [0.2890412509441376, 0.05081595852971077, 0.04306190833449364, 0.07660036534070969, 0.014548806473612785, 0.015177651308476925, 0.029508378356695175, 0.07152348756790161, 0.022010015323758125, 0.043737322092056274, 0.052729107439517975, 0.03801875561475754, 0.12014839053153992, 0.024047259241342545, 0.014923715963959694, 0.01715315505862236, 0.02212044969201088, 0.054834116250276566], [0.12577328085899353, 0.09460897743701935, 0.014022246934473515, 0.0435977466404438, 0.012130707502365112, 0.003427795134484768, 0.024662379175424576, 0.014453177340328693, 0.01159041840583086, 0.00618252158164978, 0.009246110916137695, 0.009058262221515179, 0.03527715802192688, 0.16131755709648132, 0.022731546312570572, 0.37324458360671997, 0.026849912479519844, 0.011825636960566044], [0.38019999861717224, 0.022309618070721626, 0.00809379294514656, 0.03205467388033867, 0.0446072593331337, 0.022142110392451286, 0.0274101160466671, 0.15284675359725952, 0.032191529870033264, 0.01126316748559475, 0.027508998289704323, 0.03911349177360535, 0.023424658924341202, 0.00944837462157011, 0.00986282154917717, 0.00993255339562893, 0.02340724691748619, 0.12418286502361298], [0.24393364787101746, 0.06682218611240387, 0.01432123500853777, 0.010774508118629456, 0.007080251816660166, 0.006979026831686497, 0.051341138780117035, 0.017270419746637344, 0.01372787170112133, 0.01644003577530384, 0.0038793396670371294, 0.005176500417292118, 0.03291783854365349, 0.2787448763847351, 0.03293636813759804, 0.11778159439563751, 0.06818133592605591, 0.011691815219819546], [0.22507795691490173, 0.024672988802194595, 0.01405488420277834, 0.11070944368839264, 0.09822072088718414, 0.03419467434287071, 0.038059983402490616, 0.12456252425909042, 0.05209002643823624, 0.027792999520897865, 0.05349237099289894, 0.03947718068957329, 0.02461295574903488, 0.00591821176931262, 0.004162137862294912, 0.011706261895596981, 0.024197766557335854, 0.08699695020914078], [0.6475711464881897, 0.0176213588565588, 0.006612791679799557, 0.013723349198698997, 0.01201371755450964, 0.00707657914608717, 0.06364189088344574, 0.06721778959035873, 0.0030094855464994907, 0.009245350956916809, 0.00392666133120656, 0.004130053333938122, 0.009801246225833893, 0.012238729745149612, 0.008076163940131664, 0.00610748864710331, 0.06392064690589905, 0.04406551271677017]], [[0.7850435376167297, 0.022766709327697754, 0.014464317820966244, 0.020886369049549103, 0.010464177466928959, 0.006927211303263903, 0.028134476393461227, 0.025060897693037987, 0.006838500499725342, 0.004096251912415028, 0.007214589975774288, 0.004271169658750296, 0.005428660660982132, 0.005906756967306137, 0.00969067495316267, 0.008684039115905762, 0.018041886389255524, 0.016079679131507874], [0.9741997718811035, 0.012368910014629364, 0.0048215645365417, 0.0029488096479326487, 0.0004981555975973606, 4.6333938371390104e-05, 0.0019303084118291736, 0.001615455374121666, 5.842915561515838e-05, 4.905708192382008e-05, 2.480699185980484e-05, 3.632584775914438e-05, 5.987794793327339e-05, 9.25224885577336e-05, 0.00019502070790622383, 0.00015065664774738252, 0.0004884439404122531, 0.0004154797352384776], [0.9228028059005737, 0.03786777704954147, 0.008239811286330223, 0.016423994675278664, 0.006933682132512331, 0.001108477939851582, 0.0015944874612614512, 0.0017853878671303391, 0.000221596346818842, 0.0001776304270606488, 0.00010445620864629745, 8.64595131133683e-05, 0.0006069928058423102, 0.0003221659571863711, 9.26516077015549e-05, 0.0007138218497857451, 0.0005196069832891226, 0.00039828690933063626], [0.4282112717628479, 0.4454202353954315, 0.03936225175857544, 0.05475625395774841, 0.01839565485715866, 0.0032353918068110943, 0.006176779977977276, 0.0010159207740798593, 0.0002780909708235413, 8.516480011167005e-05, 1.4230552551453002e-05, 1.7294376448262483e-05, 0.00014249897503759712, 0.0002984421153087169, 0.00013796611165162176, 0.00038866675458848476, 0.0007611528853885829, 0.0013027505483478308], [0.6552793979644775, 0.13359013199806213, 0.0854690670967102, 0.08103126287460327, 0.022642431780695915, 0.0039414879865944386, 0.011781965382397175, 0.0027880887500941753, 0.00019600581435952336, 0.00017089264292735606, 5.965071977698244e-05, 0.0011639588046818972, 0.00012526428326964378, 8.069771865848452e-05, 0.0002704944636207074, 0.0002185264602303505, 0.0004760040028486401, 0.0007147506694309413], [0.4253208339214325, 0.1906057447195053, 0.048666246235370636, 0.25546011328697205, 0.022936012595891953, 0.007426503114402294, 0.028369177132844925, 0.016433557495474815, 0.0014987012837082148, 0.000863758847117424, 2.2498041289509274e-05, 0.00033393874764442444, 0.0003216054756194353, 0.0001719603023957461, 4.6713597839698195e-05, 0.0007747496129013598, 0.0001870750420494005, 0.0005607984494417906], [0.2658526599407196, 0.09405361115932465, 0.05932256206870079, 0.27032458782196045, 0.16983208060264587, 0.04381425306200981, 0.05155523866415024, 0.03560873493552208, 0.004092334304004908, 0.0011686180951073766, 0.00020289506937842816, 0.0003961050824727863, 0.0003523033519741148, 0.0002676123986020684, 0.00011905231804121286, 0.0007340072770603001, 0.0012232528533786535, 0.0010801480384543538], [0.9273274540901184, 0.011018110439181328, 0.0014982271241024137, 0.009167453274130821, 0.00520317954942584, 0.005039580166339874, 0.02124897390604019, 0.01726658083498478, 0.0011986525496467948, 0.0002975155075546354, 0.00013060661149211228, 3.0246405003708787e-05, 3.184476008755155e-05, 2.6090372557519004e-05, 1.6367004718631506e-05, 2.7775788112194277e-05, 0.0001107815041905269, 0.0003606786485761404], [0.7271817922592163, 0.010374600999057293, 0.0073190974071621895, 0.0060573117807507515, 0.00275930343195796, 0.005643139127641916, 0.1048792228102684, 0.12422090023756027, 0.002105931518599391, 0.005616179201751947, 0.0007770120282657444, 9.462193702347577e-05, 4.8138088459381834e-05, 0.00034775224048644304, 0.00011312586138956249, 8.765966776991263e-05, 0.00039916878449730575, 0.0019748806953430176], [0.20267407596111298, 0.005745159462094307, 0.007677736692130566, 0.020429085940122604, 0.006108550354838371, 0.01412333082407713, 0.07365680485963821, 0.5085815191268921, 0.07130033522844315, 0.07790541648864746, 0.008182051591575146, 0.001390489749610424, 0.001042623771354556, 0.00029208746855147183, 6.353092612698674e-05, 0.00016266366583295166, 0.00014923881099093705, 0.0005151964141987264], [0.16616642475128174, 0.0036189823877066374, 0.00048769928980618715, 0.0029770187102258205, 0.007385541684925556, 0.008336176164448261, 0.050789736211299896, 0.3248666524887085, 0.26981931924819946, 0.13859272003173828, 0.007985621690750122, 0.006483697798103094, 0.009369617328047752, 0.0012636736501008272, 0.00020437969942577183, 0.0004037464677821845, 0.0007173512713052332, 0.0005316843162290752], [0.12821099162101746, 0.0044145742431283, 0.0009954071138054132, 0.002128303749486804, 0.0021611806005239487, 0.007380824536085129, 0.034494224935770035, 0.15968385338783264, 0.2891254127025604, 0.1945846527814865, 0.14876329898834229, 0.013287138193845749, 0.009876780211925507, 0.0015770152676850557, 0.0012968709925189614, 0.00018557898874860257, 0.0009689975413493812, 0.000864856003317982], [0.12011424452066422, 0.003413159865885973, 0.0007312736706808209, 0.0015864836750552058, 0.0007508783601224422, 0.0024412127677351236, 0.030509086325764656, 0.13712970912456512, 0.07044210284948349, 0.13939370214939117, 0.4492643475532532, 0.013248862698674202, 0.010912884026765823, 0.00879144947975874, 0.00619144830852747, 0.0009317098883911967, 0.0016058858018368483, 0.002541552996262908], [0.4032190144062042, 0.005296158604323864, 0.003259530058130622, 0.0028756940737366676, 0.002089623361825943, 0.0012972737895324826, 0.011892837472259998, 0.11644971370697021, 0.06519916653633118, 0.050439219921827316, 0.05779176205396652, 0.024492133408784866, 0.15532392263412476, 0.024483175948262215, 0.03310240060091019, 0.017955956980586052, 0.015280639752745628, 0.009551718831062317], [0.07476947456598282, 0.002326613524928689, 0.0003993394202552736, 0.0014054127968847752, 0.0010949019342660904, 0.0011917719384655356, 0.0022318814881145954, 0.02894021011888981, 0.069755919277668, 0.0763229951262474, 0.07384335994720459, 0.050018660724163055, 0.3944796919822693, 0.060732077807188034, 0.09102877229452133, 0.022706177085638046, 0.036610111594200134, 0.012142613530158997], [0.1302720457315445, 0.008110039867460728, 0.0026833603624254465, 0.0023433652240782976, 0.001566243008710444, 0.002587416907772422, 0.006773964501917362, 0.03130154684185982, 0.016497280448675156, 0.05497581884264946, 0.050565898418426514, 0.017427094280719757, 0.162911057472229, 0.1921079456806183, 0.08237145841121674, 0.03821668401360512, 0.1098434254527092, 0.0894453153014183], [0.152701735496521, 0.0025931852869689465, 0.0030546975322067738, 0.0017097804229706526, 0.0005425452836789191, 0.0009917609859257936, 0.0018507870845496655, 0.009766452014446259, 0.0033482180442661047, 0.005448789335787296, 0.03585747629404068, 0.025317860767245293, 0.0851176530122757, 0.09430628269910812, 0.2655743360519409, 0.1018986850976944, 0.10384916514158249, 0.10607059299945831], [0.9491733312606812, 0.0004729126812890172, 0.00018275127513334155, 0.00029160824487917125, 9.985362703446299e-05, 2.807131750159897e-05, 0.0003357576497364789, 0.0013231775956228375, 0.0001215702504850924, 3.771951378439553e-05, 0.0005021545221097767, 0.0010137403151020408, 0.0012280866503715515, 0.0012795374495908618, 0.008841759525239468, 0.009323826991021633, 0.016825437545776367, 0.00891886930912733]], [[0.32095274329185486, 0.03657433018088341, 0.02903362736105919, 0.03491799533367157, 0.030993400141596794, 0.03070320375263691, 0.055084649473428726, 0.06062694638967514, 0.03818162903189659, 0.03331824764609337, 0.020391203463077545, 0.023547625169157982, 0.04050157964229584, 0.042799871414899826, 0.03753434121608734, 0.044783469289541245, 0.06417066603899002, 0.05588439851999283], [0.6270635724067688, 0.0196485947817564, 0.023481935262680054, 0.013402273878455162, 0.019236881285905838, 0.012086833827197552, 0.02805490233004093, 0.047903336584568024, 0.04328364506363869, 0.014899875037372112, 0.01421300508081913, 0.012750568799674511, 0.025568433105945587, 0.009706293232738972, 0.0230654738843441, 0.008721264079213142, 0.025293776765465736, 0.03161938488483429], [0.40536078810691833, 0.0664295181632042, 0.004981621168553829, 0.04389466345310211, 0.033493973314762115, 0.021935241296887398, 0.05180380493402481, 0.1565890908241272, 0.00575615931302309, 0.013801383785903454, 0.017679067328572273, 0.008369453251361847, 0.004379190970212221, 0.0235377699136734, 0.007902444340288639, 0.018700119107961655, 0.02836604416370392, 0.0870196670293808], [0.20111793279647827, 0.014174417592585087, 0.004988879431039095, 0.01141006126999855, 0.0034991896245628595, 0.004238980822265148, 0.028442423790693283, 0.07409588992595673, 0.049695130437612534, 0.012472258880734444, 0.42873212695121765, 0.022212248295545578, 0.008408998139202595, 0.008909761905670166, 0.020608950406312943, 0.004046416841447353, 0.04108922556042671, 0.06185708940029144], [0.537833034992218, 0.043125707656145096, 0.010494218207895756, 0.007883302867412567, 0.0003141312045045197, 0.0044804844073951244, 0.02271520160138607, 0.09478296339511871, 0.06536903232336044, 0.027581872418522835, 0.01890648528933525, 0.009558402933180332, 0.016625244170427322, 0.002810331294313073, 0.017916947603225708, 0.005031290464103222, 0.02980063483119011, 0.08477074652910233], [0.4576583802700043, 0.04723799228668213, 0.020154519006609917, 0.016620799899101257, 0.006878830958157778, 0.00012640160275623202, 0.05278441309928894, 0.13098731637001038, 0.014170721173286438, 0.011137793771922588, 0.010640672408044338, 0.009528091177344322, 0.021817849949002266, 0.014055797830224037, 0.018151266500353813, 0.01410852000117302, 0.05510832369327545, 0.09883230179548264], [0.4591291844844818, 0.04578638821840286, 0.015587068162858486, 0.03312048316001892, 0.04013102129101753, 0.025582343339920044, 0.03181188181042671, 0.07595562189817429, 0.03561205044388771, 0.029739975929260254, 0.01302055548876524, 0.011191270314157009, 0.030542010441422462, 0.025690553709864616, 0.020363423973321915, 0.014886744320392609, 0.032931577414274216, 0.05891789123415947], [0.2784324288368225, 0.04997860640287399, 0.03713328763842583, 0.024212682619690895, 0.021068213507533073, 0.02695470117032528, 0.04621801897883415, 0.0697326809167862, 0.041210729628801346, 0.04421441629528999, 0.019020747393369675, 0.02496943064033985, 0.03141140937805176, 0.062061190605163574, 0.03563620522618294, 0.0504850409924984, 0.061593230813741684, 0.07566703110933304], [0.2206444889307022, 0.13422392308712006, 0.024385832250118256, 0.13795572519302368, 0.07034482061862946, 0.004185260273516178, 0.024063846096396446, 0.1057710349559784, 0.003749046241864562, 0.02343466877937317, 0.017828140407800674, 0.010275355540215969, 0.05075773596763611, 0.01463311817497015, 0.02883198671042919, 0.011088571511209011, 0.027561143040657043, 0.09026536345481873], [0.29760977625846863, 0.042845938354730606, 0.016185998916625977, 0.03252869099378586, 0.026974651962518692, 0.017992114648222923, 0.021680792793631554, 0.15741170942783356, 0.031598351895809174, 0.0062066032551229, 0.018163586035370827, 0.023859389126300812, 0.031724076718091965, 0.050020165741443634, 0.026917416602373123, 0.027360402047634125, 0.024986760690808296, 0.14593352377414703], [0.09272105991840363, 0.027519790455698967, 0.011971518397331238, 0.5726126432418823, 0.007813136093318462, 0.008383861742913723, 0.01405258383601904, 0.08472687751054764, 0.013918137177824974, 0.011164353229105473, 0.0039016029331833124, 0.004482250194996595, 0.039570339024066925, 0.0021411278285086155, 0.009028732776641846, 0.006218467373400927, 0.015157578513026237, 0.07461586594581604], [0.2873852550983429, 0.054623767733573914, 0.021894726902246475, 0.042454060167074203, 0.03366519510746002, 0.02629113756120205, 0.030040334910154343, 0.11816948652267456, 0.07899630814790726, 0.035132285207509995, 0.01995816081762314, 0.007402085233479738, 0.08104204386472702, 0.008409936912357807, 0.030704550445079803, 0.012122640386223793, 0.02595130354166031, 0.08575669676065445], [0.22128544747829437, 0.047447945922613144, 0.006567740347236395, 0.04068082943558693, 0.04146323725581169, 0.03512491658329964, 0.03534490987658501, 0.12833952903747559, 0.02265271358191967, 0.03419968858361244, 0.13316914439201355, 0.04648708924651146, 0.0034302854910492897, 0.02634247951209545, 0.01799965836107731, 0.030645180493593216, 0.03299737721681595, 0.09582189470529556], [0.3617018461227417, 0.04116459935903549, 0.008840714581310749, 0.014528943225741386, 0.00550812715664506, 0.006845358293503523, 0.029756896197795868, 0.2224249243736267, 0.01954120583832264, 0.0301659032702446, 0.006673789583146572, 0.005295419134199619, 0.012324048206210136, 0.0002981895231641829, 0.014630616642534733, 0.0006355512305162847, 0.02802179753780365, 0.19164203107357025], [0.5071396231651306, 0.04375411197543144, 0.013780048117041588, 0.023201901465654373, 0.024100152775645256, 0.016465894877910614, 0.02381468191742897, 0.08282022923231125, 0.018101396039128304, 0.023930193856358528, 0.008438127115368843, 0.012465999461710453, 0.026234351098537445, 0.025290265679359436, 0.02187524549663067, 0.024708451703190804, 0.030083009973168373, 0.07379626482725143], [0.3178822100162506, 0.04834682494401932, 0.009358709678053856, 0.02278856560587883, 0.013860547915101051, 0.0042919316329061985, 0.0438031442463398, 0.18213459849357605, 0.03201836347579956, 0.024363262578845024, 0.05903524532914162, 0.012949815019965172, 0.017695829272270203, 0.0005349763086996973, 0.03758526220917702, 0.00028382777236402035, 0.040576592087745667, 0.13249021768569946], [0.4141971468925476, 0.03777381032705307, 0.014003231190145016, 0.03874066844582558, 0.053667355328798294, 0.028834225609898567, 0.02745012380182743, 0.07035838067531586, 0.04546866565942764, 0.0331701785326004, 0.015442561358213425, 0.011666304431855679, 0.036778368055820465, 0.03280104324221611, 0.021880999207496643, 0.01863778568804264, 0.0340559259057045, 0.06507326662540436], [0.2861727774143219, 0.04888245463371277, 0.03397905454039574, 0.021918145939707756, 0.022333864122629166, 0.025343287736177444, 0.04974432289600372, 0.06773857772350311, 0.03847179189324379, 0.0408741794526577, 0.020850878208875656, 0.02409864030778408, 0.031604405492544174, 0.061999306082725525, 0.04047291353344917, 0.0458093099296093, 0.06745870411396027, 0.07224731892347336]], [[0.408369779586792, 0.03505634889006615, 0.021179934963583946, 0.028733057901263237, 0.02711358666419983, 0.016126440837979317, 0.05544150993227959, 0.10631505399942398, 0.03143152967095375, 0.027992643415927887, 0.013471405953168869, 0.015986310318112373, 0.025467030704021454, 0.013928499072790146, 0.021340712904930115, 0.017212631180882454, 0.04656509310007095, 0.08826841413974762], [0.06896554678678513, 0.033680275082588196, 0.017749469727277756, 0.050417810678482056, 0.06906351447105408, 0.036670465022325516, 0.3020959496498108, 0.19343651831150055, 0.09715010970830917, 0.02232600934803486, 0.008740195073187351, 0.009343208745121956, 0.024505799636244774, 0.004607504699379206, 0.007195362355560064, 0.009229895658791065, 0.028202379122376442, 0.01661996729671955], [0.5029242038726807, 0.033069200813770294, 0.02205822430551052, 0.02090946026146412, 0.014966350048780441, 0.03134956955909729, 0.14056052267551422, 0.10759786516427994, 0.021950915455818176, 0.047625474631786346, 0.0012523866025730968, 0.001631913473829627, 0.0067148515954613686, 0.003383016213774681, 0.004118779674172401, 0.0074762990698218346, 0.019923577085137367, 0.012487323023378849], [0.22934319078922272, 0.022205989807844162, 0.0136062977835536, 0.03162691742181778, 0.01429093349725008, 0.014042750932276249, 0.1955702006816864, 0.15989677608013153, 0.10733915120363235, 0.04630756005644798, 0.025479964911937714, 0.008309511467814445, 0.0645226314663887, 0.0036043343134224415, 0.004278132226318121, 0.009147240780293941, 0.029910149052739143, 0.020518261939287186], [0.3622117340564728, 0.014993713237345219, 0.01384651754051447, 0.03163367137312889, 0.05010487884283066, 0.04280446469783783, 0.14077556133270264, 0.1313035488128662, 0.06882064789533615, 0.01705947145819664, 0.013378631323575974, 0.017888542264699936, 0.027234425768256187, 0.00826996099203825, 0.005576442461460829, 0.010906696319580078, 0.02877374365925789, 0.014417425729334354], [0.48655086755752563, 0.017427196726202965, 0.022890605032444, 0.01449177972972393, 0.01733502186834812, 0.005947625730186701, 0.1292327344417572, 0.12228163331747055, 0.034204915165901184, 0.026933247223496437, 0.003329632803797722, 0.007536906749010086, 0.02538595162332058, 0.00581948971375823, 0.006096417549997568, 0.007682587951421738, 0.04435443505644798, 0.022499026730656624], [0.2964383065700531, 0.027965154498815536, 0.03612606227397919, 0.04107418656349182, 0.042996831238269806, 0.03744421526789665, 0.09338419884443283, 0.11798610538244247, 0.029320187866687775, 0.024866674095392227, 0.02443331480026245, 0.02379337139427662, 0.06549882143735886, 0.02760680951178074, 0.027008505538105965, 0.03000299446284771, 0.030270664021372795, 0.023783622309565544], [0.4819127023220062, 0.013822713866829872, 0.02074730582535267, 0.02157505787909031, 0.03972107544541359, 0.022724293172359467, 0.06082776188850403, 0.07592664659023285, 0.018242247402668, 0.031167753040790558, 0.013463537208735943, 0.039993662387132645, 0.036997780203819275, 0.029822181910276413, 0.02084302343428135, 0.02088232897222042, 0.034400008618831635, 0.016929911449551582], [0.056054312735795975, 0.006313319317996502, 0.0012158898171037436, 0.00349437166005373, 0.00271207676269114, 0.0015541845932602882, 0.0364927314221859, 0.017471401020884514, 0.1366838663816452, 0.018559779971837997, 0.08776495605707169, 0.115309938788414, 0.04925312474370003, 0.023778444156050682, 0.06133226305246353, 0.03098786436021328, 0.3242274224758148, 0.026794016361236572], [0.13408945500850677, 0.004871328826993704, 0.003345697419717908, 0.002365753287449479, 0.0009690854349173605, 0.001131689641624689, 0.014263243414461613, 0.02796490490436554, 0.09567340463399887, 0.20290832221508026, 0.025506362318992615, 0.0154530955478549, 0.15131929516792297, 0.025246039032936096, 0.04153428599238396, 0.07492636144161224, 0.12040212005376816, 0.058029655367136], [0.22906184196472168, 0.0055916691198945045, 0.0009131956030614674, 0.010169045999646187, 0.0025512438733130693, 0.0022034896537661552, 0.015493785962462425, 0.016369299963116646, 0.11790825426578522, 0.009240138344466686, 0.030729399994015694, 0.04900454729795456, 0.04672228544950485, 0.010934597812592983, 0.0789826288819313, 0.020766522735357285, 0.2842444181442261, 0.06911369413137436], [0.19644580781459808, 0.00551061425358057, 0.0018531179521232843, 0.007916921749711037, 0.004361140541732311, 0.004134137649089098, 0.013740711845457554, 0.014988034032285213, 0.14277814328670502, 0.013482092879712582, 0.023822348564863205, 0.0281613077968359, 0.03135208785533905, 0.04663702845573425, 0.033958710730075836, 0.09542068839073181, 0.2534492313861847, 0.08198796212673187], [0.28343436121940613, 0.0070771025493741035, 0.006420825608074665, 0.009775864891707897, 0.003369865007698536, 0.004412220790982246, 0.0070615410804748535, 0.012595622800290585, 0.05553988739848137, 0.01248275488615036, 0.018742073327302933, 0.02628900483250618, 0.025735976174473763, 0.03934268280863762, 0.10289798676967621, 0.16256777942180634, 0.1360224485397339, 0.08623208105564117], [0.4982929825782776, 0.01369821559637785, 0.010060945525765419, 0.0033272462897002697, 0.0014470330206677318, 0.0022592630703002214, 0.010261907242238522, 0.015838004648685455, 0.016509616747498512, 0.1043868213891983, 0.002459038980305195, 0.006533654406666756, 0.01024779211729765, 0.006239604204893112, 0.06506447494029999, 0.031807880848646164, 0.1284162551164627, 0.07314921170473099], [0.278795450925827, 0.0068181464448571205, 0.004313440062105656, 0.008145646192133427, 0.0044907270930707455, 0.002635402837768197, 0.012903740629553795, 0.017193224281072617, 0.03523383289575577, 0.009247096255421638, 0.016994450241327286, 0.013084549456834793, 0.0637669563293457, 0.022920705378055573, 0.13854902982711792, 0.07305796444416046, 0.17300179600715637, 0.11884783208370209], [0.6750248670578003, 0.007412255275994539, 0.008796656504273415, 0.004824212286621332, 0.002028362127020955, 0.0020868421997874975, 0.011612888425588608, 0.013263799250125885, 0.006423336453735828, 0.03338874131441116, 0.001640498056076467, 0.004992990754544735, 0.011621568351984024, 0.0033482119906693697, 0.032354533672332764, 0.013690919615328312, 0.10904854536056519, 0.05844084545969963], [0.3663770854473114, 0.017352918162941933, 0.015988215804100037, 0.014442641288042068, 0.015929346904158592, 0.008700591512024403, 0.02076534554362297, 0.024614451453089714, 0.019669638946652412, 0.013633951544761658, 0.011758944019675255, 0.01584061235189438, 0.033272139728069305, 0.030184630304574966, 0.05806661769747734, 0.08683179318904877, 0.13217227160930634, 0.11439887434244156], [0.7920008301734924, 0.01288311742246151, 0.012327831238508224, 0.010148278437554836, 0.013315784744918346, 0.006200702860951424, 0.018509315326809883, 0.017847469076514244, 0.006493482738733292, 0.008002284914255142, 0.0024569823872298002, 0.008124521002173424, 0.007288898807018995, 0.009198271669447422, 0.00979009922593832, 0.012786882929503918, 0.030893875285983086, 0.021731317043304443]], [[0.5366690754890442, 0.003622647374868393, 0.0013749715872108936, 0.005464241839945316, 0.0007989861769601703, 0.0016929578268900514, 0.07662682235240936, 0.14350590109825134, 0.002438287017866969, 0.002076012548059225, 0.0009762230329215527, 0.0007108587305992842, 0.0016881815390661359, 0.000833998725283891, 0.007657819893211126, 0.0015281193191185594, 0.09726191312074661, 0.11507291346788406], [0.7476437091827393, 0.005793314892798662, 0.007370953448116779, 0.01274452731013298, 0.004154524765908718, 0.005501919891685247, 0.04292525351047516, 0.07215248793363571, 0.003895572619512677, 0.0046030315570533276, 0.0015689623542129993, 0.0015363380080088973, 0.004243482835590839, 0.0012046769261360168, 0.00876053050160408, 0.004000014625489712, 0.0312128197401762, 0.040687885135412216], [0.41057100892066956, 0.004235431086272001, 0.0935913622379303, 0.008988595567643642, 0.005695252679288387, 0.01266716793179512, 0.11559569835662842, 0.11617811024188995, 0.011631682515144348, 0.0019818341825157404, 0.002263003960251808, 0.0008509937906637788, 0.0038880568463355303, 0.016327813267707825, 0.013477391563355923, 0.014028520323336124, 0.06948627531528473, 0.09854185581207275], [0.7977582216262817, 0.01403262559324503, 0.02012540027499199, 0.005823857616633177, 0.013389755971729755, 0.01366534922271967, 0.03113771416246891, 0.03722434863448143, 0.00387822138145566, 0.003597147995606065, 0.008413403294980526, 0.0023797473404556513, 0.007234296761453152, 0.0005333960871212184, 0.006523129530251026, 0.0018565626814961433, 0.016272224485874176, 0.01615455001592636], [0.7144118547439575, 0.004490814171731472, 0.009089356288313866, 0.016648825258016586, 0.0068082427605986595, 0.008522897958755493, 0.0952150821685791, 0.017895516008138657, 0.0031830386724323034, 0.006248298101127148, 0.016491547226905823, 0.004628240596503019, 0.0006927225622348487, 0.00023026001872494817, 0.021265724673867226, 0.0028325356543064117, 0.061630215495824814, 0.009714934043586254], [0.580128014087677, 0.0014100928092375398, 0.012978419661521912, 0.03847270458936691, 0.008458132855594158, 0.029307609423995018, 0.1158686950802803, 0.048847898840904236, 0.003374591236934066, 0.002322552027180791, 0.00578411016613245, 0.001701221102848649, 0.0034428087528795004, 0.0022403306793421507, 0.011531194671988487, 0.012460039928555489, 0.08632586151361465, 0.035345666110515594], [0.5326424241065979, 0.05756990239024162, 0.0041890074498951435, 0.019941158592700958, 0.004986030515283346, 0.009623748250305653, 0.13145168125629425, 0.08040367811918259, 0.006909061688929796, 0.009203621186316013, 0.001386898453347385, 0.0014663473702967167, 0.0028398260474205017, 0.00045767627307213843, 0.014728989452123642, 0.0012288212310522795, 0.08132188767194748, 0.03964913263916969], [0.00971802044659853, 0.9268496036529541, 0.0001258047268493101, 0.0023365917149931192, 0.00045404673437587917, 0.0008377744816243649, 0.029127564281225204, 0.00255272607319057, 0.0011999203125014901, 0.00375361368060112, 0.00029474886832758784, 0.00014692865079268813, 0.00014038280642125756, 2.9349546821322292e-05, 0.0035889206919819117, 8.830726437736303e-05, 0.017561888322234154, 0.0011938815005123615], [0.8898469805717468, 0.0020249527879059315, 0.001647873199544847, 0.003878379240632057, 0.0026345786172896624, 0.005133132450282574, 0.006491037551313639, 0.010614462196826935, 0.0007832538103684783, 0.011005867272615433, 0.020105093717575073, 0.006649763789027929, 0.00471733370795846, 0.00035033453605137765, 0.007814125157892704, 0.0009516734280623496, 0.014169585891067982, 0.011181444860994816], [0.6683849692344666, 0.0027591066900640726, 0.005099059082567692, 0.008784572593867779, 0.012027677148580551, 0.008761029690504074, 0.020289359614253044, 0.04242658615112305, 0.015637166798114777, 0.004741532262414694, 0.038531817495822906, 0.004747455008327961, 0.06035982817411423, 0.0014377031475305557, 0.014959566295146942, 0.007492058910429478, 0.03750487044453621, 0.046055711805820465], [0.5836392045021057, 0.00301366881467402, 0.011753669008612633, 0.005870434921234846, 0.03096615895628929, 0.03347928822040558, 0.014409626834094524, 0.030009882524609566, 0.02084701880812645, 0.015249492600560188, 0.04805629700422287, 0.012746850959956646, 0.07033456116914749, 0.018724657595157623, 0.021927574649453163, 0.014744327403604984, 0.028354696929454803, 0.03587266057729721], [0.7269658446311951, 0.002810519654303789, 0.0014270178508013487, 0.0040729474276304245, 0.008698376826941967, 0.003017868148162961, 0.026324043050408363, 0.036773886531591415, 0.007537943311035633, 0.0046029966324567795, 0.08471303433179855, 0.0006976778386160731, 0.001984714763239026, 0.0005935259978286922, 0.013348122127354145, 0.000672360067255795, 0.0434911772608757, 0.032267890870571136], [0.1909598857164383, 0.002218226669356227, 0.04354230687022209, 0.0031411289237439632, 0.0317499116063118, 0.029576806351542473, 0.009627311490476131, 0.05955741927027702, 0.020811431109905243, 0.015366451814770699, 0.3453698456287384, 0.010871455073356628, 0.011228853836655617, 0.03652256727218628, 0.03608296439051628, 0.08023582398891449, 0.013983037322759628, 0.05915457010269165], [0.35163426399230957, 0.0008202367462217808, 0.1756528913974762, 0.002688102889806032, 0.0006956520956009626, 0.005062268115580082, 0.015927782282233238, 0.04864279180765152, 0.0007693024817854166, 0.003908826503902674, 0.0011139789130538702, 0.0014374339953064919, 0.005322156939655542, 0.03729965537786484, 0.016580544412136078, 0.23512229323387146, 0.04215899482369423, 0.05516286566853523], [0.6542384624481201, 0.013341977261006832, 0.0014062949921935797, 0.003854511072859168, 0.003644242649897933, 0.01004706509411335, 0.03670203313231468, 0.06471146643161774, 0.007959761656820774, 0.021662766113877296, 0.006820282898843288, 0.002217019209638238, 0.005670372396707535, 0.003168731462210417, 0.009270092472434044, 0.01030033826828003, 0.07503320276737213, 0.06995134800672531], [0.5125508904457092, 0.0007114954059943557, 0.06258583813905716, 0.0038234409876167774, 0.0013585267588496208, 0.006350864190608263, 0.03643873706459999, 0.07522773742675781, 0.0020177443511784077, 0.0027568931691348553, 0.00243608420714736, 0.0009067946230061352, 0.003214168595150113, 0.055364128202199936, 0.03436872363090515, 0.025142379105091095, 0.08193350583314896, 0.09281198680400848], [0.4528334438800812, 0.046775784343481064, 0.0023994590155780315, 0.010029671713709831, 0.003374067135155201, 0.009358654730021954, 0.08623510599136353, 0.08375757187604904, 0.011989478021860123, 0.0222439244389534, 0.003146054921671748, 0.00264567113481462, 0.005251118913292885, 0.0009569644462317228, 0.030345061793923378, 0.0025939031038433313, 0.1459210216999054, 0.08014315366744995], [0.009822417050600052, 0.9220951199531555, 8.508333849022165e-05, 0.0016367516946047544, 0.00032516688224859536, 0.0007503070519305766, 0.022758150473237038, 0.0022131050936877728, 0.0013712452491745353, 0.004216616973280907, 0.0003850214707199484, 0.00022286511375568807, 0.00021498357818927616, 5.067864913144149e-05, 0.005622716620564461, 0.00015210622223094106, 0.026598691940307617, 0.0014788454864174128]], [[0.6988199949264526, 0.02446332573890686, 0.023238837718963623, 0.05681376904249191, 0.015044620260596275, 0.02523927390575409, 0.07497381418943405, 0.019924655556678772, 0.0039170184172689915, 0.005693632178008556, 0.008818036876618862, 0.0023239036090672016, 0.00259804236702621, 0.004800260998308659, 0.0070388056337833405, 0.005454113706946373, 0.006428851746022701, 0.014409095048904419], [0.013341831043362617, 0.0008474225178360939, 0.9848886728286743, 0.0003252850438002497, 3.284115518908948e-05, 7.838845340302214e-05, 0.0004358543665148318, 1.6745108950999565e-05, 4.49569513560899e-11, 4.535700526275832e-08, 1.4393264358147917e-08, 5.9427054388550005e-09, 1.540064853422507e-09, 1.8937289780751598e-07, 3.089757956331596e-05, 3.2213396394809024e-08, 2.6652262619109024e-08, 1.8060620732285315e-06], [0.016757259145379066, 3.939195812563412e-05, 0.00015269739378709346, 0.9822005033493042, 1.0627559277054388e-05, 5.98492761128e-06, 2.9358609026530758e-05, 0.0007914693560451269, 1.1113898246151166e-08, 4.089467653400902e-11, 5.528360436102275e-09, 2.485808003882539e-09, 1.9737870005087643e-08, 1.4224051936295723e-09, 5.080819320824048e-08, 1.195170079881791e-05, 3.294393735586709e-08, 5.967586957922322e-07], [0.0004009148688055575, 3.204210952389985e-05, 1.221826551045524e-05, 0.0002016672515310347, 0.9991436004638672, 0.00019874548888765275, 1.8649001276571653e-06, 7.074337190715596e-06, 8.819974368634576e-07, 1.8065829943125777e-09, 1.0594131095390674e-13, 2.5901758515800566e-09, 1.3346166838346107e-08, 6.299339383453173e-10, 1.2644171300257856e-11, 3.976017737272741e-08, 8.474834203298087e-07, 6.754097725547581e-09], [0.0003587817191146314, 2.6316067305742763e-05, 4.572898433252703e-06, 2.4423518425464863e-06, 5.808041532873176e-05, 0.9995415210723877, 3.414513230381999e-06, 2.0265329112589825e-06, 4.818289767172246e-08, 5.275412036098714e-07, 2.217931047154842e-11, 2.2645742973979172e-13, 3.272058846093273e-09, 3.3963922785318346e-09, 1.1384405917969076e-10, 3.8265588614416757e-11, 1.1788037213023017e-08, 2.29210922952916e-06], [0.015196706168353558, 7.419531175401062e-05, 0.0028927151579409838, 0.000120595570479054, 3.3542612072778866e-05, 0.0021127702202647924, 0.9783214926719666, 0.0012234512250870466, 1.1561445489860489e-07, 2.0427347408258356e-05, 1.3304534149938263e-06, 3.7648857365013555e-09, 9.718277571568734e-11, 2.0385114396503923e-07, 1.7179965894342786e-08, 4.622046745339503e-09, 9.476370799177403e-10, 2.3533702915301546e-06], [0.002963780425488949, 8.982213195452005e-09, 1.9472548956400715e-05, 0.000149362109368667, 3.970318630308611e-06, 1.0803350050991867e-05, 0.00016276916721835732, 0.9966842532157898, 2.391960606473731e-06, 6.501964548988326e-07, 6.362016051753017e-07, 1.849159161793068e-06, 5.04624919628327e-09, 3.246320573468964e-11, 1.1304641667209125e-08, 3.511788904120294e-08, 2.4341068050048875e-10, 1.4723229302404661e-09], [0.9925260543823242, 1.9126520101053757e-07, 4.559054911368321e-09, 2.2080048438510858e-05, 5.6178239901782945e-05, 5.3035724704386666e-05, 2.396391937509179e-05, 0.003012673929333687, 0.004292801953852177, 4.835069830733119e-06, 1.1449141084085568e-06, 3.699454396155488e-07, 6.412969923985656e-06, 2.379197816537726e-08, 8.060397835296662e-12, 1.184558868772001e-07, 4.14019485361905e-09, 8.156995079389162e-09], [0.010987430810928345, 6.847181452940276e-07, 1.0658988003342529e-07, 1.7567004795271401e-10, 7.082275601533183e-07, 0.00010182694677496329, 2.501020753697958e-05, 0.0001637170644244179, 0.0007245627348311245, 0.9876676201820374, 0.00010785678023239598, 3.1518368359684246e-06, 0.000143780154758133, 7.307147461688146e-05, 4.909373529926597e-08, 9.7755947781053e-10, 9.327982297691051e-08, 2.2955644851663237e-07], [0.0016571589512750506, 5.952424775301779e-09, 1.5615177062500152e-07, 1.0605673006480743e-09, 2.2828247538825286e-12, 1.3131984815117903e-06, 1.5593508578604087e-05, 0.00022414101113099605, 2.13609610000276e-06, 0.00021186079538892955, 0.997867226600647, 6.5256031120952684e-06, 1.8846486682377872e-06, 6.742739969922695e-06, 5.058571787230903e-06, 2.0170389802842692e-08, 2.096240498891677e-12, 1.3869603776583972e-07], [0.0002593377430457622, 4.657012969699892e-11, 6.885110792609339e-08, 2.8085489489626525e-10, 6.75636546709768e-10, 1.4096267555996356e-11, 9.013970903026802e-09, 8.146520849550143e-05, 1.4211375400918769e-06, 4.841902409680188e-06, 9.614925511414185e-05, 0.9992832541465759, 0.00024037256662268192, 1.3141982435627142e-06, 4.253809493093286e-06, 2.7584657800616696e-05, 4.990279300898237e-09, 7.753376413122126e-11], [0.00044669152703136206, 8.519777772164616e-09, 1.2958460970935448e-09, 2.313225833106003e-09, 5.398929303623845e-08, 4.3004792615874976e-08, 3.2249435760745016e-11, 8.971195711637847e-06, 0.00023515900829806924, 4.9415182729717344e-05, 1.5280746083590202e-05, 0.000235294719459489, 0.9988503456115723, 0.00011070170148741454, 6.799958100600634e-06, 1.8666256437427364e-05, 2.259231223433744e-05, 9.26803735978865e-08], [0.01979576237499714, 4.799546513822861e-05, 1.5093838783286628e-06, 1.01656738582534e-09, 3.390870872976848e-08, 6.431868087020121e-07, 8.91178402184778e-08, 1.1895791907079456e-08, 5.213615281718376e-07, 0.0006530119571834803, 0.00012434078962542117, 1.98064972209977e-05, 0.006899585481733084, 0.9715622067451477, 0.0002242482005385682, 5.057191810919903e-05, 0.00012590381084010005, 0.0004937250050716102], [0.5682762861251831, 6.5138433456013445e-06, 0.0012812350178137422, 1.292601297109286e-07, 3.5556232957922873e-10, 1.5354676463630312e-07, 3.551062491169432e-06, 1.3018774552620016e-05, 9.604872452939617e-10, 1.7327263776678592e-05, 0.0004324207257013768, 1.2228758350829594e-05, 0.00012216468167025596, 0.010407127439975739, 0.41521933674812317, 0.0005413384060375392, 0.00017712026601657271, 0.0034900775644928217], [0.0002477786620147526, 4.71336880636386e-09, 6.428090415511178e-08, 1.3842650332662743e-06, 2.3124897552406765e-09, 6.209595337924867e-11, 1.3911388707654737e-10, 3.643642187967089e-08, 1.7116922323978656e-09, 1.6635194740807768e-12, 1.1772953456556934e-07, 5.744476948166266e-05, 4.821693437406793e-05, 6.748380656063091e-06, 0.00016936886822804809, 0.99945467710495, 1.0535017281654291e-05, 3.677964286907809e-06], [0.02406776137650013, 3.193907332388335e-06, 7.033435167613789e-07, 2.657408515460702e-07, 0.00015324054402299225, 5.188976714975979e-08, 1.0205133404994626e-09, 1.2763524637193768e-07, 4.50725501366378e-08, 8.177244126272853e-08, 7.64057705993082e-11, 3.8804367363809433e-07, 0.0003469078801572323, 0.0005105736781843007, 6.631627002207097e-06, 0.0013494141167029738, 0.9733189940452576, 0.00024157902225852013], [0.01812838576734066, 9.623124242352787e-06, 1.1866019633544056e-07, 2.903189466607614e-09, 6.353751746956959e-09, 4.386985892779194e-05, 4.6549812893204034e-09, 1.3614659399863172e-09, 7.137205493279453e-09, 1.3712290858336473e-08, 4.2976715519671416e-09, 2.2693813842011856e-11, 2.828378910635365e-06, 0.00047104014083743095, 3.3721429645083845e-05, 3.551002373569645e-05, 0.0006022073212079704, 0.9806727766990662], [0.9999648332595825, 2.0680444023923883e-08, 5.223843800195027e-06, 2.6364961769331785e-08, 1.4620356036942894e-09, 2.67318589486365e-09, 4.545575393422041e-06, 3.3507923546949314e-08, 1.0577675887968319e-12, 5.436106079170777e-11, 6.580465616856657e-10, 2.563935452837285e-10, 1.9753497448871116e-11, 2.0941297407262027e-07, 3.203773758286843e-06, 3.4816257539205253e-06, 4.98498536671832e-07, 1.7971038687392138e-05]]], [[[0.41048306226730347, 0.022179385647177696, 0.031881626695394516, 0.022729504853487015, 0.009945773519575596, 0.008917178958654404, 0.060166239738464355, 0.1390417367219925, 0.012219917960464954, 0.011785422451794147, 0.014031385071575642, 0.013973420485854149, 0.012329917401075363, 0.006504470016807318, 0.015355909243226051, 0.014424142427742481, 0.06056307628750801, 0.13346777856349945], [0.24250046908855438, 0.030895112082362175, 0.17349740862846375, 0.03962859883904457, 0.006432553753256798, 0.03699127584695816, 0.08813225477933884, 0.09250285476446152, 0.01353526022285223, 0.021609336137771606, 0.01567075029015541, 0.018382001668214798, 0.01772882416844368, 0.012122666463255882, 0.02365565113723278, 0.019388854503631592, 0.061836324632167816, 0.08548979461193085], [0.06801578402519226, 0.04271895810961723, 0.13268591463565826, 0.03221091628074646, 0.012149874120950699, 0.0019990515429526567, 0.04999067634344101, 0.20187048614025116, 0.009034995920956135, 0.026581672951579094, 0.0026425218675285578, 0.013566527515649796, 0.06600767374038696, 0.020262347534298897, 0.020097533240914345, 0.07930516451597214, 0.042383212596178055, 0.17847666144371033], [0.39360007643699646, 0.015700040385127068, 0.0993192195892334, 0.014618759043514729, 0.005232505965977907, 0.01498157624155283, 0.055641721934080124, 0.1484028697013855, 0.01736396551132202, 0.015614712610840797, 0.0061594718135893345, 0.009455908089876175, 0.014260327443480492, 0.0028207646682858467, 0.009834682568907738, 0.002505263313651085, 0.03908107057213783, 0.13540704548358917], [0.45644986629486084, 0.015692656859755516, 0.014548963867127895, 0.015509076416492462, 0.006509296130388975, 0.024150501936674118, 0.0357629656791687, 0.15326392650604248, 0.007947958074510098, 0.02711547538638115, 0.015058889053761959, 0.007829043082892895, 0.005529699847102165, 0.01854166015982628, 0.009472601115703583, 0.007673527579754591, 0.030018258839845657, 0.1489255577325821], [0.1728684902191162, 0.0342039056122303, 0.003396799322217703, 0.03817978873848915, 0.004363297019153833, 0.007052283268421888, 0.0894412100315094, 0.2809889018535614, 0.008164633065462112, 0.01778312772512436, 0.0023928419686853886, 0.005890576168894768, 0.0025511698331683874, 0.0013909951085224748, 0.014290428720414639, 0.0005463556735776365, 0.05887413024902344, 0.25762107968330383], [0.5288692116737366, 0.009768236428499222, 0.006482081022113562, 0.014649521559476852, 0.007647046819329262, 0.008163033053278923, 0.03254604712128639, 0.16374899446964264, 0.006695815362036228, 0.008876500651240349, 0.005264695733785629, 0.007607227191329002, 0.005558808334171772, 0.0017663369653746486, 0.0048037078231573105, 0.003458920167759061, 0.025130221620202065, 0.15896359086036682], [0.6415647268295288, 0.00712309405207634, 0.016498085111379623, 0.0071295504458248615, 0.0022226290311664343, 0.002763110212981701, 0.0335630364716053, 0.11134777218103409, 0.00272642495110631, 0.0053002964705228806, 0.0032272757962346077, 0.0013970502186566591, 0.0020886678248643875, 0.010999124497175217, 0.0033246739767491817, 0.004370503593236208, 0.03676392883062363, 0.10759011656045914], [0.6517054438591003, 0.00446524890139699, 0.0008362498483620584, 0.021132897585630417, 0.003092499217018485, 0.010977929458022118, 0.025190824642777443, 0.11402782052755356, 0.005206739064306021, 0.00602384191006422, 0.00844753161072731, 0.006036211270838976, 0.010916400700807571, 0.0010213990462943912, 0.004242137540131807, 0.003119266591966152, 0.02289613150060177, 0.10066135227680206], [0.31994709372520447, 0.016088590025901794, 0.23362354934215546, 0.011928193271160126, 0.0039856028743088245, 0.018287088721990585, 0.05351793393492699, 0.09430834650993347, 0.01729806326329708, 0.005375312641263008, 0.03370123729109764, 0.011579162441194057, 0.02333967573940754, 0.002992469584569335, 0.015329686924815178, 0.007776186335831881, 0.048274535685777664, 0.08264711499214172], [0.522566020488739, 0.006948432419449091, 0.023267382755875587, 0.003349936567246914, 0.0018638058099895716, 0.003045848570764065, 0.032673127949237823, 0.16296552121639252, 0.005462600849568844, 0.009451394900679588, 0.007559807505458593, 0.0032505986746400595, 0.02731727622449398, 0.0027111023664474487, 0.004873099271208048, 0.0024479683488607407, 0.034602656960487366, 0.14564332365989685], [0.49064433574676514, 0.0100944759324193, 0.011842319741845131, 0.01189664751291275, 0.0049193138256669044, 0.018855731934309006, 0.047505538910627365, 0.17613446712493896, 0.003372772829607129, 0.0064629558473825455, 0.005381763447076082, 0.001827312633395195, 0.002642498118802905, 0.002953891409561038, 0.007185230031609535, 0.0014498066157102585, 0.035675905644893646, 0.161155104637146], [0.10472225397825241, 0.03256503865122795, 0.004003938753157854, 0.023036055266857147, 0.012121281586587429, 0.0007078967173583806, 0.05851662531495094, 0.23173949122428894, 0.019836943596601486, 0.026585500687360764, 0.027817875146865845, 0.006131441332399845, 0.08615343272686005, 0.05451568216085434, 0.029610533267259598, 0.0054361759684979916, 0.0736670047044754, 0.20283280313014984], [0.012466351501643658, 0.07768801599740982, 0.06678450852632523, 0.004964115098118782, 0.004168947227299213, 0.0012415117816999555, 0.0221115555614233, 0.16524186730384827, 0.00046833796659484506, 0.004404434934258461, 0.0006583996000699699, 0.006358356215059757, 0.0119535643607378, 0.016902990639209747, 0.007396238390356302, 0.4226495623588562, 0.0291607603430748, 0.14538045227527618], [0.3621971905231476, 0.015938591212034225, 0.016383256763219833, 0.014239253476262093, 0.007173337507992983, 0.007932120934128761, 0.03772057965397835, 0.19661113619804382, 0.01315724104642868, 0.01504933089017868, 0.013579693622887135, 0.013838274404406548, 0.02003900147974491, 0.017797917127609253, 0.006964103784412146, 0.019998494535684586, 0.039802223443984985, 0.18157818913459778], [0.013020187616348267, 0.07120100408792496, 0.057807307690382004, 0.009664873592555523, 0.0028674553614109755, 0.000877963553648442, 0.04227424040436745, 0.24330267310142517, 0.0010516524780541658, 0.012401130050420761, 0.0033770594745874405, 0.0016537930350750685, 0.0036120163276791573, 0.24096006155014038, 0.015868034213781357, 0.019589189440011978, 0.04584785923361778, 0.21462346613407135], [0.5698583722114563, 0.008143335580825806, 0.0043904767371714115, 0.010047337040305138, 0.005261255893856287, 0.008230789564549923, 0.029459677636623383, 0.148011714220047, 0.006483671721071005, 0.006472637411206961, 0.010877187363803387, 0.006797253619879484, 0.004722068551927805, 0.0023535615764558315, 0.005383889190852642, 0.0038744634948670864, 0.030855264514684677, 0.1387770026922226], [0.6395006775856018, 0.0071521359495818615, 0.01480559166520834, 0.006965959444642067, 0.002141870791092515, 0.0026967141311615705, 0.03302450478076935, 0.11340627074241638, 0.002611186122521758, 0.005183137953281403, 0.003307203995063901, 0.001387930242344737, 0.00210313918069005, 0.011551883071660995, 0.0032608776818960905, 0.004722073674201965, 0.03682675212621689, 0.10935207456350327]], [[0.46248865127563477, 0.031068457290530205, 0.006144278217107058, 0.014802747406065464, 0.012910256162285805, 0.007381013128906488, 0.03889605402946472, 0.155929833650589, 0.009618544019758701, 0.011196997947990894, 0.006434344686567783, 0.007767225615680218, 0.006640628445893526, 0.016391240060329437, 0.013254743069410324, 0.008501273579895496, 0.03108721598982811, 0.15948647260665894], [0.7185338735580444, 0.03322257846593857, 0.007092181593179703, 0.021706484258174896, 0.00033139539300464094, 0.0003377244283910841, 0.005087394267320633, 0.09028077870607376, 0.0007008712855167687, 0.00056145602138713, 3.4564713132567704e-05, 0.00018844239821191877, 0.005060547962784767, 0.0013642829144373536, 0.0018059726571664214, 0.0017627422930672765, 0.02495473064482212, 0.08697398751974106], [0.36571386456489563, 0.2619903087615967, 0.0011159830028191209, 0.03810329735279083, 0.0007117699133232236, 0.005627007689327002, 0.01440725289285183, 0.09368530660867691, 3.913603359251283e-05, 6.976300210226327e-05, 0.0005830798763781786, 3.003724486916326e-05, 0.0004242275608703494, 0.005111657083034515, 0.002605730900540948, 0.00026330730179324746, 0.005296613089740276, 0.20422163605690002], [0.387296199798584, 0.06860289722681046, 0.11096227169036865, 0.01818835362792015, 0.0004155013884883374, 0.0021947817876935005, 0.040356073528528214, 0.17851068079471588, 0.0003789684851653874, 0.0011449828743934631, 2.9739008823526092e-05, 3.424731767154299e-05, 5.128536213305779e-05, 0.0007720707799308002, 0.002867641858756542, 0.000668564869556576, 0.0037695772480219603, 0.18375623226165771], [0.18055981397628784, 0.005064310971647501, 0.001437961240299046, 0.5145166516304016, 0.010763626545667648, 0.0005054826615378261, 0.021132996305823326, 0.14820311963558197, 0.00032641549478285015, 6.97719442541711e-05, 0.00018894993991125375, 0.0007279908750206232, 2.3428314307238907e-05, 0.0004729516222141683, 0.00023648765636608005, 0.010569355450570583, 0.0037098033353686333, 0.10149092227220535], [0.1955549716949463, 0.018833233043551445, 0.0008443479891866446, 0.25352397561073303, 0.10342889279127121, 0.001610313425771892, 0.054462775588035583, 0.19899097084999084, 0.0001879141927929595, 0.0006254276959225535, 3.387433389434591e-05, 0.00013241295528132468, 0.00016516787582077086, 0.00031395681435242295, 4.2716143070720136e-05, 0.0006969004170969129, 0.022406326606869698, 0.1481458693742752], [0.32574132084846497, 0.03241702914237976, 0.004789676517248154, 0.06268501281738281, 0.011686540208756924, 0.05324592441320419, 0.09965179860591888, 0.17308513820171356, 0.004386698827147484, 0.0076475623063743114, 0.0005442131659947336, 0.00027243970544077456, 0.0005385929835028946, 0.0020362918730825186, 0.0006741533288732171, 0.00042387869325466454, 0.005234168376773596, 0.21493946015834808], [0.6877604126930237, 0.013357890769839287, 0.001155511592514813, 0.006766709499061108, 0.002177779795601964, 0.001057893387041986, 0.05776643753051758, 0.09329553693532944, 0.0047929598949849606, 0.009202925488352776, 0.004323957022279501, 0.0012017842382192612, 0.0036895843222737312, 0.002360130427405238, 0.006023014895617962, 0.0011016344651579857, 0.011989069171249866, 0.09197679162025452], [0.8074590563774109, 0.000195902626728639, 3.524066778481938e-05, 0.0005433170008473098, 9.587645763531327e-06, 2.5362987798871472e-05, 0.0032701732125133276, 0.13106048107147217, 0.0012684797402471304, 0.005972197744995356, 0.0009632279397919774, 0.00017421480151824653, 2.4209726689150557e-05, 3.083514093304984e-05, 8.695622091181576e-05, 6.428614597098203e-06, 0.00020260833844076842, 0.04867177456617355], [0.524001955986023, 0.00018371678015682846, 7.434788130922243e-05, 0.0013236504746600986, 6.052235221432056e-06, 0.0008484047721140087, 0.007680181413888931, 0.2548110783100128, 0.03919048607349396, 0.0037106696981936693, 0.019721752032637596, 0.0009970876853913069, 0.0008372269221581519, 0.0016092050354927778, 5.321136268321425e-05, 0.0001081439622794278, 0.0013496638275682926, 0.14349330961704254], [0.2536250948905945, 0.0003752741904463619, 0.00013067912368569523, 4.373935007606633e-05, 1.0266957133353571e-06, 0.0001126428905990906, 0.0093154888600111, 0.21323935687541962, 0.02657410502433777, 0.3312443792819977, 0.005489998962730169, 0.0015059432480484247, 0.0011901273392140865, 0.004189156461507082, 0.0007885210798121989, 1.26924023788888e-05, 0.002771033439785242, 0.14939069747924805], [0.02285807393491268, 0.000982922618277371, 0.00013445885269902647, 0.003244121326133609, 2.0011434571642894e-06, 0.0002213220577687025, 0.015251879580318928, 0.10891859978437424, 0.001978230429813266, 0.038025155663490295, 0.7124751806259155, 0.0017049299785867333, 0.0028317244723439217, 0.0137467160820961, 0.005167372990399599, 2.6511363103054464e-05, 0.0009032475645653903, 0.07152760028839111], [0.37545058131217957, 0.0016478166216984391, 7.552349416073412e-05, 0.001029294915497303, 3.1261133699445054e-06, 2.1159260086278664e-06, 0.0036964735481888056, 0.28425681591033936, 0.006151278968900442, 0.024861710146069527, 0.0802556574344635, 0.036044955253601074, 0.0008765638340264559, 0.014473755843937397, 0.0403493233025074, 0.0005863129044882953, 0.008269906975328922, 0.12196875363588333], [0.4672282338142395, 0.007776134647428989, 0.00041941917152144015, 0.0007148025324568152, 5.192075332161039e-05, 2.681213663890958e-05, 0.0013074689777567983, 0.1292279213666916, 0.0004764127661474049, 0.004360479302704334, 0.00026918231742456555, 0.01453615166246891, 0.1814325600862503, 0.0027088148053735495, 0.025264212861657143, 0.0007124324911274016, 0.04208560287952423, 0.12140141427516937], [0.20678310096263885, 0.017141200602054596, 7.342323078773916e-05, 0.00049034837866202, 0.0002311451971763745, 5.894497371627949e-05, 0.004617524333298206, 0.14960579574108124, 0.0006167823448777199, 0.0008483532583341002, 0.005989954341202974, 0.002454728353768587, 0.0249225664883852, 0.17643067240715027, 0.01925051398575306, 0.002727511106058955, 0.09475553035736084, 0.29300180077552795], [0.15218405425548553, 0.003848828375339508, 0.014599175192415714, 0.0006475598784163594, 2.1825951534992782e-06, 1.1759399967559148e-05, 0.0024566156789660454, 0.14633437991142273, 3.960045432904735e-05, 0.001628390746191144, 0.0011800596257671714, 0.003069070167839527, 0.00025940302293747663, 0.019904272630810738, 0.4424070417881012, 0.0008598743588663638, 0.02454233169555664, 0.1860254555940628], [0.4421442747116089, 0.002933231648057699, 0.0007026009261608124, 0.0031028022058308125, 0.0006425220635719597, 9.561469778418541e-05, 0.0027762209065258503, 0.15431268513202667, 0.0009203975787386298, 0.0004431812558323145, 0.00038735364796593785, 0.004089856054633856, 0.002761353272944689, 0.00552881695330143, 0.028393208980560303, 0.06665049493312836, 0.09242101013660431, 0.19169439375400543], [0.6866924166679382, 0.013480518013238907, 0.001036844332702458, 0.006195941008627415, 0.003718856954947114, 0.0009861482540145516, 0.026033669710159302, 0.09064270555973053, 0.004855248611420393, 0.00708780949935317, 0.002017053309828043, 0.0010867438977584243, 0.007539696991443634, 0.0035062998067587614, 0.008031816221773624, 0.0019054178847000003, 0.03764643892645836, 0.09753632545471191]], [[0.15915706753730774, 0.025982538238167763, 0.010177387855947018, 0.021579155698418617, 0.02142207697033882, 0.03453708440065384, 0.06742031127214432, 0.07876638323068619, 0.061091456562280655, 0.047820866107940674, 0.04052190110087395, 0.03116336464881897, 0.04537665471434593, 0.045751847326755524, 0.04754588380455971, 0.042364392429590225, 0.13755397498607635, 0.08176768571138382], [0.15448983013629913, 0.15827125310897827, 0.062254998832941055, 0.05895471200346947, 0.02546028234064579, 0.03648654744029045, 0.1135750338435173, 0.08567876368761063, 0.02455889992415905, 0.055267177522182465, 0.014423210173845291, 0.01291271299123764, 0.020236840471625328, 0.031339652836322784, 0.01958671770989895, 0.01426240336149931, 0.035524770617485046, 0.07671613246202469], [0.10699436068534851, 0.03320922702550888, 0.4373771548271179, 0.021668212488293648, 0.001900972449220717, 0.014281497336924076, 0.048032015562057495, 0.060496117919683456, 0.01755484752357006, 0.014646841213107109, 0.011983916163444519, 0.010676677338778973, 0.011313281022012234, 0.053448669612407684, 0.025788534432649612, 0.02853456139564514, 0.04105165973305702, 0.06104140356183052], [0.12197820097208023, 0.07973062247037888, 0.03164880350232124, 0.1485532820224762, 0.02738480269908905, 0.03058951534330845, 0.09230692684650421, 0.09649387747049332, 0.019477060064673424, 0.041964322328567505, 0.0322236642241478, 0.029485806822776794, 0.03862898796796799, 0.018663085997104645, 0.030959615483880043, 0.02079896256327629, 0.04585647955536842, 0.09325601160526276], [0.08139893412590027, 0.043674539774656296, 0.007658720016479492, 0.04085156321525574, 0.26363441348075867, 0.08453965932130814, 0.04729049652814865, 0.10176669806241989, 0.021084357053041458, 0.018273290246725082, 0.015956534072756767, 0.03242127597332001, 0.02637929655611515, 0.02842896059155464, 0.01989162527024746, 0.02568398416042328, 0.036767322570085526, 0.1042981743812561], [0.14506496489048004, 0.03586437180638313, 0.006397253833711147, 0.02794617973268032, 0.010318458080291748, 0.329653799533844, 0.09143826365470886, 0.10277752578258514, 0.01563846692442894, 0.005066259298473597, 0.005131978075951338, 0.005692821461707354, 0.00572325149551034, 0.007742875721305609, 0.010896904394030571, 0.0048595028929412365, 0.07834988832473755, 0.11143717169761658], [0.11954256147146225, 0.06823086738586426, 0.018338406458497047, 0.06743555516004562, 0.037342485040426254, 0.05138305574655533, 0.1369820386171341, 0.1429908275604248, 0.02088785730302334, 0.022305160760879517, 0.01538777630776167, 0.021284205839037895, 0.016710203140974045, 0.024218197911977768, 0.018128776922822, 0.017600052058696747, 0.06103193759918213, 0.14020000398159027], [0.251545250415802, 0.021991416811943054, 0.027282625436782837, 0.021869756281375885, 0.009045012295246124, 0.024684369564056396, 0.042285528033971786, 0.18722939491271973, 0.012713219039142132, 0.01746513321995735, 0.007851305417716503, 0.009778260253369808, 0.012564425356686115, 0.05623793974518776, 0.02185734361410141, 0.033936627209186554, 0.05489866062998772, 0.18676385283470154], [0.03328987956047058, 0.05005520209670067, 0.0033570299856364727, 0.02080634795129299, 0.00467046769335866, 0.004181514494121075, 0.015384274534881115, 0.12164609134197235, 0.33927151560783386, 0.07091110944747925, 0.04974469915032387, 0.027252042666077614, 0.015420578420162201, 0.019021781161427498, 0.04641589894890785, 0.011057347059249878, 0.04537547007203102, 0.12213867902755737], [0.025728454813361168, 0.0517200268805027, 0.006776852998882532, 0.02555641159415245, 0.004255283623933792, 0.0011918043019250035, 0.008872810751199722, 0.13227170705795288, 0.026135234162211418, 0.31599509716033936, 0.06691847741603851, 0.02435830421745777, 0.04973920062184334, 0.022314297035336494, 0.04115836322307587, 0.015223142690956593, 0.03799542039632797, 0.1437891721725464], [0.02903570421040058, 0.030670346692204475, 0.0014151795767247677, 0.019248194992542267, 0.00556017505005002, 0.0014086604351177812, 0.008513138629496098, 0.13990822434425354, 0.049678608775138855, 0.08827958256006241, 0.268351286649704, 0.058560967445373535, 0.04150829091668129, 0.006820357870310545, 0.05087738856673241, 0.009293009527027607, 0.04494519531726837, 0.14592549204826355], [0.03884414583444595, 0.032851047813892365, 0.008965653367340565, 0.04875017702579498, 0.010228895582258701, 0.00294537958689034, 0.01829981617629528, 0.16276557743549347, 0.034521933645009995, 0.045510753989219666, 0.05471959710121155, 0.11211194097995758, 0.05879780277609825, 0.048936519771814346, 0.048122894018888474, 0.04336853325366974, 0.05032534524798393, 0.1799340844154358], [0.055632155388593674, 0.022168345749378204, 0.0050419350154697895, 0.01012501958757639, 0.003886986756697297, 0.0017256863648071885, 0.018959954380989075, 0.11295192688703537, 0.013663267716765404, 0.01882089488208294, 0.012041531503200531, 0.010190640576183796, 0.3481351435184479, 0.05559425801038742, 0.03468998521566391, 0.07769330590963364, 0.07034137845039368, 0.12833766639232635], [0.06432493031024933, 0.018406610935926437, 0.0030194108840078115, 0.0038188411854207516, 0.0010992982424795628, 0.0009496885468252003, 0.01735827699303627, 0.10811292380094528, 0.0059360321611166, 0.003089240053668618, 0.0035972227342426777, 0.0032897228375077248, 0.012066056951880455, 0.42356207966804504, 0.03444059193134308, 0.10830845683813095, 0.0688311755657196, 0.1197894737124443], [0.10043665021657944, 0.021352743729948997, 0.003687869757413864, 0.01795804128050804, 0.00698624923825264, 0.003859313204884529, 0.02593044377863407, 0.15295752882957458, 0.024360250681638718, 0.014530614018440247, 0.02833014726638794, 0.01684160716831684, 0.05702533572912216, 0.06712672114372253, 0.127043217420578, 0.0799950584769249, 0.0851791501045227, 0.1663990467786789], [0.08664295822381973, 0.01068065408617258, 0.005051865242421627, 0.0039730314165353775, 0.0007793995318934321, 0.0006704758852720261, 0.014646691270172596, 0.09003929048776627, 0.002783259842544794, 0.002168768085539341, 0.005433287005871534, 0.005742891691625118, 0.018213314935564995, 0.27480730414390564, 0.02515840344130993, 0.30237194895744324, 0.052402496337890625, 0.09843400120735168], [0.15918192267417908, 0.02849520556628704, 0.009868058376014233, 0.02289295382797718, 0.014430399984121323, 0.01564134657382965, 0.040094077587127686, 0.19739387929439545, 0.02751941606402397, 0.037233538925647736, 0.03430642932653427, 0.020653672516345978, 0.02006329596042633, 0.04309127852320671, 0.024230822920799255, 0.028205906972289085, 0.08526952564716339, 0.1914283037185669], [0.2816135287284851, 0.021359693259000778, 0.027841918170452118, 0.021237224340438843, 0.00874271709471941, 0.023226138204336166, 0.04176893085241318, 0.18424326181411743, 0.012212969362735748, 0.01654926687479019, 0.007511529140174389, 0.009180829860270023, 0.011625915765762329, 0.05247091129422188, 0.02055247686803341, 0.030133668333292007, 0.05139797180891037, 0.17833106219768524]], [[0.39533430337905884, 0.022898752242326736, 0.013821201398968697, 0.0775483250617981, 0.00259297713637352, 0.006614973768591881, 0.3437402844429016, 0.06828334927558899, 0.0004175345238763839, 0.00023867323761805892, 0.0006068805232644081, 0.0005168254137970507, 0.00038177374517545104, 0.00233101355843246, 0.0015050198417156935, 0.0016755693359300494, 0.011821487918496132, 0.04967112839221954], [1.558656066436015e-07, 2.607014948807773e-06, 0.9999951124191284, 8.93930177880975e-07, 1.1012250666908585e-07, 6.952761566481058e-08, 1.432716913996046e-07, 4.234523487411934e-07, 1.2065747164412277e-14, 2.1432082497607752e-10, 2.4056312497577892e-11, 3.409765525486108e-11, 9.464334697895094e-12, 6.792996742888135e-08, 2.2901170382283453e-07, 2.1071776268311027e-10, 2.066921772625463e-10, 1.8303715876299975e-07], [3.1895905294732074e-07, 2.741083271473599e-08, 1.82756831890174e-08, 0.9999954700469971, 1.0096636859913133e-09, 4.554925325805925e-09, 3.3676775501589873e-07, 2.893044211305096e-06, 7.575084765183704e-13, 4.629118171852701e-16, 3.579148435961521e-11, 7.111324029640542e-11, 1.4356195052189769e-11, 9.897421424098773e-14, 5.087711585360921e-08, 1.3071901605599123e-07, 2.1630898461300063e-10, 8.284411023851135e-07], [3.9437182408619265e-07, 3.746648189917323e-06, 3.601245737172576e-07, 8.061489643296227e-05, 0.9998865127563477, 1.0584019037196413e-05, 1.388958850156996e-07, 1.361160320811905e-05, 2.594674031186628e-09, 3.497444001077099e-11, 1.1803089659007007e-15, 2.121607473037912e-10, 2.1031064389998022e-10, 5.976777406324629e-10, 4.801687137636311e-14, 1.5453809343313196e-09, 2.246498276292641e-08, 4.049686594953528e-06], [3.24575255561399e-09, 1.656312917930336e-07, 3.1797432598068553e-07, 2.934291920553278e-08, 1.909241973407916e-06, 0.9999970197677612, 2.5637467260253288e-08, 6.12508017638902e-08, 3.3445657268010853e-12, 1.323162968080993e-10, 5.691213017348928e-14, 4.048311915085163e-17, 6.714716976885526e-11, 2.470416093913741e-09, 2.542872325466544e-13, 7.393844786646522e-14, 6.196053392582002e-11, 4.2655705101424246e-07], [2.9870798243791796e-06, 4.95779666209728e-08, 1.0676831152522936e-07, 6.439920241518848e-08, 5.4662104703728787e-11, 1.0449752352315045e-07, 0.9999790191650391, 6.635695626755478e-06, 9.018800246549108e-13, 1.1910325503627917e-10, 6.681723924151228e-11, 2.465654362539954e-13, 1.720283384023469e-17, 4.0135159085075145e-11, 2.636648928702745e-12, 5.685121834018633e-14, 7.922762272627448e-12, 1.105033607018413e-05], [0.031495992094278336, 3.732567144254517e-09, 2.2784337971870627e-08, 3.658115383586846e-05, 3.029657191788715e-09, 1.8581534533268496e-08, 0.0010479956399649382, 0.9505757093429565, 8.234237292015223e-09, 1.5480035031600892e-08, 1.1622410811540362e-09, 1.850855397833584e-07, 1.0867456240459816e-11, 3.08970026213079e-13, 5.016760340481596e-10, 1.2746710631450497e-10, 2.116740560609287e-09, 0.016843482851982117], [0.6555027365684509, 0.00231177662499249, 5.606389095191844e-05, 0.03449440747499466, 0.0015668310225009918, 0.005495816003531218, 0.08228211849927902, 0.10423523932695389, 0.0034140930511057377, 0.0013552125310525298, 0.003043252509087324, 0.003629965241998434, 0.004464301280677319, 0.0018997350707650185, 0.00046963480417616665, 0.0007646034355275333, 0.019334236159920692, 0.07567994296550751], [1.8406169033369224e-07, 4.1120269855809966e-08, 1.0728591626207873e-10, 5.822224213164473e-13, 5.052419815854137e-09, 3.316987928769777e-08, 2.438247825864437e-08, 2.371670461798203e-06, 1.6283123841276392e-05, 0.9999721050262451, 5.027574729865592e-07, 1.342121436209709e-07, 1.0557322127624502e-07, 6.71790348860668e-06, 2.1234560984573214e-11, 1.3879942659632272e-13, 4.725938751448666e-09, 1.5143425571295666e-06], [1.7793748696703915e-08, 1.0406816901287197e-11, 2.2189250437065766e-11, 1.0250503224007446e-10, 3.004141049082489e-15, 1.5181896850791077e-09, 3.6729090879816795e-08, 7.742771686025662e-07, 4.954822685476756e-08, 1.001066902972525e-05, 0.9999779462814331, 8.838514986564405e-06, 1.8046721095288376e-07, 1.8829357628646903e-08, 1.6299027265631594e-06, 7.827229142609582e-11, 1.1128460349410507e-12, 4.7243577228073264e-07], [5.873142527867969e-10, 2.5263584356016028e-14, 4.134133898929526e-13, 2.674344307205395e-13, 1.7990349607168582e-13, 2.309319029094725e-17, 4.7689192005095915e-12, 3.4369145396340173e-07, 2.787681419036403e-09, 2.103203229353312e-07, 4.05442278861301e-06, 0.9999939203262329, 1.4793318996453309e-06, 8.354331670901161e-10, 3.1254590027174345e-08, 1.972360408331042e-08, 1.654163785114182e-11, 7.72309327601306e-09], [9.504051989850382e-10, 2.496597980433668e-12, 3.190249171607096e-13, 4.056136503061136e-12, 2.0364876451850478e-11, 6.595913919216212e-12, 9.762125020840434e-15, 1.4715602958403906e-07, 3.094965350669554e-08, 5.513827261438564e-08, 8.246757232655e-08, 1.1301539416308515e-05, 0.9999876022338867, 2.8534913099065307e-07, 1.5278057929890565e-08, 4.834945457332651e-07, 7.770775312110345e-08, 2.633831996945446e-08], [2.1989743359540626e-08, 1.9388834004985256e-07, 8.831703701694948e-10, 8.05706209757763e-14, 1.9377269233622485e-10, 1.0012118911717494e-09, 3.157802838660295e-11, 1.0606164835280651e-07, 3.3341232552608346e-10, 1.9058089719692362e-06, 2.3567591256323794e-07, 1.8459310524576722e-07, 0.00014087359886616468, 0.9998519420623779, 1.7371579588143504e-06, 1.8874814600167156e-07, 5.596685923592304e-07, 1.9828016775136348e-06], [6.886859296173498e-07, 1.186980291834061e-09, 4.000370665835362e-07, 5.22925425183729e-10, 2.2172271546441573e-14, 1.715589476036783e-11, 1.449188502533616e-08, 5.420965408120537e-06, 4.307172701183484e-14, 6.967550980618853e-10, 8.915012585930526e-07, 2.6906270989002223e-08, 3.263069459080725e-08, 4.232300852891058e-06, 0.9999655485153198, 3.909342183305853e-07, 4.704986167780589e-06, 1.764976514095906e-05], [3.279283689039403e-08, 1.4695845651502282e-09, 2.563859125004342e-09, 2.621040096073557e-07, 5.2911727083104765e-11, 6.292648422733665e-14, 4.223633161964946e-12, 8.219879532589403e-07, 2.724586181668265e-12, 1.6177234925989284e-14, 2.226385298342848e-09, 8.348372830369044e-06, 2.293836405442562e-05, 6.056960728528793e-07, 2.458119524817448e-05, 0.9999402761459351, 5.909681135563005e-07, 1.5656670484531787e-06], [3.548288077581674e-06, 9.116015498022989e-09, 2.1996758581277476e-10, 1.869510324326029e-09, 2.678782777820743e-07, 5.822290566337429e-12, 2.93480101332122e-11, 6.3149473135126755e-06, 2.982894140024506e-11, 1.1201801639049158e-11, 2.476281678353339e-14, 2.3510222657563418e-09, 5.418261821432679e-07, 5.529077952814987e-06, 6.347367502712586e-07, 1.263127433048794e-05, 0.999950647354126, 1.9843717382173054e-05], [0.01954437419772148, 2.016878715949133e-05, 1.5658772889448613e-10, 3.7071985481418324e-09, 1.4336311304763427e-10, 7.811186151229776e-07, 2.4109507279490572e-08, 0.008833643980324268, 2.4067717263598354e-10, 1.2367922241907081e-09, 1.239703617539334e-10, 1.8114412964412296e-12, 2.4858936242821983e-08, 2.79641189990798e-05, 2.3188340492197312e-06, 5.800586109216965e-07, 0.0009520503226667643, 0.9706182479858398], [0.5175744295120239, 0.001817859592847526, 0.0030991402454674244, 0.007844197563827038, 0.00027903117006644607, 0.0007775485864840448, 0.29522186517715454, 0.06415415555238724, 2.7091749871033244e-05, 0.00042875821236521006, 0.0011346414685249329, 0.000922106031794101, 9.350161417387426e-05, 0.003092027036473155, 0.009615597315132618, 0.0007508493144996464, 0.03034578077495098, 0.06282154470682144]], [[0.10117112845182419, 0.02123088762164116, 0.013692854903638363, 0.02449299953877926, 0.013271111063659191, 0.027162708342075348, 0.08633143454790115, 0.26872509717941284, 0.01309226918965578, 0.011028957553207874, 0.0127119030803442, 0.009702041745185852, 0.013850542716681957, 0.02681182138621807, 0.02112465351819992, 0.014880706556141376, 0.06681279838085175, 0.2539060711860657], [0.03410477936267853, 0.03243443742394447, 0.0538095198571682, 0.4819604754447937, 0.021102236583828926, 0.05623903125524521, 0.11887940019369125, 0.09150765836238861, 0.004525152035057545, 0.0042213317938148975, 0.003872459754347801, 0.0007109970902092755, 0.00491514103487134, 0.005037211813032627, 0.002486088778823614, 0.0036074474919587374, 0.009772862307727337, 0.07081372290849686], [0.11132748425006866, 0.2420152872800827, 0.041733402758836746, 0.0258020106703043, 0.006247233133763075, 0.06309456378221512, 0.06547223031520844, 0.20804835855960846, 0.0020373151637613773, 0.010208732448518276, 0.002247465308755636, 0.0011079410323873162, 0.003463504835963249, 0.018106410279870033, 0.008259023539721966, 0.011472123675048351, 0.009766663424670696, 0.16959026455879211], [0.02372651733458042, 0.06836353242397308, 0.035416971892118454, 0.09263821691274643, 0.011939460411667824, 0.12382274121046066, 0.3958032429218292, 0.10350372642278671, 0.009972639381885529, 0.0019811007659882307, 0.011766297742724419, 0.0020309388637542725, 0.009513497352600098, 0.007540591526776552, 0.007041227072477341, 0.004259479697793722, 0.01597467251121998, 0.07470506429672241], [0.16582448780536652, 0.028513114899396896, 0.012755279429256916, 0.02552502229809761, 0.007424670737236738, 0.06753727793693542, 0.1373828947544098, 0.2871399521827698, 0.006022199057042599, 0.0023595846723765135, 0.0024844759609550238, 0.0007553212926723063, 0.0022114980965852737, 0.003107556374743581, 0.0039061307907104492, 0.005524978041648865, 0.009838663041591644, 0.23168689012527466], [0.19913175702095032, 0.06118692457675934, 0.07547656446695328, 0.01008541975170374, 0.006296693347394466, 0.014680054038763046, 0.11121563613414764, 0.25764378905296326, 0.017796507105231285, 0.00992144551128149, 0.0014726548688486218, 0.002633007476106286, 0.0035489187575876713, 0.008219035342335701, 0.012718448415398598, 0.00410003075376153, 0.008210888132452965, 0.19566215574741364], [0.09523028135299683, 0.0474831685423851, 0.019999122247099876, 0.03435466066002846, 0.022315463051199913, 0.040152408182621, 0.12569007277488708, 0.31753820180892944, 0.0046635400503873825, 0.009081012569367886, 0.00402850890532136, 0.00277328840456903, 0.00211194041185081, 0.008097953163087368, 0.003621830837801099, 0.0037473435513675213, 0.01377863623201847, 0.24533262848854065], [0.1646033227443695, 0.005312271881848574, 0.0017389977583661675, 0.001972025725990534, 0.003595049027353525, 0.0017611072398722172, 0.01803271472454071, 0.3894035816192627, 0.0021352372132241726, 0.0013884756481274962, 0.0007922508521005511, 0.002856557723134756, 0.002645049011334777, 0.003750590141862631, 0.005875844042748213, 0.002035052515566349, 0.019246919080615044, 0.37285488843917847], [0.02456945739686489, 0.0020170731004327536, 0.001132457284256816, 0.003926329780369997, 0.0007084408425725996, 0.002682839520275593, 0.03826859965920448, 0.38873985409736633, 0.02336128242313862, 0.02121746353805065, 0.07771705836057663, 0.029350724071264267, 0.007617346942424774, 0.007244879379868507, 0.008492923341691494, 0.0047662025317549706, 0.053010713309049606, 0.30517634749412537], [0.04750063642859459, 0.007867437787353992, 0.004864268470555544, 0.003445344278588891, 0.0007359334267675877, 0.00880128052085638, 0.06878088414669037, 0.1638726145029068, 0.11390960216522217, 0.02249651588499546, 0.11260415613651276, 0.03949812054634094, 0.09678380936384201, 0.018218601122498512, 0.06251709908246994, 0.010392718948423862, 0.08794092386960983, 0.129769966006279], [0.02234642766416073, 0.0011792478617280722, 0.0006715250783599913, 0.001042592921294272, 0.00016990758012980223, 0.00016893766587600112, 0.011515429243445396, 0.15270531177520752, 0.028343964368104935, 0.030383147299289703, 0.027865605428814888, 0.06056633219122887, 0.3067712187767029, 0.02169806882739067, 0.09109532088041306, 0.029251452535390854, 0.07759387046098709, 0.13663159310817719], [0.03600102290511131, 0.0010603500995784998, 9.540680912323296e-05, 0.00048256301670335233, 0.00013464553921949118, 0.0002191912499256432, 0.01661108247935772, 0.33968454599380493, 0.004520505201071501, 0.0009978461312130094, 0.03562432527542114, 0.0056800018064677715, 0.09339138865470886, 0.004728297237306833, 0.049719229340553284, 0.004505899269133806, 0.07565730810165405, 0.3308864235877991], [0.038914717733860016, 0.0015406340826302767, 0.000530738674569875, 0.0007224739529192448, 0.00019604110275395215, 0.0008639627485536039, 0.010124695487320423, 0.21252216398715973, 0.0006588876713067293, 0.0013134623877704144, 0.01415943168103695, 0.00888774637132883, 0.008163584396243095, 0.046273667365312576, 0.25700485706329346, 0.06360357999801636, 0.11255552619695663, 0.2219637930393219], [0.20601731538772583, 0.00702363857999444, 0.004935659468173981, 0.0027221557684242725, 0.0008774200105108321, 0.0017518092645332217, 0.00949495006352663, 0.23929409682750702, 0.00475626066327095, 0.00506719620898366, 0.0018070980440825224, 0.003187087131664157, 0.008125313557684422, 0.01566432975232601, 0.08808059245347977, 0.020444856956601143, 0.09293383359909058, 0.28781625628471375], [0.10585162788629532, 0.0019509647972881794, 0.0005308916443027556, 0.0007839368772692978, 0.0004284297174308449, 0.00047977163922041655, 0.006925113499164581, 0.2715771198272705, 0.0010420199250802398, 0.0007465875241905451, 0.0037147104740142822, 0.003287743078544736, 0.014780089259147644, 0.014497959055006504, 0.023868009448051453, 0.05815818905830383, 0.14071208238601685, 0.3506646752357483], [0.3585926592350006, 0.00452825054526329, 0.002272315789014101, 0.0018343165284022689, 0.0027816740330308676, 0.0023837240878492594, 0.006256009452044964, 0.19884981215000153, 0.0009850511560216546, 0.001580567448399961, 0.0007794109405949712, 0.0011953851208090782, 0.0033450850751250982, 0.01979518122971058, 0.038892775774002075, 0.0158188808709383, 0.08807806670665741, 0.2520309090614319], [0.12734673917293549, 0.007072914391756058, 0.0038903746753931046, 0.0033149949740618467, 0.004551919177174568, 0.0054043009877204895, 0.01401819009333849, 0.2658526599407196, 0.0028272473718971014, 0.005200936459004879, 0.005712901242077351, 0.0028400144074112177, 0.004259804263710976, 0.0201515331864357, 0.02010275050997734, 0.027697350829839706, 0.1384631097316742, 0.34129223227500916], [0.1708187311887741, 0.004710400942713022, 0.001645650016143918, 0.0018174370052292943, 0.003370924387127161, 0.0016864725621417165, 0.01595473662018776, 0.37388086318969727, 0.0018205168889835477, 0.0010822094045579433, 0.000639018602669239, 0.002290675649419427, 0.0022048212122172117, 0.003572989022359252, 0.006008215714246035, 0.002270884346216917, 0.022976813837885857, 0.383248507976532]], [[0.11496731638908386, 0.031449269503355026, 0.005312016699463129, 0.02010347694158554, 0.009101896546781063, 0.0028657412622123957, 0.02397173084318638, 0.3136724531650543, 0.01666570082306862, 0.006019906140863895, 0.008507903665304184, 0.010216416791081429, 0.011546324007213116, 0.010165027342736721, 0.014512610621750355, 0.009389664977788925, 0.045654766261577606, 0.34587767720222473], [0.11362795531749725, 0.20693299174308777, 0.0012255655601620674, 0.0009236777550540864, 0.00015418187831528485, 7.323254249058664e-05, 0.003948281519114971, 0.27693426609039307, 0.0007116903434507549, 0.001275300164707005, 0.00010417897283332422, 8.479518146486953e-05, 0.0010273235384374857, 0.00327732739970088, 0.0017547615570947528, 0.0004366690991446376, 0.041584312915802, 0.34592345356941223], [0.13370250165462494, 0.006704307161271572, 0.43771809339523315, 0.00034891319228336215, 8.00344605522696e-06, 3.305137579445727e-05, 0.0018951871898025274, 0.181797057390213, 0.00015948805958032608, 0.0001331852254224941, 7.003057544352487e-05, 2.6215773686999455e-05, 0.00031593607855029404, 0.0006068509537726641, 0.00012948826770298183, 0.0002785338438116014, 0.015571792609989643, 0.22050143778324127], [0.1417934149503708, 0.011701957322657108, 0.00032441996154375374, 0.05681397020816803, 0.00013369796215556562, 3.2467341952724382e-06, 0.0030612980481237173, 0.3250209093093872, 7.704547169851139e-05, 0.0005661703180521727, 3.862866651616059e-05, 8.571795478928834e-05, 0.0002131841902155429, 0.000650575733743608, 0.00046684403787367046, 0.00039536747499369085, 0.018407296389341354, 0.4402463138103485], [0.08758286386728287, 0.003606510814279318, 1.218200759467436e-05, 0.0025766841135919094, 0.4523037075996399, 3.249365545343608e-05, 0.0006798004033043981, 0.19947679340839386, 1.576722934260033e-05, 6.34030147921294e-05, 7.715635001659393e-05, 1.9485774828353897e-05, 5.682900518877432e-05, 0.000853808072861284, 0.0007530828006565571, 0.00043431814992800355, 0.002221598755568266, 0.24923354387283325], [0.3675343990325928, 0.007482118904590607, 0.0004083711246494204, 0.0005261770565994084, 0.00010403829219285399, 0.08387602865695953, 0.00874242465943098, 0.2944765090942383, 6.948796362848952e-05, 5.132545993546955e-06, 8.441551472060382e-06, 2.572347511886619e-05, 1.0526702681090683e-05, 7.056325557641685e-05, 0.0001113970938604325, 4.294232712709345e-05, 0.010461381636559963, 0.22604431211948395], [0.21370922029018402, 0.08302906900644302, 0.0034948259126394987, 0.10404310375452042, 0.013849346898496151, 0.0011612322414293885, 0.018833009526133537, 0.26406508684158325, 0.002939432393759489, 0.0007739119464531541, 0.0012787418672814965, 0.0010151559254154563, 0.002287386916577816, 0.0015979792224243283, 0.0032141420524567366, 0.002088546985760331, 0.023930229246616364, 0.2586897909641266], [0.1686466932296753, 0.03571189567446709, 0.01354086585342884, 0.034539252519607544, 0.013729947619140148, 0.003761387662962079, 0.026667850092053413, 0.3292270004749298, 0.006943430285900831, 0.005923853721469641, 0.00221914891153574, 0.0038485578261315823, 0.009376720525324345, 0.007374865468591452, 0.010624496266245842, 0.007137260399758816, 0.017373494803905487, 0.30335336923599243], [0.22262048721313477, 0.03193654119968414, 0.0002902806445490569, 0.004612600896507502, 0.00016337416309397668, 0.00894789770245552, 0.08025109767913818, 0.3190822899341583, 0.10655614733695984, 3.223460225854069e-05, 0.00011356578033883125, 0.0021416409872472286, 5.9602516557788476e-05, 0.0005425404524430633, 0.0004873543221037835, 5.0495946197770536e-05, 0.0058822608552873135, 0.21622951328754425], [0.09279565513134003, 0.24485431611537933, 0.02538931369781494, 0.40892791748046875, 0.0011906404979526997, 0.000320967665174976, 0.030705254524946213, 0.10122669488191605, 0.00043983475188724697, 0.02396906539797783, 9.037289419211447e-05, 0.00019814848201349378, 0.00010986141569446772, 0.0002879435778595507, 0.00011591389193199575, 4.4434567826101556e-05, 0.0018695801263675094, 0.06746413558721542], [0.13280272483825684, 0.005109886173158884, 0.0010054082376882434, 0.012433464638888836, 0.003741447115316987, 0.00038429730921052396, 0.06940016895532608, 0.2749839425086975, 0.00035114423371851444, 3.7453453842317685e-05, 0.36490756273269653, 0.00022945144155528396, 0.0001832174020819366, 3.589686093619093e-05, 8.168549538822845e-05, 7.321670636883937e-06, 0.004239071626216173, 0.1300658881664276], [0.2035144865512848, 0.008087322115898132, 0.0034411114174872637, 0.06770498305559158, 0.0005738254985772073, 0.0023302938789129257, 0.04928365722298622, 0.31825777888298035, 0.0034662503749132156, 0.0003623931552283466, 0.00037316398811526597, 0.1350419819355011, 0.00010916572500718758, 0.00023060638341121376, 0.00036645832005888224, 8.876684296410531e-05, 0.0016005682991817594, 0.20516720414161682], [0.25808465480804443, 0.04580129683017731, 0.0056488108821213245, 0.034686584025621414, 0.0006299747037701309, 0.0006637466140091419, 0.09731048345565796, 0.2846877872943878, 0.0010774334659799933, 0.0007265760796144605, 0.0013623412232846022, 0.00033657101448625326, 0.11179036647081375, 0.0013667058665305376, 0.0012294512707740068, 0.0001711859367787838, 0.003410576144233346, 0.15101540088653564], [0.2089017927646637, 0.013379637151956558, 0.011068549938499928, 0.006450489163398743, 0.0010512890294194221, 0.0016446833033114672, 0.04550996795296669, 0.23588654398918152, 0.0033476795069873333, 0.00044766830978915095, 0.000578868028242141, 0.0006795158260501921, 0.0016410405514761806, 0.3100205957889557, 0.0016421388136222959, 0.03579461947083473, 0.005613835994154215, 0.11634102463722229], [0.19725002348423004, 0.00814784225076437, 0.00044107556459493935, 0.02299627475440502, 0.005162074230611324, 0.00041255532414652407, 0.0722150057554245, 0.37023764848709106, 0.008956615813076496, 0.004366842098534107, 0.002717328257858753, 0.010685029439628124, 0.004512878600507975, 0.004136509727686644, 0.06658182293176651, 0.0006056934362277389, 0.009800647385418415, 0.21077406406402588], [0.13468202948570251, 0.003092770464718342, 0.004108984488993883, 0.008456941694021225, 0.0003901669988408685, 0.00016630130994599313, 0.043297164142131805, 0.2449452131986618, 0.005099867936223745, 0.001107602147385478, 0.00043853477109223604, 0.0013566724956035614, 0.002176306676119566, 0.1146010309457779, 0.002472289139404893, 0.2797287404537201, 0.010570027865469456, 0.14330936968326569], [0.12472254782915115, 0.022664004936814308, 0.00239238771609962, 0.06546814739704132, 0.004602761939167976, 0.0036919210106134415, 0.14366303384304047, 0.27085790038108826, 0.028250329196453094, 0.013157493434846401, 0.03372664749622345, 0.02584007941186428, 0.021289963275194168, 0.011708210222423077, 0.014452208764851093, 0.005257105454802513, 0.024266373366117477, 0.18398892879486084], [0.1500306874513626, 0.02518407814204693, 0.01525766309350729, 0.02848273701965809, 0.012398646213114262, 0.003938437905162573, 0.03236209973692894, 0.34967947006225586, 0.010422904044389725, 0.010047408752143383, 0.0039461152628064156, 0.008876638486981392, 0.015570477582514286, 0.009558236226439476, 0.017595501616597176, 0.009343701414763927, 0.023803703486919403, 0.2735014855861664]], [[0.11614342778921127, 0.02371871843934059, 0.01616739295423031, 0.017305588349699974, 0.013959595002233982, 0.00870294775813818, 0.02502204291522503, 0.274948388338089, 0.01689366064965725, 0.027354124933481216, 0.03167147561907768, 0.012202474288642406, 0.031423404812812805, 0.026413898915052414, 0.023121625185012817, 0.030068129301071167, 0.032496389001607895, 0.27238672971725464], [0.07138775289058685, 0.13183370232582092, 0.057280827313661575, 0.0690106451511383, 0.04382940009236336, 0.0242531169205904, 0.06612537801265717, 0.19032151997089386, 0.039506781846284866, 0.02503690868616104, 0.01451338641345501, 0.018715351819992065, 0.015863586217164993, 0.01260669156908989, 0.01843097433447838, 0.014776648953557014, 0.01795790158212185, 0.16854947805404663], [0.10225947201251984, 0.06644951552152634, 0.014728852547705173, 0.07631663978099823, 0.0362810343503952, 0.09329333156347275, 0.07497195899486542, 0.09123434871435165, 0.029680373147130013, 0.01095398236066103, 0.014028753153979778, 0.04893755167722702, 0.05962711572647095, 0.06339486688375473, 0.026474783197045326, 0.08603504300117493, 0.021191010251641273, 0.08414137363433838], [0.053357720375061035, 0.05767389386892319, 0.03852345421910286, 0.1159578263759613, 0.019377317279577255, 0.07660190016031265, 0.14089258015155792, 0.17655110359191895, 0.008172602392733097, 0.00863624457269907, 0.06765702366828918, 0.011877133511006832, 0.02318868786096573, 0.006535701919347048, 0.010220981203019619, 0.008543743751943111, 0.0234452523291111, 0.15278689563274384], [0.21271470189094543, 0.03589296340942383, 0.022521166130900383, 0.030386777594685555, 0.0029858266934752464, 0.04902850091457367, 0.051041483879089355, 0.2729702889919281, 0.004298283252865076, 0.006983757950365543, 0.004067244939506054, 0.00733491824939847, 0.012728543020784855, 0.0057798270136117935, 0.017904862761497498, 0.004837492015212774, 0.016241135075688362, 0.24228224158287048], [0.18812909722328186, 0.04007834196090698, 0.09920098632574081, 0.10162340104579926, 0.03619339317083359, 0.016336940228939056, 0.07621346414089203, 0.08384568244218826, 0.016021165996789932, 0.0081082908436656, 0.013163409195840359, 0.021763358265161514, 0.06103021278977394, 0.05788012593984604, 0.022712526842951775, 0.062465328723192215, 0.021194027736783028, 0.07404020428657532], [0.07808350026607513, 0.11051834374666214, 0.02808803878724575, 0.06465816497802734, 0.03597104549407959, 0.019529473036527634, 0.06247006356716156, 0.25632917881011963, 0.027193663641810417, 0.012071864679455757, 0.008683620020747185, 0.010088251903653145, 0.009783868677914143, 0.009009514935314655, 0.010383839718997478, 0.006114281248301268, 0.018056191504001617, 0.23296701908111572], [0.36539125442504883, 0.009633664973080158, 0.0031349482014775276, 0.0023352999705821276, 0.0017312332056462765, 0.0020411163568496704, 0.006990710273385048, 0.29811444878578186, 0.0027397300582379103, 0.004247654695063829, 0.0027497909031808376, 0.0015116207068786025, 0.007311997003853321, 0.0016637846129015088, 0.0040950533002614975, 0.0015348601154983044, 0.006800977047532797, 0.2779718339443207], [0.08663450926542282, 0.027136731892824173, 0.007087472826242447, 0.008581986650824547, 0.005577050615102053, 0.001090322621166706, 0.018811918795108795, 0.33671340346336365, 0.020689522847533226, 0.022394884377717972, 0.01655031181871891, 0.009848067536950111, 0.01755259558558464, 0.008596512489020824, 0.018109243363142014, 0.009174181148409843, 0.04948824644088745, 0.33596307039260864], [0.10244522988796234, 0.044216882437467575, 0.012586675584316254, 0.020663736388087273, 0.003499413374811411, 0.010545027442276478, 0.0337475948035717, 0.24369890987873077, 0.014407414011657238, 0.008303976617753506, 0.045269083231687546, 0.021645568311214447, 0.041432108730077744, 0.029495444148778915, 0.012716887518763542, 0.04371202364563942, 0.07043606787919998, 0.24117796123027802], [0.06278131157159805, 0.004851628560572863, 0.0016517604235559702, 0.0564032681286335, 0.002419994678348303, 0.010076052509248257, 0.01841958425939083, 0.2788999378681183, 0.009057107381522655, 0.04509585350751877, 0.027131659910082817, 0.010752263478934765, 0.04255831614136696, 0.008077742531895638, 0.026565678417682648, 0.010771945118904114, 0.09253726154565811, 0.2919485867023468], [0.146281898021698, 0.01173178106546402, 0.0070163230411708355, 0.01849641092121601, 0.006383879110217094, 0.008296911604702473, 0.04927438497543335, 0.29349732398986816, 0.0056352377869188786, 0.032020919024944305, 0.014258209615945816, 0.00488761393353343, 0.017738059163093567, 0.002221730537712574, 0.02203582227230072, 0.004769416060298681, 0.07469291239976883, 0.2807612121105194], [0.07624039053916931, 0.03088175319135189, 0.04587915912270546, 0.0511757954955101, 0.01527180802077055, 0.058094218373298645, 0.03626595810055733, 0.16801981627941132, 0.014089901000261307, 0.041535522788763046, 0.034253187477588654, 0.03450261428952217, 0.012562986463308334, 0.030125169083476067, 0.03805997967720032, 0.09353092312812805, 0.05382465571165085, 0.16568619012832642], [0.22664979100227356, 0.024560432881116867, 0.05530337616801262, 0.01741025038063526, 0.012045220471918583, 0.0731295794248581, 0.051764391362667084, 0.11426886171102524, 0.02331286482512951, 0.027295265346765518, 0.015790287405252457, 0.025294234976172447, 0.05083129182457924, 0.0034212733153253794, 0.0614703968167305, 0.008271081373095512, 0.090242899954319, 0.11893850564956665], [0.08990857750177383, 0.01911243423819542, 0.0161838848143816, 0.020137213170528412, 0.0054848045110702515, 0.020096825435757637, 0.03678454831242561, 0.2481233775615692, 0.010253950022161007, 0.013759391382336617, 0.053504444658756256, 0.009082441218197346, 0.043891094624996185, 0.02134900912642479, 0.028832314535975456, 0.027799123898148537, 0.08278582245111465, 0.2529107332229614], [0.31694504618644714, 0.008026136085391045, 0.01795959286391735, 0.011918117292225361, 0.0038746444042772055, 0.06027005612850189, 0.03921595588326454, 0.12048974633216858, 0.010367259383201599, 0.018304385244846344, 0.017220880836248398, 0.020880093798041344, 0.07884788513183594, 0.005841611418873072, 0.04653189703822136, 0.003578278236091137, 0.09161960333585739, 0.12810881435871124], [0.06995929032564163, 0.02499118633568287, 0.005934143904596567, 0.009500463493168354, 0.008314322680234909, 0.005289306864142418, 0.02250799536705017, 0.26350316405296326, 0.060611311346292496, 0.04622254520654678, 0.039687592536211014, 0.015369156375527382, 0.01864432357251644, 0.02226429618895054, 0.030877768993377686, 0.013234663754701614, 0.06903109699487686, 0.2740572988986969], [0.36609068512916565, 0.009198806248605251, 0.0029769064858555794, 0.0022291087079793215, 0.001703560585156083, 0.0020103787537664175, 0.007047555409371853, 0.2953207790851593, 0.0028177271597087383, 0.004540067166090012, 0.0029065809212625027, 0.0015740948729217052, 0.007680057547986507, 0.0018121185712516308, 0.004601449705660343, 0.001676066080108285, 0.007641550153493881, 0.2781725227832794]], [[0.37399664521217346, 0.00735437823459506, 0.009051569737493992, 0.009427241049706936, 0.006001888774335384, 0.007769325282424688, 0.008606757037341595, 0.15979738533496857, 0.034007832407951355, 0.02584853768348694, 0.026589175686240196, 0.017202269285917282, 0.027688082307577133, 0.0379844568669796, 0.00807409267872572, 0.03811550512909889, 0.03602498769760132, 0.1664598286151886], [0.15762129426002502, 0.03896050900220871, 0.07980167120695114, 0.09920518845319748, 0.052419401705265045, 0.06769270449876785, 0.04911469295620918, 0.09902513027191162, 0.06265765428543091, 0.025069275870919228, 0.006710823159664869, 0.032851770520210266, 0.03567001223564148, 0.04006305709481239, 0.008972745388746262, 0.028709879145026207, 0.02232852764427662, 0.09312558174133301], [0.21751663088798523, 0.024916741997003555, 0.044075366109609604, 0.06717897951602936, 0.021885862573981285, 0.060777585953474045, 0.04204327240586281, 0.09582895785570145, 0.031406939029693604, 0.020605189725756645, 0.0019074456067755818, 0.05858626961708069, 0.049546316266059875, 0.05019819736480713, 0.007001262158155441, 0.0947241485118866, 0.02221394143998623, 0.08958692848682404], [0.14561142027378082, 0.0176361296325922, 0.015509984456002712, 0.16268591582775116, 0.11514925211668015, 0.09157751500606537, 0.0609908364713192, 0.10025396943092346, 0.06528812646865845, 0.006449702195823193, 0.008876137435436249, 0.039082564413547516, 0.022642919793725014, 0.012091297656297684, 0.004614355508238077, 0.015400130301713943, 0.025512220337986946, 0.09062755852937698], [0.22779583930969238, 0.029461251571774483, 0.008990736678242683, 0.08672682195901871, 0.01605532318353653, 0.034902580082416534, 0.06884264945983887, 0.1762111932039261, 0.06759864091873169, 0.01820063591003418, 0.006587839685380459, 0.02279178984463215, 0.011543751694262028, 0.00576396519318223, 0.009924097917973995, 0.009896615520119667, 0.035725731402635574, 0.1629806011915207], [0.17365720868110657, 0.03794551640748978, 0.022295650094747543, 0.08449451625347137, 0.03215685486793518, 0.018490580841898918, 0.050490852445364, 0.15463966131210327, 0.09244613349437714, 0.01590188406407833, 0.00856759399175644, 0.02867889776825905, 0.03441089764237404, 0.020051948726177216, 0.012594270519912243, 0.04662523791193962, 0.028299866244196892, 0.13825243711471558], [0.18499840795993805, 0.03519713133573532, 0.010400865226984024, 0.013537012971937656, 0.021947303786873817, 0.008113331161439419, 0.07290809601545334, 0.23036262392997742, 0.06698329746723175, 0.010617075487971306, 0.003738132771104574, 0.019714070484042168, 0.015560814179480076, 0.008356303907930851, 0.03609374910593033, 0.0051897261291742325, 0.046250712126493454, 0.21003128588199615], [0.19708582758903503, 0.019466908648610115, 0.0007006816449575126, 0.0022488392423838377, 0.0010793677065521479, 0.0006839160341769457, 0.05161329731345177, 0.3144049346446991, 0.0027736492920666933, 0.004550606943666935, 0.0012327218428254128, 0.0016071881400421262, 0.0015074253315106034, 0.0009549416718073189, 0.036052778363227844, 0.0007097552297636867, 0.06691179424524307, 0.29641538858413696], [0.1354198008775711, 0.005075883120298386, 0.005782712250947952, 0.029901999980211258, 0.012287955731153488, 0.028797803446650505, 0.028191622346639633, 0.18694616854190826, 0.0695372074842453, 0.03668830543756485, 0.04903123527765274, 0.046957630664110184, 0.03667407110333443, 0.018000366166234016, 0.010121773928403854, 0.0252174511551857, 0.08688057214021683, 0.1884874403476715], [0.19129396975040436, 0.012705168686807156, 0.01449858769774437, 0.030016159638762474, 0.015610449016094208, 0.0242861770093441, 0.029792236164212227, 0.15259584784507751, 0.14923863112926483, 0.021694013848900795, 0.020274557173252106, 0.043544430285692215, 0.028751714155077934, 0.02055247500538826, 0.016334429383277893, 0.01519856322556734, 0.064785897731781, 0.14882659912109375], [0.10719415545463562, 0.005955762695521116, 0.004969829227775335, 0.036854565143585205, 0.008541792631149292, 0.014889635145664215, 0.010772034525871277, 0.07956220954656601, 0.1590738296508789, 0.06837578862905502, 0.04999804496765137, 0.09207283705472946, 0.20867234468460083, 0.01722409389913082, 0.007001059129834175, 0.018126193434000015, 0.03322795405983925, 0.07748793810606003], [0.07608238607645035, 0.006174130830913782, 0.01598982885479927, 0.04806666076183319, 0.031564779579639435, 0.026102809235453606, 0.01599733531475067, 0.04813354089856148, 0.3112606108188629, 0.1792823076248169, 0.048077475279569626, 0.02000928483903408, 0.027438875287771225, 0.02992260828614235, 0.02207978069782257, 0.016102422028779984, 0.029564250260591507, 0.048150915652513504], [0.2436625063419342, 0.009835802949965, 0.008140253834426403, 0.01227801013737917, 0.003518464742228389, 0.00463468162342906, 0.02864786610007286, 0.24647271633148193, 0.045466285198926926, 0.007093059364706278, 0.034874528646469116, 0.010070368647575378, 0.01346116978675127, 0.011229501105844975, 0.009188095107674599, 0.017117401584982872, 0.0628279447555542, 0.23148134350776672], [0.19239045679569244, 0.01627804897725582, 0.06261186301708221, 0.02732008509337902, 0.015379497781395912, 0.018272889778017998, 0.015269952826201916, 0.1052897572517395, 0.056839004158973694, 0.03050549328327179, 0.10134710371494293, 0.05377088487148285, 0.03947540745139122, 0.05427123233675957, 0.0188764538615942, 0.06879912316799164, 0.02344328537583351, 0.09985940903425217], [0.17587530612945557, 0.0066928742453455925, 0.0021838133689016104, 0.009526947513222694, 0.004817228764295578, 0.003585024503991008, 0.02370704896748066, 0.3132355213165283, 0.015982385724782944, 0.010659446008503437, 0.010500356554985046, 0.008817877620458603, 0.03323385864496231, 0.005165471229702234, 0.008153523318469524, 0.004909402225166559, 0.0623600035905838, 0.3005939722061157], [0.19286379218101501, 0.013968581333756447, 0.03573702648282051, 0.023532064631581306, 0.015675991773605347, 0.011826819740235806, 0.01928197778761387, 0.20909187197685242, 0.027857167646288872, 0.0269766915589571, 0.037970032542943954, 0.02000270038843155, 0.05456714704632759, 0.04521926864981651, 0.014709451235830784, 0.024150002747774124, 0.03193351998925209, 0.19463585317134857], [0.14727255702018738, 0.012424510903656483, 0.0048353178426623344, 0.003343869000673294, 0.007365239784121513, 0.003082635346800089, 0.029912620782852173, 0.21109198033809662, 0.12909184396266937, 0.019412638619542122, 0.011962205171585083, 0.02113756537437439, 0.01866472139954567, 0.013504604808986187, 0.0567295141518116, 0.007398984860628843, 0.09487476199865341, 0.207894429564476], [0.19121241569519043, 0.019350683316588402, 0.0007102292729541659, 0.0022389229852706194, 0.0010932704899460077, 0.000675263290759176, 0.05178043246269226, 0.3130890130996704, 0.0028337561525404453, 0.004988440312445164, 0.0013467876706272364, 0.001676031737588346, 0.001577930524945259, 0.0009906667983159423, 0.03807368502020836, 0.0007402110495604575, 0.07165390253067017, 0.29596826434135437]], [[0.06526875495910645, 0.06263616681098938, 0.029784655198454857, 0.05710018426179886, 0.10913307964801788, 0.11792536824941635, 0.17321833968162537, 0.07217548787593842, 0.05925212800502777, 0.011463492177426815, 0.007926169782876968, 0.013803612440824509, 0.03167595714330673, 0.029440708458423615, 0.02104313299059868, 0.02660669945180416, 0.04651254788041115, 0.06503349542617798], [0.050435423851013184, 0.0625990554690361, 0.004553079139441252, 0.015926891937851906, 0.002704752143472433, 0.001219630823470652, 0.38357558846473694, 0.0688059851527214, 0.00016739341663196683, 0.003121541813015938, 0.0003947475634049624, 0.0009564186912029982, 0.0005540763377211988, 0.0009950478561222553, 0.12624630331993103, 0.0014225421473383904, 0.21448121964931488, 0.061840254813432693], [0.17227664589881897, 0.2534501254558563, 0.004941239953041077, 0.04673979803919792, 0.0011148100020363927, 0.0037346831522881985, 0.11958815902471542, 0.16023758053779602, 0.0010964545654132962, 0.0030244358349591494, 0.0014422640670090914, 0.0009285866399295628, 0.001511329086497426, 0.002362599363550544, 0.029305467382073402, 0.010955128818750381, 0.05321952700614929, 0.13407114148139954], [0.13018320500850677, 0.061033524572849274, 0.006825176067650318, 0.20780737698078156, 0.004063080996274948, 0.002476638415828347, 0.13259316980838776, 0.16921964287757874, 0.0006822587456554174, 0.0032110826577991247, 0.0334843285381794, 0.00210581230930984, 0.0024249518755823374, 0.00340747507289052, 0.03616912662982941, 0.003194146789610386, 0.048222556710243225, 0.152896448969841], [0.17897608876228333, 0.08575022965669632, 0.010627192445099354, 0.025136122480034828, 0.004801763221621513, 0.007063964381814003, 0.13322468101978302, 0.2035961002111435, 0.0029748287051916122, 0.0015731740277260542, 0.003556684358045459, 0.002179523929953575, 0.0071831997483968735, 0.016713453456759453, 0.049321498721838, 0.011382173746824265, 0.06511110812425613, 0.19082821905612946], [0.13277702033519745, 0.17275524139404297, 0.05418233200907707, 0.02293614111840725, 0.0026665658224374056, 0.0015699098585173488, 0.21228830516338348, 0.1459144800901413, 0.0007519331993535161, 0.00284206704236567, 0.005755803547799587, 0.0050315819680690765, 0.0006757215596735477, 0.003179487306624651, 0.03463570773601532, 0.004095565527677536, 0.06674904376268387, 0.13119302690029144], [0.055945638567209244, 0.04021959751844406, 0.04706903174519539, 0.04014265164732933, 0.07300732284784317, 0.08392038196325302, 0.13758230209350586, 0.07578907161951065, 0.12845751643180847, 0.015761543065309525, 0.010411292314529419, 0.019761288538575172, 0.04478466138243675, 0.03609401360154152, 0.03115181066095829, 0.02544790506362915, 0.06566797941923141, 0.06878592818975449], [0.1686776578426361, 0.0145655432716012, 0.006630254909396172, 0.008901212364435196, 0.008672179654240608, 0.011839461512863636, 0.042614731937646866, 0.2518090307712555, 0.038507718592882156, 0.01061276625841856, 0.014252550899982452, 0.010931017808616161, 0.017065659165382385, 0.03245622292160988, 0.023349734023213387, 0.02089809998869896, 0.07389166951179504, 0.2443246692419052], [0.1435510367155075, 0.03212575986981392, 0.0027728842105716467, 0.010402104817330837, 0.0012204361846670508, 0.0018410524353384972, 0.12957823276519775, 0.17071861028671265, 0.0005948203033767641, 0.006468537729233503, 0.005576497875154018, 0.002687056316062808, 0.0018463113810867071, 0.010125475004315376, 0.0656050369143486, 0.004110853187739849, 0.24347534775733948, 0.1673000156879425], [0.1767054945230484, 0.03187907487154007, 0.0038606757298111916, 0.003925566095858812, 0.00029964809073135257, 0.0010677390964701772, 0.07738879323005676, 0.24230319261550903, 0.00038714968832209706, 0.0025193176697939634, 0.004109250847250223, 0.002411891706287861, 0.0009296720381826162, 0.004373625852167606, 0.05535629391670227, 0.00174985162448138, 0.15727870166301727, 0.23345410823822021], [0.12049639970064163, 0.011478676460683346, 0.0004329811781644821, 0.008128327317535877, 0.00040192026062868536, 0.00042249399120919406, 0.07518373429775238, 0.20843109488487244, 0.00047864983207546175, 0.002060115337371826, 0.013819720596075058, 0.0012871393701061606, 0.0008250137325376272, 0.0052375029772520065, 0.09507625550031662, 0.002825905103236437, 0.24732080101966858, 0.2060932070016861], [0.25751373171806335, 0.0605446957051754, 0.0027273923624306917, 0.011306489817798138, 0.0012434819946065545, 0.0009583575301803648, 0.06131241098046303, 0.2391488254070282, 0.0008856501081027091, 0.003888685954734683, 0.00694023072719574, 0.0015411830972880125, 0.001748027978464961, 0.0024881511926651, 0.028706464916467667, 0.001585171208716929, 0.07986254245042801, 0.23759843409061432], [0.20791438221931458, 0.022281622514128685, 0.0032043198589235544, 0.012799043208360672, 0.0010823984630405903, 0.0004705151659436524, 0.06451962143182755, 0.2376442402601242, 0.0005590197397395968, 0.0038556382060050964, 0.007771630305796862, 0.0013659012038260698, 0.0008452957263216376, 0.035962630063295364, 0.04581291228532791, 0.020743360742926598, 0.10329815745353699, 0.22986935079097748], [0.17229820787906647, 0.06321310251951218, 0.017938146367669106, 0.004619932267814875, 0.000723844685126096, 0.008330629207193851, 0.04856492206454277, 0.2053747922182083, 0.0062198275700211525, 0.006657394114881754, 0.008913247846066952, 0.010036216117441654, 0.0072295148856937885, 0.07770837098360062, 0.05356837064027786, 0.05391297861933708, 0.06062236428260803, 0.1940680891275406], [0.12038363516330719, 0.03094714879989624, 0.0019446617225185037, 0.007779296021908522, 0.0018649488920345902, 0.0018647327087819576, 0.11805371195077896, 0.1576075404882431, 0.0013121147640049458, 0.006159968674182892, 0.006014973856508732, 0.0036057736724615097, 0.00464087026193738, 0.015539929270744324, 0.10215301811695099, 0.01132987067103386, 0.2513138949871063, 0.15748381614685059], [0.2318347841501236, 0.03531287610530853, 0.04399769753217697, 0.004528341814875603, 0.0004774024127982557, 0.009918496012687683, 0.030932949855923653, 0.2314092367887497, 0.0014239804586395621, 0.007872452028095722, 0.009369662962853909, 0.004882471170276403, 0.010189621709287167, 0.05287134274840355, 0.0487932488322258, 0.013303873129189014, 0.04439887776970863, 0.2184826135635376], [0.0467175655066967, 0.012163163162767887, 0.015747103840112686, 0.007155043072998524, 0.02806193195283413, 0.04023834690451622, 0.04090696945786476, 0.05671440437436104, 0.29993268847465515, 0.026410657912492752, 0.02764636091887951, 0.023834897205233574, 0.0660165548324585, 0.0814855694770813, 0.030365876853466034, 0.04874403774738312, 0.09259213507175446, 0.05526666343212128], [0.16631726920604706, 0.01397373154759407, 0.0062793102115392685, 0.008192408829927444, 0.008677910082042217, 0.011716741137206554, 0.04002454876899719, 0.2457706332206726, 0.04139180853962898, 0.011469966731965542, 0.015443173237144947, 0.011412331834435463, 0.018190253525972366, 0.036096327006816864, 0.024384429678320885, 0.023141756653785706, 0.0768866166472435, 0.2406308799982071]], [[0.23177844285964966, 0.009016918949782848, 0.008160405792295933, 0.011166618205606937, 0.007916998118162155, 0.013676786795258522, 0.026221472769975662, 0.27181026339530945, 0.007380856201052666, 0.01209170650690794, 0.01015844102948904, 0.010952620767056942, 0.009468570351600647, 0.016933174803853035, 0.015932641923427582, 0.02074010856449604, 0.04342406615614891, 0.27316993474960327], [0.23470649123191833, 0.06909729540348053, 0.022421110421419144, 0.04756457731127739, 0.010842200368642807, 0.06000800430774689, 0.09011295437812805, 0.16874948143959045, 0.012121150270104408, 0.022980138659477234, 0.010046320967376232, 0.02581756003201008, 0.008663090877234936, 0.010107701644301414, 0.019060958176851273, 0.007562838960438967, 0.03311736136674881, 0.14702069759368896], [0.18942297995090485, 0.09120112657546997, 0.09026594460010529, 0.06833037734031677, 0.016229044646024704, 0.06389831006526947, 0.12309422343969345, 0.07809869945049286, 0.01850542239844799, 0.020799119025468826, 0.005889722146093845, 0.0219695046544075, 0.036469053477048874, 0.011343715712428093, 0.010959558188915253, 0.024510249495506287, 0.056859806180000305, 0.07215315103530884], [0.3428649306297302, 0.01874847337603569, 0.020708367228507996, 0.032938189804553986, 0.0162880327552557, 0.06405911594629288, 0.05747656896710396, 0.19979633390903473, 0.0077477251179516315, 0.01319295633584261, 0.00396001897752285, 0.010565203614532948, 0.005478422157466412, 0.0025703944265842438, 0.00901210866868496, 0.0038733056280761957, 0.015007441863417625, 0.17571240663528442], [0.1973193734884262, 0.005578941665589809, 0.0071618943475186825, 0.035681143403053284, 0.01575106754899025, 0.07234586775302887, 0.02790147438645363, 0.22674886882305145, 0.046809934079647064, 0.019509578123688698, 0.01698295585811138, 0.0706363245844841, 0.017924122512340546, 0.0062258546240627766, 0.011475645005702972, 0.011498791165649891, 0.00809540692716837, 0.20235276222229004], [0.24935010075569153, 0.02483288198709488, 0.10598801076412201, 0.04694075137376785, 0.0048635294660925865, 0.055515993386507034, 0.11723342537879944, 0.14015500247478485, 0.02879008650779724, 0.013811049051582813, 0.001950882957316935, 0.011122328229248524, 0.004098531790077686, 0.01871725730597973, 0.007167981006205082, 0.013263762928545475, 0.03319977968931198, 0.12299869954586029], [0.23950406908988953, 0.007638230454176664, 0.006360712926834822, 0.051207829266786575, 0.03379206359386444, 0.03679215535521507, 0.10775113850831985, 0.17612618207931519, 0.008902481757104397, 0.011989410035312176, 0.013803270645439625, 0.03254292905330658, 0.010074608959257603, 0.006861485540866852, 0.013390027917921543, 0.012510300613939762, 0.06655097752809525, 0.16420213878154755], [0.22938159108161926, 0.010497979819774628, 0.005237402860075235, 0.00427938112989068, 0.005856228061020374, 0.004202816169708967, 0.017270609736442566, 0.3382432758808136, 0.002918344223871827, 0.003424231428653002, 0.001955332001671195, 0.0023958657402545214, 0.0032941519748419523, 0.003389294259250164, 0.008643732406198978, 0.003582029603421688, 0.022759409621357918, 0.3326682448387146], [0.22256222367286682, 0.001078935107216239, 0.0012263262178748846, 0.016598381102085114, 0.0022324607707560062, 0.005086782854050398, 0.017885765060782433, 0.20735333859920502, 0.048210036009550095, 0.04561522230505943, 0.09164172410964966, 0.04604826495051384, 0.007074725814163685, 0.02502479776740074, 0.016425762325525284, 0.007580524310469627, 0.044041115790605545, 0.19431360065937042], [0.26399895548820496, 0.013750621117651463, 0.022536180913448334, 0.011904115788638592, 0.0023443298414349556, 0.006462994031608105, 0.02367585338652134, 0.2191505879163742, 0.05408143252134323, 0.02090494893491268, 0.021449610590934753, 0.01459458377212286, 0.00856600608676672, 0.031047580763697624, 0.014068949967622757, 0.03160405531525612, 0.04298052191734314, 0.19687868654727936], [0.2672095000743866, 0.0014031579485163093, 0.0015224505914375186, 0.0027386918663978577, 0.0013122416567057371, 0.0009873248636722565, 0.011712946929037571, 0.2647572457790375, 0.015211430378258228, 0.05139315873384476, 0.019654499366879463, 0.020124968141317368, 0.007959679700434208, 0.008853829465806484, 0.030392244458198547, 0.005587695632129908, 0.04830876737833023, 0.2408701479434967], [0.31882861256599426, 0.009150827303528786, 0.0028792789671570063, 0.0019402742618694901, 0.0011084525613114238, 0.002327686408534646, 0.007822778075933456, 0.2891474962234497, 0.00869370810687542, 0.031288910657167435, 0.00572418374940753, 0.0027044713497161865, 0.005874332506209612, 0.012486523017287254, 0.015403162688016891, 0.007809897419065237, 0.012242619879543781, 0.2645667493343353], [0.22198712825775146, 0.0044528646394610405, 0.007791364565491676, 0.011190135963261127, 0.003595407586544752, 0.004105175379663706, 0.017300467938184738, 0.2227591723203659, 0.0033381260000169277, 0.01487482339143753, 0.010298422537744045, 0.009125156328082085, 0.01127483882009983, 0.08888585865497589, 0.013047389686107635, 0.08546716719865799, 0.05541282519698143, 0.21509364247322083], [0.3455490171909332, 0.024353310465812683, 0.050042204558849335, 0.010098977014422417, 0.0024075102992355824, 0.003903424832969904, 0.029498182237148285, 0.14673855900764465, 0.014711922034621239, 0.02859228104352951, 0.02588934823870659, 0.016501102596521378, 0.021005459129810333, 0.01594257354736328, 0.04065829515457153, 0.021008474752306938, 0.06419636309146881, 0.13890308141708374], [0.29080572724342346, 0.009679332375526428, 0.006451654247939587, 0.002988870721310377, 0.00236666202545166, 0.0015280310763046145, 0.013688185252249241, 0.20745733380317688, 0.02338843233883381, 0.03141989931464195, 0.021195417270064354, 0.014553354121744633, 0.02237194962799549, 0.016047745943069458, 0.04553605616092682, 0.03143319860100746, 0.05340282618999481, 0.20568528771400452], [0.32600927352905273, 0.03142834082245827, 0.14109013974666595, 0.015503991395235062, 0.003906885627657175, 0.0037078491877764463, 0.02873443253338337, 0.108656145632267, 0.016190139576792717, 0.039168830960989, 0.012721688486635685, 0.005262508988380432, 0.024226300418376923, 0.025112956762313843, 0.029527129605412483, 0.015833906829357147, 0.06881078332662582, 0.10410868376493454], [0.2230718731880188, 0.0026593890506774187, 0.0016949499258771539, 0.01066264882683754, 0.007503882981836796, 0.005501530598849058, 0.03227834403514862, 0.14588819444179535, 0.018671149387955666, 0.01727702096104622, 0.04748954996466637, 0.03543238714337349, 0.017849186435341835, 0.021378159523010254, 0.03140082582831383, 0.036106888204813004, 0.19109156727790833, 0.15404243767261505], [0.230844184756279, 0.010134227573871613, 0.005120152607560158, 0.003905802732333541, 0.005623640026897192, 0.003855313640087843, 0.016188133507966995, 0.3356981873512268, 0.0029824574012309313, 0.003315548412501812, 0.0019482322968542576, 0.0022324305027723312, 0.0033228956162929535, 0.0035511089954525232, 0.00879747699946165, 0.003747915383428335, 0.024010194465517998, 0.33472204208374023]], [[0.18840758502483368, 0.006761573255062103, 0.010558251291513443, 0.00821959413588047, 0.009397272020578384, 0.008067965507507324, 0.026308929547667503, 0.23617343604564667, 0.026288926601409912, 0.018870338797569275, 0.019377771764993668, 0.011583170853555202, 0.012976647354662418, 0.029357697814702988, 0.028161583468317986, 0.022123219445347786, 0.09036356955766678, 0.2470024973154068], [0.06690052896738052, 0.026885902509093285, 0.16488584876060486, 0.10497447103261948, 0.10604412853717804, 0.08164133876562119, 0.054200299084186554, 0.1283031404018402, 0.022960878908634186, 0.010777032934129238, 0.012709547765552998, 0.025910528376698494, 0.01278596930205822, 0.024234585464000702, 0.013367987237870693, 0.0165301114320755, 0.013627545908093452, 0.11326012015342712], [0.1197395995259285, 0.01774008572101593, 0.03244277834892273, 0.036024875938892365, 0.016530262306332588, 0.027864687144756317, 0.06121402606368065, 0.2969691753387451, 0.013595850206911564, 0.002129525179043412, 0.00567967863753438, 0.006305231712758541, 0.009355361573398113, 0.01770772598683834, 0.018793154507875443, 0.007641254458576441, 0.03378603234887123, 0.27648067474365234], [0.03738326206803322, 0.0928480476140976, 0.12195983529090881, 0.03180105611681938, 0.22304707765579224, 0.08281313627958298, 0.02251361310482025, 0.10363098978996277, 0.05692976340651512, 0.011025190353393555, 0.00671006552875042, 0.04831487312912941, 0.015505527146160603, 0.030191617086529732, 0.009793502278625965, 0.012056122533977032, 0.004360046703368425, 0.08911619335412979], [0.07396551221609116, 0.02841535396873951, 0.04020003229379654, 0.06297516822814941, 0.13516530394554138, 0.1724930852651596, 0.05150190368294716, 0.1407773345708847, 0.03242407739162445, 0.009112473577260971, 0.014120380394160748, 0.019302548840641975, 0.012789357453584671, 0.031140636652708054, 0.02405981719493866, 0.015167365781962872, 0.010084215551614761, 0.12630534172058105], [0.05294744670391083, 0.028137385845184326, 0.1972869336605072, 0.03483227640390396, 0.1619025319814682, 0.05640412122011185, 0.04181113466620445, 0.1343313306570053, 0.03712976723909378, 0.021823197603225708, 0.007945277728140354, 0.011213194578886032, 0.028694286942481995, 0.00975736416876316, 0.02401575818657875, 0.01307887677103281, 0.01663530245423317, 0.12205380946397781], [0.14776471257209778, 0.03387289121747017, 0.009095531888306141, 0.024485884234309196, 0.05319550260901451, 0.018570449203252792, 0.044698067009449005, 0.30540362000465393, 0.013696925714612007, 0.0072076935321092606, 0.005531605798751116, 0.0031706125009804964, 0.004553330596536398, 0.0069602904841303825, 0.016461608931422234, 0.003341573290526867, 0.019189314916729927, 0.2828002870082855], [0.3969096541404724, 0.0013910182751715183, 0.00019752111984416842, 0.0009944457560777664, 0.0002251647092634812, 0.00033324648393318057, 0.07312241941690445, 0.20820748805999756, 0.00017454041517339647, 0.0003640757640823722, 0.00023174220405053347, 0.00023892970057204366, 0.000295927282422781, 0.0008046116563491523, 0.0013782484456896782, 0.000580815423745662, 0.11437098681926727, 0.20017915964126587], [0.014788034372031689, 0.006585907656699419, 0.0208240058273077, 0.016144882887601852, 0.1869499683380127, 0.02760101482272148, 0.0035901067312806845, 0.06092827022075653, 0.08786500245332718, 0.10507974028587341, 0.13318683207035065, 0.08140714466571808, 0.09675361216068268, 0.03536447882652283, 0.0219146478921175, 0.03405630961060524, 0.007585585117340088, 0.05937451124191284], [0.0663667693734169, 0.009211482480168343, 0.05309710651636124, 0.004970685113221407, 0.04917367547750473, 0.03725142776966095, 0.011325536295771599, 0.1351228803396225, 0.15697434544563293, 0.010583898983895779, 0.053158633410930634, 0.03912569209933281, 0.043405089527368546, 0.10173552483320236, 0.029039055109024048, 0.049308743327856064, 0.019577404484152794, 0.1305721253156662], [0.016905810683965683, 0.010422163642942905, 0.023811504244804382, 0.001542522688396275, 0.01871727965772152, 0.012610197067260742, 0.003463025437667966, 0.035810183733701706, 0.2705534100532532, 0.06982278823852539, 0.03607246279716492, 0.26187247037887573, 0.08725959062576294, 0.03885070979595184, 0.020601332187652588, 0.044718168675899506, 0.011907165870070457, 0.03505922481417656], [0.033416807651519775, 0.01724047027528286, 0.012117935344576836, 0.008382346481084824, 0.07856708765029907, 0.041315339505672455, 0.00984850712120533, 0.08611111342906952, 0.22651296854019165, 0.02271968312561512, 0.12254492193460464, 0.01883450523018837, 0.04372764751315117, 0.0786486491560936, 0.04650278761982918, 0.04760533198714256, 0.01952771283686161, 0.08637620508670807], [0.020134154707193375, 0.01764058880507946, 0.02795197255909443, 0.0023598079569637775, 0.0061493548564612865, 0.021369569003582, 0.004942969419062138, 0.04100930690765381, 0.07312382012605667, 0.012022405862808228, 0.027218542993068695, 0.043493300676345825, 0.005724899470806122, 0.4460931718349457, 0.03542216494679451, 0.16222938895225525, 0.012518331408500671, 0.040596235543489456], [0.06568345427513123, 0.0178653784096241, 0.08898939937353134, 0.04074271768331528, 0.04044349864125252, 0.033229101449251175, 0.03402460366487503, 0.07001729309558868, 0.027297118678689003, 0.04466843232512474, 0.03022116795182228, 0.056219909340143204, 0.08650120347738266, 0.041884567588567734, 0.0439583994448185, 0.13535872101783752, 0.07226161658763885, 0.07063349336385727], [0.07272116839885712, 0.017914285883307457, 0.019031692296266556, 0.005901832599192858, 0.02865898422896862, 0.011312663555145264, 0.015175985172390938, 0.19650088250637054, 0.06854676455259323, 0.03342251852154732, 0.0218898206949234, 0.060166116803884506, 0.04939538985490799, 0.04343608394265175, 0.04111025854945183, 0.07126592099666595, 0.04619253799319267, 0.19735708832740784], [0.05506259575486183, 0.020329194143414497, 0.2088211476802826, 0.014450016431510448, 0.05005038529634476, 0.038776639848947525, 0.028963161632418633, 0.11454232037067413, 0.033131394535303116, 0.03628163784742355, 0.017227690666913986, 0.03663219138979912, 0.023689132183790207, 0.06414170563220978, 0.050926096737384796, 0.041133955121040344, 0.0554349347949028, 0.11040579527616501], [0.15614549815654755, 0.006023980677127838, 0.0019445938523858786, 0.003848867956548929, 0.007803231943398714, 0.0040822019800543785, 0.01321367546916008, 0.29552313685417175, 0.02814982458949089, 0.016865013167262077, 0.018230311572551727, 0.004961779806762934, 0.007603655103594065, 0.013753061182796955, 0.0366346538066864, 0.008631321601569653, 0.06563374400138855, 0.3109514117240906], [0.3992187976837158, 0.0012508085928857327, 0.00017913947522174567, 0.0008692066767252982, 0.00019746813632082194, 0.0002979004057124257, 0.06978925317525864, 0.20499248802661896, 0.000161585325258784, 0.0003476796846371144, 0.00022132252342998981, 0.00022926101519260556, 0.00028329697670415044, 0.0007596738869324327, 0.0013280268758535385, 0.0005667912191711366, 0.12014314532279968, 0.19916416704654694]], [[0.13745637238025665, 0.050162047147750854, 0.03446057811379433, 0.13856953382492065, 0.03605016693472862, 0.11384551227092743, 0.12187586724758148, 0.011966499499976635, 0.04562266543507576, 0.014086851850152016, 0.09817298501729965, 0.016078831627964973, 0.016512297093868256, 0.02155858650803566, 0.003235497511923313, 0.04552112892270088, 0.08359473198652267, 0.011229798197746277], [0.13695171475410461, 0.16251085698604584, 0.044054560363292694, 0.08992696553468704, 0.03204122930765152, 0.08050069212913513, 0.12995800375938416, 0.029275977984070778, 0.035434987396001816, 0.04149770736694336, 0.032472748309373856, 0.017151378095149994, 0.011664632707834244, 0.01741609536111355, 0.003426431445404887, 0.030352503061294556, 0.07789348065853119, 0.02747013047337532], [0.12264012545347214, 0.22295208275318146, 0.017813649028539658, 0.07063274830579758, 0.016455426812171936, 0.06535535305738449, 0.05678039416670799, 0.04319395497441292, 0.04056832566857338, 0.1025317832827568, 0.006188032682985067, 0.027358803898096085, 0.01279585249722004, 0.08543258160352707, 0.005866740830242634, 0.03340034559369087, 0.02933024987578392, 0.040703535079956055], [0.23564545810222626, 0.1155063807964325, 0.06224764138460159, 0.027807112783193588, 0.01972048357129097, 0.032765164971351624, 0.15880057215690613, 0.0514608733355999, 0.07063795626163483, 0.02316187135875225, 0.019372113049030304, 0.02136293053627014, 0.010387427173554897, 0.021119223907589912, 0.006024612113833427, 0.017571035772562027, 0.061554886400699615, 0.04485422745347023], [0.2976570725440979, 0.03164852410554886, 0.026580827310681343, 0.056151777505874634, 0.03905099630355835, 0.05442719906568527, 0.1180984228849411, 0.05837623402476311, 0.052888255566358566, 0.013391987420618534, 0.030512437224388123, 0.02744746021926403, 0.011896033771336079, 0.045039188116788864, 0.00971617829054594, 0.02656419388949871, 0.04761555790901184, 0.05293763801455498], [0.2666008174419403, 0.02442570962011814, 0.04427086561918259, 0.0786454826593399, 0.010753468610346317, 0.004442903678864241, 0.1608782857656479, 0.08757051825523376, 0.042281750589609146, 0.009100450202822685, 0.011281066574156284, 0.016087353229522705, 0.029673263430595398, 0.014441006816923618, 0.02847660705447197, 0.014219780452549458, 0.07613328099250793, 0.08071733266115189], [0.09416990727186203, 0.05235547944903374, 0.0396030955016613, 0.13485537469387054, 0.051804665476083755, 0.12934385240077972, 0.09693871438503265, 0.026575688272714615, 0.09036386758089066, 0.025173228234052658, 0.07807611674070358, 0.020054085180163383, 0.01669015921652317, 0.029336977750062943, 0.005627666600048542, 0.03425222635269165, 0.05003815144300461, 0.024740735068917274], [0.1062750443816185, 0.007336172740906477, 0.007554736454039812, 0.0024290625005960464, 0.0018766527064144611, 0.0013471735874190927, 0.008215014822781086, 0.42787355184555054, 0.0003981992485933006, 0.003754247212782502, 0.002188313053920865, 0.0006329542957246304, 0.005429350305348635, 0.006851165555417538, 0.0028127545956522226, 0.0038844081573188305, 0.009540691040456295, 0.40160056948661804], [0.2571696639060974, 0.014689053408801556, 0.045763541013002396, 0.018712328746914864, 0.08144783228635788, 0.02044818364083767, 0.10775471478700638, 0.048349522054195404, 0.029330790042877197, 0.017501357942819595, 0.04635738208889961, 0.049948856234550476, 0.008710663765668869, 0.03192462772130966, 0.006840257439762354, 0.07169916480779648, 0.09877336770296097, 0.04457877576351166], [0.11669010668992996, 0.08141135424375534, 0.01643838733434677, 0.0347476564347744, 0.021170612424612045, 0.0153327826410532, 0.055765118449926376, 0.03845375031232834, 0.06987067312002182, 0.16965261101722717, 0.028213992714881897, 0.1082238033413887, 0.026900839060544968, 0.05977989733219147, 0.025372633710503578, 0.01960550807416439, 0.07688532769680023, 0.03548490256071091], [0.12576822936534882, 0.011907325126230717, 0.004880785476416349, 0.2875458002090454, 0.009142311289906502, 0.016558222472667694, 0.038783494383096695, 0.01930484175682068, 0.08121801167726517, 0.02703089267015457, 0.13686656951904297, 0.06649120151996613, 0.04292783513665199, 0.004239181522279978, 0.015248332172632217, 0.014432985335588455, 0.07906241714954376, 0.01859155111014843], [0.144586443901062, 0.05220945551991463, 0.04407442733645439, 0.03857988491654396, 0.060191214084625244, 0.01610109582543373, 0.05863987281918526, 0.06202993169426918, 0.04140615090727806, 0.018517717719078064, 0.13437221944332123, 0.04624545946717262, 0.023804880678653717, 0.06078602746129036, 0.04741615056991577, 0.04318896681070328, 0.051325976848602295, 0.0565241277217865], [0.16976970434188843, 0.040584541857242584, 0.007875078357756138, 0.013641733676195145, 0.021166766062378883, 0.006592150311917067, 0.04230622947216034, 0.14959797263145447, 0.03316618874669075, 0.03636949881911278, 0.01338182669132948, 0.04273374378681183, 0.01147929672151804, 0.03642040118575096, 0.13291394710540771, 0.029491333290934563, 0.07346533983945847, 0.13904422521591187], [0.14746227860450745, 0.03607584163546562, 0.02425595186650753, 0.012616107240319252, 0.018992237746715546, 0.006499775219708681, 0.027925526723265648, 0.08204635232686996, 0.17363427579402924, 0.01730017177760601, 0.003935430198907852, 0.021874696016311646, 0.08089771866798401, 0.013484499417245388, 0.12695510685443878, 0.047950629144907, 0.07443293929100037, 0.08366032689809799], [0.12891951203346252, 0.024949969723820686, 0.01770532689988613, 0.01756572164595127, 0.03833971545100212, 0.011084186844527721, 0.024932140484452248, 0.1397048979997635, 0.018138660117983818, 0.020990470424294472, 0.03992150351405144, 0.1128055602312088, 0.03297208622097969, 0.04436596482992172, 0.10899721831083298, 0.03868711739778519, 0.04681049659848213, 0.13310939073562622], [0.16742824018001556, 0.020144006237387657, 0.034478966146707535, 0.00825194176286459, 0.014483002945780754, 0.0021009244956076145, 0.012774520553648472, 0.1844293624162674, 0.049537595361471176, 0.0061189946718513966, 0.0036744948010891676, 0.014983762986958027, 0.06292724609375, 0.03768472373485565, 0.11705886572599411, 0.04208366200327873, 0.031602367758750916, 0.19023728370666504], [0.11069484055042267, 0.023612026125192642, 0.024295344948768616, 0.05044462904334068, 0.026651274412870407, 0.050704021006822586, 0.05417909100651741, 0.03182353079319, 0.1415931135416031, 0.0368904285132885, 0.1618758887052536, 0.02541937306523323, 0.02637551911175251, 0.04049346596002579, 0.012382406741380692, 0.056055936962366104, 0.09541076421737671, 0.03109828755259514], [0.1044466570019722, 0.006854222156107426, 0.006928645074367523, 0.002273461315780878, 0.001759708859026432, 0.001255650888197124, 0.007934908382594585, 0.4289371371269226, 0.0003798650286626071, 0.0034865138586610556, 0.0020947372540831566, 0.0005966915632598102, 0.005189530551433563, 0.006375344004482031, 0.0028163292445242405, 0.0036642812192440033, 0.009546573273837566, 0.40545976161956787]]], [[[0.039927370846271515, 0.010668551549315453, 0.025423990562558174, 0.013395324349403381, 0.0013462493661791086, 0.014284237287938595, 0.011309710331261158, 0.27312755584716797, 0.016346009448170662, 0.06316936016082764, 0.01634182035923004, 0.023307543247938156, 0.01612682081758976, 0.05203910544514656, 0.050246961414813995, 0.05039509758353233, 0.06076962128281593, 0.26177462935447693], [0.04279358685016632, 0.011726117692887783, 0.09083914011716843, 0.01056581735610962, 0.001191876595839858, 0.062309518456459045, 0.05653326213359833, 0.3268633484840393, 0.0012529462110251188, 0.009160935878753662, 0.0005588672356680036, 0.003864011960104108, 0.0072076707147061825, 0.011514698155224323, 0.0019557515624910593, 0.01844283938407898, 0.022513817995786667, 0.32070574164390564], [0.030200766399502754, 0.02649892121553421, 0.06860698014497757, 0.03314366191625595, 0.004175487905740738, 0.049377668648958206, 0.071141317486763, 0.32062503695487976, 0.004407459404319525, 0.009546696208417416, 0.0018733131000772119, 0.006525455974042416, 0.019178111106157303, 0.006553690880537033, 0.005639702081680298, 0.004077672027051449, 0.028507912531495094, 0.30992019176483154], [0.0665907934308052, 0.04309407249093056, 0.07253212481737137, 0.01405242457985878, 0.0012260944349691272, 0.034922365099191666, 0.07238636910915375, 0.3149593770503998, 0.0013154895277693868, 0.014275859110057354, 0.0004237256944179535, 0.002738172421231866, 0.005754783283919096, 0.004678451456129551, 0.006693792529404163, 0.008317096158862114, 0.0263689998537302, 0.3096699118614197], [0.0794607549905777, 0.020320231094956398, 0.005821686703711748, 0.013528645038604736, 0.0001815698778955266, 0.0022825398482382298, 0.03235449641942978, 0.40381449460983276, 0.0006310991593636572, 0.006580366753041744, 0.0019839296583086252, 0.0017140294658020139, 0.0015484234318137169, 0.0015338071389123797, 0.019124718382954597, 0.0027966569177806377, 0.0214107483625412, 0.3849118649959564], [0.025455452501773834, 0.04411782696843147, 0.07378262281417847, 0.05076540634036064, 0.005716584622859955, 0.06724534928798676, 0.06633520871400833, 0.2874789237976074, 0.0032819367479532957, 0.016611630097031593, 0.0034574060700833797, 0.007219596300274134, 0.001905347453430295, 0.009075338952243328, 0.009251585230231285, 0.018863650038838387, 0.028567466884851456, 0.28086861968040466], [0.084690622985363, 0.05601583793759346, 0.043844208121299744, 0.1809176206588745, 0.01223018579185009, 0.008525275625288486, 0.045342668890953064, 0.2312459498643875, 0.01670978032052517, 0.035332344472408295, 0.006122537422925234, 0.006871478632092476, 0.0018813200294971466, 0.004630250856280327, 0.011159245856106281, 0.001674699131399393, 0.02667257934808731, 0.22613346576690674], [0.099197156727314, 0.004111211746931076, 0.0011682185577228665, 0.0010876591550186276, 0.0010847151279449463, 0.0013435358414426446, 0.02815828286111355, 0.42227619886398315, 0.0019038923783227801, 0.002301236381754279, 0.0013633060734719038, 0.0008718101307749748, 0.0007843556813895702, 0.00041862830403260887, 0.0017845077672973275, 0.0007753226673230529, 0.026840010657906532, 0.4045298993587494], [0.2237694412469864, 0.008630914613604546, 0.013844641856849194, 0.00805127527564764, 0.00134505913592875, 0.004086348228156567, 0.03318837657570839, 0.28604215383529663, 0.0009252337622456253, 0.017670705914497375, 0.014051007106900215, 0.010670159012079239, 0.005581304896622896, 0.0019912507850676775, 0.028667394071817398, 0.0020423305686563253, 0.06788478046655655, 0.27155765891075134], [0.02128504402935505, 0.02379612997174263, 0.3011510670185089, 0.016073985025286674, 0.00039854939677752554, 0.05113432928919792, 0.0340646430850029, 0.14788739383220673, 0.0034042000770568848, 0.009985605254769325, 0.00611204095184803, 0.008521420881152153, 0.02689112350344658, 0.027292657643556595, 0.025912821292877197, 0.10322805494070053, 0.04751892387866974, 0.14534202218055725], [0.0379609540104866, 0.0057250941172242165, 0.012886229902505875, 0.010513766668736935, 0.0002415676135569811, 0.003754835808649659, 0.014316543936729431, 0.391783207654953, 0.0018820035038515925, 0.012919425964355469, 0.0050966753624379635, 0.013295669108629227, 0.011688361875712872, 0.0029656875412911177, 0.032372184097766876, 0.011204387061297894, 0.05196122080087662, 0.3794322907924652], [0.028267614543437958, 0.004139944911003113, 0.003257719799876213, 0.003370913676917553, 0.00020852267334703356, 0.0019362791208550334, 0.009806862100958824, 0.4686003625392914, 0.0003088282246608287, 0.0038722495082765818, 0.002536363434046507, 0.0014559359988197684, 0.0021187595557421446, 0.00035484012914821506, 0.00505682872608304, 0.0007367039797827601, 0.01761052757501602, 0.44636082649230957], [0.02720515988767147, 0.003847257699817419, 0.001990122254937887, 0.0038523958064615726, 0.00026519078528508544, 0.0046157254837453365, 0.009767244569957256, 0.4507097601890564, 0.0007372355903498828, 0.0050607891753315926, 0.003663962706923485, 0.0027861162088811398, 0.008321686647832394, 0.0022508520632982254, 0.011652931571006775, 0.002960656536743045, 0.026620838791131973, 0.4336920380592346], [0.015256076119840145, 0.013842451386153698, 0.03170451521873474, 0.002498450456187129, 0.0022773602977395058, 0.035399921238422394, 0.035880256444215775, 0.3887113630771637, 0.0007684185402467847, 0.004508805926889181, 0.0006834729574620724, 0.00798022747039795, 0.009546407498419285, 0.0037509151734411716, 0.011952046304941177, 0.024808499962091446, 0.0433666855096817, 0.36706408858299255], [0.03606889769434929, 0.0056025246158242226, 0.005975532811135054, 0.003005386097356677, 0.0003225567634217441, 0.00429846066981554, 0.015659308061003685, 0.4335079789161682, 0.001264640362933278, 0.005632095504552126, 0.0025230783503502607, 0.0030151179526001215, 0.020208919420838356, 0.006051517091691494, 0.008276676759123802, 0.007193739525973797, 0.02744259499013424, 0.41395097970962524], [0.012613079510629177, 0.008798990398645401, 0.012409877963364124, 0.0013372706016525626, 0.0016276350943371654, 0.019957609474658966, 0.01775863580405712, 0.4353967010974884, 0.000709985033608973, 0.0033082712907344103, 0.0015336635988205671, 0.002939381869509816, 0.012714788317680359, 0.007548564113676548, 0.008137133903801441, 0.011045644991099834, 0.023737462237477303, 0.4184253215789795], [0.08531798422336578, 0.021704889833927155, 0.011338997632265091, 0.06483350694179535, 0.004470475018024445, 0.0026010728906840086, 0.020845914259552956, 0.30402737855911255, 0.025534093379974365, 0.05241836979985237, 0.01825014315545559, 0.008552411571145058, 0.002805947093293071, 0.004287172108888626, 0.021848788484930992, 0.0017714869463816285, 0.05598924681544304, 0.29340216517448425], [0.09870890527963638, 0.00419641612097621, 0.0011771739227697253, 0.0011376969050616026, 0.0011287895031273365, 0.0013665097067132592, 0.02844199165701866, 0.42202943563461304, 0.0019610277377068996, 0.0023383821826428175, 0.0014142923755571246, 0.000893391901627183, 0.0007972288876771927, 0.0004161411488894373, 0.0018322638934478164, 0.0007748621865175664, 0.026885125786066055, 0.40450039505958557]], [[0.1004447191953659, 0.08697658777236938, 0.14815954864025116, 0.2926809787750244, 0.05787771940231323, 0.09773397445678711, 0.094001404941082, 0.04529911279678345, 0.009029654785990715, 0.0010368170915171504, 0.0023225971963256598, 0.0014622259186580777, 0.0028899498283863068, 0.00505652604624629, 0.0012946100905537605, 0.0038514365442097187, 0.00511001143604517, 0.044772181659936905], [0.13509494066238403, 0.3662252724170685, 0.02289281226694584, 0.006042062770575285, 0.001133958576247096, 0.0021682491060346365, 0.08152801543474197, 0.150120809674263, 0.002295786514878273, 0.024448463693261147, 0.0005395695334300399, 0.001492215204052627, 0.0022575827315449715, 0.006895842961966991, 0.004439093638211489, 0.0036304015666246414, 0.03954494372010231, 0.14925000071525574], [0.1635245382785797, 0.0681450366973877, 0.00655555073171854, 0.00357191264629364, 0.0022181132808327675, 0.009824017994105816, 0.07880403846502304, 0.2917289137840271, 0.0008846977725625038, 0.003197682788595557, 6.305569695541635e-05, 0.001846805796958506, 0.000943402701523155, 0.01015840657055378, 0.009610074572265148, 0.025885451585054398, 0.03254038095474243, 0.29049792885780334], [0.16444192826747894, 0.08166542649269104, 0.005680874455720186, 0.008536402136087418, 0.0013874724972993135, 0.003488669404760003, 0.09340620785951614, 0.2838193476200104, 0.0017577616963535547, 0.0075034406036138535, 8.482092380290851e-05, 0.0017505657160654664, 0.001151096192188561, 0.0024136954452842474, 0.010241279378533363, 0.0030571066308766603, 0.044980239123106, 0.284633606672287], [0.09307387471199036, 0.06721414625644684, 0.007192071061581373, 0.001226519700139761, 0.001736088772304356, 0.0011016014032065868, 0.0759558230638504, 0.2973990738391876, 0.005977197550237179, 0.037753552198410034, 0.00022827037901151925, 0.0101469112560153, 0.003002574434503913, 0.002955061150714755, 0.03939761221408844, 0.0016250984044745564, 0.058296240866184235, 0.2957184314727783], [0.07513685524463654, 0.034686580300331116, 0.00382444029673934, 0.005243759602308273, 0.005894680507481098, 0.0008140284917317331, 0.05787088721990585, 0.3670696020126343, 0.0016058632172644138, 0.008419140242040157, 0.0008317311876453459, 0.005574050825089216, 0.0006784722208976746, 0.009379821829497814, 0.02080925926566124, 0.004885843489319086, 0.03133060410618782, 0.3659442961215973], [0.17047469317913055, 0.026460934430360794, 0.019532661885023117, 0.025373170152306557, 0.009625977836549282, 0.014175202697515488, 0.18750348687171936, 0.19479922950267792, 0.019072990864515305, 0.009064772166311741, 0.003561051795259118, 0.00674331234768033, 0.006686551030725241, 0.005474025383591652, 0.0066201938316226006, 0.005026650615036488, 0.09797956794500351, 0.19182561337947845], [0.020873380824923515, 0.007711055688560009, 0.0067887031473219395, 0.004606418777257204, 0.0057013025507330894, 0.026407793164253235, 0.0075332410633563995, 0.42983558773994446, 0.017538510262966156, 0.006337795872241259, 0.003082175739109516, 0.013335008174180984, 0.009606325067579746, 0.006055791396647692, 0.007286397740244865, 0.004829463083297014, 0.00992259755730629, 0.4125485122203827], [0.15987329185009003, 0.010595112107694149, 0.004633331671357155, 0.0005805359687656164, 0.0013927927939221263, 0.0008206074708141387, 0.06265925616025925, 0.2888340353965759, 0.01051555760204792, 0.005855455528944731, 0.0013988042483106256, 0.008465155959129333, 0.0042140004225075245, 0.002222393173724413, 0.017400523647665977, 0.0020684334449470043, 0.13448211550712585, 0.2839885950088501], [0.148858442902565, 0.03894448280334473, 0.0015642219223082066, 0.002215384040027857, 0.00024125554773490876, 0.00020401259826030582, 0.04379577562212944, 0.3236675262451172, 0.0028393473476171494, 0.015314935706555843, 0.0020320406183600426, 0.000787015538662672, 0.00044386490480974317, 0.003602523822337389, 0.007715044543147087, 0.0025459839962422848, 0.0823238343000412, 0.3229043185710907], [0.06869526952505112, 0.009253841824829578, 0.000805002695415169, 0.17795144021511078, 0.000485600990941748, 0.0010269463527947664, 0.03555695712566376, 0.2375638335943222, 0.0055615101009607315, 0.014557267539203167, 0.08508272469043732, 0.002563643269240856, 0.00972051452845335, 0.0019391686655580997, 0.007594093214720488, 0.0014777608448639512, 0.11000239849090576, 0.23016200959682465], [0.12722359597682953, 0.009255512617528439, 0.0006522368057630956, 0.0006996101583354175, 0.0011498975800350308, 0.000678436947055161, 0.07193395495414734, 0.29237738251686096, 0.0021806887816637754, 0.004005508963018656, 0.0008179774740710855, 0.005866870284080505, 0.0010028800461441278, 0.0031410858500748873, 0.038690097630023956, 0.001258685952052474, 0.15306714177131653, 0.28599831461906433], [0.07806295901536942, 0.007074024993926287, 0.0008128152694553137, 0.0017547878669574857, 0.00028320986893959343, 0.00014794597518630326, 0.02122882567346096, 0.3718090355396271, 0.0015148078091442585, 0.00201263721100986, 0.0004639709950424731, 0.0017382525838911533, 0.0020605905447155237, 0.012563331983983517, 0.08362829685211182, 0.010424165986478329, 0.04088355973362923, 0.3635367155075073], [0.13270114362239838, 0.007692325860261917, 0.0016272233333438635, 0.0043623861856758595, 0.0007901415228843689, 0.0033263189252465963, 0.052610334008932114, 0.2889975309371948, 0.0024821495171636343, 0.014894410036504269, 0.0015901929000392556, 0.00469441432505846, 0.02117910422384739, 0.03024669550359249, 0.056963011622428894, 0.025782926008105278, 0.07216000556945801, 0.27789971232414246], [0.05340107902884483, 0.004849651828408241, 0.0014526500599458814, 0.0020803441293537617, 0.0011938614770770073, 0.001302318531088531, 0.019555892795324326, 0.14268942177295685, 0.0037122147623449564, 0.007203707471489906, 0.0017562095308676362, 0.017090022563934326, 0.010307184420526028, 0.012858710251748562, 0.5344483256340027, 0.008620180189609528, 0.03847604990005493, 0.1390022337436676], [0.13852062821388245, 0.009660283103585243, 0.006158177740871906, 0.002498967805877328, 0.0007568130968138576, 0.0011358256451785564, 0.0398440808057785, 0.3283310830593109, 0.0006706080166622996, 0.004166875034570694, 0.0003609689592849463, 0.004514767788350582, 0.010477501899003983, 0.02475035935640335, 0.04856542497873306, 0.011445309966802597, 0.050397370010614395, 0.3177449405193329], [0.1203346773982048, 0.010878846049308777, 0.010787240229547024, 0.00921997707337141, 0.007359100505709648, 0.01050320640206337, 0.09011030942201614, 0.20504777133464813, 0.036303602159023285, 0.016572514548897743, 0.009502016939222813, 0.01654214598238468, 0.014703618362545967, 0.007359298877418041, 0.014052575454115868, 0.008457101881504059, 0.21100963652133942, 0.20125627517700195], [0.020869050174951553, 0.007777991704642773, 0.00685927364975214, 0.004707410931587219, 0.00586279109120369, 0.026851659640669823, 0.007558899465948343, 0.428874135017395, 0.017636504024267197, 0.006521133705973625, 0.0031691440381109715, 0.013562708161771297, 0.009754634462296963, 0.006119623780250549, 0.0073306383565068245, 0.004845588933676481, 0.009951596148312092, 0.4117472171783447]], [[0.03466535732150078, 0.005906739737838507, 0.05680963769555092, 0.01432802900671959, 0.020989058539271355, 0.016076814383268356, 0.0028270555194467306, 0.07333064079284668, 0.10866568237543106, 0.09725113958120346, 0.12021805346012115, 0.0845312550663948, 0.0794367641210556, 0.09288670122623444, 0.019418762996792793, 0.08038876950740814, 0.020366769284009933, 0.07190272212028503], [0.04252896457910538, 0.029817499220371246, 0.5160648226737976, 0.040217190980911255, 0.05508490279316902, 0.09229681640863419, 0.018258174881339073, 0.03884297236800194, 0.03623262420296669, 0.01191285252571106, 0.004939763806760311, 0.02308192104101181, 0.007258732803165913, 0.02145150490105152, 0.006162031088024378, 0.010289904661476612, 0.007102116476744413, 0.038457222282886505], [0.08611851185560226, 0.04335745424032211, 0.14748285710811615, 0.04791613668203354, 0.026255717501044273, 0.03325994312763214, 0.02993939444422722, 0.2490779608488083, 0.015052839182317257, 0.017226001247763634, 0.005980141460895538, 0.018188780173659325, 0.0059185633435845375, 0.009482339955866337, 0.0034330838825553656, 0.005506662651896477, 0.011204253882169724, 0.24459941685199738], [0.04532117024064064, 0.019750380888581276, 0.2661151885986328, 0.06385651230812073, 0.18861046433448792, 0.04972066730260849, 0.011997582390904427, 0.038802944123744965, 0.07614709436893463, 0.005162123590707779, 0.012577616609632969, 0.14519554376602173, 0.008565749041736126, 0.011092117056250572, 0.0050905668176710606, 0.00957192201167345, 0.004218634683638811, 0.03820377588272095], [0.0393734835088253, 0.029615730047225952, 0.05496162176132202, 0.07653293013572693, 0.4306057393550873, 0.0901598110795021, 0.007612872868776321, 0.03054128773510456, 0.07277911901473999, 0.010665071196854115, 0.03441762179136276, 0.0218783151358366, 0.02840597741305828, 0.013920282945036888, 0.007013923488557339, 0.017717374488711357, 0.003534315386787057, 0.03026452474296093], [0.07206086069345474, 0.0348307229578495, 0.15316787362098694, 0.02445731870830059, 0.06375640630722046, 0.09266769886016846, 0.03103839047253132, 0.18232282996177673, 0.05040578916668892, 0.021723689511418343, 0.011673368513584137, 0.020133396610617638, 0.012675839476287365, 0.02526470459997654, 0.005389898084104061, 0.008351814933121204, 0.011300373822450638, 0.1787789911031723], [0.06632090359926224, 0.057847436517477036, 0.24257613718509674, 0.09720002114772797, 0.09520717710256577, 0.10470359027385712, 0.020591994747519493, 0.09545079618692398, 0.03409520536661148, 0.014590109698474407, 0.009484008885920048, 0.035269223153591156, 0.004725113045424223, 0.009066988714039326, 0.004088010638952255, 0.006137330085039139, 0.006054155062884092, 0.09659188240766525], [0.0039885276928544044, 0.0058994898572564125, 0.0014845558907836676, 0.0006871134974062443, 0.00045502957073040307, 0.0006014243699610233, 0.01861751079559326, 0.4765521287918091, 0.002298631239682436, 0.0012838615803048015, 0.0005638358416035771, 0.0013968913117423654, 0.00040113599970936775, 0.00020359645714052022, 0.001030260929837823, 0.00038791861152276397, 0.0211165901273489, 0.4630315601825714], [0.05808135122060776, 0.007903077639639378, 0.008251064456999302, 0.013762669637799263, 0.04246354103088379, 0.08224475383758545, 0.004855191335082054, 0.1874433308839798, 0.07008587568998337, 0.015389678999781609, 0.050404228270053864, 0.07908821105957031, 0.1332848221063614, 0.0154644176363945, 0.02325836755335331, 0.01167977787554264, 0.013358823023736477, 0.18298077583312988], [0.020741919055581093, 0.019646262750029564, 0.6629657745361328, 0.009310458786785603, 0.013878319412469864, 0.02863168716430664, 0.015410681255161762, 0.03666144981980324, 0.006111299153417349, 0.04664858058094978, 0.0107496976852417, 0.046498920768499374, 0.00442558154463768, 0.006670255213975906, 0.006250779610127211, 0.003506392939016223, 0.02588919922709465, 0.036002617329359055], [0.09043166786432266, 0.005342531017959118, 0.01100019458681345, 0.01014859788119793, 0.013801252469420433, 0.03068246692419052, 0.004590142052620649, 0.21873824298381805, 0.09665105491876602, 0.023738723248243332, 0.04312926158308983, 0.1440122276544571, 0.030539188534021378, 0.014483828097581863, 0.027538307011127472, 0.008782132528722286, 0.01345953531563282, 0.2129305750131607], [0.05307503789663315, 0.016318999230861664, 0.09278155863285065, 0.02379555255174637, 0.08495921641588211, 0.05140041932463646, 0.005888082552701235, 0.07419399917125702, 0.17507097125053406, 0.02380201406776905, 0.11751517653465271, 0.1161857321858406, 0.033722955733537674, 0.026157855987548828, 0.00770624540746212, 0.011657008901238441, 0.013421137817203999, 0.07234807312488556], [0.044378265738487244, 0.003078899346292019, 0.002254289109259844, 0.0014298766618594527, 0.004492605105042458, 0.004540660418570042, 0.014481196179986, 0.41853848099708557, 0.02368905209004879, 0.011915361508727074, 0.003375017549842596, 0.007493525743484497, 0.00600089505314827, 0.005945438053458929, 0.01276878360658884, 0.004112950526177883, 0.03191183879971504, 0.3995928168296814], [0.09029122442007065, 0.011645961552858353, 0.015567945316433907, 0.0049962918274104595, 0.002368813380599022, 0.010742565616965294, 0.03488537296652794, 0.3467831313610077, 0.01785646378993988, 0.012669862248003483, 0.007006247062236071, 0.018267590552568436, 0.00970123615115881, 0.006956860888749361, 0.010292592458426952, 0.008475204929709435, 0.05866408348083496, 0.3328286111354828], [0.030545616522431374, 0.010430654510855675, 0.06136385723948479, 0.008205211721360683, 0.023616882041096687, 0.017605125904083252, 0.008149153552949429, 0.3048078417778015, 0.069024458527565, 0.02400542050600052, 0.057900190353393555, 0.024323586374521255, 0.022823728621006012, 0.0077410307712852955, 0.010895826853811741, 0.005037324037402868, 0.017333542928099632, 0.29619067907333374], [0.032056234776973724, 0.014220052398741245, 0.03894845396280289, 0.004008129239082336, 0.002649441361427307, 0.010989345610141754, 0.013052254915237427, 0.36704763770103455, 0.0203681830316782, 0.027634596452116966, 0.01223784126341343, 0.013203668408095837, 0.011192014440894127, 0.032391779124736786, 0.009829528629779816, 0.01158920954912901, 0.026710744947195053, 0.35187092423439026], [0.06471012532711029, 0.025389958173036575, 0.11018400639295578, 0.05772120878100395, 0.08866102248430252, 0.07823659479618073, 0.010580687783658504, 0.10807028412818909, 0.11370342969894409, 0.039599642157554626, 0.04852229729294777, 0.07820114493370056, 0.012975751422345638, 0.01794624514877796, 0.009802806191146374, 0.013724887743592262, 0.014304733835160732, 0.10766521841287613], [0.004074168391525745, 0.00608546007424593, 0.0015134536661207676, 0.0007231977651827037, 0.0004749887448269874, 0.0006209992570802569, 0.01933569647371769, 0.47565674781799316, 0.002321261912584305, 0.0013110651634633541, 0.0005758790066465735, 0.0014232597313821316, 0.00040720979450270534, 0.00020564463920891285, 0.001044130534864962, 0.0003930812526959926, 0.021542847156524658, 0.4622909426689148]], [[0.12743180990219116, 0.011733721010386944, 0.02740498259663582, 0.005554643459618092, 0.00457743788138032, 0.016678322106599808, 0.024960454553365707, 0.11539267003536224, 0.022948553785681725, 0.10770302265882492, 0.02678835764527321, 0.02862645871937275, 0.024837063625454903, 0.0783766508102417, 0.030008988454937935, 0.09172317385673523, 0.1433921456336975, 0.1118614599108696], [0.08733322471380234, 0.03530232608318329, 0.14969612658023834, 0.06534449011087418, 0.022119130939245224, 0.05197777971625328, 0.10706999897956848, 0.20034390687942505, 0.02044832333922386, 0.004827376455068588, 0.004260435234755278, 0.006534361746162176, 0.007389443460851908, 0.00716952932998538, 0.0051629203371703625, 0.009490355849266052, 0.01586132124066353, 0.19966891407966614], [0.16202987730503082, 0.07704012840986252, 0.034857653081417084, 0.04618297889828682, 0.012616577558219433, 0.213375523686409, 0.10733926296234131, 0.11787305027246475, 0.012523176148533821, 0.025694087147712708, 0.0016423385823145509, 0.008480128832161427, 0.009036370553076267, 0.016727149486541748, 0.00900261104106903, 0.007346793543547392, 0.021806176751852036, 0.11642615497112274], [0.08302342891693115, 0.03763379901647568, 0.13300342857837677, 0.040006376802921295, 0.04485664889216423, 0.07791782170534134, 0.06445290148258209, 0.21958208084106445, 0.007538627367466688, 0.00831550545990467, 0.01153781171888113, 0.0070167118683457375, 0.019203146919608116, 0.007331408094614744, 0.007380517199635506, 0.005162830930203199, 0.010622087866067886, 0.21541492640972137], [0.030860701575875282, 0.02419825829565525, 0.038320448249578476, 0.05378545820713043, 0.012617412023246288, 0.04933851584792137, 0.05774189531803131, 0.3110387325286865, 0.028018176555633545, 0.010501767508685589, 0.014387954026460648, 0.008220909163355827, 0.021153369918465614, 0.005949904676526785, 0.008020126260817051, 0.004470017738640308, 0.014340141788125038, 0.3070361018180847], [0.14601340889930725, 0.05080786347389221, 0.15833823382854462, 0.04711734876036644, 0.03141247481107712, 0.00348980026319623, 0.08976146578788757, 0.11916311085224152, 0.039669446647167206, 0.01129006315022707, 0.03447737917304039, 0.011588691733777523, 0.037929534912109375, 0.02423391118645668, 0.013567402958869934, 0.037922777235507965, 0.024976300075650215, 0.1182408332824707], [0.08092018216848373, 0.04083489626646042, 0.09220860153436661, 0.06137646362185478, 0.05279597267508507, 0.05098963528871536, 0.10699112713336945, 0.20822440087795258, 0.006333335768431425, 0.011830657720565796, 0.002363272476941347, 0.008359072729945183, 0.005418083164840937, 0.013369405642151833, 0.004643585067242384, 0.017415549606084824, 0.029956672340631485, 0.20596899092197418], [0.021826570853590965, 0.01013452559709549, 0.015553249046206474, 0.00632872711867094, 0.005897911265492439, 0.006930015981197357, 0.01409920398145914, 0.4265640079975128, 0.00488376384600997, 0.008348834700882435, 0.003512097056955099, 0.004518778994679451, 0.005811029113829136, 0.013484722934663296, 0.006485698278993368, 0.010515416972339153, 0.01563264988362789, 0.4194728136062622], [0.056247640401124954, 0.02062574215233326, 0.031225431710481644, 0.012340448796749115, 0.02037731371819973, 0.014243409037590027, 0.01911298930644989, 0.1185140460729599, 0.020575737580657005, 0.058351002633571625, 0.0544712208211422, 0.045930080115795135, 0.060205843299627304, 0.10090139508247375, 0.03919772803783417, 0.09355749189853668, 0.11764536798000336, 0.11647704243659973], [0.1484278440475464, 0.016109086573123932, 0.02758353017270565, 0.01338847354054451, 0.0076916515827178955, 0.010690069757401943, 0.04038388654589653, 0.16215583682060242, 0.08564462512731552, 0.004245890770107508, 0.038900744169950485, 0.01719525083899498, 0.06566111743450165, 0.037011437118053436, 0.055177584290504456, 0.02677491120994091, 0.0876389816403389, 0.15531909465789795], [0.03536484017968178, 0.0030045395251363516, 0.0026903084944933653, 0.01040639542043209, 0.009763960726559162, 0.01067189872264862, 0.009185884147882462, 0.25588661432266235, 0.06535129994153976, 0.045358963310718536, 0.02577025815844536, 0.027688778936862946, 0.05279473215341568, 0.02699274569749832, 0.04840739816427231, 0.04066108167171478, 0.08615981787443161, 0.24384048581123352], [0.09812001138925552, 0.01470017246901989, 0.0392032228410244, 0.019477656111121178, 0.050850044935941696, 0.03860669210553169, 0.025741437450051308, 0.1519668996334076, 0.0589691624045372, 0.06008013337850571, 0.033762164413928986, 0.02192785032093525, 0.04184814915060997, 0.05041876062750816, 0.027038125321269035, 0.06118982657790184, 0.05748332291841507, 0.14861640334129333], [0.021508989855647087, 0.009861184284090996, 0.008583263494074345, 0.012337841093540192, 0.008833758533000946, 0.04811158403754234, 0.0073131415992975235, 0.12631851434707642, 0.027699049562215805, 0.06854362785816193, 0.03434881195425987, 0.023282039910554886, 0.005025592166930437, 0.13821686804294586, 0.03051151894032955, 0.27048978209495544, 0.034631699323654175, 0.12438273429870605], [0.06481388211250305, 0.030631477013230324, 0.051119256764650345, 0.009009292349219322, 0.0028977079782634974, 0.03185376152396202, 0.018175076693296432, 0.17838120460510254, 0.06533259153366089, 0.06518315523862839, 0.05659039691090584, 0.012497221119701862, 0.0963718369603157, 0.006770670879632235, 0.06490276753902435, 0.010870288126170635, 0.059995003044605255, 0.17460443079471588], [0.030923038721084595, 0.007563164923340082, 0.01864892803132534, 0.010142209008336067, 0.0055441525764763355, 0.009704366326332092, 0.005053847562521696, 0.2871916890144348, 0.03108331933617592, 0.03602399677038193, 0.024220837280154228, 0.018962010741233826, 0.04091940447688103, 0.062025800347328186, 0.01888330653309822, 0.0871492549777031, 0.025185275822877884, 0.28077542781829834], [0.06625939160585403, 0.017245648428797722, 0.015610597096383572, 0.005524837877601385, 0.0022841168101876974, 0.02201263979077339, 0.013477462343871593, 0.2743147313594818, 0.034794311970472336, 0.03650306910276413, 0.02527291141450405, 0.014333965256810188, 0.07101932913064957, 0.005042278673499823, 0.07414592802524567, 0.003906632773578167, 0.05083887279033661, 0.26741328835487366], [0.07612056285142899, 0.007207421585917473, 0.015059876255691051, 0.008600425906479359, 0.011254877783358097, 0.008697813376784325, 0.020706906914711, 0.23183558881282806, 0.03408888727426529, 0.0446951650083065, 0.020419331267476082, 0.022335968911647797, 0.030206739902496338, 0.048930574208498, 0.02210208959877491, 0.0706065371632576, 0.10293996334075928, 0.2241913378238678], [0.02207666076719761, 0.01035249512642622, 0.01584656909108162, 0.006427697371691465, 0.006028728559613228, 0.0069670891389250755, 0.014458661898970604, 0.4261413514614105, 0.004864797927439213, 0.008128922432661057, 0.003446537535637617, 0.0044856020249426365, 0.005777550861239433, 0.013383190147578716, 0.00643945625051856, 0.010447707027196884, 0.015540446154773235, 0.4191865026950836]], [[0.029000084847211838, 0.007147778756916523, 0.0012732738396152854, 0.006536349654197693, 0.003698871238157153, 0.00419430760666728, 0.017737606540322304, 0.4168916642665863, 0.011217436753213406, 0.023666420951485634, 0.010360737331211567, 0.002569466596469283, 0.0087733780965209, 0.0018550571985542774, 0.005549428518861532, 0.0057951114140450954, 0.01825687475502491, 0.4254761040210724], [0.07583723217248917, 0.00866509135812521, 0.23003174364566803, 0.3994467854499817, 0.01237899623811245, 0.02590174973011017, 0.050183121114969254, 0.08425033837556839, 0.0006643888773396611, 0.0012660007923841476, 0.0010733491508290172, 0.0015532600227743387, 0.0011666343780234456, 0.0021106433123350143, 0.006294535472989082, 0.003380643203854561, 0.012371652759611607, 0.08342378586530685], [0.057553187012672424, 0.007599798962473869, 0.0038285732734948397, 0.021059835329651833, 0.01292149443179369, 0.04675150290131569, 0.05218619108200073, 0.38445407152175903, 0.00032767406082712114, 0.003441272769123316, 0.00023672192764934152, 0.0008177513373084366, 0.0020439201034605503, 0.0010684612207114697, 0.00574119295924902, 0.005741660948842764, 0.011131688952445984, 0.3830949366092682], [0.011754250153899193, 0.002550513483583927, 0.0037371909711509943, 0.005155552644282579, 0.02368428371846676, 0.8183836936950684, 0.07194622606039047, 0.026134267449378967, 0.0008711349219083786, 0.0007436875021085143, 0.00014266058860812336, 8.480919495923445e-05, 0.0006984791834838688, 0.002855242695659399, 0.0003231409646105021, 0.0008175754337571561, 0.002391560235992074, 0.027725694701075554], [0.059166070073843, 0.005712205544114113, 0.003698964836075902, 0.012400583364069462, 0.02311685122549534, 0.2987513542175293, 0.21054722368717194, 0.18115822970867157, 0.0014946138253435493, 0.001495890086516738, 0.001273671630769968, 0.0006927768117748201, 0.0019109556451439857, 0.0015320221427828074, 0.0010408355155959725, 0.0007471466087736189, 0.006036452483385801, 0.18922406435012817], [0.038888659328222275, 0.004667897243052721, 0.005042595788836479, 0.012932277284562588, 0.010641931556165218, 0.03225531801581383, 0.19805973768234253, 0.34680962562561035, 0.0031483632046729326, 0.002063401509076357, 0.0006474539986811578, 0.0006903455941937864, 0.0003479349543340504, 0.0004786626959685236, 0.0020905842538923025, 0.0009374577202834189, 0.0047715213149785995, 0.3355262577533722], [0.019925884902477264, 0.002147180959582329, 0.0005512902862392366, 0.0019139813957735896, 0.0020143429283052683, 0.003076439956203103, 0.010763746686279774, 0.48099783062934875, 0.0022921410854905844, 0.003853387897834182, 0.0016092297155410051, 0.0009803248103708029, 0.0013252162607386708, 0.0003729851741809398, 0.00029977934900671244, 0.0004902426153421402, 0.0009376475936733186, 0.4664483666419983], [0.004776326939463615, 0.001787360874004662, 0.000561191700398922, 0.0011889796005561948, 0.0007774977711960673, 0.0005999394343234599, 0.003705322276800871, 0.48159369826316833, 0.0009145598160102963, 0.0023839501664042473, 0.0010290108621120453, 0.00048499213880859315, 0.0008886504219844937, 0.0008400732767768204, 0.0019582619424909353, 0.0012964761117473245, 0.0030506630428135395, 0.49216315150260925], [0.10887381434440613, 0.0016528887208551168, 0.0008396539487875998, 0.0021106423810124397, 0.0016514967428520322, 0.002206712029874325, 0.03871900215744972, 0.15040111541748047, 0.02383054792881012, 0.1182660311460495, 0.1581474393606186, 0.11741871386766434, 0.05201048031449318, 0.011664210818707943, 0.01854226365685463, 0.0036009768955409527, 0.03982894495129585, 0.15023504197597504], [0.014213803224265575, 0.00047932483721524477, 0.000392376707168296, 0.0002953741932287812, 0.00037678456283174455, 0.009012782014906406, 0.0044897920452058315, 0.027142180129885674, 0.0026526441797614098, 0.04124090448021889, 0.12916181981563568, 0.0764131024479866, 0.4299333691596985, 0.05489332228899002, 0.0999566838145256, 0.06744007766246796, 0.01573309302330017, 0.026172596961259842], [0.03599332273006439, 0.0005511943018063903, 0.0002024235436692834, 6.679161742795259e-05, 0.00013851228868588805, 0.0008589829667471349, 0.0012404705630615354, 0.05542965605854988, 0.0017245732014998794, 0.005991565994918346, 0.016350816935300827, 0.06449104100465775, 0.5990520715713501, 0.04106612876057625, 0.04730425402522087, 0.04806898906826973, 0.025875328108668327, 0.05559390038251877], [0.12207271158695221, 0.001878964016214013, 0.0015057666460052133, 0.0009395303204655647, 0.0009343416313640773, 0.0007851410191506147, 0.005704561714082956, 0.12007022649049759, 0.0016397549770772457, 0.009542828425765038, 0.018711136654019356, 0.02638634480535984, 0.07186067849397659, 0.11997956782579422, 0.0839112251996994, 0.026758529245853424, 0.252912312746048, 0.13440638780593872], [0.016105180606245995, 0.00023643490567337722, 0.0012779179960489273, 0.000554002239368856, 0.0001638978865230456, 0.0006986370426602662, 0.0015096071874722838, 0.03591961786150932, 0.00024158517771866173, 0.00039618738810531795, 0.004387632478028536, 0.0020379077177494764, 0.007544557098299265, 0.2416580319404602, 0.568833589553833, 0.03495413064956665, 0.04389135167002678, 0.03958973288536072], [0.042449116706848145, 0.0019704473670572042, 0.0037396997213363647, 0.006051092408597469, 0.0004523280658759177, 0.0006119764875620604, 0.005847590044140816, 0.24254074692726135, 0.0004464400699362159, 0.007964756339788437, 0.005200890824198723, 0.010665896348655224, 0.023169873282313347, 0.015363779850304127, 0.12722401320934296, 0.10153602063655853, 0.15670551359653473, 0.24805977940559387], [0.017132937908172607, 0.0007276865653693676, 0.0012802222045138478, 0.0013481313362717628, 0.0010906750103458762, 0.0006449866923503578, 0.001009977306239307, 0.08792145550251007, 0.00020034007320646197, 0.00018708285642787814, 0.00030999036971479654, 0.002006865805014968, 0.02224629558622837, 0.019411791115999222, 0.03269414231181145, 0.4077534079551697, 0.313664048910141, 0.09036993235349655], [0.015058044344186783, 0.0006887116469442844, 0.00031699606915935874, 0.0007740752771496773, 0.00033644892391748726, 0.0006628187256865203, 0.002054744865745306, 0.4127197265625, 0.0001035248496918939, 0.00091585423797369, 0.0001452276046620682, 7.190446194726974e-05, 0.0007205376750789583, 0.002284085378050804, 0.007971799932420254, 0.0030932421796023846, 0.09025414288043976, 0.4618280529975891], [0.026131536811590195, 0.0015239936765283346, 0.001111907185986638, 0.0018891094950959086, 0.0010762738529592752, 0.0019098371267318726, 0.003660482820123434, 0.4383814334869385, 0.001805235631763935, 0.00344840157777071, 0.002491562394425273, 0.0005669896490871906, 0.0026247671339660883, 0.0031149715650826693, 0.008613880723714828, 0.011722362600266933, 0.03323199599981308, 0.4566952586174011], [0.004680306650698185, 0.001867090119048953, 0.0006128898821771145, 0.0013643414713442326, 0.0008105731103569269, 0.00058481574524194, 0.003819627221673727, 0.4826640486717224, 0.0008622640161775053, 0.002172580687329173, 0.0009537982405163348, 0.0004677009128499776, 0.0007916021277196705, 0.0007577108917757869, 0.0019820036832243204, 0.001351688988506794, 0.0030400550458580256, 0.49121683835983276]], [[0.1898135542869568, 0.024469781666994095, 0.022570321336388588, 0.11235058307647705, 0.008875341154634953, 0.024839598685503006, 0.04574994742870331, 0.19065448641777039, 0.021216675639152527, 0.028335366398096085, 0.013072430156171322, 0.017592521384358406, 0.021822869777679443, 0.012569335289299488, 0.01108807884156704, 0.014909174293279648, 0.05248589068651199, 0.1875840425491333], [0.14636147022247314, 0.05775781720876694, 0.029096826910972595, 0.09808610379695892, 0.036975085735321045, 0.027523772791028023, 0.11357832700014114, 0.1960916370153427, 0.013634162954986095, 0.02244700863957405, 0.004214777145534754, 0.004942431580275297, 0.0046357265673577785, 0.007176742888987064, 0.0047178613021969795, 0.004920807667076588, 0.032487280666828156, 0.19535212218761444], [0.04954651743173599, 0.058844488114118576, 0.07180391997098923, 0.05107466131448746, 0.02123534493148327, 0.15546070039272308, 0.117716945707798, 0.15454530715942383, 0.004417264834046364, 0.020678777247667313, 0.004518123343586922, 0.0035898941569030285, 0.010071584023535252, 0.06150102987885475, 0.005395074374973774, 0.022909197956323624, 0.030926022678613663, 0.15576519072055817], [0.22788771986961365, 0.1278296709060669, 0.01585344411432743, 0.0542810894548893, 0.0037494369316846132, 0.026037994772195816, 0.22009287774562836, 0.11290376633405685, 0.01430949755012989, 0.006528706289827824, 0.019689301028847694, 0.0026883301325142384, 0.0066045308485627174, 0.0011064099380746484, 0.00043914082925766706, 0.0021288031712174416, 0.04539739340543747, 0.11247190833091736], [0.13683469593524933, 0.03138038516044617, 0.010127684101462364, 0.01902218535542488, 0.01398143358528614, 0.08491285890340805, 0.10582420974969864, 0.20966807007789612, 0.06176525354385376, 0.05028801038861275, 0.006909007206559181, 0.019915984943509102, 0.004523326642811298, 0.004532352089881897, 0.0010633234633132815, 0.004060027189552784, 0.027375003322958946, 0.20781631767749786], [0.10490696877241135, 0.08926695585250854, 0.07655267417430878, 0.1143251359462738, 0.03971071168780327, 0.019472619518637657, 0.12750303745269775, 0.1289055496454239, 0.019713949412107468, 0.0663122832775116, 0.00972814206033945, 0.011214181780815125, 0.02741907350718975, 0.005005299113690853, 0.0029371625278145075, 0.004108913242816925, 0.02427578531205654, 0.12864165008068085], [0.11647169291973114, 0.020201662555336952, 0.01141404826194048, 0.01924986019730568, 0.0075114332139492035, 0.016302665695548058, 0.0732162594795227, 0.3386465311050415, 0.010013083927333355, 0.008722017519176006, 0.002533279825001955, 0.0021642104256898165, 0.004135716240853071, 0.004147868137806654, 0.0018979271408170462, 0.004552953410893679, 0.023112375289201736, 0.3357063829898834], [0.009671689942479134, 0.004078553058207035, 0.0037028708029538393, 0.0010955199832096696, 0.002285686554387212, 0.0025623913388699293, 0.00671121571213007, 0.4710530638694763, 0.002601702231913805, 0.004217065405100584, 0.0013990441802889109, 0.001545774401165545, 0.0028271256014704704, 0.006766390986740589, 0.002993031870573759, 0.003166576148942113, 0.008003068156540394, 0.4653192162513733], [0.09688569605350494, 0.0067462497390806675, 0.00342676998116076, 0.002785325516015291, 0.004024249501526356, 0.02847684547305107, 0.04021775349974632, 0.28458601236343384, 0.01187425572425127, 0.08946657180786133, 0.017887486144900322, 0.01804516650736332, 0.006039950530976057, 0.011811818927526474, 0.0035153813660144806, 0.012178303673863411, 0.09200217574834824, 0.27003008127212524], [0.11452146619558334, 0.02722747065126896, 0.016492191702127457, 0.012556299567222595, 0.008565055206418037, 0.03399953991174698, 0.03857249766588211, 0.21412736177444458, 0.0671038031578064, 0.047025542706251144, 0.03230413794517517, 0.03494720160961151, 0.021309491246938705, 0.010279509238898754, 0.009759888052940369, 0.013415969908237457, 0.09254729002714157, 0.20524540543556213], [0.23417404294013977, 0.0022669928148388863, 0.0010255704401060939, 0.10202788561582565, 0.002520071342587471, 0.03613690659403801, 0.017391901463270187, 0.09866224974393845, 0.16682711243629456, 0.05816785991191864, 0.031840331852436066, 0.02351282350718975, 0.009413088671863079, 0.003942681010812521, 0.0009616203606128693, 0.008939091116189957, 0.1076887995004654, 0.09450092911720276], [0.12351202964782715, 0.004916330799460411, 0.0018114919075742364, 0.004900195635855198, 0.016935938969254494, 0.012285050004720688, 0.03734509274363518, 0.21231167018413544, 0.07278730720281601, 0.030463624745607376, 0.05948183313012123, 0.027706848457455635, 0.06796776503324509, 0.020853396505117416, 0.008121873252093792, 0.009039019234478474, 0.08317866921424866, 0.20638185739517212], [0.10656459629535675, 0.0025680125690996647, 0.0023171070497483015, 0.010463278740644455, 0.0018146485090255737, 0.020979823544621468, 0.02911553345620632, 0.12230540812015533, 0.089584119617939, 0.03094104677438736, 0.08568814396858215, 0.0876552164554596, 0.027510622516274452, 0.03167940303683281, 0.0969771072268486, 0.01935032568871975, 0.11476052552461624, 0.11972504109144211], [0.08672112226486206, 0.018617162480950356, 0.020719259977340698, 0.010841356590390205, 0.0013416684232652187, 0.014346066862344742, 0.07718836516141891, 0.12921956181526184, 0.013321918435394764, 0.029920287430286407, 0.05022290721535683, 0.037485260516405106, 0.048758503049612045, 0.012963212095201015, 0.03405534848570824, 0.024714384227991104, 0.26355165243148804, 0.1260118931531906], [0.07079195231199265, 0.005354415159672499, 0.0015910292277112603, 0.0039986963383853436, 0.004974174778908491, 0.01142896432429552, 0.030676737427711487, 0.13875643908977509, 0.12835577130317688, 0.05574692040681839, 0.0631493479013443, 0.04520823433995247, 0.03209730610251427, 0.023062216117978096, 0.07280167192220688, 0.020404014736413956, 0.15557295083999634, 0.1360292285680771], [0.03068418987095356, 0.009456842206418514, 0.004208556842058897, 0.007445477414876223, 0.0014743845677003264, 0.004620094317942858, 0.026595918461680412, 0.17016087472438812, 0.013460319489240646, 0.029851362109184265, 0.042603813111782074, 0.06689020991325378, 0.10502595454454422, 0.019346607849001884, 0.15758411586284637, 0.011745587922632694, 0.13173674046993256, 0.1671089380979538], [0.12531808018684387, 0.005682461895048618, 0.0019499718910083175, 0.003014781279489398, 0.0013442833442240953, 0.002333641517907381, 0.021314384415745735, 0.2540670931339264, 0.030001552775502205, 0.024341292679309845, 0.019269177690148354, 0.006752975285053253, 0.027585284784436226, 0.026226770132780075, 0.012674259953200817, 0.03415518254041672, 0.15601636469364166, 0.24795250594615936], [0.009874818846583366, 0.004306211601942778, 0.003830734407529235, 0.0011434295447543263, 0.0024270201101899147, 0.002603889675810933, 0.0068541583605110645, 0.4698355197906494, 0.0026529713068157434, 0.0042480723932385445, 0.0014116937527433038, 0.0016240270342677832, 0.0029714147094637156, 0.00716816820204258, 0.003163087647408247, 0.0033483824227005243, 0.008051041513681412, 0.4644853472709656]], [[0.04051059111952782, 0.0027342529501765966, 0.01240144856274128, 0.05648796632885933, 0.003566890023648739, 0.012792261317372322, 0.023313913494348526, 0.23161672055721283, 0.031507913023233414, 0.019769271835684776, 0.1136975958943367, 0.02363441325724125, 0.038308486342430115, 0.010702691040933132, 0.010979412123560905, 0.031771790236234665, 0.1131720095872879, 0.2230323851108551], [0.1154751405119896, 0.04278756305575371, 0.09939058125019073, 0.006112650968134403, 0.004254584200680256, 0.022746888920664787, 0.1204175129532814, 0.22756686806678772, 0.003176480531692505, 0.053042616695165634, 0.0018106169300153852, 0.008299848064780235, 0.002473072847351432, 0.014462118968367577, 0.0077202594839036465, 0.006272444035857916, 0.038909655064344406, 0.22508111596107483], [0.2919662296772003, 0.051674142479896545, 0.15580306947231293, 0.002196056069806218, 0.014843749813735485, 0.02373332343995571, 0.060914624482393265, 0.09535445272922516, 0.001900108647532761, 0.08966410160064697, 0.0005021147080697119, 0.0042074499651789665, 0.0008831843733787537, 0.07327037304639816, 0.004054825287312269, 0.020114270970225334, 0.0162255447357893, 0.09269236773252487], [0.3032740354537964, 0.01573142036795616, 0.01069963164627552, 0.1897830367088318, 0.0070920055732131, 0.03519553691148758, 0.07827738672494888, 0.11347062140703201, 0.0014641183661296964, 0.011439483612775803, 0.05749828740954399, 0.01537828054279089, 0.009744605980813503, 0.003563577076420188, 0.0043988716788589954, 0.007826639339327812, 0.022374002262949944, 0.1127883717417717], [0.018434293568134308, 0.001962803304195404, 0.0006880526198074222, 0.0003164648078382015, 0.0010282611474394798, 0.0033481160644441843, 0.03023291565477848, 0.46431756019592285, 0.0004977919161319733, 0.0016159010119736195, 0.00023836074979044497, 0.0012134697753936052, 0.00017134580411948264, 0.0013569017173722386, 0.0006324647110886872, 0.0008532380452379584, 0.01334379892796278, 0.4597482681274414], [0.05440220236778259, 0.017099492251873016, 0.008393975906074047, 0.006317699793726206, 0.010813345201313496, 0.01379154622554779, 0.10961709171533585, 0.34109511971473694, 0.002184326760470867, 0.01163073256611824, 0.0018704483518376946, 0.005341154057532549, 0.0009261674131266773, 0.004193359054625034, 0.003467137925326824, 0.0016247808234766126, 0.07585954666137695, 0.33137187361717224], [0.047062020748853683, 0.006214362569153309, 0.01143714226782322, 0.0017552126664668322, 0.0035263027530163527, 0.007792086340487003, 0.1030898243188858, 0.35297417640686035, 0.0034185827244073153, 0.009663574397563934, 0.0014018345391377807, 0.006045541726052761, 0.0009382253047078848, 0.004115231800824404, 0.004839732311666012, 0.0017742400523275137, 0.08399467170238495, 0.3499571979045868], [0.005335805471986532, 0.0024048832710832357, 0.00306447665207088, 0.0016067485557869077, 0.0013090725988149643, 0.001941537600941956, 0.010907617397606373, 0.4711945056915283, 0.0030737505294382572, 0.0027664334047585726, 0.001324014156125486, 0.0019785501062870026, 0.0032420088537037373, 0.003715289058163762, 0.0029313364066183567, 0.004366198088973761, 0.0133240120485425, 0.46551376581192017], [0.02441510558128357, 0.0014469834277406335, 0.0005135140963830054, 0.00029641634318977594, 0.00044630857883021235, 0.0005495317745953798, 0.02086280845105648, 0.41375428438186646, 0.004800512455403805, 0.007440448738634586, 0.006831322330981493, 0.004572458099573851, 0.004462669137865305, 0.0025333219673484564, 0.0032966139260679483, 0.0009834251832216978, 0.0992937833070755, 0.4035005271434784], [0.0983787253499031, 0.017580874264240265, 0.004480340518057346, 0.0011594168609008193, 0.0014811719302088022, 0.0016751886578276753, 0.032075993716716766, 0.26690441370010376, 0.005918745417147875, 0.14661124348640442, 0.005146463867276907, 0.018433816730976105, 0.007623132783919573, 0.012275150045752525, 0.0060899280942976475, 0.010375911369919777, 0.10493560880422592, 0.2588539123535156], [0.010830682702362537, 0.0003139636537525803, 4.669767076848075e-05, 7.856250704207923e-06, 4.544930561678484e-05, 0.00019098885240964592, 0.0053873551078140736, 0.48488950729370117, 0.0006189068662934005, 0.0021053138189017773, 0.00021935311087872833, 0.0009431520593352616, 0.00013883435167372227, 0.001033357111737132, 0.0003838574339170009, 0.00023357053578365594, 0.025441547855734825, 0.4671696424484253], [0.038577575236558914, 0.003152578603476286, 0.0010186489671468735, 0.0003602229699026793, 0.001179163926281035, 0.0036062959115952253, 0.032447658479213715, 0.42638570070266724, 0.0028004113119095564, 0.0041219377890229225, 0.00044519154471345246, 0.0009763616835698485, 0.0004454087757039815, 0.0021444065496325493, 0.00383399217389524, 0.0014224238693714142, 0.06331462413072586, 0.4137674570083618], [0.029332416132092476, 0.0011100406991317868, 0.0006920002633705735, 0.0011774436570703983, 0.0007278651464730501, 0.0012018437264487147, 0.013485853560268879, 0.45311564207077026, 0.0040902686305344105, 0.0063625904731452465, 0.0029285575728863478, 0.00266622519120574, 0.0019375024130567908, 0.009135818108916283, 0.006128075998276472, 0.005330691114068031, 0.02674531191587448, 0.4338318407535553], [0.09717009216547012, 0.003413236001506448, 0.000989239546470344, 0.0005236476426944137, 0.001573924208059907, 0.003803426865488291, 0.022947661578655243, 0.3490760028362274, 0.007549758534878492, 0.02245294488966465, 0.0012076750863343477, 0.009624339640140533, 0.005415264051407576, 0.04021771252155304, 0.005775426980108023, 0.057116828858852386, 0.04138324037194252, 0.3297595977783203], [0.010741339065134525, 0.0006323796696960926, 0.00016041932394728065, 6.31463699392043e-05, 0.00024222582578659058, 0.0010042586363852024, 0.010518786497414112, 0.4795875549316406, 0.0017753083957359195, 0.0016808699583634734, 0.00018743824330158532, 0.0002771536819636822, 0.0002796528860926628, 0.0013187758158892393, 0.0005695041618309915, 0.0009652483859099448, 0.03165781870484352, 0.45833820104599], [0.0897192433476448, 0.005494409240782261, 0.00564882205799222, 0.002247800584882498, 0.0023075842764228582, 0.0054451958276331425, 0.01283179596066475, 0.2541712522506714, 0.009219247847795486, 0.016834324225783348, 0.003524625673890114, 0.013194670900702477, 0.005391900427639484, 0.2133517563343048, 0.014401024207472801, 0.08511505275964737, 0.01888132467865944, 0.2422199696302414], [0.03301606327295303, 0.0019798565190285444, 0.002567355055361986, 0.0008055699872784317, 0.001616348628886044, 0.0035776214208453894, 0.04576456546783447, 0.3545674681663513, 0.008028393611311913, 0.013375431299209595, 0.006678159814327955, 0.009300271980464458, 0.001859714975580573, 0.004649742040783167, 0.009663594886660576, 0.002426216145977378, 0.15671516954898834, 0.3434084355831146], [0.005404025316238403, 0.002483427757397294, 0.0031278785318136215, 0.0016856518341228366, 0.0013692547800019383, 0.0019929884001612663, 0.01107796747237444, 0.4712371826171875, 0.0030878002289682627, 0.0027647744864225388, 0.001346764387562871, 0.0020226258784532547, 0.003300917334854603, 0.003682753536850214, 0.0029712833929806948, 0.004445344675332308, 0.013280020095407963, 0.46471932530403137]], [[0.025670606642961502, 0.027007730677723885, 0.013261687010526657, 0.009730588644742966, 0.005816834047436714, 0.007528935093432665, 0.043794091790914536, 0.36354538798332214, 0.004183698911219835, 0.010299169458448887, 0.011515132151544094, 0.01168832927942276, 0.004233929794281721, 0.012844836339354515, 0.01879953220486641, 0.01572336070239544, 0.05217484012246132, 0.36218124628067017], [0.03626928851008415, 0.1609206646680832, 0.0019450595136731863, 0.0041676852852106094, 0.0015128467930480838, 0.0017055809730663896, 0.10246318578720093, 0.3125901520252228, 0.0033144813496619463, 0.014554415829479694, 0.002213999629020691, 0.005422137212008238, 0.004151170141994953, 0.0033380186650902033, 0.006178212817758322, 0.00304523971863091, 0.05024758353829384, 0.28596019744873047], [0.06706171482801437, 0.0063871354795992374, 0.2897675335407257, 0.0015890008071437478, 5.418584987637587e-05, 0.00020129892800468951, 0.05497562885284424, 0.24781395494937897, 0.00014797809126321226, 0.0006285303388722241, 0.0007626094156876206, 0.0007778070284985006, 0.0001530124864075333, 0.00243566045537591, 0.0008791713626123965, 0.0005613851244561374, 0.07491008937358856, 0.250893235206604], [0.024099087342619896, 0.0025341517757624388, 0.0005784925306215882, 0.08137806504964828, 0.010271172970533371, 0.00022368002100847661, 0.01850832812488079, 0.42457395792007446, 0.0007215708610601723, 0.0018726132111623883, 0.0005742452340200543, 0.004338197875767946, 0.0017363724764436483, 0.00018804686260409653, 0.0013296987162902951, 0.0001414786238456145, 0.014583717100322247, 0.4123471677303314], [0.020855680108070374, 0.0018106960924342275, 5.794348908239044e-05, 0.015193730592727661, 0.3253132700920105, 0.0002017993392655626, 0.020924989134073257, 0.30458864569664, 0.00041118389344774187, 0.000387703999876976, 0.0001252807560376823, 0.0008523715077899396, 0.00017080783436540514, 9.745998977450654e-05, 0.00020852913439739496, 0.00013193694758228958, 0.006870999466627836, 0.30179697275161743], [0.08436092734336853, 0.0039040492847561836, 0.0017540783155709505, 0.0013980250805616379, 0.00016648700693622231, 0.23073908686637878, 0.03705703467130661, 0.31649473309516907, 0.00211464730091393, 0.004112242721021175, 0.0015755894128233194, 0.0010870130499824882, 0.00048663170309737325, 0.0005572022637352347, 0.002348958281800151, 0.00043608801206573844, 0.029125705361366272, 0.2822814881801605], [0.026230588555336, 0.008443380706012249, 0.0025043601635843515, 0.011270636692643166, 0.0014038269873708487, 0.001351306913420558, 0.041361596435308456, 0.4078596234321594, 0.0022959767375141382, 0.008257913403213024, 0.0028736477252095938, 0.006437730509787798, 0.0058175609447062016, 0.0026766944210976362, 0.007416756823658943, 0.0027750125154852867, 0.06486839801073074, 0.3961549699306488], [0.00802674051374197, 0.0063758487813174725, 0.003388600889593363, 0.005481375847011805, 0.0017541964771226048, 0.0029338374733924866, 0.011310710571706295, 0.46409207582473755, 0.0019770946819335222, 0.003005183534696698, 0.002482436131685972, 0.002780927112326026, 0.0030374210327863693, 0.0019657970406115055, 0.0032177248504012823, 0.005189491435885429, 0.010556628927588463, 0.4624238610267639], [0.023973986506462097, 0.006036511156708002, 0.0001683053415035829, 0.00688097532838583, 0.0030532425735145807, 0.001259483047761023, 0.02132720686495304, 0.3818996548652649, 0.18572691082954407, 0.0033393464982509613, 0.0007791067473590374, 0.006754481699317694, 0.000287567701889202, 0.0005516775418072939, 0.004571692552417517, 0.00025876169092953205, 0.010557038709521294, 0.34257400035858154], [0.02642899937927723, 0.025956355035305023, 0.0028238557279109955, 0.010562342591583729, 0.002131757326424122, 0.002025263151153922, 0.02831532061100006, 0.2842455804347992, 0.0024457238614559174, 0.31376340985298157, 0.002974107628688216, 0.0017525693401694298, 0.001006077160127461, 0.0008649316732771695, 0.005715170409530401, 0.0014249893138185143, 0.024362564086914062, 0.2632010281085968], [0.03198095038533211, 0.0035297691356390715, 0.0007756758132018149, 0.005251281429082155, 0.0011574079981073737, 0.0016831886023283005, 0.009083660319447517, 0.37003201246261597, 0.0007690066704526544, 0.0013337930431589484, 0.2019464373588562, 0.006054956000298262, 0.00021703813399653882, 0.0007356568239629269, 0.004231130238622427, 0.0002139744465239346, 0.012857673689723015, 0.34814637899398804], [0.03654735907912254, 0.005685775075107813, 0.0009657901828177273, 0.01401080284267664, 0.0018547724466770887, 0.0006888877833262086, 0.02250070869922638, 0.3037083148956299, 0.005245792213827372, 0.0021727958228439093, 0.009195526130497456, 0.2614940404891968, 0.003724924987182021, 0.0025683275889605284, 0.009247958660125732, 0.00032735493732616305, 0.01840929314494133, 0.30165162682533264], [0.043829258531332016, 0.010973513126373291, 0.0020198975689709187, 0.007667346391826868, 0.0009331292822025716, 0.0002659711171872914, 0.04770282655954361, 0.3403909504413605, 0.00032105366699397564, 0.0014359523775056005, 0.0006122501217760146, 0.0016750497743487358, 0.1605229377746582, 0.0017647312488406897, 0.017833806574344635, 0.0025915266014635563, 0.020826412364840508, 0.3386334478855133], [0.08582525700330734, 0.011950998567044735, 0.0029125341679900885, 0.0007368908263742924, 8.106893074000254e-05, 0.00017132636276073754, 0.027533184736967087, 0.16352349519729614, 0.0006801406852900982, 0.0013513460289686918, 0.0005668108933605254, 0.0005319516640156507, 0.000533182465005666, 0.4909414052963257, 0.005362015217542648, 0.02997184731066227, 0.025049390271306038, 0.1522771120071411], [0.04055727273225784, 0.007073371205478907, 0.00040214104228653014, 0.0044445618987083435, 0.00017250158998649567, 0.0011595968389883637, 0.0305840615183115, 0.2937029004096985, 0.003841143101453781, 0.0016524475067853928, 0.0038841573987156153, 0.004814191721379757, 0.004141538869589567, 0.004390619695186615, 0.28952929377555847, 0.0013404893688857555, 0.022687766700983047, 0.28562191128730774], [0.12003473937511444, 0.03922765702009201, 0.0018012748332694173, 0.00047243700828403234, 8.68668284965679e-05, 0.0002229337114840746, 0.0399010144174099, 0.280264288187027, 0.0005967370234429836, 0.004502824507653713, 0.0003667262499220669, 0.00032200111309066415, 0.0013669519685208797, 0.069576196372509, 0.0015127704245969653, 0.13888835906982422, 0.02597074769437313, 0.2748854160308838], [0.020140506327152252, 0.007967175915837288, 0.0024484507739543915, 0.01289057545363903, 0.0011588084744289517, 0.0010048511903733015, 0.036693207919597626, 0.43143990635871887, 0.0015622461214661598, 0.0069846054539084435, 0.004633956588804722, 0.00458482513204217, 0.00300720427185297, 0.0014420965453609824, 0.010493895038962364, 0.0014633157989010215, 0.029067879542708397, 0.42301642894744873], [0.00803172867745161, 0.006335534621030092, 0.0034461081959307194, 0.005669820588082075, 0.001782717416062951, 0.002940692938864231, 0.011528070084750652, 0.4660159647464752, 0.002020755084231496, 0.003105789190158248, 0.002485625445842743, 0.0029349438846111298, 0.00309133343398571, 0.001935320789925754, 0.0032393019646406174, 0.00520690344274044, 0.01080315001308918, 0.4594261348247528]], [[0.0032108344603329897, 0.11815442144870758, 0.08632669597864151, 0.11831721663475037, 0.16497313976287842, 0.023416735231876373, 0.4045349657535553, 0.03317072242498398, 0.0002283276990056038, 0.0016392128309234977, 0.00025295239174738526, 0.002324268687516451, 0.0007510551367886364, 0.0005739342304877937, 0.00181951851118356, 0.00032047845888882875, 0.00646572932600975, 0.03351971507072449], [0.008315922692418098, 0.07168921083211899, 0.06934123486280441, 0.1584230363368988, 0.11869116872549057, 0.08191408216953278, 0.41807201504707336, 0.020794188603758812, 0.0004042340733576566, 0.0011031570611521602, 0.000731577689293772, 0.0031136381439864635, 0.0006665752152912319, 0.0022469402756541967, 0.008050918579101562, 0.0005889339372515678, 0.01461358554661274, 0.021239537745714188], [0.018937284126877785, 0.248390793800354, 0.03219769150018692, 0.1841193288564682, 0.13519679009914398, 0.013326494954526424, 0.19740109145641327, 0.06473736464977264, 0.0020623665768653154, 0.002953913528472185, 0.001538991229608655, 0.00530552351847291, 0.00261456286534667, 0.0022312114015221596, 0.014188158325850964, 0.000914103293325752, 0.008600571192800999, 0.06528383493423462], [0.012123215943574905, 0.13345232605934143, 0.22976617515087128, 0.11484463512897491, 0.07530136406421661, 0.08420990407466888, 0.207474023103714, 0.06378908455371857, 0.0003604823141358793, 0.000525417854078114, 0.00034631622838787735, 0.0016572566237300634, 0.00043017129064537585, 0.0030510304495692253, 0.002372601069509983, 0.0009903402533382177, 0.0036340232472866774, 0.06567160040140152], [0.04328305646777153, 0.14635002613067627, 0.25117722153663635, 0.11720200628042221, 0.042301908135414124, 0.05510634928941727, 0.22852547466754913, 0.03482944518327713, 0.001871054177172482, 0.0025866450741887093, 0.001049606828019023, 0.006021075416356325, 0.0030283427331596613, 0.009053005836904049, 0.005300512071698904, 0.004266155418008566, 0.013196375221014023, 0.03485177457332611], [0.04450904205441475, 0.304496705532074, 0.059316687285900116, 0.16636118292808533, 0.07313547283411026, 0.01440997514873743, 0.2443283647298813, 0.03896922618150711, 0.0006071730167604983, 0.0010336239356547594, 0.00038599566323682666, 0.0015785061987116933, 0.0007489714189432561, 0.001076331245712936, 0.002846074989065528, 0.0005448233569040895, 0.006885281763970852, 0.03876657038927078], [0.016514645889401436, 0.0845881775021553, 0.2959120571613312, 0.1561969369649887, 0.07701285928487778, 0.1277254819869995, 0.14015480875968933, 0.04262761399149895, 0.0004746649938169867, 0.0006381644052453339, 0.00048192311078310013, 0.0015745278215035796, 0.0011928280582651496, 0.005387976765632629, 0.0008812654996290803, 0.0029608297627419233, 0.002965946216136217, 0.04270917922258377], [0.08999355137348175, 0.007105126511305571, 0.03151920810341835, 0.012070338241755962, 0.004951144102960825, 0.012052345089614391, 0.011341198347508907, 0.3860589563846588, 0.010966657660901546, 0.006962261162698269, 0.00439418712630868, 0.0103874821215868, 0.005669040605425835, 0.0068944301456213, 0.0019206752767786384, 0.008227115496993065, 0.006510009057819843, 0.3829762637615204], [0.0007479825289919972, 0.0008628543000668287, 0.0034560118801891804, 0.0007455533486790955, 0.0010222018463537097, 0.0020235516130924225, 0.001590434112586081, 3.67367611033842e-05, 0.041531648486852646, 0.11167040467262268, 0.16938385367393494, 0.04673547297716141, 0.02770479954779148, 0.14505866169929504, 0.16188713908195496, 0.15591348707675934, 0.12959173321723938, 3.749892857740633e-05], [0.00048178943688981235, 0.00047706664190627635, 0.0017086693551391363, 0.0007496091420762241, 0.00045622000470757484, 0.000562101777177304, 0.0014968810137361288, 1.8365275536780246e-05, 0.08588453382253647, 0.08279009908437729, 0.26881325244903564, 0.06230821833014488, 0.029633667320013046, 0.09039943665266037, 0.15779080986976624, 0.054637469351291656, 0.16177304089069366, 1.8830582121154293e-05], [0.0025575358886271715, 0.0007741937879472971, 0.002193907741457224, 0.00034079732722602785, 0.00019229175813961774, 0.0003930291277356446, 0.0017555831000208855, 1.1824621651612688e-05, 0.05516095459461212, 0.15485073626041412, 0.082722969353199, 0.039128001779317856, 0.04727261886000633, 0.15346458554267883, 0.128886878490448, 0.14194589853286743, 0.18833626806735992, 1.1935369002458174e-05], [0.003437437815591693, 0.0059328763745725155, 0.006466363091021776, 0.0026614645030349493, 0.002159125404432416, 0.0021481304429471493, 0.007085047196596861, 0.0002331550931558013, 0.06892135739326477, 0.13371123373508453, 0.12486299127340317, 0.038973137736320496, 0.03844314068555832, 0.06725165992975235, 0.20217621326446533, 0.0720972865819931, 0.223208487033844, 0.00023082178086042404], [0.0014124567387625575, 0.0019557359628379345, 0.0005474553327076137, 0.0016848392551764846, 0.0026078990194946527, 0.0006135765579529107, 0.0022161644883453846, 0.00018238740449305624, 0.10031890124082565, 0.1380937397480011, 0.2793520390987396, 0.05298154056072235, 0.013685649260878563, 0.014977927319705486, 0.2398582100868225, 0.016619618982076645, 0.1327080875635147, 0.00018372482736594975], [0.006130675785243511, 0.00701903086155653, 0.0009469244396314025, 0.0017832613084465265, 0.004192412830889225, 0.0011318911565467715, 0.00811332743614912, 0.0002239282475784421, 0.08892035484313965, 0.11410945653915405, 0.14469151198863983, 0.06367439031600952, 0.01635170727968216, 0.008734198287129402, 0.24876302480697632, 0.014107449911534786, 0.2708820402622223, 0.0002244420029455796], [0.0035430171992629766, 0.0022565301042050123, 0.001247258041985333, 0.0013677075039595366, 0.0023447300773113966, 0.0009804499568417668, 0.003589627332985401, 8.411303861066699e-05, 0.07954435050487518, 0.12754063308238983, 0.20418725907802582, 0.04064216837286949, 0.022801756858825684, 0.046393804252147675, 0.1834993213415146, 0.05710357427597046, 0.22278717160224915, 8.656030695419759e-05], [0.003690105862915516, 0.0030049942433834076, 0.0004138624935876578, 0.0015679375501349568, 0.0025539344642311335, 0.0003798304533120245, 0.0029008269775658846, 0.0002683453494682908, 0.11494991183280945, 0.16048848628997803, 0.2143472284078598, 0.05116556957364082, 0.014730730094015598, 0.010582725517451763, 0.23399148881435394, 0.0107026482000947, 0.17399200797080994, 0.0002693433198146522], [0.011742486618459225, 0.003505811793729663, 0.014168779365718365, 0.004418619908392429, 0.0024733813479542732, 0.005001476034522057, 0.007178101688623428, 0.0001507587730884552, 0.04489779844880104, 0.06717347353696823, 0.08816950023174286, 0.03023746982216835, 0.06619181483983994, 0.24729463458061218, 0.04827559366822243, 0.24417220056056976, 0.11479586362838745, 0.00015210908895824105], [0.08488977700471878, 0.007167384028434753, 0.03222804516553879, 0.012203183956444263, 0.004996705334633589, 0.01242879033088684, 0.011213884688913822, 0.3873778283596039, 0.011196698993444443, 0.007079006638377905, 0.004467932041734457, 0.01065729558467865, 0.005782532040029764, 0.007086345460265875, 0.0019466935191303492, 0.008473213762044907, 0.006480320822447538, 0.3843243718147278]], [[0.01573910005390644, 0.02252853661775589, 0.03711342066526413, 0.028044959530234337, 0.025665340945124626, 0.02020139992237091, 0.03835510089993477, 0.35273125767707825, 0.015296148136258125, 0.029749711975455284, 0.018740428611636162, 0.01058770902454853, 0.0032918169163167477, 0.004935872741043568, 0.0035158952232450247, 0.004360780119895935, 0.01974789798259735, 0.34939464926719666], [0.020543916150927544, 0.01619742065668106, 0.01080248225480318, 0.05702666565775871, 0.0031426989007741213, 0.004783398471772671, 0.04851166158914566, 0.3980577290058136, 0.0037369036581367254, 0.007069539278745651, 0.0014629828510805964, 0.0017829290591180325, 0.0009598516626283526, 0.002257751999422908, 0.004165554419159889, 0.0019324905006214976, 0.020817087963223457, 0.3967488706111908], [0.03661312162876129, 0.21804220974445343, 0.030628811568021774, 0.008882277645170689, 0.002527934033423662, 0.005887358449399471, 0.06122737005352974, 0.3040611147880554, 0.00022654699569102377, 0.0024333971086889505, 0.0028126912657171488, 0.00019458378665149212, 0.0003402094589546323, 0.00484048668295145, 0.003955162595957518, 0.0025986821856349707, 0.017439184710383415, 0.2972888946533203], [0.03923092782497406, 0.02232562005519867, 0.016020433977246284, 0.009082519449293613, 0.006163120735436678, 0.007338706869632006, 0.07101985812187195, 0.3846994936466217, 0.018251243978738785, 0.02023397572338581, 0.0019468464888632298, 0.0007041543140076101, 0.001780470134690404, 0.001118565909564495, 0.00166874669957906, 0.00024434790248051286, 0.01869630627334118, 0.3794746398925781], [0.033191531896591187, 0.004230838268995285, 0.015073098242282867, 0.04499406740069389, 0.005416854750365019, 0.018266452476382256, 0.059495434165000916, 0.36232587695121765, 0.0040835486724972725, 0.004645326640456915, 0.0036618313752114773, 0.03568283095955849, 0.003496787277981639, 0.0009612726280465722, 0.010174275375902653, 0.0009037054260261357, 0.0333380363881588, 0.36005812883377075], [0.051210805773735046, 0.044337715953588486, 0.0070729246363043785, 0.177444189786911, 0.07663831114768982, 0.032205309718847275, 0.07659867405891418, 0.21796336770057678, 0.026347775012254715, 0.02944280207157135, 0.0006617745966650546, 0.0013255317462608218, 0.003016346599906683, 0.015831226482987404, 0.001633924781344831, 0.006050410680472851, 0.021213069558143616, 0.21100585162639618], [0.03469458967447281, 0.015577889047563076, 0.011159500107169151, 0.10047098994255066, 0.01464392151683569, 0.025161033496260643, 0.04525807127356529, 0.34360209107398987, 0.009884039871394634, 0.01228157989680767, 0.010054887272417545, 0.004841316025704145, 0.0054865083657205105, 0.0019422470359131694, 0.003490068716928363, 0.0018610573606565595, 0.017252136021852493, 0.34233808517456055], [0.01742316596210003, 0.00867557991296053, 0.013735471293330193, 0.006551029160618782, 0.0049576289020478725, 0.0073640416376292706, 0.021013488993048668, 0.430029958486557, 0.007422099355608225, 0.006347598508000374, 0.005721805151551962, 0.007524607237428427, 0.006457591895014048, 0.0024408879689872265, 0.008604318834841251, 0.0028184305410832167, 0.021309038624167442, 0.421603262424469], [0.01855151727795601, 0.0010174746857956052, 0.0010617062216624618, 0.013842363841831684, 3.518670200719498e-05, 0.0018627980025485158, 0.02043137699365616, 0.339730441570282, 0.007928377948701382, 0.1305312067270279, 0.02263799123466015, 0.016324253752827644, 0.0017779468325898051, 0.0007062169024720788, 0.013517077080905437, 0.0022792972158640623, 0.06954975426197052, 0.3382149338722229], [0.04688643664121628, 0.013353507965803146, 0.003203147556632757, 0.012365278787910938, 0.00043963734060525894, 0.0006987105589359999, 0.04777655005455017, 0.3191636800765991, 0.07017244398593903, 0.007736068218946457, 0.009087818674743176, 0.003077697241678834, 0.004679087549448013, 0.0018159851897507906, 0.007289031520485878, 0.0041717239655554295, 0.14111778140068054, 0.3069654107093811], [0.014468973502516747, 0.0003420076100155711, 0.001088990131393075, 0.0005055443616583943, 6.300752284005284e-05, 0.000434553949162364, 0.017321458086371422, 0.3358152508735657, 0.1328989714384079, 0.01964285783469677, 0.005810268688946962, 0.037839051336050034, 0.001249015098437667, 0.0008427969878539443, 0.010697655379772186, 0.00045273377327248454, 0.08793111890554428, 0.33259570598602295], [0.045079831033945084, 0.0003502634062897414, 0.00018825693405233324, 0.0016455317381769419, 0.0005892802146263421, 0.0034579054918140173, 0.013695873320102692, 0.22727026045322418, 0.09741939604282379, 0.010777871124446392, 0.29260483384132385, 0.0022039448376744986, 0.006769656669348478, 0.006169917993247509, 0.02808648720383644, 0.0013071036664769053, 0.039742596447467804, 0.2226409763097763], [0.019906776025891304, 0.0008350311545655131, 0.00023286537907551974, 0.0011784201487898827, 0.0004915014724247158, 0.0007806852809153497, 0.008979761973023415, 0.2330792397260666, 0.009377684444189072, 0.019490286707878113, 0.03403949737548828, 0.009140854701399803, 0.016011293977499008, 0.03302323818206787, 0.3434722125530243, 0.001969731179997325, 0.03846871107816696, 0.22952225804328918], [0.04422939941287041, 0.0009553604177199304, 0.0020400583744049072, 0.0009921886958181858, 0.00016237524687312543, 0.00016530376160517335, 0.005560234189033508, 0.10483144968748093, 0.0002505936718080193, 0.002708974527195096, 0.00011295658623566851, 0.0035899414215236902, 0.679668128490448, 0.005005329847335815, 0.0035372686106711626, 0.024590913206338882, 0.0187616478651762, 0.10283800214529037], [0.03354030102491379, 0.0033013015054166317, 0.00020996358944103122, 0.0027890484780073166, 0.009552395902574062, 0.0021544648334383965, 0.01790698990225792, 0.3256649374961853, 0.015601913444697857, 0.031238194555044174, 0.05398700013756752, 0.03565679490566254, 0.04633040353655815, 0.027501726523041725, 0.005115050822496414, 0.005498337093740702, 0.06959952414035797, 0.3143515884876251], [0.044837526977062225, 0.0034850568044930696, 0.006873472593724728, 0.0009374823421239853, 0.0002712935383897275, 0.0013692511711269617, 0.007902228273451328, 0.24063512682914734, 0.00043056439608335495, 0.006972337141633034, 0.0036144524347037077, 0.0018409445183351636, 0.12770403921604156, 0.21779529750347137, 0.04456990212202072, 0.027040643617510796, 0.029568776488304138, 0.2341516613960266], [0.0253034308552742, 0.005295141134411097, 0.0035962124820798635, 0.024149727076292038, 0.005559510551393032, 0.009894301183521748, 0.013857852667570114, 0.35541391372680664, 0.03335284814238548, 0.04817918315529823, 0.031642843037843704, 0.00853887852281332, 0.01869133859872818, 0.005408050958067179, 0.011312671937048435, 0.005554552655667067, 0.04828992113471031, 0.3459595739841461], [0.017435451969504356, 0.009048127569258213, 0.01419906597584486, 0.006760388147085905, 0.005271307658404112, 0.007556742522865534, 0.021110881119966507, 0.42909517884254456, 0.007569765672087669, 0.006390853319317102, 0.005703930277377367, 0.007482856512069702, 0.006680550053715706, 0.0024685999378561974, 0.00861543882638216, 0.0029285114724189043, 0.020890163257718086, 0.4207921028137207]], [[0.05523046851158142, 0.015368589200079441, 0.027481669560074806, 0.010169532150030136, 0.004577915649861097, 0.019378861412405968, 0.015806877985596657, 0.34125789999961853, 0.010618097148835659, 0.019539495930075645, 0.039367757737636566, 0.0043543423525989056, 0.01292523555457592, 0.024309486150741577, 0.008352966047823429, 0.018605617806315422, 0.04022995010018349, 0.33242520689964294], [0.08984565734863281, 0.034324005246162415, 0.04999161884188652, 0.0317574143409729, 0.008447417058050632, 0.08137988299131393, 0.09106265008449554, 0.2832145094871521, 0.0021744430996477604, 0.004085899330675602, 0.0051406812854111195, 0.0045174905098974705, 0.0023124353028833866, 0.005691612139344215, 0.0036691403947770596, 0.005461294669657946, 0.015311569906771183, 0.2816122770309448], [0.0929444283246994, 0.1228213831782341, 0.06186280399560928, 0.08291009813547134, 0.013574222102761269, 0.10125886648893356, 0.04348248988389969, 0.21741586923599243, 0.0019085474777966738, 0.007977288216352463, 0.0033453733194619417, 0.0028915717266499996, 0.004195685498416424, 0.006146114785224199, 0.004835384897887707, 0.006250292062759399, 0.007888210006058216, 0.21829143166542053], [0.05790405347943306, 0.22311556339263916, 0.08216211944818497, 0.026964781805872917, 0.010332044214010239, 0.035532884299755096, 0.09072687476873398, 0.2104131579399109, 0.004054232966154814, 0.004582046996802092, 0.0032203886657953262, 0.0044565037824213505, 0.0026600444689393044, 0.0026373271830379963, 0.006281391251832247, 0.0016140402294695377, 0.018813669681549072, 0.2145288586616516], [0.04476775601506233, 0.040707070380449295, 0.038213711231946945, 0.049802329391241074, 0.004603090230375528, 0.02172333002090454, 0.04863373190164566, 0.35530784726142883, 0.004872187506407499, 0.003350798273459077, 0.004584731068462133, 0.005504411645233631, 0.0013606164138764143, 0.001771476469002664, 0.0031632157042622566, 0.0007968690479174256, 0.013940765522420406, 0.3568960130214691], [0.018107986077666283, 0.10759339481592178, 0.2520819902420044, 0.23316384851932526, 0.06496797502040863, 0.07894016057252884, 0.030772529542446136, 0.04833194240927696, 0.01935563050210476, 0.027223894372582436, 0.013705959543585777, 0.008842992596328259, 0.018686780706048012, 0.007326757535338402, 0.011700487695634365, 0.004570621997117996, 0.006486631464213133, 0.048140350729227066], [0.06800565868616104, 0.044947605580091476, 0.024293862283229828, 0.05743803456425667, 0.014211288653314114, 0.04223937913775444, 0.03584694117307663, 0.33916062116622925, 0.00735087413340807, 0.004445943050086498, 0.002608182141557336, 0.0017206682823598385, 0.0019821322057396173, 0.0025591603480279446, 0.0023789771366864443, 0.0018011498032137752, 0.009302292950451374, 0.3397071957588196], [0.020484425127506256, 0.0006972685223445296, 0.0008642361499369144, 0.0007236156961880624, 0.0003525837673805654, 0.0004926907131448388, 0.004878959618508816, 0.48385289311408997, 0.0007098600035533309, 0.0005408736178651452, 0.00021109751833137125, 0.0004685762105509639, 0.00031367645715363324, 0.00029365860973484814, 0.00046428502537310123, 0.0002269408287247643, 0.004064921755343676, 0.4803595542907715], [0.02813522331416607, 0.006606557406485081, 0.023363381624221802, 0.008844085969030857, 0.0011690991232171655, 0.011969259940087795, 0.014423268847167492, 0.4131597876548767, 0.005364537704735994, 0.020405402407050133, 0.02269430086016655, 0.006799138616770506, 0.005227627698332071, 0.004246650263667107, 0.0038639060221612453, 0.004142123274505138, 0.02404884062707424, 0.3955368101596832], [0.028956515714526176, 0.02168651856482029, 0.0827801525592804, 0.01577857881784439, 0.0038892985321581364, 0.029109880328178406, 0.02107342518866062, 0.2773037850856781, 0.01871073804795742, 0.07392803579568863, 0.06221747025847435, 0.006954856216907501, 0.01387113332748413, 0.02892252802848816, 0.005930788815021515, 0.01998566836118698, 0.025669896975159645, 0.26323068141937256], [0.023374637588858604, 0.008144605904817581, 0.006364472676068544, 0.0018250106368213892, 0.0011603482998907566, 0.0036248250398784876, 0.007345544174313545, 0.30566415190696716, 0.06620019674301147, 0.19428260624408722, 0.03761584684252739, 0.011458158493041992, 0.006425780709832907, 0.004403994418680668, 0.007922885939478874, 0.0008895638748072088, 0.023629456758499146, 0.2896680235862732], [0.08100461214780807, 0.016545971855521202, 0.020198002457618713, 0.008255385793745518, 0.00241271685808897, 0.008120476268231869, 0.019451294094324112, 0.21584658324718475, 0.09061381965875626, 0.14840638637542725, 0.108067087829113, 0.014456179924309254, 0.012703689746558666, 0.006375688128173351, 0.01050157193094492, 0.0014539544936269522, 0.02834438532590866, 0.20724225044250488], [0.014596758410334587, 0.007016697898507118, 0.018718894571065903, 0.003413188038393855, 0.002123671816661954, 0.008427074179053307, 0.004254699684679508, 0.07761278748512268, 0.08967112004756927, 0.4667845368385315, 0.10205905884504318, 0.018065202981233597, 0.02081151120364666, 0.052448272705078125, 0.017903868108987808, 0.008516215719282627, 0.012990656308829784, 0.07458578050136566], [0.024552984163165092, 0.00946857314556837, 0.037572361528873444, 0.013209464959800243, 0.0025820524897426367, 0.011799118481576443, 0.008195475675165653, 0.12242677807807922, 0.03887827321887016, 0.25173744559288025, 0.06084541976451874, 0.03621939569711685, 0.1216202899813652, 0.020776083692908287, 0.07667826861143112, 0.01513805240392685, 0.031179022043943405, 0.11712096631526947], [0.023634525015950203, 0.005545102991163731, 0.0033189363311976194, 0.005793123971670866, 0.002564271679148078, 0.003916232846677303, 0.007631384767591953, 0.038940005004405975, 0.06431657820940018, 0.10478533804416656, 0.3077114522457123, 0.14211729168891907, 0.12125242501497269, 0.019062794744968414, 0.0565209798514843, 0.010907442308962345, 0.044084612280130386, 0.03789747133851051], [0.011146201752126217, 0.00466806348413229, 0.03402581438422203, 0.006774022709578276, 0.0020926366560161114, 0.008651487529277802, 0.004482911434024572, 0.07379452884197235, 0.029944520443677902, 0.3292624056339264, 0.05256461352109909, 0.03537718951702118, 0.11203436553478241, 0.0494491383433342, 0.1343456208705902, 0.009240538813173771, 0.030531104654073715, 0.0716148167848587], [0.07219091057777405, 0.008371536619961262, 0.0024847015738487244, 0.004567266441881657, 0.0018457022961229086, 0.004408905748277903, 0.006662778090685606, 0.3170572817325592, 0.03454805165529251, 0.032286711037158966, 0.03262348473072052, 0.014087476767599583, 0.02265552617609501, 0.01614176295697689, 0.03949996083974838, 0.009415963664650917, 0.06809527426958084, 0.31305667757987976], [0.021520216017961502, 0.0007513410528190434, 0.0009003444574773312, 0.0008016551146283746, 0.00038365929503925145, 0.0005229440284892917, 0.0051895854994654655, 0.48269957304000854, 0.0007444525253959, 0.0005625795456580818, 0.00022392395476344973, 0.0005163753521628678, 0.00033834922942332923, 0.00030381555552594364, 0.0004988893633708358, 0.0002366280386922881, 0.004181268159300089, 0.4796244502067566]], [[0.18701988458633423, 0.017147798091173172, 0.02941509708762169, 0.05313686653971672, 0.02230292186141014, 0.011165183037519455, 0.4810388684272766, 0.06069588288664818, 0.0008762081270106137, 0.00275365705601871, 0.000802756636403501, 0.0008488394669257104, 0.002571464516222477, 0.0023841506335884333, 0.0026491903699934483, 0.0030846879817545414, 0.06199129670858383, 0.0601152628660202], [0.5041621327400208, 0.002201351337134838, 7.300855941139162e-05, 0.0002536497195251286, 2.1739564544986933e-05, 2.9244518373161554e-05, 0.00014113991346675903, 0.24528522789478302, 0.0002500270202290267, 8.877179425326176e-06, 4.2472497625567485e-06, 7.997264219739009e-06, 0.0005129177588969469, 1.6024428987293504e-05, 3.500164166325703e-05, 3.4097112802555785e-05, 0.0031978716142475605, 0.24376548826694489], [0.033347126096487045, 0.9636524319648743, 3.888399533025222e-06, 3.580031989258714e-05, 1.3153871805116069e-05, 7.647203688065929e-07, 2.7903555746888742e-05, 0.0010550026781857014, 1.5548696410405682e-06, 6.072721703276329e-08, 1.275687964152894e-07, 1.8609101815059148e-08, 1.1005610076608718e-06, 3.2082739380712155e-06, 1.4715433280798607e-05, 2.0589531857240218e-07, 1.0931682481896132e-05, 0.0018318125512450933], [4.979756704415195e-05, 0.00024533344549126923, 0.9813268780708313, 0.000880985870026052, 2.863763938876218e-06, 0.00035231770016252995, 0.0004037530452478677, 0.00826941430568695, 1.2233725499299908e-07, 2.7046336981584318e-05, 1.342853579444636e-07, 1.2371737057037535e-07, 4.1740978673487916e-08, 4.10861503041815e-05, 2.622125975904055e-05, 0.0006285989074967802, 8.551067730877548e-05, 0.0076596736907958984], [0.008829222992062569, 0.0004121342208236456, 0.00015531764074694365, 0.9453215003013611, 0.0005216964636929333, 6.0816706536570564e-05, 0.0009909680811688304, 0.02296609804034233, 0.00018192549759987742, 4.112399949462997e-07, 3.62044847861398e-05, 1.3432439118332695e-05, 4.882346274825977e-06, 7.060380085022189e-07, 1.9203426404601487e-07, 0.000492804974783212, 0.0004889349802397192, 0.019522840157151222], [0.00037871766835451126, 9.543979103909805e-06, 3.950362952309661e-06, 0.0012753029586747289, 0.9976117610931396, 1.450907984690275e-05, 2.080382182612084e-05, 0.0003192393633071333, 4.815295255866658e-07, 5.330051635610289e-07, 1.8549672020640173e-08, 6.281619846504327e-08, 1.2130856248404598e-06, 2.2694362655784062e-07, 8.947850793639134e-10, 5.106531020260263e-08, 0.00014045841817278415, 0.00022310912027023733], [0.0008180620498023927, 2.5470588298048824e-05, 0.00025567240663804114, 6.556037260452285e-05, 8.688080561114475e-05, 0.9906801581382751, 0.003148223040625453, 0.0019436718430370092, 8.730934496270493e-06, 5.2216273616068065e-05, 1.2624178680198384e-06, 1.0020026763868373e-07, 2.1215098513494013e-06, 8.470285683870316e-05, 5.0919976501973e-07, 6.992982525844127e-05, 5.4349435231415555e-05, 0.00270248344168067], [0.6757625341415405, 0.019275445491075516, 0.0075362385250627995, 0.012470445595681667, 0.01056464109569788, 0.005613361950963736, 0.04021362215280533, 0.040430568158626556, 0.006115566939115524, 0.01318604126572609, 0.015948178246617317, 0.016970377415418625, 0.023034920915961266, 0.008981152437627316, 0.030848538503050804, 0.006910607684403658, 0.025215748697519302, 0.04092194139957428], [0.5244669318199158, 4.3039139541178884e-07, 3.142494264807283e-08, 1.0171491027222146e-07, 1.3241439944522426e-07, 3.338424292564923e-08, 8.162399353750516e-06, 0.28845229744911194, 0.0016177002107724547, 3.454725447227247e-05, 4.554933184408583e-06, 4.4395928853191435e-06, 7.307386340471567e-07, 3.764015588103575e-08, 3.042935858843521e-08, 2.655775688253925e-07, 4.471145530260401e-06, 0.1854051798582077], [0.0012715889606624842, 1.943394408954191e-06, 7.587512840245836e-09, 3.5999614400594737e-09, 1.89373583481256e-08, 1.1252262765992782e-07, 8.162403901224025e-06, 0.02130001224577427, 0.9522722363471985, 6.830029451521114e-05, 0.0003147190436720848, 1.929189784277696e-05, 2.6672094463719986e-05, 1.2439593774615787e-05, 2.802289733594421e-09, 2.7916709655073646e-07, 4.582673227560008e-06, 0.024699753150343895], [2.4904125893954188e-05, 3.0195941747024335e-08, 1.2061175311828265e-06, 2.309062246963478e-10, 7.319438943831358e-10, 1.787374941386588e-07, 1.9737719014756294e-07, 0.001601806259714067, 1.3709325685340445e-05, 0.9958783388137817, 0.000621455314103514, 5.605726983048953e-05, 9.14463362278184e-06, 0.0001255402312381193, 6.614804988203105e-07, 1.6025089166760154e-07, 3.9547313690491137e-07, 0.001666215481236577], [5.952585070190253e-06, 1.2835315033044026e-08, 5.028321226063781e-08, 1.1360906881918709e-07, 8.820000979570253e-11, 7.075731556227538e-09, 2.661034557149833e-07, 0.00022218655794858932, 6.107808985689189e-06, 0.00013512445730157197, 0.9992896318435669, 6.993424176471308e-05, 2.044248731181142e-06, 1.4252203072828706e-05, 1.7082855265471153e-05, 1.577596009383342e-07, 6.375623584631285e-09, 0.0002370728034293279], [6.406695320038125e-05, 1.1512528885759821e-07, 1.1857095216782909e-07, 2.505046268197475e-07, 3.922695839264634e-07, 2.863015380327738e-10, 1.0035758180038101e-07, 0.0007803702028468251, 1.5230069038807414e-05, 0.0005066173034720123, 0.0089727733284235, 0.987377941608429, 0.0005629532388411462, 4.269513374310918e-05, 0.0011350979330018163, 3.550348992575891e-05, 5.2037876230315305e-06, 0.0005005548009648919], [0.00016901854542084038, 5.1752504077740014e-05, 1.0754807711066405e-08, 7.09705005874639e-08, 9.82300662144553e-07, 7.302180904389388e-08, 1.3849092539430785e-08, 0.0004875829617958516, 5.447414514492266e-05, 2.170404286516714e-06, 7.435113275278127e-06, 4.8606638301862404e-05, 0.9983580708503723, 4.0165796235669404e-05, 7.908725092420354e-05, 7.514180651924107e-06, 7.239467959152535e-05, 0.0006205282988958061], [2.7779640277003637e-07, 1.9988299300166545e-06, 2.287850293214433e-06, 1.132799631875514e-09, 7.4476145250912396e-09, 6.516577144566327e-08, 1.3250472719050777e-08, 8.587592310504988e-05, 2.634226348163793e-08, 1.7855569240055047e-05, 8.279236499220133e-05, 1.3304567119121202e-06, 4.244753654347733e-05, 0.9995366334915161, 3.403204391361214e-05, 3.590642518247478e-05, 4.186569640296511e-06, 0.00015419740520883352], [4.265150710125454e-05, 5.752355264121434e-06, 1.7712578710415983e-06, 2.1904000391259615e-07, 1.4755471511307405e-08, 3.440518758779376e-09, 6.068876245990396e-08, 0.0002092726354021579, 5.58408741468952e-09, 4.607700532233139e-07, 3.8005502574378625e-05, 4.0169998101191595e-05, 7.579012890346348e-05, 1.6886873709154315e-05, 0.9993160963058472, 3.3447970054112375e-05, 4.620952950062929e-06, 0.0002147658378817141], [0.0004424157668836415, 9.336350558442064e-06, 1.4380645552591886e-05, 2.7244112061453052e-05, 8.988362424133811e-06, 8.446555511909537e-06, 7.5620914685714524e-06, 0.005239679012447596, 3.3569986044312827e-06, 1.6319394262609421e-06, 2.695338935154723e-06, 8.36774634080939e-05, 0.0003034199180547148, 0.0008060917025431991, 0.0003097225562669337, 0.9779735207557678, 0.009081605821847916, 0.005676144268363714], [0.6465809941291809, 0.017073173075914383, 0.0076857018284499645, 0.011831340380012989, 0.01610330119729042, 0.007380658760666847, 0.025623733177781105, 0.043107736855745316, 0.00668030371889472, 0.015256601385772228, 0.010696898214519024, 0.015012562274932861, 0.0453854538500309, 0.01016989629715681, 0.03159622102975845, 0.006821665912866592, 0.04014907777309418, 0.04284469783306122]]], [[[0.021537618711590767, 0.05413591489195824, 0.10612097382545471, 0.10892120003700256, 0.062354523688554764, 0.03767572343349457, 0.11161340773105621, 0.1816212385892868, 0.011664198711514473, 0.019044632092118263, 0.01091531477868557, 0.009766189381480217, 0.008821023628115654, 0.018205104395747185, 0.018360797315835953, 0.013089797459542751, 0.024654308333992958, 0.18149806559085846], [0.08840508759021759, 0.10267304629087448, 0.0006315679638646543, 0.00012094285921193659, 5.50800068594981e-05, 3.9059137634467334e-05, 0.030768398195505142, 0.20488257706165314, 0.0014833819586783648, 0.1387920081615448, 0.0007212272030301392, 0.0008439872763119638, 0.001175061916001141, 0.0012554362183436751, 0.005331540945917368, 0.0010799472220242023, 0.21907979249954224, 0.20266197621822357], [0.07539638876914978, 0.00022841223108116537, 0.07105249166488647, 1.2811407941626385e-05, 2.591286147435312e-06, 4.2418618249939755e-05, 0.012827272526919842, 0.37843722105026245, 0.0001888369588414207, 0.001902204006910324, 0.00037382979644462466, 0.0002558898413553834, 0.004033676814287901, 0.002002556109800935, 0.0007519855280406773, 0.005124846938997507, 0.07375217229127884, 0.3736144006252289], [0.05645609647035599, 0.00010969523282255977, 3.086878496105783e-05, 0.02125740423798561, 5.791364674223587e-05, 2.541604953876231e-05, 0.013698933646082878, 0.356584757566452, 0.001362594193778932, 0.005135109182447195, 0.0036678011529147625, 0.0026709497906267643, 0.005886552855372429, 0.001168724149465561, 0.002018455881625414, 0.0023017199710011482, 0.1740713268518448, 0.35349562764167786], [0.1368228793144226, 0.00015092779358383268, 1.387906104355352e-05, 0.00015167421952355653, 0.021793825551867485, 0.00011693914711941034, 0.011585265398025513, 0.38953426480293274, 0.0005961314309388399, 0.0005579753778874874, 0.0002478875976521522, 0.0004488645354285836, 0.0008417723583988845, 0.001930899452418089, 0.0009021121077239513, 0.0005660842289216816, 0.04592352733016014, 0.38781511783599854], [0.11849930137395859, 2.9684963010367937e-05, 1.9869381503667682e-05, 2.171601590816863e-05, 4.742015153169632e-05, 0.04086234048008919, 0.00950186513364315, 0.37483465671539307, 0.0013172673061490059, 0.00016713236982468516, 0.0007547531859017909, 0.000115283350169193, 0.00043459254084154963, 0.002024881076067686, 9.676857007434592e-05, 0.0014582197181880474, 0.0806489810347557, 0.36916524171829224], [0.06362536549568176, 0.004503198433667421, 0.004122976213693619, 0.0020143697038292885, 0.0015305237611755729, 0.0005466362927109003, 0.07291050255298615, 0.24183666706085205, 0.036042820662260056, 0.01908978819847107, 0.011188888922333717, 0.0023287110961973667, 0.0064323944970965385, 0.024747008457779884, 0.003067954909056425, 0.015751171857118607, 0.25668632984161377, 0.23357462882995605], [0.016253910958766937, 0.001511957379989326, 0.0019217763328924775, 0.0026652675587683916, 0.002220605267211795, 0.001254631788469851, 0.011762886308133602, 0.46358075737953186, 0.00158187176566571, 0.002424072939902544, 0.002043483778834343, 0.003007682505995035, 0.0024868613108992577, 0.004762281663715839, 0.0017206603661179543, 0.005433693062514067, 0.02162950299680233, 0.4537380635738373], [0.15981720387935638, 0.0011770433047786355, 0.00104898726567626, 0.0016585782868787646, 0.0003243147803004831, 0.0080375075340271, 0.16781899333000183, 0.3115764260292053, 0.012589167803525925, 2.980443969136104e-05, 3.606381869758479e-05, 8.520206029061228e-05, 9.461055924475659e-06, 8.302497008116916e-06, 5.0746366468956694e-05, 2.154787944164127e-05, 0.030738690868020058, 0.30497196316719055], [0.07900562137365341, 0.23790061473846436, 0.008056898601353168, 0.010416662320494652, 0.0005487060989253223, 0.0003902194439433515, 0.1315627545118332, 0.2099246382713318, 4.4748245272785425e-05, 0.09598208218812943, 0.00016871407569851726, 0.0003134299477096647, 0.00015086273197084665, 0.00022252615599427372, 0.0002671466500032693, 0.00014687700604554266, 0.01883227936923504, 0.2060650736093521], [0.17837770283222198, 0.0007613662746734917, 0.00035393587313592434, 0.002606374444440007, 5.041294207330793e-05, 0.0007464016671292484, 0.061835337430238724, 0.3418695628643036, 2.2943368094274774e-05, 6.881753506604582e-05, 0.06420259177684784, 5.7893335906555876e-05, 7.367401121882722e-05, 1.061124748957809e-05, 0.00012222268560435623, 9.893864444165956e-06, 0.013165120035409927, 0.33566510677337646], [0.12217862904071808, 0.0014378034975379705, 0.0005137810949236155, 0.0030387050937861204, 0.0002507077588234097, 7.465307135134935e-05, 0.03276819735765457, 0.39068126678466797, 0.00012302660616114736, 0.0001695662795100361, 6.147826206870377e-05, 0.04518021643161774, 9.355996735394001e-05, 1.395197250531055e-05, 0.00034534375299699605, 0.00012154263094998896, 0.01356495264917612, 0.38938257098197937], [0.11956439912319183, 0.0008446139981970191, 0.0019992515444755554, 0.0020330529659986496, 9.913880057865754e-05, 0.0002433253830531612, 0.08587537705898285, 0.3751601576805115, 3.1453105293621775e-06, 5.97216458118055e-05, 9.277016943087801e-05, 0.00010057399776997045, 0.031388819217681885, 2.028122435149271e-05, 0.00014779501361772418, 0.00039613398257642984, 0.011208969168365002, 0.37076255679130554], [0.07828839868307114, 0.001526480307802558, 0.009665501303970814, 0.0014276213478296995, 0.0008041340624913573, 0.0012665592366829515, 0.04362867400050163, 0.32067811489105225, 1.3523659617931116e-05, 0.00015969277592375875, 2.914229298767168e-05, 2.8829597795265727e-05, 3.7202498788246885e-05, 0.20605768263339996, 0.0005121711874380708, 0.015384938567876816, 0.006694282870739698, 0.31379708647727966], [0.14402629435062408, 0.004144330974668264, 0.001329502440057695, 0.0018941559828817844, 0.0002025944268098101, 5.666711149387993e-05, 0.05153302848339081, 0.29393160343170166, 2.4021381250349805e-05, 0.00011850854934891686, 0.0001718025450827554, 0.0002061188279185444, 0.00020175600366201252, 9.941263124346733e-05, 0.20603346824645996, 7.83202558523044e-05, 0.00691754836589098, 0.2890309691429138], [0.08552919328212738, 0.001904022297821939, 0.008618734776973724, 0.0023127493914216757, 5.242591578280553e-05, 0.00028718786779791117, 0.042567867785692215, 0.2928728461265564, 1.5863121006987058e-05, 0.00010450428089825436, 1.1320105841150507e-05, 5.357235932024196e-05, 0.0003540106408763677, 0.008419588208198547, 0.00015581103798467666, 0.2607387602329254, 0.007464660797268152, 0.288536936044693], [0.09341487288475037, 0.039887432008981705, 0.03688642382621765, 0.02155260555446148, 0.00811756867915392, 0.005079877562820911, 0.19806912541389465, 0.2631339430809021, 0.012007947079837322, 0.004914932884275913, 0.0032786887604743242, 0.0012287693098187447, 0.0013003292260691524, 0.003860088996589184, 0.0006304767448455095, 0.001993210520595312, 0.046307068318128586, 0.25833675265312195], [0.016172563657164574, 0.0015281441155821085, 0.0019390531815588474, 0.0026901760138571262, 0.002244945615530014, 0.0012578468304127455, 0.011720936745405197, 0.46350786089897156, 0.0015695550246164203, 0.002423481550067663, 0.0020521502010524273, 0.0030563785694539547, 0.0025247016455978155, 0.004814495798200369, 0.0017377035692334175, 0.005552895832806826, 0.021885942667722702, 0.4533211588859558]], [[0.030434563755989075, 0.003261659061536193, 0.018362082540988922, 0.0038697870913892984, 0.007150906603783369, 0.013395234011113644, 0.006957588251680136, 0.06768140941858292, 0.1930849850177765, 0.051022473722696304, 0.04946316406130791, 0.06637069582939148, 0.10191372036933899, 0.12087137252092361, 0.025847336277365685, 0.11277268826961517, 0.060957204550504684, 0.06658316403627396], [0.015657197684049606, 0.02258964069187641, 0.16511541604995728, 0.08459056168794632, 0.05668487772345543, 0.2893175780773163, 0.04409819468855858, 0.0446043387055397, 0.029805483296513557, 0.010689427144825459, 0.014392639510333538, 0.03594178333878517, 0.03760061785578728, 0.03535124287009239, 0.01149205956608057, 0.03741288557648659, 0.020325955003499985, 0.04433009773492813], [0.008489750325679779, 0.06167420744895935, 0.13156084716320038, 0.027836998924613, 0.0505857840180397, 0.13193385303020477, 0.06314299255609512, 0.20572298765182495, 0.009616228751838207, 0.013230690732598305, 0.011693823151290417, 0.0062479181215167046, 0.014394375495612621, 0.020304381847381592, 0.005802764557301998, 0.015311267226934433, 0.019530881196260452, 0.20292025804519653], [0.003555492265149951, 0.030382536351680756, 0.09537922590970993, 0.13728731870651245, 0.10567794740200043, 0.1659322828054428, 0.03778160735964775, 0.0583982989192009, 0.03658667951822281, 0.008805859833955765, 0.019787244498729706, 0.17804661393165588, 0.019428405910730362, 0.008589528501033783, 0.010405201464891434, 0.012092896737158298, 0.014156874269247055, 0.05770603567361832], [0.00750766322016716, 0.021181169897317886, 0.03452887013554573, 0.13970766961574554, 0.020956357941031456, 0.3030017912387848, 0.04370180517435074, 0.06736189126968384, 0.0880548283457756, 0.00881781242787838, 0.02323480322957039, 0.0877406895160675, 0.0210198275744915, 0.008946415968239307, 0.019834153354167938, 0.008281616494059563, 0.029671678319573402, 0.06645092368125916], [0.01753910444676876, 0.0626688301563263, 0.11316372454166412, 0.043460287153720856, 0.048139918595552444, 0.16159728169441223, 0.10871126502752304, 0.16623122990131378, 0.014110463671386242, 0.006425789091736078, 0.013388133607804775, 0.006138610187917948, 0.014652524143457413, 0.01080254279077053, 0.009392312727868557, 0.01403605006635189, 0.026302505284547806, 0.16323938965797424], [0.009196829982101917, 0.029443034902215004, 0.07632076740264893, 0.07258690148591995, 0.06069575995206833, 0.14246106147766113, 0.07052502036094666, 0.15918029844760895, 0.07494612038135529, 0.01272502914071083, 0.02051651105284691, 0.025855345651507378, 0.022963333874940872, 0.007712800987064838, 0.013433204032480717, 0.009215097874403, 0.03509979695081711, 0.1571231484413147], [0.0036648192908614874, 0.0006576250889338553, 0.0009318678639829159, 0.0007644909201189876, 0.0011926554143428802, 0.0005265133804641664, 0.004080122336745262, 0.49108800292015076, 0.002726140199229121, 0.0007345074554905295, 0.0010696003446355462, 0.0008631455129943788, 0.0013138341018930078, 0.0007903185905888677, 0.0005975810345262289, 0.0009507612558081746, 0.009132384322583675, 0.47891566157341003], [0.02067660354077816, 0.012849344871938229, 0.02965516783297062, 0.013393135741353035, 0.023182334378361702, 0.051855701953172684, 0.02687544748187065, 0.19114677608013153, 0.12967577576637268, 0.013361606746912003, 0.027877412736415863, 0.03318608179688454, 0.0655595138669014, 0.03808646649122238, 0.015448692254722118, 0.06151075288653374, 0.056380901485681534, 0.18927818536758423], [0.006137806456536055, 0.008433952927589417, 0.0746663361787796, 0.01836778037250042, 0.011526010930538177, 0.1155829131603241, 0.005070325452834368, 0.06341125071048737, 0.10675980895757675, 0.022064706310629845, 0.09709732234477997, 0.055303554981946945, 0.0687270313501358, 0.09228333085775375, 0.029110349714756012, 0.1482492834329605, 0.014592628926038742, 0.06261565536260605], [0.012324857525527477, 0.008180491626262665, 0.03070227988064289, 0.025839949026703835, 0.012710422277450562, 0.021477868780493736, 0.012766005471348763, 0.223636195063591, 0.10926752537488937, 0.025878340005874634, 0.03997540473937988, 0.06580716371536255, 0.07583077251911163, 0.03542260453104973, 0.0168643556535244, 0.027521241456270218, 0.03465801849961281, 0.22113654017448425], [0.00735541433095932, 0.012030630372464657, 0.016989141702651978, 0.07194972038269043, 0.029617980122566223, 0.07898988574743271, 0.014545250684022903, 0.1212354525923729, 0.11715511232614517, 0.028652487322688103, 0.05450792610645294, 0.10951541364192963, 0.09267400205135345, 0.0362970195710659, 0.030167067423462868, 0.026522381231188774, 0.03181013464927673, 0.11998507380485535], [0.002542876172810793, 0.002306232461705804, 0.002456529065966606, 0.0015234930906444788, 0.0012265461264178157, 0.005929487757384777, 0.003284241072833538, 0.47282612323760986, 0.012271394021809101, 0.0031100220512598753, 0.006111857946962118, 0.0018906606128439307, 0.003529824549332261, 0.005073534790426493, 0.004376869648694992, 0.00384961417876184, 0.007758363615721464, 0.4599322974681854], [0.03031584620475769, 0.010897520929574966, 0.05077418312430382, 0.006516766734421253, 0.008025262504816055, 0.03686504065990448, 0.01496187038719654, 0.29583144187927246, 0.05060361325740814, 0.013912168331444263, 0.01954188570380211, 0.01908761076629162, 0.019197337329387665, 0.04733313247561455, 0.013765809126198292, 0.03888629004359245, 0.03351336717605591, 0.28997090458869934], [0.0015409934567287564, 0.0025492629501968622, 0.0031634243205189705, 0.004153302870690823, 0.0038439310155808926, 0.006573033984750509, 0.0020221243612468243, 0.4458523690700531, 0.04414975270628929, 0.0037445053458213806, 0.005642854142934084, 0.015064140781760216, 0.01100806426256895, 0.0032730514649301767, 0.0032002590596675873, 0.0037590765859931707, 0.005601753015071154, 0.4348580837249756], [0.013198008760809898, 0.00902887899428606, 0.029283318668603897, 0.00807236973196268, 0.008098929189145565, 0.03538082540035248, 0.008928816765546799, 0.3598131537437439, 0.018328819423913956, 0.008254420012235641, 0.018848877400159836, 0.013683446682989597, 0.01845734752714634, 0.04470443353056908, 0.012176495976746082, 0.022850440815091133, 0.017894845455884933, 0.3529966175556183], [0.009159340523183346, 0.0150224594399333, 0.03517501428723335, 0.04421379417181015, 0.0401315800845623, 0.048998262733221054, 0.030272919684648514, 0.1397554725408554, 0.23555263876914978, 0.02159370481967926, 0.03203815966844559, 0.04870451241731644, 0.07287348806858063, 0.013128501363098621, 0.01816944032907486, 0.017153004184365273, 0.0399615652859211, 0.1380961835384369], [0.003670863341540098, 0.0006600673077628016, 0.0009385439334437251, 0.0007733855163678527, 0.0012065701885148883, 0.000530096294824034, 0.004117552191019058, 0.49098119139671326, 0.0027451026253402233, 0.0007357163704000413, 0.001076779910363257, 0.0008754500886425376, 0.0013262990396469831, 0.0007934113964438438, 0.0006001040455885231, 0.0009556386503390968, 0.009186030365526676, 0.47882726788520813]], [[0.0066079809330403805, 0.011315207928419113, 0.007938464172184467, 0.004242634400725365, 0.0052033946849405766, 0.007014320697635412, 0.036600321531295776, 0.4562828242778778, 0.002461161697283387, 0.0014188281493261456, 0.0007139774388633668, 0.0005441443063318729, 0.000888269511051476, 0.001383815542794764, 0.0005895551876164973, 0.000882305612321943, 0.007420496549457312, 0.44849225878715515], [0.08182786405086517, 0.028638949617743492, 0.015224859118461609, 0.005910331849008799, 0.0021526729688048363, 0.006130129098892212, 0.05801507458090782, 0.3994421660900116, 0.0031992632430046797, 0.00045039845281280577, 0.0005270343972370028, 0.0009946504142135382, 0.0006214965251274407, 0.000759599672164768, 0.0003981162153650075, 0.0002263705973746255, 0.007647589780390263, 0.38783350586891174], [0.019447995349764824, 0.11102356016635895, 0.009973163716495037, 0.004938789177685976, 0.00373585382476449, 0.0027078711427748203, 0.015022206120193005, 0.4170157015323639, 0.0006434441893361509, 0.0002664921048562974, 0.00019052570860367268, 0.00043285463470965624, 0.0004504162061493844, 0.0008169256034307182, 0.0006068439106456935, 0.00021309813018888235, 0.0034403596073389053, 0.40907394886016846], [0.09925954788923264, 0.27372393012046814, 0.06353210657835007, 0.012930668890476227, 0.006896003149449825, 0.0250614732503891, 0.03243737667798996, 0.22990623116493225, 0.0042722951620817184, 0.0006447873311117291, 0.00017665352788753808, 0.0013011727714911103, 0.000997242284938693, 0.0013470696285367012, 0.0008678808808326721, 0.0007336637936532497, 0.015549789182841778, 0.2303621917963028], [0.05148565396666527, 0.03704288974404335, 0.08990951627492905, 0.14350809156894684, 0.07626163214445114, 0.1475410759449005, 0.08781302720308304, 0.16109979152679443, 0.005004079546779394, 0.0004628194437827915, 0.0014581945724785328, 0.022765949368476868, 8.787084516370669e-05, 0.0006335845100693405, 0.0012249959399923682, 0.0006961681065149605, 0.0157452505081892, 0.15725944936275482], [0.017292017117142677, 0.025115393102169037, 0.0573853999376297, 0.29776591062545776, 0.09726478159427643, 0.023892633616924286, 0.01400215458124876, 0.23590900003910065, 0.0008269668905995786, 0.0007263123407028615, 0.00014251330867409706, 0.0005870343302376568, 5.004037666367367e-05, 9.937160211848095e-05, 7.755070691928267e-05, 0.0006089030648581684, 0.0033360174857079983, 0.2249179631471634], [0.015154029242694378, 0.014127898029983044, 0.02783813886344433, 0.2913612425327301, 0.22661133110523224, 0.166086345911026, 0.029368791729211807, 0.11102248728275299, 0.0008983899606391788, 0.0009311775211244822, 0.0003948946250602603, 0.0005048328312113881, 0.00019522012735251337, 0.00041403117938898504, 0.0001603957498446107, 0.001061948947608471, 0.004103717859834433, 0.10976501554250717], [0.010817666538059711, 0.012594386003911495, 0.0034455277491360903, 0.003032159758731723, 0.004513731691986322, 0.0028964474331587553, 0.023238932713866234, 0.4453880488872528, 0.0026809037663042545, 0.0011007654247805476, 0.0008670646930113435, 0.003503039013594389, 0.006411248352378607, 0.00321485148742795, 0.0037586570251733065, 0.003203765954822302, 0.03134356066584587, 0.43798914551734924], [0.08506066352128983, 0.0005747622926719487, 0.0004662408318836242, 0.0007302563171833754, 0.00030359000083990395, 0.0008503185817971826, 0.008998352102935314, 0.44195643067359924, 0.01788548193871975, 0.002043089596554637, 0.0017966505838558078, 0.0008855757769197226, 0.00013365401537157595, 0.0009350049076601863, 0.0001094697872758843, 0.0006355558871291578, 0.012061696499586105, 0.42457324266433716], [0.07333287596702576, 0.001946002128534019, 0.0007038511685095727, 0.0006147025851532817, 0.0009588497341610491, 0.0004552564350888133, 0.004646515008062124, 0.31217026710510254, 0.28865236043930054, 0.005079726222902536, 0.005144454538822174, 0.0012141861952841282, 0.0014532897621393204, 0.0011659523006528616, 0.00029878990608267486, 0.0009485500049777329, 0.005336533300578594, 0.2958778142929077], [0.03707887604832649, 0.0010587674332782626, 0.00015958782751113176, 8.162539597833529e-05, 0.00016241378034465015, 0.0003184092347510159, 0.0034061039332300425, 0.17868942022323608, 0.3243807256221771, 0.24920065701007843, 0.016661353409290314, 0.006944655906409025, 0.003817035350948572, 0.002086183289065957, 8.571384387323633e-05, 0.0003415764949750155, 0.0016942023066803813, 0.17383261024951935], [0.04303490370512009, 0.0011792631121352315, 0.0003126279916614294, 7.100504444679245e-05, 0.0003896044800058007, 0.0007858643075451255, 0.008758383803069592, 0.20285844802856445, 0.3285650610923767, 0.1129697784781456, 0.0558210164308548, 0.03385154902935028, 0.0018566360231488943, 0.0047980062663555145, 0.0005501080304384232, 0.0003945317293982953, 0.0039764754474163055, 0.19982679188251495], [0.01505610253661871, 0.000584750494454056, 0.000646750966552645, 0.00026827838155440986, 0.00012159963080193847, 0.00020800705533474684, 0.0031552608124911785, 0.27190908789634705, 0.05903036892414093, 0.12366236001253128, 0.15293508768081665, 0.0681159496307373, 0.013731739483773708, 0.018279528245329857, 0.005643226206302643, 0.0027960382867604494, 0.0022157339844852686, 0.2616402208805084], [0.01031425129622221, 0.0010446306550875306, 0.000793259241618216, 0.00012315285857766867, 0.00014166008622851223, 0.00012265740951988846, 0.00039849692257121205, 0.29842329025268555, 0.012571930885314941, 0.03090527653694153, 0.016464263200759888, 0.1916501224040985, 0.11404005438089371, 0.010183652862906456, 0.012622580863535404, 0.004413849674165249, 0.0065255481749773026, 0.2892613410949707], [0.006609772797673941, 0.00211119232699275, 0.00019566075934562832, 8.924917347030714e-05, 0.00016333341773133725, 0.00013258894614409655, 7.558192737633362e-05, 0.016755511984229088, 0.008752018213272095, 0.006965440697968006, 0.0322999432682991, 0.05882953479886055, 0.779111385345459, 0.051258135586977005, 0.011631043627858162, 0.004955441690981388, 0.003125061048194766, 0.016939153894782066], [0.00485847145318985, 0.0009102660114876926, 0.0015139022143557668, 0.00010373944678576663, 0.00010742209997260943, 0.00014815726899541914, 5.18146189278923e-05, 0.02578197605907917, 0.0011865886626765132, 0.010905178263783455, 0.02760382555425167, 0.2412172108888626, 0.10605032742023468, 0.08563077449798584, 0.4566906988620758, 0.00606431532651186, 0.004795623943209648, 0.026379724964499474], [0.01648111268877983, 0.0029477477073669434, 0.002902927342802286, 0.0022366857156157494, 0.0012222316581755877, 0.0008346043759956956, 0.0007081297226250172, 0.21035628020763397, 0.004698367323726416, 0.009563340805470943, 0.017161842435598373, 0.07172999531030655, 0.05460318177938461, 0.07920365780591965, 0.17181584239006042, 0.08479326218366623, 0.060552891343832016, 0.20818780362606049], [0.01076355017721653, 0.012413381598889828, 0.00337919220328331, 0.003059231210500002, 0.004587475210428238, 0.0028417722787708044, 0.02295435220003128, 0.44599682092666626, 0.0027265148237347603, 0.0010869504185393453, 0.0008626185008324683, 0.003645386314019561, 0.006541611161082983, 0.0031363023445010185, 0.0036829791497439146, 0.0032446631230413914, 0.031116042286157608, 0.43796107172966003]], [[0.013416002504527569, 0.005477843340486288, 0.004634995013475418, 0.004950294271111488, 0.003318337257951498, 0.020358171314001083, 0.014292421750724316, 0.18035918474197388, 0.13584311306476593, 0.05463586747646332, 0.020036181434988976, 0.025233356282114983, 0.09174304455518723, 0.05707283690571785, 0.05236155167222023, 0.07682139426469803, 0.06139388307929039, 0.17805159091949463], [0.0044917156919837, 0.016133015975356102, 0.07207312434911728, 0.03202234208583832, 0.012521826662123203, 0.35445111989974976, 0.024476906284689903, 0.12400934100151062, 0.03750843554735184, 0.020673096179962158, 0.010001827031373978, 0.016857683658599854, 0.060949284583330154, 0.01959531009197235, 0.03562745824456215, 0.026536257937550545, 0.008524221368134022, 0.1235470101237297], [0.006459751632064581, 0.01957428641617298, 0.02758968435227871, 0.011878248304128647, 0.005886025261133909, 0.06152255833148956, 0.01801352947950363, 0.3721249997615814, 0.013169980607926846, 0.01124278362840414, 0.0020122313871979713, 0.010458741337060928, 0.03519528731703758, 0.009985351003706455, 0.014219794422388077, 0.008594480343163013, 0.0077920411713421345, 0.36428016424179077], [0.00388321396894753, 0.007620387244969606, 0.023093488067388535, 0.007385466247797012, 0.061101675033569336, 0.19591054320335388, 0.014350125566124916, 0.29207634925842285, 0.034675199538469315, 0.008875041268765926, 0.0026560041587799788, 0.009961770847439766, 0.022305617108941078, 0.0037320631090551615, 0.010567042045295238, 0.007239216938614845, 0.004674975294619799, 0.28989171981811523], [0.004121847450733185, 0.0058451248332858086, 0.009231414645910263, 0.009834003634750843, 0.01105272676795721, 0.047511026263237, 0.004672386683523655, 0.4445199966430664, 0.0036663543432950974, 0.0006715406198054552, 0.0028607251588255167, 0.008194927126169205, 0.002082410966977477, 0.0008446542778983712, 0.005317407660186291, 0.001393364043906331, 0.002018623985350132, 0.43616151809692383], [0.00955398753285408, 0.007842875085771084, 0.005400092341005802, 0.04756597429513931, 0.04561293125152588, 0.025266392156481743, 0.035811085253953934, 0.3981539309024811, 0.0063993064686656, 0.003782339161261916, 0.0014588342746719718, 0.007859253324568272, 0.0025481872726231813, 0.0026083632837980986, 0.0023489424493163824, 0.002021246124058962, 0.008226261474192142, 0.3875400424003601], [0.010838949121534824, 0.011144833639264107, 0.013546297326683998, 0.04365720972418785, 0.0262167789041996, 0.10204556584358215, 0.02721056528389454, 0.35473552346229553, 0.022365113720297813, 0.006782440468668938, 0.003140740329399705, 0.008197867311537266, 0.0020931940525770187, 0.0018359286477789283, 0.004984323866665363, 0.002246830379590392, 0.010798144154250622, 0.3481597602367401], [0.000832104473374784, 0.00037623714888468385, 0.0023634578101336956, 0.0015781063120812178, 0.0013996908674016595, 0.010013234801590443, 0.0017044139094650745, 0.4886111915111542, 0.0022657958324998617, 0.0006029423675499856, 0.00028564027161337435, 0.0019088577246293426, 0.001436930731870234, 0.0025985308457165956, 0.0009477093117311597, 0.002293842611834407, 0.001506699831224978, 0.4792746305465698], [0.012825368903577328, 0.005159531254321337, 0.006005235482007265, 0.060052309185266495, 0.020389866083860397, 0.10852421820163727, 0.007560436613857746, 0.2960466146469116, 0.020215682685375214, 0.0049596731550991535, 0.06353787332773209, 0.03554400056600571, 0.019502578303217888, 0.014595456421375275, 0.01791379414498806, 0.006917067337781191, 0.010372702032327652, 0.28987762331962585], [0.005584817845374346, 0.011361737735569477, 0.03375698998570442, 0.022484660148620605, 0.014892438426613808, 0.20088498294353485, 0.012206638231873512, 0.14985902607440948, 0.059445906430482864, 0.017818059772253036, 0.02098858542740345, 0.050345584750175476, 0.1487468183040619, 0.0220466498285532, 0.03818698227405548, 0.02453269623219967, 0.01817811280488968, 0.1486792415380478], [0.007707878481596708, 0.0022322600707411766, 0.006970589514821768, 0.0014555795351043344, 0.003916421439498663, 0.013076906092464924, 0.0043579149059951305, 0.3272406756877899, 0.017085634171962738, 0.026882866397500038, 0.014820915646851063, 0.018741514533758163, 0.2088312953710556, 0.005885469261556864, 0.007595313247293234, 0.0061784666031599045, 0.005790884140878916, 0.32122939825057983], [0.016117295250296593, 0.0023668340872973204, 0.0019996736664325, 0.003336711088195443, 0.003570755012333393, 0.00577695993706584, 0.00287752621807158, 0.4262455105781555, 0.014461327344179153, 0.006935810204595327, 0.04194106534123421, 0.0038329237140715122, 0.04270513355731964, 0.0012295389315113425, 0.0060296268202364445, 0.0006524227210320532, 0.004155816975980997, 0.41576504707336426], [0.009053463116288185, 0.008594822138547897, 0.029202952980995178, 0.0016099757049232721, 0.004352244082838297, 0.014853328466415405, 0.006029084790498018, 0.24843457341194153, 0.024430669844150543, 0.03279094025492668, 0.026037072762846947, 0.006297733169049025, 0.08102931827306747, 0.12996551394462585, 0.09524078667163849, 0.02885865606367588, 0.008454728871583939, 0.24476419389247894], [0.006670882925391197, 0.003633924527093768, 0.002019614214077592, 0.0010659267427399755, 0.0014089636970311403, 0.003492741845548153, 0.010123170912265778, 0.31271377205848694, 0.0031799122225493193, 0.006329339928925037, 0.002014902886003256, 0.004216383211314678, 0.10345956683158875, 0.06262592226266861, 0.03565540909767151, 0.10985711216926575, 0.024767838418483734, 0.3067646324634552], [0.01111713144928217, 0.01686342991888523, 0.0035973042249679565, 0.003851931309327483, 0.0041189659386873245, 0.008219714276492596, 0.009738394059240818, 0.2103174924850464, 0.008001334965229034, 0.05344225466251373, 0.012327049858868122, 0.009010088630020618, 0.3555586040019989, 0.044211383908987045, 0.018802152946591377, 0.012109351344406605, 0.01233674492686987, 0.20637671649456024], [0.007959901355206966, 0.004343620501458645, 0.003951844293624163, 0.0016829329542815685, 0.002566414652392268, 0.007125908508896828, 0.008194350637495518, 0.34881410002708435, 0.005942061077803373, 0.0067154704593122005, 0.0017966098384931684, 0.0028338944539427757, 0.11790728569030762, 0.04978134110569954, 0.05468103662133217, 0.018802618607878685, 0.016341879963874817, 0.3405587375164032], [0.00889111589640379, 0.004000481218099594, 0.005811948794871569, 0.011780109256505966, 0.0060135116800665855, 0.03476916626095772, 0.007610488682985306, 0.3837549686431885, 0.05251113325357437, 0.013499642722308636, 0.006806972436606884, 0.019055461511015892, 0.0079291807487607, 0.011564918793737888, 0.015471484512090683, 0.014758579432964325, 0.01907876878976822, 0.3766920864582062], [0.0008363601518794894, 0.0003803645959123969, 0.0023730408865958452, 0.001587206032127142, 0.0014159799320623279, 0.01013411208987236, 0.0017178335692733526, 0.4885159432888031, 0.0022699907422065735, 0.0005984851159155369, 0.0002851857279893011, 0.001910315710119903, 0.001440875232219696, 0.002599617699161172, 0.0009413525694981217, 0.002301733708009124, 0.0015039185527712107, 0.47918757796287537]], [[0.013284656219184399, 0.007227989844977856, 0.018252737820148468, 0.005501358304172754, 0.004776627290993929, 0.004455446265637875, 0.0056704324670135975, 0.085121288895607, 0.08606810122728348, 0.05529347062110901, 0.020597059279680252, 0.059300001710653305, 0.06061488389968872, 0.16288693249225616, 0.05342665687203407, 0.2097252607345581, 0.06358135491609573, 0.08421571552753448], [0.046710189431905746, 0.08360853046178818, 0.1115955263376236, 0.07336781173944473, 0.011135685257613659, 0.011815616860985756, 0.05735858529806137, 0.06396060436964035, 0.012440428137779236, 0.3130056858062744, 0.005607022438198328, 0.007335035130381584, 0.01197829656302929, 0.03569663316011429, 0.03177231550216675, 0.03729068860411644, 0.022235648706555367, 0.06308580935001373], [0.06795583665370941, 0.050702642649412155, 0.042903292924165726, 0.010407334193587303, 0.004641596227884293, 0.008430982939898968, 0.07089795172214508, 0.20598983764648438, 0.009024870581924915, 0.22657354176044464, 0.0011386750265955925, 0.00556200509890914, 0.004429718013852835, 0.022876756265759468, 0.006875480059534311, 0.03507707267999649, 0.024160034954547882, 0.2023524045944214], [0.04673292115330696, 0.05631914734840393, 0.024491453543305397, 0.04276900738477707, 0.004485772922635078, 0.00662468746304512, 0.08802355080842972, 0.2112189531326294, 0.00664145965129137, 0.20886775851249695, 0.004972499795258045, 0.014816489070653915, 0.007700077723711729, 0.004883452318608761, 0.01748781092464924, 0.005711548961699009, 0.03957280516624451, 0.20868059992790222], [0.014659097418189049, 0.014724908396601677, 0.0068899597972631454, 0.01489944290369749, 0.009097001515328884, 0.02422001212835312, 0.020773902535438538, 0.40835487842559814, 0.005427915137261152, 0.0025425441563129425, 0.0049171107821166515, 0.04153010994195938, 0.011705740354955196, 0.0009414437226951122, 0.004209692124277353, 0.0012718505458906293, 0.009546649642288685, 0.404287725687027], [0.0327603854238987, 0.04898732528090477, 0.023032816126942635, 0.05891319364309311, 0.053390081971883774, 0.02433890663087368, 0.04503088444471359, 0.2301274836063385, 0.026271384209394455, 0.020531529560685158, 0.010786082595586777, 0.122834712266922, 0.007813447155058384, 0.02022484503686428, 0.011441916227340698, 0.021974220871925354, 0.015522335655987263, 0.22601844370365143], [0.054831959307193756, 0.028447307646274567, 0.021422741934657097, 0.048755474388599396, 0.028732692822813988, 0.006798785645514727, 0.026943696662783623, 0.3001415431499481, 0.11101704090833664, 0.0086654182523489, 0.00839500967413187, 0.01129857636988163, 0.0038021367508918047, 0.005707922391593456, 0.014918633736670017, 0.0060424949042499065, 0.017635393887758255, 0.2964431345462799], [0.0032974518835544586, 0.0010405660141259432, 0.0020783315412700176, 0.00041495158802717924, 0.0004234906518831849, 0.0003473341348581016, 0.0007545904954895377, 0.4965965449810028, 0.0018546627834439278, 0.002420966047793627, 0.0009765815921127796, 0.001080984016880393, 0.0005645895143970847, 0.0009522530599497259, 0.000278051826171577, 0.0004894377198070288, 0.0015159405302256346, 0.4849132001399994], [0.026299849152565002, 0.008739209733903408, 0.0036980072036385536, 0.015982359647750854, 0.007572704926133156, 0.008572963066399097, 0.017778683453798294, 0.21962802112102509, 0.010267859324812889, 0.07852444052696228, 0.05739040672779083, 0.16024765372276306, 0.031594354659318924, 0.005096520762890577, 0.04427115246653557, 0.004696890711784363, 0.08221209794282913, 0.2174268215894699], [0.04352688789367676, 0.041024100035429, 0.004280082881450653, 0.01797121949493885, 0.0006533916457556188, 0.0003671578015200794, 0.012972965836524963, 0.03610752895474434, 0.010276975110173225, 0.667766273021698, 0.009216408245265484, 0.005166804417967796, 0.005188280716538429, 0.020217828452587128, 0.033837318420410156, 0.010958255268633366, 0.04497487470507622, 0.035493575036525726], [0.05195846036076546, 0.01608046144247055, 0.006163245998322964, 0.007462259382009506, 0.009333468042314053, 0.0031193485483527184, 0.008771272376179695, 0.18921475112438202, 0.18654903769493103, 0.06435122340917587, 0.0068754591047763824, 0.041081178933382034, 0.032521530985832214, 0.0270738136023283, 0.037455953657627106, 0.10085870325565338, 0.02360154688358307, 0.18752829730510712], [0.0890008807182312, 0.008809089660644531, 0.0016821197932586074, 0.010965812020003796, 0.007770802825689316, 0.02332625910639763, 0.030447615310549736, 0.21600556373596191, 0.1442694067955017, 0.013381609693169594, 0.021019605919718742, 0.058472082018852234, 0.02867106720805168, 0.0038220679853111506, 0.029000675305724144, 0.008898027241230011, 0.08854580670595169, 0.21591144800186157], [0.039989423006772995, 0.012573220767080784, 0.00943691749125719, 0.00973555352538824, 0.008830035105347633, 0.009814785793423653, 0.007274684961885214, 0.1474837064743042, 0.021552175283432007, 0.015892058610916138, 0.020455820485949516, 0.010703496634960175, 0.051368631422519684, 0.11615084856748581, 0.1671324074268341, 0.1866706907749176, 0.01921313814818859, 0.14572244882583618], [0.04782263934612274, 0.00904055405408144, 0.02888783998787403, 0.004680734593421221, 0.0017562914872542024, 0.02331177145242691, 0.008854557760059834, 0.15610207617282867, 0.008380315266549587, 0.1714010238647461, 0.004877375904470682, 0.006504338700324297, 0.035441480576992035, 0.10686328262090683, 0.029429346323013306, 0.1896696388721466, 0.012446518056094646, 0.15453019738197327], [0.01393205113708973, 0.006149200722575188, 0.00409643305465579, 0.0026545797009021044, 0.0026561119593679905, 0.0027667805552482605, 0.003818874480202794, 0.299826979637146, 0.02260787971317768, 0.011141540482640266, 0.011467074044048786, 0.014427685178816319, 0.13057459890842438, 0.05083857476711273, 0.011319625191390514, 0.10651520639657974, 0.01068729069083929, 0.2945196330547333], [0.04217859357595444, 0.02207983285188675, 0.02260054275393486, 0.005331137217581272, 0.0013133244356140494, 0.025668783113360405, 0.02095022052526474, 0.19637003540992737, 0.0155656598508358, 0.14647893607616425, 0.010123927146196365, 0.0063982461579144, 0.0419909693300724, 0.12186463922262192, 0.03188594803214073, 0.06661571562290192, 0.02883065491914749, 0.19375279545783997], [0.034994859248399734, 0.0091980816796422, 0.007155266124755144, 0.016039032489061356, 0.010613853111863136, 0.0017207561759278178, 0.010233215987682343, 0.271910160779953, 0.2039155513048172, 0.017694810405373573, 0.023219948634505272, 0.027991387993097305, 0.007805486209690571, 0.01326433103531599, 0.024876844137907028, 0.014032765291631222, 0.03768051415681839, 0.26765310764312744], [0.0033043462317436934, 0.0010553321335464716, 0.002089006593450904, 0.0004177714290563017, 0.000426497426815331, 0.00034813256934285164, 0.0007588896551169455, 0.4965958893299103, 0.0018605605000630021, 0.002411331282928586, 0.0009827297180891037, 0.0010807713260874152, 0.0005639070295728743, 0.0009534871787764132, 0.0002786644035950303, 0.0004854605649597943, 0.0015121137257665396, 0.4848751127719879]], [[0.0157695934176445, 0.02629631944000721, 0.007044770289212465, 0.004541644360870123, 0.002969098975881934, 0.0043016900308430195, 0.010153582319617271, 0.44006288051605225, 0.018427621573209763, 0.009432465769350529, 0.003433217527344823, 0.0006800668779760599, 0.0011761629721149802, 0.0018089136574417353, 0.0018929439829662442, 0.0030483948066830635, 0.010010190308094025, 0.43895047903060913], [0.023414401337504387, 0.027318626642227173, 0.22731630504131317, 0.012072243727743626, 0.0013409985695034266, 0.0034306880552321672, 0.005532498005777597, 0.3499128520488739, 0.0006450853543356061, 0.0004889157135039568, 0.0004909521667286754, 0.00027281895745545626, 0.00033211184199899435, 0.0005590905784629285, 0.0015032830415293574, 0.001216559554450214, 0.002395415212959051, 0.3417570888996124], [0.028635356575250626, 0.007158661726862192, 0.0059987688437104225, 0.0863676592707634, 0.003029851708561182, 0.0014843903481960297, 0.006054678000509739, 0.439287006855011, 0.00023352282005362213, 0.00024405041767749935, 0.0006241193041205406, 0.00021722257952205837, 0.0005191321251913905, 1.9007135051651858e-05, 0.0005879553500562906, 0.00047794575220905244, 0.0025031070690602064, 0.41655758023262024], [0.043184418231248856, 0.00834771990776062, 0.005665005650371313, 0.004861549474298954, 0.06606049835681915, 0.448731392621994, 0.04416749253869057, 0.1886502057313919, 0.0008486834121868014, 8.05333475000225e-05, 7.880822522565722e-05, 0.00011144445306854323, 0.0010110590374097228, 0.00073915661778301, 0.00016175386554095894, 0.001387298572808504, 0.005300472024828196, 0.18061253428459167], [0.038620322942733765, 0.009393262676894665, 0.0036605335772037506, 0.003956201486289501, 0.017014695331454277, 0.4300213158130646, 0.013566444627940655, 0.23694315552711487, 0.0002744118683040142, 5.5195345339598134e-05, 7.251535134855658e-05, 9.542986663291231e-05, 3.086958531639539e-05, 0.0003630660066846758, 6.76586787449196e-05, 0.00016402940673287958, 0.0015103173209354281, 0.24419064819812775], [0.01634250581264496, 0.003909350838512182, 0.008575769141316414, 0.006675802171230316, 0.0016608181176707149, 0.0027155415154993534, 0.14240774512290955, 0.40734291076660156, 0.00041081695235334337, 0.0008039134554564953, 0.0005582979647442698, 0.00013940001372247934, 1.9277587853139266e-05, 0.0002898804668802768, 0.0006875874823890626, 0.00011084823927376419, 0.0011306768283247948, 0.40621885657310486], [0.004172847606241703, 0.0028619251679629087, 0.0016587049467489123, 0.0007242193096317351, 0.0007840769249014556, 0.0005407280987128615, 0.011635479517281055, 0.503649115562439, 0.0015474274987354875, 0.0005147148622199893, 5.500806946656667e-05, 0.00014779821503907442, 2.3319487809203565e-05, 1.0387153452029452e-05, 9.26011853152886e-06, 0.00019186653662472963, 0.00033956568222492933, 0.47113358974456787], [0.004239741712808609, 0.008683063089847565, 0.008143840357661247, 0.0029230720829218626, 0.00179782893974334, 0.003399607492610812, 0.019028233364224434, 0.44622695446014404, 0.0040067750960588455, 0.0014952090568840504, 0.0018893660744652152, 0.0007545718108303845, 0.0023556086234748363, 0.005261128768324852, 0.01025745552033186, 0.011875900439918041, 0.02559625916182995, 0.44206538796424866], [0.012265289202332497, 0.002106976928189397, 0.002563965506851673, 0.00015292961325030774, 0.00022848538355901837, 0.0007469628471881151, 0.0014184187166392803, 0.37324199080467224, 0.05212600529193878, 0.17705152928829193, 0.003638278692960739, 0.0026900421362370253, 0.0011806631227955222, 0.001810855115763843, 5.473393321153708e-05, 0.0005044052959419787, 0.001340196467936039, 0.3668781816959381], [0.04869745671749115, 0.0014844521647319198, 0.0009666171972639859, 0.0006975571741349995, 0.00037595053436234593, 0.002489911625161767, 0.0014170199865475297, 0.18804064393043518, 0.02020624466240406, 0.017393821850419044, 0.36501505970954895, 0.01940138451755047, 0.14041577279567719, 0.0019558100029826164, 0.0031020271126180887, 0.001523455954156816, 0.0008917069062590599, 0.18592508137226105], [0.07998968660831451, 0.0003467097703833133, 0.00047271663788706064, 4.804510172107257e-05, 0.00011380807700334117, 0.0002205612836405635, 0.0004324855108279735, 0.1253684014081955, 0.00577172776684165, 0.005630229599773884, 0.014130158349871635, 0.07587260007858276, 0.5579158067703247, 0.0017640619771555066, 0.001031173625960946, 0.013250435702502728, 0.0006793267093598843, 0.11696206778287888], [0.05695215240120888, 0.003439569380134344, 0.0012334962375462055, 0.00020576217502821237, 0.0003818781697191298, 0.0003507636138238013, 0.00024683657102286816, 0.38625603914260864, 0.009943701326847076, 0.010995395481586456, 0.01356042642146349, 0.014568758197128773, 0.062406908720731735, 0.015218505635857582, 0.0014243952464312315, 0.04720116779208183, 0.002612919546663761, 0.3730013966560364], [0.012655393220484257, 0.002014972036704421, 0.0006186942337080836, 3.09613642457407e-05, 0.000179180788109079, 0.00017458846559748054, 0.00027372545446269214, 0.15057653188705444, 0.00039494544034823775, 0.001576080685481429, 0.0014652782119810581, 0.003217047546058893, 0.011256400495767593, 0.6427573561668396, 0.00336557743139565, 0.004059752449393272, 0.005623438861221075, 0.15976007282733917], [0.016087768599390984, 0.0019245659932494164, 0.0010082937078550458, 0.0008582069422118366, 7.782864122418687e-05, 2.703389873204287e-05, 0.0002610559167806059, 0.3275318145751953, 0.0008920026011765003, 0.0007621169206686318, 0.010978611186146736, 0.0032636767718940973, 0.00743905222043395, 0.002745131030678749, 0.2720590829849243, 0.014314343221485615, 0.011376602575182915, 0.32839271426200867], [0.0031630091834813356, 0.000366891676094383, 0.00017546625167597085, 4.483301381696947e-05, 2.2479907784145325e-05, 2.7674857392412378e-06, 6.417437816708116e-06, 0.04531732574105263, 2.9628121410496533e-05, 1.2853794942202512e-05, 6.333705096039921e-05, 0.0005970138590782881, 0.002658790210261941, 0.0016619657399132848, 0.0003622792137321085, 0.901421070098877, 0.0009687875863164663, 0.043125178664922714], [0.009287689812481403, 0.00031718157697468996, 0.0003770703624468297, 0.0005990590434521437, 0.0004633904609363526, 6.486393976956606e-05, 0.0006377789541147649, 0.37655365467071533, 0.0006052558310329914, 0.00039940676651895046, 0.00019301408610772341, 0.00020605836471077055, 0.0015160148032009602, 0.003702945075929165, 0.005001372192054987, 0.0024970839731395245, 0.22294284403324127, 0.37463533878326416], [0.005674484185874462, 0.00405089883133769, 0.0014514069771394134, 0.00027673839940689504, 0.0004193297936581075, 0.00041740332380868495, 0.00041815813165158033, 0.4738040864467621, 0.0017729686805978417, 0.0007484589004889131, 5.519692422240041e-05, 6.18872873019427e-05, 0.00018329489103052765, 0.0010139303049072623, 0.0004345809866208583, 0.005660653114318848, 0.021699625998735428, 0.48185694217681885], [0.004198017530143261, 0.008711486123502254, 0.008625805377960205, 0.002901906380429864, 0.001723785768263042, 0.0032997725065797567, 0.01956166699528694, 0.4456275999546051, 0.00382436765357852, 0.0014902751427143812, 0.0019420157186686993, 0.0007542064995504916, 0.002215675311163068, 0.005446304567158222, 0.010986859910190105, 0.01202418189495802, 0.025229889899492264, 0.4414362907409668]], [[0.002203426556661725, 0.06672593206167221, 0.4385266900062561, 0.1814957708120346, 0.0434844084084034, 0.22033406794071198, 0.0364554226398468, 0.0031639416702091694, 0.0001974978658836335, 0.000980576267465949, 9.07568319234997e-05, 0.000591598975006491, 0.0004696854157373309, 0.0007754597463645041, 0.00010620267858030275, 0.0007714396924711764, 0.0004740217700600624, 0.0031530619598925114], [0.1499362736940384, 0.11455092579126358, 0.03525315225124359, 0.02877526544034481, 0.029874147847294807, 0.011378724128007889, 0.10798078030347824, 0.24289293587207794, 0.004590412601828575, 0.00880175270140171, 0.003945975564420223, 0.0015898633282631636, 0.0046088495291769505, 0.0009554613498039544, 0.002423641737550497, 0.001471704221330583, 0.010426907800137997, 0.2405432015657425], [0.04851547256112099, 0.018044643104076385, 0.0024775657802820206, 0.0048618982546031475, 0.0029324728529900312, 0.000820597109850496, 0.031521592289209366, 0.4460924565792084, 0.00038150319596752524, 0.0008671648101881146, 0.00012552895350381732, 5.033419802202843e-05, 0.00032154127256944776, 0.0002524017181713134, 0.00037195184268057346, 0.00032126650330610573, 0.0027577842120081186, 0.4392838776111603], [0.16253310441970825, 0.17671294510364532, 0.04768095910549164, 0.03226573392748833, 0.016224846243858337, 0.01184953935444355, 0.18405066430568695, 0.1384296715259552, 0.008914759382605553, 0.011634395457804203, 0.033319100737571716, 0.003112168749794364, 0.007452166639268398, 0.0012673167511820793, 0.006105107720941305, 0.001583086559548974, 0.02022557519376278, 0.13663889467716217], [0.06041582301259041, 0.04204079136252403, 0.0031932515557855368, 0.004763190634548664, 0.01566406339406967, 0.004646776244044304, 0.02974291332066059, 0.41169828176498413, 0.004349640570580959, 0.0025660761166363955, 0.0008570513455197215, 0.00427594780921936, 0.0011736874002963305, 0.0005094124935567379, 0.0008039544336497784, 0.0010371237294748425, 0.004797094035893679, 0.4074649214744568], [0.05575447157025337, 0.07125259190797806, 0.019491657614707947, 0.006926634814590216, 0.0164397731423378, 0.0034684177953749895, 0.044381033629179, 0.38573533296585083, 0.0020946720615029335, 0.002195986919105053, 0.0009633529116399586, 0.0007043115328997374, 0.0006694638286717236, 0.0011421556118875742, 0.00044762424658983946, 0.0014069173485040665, 0.005851127207279205, 0.38107454776763916], [0.0730193704366684, 0.16535231471061707, 0.07896202057600021, 0.10541388392448425, 0.09156407415866852, 0.04808103293180466, 0.10069525986909866, 0.13935376703739166, 0.016433605924248695, 0.004678765777498484, 0.003265219274908304, 0.0028357836417853832, 0.0013914083829149604, 0.002262462629005313, 0.0035222461447119713, 0.0015369317261502147, 0.0224361140280962, 0.13919579982757568], [0.007129143923521042, 0.001326060388237238, 0.00028389840736053884, 0.0003745120484381914, 0.0013171652099117637, 0.000337653502356261, 0.0009419673588126898, 0.49067309498786926, 0.0006129568791948259, 0.000647050968836993, 0.000458618305856362, 0.0003683566174004227, 0.0011821031803265214, 0.0008398345671594143, 0.0017832661978900433, 0.0006829454214312136, 0.0012190352426841855, 0.4898224174976349], [0.047509968280792236, 0.031639158725738525, 0.028677335008978844, 0.01423579640686512, 0.05225571244955063, 0.022490208968520164, 0.04746553674340248, 0.25533968210220337, 0.07165541499853134, 0.028070634230971336, 0.010758535005152225, 0.06132811680436134, 0.013607710599899292, 0.00619640713557601, 0.010946355760097504, 0.0048905047588050365, 0.03905969113111496, 0.25387322902679443], [0.18573924899101257, 0.1414441615343094, 0.04111001268029213, 0.012548697181046009, 0.018179941922426224, 0.002155523281544447, 0.06994488835334778, 0.18717138469219208, 0.03685289993882179, 0.012288052588701248, 0.013624327257275581, 0.0020765040535479784, 0.01234132144600153, 0.004783939104527235, 0.013366120867431164, 0.010037272237241268, 0.05244726315140724, 0.18388843536376953], [0.031575676053762436, 0.02739034593105316, 0.017009785398840904, 0.06142883002758026, 0.0049319141544401646, 0.00419152295216918, 0.02715320885181427, 0.23642931878566742, 0.08435282856225967, 0.0332295224070549, 0.026383696123957634, 0.056685078889131546, 0.08990118652582169, 0.006316980812698603, 0.01233543362468481, 0.00866415910422802, 0.03897005692124367, 0.2330504059791565], [0.06472619622945786, 0.02118462324142456, 0.005841939244419336, 0.003083219053223729, 0.009349375031888485, 0.005146661773324013, 0.04024042189121246, 0.19557403028011322, 0.26101043820381165, 0.014109770767390728, 0.0321999154984951, 0.08158387243747711, 0.015953289344906807, 0.004336759448051453, 0.01485925167798996, 0.00526000838726759, 0.03424692153930664, 0.19129325449466705], [0.04243604093790054, 0.010129638016223907, 0.003790641902014613, 0.005172022618353367, 0.0016371557721868157, 0.0016081184148788452, 0.030522992834448814, 0.34397274255752563, 0.01032305508852005, 0.030258191749453545, 0.013879227451980114, 0.04509595036506653, 0.06751121580600739, 0.006131280679255724, 0.01384730264544487, 0.012320727109909058, 0.026167316362261772, 0.3351963460445404], [0.04412152245640755, 0.008274322375655174, 0.0028039407916367054, 0.0005385386175476015, 0.0022883450146764517, 0.0007043649675324559, 0.02451944351196289, 0.42231079936027527, 0.00731706665828824, 0.009204372763633728, 0.0031233227346092463, 0.0027739563956856728, 0.004634530749171972, 0.009612152352929115, 0.004487700294703245, 0.008425627835094929, 0.03013600781559944, 0.4147239625453949], [0.058009468019008636, 0.011899244971573353, 0.006722069811075926, 0.002604705048725009, 0.002899046055972576, 0.003330998122692108, 0.020736195147037506, 0.24822232127189636, 0.06490540504455566, 0.009277860634028912, 0.04932280257344246, 0.02557249180972576, 0.08648282289505005, 0.024160711094737053, 0.1051715761423111, 0.015253468416631222, 0.0227118618786335, 0.2427169233560562], [0.0497904047369957, 0.006081985309720039, 0.0014838851056993008, 0.0029991345945745707, 0.0009286265703849494, 0.0007639813702553511, 0.01713147759437561, 0.33014607429504395, 0.01522857416421175, 0.050400249660015106, 0.030214136466383934, 0.020977986976504326, 0.042393919080495834, 0.012265753000974655, 0.020138928666710854, 0.009851665236055851, 0.06463329493999481, 0.324569970369339], [0.05990118905901909, 0.01920318230986595, 0.008678398095071316, 0.010514970868825912, 0.010323802009224892, 0.006036693695932627, 0.027783626690506935, 0.10340506583452225, 0.31059530377388, 0.06020069122314453, 0.08076241612434387, 0.04486515372991562, 0.012578009627759457, 0.01002352125942707, 0.0213396567851305, 0.004728902131319046, 0.10671313107013702, 0.10234629362821579], [0.007132439874112606, 0.0013282217551022768, 0.000284794281469658, 0.00037730479380115867, 0.0013226208975538611, 0.0003394052910152823, 0.0009540937026031315, 0.4906928241252899, 0.0006087317597121, 0.0006450394866988063, 0.00045824062544852495, 0.0003713339101523161, 0.0011784507660195231, 0.0008381153456866741, 0.0017776961904019117, 0.0006814813241362572, 0.0012194953160360456, 0.48978978395462036]], [[0.007244938053190708, 0.024209927767515182, 0.004405792336910963, 0.0053467038087546825, 0.00418474804610014, 0.004175320267677307, 0.2312188744544983, 0.3071093261241913, 0.0028293097857385874, 0.0018904159078374505, 0.0009614824084565043, 0.0016075248131528497, 0.003344343975186348, 0.0011946953600272536, 0.013027699664235115, 0.002852628007531166, 0.08054951578378677, 0.30384665727615356], [0.060958486050367355, 0.13200615346431732, 0.006853333208709955, 0.008012470789253712, 0.001851218519732356, 0.0037431553937494755, 0.1994222104549408, 0.2843891978263855, 0.0024457313120365143, 0.001594071974977851, 7.91048732935451e-05, 0.00020738792954944074, 0.00014605477917939425, 9.28082808968611e-05, 0.0016319117275997996, 8.861327660270035e-05, 0.018928557634353638, 0.27754947543144226], [0.004283356945961714, 0.026532256975769997, 0.0015128122176975012, 0.00598599947988987, 0.002021399326622486, 0.0033085381146520376, 0.14428815245628357, 0.3945738971233368, 0.000890607014298439, 0.0005929935723543167, 0.00024411104095634073, 0.00024927465710788965, 0.00011670406820485368, 0.00021075992844998837, 0.0030741668306291103, 0.00025224886485375464, 0.023544998839497566, 0.38831767439842224], [0.13664713501930237, 0.02203996852040291, 0.001241409918293357, 0.028010377660393715, 0.003337324596941471, 0.0035256736446172, 0.10843118280172348, 0.3350714147090912, 0.001328645390458405, 0.003958230372518301, 0.0010674509685486555, 0.0006680673686787486, 0.0013463482027873397, 0.00025049789110198617, 0.0020224270410835743, 0.00023170052736531943, 0.021748250350356102, 0.329073965549469], [0.06333088874816895, 0.010391521267592907, 0.0022814616095274687, 0.015420214273035526, 0.021077727898955345, 0.00883272010833025, 0.20807811617851257, 0.3177618086338043, 0.0020021097734570503, 0.0023895755875855684, 0.0008760569617152214, 0.0012390619376674294, 0.0015518724685534835, 0.000551567180082202, 0.0021851323544979095, 0.0010817076545208693, 0.02913307584822178, 0.3118153512477875], [0.01803603209555149, 0.017840595915913582, 0.006577459163963795, 0.007965819910168648, 0.004415736999362707, 0.004474171437323093, 0.15382973849773407, 0.3672012686729431, 0.0012962034670636058, 0.0013848227681592107, 0.0005674589774571359, 0.0012097042053937912, 0.0012482883175835013, 0.0029615224339067936, 0.004225045908242464, 0.004786673001945019, 0.03703382983803749, 0.364945650100708], [0.07255030423402786, 0.02867729589343071, 0.008568994700908661, 0.010876134037971497, 0.00490372721105814, 0.010694080032408237, 0.1973649114370346, 0.29812198877334595, 0.008496064692735672, 0.0032626588363200426, 0.002354650991037488, 0.001775115728378296, 0.0020379885099828243, 0.0014078618260100484, 0.004361215513199568, 0.002290252363309264, 0.0475262813270092, 0.2947304844856262], [0.06710067391395569, 0.020432010293006897, 0.011401724070310593, 0.008363409899175167, 0.004059341736137867, 0.004897071048617363, 0.016073070466518402, 0.3982893228530884, 0.020592227578163147, 0.007998389191925526, 0.006573839113116264, 0.004872464574873447, 0.005754176527261734, 0.004291790537536144, 0.005294569302350283, 0.00445041386410594, 0.019422922283411026, 0.3901325464248657], [0.07262855768203735, 0.012507054954767227, 0.006373679265379906, 0.0017387204570695758, 0.0007541756494902074, 0.001059407601132989, 0.08048836141824722, 0.3745821416378021, 0.02480785734951496, 0.003144107526168227, 0.0016186516731977463, 0.0011833450989797711, 0.0009530069073662162, 0.000527150637935847, 0.002818639390170574, 0.0008057335508055985, 0.047790613025426865, 0.36621880531311035], [0.06753184646368027, 0.06220145896077156, 0.0031800945289433002, 0.0062868306413292885, 0.0005129282944835722, 0.0010330721270292997, 0.049070924520492554, 0.31157752871513367, 0.09144465625286102, 0.04079096019268036, 0.002983575686812401, 0.00553319975733757, 0.0013288578484207392, 0.000842440640553832, 0.00946551188826561, 0.00032272175303660333, 0.04038098827004433, 0.3055124580860138], [0.08016782253980637, 0.004825182259082794, 0.0011399653740227222, 0.003414190374314785, 0.0003800580743700266, 0.0006110760732553899, 0.03642194718122482, 0.3923160135746002, 0.040267955511808395, 0.006155021488666534, 0.0022313715890049934, 0.002168677980080247, 0.002034995937719941, 0.0004975196206942201, 0.010760994628071785, 0.0004854794533457607, 0.031164053827524185, 0.3849576711654663], [0.12829412519931793, 0.0016617155633866787, 0.00037267582956701517, 0.002270685276016593, 0.002546022878959775, 0.001191534916870296, 0.040822286158800125, 0.36031031608581543, 0.018180273473262787, 0.011383489705622196, 0.0027769736479967833, 0.0043859356082975864, 0.006665499415248632, 0.000881363928783685, 0.008818372152745724, 0.0017115832306444645, 0.052457887679338455, 0.35526928305625916], [0.09683002531528473, 0.007237708196043968, 0.0009576834854669869, 0.008112862706184387, 0.0015764209674671292, 0.0005587349296547472, 0.03140054643154144, 0.34358593821525574, 0.02456439845263958, 0.013659193180501461, 0.007203185465186834, 0.005403862800449133, 0.014178652316331863, 0.0018774939235299826, 0.040627479553222656, 0.00403830548748374, 0.058709125965833664, 0.33947837352752686], [0.022466719150543213, 0.0038489210419356823, 0.0006840115529485047, 0.001006406033411622, 0.0008322288049384952, 0.00043541716877371073, 0.055190104991197586, 0.38812902569770813, 0.007747527677565813, 0.0018926687771454453, 0.0007352126413024962, 0.0016117851482704282, 0.0008284255745820701, 0.001340394839644432, 0.029389701783657074, 0.0025018001906573772, 0.09635099023580551, 0.3850085139274597], [0.19707700610160828, 0.0041472720913589, 0.0006086649373173714, 0.003181845648214221, 0.0007363345939666033, 0.0003686634008772671, 0.036989904940128326, 0.23720408976078033, 0.016532069072127342, 0.012216661125421524, 0.00442617479711771, 0.009875334799289703, 0.0036280560307204723, 0.0016810866072773933, 0.12358931452035904, 0.0028464964125305414, 0.10993994027376175, 0.23495112359523773], [0.0523831732571125, 0.0016676605446264148, 0.0003061624593101442, 0.0011603268794715405, 0.000717030605301261, 0.00036804843693971634, 0.04830221086740494, 0.3287089765071869, 0.003216506913304329, 0.002716694725677371, 0.0005357938935048878, 0.002499246969819069, 0.0023334966972470284, 0.0015305780107155442, 0.012435974553227425, 0.005725139752030373, 0.20750759541988373, 0.32788538932800293], [0.07543500512838364, 0.005652903113514185, 0.0019112129230052233, 0.0020897637587040663, 0.001025223871693015, 0.002559832762926817, 0.06765742599964142, 0.26377204060554504, 0.024370532482862473, 0.008103551343083382, 0.006087286863476038, 0.004779611248522997, 0.006153743714094162, 0.005165905226022005, 0.018710704520344734, 0.006966068875044584, 0.23787154257297516, 0.26168766617774963], [0.06826996058225632, 0.020447373390197754, 0.011460437439382076, 0.008358090184628963, 0.0040671019814908504, 0.004934827331453562, 0.016078239306807518, 0.3976481258869171, 0.020546937361359596, 0.007995812222361565, 0.006564078852534294, 0.004868591204285622, 0.00578113179653883, 0.004315556492656469, 0.005293304566293955, 0.0044697909615933895, 0.019407371059060097, 0.38949334621429443]], [[0.020141510292887688, 0.006565316580235958, 0.004207630641758442, 0.002126897918060422, 0.003274453803896904, 0.0026621920987963676, 0.007464031223207712, 0.31695839762687683, 0.09821376204490662, 0.03765493631362915, 0.028368327766656876, 0.036863457411527634, 0.02210068888962269, 0.024379009380936623, 0.014807223342359066, 0.028924470767378807, 0.03460773453116417, 0.31068000197410583], [0.025371618568897247, 0.09177588671445847, 0.05258125066757202, 0.09308483451604843, 0.04820286110043526, 0.024668799713253975, 0.21716324985027313, 0.17693442106246948, 0.013776428066194057, 0.022533388808369637, 0.001265927916392684, 0.00448725325986743, 0.00718033267185092, 0.007054505404084921, 0.008873782120645046, 0.0043689049780368805, 0.0261157788336277, 0.1745607703924179], [0.03572499006986618, 0.05165848508477211, 0.0029108088929206133, 0.008675258606672287, 0.015718471258878708, 0.06690772622823715, 0.12491336464881897, 0.33057132363319397, 0.004339014645665884, 0.0032792463898658752, 0.00038063095416873693, 0.0026977804955095053, 0.0031447832006961107, 0.005318835377693176, 0.0018429418560117483, 0.003942933864891529, 0.012692214921116829, 0.32528120279312134], [0.04176698625087738, 0.044883813709020615, 0.01571602001786232, 0.03222804516553879, 0.03920526057481766, 0.18301238119602203, 0.47236865758895874, 0.06427089124917984, 0.005031660199165344, 0.006284340750426054, 0.004071846604347229, 0.0013703163713216782, 0.0030688552651554346, 0.0044349669478833675, 0.0037376058753579855, 0.0035030883736908436, 0.011679047718644142, 0.06336619704961777], [0.02286192774772644, 0.04282812401652336, 0.015040706843137741, 0.019236823543906212, 0.07604530453681946, 0.16130472719669342, 0.14934960007667542, 0.24525736272335052, 0.008641641587018967, 0.0038338371086865664, 0.000722339900676161, 0.00556337321177125, 0.000558264902792871, 0.00030140698072500527, 0.0005007225554436445, 0.0006281818496063352, 0.005004263482987881, 0.2423214465379715], [0.032990820705890656, 0.031429048627614975, 0.10449822247028351, 0.0132970055565238, 0.10201237350702286, 0.006762251257896423, 0.14207777380943298, 0.2635473906993866, 0.0022240872494876385, 0.0014533697394654155, 0.0021020928397774696, 0.004615461453795433, 0.008457505144178867, 0.00837631244212389, 0.0018702098168432713, 0.01104077510535717, 0.0031756777316331863, 0.26006972789764404], [0.02126018889248371, 0.023271098732948303, 0.019215857610106468, 0.008188173174858093, 0.022374015301465988, 0.008936412632465363, 0.04776572436094284, 0.39921921491622925, 0.004903240595012903, 0.004226452670991421, 0.0046014245599508286, 0.00851240660995245, 0.00769056985154748, 0.0065331291407346725, 0.00350148044526577, 0.008838360197842121, 0.005472950171679258, 0.39548927545547485], [0.0034131810534745455, 0.0047414470463991165, 0.007066689431667328, 0.0011095516383647919, 0.005345670506358147, 0.002908592112362385, 0.0051202354952692986, 0.4675405025482178, 0.004717353265732527, 0.003647690871730447, 0.0007515105535276234, 0.0037448368966579437, 0.001769709400832653, 0.0034505126532167196, 0.0019213733030483127, 0.012092421762645245, 0.00932392943650484, 0.46133479475975037], [0.034139636904001236, 0.003579389536753297, 0.002981185680255294, 0.0013126339763402939, 0.004044013097882271, 0.0008440596866421402, 0.015337315388023853, 0.1866409182548523, 0.051048025488853455, 0.07675610482692719, 0.08904615044593811, 0.06590723246335983, 0.03588072210550308, 0.011990522965788841, 0.02911129780113697, 0.014247621409595013, 0.19393259286880493, 0.18320056796073914], [0.01200922206044197, 0.007315611932426691, 0.002290295669808984, 0.00022065294615458697, 0.0005864644190296531, 0.0003481410094536841, 0.005352117586880922, 0.07352093607187271, 0.04937814921140671, 0.017155392095446587, 0.10945514589548111, 0.04247373715043068, 0.14243987202644348, 0.14120957255363464, 0.10630348324775696, 0.09059969335794449, 0.12698805332183838, 0.07235342264175415], [0.04170354828238487, 0.0021694814786314964, 0.0001864584774011746, 0.003791545983403921, 0.0005967507604509592, 0.004289273172616959, 0.0037424659822136164, 0.12452544271945953, 0.08826963603496552, 0.015545960515737534, 0.04474636912345886, 0.0648350939154625, 0.05826639384031296, 0.009226689115166664, 0.2114858478307724, 0.008747175335884094, 0.1944916546344757, 0.12338028103113174], [0.026665525510907173, 0.003968629986047745, 0.0015740118687972426, 0.0023654329124838114, 0.002583914902061224, 0.0034999046474695206, 0.009303069673478603, 0.14439719915390015, 0.011911275796592236, 0.020346565172076225, 0.045237064361572266, 0.026573676615953445, 0.03149270638823509, 0.00615291902795434, 0.05674324929714203, 0.010638552717864513, 0.45341336727142334, 0.14313296973705292], [0.06311667710542679, 0.0017305677756667137, 0.0016944798408076167, 0.004366558976471424, 0.0003068452642764896, 0.0028732172213494778, 0.0021093240939080715, 0.09476214647293091, 0.009887542575597763, 0.009683914482593536, 0.010128878988325596, 0.014105388894677162, 0.013371778652071953, 0.014900739304721355, 0.47117525339126587, 0.04375205561518669, 0.1477712094783783, 0.09426335990428925], [0.03007378801703453, 0.0025666221044957638, 0.009909206070005894, 0.0006925056804902852, 0.00047518612700514495, 0.005416426341980696, 0.0024724320974200964, 0.2180163860321045, 0.005040721967816353, 0.006376037374138832, 0.003909578081220388, 0.01622779294848442, 0.04837613180279732, 0.0021826066076755524, 0.10169214010238647, 0.023851264268159866, 0.3071678876876831, 0.21555334329605103], [0.04479151591658592, 0.003817690769210458, 0.001428892370313406, 0.0030994494445621967, 0.0026991888880729675, 0.002947963774204254, 0.004655490163713694, 0.1925891488790512, 0.01322907954454422, 0.012164182029664516, 0.008762960322201252, 0.02495095506310463, 0.01681419648230076, 0.01832973025739193, 0.08157441020011902, 0.03457252308726311, 0.34358924627304077, 0.1899832934141159], [0.022832036018371582, 0.00187500414904207, 0.0057416800409555435, 0.0008530499180778861, 0.0007688312325626612, 0.0029075259808450937, 0.0042299916967749596, 0.2941924035549164, 0.017865777015686035, 0.00414644181728363, 0.0020214177202433348, 0.0048175775445997715, 0.039320092648267746, 0.008785085752606392, 0.13958673179149628, 0.007571267895400524, 0.15246453881263733, 0.29002055525779724], [0.012914114631712437, 0.0017943507991731167, 0.0018045235192403197, 0.0010831820545718074, 0.0024361812975257635, 0.0009164638468064368, 0.006027135066688061, 0.35107436776161194, 0.04032545164227486, 0.01603207364678383, 0.008637531660497189, 0.008739348500967026, 0.011677093803882599, 0.026822632178664207, 0.016786087304353714, 0.08271589875221252, 0.06744562834501266, 0.34276795387268066], [0.003395186271518469, 0.004748899023979902, 0.0071097067557275295, 0.0011134351370856166, 0.005413369741290808, 0.0029241146985441446, 0.005112327169626951, 0.46775397658348083, 0.004621786065399647, 0.003560711396858096, 0.0007300759316422045, 0.003674483159556985, 0.0017301113111898303, 0.0034168714191764593, 0.0018941605230793357, 0.012045581825077534, 0.00924371462315321, 0.4615115523338318]], [[0.005907149985432625, 0.00998100358992815, 0.008991045877337456, 0.0013616308569908142, 0.0028967619873583317, 0.0015482140006497502, 0.007891824468970299, 0.26571032404899597, 0.013509665615856647, 0.06907281279563904, 0.05297338217496872, 0.014679166488349438, 0.05626147612929344, 0.05033043399453163, 0.042042847722768784, 0.06240195408463478, 0.07357902824878693, 0.2608613073825836], [0.009729049168527126, 0.021692069247364998, 0.5888610482215881, 0.02303321473300457, 0.01305537298321724, 0.013076758943498135, 0.041023921221494675, 0.1156020313501358, 0.0010230415500700474, 0.012338025495409966, 0.00383241125382483, 0.005280552431941032, 0.006488656159490347, 0.002319471212103963, 0.006686103530228138, 0.008493498899042606, 0.013785638846457005, 0.11367909610271454], [0.0031496556475758553, 0.009324857965111732, 0.03876443952322006, 0.005001407116651535, 0.008807268925011158, 0.005087022669613361, 0.01291347574442625, 0.4570605754852295, 0.00047002313658595085, 0.0013595225755125284, 0.0010146813001483679, 0.0005565679166465998, 0.0013475817395374179, 0.0007502908119931817, 0.001661317190155387, 0.004043942783027887, 0.003373349318280816, 0.4453140199184418], [0.017646273598074913, 0.10965266823768616, 0.26903390884399414, 0.014843774959445, 0.009996161796152592, 0.11843312531709671, 0.04387347772717476, 0.13498534262180328, 0.009582585655152798, 0.04772726446390152, 0.0028014504350721836, 0.002414959715679288, 0.010374379344284534, 0.032102711498737335, 0.005058723036199808, 0.030662477016448975, 0.008140414021909237, 0.13267022371292114], [0.014795072376728058, 0.018252843990921974, 0.03532279282808304, 0.02829003892838955, 0.02180507592856884, 0.05143715441226959, 0.03553308919072151, 0.36556729674339294, 0.0025972474832087755, 0.005873288027942181, 0.002094919327646494, 0.00473110331222415, 0.01935897022485733, 0.010419444181025028, 0.003481553867459297, 0.014393042773008347, 0.005895985756069422, 0.3601510226726532], [0.02256283536553383, 0.0618680864572525, 0.1069200336933136, 0.05870482698082924, 0.10253174602985382, 0.00831032544374466, 0.030924707651138306, 0.2650090754032135, 0.004909209907054901, 0.020271342247724533, 0.007574395276606083, 0.0030195864383131266, 0.022174933925271034, 0.003321415511891246, 0.006352327764034271, 0.01051604188978672, 0.006772973109036684, 0.258256196975708], [0.018133442848920822, 0.0737743228673935, 0.051535047590732574, 0.03906116262078285, 0.02581619657576084, 0.03257466107606888, 0.03565209358930588, 0.2806246280670166, 0.021604301407933235, 0.02484174259006977, 0.016756922006607056, 0.024444788694381714, 0.021121857687830925, 0.011892426759004593, 0.015019065700471401, 0.019219422712922096, 0.01122327707707882, 0.2767045199871063], [0.0019067939138039947, 0.0024070078507065773, 0.007254293188452721, 0.0026939876843243837, 0.0013598272344097495, 0.0024740085937082767, 0.0033445190638303757, 0.4643879234790802, 0.0016362355090677738, 0.0024735780898481607, 0.004645160865038633, 0.002338931430131197, 0.00609026150777936, 0.01178396213799715, 0.003956760745495558, 0.02165490761399269, 0.00516405189409852, 0.4544277489185333], [0.005493118893355131, 0.008504404686391354, 0.010530941188335419, 0.02012590877711773, 0.009383227676153183, 0.006955153774470091, 0.004285901319235563, 0.22740109264850616, 0.027987414970993996, 0.04069986566901207, 0.22448322176933289, 0.07017853856086731, 0.06025339663028717, 0.007918613031506538, 0.02092825248837471, 0.022248825058341026, 0.00944769848138094, 0.22317443788051605], [0.005750542506575584, 0.01598355919122696, 0.7010908722877502, 0.0007085585966706276, 0.000353155133780092, 0.009864225052297115, 0.010778438299894333, 0.040777452290058136, 0.0060541038401424885, 0.10381685942411423, 0.0036319722421467304, 0.0023072364274412394, 0.004554798826575279, 0.017540423199534416, 0.0029919855296611786, 0.02138475514948368, 0.012702840380370617, 0.03970814496278763], [0.010637310333549976, 0.007185822352766991, 0.002746300073340535, 0.001458709710277617, 0.0014047451550140977, 0.0032445259857922792, 0.007086767349392176, 0.15535520017147064, 0.004649404436349869, 0.013811490498483181, 0.0035920068621635437, 0.014509936794638634, 0.41200143098831177, 0.020543456077575684, 0.01020672544836998, 0.16524247825145721, 0.014278393238782883, 0.152045339345932], [0.01245045941323042, 0.010638720355927944, 0.006160269025713205, 0.004447157494723797, 0.011670194566249847, 0.004313299898058176, 0.007393580861389637, 0.21559453010559082, 0.005469965282827616, 0.01505280751734972, 0.02965761534869671, 0.009742528200149536, 0.10272278636693954, 0.059713467955589294, 0.027763064950704575, 0.24893559515476227, 0.016268938779830933, 0.21200501918792725], [0.11776246130466461, 0.02526560053229332, 0.009783141314983368, 0.0024342115502804518, 0.0011497261002659798, 0.008603823371231556, 0.051161494106054306, 0.11877205967903137, 0.014821021817624569, 0.014748787507414818, 0.007952757179737091, 0.0054958174005150795, 0.009077288210391998, 0.25391969084739685, 0.07987137883901596, 0.06055474281311035, 0.10193227231502533, 0.11669377237558365], [0.0067725833505392075, 0.003461252199485898, 0.011317862197756767, 0.001045660232193768, 0.0006894575199112296, 0.00034240493550896645, 0.005217781290411949, 0.40158161520957947, 0.0008068974129855633, 0.003602755954489112, 0.0007752004894427955, 0.00032797991298139095, 0.01567116752266884, 0.015080279670655727, 0.010240178555250168, 0.1164453774690628, 0.013893409632146358, 0.39272817969322205], [0.0073055243119597435, 0.0036758228670805693, 0.008338946849107742, 0.0009274752228520811, 0.0018520117737352848, 0.0021689103450626135, 0.0055369115434587, 0.1220623105764389, 0.002686082851141691, 0.007770322263240814, 0.002531560603529215, 0.0042187063954770565, 0.09051483869552612, 0.09235949069261551, 0.018151886761188507, 0.4927971661090851, 0.01663796789944172, 0.120464026927948], [0.0354108102619648, 0.014757677912712097, 0.056680381298065186, 0.002862538443878293, 0.0006819570553489029, 0.0016362012829631567, 0.014693628996610641, 0.2872825562953949, 0.0027866919990628958, 0.025356434285640717, 0.004346715286374092, 0.0009957851143553853, 0.0018857319373637438, 0.14692862331867218, 0.03770308569073677, 0.04776805639266968, 0.03451206162571907, 0.2837110757827759], [0.013927056454122066, 0.021763939410448074, 0.013860363513231277, 0.008383020758628845, 0.005323117598891258, 0.00708086509257555, 0.01081193145364523, 0.21264903247356415, 0.0691007524728775, 0.07230902463197708, 0.045368265360593796, 0.04167085140943527, 0.07515963912010193, 0.047842249274253845, 0.04183681309223175, 0.07179680466651917, 0.032053060829639435, 0.20906326174736023], [0.0019133841851726174, 0.002422854769974947, 0.007215257268399, 0.0027064792811870575, 0.0013572538737207651, 0.0024694493040442467, 0.003365193260833621, 0.46454131603240967, 0.0016242280835285783, 0.002451953710988164, 0.004590810742229223, 0.002309846691787243, 0.006097760517150164, 0.011676007881760597, 0.003919933456927538, 0.02162957563996315, 0.005140390712767839, 0.4545683264732361]], [[0.023929104208946228, 0.005574812181293964, 0.006079287733882666, 0.03116774559020996, 0.009885412640869617, 0.04010802134871483, 0.014603639952838421, 0.15932337939739227, 0.10216107219457626, 0.04099278524518013, 0.23679928481578827, 0.04176020249724388, 0.018968401476740837, 0.003943003248423338, 0.0035463992971926928, 0.0028137429617345333, 0.1029004380106926, 0.15544331073760986], [0.01861504837870598, 0.029260100796818733, 0.059565428644418716, 0.1837323158979416, 0.026589179411530495, 0.3219969868659973, 0.1293502002954483, 0.017841340973973274, 0.017761053517460823, 0.013959445990622044, 0.046579957008361816, 0.017473887652158737, 0.016712622717022896, 0.006136730313301086, 0.0022173379547894, 0.005742447450757027, 0.06894559413194656, 0.017520392313599586], [0.036280449479818344, 0.06792660802602768, 0.22320687770843506, 0.15526987612247467, 0.043522387742996216, 0.08230850100517273, 0.130107119679451, 0.026386167854070663, 0.028862906619906425, 0.020655430853366852, 0.023864051327109337, 0.007931037805974483, 0.013690046966075897, 0.022340994328260422, 0.01339407917112112, 0.015692340210080147, 0.06274120509624481, 0.025819862261414528], [0.06874656677246094, 0.07422599196434021, 0.04092711955308914, 0.17071488499641418, 0.017355110496282578, 0.17766672372817993, 0.14659486711025238, 0.054015181958675385, 0.04064846411347389, 0.018986700102686882, 0.023891231045126915, 0.009710404090583324, 0.017535267397761345, 0.0013201633701100945, 0.00240167323499918, 0.0017311739502474666, 0.08024248480796814, 0.05328598618507385], [0.06727346777915955, 0.014405517838895321, 0.01536508183926344, 0.08282887935638428, 0.005333570763468742, 0.08472380042076111, 0.06736737489700317, 0.2750081419944763, 0.02084076963365078, 0.004736579954624176, 0.02010718360543251, 0.017628328874707222, 0.006231005769222975, 0.00043677203939296305, 0.0020267204381525517, 0.0006065754569135606, 0.045006051659584045, 0.27007415890693665], [0.07877794653177261, 0.03021324798464775, 0.026895742863416672, 0.2550457715988159, 0.04245547577738762, 0.07965133339166641, 0.14178597927093506, 0.09627051651477814, 0.040308550000190735, 0.004122202750295401, 0.02762686461210251, 0.0054067932069301605, 0.005758601240813732, 0.003525222884491086, 0.008134299889206886, 0.0025386724155396223, 0.05726998299360275, 0.09421279281377792], [0.030644025653600693, 0.054892756044864655, 0.01080395933240652, 0.21909171342849731, 0.06595313549041748, 0.06271582096815109, 0.06225820258259773, 0.15384747087955475, 0.04676837846636772, 0.009743992239236832, 0.04330011084675789, 0.011978561989963055, 0.0042522200383245945, 0.0012610682751983404, 0.0023272321559488773, 0.0007216290105134249, 0.06839742511510849, 0.15104228258132935], [0.0007713225786574185, 0.0007338574505411088, 0.0009129350655712187, 0.00035363464849069715, 0.0004095361800864339, 0.00011931703920708969, 0.00042453562491573393, 0.5021253824234009, 0.0006139689940027893, 0.0003585021768230945, 0.0003878324059769511, 0.0005110232159495354, 0.00034517431049607694, 0.0001987598225241527, 0.0004347130306996405, 0.00021045921312179416, 0.0005918697570450604, 0.4904971420764923], [0.02563907951116562, 0.009976995177567005, 0.008234388194978237, 0.1377711445093155, 0.03520228713750839, 0.1033235490322113, 0.12908978760242462, 0.13836243748664856, 0.014415400102734566, 0.006750768516212702, 0.07182610034942627, 0.030743490904569626, 0.009394648484885693, 0.0008712569833733141, 0.0033702608197927475, 0.001211870345287025, 0.13856609165668488, 0.13525046408176422], [0.01583108864724636, 0.03373080864548683, 0.0927928164601326, 0.10659156739711761, 0.04722478240728378, 0.06854202598333359, 0.10906989127397537, 0.009425587020814419, 0.08969058096408844, 0.04192640259861946, 0.08554688841104507, 0.034246817231178284, 0.11946669220924377, 0.013123736716806889, 0.008691119030117989, 0.023459091782569885, 0.09141787886619568, 0.009222300723195076], [0.04306735098361969, 0.017329126596450806, 0.00911541748791933, 0.06540731340646744, 0.013034176081418991, 0.10959096997976303, 0.05086269602179527, 0.06082818657159805, 0.21154922246932983, 0.09233441948890686, 0.12282950431108475, 0.03091893531382084, 0.016964897513389587, 0.0003026722406502813, 0.007553212344646454, 0.00023822196817491204, 0.08818651735782623, 0.05988714098930359], [0.025939809158444405, 0.003888464765623212, 0.012787500396370888, 0.032721105962991714, 0.0045832740142941475, 0.07685735821723938, 0.01666761003434658, 0.21784165501594543, 0.25849100947380066, 0.00551107432693243, 0.05947316065430641, 0.00696472218260169, 0.015939101576805115, 0.00027524831239134073, 0.0031001765746623278, 0.0003250647569075227, 0.044139329344034195, 0.2144944816827774], [0.03028751164674759, 0.02293332666158676, 0.027447020635008812, 0.018862342461943626, 0.04023170843720436, 0.04260096698999405, 0.025353997945785522, 0.10830459743738174, 0.09273838996887207, 0.08844339102506638, 0.052929461002349854, 0.13676899671554565, 0.12514401972293854, 0.003486224915832281, 0.03066549450159073, 0.0028344355523586273, 0.044121287763118744, 0.10684673488140106], [0.1339784562587738, 0.011300736106932163, 0.008617333136498928, 0.02654220350086689, 0.02178250439465046, 0.029832804575562477, 0.04779254272580147, 0.11363888531923294, 0.04916718602180481, 0.027559684589505196, 0.033997952938079834, 0.03066246025264263, 0.19994965195655823, 0.02732275053858757, 0.05054302141070366, 0.013901778496801853, 0.06191456690430641, 0.1114954948425293], [0.03259282931685448, 0.015643108636140823, 0.013202974572777748, 0.056499820202589035, 0.01971968077123165, 0.09064007550477982, 0.04331926256418228, 0.10539422929286957, 0.06808876246213913, 0.04102012515068054, 0.08926734328269958, 0.11597415059804916, 0.12380451709032059, 0.004591961856931448, 0.01157948188483715, 0.004012157674878836, 0.0609784796833992, 0.10367100685834885], [0.07522633671760559, 0.022100966423749924, 0.01197951938956976, 0.04137016087770462, 0.031161483377218246, 0.03393331170082092, 0.0498877577483654, 0.14751765131950378, 0.02742411382496357, 0.024691924452781677, 0.035686105489730835, 0.031290192157030106, 0.1955835521221161, 0.014661186374723911, 0.05540918931365013, 0.004772119224071503, 0.052515432238578796, 0.14478899538516998], [0.027347221970558167, 0.05383768677711487, 0.009148738346993923, 0.17304958403110504, 0.0636356770992279, 0.04727370664477348, 0.05161852017045021, 0.12436186522245407, 0.08536282926797867, 0.016117116436362267, 0.07610929757356644, 0.023591376841068268, 0.00921639334410429, 0.0014859052607789636, 0.0031620082445442677, 0.0010226257145404816, 0.11169832199811935, 0.12196105718612671], [0.0007738046115264297, 0.0007352015818469226, 0.0009124922216869891, 0.0003543598868418485, 0.00041154262726195157, 0.00011949414329137653, 0.00042912320350296795, 0.5021130442619324, 0.0006129780085757375, 0.00035738907172344625, 0.000386492203688249, 0.0005117555847391486, 0.00034746932215057313, 0.00019759140559472144, 0.0004348427173681557, 0.0002105892781401053, 0.0005929534672759473, 0.4904989004135132]], [[0.006878724787384272, 0.026999149471521378, 0.009585677646100521, 0.013490633107721806, 0.030200019478797913, 0.02145296335220337, 0.10425040125846863, 0.21331821382045746, 0.01904897578060627, 0.02000477723777294, 0.01213878020644188, 0.023896709084510803, 0.019027909263968468, 0.02111613191664219, 0.005674741230905056, 0.016414040699601173, 0.224401593208313, 0.2121005803346634], [0.07299105823040009, 0.06486918032169342, 0.03521587699651718, 0.03831959143280983, 0.022743461653590202, 0.006452356930822134, 0.12377119809389114, 0.13665874302387238, 0.061504025012254715, 0.037690285593271255, 0.023552794009447098, 0.025345081463456154, 0.03598649427294731, 0.020828235894441605, 0.022379092872142792, 0.020084848627448082, 0.11606606841087341, 0.1355416178703308], [0.1282862424850464, 0.02995789609849453, 0.04647700488567352, 0.008113696239888668, 0.001349233789369464, 0.019955959171056747, 0.0671253576874733, 0.26752081513404846, 0.006941555999219418, 0.02219969965517521, 0.005633849184960127, 0.004211569670587778, 0.013881880789995193, 0.03521718084812164, 0.005109495483338833, 0.020810890942811966, 0.05493339151144028, 0.2622743248939514], [0.028139948844909668, 0.03759507089853287, 0.00957005936652422, 0.02608197182416916, 0.009737850166857243, 0.0179709754884243, 0.13338279724121094, 0.20372986793518066, 0.036578647792339325, 0.040291521698236465, 0.06501901894807816, 0.01635025069117546, 0.04032127186655998, 0.007316004019230604, 0.027048222720623016, 0.011552434414625168, 0.09004366397857666, 0.19927041232585907], [0.01605028286576271, 0.017629029229283333, 0.005071824416518211, 0.02154316008090973, 0.0007997513166628778, 0.01656569354236126, 0.05959472805261612, 0.3456140160560608, 0.028454413637518883, 0.012779691256582737, 0.01751059852540493, 0.01795830950140953, 0.018072819337248802, 0.0019014535937458277, 0.014573026448488235, 0.004879575222730637, 0.0632525160908699, 0.33774909377098083], [0.02116170898079872, 0.024446694180369377, 0.024733826518058777, 0.041584573686122894, 0.010942154563963413, 0.007800463121384382, 0.05368797481060028, 0.24869391322135925, 0.00961764995008707, 0.008699950762093067, 0.046817511320114136, 0.021167879924178123, 0.1310552954673767, 0.02225840464234352, 0.007786093279719353, 0.023734521120786667, 0.05213404819369316, 0.24367722868919373], [0.011378748342394829, 0.03530550003051758, 0.010206175968050957, 0.02973896637558937, 0.01361855212599039, 0.020060574635863304, 0.18925468623638153, 0.22235986590385437, 0.030837878584861755, 0.007314636837691069, 0.005025214981287718, 0.015537056140601635, 0.00506926141679287, 0.0027035358361899853, 0.0034148201812058687, 0.003684834809973836, 0.1749967634677887, 0.2194928675889969], [0.0045479172840714455, 0.0008620181470178068, 0.0010397828882560134, 0.0017421027878299356, 0.0015476307598873973, 0.0008731813868507743, 0.010938096791505814, 0.4839063882827759, 0.0021055766846984625, 0.00031822986784391105, 0.0004988462314940989, 0.001821866724640131, 0.0005227220244705677, 0.0005428817821666598, 0.0012501974124461412, 0.0004998519434593618, 0.012719674035906792, 0.47426310181617737], [0.011075270362198353, 0.022011881694197655, 0.02005341835319996, 0.028808141127228737, 0.005288480781018734, 0.025278739631175995, 0.06754565238952637, 0.3217301070690155, 0.005747434217482805, 0.015818046405911446, 0.015933988615870476, 0.011675376445055008, 0.009718621149659157, 0.00805689301341772, 0.00744788208976388, 0.0067467945627868176, 0.10150220990180969, 0.3155611455440521], [0.12283845990896225, 0.03395971283316612, 0.07465019822120667, 0.031526971608400345, 0.010828310623764992, 0.006370220333337784, 0.08878742903470993, 0.17144407331943512, 0.03343994542956352, 0.00858550425618887, 0.020062463358044624, 0.01330328918993473, 0.045730553567409515, 0.02804098092019558, 0.020044077187776566, 0.015798885375261307, 0.1047930121421814, 0.1697959154844284], [0.015693817287683487, 0.02230065129697323, 0.01014333963394165, 0.033437345176935196, 0.010472382418811321, 0.052718888968229294, 0.06429550796747208, 0.3355485200881958, 0.007989543490111828, 0.015487723983824253, 0.002116457326337695, 0.01014786772429943, 0.015541269443929195, 0.0033039466943591833, 0.00784289836883545, 0.0026136506348848343, 0.0614263191819191, 0.3289198875427246], [0.017189133912324905, 0.018185686320066452, 0.009044802747666836, 0.0372760146856308, 0.02968277409672737, 0.04832229018211365, 0.034379564225673676, 0.3238956332206726, 0.013590581715106964, 0.002934448653832078, 0.028449539095163345, 0.006979215424507856, 0.04921586066484451, 0.004869156051427126, 0.010130451060831547, 0.0059088896960020065, 0.04330558329820633, 0.31664034724235535], [0.03515470027923584, 0.012679834850132465, 0.004741883836686611, 0.018560385331511497, 0.008552244864404202, 0.09447944164276123, 0.01938215270638466, 0.32700127363204956, 0.012990760616958141, 0.030013374984264374, 0.012916946783661842, 0.029718974605202675, 0.0031225658021867275, 0.01268808078020811, 0.023766152560710907, 0.017461493611335754, 0.01584644988179207, 0.3209232985973358], [0.07601515203714371, 0.00803692452609539, 0.05469117313623428, 0.010522366501390934, 0.001917841611430049, 0.03606509044766426, 0.019736692309379578, 0.35914313793182373, 0.0034069449175149202, 0.0053794714622199535, 0.0011755432933568954, 0.005396371707320213, 0.0170926321297884, 0.0061318217776715755, 0.005335015244781971, 0.006658115889877081, 0.0308228749781847, 0.35247287154197693], [0.025526126846671104, 0.011528179980814457, 0.01172284223139286, 0.03683984652161598, 0.009365119971334934, 0.0313178151845932, 0.031116537749767303, 0.32139211893081665, 0.022566387429833412, 0.00912583526223898, 0.009298744611442089, 0.020709646865725517, 0.07822265475988388, 0.0094671081751585, 0.01205877773463726, 0.011011491529643536, 0.03374643996357918, 0.31498435139656067], [0.10894758999347687, 0.008482926525175571, 0.09056515991687775, 0.01424167025834322, 0.0038619947154074907, 0.010868899524211884, 0.028050867840647697, 0.32218390703201294, 0.0030620808247476816, 0.004148047883063555, 0.003138713538646698, 0.003912295214831829, 0.028548968955874443, 0.008921737782657146, 0.014322715811431408, 0.0018598586320877075, 0.02933013066649437, 0.3155524730682373], [0.015179849229753017, 0.027886826545000076, 0.010275972075760365, 0.02450818009674549, 0.014098240993916988, 0.016634732484817505, 0.16027897596359253, 0.22274410724639893, 0.045589644461870193, 0.00831490196287632, 0.007816152647137642, 0.021968690678477287, 0.005705620627850294, 0.00418913783505559, 0.005923012271523476, 0.0048799761570990086, 0.1837804913520813, 0.22022555768489838], [0.00456100283190608, 0.0008620642474852502, 0.001039374154061079, 0.0017463804688304663, 0.0015395432710647583, 0.0008758173207752407, 0.010920820757746696, 0.48398444056510925, 0.002099204808473587, 0.00031740317353978753, 0.0004975793417543173, 0.0018148445524275303, 0.0005243850173428655, 0.0005381349474191666, 0.0012495300034061074, 0.0004992943722754717, 0.012646576389670372, 0.47428351640701294]]], [[[0.03322302922606468, 0.00576139148324728, 0.010215260088443756, 0.008125592954456806, 0.01671169139444828, 0.008071644231677055, 0.004845234099775553, 0.03086560033261776, 0.10970155149698257, 0.1080237478017807, 0.04796259477734566, 0.04371480643749237, 0.03170818090438843, 0.1333511471748352, 0.03658445551991463, 0.1413136124610901, 0.1990274041891098, 0.03079293482005596], [0.0011863986728712916, 0.0732053741812706, 0.07613783329725266, 0.16484306752681732, 0.08885551244020462, 0.0810604989528656, 0.3186812102794647, 0.06113724038004875, 0.005223269108682871, 0.007011053152382374, 0.004193974193185568, 0.004751640371978283, 0.005226594861596823, 0.008720467798411846, 0.009187824092805386, 0.00692512933164835, 0.022717436775565147, 0.060935456305742264], [0.0014782692305743694, 0.08324021100997925, 0.0071272351779043674, 0.06928722560405731, 0.03152221813797951, 0.10460978001356125, 0.18348900973796844, 0.23656560480594635, 0.007815810851752758, 0.003947611432522535, 0.002334528136998415, 0.0021072907838970423, 0.004332428798079491, 0.003294704481959343, 0.004963498562574387, 0.0016049827681854367, 0.016493404284119606, 0.23578612506389618], [0.0018851726781576872, 0.23458144068717957, 0.04099798575043678, 0.06927605718374252, 0.06988931447267532, 0.10171174257993698, 0.22451373934745789, 0.09455271065235138, 0.00786865409463644, 0.00865838024765253, 0.011486959643661976, 0.003607191378250718, 0.0070387921296060085, 0.0030820006504654884, 0.007350025698542595, 0.0031935004517436028, 0.015972653403878212, 0.09433366358280182], [0.0013462683418765664, 0.12197022885084152, 0.0378616601228714, 0.13714534044265747, 0.04329022765159607, 0.09126920998096466, 0.12933661043643951, 0.19881847500801086, 0.008961775340139866, 0.004766496829688549, 0.00422046659514308, 0.0054016378708183765, 0.0022168552968651056, 0.0010655472287908196, 0.0033472205977886915, 0.0013575527118518949, 0.009518207050859928, 0.19810621440410614], [0.0008512724307365716, 0.0929633155465126, 0.0926482081413269, 0.14422760903835297, 0.04142884537577629, 0.01425248384475708, 0.13873246312141418, 0.22311444580554962, 0.0030781629029661417, 0.0030723295640200377, 0.005029106047004461, 0.0011476926738396287, 0.003902037627995014, 0.002412504516541958, 0.0031724777072668076, 0.0017474356573075056, 0.0057990094646811485, 0.2224205881357193], [0.0024105331394821405, 0.10721666365861893, 0.1343681812286377, 0.15598462522029877, 0.1006312444806099, 0.07755022495985031, 0.07394599914550781, 0.14843986928462982, 0.010575760155916214, 0.009027787484228611, 0.0021516024135053158, 0.0034335211385041475, 0.003517983015626669, 0.0035504938568919897, 0.0030162178445607424, 0.004279742948710918, 0.011881677433848381, 0.14801791310310364], [0.0005476450314745307, 0.0007118482608348131, 0.0004897220642305911, 0.001517082448117435, 0.0007368131773546338, 0.0011101261479780078, 0.0010940403444692492, 0.4948752224445343, 0.0008435239433310926, 0.0013338553253561258, 0.0011130900820717216, 0.0008959942497313023, 0.0009331760229542851, 0.0005736627499572933, 0.0006855054525658488, 0.0005945488810539246, 0.001246414496563375, 0.49069780111312866], [0.0059998794458806515, 0.031520090997219086, 0.012651436030864716, 0.02855454385280609, 0.024283766746520996, 0.007521628402173519, 0.05558834224939346, 0.24474209547042847, 0.01629352942109108, 0.0620591938495636, 0.027327217161655426, 0.01957150176167488, 0.013609956949949265, 0.010786594823002815, 0.02451888844370842, 0.012748600915074348, 0.15803682804107666, 0.24418599903583527], [0.08005223423242569, 0.010246933437883854, 0.004981826059520245, 0.02024245634675026, 0.007489698939025402, 0.011461229994893074, 0.03891809657216072, 0.09236892312765121, 0.1793309599161148, 0.006625715177506208, 0.06001710146665573, 0.026547448709607124, 0.04946441948413849, 0.06720175594091415, 0.04784136265516281, 0.05716104805469513, 0.1481265127658844, 0.0919223353266716], [0.023868801072239876, 0.03526593744754791, 0.00764401676133275, 0.06260623037815094, 0.016538158059120178, 0.01930011436343193, 0.030325360596179962, 0.10278085619211197, 0.1292913407087326, 0.09153055399656296, 0.015040453523397446, 0.022192951291799545, 0.045355889946222305, 0.022012438625097275, 0.03644827753305435, 0.03759637847542763, 0.19944661855697632, 0.10275562852621078], [0.06063001975417137, 0.025680603459477425, 0.008350794203579426, 0.024850547313690186, 0.02453506365418434, 0.007138413842767477, 0.0349898487329483, 0.16936343908309937, 0.09035457670688629, 0.058016952127218246, 0.04915707930922508, 0.011443084105849266, 0.03336494043469429, 0.03317711502313614, 0.03253394737839699, 0.023042302578687668, 0.14453838765621185, 0.16883283853530884], [0.015642020851373672, 0.010911433957517147, 0.0067215170711278915, 0.010598673485219479, 0.006412459071725607, 0.019120721146464348, 0.01791166327893734, 0.24135252833366394, 0.05506870523095131, 0.06032325699925423, 0.04813998565077782, 0.036411039531230927, 0.015184244140982628, 0.02561011165380478, 0.035177506506443024, 0.05645538866519928, 0.09828507155179977, 0.24067360162734985], [0.015292397700250149, 0.007464058231562376, 0.0048585133627057076, 0.005040497053414583, 0.0009916817070916295, 0.0048874723725020885, 0.011996818706393242, 0.26309260725975037, 0.05805276706814766, 0.06077450513839722, 0.042330652475357056, 0.028911801055073738, 0.040971167385578156, 0.00250330101698637, 0.04133973270654678, 0.0137472003698349, 0.1354197859764099, 0.2623250186443329], [0.01803569681942463, 0.008672364056110382, 0.004079163074493408, 0.005786711350083351, 0.0034915513824671507, 0.010068449191749096, 0.013853033073246479, 0.3612139821052551, 0.025938719511032104, 0.030857885256409645, 0.01728753186762333, 0.012299849651753902, 0.018425609916448593, 0.01037018932402134, 0.010281837545335293, 0.01306087989360094, 0.07653088867664337, 0.3597456216812134], [0.017445629462599754, 0.005351199768483639, 0.002130641369149089, 0.004464265890419483, 0.0009565642685629427, 0.004564579110592604, 0.010630468837916851, 0.2887508273124695, 0.06532794237136841, 0.04799147695302963, 0.034458309412002563, 0.024576762691140175, 0.050471462309360504, 0.008805062621831894, 0.03671199828386307, 0.006332147866487503, 0.10375313460826874, 0.287277489900589], [0.034989889711141586, 0.013388767838478088, 0.00988900475203991, 0.01381254754960537, 0.0062907845713198185, 0.005707685369998217, 0.0142442611977458, 0.2634611427783966, 0.08714257180690765, 0.04497785493731499, 0.018270904198288918, 0.026516327634453773, 0.022396288812160492, 0.025752980262041092, 0.03077726811170578, 0.02663244493305683, 0.09377899765968323, 0.26197028160095215], [0.00054739456390962, 0.0007118078647181392, 0.0004890374257229269, 0.001514336559921503, 0.0007364572957158089, 0.0011096972739323974, 0.0010934587335214019, 0.4948829710483551, 0.0008429123554378748, 0.0013302399311214685, 0.0011113409418612719, 0.0008954209624789655, 0.0009332222980447114, 0.0005733476718887687, 0.0006857124390080571, 0.0005939342663623393, 0.0012439042329788208, 0.4907047748565674]], [[0.08358187973499298, 0.019300831481814384, 0.002826751209795475, 0.0006423344020731747, 0.00023471821623388678, 0.00013794424012303352, 0.02787652239203453, 0.3326724171638489, 0.05364298075437546, 0.027363412082195282, 0.0006237946799956262, 0.002401728183031082, 0.0005029789754189551, 0.0006095069111324847, 0.00814940594136715, 0.0012933507096022367, 0.10990718752145767, 0.3282322585582733], [0.009460142813622952, 0.018626412376761436, 0.00035008121631108224, 3.1722491257824004e-05, 1.1410309525672346e-05, 8.589628851041198e-05, 0.005028627812862396, 0.4837720990180969, 0.0002419003430986777, 4.683255156123778e-06, 3.427563228797226e-07, 8.251163876593637e-07, 1.002507360681193e-05, 1.2745847016049083e-05, 7.888532309152652e-06, 9.630893146095332e-06, 0.0029636763501912355, 0.4793819785118103], [0.0009540801984257996, 0.6279464364051819, 0.0005376380868256092, 0.0004684224841184914, 0.00015300414816010743, 0.00015743014228064567, 0.00022907850507181138, 0.18303263187408447, 1.3692874745174777e-05, 6.5314306993968785e-06, 2.285603386553703e-07, 2.359467714541097e-07, 2.1960079266136745e-06, 4.327803708292777e-06, 1.971240089915227e-05, 1.338047610488502e-07, 6.235636828932911e-05, 0.18641197681427002], [0.0005647051730193198, 0.006305418908596039, 0.9611104726791382, 0.0017639086581766605, 6.213729648152366e-06, 0.0031684357672929764, 0.00015443099255207926, 0.013316682539880276, 1.022130049932457e-06, 0.0001655949599808082, 2.9278763236106897e-07, 1.6266258739960904e-07, 3.6781191425916404e-08, 1.3500722161552403e-05, 8.681508347763156e-07, 9.282465180149302e-05, 2.823873182933312e-05, 0.013307110406458378], [0.0018907515332102776, 0.009118708781898022, 0.020864304155111313, 0.9032202363014221, 0.0035882212687283754, 0.0004854200524277985, 0.0030846174340695143, 0.029127955436706543, 2.6195639293291606e-05, 1.7467382349423133e-06, 8.872614671417978e-06, 1.1934757822018582e-06, 4.734949925477849e-06, 7.912061846582219e-06, 3.624522264544794e-07, 8.424474799539894e-06, 0.00026101042749360204, 0.028299307450652122], [0.0009143414790742099, 0.006125332787632942, 0.0008170264773070812, 0.21664394438266754, 0.582625150680542, 0.0008532318170182407, 0.0006351767806336284, 0.09705068171024323, 2.293438410561066e-05, 1.2906546544400044e-05, 1.0369994924985804e-06, 1.1318084034428466e-06, 2.7127869088872103e-06, 1.8103071397490567e-06, 2.6960714549773e-08, 7.030239430605434e-07, 2.084434891003184e-05, 0.09427093714475632], [0.0029027913697063923, 0.00037366090691648424, 0.0011348527623340487, 0.00029086798895150423, 0.0007863902137614787, 0.8698605298995972, 0.006817433517426252, 0.05838221311569214, 0.00013261435378808528, 2.220244459749665e-05, 1.3364774531510193e-07, 4.244911622208747e-07, 2.7994531137665035e-07, 9.997409506468102e-06, 2.297291068487084e-08, 6.049206422176212e-05, 9.0981366156484e-06, 0.05921606719493866], [0.3783470094203949, 0.018570922315120697, 0.013726558536291122, 0.010073617100715637, 0.0050921207293868065, 0.008606519550085068, 0.017618460580706596, 0.20345439016819, 0.005005421116948128, 0.008788598701357841, 0.00844341516494751, 0.020824842154979706, 0.017679471522569656, 0.007230877876281738, 0.04645824432373047, 0.00959745328873396, 0.017567409202456474, 0.2029145359992981], [0.02392464689910412, 3.1936142477206886e-05, 1.0267737025060342e-06, 7.997932129910623e-07, 1.0232819249722525e-06, 7.551157523266738e-06, 0.004373923409730196, 0.46123772859573364, 0.06372766196727753, 0.0007044902886264026, 0.00010445844964124262, 4.155569331487641e-05, 4.483604243432637e-06, 1.897396828098863e-06, 9.79507717602246e-07, 1.3451974155032076e-05, 0.0009877198608592153, 0.4448346197605133], [0.000315748417051509, 2.4044902602327056e-05, 1.1260697192483349e-06, 1.7008390784667426e-07, 1.4020238836565113e-07, 8.580307735428505e-07, 0.0014182956656441092, 0.03669028356671333, 0.9234538078308105, 0.0003321155090816319, 0.0003459048457443714, 0.00017938087694346905, 0.00042659565224312246, 1.2300907656026538e-05, 4.5971555096002703e-07, 2.0048914848302957e-06, 0.0005395967164076865, 0.036257240921258926], [0.00012822648568544537, 2.016016424022382e-06, 1.5208781860565068e-06, 2.4532353037898247e-08, 1.407482663751125e-08, 1.3090536867821356e-06, 7.665242378607218e-07, 0.006748106796294451, 0.0003779917606152594, 0.9848799705505371, 0.0005147720221430063, 0.0003504272026475519, 6.23780624664505e-06, 0.0001691406941972673, 2.8959429982933216e-06, 5.368962320062565e-06, 7.555008778581396e-07, 0.006810567807406187], [0.00010347291390644386, 6.600865845030057e-07, 2.6633856577973347e-06, 3.854463102470618e-06, 1.7789817619018322e-08, 3.092206100063777e-07, 2.5164272301481105e-06, 0.0027801143005490303, 0.0003778291284106672, 0.0064571574330329895, 0.9845407605171204, 0.0025389650836586952, 4.961863669450395e-05, 0.0003562477941159159, 3.480123996268958e-05, 1.683498453530774e-06, 8.171435297299467e-07, 0.0027484563179314137], [0.0019737440161406994, 6.249947091419017e-06, 2.2971766156842932e-05, 1.15385716981109e-06, 1.7159781862119416e-07, 7.263983661687234e-06, 4.82467748952331e-06, 0.014886338263750076, 0.0005217208527028561, 0.3228423595428467, 0.32180169224739075, 0.305348664522171, 0.0027804989367723465, 0.004696542397141457, 0.009725913405418396, 0.0009849924826994538, 2.3891072487458587e-05, 0.014370933175086975], [0.0005891936598345637, 0.0004198386741336435, 5.045649231760763e-07, 2.7607691777120635e-07, 2.8814099550800165e-07, 2.3819210070996633e-07, 8.936468702813727e-07, 0.2552725076675415, 0.0012644716771319509, 2.0402467271196656e-05, 1.4541297787218355e-05, 0.00038683219463564456, 0.4861803352832794, 0.0006343221175484359, 0.0003315980138722807, 0.00011337000614730641, 0.0005570356734097004, 0.25421327352523804], [8.639216503070202e-06, 9.265207836506306e-07, 4.806073775398545e-06, 4.4779526753302434e-09, 2.0049917281994567e-09, 1.4409890809474746e-06, 2.8981967048480328e-08, 0.005464782007038593, 1.0394884384368197e-06, 4.291883305995725e-05, 2.455405774526298e-05, 6.275216037465725e-06, 1.6115942344185896e-05, 0.9869539141654968, 4.496928522712551e-05, 0.0017753440188243985, 3.214373646187596e-05, 0.005622209515422583], [0.0018798178061842918, 2.596358535811305e-05, 0.00026696952409110963, 2.560752363933716e-06, 7.58927001243137e-08, 1.3885355087950302e-07, 2.3562571982438385e-07, 0.009953686036169529, 3.882117198372725e-06, 0.0002653842675499618, 9.150484402198344e-05, 0.0015304790576919913, 0.00010143336112378165, 0.0010811472311615944, 0.9746374487876892, 0.0002444011333864182, 0.000104860111605376, 0.009810018353164196], [0.0011498607927933335, 2.434436282783281e-05, 3.8114107155706733e-05, 4.884536338067846e-06, 3.3280795719292655e-07, 1.7051179383997805e-05, 6.406139618775342e-07, 0.058921460062265396, 6.228472193470225e-05, 1.466931735194521e-05, 7.396049568342278e-07, 1.7650165318627842e-05, 7.593729242216796e-05, 0.004377240780740976, 0.0002827006974257529, 0.8692548871040344, 0.007687313016504049, 0.05806992948055267], [0.3761729300022125, 0.018650569021701813, 0.01338690984994173, 0.009904902428388596, 0.005229683592915535, 0.00877019390463829, 0.017336204648017883, 0.2047376185655594, 0.0050139958038926125, 0.008822373114526272, 0.008213990367949009, 0.020478110760450363, 0.018299108371138573, 0.007370942272245884, 0.045782510191202164, 0.009724216535687447, 0.01789327897131443, 0.2042125165462494]], [[0.0060458192601799965, 0.0056103128008544445, 0.0023220195434987545, 0.025587137788534164, 0.037089768797159195, 0.07939517498016357, 0.010649461299180984, 0.3985046148300171, 0.023900363594293594, 0.0006924244808033109, 0.0036369862500578165, 0.0028203472029417753, 0.0009983301861211658, 0.0017007207497954369, 0.00034973351284861565, 0.0008253947016783059, 0.003750853007659316, 0.39612051844596863], [0.0020660925656557083, 0.005812018644064665, 0.004385117441415787, 0.024011550471186638, 0.0926986038684845, 0.034081101417541504, 0.005181804299354553, 0.4116872251033783, 0.008726421743631363, 0.00015227800759021193, 0.00033652124693617225, 0.0007324926555156708, 0.00021392051712609828, 0.0003179203486070037, 6.216166366357356e-05, 0.00016065375530160964, 0.0002490612678229809, 0.4091249704360962], [0.010239792056381702, 0.0361139252781868, 0.009713319130241871, 0.030721092596650124, 0.05069705471396446, 0.1457635909318924, 0.019890720024704933, 0.339591383934021, 0.008584405295550823, 0.00041157874511554837, 0.0008172947564162314, 0.00044645083835348487, 7.101416122168303e-05, 0.0037626854609698057, 0.001987295690923929, 0.0025243773125112057, 0.0014202867168933153, 0.33724379539489746], [0.0048680417239665985, 0.04690713807940483, 0.009750817902386189, 0.01275763288140297, 0.09081625193357468, 0.030382957309484482, 0.004867756273597479, 0.3917013108730316, 0.017339760437607765, 3.334804205223918e-05, 8.918621460907161e-05, 0.000391146371839568, 0.00013212746125645936, 4.6008226490812376e-05, 1.9007031369255856e-05, 8.376914593100082e-06, 0.0005460799438878894, 0.3893430829048157], [0.0023481352254748344, 0.00938381813466549, 0.07011985033750534, 0.02743782289326191, 0.03109852783381939, 0.014221465215086937, 0.007457545027136803, 0.4105890691280365, 0.002587808296084404, 0.00011508435272844508, 0.0005587558262050152, 0.014197563752532005, 0.00039447739254683256, 5.216731733526103e-05, 2.5639808882260695e-05, 0.00010278257832396775, 0.0004527677083387971, 0.40885671973228455], [0.012724236585199833, 0.06855641305446625, 0.03794575482606888, 0.25952616333961487, 0.23296311497688293, 0.05105229467153549, 0.036825649440288544, 0.14607608318328857, 0.006377981975674629, 0.0001762642350513488, 0.00010728531196946278, 0.00039866805309429765, 0.00033904286101460457, 0.00012412320938892663, 0.00013459321053232998, 0.00010374622070230544, 0.001314892782829702, 0.1452537626028061], [0.005167700350284576, 0.007313728332519531, 0.009762258268892765, 0.030082587152719498, 0.11312205344438553, 0.09657537192106247, 0.009428747929632664, 0.36213281750679016, 0.004228138830512762, 4.343289401731454e-05, 0.00022878602612763643, 0.0008389409631490707, 9.034918184624985e-05, 0.00010206561273662373, 6.412204675143585e-05, 9.537734149489552e-05, 0.001073419931344688, 0.3596501350402832], [0.0012562519405037165, 0.0017727763624861836, 0.001313325366936624, 0.007512780837714672, 0.00817585363984108, 0.004598089028149843, 0.0012761628022417426, 0.4802653193473816, 0.0075978245586156845, 0.00033316342160105705, 0.0017232215031981468, 0.0023351581767201424, 0.0014041358372196555, 0.0008053971105255187, 0.00041820426122285426, 0.0008046658476814628, 0.0010968629503622651, 0.4773108661174774], [0.0022373723331838846, 0.0002987858315464109, 0.0002118190604960546, 0.0021411653142422438, 0.0043735625222325325, 0.013054872862994671, 0.00038993070484139025, 0.4571307897567749, 0.05029537156224251, 0.0012503244215622544, 0.006382729392498732, 0.003921144641935825, 0.0005329984705895185, 0.0009306049905717373, 0.0003532633127178997, 0.000451596308266744, 0.005070424638688564, 0.45097315311431885], [0.008275138214230537, 0.003295459086075425, 0.0009332294575870037, 0.0023181410506367683, 0.004754400812089443, 0.00048332774895243347, 0.0015824653673917055, 0.22132433950901031, 0.49964162707328796, 0.016600720584392548, 0.006849171128123999, 0.002344979904592037, 0.0007332470268011093, 0.0010619332315400243, 0.0008472261251881719, 0.0008622303139418364, 0.00910039059817791, 0.21899202466011047], [0.029991256073117256, 0.001325756311416626, 0.000739435141440481, 0.00048201021854765713, 0.0006566664087586105, 0.0020382229704409838, 0.003310680855065584, 0.29918667674064636, 0.2738628089427948, 0.0034835815895348787, 0.029840946197509766, 0.03140787035226822, 0.0033930866047739983, 0.0004147914587520063, 0.00026127672754228115, 0.0004050594288855791, 0.022940825670957565, 0.2962590754032135], [0.007062517572194338, 0.001134654856286943, 0.00020571147615555674, 0.0009330331813544035, 0.0008548400946892798, 0.004711682442575693, 0.0017410031286999583, 0.100410595536232, 0.725119948387146, 0.0045128390192985535, 0.043866392225027084, 0.004109445493668318, 0.0002581483277026564, 0.00010877316526602954, 0.0009903787868097425, 3.502957770251669e-05, 0.004606802482157946, 0.09933825582265854], [0.01851806975901127, 0.0009635879541747272, 0.0003221136284992099, 0.0001373568520648405, 0.0006174707668833435, 0.0026792753487825394, 0.004162986297160387, 0.05920719355344772, 0.010906467214226723, 0.01611470617353916, 0.6898331046104431, 0.086669921875, 0.00424039363861084, 0.013273598626255989, 0.016947653144598007, 0.0023928142618387938, 0.014290313236415386, 0.058723051100969315], [0.019258012995123863, 0.00022361472656484693, 0.0002197575377067551, 0.00037425445043481886, 0.0005193947581574321, 0.0004607336886692792, 0.0034843655303120613, 0.08340654522180557, 0.003163800807669759, 0.00553029915317893, 0.014603814110159874, 0.19082628190517426, 0.16736586391925812, 0.05097980797290802, 0.018410613760352135, 0.33676785230636597, 0.02139878459274769, 0.08300625532865524], [0.07330363988876343, 0.00045064170262776315, 0.00025926841772161424, 6.973108975216746e-05, 9.934803529176861e-05, 0.0002770843857433647, 0.007513661868870258, 0.015214109793305397, 0.0005990233039483428, 0.11454552412033081, 0.024305488914251328, 0.03345402702689171, 0.6679829955101013, 0.006984773091971874, 0.0183865949511528, 0.00017314183060079813, 0.021267704665660858, 0.015113291330635548], [0.03621477633714676, 0.00059200992109254, 0.0008993680239655077, 0.000264083209913224, 0.0008283809875138104, 0.0006741717224940658, 0.005476376507431269, 0.06190286576747894, 0.002667761640623212, 0.046455226838588715, 0.061324093490839005, 0.16665196418762207, 0.1701556295156479, 0.10617367178201675, 0.23165297508239746, 0.022922750562429428, 0.02345881797373295, 0.061685141175985336], [0.0078510083258152, 0.0003892119275406003, 0.00033747838460840285, 0.0009681443334557116, 0.0028751299250870943, 0.001777379889972508, 0.0013230907497927547, 0.4249602258205414, 0.06212220713496208, 0.0013319706777110696, 0.013897943310439587, 0.031189734116196632, 0.004615218378603458, 0.005383390933275223, 0.0030230646952986717, 0.002633661264553666, 0.013920620083808899, 0.4214005172252655], [0.0012601997004821897, 0.001778271864168346, 0.0013127099955454469, 0.007534971460700035, 0.008202075958251953, 0.004596475977450609, 0.0012812138302251697, 0.4802170395851135, 0.0076101128943264484, 0.0003339551913086325, 0.0017314872238785028, 0.00234186090528965, 0.001408715732395649, 0.0008069375180639327, 0.0004199077666271478, 0.0008042232366278768, 0.0010981725063174963, 0.4772617220878601]], [[0.0050031584687530994, 0.009027029387652874, 0.018070146441459656, 0.005699703935533762, 0.0053654261864721775, 0.011317472904920578, 0.003272562986239791, 0.2588420510292053, 0.10934793949127197, 0.1528548151254654, 0.006650561932474375, 0.008505993522703648, 0.02037874236702919, 0.056223493069410324, 0.011256575584411621, 0.04889640212059021, 0.011928601190447807, 0.2573593258857727], [0.013055001385509968, 0.04623790830373764, 0.039795227348804474, 0.02681378833949566, 0.01850750483572483, 0.027091750875115395, 0.034038033336400986, 0.3851572871208191, 0.004306751769036055, 0.01435808464884758, 0.0016861549811437726, 0.001182169304229319, 0.0014119961997494102, 0.000960247591137886, 0.00024912922526709735, 0.00024837625096552074, 0.0019149088766425848, 0.3829856216907501], [0.010085547342896461, 0.031615979969501495, 0.04133704677224159, 0.004111381247639656, 0.0019236743682995439, 0.0037921485491096973, 0.014043509028851986, 0.442196249961853, 0.0008539824048057199, 0.00852056872099638, 0.00032817418104968965, 0.0002622554311528802, 0.0002350508439121768, 0.000563141074962914, 6.452818342950195e-05, 9.82285346253775e-05, 0.0011716234730556607, 0.43879687786102295], [0.026639465242624283, 0.09073454886674881, 0.025416536256670952, 0.02808697521686554, 0.021483570337295532, 0.023594966158270836, 0.03187568858265877, 0.36781319975852966, 0.008402042090892792, 0.0018978603184223175, 0.002204315038397908, 0.0015210396377369761, 0.0016425888752564788, 0.00020734674762934446, 0.0002567468036431819, 9.670478902989998e-05, 0.002603767206892371, 0.3655226230621338], [0.016524264588952065, 0.038229070603847504, 0.009335431270301342, 0.025380246341228485, 0.03348955512046814, 0.10557353496551514, 0.029469376429915428, 0.3661765456199646, 0.007196014281362295, 0.0006426931940950453, 0.0003019878931809217, 0.0011536076199263334, 6.688967550871894e-05, 4.937034100294113e-05, 9.334411151940003e-05, 3.497581201372668e-05, 0.001323328004218638, 0.36495983600616455], [0.014617719687521458, 0.03144366294145584, 0.034620221704244614, 0.021215494722127914, 0.015820452943444252, 0.1009969711303711, 0.03679937869310379, 0.36936303973197937, 0.0026387053076177835, 0.0013557441998273134, 0.0004814104177057743, 0.0003990992554463446, 0.00034424132900312543, 0.0002280955814057961, 5.630915256915614e-05, 0.00015598084428347647, 0.0025064866058528423, 0.3669569492340088], [0.017210127785801888, 0.12177712470293045, 0.05963576212525368, 0.16640733182430267, 0.24060365557670593, 0.1789882332086563, 0.04050299525260925, 0.07132596522569656, 0.021574195474386215, 0.003036156529560685, 0.0006520200404338539, 0.0005663327756337821, 0.0006963239284232259, 0.0005789441638626158, 0.0003787824825849384, 0.0005864376435056329, 0.0044549559243023396, 0.07102463394403458], [0.005072913598269224, 0.006156499031931162, 0.004323720000684261, 0.0022622104734182358, 0.002937384182587266, 0.0023012582678347826, 0.005710800644010305, 0.47258177399635315, 0.004146023653447628, 0.003332097316160798, 0.0010922696674242616, 0.0020814179442822933, 0.00457343552261591, 0.0032001954969018698, 0.002889123512431979, 0.0020955982618033886, 0.0054806615225970745, 0.4697625935077667], [0.008740846067667007, 0.002012209966778755, 0.0018676244653761387, 0.0019198289373889565, 0.0030726827681064606, 0.0059237172827124596, 0.00205209874548018, 0.4363616108894348, 0.06746416538953781, 0.015739301219582558, 0.005202957894653082, 0.001485376968048513, 0.00395455677062273, 0.0013581705279648304, 0.00034079988836310804, 0.003146959701552987, 0.007114998530596495, 0.4322419762611389], [0.024053392931818962, 0.008211519569158554, 0.007308132480829954, 0.013330655172467232, 0.0024296296760439873, 0.003125753253698349, 0.008401451632380486, 0.29721498489379883, 0.09992148727178574, 0.11370541155338287, 0.03839755058288574, 0.04099443927407265, 0.011859088204801083, 0.013408773578703403, 0.0013632139889523387, 0.003826007479801774, 0.018425555899739265, 0.294022798538208], [0.007989608682692051, 0.0006531178369186819, 0.0006016883999109268, 0.00042969451169483364, 8.558892295695841e-05, 0.000252148398431018, 0.00150276068598032, 0.43665799498558044, 0.029337601736187935, 0.04419094696640968, 0.02423911914229393, 0.007019475568085909, 0.005760346073657274, 0.0029123539570719004, 0.0007931432919576764, 0.0007662197458557785, 0.0039071799255907536, 0.432900995016098], [0.015223266556859016, 0.002117662690579891, 0.0005866231513209641, 0.0004191373009234667, 0.001433291588909924, 0.00111956219188869, 0.002327756956219673, 0.3497609496116638, 0.14106056094169617, 0.02992638386785984, 0.04056422412395477, 0.049738142639398575, 0.008866649121046066, 0.003900097915902734, 0.001297001144848764, 0.0004941230872645974, 0.004187467508018017, 0.34697702527046204], [0.012866525910794735, 0.0011433983454480767, 0.0026114294305443764, 0.0005054341745562851, 0.0002013807388721034, 0.0013082699151709676, 0.007180608343333006, 0.33624300360679626, 0.030727514997124672, 0.06476608663797379, 0.046442072838544846, 0.027265770360827446, 0.03959106281399727, 0.06072345748543739, 0.004420620854943991, 0.01597035676240921, 0.014945857226848602, 0.33308717608451843], [0.016407515853643417, 0.000330184557242319, 0.0017166577745229006, 0.00023068618611432612, 0.0001864940713858232, 0.0017998801777139306, 0.003162128385156393, 0.3967726230621338, 0.007081977091729641, 0.08238722383975983, 0.017542125657200813, 0.009549771435558796, 0.006778724491596222, 0.03662898391485214, 0.00398479588329792, 0.00886260624974966, 0.012694858014583588, 0.3938828110694885], [0.008975492790341377, 0.00043009803630411625, 0.00018695359176490456, 0.00012561744370032102, 0.00019790689111687243, 0.0012436513788998127, 0.0024856168311089277, 0.0421212762594223, 0.0235105212777853, 0.014260012656450272, 0.03661763295531273, 0.02261299267411232, 0.6700192093849182, 0.11084957420825958, 0.011579057201743126, 0.009827280417084694, 0.003217612160369754, 0.041739482432603836], [0.016095781698822975, 0.0003237201599404216, 0.0009599719778634608, 0.00038679642602801323, 0.00030101678567007184, 0.0008385961991734803, 0.0034487664233893156, 0.14403797686100006, 0.008542215451598167, 0.09500104188919067, 0.018424933776259422, 0.010250228457152843, 0.09381029009819031, 0.39758822321891785, 0.008344154804944992, 0.03807130083441734, 0.020530622452497482, 0.1430443525314331], [0.015580812469124794, 0.006223216652870178, 0.002654142677783966, 0.002479380927979946, 0.004129177425056696, 0.005324141588062048, 0.0031540163327008486, 0.08248958736658096, 0.41590002179145813, 0.12653549015522003, 0.0768832340836525, 0.037007179111242294, 0.03930474445223808, 0.040283095091581345, 0.018166830763220787, 0.01824169047176838, 0.023645266890525818, 0.08199798315763474], [0.005070492625236511, 0.006155345588922501, 0.004327089991420507, 0.0022562791127711535, 0.002931157825514674, 0.0023000375367701054, 0.0057151648215949535, 0.4726390242576599, 0.004120017401874065, 0.003325176890939474, 0.0010886387899518013, 0.002072918927296996, 0.004562224727123976, 0.003194461576640606, 0.00287901284173131, 0.0020897428039461374, 0.005456356331706047, 0.46981680393218994]], [[0.011212988756597042, 0.009888334199786186, 0.013162845745682716, 0.0041388049721717834, 0.01048683188855648, 0.002732729073613882, 0.012199338525533676, 0.4392438232898712, 0.0075243678875267506, 0.005853976123034954, 0.0034768490586429834, 0.004871181678026915, 0.007513744290918112, 0.006592566147446632, 0.002960305893793702, 0.009924579411745071, 0.011188631877303123, 0.4370282292366028], [0.004248390439897776, 0.01169416680932045, 0.5964747071266174, 0.024309271946549416, 0.01620797999203205, 0.042587775737047195, 0.012573450803756714, 0.14308984577655792, 0.0004189950705040246, 0.0014680210733786225, 0.00018624561198521405, 0.0003038739669136703, 7.763168832752854e-05, 0.001322468277066946, 0.0005558962584473193, 0.0005772655131295323, 0.0014175312826409936, 0.14248652756214142], [0.013308624736964703, 0.018160369247198105, 0.016638923436403275, 0.0183628648519516, 0.0042503150179982185, 0.014588996767997742, 0.02677038684487343, 0.444271057844162, 0.00024277003831230104, 0.00023825501557439566, 4.9547925300430506e-05, 2.955985110020265e-05, 0.00010202405246673152, 0.00029385826201178133, 5.8083838666789234e-05, 0.00031188572756946087, 0.0011262445477768779, 0.4411962330341339], [0.010096956044435501, 0.01905645616352558, 0.040909770876169205, 0.011321241036057472, 0.05663401260972023, 0.12422625720500946, 0.10642688721418381, 0.312862753868103, 0.0009194735321216285, 0.0017682898323982954, 0.0002555965620558709, 0.0002869217423722148, 0.00023395959578920156, 0.0007104880060069263, 8.190755761461332e-05, 0.0016703573055565357, 0.0013728877529501915, 0.31116577982902527], [0.007758096791803837, 0.011312837712466717, 0.006468120031058788, 0.004192100837826729, 0.0274664219468832, 0.06669838726520538, 0.07739458233118057, 0.39969316124916077, 0.0003657909983303398, 0.0006115622236393392, 5.2695831982418895e-05, 0.0002830550947692245, 9.403634066984523e-06, 4.9854359531309456e-05, 7.072469998092856e-06, 8.900265675038099e-05, 0.0010272195795550942, 0.3965207040309906], [0.006597702857106924, 0.04283144325017929, 0.05074044317007065, 0.016358112916350365, 0.024379992857575417, 0.03339897096157074, 0.05973540246486664, 0.38003623485565186, 0.001113875419832766, 0.001524900901131332, 0.00012404374137986451, 0.0010743207531049848, 0.00010534204920986667, 0.0012897469568997622, 0.0002598431019578129, 0.0013112686574459076, 0.0008111147326417267, 0.3783072233200073], [0.0034733274951577187, 0.012655842117965221, 0.013282964937388897, 0.002122217556461692, 0.0035143636632710695, 0.006919681094586849, 0.04287946969270706, 0.4563295841217041, 0.0011950379703193903, 0.0012208977714180946, 0.0003487641515675932, 0.00045351064181886613, 0.0004104819963686168, 0.0003505723725538701, 0.0001587183214724064, 0.0004286942130420357, 0.0011158323613926768, 0.4531399607658386], [0.0027843210846185684, 0.0027269087731838226, 0.0012171706184744835, 0.0021440996788442135, 0.002939843572676182, 0.0012563576456159353, 0.011342262849211693, 0.471207857131958, 0.003881976241245866, 0.0006907387869432569, 0.0017748853424564004, 0.0014041101094335318, 0.00254739448428154, 0.0009186757379211485, 0.004109398927539587, 0.0022195293568074703, 0.018960433080792427, 0.46787407994270325], [0.007759611122310162, 0.0004939812351949513, 0.0005992561345919967, 9.942987526301295e-05, 0.00021878817642573267, 0.0001477609039284289, 0.0018182402709499002, 0.46507325768470764, 0.0029557454399764538, 0.0241558738052845, 0.0032886371482163668, 0.010187895968556404, 0.004068747628480196, 0.0025190834421664476, 0.0006783079588785768, 0.005118418950587511, 0.00944013986736536, 0.461376816034317], [0.005398201290518045, 0.0011106996098533273, 0.002285213675349951, 0.00038796127773821354, 0.0002591531665530056, 0.0007300523575395346, 0.0007174468482844532, 0.4352826178073883, 0.031072227284312248, 0.010384838096797466, 0.008654589764773846, 0.02918553538620472, 0.007262899540364742, 0.014747199602425098, 0.004250132013112307, 0.005655534565448761, 0.010645127855241299, 0.43197059631347656], [0.01970161311328411, 0.0007909644045867026, 0.0012237250339239836, 0.0003772448981180787, 0.0003519254387356341, 0.00016748692723922431, 0.0003989313845522702, 0.3125453293323517, 0.00815054401755333, 0.028402557596564293, 0.0215561892837286, 0.06659098714590073, 0.14131556451320648, 0.02914748340845108, 0.006020735017955303, 0.039820216596126556, 0.01221929956227541, 0.3112192153930664], [0.024967746809124947, 0.0008144473540596664, 0.0048633175902068615, 0.002734171459451318, 0.0004581017419695854, 0.0002759323688223958, 0.0008055152138695121, 0.3887260854244232, 0.0029323420021682978, 0.010776217095553875, 0.051188185811042786, 0.0248296856880188, 0.041325222700834274, 0.009893967770040035, 0.011448733508586884, 0.018787316977977753, 0.01906115747988224, 0.38611188530921936], [0.02027376927435398, 0.00045244296779856086, 0.0016221074620261788, 0.0008137944969348609, 0.00014668858784716576, 0.000135444279294461, 0.0004050819843541831, 0.15208478271961212, 0.0017738515743985772, 0.007241218350827694, 0.02428874559700489, 0.013124960474669933, 0.053130559623241425, 0.23526489734649658, 0.041737765073776245, 0.2642151713371277, 0.031547464430332184, 0.15174119174480438], [0.036647211760282516, 0.00041235238313674927, 0.0020457610953599215, 0.0002468531019985676, 9.981026232708246e-05, 0.0009075984125956893, 0.0001622205600142479, 0.2988474369049072, 0.0005443809204734862, 0.002335414756089449, 0.009251711890101433, 0.006268193945288658, 0.028386853635311127, 0.020736461505293846, 0.01811469905078411, 0.2447044551372528, 0.032719310373067856, 0.29756924510002136], [0.002026333473622799, 0.0001892546861199662, 0.0010846740333363414, 5.6127089919755235e-05, 2.5486813683528453e-05, 8.197686111088842e-05, 7.318642019527033e-05, 0.09415179491043091, 5.243397754384205e-05, 0.0011494789505377412, 0.0002203390613431111, 0.0016577630303800106, 0.0025703769642859697, 0.010429354384541512, 0.004454115871340036, 0.7685666084289551, 0.019277596846222878, 0.09393314272165298], [0.004860538989305496, 0.00013066831161268055, 0.0002926453307736665, 0.0005286757368594408, 0.0001378347515128553, 0.0001507772976765409, 0.00023328249517362565, 0.445921391248703, 0.000574120378587395, 0.00018312560860067606, 0.000509887293446809, 0.0003989251854363829, 0.011637064628303051, 0.02089446410536766, 0.0011962034041061997, 0.04568247124552727, 0.022386722266674042, 0.4442811906337738], [0.0036216387525200844, 0.00064891017973423, 0.0017158216796815395, 0.00033750833244994283, 0.0005372059531509876, 0.0005907400045543909, 0.003236255142837763, 0.47660011053085327, 0.0033273857552558184, 0.002375205745920539, 0.0004957834607921541, 0.0005025244317948818, 0.0005560524296015501, 0.0014444346306845546, 0.0006624118541367352, 0.0048534804955124855, 0.026007818058133125, 0.47248679399490356], [0.0027810900937765837, 0.002728840569034219, 0.0012173864524811506, 0.002147446386516094, 0.0029424310196191072, 0.00125831866171211, 0.011322574689984322, 0.471239298582077, 0.0038701731245964766, 0.0006909440271556377, 0.0017713485285639763, 0.0014002100797370076, 0.002539570676162839, 0.000917670491617173, 0.004117495846003294, 0.002218737965449691, 0.018930483609437943, 0.4679059684276581]], [[0.0067216516472399235, 0.004841063637286425, 0.0005971830105409026, 0.015156722627580166, 0.002724067308008671, 0.006993062328547239, 0.005213884171098471, 0.05204989016056061, 0.2951253652572632, 0.06136612221598625, 0.22061380743980408, 0.05123018100857735, 0.07536744326353073, 0.011719641275703907, 0.01584722101688385, 0.015437044203281403, 0.10712730139493942, 0.05186835676431656], [0.030329173430800438, 0.040183354169130325, 0.019574278965592384, 0.39242982864379883, 0.10098960250616074, 0.0886107087135315, 0.08044978976249695, 0.07389125227928162, 0.02351769618690014, 0.028087154030799866, 0.01366353128105402, 0.008634629659354687, 0.006339061073958874, 0.0012433943338692188, 0.003455081954598427, 0.002500904956832528, 0.012528148479759693, 0.07357248663902283], [0.07635039836168289, 0.023343682289123535, 0.05244942009449005, 0.050924237817525864, 0.0233306847512722, 0.024862566962838173, 0.023655792698264122, 0.27544450759887695, 0.003734767436981201, 0.11505374312400818, 0.011116929352283478, 0.0014584463788196445, 0.020693376660346985, 0.007880117744207382, 0.002402489073574543, 0.011086448095738888, 0.002719102194532752, 0.2734932601451874], [0.08786849677562714, 0.07873991131782532, 0.007443486247211695, 0.08534324169158936, 0.13192932307720184, 0.051634132862091064, 0.1290907859802246, 0.16110031306743622, 0.04151362180709839, 0.026001691818237305, 0.012287674471735954, 0.00825527124106884, 0.004304138012230396, 0.0005324689554981887, 0.000817639462184161, 0.0006914355326443911, 0.012208282016217709, 0.16023802757263184], [0.020997747778892517, 0.028613710775971413, 0.0028170619625598192, 0.011209635995328426, 0.020777858793735504, 0.013467694632709026, 0.031591493636369705, 0.42236313223838806, 0.01803545653820038, 0.0007473767036572099, 0.002152730245143175, 0.0018630228005349636, 0.0015851740026846528, 0.000524768081959337, 0.0007658032118342817, 0.0005435078055597842, 0.0017420020885765553, 0.42020183801651], [0.07159120589494705, 0.009128428995609283, 0.008388066664338112, 0.02050822600722313, 0.03704596683382988, 0.015235220082104206, 0.03372124582529068, 0.3881596326828003, 0.020810531452298164, 0.0014371079159900546, 0.0006016292609274387, 0.00110178894829005, 0.001312226871959865, 0.0019524155650287867, 0.0005050707259215415, 0.0012529748491942883, 0.0021741411183029413, 0.3850741386413574], [0.024134360253810883, 0.01884893886744976, 0.0019611737225204706, 0.07982149720191956, 0.00856749713420868, 0.011832735501229763, 0.016498468816280365, 0.07577969878911972, 0.18921208381652832, 0.044244252145290375, 0.21055810153484344, 0.03738494962453842, 0.08821472525596619, 0.013897145166993141, 0.018187731504440308, 0.012588427402079105, 0.0727427527308464, 0.07552547007799149], [0.008714757859706879, 0.002541179768741131, 0.0045815035700798035, 0.0016537427436560392, 0.0006920216255821288, 0.000812988611869514, 0.0030611229594796896, 0.4834141135215759, 0.0028268108144402504, 0.001211855560541153, 0.0007139019435271621, 0.0004973462200723588, 0.0011683146003633738, 0.0018893388332799077, 0.0010382577311247587, 0.001477004960179329, 0.0034945488441735506, 0.4802112281322479], [0.07538861781358719, 0.0019908801186829805, 0.00016928251716308296, 0.0036453413777053356, 0.0013412726111710072, 0.0007771541713736951, 0.009777292609214783, 0.14006684720516205, 0.06898313760757446, 0.02358212321996689, 0.028350073844194412, 0.011827371083199978, 0.007585453800857067, 0.004170604981482029, 0.005918113049119711, 0.0037683381233364344, 0.4736504852771759, 0.13900765776634216], [0.053609833121299744, 0.0027122804895043373, 0.0013741563307121396, 0.010171434842050076, 0.003301667282357812, 0.0015122806653380394, 0.0032070139423012733, 0.15438544750213623, 0.02127065882086754, 0.08232079446315765, 0.09518694132566452, 0.061465248465538025, 0.15887390077114105, 0.017959775403141975, 0.01296448614448309, 0.043467506766319275, 0.12253598868846893, 0.1536807119846344], [0.021868251264095306, 0.0006798853864893317, 0.00013983949611429125, 0.0006761383265256882, 0.0008401250815950334, 0.0002567068731877953, 0.001544252852909267, 0.33480075001716614, 0.03234878554940224, 0.009982611984014511, 0.031463176012039185, 0.040859490633010864, 0.01975642889738083, 0.0037986801471561193, 0.021453168243169785, 0.015738775953650475, 0.13134175539016724, 0.3324512243270874], [0.017869671806693077, 0.0006073967088013887, 6.925209891051054e-05, 0.0005125525640323758, 0.0016824217746034265, 0.0008105522720143199, 0.0012064914917573333, 0.414646714925766, 0.06592455506324768, 0.004655258264392614, 0.004062978085130453, 0.01831706240773201, 0.006800558418035507, 0.0020802076905965805, 0.005607981700450182, 0.005410715471953154, 0.038291577249765396, 0.4114440381526947], [0.010083329863846302, 0.0005181630258448422, 6.733813643222675e-05, 0.0005584257887676358, 0.0006343962741084397, 0.00022722514404449612, 0.0004363825428299606, 0.42601510882377625, 0.022821780294179916, 0.005259039346128702, 0.010027807205915451, 0.011133420281112194, 0.02410985715687275, 0.005336049944162369, 0.031816355884075165, 0.013096733950078487, 0.014731619507074356, 0.4231269359588623], [0.010987350717186928, 0.00032247870694845915, 0.0001274297828786075, 0.0003678190987557173, 0.0004991329042240977, 0.00010428454697830603, 0.00033050408819690347, 0.443516343832016, 0.0031876564025878906, 0.0066018919460475445, 0.005139416083693504, 0.0034534300211817026, 0.017837833613157272, 0.021695058792829514, 0.01918330416083336, 0.01868596486747265, 0.007696225307881832, 0.4402638375759125], [0.004739687778055668, 0.00021732789173256606, 4.957415148965083e-05, 0.00011218662984902039, 8.171088120434433e-05, 8.410663576796651e-05, 0.00018556590657681227, 0.4799368977546692, 0.01067147497087717, 0.0010011494159698486, 0.0015047190245240927, 0.0015781647525727749, 0.009503837674856186, 0.002036292338743806, 0.006902705412358046, 0.0032198859844356775, 0.002824985422194004, 0.47534966468811035], [0.009694122709333897, 0.00013188092270866036, 0.00011364813690306619, 0.0001653578510740772, 0.00027660318301059306, 0.00011351685679983348, 0.0002259511238662526, 0.46344834566116333, 0.00470264907926321, 0.0031935160513967276, 0.005761472973972559, 0.0015680153155699372, 0.010889408178627491, 0.019292088225483894, 0.004878138657659292, 0.012377995997667313, 0.004325077403336763, 0.45884230732917786], [0.019373858347535133, 0.0007883429643698037, 0.00017994962399825454, 0.0016581554664298892, 0.00029690415249206126, 0.00028907076921314, 0.0014942275593057275, 0.20906688272953033, 0.10235230624675751, 0.04462483152747154, 0.12642987072467804, 0.022290386259555817, 0.06933347135782242, 0.02957170456647873, 0.012532584369182587, 0.02896013855934143, 0.12298861145973206, 0.20776866376399994], [0.008708353154361248, 0.0025395085103809834, 0.004584540147334337, 0.0016522107180207968, 0.0006911491509526968, 0.0008122901199385524, 0.003057724330574274, 0.48344922065734863, 0.0028183197136968374, 0.001207541092298925, 0.0007100453949533403, 0.0004946000408381224, 0.00116223213262856, 0.0018868532497435808, 0.0010321945883333683, 0.0014725670916959643, 0.0034770735073834658, 0.4802435636520386]], [[0.011996145360171795, 0.004913589917123318, 0.004026347771286964, 0.011123217642307281, 0.009635357186198235, 0.006956611759960651, 0.006216733250766993, 0.12812213599681854, 0.1031179428100586, 0.034350279718637466, 0.07854577898979187, 0.027663087472319603, 0.13740403950214386, 0.07585521787405014, 0.06494022905826569, 0.12949348986148834, 0.0378512404859066, 0.1277884542942047], [0.02760428562760353, 0.02297535538673401, 0.40235787630081177, 0.07617504149675369, 0.08625110238790512, 0.10824012756347656, 0.035532280802726746, 0.10553421825170517, 0.0029633608646690845, 0.004883293993771076, 0.0017516834195703268, 0.0032654781825840473, 0.007056998088955879, 0.0019496642053127289, 0.002218260196968913, 0.0029933408368378878, 0.003147586015984416, 0.1051001027226448], [0.008856088854372501, 0.015828043222427368, 0.015604665502905846, 0.015109403990209103, 0.028514839708805084, 0.016432611271739006, 0.010414733551442623, 0.44084274768829346, 0.0013667054008692503, 0.0005336891044862568, 0.00017003854736685753, 0.0006522036856040359, 0.0018544610356912017, 0.0008403001702390611, 0.0006350196781568229, 0.003467731410637498, 0.0015353471972048283, 0.4373413920402527], [0.024437032639980316, 0.023355457931756973, 0.024685088545084, 0.014856013469398022, 0.015948738902807236, 0.7288690209388733, 0.04732900485396385, 0.051068879663944244, 0.004947029519826174, 0.0025470710825175047, 0.0009844442829489708, 0.00108275655657053, 0.0006653794553130865, 0.0026595108211040497, 0.0015449452912434936, 0.00152937404345721, 0.0025642244145274162, 0.050926048308610916], [0.02571370266377926, 0.020106373354792595, 0.0033918051049113274, 0.02725696936249733, 0.004704214166849852, 0.7535688877105713, 0.03942834213376045, 0.060158148407936096, 0.0005814685137011111, 0.0005405583651736379, 0.001243057893589139, 0.0004210031474940479, 3.579453186830506e-05, 0.0006833235966041684, 0.00024045215104706585, 0.0007753124227747321, 0.0014436834026128054, 0.05970693379640579], [0.011583438143134117, 0.04733068123459816, 0.08784603327512741, 0.049929507076740265, 0.054505132138729095, 0.021627379581332207, 0.039088040590286255, 0.3325674831867218, 0.00570160336792469, 0.0038756723515689373, 0.0006169340922497213, 0.001556567964144051, 0.006761492229998112, 0.0017814283492043614, 0.0004822846094612032, 0.0019400996388867497, 0.0025993878953158855, 0.3302067220211029], [0.0034449880477041006, 0.018932290375232697, 0.030160507187247276, 0.11785625666379929, 0.08165060728788376, 0.0570872500538826, 0.012407434172928333, 0.32325470447540283, 0.008730349130928516, 0.0027159927412867546, 0.007050759624689817, 0.004244364332407713, 0.005804788786917925, 0.0013041881611570716, 0.0018311206949874759, 0.0008476540679112077, 0.0010151817696169019, 0.3216615915298462], [0.0013454597210511565, 0.000340208993293345, 0.0027407421730458736, 0.00042145056067965925, 0.0012664170935750008, 0.0005918154492974281, 0.0007605473510921001, 0.49454542994499207, 0.00031816549017094076, 0.0003723735280800611, 0.0002949512272607535, 0.0003420430002734065, 0.0010878939647227526, 0.0012398845283314586, 0.0005953923100605607, 0.000711281260009855, 0.0006114766583777964, 0.4924144744873047], [0.014603598043322563, 0.0010387102374807, 0.0017541765701025724, 0.003581329481676221, 0.002705339575186372, 0.027621690183877945, 0.002476586028933525, 0.3321686387062073, 0.03009900450706482, 0.02675703540444374, 0.08536726981401443, 0.06164754182100296, 0.009875042364001274, 0.02417687699198723, 0.015487182885408401, 0.015708209946751595, 0.015076937153935432, 0.32985490560531616], [0.03931818902492523, 0.005837051663547754, 0.0037418727297335863, 0.002679110737517476, 0.002769144019111991, 0.03984701260924339, 0.013755337335169315, 0.21775192022323608, 0.05270848423242569, 0.029149863868951797, 0.031402669847011566, 0.018822532147169113, 0.11762495338916779, 0.09684694558382034, 0.017414048314094543, 0.036061134189367294, 0.05790488421916962, 0.21636490523815155], [0.029290076345205307, 0.0004700493300333619, 0.0002293706638738513, 4.196711961412802e-05, 5.4100644774734974e-05, 2.3542812414234504e-05, 0.0014677825383841991, 0.03576879948377609, 0.001094628474675119, 0.0029113944619894028, 0.00627022422850132, 0.008324631489813328, 0.8364294767379761, 0.004814554005861282, 0.003830494126304984, 0.02514980547130108, 0.008247027173638344, 0.03558194637298584], [0.027225306257605553, 0.0021201432682573795, 0.0002723569341469556, 0.0008407172281295061, 0.0019364149775356054, 0.0009136553853750229, 0.0018907625926658511, 0.061896830797195435, 0.01298042107373476, 0.025598932057619095, 0.3063618540763855, 0.0035424665547907352, 0.2524365782737732, 0.17021645605564117, 0.03744802996516228, 0.022839857265353203, 0.01002265140414238, 0.061456598341464996], [0.013010939583182335, 0.0002208953519584611, 2.1055831894045696e-05, 4.123813414480537e-05, 1.3847298760083504e-05, 2.1027217371738516e-05, 0.000954337534494698, 0.028867051005363464, 0.0005948854377493262, 0.00116308918222785, 0.009013562463223934, 0.0011049762833863497, 0.0008708173991180956, 0.8988788723945618, 0.007362909149378538, 0.0017601341241970658, 0.007317854557186365, 0.028782563284039497], [0.012863477692008018, 9.95324517134577e-05, 0.0002846286806743592, 9.267549467040226e-05, 0.00017332012066617608, 0.00041530790622346103, 0.0007888968102633953, 0.37059545516967773, 0.0003073810657951981, 0.0010063120862469077, 0.002162109361961484, 0.003244582563638687, 0.041095808148384094, 0.05219404771924019, 0.010928490199148655, 0.11836755275726318, 0.017786459997296333, 0.36759400367736816], [0.011986113153398037, 0.00014129982446320355, 0.0002080744889099151, 0.00017948435561265796, 0.000358286575647071, 0.0013989818980917335, 0.000689180102199316, 0.08219180256128311, 0.0005037696682848036, 0.0007199195679277182, 0.0046662939712405205, 0.005494982469826937, 0.31061920523643494, 0.055167943239212036, 0.00286984839476645, 0.4319482743740082, 0.009317115880548954, 0.08153939247131348], [0.005921895615756512, 0.00012437916302587837, 0.0007156059145927429, 0.00011545241432031617, 0.00017756132001522928, 0.0006804969161748886, 0.0004675225354731083, 0.38896453380584717, 0.0010067278053611517, 0.0005807313718833029, 0.006095216143876314, 0.0013638243544846773, 0.002726960927248001, 0.18020647764205933, 0.009589838795363903, 0.008437239564955235, 0.006018304731696844, 0.3868071734905243], [0.004934112075716257, 0.0012570999097079039, 0.002957609947770834, 0.005415930878371, 0.0038479838985949755, 0.003077075118198991, 0.0011143018491566181, 0.4024099111557007, 0.027998069301247597, 0.01099197193980217, 0.032021816819906235, 0.014708677306771278, 0.032357651740312576, 0.014983151108026505, 0.013188653625547886, 0.01618000492453575, 0.012514408677816391, 0.4000415802001953], [0.001346377655863762, 0.0003403586451895535, 0.002746062818914652, 0.0004219746624585241, 0.0012658352497965097, 0.0005921246483922005, 0.0007613693014718592, 0.4945440888404846, 0.0003165934467688203, 0.00037199343205429614, 0.0002943632425740361, 0.000341233768267557, 0.0010893320431932807, 0.0012401697458699346, 0.0005934421205893159, 0.0007121090893633664, 0.0006103898631408811, 0.49241217970848083]], [[0.008347292430698872, 0.007073314860463142, 0.011688168160617352, 0.007694452069699764, 0.0030551007948815823, 0.01230920385569334, 0.026996677741408348, 0.4232940077781677, 0.007361052092164755, 0.005052684806287289, 0.00528979254886508, 0.0037535419687628746, 0.010292471386492252, 0.005951473489403725, 0.0032883821986615658, 0.007135386113077402, 0.029627077281475067, 0.4217899441719055], [0.012166834436357021, 0.020551320165395737, 0.012199698016047478, 0.008225611411035061, 0.002132251625880599, 0.019635185599327087, 0.041180238127708435, 0.4382820427417755, 0.0015418716939166188, 0.0008361851214431226, 0.0015492243692278862, 0.0009717245120555162, 0.0011796182952821255, 0.00036575610283762217, 0.0001766500499797985, 0.0002098502591252327, 0.003527456196025014, 0.4352685809135437], [0.030074771493673325, 0.1658446341753006, 0.05010632425546646, 0.010934139601886272, 0.005076300352811813, 0.03991236537694931, 0.03007069230079651, 0.32388290762901306, 0.001192804891616106, 0.006942467298358679, 0.000920100836083293, 0.0014718171441927552, 0.0009099251474253833, 0.0038998513482511044, 0.0008337310864590108, 0.0011803662637248635, 0.004102854523807764, 0.322643905878067], [0.01110126543790102, 0.0619017668068409, 0.02985478937625885, 0.005762813612818718, 0.009134284220635891, 0.013322681188583374, 0.025783691555261612, 0.415605366230011, 0.0038078322540968657, 0.0006456972332671285, 0.0002390683366684243, 0.00046412122901529074, 0.00040893591358326375, 0.00029534261557273567, 0.00019078620243817568, 0.0004543244722299278, 0.006886566989123821, 0.41414064168930054], [0.005867430940270424, 0.044631391763687134, 0.1484639197587967, 0.065543532371521, 0.029931917786598206, 0.03144162893295288, 0.047110166400671005, 0.3108271360397339, 0.0010152263566851616, 0.0006391875213012099, 0.0006230738945305347, 0.00013654485519509763, 0.00012888931087218225, 0.00017961599223781377, 2.554841739765834e-05, 0.0001141789834946394, 0.004103336948901415, 0.30921727418899536], [0.0128662483766675, 0.021574730053544044, 0.045648153871297836, 0.1595083624124527, 0.0832856297492981, 0.0511171817779541, 0.05326658487319946, 0.28108298778533936, 0.0017035874770954251, 0.0007465326343663037, 0.0008814543834887445, 0.00021056810510344803, 0.0016528988489881158, 0.0007207044982351363, 0.00017595083045307547, 0.000540193694178015, 0.005646087229251862, 0.2793722152709961], [0.01650756038725376, 0.017370162531733513, 0.02776099555194378, 0.05718556046485901, 0.03310411050915718, 0.029786929488182068, 0.06338715553283691, 0.37412595748901367, 0.0009676179033704102, 0.0007505370303988457, 0.00020019349176436663, 0.00010222207492915913, 0.00020879300427623093, 0.00013269911869429052, 8.885706483852118e-05, 0.00023076360230334103, 0.006378417368978262, 0.37171152234077454], [0.001320573384873569, 0.02112177573144436, 0.00078882573870942, 0.0035127478186041117, 0.002810243982821703, 0.0011248545488342643, 0.008719894103705883, 0.4653289020061493, 0.009275288321077824, 0.0024855672381818295, 0.0010535444598644972, 0.0036750000435858965, 0.0030698601622134447, 0.0013927114196121693, 0.0018560695461928844, 0.0003926416684407741, 0.008970537222921848, 0.46310096979141235], [0.0020373601000756025, 0.0002334932651137933, 0.00024932503583841026, 0.0002819305518642068, 0.00030200916808098555, 0.0001846261293394491, 0.002429487183690071, 0.4835171103477478, 0.014109372161328793, 0.0034968170803040266, 0.0042427233420312405, 0.0018762131221592426, 0.0004942778614349663, 0.000119127900688909, 1.4539596122631337e-05, 0.00044640194391831756, 0.006545055657625198, 0.479420006275177], [0.016087517142295837, 0.003133656457066536, 0.0006052759708836675, 0.0005649469676427543, 0.00024796498473733664, 0.000685958715621382, 0.007310146000236273, 0.3347473442554474, 0.20004133880138397, 0.025215426459908485, 0.03432096913456917, 0.025148525834083557, 0.0045240093022584915, 0.0009061272721737623, 0.000816685555037111, 0.0012317073997110128, 0.013669912703335285, 0.3307425081729889], [0.01101798564195633, 0.00022815207194071263, 5.0276816182304174e-05, 0.00010124264372279868, 3.662201561382972e-05, 0.0002312665164936334, 0.0023055875208228827, 0.29386597871780396, 0.29890191555023193, 0.05128135159611702, 0.0193930733948946, 0.01304793730378151, 0.013375913724303246, 0.0016636126674711704, 0.00011260924657108262, 0.0003172166761942208, 0.003347430843859911, 0.2907218337059021], [0.012371794320642948, 0.00037118876934982836, 4.9032369133783504e-05, 9.760192187968642e-05, 8.330099080922082e-05, 0.00039955563261173666, 0.00328175351023674, 0.3320257365703583, 0.20057514309883118, 0.04440563917160034, 0.03294280543923378, 0.01272515207529068, 0.020374519750475883, 0.004847241099923849, 0.000514045066665858, 0.001047333120368421, 0.004732571076601744, 0.32915550470352173], [0.01505112461745739, 0.00020861977827735245, 1.2440397767932154e-05, 0.00015205959789454937, 0.00021048763301223516, 0.0006974166026338935, 0.0011141487630084157, 0.03924204036593437, 0.06885363161563873, 0.062077902257442474, 0.6160556077957153, 0.09865061193704605, 0.038207098841667175, 0.008680247701704502, 0.007429773453623056, 0.0014339692424982786, 0.0030279536731541157, 0.03889484331011772], [0.006303845439106226, 0.00013369455700740218, 4.528972931439057e-05, 5.521931961993687e-05, 2.4003078578971326e-05, 0.00021608064707834274, 0.00018654232553672045, 0.10581665486097336, 0.004308381117880344, 0.013433510437607765, 0.01945858635008335, 0.017482150346040726, 0.6761730313301086, 0.030867910012602806, 0.003231524955481291, 0.013448244892060757, 0.003976153675466776, 0.10483919084072113], [0.010721512138843536, 0.0004249968333169818, 1.0030971679952927e-05, 9.187637624563649e-05, 2.7815065550385043e-05, 0.00013184263661969453, 0.0002145941834896803, 0.11136484146118164, 0.018052075058221817, 0.00682453578338027, 0.040650613605976105, 0.018085967749357224, 0.6532189249992371, 0.011425470001995564, 0.009175922721624374, 0.004744285251945257, 0.004408958368003368, 0.11042582988739014], [0.04096667468547821, 0.0005897438386455178, 9.655301255406812e-05, 0.0005358662456274033, 0.00014150395873002708, 0.0010689528426155448, 0.000575839658267796, 0.12950710952281952, 0.004532185848802328, 0.012512191198766232, 0.017870109528303146, 0.01477788109332323, 0.27780604362487793, 0.11799512803554535, 0.19233402609825134, 0.0347299762070179, 0.025127271190285683, 0.12883298099040985], [0.01642780564725399, 0.0007707946933805943, 0.0004469251143746078, 0.0003390251658856869, 0.0001602821284905076, 0.00020823873637709767, 0.0008648918592371047, 0.39459383487701416, 0.003554544411599636, 0.0061580948531627655, 0.003981753718107939, 0.0038765943609178066, 0.014454531483352184, 0.022830048575997353, 0.027372470125555992, 0.022333567962050438, 0.08901149779558182, 0.39261507987976074], [0.0013212139019742608, 0.02106444165110588, 0.000785943353548646, 0.003510724985972047, 0.002809367375448346, 0.0011240765452384949, 0.008711636066436768, 0.4653952419757843, 0.009256224147975445, 0.002481907606124878, 0.0010532180313020945, 0.003674465464428067, 0.003073080675676465, 0.001395158120431006, 0.0018571591936051846, 0.0003927380603272468, 0.008929652161896229, 0.4631638824939728]], [[0.003969502169638872, 0.01257952768355608, 0.0014828767161816359, 0.003658238798379898, 0.0018746239366009831, 0.000527728465385735, 0.0006019650609232485, 0.045413777232170105, 0.8255900740623474, 0.017119169235229492, 0.013761191628873348, 0.0025100421626120806, 0.015160192735493183, 0.00494123762473464, 0.0006171527202241123, 0.0024845118168741465, 0.0026149291079491377, 0.045093290507793427], [0.03376736491918564, 0.02624046616256237, 0.09826327115297318, 0.49166977405548096, 0.0443747341632843, 0.02409864403307438, 0.01706537976861, 0.12298266589641571, 0.002857060171663761, 0.0015037168050184846, 0.0023935257922858, 0.0012691289884969592, 0.0014635312836617231, 0.0003694547340273857, 0.004346905741840601, 0.000949643028434366, 0.00462000397965312, 0.12176477164030075], [0.03816201165318489, 0.010690726339817047, 0.008575605228543282, 0.11674462258815765, 0.011617607437074184, 0.012048467062413692, 0.013223858550190926, 0.3950999975204468, 0.00017782034410629421, 0.0001876934984466061, 0.0001616015943000093, 8.265699580078945e-05, 0.000511318736243993, 0.00020436801423784345, 0.0003378496039658785, 0.0011588378110900521, 0.001781668048352003, 0.38923338055610657], [0.03546600788831711, 0.0045999218709766865, 0.014416317455470562, 0.021481633186340332, 0.22190208733081818, 0.40573930740356445, 0.0730026587843895, 0.11045173555612564, 0.0006188646657392383, 0.0001799718156689778, 8.400949445785955e-05, 7.241228740895167e-05, 9.632902219891548e-05, 0.00011555966193554923, 6.104312342358753e-05, 0.00021376564109232277, 0.0018944800831377506, 0.10960405319929123], [0.02147112600505352, 0.005898535251617432, 0.023070750758051872, 0.018133942037820816, 0.05560937523841858, 0.27779847383499146, 0.09185220301151276, 0.25252285599708557, 0.0003541092446539551, 0.00036157225258648396, 0.00011625736078713089, 3.6771161830984056e-05, 7.849198300391436e-05, 4.8098794650286436e-05, 5.9549882280407473e-05, 5.759340638178401e-05, 0.0008176950505003333, 0.2517125904560089], [0.008070970885455608, 0.007869608700275421, 0.007888351567089558, 0.029925720766186714, 0.014506149105727673, 0.004757189657539129, 0.3125043511390686, 0.3057909905910492, 0.0008989110356196761, 0.0006209244602359831, 0.0003623803786467761, 7.483173976652324e-05, 0.00016446711379103363, 0.00010517019109101966, 0.00017119693802669644, 0.00017368233238812536, 0.0017629835056141019, 0.30435213446617126], [0.012778351083397865, 0.010715442709624767, 0.0038239823188632727, 0.008288733661174774, 0.01263072807341814, 0.0022610174492001534, 0.018902922049164772, 0.45526716113090515, 0.019165638834238052, 0.00172859663143754, 0.001240239362232387, 0.001619248534552753, 0.0014987903414294124, 0.00012164933286840096, 2.418308940832503e-05, 6.70822337269783e-05, 0.00024413120991084725, 0.44962209463119507], [0.005108638200908899, 0.008485332131385803, 0.0065895006991922855, 0.006771457847207785, 0.003939557820558548, 0.001196507248096168, 0.015056723728775978, 0.44964849948883057, 0.006074128672480583, 0.006539452355355024, 0.0023363055661320686, 0.0031349281780421734, 0.004733178298920393, 0.0035488782450556755, 0.008176732808351517, 0.004378313664346933, 0.017132198438048363, 0.4471496641635895], [0.011817888356745243, 0.000634176074527204, 0.0005601576995104551, 0.0006655228207819164, 0.00284595531411469, 0.0008428902365267277, 0.0020386625546962023, 0.14202013611793518, 0.11172430962324142, 0.13493962585926056, 0.24618855118751526, 0.15189166367053986, 0.04082086682319641, 0.00791765097528696, 0.00030873878858983517, 0.0014822013908997178, 0.0023580908309668303, 0.14094287157058716], [0.060308389365673065, 0.0003023503231815994, 0.00026544707361608744, 0.0011064837453886867, 0.0003962899500038475, 0.0003570162516552955, 0.0009120738250203431, 0.1327182948589325, 0.007835477590560913, 0.024260230362415314, 0.3249751031398773, 0.10213549435138702, 0.18481327593326569, 0.009435553103685379, 0.0029146599117666483, 0.01215957198292017, 0.003227263456210494, 0.13187702000141144], [0.07369168102741241, 0.00023076521756593138, 0.0001246169558726251, 8.543946751160547e-05, 0.00019704832811839879, 0.00032051015296019614, 0.0004938419442623854, 0.15644682943820953, 0.012989765033125877, 0.025875240564346313, 0.023394618183374405, 0.28963664174079895, 0.23246793448925018, 0.015953166410326958, 0.002105123596265912, 0.007280472666025162, 0.004017055034637451, 0.15468920767307281], [0.024392275139689445, 0.001122897956520319, 0.000502153707202524, 0.00028037428273819387, 0.000392577814636752, 0.00027350406162440777, 0.00042290077544748783, 0.1729099452495575, 0.009640964679419994, 0.05358132719993591, 0.21807551383972168, 0.031131450086832047, 0.22167791426181793, 0.052471183240413666, 0.008676049299538136, 0.021627817302942276, 0.010593825951218605, 0.17222729325294495], [0.013675125315785408, 0.0006388830952346325, 0.000585226051043719, 3.503863263176754e-05, 9.8469688964542e-05, 0.00034462183248251677, 0.00018418327090330422, 0.2273574024438858, 0.0014181563165038824, 0.00642968388274312, 0.004585898015648127, 0.010099072009325027, 0.026246793568134308, 0.3334694504737854, 0.0965573862195015, 0.02934039942920208, 0.02047708071768284, 0.22845718264579773], [0.026937512680888176, 0.0005549369961954653, 0.000770975137129426, 0.00025088211987167597, 0.00010401198960607871, 0.00010790403030114248, 0.00019856082508340478, 0.23651538789272308, 0.0009625327656976879, 0.002464547986164689, 0.007467655930668116, 0.006594952195882797, 0.032554153352975845, 0.01249753963202238, 0.3159988522529602, 0.06341829895973206, 0.056838732212781906, 0.23576265573501587], [0.015613829717040062, 0.00019345112377777696, 0.0002589585492387414, 0.00018742497195489705, 0.0002090691268676892, 2.982537989737466e-05, 2.8957609174540266e-05, 0.252867192029953, 0.00010565507545834407, 0.00023520950344391167, 0.0007280115969479084, 0.0055565666407346725, 0.020048445090651512, 0.021288657560944557, 0.00784510001540184, 0.3855004906654358, 0.03890497609972954, 0.25039809942245483], [0.004645058885216713, 5.170485019334592e-05, 4.014025398646481e-05, 8.966470340965316e-05, 7.701010326854885e-05, 2.4341788957826793e-05, 0.000135847381898202, 0.46545132994651794, 0.0002459289680700749, 0.00012543954653665423, 0.00012812289060093462, 0.00013916310854256153, 0.001820615609176457, 0.0022443567868322134, 0.006827367935329676, 0.008864760398864746, 0.04500599950551987, 0.46408307552337646], [0.01626325584948063, 0.0014857491478323936, 0.0009607687243260443, 0.001464369473978877, 0.0011640123557299376, 0.00022834408446215093, 0.00042222090996801853, 0.4678059220314026, 0.009290090762078762, 0.0013528758427128196, 0.0003208205453120172, 0.0008764620870351791, 0.0018989588133990765, 0.0012978791492059827, 0.00037339067785069346, 0.0024701012298464775, 0.027039363980293274, 0.46528536081314087], [0.005099104717373848, 0.008477045223116875, 0.00661819614470005, 0.006784116383641958, 0.003922952804714441, 0.001188013469800353, 0.015092844143509865, 0.4497091472148895, 0.005995586980134249, 0.006497753784060478, 0.0023392660077661276, 0.0031339593697339296, 0.004678028170019388, 0.0035338206216692924, 0.008244600147008896, 0.004376344848424196, 0.01710747741162777, 0.447201669216156]], [[0.008247443474829197, 0.002816413762047887, 0.00600821990519762, 0.0011385357938706875, 0.0005382300587370992, 0.0011564248707145452, 0.0016848298255354166, 0.14612874388694763, 0.018574051558971405, 0.0763675644993782, 0.009258811362087727, 0.004317607264965773, 0.007590665947645903, 0.2764110565185547, 0.037232525646686554, 0.17672036588191986, 0.07996208965778351, 0.1458463817834854], [0.004182016476988792, 0.01182102132588625, 0.21631711721420288, 0.034075286239385605, 0.01273618545383215, 0.009955987334251404, 0.005343809723854065, 0.3453264832496643, 0.0006402534781955183, 0.004158944357186556, 0.0017625316977500916, 0.002574850572273135, 0.0006458315765485168, 0.0017979649128392339, 0.0015021010767668486, 0.001274686655960977, 0.00162304297555238, 0.34426191449165344], [0.010286623612046242, 0.028465386480093002, 0.018378525972366333, 0.015107817947864532, 0.03190508857369423, 0.0075805941596627235, 0.0046639153733849525, 0.44160032272338867, 0.00014390626165550202, 0.0010316305560991168, 0.0001327868812950328, 0.0007357039721682668, 0.000191757659194991, 0.00019533834711182863, 0.0003613782173488289, 0.0001193076022900641, 0.0008164099417626858, 0.4382835030555725], [0.011566615663468838, 0.04819989576935768, 0.028468670323491096, 0.016766829416155815, 0.00974301714450121, 0.03461141884326935, 0.009259698912501335, 0.41871845722198486, 0.00025676103541627526, 0.0014121555723249912, 0.00019569290452636778, 0.0017484136624261737, 0.00024722618400119245, 0.00024318366195075214, 0.0001951500162249431, 0.000252362311584875, 0.0017380672506988049, 0.41637641191482544], [0.013766543939709663, 0.017683319747447968, 0.000722832337487489, 0.06131168082356453, 0.01137147843837738, 0.004767164587974548, 0.005644233897328377, 0.4431621730327606, 0.0003724883426912129, 0.00021470803767442703, 0.00011587402696022764, 5.6924691307358444e-05, 3.9539743738714606e-05, 1.929449717863463e-05, 4.187597824056866e-06, 3.0248711482272483e-05, 0.0005616232519969344, 0.44015568494796753], [0.0060445466078817844, 0.01164760161191225, 0.0013837093720212579, 0.06317942589521408, 0.09100787341594696, 0.0029838383197784424, 0.007420079316943884, 0.40922898054122925, 8.706039079697803e-05, 8.074053039308637e-05, 2.907108500949107e-05, 5.8161105698673055e-05, 4.0204999095294625e-05, 8.383581734960899e-05, 1.591242107679136e-05, 3.235643816879019e-05, 0.00041689988574944437, 0.406259685754776], [0.032161008566617966, 0.010584022849798203, 0.0092160077765584, 0.01128107588738203, 0.029773017391562462, 0.007809610106050968, 0.0522514283657074, 0.4211822748184204, 0.00102250708732754, 0.0016722879372537136, 0.0002510949852876365, 0.0007945416728034616, 3.263825783506036e-05, 0.00011504554277053103, 0.00013754762767348439, 0.00028992712032049894, 0.0027930138166993856, 0.41863298416137695], [0.015181370079517365, 0.006408156361430883, 0.007607686333358288, 0.01065170019865036, 0.006129681598395109, 0.0024463848676532507, 0.003362618386745453, 0.45542198419570923, 0.0008729765540920198, 0.0039505986496806145, 0.007388199679553509, 0.003560049459338188, 0.010845120064914227, 0.0036114456597715616, 0.0036602281033992767, 0.0016491906717419624, 0.004032702650874853, 0.4532198905944824], [0.014200188219547272, 0.0005860925302840769, 0.00016889662947505713, 0.0005540382699109614, 0.00010086732072522864, 0.00016858283197507262, 0.0017211150843650103, 0.4494353234767914, 0.02560596540570259, 0.03331351280212402, 0.006417346652597189, 0.014711021445691586, 0.0009417634573765099, 0.0005411988240666687, 4.0815612010192126e-05, 0.0004262283619027585, 0.005276425275951624, 0.44579067826271057], [0.008584382012486458, 0.0005467188311740756, 0.0007814770215190947, 0.0011910529574379325, 0.0001276609255000949, 0.0006169656408019364, 0.0013619710225611925, 0.3699909448623657, 0.014661240391433239, 0.0052435328252613544, 0.044780880212783813, 0.06394939869642258, 0.11221115291118622, 0.0021647082176059484, 0.0006920301239006221, 0.002420577686280012, 0.003185209119692445, 0.36749014258384705], [0.003927377983927727, 0.0002569934003986418, 4.808433004654944e-05, 3.2888252462726086e-05, 9.218096238328144e-06, 2.2603482648264617e-05, 0.001038766698911786, 0.2935420274734497, 0.0037835179828107357, 0.01143865566700697, 0.0034838702995330095, 0.32152360677719116, 0.06624939292669296, 0.0007720467401668429, 0.0007473226869478822, 0.0003104837378486991, 0.000946320709772408, 0.29186689853668213], [0.001197131467051804, 0.00016214334755204618, 1.7249150914722122e-05, 0.0009461467852815986, 0.00011331559653626755, 4.9766960728447884e-05, 0.00011373761662980542, 0.15649928152561188, 0.007998321205377579, 0.009855616837739944, 0.6284424066543579, 0.022050749510526657, 0.014359510503709316, 0.0013128621503710747, 0.00022072491992730647, 0.0009575151489116251, 0.0004313573008403182, 0.15527227520942688], [0.012962265871465206, 0.0002732524008024484, 0.00015645349049009383, 9.163210779661313e-05, 4.9000194849213585e-05, 0.00032009463757276535, 0.0004199116083327681, 0.4104534685611725, 0.00046375885722227395, 0.013947609812021255, 0.05021406337618828, 0.024885185062885284, 0.01871352642774582, 0.04368758574128151, 0.008200853131711483, 0.003934172447770834, 0.0032112181652337313, 0.40801599621772766], [0.006350010633468628, 0.0006185273523442447, 0.00034835527185350657, 3.490694143692963e-05, 2.4068280254141428e-05, 2.9817081667715684e-05, 0.00011548875772859901, 0.4518931806087494, 0.0001715605176286772, 0.0016938390908762813, 0.0008668094524182379, 0.0018982070032507181, 0.04280824214220047, 0.009452487342059612, 0.031136678531765938, 0.0009420808055438101, 0.0020883462857455015, 0.44952741265296936], [0.010732915252447128, 0.0007329983054660261, 0.00018865354650188237, 4.775397974299267e-05, 1.7467238649260253e-05, 3.660691436380148e-05, 0.0002185232879128307, 0.36163878440856934, 0.00023844462702982128, 0.0025841989554464817, 0.0016025567892938852, 0.07874348759651184, 0.11395314335823059, 0.02271920070052147, 0.0235285721719265, 0.01399135310202837, 0.008950773626565933, 0.3600744903087616], [0.014588771387934685, 0.0006741524557583034, 0.00041906212572939694, 0.00012240612704772502, 7.341891614487395e-05, 0.0001579479139763862, 7.422607450280339e-05, 0.21881666779518127, 6.514575215987861e-05, 0.0017151087522506714, 0.003643926465883851, 0.0019789873622357845, 0.00489234272390604, 0.012301226146519184, 0.5151316523551941, 0.0015710191801190376, 0.005680277477949858, 0.2180936336517334], [0.03403805196285248, 0.001776989782229066, 0.0020504712592810392, 0.0009265231201425195, 0.0012850858038291335, 0.00026022779638879, 0.000903844484128058, 0.4242282509803772, 0.0023154644295573235, 0.006384273059666157, 0.0012632581638172269, 0.005996176972985268, 0.0010924130911007524, 0.0060777971521019936, 0.007183297071605921, 0.019482454285025597, 0.06262211501598358, 0.4221133589744568], [0.015141116455197334, 0.00640959432348609, 0.0076100751757621765, 0.01065982598811388, 0.00612041587010026, 0.00244323187507689, 0.003355981083586812, 0.4554770290851593, 0.0008715227013453841, 0.00394716439768672, 0.007368119899183512, 0.003549046814441681, 0.010844343341886997, 0.0036036730743944645, 0.003657449735328555, 0.001647604862228036, 0.004019342362880707, 0.4532744288444519]], [[0.007964424788951874, 0.024657774716615677, 0.01107295136898756, 0.01683739572763443, 0.004388827830553055, 0.02030966989696026, 0.01642514206469059, 0.4342079758644104, 0.004886533599346876, 0.009104635566473007, 0.0005058032111264765, 0.0010017750319093466, 0.001944590825587511, 0.003678226610645652, 0.0017108506290242076, 0.005290872883051634, 0.003678280860185623, 0.4323343336582184], [0.012576590292155743, 0.032333843410015106, 0.005817724391818047, 0.016120007261633873, 0.003129872726276517, 0.0016563081881031394, 0.09172562509775162, 0.4156753420829773, 0.0004817847511731088, 0.00046015781117603183, 8.886118303053081e-05, 0.0004826872900594026, 0.0006096035940572619, 0.00017015224148053676, 0.00041245625470764935, 8.88295762706548e-05, 0.004345443099737167, 0.4138246476650238], [0.01132385153323412, 0.03296910971403122, 0.0029438857454806566, 0.008610842749476433, 0.0021301484666764736, 0.0008909472962841392, 0.004933223128318787, 0.46737608313560486, 5.6441404012730345e-05, 0.001178188482299447, 0.000307776324916631, 0.0002572492230683565, 0.00021204650693107396, 0.0002818026696331799, 0.0002053814532700926, 8.1874561146833e-05, 0.0008810904109850526, 0.46535998582839966], [0.007288050837814808, 0.09565132856369019, 0.04088825732469559, 0.01471093762665987, 0.008887087926268578, 0.004397527780383825, 0.006032345816493034, 0.4078465700149536, 0.0030725260730832815, 0.0006798667600378394, 0.000613957759924233, 0.0009086705395020545, 0.00025066573289223015, 7.726955664111301e-05, 0.0009307723958045244, 6.450008368119597e-05, 0.0014579849084839225, 0.40624159574508667], [0.0062510184943675995, 0.017535101622343063, 0.0050973291508853436, 0.005719579756259918, 0.07138656079769135, 0.033305343240499496, 0.012955054640769958, 0.4212624728679657, 0.0013525765389204025, 0.0001746485650073737, 0.00016151696036104113, 0.00340035418048501, 2.6882795282290317e-05, 3.707204814418219e-05, 0.00013333451352082193, 2.6581257770885713e-05, 0.001735655590891838, 0.419438898563385], [0.04220925271511078, 0.051100701093673706, 0.022732840850949287, 0.07889988273382187, 0.055231671780347824, 0.027987884357571602, 0.05365772172808647, 0.3319677710533142, 0.00033690215786919, 0.0015601421473547816, 0.00028674094937741756, 0.00032714317785575986, 0.00022854581766296178, 6.151005072752014e-05, 6.0662143368972465e-05, 3.397095133550465e-05, 0.003235274227336049, 0.33008137345314026], [0.006321406923234463, 0.019908711314201355, 0.010871808975934982, 0.07596098631620407, 0.012492207810282707, 0.058407314121723175, 0.04667467251420021, 0.383708655834198, 0.0010367842623963952, 0.0003400773275643587, 7.320934673771262e-05, 0.0001604340213816613, 2.4449342163279653e-05, 0.00011387933045625687, 5.860356759512797e-05, 0.00023743795463815331, 0.0017728045349940658, 0.38183653354644775], [0.011104216799139977, 0.005494651850312948, 0.0015335838543251157, 0.002811003476381302, 0.0007445435039699078, 0.0009738922817632556, 0.015768911689519882, 0.469172865152359, 0.0008529568440280855, 0.0025412938557565212, 0.0014579178532585502, 0.0018234021263197064, 0.004293264355510473, 0.0017566928872838616, 0.002144526457414031, 0.0007760200533084571, 0.010045595467090607, 0.4667046070098877], [0.03576231375336647, 0.00034482876071706414, 0.0002353066811338067, 0.0005003531696274877, 0.00019469870312605053, 0.001384042901918292, 0.014546847902238369, 0.4578434228897095, 0.010388156399130821, 0.002508786739781499, 0.004892739001661539, 0.0033036337699741125, 0.0010645384900271893, 0.0005236140568740666, 8.704886568011716e-05, 8.377676567761227e-05, 0.014479415491223335, 0.45185649394989014], [0.03732180595397949, 0.004450242035090923, 0.00032887805718928576, 0.0008396513876505196, 0.0006977726588957012, 0.00014467633445747197, 0.004748932551592588, 0.38144850730895996, 0.16916951537132263, 0.007092652376741171, 0.0044631012715399265, 0.0031410029623657465, 0.001491966308094561, 0.0010176970390602946, 0.00018182024359703064, 0.0001347616343991831, 0.005440655630081892, 0.3778863847255707], [0.012147683650255203, 0.00025290000485256314, 5.8416128013050184e-05, 7.698246918153018e-05, 9.157562089967541e-06, 3.457920320215635e-05, 0.0009491703822277486, 0.4279460608959198, 0.04970310255885124, 0.015220996923744678, 0.050123635679483414, 0.013165716081857681, 0.0012644595699384809, 0.0012568177189677954, 0.0014982923166826367, 0.00010853722778847441, 0.001567745115607977, 0.4246157705783844], [0.013947725296020508, 0.0003372949140612036, 0.00019174693443346769, 2.134161513822619e-05, 0.00015076146519277245, 0.0001448078255634755, 0.0018623899668455124, 0.3976404070854187, 0.07441766560077667, 0.024462591856718063, 0.042087145149707794, 0.0405251570045948, 0.0003986678784713149, 0.002238936023786664, 0.005199812352657318, 2.0339934053481556e-05, 0.0028705454897135496, 0.3934825360774994], [0.012538210488855839, 0.00023219869763124734, 0.0005286125815473497, 7.053348235785961e-05, 2.1038789782323875e-05, 0.0006732290494255722, 0.00035812632995657623, 0.23972468078136444, 0.00623854948207736, 0.14925561845302582, 0.13930116593837738, 0.05284510925412178, 0.014457757584750652, 0.13599297404289246, 0.0020307728555053473, 0.00638228515163064, 0.000765557459089905, 0.23858362436294556], [0.008948990143835545, 0.0003795944503508508, 8.387718116864562e-05, 5.4708692914573476e-05, 6.875120743643492e-05, 5.2267161663621664e-05, 0.0002052202180493623, 0.45003005862236023, 0.00026847096160054207, 0.004880684893578291, 0.013495314866304398, 0.030586782842874527, 0.030881818383932114, 0.003911431413143873, 0.00714487861841917, 0.0006739698583260179, 0.0013587020803242922, 0.44697439670562744], [0.002452543703839183, 0.00014394865138456225, 0.00010121901868842542, 2.4338964067283086e-05, 1.8082853785017505e-05, 0.0002489649341441691, 7.786827336531132e-05, 0.12210171669721603, 0.0003416731778997928, 0.0013829631498083472, 0.003258178010582924, 0.00905757024884224, 0.6144006252288818, 0.09566916525363922, 0.020643698051571846, 0.006753774359822273, 0.0016283441800624132, 0.12169530242681503], [0.018234575167298317, 0.000609167676884681, 0.0003605839447118342, 0.00038770827814005315, 5.129828059580177e-05, 0.00041568910819478333, 0.00021164296776987612, 0.3616745173931122, 0.0017728905659168959, 0.004426000639796257, 0.021076945587992668, 0.00810248963534832, 0.08356691896915436, 0.09862613677978516, 0.021102534607052803, 0.011694340966641903, 0.007774583529680967, 0.3599119782447815], [0.008446455001831055, 0.0012707831338047981, 0.0003553503775037825, 0.0008549292106181383, 6.734312773915008e-05, 0.0002564139722380787, 0.0007180441753007472, 0.4440603256225586, 0.0021547386422753334, 0.0016069068806245923, 0.0020337183959782124, 0.006722195539623499, 0.00277516501955688, 0.012569190002977848, 0.026878617703914642, 0.016035115346312523, 0.0315663143992424, 0.4416283667087555], [0.011094655841588974, 0.005488550756126642, 0.0015328506706282496, 0.0028109955601394176, 0.0007440278423018754, 0.0009709802689030766, 0.01574062928557396, 0.4691983759403229, 0.0008523413562215865, 0.0025469372048974037, 0.0014614368556067348, 0.0018301476957276464, 0.00431244820356369, 0.0017568647162988782, 0.0021463651210069656, 0.0007763162138871849, 0.010006734170019627, 0.4667293131351471]], [[0.011037410236895084, 0.005444298032671213, 0.0039802007377147675, 0.0038440204225480556, 0.003202727297320962, 0.002901167841628194, 0.002189015271142125, 0.05924060195684433, 0.0899021252989769, 0.17659060657024384, 0.07919451594352722, 0.08243147283792496, 0.14169201254844666, 0.11415804922580719, 0.045501820743083954, 0.07922226935625076, 0.040335070341825485, 0.05913272127509117], [0.015009195543825626, 0.036638207733631134, 0.07299177348613739, 0.09844609349966049, 0.10432619601488113, 0.08664881438016891, 0.10677695274353027, 0.2187950611114502, 0.002300125313922763, 0.004484564531594515, 0.0021154270507395267, 0.003958535380661488, 0.008073513396084309, 0.004550612065941095, 0.003306094091385603, 0.005925762467086315, 0.007595621515065432, 0.21805739402770996], [0.005992196500301361, 0.003083621384575963, 0.008319023065268993, 0.004736252129077911, 0.0032520585227757692, 0.020656941458582878, 0.008229426108300686, 0.4723682999610901, 0.00028949961415492, 0.0005360344657674432, 0.00013085313548799604, 6.39880818198435e-05, 0.000452149921329692, 0.0008129618945531547, 0.00015888470807112753, 0.0012246243422850966, 0.0004934626631438732, 0.46919965744018555], [0.027191022410988808, 0.03412795066833496, 0.05208142474293709, 0.04087786003947258, 0.06434323638677597, 0.0592980794608593, 0.08865188807249069, 0.29904472827911377, 0.003989696968346834, 0.0068847546353936195, 0.001788948429748416, 0.001253086724318564, 0.003416803665459156, 0.006269571837037802, 0.002723865443840623, 0.006937449332326651, 0.002873168094083667, 0.2982464134693146], [0.00871329102665186, 0.013001693412661552, 0.008765993639826775, 0.013521227985620499, 0.010091138072311878, 0.017409728839993477, 0.04696899652481079, 0.4376659393310547, 0.0014957883395254612, 0.000442393560661003, 0.0009575400617904961, 0.00029701890889555216, 0.0013170528691262007, 0.0008582110749557614, 0.00030088957282714546, 0.001155701931566, 0.0011073644272983074, 0.4359301030635834], [0.005427089054137468, 0.010413446463644505, 0.021214943379163742, 0.008771192282438278, 0.007928679697215557, 0.027291029691696167, 0.01899779587984085, 0.448013573884964, 0.000825856055598706, 0.0005568696651607752, 0.00016484349907841533, 0.00041793915443122387, 0.0009576393640600145, 0.0005892633344046772, 0.0004337358695920557, 0.00073147815419361, 0.0006956026772968471, 0.4465689957141876], [0.015233384445309639, 0.02633974887430668, 0.02182508446276188, 0.019814610481262207, 0.016723908483982086, 0.015862951055169106, 0.022430555894970894, 0.4081510603427887, 0.004178945906460285, 0.006964591331779957, 0.0030348843429237604, 0.003117630258202553, 0.009094269014894962, 0.0072732968255877495, 0.0036418926902115345, 0.005098247434943914, 0.004251591395586729, 0.4069632589817047], [0.007630374748259783, 0.0005940346163697541, 0.0006600425112992525, 0.0005489684990607202, 0.0006564981304109097, 0.0008835440967231989, 0.0015093244146555662, 0.49131637811660767, 0.001102454960346222, 0.0004993004840798676, 0.00028017302975058556, 0.0003671131271403283, 0.0010058555053547025, 0.0008047128212638199, 0.0009942862670868635, 0.0011586941545829177, 0.0018165742512792349, 0.48817169666290283], [0.02550077810883522, 0.0022099388297647238, 0.004549129866063595, 0.004527718294411898, 0.00902981124818325, 0.002267870819196105, 0.004983158782124519, 0.11827757954597473, 0.04638034850358963, 0.08822289109230042, 0.06137065961956978, 0.07268624007701874, 0.11073093116283417, 0.1017875224351883, 0.008866630494594574, 0.07861373573541641, 0.1424252688884735, 0.11756975948810577], [0.01441687997430563, 0.0014773741131648421, 0.0022588782012462616, 0.0013969800202175975, 0.0012822472490370274, 0.0007522169034928083, 0.0030600621830672026, 0.09724225103855133, 0.010274224914610386, 0.10107214748859406, 0.00964251346886158, 0.025585193186998367, 0.036982063204050064, 0.12055013328790665, 0.2273724377155304, 0.16263644397258759, 0.08693636953830719, 0.09706158190965652], [0.014231368899345398, 0.001402979833073914, 0.0017495177453383803, 0.0006446999032050371, 0.0006063150358386338, 0.0007761239539831877, 0.0019175810739398003, 0.18625155091285706, 0.01896492764353752, 0.015875592827796936, 0.019389651715755463, 0.024824252352118492, 0.07430285215377808, 0.09813601523637772, 0.05429607257246971, 0.1818333864212036, 0.11906706541776657, 0.18573006987571716], [0.0163023192435503, 0.001263883663341403, 0.001103888964280486, 0.0007803551270626485, 0.0009950780076906085, 0.0005197437712922692, 0.0015124303754419088, 0.20973260700702667, 0.029897311702370644, 0.006372870411723852, 0.009290107525885105, 0.006825609598308802, 0.034313350915908813, 0.1970190703868866, 0.06322161853313446, 0.14006370306015015, 0.07198595255613327, 0.20880010724067688], [0.04954914376139641, 0.000980122946202755, 0.0006647204863838851, 0.0005868381704203784, 0.00047434287262149155, 0.001599677256308496, 0.000943496881518513, 0.27301639318466187, 0.0017968544270843267, 0.003986758179962635, 0.01026272401213646, 0.005640234332531691, 0.012612578459084034, 0.04261745885014534, 0.2071552276611328, 0.08112648129463196, 0.03489911928772926, 0.27208781242370605], [0.013362865895032883, 0.00034473463892936707, 0.000529858167283237, 0.00029003291274420917, 0.0003662793315015733, 0.00049441127339378, 0.0003265977429691702, 0.3909473121166229, 0.0013629099121317267, 0.00414385786280036, 0.0026397097390145063, 0.0037034270353615284, 0.01582268252968788, 0.041990309953689575, 0.012009699828922749, 0.10644078999757767, 0.01591549441218376, 0.38930898904800415], [0.005483370274305344, 0.00015438783157151192, 0.0005999414133839309, 0.00011008365254383534, 0.00025017998996190727, 0.00016344421601388603, 0.00030383578268811107, 0.427717000246048, 0.0011429026490077376, 0.0005902023403905332, 0.000748976890463382, 0.001777237863279879, 0.0046209185384213924, 0.01838986948132515, 0.05330997332930565, 0.04589875787496567, 0.012881324626505375, 0.4258575439453125], [0.004431731533259153, 0.00017697237490210682, 0.00027749204309657216, 0.00021232715516816825, 0.00014516901865135878, 0.00030759215587750077, 0.0001712496450636536, 0.47397634387016296, 0.0017971385968849063, 0.0009865593165159225, 0.0015030362410470843, 0.0005832983297295868, 0.0036907996982336044, 0.019404109567403793, 0.0018247762927785516, 0.01399683766067028, 0.0048743863590061665, 0.4716401994228363], [0.011343167163431644, 0.0009208053234033287, 0.0009765942813828588, 0.0010998096549883485, 0.0012656304752454162, 0.000877679733093828, 0.0021240406204015017, 0.42095494270324707, 0.024457523599267006, 0.02024953067302704, 0.007310026325285435, 0.005480256397277117, 0.015846649184823036, 0.017496969550848007, 0.005921155214309692, 0.01972387544810772, 0.02535494603216648, 0.41859638690948486], [0.007621467113494873, 0.0005937133100815117, 0.0006596531602554023, 0.0005478368257172406, 0.0006580709596164525, 0.0008825160330161452, 0.0015079219592735171, 0.4913436472415924, 0.0010979727376252413, 0.0004963210667483509, 0.00027880133711732924, 0.00036584766348823905, 0.0009990036487579346, 0.0008013406186364591, 0.0009885040344670415, 0.001151922275312245, 0.0018077729037031531, 0.4881976246833801]]], [[[0.026481814682483673, 0.08557512611150742, 0.2443300187587738, 0.17964591085910797, 0.03706035390496254, 0.04112624749541283, 0.16170041263103485, 0.09999113529920578, 0.002200931776314974, 0.0013681486016139388, 0.0015149663668125868, 0.002307536778971553, 0.00289552821777761, 0.002935160417109728, 0.0006531931576319039, 0.004274381790310144, 0.006313334219157696, 0.09962578862905502], [0.09190548956394196, 0.045806583017110825, 0.01197098195552826, 0.022974859923124313, 0.002182434778660536, 0.006130334455519915, 0.047785766422748566, 0.36213916540145874, 0.002260102890431881, 0.014580429531633854, 0.0017724785720929503, 0.0016766012413427234, 0.0013705746969208121, 0.0005858351942151785, 0.0011421499075368047, 0.0005656285211443901, 0.02451947331428528, 0.36063116788864136], [0.06826411932706833, 0.05880553647875786, 0.02379344403743744, 0.01754595898091793, 0.000688073574565351, 0.002281118417158723, 0.019827350974082947, 0.3451470732688904, 0.0021682539954781532, 0.08902166783809662, 0.0024035682436078787, 0.0020880592055618763, 0.0010885420488193631, 0.0024484675377607346, 0.0014155535027384758, 0.002069497248157859, 0.017166920006275177, 0.34377673268318176], [0.05949222296476364, 0.010640914551913738, 0.0021794899366796017, 0.020008031278848648, 0.0037498786114156246, 0.003864527912810445, 0.032507143914699554, 0.4231923222541809, 0.0007029557600617409, 0.002720288932323456, 0.002120519755408168, 0.0016184380510821939, 0.0007109862635843456, 0.0001531702873762697, 0.00042761859367601573, 0.0001943900715559721, 0.014466827735304832, 0.42125028371810913], [0.028130728751420975, 0.004651540424674749, 0.0006185945239849389, 0.018698660656809807, 0.010386173613369465, 0.007334546186029911, 0.022737698629498482, 0.44159576296806335, 0.0013020845362916589, 0.0017661739839240909, 0.0024133739061653614, 0.004151221830397844, 0.0006561325280927122, 7.885459490353242e-05, 0.0008163995807990432, 0.00015707395505160093, 0.014889546670019627, 0.439615398645401], [0.016484146937727928, 0.008850419893860817, 0.0015243754023686051, 0.009026742540299892, 0.004476738628000021, 0.007664080243557692, 0.013671452179551125, 0.4600639343261719, 0.002373727736994624, 0.0029677539132535458, 0.0015838582767173648, 0.0013733693631365895, 0.0008263805648311973, 0.0006379680708050728, 0.001999085070565343, 0.0004980863886885345, 0.008147940039634705, 0.4578299820423126], [0.07230816036462784, 0.045247845351696014, 0.01254234928637743, 0.03451651707291603, 0.024746518582105637, 0.011442786082625389, 0.13472412526607513, 0.30964672565460205, 0.00656281178817153, 0.0033698491752147675, 0.0017822259105741978, 0.0019905862864106894, 0.0016501148929819465, 0.0010301043512299657, 0.0017108095344156027, 0.001073790597729385, 0.027082735672593117, 0.3085719048976898], [0.009328673593699932, 0.006816675420850515, 0.0037168480921536684, 0.0032009880524128675, 0.003187675727531314, 0.00495973601937294, 0.002722351811826229, 0.4398411512374878, 0.033010274171829224, 0.003313547233119607, 0.008857897482812405, 0.010466523468494415, 0.008944615721702576, 0.004075122531503439, 0.010965881869196892, 0.004849397111684084, 0.004166929982602596, 0.4375758171081543], [0.021293582394719124, 0.012416252866387367, 0.00389310740865767, 0.013543504290282726, 0.0038629695773124695, 0.004902760963886976, 0.02992946095764637, 0.4204588532447815, 0.011470659635961056, 0.00539842713624239, 0.006057856138795614, 0.0037813265807926655, 0.00125591189134866, 0.00042097095865756273, 0.0008351505384780467, 0.0011577425757423043, 0.04063452407717705, 0.41868695616722107], [0.10303620249032974, 0.022508369758725166, 0.002925269305706024, 0.010957101359963417, 0.0003733622143045068, 0.0006620035856030881, 0.04897373542189598, 0.35826388001441956, 0.00827723927795887, 0.02156267873942852, 0.004590979777276516, 0.005280553363263607, 0.0024465397000312805, 0.001542360638268292, 0.004818625282496214, 0.0017951003974303603, 0.04509545490145683, 0.35689064860343933], [0.04397024214267731, 0.009952859953045845, 0.0025434091221541166, 0.012741968967020512, 0.002532407408580184, 0.0026380212511867285, 0.0321667306125164, 0.4010145962238312, 0.004878397565335035, 0.01036154292523861, 0.017628571018576622, 0.019203942269086838, 0.003936768509447575, 0.0006974608404561877, 0.0014897871296852827, 0.002659783000126481, 0.03246055915951729, 0.399122953414917], [0.035535041242837906, 0.006202523596584797, 0.0006720859091728926, 0.005425056908279657, 0.0028979561757296324, 0.0017321699997410178, 0.017717698588967323, 0.4129545986652374, 0.006320551969110966, 0.012105853296816349, 0.018199497833848, 0.023010045289993286, 0.0033763740211725235, 0.0007328347419388592, 0.003859409363940358, 0.001880401512607932, 0.03600045293569565, 0.41137751936912537], [0.013070671819150448, 0.012995384633541107, 0.006092330440878868, 0.007229406852275133, 0.001463400898501277, 0.005683384370058775, 0.008837632834911346, 0.41879764199256897, 0.005289121996611357, 0.01908227801322937, 0.008802060969173908, 0.005820379126816988, 0.012901246547698975, 0.014740608632564545, 0.0071442387998104095, 0.01823309436440468, 0.016934288665652275, 0.41688284277915955], [0.02876579388976097, 0.005876548588275909, 0.0019749936182051897, 0.005577561445534229, 0.0005580628640018404, 0.0021727934945374727, 0.007099397014826536, 0.4265022277832031, 0.004899768158793449, 0.027099816128611565, 0.0040311082266271114, 0.004681243095546961, 0.006114488001912832, 0.01115936879068613, 0.0087629659101367, 0.014547445811331272, 0.015462907031178474, 0.42471346259117126], [0.008922280743718147, 0.0023851206060498953, 0.0015868408372625709, 0.003711308818310499, 0.0016656963853165507, 0.0022018805611878633, 0.007982584647834301, 0.4075644016265869, 0.0036005559377372265, 0.007340351119637489, 0.02116716094315052, 0.011289562098681927, 0.00831524282693863, 0.006690225098282099, 0.07876960933208466, 0.0043718102388083935, 0.01657344028353691, 0.40586185455322266], [0.00826102215796709, 0.002255165483802557, 0.0008633949910290539, 0.0015251422300934792, 0.0002569667703937739, 0.0004428161773830652, 0.008359583094716072, 0.4526274502277374, 0.0036349191796034575, 0.008383512496948242, 0.002014204626902938, 0.002102058380842209, 0.0034337141551077366, 0.007745388895273209, 0.014441857114434242, 0.012055966071784496, 0.020929574966430664, 0.45066723227500916], [0.05780795216560364, 0.020138101652264595, 0.00589833315461874, 0.013181171379983425, 0.008371427655220032, 0.0042925672605633736, 0.06037972494959831, 0.2940208315849304, 0.0403350368142128, 0.02005920372903347, 0.01206313818693161, 0.016038229689002037, 0.008184853009879589, 0.007684640120714903, 0.014960529282689095, 0.008931046351790428, 0.11469361931085587, 0.29295963048934937], [0.009329685941338539, 0.006809926126152277, 0.00371501874178648, 0.0031955232843756676, 0.003183068009093404, 0.004956008866429329, 0.002722941804677248, 0.4398528039455414, 0.033033519983291626, 0.003313704626634717, 0.008852994069457054, 0.01046090666204691, 0.0089374128729105, 0.004074262920767069, 0.01095660962164402, 0.0048489077016711235, 0.004170246887952089, 0.4375864565372467]], [[0.007456916384398937, 0.019748354330658913, 0.010614421218633652, 0.007380427327007055, 0.001003714045509696, 0.016802409663796425, 0.3041449189186096, 0.2772410213947296, 0.0030639488250017166, 0.0005095059750601649, 0.00030385382706299424, 6.385624874383211e-05, 0.000176858578925021, 0.0004810547980014235, 0.001048981212079525, 0.0010587931610643864, 0.07257451862096786, 0.27632638812065125], [0.01946539804339409, 0.028490975499153137, 0.0017422122182324529, 0.0011134325759485364, 0.0002513738290872425, 0.0009966486832126975, 0.01510295458137989, 0.4655972421169281, 0.00038089320878498256, 3.176514292135835e-05, 7.520892540924251e-05, 2.7951753509114496e-05, 0.00013713573571294546, 5.9678535762941465e-05, 5.387759301811457e-05, 2.6199009880656376e-05, 0.003572531044483185, 0.46287447214126587], [0.00020424052490852773, 0.14468541741371155, 0.0006401221035048366, 0.002674936084076762, 0.0008652980905026197, 0.0001260419376194477, 0.0010199368698522449, 0.4256056547164917, 2.2184225599630736e-05, 7.669427759537939e-06, 6.407386990758823e-06, 1.7274695665037143e-06, 6.022200614097528e-05, 9.533812772133388e-06, 1.951597550942097e-05, 2.4363735064980574e-06, 0.00048139828140847385, 0.4235672950744629], [0.00357159785926342, 0.02498128078877926, 0.3113937973976135, 0.008314848877489567, 0.00047333110705949366, 0.02731098048388958, 0.001196386874653399, 0.31127458810806274, 4.964217805536464e-05, 0.0005100687849335372, 9.33338833419839e-06, 2.286885319335852e-06, 3.891759206453571e-06, 9.981796029023826e-05, 1.1659550182230305e-05, 0.00022545503452420235, 0.000547552015632391, 0.3100234866142273], [0.02395898476243019, 0.043958880007267, 0.15956154465675354, 0.4374580383300781, 0.06464681029319763, 0.015606846660375595, 0.003314597299322486, 0.12325786799192429, 0.0007647442980669439, 0.0005388592253439128, 0.0007404804928228259, 0.0001476357429055497, 0.00020400348876137286, 0.0003949419187847525, 7.949326391099021e-05, 0.0002989856293424964, 0.0024039398413151503, 0.12266337126493454], [0.0007219218532554805, 0.020259572193026543, 0.004574962891638279, 0.2166409194469452, 0.07521393895149231, 0.0036236110609024763, 0.0075501976534724236, 0.33649593591690063, 8.246229845099151e-05, 2.471647530910559e-05, 3.105413634330034e-05, 6.2381213865592144e-06, 8.062665074248798e-06, 2.7077724098489853e-06, 1.0534075045143254e-05, 4.408897439134307e-06, 0.0005618843715637922, 0.3341867923736572], [0.000885229732375592, 0.0016856224974617362, 0.0012280596420168877, 0.0011619264259934425, 0.0017821311485022306, 0.08989909291267395, 0.03819524496793747, 0.432573527097702, 0.001059795031324029, 1.9843451809720136e-05, 9.491862329014111e-06, 4.2237384150212165e-06, 1.0712787116062827e-05, 6.910602678544819e-06, 1.757496761456423e-06, 4.1297949792351574e-05, 0.00040179063216783106, 0.4310334026813507], [0.0006792716449126601, 0.0008318563341163099, 0.00012552177940960974, 0.00019619982049334794, 0.0001526096457382664, 0.00017479478265158832, 0.003999566659331322, 0.48705998063087463, 0.0011320660123601556, 0.000918035744689405, 0.0006560370093211532, 0.0004565200943034142, 0.0006446575280278921, 0.00047826700028963387, 0.0018090190133079886, 0.0005916249356232584, 0.01530185155570507, 0.484792023897171], [0.4178440272808075, 0.0004018929903395474, 0.00011909125896636397, 4.8596179112792015e-05, 4.3285202991683036e-05, 0.0005035300855524838, 0.005253628361970186, 0.2684715688228607, 0.02136797085404396, 0.005523549858480692, 0.007082249969244003, 0.00163164921104908, 0.0001873985747806728, 0.0003760007966775447, 4.761985474033281e-05, 0.00018230860587209463, 0.003385911462828517, 0.26752984523773193], [0.004736202768981457, 0.0003182774526067078, 2.7048832635045983e-05, 6.543976724060485e-06, 8.828423005979857e-07, 1.7870430383482017e-05, 0.001882337499409914, 0.09312139451503754, 0.7912555932998657, 0.005027545616030693, 0.0076599386520683765, 0.00042211581603623927, 0.0015972097171470523, 0.00042000567191280425, 3.554657814675011e-05, 1.736118247208651e-05, 0.0008544308366253972, 0.09259969741106033], [0.0027804740238934755, 6.098761150497012e-05, 3.5907891287934035e-05, 6.488101462309714e-06, 2.852738589353976e-06, 9.855675671133213e-06, 8.193469693651423e-05, 0.06914256513118744, 0.011617882177233696, 0.8365142345428467, 0.0051848916336894035, 0.0028349056374281645, 0.0002608014619909227, 0.002393761184066534, 0.00010876095620915294, 2.7166548534296453e-05, 5.174282705411315e-05, 0.06888473033905029], [0.0011741956695914268, 2.0162500732112676e-05, 1.00630713859573e-05, 8.353435259778053e-05, 6.601833774766419e-06, 1.0883254617510829e-05, 3.884863690473139e-05, 0.03811867907643318, 0.003184740664437413, 0.017677398398518562, 0.8888947367668152, 0.004222948104143143, 0.003108506090939045, 0.0034634412731975317, 0.001716742292046547, 0.00019349512876942754, 6.146978557808325e-05, 0.038013383746147156], [0.0006708450382575393, 5.634342596749775e-05, 7.546067536168266e-06, 1.317496662522899e-05, 1.4862128409731667e-05, 1.804443854780402e-05, 7.399849710054696e-05, 0.025400793179869652, 0.0033711064606904984, 0.026390526443719864, 0.519016444683075, 0.34007784724235535, 0.013287335634231567, 0.004547204356640577, 0.04036760702729225, 0.0011615403927862644, 0.00016407515795435756, 0.02536063641309738], [3.746397123904899e-05, 0.0001501094811828807, 1.5690089867348433e-06, 3.492064024612773e-06, 2.4604703412478557e-06, 3.7836923638678854e-07, 3.5505963751347736e-06, 0.09908010810613632, 0.00051494175568223, 0.00023000164947006851, 0.004405040759593248, 0.003745854366570711, 0.784683108329773, 0.0009549838141538203, 0.006755055859684944, 0.00039223299245350063, 0.0003089784877374768, 0.09873078763484955], [0.0007064780220389366, 6.599266271223314e-06, 0.00020361269707791507, 8.987998967313615e-07, 2.105443854816258e-06, 5.00981559525826e-06, 5.304786441229226e-07, 0.014273562468588352, 4.6623081288998947e-05, 0.0014295133296400309, 0.0003272485046181828, 0.0002056206576526165, 0.0002633655385579914, 0.9454433917999268, 0.001727751106955111, 0.020880768075585365, 0.0002423753176117316, 0.014234671369194984], [9.610585402697325e-05, 3.824420491582714e-05, 1.856396374932956e-05, 1.632242856430821e-05, 6.535590273415437e-06, 1.1159462474097381e-06, 1.68830183611135e-06, 0.0182113666087389, 2.1246516553219408e-05, 0.00024150089302565902, 0.000994207221083343, 0.0018930926453322172, 0.0017384202219545841, 0.001733824028633535, 0.9540845155715942, 0.002074799034744501, 0.0006727026775479317, 0.018155699595808983], [0.0004595192731358111, 0.0001944268005900085, 5.314316877047531e-05, 5.6674936786293983e-05, 2.317306280019693e-05, 5.861731915501878e-05, 2.4182387278415263e-05, 0.43570584058761597, 0.0003716778301168233, 4.35090005339589e-05, 0.00015693472232669592, 5.5015902034938335e-05, 0.0011575504904612899, 0.0029985259752720594, 0.008302553556859493, 0.08041325211524963, 0.035842593759298325, 0.4340827465057373], [0.0006789897452108562, 0.0008291039266623557, 0.00012496502313297242, 0.00019540914217941463, 0.00015206218813546002, 0.00017447705613449216, 0.003987350035458803, 0.4870937764644623, 0.0011317619355395436, 0.0009161022608168423, 0.0006559467874467373, 0.00045609872904606164, 0.0006454814574681222, 0.00047710456419736147, 0.0018046669429168105, 0.000590916839428246, 0.015261508524417877, 0.4848242998123169]], [[0.018384195864200592, 0.006182671058923006, 0.0009216436883434653, 0.007159084547311068, 0.0019954119343310595, 0.002075891476124525, 0.009753432124853134, 0.4589051306247711, 0.0024179071187973022, 0.0034700927790254354, 0.0033849079627543688, 0.0009666469413787127, 0.008108066394925117, 0.0007264150190167129, 0.0028053107671439648, 0.001732134958729148, 0.01371863391250372, 0.4572924077510834], [0.005784773733466864, 0.00975858885794878, 0.0013906852109357715, 0.003035573987290263, 0.0011052528861910105, 0.00113102572504431, 0.007539027836173773, 0.48449990153312683, 0.0001682140282355249, 0.00025220244424417615, 0.00015641651407349855, 0.00017119469703175128, 0.0008123147999867797, 8.077172969933599e-05, 0.0004441956407390535, 6.256496271817014e-05, 0.0016990702133625746, 0.48190826177597046], [0.00934271514415741, 0.012757014483213425, 0.0008282576454803348, 0.0010514253517612815, 0.001056821784004569, 0.00021840751287527382, 0.0016012610867619514, 0.4874616265296936, 2.877724364225287e-05, 0.00012941235036123544, 2.6332692868891172e-05, 8.258688467321917e-05, 0.00016109467833302915, 5.046447040513158e-05, 0.00014628512144554406, 3.2677191484253854e-05, 0.0006851366488263011, 0.48433977365493774], [0.007466534618288279, 0.02750219777226448, 0.017084794119000435, 0.018645014613866806, 0.0036875063087791204, 0.014461878687143326, 0.008600635454058647, 0.4498559534549713, 0.00040273863123729825, 0.0011588942725211382, 9.139913163380697e-05, 3.3555472327861935e-05, 5.7254888815805316e-05, 1.9949482521042228e-05, 9.849304478848353e-05, 0.00010889083205256611, 0.0029585007578134537, 0.4477657377719879], [0.0018329338636249304, 0.02840842492878437, 0.021140392869710922, 0.13140152394771576, 0.024590246379375458, 0.020757276564836502, 0.007548883557319641, 0.3801409602165222, 0.0008604570757597685, 0.0006772958440706134, 0.00044227723265066743, 0.0002139240241376683, 0.0002475271176081151, 0.00017066272266674787, 0.00012492365203797817, 5.196227357373573e-05, 0.0029091404285281897, 0.3784811198711395], [0.0036422002594918013, 0.012293266132473946, 0.003223598003387451, 0.10387197881937027, 0.028548235073685646, 0.004506832454353571, 0.007560649886727333, 0.4186076819896698, 6.0473194025689736e-05, 0.0001815811701817438, 0.0003189837734680623, 4.762806202052161e-05, 0.00016672919446136802, 3.0569757655030116e-05, 0.00019246083684265614, 3.11015137413051e-05, 0.0010147782741114497, 0.41570132970809937], [0.009595092386007309, 0.0021485520992428064, 0.0010752175003290176, 0.003418735694140196, 0.002160436473786831, 0.016970055177807808, 0.06961249560117722, 0.44717156887054443, 0.00022543435625266284, 0.00020228988432791084, 4.34436478826683e-05, 1.6397829313063994e-05, 4.9687452701618895e-05, 5.073419742984697e-06, 9.977269655792043e-06, 1.9148255887557752e-05, 0.0017898890655487776, 0.4454863965511322], [0.060443103313446045, 0.007805324159562588, 0.0018429069314152002, 0.0036921037826687098, 0.0018570092506706715, 0.001991359982639551, 0.00971943512558937, 0.43277332186698914, 0.0013448232784867287, 0.00392181659117341, 0.004492208361625671, 0.0033394356723874807, 0.010407068766653538, 0.0020542864222079515, 0.008818639442324638, 0.0015092679532244802, 0.012560267001390457, 0.43142765760421753], [0.021800970658659935, 0.00039200339233502746, 0.00012329242599662393, 0.0007884282968007028, 3.249476503697224e-05, 0.0004140303935855627, 0.002073277486488223, 0.4599134027957916, 0.0028892294503748417, 0.00439339829608798, 0.039892781525850296, 0.0017914040945470333, 0.0037517512682825327, 0.00041047140257433057, 0.0005727372481487691, 0.00016834086272865534, 0.002807669574394822, 0.4577842950820923], [0.013790248893201351, 0.0002860628010239452, 0.00015007497859187424, 6.112510163802654e-05, 2.835733539541252e-05, 5.21001493325457e-05, 0.004984177649021149, 0.4603201746940613, 0.035796575248241425, 0.007788661867380142, 0.0072706020437181, 0.003130954457446933, 0.0022192455362528563, 0.00043152953730896115, 0.00029130425537005067, 0.0001206905726576224, 0.005629965104162693, 0.4576481282711029], [0.017275920137763023, 0.00014746462693437934, 7.048332918202505e-05, 7.051667489577085e-05, 5.284026883600745e-06, 2.1164527424843982e-05, 0.0010090491268783808, 0.43599674105644226, 0.0052789123728871346, 0.08405274897813797, 0.014633351936936378, 0.002237512031570077, 0.002569372532889247, 0.0007314070244319737, 0.00030499498825520277, 0.00014925618597771972, 0.0012895832769572735, 0.4341561496257782], [0.006300475914031267, 0.0005140785360708833, 4.762611206388101e-05, 0.00011404814722482115, 2.3617525584995747e-05, 8.027312287595123e-05, 0.0008879186934791505, 0.4032323956489563, 0.011577054858207703, 0.028521139174699783, 0.131627157330513, 0.00785849429666996, 0.004993095062673092, 0.0013680161209776998, 0.0006421170546673238, 6.544682400999591e-05, 0.0012376238591969013, 0.4009094834327698], [0.009160232730209827, 0.0005252932314760983, 1.741096275509335e-05, 0.00016864592907950282, 7.748126517981291e-05, 3.3765587431844324e-05, 0.0011447544675320387, 0.3194960057735443, 0.0032442256342619658, 0.010127970017492771, 0.2494230419397354, 0.023874927312135696, 0.025155626237392426, 0.004221870098263025, 0.03219272196292877, 0.000619409023784101, 0.0026634519454091787, 0.3178532123565674], [0.0026706987991929054, 8.504695870215073e-05, 2.191993007727433e-05, 1.816356052586343e-05, 1.0467195352248382e-05, 2.280395619891351e-06, 3.354025830049068e-05, 0.4803737998008728, 5.579883145401254e-05, 0.0005317161558195949, 0.0025423539336770773, 0.0025228001177310944, 0.02343442291021347, 0.003504569409415126, 0.005989961791783571, 0.00025035373982973397, 0.0004281259316485375, 0.477524071931839], [0.0034534966107457876, 0.00018813599308487028, 7.231776544358581e-05, 0.00012571409752126783, 2.5016206564032473e-06, 4.4009677367284894e-05, 0.00017919528181664646, 0.4018857479095459, 0.00021768851729575545, 0.0008682822226546705, 0.021487250924110413, 0.0016664126887917519, 0.05631611868739128, 0.09391902387142181, 0.011254101991653442, 0.003210001392289996, 0.005275383125990629, 0.3998345732688904], [0.009067130275070667, 0.00014014492626301944, 1.5217593499983195e-05, 3.450503936619498e-05, 2.0727251467178576e-05, 9.408858204551507e-06, 6.652650336036459e-05, 0.395229309797287, 0.00014667199866380543, 0.00038031162694096565, 0.0019080605125054717, 0.0007600192329846323, 0.008138337172567844, 0.0029010209254920483, 0.17433495819568634, 0.00490317540243268, 0.008722065016627312, 0.3932224214076996], [0.022165510803461075, 0.00037216939381323755, 0.00017094194481614977, 0.0002525823365431279, 9.25835847738199e-05, 0.00023829893325455487, 0.0006096573197282851, 0.46361228823661804, 0.00043732309131883085, 0.0006998764001764357, 0.0007375204586423934, 0.00024085640325210989, 0.004109865054488182, 0.00091555155813694, 0.0027561034075915813, 0.006861226633191109, 0.033824373036623, 0.46190327405929565], [0.06030655279755592, 0.00779240345582366, 0.0018365097930654883, 0.0036858764942735434, 0.00185472855810076, 0.0019869008101522923, 0.00970473699271679, 0.43288883566856384, 0.0013432400301098824, 0.003911917097866535, 0.004491089843213558, 0.003333499189466238, 0.01040648389607668, 0.002052342751994729, 0.008812956511974335, 0.0015078664291650057, 0.012543311342597008, 0.4315407872200012]], [[0.01209974568337202, 0.016095107421278954, 0.00150271225720644, 0.012709102593362331, 0.010624082759022713, 0.01783568598330021, 0.008407233282923698, 0.292235404253006, 0.08759653568267822, 0.02109278179705143, 0.05288616195321083, 0.014282332733273506, 0.020892014726996422, 0.029408298432826996, 0.011319896206259727, 0.020511260256171227, 0.07834254950284958, 0.29215914011001587], [0.002470897976309061, 0.032749760895967484, 0.023778654634952545, 0.046959638595581055, 0.0968065857887268, 0.14030714333057404, 0.023399675264954567, 0.31130251288414, 0.0006384783191606402, 0.00112511171028018, 0.0026824437081813812, 0.0014255872229114175, 0.0007733848178759217, 0.0006831635255366564, 0.0018309319857507944, 0.0015808596508577466, 0.0012536144349724054, 0.31023159623146057], [0.0006774525973014534, 0.006669004447758198, 0.0065162875689566135, 0.01207410916686058, 0.026962950825691223, 0.02605702541768551, 0.004018251318484545, 0.458290159702301, 0.0002218073495896533, 0.00022444526257459074, 0.00039246256346814334, 0.00011023718980140984, 7.838090823497623e-05, 0.00027945562032982707, 0.0004804809286724776, 0.0002865350106731057, 0.0004110472509637475, 0.4562499523162842], [0.003948146011680365, 0.054139815270900726, 0.0053841667249798775, 0.02355094440281391, 0.10456125438213348, 0.23248732089996338, 0.040531713515520096, 0.26179730892181396, 0.0023532763589173555, 0.0005530287744477391, 0.0015167843084782362, 0.003368544392287731, 0.00026002281811088324, 0.00023857712221797556, 0.0005662913899868727, 0.00039169148658402264, 0.003431000281125307, 0.26092007756233215], [0.0017693802947178483, 0.015442909672856331, 0.004819773603230715, 0.005449074320495129, 0.02567659690976143, 0.16318276524543762, 0.020911522209644318, 0.3753257095813751, 0.0006468788487836719, 0.00015379094111267477, 0.002605494111776352, 0.008752571418881416, 8.002771210158244e-05, 0.00010404288332210854, 6.048648720025085e-05, 8.965098095359281e-05, 0.0012177525786682963, 0.373711496591568], [0.000665789470076561, 0.011580051854252815, 0.006373008247464895, 0.013142433017492294, 0.06946597248315811, 0.13435985147953033, 0.009479581378400326, 0.3771902322769165, 0.00034866895293816924, 0.00013568269787356257, 0.0003232362796552479, 0.0002602500608190894, 8.576548134442419e-05, 0.00012469773355405778, 7.627295417478308e-05, 0.00012854888336732984, 0.0005096916574984789, 0.37575018405914307], [0.0027798565570265055, 0.0058890413492918015, 0.0064411223866045475, 0.012123862281441689, 0.04943566769361496, 0.053400080651044846, 0.026593094691634178, 0.4186093509197235, 0.0013005072250962257, 0.00018394182552583516, 0.0005812261370010674, 0.001215688418596983, 0.00041325698839500546, 0.00021991514950059354, 0.0005314055015332997, 0.00029917925712652504, 0.002626036060974002, 0.4173568785190582], [0.00141566910315305, 0.0008934416109696031, 0.0010256407549604774, 0.0010901066707447171, 0.0013753384118899703, 0.0019511943683028221, 0.002461104653775692, 0.4905875623226166, 0.0008772302535362542, 0.000838158477563411, 0.0013235332444310188, 0.0016880149487406015, 0.0004796736757270992, 0.000563451845664531, 0.0007850769907236099, 0.0010456055169925094, 0.003183257533237338, 0.4884158968925476], [0.005949440877884626, 0.00041632913053035736, 0.000476123474072665, 0.0006495119305327535, 0.0018432697979733348, 0.0011155144311487675, 0.0012150425463914871, 0.4200403094291687, 0.022490931674838066, 0.02595113404095173, 0.027240755036473274, 0.038984183222055435, 0.0017228721408173442, 0.013071899302303791, 0.002661498263478279, 0.0036242608912289143, 0.013788496144115925, 0.4187583923339844], [0.006385211367160082, 0.0008249419624917209, 0.0009829796617850661, 0.0011638806900009513, 0.001098615350201726, 0.005497665144503117, 0.0020460530649870634, 0.32449501752853394, 0.056401245296001434, 0.006690996699035168, 0.14303553104400635, 0.08961017429828644, 0.011686800979077816, 0.007318031508475542, 0.00483969459310174, 0.008199058473110199, 0.006314004771411419, 0.3234100043773651], [0.036519959568977356, 0.0006938129081390798, 0.0006996147567406297, 0.0001595542998984456, 0.0007532629533670843, 0.00045407944708131254, 0.0008565931348130107, 0.22796858847141266, 0.03634600713849068, 0.016097448766231537, 0.05959414318203926, 0.34686416387557983, 0.024800483137369156, 0.007248878013342619, 0.00423395773395896, 0.005252305418252945, 0.004348041955381632, 0.22710905969142914], [0.0030045141465961933, 0.00014734192518517375, 0.00021027785260230303, 0.000228829201660119, 0.00020775124721694738, 0.0005697003216482699, 0.0010177312651649117, 0.288550466299057, 0.004578245338052511, 0.0029798950999975204, 0.35005226731300354, 0.0071357605047523975, 0.013542285189032555, 0.0076293498277664185, 0.026529885828495026, 0.003087327117100358, 0.0033936090767383575, 0.28713467717170715], [0.004471647087484598, 0.0003139120526611805, 0.0001042126095853746, 0.00011228003859287128, 0.00017002614913508296, 0.00027909758500754833, 0.00026589055778458714, 0.14176173508167267, 0.005528365261852741, 0.005177916958928108, 0.38485124707221985, 0.03567405417561531, 0.006256654858589172, 0.11992757022380829, 0.11702349781990051, 0.03400745242834091, 0.0029333720449358225, 0.14114105701446533], [0.0015389180043712258, 0.00010772891255328432, 8.638917643111199e-05, 4.477962283999659e-05, 0.00022179140069056302, 0.00013505468086805195, 0.00013981446682009846, 0.42504265904426575, 0.003910798579454422, 0.002986626699566841, 0.0238056518137455, 0.05682724714279175, 0.011868025176227093, 0.018690474331378937, 0.012804049998521805, 0.016820374876260757, 0.0015985132195055485, 0.4233710467815399], [0.005081959534436464, 0.0002441607357468456, 0.0002936568344011903, 0.00011095870286226273, 0.0006981912301853299, 0.0001983637921512127, 0.00028360856231302023, 0.16502201557159424, 0.009016615338623524, 0.00327496649697423, 0.038272466510534286, 0.3920040726661682, 0.037325166165828705, 0.09922550618648529, 0.0680118203163147, 0.011995792388916016, 0.004569653887301683, 0.16437096893787384], [0.0016512037254869938, 0.0002458428789395839, 5.857077121618204e-05, 6.885085895191878e-05, 0.00020385075185913593, 0.00012377611710689962, 0.00018725405971053988, 0.3250991702079773, 0.0025145085528492928, 0.002662685001268983, 0.05316776782274246, 0.038385745137929916, 0.008192344568669796, 0.051136668771505356, 0.14171399176120758, 0.04491031914949417, 0.005707683973014355, 0.3239697813987732], [0.004472633358091116, 0.0003596524184104055, 0.0006215054308995605, 0.0007196643273346126, 0.0018742252141237259, 0.0009059981093741953, 0.0011535573285073042, 0.43141812086105347, 0.007761357817798853, 0.0016857597511261702, 0.004112403839826584, 0.01614849828183651, 0.009043831378221512, 0.011544100008904934, 0.016189171001315117, 0.029366066679358482, 0.03248491510748863, 0.43013840913772583], [0.0014135242672637105, 0.0008917626109905541, 0.0010242460994049907, 0.0010891155106946826, 0.0013744225725531578, 0.0019485346274450421, 0.002457230817526579, 0.4906035363674164, 0.0008761927601881325, 0.0008364980458281934, 0.0013206391595304012, 0.0016841433243826032, 0.00047914727474562824, 0.0005631718086078763, 0.0007834051502868533, 0.0010449193650856614, 0.0031774116214364767, 0.48843204975128174]], [[0.00859883427619934, 0.003227681154385209, 0.005098774563521147, 0.012230023741722107, 0.005257493816316128, 0.004257365129888058, 0.0015935221454128623, 0.07667698711156845, 0.27015045285224915, 0.030436115339398384, 0.12859979271888733, 0.0739399641752243, 0.027652831748127937, 0.08476059883832932, 0.12069366127252579, 0.030656002461910248, 0.03970146179199219, 0.07646843791007996], [0.012430654838681221, 0.023312347009778023, 0.5266166925430298, 0.07631678134202957, 0.027462175115942955, 0.05806102976202965, 0.01089517679065466, 0.12716224789619446, 0.0007942476659081876, 0.0022798567079007626, 0.0025346262846142054, 0.0021194242872297764, 0.0007501063519157469, 0.0005244605126790702, 0.00039143653702922165, 0.0008919715182855725, 0.000971927831415087, 0.12648476660251617], [0.003255832940340042, 0.005147488787770271, 0.008877607993781567, 0.0015337393851950765, 0.0012339159147813916, 0.005673637613654137, 0.006142506375908852, 0.4843016266822815, 0.000258419691817835, 9.222361404681578e-05, 7.152865873649716e-05, 5.501301711774431e-05, 0.00032896012999117374, 0.00019377347780391574, 6.785224104532972e-05, 0.0005708002136088908, 0.00037938659079372883, 0.4818155765533447], [0.02657482400536537, 0.01771308295428753, 0.010599682107567787, 0.006678753532469273, 0.021079573780298233, 0.5877737998962402, 0.048985131084918976, 0.13507868349552155, 0.0027525725308805704, 0.0006526784272864461, 0.0006021771114319563, 0.00045698683243244886, 0.001093718339689076, 0.0015841696877032518, 0.00041825530934147537, 0.002582636894658208, 0.0009206809918396175, 0.13445252180099487], [0.0021230352576822042, 0.018254458904266357, 0.0006652002921327949, 0.00537482975050807, 0.011115186847746372, 0.3740028738975525, 0.02214129827916622, 0.2823454439640045, 0.0011307427193969488, 5.265615618554875e-05, 0.00021153449779376388, 0.0001952316815732047, 0.00011519515828695148, 7.15197529643774e-05, 0.0002812068269122392, 0.000642094761133194, 0.0003370770427864045, 0.2809404134750366], [0.006360401399433613, 0.009895608760416508, 0.021931542083621025, 0.007295310962945223, 0.0023837725166231394, 0.007224562112241983, 0.008690635673701763, 0.4666893184185028, 0.0002747843973338604, 8.583368617109954e-05, 0.00021805283904541284, 0.0003207254339940846, 0.001864053076133132, 0.0003006227780133486, 0.00018491137598175555, 0.0007197566446848214, 0.00047294850810430944, 0.4650871455669403], [0.008967306464910507, 0.021697506308555603, 0.033901941031217575, 0.01679813116788864, 0.011427684687077999, 0.01784246414899826, 0.004792521242052317, 0.42569446563720703, 0.0053724185563623905, 0.0016873100539669394, 0.0045473817735910416, 0.004003457259386778, 0.005721746478229761, 0.005905004218220711, 0.003830786095932126, 0.0023397826589643955, 0.0014433215837925673, 0.424026757478714], [0.0004821474140044302, 0.000298674771329388, 0.0011679001618176699, 0.0002080565900541842, 0.0001409990800311789, 0.00014072746853344142, 0.0001471231662435457, 0.49817362427711487, 0.00033303722739219666, 0.0002478004607837647, 0.0005324636003933847, 0.00023435002367477864, 0.00040790531784296036, 0.000401166791561991, 0.0002688224194571376, 0.00046349893091246486, 0.0003473845717962831, 0.4960043430328369], [0.006920421961694956, 0.000941227946896106, 0.0010215286165475845, 0.0012571291299536824, 9.047768980963156e-05, 0.0005228251102380455, 0.0003715196799021214, 0.02847716026008129, 0.008063539862632751, 0.018814031034708023, 0.448276162147522, 0.3072715997695923, 0.03779948502779007, 0.010279647074639797, 0.07294127345085144, 0.01720254123210907, 0.0113591980189085, 0.028390266001224518], [0.019747892394661903, 0.00119636463932693, 0.0007383002084679902, 0.00039181672036647797, 0.0002728175313677639, 0.00074439134914428, 0.0007175097125582397, 0.2379932701587677, 0.030588746070861816, 0.03009270690381527, 0.0567517951130867, 0.04074821621179581, 0.070014588534832, 0.06023440882563591, 0.02088085561990738, 0.15020012855529785, 0.041844673454761505, 0.23684148490428925], [0.0432688407599926, 0.0003532749542500824, 0.0001617438974790275, 3.284107879153453e-05, 0.0001979254448087886, 8.959464321378618e-05, 0.00044635869562625885, 0.04174632206559181, 0.03675263747572899, 0.003988287411630154, 0.0034705360885709524, 0.006502379197627306, 0.4301886558532715, 0.11209914833307266, 0.021990695968270302, 0.22216661274433136, 0.034994255751371384, 0.04154987260699272], [0.0070500425063073635, 0.00010466437379363924, 9.27628789213486e-05, 2.3153084839577787e-05, 0.0001903368829516694, 0.00016518920892849565, 5.321902426658198e-05, 0.008457913063466549, 0.0015929387882351875, 0.0012585774529725313, 0.010079543106257915, 0.002514051739126444, 0.3260042071342468, 0.1404876410961151, 0.13264411687850952, 0.3574926555156708, 0.0033767586573958397, 0.008412189781665802], [0.011442204006016254, 0.00026376903406344354, 0.00022459926549345255, 0.00015901128062978387, 0.000181634517502971, 0.00038439963827840984, 0.000758509908337146, 0.017304163426160812, 0.001284631434828043, 0.0006433511734940112, 0.0048116655088961124, 0.002224712399765849, 0.0016517655458301306, 0.7110041975975037, 0.09697425365447998, 0.062214430421590805, 0.07125718891620636, 0.017215484753251076], [0.002719201846048236, 0.00017823981761466712, 0.00046833211672492325, 3.492692849249579e-05, 2.531134850869421e-05, 4.263877053745091e-05, 0.00010275958629790694, 0.3061511516571045, 0.0005331928259693086, 0.00029841045034117997, 0.0006366237648762763, 0.0009509709780104458, 0.004140397999435663, 0.027289021760225296, 0.0048630270175635815, 0.33990219235420227, 0.006802161689847708, 0.30486148595809937], [0.00026806583628058434, 8.781614269537386e-06, 6.721292265865486e-06, 9.203196782436862e-07, 7.264899977599271e-06, 3.608797851484269e-05, 9.495116501057055e-06, 0.003539297729730606, 9.830670023802668e-05, 5.7492423366056755e-05, 3.082038165302947e-05, 0.0001064281677827239, 0.003767465939745307, 0.0037680731620639563, 0.0012401529820635915, 0.9828580617904663, 0.0006732711917720735, 0.003523207036778331], [0.0014297479065135121, 0.0003796096716541797, 0.0005835560150444508, 1.6461101040476933e-05, 1.667091783019714e-05, 3.107411248493008e-05, 0.00013273311196826398, 0.45161160826683044, 0.0009610066190361977, 0.0007649051258340478, 0.0001443652727175504, 0.0002766147372312844, 0.000290243566269055, 0.05990508943796158, 0.0005838184733875096, 0.02803860791027546, 0.004712632857263088, 0.45012131333351135], [0.01187110785394907, 0.0006773665081709623, 0.002378536621108651, 0.0007259618723765016, 0.00032939703669399023, 0.0007748593925498426, 0.0007921630167402327, 0.44087278842926025, 0.024598000571131706, 0.004903891589492559, 0.009749972261488438, 0.004911878611892462, 0.007580883800983429, 0.017294295132160187, 0.005921066738665104, 0.01596219651401043, 0.011424969881772995, 0.43923065066337585], [0.00048199581215158105, 0.0002982983714900911, 0.0011654931586235762, 0.00020742019114550203, 0.00014061016554478556, 0.0001403811911586672, 0.00014689614181406796, 0.4981810748577118, 0.0003321221156511456, 0.0002473659405950457, 0.0005303762154653668, 0.0002335031022084877, 0.00040711063775233924, 0.00040003846515901387, 0.00026807846734300256, 0.00046268265577964485, 0.00034674600465223193, 0.49600985646247864]], [[0.004702632315456867, 0.02299257554113865, 0.021542571485042572, 0.005989348981529474, 0.0037509300746023655, 0.010056506842374802, 0.005161590874195099, 0.25637367367744446, 0.17032386362552643, 0.09152621030807495, 0.03515561297535896, 0.016869433224201202, 0.01825129985809326, 0.020090220496058464, 0.030798649415373802, 0.017680734395980835, 0.01292048767209053, 0.2558136582374573], [0.009115179069340229, 0.05127738043665886, 0.052103739231824875, 0.03029545024037361, 0.00503458920866251, 0.025243381038308144, 0.03291455656290054, 0.39246124029159546, 0.003123749978840351, 0.0019040846964344382, 0.001485232962295413, 0.0007378752925433218, 0.0012170455884188414, 0.00044821202754974365, 0.000277983519481495, 0.00027181801851838827, 0.0014569185441359878, 0.3906315565109253], [0.003995193634182215, 0.06780991703271866, 0.02108209766447544, 0.009831181727349758, 0.0015142186312004924, 0.0044698454439640045, 0.009768160060048103, 0.43770310282707214, 0.001772601972334087, 0.0005409230361692607, 0.0006829366902820766, 0.0008214634144678712, 0.0019499254412949085, 0.00025444268248975277, 0.0004656171367969364, 0.0002683279453776777, 0.0014898375375196338, 0.43558022379875183], [0.007743677590042353, 0.3719298541545868, 0.3323259949684143, 0.017013920471072197, 0.014451419934630394, 0.045228127390146255, 0.007256846409291029, 0.09922296553850174, 0.0013381585013121367, 0.0012177780736237764, 0.0007915917667560279, 0.0005794005119241774, 0.0005445334245450795, 0.0004266455944161862, 0.00021064808242954314, 0.00024577247677370906, 0.000742530741263181, 0.09873019903898239], [0.014872598461806774, 0.09828831255435944, 0.061342909932136536, 0.0616438128054142, 0.016781620681285858, 0.0997273176908493, 0.01779615506529808, 0.31059062480926514, 0.0034621357917785645, 0.0005823826650157571, 0.001181111205369234, 0.0007984305266290903, 0.0006235047476366162, 0.00040157526382245123, 0.00026667097699828446, 0.00040303129935637116, 0.002089489484205842, 0.309148371219635], [0.010811814107000828, 0.10690692067146301, 0.20774829387664795, 0.22261382639408112, 0.019596122205257416, 0.04726655036211014, 0.014684509485960007, 0.18360422551631927, 0.0007301735458895564, 0.0009400853887200356, 0.0004556665662676096, 0.00013448434765450656, 0.00038001922075636685, 8.88860085979104e-05, 0.00010020406625699252, 0.00022656908549834043, 0.0011066892184317112, 0.18260495364665985], [0.0033545615151524544, 0.07792802900075912, 0.1559886336326599, 0.20479747653007507, 0.07811424881219864, 0.1680859625339508, 0.008210849948227406, 0.14784051477909088, 0.0032109811436384916, 0.0006260902737267315, 0.0006163836806081235, 0.0003821767750196159, 0.0005660387687385082, 0.0007965559489093721, 0.00044595470535568893, 0.0009358471143059433, 0.0007999996887519956, 0.14729967713356018], [0.0031854035332798958, 0.003972804639488459, 0.0011682643089443445, 0.0027582936454564333, 0.00065525685204193, 0.001772694755345583, 0.004130767658352852, 0.48205915093421936, 0.003661802737042308, 0.0014582985313609242, 0.0026369732804596424, 0.0018130947137251496, 0.0034528211690485477, 0.0009683311218395829, 0.0015016755787655711, 0.000700076634529978, 0.004070253577083349, 0.4800341725349426], [0.022211192175745964, 0.003981295973062515, 0.001171839190647006, 0.0028045435901731253, 0.0010481798090040684, 0.0037350610364228487, 0.0023157165851444006, 0.40555521845817566, 0.10300616919994354, 0.012637910433113575, 0.01234821230173111, 0.006212884560227394, 0.004689337685704231, 0.0019793862011283636, 0.0012834646040573716, 0.0027919691056013107, 0.008391032926738262, 0.40383657813072205], [0.01983514241874218, 0.004843535367399454, 0.007476324215531349, 0.0008145833853632212, 0.00013505828974302858, 0.0007132713217288256, 0.0021051231306046247, 0.37725183367729187, 0.0787852331995964, 0.0438600592315197, 0.03230033442378044, 0.01058151014149189, 0.016275621950626373, 0.013327703811228275, 0.001972947036847472, 0.00620975811034441, 0.008261008188128471, 0.37525105476379395], [0.03187720850110054, 0.0034801382571458817, 0.006223074626177549, 0.00018453084339853376, 6.590438715647906e-05, 0.0002862320689018816, 0.004936582874506712, 0.265079140663147, 0.07219649851322174, 0.27736401557922363, 0.026092473417520523, 0.018982509151101112, 0.016198476776480675, 0.005535814445465803, 0.000529158569406718, 0.0014096025843173265, 0.0058980658650398254, 0.2636606991291046], [0.03263792023062706, 0.0037944528739899397, 0.0014001114759594202, 0.00034804598544724286, 0.00012035674444632605, 0.0004495327884797007, 0.0025689383037388325, 0.23749518394470215, 0.15958918631076813, 0.13032644987106323, 0.09040325880050659, 0.028556907549500465, 0.05544190853834152, 0.012475863099098206, 0.0009422476286999881, 0.0021529486402869225, 0.0049606626853346825, 0.23633599281311035], [0.024775030091404915, 0.002803708426654339, 0.0034753233194351196, 0.0001986925199162215, 8.969102782430127e-05, 0.000229948345804587, 0.0026495191268622875, 0.15689261257648468, 0.054375048726797104, 0.33585259318351746, 0.12635640799999237, 0.04160601645708084, 0.05742309242486954, 0.029546553269028664, 0.0027244561351835728, 0.00225186999887228, 0.0026015667244791985, 0.15614798665046692], [0.007735919672995806, 0.0009266439010389149, 0.0002516559907235205, 5.8042969612870365e-05, 2.078122088278178e-05, 6.631870928686112e-05, 0.0004657572426367551, 0.3505301773548126, 0.02029389888048172, 0.017393438145518303, 0.027314258739352226, 0.030445484444499016, 0.14854949712753296, 0.029979532584547997, 0.008226499892771244, 0.005051751621067524, 0.0037865652702748775, 0.3489037752151489], [0.004105089697986841, 0.0007689908961765468, 0.0003167624236084521, 1.5378585885628127e-05, 2.4351735191885382e-05, 5.537650213227607e-05, 0.00015131320105865598, 0.028721721842885017, 0.002085284562781453, 0.0073965019546449184, 0.012544163502752781, 0.013235347345471382, 0.09676927328109741, 0.7591394782066345, 0.009376883506774902, 0.03530817851424217, 0.001369322882965207, 0.028616581112146378], [0.005473427474498749, 0.001267101033590734, 0.0026597066316753626, 5.2311654144432396e-05, 2.8243228371138684e-05, 0.00011899600940523669, 0.00039361126255244017, 0.09015584737062454, 0.014013504609465599, 0.13075564801692963, 0.053874190896749496, 0.022455619648098946, 0.12812380492687225, 0.25281843543052673, 0.1735984832048416, 0.028022564947605133, 0.006349317263811827, 0.08983918279409409], [0.0039217667654156685, 0.0024488058406859636, 0.001991497352719307, 0.001235741307027638, 0.000439256924437359, 0.0006262859096750617, 0.00027205306105315685, 0.1831098049879074, 0.027397869154810905, 0.01204609964042902, 0.048970047384500504, 0.04575479030609131, 0.12153331935405731, 0.18423883616924286, 0.1281646192073822, 0.04737510904669762, 0.007927323691546917, 0.1825467199087143], [0.003181694308295846, 0.003964923322200775, 0.00116605288349092, 0.0027567169163376093, 0.0006544479983858764, 0.0017690127715468407, 0.0041241953149437904, 0.4820907711982727, 0.0036540369037538767, 0.0014558288967236876, 0.002633542288094759, 0.0018103885231539607, 0.0034482809714972973, 0.0009660120704211295, 0.0014983877772465348, 0.0006980045582167804, 0.004062420688569546, 0.4800652265548706]], [[0.021048760041594505, 0.026070119813084602, 0.0047711641527712345, 0.04077927768230438, 0.014783954247832298, 0.03735841065645218, 0.009908978827297688, 0.15992338955402374, 0.18846653401851654, 0.10515154898166656, 0.07618539035320282, 0.014555757865309715, 0.05260595679283142, 0.011422987096011639, 0.01966763846576214, 0.014845144934952259, 0.04276406764984131, 0.15969085693359375], [0.007944658398628235, 0.1819705367088318, 0.10066018253564835, 0.08053939789533615, 0.01636311411857605, 0.048688050359487534, 0.029552709311246872, 0.264199435710907, 0.001350673264823854, 0.0018880742136389017, 0.0004103926185052842, 0.00024645699886605144, 0.0008562085567973554, 0.0005161879817023873, 0.0005914976354688406, 0.00022262656420934945, 0.0008615547558292747, 0.26313817501068115], [0.004351677838712931, 0.1049218475818634, 0.023654935881495476, 0.01347657572478056, 0.0033231237903237343, 0.011732801795005798, 0.009367807768285275, 0.4128333628177643, 0.0010776525596156716, 0.0030532439704984426, 0.00035810109693557024, 8.635554695501924e-05, 0.0002827808493748307, 0.00011901708785444498, 8.885247370926663e-05, 5.58290230401326e-05, 0.0005026459693908691, 0.41071340441703796], [0.00298727722838521, 0.09147679060697556, 0.0357806421816349, 0.03487347438931465, 0.018024416640400887, 0.03183107078075409, 0.01556073222309351, 0.3836572468280792, 0.0011362363584339619, 0.0006782917771488428, 0.00022001239995006472, 0.00016230341861955822, 0.0006807062891311944, 0.00014496099902316928, 0.00013147392019163817, 6.161232886370271e-05, 0.0005786609835922718, 0.38201409578323364], [0.0035966821014881134, 0.06551025807857513, 0.013189633376896381, 0.04333202540874481, 0.024851441383361816, 0.03478101268410683, 0.011727338656783104, 0.4012100100517273, 0.00043924665078520775, 0.0005194744444452226, 0.00027736168703995645, 0.00031563822994939983, 0.0002725331869442016, 3.6761030060006306e-05, 0.00011857205390697345, 2.758514710876625e-05, 0.00039944861782714725, 0.3993949294090271], [0.0031793289817869663, 0.08813859522342682, 0.021468086168169975, 0.018493860960006714, 0.010618675500154495, 0.0279953982681036, 0.010299609042704105, 0.41028106212615967, 0.0004112966707907617, 0.00034848120412789285, 0.0001248004991794005, 4.7105029807426035e-05, 0.00018984006601385772, 5.57861894776579e-05, 5.206191053730436e-05, 3.185711466358043e-05, 0.0003260566736571491, 0.4079381823539734], [0.013703657314181328, 0.22077995538711548, 0.04344845563173294, 0.16952601075172424, 0.061844389885663986, 0.22852610051631927, 0.02430669404566288, 0.11165245622396469, 0.006443170364946127, 0.002744769910350442, 0.0013868489768356085, 0.0010230879997834563, 0.0007518786587752402, 0.0003185270179528743, 0.0007320276345126331, 0.00017135565576609224, 0.0014815531903877854, 0.11115910857915878], [0.001001332071609795, 0.0025553430896252394, 0.00044469410204328597, 0.001190469483844936, 0.0006735154893249273, 0.0013918038457632065, 0.0009122511837631464, 0.4957064986228943, 0.0005680855829268694, 0.0005603294121101499, 0.0006452477537095547, 0.0001919170463224873, 0.0004129624576307833, 0.000152635489939712, 8.403157698921859e-05, 0.00011135741806356236, 0.0006951546529307961, 0.4927023649215698], [0.08107738941907883, 0.011324528604745865, 0.002080666832625866, 0.007459750398993492, 0.005246025510132313, 0.02239394746720791, 0.004761590622365475, 0.2691228985786438, 0.12580597400665283, 0.031250301748514175, 0.06340057402849197, 0.014039249159395695, 0.013083997182548046, 0.003814124967902899, 0.046004507690668106, 0.010202397592365742, 0.0211389921605587, 0.26779311895370483], [0.0782075747847557, 0.022505832836031914, 0.10314581543207169, 0.008031794801354408, 0.0010371037060394883, 0.004485743585973978, 0.004472496919333935, 0.27600163221359253, 0.010892135091125965, 0.11153902113437653, 0.020691072568297386, 0.0043562836945056915, 0.02049797773361206, 0.030513733625411987, 0.008059033192694187, 0.006501671392470598, 0.01419130526483059, 0.2748698890209198], [0.07825551182031631, 0.00940665602684021, 0.0060021053068339825, 0.004198170732706785, 0.0020313498098403215, 0.005787610542029142, 0.003600470023229718, 0.3718862533569336, 0.016161860898137093, 0.034793421626091, 0.05748305469751358, 0.0012402019929140806, 0.0164076779037714, 0.004419525619596243, 0.005775935016572475, 0.0032254557590931654, 0.009297475218772888, 0.37002718448638916], [0.05057526379823685, 0.008323089219629765, 0.0009085085475817323, 0.006656618323177099, 0.014173698611557484, 0.008025627583265305, 0.0035993054043501616, 0.3454916477203369, 0.05397433415055275, 0.02203592099249363, 0.08836708962917328, 0.005449588410556316, 0.020773759111762047, 0.004984206985682249, 0.00826052576303482, 0.004036776255816221, 0.010634067468345165, 0.3437299430370331], [0.034963395446538925, 0.0014047794975340366, 0.002178360242396593, 0.0014297130983322859, 0.0012178141623735428, 0.002676863456144929, 0.001752951880916953, 0.38912492990493774, 0.0195494182407856, 0.021251898258924484, 0.027202356606721878, 0.003961822483688593, 0.03671063110232353, 0.03246776759624481, 0.007089388091117144, 0.022583840414881706, 0.007069713436067104, 0.38736435770988464], [0.017442811280488968, 0.001918150344863534, 0.0006926674977876246, 0.0007144970004446805, 0.0001875092857517302, 0.0009876707335934043, 0.0007910492131486535, 0.44749048352241516, 0.03008483536541462, 0.008609713986515999, 0.002312814351171255, 0.0021903866436332464, 0.012001578696072102, 0.012441456317901611, 0.0018477686680853367, 0.009241306222975254, 0.005874434486031532, 0.44517087936401367], [0.03174576908349991, 0.0011304107028990984, 0.00082830322207883, 0.0006876364350318909, 0.0010677077807486057, 0.0006451161461882293, 0.003848656080663204, 0.31862542033195496, 0.023449184373021126, 0.07950320094823837, 0.02319246530532837, 0.007079004775732756, 0.1097661703824997, 0.04684983566403389, 0.020655497908592224, 0.005785191897302866, 0.008344809524714947, 0.3167956471443176], [0.03174343705177307, 0.0026678559370338917, 0.0017658871365711093, 0.0007326514460146427, 0.0005521929706446826, 0.0016383921029046178, 0.0017758198082447052, 0.3592188060283661, 0.03332483395934105, 0.060916077345609665, 0.011876175180077553, 0.019806725904345512, 0.04726152494549751, 0.03568797931075096, 0.0059629566967487335, 0.01980133354663849, 0.0077992877922952175, 0.3574680685997009], [0.0613168366253376, 0.013692638836801052, 0.0027491282671689987, 0.01076579187065363, 0.00255439430475235, 0.007069970015436411, 0.005471363663673401, 0.09839829802513123, 0.24366287887096405, 0.11935289949178696, 0.13109666109085083, 0.10287721455097198, 0.028928713873028755, 0.024575980380177498, 0.018888669088482857, 0.009318804368376732, 0.02128894440829754, 0.09799080342054367], [0.0010009740944951773, 0.0025523146614432335, 0.0004442945646587759, 0.0011882990365847945, 0.0006727419095113873, 0.0013891947455704212, 0.0009112672996707261, 0.4957152307033539, 0.0005664158379659057, 0.0005594454705715179, 0.0006444310420192778, 0.00019166499259881675, 0.00041232476360164583, 0.00015241997607517987, 8.388685091631487e-05, 0.00011124494631076232, 0.0006936229765415192, 0.492710143327713]], [[0.0036422070115804672, 0.007057573180645704, 0.0010539778741076589, 0.003334842622280121, 0.0010891295969486237, 0.00022427176008932292, 0.0019795389380306005, 0.024170737713575363, 0.7064722180366516, 0.10251493006944656, 0.06283649802207947, 0.026493264362215996, 0.014696556143462658, 0.0036413546185940504, 0.004593214951455593, 0.0027418159879744053, 0.009413661435246468, 0.024044346064329147], [0.011851780116558075, 0.0614747516810894, 0.20172077417373657, 0.3653539717197418, 0.04379682242870331, 0.06633026152849197, 0.02939881756901741, 0.09917144477367401, 0.0016688149189576507, 0.003589991247281432, 0.004183994606137276, 0.0012096449499949813, 0.005809845868498087, 0.000798914406914264, 0.001420599757693708, 0.0008567941840738058, 0.002724414924159646, 0.09863844513893127], [0.01582595333456993, 0.03478624299168587, 0.019529998302459717, 0.0939466655254364, 0.05436807498335838, 0.10193905234336853, 0.03646329045295715, 0.3162924647331238, 0.0016282853903248906, 0.001046043005771935, 0.0014808594714850187, 0.0010655458318069577, 0.0018016586545854807, 0.0005934956134296954, 0.00023437694471795112, 0.001904696342535317, 0.00217512552626431, 0.3149181604385376], [0.00448690727353096, 0.015007348731160164, 0.021600916981697083, 0.04702111333608627, 0.047102414071559906, 0.16032768785953522, 0.11787434667348862, 0.2902652621269226, 0.0021734731271862984, 0.00109265954233706, 0.0005623113247565925, 0.00029423358500935137, 0.001028856378979981, 0.0008378850179724395, 0.00038919184589758515, 0.00018598910537548363, 0.0006842610891908407, 0.2890651226043701], [0.005119938403367996, 0.019047295674681664, 0.006153302267193794, 0.02742820419371128, 0.024271495640277863, 0.03505076840519905, 0.12567727267742157, 0.37512344121932983, 0.00481015257537365, 0.0006357395905070007, 0.0006049498333595693, 0.0003315678332000971, 0.0002693079586606473, 0.0004132818430662155, 0.0004477749753277749, 6.652808224316686e-05, 0.0009656226029619575, 0.37358328700065613], [0.005925264209508896, 0.010493136942386627, 0.004021467640995979, 0.013691513799130917, 0.010804780758917332, 0.023570671677589417, 0.06311199069023132, 0.43231654167175293, 0.0028083231300115585, 0.0003323245909996331, 0.00030892156064510345, 0.00041790769319050014, 0.00019518942281138152, 0.00028414398548193276, 0.0004166628932580352, 0.00026019298820756376, 0.0007343369070440531, 0.4303065836429596], [0.012965837493538857, 0.03347909450531006, 0.008550948463380337, 0.021701518446207047, 0.009008733555674553, 0.005245594773441553, 0.01656460203230381, 0.40263140201568604, 0.042080193758010864, 0.015322872437536716, 0.011309266090393066, 0.009454583749175072, 0.007300923112779856, 0.0019606235437095165, 0.0005834015901200473, 0.00033132676617242396, 0.0010185432620346546, 0.40049049258232117], [0.0034260712563991547, 0.0025198296643793583, 0.002815804909914732, 0.0032265048939734697, 0.0011934671783819795, 0.002185315126553178, 0.0032762540504336357, 0.47856155037879944, 0.0020523176062852144, 0.0017993149813264608, 0.0013456615852192044, 0.002048744820058346, 0.0016328591154888272, 0.0017753656720742583, 0.00690334290266037, 0.004298403859138489, 0.004337972495704889, 0.4766012728214264], [0.01875324174761772, 0.00973748229444027, 0.0023574193473905325, 0.00362397194840014, 0.0016492892755195498, 0.0005858060321770608, 0.0023392443545162678, 0.1943603754043579, 0.12121763825416565, 0.1884276121854782, 0.10740137100219727, 0.05705871805548668, 0.05927840247750282, 0.013295712880790234, 0.0028583635576069355, 0.00543217221274972, 0.01804482936859131, 0.19357836246490479], [0.0030198576860129833, 0.0004927876289002597, 0.001078512636013329, 0.00043710783938877285, 0.0002686312946025282, 0.0006558963214047253, 0.0014635849511250854, 0.1313413828611374, 0.004360636696219444, 0.009575261734426022, 0.08685693889856339, 0.014123336412012577, 0.5559082627296448, 0.01223449595272541, 0.00896140281111002, 0.021504301577806473, 0.0170684065669775, 0.13064928352832794], [0.008353309705853462, 0.000321437866659835, 0.0005293457070365548, 5.8156903833150864e-05, 8.247432560892776e-05, 5.2001170843141153e-05, 0.0005973565857857466, 0.20362906157970428, 0.011075942777097225, 0.022517679259181023, 0.020920759066939354, 0.02357378602027893, 0.3198128640651703, 0.09502879530191422, 0.013496230356395245, 0.035608358681201935, 0.041424043476581573, 0.2029183804988861], [0.009152067825198174, 0.0009852458024397492, 0.0002541527501307428, 0.00016967757255770266, 0.00021692343580070883, 6.081242099753581e-05, 0.0009654249879531562, 0.307730108499527, 0.016295215114951134, 0.01114632934331894, 0.012875951826572418, 0.020904896780848503, 0.06028498709201813, 0.07499139755964279, 0.04586907848715782, 0.018223868682980537, 0.1132555827498436, 0.30661824345588684], [0.006740658078342676, 0.0005175302503630519, 0.0013778547290712595, 0.0002406312123639509, 7.279677811311558e-05, 0.00024307562853209674, 0.0004967139102518559, 0.25359541177749634, 0.0038795266300439835, 0.006846184376627207, 0.00870208814740181, 0.011079325340688229, 0.04094932600855827, 0.1541336476802826, 0.08064188808202744, 0.12790735065937042, 0.04998618736863136, 0.25258976221084595], [0.007080951239913702, 0.00021327511058188975, 0.00019897586025763303, 0.00011743741924874485, 9.135235450230539e-05, 0.00010144914267584682, 7.871707930462435e-05, 0.4141731262207031, 0.0026629457715898752, 0.0014274833956733346, 0.0023692648392170668, 0.0037362955044955015, 0.006342861335724592, 0.027015259489417076, 0.03168857842683792, 0.07161383330821991, 0.018621942028403282, 0.4124661684036255], [0.003499235026538372, 0.00031571750878356397, 0.00020319961186032742, 0.00017789349658414721, 0.0004091156297363341, 5.91629977861885e-05, 0.00010845696670003235, 0.41317248344421387, 0.0008407923742197454, 0.0005684671341441572, 0.000779435271397233, 0.001076255808584392, 0.006953460164368153, 0.017655963078141212, 0.010025746189057827, 0.10316696017980576, 0.029494084417819977, 0.41149359941482544], [0.0030118892900645733, 0.00013112528540659696, 6.154992297524586e-05, 5.3001589549239725e-05, 6.184765516081825e-05, 9.815933299250901e-05, 0.00011483454727567732, 0.4757375419139862, 0.0026274300180375576, 0.00029131394694559276, 0.00018223555525764823, 0.00028768618358299136, 0.0005731444689445198, 0.0026430757716298103, 0.0009993682615458965, 0.02990439347922802, 0.009313120506703854, 0.47390812635421753], [0.009829029440879822, 0.0009976509027183056, 0.0009463561000302434, 0.001816954230889678, 0.0007712733931839466, 0.0005233948468230665, 0.0009721603128127754, 0.4456765651702881, 0.04528362303972244, 0.012060627341270447, 0.005588527303189039, 0.006055388133972883, 0.003394325030967593, 0.005084871314466, 0.001248743967153132, 0.0037569780834019184, 0.012452364899218082, 0.443541020154953], [0.0034210931044071913, 0.002512470819056034, 0.002807773184031248, 0.0032167001627385616, 0.001190570299513638, 0.002180249197408557, 0.0032669962383806705, 0.4786283075809479, 0.00204465608112514, 0.0017922809347510338, 0.0013399231247603893, 0.0020405820105224848, 0.0016272638458758593, 0.0017691388493403792, 0.0068800910376012325, 0.004286604933440685, 0.004327340051531792, 0.47666797041893005]], [[0.020751314237713814, 0.004799561109393835, 0.0019199488451704383, 0.011148693040013313, 0.005613589193671942, 0.002854570047929883, 0.0025009375531226397, 0.09518235921859741, 0.3986840844154358, 0.09826471656560898, 0.1441383808851242, 0.049914002418518066, 0.009908169507980347, 0.006296933628618717, 0.013394632376730442, 0.004382498096674681, 0.035288382321596146, 0.09495726227760315], [0.0063170562498271465, 0.06808137893676758, 0.0244463924318552, 0.43810713291168213, 0.0389971025288105, 0.07027948647737503, 0.0071087186224758625, 0.16663572192192078, 0.004495683591812849, 0.001299315015785396, 0.0014399454230442643, 0.00024494214449077845, 0.0012541819596663117, 0.0001653982326388359, 0.001058100489899516, 0.0007199249230325222, 0.0034015250857919455, 0.16594800353050232], [0.011267751455307007, 0.008968206122517586, 0.002810870995745063, 0.018706360831856728, 0.002490292303264141, 0.017054222524166107, 0.018888814374804497, 0.45918408036231995, 0.0004455807211343199, 0.00013847854279447347, 0.000195062966668047, 3.27895613736473e-05, 0.00019244305440224707, 0.00013042817590758204, 9.624501399230212e-05, 0.0001623142889002338, 0.002006535418331623, 0.45722946524620056], [0.007357630878686905, 0.010242868214845657, 0.006551855709403753, 0.012094696052372456, 0.029264381155371666, 0.12965093553066254, 0.04332613945007324, 0.3792388141155243, 0.0012675425969064236, 0.00022477094898931682, 0.00044663582229986787, 6.498249422293156e-05, 0.00040139901102520525, 0.0002590409421827644, 0.00017475479398854077, 0.00019948005501646549, 0.0014698648592457175, 0.3777642548084259], [0.0056627057492733, 0.006732357200235128, 0.0003934691194444895, 0.008208667859435081, 0.011397861875593662, 0.21560978889465332, 0.034584805369377136, 0.35830745100975037, 0.0008527575992047787, 9.588804095983505e-05, 0.00022381392773240805, 0.00011451172031229362, 0.00017321806808467954, 0.00010812437540153041, 6.2616090872325e-05, 0.00019935290038120002, 0.0005989354685880244, 0.3566737174987793], [0.004096203483641148, 0.005384576041251421, 0.002170428168028593, 0.001310622552409768, 0.0007041344069875777, 0.006439523305743933, 0.031729549169540405, 0.4746916890144348, 8.405628614127636e-05, 0.00011596980039030313, 3.840967110591009e-05, 5.9437323216116056e-05, 0.00017175795801449567, 4.98275003337767e-05, 0.00017790160200092942, 0.00015131272084545344, 0.00044390567927621305, 0.47218066453933716], [0.013427460566163063, 0.010918931104242802, 0.003710235934704542, 0.007505948189646006, 0.006578024011105299, 0.007909275591373444, 0.017037607729434967, 0.4567281901836395, 0.012575414963066578, 0.002385006519034505, 0.0018776056822389364, 0.0018559142481535673, 0.0009115739958360791, 0.00038237383705563843, 0.0003272334288340062, 0.00013741855218540877, 0.0011080330004915595, 0.454623818397522], [0.00931310374289751, 0.002043264452368021, 0.0009078295552171767, 0.0012289800215512514, 0.0006137617165222764, 0.0013266542227938771, 0.004078489262610674, 0.4844159781932831, 0.0008568183402530849, 0.001052974141202867, 0.0013946084072813392, 0.000907968613319099, 0.0018376810476183891, 0.0010192907648161054, 0.0015269870636984706, 0.001625138451345265, 0.0033921042922884226, 0.4824583828449249], [0.041845064610242844, 0.0014211677480489016, 0.0010739774443209171, 0.0022051555570214987, 0.0027691309805959463, 0.001864167395979166, 0.0007332231034524739, 0.17150144279003143, 0.13701580464839935, 0.02929798513650894, 0.1972234547138214, 0.19314946234226227, 0.015112253837287426, 0.009518761187791824, 0.011236514896154404, 0.004896503407508135, 0.00823812186717987, 0.17089775204658508], [0.03835882619023323, 0.0014122627908363938, 0.0014373030280694366, 0.0015098517760634422, 0.000273301440756768, 0.00030480301938951015, 0.000676378549542278, 0.3460597097873688, 0.03104487434029579, 0.011769531294703484, 0.11456726491451263, 0.026815883815288544, 0.05415477603673935, 0.00569314556196332, 0.005290685221552849, 0.0033986505586653948, 0.01246266532689333, 0.34477007389068604], [0.012215996161103249, 0.00022063068172428757, 0.0002967352047562599, 5.586546831182204e-05, 4.291735967854038e-05, 4.190787149127573e-05, 0.0001948511489899829, 0.0593157522380352, 0.002997629577293992, 0.006254294421523809, 0.009349319152534008, 0.015662996098399162, 0.77195143699646, 0.009479538537561893, 0.0328594446182251, 0.014618106186389923, 0.005338371731340885, 0.059104252606630325], [0.008182763122022152, 0.000944608123973012, 0.00015276652993634343, 0.00022439021267928183, 0.0002934311924036592, 0.0006249533616937697, 0.00013672579370904714, 0.07767671346664429, 0.005449604708701372, 0.0036976486444473267, 0.07359808683395386, 0.015978191047906876, 0.38160690665245056, 0.08131539076566696, 0.10984190553426743, 0.1582321673631668, 0.004691052250564098, 0.07735270261764526], [0.006390031427145004, 0.0003995358129031956, 0.00017632533854339272, 0.00011897386866621673, 0.0001413556601619348, 0.00020264093473087996, 0.00031828568899072707, 0.2741048336029053, 0.0006060952437110245, 0.003205413930118084, 0.009265284053981304, 0.00717315124347806, 0.026316219940781593, 0.05662928521633148, 0.20915424823760986, 0.11072582006454468, 0.022327108308672905, 0.27274537086486816], [0.0033899538684636354, 0.00010152572940569371, 8.424166298937052e-05, 2.1436753740999848e-05, 2.34245653700782e-05, 4.69936421723105e-05, 7.727346383035183e-05, 0.4635946452617645, 0.00030037836404517293, 0.0003546596853993833, 0.00141679379157722, 0.0023534621577709913, 0.006953537929803133, 0.004299550782889128, 0.011724716983735561, 0.03646763786673546, 0.007749668322503567, 0.46104007959365845], [0.0031703165732324123, 0.0001256372925126925, 0.0001768103684298694, 6.991021655267105e-05, 0.00011035898205591366, 0.00014179418212734163, 2.4866711100912653e-05, 0.05497220903635025, 0.0007178115774877369, 0.0002625630295369774, 0.0005267371307127178, 0.002004470909014344, 0.028926579281687737, 0.0021679329220205545, 0.004161909222602844, 0.8444170355796814, 0.0032676609698683023, 0.0547553114593029], [0.0037812539376318455, 8.499257091898471e-05, 0.00013007900270167738, 3.832468428299762e-05, 3.395142266526818e-05, 0.00017415509501006454, 0.00025531640858389437, 0.469820111989975, 0.00034310019691474736, 0.0004103026876691729, 8.775234164204448e-05, 0.00010796101560117677, 0.0037994615267962217, 0.002857225015759468, 0.011160237714648247, 0.02383141592144966, 0.015399402007460594, 0.4676850736141205], [0.014507394284009933, 0.0006518413429148495, 0.0007256737444549799, 0.00084561703260988, 0.0012786348816007376, 0.0009370215702801943, 0.0011542655993252993, 0.4649701416492462, 0.01440021488815546, 0.0032844403758645058, 0.0019431088585406542, 0.0014942371053621173, 0.0009428785997442901, 0.0014801366487517953, 0.003478387603536248, 0.0039110989309847355, 0.021029872819781303, 0.46296507120132446], [0.009303167462348938, 0.002040123799815774, 0.0009067964274436235, 0.001227068598382175, 0.0006124984356574714, 0.0013231176417320967, 0.004076721612364054, 0.4844406843185425, 0.0008550868951715529, 0.0010501407086849213, 0.0013898775214329362, 0.0009051992674358189, 0.001833724440075457, 0.0010180545505136251, 0.001523445243947208, 0.0016230366891250014, 0.00338873197324574, 0.48248252272605896]], [[0.010739102959632874, 0.035216644406318665, 0.09318838268518448, 0.01607787050306797, 0.022773142904043198, 0.033835072070360184, 0.032645050436258316, 0.3586094081401825, 0.007223067805171013, 0.0005059897084720433, 0.002031706040725112, 0.004577308427542448, 0.005930930841714144, 0.005927142221480608, 0.000706797291059047, 0.004443760495632887, 0.008122655563056469, 0.3574458658695221], [7.376516441581771e-05, 0.002476709894835949, 0.9942256808280945, 0.0013813140103593469, 0.000667559274006635, 0.0008037805091589689, 5.074025921203429e-06, 0.0001157826918642968, 1.8883078155340627e-05, 2.1585708964266814e-05, 3.3695760066621006e-06, 2.2813023861090187e-06, 8.392678864765912e-06, 7.348423969233409e-05, 6.464802737582431e-08, 6.3217280512617435e-06, 7.591816597596335e-07, 0.00011535495286807418], [0.011573401279747486, 0.01070353388786316, 0.006627531722187996, 0.6762381196022034, 0.0036514888051897287, 0.0018089571967720985, 0.0033066552132368088, 0.1426980048418045, 6.897190178278834e-05, 4.292085213819519e-05, 8.20855493657291e-05, 2.6496070404391503e-06, 7.246096356539056e-05, 6.872538051538868e-06, 3.069247031817213e-05, 0.00020832280279137194, 0.0010169529123231769, 0.14186039566993713], [0.0006160908960737288, 0.00015899499703664333, 0.0030842525884509087, 0.0034458155278116465, 0.33417969942092896, 0.6519339084625244, 0.00014194434334058315, 0.0032139963004738092, 8.991200957098044e-06, 5.216325575929659e-07, 6.436745820792567e-07, 1.029315717460122e-05, 2.277415660500992e-06, 1.3444147271002294e-06, 2.8569901999730973e-08, 1.1361851193214534e-06, 5.170564691070467e-06, 0.0031948492396622896], [7.603752601426095e-05, 1.856725793913938e-05, 0.007021680008620024, 0.0005639520240947604, 0.011241745203733444, 0.9782938957214355, 5.4092553909868e-05, 0.0013557372149080038, 4.623369477485539e-06, 1.1317769121887977e-07, 4.6429411781900853e-07, 1.406587671226589e-05, 4.54208156952518e-06, 8.771768307269667e-07, 1.6399999580585245e-08, 1.0204817044723313e-06, 3.5763869732363673e-07, 0.001348167541436851], [0.0026723502669483423, 0.001085659139789641, 0.0004051367868669331, 0.009398607537150383, 0.0002153673121938482, 0.00036421630647964776, 0.3406936526298523, 0.3231770098209381, 0.00024878274416550994, 6.021094122843351e-06, 1.049535285346792e-06, 2.1661760456481716e-06, 7.335820100706769e-06, 2.502153790828743e-07, 4.090417178304051e-07, 1.0641939525157795e-06, 0.00036656862357631326, 0.32135435938835144], [0.00023723015328869224, 0.0006981005426496267, 2.4141647372744046e-05, 2.7388308808440343e-05, 2.6869329303735867e-05, 2.9445191103150137e-05, 0.0034527024254202843, 0.4995739459991455, 2.7182299163541757e-05, 1.0028976248577237e-05, 7.592287261104502e-07, 4.656002943193016e-07, 3.776534356347838e-07, 1.33890332154607e-09, 3.6247999046779e-10, 2.3842370300286575e-09, 1.4079528227739502e-06, 0.4958899915218353], [0.04862619936466217, 0.010345939546823502, 0.011460083536803722, 0.009015029296278954, 0.0040201121009886265, 0.006995554082095623, 0.017382990568876266, 0.4154266119003296, 0.004361375235021114, 0.0036321976222097874, 0.009084069170057774, 0.003381872782483697, 0.0069866967387497425, 0.0029012251179665327, 0.0034599476493895054, 0.004867488984018564, 0.023211710155010223, 0.4148408770561218], [0.0025427357759326696, 0.0005715533625334501, 7.800157618476078e-06, 5.661114300892223e-06, 8.262705932793324e-07, 6.325914228000329e-07, 4.651262133847922e-05, 0.013930053450167179, 0.0080681461840868, 0.9516995549201965, 0.003245079889893532, 0.004849835764616728, 0.0010300236754119396, 6.644712266279384e-05, 2.958356617455138e-06, 5.798077836516313e-06, 4.938444180879742e-05, 0.013877182267606258], [0.0017017682548612356, 8.346433787664864e-06, 7.107277724571759e-06, 2.2483165594167076e-05, 1.4175762430568284e-07, 4.973904310645594e-07, 1.9757344489335082e-06, 0.006309520918875933, 0.0013878701720386744, 0.001177509198896587, 0.9150026440620422, 0.006744782906025648, 0.060930199921131134, 0.00010960926010739058, 0.00019088649423792958, 0.0001158466620836407, 9.964558557840064e-06, 0.006278964225202799], [0.0020337742753326893, 3.529844616423361e-05, 2.4121014575939626e-05, 9.663378932600608e-07, 6.157587904453976e-06, 1.5592542695230804e-05, 1.2699849776254268e-06, 0.0043902406468987465, 0.0032813656143844128, 0.028831880539655685, 0.005410725250840187, 0.21648848056793213, 0.7304946780204773, 0.0029678514692932367, 4.8133097152458504e-05, 0.0015799568500369787, 1.3770111763733439e-05, 0.004375702701508999], [0.0005303443176671863, 3.9675505831837654e-05, 3.254097009630641e-06, 1.245289240614511e-07, 3.2402775218542956e-07, 3.6152459870208986e-07, 1.8789179989653348e-07, 0.002272923244163394, 0.0046205236576497555, 0.0068222335539758205, 0.00458117900416255, 0.0023222819436341524, 0.9605902433395386, 0.013480154797434807, 8.107777830446139e-05, 0.002388590946793556, 4.747116690850817e-06, 0.002261755056679249], [2.281972592754755e-05, 1.624000105948653e-05, 1.0081356776936445e-05, 1.3843344959241222e-07, 7.069632829370676e-06, 8.678030098963063e-07, 1.9053494781928748e-08, 7.118482608348131e-05, 3.3621238344494486e-06, 0.00015069826622493565, 3.0588049412472174e-05, 0.0004417619202286005, 0.00038664171006530523, 0.9986591339111328, 1.8347587683820166e-05, 8.73598110047169e-05, 2.2565334802493453e-05, 7.110259321052581e-05], [0.0032094810158014297, 3.641888906713575e-05, 1.0902310350502376e-05, 1.6410942407674156e-05, 1.4611745200454607e-06, 8.242199669439287e-07, 2.1959504010737874e-06, 0.03874398022890091, 0.00022332201479002833, 8.637216524221003e-05, 0.002761505078524351, 0.002770136808976531, 0.013012364506721497, 0.002262247260659933, 0.8887390494346619, 0.0015880463179200888, 0.008026362396776676, 0.0385088175535202], [6.218979251571e-05, 2.1565676888712915e-07, 3.651579447705444e-07, 1.926905213167629e-08, 4.639971962205891e-09, 7.630453779938762e-08, 1.5179700829648368e-09, 0.0011349233100190759, 1.602050474502903e-07, 1.021900970954448e-06, 3.350788233547064e-07, 3.6265521430323133e-06, 0.0017977836541831493, 0.00012570687977131456, 3.6488570913206786e-05, 0.9956827163696289, 2.4340452000615187e-05, 0.0011299801990389824], [0.002804720774292946, 1.023280401568627e-05, 1.8472463807484019e-06, 8.07148462627083e-05, 1.713002149017484e-07, 1.8818593616742874e-06, 1.0591280442895368e-05, 0.3480708599090576, 7.352324610110372e-05, 1.911680328703369e-06, 6.203565135365352e-05, 2.282212153659202e-05, 0.00048755796160548925, 0.0001137986037065275, 0.0011730189435184002, 0.0030736043117940426, 0.2974979877471924, 0.34651273488998413], [0.0003206044784747064, 0.00015877415717113763, 8.22908987174742e-06, 7.803750122548081e-06, 4.569463271764107e-06, 3.1908862752061395e-07, 3.2273526358039817e-06, 0.49984389543533325, 5.2718711231136695e-05, 1.4634963008575141e-05, 1.1255574463575613e-06, 1.4057759472052567e-06, 1.674311079113977e-06, 2.537396142088255e-07, 7.450087764482305e-07, 7.41702706363867e-06, 0.0035545669961720705, 0.4960179328918457], [0.0485931858420372, 0.010334265418350697, 0.011445838958024979, 0.009006194770336151, 0.004006421193480492, 0.006970596965402365, 0.01736915484070778, 0.4154735207557678, 0.004366021137684584, 0.0036354269832372665, 0.009095427580177784, 0.003381686983630061, 0.006999317556619644, 0.002906666835770011, 0.0034656899515539408, 0.0048728808760643005, 0.023190118372440338, 0.4148876368999481]], [[0.012844174169003963, 0.0798042044043541, 0.02089909464120865, 0.00836143922060728, 0.009879563003778458, 0.026802949607372284, 0.02147362008690834, 0.3655009865760803, 0.04412395507097244, 0.006276862230151892, 0.008986221626400948, 0.005198250524699688, 0.0039042446296662092, 0.0020785119850188494, 0.0003550256078597158, 0.011095521971583366, 0.00840063951909542, 0.36401474475860596], [0.0028570315334945917, 0.05234939977526665, 0.19034412503242493, 0.025746742263436317, 0.06097949668765068, 0.027981102466583252, 0.0012445069150999188, 0.3173777461051941, 0.0007383592892438173, 0.0013314195675775409, 0.0001955327024916187, 0.00034650886664167047, 0.0006495795678347349, 0.0005395866464823484, 0.00016830993990879506, 0.0004968298017047346, 0.0004924914101138711, 0.31616121530532837], [0.006136682815849781, 0.01146556157618761, 0.009361186064779758, 0.01500844955444336, 0.004675759933888912, 0.00569231528788805, 0.0016274754889309406, 0.473429799079895, 0.00011368421837687492, 0.0002641089085955173, 6.203964585438371e-05, 1.4243978512240574e-05, 7.455216109519824e-05, 0.00012118379527237266, 0.0002380314836045727, 0.0007043914520181715, 0.00031047113589011133, 0.47070005536079407], [0.003466307418420911, 0.008990129455924034, 0.012424010783433914, 0.008494686335325241, 0.02612609788775444, 0.08612176775932312, 0.009130601771175861, 0.42225393652915955, 0.000520925153978169, 0.00038446561666205525, 7.057125912979245e-05, 4.501350849750452e-05, 0.0001744671753840521, 0.00024384367861784995, 3.244137769797817e-05, 5.129660712555051e-05, 0.0006882306770421565, 0.4207812249660492], [0.0013054993469268084, 0.0018940384034067392, 0.003884206060320139, 0.0037377597764134407, 0.005761050619184971, 0.09599050879478455, 0.011348559521138668, 0.43779850006103516, 0.0006217652116902173, 0.00013963092351332307, 9.481894812779501e-05, 3.73477341781836e-05, 0.0005518122343346477, 6.806761666666716e-05, 2.502367897250224e-05, 1.589303974469658e-05, 0.0002663562772795558, 0.4364590644836426], [0.010308688506484032, 0.0014664509799331427, 0.0005080963601358235, 0.00362275424413383, 0.0015095262788236141, 0.013284358195960522, 0.16884632408618927, 0.3999566435813904, 0.0006568006938323379, 4.1631526983110234e-05, 1.460044313716935e-05, 5.936832894803956e-05, 0.00016476496239192784, 3.833779919659719e-05, 8.019567758310586e-05, 3.8985155697446316e-05, 0.0010843705385923386, 0.3983181416988373], [0.006326482631266117, 0.016756873577833176, 0.004989859648048878, 0.0022639245726168156, 0.0036894602235406637, 0.008774670772254467, 0.025241641327738762, 0.4627170264720917, 0.005648818798363209, 0.0015040470752865076, 0.0007923016091808677, 0.00034435675479471684, 0.0003507158544380218, 9.937327558873221e-05, 1.1070238542743027e-05, 0.00013364804908633232, 0.0002544164308346808, 0.46010124683380127], [0.0074259270913898945, 0.0025825803168118, 0.002699341857805848, 0.0035687170457094908, 0.002208363963291049, 0.004321923945099115, 0.007163169328123331, 0.4735374450683594, 0.0021978095173835754, 0.0023925371933728456, 0.0025940099731087685, 0.0022662749979645014, 0.0034476330038160086, 0.002051194431260228, 0.0019496784079819918, 0.002557227620854974, 0.004368294961750507, 0.47266778349876404], [0.010363788343966007, 0.00221996963955462, 0.00028333021327853203, 0.00022574860486201942, 0.0003813230141531676, 0.00025015787105076015, 0.0009960770839825273, 0.39267635345458984, 0.017529914155602455, 0.1454702913761139, 0.017429856583476067, 0.005330340936779976, 0.009252765215933323, 0.003269227221608162, 0.00026004217215813696, 0.0016475818119943142, 0.0011724071810021996, 0.39124077558517456], [0.007024009712040424, 0.00032848032424226403, 0.0002180506708100438, 8.483139390591532e-05, 9.839046106208116e-05, 0.0003330608597025275, 0.0003289499436505139, 0.4584265351295471, 0.005763299763202667, 0.011496031656861305, 0.02137327753007412, 0.00482274079695344, 0.016936782747507095, 0.010892217047512531, 0.0029559284448623657, 0.0010347227798774838, 0.0011406763223931193, 0.4567421078681946], [0.004309942480176687, 0.0006949015078134835, 0.0006724866689182818, 0.00019897845049854368, 0.001451589516364038, 0.0005847359425388277, 0.0006988535169512033, 0.3003343641757965, 0.009630396962165833, 0.12034106254577637, 0.02156457118690014, 0.14578095078468323, 0.05986659973859787, 0.02222859114408493, 0.00602375902235508, 0.0026746727526187897, 0.0034049905370920897, 0.29953858256340027], [0.0029643962625414133, 0.0006692204624414444, 0.00040533739957027137, 6.326146831270307e-05, 0.0006685216794721782, 0.00029780768090859056, 0.0001575941132614389, 0.4217769503593445, 0.00631742924451828, 0.03040814958512783, 0.009120620787143707, 0.020581409335136414, 0.02309538424015045, 0.051448456943035126, 0.006610249634832144, 0.0028994509484618902, 0.0018828649772331119, 0.420632928609848], [0.0018011615611612797, 0.0009151097037829459, 0.0004891938879154623, 3.94701273762621e-05, 4.397658631205559e-05, 0.00025211929460056126, 0.00017071719048544765, 0.35902509093284607, 0.0011423559626564384, 0.0030309688299894333, 0.005649940576404333, 0.005907784216105938, 0.01582212746143341, 0.21821896731853485, 0.0035398041363805532, 0.01576819084584713, 0.0096874525770545, 0.3584956228733063], [0.0022777696140110493, 7.42414194974117e-05, 0.00010910586570389569, 2.774424137896858e-05, 2.026858419412747e-05, 4.3960251787211746e-05, 4.957142300554551e-05, 0.4659847915172577, 0.00024186834343709052, 0.0004234013322275132, 0.0008418430224992335, 0.0008809684659354389, 0.0028999261558055878, 0.012522848322987556, 0.0293912123888731, 0.015852419659495354, 0.004182854667305946, 0.46417516469955444], [0.001988678239285946, 0.0005271757254377007, 0.00023859803332015872, 0.00011534810619195923, 0.0005994653911329806, 0.00026491089374758303, 1.8572067347122356e-05, 0.3413005471229553, 0.00015226945106405765, 0.0003291224129498005, 0.0005546271568164229, 0.0020807706750929356, 0.005171212833374739, 0.07925518602132797, 0.012170820496976376, 0.2019495666027069, 0.012987622059881687, 0.3402954638004303], [0.0055058542639017105, 4.991352398064919e-05, 4.2294817831134424e-05, 4.501306830206886e-05, 1.1363406883901916e-05, 6.326483708107844e-05, 0.0003240192891098559, 0.42916765809059143, 0.0002106890024151653, 0.0001240645651705563, 0.00011310317495372146, 0.00026939387316815555, 0.0009564697975292802, 0.004547665826976299, 0.010004445910453796, 0.01889570616185665, 0.10194670408964157, 0.4277224540710449], [0.009638904593884945, 0.003501611528918147, 0.0030555815901607275, 0.00112821941729635, 0.0013083498924970627, 0.0010055378079414368, 0.0010755303082987666, 0.46245238184928894, 0.004783840384334326, 0.0018289550207555294, 0.0010401075705885887, 0.0008228583610616624, 0.0015458957059308887, 0.0014571206411346793, 0.000449574610684067, 0.01614176668226719, 0.028757963329553604, 0.46000587940216064], [0.0074120769277215, 0.0025762582663446665, 0.002694974420592189, 0.0035594243090599775, 0.0022035588044673204, 0.0043113031424582005, 0.007153714075684547, 0.473585307598114, 0.002194031374529004, 0.002386929700151086, 0.0025871640536934137, 0.002261222107335925, 0.0034439442679286003, 0.0020488405134528875, 0.0019478540634736419, 0.002553340746089816, 0.004364998545497656, 0.4727151095867157]], [[0.052090659737586975, 0.002184901386499405, 0.0048636808060109615, 0.0025722146965563297, 0.0014157937839627266, 0.002135984366759658, 0.007379084825515747, 0.05510512366890907, 0.10771066695451736, 0.09795472770929337, 0.14250078797340393, 0.023203276097774506, 0.05535798519849777, 0.1301063448190689, 0.01747569814324379, 0.11263162642717361, 0.1303369700908661, 0.05497439578175545], [0.019005930051207542, 0.1590835452079773, 0.09061627089977264, 0.04581692814826965, 0.048733022063970566, 0.029990745708346367, 0.1322750747203827, 0.20815229415893555, 0.010672581382095814, 0.0076275174506008625, 0.003390495665371418, 0.0030649350956082344, 0.009822240099310875, 0.00764884939417243, 0.001791561720892787, 0.004078608471900225, 0.01087079755961895, 0.20735867321491241], [0.014433973468840122, 0.0880531594157219, 0.07811418175697327, 0.025221742689609528, 0.007888401858508587, 0.05956242233514786, 0.07660578191280365, 0.2965799868106842, 0.003878543386235833, 0.0061511872336268425, 0.0013668339233845472, 0.0009939747396856546, 0.004884499125182629, 0.018866483122110367, 0.003180424915626645, 0.002672426635399461, 0.015901267528533936, 0.29564470052719116], [0.017160840332508087, 0.0538535974919796, 0.037526920437812805, 0.04595709219574928, 0.029709894210100174, 0.02497101202607155, 0.16450288891792297, 0.28642570972442627, 0.0030923252925276756, 0.0022176923230290413, 0.017148872837424278, 0.00275771738961339, 0.009007244370877743, 0.0046106367371976376, 0.0025053690187633038, 0.004298071842640638, 0.008863374590873718, 0.2853906750679016], [0.009029701352119446, 0.04390275105834007, 0.03652947396039963, 0.06385244429111481, 0.10592278838157654, 0.05497579649090767, 0.09197823703289032, 0.2754691541194916, 0.0039887879975140095, 0.002595728263258934, 0.004820017144083977, 0.018887631595134735, 0.00461242813616991, 0.0012559709139168262, 0.0020406160037964582, 0.0015585626242682338, 0.003971225582063198, 0.27460870146751404], [0.016578320413827896, 0.03908045217394829, 0.10073107481002808, 0.035165317356586456, 0.03728099539875984, 0.03865600377321243, 0.10135293751955032, 0.26606327295303345, 0.008089425042271614, 0.0042185052298009396, 0.007212627213448286, 0.005364152602851391, 0.014577221125364304, 0.03742063418030739, 0.0031429212540388107, 0.010746891610324383, 0.009438537992537022, 0.2648807466030121], [0.015786821022629738, 0.02948293834924698, 0.0934114158153534, 0.04438027739524841, 0.041531480848789215, 0.042542241513729095, 0.059665970504283905, 0.29884546995162964, 0.01240166649222374, 0.005023085977882147, 0.00642746826633811, 0.007863108068704605, 0.0040274555794894695, 0.012273977510631084, 0.004727882798761129, 0.004532523453235626, 0.0192925576120615, 0.29778367280960083], [0.006030738353729248, 0.0023392923176288605, 0.005748499184846878, 0.0027461848221719265, 0.0019342971500009298, 0.002150171436369419, 0.009220965206623077, 0.4717944860458374, 0.0033330449368804693, 0.001902337302453816, 0.0019142376258969307, 0.0021520627196878195, 0.0019297396065667272, 0.0016741558210924268, 0.0004917584592476487, 0.0010305935284122825, 0.01413970161229372, 0.46946775913238525], [0.07993964105844498, 0.0027988022193312645, 0.002320235362276435, 0.002305284608155489, 0.0023923267144709826, 0.0010912404395639896, 0.007339422591030598, 0.19986312091350555, 0.03302154317498207, 0.04152246192097664, 0.08813502639532089, 0.1377996802330017, 0.02136269211769104, 0.0258950088173151, 0.024599319323897362, 0.015068632550537586, 0.11539774388074875, 0.1991477757692337], [0.08311568945646286, 0.005008289590477943, 0.012060679495334625, 0.0013727740151807666, 0.0003883234749082476, 0.00036722028744407, 0.003588092979043722, 0.09027409553527832, 0.025588011369109154, 0.08640909194946289, 0.05732601135969162, 0.0395367331802845, 0.08872028440237045, 0.21484820544719696, 0.07040558010339737, 0.03960118815302849, 0.09140832722187042, 0.08998134732246399], [0.0555092990398407, 0.0010100443614646792, 0.000561111664865166, 0.0057987854816019535, 0.001230020192451775, 0.002007002243772149, 0.004329096991568804, 0.17694149911403656, 0.022444628179073334, 0.020271124318242073, 0.08008985221385956, 0.07794909179210663, 0.0647805705666542, 0.018461761996150017, 0.10288785398006439, 0.019986581057310104, 0.1693289577960968, 0.17641273140907288], [0.04985124617815018, 0.001903466647490859, 0.0008971985662356019, 0.003410105360671878, 0.0036717457696795464, 0.0030870907939970493, 0.005994782317429781, 0.23521101474761963, 0.014776114374399185, 0.02036803960800171, 0.0523671917617321, 0.07634344696998596, 0.03216150775551796, 0.030668415129184723, 0.0426567979156971, 0.021524589508771896, 0.17067310214042664, 0.23443415760993958], [0.08185428380966187, 0.0016140748048201203, 0.0009582791826687753, 0.0013916378375142813, 0.0006667936686426401, 0.00393654964864254, 0.004610504489392042, 0.15251100063323975, 0.019260644912719727, 0.026944225654006004, 0.027461031451821327, 0.02499232441186905, 0.13205774128437042, 0.03910479322075844, 0.11330936849117279, 0.1194438561797142, 0.09803228825330734, 0.15185050666332245], [0.04373820126056671, 0.0013439134927466512, 0.013023088686168194, 0.0008012279286049306, 0.00044838577741757035, 0.005062331445515156, 0.0023424848914146423, 0.21114830672740936, 0.00901955645531416, 0.028735289350152016, 0.012988061644136906, 0.009261177852749825, 0.06049458310008049, 0.1171187236905098, 0.04373032599687576, 0.13701216876506805, 0.09353122115135193, 0.21020089089870453], [0.047847066074609756, 0.001156259560957551, 0.0017387664411216974, 0.002434162423014641, 0.0022532062139362097, 0.0021263642702251673, 0.0030353169422596693, 0.17679449915885925, 0.01974545791745186, 0.020326262339949608, 0.02233302965760231, 0.04081903025507927, 0.013439544476568699, 0.20141346752643585, 0.11315732449293137, 0.03762490674853325, 0.11737623810768127, 0.1763792186975479], [0.06787757575511932, 0.0008852275204844773, 0.002366378204897046, 0.0012901215814054012, 0.00014013375039212406, 0.003571044420823455, 0.0029307121876627207, 0.21902814507484436, 0.008981623686850071, 0.01992524042725563, 0.00858902744948864, 0.008849120698869228, 0.10506978631019592, 0.07391723990440369, 0.0223555751144886, 0.10521212220191956, 0.13090288639068604, 0.21810802817344666], [0.04927131161093712, 0.0022126000840216875, 0.0052202604711055756, 0.0033018947578966618, 0.0029009829740971327, 0.001966975163668394, 0.007025912869721651, 0.33490821719169617, 0.036221131682395935, 0.02017240785062313, 0.01974027417600155, 0.020180750638246536, 0.016847550868988037, 0.05306928977370262, 0.009960493072867393, 0.024757836014032364, 0.058607880026102066, 0.3336341977119446], [0.0060246591456234455, 0.002337387762963772, 0.005739856977015734, 0.002741975476965308, 0.0019332412630319595, 0.0021465588361024857, 0.009212481789290905, 0.4718326926231384, 0.0033306328114122152, 0.0018994248239323497, 0.0019120032666251063, 0.002149031264707446, 0.0019259025575593114, 0.0016709137707948685, 0.0004907639813609421, 0.0010284932795912027, 0.014118067920207977, 0.46950578689575195]]], [[[0.0198357030749321, 0.06936673074960709, 0.09549589455127716, 0.04435005784034729, 0.05328927934169769, 0.13864509761333466, 0.17221511900424957, 0.1903165876865387, 0.0033662288915365934, 0.009243504144251347, 0.0021781709510833025, 0.00207845913246274, 0.00017927895532920957, 0.0005661554750986397, 0.0018799557583406568, 0.000555303820874542, 0.006812863517552614, 0.1896256059408188], [0.007963762618601322, 0.016742318868637085, 0.012472191825509071, 0.0020592662040144205, 0.0026153794024139643, 0.004086544271558523, 0.0036961862351745367, 0.47501203417778015, 0.0003098894376307726, 0.000287247181404382, 0.00030760146910324693, 0.0001648959587328136, 0.00023569242330268025, 9.597042662790045e-05, 0.00013741022848989815, 0.00011434373300289735, 0.000613885116763413, 0.4730854630470276], [0.0002830388257279992, 0.03930000588297844, 0.0035642434377223253, 0.0004981998936273158, 0.0030839056707918644, 0.00046691964962519705, 0.0010312205413356423, 0.47620129585266113, 0.00010498386109247804, 0.00013606913853436708, 0.00020151807984802872, 0.0002990549255628139, 7.56510125938803e-05, 3.746096626855433e-05, 7.097942580003291e-05, 1.6067249816842377e-05, 0.0003392927465029061, 0.47429001331329346], [0.00446266308426857, 0.06989709287881851, 0.4190283715724945, 0.016530873253941536, 0.002636696444824338, 0.015375549905002117, 0.0010259931441396475, 0.23205652832984924, 0.0003654521715361625, 0.005422619171440601, 0.00027639706968329847, 0.00023947392764966935, 0.0001316989801125601, 0.000385541730793193, 0.00015174891450442374, 0.0002819782530423254, 0.0005226696957834065, 0.23120859265327454], [0.02804722636938095, 0.03617863357067108, 0.4235079884529114, 0.1779247224330902, 0.016106240451335907, 0.005510479211807251, 0.0037310183979570866, 0.14683204889297485, 0.00117478147149086, 0.007664066273719072, 0.0008031700272113085, 0.0003400433633942157, 0.00047261835425160825, 0.0012937731808051467, 0.000253152014920488, 0.001010341220535338, 0.002899410203099251, 0.14625035226345062], [0.006059535779058933, 0.026572220027446747, 0.1781032830476761, 0.1149151548743248, 0.09017074108123779, 0.008880454115569592, 0.005825142841786146, 0.2820753753185272, 0.00045368948485702276, 0.002319447696208954, 0.0005668747471645474, 0.0003588380350265652, 0.00011267008812865242, 0.0005472124903462827, 9.347544255433604e-05, 0.0005169360083527863, 0.0013132994063198566, 0.28111571073532104], [0.002722575794905424, 0.0087135536596179, 0.004873128142207861, 0.010396331548690796, 0.019262010231614113, 0.355297327041626, 0.08294752985239029, 0.25481200218200684, 0.0029435749165713787, 0.0007735161925666034, 0.0004732540110126138, 0.0002592862874735147, 0.00012160457845311612, 0.0002667648659553379, 0.0001134481790359132, 0.0005550141213461757, 0.0015133682172745466, 0.25395575165748596], [0.0010898113250732422, 0.003750736126676202, 0.0017022984102368355, 0.001974439015612006, 0.0031029079109430313, 0.0018419966800138354, 0.005618029274046421, 0.47816482186317444, 0.0012843201402574778, 0.0011919261887669563, 0.0021610234398394823, 0.001329431775957346, 0.001791071379557252, 0.002343082567676902, 0.004804319702088833, 0.0022571496665477753, 0.008350817486643791, 0.4772418141365051], [0.48288941383361816, 0.0036717320326715708, 0.001377971493639052, 0.0023675193078815937, 0.0014998248079791665, 0.013999790884554386, 0.005092821549624205, 0.19941426813602448, 0.02730611152946949, 0.01440039835870266, 0.014395291917026043, 0.011561168357729912, 0.0005549857742153108, 0.003097251523286104, 0.000556406332179904, 0.008160283789038658, 0.01086170133203268, 0.1987929791212082], [0.01184326782822609, 0.00494607537984848, 0.002553569618612528, 0.00035076990025117993, 0.0004445216909516603, 0.001061841263435781, 0.004431784152984619, 0.46193641424179077, 0.014392171986401081, 0.020469358190894127, 0.004964571911841631, 0.0022654873318970203, 0.0009601128404028714, 0.000878683989867568, 0.000250015698838979, 0.0005257470766082406, 0.007521709892898798, 0.46020394563674927], [0.007179558277130127, 0.0026985437143594027, 0.013979402370750904, 0.00016493750445079058, 4.244291631039232e-05, 0.00015718421491328627, 0.00017608079360798, 0.08089958876371384, 0.0035381480120122433, 0.7820203304290771, 0.009053444489836693, 0.013260775245726109, 0.000898693164344877, 0.0032689240761101246, 0.0007828425150364637, 0.0007618338568136096, 0.0005212344694882631, 0.08059602975845337], [0.011376898735761642, 0.001788318739272654, 0.006709528621286154, 0.0008927182061597705, 0.00018925988115370274, 0.0003210977592971176, 0.0003764079592656344, 0.06733069568872452, 0.025048764422535896, 0.5982553958892822, 0.1286170333623886, 0.028685450553894043, 0.024124734103679657, 0.0099724680185318, 0.013553672470152378, 0.014092433266341686, 0.0015347582520917058, 0.06713036447763443], [0.010121445171535015, 0.0016177400248125196, 0.01166220847517252, 0.00046832492807880044, 0.0001558509684400633, 0.0014978689141571522, 0.0005233543342910707, 0.0676753893494606, 0.007183567620813847, 0.4864169657230377, 0.08801326155662537, 0.08397214859724045, 0.021456483751535416, 0.06578300148248672, 0.05767304450273514, 0.02696061134338379, 0.0013436544686555862, 0.06747498363256454], [0.0004244083247613162, 0.0007299181306734681, 0.0005132246878929436, 2.1792886400362477e-05, 8.751631685299799e-05, 2.1516798369702883e-05, 6.463241879828274e-05, 0.4721575081348419, 0.0001698044507065788, 0.005626303143799305, 0.0054524666629731655, 0.0067330352030694485, 0.027964990586042404, 0.003480780404061079, 0.0046842461451888084, 0.0009209192357957363, 0.0005608578212559223, 0.4703860282897949], [5.811641312902793e-05, 0.00014541142445523292, 0.0003329585015308112, 3.0411134503083304e-05, 5.086290912004188e-05, 0.0001979120570467785, 3.830804780591279e-05, 0.33010002970695496, 0.00042407127330079675, 0.0005526455934159458, 0.0010584346018731594, 0.0016241088742390275, 0.0013137692585587502, 0.28990504145622253, 0.013115125708281994, 0.030940385535359383, 0.0010199840180575848, 0.32909244298934937], [0.003297432092949748, 0.00035095325438305736, 0.002527621341869235, 3.125232979073189e-05, 4.182582051726058e-05, 0.0001655129308346659, 4.524572068476118e-05, 0.24974699318408966, 0.00027983018662780523, 0.07696076482534409, 0.0032998560927808285, 0.004801527597010136, 0.0031629574950784445, 0.02051280066370964, 0.372971773147583, 0.01206239964812994, 0.000802380614914, 0.24893885850906372], [0.0015863875159993768, 0.0006073348340578377, 0.00026210080250166357, 0.0004717164265457541, 0.00037955096922814846, 0.004354387987405062, 0.0015525959897786379, 0.4257729649543762, 0.004350158851593733, 0.0009823022410273552, 0.002736498834565282, 0.002721665194258094, 0.0032789683900773525, 0.010538192465901375, 0.013733623549342155, 0.08009224385023117, 0.021989766508340836, 0.4245895743370056], [0.0010887060780078173, 0.0037434021942317486, 0.0016992298187687993, 0.0019713479559868574, 0.003097923006862402, 0.0018366205040365458, 0.005603366531431675, 0.47820135951042175, 0.0012824948644265532, 0.001190404174849391, 0.0021584760397672653, 0.001327403704635799, 0.0017906284192577004, 0.002339616185054183, 0.004796708934009075, 0.00225403206422925, 0.008340297266840935, 0.47727805376052856]], [[0.0032114319037646055, 0.00013090315042063594, 0.00034904692438431084, 0.0006393910734914243, 0.0010621969122439623, 0.0007431411067955196, 0.008632294833660126, 0.06634023040533066, 0.7102252840995789, 0.05519091710448265, 0.0031111338175833225, 0.013691863045096397, 0.014591249637305737, 0.0013430803082883358, 0.03435889258980751, 0.0031536363530904055, 0.01711997389793396, 0.06610535830259323], [0.019719427451491356, 0.024167226627469063, 0.0059783426113426685, 0.005212769843637943, 0.0027863585855811834, 0.007687233854085207, 0.003696197411045432, 0.45558908581733704, 0.00775065878406167, 0.001591218519024551, 0.0018187231617048383, 0.000845509406644851, 0.002295931801199913, 0.0007309811189770699, 0.002990799257531762, 0.001636104891076684, 0.001538593671284616, 0.45396485924720764], [0.013290983624756336, 0.1337961107492447, 0.008775420486927032, 0.007490844465792179, 0.004998033866286278, 0.0406293123960495, 0.003949788864701986, 0.3816623389720917, 0.0016432666452601552, 0.0024369729217141867, 0.001821141573600471, 0.0013144816039130092, 0.006068480666726828, 0.005593474488705397, 0.0024943393655121326, 0.0022883464116603136, 0.0014911094913259149, 0.3802556097507477], [0.01963750086724758, 0.01606578752398491, 0.007824479602277279, 0.028928380459547043, 0.007104481570422649, 0.00461278110742569, 0.007818643003702164, 0.44637635350227356, 0.006365820299834013, 0.002038645325228572, 0.00018129916861653328, 0.00013725316966883838, 0.00029798789182677865, 0.00020003262034151703, 0.0005150617798790336, 0.001063570030964911, 0.005929863080382347, 0.44490206241607666], [0.008750522509217262, 0.020058250054717064, 0.034273333847522736, 0.15813247859477997, 0.08429761976003647, 0.011156564578413963, 0.007983031682670116, 0.3324251174926758, 0.003040933283045888, 0.0009596023010089993, 0.0003028068458661437, 0.0005657217116095126, 0.0005226721405051649, 0.000724549638107419, 0.0004815302381757647, 0.0011828838614746928, 0.0036625622306019068, 0.3314798176288605], [0.008771915920078754, 0.0304811280220747, 0.01771901734173298, 0.23007294535636902, 0.14507973194122314, 0.01170822698622942, 0.010087354108691216, 0.2615654766559601, 0.007105929311364889, 0.0026740427128970623, 0.0005285755614750087, 0.0023073796182870865, 0.0005569985369220376, 0.001289823674596846, 0.004069311544299126, 0.0011789572890847921, 0.003944925963878632, 0.2608582377433777], [0.022190244868397713, 0.002946162363514304, 0.0017048761947080493, 0.021689174696803093, 0.025856316089630127, 0.020759446546435356, 0.055512621998786926, 0.4185470938682556, 0.005572992376983166, 0.0008618462597951293, 0.0004357017751317471, 0.0004524882242549211, 0.0005107258912175894, 0.00018928847566712648, 0.00042232044506818056, 0.001198497717268765, 0.0038108781445771456, 0.4173392057418823], [0.011188250035047531, 0.013476544991135597, 0.005470729433000088, 0.008650447241961956, 0.004335899371653795, 0.002370525151491165, 0.0014445886481553316, 0.45691919326782227, 0.005162179935723543, 0.005457889288663864, 0.004646385088562965, 0.005357591435313225, 0.0038983498234301805, 0.0033542767632752657, 0.006505399942398071, 0.0025111937429755926, 0.0032651068177074194, 0.4559854567050934], [0.015613935887813568, 0.00048396395868621767, 0.0004490090359468013, 0.0014017182402312756, 0.0007230761111713946, 0.0009963136399164796, 0.5107212662696838, 0.178949236869812, 0.03378476947546005, 0.004268806427717209, 0.0026619553100317717, 0.0019101154757663608, 0.0008536335080862045, 0.00014770810957998037, 0.004275203216820955, 0.0023854663595557213, 0.06206618621945381, 0.1783076971769333], [0.023368721827864647, 0.0011420976370573044, 0.0006572111160494387, 0.0007549949223175645, 0.0007354072295129299, 0.0021123650949448347, 0.012593423016369343, 0.35899797081947327, 0.19064292311668396, 0.011285515502095222, 0.018310239538550377, 0.003059466602280736, 0.004168070387095213, 0.0012553917476907372, 0.0034442462492734194, 0.0020430698059499264, 0.007789727300405502, 0.3576391041278839], [0.029853250831365585, 0.0008325186208821833, 0.0003610258863773197, 0.0009481299202889204, 0.000601341831497848, 0.00032201522844843566, 0.026896288618445396, 0.3786247968673706, 0.032540399581193924, 0.06601249426603317, 0.020571351051330566, 0.01668149046599865, 0.006908417213708162, 0.0060795811004936695, 0.0128866545855999, 0.0026791223790496588, 0.020055139437317848, 0.3771459758281708], [0.013873845338821411, 0.0005254732095636427, 0.0003911054809577763, 0.0012402221327647567, 0.0006464222678914666, 0.00026710378006100655, 0.020009184256196022, 0.27534469962120056, 0.03271089494228363, 0.15640050172805786, 0.11559490859508514, 0.02168264612555504, 0.01601887308061123, 0.004834466148167849, 0.03524492308497429, 0.0033099488355219364, 0.027524808421730995, 0.2743799388408661], [0.02214457467198372, 0.00037986368988640606, 0.00026715794228948653, 0.00075014733010903, 0.0007584996055811644, 0.0007202107808552682, 0.023250963538885117, 0.22936193645000458, 0.019034970551729202, 0.029392875730991364, 0.2232811003923416, 0.05708605796098709, 0.03230017051100731, 0.003910001367330551, 0.09177181124687195, 0.001439649029634893, 0.035524558275938034, 0.22862555086612701], [0.007113738916814327, 0.0006498713046312332, 0.0003090251993853599, 0.0004530122969299555, 6.875237886561081e-05, 0.00037506158696487546, 0.0016356968553736806, 0.18895839154720306, 0.010990725830197334, 0.003803421277552843, 0.052337586879730225, 0.06071186810731888, 0.2979121208190918, 0.010120478458702564, 0.1673673838376999, 0.0024491609074175358, 0.0064687905833125114, 0.18827494978904724], [0.0031717054080218077, 0.0002986885665450245, 9.306650463258848e-05, 0.0004830407560802996, 7.479701162083074e-05, 3.410624776734039e-05, 0.0010800394229590893, 0.4053138792514801, 0.005141880828887224, 0.00234306906349957, 0.016423499211668968, 0.006071711890399456, 0.05012787505984306, 0.009697899222373962, 0.0751737430691719, 0.012558813206851482, 0.00812035147100687, 0.4037918746471405], [0.0021895403042435646, 6.32161827525124e-05, 1.8947535863844678e-05, 0.0001729504729155451, 0.00012533670815173537, 9.961295290850103e-05, 0.001541618607006967, 0.057948999106884, 0.0025393518153578043, 0.00047149937017820776, 0.005157999694347382, 0.0029004013631492853, 0.018878212198615074, 0.004145929589867592, 0.8321943283081055, 0.0026455214247107506, 0.011156431399285793, 0.05775003135204315], [0.01979810744524002, 0.0008183920290321112, 0.00032908638240769506, 0.002786231692880392, 0.0016714920056983829, 0.0015682430239394307, 0.007797266822308302, 0.4183644950389862, 0.0031669382005929947, 0.0013748655328527093, 0.001944647985510528, 0.0017040690872818232, 0.0023405516985803843, 0.002495987107977271, 0.012995108030736446, 0.04501843824982643, 0.058572594076395035, 0.41725340485572815], [0.011182286776602268, 0.013463879004120827, 0.005462278611958027, 0.0086446488276124, 0.004329335410147905, 0.0023684215266257524, 0.0014446486020460725, 0.4569592773914337, 0.00515475869178772, 0.005449405871331692, 0.004643140360713005, 0.005351749714463949, 0.003896940965205431, 0.003350475337356329, 0.00650010397657752, 0.0025090526323765516, 0.003264644183218479, 0.45602503418922424]], [[0.0015919063007459044, 0.00023388373665511608, 0.00018545846978668123, 0.006803056690841913, 0.0031412991229444742, 0.005325880832970142, 0.014740907587110996, 0.20477768778800964, 0.4324082136154175, 0.004299475345760584, 0.0016226677689701319, 0.001946906908415258, 0.0016350287478417158, 0.002965702908113599, 0.00261878315359354, 0.0026707688812166452, 0.10900192707777023, 0.20403030514717102], [0.004224590491503477, 0.04981125891208649, 0.00444025220349431, 0.19406437873840332, 0.032126009464263916, 0.02445823699235916, 0.024604953825473785, 0.32032519578933716, 0.008055930025875568, 0.006316736340522766, 0.004558903630822897, 0.0005819599027745426, 0.0004960131482221186, 6.573435530299321e-05, 0.00012776632502209395, 0.0001487328700022772, 0.006616715807467699, 0.31897658109664917], [0.0023816332686692476, 0.06349281221628189, 0.006596241611987352, 0.027716509997844696, 0.003398604691028595, 0.006398774217814207, 0.009261146187782288, 0.4353353679180145, 0.000737754802685231, 0.0024823094718158245, 0.0010043750517070293, 0.0009026756160892546, 0.0013696526875719428, 0.0005678092129528522, 0.000840228283777833, 0.0003785362059716135, 0.0033189153764396906, 0.4338166415691376], [0.00716417608782649, 0.01307949610054493, 0.0013401187025010586, 0.05052318796515465, 0.19508983194828033, 0.02593156322836876, 0.016679955646395683, 0.3339204490184784, 0.012805447913706303, 0.0013138161739334464, 0.0015873931115493178, 0.0020420742221176624, 0.00023377197794616222, 3.0358600270119496e-05, 8.018818334676325e-05, 5.5722150136716664e-05, 0.005541261751204729, 0.33258119225502014], [0.009210345335304737, 0.036848366260528564, 0.003598419250920415, 0.052611950784921646, 0.11422156542539597, 0.023925086483359337, 0.025763679295778275, 0.3605382442474365, 0.006301281973719597, 0.002046118024736643, 0.00034485573996789753, 0.0005120487767271698, 0.00016939043416641653, 5.282276470097713e-05, 5.469312236527912e-05, 4.163683479418978e-05, 0.004401382990181446, 0.3593580722808838], [0.02130940929055214, 0.015226727351546288, 0.009451772086322308, 0.0764726996421814, 0.09114345163106918, 0.016775405034422874, 0.04087820276618004, 0.35607075691223145, 0.008115779608488083, 0.0018123869085684419, 0.0016528911655768752, 0.0013958945637568831, 0.00016599825175944716, 0.0004599544918164611, 0.0007877404568716884, 0.00028195854974910617, 0.0031386353075504303, 0.3548603653907776], [0.020775312557816505, 0.008406789042055607, 0.0012552778935059905, 0.03061218187212944, 0.007357859518378973, 0.015877289697527885, 0.07635678350925446, 0.39632555842399597, 0.011350494809448719, 0.0032104968558996916, 0.0006408367189578712, 0.0010408599628135562, 0.0007168087176978588, 0.00038456713082268834, 0.0010350859956815839, 0.0011247077491134405, 0.028626708313822746, 0.39490222930908203], [0.019139837473630905, 0.007747821044176817, 0.0045446124859154224, 0.003295864909887314, 0.001629959442652762, 0.004631776828318834, 0.010625804774463177, 0.44511961936950684, 0.005369405262172222, 0.010123602114617825, 0.003923578653484583, 0.0049577634781599045, 0.004810146521776915, 0.006993243936449289, 0.0027425168082118034, 0.003756278892979026, 0.016398848965764046, 0.44418925046920776], [0.013066074810922146, 0.000597621314227581, 0.00021678546909242868, 0.002629011170938611, 0.002416633302345872, 0.0019268810283392668, 0.002734334906563163, 0.4571897089481354, 0.028470557183027267, 0.00815275963395834, 0.005794010125100613, 0.003926226403564215, 0.0003838609263766557, 0.0005489303730428219, 0.00014695426216349006, 0.0002773484739009291, 0.016052475199103355, 0.45546984672546387], [0.012452282942831516, 0.0019131734734401107, 0.00040188897401094437, 0.004953394178301096, 0.0015349533641710877, 0.0011433492181822658, 0.006439296994358301, 0.3674314618110657, 0.04960252717137337, 0.016772141680121422, 0.1067410260438919, 0.015721844509243965, 0.015234784223139286, 0.0004872052522841841, 0.0005075965309515595, 0.0012909944634884596, 0.03140871226787567, 0.3659633696079254], [0.011807125061750412, 0.0006608111434616148, 0.0003155194572173059, 0.0008886565919965506, 0.002358725294470787, 0.00012113802949897945, 0.0017902886029332876, 0.35721123218536377, 0.018293827772140503, 0.010796325281262398, 0.008344249799847603, 0.21248884499073029, 0.006389576941728592, 0.0028339666314423084, 0.0003760062681976706, 0.00033859253744594753, 0.008922209963202477, 0.3560628294944763], [0.008579464629292488, 0.0007328075589612126, 3.2342111808247864e-05, 0.0015760724199935794, 0.0003965023788623512, 9.889760985970497e-05, 0.002443406032398343, 0.40842410922050476, 0.0242437906563282, 0.029078271239995956, 0.07370910793542862, 0.01740134507417679, 0.00353580922819674, 0.0036789397709071636, 0.0044410377740859985, 0.0006925452616997063, 0.014166800305247307, 0.4067687690258026], [0.01760338433086872, 0.0005018892115913332, 5.6269505876116455e-05, 0.0005447225994430482, 0.0013171160826459527, 0.0005111576174385846, 0.0013966219266876578, 0.38478928804397583, 0.015783654525876045, 0.007116598077118397, 0.0573749765753746, 0.03381834179162979, 0.016822632402181625, 0.04711425304412842, 0.009025078266859055, 0.005393289495259523, 0.017322583124041557, 0.3835081458091736], [0.00583166629076004, 0.0002452265180181712, 0.00011990418715868145, 0.0002569336793385446, 0.0005108966142870486, 0.00021578100859187543, 0.0005966334138065577, 0.45361873507499695, 0.00449518533423543, 0.001683377893641591, 0.014497029595077038, 0.01418666448444128, 0.011421904899179935, 0.010187213309109211, 0.008641134947538376, 0.0026877978816628456, 0.018816448748111725, 0.45198750495910645], [0.0017042444087564945, 0.0005432125763036311, 6.676803604932502e-05, 0.0004121949605178088, 0.0002309448318555951, 0.00024072818632703274, 0.0006195068126544356, 0.33023717999458313, 0.003927028272300959, 0.0006242171511985362, 0.0609479658305645, 0.05393989756703377, 0.17119739949703217, 0.018775567412376404, 0.012661164626479149, 0.006549193058162928, 0.008450963534414768, 0.3288719058036804], [0.009993198327720165, 0.00036609446397051215, 0.0001395911822328344, 0.00023735039576422423, 0.0010359009029343724, 0.00023008791322354227, 0.0012113201664760709, 0.42079851031303406, 0.02658989280462265, 0.0027027649339288473, 0.011188065633177757, 0.020617034286260605, 0.009854421950876713, 0.006151218432933092, 0.05140562355518341, 0.002112812362611294, 0.016328411176800728, 0.41903766989707947], [0.020920278504490852, 0.0011103719007223845, 0.00036050903145223856, 0.002374558709561825, 0.0009713756153360009, 0.0016950835706666112, 0.005621424410492182, 0.40433767437934875, 0.031358882784843445, 0.008115009404718876, 0.004574395716190338, 0.006168106105178595, 0.006446888204663992, 0.004209088161587715, 0.008972656913101673, 0.00959857739508152, 0.08012130111455917, 0.4030437171459198], [0.01912708207964897, 0.007735878694802523, 0.004537401720881462, 0.0032907987479120493, 0.0016268363688141108, 0.004620361607521772, 0.010611922480165958, 0.4451892375946045, 0.005358974449336529, 0.010110758244991302, 0.003921797964721918, 0.004952574614435434, 0.004802997689694166, 0.006983943283557892, 0.0027385845314711332, 0.003751524491235614, 0.01638111099600792, 0.44425830245018005]], [[0.0035134549252688885, 0.003635057946667075, 0.012837131507694721, 0.005170042160898447, 0.006220436189323664, 0.004258905537426472, 0.0029826625250279903, 0.16019825637340546, 0.28187647461891174, 0.06679555028676987, 0.015798572450876236, 0.022557275369763374, 0.04098406806588173, 0.07524382323026657, 0.0057694558054208755, 0.036703478544950485, 0.09565354883670807, 0.15980182588100433], [0.026954179629683495, 0.012621690519154072, 0.022246697917580605, 0.21727041900157928, 0.09373077750205994, 0.3343869745731354, 0.08587531000375748, 0.07631329447031021, 0.009837162680923939, 0.002503428841009736, 0.013006489723920822, 0.002942983992397785, 0.013217204250395298, 0.0019813631661236286, 0.0012005891185253859, 0.0037745011504739523, 0.006102943792939186, 0.07603397220373154], [0.08178704231977463, 0.01206069253385067, 0.0031022783368825912, 0.12753313779830933, 0.0532655268907547, 0.20283091068267822, 0.0762537345290184, 0.18688608705997467, 0.009967767633497715, 0.002982653910294175, 0.02304486744105816, 0.0044324761256575584, 0.016701696440577507, 0.0009577691089361906, 0.0017925353022292256, 0.003907524514943361, 0.006253866944462061, 0.18623939156532288], [0.04530467838048935, 0.022900596261024475, 0.020893609151244164, 0.03417029231786728, 0.042955126613378525, 0.20527689158916473, 0.31012162566185, 0.130679652094841, 0.0232633538544178, 0.004502459429204464, 0.004494642838835716, 0.002138282638043165, 0.003905443474650383, 0.004182246048003435, 0.0012195103336125612, 0.0026956964284181595, 0.011050563305616379, 0.13024522364139557], [0.01831619255244732, 0.019513484090566635, 0.014799145981669426, 0.015110624022781849, 0.0075492290779948235, 0.045755062252283096, 0.21055930852890015, 0.3256617486476898, 0.007397973444312811, 0.0008425130508840084, 0.0004859247710555792, 0.0005223428597673774, 0.0008904454880394042, 0.0015780633548274636, 0.000582531385589391, 0.0005947126192040741, 0.005292251240462065, 0.3245483636856079], [0.0300949327647686, 0.02918820269405842, 0.015124128200113773, 0.016608603298664093, 0.02027222514152527, 0.023663248866796494, 0.31198692321777344, 0.25557783246040344, 0.016589175909757614, 0.0019632382318377495, 0.0012302255490794778, 0.0015317868674173951, 0.0021414130460470915, 0.0021525032352656126, 0.0006637044134549797, 0.0009563406347297132, 0.015534387901425362, 0.25472119450569153], [0.0148920938372612, 0.011793441139161587, 0.03429233282804489, 0.00830005295574665, 0.007773756980895996, 0.011432222090661526, 0.023165397346019745, 0.429213285446167, 0.004036993253976107, 0.0030616563744843006, 0.0016706481110304594, 0.0014584846794605255, 0.0031285155564546585, 0.0030671986751258373, 0.0010851770639419556, 0.002573449397459626, 0.011627797968685627, 0.4274274408817291], [0.01094119343906641, 0.0019662436097860336, 0.001626766286790371, 0.0024644751101732254, 0.0014723227359354496, 0.0013434209395200014, 0.006927358452230692, 0.4768715798854828, 0.003287305124104023, 0.0014802879886701703, 0.0008353571174666286, 0.0008135495008900762, 0.0012949479278177023, 0.0016507381806150079, 0.0019162234384566545, 0.0018545594066381454, 0.00804862380027771, 0.4752050042152405], [0.012125003151595592, 0.0029378978069871664, 0.0066084228456020355, 0.003963661380112171, 0.0021443478763103485, 0.0020779361948370934, 0.004997702315449715, 0.30614346265792847, 0.02880997210741043, 0.04123511537909508, 0.030271979048848152, 0.024223433807492256, 0.030474787577986717, 0.03969903662800789, 0.005080569535493851, 0.01571415551006794, 0.13827741146087646, 0.30521512031555176], [0.03525887802243233, 0.0005241723847575486, 0.002011724980548024, 0.0028200645465403795, 0.0012890193611383438, 0.006424519699066877, 0.0017316181911155581, 0.13115297257900238, 0.018508894369006157, 0.015650374814867973, 0.14490686357021332, 0.017007509246468544, 0.26589566469192505, 0.02739458903670311, 0.0093076815828681, 0.1398724466562271, 0.04948048293590546, 0.13076253235340118], [0.025035712867975235, 0.001210469868965447, 0.0018016787944361567, 0.001429136609658599, 0.001360169262625277, 0.002438850235193968, 0.00524144945666194, 0.13084883987903595, 0.0426182821393013, 0.02359423041343689, 0.014893478713929653, 0.01174903754144907, 0.03690185397863388, 0.08553874492645264, 0.03030153550207615, 0.12406913191080093, 0.33049750328063965, 0.13046984374523163], [0.018787626177072525, 0.0005173925310373306, 0.0005890955217182636, 0.0010707267792895436, 0.0004354093107394874, 0.001141576562076807, 0.00363619951531291, 0.13934752345085144, 0.047797754406929016, 0.00878962967544794, 0.013212563470005989, 0.0069074612110853195, 0.02979489229619503, 0.07795476168394089, 0.030918510630726814, 0.11990846693515778, 0.3602267801761627, 0.13896366953849792], [0.025374721735715866, 0.0006293085752986372, 0.0007789228111505508, 0.0003860180440824479, 0.00022225332213565707, 0.0006950432434678078, 0.0016027615638449788, 0.26963379979133606, 0.02149254083633423, 0.008310957811772823, 0.002857002429664135, 0.0037004882469773293, 0.006715182680636644, 0.0445842444896698, 0.1962052285671234, 0.06014250963926315, 0.08789097517728806, 0.26877811551094055], [0.037308692932128906, 0.0006539790774695575, 0.000598291982896626, 0.0011927587911486626, 0.0008116864482872188, 0.0008516936795786023, 0.0036801642272621393, 0.25467467308044434, 0.021468717604875565, 0.013331138528883457, 0.004819012247025967, 0.010891188867390156, 0.016124434769153595, 0.03308803588151932, 0.17079739272594452, 0.04829118773341179, 0.12750184535980225, 0.25391513109207153], [0.02273661084473133, 0.0003360709815751761, 0.0006075215642340481, 0.0004934939206577837, 0.0005860488163307309, 0.0015297551872208714, 0.0021494291722774506, 0.20775067806243896, 0.019501471891999245, 0.002594982273876667, 0.002792871557176113, 0.00510429497808218, 0.01332266628742218, 0.044305138289928436, 0.09832457453012466, 0.20912346243858337, 0.1615930050611496, 0.20714786648750305], [0.019155101850628853, 0.0004001872439403087, 0.000528076954651624, 0.0003714477061294019, 0.00010116051271324977, 0.00029195877141319215, 0.003377786371856928, 0.37871143221855164, 0.012738373130559921, 0.006057244259864092, 0.0027221115306019783, 0.004367413464933634, 0.005431849043816328, 0.032156724482774734, 0.017594555392861366, 0.014320648275315762, 0.12418583035469055, 0.3774881660938263], [0.012513994239270687, 0.00036859363899566233, 0.0013485198142006993, 0.0006234294269233942, 0.0005386409466154873, 0.0006531456601805985, 0.0021016139071434736, 0.4563835859298706, 0.011521046049892902, 0.00850912556052208, 0.002839181572198868, 0.0019049861002713442, 0.0034304303117096424, 0.004280328284949064, 0.001281600329093635, 0.005466521251946688, 0.03179124370217323, 0.45444393157958984], [0.010930686257779598, 0.0019617353100329638, 0.001623596646822989, 0.0024591197725385427, 0.001469305483624339, 0.0013410720275714993, 0.00691478094086051, 0.47691452503204346, 0.0032795611768960953, 0.0014768437249585986, 0.0008335724705830216, 0.0008117282413877547, 0.0012923568719998002, 0.0016478636534884572, 0.001912646577693522, 0.0018508160719648004, 0.008032661862671375, 0.4752471148967743]], [[0.004703460726886988, 0.0021060509607195854, 0.0008910932810977101, 0.000632877869065851, 0.0004485228273551911, 0.0007297082920558751, 0.0009494191617704928, 0.1379329264163971, 0.6023712158203125, 0.03174760565161705, 0.027142927050590515, 0.002448084531351924, 0.027127297595143318, 0.005863082595169544, 0.00158996123354882, 0.009851193986833096, 0.005945626646280289, 0.1375190019607544], [0.002010579686611891, 0.018595727160573006, 0.6054059267044067, 0.029375877231359482, 0.008425894193351269, 0.03174864873290062, 0.0011441175593063235, 0.14741593599319458, 0.0005955111118964851, 0.0019031419651582837, 0.0015373432543128729, 0.00040933251148089767, 0.0009517593425698578, 0.0017594941891729832, 0.0006355684599839151, 0.0006733875488862395, 0.0004757058632094413, 0.14693599939346313], [0.0195135660469532, 0.008310072124004364, 0.0037238949444144964, 0.033694133162498474, 0.030081871896982193, 0.00912865623831749, 0.0013068387052044272, 0.44557949900627136, 0.0001929278951138258, 0.0009926315397024155, 0.0008749238331802189, 0.0002854607591871172, 0.0008340866770595312, 0.00022348793572746217, 0.00027271840372122824, 0.0007661677664145827, 0.00033628795063123107, 0.4438827633857727], [0.0047878990881145, 0.005811389070004225, 0.007816675119102001, 0.0126274935901165, 0.11921181529760361, 0.5883634090423584, 0.005930792074650526, 0.12471432238817215, 0.0013273883378133178, 0.0008232243708334863, 0.0004918227205052972, 0.00047347997315227985, 0.0013095088070258498, 0.0006972895935177803, 9.362917626276612e-05, 0.0007165046990849078, 0.0004191181214991957, 0.12438417226076126], [0.0010211030021309853, 0.014636826701462269, 0.0335337370634079, 0.01545848697423935, 0.05295880138874054, 0.32927900552749634, 0.012567942962050438, 0.268846720457077, 0.00048045883886516094, 0.0009929060470312834, 0.00024453570949845016, 0.00015255283506121486, 0.00021370277681853622, 0.00047756967251189053, 7.29362218407914e-05, 0.00017214582476299256, 0.0006810772465541959, 0.26820942759513855], [0.008959944359958172, 0.007063385099172592, 0.005312228109687567, 0.006303444504737854, 0.00439616572111845, 0.002663549967110157, 0.042356349527835846, 0.45958489179611206, 0.0005244390922598541, 0.0005689163808710873, 0.0001642534334678203, 0.00016358452558051795, 0.0006207357509993017, 0.00014047182048670948, 5.311368659022264e-05, 0.00024464927264489233, 0.002938487334176898, 0.4579413831233978], [0.0013016011798754334, 0.0055235521867871284, 0.00047290456132031977, 0.001782236504368484, 0.0013782226014882326, 0.001091851620003581, 0.013374029658734798, 0.044121067970991135, 0.8497501015663147, 0.019013486802577972, 0.006559546571224928, 0.0010433475254103541, 0.0032370109111070633, 0.0012551170075312257, 0.0004498318594414741, 0.0007044218364171684, 0.004944490268826485, 0.04399725794792175], [0.00260465731844306, 0.0025359010323882103, 0.003438376821577549, 0.004461813252419233, 0.0013475873274728656, 0.003392899176105857, 0.010917956940829754, 0.4644705355167389, 0.0010748900240287185, 0.005100206006318331, 0.008053034543991089, 0.0032972439657896757, 0.004346642177551985, 0.003521532518789172, 0.001953689381480217, 0.004977209027856588, 0.010964086279273033, 0.463541716337204], [0.003001914592459798, 0.0012694201432168484, 0.0009007036569528282, 0.0012464133324101567, 0.0007356803398579359, 0.0008157159900292754, 0.003023480297997594, 0.41005024313926697, 0.021338552236557007, 0.04996831342577934, 0.0420968160033226, 0.017888130620121956, 0.014002114534378052, 0.0035062432289123535, 0.000375213916413486, 0.00774064427241683, 0.013017348013818264, 0.40902307629585266], [0.001262722653336823, 5.8562669437378645e-05, 0.0007352718384936452, 0.0005166166229173541, 0.00013810579548589885, 0.0009103966876864433, 0.00011169970821356401, 0.1923498958349228, 0.001073247753083706, 0.0027434935327619314, 0.305990993976593, 0.0322222076356411, 0.2514931857585907, 0.003264885861426592, 0.0022097527980804443, 0.012565727345645428, 0.000665040744934231, 0.1916881799697876], [0.0022606372367590666, 0.00032879330683499575, 0.0006015349645167589, 0.00036341865779832006, 0.0007308354252018034, 0.0007207955932244658, 0.0007849439280107617, 0.17951737344264984, 0.008669105358421803, 0.03673747181892395, 0.023716820403933525, 0.0713011622428894, 0.3290594816207886, 0.057056743651628494, 0.009732987731695175, 0.09045872092247009, 0.008829383179545403, 0.17912985384464264], [0.0013807940995320678, 0.0002953005605377257, 0.0003378393594175577, 0.00010585950803942978, 0.00018650214769877493, 0.0002743954537436366, 5.314287045621313e-05, 0.05149948224425316, 0.006141613703221083, 0.024148717522621155, 0.051629748195409775, 0.008512741886079311, 0.3232559859752655, 0.2270423024892807, 0.05577974021434784, 0.1963721215724945, 0.0015981802716851234, 0.05138550326228142], [0.0013636549701914191, 0.0002382104139542207, 0.000852126395329833, 8.280757174361497e-05, 0.00011185814219061285, 0.00016580721421632916, 0.0003967465308960527, 0.3090096712112427, 0.001000192016363144, 0.0033913012593984604, 0.0021660190541297197, 0.002797359600663185, 0.01722930744290352, 0.17815479636192322, 0.0915326178073883, 0.06506738811731339, 0.018328852951526642, 0.3081112802028656], [0.007013851776719093, 0.0002462979464326054, 0.0004270646895747632, 0.00020958356617484242, 0.0001352481049252674, 0.00025576382176950574, 0.0002658866287674755, 0.365887850522995, 0.0003725714923348278, 0.0012731400784105062, 0.0025132764130830765, 0.0006614289595745504, 0.005100436974316835, 0.018566902726888657, 0.17449332773685455, 0.0485834926366806, 0.009387997910380363, 0.36460599303245544], [0.000502848532050848, 2.7953234166488983e-05, 4.0709976019570604e-05, 1.7170663340948522e-05, 2.1064699467387982e-05, 3.0264167435234413e-05, 5.47545678273309e-05, 0.02733972854912281, 9.255836630472913e-05, 0.00022380582231562585, 0.0003030003572348505, 0.0010149473091587424, 0.021600451320409775, 0.018561193719506264, 0.003196235978975892, 0.8954961895942688, 0.004177845548838377, 0.027299344539642334], [0.028646675869822502, 0.00016146464622579515, 0.0001692300575086847, 5.171618613530882e-05, 4.256370448274538e-05, 0.0001385742798447609, 0.0010461034253239632, 0.42528167366981506, 0.0003936339926440269, 0.0004141769895795733, 0.00021306140115484595, 0.0001248412736458704, 0.0014585343888029456, 0.010223057121038437, 0.010837682522833347, 0.03965286165475845, 0.05744621530175209, 0.4236977994441986], [0.003085262142121792, 0.000763840158469975, 0.0006028733332641423, 0.0014592681545764208, 0.0008588036289438605, 0.00047840483603067696, 0.0037942512426525354, 0.38355278968811035, 0.05617150664329529, 0.010043961927294731, 0.007145170588046312, 0.0031658997759222984, 0.005247401539236307, 0.006793301552534103, 0.003964412026107311, 0.010104332119226456, 0.12035489827394485, 0.3824135959148407], [0.002604776294901967, 0.002533301478251815, 0.0034362527076154947, 0.0044607240706682205, 0.0013462764909490943, 0.0033903149887919426, 0.010918139480054379, 0.46449732780456543, 0.0010728463530540466, 0.005092490464448929, 0.008041806519031525, 0.0032925119157880545, 0.004339896608144045, 0.003517791396006942, 0.0019537433981895447, 0.004972677677869797, 0.010961176827549934, 0.4635680019855499]], [[0.007133976090699434, 0.0036486806347966194, 0.013694689609110355, 0.022555558010935783, 0.00400915089994669, 0.011421109549701214, 0.007462416309863329, 0.31763216853141785, 0.01602444238960743, 0.05103781819343567, 0.03762131556868553, 0.02208351530134678, 0.027022715657949448, 0.021438058465719223, 0.007521684281527996, 0.024429166689515114, 0.08814197033643723, 0.3171214759349823], [0.0018261722289025784, 0.055822111666202545, 0.16279178857803345, 0.030061107128858566, 0.01970612443983555, 0.12059216946363449, 0.07308568805456161, 0.23113630712032318, 0.0055749909952282906, 0.019542228430509567, 0.0037104105576872826, 0.0015032810624688864, 0.006620224565267563, 0.006310068536549807, 0.0015747055877000093, 0.005706780590116978, 0.023745432496070862, 0.23069047927856445], [0.001203885767608881, 0.016644282266497612, 0.05915764719247818, 0.004941114224493504, 0.00251925946213305, 0.040944959968328476, 0.022699177265167236, 0.417000412940979, 0.0022587093990296125, 0.0025322474539279938, 0.0005588610656559467, 0.00041814727592281997, 0.0013018468162044883, 0.002831142395734787, 0.0007363702752627432, 0.001723660621792078, 0.006440965924412012, 0.4160873293876648], [0.005036621820181608, 0.03225668519735336, 0.10419771820306778, 0.10984805226325989, 0.11568436026573181, 0.2228316068649292, 0.06831786781549454, 0.12240039557218552, 0.009115801192820072, 0.010196859948337078, 0.03659561276435852, 0.0023595960810780525, 0.010540246963500977, 0.004686351399868727, 0.0015851937932893634, 0.004302572924643755, 0.01786939427256584, 0.12217506021261215], [0.0013003905769437551, 0.014757774770259857, 0.023958561941981316, 0.00942666083574295, 0.09385282546281815, 0.12767231464385986, 0.03583850339055061, 0.334160715341568, 0.007151308469474316, 0.0028423750773072243, 0.0010497048497200012, 0.001803155173547566, 0.0017346381209790707, 0.001302781980484724, 0.0007287351181730628, 0.0013207686133682728, 0.007871247828006744, 0.33322757482528687], [0.0011710980907082558, 0.010171179659664631, 0.023416567593812943, 0.01930866949260235, 0.05137924477458, 0.16393601894378662, 0.02693132683634758, 0.33647775650024414, 0.002933697309345007, 0.0026875741314142942, 0.0032519912347197533, 0.0024460875429213047, 0.0040799998678267, 0.002847757190465927, 0.0011755264131352305, 0.00439093355089426, 0.007827214896678925, 0.3355673551559448], [0.0016543715028092265, 0.04189522936940193, 0.10146720707416534, 0.06659071147441864, 0.06545370817184448, 0.11831139028072357, 0.020366445183753967, 0.26968178153038025, 0.003314840141683817, 0.006175152957439423, 0.005438556428998709, 0.002392002148553729, 0.006717070937156677, 0.0037245480343699455, 0.0009535911376588047, 0.002733545145019889, 0.01354785542935133, 0.26958194375038147], [0.0003320943214930594, 0.00036673492286354303, 0.00052372005302459, 0.0007036644383333623, 0.0003697556385304779, 0.001005062717013061, 0.0006513808621093631, 0.4974937438964844, 0.0007621444528922439, 0.0002817533095367253, 0.000306679867208004, 0.00023461254022549838, 0.00015121715841814876, 0.0002209200756624341, 8.417401113547385e-05, 0.00014016931527294219, 0.0013639350654557347, 0.4950081706047058], [0.08482888340950012, 0.021299898624420166, 0.030565768480300903, 0.030732346698641777, 0.05271414667367935, 0.03789405897259712, 0.009168239310383797, 0.24669195711612701, 0.029816845431923866, 0.07573117315769196, 0.017854653298854828, 0.019534332677721977, 0.034685034304857254, 0.02175157144665718, 0.008844352327287197, 0.018321093171834946, 0.013572011142969131, 0.245993509888649], [0.07446546107530594, 0.024279760196805, 0.10235140472650528, 0.0088340500369668, 0.0015273450408130884, 0.027354136109352112, 0.039507944136857986, 0.1514521986246109, 0.03746456652879715, 0.16653606295585632, 0.0223331768065691, 0.008957444690167904, 0.033952273428440094, 0.028717398643493652, 0.009808013215661049, 0.025192009285092354, 0.0861692801117897, 0.15109758079051971], [0.11514639109373093, 0.010837000794708729, 0.023534564301371574, 0.044434454292058945, 0.018433140590786934, 0.04135784134268761, 0.029653694480657578, 0.03984970226883888, 0.11256717890501022, 0.18081091344356537, 0.05028824880719185, 0.023741791024804115, 0.09471941739320755, 0.025114113464951515, 0.014851260930299759, 0.061169713735580444, 0.07371219992637634, 0.03977836295962334], [0.07189832627773285, 0.009790394455194473, 0.0198721494525671, 0.010831089690327644, 0.10519378632307053, 0.055477600544691086, 0.01574387401342392, 0.07853534817695618, 0.06841520965099335, 0.15208901464939117, 0.014292802661657333, 0.03663429990410805, 0.08583814650774002, 0.041152458637952805, 0.030347110703587532, 0.08930264413356781, 0.036208342760801315, 0.07837732881307602], [0.04913941025733948, 0.013765797950327396, 0.016453305259346962, 0.006282368674874306, 0.0019476464949548244, 0.021181896328926086, 0.012029705569148064, 0.13073156774044037, 0.029399042949080467, 0.24753107130527496, 0.02068702131509781, 0.04079723730683327, 0.04978758469223976, 0.053182415664196014, 0.018554111942648888, 0.10840044915676117, 0.04978310316801071, 0.1303463876247406], [0.024243328720331192, 0.00713155884295702, 0.06508326530456543, 0.0025163565296679735, 0.001464469009079039, 0.02753756381571293, 0.006088677328079939, 0.191781148314476, 0.00843647588044405, 0.10593408346176147, 0.007119174115359783, 0.02227812632918358, 0.049164146184921265, 0.12523534893989563, 0.017917031422257423, 0.13400667905807495, 0.012748189270496368, 0.19131436944007874], [0.053175706416368484, 0.005200300365686417, 0.006512355525046587, 0.002218019450083375, 0.00247882679104805, 0.0107317715883255, 0.015728779137134552, 0.24229086935520172, 0.02413155324757099, 0.053974591195583344, 0.012088503688573837, 0.04840419441461563, 0.038670413196086884, 0.08266042917966843, 0.05969521403312683, 0.060683514922857285, 0.03993557393550873, 0.24141941964626312], [0.01986028626561165, 0.005007908679544926, 0.03327835351228714, 0.003115382045507431, 0.0013903663493692875, 0.028380421921610832, 0.005395513027906418, 0.24684007465839386, 0.014400188811123371, 0.05211898311972618, 0.014915015548467636, 0.027980182319879532, 0.06694792211055756, 0.10838402062654495, 0.01694648154079914, 0.090973399579525, 0.017800601199269295, 0.24626494944095612], [0.02001413144171238, 0.018269238993525505, 0.052794139832258224, 0.03452420234680176, 0.042563796043395996, 0.0315411202609539, 0.010431023314595222, 0.2776332199573517, 0.015563685446977615, 0.05883592739701271, 0.027328068390488625, 0.014039149507880211, 0.03194583207368851, 0.02572314627468586, 0.005963411647826433, 0.014141731895506382, 0.04125357046723366, 0.2774345874786377], [0.0003316991205792874, 0.00036630863905884326, 0.0005229566595517099, 0.000703103025443852, 0.0003695541527122259, 0.0010040686465799809, 0.0006514799897558987, 0.4974965751171112, 0.0007616765215061605, 0.0002813332248479128, 0.00030646700179204345, 0.00023451198649127036, 0.0001510802103439346, 0.0002207705401815474, 8.419174992013723e-05, 0.00014004224794916809, 0.0013645231956616044, 0.49500957131385803]], [[0.008741435594856739, 0.0010353107936680317, 0.001969011500477791, 0.004377477802336216, 0.002658567391335964, 0.004651160910725594, 0.00744390906766057, 0.34764716029167175, 0.10511141270399094, 0.06707712262868881, 0.024213390424847603, 0.014390080235898495, 0.009203583002090454, 0.010995528660714626, 0.004379797726869583, 0.0018411967903375626, 0.03775564953684807, 0.3465081751346588], [0.0024000736884772778, 0.013963311910629272, 0.01835140399634838, 0.007532652001827955, 0.006826403550803661, 0.041874028742313385, 0.021743781864643097, 0.44272956252098083, 0.0016412707045674324, 0.00010928616393357515, 7.91196507634595e-05, 9.720881644170731e-05, 8.298266038764268e-05, 0.00023679168953094631, 4.4681335566565394e-05, 0.00031652586767449975, 0.0011694085551425815, 0.4408015012741089], [0.0064755757339298725, 0.07031883299350739, 0.027939725667238235, 0.007650735322386026, 0.0097708310931921, 0.07546510547399521, 0.03657405450940132, 0.3784624934196472, 0.003425664035603404, 0.0003700218512676656, 0.00025626507704146206, 0.00042603001929819584, 0.0002537565305829048, 0.0012224032543599606, 0.00011760833876905963, 0.0004311606753617525, 0.0036904301960021257, 0.377149373292923], [0.00673571415245533, 0.16138072311878204, 0.07654454559087753, 0.008574418723583221, 0.004153128247708082, 0.027028227224946022, 0.03423719480633736, 0.3360532522201538, 0.006187976337969303, 0.0009832839714363217, 0.00016776802658569068, 0.00016120518557727337, 2.975883944600355e-05, 0.00018930216901935637, 3.8254169339779764e-05, 0.0001383185590384528, 0.0026719318702816963, 0.3347250521183014], [0.001988949254155159, 0.32910704612731934, 0.1359463334083557, 0.07171252369880676, 0.00576783949509263, 0.019093962386250496, 0.01964329183101654, 0.20679159462451935, 0.0010038422187790275, 0.0003363300347700715, 8.031898323679343e-05, 0.0004079868085682392, 0.00022268058091867715, 0.0003526012587826699, 4.6863318857504055e-05, 9.176932508125901e-05, 0.001317009562626481, 0.20608903467655182], [0.008139817975461483, 0.1827867329120636, 0.048818085342645645, 0.07335802167654037, 0.031795211136341095, 0.024543194100260735, 0.038980063050985336, 0.29051733016967773, 0.004286309704184532, 0.0007903389050625265, 0.00012017062545055524, 0.00045393354957923293, 0.00014245724014472216, 0.00027704107924364507, 0.00016394101839978248, 0.000149175786646083, 0.005187909118831158, 0.289490282535553], [0.01841980405151844, 0.096003457903862, 0.020895909518003464, 0.02571166679263115, 0.040932897478342056, 0.027565844357013702, 0.05835587531328201, 0.3485168516635895, 0.0071208481676876545, 0.0009022027370519936, 0.0003902393509633839, 0.00014290495892055333, 0.0001368293014820665, 0.00011818327038781717, 7.588879816466942e-05, 0.00011125046148663387, 0.007526608649641275, 0.34707269072532654], [0.0017977850511670113, 0.0011058454401791096, 0.0030106371268630028, 0.0018889588536694646, 0.0018310589948669076, 0.002135032322257757, 0.0024377836380153894, 0.4903436005115509, 0.0011058702366426587, 0.0006145065417513251, 0.0008392814779654145, 0.000751134823076427, 0.0003308333980385214, 0.0005700003821402788, 0.000283211178611964, 0.00019510752463247627, 0.0023688841611146927, 0.4883904755115509], [0.03231092169880867, 0.0004984384868294001, 0.000814964878372848, 0.007034876383841038, 0.0019784639589488506, 0.0022017161827534437, 0.0030662165954709053, 0.4494611918926239, 0.026442576199769974, 0.003739076666533947, 0.002883904380723834, 0.0008017693762667477, 0.0005767690599896014, 0.0006202285876497626, 0.0006725804996676743, 0.0003466107009444386, 0.018643207848072052, 0.4479064345359802], [0.04989539086818695, 0.03339098021388054, 0.018114838749170303, 0.002892731921747327, 7.157886284403503e-05, 0.003354741260409355, 0.00460426090285182, 0.33526912331581116, 0.05662856623530388, 0.09367705881595612, 0.002818870358169079, 0.001757316873408854, 0.001283302903175354, 0.004744819365441799, 8.757196337683126e-05, 0.0020100746769458055, 0.05531077831983566, 0.3340880274772644], [0.044578611850738525, 0.00440105190500617, 0.0026154916267842054, 0.0013481674250215292, 7.897191972006112e-05, 0.0034392662346363068, 0.004906210117042065, 0.12212797999382019, 0.5259491205215454, 0.13301177322864532, 0.0068127806298434734, 0.0015887399204075336, 0.002983669750392437, 0.002944033592939377, 0.0005194061086513102, 0.0015908306231722236, 0.019409574568271637, 0.12169431895017624], [0.056135158985853195, 0.002827811287716031, 0.0008061944390647113, 0.0007788229850120842, 0.00012191813584649935, 0.001716602360829711, 0.002939684549346566, 0.1488768458366394, 0.49624666571617126, 0.08039674907922745, 0.01855006441473961, 0.0026005394756793976, 0.0119723966345191, 0.004616983700543642, 0.0006466124905273318, 0.0023124932777136564, 0.020163754001259804, 0.1482906937599182], [0.0698125809431076, 0.003805510001257062, 0.0036040411796420813, 0.0011782344663515687, 0.0004293117090128362, 0.00463634729385376, 0.0063835675828158855, 0.28597235679626465, 0.15375255048274994, 0.09310512244701385, 0.018562491983175278, 0.008696352131664753, 0.015583637170493603, 0.01306920312345028, 0.00746811693534255, 0.004536974243819714, 0.024339022114872932, 0.28506454825401306], [0.06455770134925842, 0.0021257917396724224, 0.0009803101420402527, 0.002536106389015913, 0.0013561153318732977, 0.004629350267350674, 0.006269311998039484, 0.1490713506937027, 0.25245705246925354, 0.0192771814763546, 0.04557275027036667, 0.07802551239728928, 0.13991208374500275, 0.029144827276468277, 0.01111624389886856, 0.010594723746180534, 0.033799316734075546, 0.14857427775859833], [0.04502037540078163, 0.00045257757301442325, 0.00023210598737932742, 0.0008667945512570441, 0.00030577072175219655, 0.0003063382755499333, 0.003267715685069561, 0.08075962960720062, 0.0362887904047966, 0.045014988631010056, 0.03501470386981964, 0.1218474954366684, 0.49464288353919983, 0.028193309903144836, 0.006965215317904949, 0.001136736012995243, 0.019232740625739098, 0.0804518312215805], [0.07233080267906189, 0.002761795883998275, 0.0015895881224423647, 0.0032948057632893324, 0.001141947228461504, 0.0017397054471075535, 0.008549679070711136, 0.1815878301858902, 0.13464675843715668, 0.05915571376681328, 0.03704475238919258, 0.09646254777908325, 0.07308874279260635, 0.042043380439281464, 0.0605708509683609, 0.0075686308555305, 0.03545375168323517, 0.18096865713596344], [0.09476043283939362, 0.0029335529543459415, 0.0007503658998757601, 0.0016947721596807241, 0.0012904044706374407, 0.0006853397935628891, 0.009757301770150661, 0.3025563061237335, 0.16276292502880096, 0.008595291525125504, 0.01965535245835781, 0.007608727086335421, 0.009216437116265297, 0.007011095993220806, 0.0026177908293902874, 0.006250352133065462, 0.06035734713077545, 0.3014961779117584], [0.0017944670980796218, 0.0011035172501578927, 0.003004701342433691, 0.0018842952558770776, 0.0018250453285872936, 0.002131672343239188, 0.002432835754007101, 0.49036675691604614, 0.0011036298237740993, 0.0006129267858341336, 0.0008376462501473725, 0.0007495741010643542, 0.0003300311218481511, 0.0005689091049134731, 0.0002824726398102939, 0.00019473479187581688, 0.0023639521095901728, 0.48841285705566406]], [[0.0205942764878273, 0.02287082001566887, 0.0034041584003716707, 0.014083187095820904, 0.006734323222190142, 0.0016071811551228166, 0.005780426785349846, 0.3102053105831146, 0.1848866194486618, 0.028534287586808205, 0.01971232146024704, 0.0059596761129796505, 0.007484495639801025, 0.006599155254662037, 0.00806314218789339, 0.004783976823091507, 0.039006441831588745, 0.3096901774406433], [0.1506384313106537, 0.08583632111549377, 0.020669234916567802, 0.015763888135552406, 0.010665983892977238, 0.004739514552056789, 0.06315789371728897, 0.29998210072517395, 0.018449028953909874, 0.005517129320651293, 0.002441094256937504, 0.0010214599315077066, 0.003754803678020835, 0.002881212392821908, 0.004063934087753296, 0.0008889310993254185, 0.010477449744939804, 0.2990516126155853], [0.04346701130270958, 0.025184093043208122, 0.03631184995174408, 0.008672949858009815, 0.0028629282023757696, 0.0048791817389428616, 0.01968945749104023, 0.4185647964477539, 0.002861680695787072, 0.001715020858682692, 0.0007307250634767115, 0.0004809871898032725, 0.0016234456561505795, 0.0077306972816586494, 0.0018461233703419566, 0.0010048332624137402, 0.005283324047923088, 0.41709083318710327], [0.3587123155593872, 0.03378531336784363, 0.008350818417966366, 0.021072354167699814, 0.023520372807979584, 0.013139676302671432, 0.05637538060545921, 0.21345342695713043, 0.014317469671368599, 0.004809877369552851, 0.009805390611290932, 0.004221010021865368, 0.003551670117303729, 0.0015886345645412803, 0.0015036007389426231, 0.0008268782985396683, 0.01808619685471058, 0.21287952363491058], [0.20681561529636383, 0.04574739933013916, 0.0035574217326939106, 0.05738549679517746, 0.05679855868220329, 0.019177179783582687, 0.03596110641956329, 0.2592707872390747, 0.03559814393520355, 0.0019046264933422208, 0.00450443010777235, 0.0068910615518689156, 0.0008829138241708279, 0.00040041361353360116, 0.0014540741685777903, 0.00022715360682923347, 0.005004449747502804, 0.2584191560745239], [0.09187386929988861, 0.03233972191810608, 0.014091258868575096, 0.037110380828380585, 0.1276874989271164, 0.03801923990249634, 0.024652672931551933, 0.2924749255180359, 0.014217879623174667, 0.0016136786434799433, 0.008489355444908142, 0.005032167304307222, 0.0023371742572635412, 0.002047572750598192, 0.004674972966313362, 0.004335088189691305, 0.00737280398607254, 0.2916296720504761], [0.09004618972539902, 0.13467447459697723, 0.011748936027288437, 0.07983613759279251, 0.02515392005443573, 0.02801007777452469, 0.032640520483255386, 0.1717488169670105, 0.16792649030685425, 0.026850568130612373, 0.018855731934309006, 0.0029959252569824457, 0.0019054495496675372, 0.002603289671242237, 0.007662659510970116, 0.0029027352575212717, 0.022890353575348854, 0.1715477555990219], [0.005053951404988766, 0.006962640210986137, 0.004372571129351854, 0.003798477351665497, 0.0028401962481439114, 0.0023061372339725494, 0.0033456659875810146, 0.47234535217285156, 0.006774421315640211, 0.0037630253937095404, 0.003393549704924226, 0.002775627188384533, 0.0008678733138367534, 0.0015210581477731466, 0.003800838254392147, 0.0011042894329875708, 0.004329307936131954, 0.4706449806690216], [0.04524007812142372, 0.003915293142199516, 0.0007445617811754346, 0.0018498707795515656, 0.0042504807934165, 0.0023017623461782932, 0.009446845389902592, 0.27880027890205383, 0.11405840516090393, 0.036552317440509796, 0.040580473840236664, 0.033475518226623535, 0.01041332446038723, 0.010911469347774982, 0.023923110216856003, 0.004039268009364605, 0.10135211050510406, 0.278144896030426], [0.09243987500667572, 0.004651952069252729, 0.002333770738914609, 0.0015813326463103294, 0.0003922714095097035, 0.0002362930536037311, 0.0041954307816922665, 0.2623688876628876, 0.03460461273789406, 0.015018794685602188, 0.015982892364263535, 0.006685108877718449, 0.07576620578765869, 0.10298123210668564, 0.05814056098461151, 0.019638368859887123, 0.0412435457110405, 0.2617388963699341], [0.058290060609579086, 0.002785642398521304, 0.0019513018196448684, 0.024432362988591194, 0.010036335326731205, 0.0031228598672896624, 0.009842553175985813, 0.24091742932796478, 0.06263729184865952, 0.04152071848511696, 0.05439584702253342, 0.04095703363418579, 0.02103710174560547, 0.0213136188685894, 0.08352013677358627, 0.01221061684191227, 0.07061336189508438, 0.2404157519340515], [0.027848882600665092, 0.0011539964471012354, 0.0006306683644652367, 0.004658573307096958, 0.012613422237336636, 0.0013314808020368218, 0.0034604675602167845, 0.3045365512371063, 0.04788781329989433, 0.014388306997716427, 0.04933458939194679, 0.06229441612958908, 0.02884952537715435, 0.019293945282697678, 0.06353849917650223, 0.012831873260438442, 0.041590455919504166, 0.303756445646286], [0.005344905890524387, 0.0012741110986098647, 0.0015428733313456178, 0.00380618660710752, 0.0020909085869789124, 0.0005509222391992807, 0.0014518446987494826, 0.3446556329727173, 0.0052897813729941845, 0.011493224650621414, 0.009438886307179928, 0.017347848042845726, 0.09875262528657913, 0.052425093948841095, 0.03487153351306915, 0.051544588059186935, 0.014338891953229904, 0.34378013014793396], [0.012812796980142593, 0.005217900965362787, 0.004822629038244486, 0.0014530858024954796, 0.003637476358562708, 0.002543245442211628, 0.0030133328400552273, 0.34651726484298706, 0.014273146167397499, 0.012962240725755692, 0.012758007273077965, 0.013017606921494007, 0.02649456076323986, 0.07959217578172684, 0.04483449459075928, 0.05360356718301773, 0.016927672550082207, 0.34551873803138733], [0.012274214997887611, 0.0012428212212398648, 0.001615638379007578, 0.0009370772750116885, 0.0028144591487944126, 0.0009021922596730292, 0.001740620587952435, 0.30766868591308594, 0.01713193953037262, 0.02741854451596737, 0.01666327752172947, 0.035177990794181824, 0.025144541636109352, 0.04293074458837509, 0.16563156247138977, 0.014687866903841496, 0.01923132874071598, 0.30678653717041016], [0.006138079334050417, 0.0012235321337357163, 0.002659621648490429, 0.0008541694842278957, 0.0009435959509573877, 0.0014703418128192425, 0.0018676136387512088, 0.3395836353302002, 0.008971195667982101, 0.005006623454391956, 0.005326618906110525, 0.00527207599952817, 0.02666185051202774, 0.14918890595436096, 0.02327709086239338, 0.06125039607286453, 0.02192671410739422, 0.338377982378006], [0.04570205882191658, 0.014165720902383327, 0.0013731904327869415, 0.011881320737302303, 0.004912983160465956, 0.004937153309583664, 0.006018593907356262, 0.11710669100284576, 0.44858136773109436, 0.07449407130479813, 0.04336925968527794, 0.017085321247577667, 0.004060022067278624, 0.006528460420668125, 0.03499073535203934, 0.009795009158551693, 0.037999436259269714, 0.11699865758419037], [0.005056479014456272, 0.006958456244319677, 0.004371073096990585, 0.003795621218159795, 0.0028383948374539614, 0.0023047439754009247, 0.0033466957975178957, 0.47236233949661255, 0.006768045946955681, 0.0037593136075884104, 0.003390626050531864, 0.0027740439400076866, 0.0008667205111123621, 0.0015196368331089616, 0.0037964715156704187, 0.001103530521504581, 0.004326540976762772, 0.4706612527370453]], [[0.005157587118446827, 0.002607206581160426, 0.0052429731003940105, 0.002982516773045063, 0.0012886215699836612, 0.009966992773115635, 0.002310782205313444, 0.2873063087463379, 0.16048164665699005, 0.039469458162784576, 0.04418636113405228, 0.05027441307902336, 0.015162796713411808, 0.027279289439320564, 0.02218647114932537, 0.016750654205679893, 0.02070254273712635, 0.2866433262825012], [0.010983536019921303, 0.0319424606859684, 0.2845625877380371, 0.02276727557182312, 0.07387477159500122, 0.20636598765850067, 0.015422604978084564, 0.16591329872608185, 0.0011355032911524177, 0.00625594099983573, 0.001019866089336574, 0.0006482280441559851, 0.0011416067136451602, 0.005948192905634642, 0.0005415042396634817, 0.0041075232438743114, 0.001958222361281514, 0.1654108315706253], [0.0021578052546828985, 0.0032767169177532196, 0.01828181743621826, 0.007894240319728851, 0.01002697367221117, 0.07070138305425644, 0.005833707749843597, 0.437512069940567, 0.00010959053906844929, 0.0008272927952930331, 0.0011416139313951135, 0.0001115800259867683, 0.0011669958475977182, 0.002541331807151437, 0.00027539077564142644, 0.00139622634742409, 0.0007810235838405788, 0.43596431612968445], [0.016254959627985954, 0.064155213534832, 0.05148359015583992, 0.04268379881978035, 0.1214112788438797, 0.25082606077194214, 0.027266323566436768, 0.1926519125699997, 0.0035176321398466825, 0.006074552424252033, 0.005816238466650248, 0.0024598506279289722, 0.0021900441497564316, 0.003984234295785427, 0.0038184230215847492, 0.010307937860488892, 0.002990131266415119, 0.19210778176784515], [0.004848156590014696, 0.06457964330911636, 0.06637994945049286, 0.03009202517569065, 0.019513027742505074, 0.10823097825050354, 0.010187224484980106, 0.34227198362350464, 0.0007041884236969054, 0.001696089282631874, 0.0021533803083002567, 0.000651185808237642, 0.001190406153909862, 0.001576654496602714, 0.000855148013215512, 0.002929053734987974, 0.0009169495897367597, 0.3412240147590637], [0.0030904903542250395, 0.02272896282374859, 0.04716073349118233, 0.017536355182528496, 0.006478507537394762, 0.050713010132312775, 0.01861545443534851, 0.4107263386249542, 0.0009161514462903142, 0.002179099014028907, 0.0017221432644873857, 0.00048476242227479815, 0.0018213784787803888, 0.0013333854731172323, 0.0007019070326350629, 0.002105174819007516, 0.0022811980452388525, 0.4094049036502838], [0.005731336306780577, 0.007357066031545401, 0.011048559099435806, 0.009393731132149696, 0.005382094997912645, 0.015399196185171604, 0.00950756948441267, 0.4544544219970703, 0.007972938008606434, 0.005374385975301266, 0.0027498360723257065, 0.004675358533859253, 0.0010947422124445438, 0.0011260459432378411, 0.0017617312259972095, 0.0008607550407759845, 0.0031165757682174444, 0.45299360156059265], [0.0021746130660176277, 0.001762309344485402, 0.0056307376362383366, 0.0012691441224887967, 0.00046659845975227654, 0.004264606162905693, 0.002963823266327381, 0.4836689829826355, 0.0019645127467811108, 0.002000516979023814, 0.0013608346926048398, 0.0012318564113229513, 0.0017839826177805662, 0.0015354022616520524, 0.000468848564196378, 0.0010809953091666102, 0.004016002174466848, 0.48235616087913513], [0.006414595525711775, 0.0009598477045074105, 0.0016836368013173342, 0.0004395676660351455, 0.00047185091534629464, 0.0010353535180911422, 0.0010581212118268013, 0.4301435649394989, 0.015750160440802574, 0.026093220338225365, 0.012028365395963192, 0.04367531090974808, 0.003567217383533716, 0.00518526416271925, 0.0023423205129802227, 0.005384604446589947, 0.01470178458839655, 0.4290652275085449], [0.03610489144921303, 0.0019066398963332176, 0.005519962403923273, 0.0019207933219149709, 0.0008720480254851282, 0.0057324692606925964, 0.0010587091092020273, 0.21095003187656403, 0.007254201918840408, 0.08742093294858932, 0.1967637985944748, 0.018871411681175232, 0.021620314568281174, 0.08475260436534882, 0.010619774460792542, 0.07814845442771912, 0.020072298124432564, 0.21041066944599152], [0.021453939378261566, 0.0006558343302458525, 0.000838709354866296, 0.0008571874350309372, 0.0017295049037784338, 0.0012076505227014422, 0.0006258597131818533, 0.24290649592876434, 0.009628321044147015, 0.02869918756186962, 0.09332958608865738, 0.04230623319745064, 0.019907258450984955, 0.011525899171829224, 0.17157571017742157, 0.09783578664064407, 0.012751162052154541, 0.24216563999652863], [0.007849892601370811, 0.00037152343429625034, 0.0001898540649563074, 0.0005945939919911325, 0.0009720000089146197, 0.0005252219852991402, 0.00014452684263233095, 0.23021824657917023, 0.0023691949900239706, 0.00577097712084651, 0.1934666633605957, 0.007333261426538229, 0.05523684620857239, 0.011828550137579441, 0.17758417129516602, 0.07199344784021378, 0.004101110156625509, 0.22944989800453186], [0.006568162702023983, 0.0003397821565158665, 0.0005543000297620893, 6.396707613021135e-05, 5.2538303862093017e-05, 0.00034698357922025025, 0.00010326377378078178, 0.426433801651001, 0.0024475238751620054, 0.001444889698177576, 0.008886056020855904, 0.002476603491231799, 0.004621365573257208, 0.024735692888498306, 0.019148653373122215, 0.07464881986379623, 0.00235075899399817, 0.42477676272392273], [0.0008241005125455558, 4.082337181898765e-05, 0.0015089703956618905, 4.934058597427793e-05, 4.192691994830966e-05, 0.0014754391741007566, 0.00017849767755251378, 0.4087394177913666, 0.0006186016835272312, 0.0014078033855184913, 0.009800062514841557, 0.006196698639541864, 0.02365957573056221, 0.032693326473236084, 0.009315885603427887, 0.09261243045330048, 0.003284007776528597, 0.4075530171394348], [0.001898443209938705, 0.00017949807806871831, 0.0004418061871547252, 0.00012566773511935025, 0.00016264148871414363, 0.0005511341150850058, 0.00015877914847806096, 0.19409972429275513, 0.00032789079705253243, 0.005320036318153143, 0.015648599714040756, 0.047704581171274185, 0.0034847918432205915, 0.03330376744270325, 0.07935314625501633, 0.4189006984233856, 0.004887791350483894, 0.19345098733901978], [0.0007830546237528324, 0.00011027191067114472, 0.0009184398804791272, 4.456722308532335e-05, 1.960897134267725e-05, 0.0006123065832071006, 0.00021708228450734168, 0.4527873396873474, 0.00040088381501846015, 0.0017542763380333781, 0.006554611027240753, 0.005190360825508833, 0.006841655354946852, 0.03713098168373108, 0.020510751754045486, 0.009973075240850449, 0.004996884148567915, 0.4511539340019226], [0.003230018075555563, 0.00031083388603292406, 0.0007917153416201472, 0.0003515584976412356, 0.00016508671978954226, 0.0009045777842402458, 0.0006155814044177532, 0.4475916624069214, 0.025278862565755844, 0.01545734517276287, 0.004914215300232172, 0.015003956854343414, 0.0033451321069151163, 0.006278409622609615, 0.005545167252421379, 0.010956300422549248, 0.013000249862670898, 0.4462592899799347], [0.0021721036173403263, 0.0017586156027391553, 0.005620249081403017, 0.0012672366574406624, 0.0004658436810132116, 0.0042572119273245335, 0.0029589300975203514, 0.48369845747947693, 0.0019603914115577936, 0.0019970512948930264, 0.0013590777525678277, 0.0012291044695302844, 0.0017815869068726897, 0.0015325933927670121, 0.00046814262168481946, 0.0010795056587085128, 0.004008765798062086, 0.4823853373527527]], [[0.004407381173223257, 0.001734409132041037, 0.0025065543595701456, 0.0008236733847297728, 0.0010080502834171057, 0.0011047024745494127, 0.004108716733753681, 0.4724222421646118, 0.002697872929275036, 0.008516219444572926, 0.0034887271467596292, 0.0032455604523420334, 0.0007307384512387216, 0.0028999471105635166, 0.002563835820183158, 0.0038968310691416264, 0.012667964212596416, 0.4711765646934509], [0.002307770075276494, 0.00830857828259468, 0.00801195576786995, 0.0027147310320287943, 0.0015072055393829942, 0.00856899842619896, 0.009235227480530739, 0.47920849919319153, 0.00024196227604988962, 0.0008181669400073588, 0.0001821657206164673, 0.00010648588795447722, 7.913728768471628e-05, 0.0002331644354853779, 9.902695455821231e-05, 0.00016594611224718392, 0.0009518158622086048, 0.47725921869277954], [0.0014916686341166496, 0.002516165841370821, 0.002671005204319954, 0.0011065953876823187, 0.0012756830547004938, 0.0006215155590325594, 0.002704387763515115, 0.49396950006484985, 3.556628871592693e-05, 0.0002917388337664306, 9.326062718173489e-05, 8.454379712929949e-05, 0.00011462908878456801, 0.0001839493925217539, 0.00012166634405730292, 6.680927617708221e-05, 0.0007136217318475246, 0.49193763732910156], [0.004446723498404026, 0.03454939275979996, 0.017377281561493874, 0.0034365945030003786, 0.0033910805359482765, 0.0025822289753705263, 0.00738102151080966, 0.46021026372909546, 0.0001173846103483811, 0.003104571020230651, 0.0007917459588497877, 0.00019951595459133387, 0.00011956359230680391, 0.0007962537347339094, 0.0006889309152029455, 0.0001637761015444994, 0.0026091316249221563, 0.45803457498550415], [0.004226563964039087, 0.00837545096874237, 0.004716512281447649, 0.004791846498847008, 0.0075523946434259415, 0.0022555491887032986, 0.005775174591690302, 0.48055964708328247, 7.954841566970572e-05, 0.0003679604269564152, 0.0010474707232788205, 0.000195014028577134, 4.9083380872616544e-05, 0.00034201538073830307, 0.00027613865677267313, 3.758403909159824e-05, 0.001268800813704729, 0.47808322310447693], [0.00375535199418664, 0.0029951201286166906, 0.003199674654752016, 0.005065584089607, 0.0022608537692576647, 0.006922917906194925, 0.004355806857347488, 0.4843987822532654, 0.00023398226767312735, 0.0005426154821179807, 0.0013495655730366707, 5.687285010935739e-05, 6.0892132751177996e-05, 0.00014671792450826615, 0.00012899129069410264, 0.00010888665565289557, 0.0015989213716238737, 0.48281845450401306], [0.015108625404536724, 0.0032525230199098587, 0.002790642436593771, 0.003767872229218483, 0.0040984125807881355, 0.01825324259698391, 0.13285242021083832, 0.4027814269065857, 0.002624178770929575, 0.0005411375313997269, 7.995244232006371e-05, 0.00013272867363411933, 2.2571459339815192e-05, 0.00011950098996749148, 5.115277599543333e-05, 0.00023131101625040174, 0.011699517257511616, 0.40159279108047485], [0.008124866522848606, 0.004090022295713425, 0.0036466140300035477, 0.003690734039992094, 0.0023305234499275684, 0.006818700116127729, 0.01764748990535736, 0.45650240778923035, 0.0024543667677789927, 0.001900282921269536, 0.0016325925244018435, 0.002665339969098568, 0.003358502173796296, 0.0038977593649178743, 0.0012561228359118104, 0.00457017682492733, 0.019466659054160118, 0.45594677329063416], [0.0036743301898241043, 0.00241920817643404, 0.0005543075385503471, 0.0013343595201149583, 0.0004929229617118835, 0.0038485724944621325, 0.002678892109543085, 0.47910240292549133, 0.00683320127427578, 0.005189281422644854, 0.00263544381596148, 0.0018157926388084888, 0.0007159855449572206, 0.0023620338179171085, 0.0010064035886898637, 0.0018396512605249882, 0.005986301694065332, 0.47751089930534363], [0.0055195242166519165, 0.0018171436386182904, 0.0043961647897958755, 0.0006468818755820394, 0.0004335251869633794, 0.002526666736230254, 0.0054366858676075935, 0.47471633553504944, 0.005686014425009489, 0.01157248392701149, 0.0023107624147087336, 0.0007060436764732003, 0.0015282537788152695, 0.0015768033917993307, 0.00025979583733715117, 0.0006406042375601828, 0.007309043779969215, 0.47291722893714905], [0.0017258153529837728, 0.0008280836627818644, 0.0006134491413831711, 0.0002841047244146466, 0.00013074239541310817, 0.00011374717723811045, 0.001167243579402566, 0.47666293382644653, 0.000916109187528491, 0.017909454181790352, 0.016063597053289413, 0.004164636600762606, 0.0008493586210533977, 0.0014373129233717918, 0.0002680790494196117, 0.0002955053059849888, 0.0017855692422017455, 0.4747842252254486], [0.0034119735937565565, 0.0005037131486460567, 0.0003177962207701057, 9.257932106265798e-05, 7.581266254419461e-05, 0.000250512472121045, 0.0015589752001687884, 0.4758191704750061, 0.0016442269552499056, 0.01514727808535099, 0.014201752841472626, 0.006090882699936628, 0.001501594204455614, 0.0020555739756673574, 0.0004179638053756207, 0.0003742687404155731, 0.0025099399499595165, 0.47402605414390564], [0.002042519161477685, 0.00046767794992774725, 0.0004185929719824344, 8.134824747685343e-05, 3.103886774624698e-05, 0.00010750562069006264, 0.0016099890926852822, 0.47326597571372986, 0.0012084485497325659, 0.011337311938405037, 0.012396534904837608, 0.007502404507249594, 0.0030972235836088657, 0.006614373996853828, 0.001754512544721365, 0.0017130408668890595, 0.004880664870142937, 0.47147080302238464], [0.0007736713741905987, 0.00020665892225224525, 9.985189535655081e-05, 2.882321314245928e-05, 2.512023456802126e-05, 9.50325556914322e-06, 0.0002843051333911717, 0.4956972897052765, 7.404669304378331e-05, 0.0007246010354720056, 0.0006848112097941339, 0.0010794552508741617, 0.0010413472773507237, 0.0033662612549960613, 0.0007460784399881959, 0.00023220092407427728, 0.0010918311309069395, 0.493833988904953], [0.007553341798484325, 0.00025493878638371825, 3.5377834137761965e-05, 7.173231279011816e-05, 5.104316642245976e-06, 9.244327884516679e-06, 0.0003569780383259058, 0.4167351722717285, 1.778902515070513e-05, 0.0013997871428728104, 0.0018827287713065743, 0.001442587235942483, 0.008905038237571716, 0.0791643038392067, 0.06020142883062363, 0.004280392080545425, 0.0027928848285228014, 0.41489121317863464], [0.0006191005231812596, 8.590179641032591e-05, 9.435132233193144e-05, 1.9928140318370424e-05, 1.2734648407786153e-05, 3.386436583241448e-05, 0.00036443144199438393, 0.48700836300849915, 0.00019266751769464463, 0.002591229509562254, 0.0007898779585957527, 0.0014279353199526668, 0.001383203431032598, 0.007083851844072342, 0.0050478288903832436, 0.004942741710692644, 0.002839150605723262, 0.48546281456947327], [0.01908237673342228, 0.0006016665720380843, 0.0005895863869227469, 0.00026817762409336865, 0.0002711809938773513, 0.0008502258569933474, 0.012576966546475887, 0.4270147681236267, 0.008272266015410423, 0.0020664085168391466, 0.002402727724984288, 0.005791954696178436, 0.0013582328101620078, 0.004662791732698679, 0.004401750862598419, 0.011396695859730244, 0.07262099534273148, 0.4257712662220001], [0.008116938173770905, 0.004084412008523941, 0.0036377571523189545, 0.0036851498298346996, 0.0023274309933185577, 0.00680303480476141, 0.01761259138584137, 0.456576943397522, 0.002450775820761919, 0.0018972420366480947, 0.0016303530428558588, 0.0026619250420480967, 0.003352072788402438, 0.0038925090339034796, 0.001255833194591105, 0.004557525273412466, 0.019435493275523186, 0.45602187514305115]], [[0.0028692728374153376, 0.0022778233978897333, 0.008481488563120365, 0.0022271478082984686, 0.0017116015078499913, 0.002535314066335559, 0.0036528916098177433, 0.40421968698501587, 0.033325012773275375, 0.03356371447443962, 0.014503641985356808, 0.016175858676433563, 0.00965824257582426, 0.016946900635957718, 0.0030061337165534496, 0.006041502580046654, 0.03564918786287308, 0.40315452218055725], [0.006535624153912067, 0.01749577187001705, 0.006123032420873642, 0.013018699362874031, 0.02278379537165165, 0.010980265215039253, 0.01137410756200552, 0.45135971903800964, 0.003592172171920538, 0.0024036522954702377, 0.0011933682253584266, 0.00047031184658408165, 0.0007610356551595032, 0.0003169188858009875, 0.000200604583369568, 0.00031217263313010335, 0.001454718760214746, 0.44962403178215027], [0.012116850353777409, 0.040481965988874435, 0.010523748584091663, 0.01785765402019024, 0.014038210734724998, 0.014112104661762714, 0.010210595093667507, 0.4330395460128784, 0.003485706401988864, 0.005521893501281738, 0.0012945450143888593, 0.0007315752445720136, 0.0012568071251735091, 0.00048644706839695573, 0.0009014626266434789, 0.0006347252638079226, 0.0018798892851918936, 0.43142637610435486], [0.007986452430486679, 0.11973032355308533, 0.005987429525703192, 0.01745009794831276, 0.043420057743787766, 0.0237280260771513, 0.01090783067047596, 0.3657437860965729, 0.027541624382138252, 0.0015955922426655889, 0.001765555003657937, 0.003541313111782074, 0.0013559532817453146, 0.0004298286803532392, 0.0002328755217604339, 0.0004737736308015883, 0.003786450019106269, 0.36432310938835144], [0.0033521594014018774, 0.06627464294433594, 0.0074727293103933334, 0.027683783322572708, 0.04366937652230263, 0.025468051433563232, 0.010914803482592106, 0.3904446065425873, 0.01781349815428257, 0.0002792785526253283, 0.0016328708734363317, 0.012245802208781242, 0.00022171722957864404, 0.0004469837585929781, 8.959484694059938e-05, 9.916867566062137e-05, 0.0029330593533813953, 0.38895782828330994], [0.013902301900088787, 0.030455367639660835, 0.009804795496165752, 0.09853202849626541, 0.19601145386695862, 0.06574243307113647, 0.0149624552577734, 0.2721903622150421, 0.012060267850756645, 0.00034599838545545936, 0.002407590625807643, 0.003179436782374978, 0.0004990223096683621, 0.0011091753840446472, 0.0004785657220054418, 0.0009462376474402845, 0.006145392078906298, 0.27122706174850464], [0.013463610783219337, 0.02603691630065441, 0.02766711264848709, 0.15159842371940613, 0.1853441447019577, 0.04740029573440552, 0.03331150859594345, 0.24159173667430878, 0.018327787518501282, 0.001319360570050776, 0.0015058685094118118, 0.00035792746348306537, 0.0004244940064381808, 0.001258421572856605, 0.0011575049720704556, 0.0008461806573905051, 0.0075254556722939014, 0.24086332321166992], [0.004005236551165581, 0.003968173172324896, 0.0010925830574706197, 0.0029899654909968376, 0.0020909246522933245, 0.002452773740515113, 0.00294467038474977, 0.48116567730903625, 0.004016621969640255, 0.0021174054127186537, 0.0035920224618166685, 0.0024769629817456007, 0.0026088645681738853, 0.0008507434977218509, 0.0006609254633076489, 0.0007772973040118814, 0.0026672689709812403, 0.47952181100845337], [0.03875404968857765, 0.0007796744466759264, 0.00041523706750012934, 0.003593933768570423, 0.00323826284147799, 0.004364966414868832, 0.004536302760243416, 0.42849457263946533, 0.043321702629327774, 0.002470750827342272, 0.003337063128128648, 0.002112850546836853, 0.0009663602104410529, 0.002294385340064764, 0.0024851092603057623, 0.005477696657180786, 0.026235202327370644, 0.4271218776702881], [0.06046505644917488, 0.002413819544017315, 0.0012858231784775853, 0.002643842715770006, 0.0012064788024872541, 0.0015019697602838278, 0.004432941321283579, 0.336842805147171, 0.16956567764282227, 0.021477829664945602, 0.012998365797102451, 0.010357504710555077, 0.004773739259690046, 0.0041780369356274605, 0.001689641154371202, 0.0027116923592984676, 0.02595297247171402, 0.3355017304420471], [0.01557206455618143, 0.0019898575264960527, 0.0005683218478225172, 0.0013454037252813578, 0.0017573329387232661, 0.0020990201737731695, 0.0017210529185831547, 0.2715396583080292, 0.3439616858959198, 0.026492713019251823, 0.01772950403392315, 0.017573773860931396, 0.0040604728274047375, 0.005382623989135027, 0.000892930431291461, 0.006939910817891359, 0.0097334710881114, 0.270640105009079], [0.04221123456954956, 0.0007753651007078588, 0.0003058660659007728, 0.0008448648150078952, 0.0008630129741504788, 0.002237071515992284, 0.0017392929876223207, 0.21533381938934326, 0.45430558919906616, 0.02041759341955185, 0.012976312078535557, 0.004941133316606283, 0.0024910003412514925, 0.007802597247064114, 0.0013999382499605417, 0.006024612113833427, 0.01081544253975153, 0.21451528370380402], [0.050225019454956055, 0.0015845519956201315, 0.0006524866912513971, 0.002212389139458537, 0.0005589915672317147, 0.004158854950219393, 0.004571559373289347, 0.2400471270084381, 0.1898464560508728, 0.038499485701322556, 0.059062328189611435, 0.02017313800752163, 0.016754433512687683, 0.042618684470653534, 0.03028697706758976, 0.03901209309697151, 0.020507190376520157, 0.23922817409038544], [0.03430863097310066, 0.002720401156693697, 0.00038902743835933506, 0.0007976244669407606, 0.0002919957914855331, 0.0017360063502565026, 0.00200619176030159, 0.2901170551776886, 0.05480216071009636, 0.03226308524608612, 0.04593300446867943, 0.0802692398428917, 0.043141745030879974, 0.024725059047341347, 0.058824531733989716, 0.025409864261746407, 0.013168745674192905, 0.2890956997871399], [0.02308051660656929, 0.0030509524513036013, 0.0004671454953495413, 0.0009740118402987719, 0.0006574925500899553, 0.0012186754029244184, 0.0025993918534368277, 0.2097139060497284, 0.031117230653762817, 0.027615029364824295, 0.036225687712430954, 0.10392376035451889, 0.14177636802196503, 0.09900818765163422, 0.07835537940263748, 0.020756332203745842, 0.01049452368170023, 0.2089654505252838], [0.020841246470808983, 0.0007777739665471017, 0.0003468064242042601, 0.0004086908302269876, 7.860577898100019e-05, 0.00044301306479610503, 0.0014262665063142776, 0.05063233524560928, 0.022387873381376266, 0.017251845449209213, 0.030209962278604507, 0.02657386101782322, 0.04401961714029312, 0.05696498230099678, 0.6494208574295044, 0.01990491896867752, 0.007829518988728523, 0.05048184469342232], [0.0354778878390789, 0.0030366024002432823, 0.0014637337299063802, 0.006497723516076803, 0.00437145447358489, 0.0032250857912003994, 0.005633423570543528, 0.20934611558914185, 0.16600404679775238, 0.06762401014566422, 0.08168625086545944, 0.019294651225209236, 0.0176997072994709, 0.027766549959778786, 0.07353268563747406, 0.023468883708119392, 0.045064520090818405, 0.2088066190481186], [0.004002569243311882, 0.003963063471019268, 0.001090875593945384, 0.0029863708186894655, 0.0020879863295704126, 0.0024502312298864126, 0.00294015696272254, 0.48119208216667175, 0.0040127914398908615, 0.002114643109962344, 0.0035867271944880486, 0.0024726123083382845, 0.0026043513789772987, 0.0008491625194437802, 0.0006600842461921275, 0.0007761495653539896, 0.002662521554157138, 0.4795476794242859]], [[0.0021670463029295206, 0.013582326471805573, 0.015603365376591682, 0.12113938480615616, 0.3204556703567505, 0.07895073294639587, 0.028734959661960602, 0.20736584067344666, 0.00244047655723989, 0.00029377132887020707, 0.0008432645699940622, 0.0004156486829742789, 0.00044288928620517254, 0.00018850072228815407, 7.485730020562187e-05, 7.031548739178106e-05, 0.0005450957105495036, 0.20668578147888184], [0.0016396718565374613, 0.00578753836452961, 0.004135849419981241, 0.01189459953457117, 0.005762663669884205, 0.006808342877775431, 0.0030881164129823446, 0.4811140298843384, 0.0002775294706225395, 4.192330379737541e-05, 7.816350989742205e-05, 6.692836905131117e-05, 0.00012973413686268032, 5.49301621504128e-05, 2.1972033209749497e-05, 0.00011149565398227423, 0.00010139738878933713, 0.4788849651813507], [0.0015208667609840631, 0.0036915920209139585, 0.002801444148644805, 0.005837243981659412, 0.0034012221731245518, 0.006499228533357382, 0.0038592463824898005, 0.4869619905948639, 0.00018607119272928685, 5.430034070741385e-05, 0.00022069227998144925, 0.00010042680514743552, 6.892991223139688e-05, 2.5780056603252888e-05, 5.212250835029408e-05, 7.668105536140501e-05, 0.00016248899919446558, 0.4844796061515808], [0.0015696907648816705, 0.003876219503581524, 0.0019066723762080073, 0.008163969963788986, 0.002721591619774699, 0.00794295035302639, 0.008547782897949219, 0.4810613989830017, 0.004429150838404894, 5.547203909372911e-05, 0.00016605750715825707, 8.197313582058996e-05, 6.542792561958777e-06, 2.2627129510510713e-05, 1.896005960588809e-05, 7.630763320776168e-06, 0.0006127723027020693, 0.47880861163139343], [0.001205161795951426, 0.0019487133249640465, 0.013316118158400059, 0.11414221674203873, 0.014467488043010235, 0.005426487419754267, 0.006326730363070965, 0.421607106924057, 0.00039731350261718035, 5.916443114983849e-05, 0.0003296284703537822, 0.00021058873971924186, 0.00012476410483941436, 3.317456503282301e-05, 0.00015865653404034674, 1.9145221813232638e-05, 0.0003568310057744384, 0.4198707044124603], [0.002906623762100935, 0.005818450357764959, 0.006104825530201197, 0.1397770494222641, 0.023366540670394897, 0.022423334419727325, 0.01663016341626644, 0.39026495814323425, 0.0017943336861208081, 7.936924521345645e-05, 0.00048384422552771866, 0.00012723014515358955, 4.8727273679105565e-05, 5.627387508866377e-05, 5.8464698668103665e-05, 5.224054984864779e-05, 0.0014887278666719794, 0.3885188400745392], [0.002862463938072324, 0.0021550122182816267, 0.0024644220247864723, 0.017932267859578133, 0.011810032650828362, 0.015771878883242607, 0.005673056934028864, 0.4701506197452545, 0.0016665766015648842, 0.00013645316357724369, 0.0002571502118371427, 0.00017912124167196453, 0.00011495189392007887, 5.3069161367602646e-05, 3.073859988944605e-05, 8.276161679532379e-05, 0.00044069578871130943, 0.46821877360343933], [0.0014163595624268055, 0.0026461079251021147, 0.0022624945268034935, 0.0063165295869112015, 0.00460139149799943, 0.003090138779953122, 0.001445645117200911, 0.4821208119392395, 0.002567717107012868, 0.000994244241155684, 0.0024293691385537386, 0.0021642204374074936, 0.0022104105446487665, 0.0005523471045307815, 0.0019569869618862867, 0.0011947343591600657, 0.0011398240458220243, 0.4808906316757202], [0.0067082056775689125, 0.00014646847557742149, 0.00034091173438355327, 0.001393736805766821, 0.00036600782186724246, 0.0033955094404518604, 0.001503109117038548, 0.4704768657684326, 0.028937676921486855, 0.002461508149281144, 0.004681190941482782, 0.001424669288098812, 0.0005727821262553334, 0.0004000752232968807, 0.00016847024380695075, 0.0011146684410050511, 0.007191162556409836, 0.4687170684337616], [0.005219805985689163, 0.003218630328774452, 0.0005617482238449156, 0.002544587943702936, 0.0015827552415430546, 0.0013842404587194324, 0.004916468635201454, 0.46261948347091675, 0.014106298796832561, 0.00786651112139225, 0.01433328166604042, 0.007136091589927673, 0.0005911225453019142, 0.0007570995367132127, 0.00027111510280519724, 0.0007506359252147377, 0.011433162726461887, 0.4607069194316864], [0.005082271061837673, 0.00019596610218286514, 0.00012112857075408101, 0.00032982995617203414, 5.194816185394302e-05, 0.0002942667924799025, 0.005827978253364563, 0.41920486092567444, 0.04542720690369606, 0.004087214823812246, 0.06848159432411194, 0.023950306698679924, 0.0004666457243729383, 0.0006312045152299106, 9.930250234901905e-05, 4.8546917241765186e-05, 0.008409814909100533, 0.4172898828983307], [0.005411125719547272, 0.00020572434004861861, 0.00010501040378585458, 0.0006587380194105208, 0.00022530222486238927, 0.0006348242168314755, 0.0030377362854778767, 0.32761064171791077, 0.024871625006198883, 0.0026249371003359556, 0.27588266134262085, 0.027028033509850502, 0.0007308984058909118, 0.00035650114296004176, 0.00031442250474356115, 9.174188016913831e-05, 0.004103681072592735, 0.3261062800884247], [0.009535553865134716, 5.7128385378746316e-05, 8.683592022862285e-05, 4.0527131204726174e-05, 1.9118118871119805e-05, 3.7103138311067596e-05, 0.0029558513779193163, 0.24868473410606384, 0.00036009997711516917, 0.004175570327788591, 0.34636443853378296, 0.11901815980672836, 0.013984914869070053, 0.0006758717354387045, 0.0011214915430173278, 0.001598200062289834, 0.003463804256170988, 0.24782060086727142], [0.003961473703384399, 0.0001308826176682487, 0.00023898683139123023, 0.0003485619672574103, 0.00015711570449639112, 0.00018091488163918257, 0.0012068533105775714, 0.43998223543167114, 0.0003036900598090142, 0.0008030924946069717, 0.006821148097515106, 0.010950676165521145, 0.07214503735303879, 0.0047742039896547794, 0.004147299099713564, 0.012751265428960323, 0.002761951182037592, 0.4383346140384674], [0.030528824776411057, 0.0004744963371194899, 0.00011534325312823057, 0.00035790944821201265, 0.00019102590158581734, 0.0001325263292528689, 0.014411302283406258, 0.09634147584438324, 0.00028842483879998326, 0.036115650087594986, 0.011372034437954426, 0.02972797490656376, 0.3575076460838318, 0.17481818795204163, 0.10466473549604416, 0.0034950650297105312, 0.04346591606736183, 0.09599145501852036], [0.006284166593104601, 0.0002177246642531827, 0.00048941804561764, 0.0003813930961769074, 9.45303327171132e-05, 0.00025000388268381357, 0.0031697021331638098, 0.2976183593273163, 0.0006750391330569983, 0.006453041452914476, 0.032598819583654404, 0.04595211148262024, 0.07650534808635712, 0.05080404505133629, 0.14176185429096222, 0.029373416677117348, 0.010953649878501892, 0.29641735553741455], [0.002938863355666399, 0.00015727465506643057, 0.00017418432980775833, 0.0011524222791194916, 0.0002659005986060947, 0.0002967260661534965, 0.001134113292209804, 0.4629450738430023, 0.028943393379449844, 0.0021928411442786455, 0.00944981724023819, 0.0068855080753564835, 0.006816987879574299, 0.0033002658747136593, 0.0015620513586327434, 0.00533041637390852, 0.0051353126764297485, 0.46131882071495056], [0.0014150608330965042, 0.002639253158122301, 0.002256257925182581, 0.00630378071218729, 0.00459184218198061, 0.0030857364181429148, 0.0014432210009545088, 0.4821475148200989, 0.0025665017310529947, 0.0009922835743054748, 0.002427811734378338, 0.0021625810768455267, 0.002209525555372238, 0.0005516546661965549, 0.0019575778860598803, 0.0011945271398872137, 0.0011389737483114004, 0.4809158742427826]]], [[[0.002205552998930216, 0.001938913599587977, 0.004721165634691715, 0.0030071204528212547, 0.0006366019370034337, 0.014355839230120182, 0.00879349373281002, 0.4278900921344757, 0.06323640793561935, 0.007267501670867205, 0.0028672576881945133, 0.002119160257279873, 0.0009138106252066791, 0.0017955994699150324, 0.0032248820643872023, 0.006210570689290762, 0.02228531613945961, 0.42653074860572815], [0.003487406298518181, 0.028230709955096245, 0.015518903732299805, 0.004577597603201866, 0.0010398378362879157, 0.005711960140615702, 0.01334109716117382, 0.45710673928260803, 0.01110152993351221, 0.0006766467122361064, 0.00020466376736294478, 0.00021989467495586723, 8.964996959548444e-05, 8.746313687879592e-05, 8.153075759764761e-05, 0.000113415859232191, 0.0027020347770303488, 0.45570889115333557], [0.002813936211168766, 0.3749983608722687, 0.03350284695625305, 0.007134597282856703, 0.007288957946002483, 0.021897701546549797, 0.006441708188503981, 0.26180052757263184, 0.006646944675594568, 0.005484987050294876, 0.0010084774112328887, 0.0029054414480924606, 0.0011427606223151088, 0.0017012135358527303, 0.0004052454314660281, 0.000967906613368541, 0.0026971378829330206, 0.26116126775741577], [0.0049230726435780525, 0.07562769204378128, 0.015214218758046627, 0.013928018510341644, 0.0055821798741817474, 0.01723390631377697, 0.028802059590816498, 0.40255722403526306, 0.023386115208268166, 0.0017950779292732477, 0.0005689429235644639, 0.00038712495006620884, 5.7359851780347526e-05, 0.00017674887203611434, 4.3937023292528465e-05, 0.00012997406884096563, 0.008002393878996372, 0.40158402919769287], [0.015249945223331451, 0.03750603646039963, 0.03316423296928406, 0.25233644247055054, 0.05417700856924057, 0.01821124739944935, 0.05663798749446869, 0.25277191400527954, 0.010795976035296917, 0.002434032503515482, 0.000854753889143467, 0.0006011283840052783, 0.00026842905208468437, 0.0003572709101717919, 0.00019350118236616254, 0.00020327630045358092, 0.011990041472017765, 0.2522467076778412], [0.01952933520078659, 0.039124663919210434, 0.041507869958877563, 0.35603222250938416, 0.1392851173877716, 0.040932293981313705, 0.042327143251895905, 0.14362740516662598, 0.01803860068321228, 0.0024460332933813334, 0.0012417456600815058, 0.001354752341285348, 0.0008521554991602898, 0.0010358671424910426, 0.001089331228286028, 0.0010223365388810635, 0.007161618210375309, 0.14339159429073334], [0.0249756071716547, 0.005297448020428419, 0.009300237521529198, 0.043174080550670624, 0.03264578431844711, 0.045726925134658813, 0.06045341119170189, 0.38121137022972107, 0.006931839045137167, 0.0009227444534189999, 0.0007477466715499759, 0.0004514835891313851, 0.00046129588736221194, 0.00019746425095945597, 0.0002749985142145306, 9.04185653780587e-05, 0.0069231316447257996, 0.38021400570869446], [0.014301635324954987, 0.013172158971428871, 0.007191451266407967, 0.009796821512281895, 0.008314904756844044, 0.0059452662244439125, 0.017693255096673965, 0.4298948645591736, 0.007166246417909861, 0.01011216826736927, 0.008323478512465954, 0.004506580997258425, 0.007747048977762461, 0.004140064120292664, 0.002014926401898265, 0.002766975434496999, 0.018104860559105873, 0.4288073480129242], [0.025981329381465912, 0.0014550987398251891, 0.006943130865693092, 0.023817850276827812, 0.006135422270745039, 0.004333184566348791, 0.1627124547958374, 0.3308541178703308, 0.03574217110872269, 0.003386643948033452, 0.0006886495975777507, 0.0010070445714518428, 0.0003710342280101031, 0.0005621417076326907, 0.0005267086671665311, 0.0006423923186957836, 0.06479993462562561, 0.33004075288772583], [0.010227436199784279, 0.018344799056649208, 0.010432385839521885, 0.0018197958124801517, 0.0009470446966588497, 0.00282952724955976, 0.015206553041934967, 0.35833996534347534, 0.14859908819198608, 0.02080184780061245, 0.004125547595322132, 0.007136275060474873, 0.000990880886092782, 0.0033154510892927647, 0.0008113927906379104, 0.00324735464528203, 0.03537103161215782, 0.35745373368263245], [0.017923232167959213, 0.004334207158535719, 0.003526487620547414, 0.0026954857166856527, 0.0014163381420075893, 0.000749365717638284, 0.031248552724719048, 0.16807341575622559, 0.5004020929336548, 0.04581097885966301, 0.007498736958950758, 0.018495244905352592, 0.0023288873489946127, 0.002315590623766184, 0.00018423680739942938, 0.0011597734410315752, 0.02418747916817665, 0.16764983534812927], [0.02505761757493019, 0.0011838942300528288, 0.0020859225187450647, 0.002034158678725362, 0.001079503446817398, 0.0019374993862584233, 0.015916600823402405, 0.21624422073364258, 0.25339585542678833, 0.04208911955356598, 0.1121760681271553, 0.06350839883089066, 0.020774900913238525, 0.005537643563002348, 0.0021602457854896784, 0.0023646617773920298, 0.016735119745135307, 0.2157185673713684], [0.013658261857926846, 0.0007195448852144182, 0.0011023451806977391, 0.00055248400894925, 0.00032055939664132893, 0.0016090917633846402, 0.0040816655382514, 0.18177953362464905, 0.1267407089471817, 0.042897872626781464, 0.2531942129135132, 0.1418415755033493, 0.01644792966544628, 0.010590563528239727, 0.00584259582683444, 0.0025399010628461838, 0.014749987982213497, 0.18133117258548737], [0.002560274675488472, 0.0002552675432525575, 0.00033054666710086167, 0.000478395726531744, 0.0004809728416148573, 0.0032221178989857435, 0.003061475697904825, 0.09517674893140793, 0.03360999748110771, 0.008000760339200497, 0.1150292456150055, 0.2139822393655777, 0.349261611700058, 0.016715524718165398, 0.038156624883413315, 0.016796378418803215, 0.007979723624885082, 0.0949021652340889], [0.014709251001477242, 0.0009058778523467481, 0.0005896259099245071, 0.0007347799255512655, 0.0007699498091824353, 0.0011013398179784417, 0.009397360496222973, 0.1613071709871292, 0.06933829933404922, 0.014825208112597466, 0.12214479595422745, 0.13597586750984192, 0.19265542924404144, 0.05179104954004288, 0.040473099797964096, 0.0037415495608001947, 0.01870591938495636, 0.16083353757858276], [0.006800639443099499, 0.0007335758418776095, 0.001177071826532483, 0.00067954818950966, 0.0003758256498258561, 0.0013253106735646725, 0.005083039868623018, 0.2823100686073303, 0.0655796155333519, 0.019172921776771545, 0.049292996525764465, 0.05358964204788208, 0.0645906999707222, 0.015557090751826763, 0.1253562569618225, 0.004759456962347031, 0.022093763574957848, 0.2815224528312683], [0.015319906175136566, 0.0007976097404025495, 0.0008818986243568361, 0.0024239346385002136, 0.003528408706188202, 0.0027717850171029568, 0.01421092264354229, 0.4107055366039276, 0.029722867533564568, 0.005051125772297382, 0.012493700720369816, 0.011990186758339405, 0.009869908913969994, 0.003531920025125146, 0.010242908261716366, 0.001793789560906589, 0.055088110268116, 0.40957555174827576], [0.01430531032383442, 0.013166163116693497, 0.0071884263306856155, 0.009799618273973465, 0.008320698514580727, 0.005944350268691778, 0.017687048763036728, 0.42990177869796753, 0.007165401708334684, 0.010106208734214306, 0.008322394452989101, 0.0045063612051308155, 0.007753212004899979, 0.004139323253184557, 0.002015854464843869, 0.0027659551706165075, 0.018098309636116028, 0.428813636302948]], [[0.004490458406507969, 0.0018359092064201832, 0.001109542092308402, 0.001179960323497653, 0.0014623890165239573, 0.0010745791951194406, 0.0009670212748460472, 0.17951878905296326, 0.48448505997657776, 0.03723008930683136, 0.018827108666300774, 0.018354903906583786, 0.018796652555465698, 0.007219143211841583, 0.006390651222318411, 0.005910744424909353, 0.032086510211229324, 0.17906050384044647], [0.007153951562941074, 0.08183009922504425, 0.07466541975736618, 0.1904962956905365, 0.07947516441345215, 0.14841237664222717, 0.018024280667304993, 0.15580038726329803, 0.005973838269710541, 0.048502612859010696, 0.015309898182749748, 0.00839347206056118, 0.005290187429636717, 0.0006786889280192554, 0.00036692863795906305, 0.001996611477807164, 0.0021879449486732483, 0.15544185042381287], [0.006517992354929447, 0.01503735315054655, 0.011795124039053917, 0.06958921253681183, 0.010494065470993519, 0.014448227360844612, 0.0073721446096897125, 0.42020121216773987, 0.0011970388004556298, 0.01808892749249935, 0.0028812261298298836, 0.0006999720353633165, 0.0008341279462911189, 0.00015120873285923153, 0.0002739172778092325, 0.00025141696096397936, 0.001245158608071506, 0.4189216196537018], [0.017199980095028877, 0.05242743715643883, 0.016178138554096222, 0.017849894240498543, 0.11597107350826263, 0.23306065797805786, 0.02788013033568859, 0.21507790684700012, 0.059082791209220886, 0.008827793411910534, 0.0020774814765900373, 0.00569932721555233, 0.0031790712382644415, 0.002672523492947221, 0.0006953039555810392, 0.005104631185531616, 0.0024419038090854883, 0.2145739644765854], [0.022663403302431107, 0.09423581510782242, 0.011933538131415844, 0.025371195748448372, 0.036742087453603745, 0.09105056524276733, 0.03584037348628044, 0.3279011845588684, 0.013286401517689228, 0.006336212158203125, 0.0006458954885601997, 0.0007526634144596756, 0.0008566429605707526, 0.0016877142479643226, 0.0004532715247478336, 0.0021566348150372505, 0.001283685676753521, 0.3268027603626251], [0.014466652646660805, 0.0628577321767807, 0.08449120074510574, 0.034680675715208054, 0.013771231286227703, 0.02768353931605816, 0.05851711705327034, 0.3404473662376404, 0.010729695670306683, 0.0020641270093619823, 0.0012096842983737588, 0.0010074954479932785, 0.0017860651714727283, 0.0026419665664434433, 0.00027463643345981836, 0.0010804968187585473, 0.0028158489149063826, 0.3394745886325836], [0.04719780758023262, 0.06416289508342743, 0.015065028332173824, 0.0346592478454113, 0.038530461490154266, 0.04415621981024742, 0.004981682635843754, 0.3373880386352539, 0.0333116240799427, 0.012397529557347298, 0.003277316689491272, 0.0055904630571603775, 0.008871277794241905, 0.005565514322370291, 0.0041361600160598755, 0.0024820545222610235, 0.0017963215941563249, 0.3364304006099701], [0.003977834712713957, 0.005555904470384121, 0.005562560632824898, 0.0026425474788993597, 0.000830473902169615, 0.0009189628763124347, 0.0009624881786294281, 0.48475316166877747, 0.0019110464490950108, 0.0016900468617677689, 0.0005261797341518104, 0.000761670817155391, 0.0016915706219151616, 0.0018893495434895158, 0.0009432205115444958, 0.0006120357429608703, 0.0017173824599012733, 0.4830535054206848], [0.008547679521143436, 0.0050874752923846245, 0.0028058760799467564, 0.004711025860160589, 0.006714242976158857, 0.0049107871018350124, 0.0014047501608729362, 0.1992693543434143, 0.05343379080295563, 0.05375159531831741, 0.1455473005771637, 0.24148890376091003, 0.028677603229880333, 0.01581394113600254, 0.007281014695763588, 0.009228336624801159, 0.012524975463747978, 0.19880136847496033], [0.005211012437939644, 0.002522660419344902, 0.0016416667494922876, 0.00600874237716198, 0.004272017162293196, 0.0036081864964216948, 0.0010914092417806387, 0.3906038999557495, 0.030578913167119026, 0.041850198060274124, 0.05193469673395157, 0.02959868125617504, 0.02576533891260624, 0.0030033441726118326, 0.0013612386537715793, 0.0044104051776230335, 0.007058152463287115, 0.3894794285297394], [0.0029769742395728827, 0.0012462736340239644, 0.0010856614680960774, 0.00035836908500641584, 0.001115992316044867, 0.0008067512535490096, 0.0007839143509045243, 0.217646986246109, 0.014126552268862724, 0.011490218341350555, 0.016015712171792984, 0.13360291719436646, 0.24396120011806488, 0.038476888090372086, 0.017386622726917267, 0.05769116058945656, 0.02413799799978733, 0.21708977222442627], [0.002314712619408965, 0.0007844743086025119, 0.002046556444838643, 0.00046072996337898076, 0.0007348694489337504, 0.0005643048789352179, 0.0007496958714909852, 0.29964709281921387, 0.005336620844900608, 0.008091171272099018, 0.01053590513765812, 0.01376333273947239, 0.19708824157714844, 0.06207354739308357, 0.04392227530479431, 0.0278185848146677, 0.025268027558922768, 0.2987998425960541], [0.0029419888742268085, 0.00045940157724544406, 0.0005252252449281514, 7.659653783775866e-05, 0.00038794829742982984, 0.0007882662466727197, 0.0006106296787038445, 0.29213738441467285, 0.0015560262836515903, 0.0075152041390538216, 0.018076160922646523, 0.04176067188382149, 0.031898826360702515, 0.09939910471439362, 0.15277168154716492, 0.03066375106573105, 0.027222316712141037, 0.2912088930606842], [0.0039913044311106205, 0.00042892174678854644, 0.0012108589289709926, 0.00044116118806414306, 0.00018662710499484092, 0.0008315884042531252, 0.0009984767530113459, 0.4288358986377716, 0.0015607725363224745, 0.003128163982182741, 0.00945806223899126, 0.011290328577160835, 0.01999489963054657, 0.017464537173509598, 0.012033498845994473, 0.03436749055981636, 0.026466820389032364, 0.4273107051849365], [0.0026535079814493656, 0.0006040373118594289, 0.00040625856490805745, 5.997822881909087e-05, 6.933948316145688e-05, 0.00032080267556011677, 0.00030359072843566537, 0.2825179696083069, 0.0033157861325889826, 0.003186516696587205, 0.00253898068331182, 0.008568746037781239, 0.03518863394856453, 0.06300302594900131, 0.019185004755854607, 0.28569284081459045, 0.010861153714358807, 0.2815238833427429], [0.002375608077272773, 0.0018199641490355134, 0.009827176108956337, 0.0006454618996940553, 0.00015495576371904463, 0.0009838881669566035, 0.001499229110777378, 0.3982278108596802, 0.005417344160377979, 0.0038598368410021067, 0.0043493956327438354, 0.003291171509772539, 0.018801305443048477, 0.12710264325141907, 0.0038877923507243395, 0.005737483035773039, 0.015078090131282806, 0.3969409167766571], [0.014531392604112625, 0.0030100326985120773, 0.0016052304999902844, 0.0024385114666074514, 0.0030244369991123676, 0.0027870540507137775, 0.0006754342466592789, 0.4400123357772827, 0.033053454011678696, 0.01489318162202835, 0.0026591503992676735, 0.008047149516642094, 0.008761858567595482, 0.010106958448886871, 0.005096636712551117, 0.004121484234929085, 0.006669244263321161, 0.4385063350200653], [0.003978085704147816, 0.005556278862059116, 0.005563670769333839, 0.002641403814777732, 0.0008302736678160727, 0.000918912177439779, 0.0009628863772377372, 0.4847564697265625, 0.0019095365423709154, 0.0016884086653590202, 0.0005256744916550815, 0.0007612362969666719, 0.0016901696799322963, 0.001888515893369913, 0.000942581333220005, 0.0006116615259088576, 0.0017171698855236173, 0.48305702209472656]], [[0.03606101870536804, 0.08949510008096695, 0.07494383305311203, 0.13559673726558685, 0.05311950296163559, 0.11841189116239548, 0.08749297261238098, 0.08260536193847656, 0.02526092529296875, 0.012262089177966118, 0.04731687903404236, 0.026043780148029327, 0.023767346516251564, 0.0126188350841403, 0.03768163174390793, 0.0180481169372797, 0.03677866980433464, 0.0824953094124794], [0.083663709461689, 0.033820465207099915, 0.023604964837431908, 0.01205995213240385, 0.033834706991910934, 0.01676921360194683, 0.09057426452636719, 0.10044951736927032, 0.05949622765183449, 0.07052209228277206, 0.03069990500807762, 0.008608034811913967, 0.08392363041639328, 0.007293378934264183, 0.07800597697496414, 0.012164906598627567, 0.15417388081550598, 0.10033507645130157], [0.04019042104482651, 0.01575823314487934, 0.02934880554676056, 0.017999939620494843, 0.0065142922103405, 0.01585359312593937, 0.04800806939601898, 0.2893596589565277, 0.028379620984196663, 0.031938083469867706, 0.0059600332751870155, 0.0061975750140845776, 0.008991120383143425, 0.02929062582552433, 0.015440970659255981, 0.02946828305721283, 0.09253872185945511, 0.2887619435787201], [0.1299571841955185, 0.01428306382149458, 0.012106514535844326, 0.007367556914687157, 0.011742956936359406, 0.01589917205274105, 0.0638025626540184, 0.0506703145802021, 0.026348913088440895, 0.014357144013047218, 0.3640223443508148, 0.00391432736068964, 0.04661005735397339, 0.0029050069861114025, 0.013318438082933426, 0.009353396482765675, 0.16273869574069977, 0.05060227960348129], [0.10853829979896545, 0.022909652441740036, 0.009754595346748829, 0.03021569736301899, 0.003897478338330984, 0.03189052268862724, 0.06206204742193222, 0.17089979350566864, 0.11071822047233582, 0.05382443591952324, 0.046890344470739365, 0.04104453697800636, 0.052649401128292084, 0.0008259390597231686, 0.007976992055773735, 0.0014255223795771599, 0.07383552193641663, 0.17064104974269867], [0.07293227314949036, 0.015202508307993412, 0.0556306429207325, 0.03797628730535507, 0.0568845197558403, 0.002504420932382345, 0.034256741404533386, 0.17782019078731537, 0.023145558312535286, 0.04751567915081978, 0.047926392406225204, 0.06446604430675507, 0.033436309546232224, 0.0310370996594429, 0.028790103271603584, 0.027176976203918457, 0.06580058485269547, 0.17749756574630737], [0.25251707434654236, 0.025523319840431213, 0.024737577885389328, 0.011961512267589569, 0.020844941958785057, 0.019119223579764366, 0.10039878636598587, 0.12869593501091003, 0.06401525437831879, 0.028210103511810303, 0.016731707379221916, 0.03310725837945938, 0.004761492367833853, 0.00044988628360442817, 0.002113306662067771, 0.00048010298633016646, 0.13780049979686737, 0.12853196263313293], [0.0040365285240113735, 0.001644961885176599, 0.011094813235104084, 0.0017161014256998897, 0.0011876916978508234, 0.0025092230644077063, 0.004036847967654467, 0.4760563373565674, 0.003982375841587782, 0.0028088099788874388, 0.002017577411606908, 0.0028325654566287994, 0.0009720368543639779, 0.0022412266116589308, 0.0013358078431338072, 0.0014394813915714622, 0.005734093952924013, 0.47435349225997925], [0.08207438141107559, 0.06348273903131485, 0.010624637827277184, 0.10427745431661606, 0.062317315489053726, 0.043228067457675934, 0.1370605230331421, 0.17347107827663422, 0.005753165110945702, 0.005970626603811979, 0.018564211204648018, 0.021960755810141563, 0.005412404891103506, 0.003407047362998128, 0.004443775862455368, 0.0035975368227809668, 0.08129305392503738, 0.1730612814426422], [0.0641620010137558, 0.10870026797056198, 0.11324746161699295, 0.04215479642152786, 0.03999941423535347, 0.0506444089114666, 0.08833688497543335, 0.13866211473941803, 0.030778737738728523, 0.030087878927588463, 0.004413197282701731, 0.0054748267866671085, 0.02396128512918949, 0.008542345836758614, 0.038560088723897934, 0.0052892412059009075, 0.06856083124876022, 0.1384240984916687], [0.0689290463924408, 0.01901511289179325, 0.015240401029586792, 0.5261639356613159, 0.03831062838435173, 0.037125471979379654, 0.06929606199264526, 0.06961280107498169, 0.006727441214025021, 0.0048691825941205025, 0.0006996676092967391, 0.0032434077002108097, 0.004922997206449509, 0.0020354955922812223, 0.010939443483948708, 0.0043568117544054985, 0.049026474356651306, 0.069485604763031], [0.15737199783325195, 0.018242565914988518, 0.02009078860282898, 0.03252120316028595, 0.050803255289793015, 0.02703992836177349, 0.10573256015777588, 0.1744561493396759, 0.015299107879400253, 0.013381531462073326, 0.023346075788140297, 0.001703984453342855, 0.03649614751338959, 0.0026370957493782043, 0.009457103908061981, 0.005074932239949703, 0.1321844607591629, 0.17416109144687653], [0.03928672522306442, 0.014188544824719429, 0.024722184985876083, 0.08560159057378769, 0.029580652713775635, 0.07070209085941315, 0.045435503125190735, 0.25605037808418274, 0.026690611615777016, 0.006712325848639011, 0.00999282207340002, 0.009331176057457924, 0.002077109646052122, 0.009760494343936443, 0.0264589823782444, 0.022159915417432785, 0.06581781059503555, 0.25543099641799927], [0.025913238525390625, 0.008334618993103504, 0.07405028492212296, 0.004716706462204456, 0.0007081185467541218, 0.07147478312253952, 0.016568074002861977, 0.3555847108364105, 0.014784793369472027, 0.0053877984173595905, 0.004488660953938961, 0.007198264356702566, 0.016505587846040726, 0.0043135941959917545, 0.013804879039525986, 0.003192536300048232, 0.018351880833506584, 0.3546214997768402], [0.05609684810042381, 0.028787540271878242, 0.0657448098063469, 0.015621067024767399, 0.002135538263246417, 0.05590019002556801, 0.025199810042977333, 0.2536788582801819, 0.02443721331655979, 0.08593947440385818, 0.019952695816755295, 0.015718115493655205, 0.04078742489218712, 0.004590537399053574, 0.004183133132755756, 0.006886712275445461, 0.04126155748963356, 0.253078430891037], [0.045720793306827545, 0.009310035035014153, 0.0692824125289917, 0.0069668833166360855, 0.0005668723024427891, 0.03729478269815445, 0.0160320196300745, 0.3532688617706299, 0.029626915231347084, 0.010792290791869164, 0.005473826080560684, 0.007705858908593655, 0.023050354793667793, 0.002307979157194495, 0.006283333525061607, 0.001182269654236734, 0.022737938910722733, 0.3523966073989868], [0.20974703133106232, 0.013524588197469711, 0.020626211538910866, 0.011559596285223961, 0.012173586525022984, 0.014711779542267323, 0.08431898057460785, 0.2230524718761444, 0.04132255166769028, 0.012657992541790009, 0.00985614862293005, 0.021917618811130524, 0.004089022986590862, 0.0006657966296188533, 0.002074006712064147, 0.0005290719564072788, 0.09452180564403534, 0.22265169024467468], [0.004038936458528042, 0.0016445954097434878, 0.01109329890459776, 0.0017164956079795957, 0.001188345835544169, 0.0025088193360716105, 0.004038874991238117, 0.4760555922985077, 0.003982725087553263, 0.00280861952342093, 0.0020174155943095684, 0.002832204569131136, 0.0009715131600387394, 0.0022398962173610926, 0.0013357090065255761, 0.0014385719550773501, 0.005735708866268396, 0.47435274720191956]], [[0.005342738702893257, 0.0008327391115017235, 0.0018323834519833326, 0.0014597921399399638, 0.00034648424480110407, 0.0010376195423305035, 0.0006421722355298698, 0.35099005699157715, 0.004922098014503717, 0.17370222508907318, 0.004308400209993124, 0.003177179954946041, 0.01694466546177864, 0.01143562886863947, 0.020423706620931625, 0.022901447489857674, 0.0298934206366539, 0.3498072624206543], [0.0028326029423624277, 0.028331927955150604, 0.10543349385261536, 0.02885887213051319, 0.019304130226373672, 0.09553549438714981, 0.006470999680459499, 0.34420135617256165, 0.0011639773147180676, 0.0183520819991827, 0.0007175643113441765, 0.0007051390712149441, 0.0006662390660494566, 0.00021972066315356642, 0.001089753000997007, 0.0008563772425986826, 0.002099091187119484, 0.3431612253189087], [0.0010641493136063218, 0.003867071820423007, 0.042643457651138306, 0.012881748378276825, 0.0067345816642045975, 0.03817727789282799, 0.0011501590488478541, 0.44485411047935486, 0.0009681519004516304, 0.0012985313078388572, 0.00047044220264069736, 0.00024389538157265633, 0.00025121925864368677, 0.0004897757899016142, 0.0004816638247575611, 0.0005973625229671597, 0.00028804625617340207, 0.4435383677482605], [0.006218090187758207, 0.04683905467391014, 0.043608587235212326, 0.03141339123249054, 0.019138284027576447, 0.08687731623649597, 0.02376135252416134, 0.35594287514686584, 0.004297773353755474, 0.013607258908450603, 0.0010189791209995747, 0.0005603883182629943, 0.0015241217333823442, 0.0005230277311056852, 0.0016300431452691555, 0.0016660741530358791, 0.006535147782415152, 0.3548383116722107], [0.0018188904505223036, 0.020754484459757805, 0.030051834881305695, 0.03454875946044922, 0.01805795542895794, 0.12443803250789642, 0.007529524154961109, 0.3783200681209564, 0.0014087717281654477, 0.0030653993599116802, 0.0003032598760910332, 0.00017718934395816177, 0.0003456522535998374, 0.00018733103934209794, 0.00027827933081425726, 0.0005603159079328179, 0.0011642429744824767, 0.3769899904727936], [0.0015911106020212173, 0.012635596096515656, 0.023168524727225304, 0.03313648700714111, 0.017086632549762726, 0.03993156924843788, 0.002577519277110696, 0.43385010957717896, 0.0006732209003530443, 0.0009303135448135436, 0.0003697180363815278, 0.00017588162154424936, 0.0004648033354897052, 0.0003750774485524744, 0.00020504182612057775, 0.00018459907732903957, 0.00028972988366149366, 0.4323540925979614], [0.0048108212649822235, 0.03527335822582245, 0.013639784418046474, 0.02313554659485817, 0.023971950635313988, 0.04059118032455444, 0.016002042219042778, 0.4146815538406372, 0.002555028535425663, 0.003346323035657406, 0.0010075914906337857, 0.0007240216946229339, 0.001250875648111105, 0.00035730074159801006, 0.003018635092303157, 0.00017074459174182266, 0.0021749879233539104, 0.41328829526901245], [0.006026057060807943, 0.003859426360577345, 0.0030079984571784735, 0.002106456086039543, 0.001308905309997499, 0.0016901727067306638, 0.003772065741941333, 0.4830738306045532, 0.0019198991358280182, 0.0031192831229418516, 0.0009711642051115632, 0.0008612941019237041, 0.0007349099032580853, 0.0009224752429872751, 0.000768362486269325, 0.0002878007653634995, 0.004347856622189283, 0.4812219440937042], [0.003134517464786768, 0.0008782708900980651, 0.0008973946678452194, 0.0019245740259066224, 0.00208502309396863, 0.0039850082248449326, 0.0005990003701299429, 0.45363178849220276, 0.00934865977615118, 0.024801703169941902, 0.006452712696045637, 0.006405132822692394, 0.016003701835870743, 0.0014642454916611314, 0.005323823541402817, 0.0035501618403941393, 0.0074846819043159485, 0.45202961564064026], [0.0064382292330265045, 0.003342734184116125, 0.07510248571634293, 0.0018068444915115833, 0.000455703295301646, 0.003407792653888464, 0.0005699527100659907, 0.2738252878189087, 0.005071330349892378, 0.26748454570770264, 0.018403032794594765, 0.008001279085874557, 0.007455812767148018, 0.006209763698279858, 0.010195833630859852, 0.02924160100519657, 0.010016021318733692, 0.2729717791080475], [0.0058145904913544655, 0.00127401202917099, 0.002513802144676447, 0.0015933908289298415, 0.0004470737767405808, 0.0016577208880335093, 0.0001425123045919463, 0.23309558629989624, 0.00421247910708189, 0.04484329745173454, 0.030700497329235077, 0.018515290692448616, 0.2527672052383423, 0.008820702321827412, 0.08146935701370239, 0.07653206586837769, 0.003177572740241885, 0.2324228733778], [0.003437079256400466, 0.000490710895974189, 0.001387723837979138, 0.0009962092153728008, 0.0006339536048471928, 0.0013982804957777262, 0.00012918193533550948, 0.31428343057632446, 0.004292083904147148, 0.015419801697134972, 0.033139102160930634, 0.01881001517176628, 0.08976631611585617, 0.01025454606860876, 0.13403473794460297, 0.05499676987528801, 0.003244290128350258, 0.3132857382297516], [0.0029332321137189865, 0.000190581486094743, 0.00010476255556568503, 0.00021373578056227416, 6.21478829998523e-05, 0.0006858205306343734, 3.7251247704261914e-05, 0.175265833735466, 0.0009819148108363152, 0.0017120784614235163, 0.005972342565655708, 0.003658887231722474, 0.009103458374738693, 0.05354408547282219, 0.49699872732162476, 0.07299672812223434, 0.0008905564318411052, 0.1746477484703064], [0.0014424169203266501, 0.00010296506661688909, 0.005638367962092161, 0.0003063226176891476, 6.613902951357886e-05, 0.0016708457842469215, 3.783807551371865e-05, 0.4513896405696869, 0.00055875931866467, 0.0022046437952667475, 0.0020293868146836758, 0.0015407283790409565, 0.0047771502286195755, 0.033551499247550964, 0.01100802794098854, 0.03318266198039055, 0.0009793577482923865, 0.44951319694519043], [0.0029605606105178595, 0.0003008602652698755, 0.0007003972423262894, 0.0002496571687515825, 0.00018017354886978865, 0.001057496527209878, 5.305671948008239e-05, 0.25440719723701477, 0.0005639658775180578, 0.008244034834206104, 0.008044741116464138, 0.007622423116117716, 0.03019876964390278, 0.04992205277085304, 0.08673994243144989, 0.29307806491851807, 0.002253306098282337, 0.2534233331680298], [0.0048241023905575275, 0.0005655200220644474, 0.009161769412457943, 0.000510299694724381, 4.605759386322461e-05, 0.0013884685467928648, 0.00010143523832084611, 0.30232328176498413, 0.002620236249640584, 0.0033084817696362734, 0.003746350761502981, 0.0029312600381672382, 0.018763937056064606, 0.3264048397541046, 0.009301764890551567, 0.011711958795785904, 0.001102664740756154, 0.30118757486343384], [0.0035831304267048836, 0.0012364062713459134, 0.0010387806687504053, 0.00095287652220577, 0.0007755320984870195, 0.0010151499882340431, 0.0005666162469424307, 0.4798605740070343, 0.004832458682358265, 0.0055599091574549675, 0.0027786768041551113, 0.0022757709957659245, 0.0030314065515995026, 0.001710474956780672, 0.0067117707803845406, 0.0006101815379224718, 0.005643466953188181, 0.4778168201446533], [0.006022482644766569, 0.0038569977041333914, 0.0030056952964514494, 0.0021048574708402157, 0.0013084347592666745, 0.0016885066870599985, 0.003773454111069441, 0.4830857515335083, 0.0019184319535270333, 0.003115138504654169, 0.0009701749659143388, 0.0008604495669715106, 0.0007337420829571784, 0.0009208354167640209, 0.0007669619517400861, 0.0002873220364563167, 0.004347118083387613, 0.4812335968017578]], [[0.002842508489266038, 0.0003871527733281255, 0.00030783272814005613, 0.00540468655526638, 0.00042273913277313113, 0.0017834445461630821, 0.00032196109532378614, 0.45496055483818054, 0.0438765287399292, 0.006740847136825323, 0.012211283668875694, 0.003066675504669547, 0.0042096031829714775, 0.0006524968193843961, 0.0005191072123125196, 0.0011000047670677304, 0.007816938683390617, 0.45337551832199097], [0.0016422347398474813, 0.013052892871201038, 0.012060738168656826, 0.17514581978321075, 0.0789961889386177, 0.08156123757362366, 0.012275122106075287, 0.3054814338684082, 0.006163210608065128, 0.0014602738665416837, 0.0025892897974699736, 0.0010476327734068036, 0.0007085021934472024, 0.0002503802243154496, 0.0008976226090453565, 0.0007847992819733918, 0.0011939003597944975, 0.3046887516975403], [0.01239930372685194, 0.054147541522979736, 0.013065020553767681, 0.032268982380628586, 0.027186313644051552, 0.023890387266874313, 0.027656668797135353, 0.38797229528427124, 0.0014926263829693198, 0.00904793106019497, 0.004025990609079599, 0.002362632192671299, 0.0019890896510332823, 0.0009167797397822142, 0.006501912139356136, 0.002525397576391697, 0.005472976714372635, 0.3870781362056732], [0.0022046086378395557, 0.036312174052000046, 0.013918840326368809, 0.02807186357676983, 0.07292350381612778, 0.04182276502251625, 0.009926175698637962, 0.39403384923934937, 0.0022340980358421803, 0.0014389267889782786, 0.0005362796364352107, 0.0009234851459041238, 0.00019060037448070943, 0.00024147293879650533, 0.0001721180451568216, 0.00038132708868943155, 0.001779224956408143, 0.3928886353969574], [0.0019822302274405956, 0.028688950464129448, 0.008171462453901768, 0.0972062349319458, 0.0488918162882328, 0.011080804280936718, 0.006391496397554874, 0.39575159549713135, 0.0015469436766579747, 0.0009448966011404991, 0.0015457196859642863, 0.0008556463290005922, 0.00024968560319393873, 9.019826393341646e-05, 8.705898653715849e-05, 0.00027501481235958636, 0.0016832549590617418, 0.39455699920654297], [0.001694440608844161, 0.05265922471880913, 0.02099491097033024, 0.08774179965257645, 0.0419779010117054, 0.012338031083345413, 0.0087070157751441, 0.3827889561653137, 0.0023553946521133184, 0.001494178781285882, 0.0014595481334254146, 0.0007596117211505771, 0.00022925449593458325, 0.00041515417979098856, 0.00035645178286358714, 0.00026377508766017854, 0.001914451364427805, 0.38184991478919983], [0.0009890012443065643, 0.008465934544801712, 0.0070349895395338535, 0.06529724597930908, 0.012180539779365063, 0.011635905131697655, 0.0039000450633466244, 0.4439033269882202, 0.0004345540073700249, 0.0008386578410863876, 0.0009330385946668684, 0.00042945524910464883, 0.00014938692038413137, 0.00012353139754850417, 0.00012097202125005424, 0.00019166400306858122, 0.0009274513577111065, 0.4424443542957306], [0.041569266468286514, 0.013485359027981758, 0.012813558802008629, 0.007852211594581604, 0.003250470384955406, 0.0024741131346672773, 0.045719314366579056, 0.3923056423664093, 0.0015940556768327951, 0.009152294136583805, 0.00275246798992157, 0.001801670528948307, 0.004597566090524197, 0.0025006167124956846, 0.0019903057254850864, 0.00289619411341846, 0.0617988258600235, 0.3914460837841034], [0.005349173676222563, 0.002176536712795496, 0.0012248916318640113, 0.016679195687174797, 0.002657540375366807, 0.004845778923481703, 0.0014487180160358548, 0.4596449136734009, 0.011263390071690083, 0.008792025037109852, 0.009874576702713966, 0.00453320425003767, 0.0035735222045332193, 0.0011500889668241143, 0.0006919506704434752, 0.0009791188640519977, 0.006935891229659319, 0.45817941427230835], [0.014693407341837883, 0.001597164198756218, 0.001288830884732306, 0.037301596254110336, 0.01445693802088499, 0.00734800286591053, 0.003803253173828125, 0.3355780243873596, 0.07830691337585449, 0.01503521017730236, 0.10554087907075882, 0.028560658916831017, 0.0028389955405145884, 0.0018418414983898401, 0.0029630023054778576, 0.0028074162546545267, 0.011369839310646057, 0.33466798067092896], [0.00461615389212966, 0.0017365306848660111, 0.000815345614682883, 0.009847737848758698, 0.0014813357265666127, 0.0019426848739385605, 0.00437456090003252, 0.38693955540657043, 0.07295238226652145, 0.008079354651272297, 0.04986429214477539, 0.03474828228354454, 0.013486622832715511, 0.003134452272206545, 0.0012556870933622122, 0.0032513327896595, 0.015633942559361458, 0.3858397901058197], [0.004313070792704821, 0.0011175806866958737, 0.0005794645985588431, 0.0061029102653265, 0.0004998352378606796, 0.0019018205348402262, 0.0063989004120230675, 0.4050646722316742, 0.022344764322042465, 0.006778544746339321, 0.08747932314872742, 0.01613812893629074, 0.009672625921666622, 0.002920332830399275, 0.0010425643995404243, 0.0034910417161881924, 0.020273223519325256, 0.4038812518119812], [0.01100065279752016, 0.0005292267305776477, 0.0002615625853650272, 0.001751475501805544, 0.0002665387582965195, 0.0009145631338469684, 0.0033527652267366648, 0.3227202296257019, 0.0066073122434318066, 0.019017795100808144, 0.18662896752357483, 0.05702756345272064, 0.036670442670583725, 0.0035130109172314405, 0.0024515450932085514, 0.008129727095365524, 0.017351461574435234, 0.3218051493167877], [0.006072263233363628, 0.0008781563374213874, 0.0009844353189691901, 0.0013316258555278182, 0.00020500570826698095, 0.0014590772334486246, 0.001918976427987218, 0.3170277178287506, 0.003044040407985449, 0.007644332014024258, 0.13054578006267548, 0.03854767605662346, 0.036933235824108124, 0.03441934287548065, 0.02175106294453144, 0.06508928537368774, 0.016098352149128914, 0.31604963541030884], [0.0033998042345046997, 0.0002743174263741821, 0.0003045121266040951, 0.000417733215726912, 0.0001289980864385143, 0.0007063528173603117, 0.0005669575184583664, 0.18107225000858307, 0.0022219959646463394, 0.004255662206560373, 0.108763188123703, 0.07983893156051636, 0.3278147578239441, 0.05800849571824074, 0.010831834748387337, 0.03604169189929962, 0.0049820258282125, 0.18037043511867523], [0.003059870097786188, 0.0006750889006070793, 0.0007660695118829608, 0.0013329912908375263, 7.621166878379881e-05, 0.0006868542404845357, 0.0011596271069720387, 0.338310182094574, 0.003964389208704233, 0.010165702551603317, 0.0955643355846405, 0.02567995712161064, 0.028520602732896805, 0.10870577394962311, 0.01205600704997778, 0.022622380405664444, 0.00936112180352211, 0.3372928202152252], [0.0012177533935755491, 0.0005266949301585555, 0.001248212531208992, 0.00286910985596478, 0.000501281232573092, 0.0004677773977164179, 0.0005299672484397888, 0.4880906939506531, 0.000855723163112998, 0.002963053295388818, 0.0028677203226834536, 0.0016119416104629636, 0.001027510385029018, 0.0011867884313687682, 0.0010374820558354259, 0.0014271446270868182, 0.005194127559661865, 0.4863770306110382], [0.0415513701736927, 0.013486068695783615, 0.012812448665499687, 0.007852323353290558, 0.0032505581621080637, 0.0024736407212913036, 0.045730531215667725, 0.3923321068286896, 0.0015924293547868729, 0.009144180454313755, 0.002749734790995717, 0.0018000109121203423, 0.0045959013514220715, 0.0024994693230837584, 0.0019889886025339365, 0.0028950569685548544, 0.06177273392677307, 0.3914724886417389]], [[0.038364097476005554, 0.02105657383799553, 0.06236020103096962, 0.13914130628108978, 0.18732789158821106, 0.05078530311584473, 0.03737104684114456, 0.02744271047413349, 0.04166463017463684, 0.04670598357915878, 0.03585002198815346, 0.1106080412864685, 0.03899262472987175, 0.021112915128469467, 0.019842226058244705, 0.017035484313964844, 0.07691506296396255, 0.02742389775812626], [0.0935581773519516, 0.012045607902109623, 0.0786166712641716, 0.03265126049518585, 0.033748023211956024, 0.035035014152526855, 0.0942964255809784, 0.1957671195268631, 0.030948899686336517, 0.010034963488578796, 0.015083333477377892, 0.006623496301472187, 0.022696100175380707, 0.031967293471097946, 0.017387470230460167, 0.020989539101719856, 0.07297488301992416, 0.19557568430900574], [0.05030015856027603, 0.030726823955774307, 0.01813807338476181, 0.025964198634028435, 0.021160094067454338, 0.07496895641088486, 0.06030682474374771, 0.2645462155342102, 0.010897800326347351, 0.010438445024192333, 0.026369484141469002, 0.009372142143547535, 0.005771236028522253, 0.043920572847127914, 0.019766973331570625, 0.017604706808924675, 0.045521412044763565, 0.26422590017318726], [0.10687870532274246, 0.024347318336367607, 0.17167021334171295, 0.01649528555572033, 0.013915551826357841, 0.01186109147965908, 0.07330133765935898, 0.09227310866117477, 0.021123006939888, 0.1508999913930893, 0.038744352757930756, 0.0338447205722332, 0.027400042861700058, 0.021953586488962173, 0.008721612393856049, 0.02121797949075699, 0.07315724343061447, 0.09219487756490707], [0.1694689244031906, 0.047488149255514145, 0.12041694670915604, 0.03018302656710148, 0.0020658194553107023, 0.012760958634316921, 0.09405370056629181, 0.15798626840114594, 0.06290162354707718, 0.035711225122213364, 0.00579481665045023, 0.007700122892856598, 0.007132720667868853, 0.007458357606083155, 0.005292635876685381, 0.006097280420362949, 0.06969097256660461, 0.15779638290405273], [0.0762961357831955, 0.02817871980369091, 0.060499418526887894, 0.055355504155159, 0.05941377207636833, 0.009491919539868832, 0.05643150582909584, 0.21811915934085846, 0.008893512189388275, 0.01880587637424469, 0.014822122640907764, 0.01751752197742462, 0.02211296372115612, 0.04739682003855705, 0.019052211195230484, 0.03164531663060188, 0.03800871968269348, 0.21795876324176788], [0.06162238121032715, 0.04216615855693817, 0.1718829870223999, 0.07736942917108536, 0.0832357332110405, 0.018288731575012207, 0.047932613641023636, 0.0884319394826889, 0.032978806644678116, 0.056822702288627625, 0.02589183859527111, 0.06422702223062515, 0.03607393056154251, 0.007253945339471102, 0.008028795942664146, 0.011000731028616428, 0.07845429331064224, 0.08833811432123184], [0.08246062695980072, 0.12615595757961273, 0.07161033153533936, 0.05607972666621208, 0.023169638589024544, 0.028344761580228806, 0.05291827768087387, 0.05891838297247887, 0.09772708266973495, 0.10019413381814957, 0.06260319799184799, 0.03056594356894493, 0.042576856911182404, 0.02183537743985653, 0.020322933793067932, 0.010711271315813065, 0.05496832728385925, 0.058837153017520905], [0.14174774289131165, 0.025840291753411293, 0.03406619280576706, 0.0726933628320694, 0.07498478144407272, 0.013267286121845245, 0.02099902741611004, 0.1385275274515152, 0.008797104470431805, 0.06336234509944916, 0.02547760121524334, 0.10361161082983017, 0.019129019230604172, 0.025883255526423454, 0.015227183699607849, 0.02413266710937023, 0.053938865661621094, 0.1383141130208969], [0.3109875023365021, 0.0116390036419034, 0.03976275399327278, 0.02204963192343712, 0.027463223785161972, 0.040019161999225616, 0.0666126012802124, 0.1194990873336792, 0.026467427611351013, 0.003220060607418418, 0.018416352570056915, 0.003954046871513128, 0.025666816160082817, 0.02930239588022232, 0.054204680025577545, 0.019481973722577095, 0.06193210929632187, 0.11932114511728287], [0.24860066175460815, 0.0036703383084386587, 0.03026353381574154, 0.2950461506843567, 0.04788254201412201, 0.01657235249876976, 0.035273484885692596, 0.1036103367805481, 0.014351794496178627, 0.0039404029957950115, 0.00859462097287178, 0.012440459802746773, 0.00782778300344944, 0.0076140291057527065, 0.012855391949415207, 0.010068521834909916, 0.037969496101140976, 0.10341812670230865], [0.5035139918327332, 0.000724322977475822, 0.01775011420249939, 0.020144538953900337, 0.021684696897864342, 0.00448654918000102, 0.09177280217409134, 0.057670027017593384, 0.04533408209681511, 0.0018150252290070057, 0.013632982969284058, 0.0018165924120694399, 0.009023411199450493, 0.009391700848937035, 0.015187986195087433, 0.020319703966379166, 0.10813608020544052, 0.05759541317820549], [0.14527001976966858, 0.007272873539477587, 0.024769598618149757, 0.07092174887657166, 0.12326041609048843, 0.046444181352853775, 0.02160988561809063, 0.13420581817626953, 0.04578482732176781, 0.002439751522615552, 0.02884085848927498, 0.03501959890127182, 0.008977026678621769, 0.03482341766357422, 0.06313053518533707, 0.028321633115410805, 0.044941481202840805, 0.1339663863182068], [0.12251147627830505, 0.011607415974140167, 0.29927921295166016, 0.012461618520319462, 0.00648482283577323, 0.012044842354953289, 0.0609254315495491, 0.15127260982990265, 0.007542783860117197, 0.013875164091587067, 0.015420489013195038, 0.016142526641488075, 0.008663593791425228, 0.008088011294603348, 0.026900537312030792, 0.0033186650834977627, 0.07248067855834961, 0.15098007023334503], [0.12533120810985565, 0.030376523733139038, 0.04278109595179558, 0.04024532437324524, 0.022133581340312958, 0.034883443266153336, 0.01751905120909214, 0.20573998987674713, 0.02412610687315464, 0.03516119346022606, 0.023382386192679405, 0.06528734415769577, 0.024786069989204407, 0.02361903339624405, 0.01312747411429882, 0.03085874579846859, 0.03520287200808525, 0.2054385095834732], [0.1837671846151352, 0.02891257219016552, 0.06765293329954147, 0.02736399881541729, 0.008937989361584187, 0.016478298231959343, 0.028178969398140907, 0.24070459604263306, 0.007814481854438782, 0.013602955266833305, 0.019526109099388123, 0.014397207647562027, 0.012171718291938305, 0.007353032007813454, 0.03624802082777023, 0.006033566780388355, 0.04068706929683685, 0.24016930162906647], [0.17391909658908844, 0.025566119700670242, 0.06256259232759476, 0.07983090728521347, 0.03271893784403801, 0.009200185537338257, 0.04399177059531212, 0.09679270535707474, 0.06346341967582703, 0.05204279348254204, 0.029659446328878403, 0.06147534400224686, 0.04630379378795624, 0.00561262434348464, 0.006869800854474306, 0.005631415639072657, 0.10772894322872162, 0.09663014113903046], [0.08242890983819962, 0.12618646025657654, 0.07163672149181366, 0.05607518553733826, 0.023160945624113083, 0.02833411656320095, 0.052935585379600525, 0.05898590385913849, 0.09769926220178604, 0.10017500817775726, 0.06257142871618271, 0.030557828024029732, 0.042549289762973785, 0.021813225001096725, 0.020310912281274796, 0.010697301477193832, 0.054977431893348694, 0.05890457332134247]], [[0.014232073910534382, 0.0030244069639593363, 0.0012028607307001948, 0.0015118595911189914, 0.0013457585591822863, 0.00120535958558321, 0.0006394743104465306, 0.09606895595788956, 0.5862753987312317, 0.08486901223659515, 0.023375676944851875, 0.007649652659893036, 0.026008406654000282, 0.017094431445002556, 0.013839018531143665, 0.012525464408099651, 0.013345681130886078, 0.095786452293396], [0.0027835024520754814, 0.04475957900285721, 0.056275274604558945, 0.011399772949516773, 0.008505243808031082, 0.019575422629714012, 0.010077842511236668, 0.4193718433380127, 0.0030976994894444942, 0.0032342246267944574, 0.00032302417093887925, 0.00019161241652909666, 0.00010750670480774716, 0.0001753830147208646, 0.0002450415340717882, 0.0001369220408378169, 0.0015738364309072495, 0.4181661307811737], [0.005553338211029768, 0.025470223277807236, 0.030326660722494125, 0.006135739851742983, 0.0049618082121014595, 0.002709073480218649, 0.004595947451889515, 0.4583224058151245, 0.0017303009517490864, 0.0016364570474252105, 6.58958379062824e-05, 1.1774834092648234e-05, 7.833456038497388e-05, 5.766913454863243e-05, 0.0001956750056706369, 0.00013193723862059414, 0.0011452350299805403, 0.4568715989589691], [0.006314502563327551, 0.1291472166776657, 0.07115254551172256, 0.014485836029052734, 0.008953781798481941, 0.012810316868126392, 0.007977142930030823, 0.36959177255630493, 0.0016955073224380612, 0.0038162656128406525, 0.0006927347858436406, 0.0006165193044580519, 0.00015340583922807127, 0.00024652082356624305, 0.00030115744448266923, 0.00012073272955603898, 0.0034883355256170034, 0.36843588948249817], [0.009548366069793701, 0.14803540706634521, 0.07972562313079834, 0.020936645567417145, 0.008153294213116169, 0.038739584386348724, 0.011814877390861511, 0.3368188440799713, 0.0010969714494422078, 0.0037277520168572664, 0.0010459724580869079, 0.001013226923532784, 0.00011003567487932742, 0.00037009865627624094, 0.00013181318354327232, 8.616485865786672e-05, 0.002781979739665985, 0.335863322019577], [0.006333753000944853, 0.14694055914878845, 0.07304700464010239, 0.03476782888174057, 0.014289761893451214, 0.050288569182157516, 0.011297537945210934, 0.3286292552947998, 0.001558872521854937, 0.0013079604832455516, 0.00035987907904200256, 0.00016147445421665907, 0.0003126984811387956, 0.0002174892433686182, 0.0003276298812124878, 0.00036087213084101677, 0.0019905443768948317, 0.3278083801269531], [0.016908710822463036, 0.1651051789522171, 0.030959125608205795, 0.17479921877384186, 0.20607633888721466, 0.13923019170761108, 0.019471680745482445, 0.10156650841236115, 0.03176029026508331, 0.0031034727580845356, 0.0016741763101890683, 0.0010821280302479863, 0.0008928761235438287, 0.0008811047882772982, 0.001699042972177267, 0.000377645599655807, 0.003077973611652851, 0.10133425891399384], [0.004997182637453079, 0.0058428137563169, 0.003958540502935648, 0.0026310584507882595, 0.0011828989954665303, 0.0026704114861786366, 0.0027434146031737328, 0.48156556487083435, 0.002009354066103697, 0.0024977955035865307, 0.0007810894167050719, 0.0005675291758961976, 0.0007257507531903684, 0.0012396059464663267, 0.0010499291820451617, 0.0008529259939678013, 0.004692518152296543, 0.47999152541160583], [0.04353301599621773, 0.002059685066342354, 0.002411301014944911, 0.0019134529866278172, 0.0013282869476824999, 0.023253509774804115, 0.0013353315880522132, 0.4146895110607147, 0.02240440435707569, 0.010982677340507507, 0.018572432920336723, 0.013521098531782627, 0.007099444977939129, 0.005047848913818598, 0.005049724131822586, 0.00448586605489254, 0.008989660069346428, 0.4133228063583374], [0.16282154619693756, 0.021626736968755722, 0.16986802220344543, 0.013565069064497948, 0.0006209695711731911, 0.0029221095610409975, 0.004791930317878723, 0.24738726019859314, 0.03356879949569702, 0.04477206617593765, 0.01683461107313633, 0.001739483093842864, 0.0020583944860845804, 0.004415503237396479, 0.001230555004440248, 0.0011510655749589205, 0.023915650323033333, 0.24671025574207306], [0.07679063081741333, 0.01646515727043152, 0.027703434228897095, 0.00989726185798645, 0.000755836779717356, 0.00926950667053461, 0.005420221947133541, 0.30644458532333374, 0.012805638834834099, 0.10343103855848312, 0.07441642880439758, 0.012347649782896042, 0.01016076561063528, 0.006299667526036501, 0.005516286473721266, 0.004939740523695946, 0.011692526750266552, 0.3056437075138092], [0.0586792528629303, 0.00797545537352562, 0.007728953845798969, 0.005622033961117268, 0.0011551378993317485, 0.006194650195538998, 0.003537925658747554, 0.38363924622535706, 0.020191174000501633, 0.03510259464383125, 0.04339791461825371, 0.007419108878821135, 0.006643056869506836, 0.006667823530733585, 0.004787210840731859, 0.004991143476217985, 0.013684420846402645, 0.38258299231529236], [0.046703822910785675, 0.0037728692404925823, 0.029347781091928482, 0.0014739494072273374, 0.0001134310441557318, 0.0006832193466834724, 0.0018465510802343488, 0.355971097946167, 0.013757584616541862, 0.13027259707450867, 0.012087692506611347, 0.002053384203463793, 0.011206069029867649, 0.014870770275592804, 0.003348955186083913, 0.005572462920099497, 0.012055238708853722, 0.3548625707626343], [0.02635027840733528, 0.001787533052265644, 0.007751272525638342, 0.0006717712385579944, 0.00010217803355772048, 0.000518410000950098, 0.0015451121143996716, 0.4418589770793915, 0.006871701683849096, 0.019563540816307068, 0.0013468221295624971, 0.0003444541653152555, 0.007991666905581951, 0.01222061738371849, 0.004348756279796362, 0.01814224384725094, 0.008175595663487911, 0.4404090642929077], [0.07476043701171875, 0.004609743598848581, 0.006368848495185375, 0.0010310098296031356, 7.992028986336663e-05, 0.0009822327410802245, 0.004141811281442642, 0.3028593361377716, 0.014321916736662388, 0.07584994286298752, 0.013155653141438961, 0.0051845768466591835, 0.06484092026948929, 0.06855839490890503, 0.01025230810046196, 0.038169339299201965, 0.012892079539597034, 0.30194151401519775], [0.048716362565755844, 0.0031780218705534935, 0.020492836833000183, 0.0008240041206590831, 0.0001798736775526777, 0.0007326488848775625, 0.0032747043296694756, 0.3875483572483063, 0.013022465631365776, 0.08738748729228973, 0.001768380985595286, 0.0007670859340578318, 0.004437396302819252, 0.014170654118061066, 0.002639202866703272, 0.008102373220026493, 0.016446325927972794, 0.3863118290901184], [0.04212776944041252, 0.006840460933744907, 0.0016250385669991374, 0.007115326821804047, 0.00463134003803134, 0.0016010993858799338, 0.0018281318480148911, 0.17217601835727692, 0.38074299693107605, 0.06325235962867737, 0.04291986674070358, 0.023576032370328903, 0.020929545164108276, 0.0124350069090724, 0.022268671542406082, 0.0040178014896810055, 0.02024780958890915, 0.17166481912136078], [0.004996979143470526, 0.00584239698946476, 0.003957288805395365, 0.0026310866232961416, 0.0011829122668132186, 0.002669955138117075, 0.0027432322967797518, 0.48157167434692383, 0.0020085577853024006, 0.0024956318084150553, 0.000780526315793395, 0.0005671198014169931, 0.0007251932984218001, 0.0012391677591949701, 0.0010493288282305002, 0.0008520323317497969, 0.004689530935138464, 0.4799973666667938]], [[0.005711628124117851, 0.001133992220275104, 0.0012095634592697024, 0.0023093465715646744, 0.005231793969869614, 0.002917215693742037, 0.002611172618344426, 0.0844331681728363, 0.3299865126609802, 0.14072147011756897, 0.051547031849622726, 0.024086570367217064, 0.04533419758081436, 0.027395807206630707, 0.07093091309070587, 0.029413113370537758, 0.09071493148803711, 0.08431152999401093], [0.09804148972034454, 0.05119817703962326, 0.027293646708130836, 0.04475631192326546, 0.03501012176275253, 0.11585451662540436, 0.02072889171540737, 0.08314283937215805, 0.046979647129774094, 0.23879306018352509, 0.027169859036803246, 0.013546156696975231, 0.027122559025883675, 0.019079461693763733, 0.029683033004403114, 0.031565334647893906, 0.0070840283297002316, 0.08295101672410965], [0.09631534665822983, 0.025729643180966377, 0.02092141844332218, 0.024907631799578667, 0.008051655255258083, 0.022085070610046387, 0.008287644013762474, 0.1783367544412613, 0.015808766707777977, 0.3106938302516937, 0.014701327309012413, 0.011472174897789955, 0.02099671959877014, 0.01652216911315918, 0.01650831662118435, 0.024223851040005684, 0.006548003759235144, 0.17788967490196228], [0.1089082807302475, 0.04676656424999237, 0.016209406778216362, 0.02896539866924286, 0.03305753320455551, 0.047326862812042236, 0.02355574257671833, 0.1254148781299591, 0.11780853569507599, 0.1485520899295807, 0.017989126965403557, 0.011417538858950138, 0.010954377241432667, 0.040766119956970215, 0.03457627817988396, 0.047773368656635284, 0.014821119606494904, 0.12513674795627594], [0.14484275877475739, 0.017520099878311157, 0.011805081740021706, 0.020923350006341934, 0.026136161759495735, 0.04272771254181862, 0.05927102267742157, 0.22633516788482666, 0.06395088881254196, 0.0233597494661808, 0.022664183750748634, 0.026994628831744194, 0.010044755414128304, 0.019337154924869537, 0.012989680282771587, 0.02188892476260662, 0.023379335179924965, 0.22582930326461792], [0.2141983062028885, 0.011143091134727001, 0.007787181064486504, 0.02162698097527027, 0.022875409573316574, 0.026108521968126297, 0.04875670000910759, 0.19885846972465515, 0.09265115112066269, 0.031034156680107117, 0.01627286709845066, 0.017646528780460358, 0.012896629050374031, 0.01819036714732647, 0.018755311146378517, 0.021712996065616608, 0.021016454324126244, 0.19846880435943604], [0.03559761866927147, 0.06371350586414337, 0.02530844137072563, 0.045746833086013794, 0.06578060984611511, 0.03629040718078613, 0.016729602590203285, 0.3038642704486847, 0.024120638146996498, 0.009401191025972366, 0.008822929114103317, 0.018254106864333153, 0.004427962936460972, 0.0025696437805891037, 0.004592297598719597, 0.003447073744609952, 0.02811008132994175, 0.30322277545928955], [0.021912874653935432, 0.002788187935948372, 0.002688049105927348, 0.0025489525869488716, 0.0009959967574104667, 0.0012483897153288126, 0.0025680074468255043, 0.4737817943096161, 0.003014401998370886, 0.002787474077194929, 0.0014892701292410493, 0.0027074399404227734, 0.0011876225471496582, 0.0008289981633424759, 0.0004992637550458312, 0.0008449025335721672, 0.005743934772908688, 0.47236448526382446], [0.007444963790476322, 0.005131646990776062, 0.0028475159779191017, 0.005636001471430063, 0.009424884803593159, 0.007328802719712257, 0.0015054468531161547, 0.33591318130493164, 0.05640840530395508, 0.034653257578611374, 0.03637484461069107, 0.050566624850034714, 0.020501136779785156, 0.010533719323575497, 0.0255374014377594, 0.008710656315088272, 0.04636494815349579, 0.33511653542518616], [0.010200955905020237, 0.0042754849418997765, 0.01400208380073309, 0.003544869367033243, 0.002793419174849987, 0.0051890346221625805, 0.00043055604328401387, 0.09391020983457565, 0.018593374639749527, 0.21963940560817719, 0.05904795229434967, 0.009331685490906239, 0.1569502204656601, 0.032427120953798294, 0.08278496563434601, 0.18549183011054993, 0.007713226601481438, 0.09367362409830093], [0.028261806815862656, 0.005524148233234882, 0.014380388893187046, 0.009047158993780613, 0.007697990629822016, 0.013674660585820675, 0.0023574840743094683, 0.26348012685775757, 0.05416691303253174, 0.03996363282203674, 0.08363329619169235, 0.022350890561938286, 0.056548189371824265, 0.02069096639752388, 0.0381275899708271, 0.026065682992339134, 0.0511261522769928, 0.2629028856754303], [0.029738686978816986, 0.003899782430380583, 0.008881456218659878, 0.00634412094950676, 0.005692504812031984, 0.010211736895143986, 0.0019677826203405857, 0.3008929491043091, 0.06376167386770248, 0.0163078922778368, 0.06323655694723129, 0.03551143780350685, 0.03404288738965988, 0.029279988259077072, 0.02714259922504425, 0.02615804225206375, 0.036763302981853485, 0.30016660690307617], [0.011417093686759472, 0.0013026142260059714, 0.003540465608239174, 0.0014734906144440174, 0.0006704445695504546, 0.0015654336893931031, 0.0005700031761080027, 0.39120882749557495, 0.022654885426163673, 0.007257689256221056, 0.024058466777205467, 0.013888126239180565, 0.027469241991639137, 0.024647055193781853, 0.03105800971388817, 0.026946093887090683, 0.020195631310343742, 0.3900764584541321], [0.014683234505355358, 0.0003905683115590364, 0.0018602709751576185, 0.0007003890350461006, 0.0002229461242677644, 0.0009868796914815903, 0.0004573663172777742, 0.41326287388801575, 0.00891679897904396, 0.008134972304105759, 0.0065480382181704044, 0.008466805331408978, 0.011800406500697136, 0.040612295269966125, 0.028113022446632385, 0.023649292066693306, 0.019159911200404167, 0.4120338559150696], [0.015461116097867489, 0.0005639717564918101, 0.0017511924961581826, 0.0010174637427553535, 0.0004856193845625967, 0.0012849833583459258, 0.0012520712334662676, 0.39233216643333435, 0.022522909566760063, 0.007504936773329973, 0.01464441604912281, 0.007561471313238144, 0.023904209956526756, 0.015216153115034103, 0.01690785586833954, 0.02866584248840809, 0.057688456028699875, 0.39123499393463135], [0.00585609395056963, 0.0009678196511231363, 0.001840684562921524, 0.00102305319160223, 0.0004074878816027194, 0.0007620466640219092, 0.0004518597270362079, 0.4574013948440552, 0.005522680934518576, 0.011305003426969051, 0.004427983425557613, 0.005430434364825487, 0.004798815120011568, 0.01174563355743885, 0.006340957246720791, 0.007970902137458324, 0.01794913038611412, 0.45579805970191956], [0.0028254014905542135, 0.004951308015733957, 0.00333961914293468, 0.002887774957343936, 0.0017659366130828857, 0.0010185888968408108, 0.0008140706922858953, 0.4771941304206848, 0.003095044055953622, 0.0024583530612289906, 0.0013498994521796703, 0.0036327047273516655, 0.0007925605750642717, 0.0004537247004918754, 0.0006610573618672788, 0.0005927378078922629, 0.016363972797989845, 0.4758031368255615], [0.02190978266298771, 0.002789172111079097, 0.002688387408852577, 0.0025500322226434946, 0.00099636719096452, 0.0012484040344133973, 0.0025704344734549522, 0.4737854301929474, 0.003011683700606227, 0.002784301759675145, 0.0014879874652251601, 0.002705515595152974, 0.0011864820262417197, 0.0008282664348371327, 0.0004989581648260355, 0.0008442376856692135, 0.005745852366089821, 0.4723687767982483]], [[0.009353775531053543, 0.006635352503508329, 0.021925903856754303, 0.0035688006319105625, 0.0014420109800994396, 0.005379037000238895, 0.00412369379773736, 0.2697131037712097, 0.023345261812210083, 0.31337592005729675, 0.003342860843986273, 0.001316230627708137, 0.014752394519746304, 0.0075667379423975945, 0.006372712552547455, 0.010473896749317646, 0.02835206128656864, 0.2689601182937622], [0.0016390103846788406, 0.05267651006579399, 0.20384134352207184, 0.02188654989004135, 0.01068024430423975, 0.020415617153048515, 0.015452937223017216, 0.31039926409721375, 0.0037041741888970137, 0.03910326957702637, 0.0023755370639264584, 0.0007564637344330549, 0.0012848690384998918, 0.00016196974320337176, 0.0004324600740801543, 0.0010574507759884, 0.004672426730394363, 0.309459924697876], [0.0033783919643610716, 0.07977224886417389, 0.16810643672943115, 0.048198893666267395, 0.026631386950612068, 0.03620787337422371, 0.021888073533773422, 0.28750792145729065, 0.0035891940351575613, 0.010186437517404556, 0.008360518142580986, 0.0067393602803349495, 0.0019942678045481443, 0.0010027893586084247, 0.001442888518795371, 0.0018580935429781675, 0.006350176874548197, 0.28678497672080994], [0.002211370738223195, 0.1583373099565506, 0.3959755301475525, 0.04033539071679115, 0.011165295727550983, 0.027603227645158768, 0.018362829461693764, 0.1539592146873474, 0.004185536876320839, 0.022953996434807777, 0.002012713812291622, 0.000823534035589546, 0.0016885530203580856, 0.0005506534944288433, 0.0004699377459473908, 0.0010076004546135664, 0.004779130686074495, 0.15357817709445953], [0.0023617055267095566, 0.14064808189868927, 0.2539482116699219, 0.04151991382241249, 0.0193451177328825, 0.04892819747328758, 0.02155274711549282, 0.22779694199562073, 0.001530761132016778, 0.009174280799925327, 0.0010036510648205876, 0.0006404047599062324, 0.0008977129473350942, 0.0002886805741582066, 0.00028396007837727666, 0.00040429149521514773, 0.0025113015435636044, 0.22716417908668518], [0.00358903082087636, 0.11883443593978882, 0.294259250164032, 0.05448174849152565, 0.014114505611360073, 0.029820263385772705, 0.020514052361249924, 0.21952685713768005, 0.006068424321711063, 0.009111076593399048, 0.0024609947577118874, 0.0010829989332705736, 0.0019088948611170053, 0.0007166822324506938, 0.0009298797813244164, 0.0013592350296676159, 0.0022480194456875324, 0.21897363662719727], [0.008689707145094872, 0.1032840758562088, 0.21193602681159973, 0.032195039093494415, 0.033691998571157455, 0.03395777568221092, 0.04928624629974365, 0.24608607590198517, 0.014906205236911774, 0.0077950479462742805, 0.0005571942310780287, 0.00042046993621625006, 0.0006284413975663483, 0.0005259389290586114, 0.00041182327549904585, 0.0004931211587972939, 0.009656691923737526, 0.2454780489206314], [0.004165980499237776, 0.0022244586143642664, 0.002964823506772518, 0.0017528889002278447, 0.002060640836134553, 0.001663234201259911, 0.00807795487344265, 0.4777083396911621, 0.0032872436568140984, 0.002987763611599803, 0.0009666621335782111, 0.0007772857788950205, 0.0009261809173040092, 0.002629820955917239, 0.0009751333855092525, 0.001411373377777636, 0.009384643286466599, 0.4760356545448303], [0.007470988668501377, 0.05487135425209999, 0.05091075599193573, 0.1446503847837448, 0.05917883291840553, 0.06920347362756729, 0.012608644552528858, 0.2299526482820511, 0.0145139554515481, 0.07219185680150986, 0.022533416748046875, 0.00856035016477108, 0.007351210340857506, 0.002950799185782671, 0.0031750353518873453, 0.0028131587896496058, 0.007605562452226877, 0.2294575721025467], [0.004280739929527044, 0.19203919172286987, 0.46389952301979065, 0.0063909911550581455, 0.0007423676433973014, 0.00290478952229023, 0.01079888828098774, 0.021705618128180504, 0.0033491668291389942, 0.25623902678489685, 0.0009027456399053335, 0.00035419806954450905, 0.0007566432468593121, 0.0005301418714225292, 0.0016406357754021883, 0.0024573584087193012, 0.009352117776870728, 0.021655794233083725], [0.01396894920617342, 0.06213776767253876, 0.1660071313381195, 0.018415965139865875, 0.004884917754679918, 0.019311752170324326, 0.006809057202190161, 0.1677028387784958, 0.01692342199385166, 0.3020274341106415, 0.0027776136994361877, 0.002524212235584855, 0.006456022150814533, 0.016063498333096504, 0.00904756411910057, 0.012727554887533188, 0.004957856610417366, 0.1672564595937729], [0.0153112867847085, 0.033329207450151443, 0.0676112100481987, 0.018296295776963234, 0.009472908452153206, 0.019582806155085564, 0.011029276065528393, 0.27412906289100647, 0.04935858026146889, 0.13859650492668152, 0.007802880369126797, 0.00468370970338583, 0.012104358524084091, 0.008773737587034702, 0.012965179979801178, 0.028957249596714973, 0.014566553756594658, 0.27342918515205383], [0.017731236293911934, 0.009775225073099136, 0.11468075960874557, 0.011538224294781685, 0.0025369571521878242, 0.016167163848876953, 0.008298840373754501, 0.22969433665275574, 0.019316311925649643, 0.14345403015613556, 0.008068624883890152, 0.0051506697200238705, 0.045283086597919464, 0.045183151960372925, 0.02933802269399166, 0.05310457944869995, 0.011585761792957783, 0.22909300029277802], [0.005737485829740763, 0.02153158187866211, 0.07691361755132675, 0.013535941019654274, 0.003956115338951349, 0.03689846396446228, 0.0024940036237239838, 0.3206254243850708, 0.00589584419503808, 0.07440219819545746, 0.00478271534666419, 0.0037253526970744133, 0.006629838142544031, 0.030057579278945923, 0.003673149971291423, 0.06484217196702957, 0.004649327136576176, 0.31964921951293945], [0.009928259067237377, 0.013749041594564915, 0.06443724036216736, 0.002915105549618602, 0.00424561370164156, 0.005472242366522551, 0.004837712738662958, 0.2779078483581543, 0.008557657711207867, 0.2264925092458725, 0.00506177544593811, 0.004879934713244438, 0.008942871354520321, 0.018463725224137306, 0.015805836766958237, 0.03820779547095299, 0.01296350546181202, 0.2771313190460205], [0.009903473779559135, 0.03167591243982315, 0.18253351747989655, 0.011948144994676113, 0.0026101330295205116, 0.022358618676662445, 0.0038303041364997625, 0.19687528908252716, 0.007305999752134085, 0.20886512100696564, 0.0168367438018322, 0.007219064515084028, 0.017290914431214333, 0.023365363478660583, 0.011678743176162243, 0.043938059359788895, 0.005496196448802948, 0.19626836478710175], [0.026221036911010742, 0.010997181758284569, 0.01441290881484747, 0.007582854013890028, 0.004052975680679083, 0.0018146506045013666, 0.021687213331460953, 0.33698225021362305, 0.09359665215015411, 0.04439708590507507, 0.005326184909790754, 0.00470297085121274, 0.0069356271997094154, 0.0056534712202847, 0.0038057174533605576, 0.004697652533650398, 0.0711527168750763, 0.3359808921813965], [0.004164740908890963, 0.002223366405814886, 0.002963077975437045, 0.0017521617701277137, 0.002060436410829425, 0.0016621955437585711, 0.008077716454863548, 0.4777156114578247, 0.003286956576630473, 0.0029835819732397795, 0.0009663003729656339, 0.0007770608062855899, 0.0009256705525331199, 0.0026297231670469046, 0.0009748190059326589, 0.0014106903690844774, 0.009383020922541618, 0.47604289650917053]], [[0.00649135559797287, 0.006235244683921337, 0.007422870956361294, 0.007218163926154375, 0.001384963165037334, 0.0014241982717067003, 0.000657863391097635, 0.3901377022266388, 0.12261888384819031, 0.03863265737891197, 0.006310265976935625, 0.004217368550598621, 0.0028095149900764227, 0.005231491755694151, 0.0018585235811769962, 0.0022240993566811085, 0.00628335727378726, 0.38884153962135315], [0.001894456217996776, 0.029243765398859978, 0.08517590910196304, 0.5483393669128418, 0.04617813974618912, 0.04804740473628044, 0.003376217093318701, 0.09489155560731888, 0.007355008274316788, 0.011264771223068237, 0.009303526021540165, 0.0026469859294593334, 0.01246420107781887, 0.0016516840551048517, 0.0013769841752946377, 0.0012848896440118551, 0.0008183632744476199, 0.0946868434548378], [0.008202162571251392, 0.025307266041636467, 0.007525780238211155, 0.2432926893234253, 0.06069905310869217, 0.08897167444229126, 0.010513017885386944, 0.24560397863388062, 0.004576300270855427, 0.0075560458935797215, 0.017702443525195122, 0.0055513991974294186, 0.01908138394355774, 0.0025526401586830616, 0.003344448283314705, 0.0017556349048390985, 0.0026991432532668114, 0.2450648546218872], [0.010043579153716564, 0.023318301886320114, 0.020816858857870102, 0.046186719089746475, 0.06568741798400879, 0.29862380027770996, 0.014964867383241653, 0.2417948693037033, 0.018299946561455727, 0.004345424938946962, 0.0011700689792633057, 0.0009943366749212146, 0.005392062943428755, 0.0016624063719063997, 0.0008310727425850928, 0.0029800771735608578, 0.0016362812602892518, 0.24125197529792786], [0.006869597360491753, 0.02675536647439003, 0.019418494775891304, 0.03938192129135132, 0.02908252738416195, 0.03800487518310547, 0.025090647861361504, 0.3997918367385864, 0.005454605910927057, 0.004816219210624695, 0.00041757168946787715, 0.0009683477692306042, 0.0008154332754202187, 0.0004828730598092079, 0.00026700651505962014, 0.0011014094343408942, 0.002552279969677329, 0.3987291157245636], [0.012172234244644642, 0.037068963050842285, 0.018416132777929306, 0.030478114262223244, 0.020660704001784325, 0.019673561677336693, 0.06562679260969162, 0.362435519695282, 0.04386572167277336, 0.0076975212432444096, 0.0008301985217258334, 0.0023439109791070223, 0.003527561202645302, 0.0025891736149787903, 0.0015662185614928603, 0.002678660210222006, 0.006720439065247774, 0.3616485595703125], [0.030183136463165283, 0.03078930266201496, 0.006906577385962009, 0.018989624455571175, 0.0039712488651275635, 0.007573762908577919, 0.00582488439977169, 0.3623722195625305, 0.09886161237955093, 0.04236216098070145, 0.010167974978685379, 0.007369248662143946, 0.004070333670824766, 0.002343582222238183, 0.0025809896178543568, 0.0015389416366815567, 0.0028434228152036667, 0.36125096678733826], [0.06782698631286621, 0.013277675956487656, 0.0044382899068295956, 0.008007233962416649, 0.0048665208742022514, 0.0037732208147644997, 0.003380213398486376, 0.4237516522407532, 0.004132250789552927, 0.005400396417826414, 0.009144174866378307, 0.0051851519383490086, 0.005345222540199757, 0.00267193466424942, 0.00799113605171442, 0.004155182745307684, 0.004139394033700228, 0.4225134253501892], [0.016106951981782913, 0.006473186891525984, 0.008808710612356663, 0.004756937734782696, 0.0011802379740402102, 0.0019066757522523403, 0.0016614049673080444, 0.39745190739631653, 0.04850579425692558, 0.0499398447573185, 0.026412829756736755, 0.016749709844589233, 0.005963939242064953, 0.004752962850034237, 0.003537094220519066, 0.0013063077349215746, 0.008062305860221386, 0.39642319083213806], [0.002520043635740876, 0.0013689830666407943, 0.0034292631316930056, 0.0033816834911704063, 0.0008374117314815521, 0.002326721791177988, 0.000609391019679606, 0.16862177848815918, 0.004357399884611368, 0.015812423080205917, 0.12855002284049988, 0.02107849158346653, 0.3611932694911957, 0.016739828512072563, 0.007552388124167919, 0.08776584267616272, 0.005649649538099766, 0.1682053953409195], [0.006079941056668758, 0.0009556891745887697, 0.0011159587884321809, 0.0006806142628192902, 0.0006218983908183873, 0.00037549203261733055, 0.00046679802471771836, 0.3787008225917816, 0.009150473400950432, 0.013888080604374409, 0.01544366218149662, 0.02075251191854477, 0.10925173759460449, 0.01410562265664339, 0.008252203464508057, 0.027554184198379517, 0.014972561970353127, 0.37763169407844543], [0.009112861938774586, 0.0009589432156644762, 0.0010272787185385823, 0.0005563742597587407, 0.000229306286200881, 0.00024611555272713304, 0.00031638925429433584, 0.3591143488883972, 0.008037848398089409, 0.01221152301877737, 0.03012913279235363, 0.015552817843854427, 0.08101573586463928, 0.022647732868790627, 0.03547528013586998, 0.053990788757801056, 0.011390257626771927, 0.35798731446266174], [0.005558989942073822, 0.0006613763980567455, 0.0005188482464291155, 0.0002602333261165768, 8.124035957735032e-05, 5.807681009173393e-05, 0.0006950490060262382, 0.3556230366230011, 0.005766155198216438, 0.005609138403087854, 0.004192129708826542, 0.006315624341368675, 0.0462644100189209, 0.033423904329538345, 0.1039491519331932, 0.03581705689430237, 0.040681347250938416, 0.3545241951942444], [0.007100177463144064, 0.0004979806253686547, 0.0005130635690875351, 0.0003564265207387507, 8.508125756634399e-05, 9.674236207501963e-05, 0.0007262957515195012, 0.341004878282547, 0.005626346915960312, 0.0045608412474393845, 0.003858313662931323, 0.0045961979776620865, 0.01540632825344801, 0.014368182048201561, 0.18593348562717438, 0.003122694557532668, 0.07207681238651276, 0.3400702178478241], [0.003475711215287447, 0.00011099308176198974, 6.460797158069909e-05, 3.167674003634602e-05, 1.0358629879192449e-05, 2.3729237000225112e-05, 0.00012128282833145931, 0.1687944531440735, 0.0003633623418863863, 0.001193706993944943, 0.0009490741067565978, 0.00031532259890809655, 0.013308815658092499, 0.006752018816769123, 0.1517898142337799, 0.4693732261657715, 0.015132223255932331, 0.1681896299123764], [0.004844163544476032, 0.000700260978192091, 0.0004978078068234026, 0.00014612700033467263, 5.175143451197073e-05, 0.0001307091151829809, 0.00044092501047998667, 0.45597198605537415, 0.002068607835099101, 0.002233259379863739, 0.0009047474595718086, 0.0018291979795321822, 0.010807710699737072, 0.008290118537843227, 0.016450945287942886, 0.01214576791971922, 0.028042828664183617, 0.4544430375099182], [0.03965975344181061, 0.0023353698197752237, 0.0008585615432821214, 0.003901471383869648, 0.000575559854041785, 0.0007954664761200547, 0.0005700328038074076, 0.4203619658946991, 0.06140691041946411, 0.019685037434101105, 0.006861889269202948, 0.003112139878794551, 0.0028233772609382868, 0.0022869736421853304, 0.0055818273685872555, 0.002312683267518878, 0.00803104043006897, 0.4188399314880371], [0.06782563775777817, 0.013271369971334934, 0.0044369203969836235, 0.008008195087313652, 0.00486731855198741, 0.003774555865675211, 0.0033808790612965822, 0.42375949025154114, 0.00413268618285656, 0.005397944711148739, 0.009141671471297741, 0.005183324217796326, 0.005344083067029715, 0.002670528134331107, 0.007991423830389977, 0.004154964350163937, 0.004138019867241383, 0.42252102494239807]], [[0.0072449324652552605, 0.008087466470897198, 0.019160602241754532, 0.0037453668192029, 0.0015731131425127387, 0.001727225841023028, 0.004778558854013681, 0.2784905731678009, 0.050650909543037415, 0.023337384685873985, 0.017086928710341454, 0.018534990027546883, 0.019983122125267982, 0.07087689638137817, 0.01088639721274376, 0.006889968644827604, 0.17905838787555695, 0.27788713574409485], [0.004711966495960951, 0.07068659365177155, 0.06950633227825165, 0.0704261064529419, 0.061714619398117065, 0.06846170127391815, 0.09797372668981552, 0.2581937313079834, 0.018552692607045174, 0.001440353225916624, 0.0009082868928089738, 0.0007570963352918625, 0.0029838322661817074, 0.0038078362122178078, 0.0024251064751297235, 0.0021610751282423735, 0.007617955561727285, 0.257671058177948], [0.010838245041668415, 0.04885802045464516, 0.020748203620314598, 0.029342101886868477, 0.01289483904838562, 0.01379541028290987, 0.01196863129734993, 0.4200318455696106, 0.0018257700139656663, 0.004134046845138073, 0.0009548458619974554, 0.0005996265099383891, 0.0007919261115603149, 0.000756454246584326, 0.0009796880185604095, 0.00023513691849075258, 0.0022475928999483585, 0.4189976453781128], [0.004046330228447914, 0.02046251855790615, 0.018049651756882668, 0.01680995710194111, 0.0330260694026947, 0.01898917369544506, 0.03418391942977905, 0.41706621646881104, 0.012110182084143162, 0.0008221006719395518, 0.0005357578047551215, 0.00044998363591730595, 0.0018791207112371922, 0.0004502764204517007, 0.0002744962403085083, 0.0004511588776949793, 0.004398839548230171, 0.4159942865371704], [0.0038070331793278456, 0.01658875122666359, 0.007005542051047087, 0.007962399162352085, 0.06103259325027466, 0.04044976457953453, 0.0553206168115139, 0.39832013845443726, 0.00725212600082159, 0.00044648442417383194, 0.00021410691260825843, 0.0003142345231026411, 0.000777678971644491, 8.042772969929501e-05, 7.979902147781104e-05, 0.00036198573070578277, 0.002831648802384734, 0.39715471863746643], [0.02210048772394657, 0.03435175120830536, 0.0047173709608614445, 0.014841648750007153, 0.08045823872089386, 0.09110294282436371, 0.09870811551809311, 0.31402987241744995, 0.014346448704600334, 0.0013827919028699398, 0.000976740731857717, 0.0009404494776390493, 0.001334040192887187, 0.0004429457476362586, 0.00041709872311912477, 0.0008027931908145547, 0.005705983843654394, 0.31334033608436584], [0.004210203420370817, 0.01834605075418949, 0.00955263338983059, 0.010623817332088947, 0.015332967042922974, 0.021112479269504547, 0.015423116274178028, 0.44236060976982117, 0.012129334732890129, 0.0011371772270649672, 0.0009959080489352345, 0.000427019753260538, 0.0008542977157048881, 0.0007351511740125716, 0.0005328838597051799, 0.0009288312867283821, 0.004182851407676935, 0.4411146938800812], [0.0061184135265648365, 0.005090853199362755, 0.003667894983664155, 0.005748693365603685, 0.00790134072303772, 0.00653182715177536, 0.003253897652029991, 0.44706806540489197, 0.0069965762086212635, 0.003134586149826646, 0.007865640334784985, 0.00429847277700901, 0.01029928121715784, 0.00805398914963007, 0.007336335722357035, 0.016231050714850426, 0.004437831696122885, 0.4459652602672577], [0.006695086136460304, 0.0017265864880755544, 0.0016735784010961652, 0.0013602572726085782, 0.00206259754486382, 0.0010956279002130032, 0.0018463931046426296, 0.40699172019958496, 0.03190593793988228, 0.015398741699755192, 0.0034761400893330574, 0.010177495889365673, 0.011073848232626915, 0.0060057248920202255, 0.00618375139310956, 0.0028656518552452326, 0.08362238109111786, 0.4058384299278259], [0.006013853941112757, 0.0011839009821414948, 0.01569557376205921, 0.0008895136998035014, 0.000715379195753485, 0.000556056562345475, 0.002230457728728652, 0.21343372762203217, 0.015945708379149437, 0.006882630754262209, 0.014175995253026485, 0.016265496611595154, 0.09833954274654388, 0.16588903963565826, 0.1050620973110199, 0.06955573707818985, 0.05427178740501404, 0.21289348602294922], [0.004647564608603716, 0.0005275576841086149, 0.0009464313625358045, 0.0019445513607934117, 0.0019123746315017343, 0.000786268268711865, 0.0019100179197266698, 0.33645135164260864, 0.13146129250526428, 0.013147332705557346, 0.004175068810582161, 0.007923423312604427, 0.010620927438139915, 0.01829393394291401, 0.011151839047670364, 0.015870874747633934, 0.10258936136960983, 0.3356398940086365], [0.004428165964782238, 0.000438450719229877, 0.0005032001645304263, 0.0005816424963995814, 0.0008608272764831781, 0.0006355149671435356, 0.00187974632717669, 0.34298327565193176, 0.06812767684459686, 0.011961067095398903, 0.00461222231388092, 0.005510579328984022, 0.013833955861628056, 0.05109625682234764, 0.02024877816438675, 0.031629614531993866, 0.0986974686384201, 0.34197160601615906], [0.02054976113140583, 0.0004742494784295559, 0.0007228469476103783, 0.0016299848211929202, 0.00040587616967968643, 0.00018790723697748035, 0.0009325253195129335, 0.25124838948249817, 0.05021142587065697, 0.039179954677820206, 0.009629428386688232, 0.00946796778589487, 0.06403175741434097, 0.027364147827029228, 0.05266176164150238, 0.1847132444381714, 0.03596515581011772, 0.2506236732006073], [0.030353127047419548, 0.0006551043479703367, 0.00020233291434124112, 0.0002809426805470139, 0.00021694427414331585, 0.00037845640326850116, 0.0010982364183291793, 0.29212498664855957, 0.06180565804243088, 0.030276000499725342, 0.044612374156713486, 0.020017070695757866, 0.01828484982252121, 0.06312758475542068, 0.0674433708190918, 0.01852385886013508, 0.05924345552921295, 0.291355699300766], [0.0243020448833704, 0.0009655127068981528, 0.0020491196773946285, 0.000535728526301682, 0.00048570125363767147, 0.00047473827726207674, 0.0028561714570969343, 0.31524360179901123, 0.031026259064674377, 0.04087495058774948, 0.010822881944477558, 0.014677010476589203, 0.021436961367726326, 0.030209144577383995, 0.05412911996245384, 0.02144458144903183, 0.11413809657096863, 0.3143284320831299], [0.04448538273572922, 0.0004986399435438216, 6.882287561893463e-05, 0.00047871304559521377, 0.0004355241544544697, 0.0014931753976270556, 0.0008589931530877948, 0.26229462027549744, 0.030990276485681534, 0.02195162884891033, 0.018170276656746864, 0.019002439454197884, 0.08157682418823242, 0.012940503656864166, 0.013305709697306156, 0.18953993916511536, 0.040331561118364334, 0.26157695055007935], [0.003736646380275488, 0.000922922685276717, 0.000946033513173461, 0.0013548448914662004, 0.0008881074609234929, 0.001015836256556213, 0.0014061486581340432, 0.4352092742919922, 0.04467364400625229, 0.010006727650761604, 0.004411226138472557, 0.0024626825470477343, 0.006428970955312252, 0.013278576545417309, 0.0036144049372524023, 0.009207764640450478, 0.026621732860803604, 0.43381446599960327], [0.006119539029896259, 0.005091692786663771, 0.0036685802042484283, 0.005749320611357689, 0.00789890717715025, 0.006532234605401754, 0.0032556853257119656, 0.447086364030838, 0.0069919126108288765, 0.003134140744805336, 0.007862785831093788, 0.004295757040381432, 0.010294357314705849, 0.008048029616475105, 0.007330313324928284, 0.016220465302467346, 0.004436984658241272, 0.44598299264907837]], [[0.02822449803352356, 0.02687816694378853, 0.017177017405629158, 0.06758271157741547, 0.05268522724509239, 0.1050669476389885, 0.07251130044460297, 0.2539790868759155, 0.006517237983644009, 0.003736543469130993, 0.03100883774459362, 0.03363306075334549, 0.013114672154188156, 0.0031619181390851736, 0.014996517449617386, 0.0015169066609814763, 0.014723382890224457, 0.25348594784736633], [0.014856377616524696, 0.04517171531915665, 0.06868106126785278, 0.0013730546925216913, 0.0005253195995464921, 0.0010999171063303947, 0.005162129644304514, 0.16022032499313354, 0.005310893524438143, 0.48580536246299744, 0.001481501036323607, 0.0012614388251677155, 0.0040791453793644905, 0.009608122520148754, 0.00208987295627594, 0.017511354759335518, 0.015880830585956573, 0.15988171100616455], [0.005436382256448269, 0.016109881922602654, 0.07949595898389816, 0.00030668420367874205, 0.00017003192624542862, 0.0002409948210697621, 0.002253412501886487, 0.1586759388446808, 0.0010209201136603951, 0.5489580631256104, 0.002133551985025406, 0.0007323863101191819, 0.0019802956376224756, 0.0077832043170928955, 0.0006195628666318953, 0.008542497642338276, 0.007291001733392477, 0.15824924409389496], [0.012125330977141857, 0.005898939911276102, 0.013083841651678085, 0.06028825789690018, 0.0026182541623711586, 0.010454635135829449, 0.013611743226647377, 0.38327085971832275, 0.019416164606809616, 0.041236504912376404, 0.0057894582860171795, 0.0048637185245752335, 0.0011572148650884628, 0.0054529281333088875, 0.0018198714824393392, 0.004205217584967613, 0.032345496118068695, 0.38236162066459656], [0.025399094447493553, 0.0008986395550891757, 0.0021165735088288784, 0.003248675027862191, 0.011415122076869011, 0.012014884501695633, 0.008986202999949455, 0.40268760919570923, 0.024378979578614235, 0.007182565052062273, 0.005181458313018084, 0.004840650130063295, 0.0009523636545054615, 0.02822571061551571, 0.0015979402232915163, 0.041656069457530975, 0.017510198056697845, 0.4017072319984436], [0.03291871398687363, 0.006537158507853746, 0.001706287614069879, 0.005502654239535332, 0.006653270684182644, 0.13431093096733093, 0.012340160086750984, 0.22973434627056122, 0.06483062356710434, 0.04841776192188263, 0.032293494790792465, 0.021019719541072845, 0.012284930795431137, 0.04747014120221138, 0.005556862335652113, 0.0706632137298584, 0.03863690048456192, 0.2291228026151657], [0.10553066432476044, 0.01046657096594572, 0.02234434150159359, 0.008712504990398884, 0.00677887350320816, 0.003154963720589876, 0.023326952010393143, 0.35093721747398376, 0.02725137397646904, 0.013629346154630184, 0.003499878104776144, 0.002560931956395507, 0.0034537881147116423, 0.0029937373474240303, 0.002053678035736084, 0.0015623312210664153, 0.06165727600455284, 0.35008564591407776], [0.005497328471392393, 0.002808538731187582, 0.005099039524793625, 0.0019498999463394284, 0.0011361691867932677, 0.002441758057102561, 0.004157111048698425, 0.4799897372722626, 0.0020218912977725267, 0.0035759196616709232, 0.0012540938332676888, 0.002198587404564023, 0.001301427953876555, 0.0010890583507716656, 0.0005993940867483616, 0.0007701669237576425, 0.00548291951417923, 0.47862687706947327], [0.04544711485505104, 0.005273644812405109, 0.0032745911739766598, 0.016436804085969925, 0.01142325159162283, 0.014944971539080143, 0.12951037287712097, 0.357177734375, 0.031820911914110184, 0.00011677155998768285, 0.0019758918788284063, 0.00168419792316854, 0.00036025673034600914, 0.0002473084314260632, 0.001347371726296842, 6.0959831898799166e-05, 0.022731540724635124, 0.3561663031578064], [0.0008267996599897742, 0.06396003067493439, 0.9035478830337524, 0.0014103865250945091, 0.0003607453836593777, 0.00016896697343327105, 0.0012772816698998213, 0.005097050219774246, 3.4226468414999545e-06, 0.017827970907092094, 2.650491296662949e-05, 4.579313099384308e-06, 9.266465895052534e-06, 1.3829989256919362e-05, 7.366714271483943e-06, 1.753532706061378e-05, 0.0003558485768735409, 0.005084560718387365], [0.07895984500646591, 0.022557346150279045, 0.06934602558612823, 0.008951911702752113, 0.005785936955362558, 0.023429324850440025, 0.030499132350087166, 0.2764936685562134, 0.0012763665290549397, 0.009462599642574787, 0.14387671649456024, 0.01361819263547659, 0.009459423832595348, 0.0020574498921632767, 0.009741745889186859, 0.0008861463866196573, 0.017631130293011665, 0.2759670615196228], [0.050265226513147354, 0.010402374900877476, 0.02528410777449608, 0.016969241201877594, 0.00800932478159666, 0.024472607299685478, 0.024285463616251945, 0.37361234426498413, 0.0026958563830703497, 0.0017985037993639708, 0.016358816996216774, 0.048045963048934937, 0.0027558142319321632, 0.0005491509800776839, 0.006788026075810194, 0.000783697993028909, 0.01410754770040512, 0.37281596660614014], [0.02985457330942154, 0.005657408852130175, 0.005867755506187677, 0.0035946897696703672, 0.001102020381949842, 0.005610182415693998, 0.03155108541250229, 0.38686510920524597, 0.00015190616250038147, 0.0006529453676193953, 0.0024348474107682705, 0.0006948277004994452, 0.08904875069856644, 0.006222117226570845, 0.01254233904182911, 0.0030886828899383545, 0.029042918235063553, 0.3860178291797638], [0.03919912129640579, 0.017419982701539993, 0.07773434370756149, 0.0025473868008702993, 0.01643117517232895, 0.09891413152217865, 0.06053805351257324, 0.2123480588197708, 6.688461144221947e-05, 0.002307848073542118, 0.00020952335034962744, 0.00013382172619458288, 0.004006197676062584, 0.09370057284832001, 0.00983093585819006, 0.13489705324172974, 0.017827004194259644, 0.21188794076442719], [0.024208959192037582, 0.0025414233095943928, 0.006479698698967695, 0.0012048204662278295, 0.001153938239440322, 0.004721543751657009, 0.016603384166955948, 0.2010192722082138, 0.00028608631691895425, 0.0009230392752215266, 0.0015206258976832032, 0.0011138805421069264, 0.010425828397274017, 0.029948147013783455, 0.46904152631759644, 0.019678113982081413, 0.00856032781302929, 0.20056946575641632], [0.034426622092723846, 0.02712579257786274, 0.3798339366912842, 0.003912570420652628, 0.0072620585560798645, 0.04911571368575096, 0.04556149244308472, 0.14185751974582672, 0.00016099223284982145, 0.014388698153197765, 0.0007755009573884308, 0.0001393262209603563, 0.002052500145509839, 0.09957606345415115, 0.004550946410745382, 0.030280770733952522, 0.017423460260033607, 0.1415560096502304], [0.03599721938371658, 0.023649116978049278, 0.0385950542986393, 0.010081788524985313, 0.004971147980540991, 0.0030308470595628023, 0.046893928200006485, 0.39878222346305847, 0.006862873211503029, 0.003129811491817236, 0.000482063100207597, 0.0005564063903875649, 0.0006670349976047873, 0.00022906283265911043, 0.000495098065584898, 0.00015705550322309136, 0.027830632403492928, 0.39758870005607605], [0.00550092663615942, 0.002809621160849929, 0.005099686793982983, 0.001950994716025889, 0.001136987586505711, 0.002441813936457038, 0.004159651696681976, 0.47998106479644775, 0.0020233141258358955, 0.0035779087338596582, 0.0012535498244687915, 0.0021978141739964485, 0.0013012983836233616, 0.0010891830315813422, 0.0005995730753056705, 0.0007702654111199081, 0.005487623158842325, 0.47861871123313904]]], [[[0.003282914636656642, 0.043607957661151886, 0.0048064677976071835, 0.03444560617208481, 0.02522188052535057, 0.013604823499917984, 0.19586828351020813, 0.3261401653289795, 0.009355944581329823, 0.0005330315325409174, 0.0009703958057798445, 0.0003416354884393513, 0.001951170270331204, 6.706207932438701e-05, 0.00012616216554306448, 7.361452298937365e-05, 0.01366819441318512, 0.3259347975254059], [0.016875404864549637, 0.0851658508181572, 0.05127401649951935, 0.11015671491622925, 0.09526897966861725, 0.08968305587768555, 0.08387580513954163, 0.20179732143878937, 0.01278919167816639, 0.019386956468224525, 0.006528729572892189, 0.0018024365417659283, 0.0023063807748258114, 0.00036926520988345146, 8.852143946569413e-05, 0.0018617388559505343, 0.019073953852057457, 0.20169568061828613], [0.03253095597028732, 0.05841881036758423, 0.06340325623750687, 0.07668168097734451, 0.034265387803316116, 0.059076469391584396, 0.021094121038913727, 0.29171326756477356, 0.007364474702626467, 0.02422766387462616, 0.008093318901956081, 0.0017605382017791271, 0.0068627516739070415, 0.002782664727419615, 0.0004498462367337197, 0.010195079259574413, 0.009513523429632187, 0.2915661931037903], [0.03206720948219299, 0.04037494957447052, 0.01028243824839592, 0.03708629310131073, 0.05091888830065727, 0.03699146583676338, 0.04821289703249931, 0.3418560326099396, 0.042003851383924484, 0.0025910385884344578, 0.0019666245207190514, 0.001605602796189487, 0.00043236641795374453, 0.00022243392595555633, 3.846479739877395e-05, 0.0002449997700750828, 0.011461435817182064, 0.3416430354118347], [0.029558412730693817, 0.020458901301026344, 0.0053135124035179615, 0.013110259547829628, 0.02650674246251583, 0.01504544634371996, 0.06961123645305634, 0.38769251108169556, 0.030529357492923737, 0.0007531255832873285, 0.0006184800295159221, 0.0006138519383966923, 0.00018626700330059975, 0.00013803812908008695, 8.706359221832827e-05, 0.0003871155495289713, 0.011952267959713936, 0.38743749260902405], [0.09060260653495789, 0.02367309108376503, 0.015340491198003292, 0.029130565002560616, 0.03341452404856682, 0.040305037051439285, 0.04896215349435806, 0.2983732223510742, 0.09980994462966919, 0.001245427061803639, 0.0020505483262240887, 0.0023639982100576162, 0.002138913841918111, 0.001852750894613564, 0.0010291278595104814, 0.0022683346178382635, 0.009204751811921597, 0.29823461174964905], [0.009770726785063744, 0.01527613215148449, 0.005621404852718115, 0.014119409024715424, 0.00571288401260972, 0.006639859173446894, 0.01541982963681221, 0.4450565278530121, 0.02044263668358326, 0.0007841346669010818, 0.001331244595348835, 0.0015677264891564846, 0.0024988739751279354, 0.0003203141677659005, 0.00035142642445862293, 0.0007097925990819931, 0.009628605097532272, 0.44474849104881287], [0.0172122810035944, 0.013933205977082253, 0.010457136668264866, 0.01252710074186325, 0.004220578819513321, 0.005090771708637476, 0.003446927759796381, 0.42483869194984436, 0.008741882629692554, 0.018231848254799843, 0.006184066645801067, 0.008636397309601307, 0.007179826498031616, 0.004536094143986702, 0.003983618691563606, 0.011912918649613857, 0.01432502456009388, 0.4245416224002838], [0.05744302645325661, 0.001115466351620853, 0.0003202245570719242, 0.0004204327706247568, 0.00012803188292309642, 0.00021613540593534708, 0.0006620479398407042, 0.37080320715904236, 0.08245845139026642, 0.005373657215386629, 0.010799162089824677, 0.02449614554643631, 0.013414829969406128, 0.0035335985012352467, 0.0006007650517858565, 0.0020893835462629795, 0.05560974031686783, 0.3705156445503235], [0.02871544659137726, 0.0022122247610241175, 0.002373423893004656, 0.0021657475735992193, 0.0012842727592214942, 0.0020621400326490402, 0.0011881784303113818, 0.2640300989151001, 0.035334400832653046, 0.05373862385749817, 0.12852710485458374, 0.03019200637936592, 0.07239420711994171, 0.006873623002320528, 0.0015851408243179321, 0.06771638989448547, 0.03574176877737045, 0.26386508345603943], [0.01340238656848669, 0.0009228439885191619, 0.0005295865121297538, 0.000982576864771545, 0.0020097694359719753, 0.0016009814571589231, 0.005241937469691038, 0.24259065091609955, 0.18118570744991302, 0.0053269932977855206, 0.011388291604816914, 0.04485105350613594, 0.030408523976802826, 0.03431578725576401, 0.007213187403976917, 0.02884010039269924, 0.14672189950942993, 0.24246765673160553], [0.008043590001761913, 0.0004072719893883914, 0.00013756452244706452, 0.00026703663752414286, 0.0002670957474038005, 0.00019590029842220247, 0.004947087727487087, 0.40017378330230713, 0.043540988117456436, 0.0009654263849370182, 0.0034924917854368687, 0.008338585495948792, 0.007796582765877247, 0.006795684341341257, 0.001770239556208253, 0.014453829266130924, 0.09851150959730148, 0.3998952805995941], [0.010609393939375877, 0.0005288795218802989, 0.00045474301441572607, 0.0003390686179045588, 0.00016208177839871496, 0.00038099102675914764, 0.0038254493847489357, 0.33921629190444946, 0.012736810371279716, 0.004960827995091677, 0.005199687089771032, 0.012951504439115524, 0.02091950550675392, 0.037420593202114105, 0.03806999698281288, 0.05087098106741905, 0.12231291830539703, 0.33904018998146057], [0.013933449983596802, 0.00028039596509188414, 0.0003532427654135972, 0.00021350123279262334, 0.0001357606379315257, 0.00015841404092498124, 0.0020322997588664293, 0.33881112933158875, 0.014093931764364243, 0.0013663661666214466, 0.0041108098812401295, 0.008538497611880302, 0.01787927933037281, 0.03284164518117905, 0.023238161578774452, 0.14060735702514648, 0.0627937987446785, 0.33861199021339417], [0.009900882840156555, 0.0002970850619021803, 0.0002122784499078989, 7.958034984767437e-05, 7.27766819181852e-05, 6.01516330789309e-05, 0.004291241522878408, 0.31717464327812195, 0.007837558165192604, 0.0014225052436813712, 0.0005379882059060037, 0.008639659732580185, 0.003918459173291922, 0.013423379510641098, 0.012103264220058918, 0.02821802720427513, 0.2748185396194458, 0.31699201464653015], [0.03192180022597313, 0.0004819895839318633, 0.0016924252267926931, 0.0002789235732052475, 6.816002860432491e-05, 0.0003259196528233588, 0.0008055918151512742, 0.3619123697280884, 0.04674067720770836, 0.00722033204510808, 0.0050194705836474895, 0.016021698713302612, 0.02255132980644703, 0.031380459666252136, 0.007084297016263008, 0.056401703506708145, 0.04841126129031181, 0.3616816997528076], [0.004878190346062183, 0.0012032531667500734, 0.0008035224163904786, 0.0023947078734636307, 0.000594808254390955, 0.000682119803968817, 0.0007737302803434432, 0.4606066048145294, 0.017963923513889313, 0.004715639632195234, 0.00445366557687521, 0.00761759839951992, 0.005695569794625044, 0.0013990311417728662, 0.001109517295844853, 0.0038523641414940357, 0.021015629172325134, 0.4602401852607727], [0.017209768295288086, 0.01393081247806549, 0.010455409996211529, 0.012525654397904873, 0.004220008850097656, 0.005090382415801287, 0.0034463689662516117, 0.4248473644256592, 0.008741418831050396, 0.01823018305003643, 0.006183473393321037, 0.008635712787508965, 0.007179229985922575, 0.004535414278507233, 0.00398301612585783, 0.011911755427718163, 0.01432424783706665, 0.42454975843429565]], [[0.11301513016223907, 0.02735166996717453, 0.12345936894416809, 0.047295451164245605, 0.07558590173721313, 0.20709405839443207, 0.06528133898973465, 0.0705636590719223, 0.007676165085285902, 0.0017003912944346666, 0.04930529743432999, 0.0014136412646621466, 0.0010352382669225335, 0.07870791107416153, 0.03552362322807312, 0.02019055187702179, 0.00427126232534647, 0.07052936404943466], [3.174379526171833e-05, 0.006977093406021595, 0.01857793517410755, 0.0009690506849437952, 0.00022421355242840946, 0.00026288474327884614, 0.0006335462094284594, 0.26701122522354126, 0.006957043893635273, 0.36567389965057373, 0.0009240226936526597, 0.0020674075931310654, 0.00014920324611011893, 0.0014397616032510996, 0.0016078099142760038, 0.0015142696211114526, 0.05810719355940819, 0.26687172055244446], [1.300017288485833e-06, 0.00011591996008064598, 0.28671103715896606, 7.797426405886654e-06, 1.8775496073430986e-06, 1.6789599612820894e-05, 3.177530743414536e-05, 0.18117766082286835, 0.0003532080154400319, 0.29611125588417053, 0.0010315632680431008, 0.00045966447214595973, 0.00037927183439023793, 0.0045209177769720554, 0.0007558076176792383, 0.005248076282441616, 0.04197848588228226, 0.1810975819826126], [4.3928041122853756e-05, 9.382644930155948e-05, 0.00016319395217578858, 0.030863726511597633, 0.0004925586981698871, 0.00024204932560678571, 0.00012568938836921006, 0.2744765877723694, 0.25077134370803833, 0.011524454690515995, 0.011208203621208668, 0.02278042584657669, 0.0021607072558254004, 0.00429701991379261, 0.031977299600839615, 0.009428348392248154, 0.07501518726348877, 0.2743355333805084], [2.7788524675997905e-05, 2.190271879953798e-05, 3.5199380363337696e-05, 0.0003231464943382889, 0.03816664591431618, 0.0006498780567198992, 0.00017300504259765148, 0.252808541059494, 0.1470828503370285, 0.011756240390241146, 0.018000589683651924, 0.1624150574207306, 0.0017680323217064142, 0.021609434857964516, 0.006802873685956001, 0.04903993383049965, 0.0366215743124485, 0.25269731879234314], [3.5862747608916834e-05, 2.3397884433506988e-05, 0.00017435969493817538, 4.6581753849750385e-05, 0.00018552927940618247, 0.08781063556671143, 3.2229978387476876e-05, 0.32781708240509033, 0.07073330134153366, 0.015938425436615944, 0.015820452943444252, 0.017877280712127686, 0.014822125434875488, 0.03621390089392662, 0.006743438076227903, 0.04649554565548897, 0.03152552992105484, 0.32770439982414246], [0.00021363589621614665, 3.1465217034565285e-05, 5.1019975217059255e-05, 1.937833621923346e-05, 8.759217053011525e-06, 1.582200638949871e-05, 0.004093839321285486, 0.2487371563911438, 0.1337137222290039, 0.0032470952719449997, 0.00047455180902034044, 0.0007905550883151591, 0.0003423942835070193, 0.0009671172010712326, 0.0015374115901067853, 0.0014941139379516244, 0.35560905933380127, 0.248652845621109], [0.0021388863679021597, 0.00031962248613126576, 0.0012489375658333302, 0.0005023265839554369, 0.00014720931358169764, 0.00037351142964325845, 0.0008516649249941111, 0.291628360748291, 0.17558719217777252, 0.040974538773298264, 0.016696104779839516, 0.010834909044206142, 0.021995414048433304, 0.026634229347109795, 0.008344462141394615, 0.02228039689362049, 0.08787969499826431, 0.29156264662742615], [0.21186737716197968, 0.04393219202756882, 0.0014640704030171037, 0.05318685621023178, 0.14203065633773804, 0.3624117374420166, 0.021714389324188232, 0.014274399727582932, 0.13433770835399628, 6.445393955800682e-05, 8.513812645105645e-05, 7.212532364064828e-05, 1.548225736769382e-05, 7.369105787802255e-06, 4.6209846914280206e-05, 1.3502384717867244e-05, 0.00021107771317474544, 0.014265209436416626], [0.003460004460066557, 0.051055293530225754, 0.43775674700737, 0.0006145794177427888, 0.00042350549483671784, 0.0007477101753465831, 0.0001265664614038542, 0.00026412849547341466, 1.8129728118765343e-07, 0.505203127861023, 8.294246981677134e-06, 1.8501513068258646e-06, 1.2970574516657507e-06, 1.0654006473487243e-05, 7.009198270679917e-06, 3.998662214144133e-05, 1.5119610907277092e-05, 0.00026396935572847724], [0.41690295934677124, 0.0053331442177295685, 0.0014837923226878047, 0.013383976183831692, 0.04633897542953491, 0.050609394907951355, 0.008958258666098118, 0.050291258841753006, 0.0004975793999619782, 6.557715096278116e-05, 0.31323742866516113, 0.010914706625044346, 0.023956771939992905, 0.0010457405587658286, 0.005392167251557112, 0.0008223872864618897, 0.0005025999271310866, 0.05026330426335335], [0.5122829079627991, 0.005566535051912069, 0.0013814177364110947, 0.10206595063209534, 0.0401250422000885, 0.006458235438913107, 0.001401208806782961, 0.010543501935899258, 7.27823717170395e-05, 4.491194704314694e-05, 0.005899252835661173, 0.3013988137245178, 0.0011722436174750328, 4.4329732190817595e-05, 0.0009176994790323079, 3.17638368869666e-05, 5.63097491976805e-05, 0.010537066496908665], [0.08870083093643188, 0.0009028120548464358, 0.0003147684328723699, 0.0008583693415857852, 0.0003239319194108248, 0.001325243036262691, 0.00037135224556550384, 0.004964462947100401, 6.686447250103811e-06, 1.0293360901414417e-05, 0.0031863774638623, 0.00021197699243202806, 0.8793156743049622, 0.005676909349858761, 0.006152795627713203, 0.002662673592567444, 5.35241088073235e-05, 0.004961393773555756], [0.03703493997454643, 0.0004511882143560797, 0.0058209593407809734, 0.0017508795717731118, 0.002227526856586337, 0.011733775958418846, 0.0005065074074082077, 0.004124392755329609, 2.0117299754929263e-06, 1.0014276995207183e-05, 3.1032654078444466e-05, 1.6811654859338887e-05, 0.0006639542407356203, 0.7989490628242493, 0.011034205555915833, 0.12151113897562027, 1.0275533895764966e-05, 0.004121394362300634], [0.09761098027229309, 0.0072177317924797535, 0.003202045802026987, 0.010493570938706398, 0.0026305660139769316, 0.005863823462277651, 0.008223390206694603, 0.1660657823085785, 0.0008801348158158362, 0.00023477806826122105, 0.0010435476433485746, 0.00019575085025280714, 0.0033947741612792015, 0.08688521385192871, 0.4171500504016876, 0.021845387294888496, 0.0011151924263685942, 0.16594728827476501], [0.037100572139024734, 0.0003243070386815816, 0.008809557184576988, 0.0005745005328208208, 0.0005834014737047255, 0.010504172183573246, 0.00014711671974509954, 0.003283532103523612, 2.4186563223338453e-06, 0.00021169953106436878, 2.3732500267215073e-05, 1.9980481738457456e-05, 0.0010989359579980373, 0.4316554367542267, 0.004578051157295704, 0.4977775514125824, 2.3793620130163617e-05, 0.003281275276094675], [0.09668385982513428, 0.002801962196826935, 0.0017192071536555886, 0.002033411990851164, 0.0010661925189197063, 0.0013035498559474945, 0.06394456326961517, 0.2897103726863861, 0.08552973717451096, 0.005140807945281267, 0.0018749397713690996, 0.0016754824900999665, 0.001237424905411899, 0.001635125488974154, 0.001261145225726068, 0.0015869814669713378, 0.1512056440114975, 0.289589524269104], [0.002138751093298197, 0.00031957030296325684, 0.0012486414052546024, 0.0005021782126277685, 0.0001471922150813043, 0.00037346058525145054, 0.0008517515379935503, 0.2916206419467926, 0.17560240626335144, 0.04096778482198715, 0.016696181148290634, 0.010835599154233932, 0.021996134892106056, 0.026632945984601974, 0.008343103341758251, 0.022278469055891037, 0.08789017051458359, 0.29155492782592773]], [[0.021666107699275017, 0.21407239139080048, 0.2005547285079956, 0.08653931319713593, 0.05317966267466545, 0.07244014739990234, 0.03771384060382843, 0.10874711722135544, 0.01670624502003193, 0.01719953492283821, 0.04360039532184601, 0.0029142647981643677, 0.00244432152248919, 0.0017276890575885773, 0.0017993681831285357, 0.0021661303471773863, 0.007836530916392803, 0.10869228094816208], [0.004052462987601757, 0.021947568282485008, 0.23919431865215302, 0.004937307443469763, 0.0004404462524689734, 0.0012528635561466217, 0.02067948877811432, 0.17231342196464539, 0.008274193853139877, 0.2038782387971878, 0.0005966951721347868, 0.0008999836281873286, 0.0008433397160843015, 0.00040884106419980526, 0.00026150161284022033, 0.005645154044032097, 0.14210066199302673, 0.17227353155612946], [0.004032894503325224, 0.026512708514928818, 0.11988885700702667, 0.0069366563111543655, 0.0007886533858254552, 0.00145362364128232, 0.012098325416445732, 0.23383815586566925, 0.0049386098980903625, 0.21953752636909485, 0.002158285351470113, 0.0025267035234719515, 0.0014490664470940828, 0.00040233979234471917, 0.0003192579897586256, 0.0027693170122802258, 0.1265987902879715, 0.23375029861927032], [0.009650912135839462, 0.036195408552885056, 0.2977176606655121, 0.014963374473154545, 0.0004869654949288815, 0.002602607710286975, 0.02138880081474781, 0.0870053619146347, 0.010251347906887531, 0.37838515639305115, 0.00037966904346831143, 0.0005098389810882509, 0.0005717257154174149, 0.00014348805416375399, 3.633650703704916e-05, 0.0018084277398884296, 0.05092282220721245, 0.08698012679815292], [0.023096203804016113, 0.030579233542084694, 0.16933898627758026, 0.028014307841658592, 0.0020434274338185787, 0.011983667500317097, 0.019098104909062386, 0.17186693847179413, 0.026374392211437225, 0.2567598819732666, 0.0018825097940862179, 0.004683643579483032, 0.0022303760051727295, 0.0030825806315988302, 0.0003789809416048229, 0.016115840524435043, 0.060652196407318115, 0.17181861400604248], [0.01391972042620182, 0.016203653067350388, 0.12498446553945541, 0.008557859808206558, 0.000642427708953619, 0.002549248980358243, 0.009172610007226467, 0.05286700651049614, 0.008707382716238499, 0.6594030857086182, 0.002156902337446809, 0.001841633697040379, 0.0018464891472831368, 0.0007740722503513098, 0.00030241278000175953, 0.005002464167773724, 0.03821687772870064, 0.0528515949845314], [0.09384769946336746, 0.032413456588983536, 0.02897675707936287, 0.034552235156297684, 0.003678762586787343, 0.008360813371837139, 0.008671424351632595, 0.34156090021133423, 0.01939394511282444, 0.033503588289022446, 0.0018972273683175445, 0.0033829559106379747, 0.0013939763884991407, 0.0012183415237814188, 0.0004710520152002573, 0.004058591090142727, 0.04120279848575592, 0.34141549468040466], [0.02580040879547596, 0.010319427587091923, 0.0046037063002586365, 0.024968039244413376, 0.0170565377920866, 0.012372422963380814, 0.013925977051258087, 0.3483527898788452, 0.08296313136816025, 0.004419094417244196, 0.008384278044104576, 0.026557784527540207, 0.010917679406702518, 0.014303931966423988, 0.006504778750240803, 0.006509237922728062, 0.03385286033153534, 0.3481878936290741], [0.023603733628988266, 0.07933028787374496, 0.07777489721775055, 0.13375963270664215, 0.07620099931955338, 0.08568195253610611, 0.010809707455337048, 0.1747809201478958, 0.07931829243898392, 0.015624086372554302, 0.04743552207946777, 0.008941630832850933, 0.004871435463428497, 0.0007193558849394321, 0.0005888429586775601, 0.0020045440178364515, 0.003887325990945101, 0.17466695606708527], [0.0001259101409232244, 0.006392784416675568, 0.9336204528808594, 0.00018870012718252838, 4.796634675585665e-05, 0.00022459527826867998, 0.0002337440091650933, 0.020495574921369553, 0.00016424848581664264, 0.016068371012806892, 0.0002120453427778557, 6.048521390766837e-05, 3.899563580489485e-06, 9.941213647834957e-06, 1.7128839999713819e-06, 9.470999066252261e-05, 0.0015678530326113105, 0.020487016066908836], [0.0029651715885847807, 0.03556936979293823, 0.4912947416305542, 0.0007020495249889791, 0.0006074365228414536, 0.0006820547278039157, 0.005633796099573374, 0.14433160424232483, 0.0015317407669499516, 0.12184523046016693, 0.014698156155645847, 0.005907515995204449, 0.0023522262927144766, 0.0007170831086114049, 0.0017987230094149709, 0.012505895458161831, 0.012596992775797844, 0.1442601978778839], [0.006222984753549099, 0.0940578356385231, 0.33427557349205017, 0.006282632239162922, 0.0025040977634489536, 0.004047761671245098, 0.016485268250107765, 0.14239251613616943, 0.009402062743902206, 0.09855040162801743, 0.04229509457945824, 0.01202149223536253, 0.014264372177422047, 0.007097482681274414, 0.009744545444846153, 0.031748924404382706, 0.02626054547727108, 0.14234645664691925], [0.003306315978989005, 0.040133267641067505, 0.31697210669517517, 0.0025134950410574675, 0.0007555820629931986, 0.007763315923511982, 0.01246658805757761, 0.14210174977779388, 0.006077309139072895, 0.2013273686170578, 0.03359627351164818, 0.00436847610399127, 0.010608010925352573, 0.0098935067653656, 0.002708820393308997, 0.03745795041322708, 0.02589484676718712, 0.14205507934093475], [0.002151448279619217, 0.013902489095926285, 0.10603442043066025, 0.002527141710743308, 0.006300575565546751, 0.017435980960726738, 0.0063188038766384125, 0.2478872537612915, 0.01098267175257206, 0.045045558363199234, 0.0036024563014507294, 0.004384548403322697, 0.003902456723153591, 0.06953666359186172, 0.017934206873178482, 0.16909614205360413, 0.025187315419316292, 0.2477697879076004], [0.0019573781173676252, 0.00899300817400217, 0.12050911784172058, 0.0009640741627663374, 0.0008903827401809394, 0.005993370898067951, 0.001316782901994884, 0.3351048231124878, 0.0031826712656766176, 0.04266246780753136, 0.0014220468001440167, 0.0025215279310941696, 0.0026351697742938995, 0.0464591346681118, 0.006683823186904192, 0.07873045653104782, 0.005107504315674305, 0.33486634492874146], [0.001350606675259769, 0.01489256788045168, 0.282688707113266, 0.0020902312826365232, 0.002089892281219363, 0.022914255037903786, 0.005472949706017971, 0.14891861379146576, 0.004262707661837339, 0.1774744987487793, 0.0025929841212928295, 0.0019030945841223001, 0.0013272122014313936, 0.035864390432834625, 0.008899674750864506, 0.10917777568101883, 0.029208578169345856, 0.14887118339538574], [0.012726906687021255, 0.01032362598925829, 0.005195222795009613, 0.008197830989956856, 0.005614818073809147, 0.006206143647432327, 0.005685864947736263, 0.42992720007896423, 0.03766636550426483, 0.0017363539664074779, 0.004249212332069874, 0.006793427746742964, 0.002806057222187519, 0.004005604423582554, 0.0039530410431325436, 0.003357840469107032, 0.02186463214457035, 0.429689884185791], [0.02579837292432785, 0.01031865831464529, 0.004603496752679348, 0.024965297430753708, 0.017054619267582893, 0.012371465563774109, 0.013922249898314476, 0.34837713837623596, 0.08295143395662308, 0.004418636206537485, 0.008382088504731655, 0.02655237913131714, 0.010915007442235947, 0.014300347305834293, 0.006503317505121231, 0.006507096812129021, 0.033846452832221985, 0.34821197390556335]], [[0.006490394007414579, 0.0011318130418658257, 0.0011359135387465358, 0.003593339119106531, 0.0007005541701801121, 0.0012307449942454696, 0.0004162069526501, 0.03835965692996979, 0.01870698854327202, 0.05728498473763466, 0.7049698829650879, 0.034266043454408646, 0.03261067345738411, 0.006769775878638029, 0.008648289367556572, 0.009236937388777733, 0.03610576316714287, 0.03834204375743866], [0.00800966378301382, 0.15977148711681366, 0.03824090585112572, 0.2984657287597656, 0.17591187357902527, 0.10533423721790314, 0.03923729434609413, 0.06477070599794388, 0.0029195116367191076, 0.0024070197250694036, 0.0218388419598341, 0.0024069887585937977, 0.002249176148325205, 0.0006060122977942228, 0.003915839362889528, 0.00061478913994506, 0.008556394837796688, 0.06474359333515167], [0.0031356699764728546, 0.01689271256327629, 0.021812688559293747, 0.07619007676839828, 0.029516998678445816, 0.033731237053871155, 0.007169598247855902, 0.39910876750946045, 0.0022212339099496603, 0.0008275677682831883, 0.0012315352214500308, 0.00115491496399045, 0.0016384209739044309, 0.0008648561197333038, 0.002355307573452592, 0.0005271333502605557, 0.0028073310386389494, 0.3988139033317566], [0.018448282033205032, 0.2246318757534027, 0.0903279110789299, 0.10159283131361008, 0.15388080477714539, 0.09631083905696869, 0.08354620635509491, 0.1024564802646637, 0.002647005720064044, 0.002074327552691102, 0.004067458678036928, 0.0008323404472321272, 0.0004959958605468273, 0.0006386688910424709, 0.0012192621361464262, 0.0003219771897420287, 0.014094367623329163, 0.10241340100765228], [0.016371015459299088, 0.14157068729400635, 0.10112287849187851, 0.11200234293937683, 0.08795607089996338, 0.09402554482221603, 0.05555993318557739, 0.18298475444316864, 0.004233238287270069, 0.0025736880488693714, 0.0056203450076282024, 0.000927536457311362, 0.0005453886114992201, 0.0008323276997543871, 0.0014778926270082593, 0.0006439081626012921, 0.008675162680447102, 0.1828772872686386], [0.004777851980179548, 0.03852260485291481, 0.03639886528253555, 0.0434696227312088, 0.01669018529355526, 0.03134234622120857, 0.01246593613177538, 0.4024730920791626, 0.002210477599874139, 0.0010902403155341744, 0.0017199832946062088, 0.000840015069115907, 0.0005620578886009753, 0.000769564532674849, 0.0003664210962597281, 0.0005601440789178014, 0.003567894222214818, 0.40217268466949463], [0.006526848766952753, 0.09907430410385132, 0.04533185437321663, 0.3682357966899872, 0.11016818135976791, 0.0631822794675827, 0.03593853488564491, 0.12610994279384613, 0.001801087986677885, 0.0022454806603491306, 0.005041090771555901, 0.0008078012033365667, 0.0007169779855757952, 0.00038589490577578545, 0.0009724312694743276, 0.00022325311147142202, 0.0071882158517837524, 0.12605005502700806], [0.009834560565650463, 0.017733655869960785, 0.023159196600317955, 0.02018558792769909, 0.008853329345583916, 0.008355662226676941, 0.010585485026240349, 0.4146430194377899, 0.008130893111228943, 0.006499584298580885, 0.0070143952034413815, 0.0076536089181900024, 0.00463853869587183, 0.0037010512314736843, 0.003046890953555703, 0.003565663704648614, 0.027930116280913353, 0.4144688546657562], [0.014309059828519821, 0.005290920380502939, 0.006279794964939356, 0.005204182118177414, 0.0014291023835539818, 0.004766401369124651, 0.0025706724263727665, 0.11817122995853424, 0.011516338214278221, 0.0570836178958416, 0.46053680777549744, 0.044534165412187576, 0.024741604924201965, 0.018005741760134697, 0.015777330845594406, 0.020454421639442444, 0.07120774686336517, 0.11812087148427963], [0.009786107577383518, 0.003811642760410905, 0.004353285767138004, 0.010602249763906002, 0.002790675265714526, 0.0034177936613559723, 0.0014234905829653144, 0.17037814855575562, 0.048350293189287186, 0.029595108702778816, 0.26249581575393677, 0.05717170611023903, 0.06991247087717056, 0.018042510375380516, 0.07768113166093826, 0.020951006561517715, 0.03893953934311867, 0.1702970564365387], [0.017169594764709473, 0.0022879750467836857, 0.0015562738990411162, 0.0022114883176982403, 0.001281628618016839, 0.002897938247770071, 0.0017467513680458069, 0.03709280118346214, 0.07071344554424286, 0.11124570667743683, 0.1957087218761444, 0.1073639914393425, 0.11136071383953094, 0.029186803847551346, 0.032884545624256134, 0.0801125094294548, 0.1580943614244461, 0.03708473965525627], [0.011835029348731041, 0.007109570782631636, 0.017591042444109917, 0.03109542652964592, 0.0027132555842399597, 0.007140154018998146, 0.0011477230582386255, 0.1257842779159546, 0.04741737246513367, 0.12933789193630219, 0.30472415685653687, 0.036633532494306564, 0.031048458069562912, 0.03624887019395828, 0.014054274186491966, 0.027237141504883766, 0.04315374791622162, 0.12572817504405975], [0.006249197758734226, 0.003340657101944089, 0.005344448611140251, 0.007464536465704441, 0.001776551129296422, 0.0026592568028718233, 0.00039766114787198603, 0.23017331957817078, 0.04211774095892906, 0.081845723092556, 0.23610128462314606, 0.03445175662636757, 0.03449711948633194, 0.02058769389986992, 0.01767847128212452, 0.024961819872260094, 0.020338859409093857, 0.23001384735107422], [0.0030787272844463587, 0.0018525606719776988, 0.0067709931172430515, 0.005218512378633022, 0.0010562207316979766, 0.0022206169087439775, 0.00022533483570441604, 0.36330386996269226, 0.03418305888772011, 0.04166083037853241, 0.06716451048851013, 0.02200399339199066, 0.022831663489341736, 0.022722478955984116, 0.009695667773485184, 0.017926188185811043, 0.015044760890305042, 0.36303994059562683], [0.012182031758129597, 0.007318699732422829, 0.006884124595671892, 0.006507262121886015, 0.0021669473499059677, 0.0019069000845775008, 0.0005439266678877175, 0.3435782194137573, 0.04371805489063263, 0.09544778615236282, 0.07654760032892227, 0.011359521187841892, 0.011711527593433857, 0.008049692958593369, 0.004881396424025297, 0.005199748557060957, 0.018667258322238922, 0.3433292806148529], [0.002725719241425395, 0.002156197791919112, 0.0017573233926668763, 0.0035833173897117376, 0.0004367858055047691, 0.0003616970789153129, 0.00022305166930891573, 0.39218461513519287, 0.020214980468153954, 0.027403125539422035, 0.0827830508351326, 0.01591375842690468, 0.018932394683361053, 0.011774372309446335, 0.00868484377861023, 0.006433181930333376, 0.012570851482450962, 0.3918606638908386], [0.010103399865329266, 0.010783174075186253, 0.017116116359829903, 0.05080138146877289, 0.005468753632158041, 0.0055965278297662735, 0.0030990547966212034, 0.3392944633960724, 0.017402147874236107, 0.03390384465456009, 0.07285657525062561, 0.01723777875304222, 0.01113102212548256, 0.003660115646198392, 0.00551272090524435, 0.00393178965896368, 0.052965473383665085, 0.33913561701774597], [0.009832489304244518, 0.017731083557009697, 0.023155085742473602, 0.020180683583021164, 0.008851515129208565, 0.00835371296852827, 0.010584093630313873, 0.4146599769592285, 0.008128835819661617, 0.006498145870864391, 0.007012079935520887, 0.007651477120816708, 0.004637100268155336, 0.0037000556476414204, 0.0030459959525614977, 0.0035646380856633186, 0.027927448973059654, 0.4144856035709381]], [[0.007065205834805965, 0.006132482085376978, 0.023403408005833626, 0.00982634723186493, 0.005099179223179817, 0.009788447059690952, 0.003221652703359723, 0.30124881863594055, 0.08448820561170578, 0.165086030960083, 0.012971051968634129, 0.008067544549703598, 0.004023935180157423, 0.002674829214811325, 0.0045645455829799175, 0.005513140931725502, 0.045713916420936584, 0.301111102104187], [0.007233350072056055, 0.05001747980713844, 0.3268229067325592, 0.045756299048662186, 0.023861879482865334, 0.04794660955667496, 0.010816123336553574, 0.12887047231197357, 0.002376121934503317, 0.21291103959083557, 0.002156053204089403, 0.0031976760365068913, 0.0011382874799892306, 8.202750177588314e-05, 0.00015486216580029577, 0.0010689856717363, 0.006787348072975874, 0.12880252301692963], [0.010313877835869789, 0.12591610848903656, 0.048415664583444595, 0.0853983610868454, 0.051766205579042435, 0.0782974362373352, 0.03913135826587677, 0.1417546421289444, 0.0043435730040073395, 0.16407492756843567, 0.011638413183391094, 0.027739493176341057, 0.011150196194648743, 0.0009288157452829182, 0.0031254002824425697, 0.01874602399766445, 0.03553593531250954, 0.14172348380088806], [0.004559612367302179, 0.14592450857162476, 0.2416878044605255, 0.018995899707078934, 0.027574412524700165, 0.024198755621910095, 0.01741545833647251, 0.24284960329532623, 0.0008624232723377645, 0.02193279191851616, 0.0007057687034830451, 0.0013458245666697621, 0.0008302739006467164, 0.00023461892851628363, 0.00022609585721511394, 0.0007351842359639704, 0.007222023326903582, 0.24269887804985046], [0.003418954322114587, 0.07661040872335434, 0.14934059977531433, 0.027147402986884117, 0.013820446096360683, 0.03959297016263008, 0.009060405194759369, 0.32815641164779663, 0.0005408389843069017, 0.013370566070079803, 0.0007917156326584518, 0.0009572832495905459, 0.0004436059680301696, 0.00021660550555679947, 0.00013423548080027103, 0.00032569427276030183, 0.008131736889481544, 0.32794007658958435], [0.008602975867688656, 0.08282556384801865, 0.3053935170173645, 0.023455241695046425, 0.021215252578258514, 0.037370361387729645, 0.021856650710105896, 0.23099714517593384, 0.002096298150718212, 0.012580648064613342, 0.00178138364572078, 0.003087547840550542, 0.00105760816950351, 0.003101014532148838, 0.0006474469555541873, 0.0009451505029574037, 0.012127549387514591, 0.2308586835861206], [0.006145949941128492, 0.017007773742079735, 0.09145116060972214, 0.014242022298276424, 0.01123705692589283, 0.031113265082240105, 0.016219886019825935, 0.3933916389942169, 0.0020156146492809057, 0.011193164624273777, 0.000835849903523922, 0.0012307940050959587, 0.00030808139126747847, 0.0008417611243203282, 0.00041585814324207604, 0.0006975590367801487, 0.008502845652401447, 0.393149733543396], [0.0182955265045166, 0.011533164419233799, 0.0038304778281599283, 0.011797847226262093, 0.008848976343870163, 0.007533586118370295, 0.013634603470563889, 0.38545721769332886, 0.009614367038011551, 0.0069218291901052, 0.017657971009612083, 0.018942883238196373, 0.015365640632808208, 0.006718448828905821, 0.0068044280633330345, 0.005994752980768681, 0.06566756218671799, 0.38538074493408203], [0.006676082033663988, 0.002007888862863183, 0.009058489464223385, 0.0013850495452061296, 0.0007333643734455109, 0.001723536173813045, 0.0010282605653628707, 0.4099805951118469, 0.015492275357246399, 0.09189413487911224, 0.003293881192803383, 0.004176429007202387, 0.001756592420861125, 0.0027707330882549286, 0.001341667608357966, 0.0034803892485797405, 0.03345203027129173, 0.4097486138343811], [0.004222735296934843, 0.01245082262903452, 0.10468698292970657, 0.006460479460656643, 0.0011615020921453834, 0.005781529471278191, 0.0014881822280585766, 0.09437381476163864, 0.0015681586228311062, 0.48187410831451416, 0.05489327758550644, 0.04226788878440857, 0.03583763167262077, 0.00012878239795099944, 0.0007983724353834987, 0.021268682554364204, 0.0364011712372303, 0.09433592855930328], [0.0012986232759431005, 0.0015676020411774516, 0.009153150022029877, 0.00048563204472884536, 0.00026010253350250423, 0.0002518952824175358, 0.00019228149903938174, 0.3455808460712433, 0.000588804658036679, 0.2475433051586151, 0.0037374431267380714, 0.010429548099637032, 0.0018438748084008694, 0.0002893600903917104, 0.0006938382866792381, 0.0012635343009606004, 0.029452519491314888, 0.3453676700592041], [0.0022740166168659925, 0.0013499644119292498, 0.01357035618275404, 0.0008809705032035708, 0.0004941539955325425, 0.0012116626603528857, 0.0005230690003372729, 0.41780105233192444, 0.0023135135415941477, 0.08425747603178024, 0.0030617916490882635, 0.007032271474599838, 0.0041477270424366, 0.002367089968174696, 0.003027859842404723, 0.004887694958597422, 0.03324025869369507, 0.41755905747413635], [0.001862861099652946, 0.0007444010698236525, 0.0037125719245523214, 0.0011326111853122711, 0.0005776046891696751, 0.0017818398773670197, 0.001141619635745883, 0.41413241624832153, 0.000900838291272521, 0.02334659732878208, 0.007886509411036968, 0.018476249650120735, 0.006891705561429262, 0.018449291586875916, 0.008474410511553288, 0.005782661028206348, 0.07078692317008972, 0.41391900181770325], [0.0010048565454781055, 9.533227421343327e-05, 0.00016270675405394286, 8.139081910485402e-05, 0.0005068757454864681, 0.0004975615302100778, 0.0004378907033242285, 0.4482923448085785, 0.0037505694199353456, 0.0008229029481299222, 0.004364596214145422, 0.014322122558951378, 0.004308164119720459, 0.008696288801729679, 0.009163247421383858, 0.005125922616571188, 0.05027499422430992, 0.44809210300445557], [0.0008486209553666413, 0.00011925188300665468, 0.00020196237892378122, 8.127417822834104e-05, 0.00022132406593300402, 7.85752636147663e-05, 0.0002250190736958757, 0.4771670401096344, 0.0006658027996309102, 0.001879681833088398, 0.0010496588656678796, 0.006202373653650284, 0.0019209255697205663, 0.004571006167680025, 0.006186334881931543, 0.0024336236529052258, 0.019314764067530632, 0.47683268785476685], [0.01005719043314457, 0.0043390654027462006, 0.016896333545446396, 0.0018567603547126055, 0.002026359550654888, 0.006532595492899418, 0.004569150973111391, 0.21925221383571625, 0.018241025507450104, 0.04142820090055466, 0.02260487712919712, 0.048833414912223816, 0.03453337028622627, 0.07904116809368134, 0.05696048587560654, 0.01823863573372364, 0.19540287554264069, 0.21918630599975586], [0.002404416911303997, 0.0007968454156070948, 0.0019106515683233738, 0.0016974007012322545, 0.0005678660236299038, 0.0012422464787960052, 0.0006914600962772965, 0.46717560291290283, 0.004122971091419458, 0.009228494018316269, 0.003299559699371457, 0.005985158495604992, 0.0027839227113872766, 0.004171378444880247, 0.0018623977666720748, 0.002933064941316843, 0.02220151759684086, 0.4669250547885895], [0.018290651962161064, 0.011530481278896332, 0.003829855239018798, 0.011795339174568653, 0.008846825920045376, 0.007531921844929457, 0.013631012290716171, 0.38548389077186584, 0.009612529538571835, 0.0069196587428450584, 0.0176529623568058, 0.018937375396490097, 0.015360943041741848, 0.006718080025166273, 0.006802627816796303, 0.005993215832859278, 0.06565523892641068, 0.385407418012619]], [[0.011528701521456242, 0.054237473756074905, 0.02721344120800495, 0.12930776178836823, 0.02720172517001629, 0.13311035931110382, 0.10641521960496902, 0.20495015382766724, 0.04201659560203552, 0.014715339988470078, 0.0017968160100281239, 0.0011737305903807282, 0.0009911875240504742, 0.0009450296638533473, 8.708091627340764e-05, 0.00212856475263834, 0.037335146218538284, 0.20484575629234314], [0.030130671337246895, 0.06721463799476624, 0.01773366704583168, 0.07397180795669556, 0.04931989684700966, 0.018314698711037636, 0.05172189697623253, 0.33469656109809875, 0.002740624826401472, 0.002090616850182414, 0.00031511817360296845, 0.00042963854502886534, 0.00019665522268041968, 0.0001331356179434806, 0.00020181645231787115, 0.00021210822160355747, 0.01602344773709774, 0.33455297350883484], [0.021905558183789253, 0.046953968703746796, 0.02222965471446514, 0.02199309691786766, 0.013661190867424011, 0.00863358099013567, 0.02813616581261158, 0.4082218110561371, 0.0017256283899769187, 0.0036374698393046856, 0.0003374071093276143, 0.00047666713362559676, 0.0002408519940217957, 0.0002375279291300103, 0.00030257803155109286, 0.00016552300076000392, 0.013138528913259506, 0.4080027639865875], [0.02252563089132309, 0.07945697754621506, 0.014320066198706627, 0.017024261876940727, 0.01162798423320055, 0.004297558683902025, 0.02859124355018139, 0.401214063167572, 0.0027216868475079536, 0.00044757549767382443, 7.260489655891433e-05, 0.0001300082221860066, 3.4180535294581205e-05, 4.710323628387414e-05, 1.7441236195736565e-05, 3.444434696575627e-05, 0.0164041630923748, 0.4010329246520996], [0.010347781702876091, 0.054033420979976654, 0.0053180824033916, 0.02547752484679222, 0.014010565355420113, 0.001985415816307068, 0.017429152503609657, 0.43099191784858704, 0.0013750665821135044, 0.0003619804629124701, 3.988966636825353e-05, 8.389159484067932e-05, 1.2218052688695025e-05, 1.0855452273972332e-05, 5.3779349400429055e-06, 1.428339510312071e-05, 0.007784753106534481, 0.4307178258895874], [0.018477382138371468, 0.05871026590466499, 0.012478077784180641, 0.04830429330468178, 0.02442808821797371, 0.007472063880413771, 0.015499564819037914, 0.39893776178359985, 0.0032446926925331354, 0.0008435590425506234, 0.00021153494890313596, 0.000356239324901253, 0.00013605182175524533, 0.00010538903734413907, 5.0781603931682184e-05, 8.062084089033306e-05, 0.011910319328308105, 0.39875328540802], [0.058276500552892685, 0.04552600905299187, 0.007141733076423407, 0.06008978188037872, 0.056633900851011276, 0.019338931888341904, 0.018752768635749817, 0.360116183757782, 0.007459891494363546, 0.0009672177257016301, 0.00015915289986878633, 0.00015036440163385123, 6.588760152226314e-05, 2.19999419641681e-05, 2.3232491003000177e-05, 2.054629112535622e-05, 0.005366697441786528, 0.3598892390727997], [0.006375780329108238, 0.004033134784549475, 0.005677571054548025, 0.004202685318887234, 0.003724876558408141, 0.0047480217181146145, 0.00433821277692914, 0.4766741991043091, 0.00209832563996315, 0.0017323318170383573, 0.0009401958086527884, 0.0011404091492295265, 0.0006154117290861905, 0.001297605107538402, 0.000467635050881654, 0.0007299950812011957, 0.004892949014902115, 0.476310670375824], [0.02139473892748356, 0.01064989622682333, 0.004096803721040487, 0.014623766764998436, 0.011167708784341812, 0.01625748723745346, 0.10125309228897095, 0.3580736219882965, 0.007981712929904461, 0.007483798544853926, 0.0016078919870778918, 0.0008148069609887898, 0.00042509924969635904, 0.00015069983783178031, 6.730470340698957e-05, 0.00023842712107580155, 0.08588311821222305, 0.3578300476074219], [0.013039274141192436, 0.02705606259405613, 0.00688618328422308, 0.010372494347393513, 0.004922821186482906, 0.005470875650644302, 0.07090236246585846, 0.33862075209617615, 0.014479460194706917, 0.034266188740730286, 0.007711159065365791, 0.007623240351676941, 0.0017623944440856576, 0.0017239321023225784, 0.0012980999890714884, 0.0014633794780820608, 0.11397463083267212, 0.3384266495704651], [0.017331188544631004, 0.032682958990335464, 0.011563564650714397, 0.009640369564294815, 0.007162199355661869, 0.03300080820918083, 0.29163649678230286, 0.0869867131114006, 0.16190385818481445, 0.10005512833595276, 0.008930199779570103, 0.005299144424498081, 0.0012920401059091091, 0.002452644519507885, 4.004616857855581e-05, 0.001417778548784554, 0.14166638255119324, 0.08693838864564896], [0.024272656068205833, 0.03268452733755112, 0.01282554492354393, 0.012100198306143284, 0.006049585994333029, 0.011142182163894176, 0.239413782954216, 0.1610245555639267, 0.15628933906555176, 0.04542924836277962, 0.00712569709867239, 0.002432897686958313, 0.0018712962046265602, 0.0020789087284356356, 0.00016168583533726633, 0.000977438990958035, 0.1231834888458252, 0.16093702614307404], [0.027165468782186508, 0.013020861893892288, 0.014759107492864132, 0.007360607851296663, 0.004202057141810656, 0.014214088208973408, 0.05916544422507286, 0.14478328824043274, 0.18289409577846527, 0.1102871298789978, 0.08099158108234406, 0.02466009370982647, 0.02500559203326702, 0.01911466009914875, 0.002016629558056593, 0.015311318449676037, 0.11034025251865387, 0.14470770955085754], [0.01400767546147108, 0.026919322088360786, 0.020397137850522995, 0.0052842325530946255, 0.0030121931340545416, 0.005896985065191984, 0.11226453632116318, 0.16386951506137848, 0.1256628930568695, 0.10081946849822998, 0.054485369473695755, 0.04963555186986923, 0.020481882616877556, 0.010506516322493553, 0.005927978549152613, 0.011666379868984222, 0.10538679361343384, 0.1637754589319229], [0.04591706767678261, 0.019192958250641823, 0.0050673410296440125, 0.007772371638566256, 0.003931316081434488, 0.0037589913699775934, 0.09298351407051086, 0.1706009805202484, 0.088727667927742, 0.06450195610523224, 0.03869980573654175, 0.06784173101186752, 0.027600158005952835, 0.011853359639644623, 0.005446311552077532, 0.002757043344900012, 0.17283150553703308, 0.17051583528518677], [0.014584186486899853, 0.009322872385382652, 0.008526623249053955, 0.0029394717421382666, 0.0009729793528094888, 0.0037885578349232674, 0.07155149430036545, 0.31793031096458435, 0.02416328340768814, 0.060254137963056564, 0.012104470282793045, 0.023181574419140816, 0.014997605234384537, 0.00908589456230402, 0.00975025724619627, 0.006368233822286129, 0.09276486188173294, 0.3177131414413452], [0.04730251803994179, 0.013121413066983223, 0.005337106063961983, 0.00891196820884943, 0.006792128086090088, 0.006959282327443361, 0.026463648304343224, 0.3754878044128418, 0.045536722987890244, 0.01527316216379404, 0.012610168196260929, 0.01076988223940134, 0.0033724470995366573, 0.0009249246795661747, 0.0004930008435621858, 0.0005539054400287569, 0.0448472686111927, 0.37524259090423584], [0.006375173572450876, 0.0040322281420230865, 0.005676029250025749, 0.004201323259621859, 0.003723451402038336, 0.0047464449889957905, 0.004337191581726074, 0.4766797423362732, 0.002097907941788435, 0.001732012489810586, 0.0009399947593919933, 0.0011400439543649554, 0.0006152486894279718, 0.0012972031254321337, 0.000467526784632355, 0.0007297185366041958, 0.0048921681009233, 0.4763166606426239]], [[0.007102787494659424, 0.009760402143001556, 0.0016009225510060787, 0.03353908285498619, 0.020473118871450424, 0.008725096471607685, 0.02029731124639511, 0.25741010904312134, 0.16263630986213684, 0.006516450084745884, 0.013156004250049591, 0.03855215385556221, 0.019644318148493767, 0.0025722947902977467, 0.011170662008225918, 0.0034595842007547617, 0.12605373561382294, 0.25732967257499695], [0.0059470864944159985, 0.036954473704099655, 0.046262867748737335, 0.19597771763801575, 0.15340659022331238, 0.04713646322488785, 0.05318642780184746, 0.16415517032146454, 0.08054576069116592, 0.006746793165802956, 0.0012086376082152128, 0.006392796523869038, 0.001633533975109458, 0.0015386559534817934, 0.001687744166702032, 0.0008567022741772234, 0.032270245254039764, 0.16409240663051605], [0.005190955940634012, 0.01486253086477518, 0.02926573157310486, 0.04020613804459572, 0.056116733700037, 0.020893240347504616, 0.044811148196458817, 0.3384983539581299, 0.059014350175857544, 0.0029771695844829082, 0.0011134358355775476, 0.006708336062729359, 0.0010651485063135624, 0.0006724871345795691, 0.0004612368065863848, 0.0007512632291764021, 0.03908266872167587, 0.33830907940864563], [0.00614264328032732, 0.051796622574329376, 0.029166098684072495, 0.13552556931972504, 0.16507147252559662, 0.026538753882050514, 0.07765547186136246, 0.22391259670257568, 0.01842495985329151, 0.003193104173988104, 0.0009989371756091714, 0.006710894405841827, 0.0004448162508197129, 0.00043019428267143667, 0.0011673257686197758, 0.00029575719963759184, 0.028703905642032623, 0.22382089495658875], [0.0021886294707655907, 0.01857449859380722, 0.010522926226258278, 0.07945528626441956, 0.12380620092153549, 0.0231724064797163, 0.06391123682260513, 0.28614968061447144, 0.031654056161642075, 0.0020006359554827213, 0.0019043951760977507, 0.0244735199958086, 0.001640762435272336, 0.0006452033994719386, 0.0014693917473778129, 0.0007650083280168474, 0.041634753346443176, 0.2860313951969147], [0.002833138220012188, 0.036932170391082764, 0.03098175674676895, 0.05929810553789139, 0.07016408443450928, 0.03553943708539009, 0.028853051364421844, 0.3325783610343933, 0.03314932808279991, 0.003207273781299591, 0.0017992042703554034, 0.008707494474947453, 0.001243322272785008, 0.000675863993819803, 0.0006381431012414396, 0.0008576338877901435, 0.020140862092375755, 0.3324007987976074], [0.0026471104938536882, 0.017526663839817047, 0.007580991368740797, 0.060689087957143784, 0.22612027823925018, 0.038697175681591034, 0.043678443878889084, 0.2704411745071411, 0.01878707855939865, 0.0010377460857853293, 0.00046127213863655925, 0.005291948094964027, 0.0008293152786791325, 0.0005530249909497797, 0.0012306584976613522, 0.0003710864402819425, 0.03374448046088219, 0.27031245827674866], [0.056961409747600555, 0.009968402795493603, 0.004784039221704006, 0.003147813258692622, 0.005059734918177128, 0.004263469949364662, 0.00917611550539732, 0.4092007875442505, 0.004630301147699356, 0.006308042909950018, 0.008962309919297695, 0.006886001210659742, 0.009120973758399487, 0.004487775266170502, 0.00294028059579432, 0.009615054354071617, 0.035458069294691086, 0.40902939438819885], [0.005293082445859909, 0.011015460826456547, 0.0045346589758992195, 0.10305464267730713, 0.107365183532238, 0.033651985228061676, 0.036609821021556854, 0.24388639628887177, 0.04631182551383972, 0.0024154288694262505, 0.00950362253934145, 0.03279130533337593, 0.008190811611711979, 0.0038863979279994965, 0.005534972529858351, 0.0014821701915934682, 0.100704126060009, 0.2437680959701538], [0.026736753061413765, 0.00920577347278595, 0.016680430620908737, 0.010594481602311134, 0.01880458928644657, 0.007805191446095705, 0.011724095791578293, 0.33949270844459534, 0.0564594492316246, 0.013237079605460167, 0.006979082245379686, 0.017343418672680855, 0.008569139987230301, 0.0031484311912208796, 0.003653479041531682, 0.0030012058559805155, 0.10725878924131393, 0.33930596709251404], [0.025324441492557526, 0.016434580087661743, 0.02178897149860859, 0.05555824935436249, 0.09438662230968475, 0.04813609644770622, 0.011558497324585915, 0.18209709227085114, 0.12942489981651306, 0.024509696289896965, 0.03194648399949074, 0.05713570490479469, 0.013905363157391548, 0.003940650261938572, 0.006215511821210384, 0.0072084045968949795, 0.08841653913259506, 0.18201212584972382], [0.009710355661809444, 0.01674424111843109, 0.03122565522789955, 0.05929179489612579, 0.21420139074325562, 0.09645689278841019, 0.008308016695082188, 0.06534264981746674, 0.1764276623725891, 0.038781870156526566, 0.027040774002671242, 0.053436774760484695, 0.01670089177787304, 0.008527557365596294, 0.01634928397834301, 0.008361243642866611, 0.08776841312646866, 0.06532452255487442], [0.01613941788673401, 0.03974241018295288, 0.1527465581893921, 0.05243587866425514, 0.043006785213947296, 0.10094435513019562, 0.005052422638982534, 0.11505065858364105, 0.06285449117422104, 0.0977252721786499, 0.01674591563642025, 0.009632403030991554, 0.020437736064195633, 0.04057471454143524, 0.023716924712061882, 0.04972586780786514, 0.03847137838602066, 0.11499683558940887], [0.02354186400771141, 0.024907272309064865, 0.1435699462890625, 0.03602318838238716, 0.023998267948627472, 0.03552643954753876, 0.005635477136820555, 0.13283555209636688, 0.11568056046962738, 0.13890068233013153, 0.011065718717873096, 0.020565956830978394, 0.01760556548833847, 0.022415410727262497, 0.028424428775906563, 0.019881675019860268, 0.0666411817073822, 0.1327807605266571], [0.022522306069731712, 0.019050374627113342, 0.12439615279436111, 0.0437474325299263, 0.024538012221455574, 0.07011444866657257, 0.00726452749222517, 0.19419321417808533, 0.08179087936878204, 0.0490943007171154, 0.011212260462343693, 0.04860103875398636, 0.022956663742661476, 0.02367125079035759, 0.005138167645782232, 0.01573059894144535, 0.04190340265631676, 0.19407500326633453], [0.016246741637587547, 0.030979547649621964, 0.15724162757396698, 0.02507607266306877, 0.027815988287329674, 0.0383831225335598, 0.005896523129194975, 0.1414041370153427, 0.04573839157819748, 0.12167516350746155, 0.006594080477952957, 0.01921323500573635, 0.018827741965651512, 0.05242546647787094, 0.05709061771631241, 0.03316973149776459, 0.06088057532906532, 0.14134125411510468], [0.008390429429709911, 0.003748873248696327, 0.0022748345509171486, 0.010337778367102146, 0.03177941218018532, 0.007678635884076357, 0.012900236994028091, 0.35861900448799133, 0.026506569236516953, 0.004345961846411228, 0.003360471222549677, 0.015223859809339046, 0.004206427838653326, 0.0012987389927729964, 0.003404877381399274, 0.001674624509178102, 0.14579027891159058, 0.35845890641212463], [0.056954316794872284, 0.00996638648211956, 0.004782998468726873, 0.0031471974216401577, 0.005059034563601017, 0.004262750968337059, 0.00917469896376133, 0.4092165231704712, 0.004629152361303568, 0.006306655704975128, 0.00895994994789362, 0.006884371861815453, 0.009118461050093174, 0.004486319608986378, 0.0029394924640655518, 0.009612462483346462, 0.03545437753200531, 0.40904492139816284]], [[0.0066305967047810555, 0.01580345630645752, 0.0040158540941774845, 0.4263521730899811, 0.046586956828832626, 0.12947706878185272, 0.09570223838090897, 0.1313149482011795, 0.00436998438090086, 0.0002532796061132103, 0.0007204607245512307, 0.00023264475748874247, 0.0004055383033119142, 6.878169369883835e-05, 0.00010846233635675162, 3.875118636642583e-05, 0.006672313436865807, 0.13124652206897736], [0.04126134514808655, 0.010204151272773743, 0.024260113015770912, 0.016467217355966568, 0.003642029594630003, 0.03397466242313385, 0.013629022054374218, 0.41925501823425293, 0.008966125547885895, 0.0003786943561863154, 0.000160019684699364, 0.00037253694608807564, 2.601123742351774e-05, 0.00024672149447724223, 2.051521369139664e-05, 0.0002893713244702667, 0.0078124492429196835, 0.4190339744091034], [0.031770143657922745, 0.10870874673128128, 0.03764163702726364, 0.05476754903793335, 0.018123459070920944, 0.13684725761413574, 0.024098902940750122, 0.2751730978488922, 0.007983311079442501, 0.005016759037971497, 0.0012208035914227366, 0.002105941530317068, 0.00020371335267554969, 0.0017775720916688442, 0.0001676483516348526, 0.0019228404853492975, 0.017399217933416367, 0.27507150173187256], [0.013640441931784153, 0.02683480642735958, 0.006268450990319252, 0.016705112531781197, 0.005117951892316341, 0.02258526347577572, 0.008502642624080181, 0.4398016035556793, 0.009291453287005424, 0.0005745891248807311, 0.0001804022176656872, 0.00030799361411482096, 2.1994870621711016e-05, 0.00011971703497692943, 1.6065248928498477e-05, 0.00024879921693354845, 0.01024728175252676, 0.43953534960746765], [0.010035095736384392, 0.025803711265325546, 0.013055582530796528, 0.07138121873140335, 0.014869983308017254, 0.01894157938659191, 0.006507670506834984, 0.4131014049053192, 0.0038774842396378517, 0.0005826012929901481, 0.0003163070068694651, 0.00026603860897012055, 6.20315404376015e-05, 9.131369006354362e-05, 2.8971715437364765e-05, 0.0018592940177768469, 0.006381368730217218, 0.41283831000328064], [0.03325716778635979, 0.050601787865161896, 0.010358616709709167, 0.268787145614624, 0.10390398651361465, 0.02643989399075508, 0.025430072098970413, 0.21592293679714203, 0.012378187850117683, 0.0011926514562219381, 0.001136707840487361, 0.0013102462980896235, 0.0005072283674962819, 0.0003469582588877529, 0.0013521937653422356, 0.002272832440212369, 0.028962470591068268, 0.21583889424800873], [0.027621397748589516, 0.011487078852951527, 0.012888765893876553, 0.07383536547422409, 0.04610864445567131, 0.03245430812239647, 0.032126955687999725, 0.3661448657512665, 0.009207937866449356, 0.000938081881031394, 0.0004940330400131643, 0.0010819995077326894, 0.00102220568805933, 0.0003784167056437582, 0.0012624813243746758, 0.0009011913207359612, 0.016089266166090965, 0.3659570515155792], [0.04305632784962654, 0.02233712375164032, 0.02576764114201069, 0.02606096677482128, 0.018852701410651207, 0.02201680652797222, 0.03822287172079086, 0.2820354700088501, 0.014198416844010353, 0.010577303357422352, 0.010965880937874317, 0.01426728256046772, 0.01262750569730997, 0.023771146312355995, 0.026261262595653534, 0.02625400200486183, 0.10073482245206833, 0.28199249505996704], [0.032033778727054596, 0.0010692835785448551, 0.0010314369574189186, 0.006944156251847744, 0.002281618071720004, 0.0020238899160176516, 0.013113769702613354, 0.39806950092315674, 0.02143007330596447, 0.0019483031937852502, 0.0005346675752662122, 0.0012402641586959362, 0.0006596189923584461, 0.001635891618207097, 0.0022678005043417215, 0.0007822001934982836, 0.1150999590754509, 0.39783382415771484], [0.019556136801838875, 0.00216502882540226, 0.0050071789883077145, 0.0049835857935249805, 0.0010128094581887126, 0.006861844565719366, 0.0034731829073280096, 0.4026062786579132, 0.09605776518583298, 0.005283326841890812, 0.005764338653534651, 0.004983127117156982, 0.00024710697471164167, 0.0028765290044248104, 0.0001459544146200642, 0.0009141254122368991, 0.035640086978673935, 0.40242165327072144], [0.026613907888531685, 0.0008175998227670789, 0.0007449227850884199, 0.0007702913717366755, 0.0006906467606313527, 0.0017040771199390292, 0.0025470806285738945, 0.3826439082622528, 0.07682577520608902, 0.012663456611335278, 0.012795879505574703, 0.04006350412964821, 0.005559956654906273, 0.0019086379325017333, 0.0001451418356737122, 0.001498522120527923, 0.04957786947488785, 0.3824288547039032], [0.012242220342159271, 0.0028645494021475315, 0.0034075663425028324, 0.002500425558537245, 0.0007093750173225999, 0.005584878847002983, 0.005910238716751337, 0.3741600215435028, 0.09756489843130112, 0.018415842205286026, 0.020218566060066223, 0.01419015321880579, 0.007458850275725126, 0.005804592277854681, 0.00031233581830747426, 0.00974093284457922, 0.044961098581552505, 0.3739534914493561], [0.01221540942788124, 0.0004111038288101554, 0.0005061092087998986, 0.00044226960744708776, 0.00017532033962197602, 0.002729256171733141, 0.005382895935326815, 0.24820296466350555, 0.05283341556787491, 0.028117872774600983, 0.09409227222204208, 0.1617394983768463, 0.026194920763373375, 0.009609011933207512, 0.006369629874825478, 0.01565433107316494, 0.0872550755739212, 0.2480686604976654], [0.004077843390405178, 0.0012604896910488605, 0.0005061991396360099, 0.0011054676724597812, 0.00040310597978532314, 0.004709941800683737, 0.0029859431087970734, 0.20387011766433716, 0.015456938184797764, 0.007602012250572443, 0.05962659791111946, 0.16652652621269226, 0.049708928912878036, 0.017274677753448486, 0.037594228982925415, 0.16079136729240417, 0.06270938366651535, 0.20379017293453217], [0.0041514793410897255, 0.00035947992000728846, 0.00030754439649172127, 0.0003878830175381154, 0.00015078675642143935, 0.0006799915572628379, 0.004491663072258234, 0.39818114042282104, 0.007402351126074791, 0.004963025450706482, 0.03675217926502228, 0.05180609971284866, 0.015306713990867138, 0.006330129690468311, 0.012193397618830204, 0.0035448495764285326, 0.05504114553332329, 0.397950142621994], [0.0022309659980237484, 0.0008986527682282031, 0.0009199268533848226, 0.000990656204521656, 0.0006562622147612274, 0.0017419569194316864, 0.004413938615471125, 0.14258483052253723, 0.023323802277445793, 0.029961731284856796, 0.045119863003492355, 0.2266373187303543, 0.04524458572268486, 0.04118739441037178, 0.1941700279712677, 0.023261047899723053, 0.0741381049156189, 0.14251889288425446], [0.02180439606308937, 0.0019952617585659027, 0.0012766319559887052, 0.004251405596733093, 0.0023202260490506887, 0.002992167603224516, 0.003770676674321294, 0.4104235768318176, 0.023640001192688942, 0.004067805130034685, 0.004525755066424608, 0.011676747351884842, 0.0056276204995810986, 0.002898591570556164, 0.011798979714512825, 0.004734511021524668, 0.07195307314395905, 0.41024258732795715], [0.04304874315857887, 0.022332509979605675, 0.025762200355529785, 0.02605695091187954, 0.01884884387254715, 0.02201189659535885, 0.038212139159440994, 0.2820638120174408, 0.014196374453604221, 0.010576396249234676, 0.010964851826429367, 0.014266529120504856, 0.012627272866666317, 0.023767102509737015, 0.02625987119972706, 0.02625209093093872, 0.10073161125183105, 0.28202083706855774]], [[0.0033399155363440514, 0.0029845875687897205, 0.007724374067038298, 0.0005362462834455073, 0.0010496329050511122, 0.00045786896953359246, 0.0017961272969841957, 0.21101641654968262, 0.08305753767490387, 0.06400678306818008, 0.02963855490088463, 0.15263386070728302, 0.027867291122674942, 0.07281734049320221, 0.009735890664160252, 0.023276379331946373, 0.09717297554016113, 0.21088826656341553], [0.014531627297401428, 0.07280654460191727, 0.22719933092594147, 0.02530909888446331, 0.15561768412590027, 0.04027295485138893, 0.05885831266641617, 0.1800381988286972, 0.007783154491335154, 0.0026416415348649025, 0.0015510086668655276, 0.014951306395232677, 0.002129750791937113, 0.0038011076394468546, 0.0008755263406783342, 0.0012696057092398405, 0.010417290963232517, 0.17994588613510132], [0.010302634909749031, 0.03137285262346268, 0.06847856938838959, 0.03154530003666878, 0.07303839176893234, 0.018173839896917343, 0.013618700206279755, 0.36805567145347595, 0.004205843433737755, 0.002327928552404046, 0.0009055281989276409, 0.003912975080311298, 0.0008235336863435805, 0.0006086729699745774, 0.000419836986111477, 0.000727167702279985, 0.0036720335483551025, 0.3678104877471924], [0.015339684672653675, 0.1177988275885582, 0.27887463569641113, 0.017734985798597336, 0.08536671847105026, 0.02111276052892208, 0.05812150985002518, 0.19031812250614166, 0.004981769248843193, 0.001890630112029612, 0.0007492313161492348, 0.0053736562840640545, 0.001162083470262587, 0.0014571858337149024, 0.0002330234565306455, 0.0005575380637310445, 0.008717043325304985, 0.1902107149362564], [0.013886078260838985, 0.06240703910589218, 0.1573222428560257, 0.021269135177135468, 0.0634448379278183, 0.01946648396551609, 0.12184803932905197, 0.2584213614463806, 0.0026020475197583437, 0.0006268168799579144, 0.0003668776771519333, 0.002516228472813964, 0.0005176659906283021, 0.0007713766535744071, 0.0001254710223292932, 0.0003027084458153695, 0.015822937712073326, 0.2582825720310211], [0.0053745717741549015, 0.04830382019281387, 0.05676524341106415, 0.01119735836982727, 0.052615221589803696, 0.010106443427503109, 0.02368035539984703, 0.38853171467781067, 0.003081054426729679, 0.0005068880273029208, 0.0008881949470378458, 0.0017795037711039186, 0.0011406297562643886, 0.0008831166196614504, 0.00028633163310587406, 0.00036280901986174285, 0.006242114119231701, 0.38825464248657227], [0.017168356105685234, 0.10164614766836166, 0.17372436821460724, 0.04831669107079506, 0.13951998949050903, 0.016451139003038406, 0.027258438989520073, 0.22189389169216156, 0.007943403907120228, 0.0035111689940094948, 0.0012013231171295047, 0.010391317307949066, 0.000904558808542788, 0.0019622051622718573, 0.0007146630086936057, 0.0011531568598002195, 0.004475039429962635, 0.22176410257816315], [0.002765756333246827, 0.007708872202783823, 0.008883612230420113, 0.007915610447525978, 0.0015551794786006212, 0.004186165984719992, 0.004273642785847187, 0.45814138650894165, 0.0028304869774729013, 0.004535026382654905, 0.003438361454755068, 0.0027105563785880804, 0.004969637840986252, 0.004666666500270367, 0.0015386472223326564, 0.002905077999457717, 0.01909908466041088, 0.4578762650489807], [0.006149673834443092, 0.0025199465453624725, 0.00780907366424799, 0.0009449123754166067, 0.001235715113580227, 0.0003130486875306815, 0.0009258587961085141, 0.2268964946269989, 0.03297567367553711, 0.051644466817379, 0.024110009893774986, 0.2724580764770508, 0.02262204885482788, 0.05249539390206337, 0.004038785584270954, 0.016149096190929413, 0.04996563121676445, 0.22674605250358582], [0.0015214119339361787, 0.00041248122579418123, 0.0021518943831324577, 0.00020919047528877854, 0.0005820563528686762, 0.0002124161401297897, 0.00044491462176665664, 0.2987601161003113, 0.031818486750125885, 0.008146454580128193, 0.009831147268414497, 0.20394669473171234, 0.023465469479560852, 0.04798167943954468, 0.002557532163336873, 0.018075358122587204, 0.05131560564041138, 0.2985670864582062], [0.0019456412410363555, 0.0008667836664244533, 0.002609026385471225, 6.628697883570567e-05, 0.00032179453410208225, 0.00015472491213586181, 0.0007586561841890216, 0.16365259885787964, 0.03722698241472244, 0.017458267509937286, 0.03031746670603752, 0.27741602063179016, 0.07421446591615677, 0.08447925001382828, 0.004833051469177008, 0.02803144045174122, 0.11208617687225342, 0.16356134414672852], [0.0062008751556277275, 0.0010518189519643784, 0.008549364283680916, 0.0003560901677701622, 0.0004103240789845586, 0.00011825755063910037, 0.0014296063454821706, 0.12921012938022614, 0.032881833612918854, 0.03298049792647362, 0.025875015184283257, 0.24010568857192993, 0.1307946741580963, 0.11971700191497803, 0.017173895612359047, 0.036923132836818695, 0.0870814323425293, 0.129140242934227], [0.0011574962409213185, 0.0005889616440981627, 0.0014442807296290994, 0.00017171599029097706, 0.0005239894962869585, 0.000244284572545439, 0.0007617813535034657, 0.25279030203819275, 0.018522288650274277, 0.018716026097536087, 0.06553925573825836, 0.19510796666145325, 0.07899745553731918, 0.03148192912340164, 0.008794330060482025, 0.0205159280449152, 0.0520426481962204, 0.2525993287563324], [0.004678572062402964, 0.0007939616334624588, 0.01177691575139761, 0.00027247960679233074, 0.0002900549734476954, 0.00012347919982858002, 0.0008766781538724899, 0.3334469795227051, 0.03386124223470688, 0.08416992425918579, 0.02249598503112793, 0.046469546854496, 0.06764797121286392, 0.010366994887590408, 0.0027911930810660124, 0.011462620459496975, 0.03529752418398857, 0.3331778943538666], [0.00253148446790874, 0.002122388454154134, 0.012036943808197975, 0.000328249967424199, 0.0004571769095491618, 0.00031833257526159286, 0.0014919243985787034, 0.3597014546394348, 0.014106396585702896, 0.036222852766513824, 0.01774607226252556, 0.053775232285261154, 0.04210255667567253, 0.030031682923436165, 0.007960153743624687, 0.016648683696985245, 0.042977094650268555, 0.359441339969635], [0.002886387752369046, 0.0003158835170324892, 0.005584379192441702, 9.328967280453071e-05, 7.728367927484214e-05, 5.4515581723535433e-05, 0.0004377424775157124, 0.42011839151382446, 0.015055696479976177, 0.03386766090989113, 0.003777759848162532, 0.020311161875724792, 0.03284952789545059, 0.009668561629951, 0.0017888033762574196, 0.006369252223521471, 0.02696189098060131, 0.41978177428245544], [0.0027614873833954334, 0.003846723586320877, 0.006184411700814962, 0.0017160680145025253, 0.0031012811232358217, 0.0004946023691445589, 0.0009716950007714331, 0.40148454904556274, 0.023902589455246925, 0.01595066674053669, 0.010392822325229645, 0.07572852820158005, 0.009805566631257534, 0.009953653439879417, 0.00291319377720356, 0.00589806167408824, 0.023696772754192352, 0.40119728446006775], [0.0027650296688079834, 0.0077070859260857105, 0.008881763555109501, 0.007913459092378616, 0.0015548235969617963, 0.004185030236840248, 0.004272520542144775, 0.4581518769264221, 0.0028295409865677357, 0.004533850587904453, 0.0034372941590845585, 0.0027096697594970465, 0.004968190100044012, 0.00466562295332551, 0.0015383244026452303, 0.0029043119866400957, 0.019095009192824364, 0.4578865170478821]], [[0.006621889770030975, 0.0007486482500098646, 0.0022782650776207447, 0.0009143533534370363, 0.00016527361003682017, 0.0012382962740957737, 0.0006688106805086136, 0.12948334217071533, 0.22715310752391815, 0.18777813017368317, 0.04160095378756523, 0.008292868733406067, 0.1038895770907402, 0.03623737022280693, 0.02004365809261799, 0.0719667375087738, 0.03150060400366783, 0.12941808998584747], [0.011147302575409412, 0.04960253834724426, 0.18386374413967133, 0.05613591521978378, 0.05682023987174034, 0.1394062638282776, 0.011897925287485123, 0.19086885452270508, 0.011147352866828442, 0.02219049632549286, 0.012546051293611526, 0.006808778736740351, 0.020928913727402687, 0.010373052209615707, 0.007526489440351725, 0.011516733095049858, 0.006456745322793722, 0.19076262414455414], [0.004272707737982273, 0.010812528431415558, 0.02799476869404316, 0.020522907376289368, 0.017959140241146088, 0.05886058509349823, 0.008070535026490688, 0.40130743384361267, 0.004292461089789867, 0.003918281756341457, 0.006824880372732878, 0.004320855718106031, 0.0060636913403868675, 0.0038725603371858597, 0.0022644642740488052, 0.007398296147584915, 0.010171731933951378, 0.4010721445083618], [0.01143257413059473, 0.07092161476612091, 0.12952083349227905, 0.047771986573934555, 0.039255645126104355, 0.12228652834892273, 0.01793302595615387, 0.23790457844734192, 0.008434475399553776, 0.016324101015925407, 0.009323129430413246, 0.005454695783555508, 0.008676308207213879, 0.00878157652914524, 0.00632158387452364, 0.014524093829095364, 0.007343790959566832, 0.23778940737247467], [0.005908099934458733, 0.03808145970106125, 0.061638541519641876, 0.031916581094264984, 0.01815713755786419, 0.08791785687208176, 0.00775656895712018, 0.35339370369911194, 0.00452410988509655, 0.0030256579630076885, 0.0045775738544762135, 0.0029896539635956287, 0.005687437020242214, 0.004014822654426098, 0.0019456245936453342, 0.00944061204791069, 0.005822382867336273, 0.35320213437080383], [0.010895006358623505, 0.013606345281004906, 0.019715867936611176, 0.021940624341368675, 0.0079161012545228, 0.022351589053869247, 0.009674097411334515, 0.4170003831386566, 0.006231302861124277, 0.002245008945465088, 0.007081103511154652, 0.0035818424075841904, 0.014571650885045528, 0.0054468619637191296, 0.0021776126231998205, 0.009993900544941425, 0.008789894171059132, 0.4167807102203369], [0.005698092747479677, 0.06015706807374954, 0.11749213188886642, 0.03595772385597229, 0.05119616165757179, 0.08511355519294739, 0.005717838183045387, 0.2994444668292999, 0.010108848102390766, 0.01171489804983139, 0.0033310959115624428, 0.0027550358790904284, 0.0013547138078138232, 0.0027412583585828543, 0.0015950931701809168, 0.002173295011743903, 0.004208527039736509, 0.29924020171165466], [0.0025535495951771736, 0.00592331076040864, 0.018082572147250175, 0.005383425857871771, 0.0034052878618240356, 0.005542564671486616, 0.003936476539820433, 0.4583795666694641, 0.0024282941594719887, 0.0035541353281587362, 0.0019926561508327723, 0.0031849327497184277, 0.001628012047149241, 0.004575440194457769, 0.0009166349773295224, 0.004135478287935257, 0.01624573953449726, 0.45813196897506714], [0.014127857983112335, 0.0039241802878677845, 0.007517064921557903, 0.0021606944501399994, 0.001226510968990624, 0.004106480162590742, 0.0011650488013401628, 0.24066390097141266, 0.06088307499885559, 0.17008714377880096, 0.0783739760518074, 0.02743174321949482, 0.05163101479411125, 0.019663020968437195, 0.013121888972818851, 0.027888985350728035, 0.035484787076711655, 0.24054257571697235], [0.002321830252185464, 0.0014360612258315086, 0.004558362532407045, 0.0008802366792224348, 0.0005409238510765135, 0.0023272803518921137, 0.0004997878568246961, 0.3579338490962982, 0.010232130996882915, 0.04872081056237221, 0.032225850969552994, 0.01293314341455698, 0.0800810307264328, 0.013281987980008125, 0.011536969803273678, 0.036556877195835114, 0.02622697688639164, 0.35770589113235474], [0.0019296330865472555, 0.0006502563483081758, 0.0013650074834004045, 0.00021292849851306528, 0.00011564891610760242, 0.0005993241793476045, 0.00013106339611113071, 0.16233108937740326, 0.011723853647708893, 0.04433589428663254, 0.029427887871861458, 0.014301200397312641, 0.3253481090068817, 0.07986114174127579, 0.042333122342824936, 0.10158691555261612, 0.0215038750320673, 0.1622430384159088], [0.00307720759883523, 0.001914406195282936, 0.0057872892357409, 0.0011512318160384893, 0.0009422735893167555, 0.0037209633737802505, 0.00043522342457436025, 0.09923908114433289, 0.015327662229537964, 0.04119448736310005, 0.04718628153204918, 0.0257191751152277, 0.326259046792984, 0.14264936745166779, 0.04609929397702217, 0.12397978454828262, 0.016126498579978943, 0.09919071197509766], [0.0021943694446235895, 8.827172860037535e-05, 0.0004784248012583703, 0.00013113822205923498, 6.40137805021368e-05, 0.000931953894905746, 0.00019801018061116338, 0.16131417453289032, 0.0041343653574585915, 0.006371557712554932, 0.005722361151129007, 0.005157811101526022, 0.07796038687229156, 0.21184438467025757, 0.05571604147553444, 0.2956608831882477, 0.010811816900968552, 0.16122005879878998], [0.0005051370826549828, 0.00019581816741265357, 0.003107841592282057, 8.321271889144555e-05, 5.070388942840509e-05, 0.0030729644931852818, 0.00010444082727190107, 0.40536895394325256, 0.005089986603707075, 0.004004498943686485, 0.002106135245412588, 0.003827087813988328, 0.013518175110220909, 0.05356067419052124, 0.007846539840102196, 0.0848388597369194, 0.007626843638718128, 0.4050920605659485], [0.00015503392205573618, 8.093746146187186e-05, 0.0005248825182206929, 1.4206435480446089e-05, 4.0117571188602597e-05, 0.0008290596306324005, 3.955950523959473e-05, 0.44225436449050903, 0.0006602046778425574, 0.0007915194728411734, 0.0002780460345093161, 0.0019606442656368017, 0.005678869318217039, 0.04636797681450844, 0.002615950768813491, 0.049931321293115616, 0.005896910093724728, 0.44188040494918823], [0.0007758845458738506, 0.0003506553184706718, 0.0037231005262583494, 0.00036602094769477844, 0.00025454844580963254, 0.006328932475298643, 0.00041660654824227095, 0.3531220853328705, 0.011865570209920406, 0.0036600399762392044, 0.0032341368496418, 0.006877207197248936, 0.042020805180072784, 0.13026925921440125, 0.01833859272301197, 0.048978034406900406, 0.01650126837193966, 0.35291722416877747], [0.0016423313645645976, 0.006059861276298761, 0.016797106713056564, 0.002537247957661748, 0.002702589612454176, 0.004677341785281897, 0.0005713252467103302, 0.42993050813674927, 0.016092684119939804, 0.03672835975885391, 0.009536199271678925, 0.010462775826454163, 0.00405540969222784, 0.007998312823474407, 0.002353699179366231, 0.0051240473985672, 0.013124186545610428, 0.4296059012413025], [0.002552916295826435, 0.0059222085401415825, 0.018079005181789398, 0.005382452625781298, 0.0034045001957565546, 0.0055412244983017445, 0.003935449756681919, 0.4583895802497864, 0.002427509054541588, 0.003553220070898533, 0.0019920107442885637, 0.00318409432657063, 0.001627458492293954, 0.0045737712644040585, 0.0009162769420072436, 0.004134111572057009, 0.016242288053035736, 0.4581419825553894]], [[0.008755365386605263, 0.085393987596035, 0.0840752050280571, 0.06987924128770828, 0.044497255235910416, 0.09370259195566177, 0.04576384648680687, 0.1271476149559021, 0.08524535596370697, 0.007529150694608688, 0.1251458078622818, 0.016352998092770576, 0.008540392853319645, 0.013807937502861023, 0.01697290502488613, 0.00430510425940156, 0.03577527776360512, 0.12711003422737122], [0.0077162496745586395, 0.09281083941459656, 0.04174220189452171, 0.18757981061935425, 0.05660831183195114, 0.0796927735209465, 0.055482167750597, 0.061803773045539856, 0.06538443267345428, 0.06354086101055145, 0.05453214794397354, 0.04309527203440666, 0.02680591307580471, 0.010539316572248936, 0.010726023465394974, 0.018192028626799583, 0.061964716762304306, 0.06178312003612518], [0.00434673810377717, 0.1056293398141861, 0.10787280648946762, 0.058295369148254395, 0.03212060034275055, 0.047234565019607544, 0.042655207216739655, 0.150835320353508, 0.006018718704581261, 0.12346483021974564, 0.009182808920741081, 0.018346238881349564, 0.017031485214829445, 0.023391904309391975, 0.01802430860698223, 0.034994836896657944, 0.04977233707904816, 0.15078261494636536], [0.008462097495794296, 0.046678826212882996, 0.03949115052819252, 0.12904863059520721, 0.03571934252977371, 0.0463552363216877, 0.043638866394758224, 0.10682421922683716, 0.046252574771642685, 0.07823836803436279, 0.025335386395454407, 0.06704723089933395, 0.020436855033040047, 0.01652464084327221, 0.010623586364090443, 0.026523591950535774, 0.14601066708564758, 0.10678869485855103], [0.011922911740839481, 0.05090850591659546, 0.07776570320129395, 0.06043253466486931, 0.05415920168161392, 0.05432939901947975, 0.057738859206438065, 0.1294170767068863, 0.026495952159166336, 0.03119269385933876, 0.024176806211471558, 0.07152096182107925, 0.035307712852954865, 0.055326126515865326, 0.01124202273786068, 0.027592523023486137, 0.09110568463802338, 0.1293652504682541], [0.01106247864663601, 0.0341234914958477, 0.01016886718571186, 0.016968607902526855, 0.04836290702223778, 0.044574350118637085, 0.024242807179689407, 0.15800775587558746, 0.031216958537697792, 0.032544173300266266, 0.027184123173356056, 0.10501566529273987, 0.10228201001882553, 0.04749540612101555, 0.07234938442707062, 0.027598470449447632, 0.04885856807231903, 0.15794406831264496], [0.005358492024242878, 0.037793904542922974, 0.044849712401628494, 0.07320660352706909, 0.04445181041955948, 0.037865858525037766, 0.02535250596702099, 0.09133318066596985, 0.134329155087471, 0.16957847774028778, 0.016452716663479805, 0.054800357669591904, 0.009898370131850243, 0.038467928767204285, 0.012139489874243736, 0.014898842200636864, 0.09792418032884598, 0.09129837155342102], [0.0038412492722272873, 0.005975072737783194, 0.012391438707709312, 0.009258807636797428, 0.00298120966181159, 0.006027287803590298, 0.011865697801113129, 0.3821197748184204, 0.03276537358760834, 0.021087002009153366, 0.004135945811867714, 0.0147102614864707, 0.009546857327222824, 0.013135886751115322, 0.0063255466520786285, 0.011368409730494022, 0.07044357061386108, 0.38202059268951416], [0.003770163981243968, 0.027125703170895576, 0.02641078270971775, 0.021739855408668518, 0.019060146063566208, 0.03155314922332764, 0.016400588676333427, 0.34154340624809265, 0.05837323144078255, 0.008659214712679386, 0.026374902576208115, 0.00775831937789917, 0.00685223238542676, 0.00726417638361454, 0.011572708375751972, 0.001736368052661419, 0.04237016290426254, 0.3414348065853119], [0.008092778734862804, 0.04846600070595741, 0.040710993111133575, 0.012648754753172398, 0.006687825080007315, 0.019744018092751503, 0.03150336816906929, 0.2683933675289154, 0.04772971197962761, 0.07496995478868484, 0.03513791039586067, 0.01744994707405567, 0.009027223102748394, 0.006924494169652462, 0.006598623003810644, 0.005224520340561867, 0.09239363670349121, 0.26829689741134644], [0.023876111954450607, 0.055648885667324066, 0.04809007793664932, 0.01633607968688011, 0.031719714403152466, 0.0451149046421051, 0.017818905413150787, 0.23205268383026123, 0.030190875753760338, 0.023145532235503197, 0.08928507566452026, 0.03067563660442829, 0.041699185967445374, 0.0165583323687315, 0.033139750361442566, 0.006333386525511742, 0.026355134323239326, 0.23195980489253998], [0.03776724636554718, 0.03040214441716671, 0.018964983522892, 0.030986810103058815, 0.055010829120874405, 0.0655641108751297, 0.01684516668319702, 0.22371454536914825, 0.021600373089313507, 0.02310974895954132, 0.026865849271416664, 0.04136645421385765, 0.053661804646253586, 0.02677098847925663, 0.036433760076761246, 0.02468150109052658, 0.04259095713496208, 0.22366270422935486], [0.013093036599457264, 0.018341295421123505, 0.015536308288574219, 0.006248830817639828, 0.011909312568604946, 0.013482712209224701, 0.00553885055705905, 0.36582013964653015, 0.012145346030592918, 0.01849774271249771, 0.009540549479424953, 0.014332246966660023, 0.020256031304597855, 0.028942350298166275, 0.04157041013240814, 0.018683701753616333, 0.020372504368424416, 0.36568862199783325], [0.00712650828063488, 0.02438744530081749, 0.02926337718963623, 0.007665867917239666, 0.015205834992229939, 0.008229426108300686, 0.01540397945791483, 0.210547536611557, 0.004243038594722748, 0.011685029603540897, 0.006872621364891529, 0.006667579524219036, 0.03892185911536217, 0.11000547558069229, 0.15338559448719025, 0.09720911830663681, 0.04269617423415184, 0.21048349142074585], [0.015966614708304405, 0.03542995825409889, 0.03655711188912392, 0.024002404883503914, 0.021151045337319374, 0.026503808796405792, 0.01643133908510208, 0.2990038990974426, 0.005454862955957651, 0.005001578480005264, 0.025871016085147858, 0.0096585126593709, 0.02801714465022087, 0.05044449493288994, 0.042404208332300186, 0.030781378969550133, 0.028465408831834793, 0.2988553047180176], [0.013400151394307613, 0.0211554616689682, 0.009477301500737667, 0.005788358859717846, 0.010356271639466286, 0.006833139806985855, 0.010219433344900608, 0.24571140110492706, 0.009669160470366478, 0.01911131478846073, 0.011418808251619339, 0.015120475552976131, 0.05956007540225983, 0.09481726586818695, 0.13417275249958038, 0.04334514960646629, 0.04422777518630028, 0.24561569094657898], [0.014852224849164486, 0.022914063185453415, 0.0328233577311039, 0.041153598576784134, 0.012388882227241993, 0.024395277723670006, 0.016040949150919914, 0.2212088406085968, 0.14842894673347473, 0.06568718701601028, 0.017302902415394783, 0.0324135422706604, 0.007789904251694679, 0.01595824398100376, 0.006222301162779331, 0.005873482674360275, 0.09342480450868607, 0.22112151980400085], [0.003841606667265296, 0.005974780302494764, 0.012389949522912502, 0.009259353391826153, 0.002980909775942564, 0.006027070339769125, 0.01186563353985548, 0.3821229040622711, 0.03276592493057251, 0.02108694799244404, 0.004135541617870331, 0.014710476621985435, 0.009546378627419472, 0.013133990578353405, 0.006324585061520338, 0.01136741042137146, 0.07044272124767303, 0.38202381134033203]], [[0.001813104492612183, 0.04248844087123871, 0.014217257499694824, 0.0451245941221714, 0.016109880059957504, 0.013742823153734207, 0.17230086028575897, 0.3412632644176483, 0.001677454449236393, 0.00017853167082648724, 0.00043538579484447837, 0.00033062693546526134, 0.00013237936946097761, 6.49014109512791e-05, 4.4914664613315836e-05, 8.5988845967222e-05, 0.008967075496912003, 0.3410225212574005], [0.004063393920660019, 0.032766107469797134, 0.21467533707618713, 0.011618250049650669, 0.006104916799813509, 0.004533471539616585, 0.0011748214019462466, 0.35314762592315674, 0.0003332459309604019, 0.010545951314270496, 0.0015826834132894874, 0.0021012919023633003, 0.00012740519014187157, 0.0003341733245179057, 0.00019932110444642603, 0.0004854462167713791, 0.003268435364589095, 0.3529380261898041], [0.00994330644607544, 0.016781970858573914, 0.023980874568223953, 0.0340874008834362, 0.008895489387214184, 0.0034637947101145983, 0.008695092983543873, 0.42381423711776733, 0.0012164327781647444, 0.011830938048660755, 0.005762784741818905, 0.005132898222655058, 0.00039331542211584747, 0.0002631262468639761, 0.0001429929689038545, 0.00029892983729951084, 0.021780511364340782, 0.42351585626602173], [0.005622460972517729, 0.009639570489525795, 0.015958691015839577, 0.009091063402593136, 0.03405135124921799, 0.10790453106164932, 0.005868077278137207, 0.38777801394462585, 0.007807925809174776, 0.008705783635377884, 0.0016617870423942804, 0.002453730907291174, 0.002711560344323516, 0.0022650102619081736, 0.0009471819503232837, 0.0031224472913891077, 0.006857831031084061, 0.38755306601524353], [0.001281521748751402, 0.0031558265909552574, 0.010601446963846684, 0.004754284396767616, 0.0063980957493186, 0.03756324574351311, 0.0028206752613186836, 0.4612174332141876, 0.002567646559327841, 0.0030432932544499636, 0.0009721932001411915, 0.00023457736824639142, 0.0005050203180871904, 0.0003807290631812066, 0.0003456888080108911, 0.000230277277296409, 0.0030450134072452784, 0.4608830511569977], [0.007778235245496035, 0.0382704995572567, 0.2538185119628906, 0.02519458532333374, 0.00549273518845439, 0.011556095443665981, 0.023195989429950714, 0.24971820414066315, 0.025069478899240494, 0.059121232479810715, 0.005963107105344534, 0.002604394918307662, 0.004873654339462519, 0.008634590543806553, 0.002496421104297042, 0.0019799110013991594, 0.024632930755615234, 0.24959945678710938], [0.023200934752821922, 0.03260485455393791, 0.007574193179607391, 0.007568443194031715, 0.0047631836496293545, 0.005150182638317347, 0.03253496065735817, 0.39125415682792664, 0.04859807342290878, 0.010383558459579945, 0.0026418748311698437, 0.0016529583372175694, 0.0015900864964351058, 0.00142582762055099, 0.00048660353058949113, 0.0005950457416474819, 0.036912258714437485, 0.39106279611587524], [0.031879931688308716, 0.010097661055624485, 0.007000666111707687, 0.004867990501224995, 0.0037472795229405165, 0.0075203911401331425, 0.035023294389247894, 0.3542229235172272, 0.01224515400826931, 0.01342802494764328, 0.010859697125852108, 0.009577766992151737, 0.02264242060482502, 0.019066769629716873, 0.007964779622852802, 0.010630438104271889, 0.08511415123939514, 0.3541107177734375], [0.023197714239358902, 0.012913876213133335, 0.014399520121514797, 0.0039900848641991615, 0.0021458629053086042, 0.0028213532641530037, 0.006424938328564167, 0.36655640602111816, 0.030458195134997368, 0.10739286243915558, 0.01641877181828022, 0.0036381639074534178, 0.005676453933119774, 0.0013533245073631406, 0.0006593960570171475, 0.0008653944823890924, 0.03470771759748459, 0.3663800060749054], [0.004966949578374624, 0.004932013340294361, 0.02109142392873764, 0.007447937969118357, 0.0021165101788938046, 0.0010623426642268896, 0.001300435047596693, 0.454574853181839, 0.0003001643344759941, 0.003578985808417201, 0.02038433961570263, 0.014624319039285183, 0.0012988869566470385, 0.00033677794272080064, 0.0005568995838984847, 0.0004517927882261574, 0.0067022619768977165, 0.4542730152606964], [0.0025927333626896143, 0.0004054545715916902, 0.0003263536491431296, 0.0002568810305092484, 0.0013088532723486423, 0.0012089546071365476, 0.0011221285676583648, 0.3455178439617157, 0.0007797432481311262, 0.004449994768947363, 0.050547126680612564, 0.07880429923534393, 0.14103280007839203, 0.003122203517705202, 0.003466330235823989, 0.00545525411143899, 0.014279753901064396, 0.3453233242034912], [0.0029745118226855993, 0.0009607813553884625, 0.001126750372350216, 0.0007831113180145621, 0.0008681774488650262, 0.0029321855399757624, 0.0036943398881703615, 0.37612688541412354, 0.0014093974605202675, 0.0058670649304986, 0.023109018802642822, 0.013105575926601887, 0.09669435769319534, 0.03599962964653969, 0.013098166324198246, 0.01856296882033348, 0.026775188744068146, 0.3759119212627411], [0.0022550795692950487, 0.00044458647607825696, 0.0005006145220249891, 0.0003426030743867159, 0.0001943474489962682, 0.00037094869185239077, 0.0018955639097839594, 0.46793049573898315, 0.0002581537701189518, 0.0019006760558113456, 0.005144079681485891, 0.00686101708561182, 0.01175981666892767, 0.007834062911570072, 0.0061559793539345264, 0.0017304440261796117, 0.016848944127559662, 0.46757251024246216], [0.004191416781395674, 0.0023808779660612345, 0.003736256854608655, 0.0026902910321950912, 0.0009699596557766199, 0.0009056075941771269, 0.0030546672642230988, 0.4347741901874542, 0.0034211857710033655, 0.008348970673978329, 0.018068281933665276, 0.012510347180068493, 0.002274670172482729, 0.0020114656072109938, 0.009669727645814419, 0.003995960578322411, 0.05253816395998001, 0.434457927942276], [0.0036043080035597086, 0.00025641938555054367, 0.00014495621144305915, 0.00015029676433186978, 0.00017677007417660207, 0.00027679113554768264, 0.0005792779847979546, 0.3799659311771393, 0.00047235595411621034, 0.004544449038803577, 0.007545948959887028, 0.014322449453175068, 0.05192272737622261, 0.005387027747929096, 0.009053882211446762, 0.11611897498369217, 0.025821879506111145, 0.37965551018714905], [0.006857318803668022, 0.006967168767005205, 0.05478499084711075, 0.0019330886425450444, 0.0014171901857480407, 0.00260934978723526, 0.0035965372808277607, 0.33804649114608765, 0.028950462117791176, 0.009847275912761688, 0.004533323924988508, 0.007458565291017294, 0.002832560334354639, 0.12952706217765808, 0.026314347982406616, 0.008319306187331676, 0.02815433219075203, 0.3378506898880005], [0.021196050569415092, 0.009086833335459232, 0.0036361205857247114, 0.00482879439368844, 0.00205933372490108, 0.0032743753399699926, 0.00866122730076313, 0.4096187353134155, 0.03935008868575096, 0.013540235348045826, 0.01184989046305418, 0.004131614230573177, 0.0056513636372983456, 0.005262521095573902, 0.001477565965615213, 0.0021315324120223522, 0.044824350625276566, 0.40941935777664185], [0.03187692165374756, 0.010096738114953041, 0.007000591140240431, 0.004867604933679104, 0.0037462806794792414, 0.007518926169723272, 0.03501344099640846, 0.3542419970035553, 0.012243764474987984, 0.013427569530904293, 0.010858251713216305, 0.009576250799000263, 0.02263990417122841, 0.019064728170633316, 0.00796434748917818, 0.0106285335496068, 0.0851045697927475, 0.3541296124458313]]], [[[0.013549810275435448, 0.005128208082169294, 0.021467629820108414, 0.015570278279483318, 0.004190122243016958, 0.011706532910466194, 0.014042462222278118, 0.06389257311820984, 0.2096249908208847, 0.47308576107025146, 0.01199420727789402, 0.013188785873353481, 0.006796224508434534, 0.011628815904259682, 0.008412526920437813, 0.017816001549363136, 0.03401662036776543, 0.06388844549655914], [0.015196827240288258, 0.03342068940401077, 0.2102811336517334, 0.05856173485517502, 0.015151633881032467, 0.10179190337657928, 0.12473109364509583, 0.13641314208507538, 0.022472411394119263, 0.004912528209388256, 0.026471151039004326, 0.0035913619212806225, 0.00380410416983068, 0.005825775675475597, 0.011502359993755817, 0.00553101534023881, 0.08393590897321701, 0.1364053189754486], [0.02724342979490757, 0.025073865428566933, 0.07320749759674072, 0.04857044667005539, 0.020522043108940125, 0.08646932989358902, 0.03914492577314377, 0.2530406713485718, 0.01825954206287861, 0.00596009474247694, 0.012939618900418282, 0.011929955333471298, 0.003830066416412592, 0.015033597126603127, 0.003297878196462989, 0.006614819169044495, 0.09583860635757446, 0.2530236542224884], [0.006185930222272873, 0.053517408668994904, 0.3145344853401184, 0.008909774012863636, 0.013175266794860363, 0.0786752700805664, 0.034158337861299515, 0.06372401863336563, 0.001640926580876112, 0.004137820564210415, 0.3047647774219513, 0.0016229208558797836, 0.003876851173117757, 0.002339550293982029, 0.012927650474011898, 0.002513416577130556, 0.029576458036899567, 0.0637192502617836], [0.01381186954677105, 0.04498526453971863, 0.20923003554344177, 0.06172192841768265, 0.012070356868207455, 0.05950862169265747, 0.10018126666545868, 0.1443091779947281, 0.020263170823454857, 0.005952739622443914, 0.023636551573872566, 0.004598582629114389, 0.005525469314306974, 0.011080709286034107, 0.011504452675580978, 0.012303110212087631, 0.11501464247703552, 0.1443021595478058], [0.011203103698790073, 0.025027260184288025, 0.07459292560815811, 0.019046122208237648, 0.010340079665184021, 0.01185463648289442, 0.06348152458667755, 0.29753902554512024, 0.008136054500937462, 0.0034804167225956917, 0.008757522329688072, 0.004773473832756281, 0.005848560482263565, 0.01021607220172882, 0.006575399078428745, 0.009770355187356472, 0.1318361461162567, 0.29752135276794434], [0.021978488191962242, 0.09323447197675705, 0.27321699261665344, 0.040713779628276825, 0.024932386353611946, 0.13082876801490784, 0.11271824687719345, 0.07651258260011673, 0.01890719309449196, 0.008307931944727898, 0.02416599728167057, 0.01489225123077631, 0.003761019092053175, 0.011896129697561264, 0.004812072962522507, 0.013050656765699387, 0.049563534557819366, 0.07650759816169739], [0.01364920288324356, 0.006912685930728912, 0.017807720229029655, 0.01321531180292368, 0.00992736965417862, 0.01547488383948803, 0.004114208277314901, 0.37634536623954773, 0.013172561302781105, 0.01420341245830059, 0.003539330093190074, 0.008368020877242088, 0.006324032787233591, 0.006049542222172022, 0.0020194866228848696, 0.005536858458071947, 0.10702190548181534, 0.376318097114563], [0.03012237697839737, 0.004353049211204052, 0.0127840181812644, 0.006629724986851215, 0.003675620537251234, 0.004714025650173426, 0.009629768319427967, 0.3070123791694641, 0.028503406792879105, 0.0519554540514946, 0.002591437427327037, 0.016261937096714973, 0.018647044897079468, 0.021530698984861374, 0.007124246563762426, 0.03536286577582359, 0.1321113258600235, 0.3069906532764435], [0.04568248242139816, 0.005417000036686659, 0.02354680746793747, 0.027106305584311485, 0.008193012326955795, 0.024150757119059563, 0.010990560986101627, 0.2812500596046448, 0.060765136033296585, 0.04281879961490631, 0.010328934527933598, 0.011095508933067322, 0.009211606346070766, 0.015370126813650131, 0.004803416784852743, 0.012487705796957016, 0.12555034458637238, 0.28123149275779724], [0.015485059469938278, 0.0034845347981899977, 0.027485951781272888, 0.15779174864292145, 0.0035333677660673857, 0.011080731637775898, 0.007696857210248709, 0.11056507378816605, 0.09010264277458191, 0.20728519558906555, 0.033911895006895065, 0.015021816827356815, 0.01683027110993862, 0.025524698197841644, 0.025986775755882263, 0.06734523177146912, 0.07030800729990005, 0.11056017875671387], [0.025614077225327492, 0.00609877472743392, 0.05716176703572273, 0.05419895425438881, 0.00905959215015173, 0.016400985419750214, 0.053342510014772415, 0.21837495267391205, 0.08375870436429977, 0.028390392661094666, 0.002794144907966256, 0.0016126992413774133, 0.002509437268599868, 0.02331068180501461, 0.007310985121876001, 0.041592612862586975, 0.15010620653629303, 0.21836254000663757], [0.040075793862342834, 0.0014692555414512753, 0.020433874800801277, 0.0043752966448664665, 0.0020950292237102985, 0.006423546466976404, 0.0021786082070320845, 0.3246033489704132, 0.04667237773537636, 0.07605517655611038, 0.004923549015074968, 0.006335753481835127, 0.00397597998380661, 0.008655824698507786, 0.0035210736095905304, 0.014698666520416737, 0.10891816020011902, 0.32458871603012085], [0.07552879303693771, 0.004736039787530899, 0.02196396514773369, 0.007403442170470953, 0.007128676865249872, 0.017462603747844696, 0.023556379601359367, 0.2404724359512329, 0.11965246498584747, 0.057888563722372055, 0.01162620261311531, 0.006304158363491297, 0.00837224256247282, 0.004831442143768072, 0.0047317249700427055, 0.003911652136594057, 0.14397032558918, 0.24045896530151367], [0.08092810958623886, 0.01498949434608221, 0.020093953236937523, 0.021059619262814522, 0.011276287958025932, 0.015360516496002674, 0.030795132741332054, 0.21106722950935364, 0.11676234006881714, 0.029241351410746574, 0.032307565212249756, 0.022416135296225548, 0.012724619358778, 0.007363264448940754, 0.01212539803236723, 0.006370312999933958, 0.1440620720386505, 0.21105660498142242], [0.09998906403779984, 0.002636574674397707, 0.015150956809520721, 0.0056723845191299915, 0.006208955310285091, 0.012295122258365154, 0.012362184002995491, 0.2801917791366577, 0.08522772043943405, 0.03898544982075691, 0.009228537790477276, 0.005544964224100113, 0.00846713688224554, 0.0032699229195713997, 0.0039029791951179504, 0.002277180552482605, 0.12841272354125977, 0.2801763415336609], [0.012222960591316223, 0.008288772776722908, 0.02481243945658207, 0.021768609061837196, 0.009702847339212894, 0.014165392145514488, 0.006225546821951866, 0.3657015860080719, 0.018379736691713333, 0.015426586382091045, 0.0037137214094400406, 0.009291733615100384, 0.0038259716238826513, 0.006977856159210205, 0.0013819923624396324, 0.006263406947255135, 0.10617946833372116, 0.3656713366508484], [0.0136489262804389, 0.006912560202181339, 0.017807215452194214, 0.013215113431215286, 0.009927203878760338, 0.015474654734134674, 0.004114073701202869, 0.3763468861579895, 0.013172313570976257, 0.014202771708369255, 0.0035393210127949715, 0.008368145674467087, 0.006324009969830513, 0.00604943698272109, 0.0020194444805383682, 0.005536738317459822, 0.1070212721824646, 0.3763199746608734]], [[0.16206179559230804, 0.0549604631960392, 0.026109730824828148, 0.05951164290308952, 0.0425395704805851, 0.15640544891357422, 0.11594370007514954, 0.033108871430158615, 0.16605690121650696, 0.011809117160737514, 0.06443270295858383, 0.017453305423259735, 0.008889910764992237, 0.0011883575934916735, 0.0018773970659822226, 0.0011428530560806394, 0.04340004175901413, 0.0331081859767437], [0.014622938819229603, 0.06111598759889603, 0.1056828498840332, 0.043596141040325165, 0.011823217384517193, 0.03927893936634064, 0.27589356899261475, 0.12229936569929123, 0.06472960859537125, 0.01353952195495367, 0.003606907557696104, 0.0020779145415872335, 0.0006931760581210256, 0.001424289308488369, 0.0011490649776533246, 0.0006856280961073935, 0.11548614501953125, 0.12229472398757935], [0.011518852785229683, 0.10652577877044678, 0.16740690171718597, 0.03083288110792637, 0.004550592973828316, 0.03131212666630745, 0.03619431331753731, 0.1561274379491806, 0.02725578099489212, 0.18412727117538452, 0.0050795357674360275, 0.0019327321788296103, 0.0021381524857133627, 0.0018431945936754346, 0.0012318305671215057, 0.001386925345286727, 0.07441617548465729, 0.1561194360256195], [0.0089286919683218, 0.04505812004208565, 0.056132614612579346, 0.0572061687707901, 0.011997184716165066, 0.017350127920508385, 0.26469093561172485, 0.17223286628723145, 0.033876121044158936, 0.009103273041546345, 0.0018602368654683232, 0.0018668827833607793, 0.0005223951884545386, 0.0015065117040649056, 0.0011535931844264269, 0.0007107809651643038, 0.14357829093933105, 0.17222531139850616], [0.012517181225121021, 0.009878517128527164, 0.00956074520945549, 0.018434900790452957, 0.006259595043957233, 0.01928931102156639, 0.14181192219257355, 0.2270381897687912, 0.1105942651629448, 0.004653510171920061, 0.005758451297879219, 0.004126565530896187, 0.001675032777711749, 0.0031873914413154125, 0.005119631066918373, 0.002323735971003771, 0.1907425820827484, 0.22702844440937042], [0.013837264850735664, 0.00915475282818079, 0.010142248123884201, 0.021548809483647346, 0.017947141081094742, 0.028872311115264893, 0.06022539362311363, 0.30123427510261536, 0.03722001612186432, 0.004863589536398649, 0.00239131273701787, 0.002023705979809165, 0.0005765573005191982, 0.0022064330987632275, 0.0027508109342306852, 0.0017597578698769212, 0.18202464282512665, 0.30122092366218567], [0.017871083691716194, 0.024737855419516563, 0.02007325366139412, 0.06476782262325287, 0.03345030918717384, 0.026083258911967278, 0.19232237339019775, 0.19105765223503113, 0.0670914351940155, 0.00673803361132741, 0.003875333582982421, 0.0047760093584656715, 0.0009663900709711015, 0.00201698811724782, 0.0013030748814344406, 0.001201467588543892, 0.15061615407466888, 0.19105149805545807], [0.018326448276638985, 0.026453735306859016, 0.03188322111964226, 0.029671356081962585, 0.0176540520042181, 0.04184500500559807, 0.022566357627511024, 0.2642470896244049, 0.04902372509241104, 0.021204695105552673, 0.02011704444885254, 0.013957662507891655, 0.01865488849580288, 0.020936787128448486, 0.013348720036447048, 0.013079856522381306, 0.11278685182332993, 0.2642425000667572], [0.07166837155818939, 0.015820825472474098, 0.0071954005397856236, 0.060406289994716644, 0.06125306710600853, 0.06939011067152023, 0.0532836839556694, 0.19497565925121307, 0.11061683297157288, 0.002588800620287657, 0.017246950417757034, 0.0069871325977146626, 0.002420336939394474, 0.00020034759654663503, 0.0007714558742009103, 0.00027387402951717377, 0.1299365758895874, 0.19496436417102814], [0.06018756330013275, 0.14959211647510529, 0.27012526988983154, 0.0204587634652853, 0.005659835413098335, 0.0596516989171505, 0.022927124053239822, 0.011212993413209915, 0.009982436895370483, 0.3407772183418274, 0.0209308210760355, 0.0024840999394655228, 0.0009559812606312335, 0.00018417435057926923, 0.00038383950595743954, 0.0005902480334043503, 0.012683197855949402, 0.011212533339858055], [0.22101305425167084, 0.02155044861137867, 0.031362134963274, 0.012973015196621418, 0.00883103534579277, 0.26934415102005005, 0.04051840305328369, 0.022148732095956802, 0.10202109068632126, 0.01105621736496687, 0.1501762568950653, 0.052993956953287125, 0.011834844946861267, 0.0009555928991176188, 0.0015154617140069604, 0.001073781750164926, 0.018483931198716164, 0.022147871553897858], [0.04176855832338333, 0.007715017069131136, 0.015556075610220432, 0.014949420467019081, 0.009762922301888466, 0.21113480627536774, 0.02902047149837017, 0.1656070351600647, 0.160879448056221, 0.004407146945595741, 0.05653833970427513, 0.030826319009065628, 0.012579960748553276, 0.0010040922788903117, 0.004591288976371288, 0.0008632358512841165, 0.06719691306352615, 0.16559894382953644], [0.04957904666662216, 0.01359544973820448, 0.01980016380548477, 0.016465231776237488, 0.015013542026281357, 0.31932327151298523, 0.010703882202506065, 0.06408655643463135, 0.0400443971157074, 0.004992131609469652, 0.1065213680267334, 0.09597864001989365, 0.11912364512681961, 0.007925091311335564, 0.0077298968099057674, 0.01187282707542181, 0.033161044120788574, 0.0640837699174881], [0.009447723627090454, 0.008912444114685059, 0.009246859699487686, 0.04095418006181717, 0.060303982347249985, 0.2681410610675812, 0.02089763805270195, 0.08859740197658539, 0.011987321078777313, 0.0017085711006075144, 0.013139946386218071, 0.02510051801800728, 0.12462842464447021, 0.05394149571657181, 0.012296422384679317, 0.10897097736597061, 0.05313151329755783, 0.088593490421772], [0.059911467134952545, 0.02951579913496971, 0.021966364234685898, 0.05232448875904083, 0.04919903725385666, 0.29283061623573303, 0.04006730392575264, 0.04294547066092491, 0.049502331763505936, 0.00801292434334755, 0.08953571319580078, 0.050974730402231216, 0.08747679740190506, 0.013532211072742939, 0.02432100847363472, 0.012105418369174004, 0.032834865152835846, 0.042943473905324936], [0.008832355961203575, 0.02322821132838726, 0.025911638513207436, 0.03905950114130974, 0.041694968938827515, 0.22345319390296936, 0.011457860469818115, 0.06251929700374603, 0.007097361143678427, 0.006608771625906229, 0.014782463200390339, 0.025177106261253357, 0.11643540859222412, 0.12170624732971191, 0.008750563487410545, 0.16570152342319489, 0.03506699576973915, 0.06251657009124756], [0.017044873908162117, 0.019619764760136604, 0.018431704491376877, 0.02674650214612484, 0.015585135668516159, 0.04076001048088074, 0.023699311539530754, 0.299846351146698, 0.05507644638419151, 0.013168617151677608, 0.015367687679827213, 0.010424723848700523, 0.007670934312045574, 0.008019862696528435, 0.0033293215092271566, 0.0047160848043859005, 0.12065718322992325, 0.29983556270599365], [0.018326546996831894, 0.026453882455825806, 0.031883109360933304, 0.029671378433704376, 0.017654158174991608, 0.0418449342250824, 0.02256619744002819, 0.2642472982406616, 0.04902378097176552, 0.02120468206703663, 0.020117131993174553, 0.01395757682621479, 0.018655022606253624, 0.02093645930290222, 0.013348514214158058, 0.013079782016575336, 0.11278679221868515, 0.2642427682876587]], [[0.005065480247139931, 0.015371983870863914, 0.03710480406880379, 0.2679102420806885, 0.25155511498451233, 0.15514759719371796, 0.023828748613595963, 0.08964689075946808, 0.01796899177134037, 0.0031170977745205164, 0.006576558109372854, 0.004122092388570309, 0.003273582551628351, 0.0005259099416434765, 0.0019686766900122166, 0.0012893478851765394, 0.02588481269776821, 0.08964207768440247], [0.004681572318077087, 0.02660680189728737, 0.009278313256800175, 0.0033490473870187998, 0.0006857651751488447, 0.0027923716697841883, 0.007606711238622665, 0.1324308067560196, 0.013911651447415352, 0.5708554983139038, 0.001859772833995521, 0.001187657006084919, 0.0004245740419719368, 0.00018059046124108136, 0.00043646147241815925, 0.0011578507255762815, 0.09013353288173676, 0.13242095708847046], [0.016755396500229836, 0.0019321006257086992, 0.001989270094782114, 0.0006816454697400331, 0.00019641313701868057, 0.0004923432134091854, 0.0027629451360553503, 0.08798446506261826, 0.009839997626841068, 0.733964741230011, 0.0014016787754371762, 0.0007614511414431036, 7.568689761683345e-05, 2.5517825633869506e-05, 5.1719227485591546e-05, 0.0001964856346603483, 0.05290841683745384, 0.08797972649335861], [0.030495546758174896, 0.0029772771522402763, 0.0017394042806699872, 0.05953643471002579, 0.01663067936897278, 0.01793152093887329, 0.028640205040574074, 0.1696348935365677, 0.10952671617269516, 0.23487558960914612, 0.007075120694935322, 0.004260754678398371, 0.0009210732532665133, 0.0020944704301655293, 0.001417808118276298, 0.0087372912093997, 0.13388146460056305, 0.1696237474679947], [0.05502675473690033, 0.000837745436001569, 0.00026725284988060594, 0.013276791200041771, 0.023952731862664223, 0.010681554675102234, 0.01059128250926733, 0.196482315659523, 0.2916257679462433, 0.06065111979842186, 0.004432421177625656, 0.00427594780921936, 0.0016718828119337559, 0.0024134018458426, 0.0018528447253629565, 0.007831922732293606, 0.11766020953655243, 0.19646808505058289], [0.047915324568748474, 0.007746267598122358, 0.005722092930227518, 0.018776748329401016, 0.01421777717769146, 0.03146935626864433, 0.011563990265130997, 0.23445723950862885, 0.08597755432128906, 0.1528182327747345, 0.006868877913802862, 0.008167862892150879, 0.0024217518512159586, 0.0015155116561800241, 0.0012437923578545451, 0.007861808873713017, 0.12681026756763458, 0.23444566130638123], [0.005182898137718439, 0.0029999632388353348, 0.001339776092208922, 0.002629854716360569, 0.0012181862257421017, 0.00253112381324172, 0.043773528188467026, 0.2659885585308075, 0.1274304836988449, 0.007755719590932131, 0.000844997470267117, 0.0007832774426788092, 0.0003357208042871207, 0.001538164564408362, 0.002363003557547927, 0.001998536055907607, 0.26531028747558594, 0.26597580313682556], [0.006760827731341124, 0.0009964111959561706, 0.0007097541238181293, 0.0007759673753753304, 0.0018517663702368736, 0.0014456574572250247, 0.005238167475908995, 0.3955886662006378, 0.010647616349160671, 0.0014017467619851232, 0.0021308204159140587, 0.004990768618881702, 0.00215726625174284, 0.0011640448356047273, 0.0005696690641343594, 0.001051656436175108, 0.1669471561908722, 0.39557206630706787], [0.008996979333460331, 0.04340985417366028, 0.025431036949157715, 0.11839611828327179, 0.17385509610176086, 0.10249002277851105, 0.07476254552602768, 0.1688055545091629, 0.037400614470243454, 0.001485873362980783, 0.0020089903846383095, 0.00270233117043972, 0.0015113255940377712, 0.0013917282922193408, 0.001175295328721404, 0.0010118175996467471, 0.06636790186166763, 0.16879689693450928], [0.0036444186698645353, 0.12891452014446259, 0.15237785875797272, 0.14179472625255585, 0.03943638876080513, 0.04372537136077881, 0.020053528249263763, 0.17948703467845917, 0.0009186728857457638, 0.05867098644375801, 0.0029831358697265387, 0.0010823941556736827, 0.0009255563491024077, 0.00012599924230016768, 0.000390929460991174, 0.0001926015829667449, 0.04579663276672363, 0.17947916686534882], [0.005306720267981291, 0.0013485623057931662, 0.0011839137878268957, 0.030841443687677383, 0.025289475917816162, 0.011534220539033413, 0.00845489464700222, 0.38835853338241577, 0.002753531327471137, 0.00011148904741276056, 0.011315195821225643, 0.017993595451116562, 0.008442862890660763, 0.0003031780361197889, 0.0007356561836786568, 0.00036098502459935844, 0.09733208268880844, 0.3883337080478668], [0.0029731402173638344, 0.00027464894810691476, 0.00025725929299369454, 0.0006353156641125679, 0.0018428255571052432, 0.0016788681969046593, 0.001608180464245379, 0.4159233272075653, 0.003282858757302165, 8.452770998701453e-05, 0.0018853973597288132, 0.016533182933926582, 0.01970564015209675, 0.0025545053649693727, 0.0030551960226148367, 0.0014286923687905073, 0.11038979142904282, 0.41588664054870605], [0.001148459268733859, 7.419321627821773e-05, 6.23178857495077e-05, 0.000664860475808382, 0.0016707003815099597, 0.001909353188239038, 0.000977815710939467, 0.32697442173957825, 0.0015086052007973194, 2.4269376808661036e-05, 0.0015572640113532543, 0.009318147785961628, 0.2188655287027359, 0.005171582568436861, 0.0017881946405395865, 0.005149575415998697, 0.09618134051561356, 0.32695338129997253], [0.00036327826092019677, 0.00013798117288388312, 9.691157902125269e-05, 0.0007452177233062685, 0.0028258312959223986, 0.0013292159419506788, 0.002238839864730835, 0.43055224418640137, 0.000412020948715508, 1.2075209269823972e-05, 0.00025244528660550714, 0.0028625079430639744, 0.015561843290925026, 0.009393722750246525, 0.0021897307597100735, 0.003412883495911956, 0.09708698093891144, 0.43052616715431213], [0.0014193610986694694, 5.7936242228606716e-05, 2.1601077605737373e-05, 0.0002975897223223001, 0.001538142911158502, 0.0007225857116281986, 0.002761289943009615, 0.4037676751613617, 0.00573012325912714, 0.00011465427814982831, 0.0007767475908622146, 0.00451380992308259, 0.0032044416293501854, 0.0033055434469133615, 0.014052408747375011, 0.0050184037536382675, 0.14896106719970703, 0.4037364721298218], [0.001379176857881248, 0.0017438952345401049, 0.0014238165458664298, 0.014574048109352589, 0.00791929755359888, 0.009980510920286179, 0.009379765950143337, 0.39980319142341614, 0.0006419955170713365, 8.592626545578241e-05, 0.0007160064997151494, 0.0033541880548000336, 0.018816236406564713, 0.007488710340112448, 0.003085654228925705, 0.005714591592550278, 0.11411044746637344, 0.39978259801864624], [0.0021231553982943296, 0.0006759881507605314, 0.0004716636030934751, 0.00046339648542925715, 0.0007369122467935085, 0.0008492633933201432, 0.00458193477243185, 0.4074662923812866, 0.006669594906270504, 0.00024024110462050885, 0.0004310373915359378, 0.0011043853592127562, 0.0007064184173941612, 0.0004194749053567648, 0.000238447159063071, 0.0003562509664334357, 0.16502070426940918, 0.40744492411613464], [0.006760743446648121, 0.000996405491605401, 0.0007097577326931059, 0.0007759429281577468, 0.001851675333455205, 0.0014456402277573943, 0.005238041747361422, 0.39558881521224976, 0.010647703893482685, 0.0014017245266586542, 0.0021308099385350943, 0.004990743938833475, 0.002157259965315461, 0.0011640569427981973, 0.0005696660373359919, 0.0010516548063606024, 0.16694723069667816, 0.3955720365047455]], [[0.003599234391003847, 0.0015920393634587526, 0.0012059489963576198, 0.011302780359983444, 0.005396614782512188, 0.006300016772001982, 0.0007071447325870395, 0.43996959924697876, 0.0037390440702438354, 0.0015314772026613355, 0.008545001968741417, 0.01099904254078865, 0.0010048544500023127, 0.0008130042697302997, 0.0006920970045030117, 0.0006695308838970959, 0.06201270967721939, 0.4399198889732361], [0.00020371480786707252, 0.00809909775853157, 0.002689384389668703, 0.001130554242990911, 0.0016633766936138272, 0.0011404164833948016, 0.0006959060556255281, 0.45441746711730957, 0.0029417802579700947, 0.0016431749099865556, 0.0006772623746655881, 0.0011647589271888137, 0.0004045538080390543, 0.0004684033337980509, 0.00013082822260912508, 0.0006027609924785793, 0.06756602972745895, 0.4543604850769043], [8.983511361293495e-05, 0.0011112798238173127, 0.00517114344984293, 0.0006547815864905715, 0.0003489558002911508, 0.00041880927165038884, 0.0007508281851187348, 0.45383304357528687, 0.0006032653618603945, 0.0009923212928697467, 0.000781694776378572, 0.0012283010873943567, 0.00015017128316685557, 0.0005881143151782453, 0.0001304102479480207, 0.0004741430748254061, 0.07888541370630264, 0.4537873864173889], [0.0002138301351806149, 0.0018528590444475412, 0.002014734083786607, 0.009544429369270802, 0.006572066806256771, 0.0017392027657479048, 0.0005752446595579386, 0.4492584764957428, 0.0008655150304548442, 0.0009505120106041431, 0.0024727850686758757, 0.002599245635792613, 0.0005850079469382763, 0.00022972993610892445, 0.0002704844227991998, 0.0003988880489487201, 0.07065266370773315, 0.4492042660713196], [0.00024555905838496983, 0.0041578602977097034, 0.0013587538851425052, 0.005971898790448904, 0.03262573853135109, 0.0045287287794053555, 0.0011568063637241721, 0.433220773935318, 0.0009785370202735066, 0.0015020942082628608, 0.0016139725921675563, 0.005315732676535845, 0.0006148271495476365, 0.00046915109851397574, 0.0002944655134342611, 0.0005476431106217206, 0.07222725450992584, 0.4331701695919037], [0.00025959694175980985, 0.0008021888206712902, 0.0005630837404169142, 0.0014948968309909105, 0.002568099880591035, 0.009547492489218712, 0.000891996081918478, 0.4507938325405121, 0.00044625328155234456, 0.000753544270992279, 0.002241388661786914, 0.005037541501224041, 0.0005239872843958437, 0.0005400290829129517, 0.00014471229224000126, 0.0009919175645336509, 0.0716548040509224, 0.4507445991039276], [0.002247139113023877, 0.0020471003372222185, 0.0035776705481112003, 0.0018238526536151767, 0.005193034652620554, 0.009586701169610023, 0.016449356451630592, 0.40074586868286133, 0.008492032065987587, 0.001230989582836628, 0.001100055524148047, 0.002289417665451765, 0.0006474655820056796, 0.001678736531175673, 0.0007632611086592078, 0.0018350989557802677, 0.13957995176315308, 0.4007122218608856], [0.0003427485644351691, 0.002454611472785473, 0.0032344928476959467, 0.0024256857577711344, 0.00782182440161705, 0.00219267257489264, 0.0017643158789724112, 0.42870816588401794, 0.0019347057677805424, 0.002365813124924898, 0.003750165458768606, 0.006729722023010254, 0.0006327489973045886, 0.0007026760722510517, 0.0010912952711805701, 0.00038637270336039364, 0.10479532927274704, 0.4286666810512543], [0.0004594536148943007, 0.0050069065764546394, 0.0030763456597924232, 0.0024403471034020185, 0.007703725714236498, 0.006918722297996283, 0.0034463987685739994, 0.41896316409111023, 0.014893028885126114, 0.0037909047678112984, 0.0024026399478316307, 0.005073843523859978, 0.001603868673555553, 0.0013569318689405918, 0.0004128921718802303, 0.0013088840059936047, 0.10222381353378296, 0.4189182221889496], [0.0007708169287070632, 0.004026878625154495, 0.0047936392948031425, 0.0010040279012173414, 0.0021771404426544905, 0.002424531616270542, 0.0013200415996834636, 0.41911551356315613, 0.004244321957230568, 0.04145686700940132, 0.0015708536375313997, 0.004624996799975634, 0.0005749391275458038, 0.0019918533507734537, 0.0006839503766968846, 0.0010815910063683987, 0.08906391263008118, 0.419074147939682], [0.00048007789882831275, 0.001822446589358151, 0.003143219742923975, 0.005581065081059933, 0.0032509900629520416, 0.002039929386228323, 0.0015156423905864358, 0.4225105047225952, 0.0011509936302900314, 0.002241124864667654, 0.021360138431191444, 0.011904114857316017, 0.0013953694142401218, 0.00040474467095918953, 0.0003051086387131363, 0.00041154780774377286, 0.09801166504621506, 0.42247122526168823], [0.0004738743882626295, 0.0008172529051080346, 0.0019637062214314938, 0.0015859821578487754, 0.0041350750252604485, 0.001985349925234914, 0.0005600576987490058, 0.42510899901390076, 0.0007586521678604186, 0.0025024793576449156, 0.006343620363622904, 0.04363267496228218, 0.0024031682405620813, 0.001253669150173664, 0.0004184118879493326, 0.0005451265606097877, 0.08044840395450592, 0.4250634014606476], [0.00031211969326250255, 0.001037435606122017, 0.0005060528637841344, 0.0008150709327310324, 0.001442534034140408, 0.00061510264640674, 0.0012685132678598166, 0.40865132212638855, 0.0004606822330970317, 0.002333106007426977, 0.001609631348401308, 0.0075092315673828125, 0.028996042907238007, 0.0029469102155417204, 0.00021885619207751006, 0.004500118549913168, 0.1281689554452896, 0.40860846638679504], [0.00032739288872107863, 0.00042273447616025805, 0.000515233026817441, 0.0005470355972647667, 0.0003928651276510209, 0.000368821230949834, 0.0006613057921640575, 0.4389447271823883, 0.00022121056099422276, 0.0005370149738155305, 0.000701583456248045, 0.004092245828360319, 0.002083962317556143, 0.002644561231136322, 0.0005751260905526578, 0.0008707577944733202, 0.10719884932041168, 0.43889448046684265], [0.0002544191956985742, 0.00047363771591335535, 0.0005111396312713623, 0.0004507185658439994, 0.00038921309169381857, 0.0003809584304690361, 0.002564836060628295, 0.3998028635978699, 0.0005777714541181922, 0.0006145576480776072, 0.0009945646161213517, 0.0022086126264184713, 0.0014959614491090178, 0.0011668383376672864, 0.027405189350247383, 0.0006169546977616847, 0.16033880412578583, 0.3997529149055481], [0.0002776408800855279, 0.0004655321827158332, 0.00047129273298196495, 0.0005220651510171592, 0.0003495201235637069, 0.000366757798474282, 0.0005082431016489863, 0.4469011425971985, 9.051641973201185e-05, 0.0005596568225882947, 0.00044064901885576546, 0.0017644553445279598, 0.002462074626237154, 0.0007535337936133146, 0.000300915795378387, 0.005181869957596064, 0.09173525124788284, 0.44684892892837524], [0.00026551823248155415, 0.0009952320251613855, 0.0014288312522694468, 0.0008923627901822329, 0.002964702667668462, 0.0011593494564294815, 0.0014570958446711302, 0.4317452907562256, 0.001137888408266008, 0.0009290913003496826, 0.0011693827109411359, 0.0027277839835733175, 0.0002208041842095554, 0.00032597751123830676, 0.00036103298771195114, 0.00020646008488256484, 0.12031283229589462, 0.4317004084587097], [0.00034276064252480865, 0.002454585861414671, 0.0032344914507120848, 0.0024256741162389517, 0.007821835577487946, 0.00219274265691638, 0.001764322747476399, 0.42870816588401794, 0.0019347360357642174, 0.00236579985357821, 0.0037501691840589046, 0.006729728542268276, 0.0006327523151412606, 0.0007026897510513663, 0.0010912874713540077, 0.0003863723250105977, 0.10479557514190674, 0.42866647243499756]], [[0.0032790987752377987, 0.014265084639191628, 0.00805346854031086, 0.051032230257987976, 0.04439675062894821, 0.15787772834300995, 0.02337358519434929, 0.02882556803524494, 0.5180152654647827, 0.031102582812309265, 0.027134442701935768, 0.00846695713698864, 0.0101704653352499, 0.013139236718416214, 0.004449603147804737, 0.004172074142843485, 0.02342209964990616, 0.02882377989590168], [0.001469105132855475, 0.02302776277065277, 0.20413796603679657, 0.039402320981025696, 0.021295610815286636, 0.1219911277294159, 0.0056359353475272655, 0.2267150729894638, 0.04111021012067795, 0.018473586067557335, 0.004016225691884756, 0.0072724297642707825, 0.0016180528327822685, 0.003226320259273052, 0.0004432879213709384, 0.003367797704413533, 0.05010500177741051, 0.22669225931167603], [0.0018999265739694238, 0.011115686036646366, 0.2733903229236603, 0.014268536120653152, 0.00556353572756052, 0.030841495841741562, 0.0028687736485153437, 0.28386104106903076, 0.005337242502719164, 0.02014417201280594, 0.002218896523118019, 0.0027426276355981827, 0.0006040180451236665, 0.0009077321155928075, 0.00022732846264261752, 0.002168965060263872, 0.05800969526171684, 0.28383004665374756], [0.00245596282184124, 0.01727631874382496, 0.04174289107322693, 0.12437298148870468, 0.048110589385032654, 0.19338935613632202, 0.004294795449823141, 0.21021534502506256, 0.06061951816082001, 0.008638416416943073, 0.011754006147384644, 0.009184561669826508, 0.007567041087895632, 0.00324023119173944, 0.002118039643391967, 0.005313578527420759, 0.039511539041996, 0.21019479632377625], [0.0018585724756121635, 0.012082763016223907, 0.03587961569428444, 0.03162924200296402, 0.05624169483780861, 0.2520900070667267, 0.0016662146663293242, 0.25791117548942566, 0.032094914466142654, 0.0068973032757639885, 0.00602083932608366, 0.005651292856782675, 0.0026507119182497263, 0.0008695640717633069, 0.0015419904375448823, 0.001200811704620719, 0.03583010286092758, 0.2578832507133484], [0.0023401544895023108, 0.01024358719587326, 0.03699512034654617, 0.025719914585351944, 0.015051606111228466, 0.12752816081047058, 0.0027358054649084806, 0.328978031873703, 0.02689450979232788, 0.0042948415502905846, 0.007199451327323914, 0.005597708746790886, 0.004356002435088158, 0.000788948789704591, 0.0006171842105686665, 0.0009699813090264797, 0.07074422389268875, 0.32894477248191833], [0.0017057869117707014, 0.009456495754420757, 0.012059221975505352, 0.046989426016807556, 0.04275370389223099, 0.04635361582040787, 0.012815609574317932, 0.2886880040168762, 0.146025151014328, 0.006269930861890316, 0.0064554414711892605, 0.009179143235087395, 0.0007378277368843555, 0.0005298458854667842, 0.00044705727486871183, 0.0005758714396506548, 0.08029480278491974, 0.2886630892753601], [0.00029861574876122177, 0.0006389690097421408, 0.0010823518969118595, 0.0008453875198028982, 0.0012002025032415986, 0.0012378348037600517, 0.00040626400732435286, 0.46155473589897156, 0.003321785479784012, 0.0003569863038137555, 0.000681072473526001, 0.0013613682240247726, 0.0004572253383230418, 0.00024089281214401126, 0.0001325275661656633, 0.00025833575637079775, 0.06442489475011826, 0.4615005850791931], [0.003885416081175208, 0.018645968288183212, 0.039869166910648346, 0.027553586289286613, 0.017359627410769463, 0.09230875223875046, 0.006832537241280079, 0.31347784399986267, 0.04449060186743736, 0.009965307079255581, 0.009285897947847843, 0.008054309524595737, 0.004465612582862377, 0.0010642324341461062, 0.0004458365438040346, 0.0013065930688753724, 0.0875367820262909, 0.31345197558403015], [0.0018364019924774766, 0.03382977843284607, 0.5991441011428833, 0.015336329117417336, 0.0066644358448684216, 0.05839848145842552, 0.006613109260797501, 0.0718870535492897, 0.010950466617941856, 0.06882041692733765, 0.004989304579794407, 0.003945652861148119, 0.0021382553968578577, 0.008777023293077946, 0.001353649073280394, 0.007816283032298088, 0.025617560371756554, 0.07188183069229126], [0.003539355704560876, 0.00489558931440115, 0.024808047339320183, 0.009181241504848003, 0.006688850000500679, 0.05698227137327194, 0.0017550983466207981, 0.335409939289093, 0.01819087378680706, 0.007590685039758682, 0.04067442938685417, 0.01504823099821806, 0.05555162951350212, 0.002663158345967531, 0.002599403029307723, 0.006648382171988487, 0.07239503413438797, 0.3353777825832367], [0.0019415683345869184, 0.002274005440995097, 0.014151439070701599, 0.0013173478655517101, 0.001987713621929288, 0.015169227495789528, 0.0009175190352834761, 0.40147945284843445, 0.014295799657702446, 0.004466657061129808, 0.007842408493161201, 0.01300603523850441, 0.027676736935973167, 0.005450068973004818, 0.0012972818221896887, 0.008297002874314785, 0.07699507474899292, 0.40143465995788574], [0.001905662938952446, 0.0006398847326636314, 0.0063690426759421825, 0.0010407449444755912, 0.0005045255529694259, 0.0053245448507368565, 0.00017684952763374895, 0.42756184935569763, 0.004579153377562761, 0.0009226998081430793, 0.0033032421488314867, 0.002501492155715823, 0.042732927948236465, 0.002317445818334818, 0.0006215890753082931, 0.004395878408104181, 0.06759403645992279, 0.4275084435939789], [0.0004543954855762422, 0.00033188771340064704, 0.01323113776743412, 0.0006833897205069661, 0.0004347867798060179, 0.004855477251112461, 0.0009616127354092896, 0.42146793007850647, 0.001345873693935573, 0.0006999275065027177, 0.00039335794281214476, 0.0010783405741676688, 0.0016005480429157615, 0.014826063998043537, 0.0006545179639942944, 0.019954459741711617, 0.09561119228601456, 0.4214150607585907], [0.0008759490447118878, 0.00018731222371570766, 0.002486472949385643, 0.0002203641925007105, 0.00036636460572481155, 0.002170547377318144, 0.0005175332771614194, 0.4265150725841522, 0.0038235222455114126, 0.0012487105559557676, 0.0008595815161243081, 0.0034318282268941402, 0.0018513350514695048, 0.024049509316682816, 0.0010818131268024445, 0.023337386548519135, 0.08052485436201096, 0.42645183205604553], [0.0006958151352591813, 0.0005498644895851612, 0.012966915965080261, 0.001219040947034955, 0.0006719160010106862, 0.004943782929331064, 0.0009462318266741931, 0.410341739654541, 0.0009453478851355612, 0.0006018405547365546, 0.0008143697632476687, 0.0016901497729122639, 0.0029697557911276817, 0.014319704845547676, 0.0008609719225205481, 0.022021887823939323, 0.11315125972032547, 0.41028928756713867], [0.00020261654572095722, 0.0005247960798442364, 0.0006758988020010293, 0.0009005678002722561, 0.0012792088091373444, 0.00135267642326653, 0.0003841780999209732, 0.46017104387283325, 0.004197299480438232, 0.00028629470034502447, 0.0006222661468200386, 0.001538697979412973, 0.00030602383776567876, 0.00019425837672315538, 9.32296461542137e-05, 0.00017200967704411596, 0.06698355078697205, 0.46011531352996826], [0.00029861650546081364, 0.0006389705813489854, 0.0010823339689522982, 0.0008453879854641855, 0.0012001883005723357, 0.0012378282845020294, 0.0004062578664161265, 0.46155455708503723, 0.003321815747767687, 0.0003569911059457809, 0.000681081903167069, 0.0013613956980407238, 0.00045722711365669966, 0.00024089546059258282, 0.00013252928329166025, 0.0002583357854746282, 0.064425028860569, 0.4615006446838379]], [[0.006297331303358078, 0.08532749116420746, 0.04146086052060127, 0.14273907244205475, 0.1955622285604477, 0.22956785559654236, 0.04546564072370529, 0.0823705866932869, 0.026250770315527916, 0.01977717876434326, 0.00694336649030447, 0.003679543500766158, 0.001857744762673974, 0.001063231728039682, 0.0010634305654093623, 0.0009714777115732431, 0.027237188071012497, 0.08236498385667801], [0.01598490960896015, 0.045713819563388824, 0.021603349596261978, 0.01347297616302967, 0.002162151737138629, 0.0031395929399877787, 0.003049702849239111, 0.31883272528648376, 0.02181444689631462, 0.07929780334234238, 0.033361129462718964, 0.0030523783061653376, 0.006102860439568758, 0.0011486392468214035, 0.0009163944632746279, 0.006425557192414999, 0.1051192432641983, 0.3188023269176483], [0.0024169913958758116, 0.0016946605173870921, 0.001723308814689517, 0.001713485922664404, 0.0010416985023766756, 0.0006710849702358246, 0.0009589678375050426, 0.4268689453601837, 0.007016446907073259, 0.0038305921480059624, 0.0040815738029778, 0.0017249564407393336, 0.001102731446735561, 0.0007984595140442252, 0.0005283535574562848, 0.002488987985998392, 0.11451146751642227, 0.42682743072509766], [0.04703891649842262, 0.05165586620569229, 0.013763758353888988, 0.030119044706225395, 0.011079514399170876, 0.011957813054323196, 0.00863686203956604, 0.2660178542137146, 0.07599765062332153, 0.038539819419384, 0.040893543511629105, 0.004505797754973173, 0.02131768688559532, 0.0029803398065268993, 0.005579153075814247, 0.00928732380270958, 0.09463594853878021, 0.26599305868148804], [0.013265848159790039, 0.021234016865491867, 0.00865547638386488, 0.007966461591422558, 0.0027485089376568794, 0.0024729541037231684, 0.00547496322542429, 0.378327876329422, 0.016870692372322083, 0.014227237552404404, 0.006594040431082249, 0.002073013223707676, 0.00881649274379015, 0.0020075496286153793, 0.0021196601446717978, 0.0051454887725412846, 0.1237088069319725, 0.37829089164733887], [0.02331109344959259, 0.016410144045948982, 0.008005302399396896, 0.014670119620859623, 0.0074540735222399235, 0.007472431752830744, 0.007501291576772928, 0.34845253825187683, 0.04625697806477547, 0.019385330379009247, 0.02136767841875553, 0.005910944193601608, 0.011156143620610237, 0.0021100970916450024, 0.0009773691417649388, 0.005178247112780809, 0.10596292465925217, 0.3484173119068146], [0.005123291164636612, 0.026676343753933907, 0.005671131424605846, 0.03360878676176071, 0.01250111497938633, 0.009473467245697975, 0.010769111104309559, 0.3563310205936432, 0.04112229868769646, 0.009895117953419685, 0.007191711105406284, 0.001947607146576047, 0.0019795026164501905, 0.0006004475872032344, 0.0007936520269140601, 0.0017034257762134075, 0.11831441521644592, 0.3562975525856018], [0.00031610828591510653, 0.0008862669346854091, 0.0008077698294073343, 0.0018173721618950367, 0.0016589416190981865, 0.0005471894983202219, 0.0009045967599377036, 0.4486299157142639, 0.0012632157886400819, 0.0007773445686325431, 0.0014324584044516087, 0.0031418839935213327, 0.001226242515258491, 0.0005330907879397273, 0.0003935286367777735, 0.0004570217279251665, 0.08661710470914841, 0.44858992099761963], [0.022488154470920563, 0.06413812935352325, 0.026145711541175842, 0.09613041579723358, 0.040167298167943954, 0.08163842558860779, 0.019167926162481308, 0.2504718005657196, 0.028030510991811752, 0.03004797361791134, 0.00804862380027771, 0.007176229730248451, 0.008818475529551506, 0.0031971826683729887, 0.0011248255614191294, 0.004194369073957205, 0.05856720358133316, 0.25044670701026917], [0.0075888740830123425, 0.05084892734885216, 0.09341619163751602, 0.05321898311376572, 0.0211724154651165, 0.06662339717149734, 0.008127011358737946, 0.2633773386478424, 0.006168150343000889, 0.05950368195772171, 0.01562147494405508, 0.007986525073647499, 0.010767567902803421, 0.003610653104260564, 0.0036190147511661053, 0.01085670292377472, 0.05413883179426193, 0.2633543014526367], [0.028269924223423004, 0.08416488021612167, 0.03996463119983673, 0.05015932396054268, 0.010897519066929817, 0.04549421742558479, 0.006890983786433935, 0.21412983536720276, 0.011186528019607067, 0.0796014666557312, 0.06848928332328796, 0.02633088454604149, 0.05050520971417427, 0.004938958678394556, 0.008788404054939747, 0.013008142821490765, 0.04307267442345619, 0.21410711109638214], [0.003220055252313614, 0.0172969251871109, 0.007245936896651983, 0.015297734178602695, 0.004290791694074869, 0.004289126489311457, 0.0032145429868251085, 0.3914172053337097, 0.004181950818747282, 0.013778210617601871, 0.013861458748579025, 0.011831087060272694, 0.013678730465471745, 0.0028582410886883736, 0.0028103196527808905, 0.003571186913177371, 0.09578048437833786, 0.39137595891952515], [0.0023123109713196754, 0.00985004473477602, 0.005529484711587429, 0.009037571027874947, 0.0030212311539798975, 0.019009409472346306, 0.003284463658928871, 0.3677755296230316, 0.001531496411189437, 0.008609248325228691, 0.018579667434096336, 0.013053442351520061, 0.06257408857345581, 0.006757975555956364, 0.007292815949767828, 0.013581220991909504, 0.08046532422304153, 0.3677346706390381], [0.0017613810487091541, 0.0098361661657691, 0.004452899564057589, 0.015934335067868233, 0.006262433715164661, 0.01029908936470747, 0.004809537436813116, 0.4085994362831116, 0.0026546847075223923, 0.0034107263199985027, 0.0044774278067052364, 0.008058068342506886, 0.012329118326306343, 0.0025219502858817577, 0.003866781946271658, 0.0033661844208836555, 0.08880159258842468, 0.4085581302642822], [0.005130374804139137, 0.04777655005455017, 0.017369503155350685, 0.024532634764909744, 0.008006365038454533, 0.026997502893209457, 0.01033091265708208, 0.33486422896385193, 0.0013800963060930371, 0.0346033088862896, 0.014193654991686344, 0.014274499379098415, 0.015505463816225529, 0.0033798643853515387, 0.003500360529869795, 0.014157491736114025, 0.08916700631380081, 0.33483022451400757], [0.0008487168815918267, 0.003566997591406107, 0.0020271639805287123, 0.006957596633583307, 0.001989784650504589, 0.006283788941800594, 0.004550759214907885, 0.4158172011375427, 0.0021665645763278008, 0.0016643350245431066, 0.0026682945899665356, 0.005294850096106529, 0.01106880884617567, 0.002734646899625659, 0.0028897584415972233, 0.002805691445246339, 0.11088928580284119, 0.41577577590942383], [0.0001494945026934147, 0.0006759926327504218, 0.0004098378703929484, 0.0016393475234508514, 0.0012104922207072377, 0.00039050914347171783, 0.0005939449765719473, 0.45512276887893677, 0.0010999254882335663, 0.0005121354479342699, 0.0009576489683240652, 0.0017272352706640959, 0.0006277127540670335, 0.00017832986486610025, 0.00018855679081752896, 0.00020953521016053855, 0.07923123985528946, 0.4550752341747284], [0.00031610357109457254, 0.0008862466202117503, 0.0008077713428065181, 0.0018173200078308582, 0.0016588994767516851, 0.0005471772165037692, 0.0009045746992342174, 0.44862988591194153, 0.0012632084544748068, 0.0007773504476062953, 0.001432453515008092, 0.003141885157674551, 0.0012262377422302961, 0.0005330843850970268, 0.0003935188287869096, 0.0004570190794765949, 0.08661680668592453, 0.4485905170440674]], [[0.0104027409106493, 0.011686058714985847, 0.0008456174400635064, 0.025782277807593346, 0.02186555229127407, 0.005683401599526405, 0.06537509709596634, 0.3679440915584564, 0.014696236699819565, 0.0014378326013684273, 0.004056754056364298, 0.0047688414342701435, 0.002949155168607831, 0.00016155815683305264, 0.0023437906056642532, 0.0003053822729270905, 0.09178788959980011, 0.3679077625274658], [0.01558005716651678, 0.004394535906612873, 0.004494654014706612, 0.007845793850719929, 0.008311945013701916, 0.008764463476836681, 0.018945960327982903, 0.3004174530506134, 0.1963895857334137, 0.004687453154474497, 0.004691140726208687, 0.002858177525922656, 0.0007776233251206577, 0.0006266087293624878, 0.0006174093578010798, 0.0007406104123219848, 0.1194581538438797, 0.30039840936660767], [0.016451722010970116, 0.032476454973220825, 0.016381816938519478, 0.01234723161906004, 0.008065125904977322, 0.02439766563475132, 0.011779064312577248, 0.32950469851493835, 0.057379499077796936, 0.026393288746476173, 0.016225235536694527, 0.0051675820723176, 0.0027440006379038095, 0.0010920221684500575, 0.000573157100006938, 0.0011717643355950713, 0.1083669513463974, 0.3294827938079834], [0.008323585614562035, 0.006614216603338718, 0.022023655474185944, 0.020651759579777718, 0.013295830227434635, 0.023808525875210762, 0.009911352768540382, 0.343033105134964, 0.05970768257975578, 0.015118260867893696, 0.01198335736989975, 0.005325316917151213, 0.005610394757241011, 0.002235064283013344, 0.000687452673446387, 0.004346427973359823, 0.10431338101625443, 0.3430105447769165], [0.030036896467208862, 0.003016051137819886, 0.001725266920402646, 0.03342822939157486, 0.03522833436727524, 0.02117353118956089, 0.00836935918778181, 0.25898030400276184, 0.2011900246143341, 0.023748895153403282, 0.01663295552134514, 0.009413463994860649, 0.009216157719492912, 0.0023369956761598587, 0.0009371329215355217, 0.005059422925114632, 0.08053864538669586, 0.25896838307380676], [0.016368698328733444, 0.005496216472238302, 0.0013369262451305985, 0.0774649977684021, 0.12293829768896103, 0.019299857318401337, 0.010552860796451569, 0.27443933486938477, 0.09968256950378418, 0.014722159132361412, 0.008518029935657978, 0.004805529955774546, 0.002040817867964506, 0.000243469126871787, 0.0004553321923594922, 0.0006365873850882053, 0.066579170525074, 0.27441903948783875], [0.009047520346939564, 0.003776408499106765, 0.005945539567619562, 0.01317522767931223, 0.01347169280052185, 0.055143725126981735, 0.020402994006872177, 0.3278920650482178, 0.09457932412624359, 0.004291293676942587, 0.008294518105685711, 0.006849305704236031, 0.007144730072468519, 0.0027364955749362707, 0.0020630203653126955, 0.006569042336195707, 0.09074169397354126, 0.32787540555000305], [0.01883692480623722, 0.021225934848189354, 0.014139561913907528, 0.013667677529156208, 0.009771912358701229, 0.015209545381367207, 0.049045074731111526, 0.320063978433609, 0.014358550310134888, 0.005417169071733952, 0.0060692462138831615, 0.00920344702899456, 0.0038502071984112263, 0.004427313804626465, 0.0015898896381258965, 0.006094998214393854, 0.1669812649488449, 0.3200472593307495], [0.06619083881378174, 0.008834784850478172, 0.0014442611718550324, 0.021129781380295753, 0.005155290476977825, 0.0073651764541864395, 0.18240246176719666, 0.2697386145591736, 0.01007398497313261, 0.0014601584989577532, 0.001117392093874514, 0.004648519679903984, 0.0019443175988271832, 0.0016500736819580197, 0.00020116922678425908, 0.0026958377566188574, 0.14421787858009338, 0.26972949504852295], [0.03842972591519356, 0.01734660007059574, 0.005194937344640493, 0.012511210516095161, 0.01937790773808956, 0.02525627426803112, 0.03693227842450142, 0.171565979719162, 0.33135589957237244, 0.006928511895239353, 0.053579166531562805, 0.018863311037421227, 0.004878569860011339, 0.0021064067259430885, 0.0028996372129768133, 0.0031004133634269238, 0.07811615616083145, 0.17155690491199493], [0.025454740971326828, 0.016478128731250763, 0.005001118406653404, 0.04040030390024185, 0.060175519436597824, 0.01655706763267517, 0.07534428685903549, 0.3008618652820587, 0.034021977335214615, 0.009096034802496433, 0.005346979480236769, 0.00595424510538578, 0.004934538621455431, 0.002283176640048623, 0.0002498074318282306, 0.0016681234119459987, 0.09532710909843445, 0.30084508657455444], [0.05286598950624466, 0.005600742530077696, 0.0018647739198058844, 0.06438227742910385, 0.03787828981876373, 0.012499187141656876, 0.04145728424191475, 0.2623468041419983, 0.09114021807909012, 0.004009597469121218, 0.04228987917304039, 0.015675874426960945, 0.015180528163909912, 0.0018386957235634327, 0.0006606329116038978, 0.002225032076239586, 0.08575312048196793, 0.2623310983181], [0.016162211075425148, 0.0033486064057797194, 0.00234211259521544, 0.0371091365814209, 0.01789132133126259, 0.014177304692566395, 0.030864663422107697, 0.2706007957458496, 0.031202692538499832, 0.004128722008317709, 0.13456155359745026, 0.05254668369889259, 0.031656913459300995, 0.0043642292730510235, 0.007305806968361139, 0.0038561250548809767, 0.06729786843061447, 0.27058324217796326], [0.008112045004963875, 0.006922518834471703, 0.0016048833495005965, 0.012033897452056408, 0.013989761471748352, 0.008082813583314419, 0.01747989095747471, 0.3806762993335724, 0.010320665314793587, 0.003533738199621439, 0.01049191877245903, 0.012784305959939957, 0.02133012004196644, 0.0026814667508006096, 0.006869908422231674, 0.005037190392613411, 0.09739840030670166, 0.3806501626968384], [0.00937111396342516, 0.0025394223630428314, 0.0017733376007527113, 0.006246636155992746, 0.013013171032071114, 0.008405379019677639, 0.009810232557356358, 0.3444838225841522, 0.013604317791759968, 0.004168971907347441, 0.0099873635917902, 0.027253536507487297, 0.034710586071014404, 0.05740400403738022, 0.014388328418135643, 0.013606877066195011, 0.08477841317653656, 0.34445440769195557], [0.004825809970498085, 0.009824281558394432, 0.0026713786646723747, 0.021895622834563255, 0.010604104027152061, 0.007582413032650948, 0.025370122864842415, 0.3679702579975128, 0.010488948784768581, 0.0038965719286352396, 0.013833933509886265, 0.014176782220602036, 0.011691407300531864, 0.0014744336949661374, 0.036776553839445114, 0.006747033447027206, 0.08222738653421402, 0.3679428994655609], [0.012151944451034069, 0.0052777500823140144, 0.005633995868265629, 0.005866574589163065, 0.0038045162800699472, 0.0110716437920928, 0.029694056138396263, 0.37352773547172546, 0.01347900927066803, 0.0018294814508408308, 0.0033932882361114025, 0.005619253031909466, 0.003155312268063426, 0.004069290589541197, 0.0006852914812043309, 0.006506103556603193, 0.1407306045293808, 0.3735042214393616], [0.0188369769603014, 0.02122507244348526, 0.014139669016003609, 0.013667292892932892, 0.009771808050572872, 0.015209569595754147, 0.049043696373701096, 0.3200649619102478, 0.014358771964907646, 0.005417118314653635, 0.00606929836794734, 0.009203455410897732, 0.0038502009119838476, 0.0044274223037064075, 0.001589871826581657, 0.006095118820667267, 0.16698125004768372, 0.3200484812259674]], [[0.14302843809127808, 0.15763142704963684, 0.055315714329481125, 0.03820159658789635, 0.1274343580007553, 0.15437008440494537, 0.053679898381233215, 0.006044565234333277, 0.0208832286298275, 0.0266279149800539, 0.04942239820957184, 0.04440025985240936, 0.05071457102894783, 0.012489601038396358, 0.022998042404651642, 0.02450394816696644, 0.006209638901054859, 0.006044275127351284], [0.0007040731143206358, 0.09411334991455078, 0.2667628228664398, 0.054379791021347046, 0.02008090168237686, 0.025682326406240463, 0.024708470329642296, 0.09195776283740997, 0.008389054797589779, 0.16440576314926147, 0.016465282067656517, 0.018862465396523476, 0.009857609868049622, 0.013006304390728474, 0.01902945712208748, 0.018357792869210243, 0.06128286197781563, 0.09195392578840256], [0.00011887256550835446, 0.019254418089985847, 0.1521340012550354, 0.009472423233091831, 0.00565860653296113, 0.009819095022976398, 0.012788975611329079, 0.13819146156311035, 0.005971151869744062, 0.28051185607910156, 0.009770789183676243, 0.021591633558273315, 0.016098320484161377, 0.04578258469700813, 0.008237168192863464, 0.051323436200618744, 0.07508816570043564, 0.138186976313591], [5.707809032173827e-05, 0.031892772763967514, 0.005479601211845875, 0.43873074650764465, 0.012240923941135406, 0.010932954028248787, 0.08429867774248123, 0.10133752971887589, 0.007212257944047451, 0.02147694118320942, 0.02310183085501194, 0.032452549785375595, 0.0014224224723875523, 0.004783123265951872, 0.009018619544804096, 0.005551518872380257, 0.1086762547492981, 0.10133417695760727], [0.00013123157259542495, 0.008215920999646187, 0.0016052728751674294, 0.014704431407153606, 0.04071065038442612, 0.04364342987537384, 0.04994354024529457, 0.09868775308132172, 0.02314959466457367, 0.01729562133550644, 0.038434721529483795, 0.30112966895103455, 0.02561972849071026, 0.02890847995877266, 0.055694181472063065, 0.05889933183789253, 0.0945432111620903, 0.09868326783180237], [0.0004061304498463869, 0.028840048238635063, 0.010499266907572746, 0.006227478850632906, 0.002952067879959941, 0.3711761236190796, 0.016347724944353104, 0.08949792385101318, 0.009464818984270096, 0.021740587428212166, 0.050703249871730804, 0.038709789514541626, 0.052481453865766525, 0.025475425645709038, 0.059198059141635895, 0.05272292345762253, 0.07406292855739594, 0.08949397504329681], [0.0006967731169424951, 0.017886202782392502, 0.008466911502182484, 0.035237543284893036, 0.0046896860003471375, 0.005728060845285654, 0.1416461020708084, 0.1652752161026001, 0.15988677740097046, 0.004085449036210775, 0.08859708160161972, 0.010559587739408016, 0.0022640216629952192, 0.001045921933837235, 0.0030383365228772163, 0.00033105857437476516, 0.18529759347438812, 0.1652676910161972], [0.005263092927634716, 0.04396868869662285, 0.07975968718528748, 0.027498146519064903, 0.010034213773906231, 0.01965143345296383, 0.03965795412659645, 0.14697149395942688, 0.051617126911878586, 0.023492207750678062, 0.04158293083310127, 0.0258173868060112, 0.023753764107823372, 0.07159411162137985, 0.01986905187368393, 0.027400732040405273, 0.19509702920913696, 0.1469709575176239], [0.5214704871177673, 0.012269379571080208, 0.012967837043106556, 0.01592603139579296, 0.07705417275428772, 0.19444318115711212, 0.010770391672849655, 0.0016674239886924624, 0.09720782190561295, 0.00443641934543848, 0.01674141362309456, 0.013721429742872715, 0.009126831777393818, 0.0006717421347275376, 0.006575108505785465, 0.0017102084821090102, 0.0015727878781035542, 0.0016673190984874964], [0.00509173097088933, 0.0031852605752646923, 0.8862209916114807, 0.00023403474187944084, 0.00037700808024965227, 0.0010648443130776286, 1.1201423149032053e-05, 2.8476808438426815e-05, 4.005103255622089e-05, 0.10284564644098282, 5.197343125473708e-05, 4.152390101808123e-05, 5.974277519271709e-05, 0.00010597726213745773, 3.9766044210409746e-05, 0.0005594596732407808, 1.3930495697422884e-05, 2.847436371666845e-05], [0.27924060821533203, 0.013357702642679214, 0.03068910352885723, 0.00552718061953783, 0.039644304662942886, 0.24558648467063904, 0.0015927243512123823, 0.00044941992382518947, 0.006575297098606825, 0.001394799561239779, 0.09293553233146667, 0.05359356850385666, 0.2089489847421646, 0.003151772078126669, 0.012655665166676044, 0.003925555385649204, 0.0002818829088937491, 0.00044938584323972464], [0.22567610442638397, 0.010481292381882668, 0.011316144838929176, 0.020651470869779587, 0.15034717321395874, 0.0335950143635273, 0.0008207337814383209, 0.00036507192999124527, 0.004260329995304346, 0.001210718066431582, 0.018504833802580833, 0.4532274305820465, 0.0507325679063797, 0.0034904894419014454, 0.011009199544787407, 0.003769354661926627, 0.00017706374637782574, 0.00036504966556094587], [0.07220824807882309, 0.004308277741074562, 0.024945877492427826, 0.0014931270852684975, 0.0037807326298207045, 0.06533361971378326, 0.00021812727209180593, 0.00022244079445954412, 0.0005256431177258492, 0.000578097184188664, 0.0025694272480905056, 0.004454462323337793, 0.3519984781742096, 0.2108721286058426, 0.013372394256293774, 0.242824524641037, 7.200489926617593e-05, 0.00022242742124944925], [0.13061220943927765, 0.02296077460050583, 0.2990608513355255, 0.006427838932722807, 0.030263252556324005, 0.09459486603736877, 0.0008143977611325681, 0.00022544260718859732, 0.0003785690641961992, 0.00301058660261333, 0.0011033850023522973, 0.0008035832433961332, 0.01338626816868782, 0.1260257214307785, 0.0008932178025133908, 0.2691502571105957, 6.332747580017895e-05, 0.00022542283113580197], [0.02808099240064621, 0.013364974409341812, 0.05114878714084625, 0.020480850711464882, 0.03498018532991409, 0.42208901047706604, 0.014435835182666779, 0.0023719852324575186, 0.0013217423111200333, 0.002049052156507969, 0.003116863314062357, 0.0018186761299148202, 0.018972231075167656, 0.18678712844848633, 0.04582175984978676, 0.14921708405017853, 0.0015709159197285771, 0.0023718755692243576], [0.007589342538267374, 0.004101108759641647, 0.0849313735961914, 0.0004314427496865392, 0.001648096484132111, 0.021074671298265457, 4.233192521496676e-05, 2.9821549105690792e-05, 6.491263047792017e-05, 0.0010601007379591465, 0.0001775818964233622, 0.00010169186134589836, 0.0036413988564163446, 0.15281423926353455, 0.00021566409850493073, 0.7220378518104553, 8.593799975642469e-06, 2.981887519126758e-05], [0.019363868981599808, 0.05517375469207764, 0.12015185505151749, 0.06461784243583679, 0.016063131392002106, 0.04088779538869858, 0.04670502990484238, 0.12345916777849197, 0.13100287318229675, 0.015019338577985764, 0.03952156379818916, 0.018142011016607285, 0.010438955388963223, 0.018996279686689377, 0.00709927175194025, 0.005723273381590843, 0.14417888224124908, 0.12345511466264725], [0.005262835882604122, 0.04396757856011391, 0.0797572210431099, 0.027497077360749245, 0.010033848695456982, 0.01965136080980301, 0.03965746983885765, 0.14697392284870148, 0.05161760747432709, 0.023491954430937767, 0.041582733392715454, 0.025816895067691803, 0.023753296583890915, 0.07159406691789627, 0.01986881159245968, 0.0274005439132452, 0.19509951770305634, 0.1469733864068985]], [[0.011868099682033062, 0.011866113170981407, 0.028826173394918442, 0.040174610912799835, 0.03671519458293915, 0.16737936437129974, 0.015067142434418201, 0.03657398000359535, 0.4242737293243408, 0.014169917441904545, 0.10657025873661041, 0.02190527878701687, 0.024208087474107742, 0.0051759155467152596, 0.001746505149640143, 0.0015658685006201267, 0.015341459773480892, 0.03657224774360657], [0.009969159960746765, 0.022574041038751602, 0.05360949784517288, 0.01494637131690979, 0.005246432032436132, 0.008984969928860664, 0.01154350582510233, 0.17612561583518982, 0.07799863815307617, 0.2982204258441925, 0.009588122367858887, 0.02151237614452839, 0.005503916647285223, 0.0074156210757792, 0.002987409010529518, 0.006654092110693455, 0.09100405871868134, 0.1761157512664795], [0.01246985699981451, 0.00694256043061614, 0.042884279042482376, 0.004853075835853815, 0.00349889462813735, 0.0032942318357527256, 0.0016710386844351888, 0.39552316069602966, 0.008867023512721062, 0.020658772438764572, 0.0006813371437601745, 0.0032523958943784237, 0.0004861743364017457, 0.0005320875789038837, 0.0007142575923353434, 0.00033536460250616074, 0.09784331172704697, 0.39549222588539124], [0.011425687000155449, 0.04879587143659592, 0.025735830888152122, 0.034533143043518066, 0.01515966560691595, 0.013020730577409267, 0.02005556970834732, 0.13130123913288116, 0.09217079728841782, 0.2922942340373993, 0.03917568549513817, 0.01781928539276123, 0.005257526412606239, 0.0034863038454204798, 0.00636629294604063, 0.004476737231016159, 0.10762981325387955, 0.13129569590091705], [0.026102405041456223, 0.01294988114386797, 0.0160819198936224, 0.007850591093301773, 0.007077161222696304, 0.014570544473826885, 0.00692379055544734, 0.15805520117282867, 0.06962611526250839, 0.3010726571083069, 0.026740944012999535, 0.03234212473034859, 0.015814686194062233, 0.013712335377931595, 0.011992722749710083, 0.021149875596165657, 0.09988979250192642, 0.15804725885391235], [0.029373526573181152, 0.01624767854809761, 0.03162512555718422, 0.011388481594622135, 0.014061281457543373, 0.061045121401548386, 0.0028384001925587654, 0.2544732093811035, 0.04932163283228874, 0.08926396816968918, 0.01828639768064022, 0.026807935908436775, 0.01996442675590515, 0.013004066422581673, 0.01859750598669052, 0.011146371252834797, 0.07809716463088989, 0.25445762276649475], [0.015458601526916027, 0.012426157481968403, 0.03603725880384445, 0.012860151007771492, 0.012190515175461769, 0.01611039787530899, 0.023583974689245224, 0.21772868931293488, 0.17364566028118134, 0.06025224179029465, 0.022609809413552284, 0.024782666936516762, 0.0065252636559307575, 0.007064149249345064, 0.005501278676092625, 0.005971082020550966, 0.12953485548496246, 0.21771737933158875], [0.0020865905098617077, 0.0004763801989611238, 0.0009668020065873861, 0.00638701394200325, 0.0006998740718699992, 0.0015220356872305274, 0.0084080770611763, 0.3398228585720062, 0.0041663129813969135, 0.0008049883181229234, 0.0020464633125811815, 0.0010964380344375968, 0.0009379592374898493, 0.002368893474340439, 0.0009237495833076537, 0.0020331875421106815, 0.2854275703430176, 0.3398247957229614], [0.06646418571472168, 0.023851638659834862, 0.010888628661632538, 0.06488964706659317, 0.046550452709198, 0.08551754057407379, 0.011534559540450573, 0.10917546600103378, 0.31876441836357117, 0.002229174366220832, 0.05492463707923889, 0.01485848892480135, 0.026193464174866676, 0.01052581425756216, 0.006162620149552822, 0.0012753293849527836, 0.03702634200453758, 0.10916752368211746], [0.03110838681459427, 0.012635564431548119, 0.20749276876449585, 0.017810599878430367, 0.01201528962701559, 0.027282819151878357, 0.013193401508033276, 0.24026581645011902, 0.04482117295265198, 0.05386078357696533, 0.0008430399466305971, 0.0013893713476136327, 0.0004115079645998776, 0.0010532408487051725, 0.0005701639456674457, 0.0006788299069739878, 0.09431399405002594, 0.24025321006774902], [0.07720266282558441, 0.03253690525889397, 0.03357374668121338, 0.11965829879045486, 0.02432592585682869, 0.07844208925962448, 0.004770488012582064, 0.1570630669593811, 0.13122378289699554, 0.01701528951525688, 0.06761053204536438, 0.014704686589539051, 0.035437144339084625, 0.007331768050789833, 0.0033764790277928114, 0.002512118546292186, 0.036162182688713074, 0.15705269575119019], [0.05446213483810425, 0.04039971902966499, 0.04617607221007347, 0.0763707384467125, 0.025430697947740555, 0.042804211378097534, 0.011995943263173103, 0.21974465250968933, 0.12090633064508438, 0.014877177774906158, 0.029596470296382904, 0.017725203186273575, 0.01362651214003563, 0.004145327024161816, 0.0015845162561163306, 0.0018419524421915412, 0.058584194630384445, 0.21972814202308655], [0.01675376668572426, 0.017808696255087852, 0.0754895955324173, 0.030613211914896965, 0.01811813935637474, 0.08262578397989273, 0.003139476291835308, 0.2591349184513092, 0.01947939209640026, 0.014754301868379116, 0.0063150981441140175, 0.009350714273750782, 0.051342304795980453, 0.06613776087760925, 0.006476022303104401, 0.025981999933719635, 0.037365254014730453, 0.2591136693954468], [0.021573828533291817, 0.007401375100016594, 0.06467655301094055, 0.02103315107524395, 0.011479895561933517, 0.07115773111581802, 0.0033968568313866854, 0.3214164674282074, 0.01069694384932518, 0.0015208012191578746, 0.0011894921772181988, 0.001703375717625022, 0.007047131657600403, 0.06814897060394287, 0.0017429987201467156, 0.014887986704707146, 0.049537815153598785, 0.3213885724544525], [0.010589735582470894, 0.021265747025609016, 0.07180570065975189, 0.04205022007226944, 0.02244281955063343, 0.037895526736974716, 0.009569608606398106, 0.32143256068229675, 0.020434267818927765, 0.006640437059104443, 0.004264981020241976, 0.007354019675403833, 0.006078788544982672, 0.02039937488734722, 0.003636743873357773, 0.005351977422833443, 0.06737891584634781, 0.3214085102081299], [0.009219646453857422, 0.004009172786027193, 0.040879298001527786, 0.02640310488641262, 0.006759168580174446, 0.062067750841379166, 0.0017084477003663778, 0.37194758653640747, 0.006939296144992113, 0.0029453402385115623, 0.00048595399130135775, 0.0007927699480205774, 0.0018139242893084884, 0.024849828332662582, 0.0008668414084240794, 0.0075021362863481045, 0.05888979882001877, 0.3719199299812317], [0.0014275753637775779, 0.0004417349409777671, 0.0010091110598295927, 0.004934363998472691, 0.0006916601560078561, 0.0014808464329689741, 0.0062220836989581585, 0.37869054079055786, 0.006427027750760317, 0.00042801658855751157, 0.0015390535118058324, 0.0007240763516165316, 0.00047469427227042615, 0.0012639417545869946, 0.00035492554889060557, 0.0008694390999153256, 0.21433983743190765, 0.37868115305900574], [0.002086570020765066, 0.0004763823817484081, 0.0009668000275269151, 0.006386859342455864, 0.0006998682511039078, 0.0015220100758597255, 0.008407999761402607, 0.33982378244400024, 0.00416621332988143, 0.00080499128671363, 0.0020464288536459208, 0.0010964436223730445, 0.0009379600523971021, 0.002368888584896922, 0.0009237529593519866, 0.00203321548178792, 0.2854257822036743, 0.3398260474205017]], [[0.001402710098773241, 0.03571569547057152, 0.004660988692194223, 0.11625371873378754, 0.1332743614912033, 0.20944775640964508, 0.4227329194545746, 0.02206283062696457, 0.010259658098220825, 0.0007831560214981437, 0.0016408392693847418, 0.0006786928861401975, 0.00030825354042463005, 4.500401337281801e-05, 7.481904322048649e-05, 5.004384001949802e-05, 0.01854674518108368, 0.02206183597445488], [0.015827666968107224, 0.054683782160282135, 0.016850046813488007, 0.09326890110969543, 0.045818205922842026, 0.04576438292860985, 0.04036014527082443, 0.2720123827457428, 0.010182454250752926, 0.00759928347542882, 0.0032586168963462114, 0.0021621976047754288, 0.0005041334079578519, 8.967658504843712e-05, 0.00017175290849991143, 0.00023794053413439542, 0.11921276152133942, 0.2719956636428833], [0.051031965762376785, 0.2407917082309723, 0.03788847476243973, 0.11659052222967148, 0.10807184875011444, 0.06017569825053215, 0.046094220131635666, 0.09334595501422882, 0.016923541203141212, 0.045506056398153305, 0.012738104909658432, 0.008586562238633633, 0.0025472540874034166, 0.0005817724741064012, 0.0014378185151144862, 0.0013465775409713387, 0.06299994885921478, 0.09334193170070648], [0.01713913306593895, 0.26662126183509827, 0.09003165364265442, 0.06251651048660278, 0.06294523179531097, 0.02407086081802845, 0.04434148967266083, 0.1410040706396103, 0.006576164159923792, 0.06607935577630997, 0.0009365120204165578, 0.0015796213410794735, 0.0001878144103102386, 0.000270062533672899, 0.00013451151608023793, 0.0008136899559758604, 0.07375752180814743, 0.14099448919296265], [0.015129843726754189, 0.05613076686859131, 0.03715785965323448, 0.08917548507452011, 0.05564951151609421, 0.04084712266921997, 0.05549345165491104, 0.2598997950553894, 0.005046267528086901, 0.010683093219995499, 0.001088995486497879, 0.0009882573504000902, 0.00014574725355487317, 8.648145012557507e-05, 0.00015711106243543327, 0.0001307404163526371, 0.11230438947677612, 0.2598850429058075], [0.013830074109137058, 0.1300552636384964, 0.0176690760999918, 0.2589797079563141, 0.08879104256629944, 0.04894714429974556, 0.08405352383852005, 0.1278192102909088, 0.005027140956372023, 0.00851956196129322, 0.0020085389260202646, 0.0012339656241238117, 0.0004973908653482795, 0.00011365488171577454, 0.00039048847975209355, 0.00023678508296143264, 0.08401328325271606, 0.12781420350074768], [0.007832836359739304, 0.02573966234922409, 0.004745896905660629, 0.08163752406835556, 0.07160299271345139, 0.0615580677986145, 0.06221981346607208, 0.27624183893203735, 0.023538310080766678, 0.005181790795177221, 0.0019269188633188605, 0.0017179747810587287, 0.0011663229670375586, 0.0001993543264688924, 0.0005614832043647766, 0.0005181067972443998, 0.09738672524690628, 0.2762243151664734], [0.015903372317552567, 0.005447694566100836, 0.008410177193582058, 0.011061413213610649, 0.01540575921535492, 0.016176093369722366, 0.017725810408592224, 0.337411105632782, 0.0317387618124485, 0.00975853856652975, 0.010332375764846802, 0.02008046954870224, 0.010722589679062366, 0.00751888332888484, 0.005296035204082727, 0.007937593385577202, 0.131681427359581, 0.3373919725418091], [0.019855044782161713, 0.026007192209362984, 0.010679082944989204, 0.05931461974978447, 0.07294002175331116, 0.1671418696641922, 0.19897247850894928, 0.14038756489753723, 0.02910730428993702, 0.007864573039114475, 0.008851852267980576, 0.008190318942070007, 0.0025479078758507967, 0.0016051516868174076, 0.0032759197056293488, 0.004184652119874954, 0.09869510680437088, 0.14037935435771942], [0.06108887493610382, 0.026043234393000603, 0.005324383266270161, 0.04613710939884186, 0.024457618594169617, 0.05538265034556389, 0.06328964233398438, 0.17954154312610626, 0.14715299010276794, 0.0072495052590966225, 0.052963223308324814, 0.030040299519896507, 0.01229169499129057, 0.00270544714294374, 0.01029872801154852, 0.0028247060254216194, 0.09367936849594116, 0.17952899634838104], [0.06052675098180771, 0.043303728103637695, 0.011399085633456707, 0.01546687725931406, 0.01624555140733719, 0.017302224412560463, 0.07101225107908249, 0.19823254644870758, 0.06978707015514374, 0.0877697616815567, 0.01980719156563282, 0.02773495949804783, 0.0018614038126543164, 0.0016776863485574722, 0.0011707101948559284, 0.0026518930681049824, 0.1558312177658081, 0.19821912050247192], [0.024378599599003792, 0.016066282987594604, 0.005751576274633408, 0.014647138305008411, 0.010010471567511559, 0.011260587722063065, 0.03998507559299469, 0.2892588675022125, 0.058973025530576706, 0.01955472305417061, 0.01547648198902607, 0.01441813725978136, 0.0021189902909100056, 0.0016138787614181638, 0.000892529496923089, 0.002580508589744568, 0.18377497792243958, 0.28923818469047546], [0.042049653828144073, 0.019075242802500725, 0.010896755382418633, 0.017936544492840767, 0.024752864614129066, 0.015516054816544056, 0.051307883113622665, 0.1418749988079071, 0.10197999328374863, 0.06148790940642357, 0.10742402821779251, 0.114211805164814, 0.03306610509753227, 0.004925677552819252, 0.01259599532932043, 0.007864745333790779, 0.0911683514714241, 0.14186535775661469], [0.056853219866752625, 0.013024919666349888, 0.0020798789337277412, 0.018867408856749535, 0.020429180935025215, 0.013835259713232517, 0.07328362762928009, 0.10861379653215408, 0.0727725550532341, 0.012570273131132126, 0.13115496933460236, 0.15820585191249847, 0.06709980964660645, 0.00550033850595355, 0.02576221339404583, 0.0075365700758993626, 0.10380163788795471, 0.10860846191644669], [0.018308572471141815, 0.0007102982490323484, 0.0006115377182140946, 0.0034158658236265182, 0.004515369888395071, 0.0035254585091024637, 0.019576286897063255, 0.21504421532154083, 0.028267715126276016, 0.0030774034094065428, 0.07418420165777206, 0.10370735079050064, 0.12402581423521042, 0.01105734333395958, 0.017321286723017693, 0.007896704599261284, 0.14972613751888275, 0.2150285243988037], [0.03215261548757553, 0.018296798691153526, 0.005698926281183958, 0.013713165186345577, 0.018848419189453125, 0.005363021977245808, 0.06072307378053665, 0.14788150787353516, 0.030274439603090286, 0.03761895373463631, 0.06097249686717987, 0.15335901081562042, 0.03298162296414375, 0.005824557505548, 0.07915055006742477, 0.007495258469134569, 0.14177121222019196, 0.14787428081035614], [0.007767023518681526, 0.0025155365001410246, 0.0022886304650455713, 0.0072553218342363834, 0.00988297164440155, 0.009658006951212883, 0.013190315105021, 0.36710137128829956, 0.04389556869864464, 0.004571304190903902, 0.006860820576548576, 0.0118398517370224, 0.005418805405497551, 0.002645164495334029, 0.00323122669942677, 0.0036883207503706217, 0.13111458718776703, 0.367075115442276], [0.015902822837233543, 0.005447473842650652, 0.008409939706325531, 0.011061049997806549, 0.01540546864271164, 0.016175728291273117, 0.01772507280111313, 0.3374136984348297, 0.03173814341425896, 0.009758277796208858, 0.010332011617720127, 0.020080018788576126, 0.010722448118031025, 0.007518754340708256, 0.0052960580214858055, 0.007937527261674404, 0.13168089091777802, 0.3373945653438568]], [[0.13984361290931702, 0.018560903146862984, 0.050399865955114365, 0.07778041064739227, 0.004485273268073797, 0.016196928918361664, 0.015675552189350128, 0.14307767152786255, 0.02106771059334278, 0.13150714337825775, 0.017724446952342987, 0.004533273633569479, 0.01688644289970398, 0.017086684703826904, 0.07483423501253128, 0.025222279131412506, 0.08204331248998642, 0.14307421445846558], [0.03150355815887451, 0.0027779662050306797, 0.006857425905764103, 0.0012034738902002573, 0.0008517625974491239, 0.009661326184868813, 0.025052910670638084, 0.3043685853481293, 0.04152214154601097, 0.006504308432340622, 0.020004114136099815, 0.0020678129512816668, 0.007285501342266798, 0.006811641156673431, 0.011499556712806225, 0.0029199798591434956, 0.2147493213415146, 0.3043586015701294], [0.10766579955816269, 0.011028194800019264, 0.015468954108655453, 0.0027200302574783564, 0.0017386649269610643, 0.015904659405350685, 0.030884522944688797, 0.2584443986415863, 0.04957464337348938, 0.00867677852511406, 0.015273026190698147, 0.00825681071728468, 0.016180913895368576, 0.030742647126317024, 0.020732063800096512, 0.011283531785011292, 0.13699281215667725, 0.25843146443367004], [0.018768753856420517, 0.0010663215070962906, 0.0007890997221693397, 0.00046813380322419107, 0.0008981481078080833, 0.013738206587731838, 0.011053957976400852, 0.21551932394504547, 0.02348024956882, 0.002022145316004753, 0.30030936002731323, 0.010744362138211727, 0.00841929018497467, 0.002422010526061058, 0.007848873734474182, 0.0011751236161217093, 0.1657624989748001, 0.21551409363746643], [0.01804509572684765, 0.0009870936628431082, 0.0009208664996549487, 0.00042665936052799225, 5.283325299387798e-05, 0.004072870593518019, 0.00936741940677166, 0.2712550461292267, 0.044902559369802475, 0.00773763470351696, 0.026049448177218437, 0.00416952557861805, 0.0027592370752245188, 0.0007949782884679735, 0.0017925073625519872, 0.00037963181966915727, 0.3350314497947693, 0.27125516533851624], [0.08379101753234863, 0.006975832395255566, 0.012332702055573463, 0.005730460863560438, 0.0034405607730150223, 0.009999838657677174, 0.027565959841012955, 0.2601664066314697, 0.06155912205576897, 0.016848668456077576, 0.029027575626969337, 0.002463755663484335, 0.011614048853516579, 0.016287537291646004, 0.01105448231101036, 0.0064912582747638226, 0.17449112236499786, 0.2601596415042877], [0.03811647370457649, 0.0069527472369372845, 0.007208085153251886, 0.0025261600967496634, 0.003157954663038254, 0.007573285605758429, 0.02439037151634693, 0.2203928828239441, 0.16326682269573212, 0.039651140570640564, 0.029598036780953407, 0.018511921167373657, 0.0043287258595228195, 0.0035484260879456997, 0.0022720929700881243, 0.001295132446102798, 0.2068224847316742, 0.2203873097896576], [0.21676607429981232, 0.02304753288626671, 0.02914409339427948, 0.02990765869617462, 0.019477088004350662, 0.027199286967515945, 0.10854141414165497, 0.03818250447511673, 0.12667864561080933, 0.1348763108253479, 0.032513171434402466, 0.029293658211827278, 0.019479813054203987, 0.01776442676782608, 0.024351032450795174, 0.020345337688922882, 0.06424945592880249, 0.03818245232105255], [0.015247874893248081, 0.006159441079944372, 0.0036028095055371523, 0.01859564520418644, 0.003508293768391013, 0.017323726788163185, 0.01503417082130909, 0.3588577210903168, 0.00047747042845003307, 0.0026134655345231295, 0.006609360221773386, 0.0013197885127738118, 0.00334364571608603, 0.0036817023064941168, 0.0030875634402036667, 0.0016115750186145306, 0.18008244037628174, 0.35884326696395874], [0.025459589436650276, 0.03088635392487049, 0.0337035171687603, 0.018580486997961998, 0.0077684782445430756, 0.032787322998046875, 0.044368330389261246, 0.2785733938217163, 0.018451495096087456, 0.0032557907979935408, 0.007989775389432907, 0.0008375708130188286, 0.006446884013712406, 0.008521226234734058, 0.03947953134775162, 0.004956098739057779, 0.1593765765428543, 0.2785574793815613], [0.00917859561741352, 0.013299979269504547, 0.007770261261612177, 0.15238624811172485, 0.00569591810926795, 0.03666301816701889, 0.014601493254303932, 0.2765861749649048, 0.007017730735242367, 0.002930870046839118, 0.0008442483376711607, 0.00042809563456103206, 0.004052490461617708, 0.0022303475998342037, 0.004602181259542704, 0.0017903512343764305, 0.1833428293466568, 0.2765791416168213], [0.020052488893270493, 0.0033710284624248743, 0.0047568464651703835, 0.008090794086456299, 0.002925906563177705, 0.00640509556978941, 0.03764095902442932, 0.31643640995025635, 0.009350812062621117, 0.0010242970893159509, 0.0010208332678303123, 0.0001307333295699209, 0.0008293266873806715, 0.0005960458656772971, 0.0007955892360769212, 0.00029968153103254735, 0.269845575094223, 0.31642764806747437], [0.042581044137477875, 0.027637246996164322, 0.04167725890874863, 0.04275878146290779, 0.016704263165593147, 0.0878242552280426, 0.025053443387150764, 0.24490627646446228, 0.02848641574382782, 0.012176397256553173, 0.004604180809110403, 0.002713502151891589, 0.004623819142580032, 0.011650986969470978, 0.015377841889858246, 0.006067830137908459, 0.1402619183063507, 0.24489456415176392], [0.023724278435111046, 0.015023096464574337, 0.02419174090027809, 0.006644562352448702, 0.002815568121150136, 0.06347222626209259, 0.0230399277061224, 0.335224986076355, 0.00588874239474535, 0.005488316994160414, 0.0015712883323431015, 0.0013965629041194916, 0.00164895283523947, 0.001439891173504293, 0.000704489357303828, 0.0005941185518167913, 0.15192335844039917, 0.33520787954330444], [0.03157288208603859, 0.04563266783952713, 0.016842102631926537, 0.04205803573131561, 0.027741238474845886, 0.10527612268924713, 0.05626041814684868, 0.23187975585460663, 0.01850445754826069, 0.011372750625014305, 0.010860934853553772, 0.006757262162864208, 0.004923420026898384, 0.009460369125008583, 0.002315620891749859, 0.003390431636944413, 0.14328637719154358, 0.23186521232128143], [0.03169449791312218, 0.016576925292611122, 0.024668509140610695, 0.017913267016410828, 0.003352701896801591, 0.06440699100494385, 0.03437579795718193, 0.28358790278434753, 0.023539045825600624, 0.017531007528305054, 0.0037000486627221107, 0.001634252374060452, 0.0022306691389530897, 0.002974714618176222, 0.0038364168722182512, 0.0007199952960945666, 0.18367716670036316, 0.28357994556427], [0.13794150948524475, 0.020889604464173317, 0.024538790807127953, 0.034731656312942505, 0.023323725908994675, 0.024383453652262688, 0.12261222302913666, 0.07502564787864685, 0.16177485883235931, 0.09557163715362549, 0.03501236066222191, 0.03446067124605179, 0.01098981499671936, 0.00957640539854765, 0.008522570133209229, 0.006309824530035257, 0.09931119531393051, 0.0750240683555603], [0.21676616370677948, 0.02304765209555626, 0.029143784195184708, 0.02990754134953022, 0.019477397203445435, 0.02719936892390251, 0.10854054242372513, 0.038182422518730164, 0.12667904794216156, 0.13487565517425537, 0.03251362591981888, 0.029294328764081, 0.019479913637042046, 0.017764629796147346, 0.02435089834034443, 0.0203454177826643, 0.06424928456544876, 0.038182370364665985]], [[0.013339191675186157, 0.06692492961883545, 0.07357432693243027, 0.009639644995331764, 0.015530918724834919, 0.017048871144652367, 0.08090446144342422, 0.08498449623584747, 0.3086695671081543, 0.02507549710571766, 0.04660232365131378, 0.0651245191693306, 0.011531435884535313, 0.011357051320374012, 0.0019904254004359245, 0.0036533321253955364, 0.0790686085820198, 0.08498043566942215], [0.023506706580519676, 0.08710464835166931, 0.04788447916507721, 0.050236623734235764, 0.08745115250349045, 0.03509688749909401, 0.13620370626449585, 0.04721231013536453, 0.18782155215740204, 0.06794694066047668, 0.015624861232936382, 0.08234605193138123, 0.009472105652093887, 0.00738377682864666, 0.006943619344383478, 0.006673847790807486, 0.053880199790000916, 0.04721038416028023], [0.046304889023303986, 0.056376826018095016, 0.024488795548677444, 0.038360439240932465, 0.05008452385663986, 0.038269124925136566, 0.075077585875988, 0.10326432436704636, 0.15731947124004364, 0.09046151489019394, 0.02283698134124279, 0.03297176584601402, 0.020033787935972214, 0.011011403985321522, 0.009702823124825954, 0.009350377134978771, 0.1108260452747345, 0.10325930267572403], [0.036395084112882614, 0.1433962881565094, 0.061773691326379776, 0.06990332156419754, 0.09449522197246552, 0.02670755237340927, 0.19563907384872437, 0.03532647341489792, 0.07803257554769516, 0.04329304024577141, 0.013719791546463966, 0.09260060638189316, 0.005846214946359396, 0.007419824134558439, 0.004445970524102449, 0.005935036577284336, 0.049745965749025345, 0.035324305295944214], [0.03239904344081879, 0.13268090784549713, 0.05360790714621544, 0.02527764067053795, 0.10160805284976959, 0.017578260973095894, 0.09292685240507126, 0.04610895738005638, 0.17145264148712158, 0.05836840718984604, 0.035660892724990845, 0.11635469645261765, 0.010864702053368092, 0.006525102071464062, 0.004227695986628532, 0.007406802847981453, 0.040845584124326706, 0.04610597714781761], [0.048492878675460815, 0.02311316877603531, 0.01184682734310627, 0.009414500556886196, 0.01968308910727501, 0.007435660809278488, 0.011552569456398487, 0.2975021302700043, 0.0644102692604065, 0.026493264362215996, 0.021658802404999733, 0.029116811230778694, 0.013745683245360851, 0.0017375134630128741, 0.0027809988241642714, 0.0016411570832133293, 0.11189841479063034, 0.29747623205184937], [0.12442252784967422, 0.069790780544281, 0.04320492595434189, 0.07223799079656601, 0.09544534981250763, 0.03856677934527397, 0.1657094806432724, 0.028212031349539757, 0.17184637486934662, 0.027087436988949776, 0.029665639623999596, 0.051496781408786774, 0.006687361281365156, 0.003101598471403122, 0.003682996379211545, 0.00326774874702096, 0.03736317530274391, 0.028211066499352455], [0.016629142686724663, 0.002614869736135006, 0.008046346716582775, 0.004066511057317257, 0.00116616056766361, 0.003766304813325405, 0.0022688317112624645, 0.427503764629364, 0.008320456370711327, 0.002499646507203579, 0.001159296720288694, 0.0012386846356093884, 0.0016170359449461102, 0.0018144838977605104, 0.00048295760643668473, 0.000408647843869403, 0.08891833573579788, 0.42747849225997925], [0.04636108875274658, 0.1385994702577591, 0.18626739084720612, 0.013536983169615269, 0.02105683833360672, 0.04047426953911781, 0.07529886811971664, 0.09623131901025772, 0.10757157951593399, 0.01335906982421875, 0.052524384111166, 0.017358746379613876, 0.016003381460905075, 0.01294406782835722, 0.002473164116963744, 0.00435684947296977, 0.05935388803482056, 0.09622848033905029], [0.013616188429296017, 0.014855406247079372, 0.029664671048521996, 0.007046052720397711, 0.011409185826778412, 0.03886856883764267, 0.04563818499445915, 0.11751280725002289, 0.3306155204772949, 0.018958082422614098, 0.01551858615130186, 0.022304126992821693, 0.0353974848985672, 0.06454642862081528, 0.014713001437485218, 0.020720764994621277, 0.08110475540161133, 0.11751020699739456], [0.018248550593852997, 0.17799173295497894, 0.08284018188714981, 0.017093485221266747, 0.06876735389232635, 0.06948214024305344, 0.08715546876192093, 0.0436217375099659, 0.19859760999679565, 0.013882030732929707, 0.06245208531618118, 0.05987037718296051, 0.011498851701617241, 0.006483976263552904, 0.003093493403866887, 0.0021433571819216013, 0.03315742686390877, 0.0436202809214592], [0.03711824491620064, 0.15567070245742798, 0.06221190467476845, 0.020521285012364388, 0.058775395154953, 0.07874374836683273, 0.045986108481884, 0.041478272527456284, 0.13444173336029053, 0.03508923947811127, 0.08756338059902191, 0.13691018521785736, 0.013466293923556805, 0.008842375129461288, 0.004049394279718399, 0.00865152757614851, 0.02900334633886814, 0.04147674888372421], [0.014259940013289452, 0.07744491845369339, 0.0651799738407135, 0.026523197069764137, 0.10212982445955276, 0.07276712357997894, 0.024086592718958855, 0.1850319653749466, 0.08928047865629196, 0.009606694802641869, 0.018950840458273888, 0.047134771943092346, 0.006798564922064543, 0.005454865284264088, 0.002816801657900214, 0.003001632634550333, 0.06450752168893814, 0.18502429127693176], [0.042495161294937134, 0.12484557181596756, 0.09720741212368011, 0.07180838286876678, 0.05602211132645607, 0.06066390872001648, 0.03572588786482811, 0.14171594381332397, 0.07620959728956223, 0.022642167285084724, 0.01814638264477253, 0.034986186772584915, 0.0033052044454962015, 0.0017649258952587843, 0.0008645679918117821, 0.0005471128970384598, 0.06934025883674622, 0.14170919358730316], [0.019375044852495193, 0.24510076642036438, 0.1857498735189438, 0.03227536380290985, 0.058874089270830154, 0.026175888255238533, 0.03637358546257019, 0.09886396676301956, 0.05526745319366455, 0.02501055598258972, 0.012385981157422066, 0.03304082155227661, 0.0036288215778768063, 0.0025635510683059692, 0.0014623281313106418, 0.0006583856302313507, 0.06433584541082382, 0.09885767102241516], [0.02250809222459793, 0.04988715797662735, 0.058618687093257904, 0.017592066898941994, 0.03494744747877121, 0.028549278154969215, 0.025132223963737488, 0.2739860415458679, 0.06165757402777672, 0.014179724268615246, 0.011301420629024506, 0.01810561493039131, 0.002934766234830022, 0.002742090029641986, 0.0008533401996828616, 0.0010194616625085473, 0.1020144522190094, 0.27397048473358154], [0.03201789781451225, 0.006486291531473398, 0.02277442254126072, 0.008063187822699547, 0.0031994173768907785, 0.008093170821666718, 0.006726772990077734, 0.3829738199710846, 0.023035963997244835, 0.003357668872922659, 0.0027053614612668753, 0.0028285777661949396, 0.0017818522173911333, 0.002062750980257988, 0.00043706977157853544, 0.00045907858293503523, 0.11004773527383804, 0.38294899463653564], [0.016628798097372055, 0.0026148410979658365, 0.00804618839174509, 0.004066439811140299, 0.0011661528842523694, 0.0037662205286324024, 0.002268772339448333, 0.42750459909439087, 0.008320222608745098, 0.0024995775893330574, 0.001159265753813088, 0.0012386752059683204, 0.001617030706256628, 0.0018144822679460049, 0.00048295603482984006, 0.00040864705806598067, 0.08891791105270386, 0.4274793267250061]]], [[[0.02340208739042282, 0.00451767910271883, 0.011100330390036106, 0.021269258111715317, 0.0012558476300910115, 0.00400499626994133, 0.011098033748567104, 0.2367687225341797, 0.03753255307674408, 0.15550880134105682, 0.003967777360230684, 0.0161124374717474, 0.009962808340787888, 0.026189368218183517, 0.007675748784095049, 0.011730263940989971, 0.18113963305950165, 0.23676370084285736], [0.0051076291128993034, 0.0028600054793059826, 0.0035260526929050684, 0.004514771979302168, 0.000916537712328136, 0.0016943729715421796, 0.004743682220578194, 0.3576122522354126, 0.0120207779109478, 0.011538435705006123, 0.0011929306201636791, 0.0038104017730802298, 0.0020112781785428524, 0.005200243089348078, 0.0016114888712763786, 0.0025668423622846603, 0.2214720994234085, 0.35760024189949036], [0.013258220627903938, 0.010001569986343384, 0.014225874096155167, 0.010118292644619942, 0.005620767828077078, 0.007501001935452223, 0.008454602211713791, 0.30899032950401306, 0.02337305061519146, 0.016332130879163742, 0.005850758403539658, 0.012633212842047215, 0.008542967960238457, 0.018914110958576202, 0.006158117670565844, 0.009402833878993988, 0.21163970232009888, 0.3089824616909027], [0.005938328802585602, 0.0032220371067523956, 0.007358156610280275, 0.005117904860526323, 0.0007950125727802515, 0.0019406905630603433, 0.002623145002871752, 0.3569716513156891, 0.006499163806438446, 0.016109425574541092, 0.0015804290305823088, 0.0029664472676813602, 0.002402580576017499, 0.006940559018403292, 0.0031388886272907257, 0.003913782071322203, 0.21552103757858276, 0.35696089267730713], [0.011330362409353256, 0.006248231045901775, 0.0074388328939676285, 0.005624298471957445, 0.001613495172932744, 0.0038245245814323425, 0.004336978774517775, 0.3388198912143707, 0.019382856786251068, 0.013519058004021645, 0.00401262054219842, 0.007196642458438873, 0.0052935280837118626, 0.00884063821285963, 0.005133847240358591, 0.0061793457716703415, 0.2123951017856598, 0.33880969882011414], [0.008956397883594036, 0.006928980350494385, 0.007514236029237509, 0.009382734075188637, 0.0032091273460537195, 0.005238179583102465, 0.006132815964519978, 0.3411223292350769, 0.013561534695327282, 0.01033556368201971, 0.004814574960619211, 0.005734677892178297, 0.004644965287297964, 0.005986708682030439, 0.004509249702095985, 0.003267868421971798, 0.21754728257656097, 0.34111276268959045], [0.013455898500978947, 0.011449119076132774, 0.008599903434515, 0.00669511454179883, 0.0034349700435996056, 0.005964525043964386, 0.011119489558041096, 0.3157176673412323, 0.024567658081650734, 0.016865350306034088, 0.004454202950000763, 0.006242782808840275, 0.007380262948572636, 0.012272714637219906, 0.006625316571444273, 0.00902172364294529, 0.22042347490787506, 0.3157099783420563], [0.060939423739910126, 0.04314053803682327, 0.04526404291391373, 0.05521136894822121, 0.03957109525799751, 0.04330482706427574, 0.05480676889419556, 0.07093644887208939, 0.05754844471812248, 0.07936128973960876, 0.04575279727578163, 0.05208485946059227, 0.056336164474487305, 0.0530814565718174, 0.051914047449827194, 0.050654519349336624, 0.0691554918885231, 0.07093635946512222], [0.010345888324081898, 0.010796762071549892, 0.007631788961589336, 0.003964838571846485, 0.0030659614130854607, 0.004325459711253643, 0.009263504296541214, 0.33686715364456177, 0.01078127697110176, 0.008611906319856644, 0.003325398312881589, 0.003742033150047064, 0.0031402495224028826, 0.0031097528990358114, 0.005199457053095102, 0.003000278491526842, 0.23596949875354767, 0.336858868598938], [0.0045708054676651955, 0.005785858258605003, 0.006656329147517681, 0.00618340540677309, 0.00233343499712646, 0.006478305906057358, 0.008556879125535488, 0.3491038382053375, 0.008357005193829536, 0.004888051655143499, 0.0026127288583666086, 0.0036415683571249247, 0.0016852193512022495, 0.0025468559470027685, 0.004134138580411673, 0.002021810971200466, 0.23134946823120117, 0.34909430146217346], [0.002465550322085619, 0.005165162030607462, 0.005229467526078224, 0.004624004941433668, 0.0008737092721275985, 0.0018602299969643354, 0.002497829729691148, 0.36743444204330444, 0.0035798787139356136, 0.004918759688735008, 0.0010905530070886016, 0.002003792906180024, 0.0019505837699398398, 0.001967363292351365, 0.005389310885220766, 0.002661149250343442, 0.2188652604818344, 0.3674229681491852], [0.004613119643181562, 0.007852687500417233, 0.007314504589885473, 0.00499064102768898, 0.0010791372042149305, 0.0024874715600162745, 0.005989415105432272, 0.3422306478023529, 0.010169818066060543, 0.005588704254478216, 0.002351820468902588, 0.0030257662292569876, 0.005325841251760721, 0.00651075504720211, 0.011381707154214382, 0.005170347634702921, 0.23169489204883575, 0.342222660779953], [0.004262150730937719, 0.0042647672817111015, 0.00948286335915327, 0.0014297120505943894, 0.0017004930414259434, 0.0051046619191765785, 0.006787250284105539, 0.33958137035369873, 0.01188928447663784, 0.007000621873885393, 0.0034847459755837917, 0.008410211652517319, 0.009558974765241146, 0.008975975215435028, 0.009881933219730854, 0.005820435006171465, 0.22279177606105804, 0.3395726978778839], [0.004148669075220823, 0.005037850700318813, 0.00674081314355135, 0.0038048841524869204, 0.0007300947327166796, 0.0023257280699908733, 0.005672045983374119, 0.3562498092651367, 0.0037782168947160244, 0.005727726966142654, 0.0013109472347423434, 0.0031086234375834465, 0.0030944463796913624, 0.0034605213440954685, 0.0030260675121098757, 0.002510407008230686, 0.23303206264972687, 0.35624104738235474], [0.003922911360859871, 0.011884759180247784, 0.012308306060731411, 0.014724013395607471, 0.007087160833179951, 0.008480752818286419, 0.017777929082512856, 0.33024653792381287, 0.008814274333417416, 0.004569265525788069, 0.0034112748689949512, 0.015680262818932533, 0.0031721917912364006, 0.0029265740886330605, 0.00392531044781208, 0.0017290960531681776, 0.21910269558429718, 0.3302367031574249], [0.0030315814074128866, 0.0038064168766140938, 0.0054756938479840755, 0.0021557817235589027, 0.0006615279125981033, 0.003397663589566946, 0.005509921349585056, 0.35827356576919556, 0.005467936862260103, 0.0037571692373603582, 0.001247473875992, 0.003994966857135296, 0.002174633089452982, 0.0026410017162561417, 0.0035120053216814995, 0.0015066727064549923, 0.23512133955955505, 0.35826462507247925], [0.05594996362924576, 0.04495818912982941, 0.04400479421019554, 0.05222972109913826, 0.03740241751074791, 0.041039492934942245, 0.053819410502910614, 0.09153398871421814, 0.05645093694329262, 0.07578344643115997, 0.040491387248039246, 0.04751749709248543, 0.04802469536662102, 0.04619436711072922, 0.04367414489388466, 0.04325435310602188, 0.08613761514425278, 0.09153364598751068], [0.060939058661460876, 0.04314043000340462, 0.045264117419719696, 0.055210940539836884, 0.039571017026901245, 0.043304771184921265, 0.0548066645860672, 0.07093736529350281, 0.05754833295941353, 0.07936102151870728, 0.04575248435139656, 0.05208488181233406, 0.05633588880300522, 0.05308141931891441, 0.051913775503635406, 0.05065431073307991, 0.06915625184774399, 0.07093727588653564]], [[0.075400710105896, 0.011661311611533165, 0.012041746638715267, 0.16048340499401093, 0.011955601163208485, 0.07864908128976822, 0.021902287378907204, 0.08314035087823868, 0.046438463032245636, 0.15666517615318298, 0.04310417175292969, 0.02619512751698494, 0.04387877136468887, 0.024361759424209595, 0.04099787399172783, 0.01771601475775242, 0.06226952746510506, 0.08313857018947601], [0.0012044113827869296, 0.0019433184061199427, 0.004804658703505993, 0.006174733862280846, 0.004021642729640007, 0.008479081094264984, 0.0022509396076202393, 0.3697056174278259, 0.01178681943565607, 0.0018103192560374737, 0.002812241902574897, 0.003093936713412404, 0.003973308950662613, 0.004114185459911823, 0.0005750248092226684, 0.0031594529282301664, 0.2003970593214035, 0.36969321966171265], [0.010707801207900047, 0.006175165064632893, 0.019516102969646454, 0.008377647027373314, 0.0062818038277328014, 0.013448704965412617, 0.00452300114557147, 0.3298623561859131, 0.03706109896302223, 0.011123791337013245, 0.007128428667783737, 0.00641945656388998, 0.003486337373033166, 0.003794198390096426, 0.0013519150670617819, 0.0029455975163728, 0.1979444921016693, 0.32985222339630127], [0.007445164956152439, 0.005332510452717543, 0.00715596554800868, 0.014549710787832737, 0.006199507042765617, 0.012761736288666725, 0.007175540551543236, 0.3249330520629883, 0.038684964179992676, 0.00545521778985858, 0.010123373940587044, 0.005835439544171095, 0.011321237310767174, 0.006626336369663477, 0.002971835434436798, 0.006972344592213631, 0.20153270661830902, 0.3249233365058899], [0.0073495726101100445, 0.009099304676055908, 0.005370693281292915, 0.02203913778066635, 0.016863461583852768, 0.021909208968281746, 0.005269226152449846, 0.298660546541214, 0.08520698547363281, 0.005180469714105129, 0.013866481371223927, 0.009629187174141407, 0.005504456348717213, 0.00442862743511796, 0.006029203534126282, 0.002748918952420354, 0.18219329416751862, 0.2986512780189514], [0.01097138412296772, 0.01550054270774126, 0.011355184949934483, 0.022307051345705986, 0.019324397668242455, 0.06367402523756027, 0.012118369340896606, 0.19938205182552338, 0.1148906797170639, 0.015399492345750332, 0.04256120324134827, 0.016859672963619232, 0.05540108308196068, 0.02344890497624874, 0.017665181308984756, 0.027292940765619278, 0.13247141242027283, 0.1993764489889145], [0.010524625889956951, 0.008830955252051353, 0.005877844989299774, 0.02419881522655487, 0.01859736628830433, 0.020766833797097206, 0.0169586930423975, 0.2338232696056366, 0.20137901604175568, 0.009960212744772434, 0.010426620952785015, 0.013423255644738674, 0.006222487892955542, 0.005299067124724388, 0.008321189321577549, 0.0032160067930817604, 0.16835562884807587, 0.2338181436061859], [0.04466968774795532, 0.04115252569317818, 0.042773500084877014, 0.06272224336862564, 0.045259129256010056, 0.0563906654715538, 0.06886953860521317, 0.08863077312707901, 0.056065455079078674, 0.05374269559979439, 0.041363686323165894, 0.04692498594522476, 0.04914539307355881, 0.04373405501246452, 0.04491714388132095, 0.04134954512119293, 0.08365853130817413, 0.08863043785095215], [0.0032245847396552563, 0.009947609156370163, 0.0286715067923069, 0.007784950081259012, 0.011111062951385975, 0.018782837316393852, 0.012061968445777893, 0.3328832685947418, 0.012802659533917904, 0.005477603059262037, 0.0027057474944740534, 0.002840411150828004, 0.003999323584139347, 0.002922480460256338, 0.0013559142826125026, 0.0031261900439858437, 0.20742852985858917, 0.3328733444213867], [0.0018657167674973607, 0.002232598140835762, 0.00550434272736311, 0.00403868593275547, 0.0038735016714781523, 0.008211754262447357, 0.0027248470578342676, 0.37242791056632996, 0.011912953108549118, 0.002738306066021323, 0.0010989279253408313, 0.0010930642019957304, 0.001460777479223907, 0.0007817281293682754, 0.0007068615523166955, 0.0010396991856396198, 0.2058728188276291, 0.37241557240486145], [0.001303627621382475, 0.004142126068472862, 0.007884939201176167, 0.004454181529581547, 0.0037138042971491814, 0.010682076215744019, 0.0026991486083716154, 0.37312978506088257, 0.00574185885488987, 0.0020648024510592222, 0.0022183828987181187, 0.0010658863466233015, 0.0036317291669547558, 0.0004809751990251243, 0.000831949117127806, 0.0009513206896372139, 0.20188581943511963, 0.373117595911026], [0.002179788425564766, 0.006274423096328974, 0.00979804340749979, 0.007878337986767292, 0.0059838490560650826, 0.010561701841652393, 0.0032277978025376797, 0.3631340563297272, 0.005265184212476015, 0.003193498821929097, 0.00420562457293272, 0.004503430332988501, 0.005870676599442959, 0.001487866509705782, 0.0014296306762844324, 0.0013982905074954033, 0.2004852592945099, 0.3631226420402527], [0.0005865899147465825, 0.0009781194385141134, 0.0028782724402844906, 0.0024644879158586264, 0.0019431739347055554, 0.007536779623478651, 0.0011093301000073552, 0.3862408995628357, 0.0026104797143489122, 0.0007431870908476412, 0.0020308152306824923, 0.001743796980008483, 0.007215403486043215, 0.0012084206100553274, 0.0016214927891269326, 0.0012566220248118043, 0.1916041225194931, 0.3862279951572418], [0.0006139890756458044, 0.0017582336440682411, 0.004594922997057438, 0.003811003640294075, 0.0027964783366769552, 0.0082457410171628, 0.0018495363183319569, 0.37806883454322815, 0.0034562028013169765, 0.0008542367140762508, 0.0007017159950919449, 0.0014103982830420136, 0.0019903930369764566, 0.0018022957956418395, 0.002293279394507408, 0.0007656466332264245, 0.20692980289459229, 0.3780573010444641], [0.00026843853993341327, 0.0013621147954836488, 0.007024775259196758, 0.001583706820383668, 0.001116185449063778, 0.005416150204837322, 0.0010154813062399626, 0.3876023292541504, 0.0018946961499750614, 0.0011735704028978944, 0.00029067732975818217, 0.0006589606637135148, 0.0015927082858979702, 0.002035011537373066, 0.0012339467648416758, 0.000927379063796252, 0.19721461832523346, 0.38758930563926697], [0.0007791576790623367, 0.0022793777752667665, 0.006896756123751402, 0.004115710966289043, 0.0021231998689472675, 0.009980044327676296, 0.0015046511543914676, 0.3758177161216736, 0.0048735965974628925, 0.0013537568738684058, 0.0007531163282692432, 0.0016957323532551527, 0.0016915797023102641, 0.0016191612230613828, 0.001886397018097341, 0.0005592790548689663, 0.2062647044658661, 0.37580606341362], [0.03701796755194664, 0.03777420148253441, 0.03816921263933182, 0.06058584153652191, 0.04407146945595741, 0.0557657815515995, 0.06781464070081711, 0.1142038106918335, 0.06097494810819626, 0.044852472841739655, 0.03544341400265694, 0.04237726330757141, 0.03801539167761803, 0.036193348467350006, 0.036253344267606735, 0.03184141218662262, 0.10444241017103195, 0.11420312523841858], [0.044669363647699356, 0.04115249589085579, 0.0427735298871994, 0.06272201985120773, 0.04525897651910782, 0.05639060214161873, 0.06886938214302063, 0.08863198757171631, 0.056065209209918976, 0.0537424199283123, 0.04136335477232933, 0.046924807131290436, 0.0491449348628521, 0.04373377561569214, 0.044916704297065735, 0.04134918376803398, 0.08365950733423233, 0.08863165229558945]], [[0.011389306746423244, 0.027631044387817383, 0.05485335737466812, 0.017855219542980194, 0.011387210339307785, 0.033696334809064865, 0.01228275615721941, 0.22581495344638824, 0.022523794323205948, 0.059361185878515244, 0.034015461802482605, 0.03899843245744705, 0.01564846560359001, 0.012185636907815933, 0.0023092948831617832, 0.009912485256791115, 0.18432506918907166, 0.22581005096435547], [0.0021000744309276342, 0.047964341938495636, 0.04983482137322426, 0.01757415384054184, 0.01261482760310173, 0.01861000806093216, 0.007639278657734394, 0.29855936765670776, 0.007702655158936977, 0.02601633407175541, 0.004232503939419985, 0.005843155086040497, 0.002938679652288556, 0.002459482289850712, 0.001210144255310297, 0.0027459210250526667, 0.19340388476848602, 0.29855039715766907], [0.0026949094608426094, 0.013507272116839886, 0.3687843978404999, 0.009237769059836864, 0.012288402765989304, 0.04665648937225342, 0.006065972615033388, 0.1904381662607193, 0.005321196746081114, 0.022662367671728134, 0.002721472643315792, 0.003439835738390684, 0.0007725026225671172, 0.00240865396335721, 0.0005839436198584735, 0.0010361230233684182, 0.12094796448945999, 0.19043253362178802], [0.00432286411523819, 0.011620813049376011, 0.012366081587970257, 0.16132427752017975, 0.05152450501918793, 0.027268387377262115, 0.007889984175562859, 0.24404461681842804, 0.01663714088499546, 0.007536803837865591, 0.02103322558104992, 0.009519275277853012, 0.012968391180038452, 0.003978220280259848, 0.004619789309799671, 0.00516756484284997, 0.15414027869701385, 0.24403786659240723], [0.007351352367550135, 0.007163702044636011, 0.007526344619691372, 0.04501761496067047, 0.4078703820705414, 0.12800879776477814, 0.007967079058289528, 0.10466022789478302, 0.04286837577819824, 0.00347881275229156, 0.013292204588651657, 0.018677817657589912, 0.016692839562892914, 0.007441590540111065, 0.0015174056170508265, 0.004467778839170933, 0.07134022563695908, 0.10465748608112335], [0.0069095678627491, 0.005615741014480591, 0.008471756242215633, 0.01302997674793005, 0.03802356868982315, 0.5005066990852356, 0.009443172253668308, 0.1309894472360611, 0.0117291659116745, 0.00812672171741724, 0.018785282969474792, 0.01023633312433958, 0.005007300991564989, 0.007130141835659742, 0.0008189757354557514, 0.004768533632159233, 0.08942154049873352, 0.13098599016666412], [0.011299301870167255, 0.019753390923142433, 0.014429427683353424, 0.0219174325466156, 0.024904867634177208, 0.04723941907286644, 0.03361935913562775, 0.23078179359436035, 0.04692286252975464, 0.023623935878276825, 0.03774102404713631, 0.037860073149204254, 0.013941768556833267, 0.008530929684638977, 0.007382699754089117, 0.007148894015699625, 0.18212580680847168, 0.23077701032161713], [0.02201911248266697, 0.04518504813313484, 0.05376140773296356, 0.04332171007990837, 0.03883574903011322, 0.04102367162704468, 0.04456010088324547, 0.13096481561660767, 0.033780522644519806, 0.054059531539678574, 0.04945866018533707, 0.04509304463863373, 0.042961157858371735, 0.04107337072491646, 0.02277803048491478, 0.04206440970301628, 0.11809580773115158, 0.13096368312835693], [0.006473707966506481, 0.024969426915049553, 0.07693061977624893, 0.026432497426867485, 0.046431269496679306, 0.08950585871934891, 0.017274728044867516, 0.16652685403823853, 0.19178864359855652, 0.01747077703475952, 0.010509105399250984, 0.018997227773070335, 0.0031287875026464462, 0.010551881976425648, 0.001122628222219646, 0.0043039144948124886, 0.12105924636125565, 0.16652284562587738], [0.01188663113862276, 0.01892593875527382, 0.09769851714372635, 0.011356388218700886, 0.029786618426442146, 0.12784351408481598, 0.016101432964205742, 0.17911137640476227, 0.03899265080690384, 0.11109916865825653, 0.01094404049217701, 0.007130856160074472, 0.002398009644821286, 0.00947202742099762, 0.0032315831631422043, 0.008954452350735664, 0.13595953583717346, 0.17910733819007874], [0.010886916890740395, 0.011552265845239162, 0.024533452466130257, 0.054951343685388565, 0.03923468664288521, 0.12030009925365448, 0.021563159301877022, 0.1242111325263977, 0.020681649446487427, 0.015012667514383793, 0.2379160076379776, 0.03326753154397011, 0.033641643822193146, 0.010046950541436672, 0.010644584894180298, 0.012417401187121868, 0.09492988884449005, 0.12420866638422012], [0.005998189095407724, 0.0055794790387153625, 0.011536089703440666, 0.016065148636698723, 0.03252232074737549, 0.06507288664579391, 0.014622882008552551, 0.24852949380874634, 0.02338682860136032, 0.007533922325819731, 0.030602581799030304, 0.07225915789604187, 0.023777108639478683, 0.009422188624739647, 0.006148246116936207, 0.004898468963801861, 0.17352207005023956, 0.24852298200130463], [0.002877473598346114, 0.002402295358479023, 0.0054634809494018555, 0.007307842839509249, 0.006572098936885595, 0.006612549535930157, 0.004209616687148809, 0.1889979988336563, 0.002073269337415695, 0.002568859839811921, 0.015337103977799416, 0.008772803470492363, 0.40503165125846863, 0.006655723322182894, 0.007863962091505527, 0.01448525208979845, 0.1237751692533493, 0.18899287283420563], [0.0028595628682523966, 0.0019241997506469488, 0.005365248303860426, 0.0054974970407783985, 0.007906715385615826, 0.025202449411153793, 0.0033199344761669636, 0.10043671727180481, 0.008529115468263626, 0.007944113574922085, 0.005466958973556757, 0.006223645526915789, 0.011408582329750061, 0.5465405583381653, 0.034439567476511, 0.05343795195221901, 0.07306249439716339, 0.10043468326330185], [0.000680984347127378, 0.0007656666566617787, 0.004529918543994427, 0.002499490976333618, 0.003473874880000949, 0.003884054720401764, 0.0020001446828246117, 0.030846834182739258, 0.007155945990234613, 0.005311836022883654, 0.0031118534971028566, 0.005171274766325951, 0.0023837711196392775, 0.02705126255750656, 0.8443924188613892, 0.0025863265618681908, 0.02330823428928852, 0.030846230685710907], [0.008716853335499763, 0.0031789997592568398, 0.004506035707890987, 0.009453298524022102, 0.007081592921167612, 0.0262632854282856, 0.006949462927877903, 0.12550188601016998, 0.010383945889770985, 0.00929022952914238, 0.009802685119211674, 0.004965212196111679, 0.04462086036801338, 0.11158346384763718, 0.015601830556988716, 0.3805297911167145, 0.09607087820768356, 0.1254996657371521], [0.01796172559261322, 0.041182905435562134, 0.046356216073036194, 0.0391051284968853, 0.03514072671532631, 0.03698161616921425, 0.043150682002305984, 0.1555275321006775, 0.033446960151195526, 0.04917823523283005, 0.04633985832333565, 0.04345810040831566, 0.036142539232969284, 0.032756656408309937, 0.019023673608899117, 0.03143928945064545, 0.13728228211402893, 0.15552584826946259], [0.022019047290086746, 0.04518481343984604, 0.05376100912690163, 0.04332156851887703, 0.03883557766675949, 0.04102367162704468, 0.04456005245447159, 0.13096582889556885, 0.03378051146864891, 0.054059214890003204, 0.049458593130111694, 0.04509297013282776, 0.042960863560438156, 0.04107307642698288, 0.02277788147330284, 0.04206409305334091, 0.11809657514095306, 0.13096469640731812]], [[0.021773697808384895, 0.06356582045555115, 0.06799773871898651, 0.16259582340717316, 0.11835724860429764, 0.15514568984508514, 0.04558338597416878, 0.10804777592420578, 0.017374921590089798, 0.009276945143938065, 0.015033540315926075, 0.018095683306455612, 0.0041685462929308414, 0.002070159651339054, 0.0013741492293775082, 0.0010692651849240065, 0.08042401075363159, 0.10804558545351028], [0.0008729675319045782, 0.18191005289554596, 0.02214173972606659, 0.027409657835960388, 0.048645906150341034, 0.009506750851869583, 0.011635174974799156, 0.24576695263385773, 0.00996134802699089, 0.018972985446453094, 0.003740535583347082, 0.0068558999337255955, 0.007823565974831581, 0.0011770016280934215, 0.0005283892387524247, 0.0007072716252878308, 0.15658406913280487, 0.24575968086719513], [0.0009543902706354856, 0.00939712394028902, 0.4565982222557068, 0.00798308290541172, 0.008799539878964424, 0.030299467965960503, 0.0025967720430344343, 0.15866439044475555, 0.005169018171727657, 0.046392206102609634, 0.005688751582056284, 0.008019250817596912, 0.004033407662063837, 0.003135011065751314, 0.0007660894189029932, 0.000896640180144459, 0.09194739907979965, 0.1586591899394989], [0.003918488975614309, 0.012496690265834332, 0.012844420969486237, 0.2724403440952301, 0.046752698719501495, 0.007717785891145468, 0.005670339334756136, 0.21147063374519348, 0.010648385621607304, 0.011456298641860485, 0.02688458375632763, 0.014906958676874638, 0.012776101008057594, 0.002462368458509445, 0.0014186238404363394, 0.0022199032828211784, 0.13245119154453278, 0.21146412193775177], [0.002995518734678626, 0.009006563574075699, 0.003132299520075321, 0.037629202008247375, 0.7131736874580383, 0.04004936292767525, 0.0023939432576298714, 0.0471867136657238, 0.018338488414883614, 0.0034823149908334017, 0.01578858681023121, 0.019829394295811653, 0.005642238073050976, 0.0021750307641923428, 0.0004197446396574378, 0.0014047004515305161, 0.030166665092110634, 0.04718546196818352], [0.002822358161211014, 0.0030996270943433046, 0.017094943672418594, 0.0054029361344873905, 0.04131441190838814, 0.3759758174419403, 0.0022956784814596176, 0.18763667345046997, 0.014414748176932335, 0.005375257693231106, 0.01733320951461792, 0.017126621678471565, 0.006749588064849377, 0.005673389881849289, 0.0003235895710531622, 0.0036719662602990866, 0.10605830699205399, 0.18763084709644318], [0.011963914148509502, 0.02532421052455902, 0.01956229843199253, 0.04344341903924942, 0.03614351898431778, 0.02223331294953823, 0.13171450793743134, 0.1971934735774994, 0.058770522475242615, 0.008349067531526089, 0.012003283947706223, 0.022380748763680458, 0.008748450316488743, 0.011708746664226055, 0.005917219910770655, 0.009386084042489529, 0.17796705663204193, 0.19719021022319794], [0.0209652129560709, 0.0465623214840889, 0.07984644174575806, 0.06836013495922089, 0.05271691083908081, 0.053868550807237625, 0.055311694741249084, 0.13472092151641846, 0.03299633413553238, 0.040179215371608734, 0.022301366552710533, 0.03009784407913685, 0.03612365201115608, 0.03316088020801544, 0.01594305969774723, 0.02658821828663349, 0.11553765088319778, 0.1347196102142334], [0.006923320237547159, 0.005992857739329338, 0.021934615448117256, 0.018813148140907288, 0.025606291368603706, 0.05955886095762253, 0.013066807761788368, 0.20182527601718903, 0.2702428102493286, 0.008151785470545292, 0.0095045305788517, 0.005903765559196472, 0.011144210584461689, 0.00544506823644042, 0.002268634270876646, 0.00444995379075408, 0.12734846770763397, 0.20181959867477417], [0.0075874244794249535, 0.02448335476219654, 0.03044973500072956, 0.008655613288283348, 0.015318128280341625, 0.014434578828513622, 0.0032245756592601538, 0.03152736648917198, 0.015905313193798065, 0.7591051459312439, 0.010715383104979992, 0.009430468082427979, 0.004526115022599697, 0.004586576484143734, 0.0014112036442384124, 0.003199355211108923, 0.023913174867630005, 0.03152664378285408], [0.0199534110724926, 0.003742789151147008, 0.011539602652192116, 0.0444503128528595, 0.032091472297906876, 0.037458308041095734, 0.003987431991845369, 0.0692637488245964, 0.013529515825212002, 0.012262621894478798, 0.47690969705581665, 0.05348365381360054, 0.04958551377058029, 0.005497112404555082, 0.03383113816380501, 0.015476180240511894, 0.047674890607595444, 0.06926259398460388], [0.0040458994917571545, 0.0035674406681209803, 0.012667415663599968, 0.01782217063009739, 0.036044757813215256, 0.027528323233127594, 0.004114909563213587, 0.17973877489566803, 0.008913972415030003, 0.014806930907070637, 0.08366747945547104, 0.2467593550682068, 0.04690484702587128, 0.008422115817666054, 0.010645145550370216, 0.004228854086250067, 0.11038753390312195, 0.17973405122756958], [0.0002284541114931926, 0.0001457585603930056, 0.0005704616196453571, 0.0008239652379415929, 0.0011466636788100004, 0.0008096462697722018, 0.00028186410781927407, 0.031109318137168884, 0.0003482690081000328, 0.0006788168102502823, 0.004310113377869129, 0.005886079277843237, 0.8942784070968628, 0.00169663829728961, 0.0006026700721122324, 0.008603066205978394, 0.017371341586112976, 0.031108450144529343], [0.003287749132141471, 0.0007529549184255302, 0.0026643751189112663, 0.001647442695684731, 0.002142881276085973, 0.013849795795977116, 0.001930822734721005, 0.07086705416440964, 0.0033265012316405773, 0.0029247859492897987, 0.0035822088830173016, 0.006689584814012051, 0.03136007860302925, 0.6191822290420532, 0.012244588695466518, 0.10471402108669281, 0.047967251390218735, 0.07086566835641861], [0.00037622242234647274, 0.0004969431320205331, 0.0009713004692457616, 0.0010725453030318022, 0.00041907691047526896, 0.0011826640693470836, 0.0009163704817183316, 0.006446029990911484, 0.0021025699097663164, 0.00417444109916687, 0.007328104693442583, 0.0033721611835062504, 0.0007007242529653013, 0.004928196780383587, 0.9530309438705444, 0.0010816690046340227, 0.004954152274876833, 0.006445922423154116], [0.006482766009867191, 0.00042406932334415615, 0.001260953489691019, 0.0010666348971426487, 0.00120858836453408, 0.010767403990030289, 0.0012505239574238658, 0.04083308205008507, 0.0023792674764990807, 0.0015053653623908758, 0.005691094323992729, 0.0025559489149600267, 0.06580767780542374, 0.06776614487171173, 0.004775846842676401, 0.7159215807914734, 0.02947063557803631, 0.04083244130015373], [0.017283091321587563, 0.042709458619356155, 0.06652002781629562, 0.06459444016218185, 0.046047765761613846, 0.04511043801903725, 0.06171476095914841, 0.1592058390378952, 0.0320015475153923, 0.031460076570510864, 0.018879512324929237, 0.02718355506658554, 0.028443971648812294, 0.028135331347584724, 0.013798682950437069, 0.021716604009270668, 0.13599087297916412, 0.15920396149158478], [0.020965246483683586, 0.04656212404370308, 0.07984572649002075, 0.06835988163948059, 0.052716489881277084, 0.053868476301431656, 0.05531167984008789, 0.13472187519073486, 0.032996270805597305, 0.04017888754606247, 0.02230129763484001, 0.03009773977100849, 0.03612342104315758, 0.03316083177924156, 0.01594296470284462, 0.026588199660182, 0.11553840339183807, 0.1347205638885498]], [[0.0643300861120224, 0.015360631048679352, 0.009645918384194374, 0.07369370013475418, 0.025597279891371727, 0.04289710894227028, 0.055517226457595825, 0.1410757452249527, 0.023240040987730026, 0.16030257940292358, 0.022199152037501335, 0.030620887875556946, 0.011500329710543156, 0.023215696215629578, 0.022258950397372246, 0.01671142876148224, 0.12075937539339066, 0.14107386767864227], [0.018455520272254944, 0.030316198244690895, 0.01917223259806633, 0.02470279298722744, 0.017531543970108032, 0.022960612550377846, 0.020639976486563683, 0.27874308824539185, 0.02077808976173401, 0.027225665748119354, 0.007635217159986496, 0.0070086196064949036, 0.005286060273647308, 0.0047983224503695965, 0.005765583831816912, 0.007102408912032843, 0.2031400352716446, 0.2787380814552307], [0.016707096248865128, 0.02958751656115055, 0.050620630383491516, 0.013814767822623253, 0.008424009196460247, 0.00523254182189703, 0.01285488996654749, 0.30095526576042175, 0.004545389208942652, 0.025650208815932274, 0.007827162742614746, 0.005810645874589682, 0.003393407678231597, 0.002712333807721734, 0.0035576908849179745, 0.0034916282165795565, 0.20386648178100586, 0.30094829201698303], [0.011502197943627834, 0.017966359853744507, 0.01272173598408699, 0.009472214616835117, 0.007706614211201668, 0.006266291718930006, 0.009582670405507088, 0.324425607919693, 0.004468639846891165, 0.01215802039951086, 0.01465579867362976, 0.007223944645375013, 0.007703816052526236, 0.002790489001199603, 0.002181071089580655, 0.004773238208144903, 0.21998289227485657, 0.32441845536231995], [0.02073904499411583, 0.017141306772828102, 0.006269718520343304, 0.009906540624797344, 0.009232520125806332, 0.008569109253585339, 0.012976747006177902, 0.31307679414749146, 0.0116246547549963, 0.011693386361002922, 0.015116562135517597, 0.012558825314044952, 0.005933667067438364, 0.0038160057738423347, 0.005230907816439867, 0.003926312085241079, 0.21911799907684326, 0.3130698502063751], [0.01027681864798069, 0.0333138071000576, 0.01570851355791092, 0.009297659620642662, 0.011729146353900433, 0.0204221960157156, 0.01475661713629961, 0.30888617038726807, 0.006007412914186716, 0.01377173699438572, 0.014728216454386711, 0.00988788716495037, 0.0026140157133340836, 0.0036649596877396107, 0.0025336777325719595, 0.006977146491408348, 0.2065451741218567, 0.3088788390159607], [0.01860436424612999, 0.019694175571203232, 0.01873893290758133, 0.014576508663594723, 0.009924407117068768, 0.01254681684076786, 0.02818409539759159, 0.2807709574699402, 0.018896782770752907, 0.012223072350025177, 0.010019572451710701, 0.01278793066740036, 0.011953688226640224, 0.011914911679923534, 0.007222924847155809, 0.011643105186522007, 0.21953079104423523, 0.28076696395874023], [0.04615642875432968, 0.04015931859612465, 0.052779488265514374, 0.05675456300377846, 0.04644649475812912, 0.060872286558151245, 0.05509241297841072, 0.051987938582897186, 0.05026863142848015, 0.06515763700008392, 0.055062223225831985, 0.049408089369535446, 0.06511466205120087, 0.07416369765996933, 0.05756928026676178, 0.06830494105815887, 0.052713871002197266, 0.051987990736961365], [0.012653580866754055, 0.013896940276026726, 0.004811398684978485, 0.006307905539870262, 0.010859972797334194, 0.0073935226537287235, 0.020262692123651505, 0.32983097434043884, 0.011253119446337223, 0.009616724215447903, 0.004066321067512035, 0.006394595839083195, 0.0015553671400994062, 0.002634539036080241, 0.0025238299276679754, 0.0018967125797644258, 0.22421862185001373, 0.3298233151435852], [0.007898184470832348, 0.013918784447014332, 0.022185631096363068, 0.014333881437778473, 0.010014466941356659, 0.00932247657328844, 0.015052438713610172, 0.3010321259498596, 0.003318493254482746, 0.0575004406273365, 0.002440131502225995, 0.007554017007350922, 0.003025788813829422, 0.008651677519083023, 0.004231042228639126, 0.004538676701486111, 0.21395649015903473, 0.3010253310203552], [0.009268972091376781, 0.0068961563520133495, 0.004579153377562761, 0.007088531740009785, 0.008500245399773121, 0.003851969027891755, 0.007561076898127794, 0.31332090497016907, 0.007720928639173508, 0.02589748427271843, 0.03602142259478569, 0.014164106920361519, 0.008250264450907707, 0.010229918174445629, 0.006300619803369045, 0.007152802776545286, 0.20988239347934723, 0.31331297755241394], [0.009954363107681274, 0.02108144573867321, 0.011242496781051159, 0.015404533594846725, 0.013175477273762226, 0.007408284116536379, 0.017144154757261276, 0.3069658875465393, 0.011429790407419205, 0.0204425361007452, 0.012583904899656773, 0.009066612459719181, 0.006478421855717897, 0.008754519745707512, 0.005704190116375685, 0.0072323353961110115, 0.20897230505943298, 0.30695876479148865], [0.004631375893950462, 0.010343536734580994, 0.011001767590641975, 0.008692419156432152, 0.007111115846782923, 0.0026053281035274267, 0.010699176229536533, 0.33143049478530884, 0.0028117906767874956, 0.014241392724215984, 0.006708210334181786, 0.006042060907930136, 0.009166287258267403, 0.013499336317181587, 0.003205892164260149, 0.013246618211269379, 0.2131417989730835, 0.331421434879303], [0.018721619620919228, 0.043379031121730804, 0.019705597311258316, 0.03505129739642143, 0.012002050876617432, 0.0035233672242611647, 0.014482175931334496, 0.2681395411491394, 0.00884232483804226, 0.03743718937039375, 0.00983433611690998, 0.006866208277642727, 0.006267997901886702, 0.032937191426754, 0.011312372051179409, 0.013846338726580143, 0.18951722979545593, 0.2681339979171753], [0.007412302307784557, 0.019635874778032303, 0.014862382784485817, 0.018430324271321297, 0.007377102039754391, 0.003574344329535961, 0.01482505351305008, 0.30400460958480835, 0.005758247803896666, 0.019497890025377274, 0.010098390281200409, 0.006979567464441061, 0.002735355170443654, 0.03289859741926193, 0.011506515555083752, 0.007654104381799698, 0.20875133574008942, 0.30399802327156067], [0.016391679644584656, 0.04142432287335396, 0.014467613771557808, 0.02882358245551586, 0.011532005853950977, 0.00445237010717392, 0.014403175562620163, 0.26350706815719604, 0.005011659115552902, 0.026863573119044304, 0.026678793132305145, 0.013758477754890919, 0.01780502125620842, 0.019062500447034836, 0.010195081122219563, 0.03387762978672981, 0.18824408948421478, 0.2635014057159424], [0.04420119896531105, 0.038305409252643585, 0.04647273197770119, 0.05345498397946358, 0.04220382869243622, 0.0530327707529068, 0.054767973721027374, 0.07366775721311569, 0.04794139415025711, 0.06204358488321304, 0.051665227860212326, 0.04764150083065033, 0.060151904821395874, 0.0646943673491478, 0.05061821639537811, 0.06327733397483826, 0.07219206541776657, 0.07366767525672913], [0.04615650326013565, 0.04015931114554405, 0.052779149264097214, 0.0567544624209404, 0.046446412801742554, 0.06087204068899155, 0.05509236827492714, 0.051988717168569565, 0.05026843026280403, 0.06515751034021378, 0.055062342435121536, 0.049408093094825745, 0.06511448323726654, 0.07416313141584396, 0.05756904184818268, 0.0683046281337738, 0.052714575082063675, 0.05198876932263374]], [[0.01465621404349804, 0.12789005041122437, 0.04911899194121361, 0.3620072901248932, 0.06162385269999504, 0.09518586844205856, 0.03903176635503769, 0.020862547680735588, 0.03536246716976166, 0.045823805034160614, 0.091482974588871, 0.010279606096446514, 0.0048127807676792145, 0.0016050828853622079, 0.0008517115493305027, 0.0018025558674708009, 0.01674032397568226, 0.02086213044822216], [0.005308585707098246, 0.02932455576956272, 0.02648395113646984, 0.025055695325136185, 0.008795293979346752, 0.018370024859905243, 0.025200730189681053, 0.2957809567451477, 0.008179611526429653, 0.01183785405009985, 0.026556391268968582, 0.010855918750166893, 0.0027670436538755894, 0.00533166341483593, 0.000932870083488524, 0.004887763876467943, 0.19855833053588867, 0.29577285051345825], [0.007961212657392025, 0.02762932889163494, 0.08006361126899719, 0.028907181695103645, 0.011046954430639744, 0.040101442486047745, 0.016998426988720894, 0.23974092304706573, 0.020069221034646034, 0.05118471384048462, 0.009786668233573437, 0.009969833306968212, 0.007058772724121809, 0.03208122402429581, 0.0030689965933561325, 0.018782397732138634, 0.15581411123275757, 0.23973491787910461], [0.011743267066776752, 0.023188546299934387, 0.02019307017326355, 0.019494008272886276, 0.007091592065989971, 0.024758880957961082, 0.022119838744401932, 0.2882867157459259, 0.007668698206543922, 0.007415983360260725, 0.03337083011865616, 0.011891118250787258, 0.005874205380678177, 0.012089820578694344, 0.0015891805524006486, 0.012637496925890446, 0.202307790517807, 0.28827908635139465], [0.0012361184926703572, 0.005165999289602041, 0.003133337013423443, 0.005649958271533251, 0.00430276058614254, 0.0069975536316633224, 0.010038408450782299, 0.36430808901786804, 0.0029260304290801287, 0.0018263141391798854, 0.004552647937089205, 0.0027178002055734396, 0.0013379630399867892, 0.0019797207787632942, 0.00042313302401453257, 0.0013503885129466653, 0.2177559733390808, 0.3642978370189667], [0.002833395265042782, 0.007180888671427965, 0.008572284132242203, 0.012716192752122879, 0.006274551618844271, 0.022425452247262, 0.015697935596108437, 0.3339393138885498, 0.009000308811664581, 0.005692535080015659, 0.008057271130383015, 0.004728882573544979, 0.004970724694430828, 0.009985176846385002, 0.0015283183893188834, 0.005322180222719908, 0.20714443922042847, 0.3339301645755768], [0.003191836643964052, 0.010891830548644066, 0.015178822912275791, 0.011800631880760193, 0.005091185215860605, 0.01665188930928707, 0.014599516987800598, 0.3321448564529419, 0.006271555088460445, 0.006556862965226173, 0.007812688127160072, 0.00576593866571784, 0.0028688348829746246, 0.008213434368371964, 0.0015015538083389401, 0.005034732166677713, 0.21428747475147247, 0.3321363925933838], [0.03354479372501373, 0.05856155604124069, 0.07769481092691422, 0.07764343172311783, 0.059998102486133575, 0.06279995292425156, 0.05980123206973076, 0.08032851666212082, 0.042614731937646866, 0.058249007910490036, 0.04217243939638138, 0.04205166921019554, 0.044993165880441666, 0.042370762676000595, 0.02493664249777794, 0.038064852356910706, 0.07384622097015381, 0.08032812178134918], [0.004515858367085457, 0.0122488709166646, 0.025904839858412743, 0.021589389070868492, 0.013147939927875996, 0.0398595817387104, 0.027364537119865417, 0.30397453904151917, 0.005618509370833635, 0.012375366874039173, 0.007788412738591433, 0.004958969075232744, 0.0035060287918895483, 0.007828018628060818, 0.0009215856553055346, 0.007464625407010317, 0.19696670770645142, 0.3039662837982178], [0.00547017203643918, 0.0467882938683033, 0.04439972713589668, 0.031125327572226524, 0.015753746032714844, 0.04517124965786934, 0.019621217623353004, 0.2547342777252197, 0.011660763993859291, 0.05543467774987221, 0.012814060784876347, 0.006475396454334259, 0.004562295041978359, 0.008311953395605087, 0.0025730805937200785, 0.01003069058060646, 0.17034514248371124, 0.254727840423584], [0.0033353737089782953, 0.010665279813110828, 0.006117064040154219, 0.01324588805437088, 0.015983492136001587, 0.02998795546591282, 0.022121340036392212, 0.3203886151313782, 0.0055060675367712975, 0.0034904731437563896, 0.027127234265208244, 0.0072932168841362, 0.007534290198236704, 0.0031353277154266834, 0.0017430192092433572, 0.0030328461434692144, 0.1989135593175888, 0.3203790783882141], [0.0013811365934088826, 0.0033014442306011915, 0.006255523767322302, 0.005041276570409536, 0.004875634331256151, 0.020788783207535744, 0.014662020839750767, 0.350338339805603, 0.004049560986459255, 0.0016983653185889125, 0.005812115967273712, 0.005092528648674488, 0.002451235894113779, 0.0034894985146820545, 0.0009306255960837007, 0.002139079850167036, 0.21736402809619904, 0.3503287434577942], [0.0006405527819879353, 0.0020499282982200384, 0.00894206203520298, 0.0020379461348056793, 0.002202934818342328, 0.015189127996563911, 0.0035996423102915287, 0.3758513927459717, 0.0017268540104851127, 0.0012652212753891945, 0.00210780231282115, 0.0021529539953917265, 0.0029397348407655954, 0.006318442523479462, 0.0009657997288741171, 0.0026815698947757483, 0.19348841905593872, 0.37583956122398376], [0.0008976104436442256, 0.006854171399027109, 0.014604556374251842, 0.009365570731461048, 0.008954115211963654, 0.04245178401470184, 0.02954043820500374, 0.3212205171585083, 0.003754087258130312, 0.001833610120229423, 0.0038194290827959776, 0.0039839674718678, 0.0034792637452483177, 0.010691815055906773, 0.0027061940636485815, 0.005390940234065056, 0.20923972129821777, 0.3212123215198517], [0.005668803583830595, 0.035402655601501465, 0.03522016853094101, 0.03213200345635414, 0.023815816268324852, 0.07240273058414459, 0.035625334829092026, 0.263528972864151, 0.006505541503429413, 0.017559656873345375, 0.0073532601818442345, 0.0045885248109698296, 0.003080239985138178, 0.0070634158328175545, 0.0033822946716099977, 0.005258737597614527, 0.17788925766944885, 0.2635226249694824], [0.0009729212615638971, 0.0054113976657390594, 0.006210748106241226, 0.006592933088541031, 0.006143676117062569, 0.025802403688430786, 0.015295110642910004, 0.3448973298072815, 0.005491521675139666, 0.0020554985385388136, 0.0023835015017539263, 0.003468362847343087, 0.001350934850051999, 0.005227770656347275, 0.0013463919749483466, 0.0018227787222713232, 0.22063854336738586, 0.34488821029663086], [0.02624525874853134, 0.05483940243721008, 0.0715213268995285, 0.07250618189573288, 0.05272561311721802, 0.05992153286933899, 0.0578446164727211, 0.10816768556833267, 0.03829915076494217, 0.050541315227746964, 0.037792470306158066, 0.03852885216474533, 0.03656664863228798, 0.03766033798456192, 0.020263761281967163, 0.03247745707631111, 0.0959315299987793, 0.1081668958067894], [0.03354443982243538, 0.05856114998459816, 0.07769470661878586, 0.0776429995894432, 0.059997741132974625, 0.06279975920915604, 0.05980108305811882, 0.08032988011837006, 0.04261443018913269, 0.05824849382042885, 0.042172107845544815, 0.04205157980322838, 0.04499289020895958, 0.042370762676000595, 0.02493651583790779, 0.03806467726826668, 0.07384731620550156, 0.08032947033643723]], [[0.013573568314313889, 0.05616680905222893, 0.6053544282913208, 0.06581319123506546, 0.01271013356745243, 0.19267794489860535, 0.008974073454737663, 0.008976958692073822, 0.00680658221244812, 0.002156981034204364, 0.0014123988803476095, 0.0011032299371436238, 0.0027334869373589754, 0.001947972341440618, 0.002693467540666461, 0.0010284872259944677, 0.006893610116094351, 0.008976765908300877], [0.002135019050911069, 0.01150672510266304, 0.045718636363744736, 0.028713317587971687, 0.007991332560777664, 0.044882092624902725, 0.008949082344770432, 0.30866312980651855, 0.009233430027961731, 0.006381839048117399, 0.004746772348880768, 0.004627611488103867, 0.0027650021947920322, 0.0021622616332024336, 0.0016656366642564535, 0.0016320198774337769, 0.19957080483436584, 0.30865517258644104], [0.0025195979978889227, 0.012060029432177544, 0.011253120377659798, 0.026254210621118546, 0.010460407473146915, 0.038953278213739395, 0.01824992150068283, 0.2966846227645874, 0.02182077430188656, 0.007215016055852175, 0.012872455641627312, 0.00941394455730915, 0.0053746881894767284, 0.0024107294157147408, 0.0050430078990757465, 0.0032039231155067682, 0.21953167021274567, 0.2966785430908203], [0.00832593534141779, 0.025398796424269676, 0.06701356172561646, 0.047824449837207794, 0.024232927709817886, 0.21032750606536865, 0.033935997635126114, 0.17265048623085022, 0.04082312807440758, 0.005336855072528124, 0.012856240384280682, 0.015028167515993118, 0.005618642549961805, 0.014577660709619522, 0.011503703892230988, 0.004477924667298794, 0.12742123007774353, 0.17264676094055176], [0.005282000172883272, 0.019511329010128975, 0.021120410412549973, 0.06344520300626755, 0.03006150759756565, 0.07818733900785446, 0.04425309970974922, 0.23748797178268433, 0.04716905578970909, 0.0036727541591972113, 0.00918166060000658, 0.00796721875667572, 0.0032979233656078577, 0.002637677127495408, 0.006312957499176264, 0.0016615183558315039, 0.1812673956155777, 0.23748287558555603], [0.01677255518734455, 0.02211076393723488, 0.02575179561972618, 0.09219110757112503, 0.030524693429470062, 0.07308880984783173, 0.05767513066530228, 0.1659349948167801, 0.0908123254776001, 0.008746602572500706, 0.03805584833025932, 0.01869007758796215, 0.012567967176437378, 0.011351906694471836, 0.0297737717628479, 0.007746731396764517, 0.1322728991508484, 0.1659320741891861], [0.008242924697697163, 0.023640133440494537, 0.044237468391656876, 0.07364946603775024, 0.02534453757107258, 0.055902719497680664, 0.04132944345474243, 0.23152892291545868, 0.03905665874481201, 0.008566664531826973, 0.013787342235445976, 0.01001738477498293, 0.006131166126579046, 0.004998329561203718, 0.0030292824376374483, 0.004312583245337009, 0.17470107972621918, 0.2315237820148468], [0.0352071076631546, 0.057943377643823624, 0.15023812651634216, 0.06525316089391708, 0.04232834279537201, 0.08784279972314835, 0.05977099761366844, 0.06110837310552597, 0.028781598433852196, 0.04076041653752327, 0.030050063505768776, 0.033202316612005234, 0.04295707866549492, 0.06327438354492188, 0.03593211621046066, 0.04701364412903786, 0.05722795054316521, 0.06110813468694687], [0.012400200590491295, 0.01021388079971075, 0.03426751494407654, 0.0692484974861145, 0.024724913761019707, 0.06868921220302582, 0.026784004643559456, 0.22760841250419617, 0.046837933361530304, 0.009347738698124886, 0.035907991230487823, 0.012097330763936043, 0.008812068961560726, 0.006629324518144131, 0.0034077404998242855, 0.005220562685281038, 0.1701992154121399, 0.22760342061519623], [0.0010586350690573454, 0.0035477899946272373, 0.007342956960201263, 0.009949112311005592, 0.004958137404173613, 0.01761048287153244, 0.009675884619355202, 0.3426739573478699, 0.009950321167707443, 0.0019447478698566556, 0.0038632983341813087, 0.0036260054912418127, 0.003997225314378738, 0.0013219625689089298, 0.002005093963816762, 0.0018685013055801392, 0.2319403886795044, 0.3426654636859894], [0.008405444212257862, 0.00892642978578806, 0.012455666437745094, 0.01873284950852394, 0.010595366358757019, 0.03063427470624447, 0.01835937239229679, 0.28214365243911743, 0.015419533476233482, 0.004030067007988691, 0.023425858467817307, 0.02811228111386299, 0.02196389250457287, 0.008181700482964516, 0.016695724800229073, 0.008388645946979523, 0.2013920694589615, 0.2821371257305145], [0.006932300515472889, 0.014204027131199837, 0.011509962379932404, 0.024698924273252487, 0.009423703886568546, 0.02545781061053276, 0.020250314846634865, 0.2807304859161377, 0.015114557929337025, 0.004207230173051357, 0.02029869146645069, 0.019838610664010048, 0.031685128808021545, 0.010539748705923557, 0.010380581952631474, 0.009938038885593414, 0.2040655016899109, 0.2807243764400482], [0.002454378642141819, 0.006895528640598059, 0.005045170430094004, 0.010752441361546516, 0.008009144105017185, 0.03182252496480942, 0.009808951988816261, 0.272167444229126, 0.008310227654874325, 0.001475505530834198, 0.015613041818141937, 0.011647030711174011, 0.07371244579553604, 0.011830729432404041, 0.06094394251704216, 0.00953565165400505, 0.18781538307666779, 0.27216050028800964], [0.0007158369990065694, 0.0016370663652196527, 0.003916564863175154, 0.006051620002835989, 0.002383260056376457, 0.006304801907390356, 0.005781020503491163, 0.35141175985336304, 0.002034437842667103, 0.0007341276505030692, 0.003525967476889491, 0.003664143616333604, 0.011715032160282135, 0.003733345540240407, 0.013796255923807621, 0.006720342673361301, 0.2244729846715927, 0.3514014482498169], [0.00026967376470565796, 0.0001554269838379696, 0.0005772563745267689, 0.00071291986387223, 0.0002731611020863056, 0.0006041572196409106, 0.002072200644761324, 0.38231393694877625, 0.0005139856366440654, 0.00019470960251055658, 0.001144999754615128, 0.0009482590830884874, 0.0018516889540478587, 0.0014806929975748062, 0.000929145491681993, 0.0030455891974270344, 0.2206113040447235, 0.38230082392692566], [0.0012313545448705554, 0.0015584970824420452, 0.003199417842552066, 0.005411247722804546, 0.0028624008409678936, 0.005185118410736322, 0.008172991685569286, 0.34480586647987366, 0.0033160727471113205, 0.0006630128482356668, 0.00289077777415514, 0.003621116979047656, 0.009428081102669239, 0.007118097506463528, 0.016907714307308197, 0.00746777793392539, 0.23136447370052338, 0.34479591250419617], [0.03267582505941391, 0.057139016687870026, 0.13678033649921417, 0.06828891485929489, 0.04216119647026062, 0.08118888735771179, 0.059447869658470154, 0.08109322190284729, 0.029147503897547722, 0.03829602524638176, 0.02894759550690651, 0.03257155045866966, 0.0368657149374485, 0.051667969673871994, 0.029014231637120247, 0.03950155898928642, 0.07411995530128479, 0.0810927152633667], [0.03520699590444565, 0.05794326588511467, 0.1502375453710556, 0.06525295972824097, 0.04232821986079216, 0.0878424122929573, 0.059770893305540085, 0.06110938638448715, 0.028781389817595482, 0.04076037555932999, 0.030050037428736687, 0.03320233151316643, 0.04295691102743149, 0.06327416747808456, 0.035931773483753204, 0.04701344296336174, 0.05722878873348236, 0.06110914424061775]], [[0.014772654511034489, 0.057357463985681534, 0.12445595115423203, 0.009205170907080173, 0.02394700050354004, 0.04874555021524429, 0.02254628948867321, 0.15415433049201965, 0.03824383020401001, 0.010754570364952087, 0.04980441927909851, 0.06635726243257523, 0.05445272475481033, 0.02238183468580246, 0.004480423871427774, 0.0221090130507946, 0.12208042293787003, 0.1541510969400406], [0.0006133581046015024, 0.0062444559298455715, 0.01015004888176918, 0.01975620537996292, 0.018565094098448753, 0.012686901725828648, 0.013947907835245132, 0.3422665297985077, 0.0034903590567409992, 0.0011110462946817279, 0.006409022957086563, 0.004489853046834469, 0.002305080881342292, 0.0029397334437817335, 0.0005317808827385306, 0.002439026487991214, 0.20979702472686768, 0.34225645661354065], [0.0013389679370447993, 0.007072627078741789, 0.015874044969677925, 0.023342782631516457, 0.02057737670838833, 0.018518421798944473, 0.0110541433095932, 0.32905566692352295, 0.003935473971068859, 0.0022620861418545246, 0.006964161526411772, 0.0071723987348377705, 0.003774948650971055, 0.0077905370853841305, 0.0014148701447993517, 0.006972635164856911, 0.20383168756961823, 0.32904723286628723], [0.0011337153846397996, 0.005346143152564764, 0.012442302890121937, 0.020775925368070602, 0.005624624900519848, 0.005760231055319309, 0.005781397223472595, 0.34722110629081726, 0.004872282035648823, 0.0024394516367465258, 0.005684585310518742, 0.003604304511100054, 0.0029341336339712143, 0.007016735151410103, 0.0010602680267766118, 0.004807834047824144, 0.2162838876247406, 0.3472111225128174], [0.0003181564970873296, 0.0017156440299004316, 0.0035300154704600573, 0.006838562898337841, 0.0047255572862923145, 0.0026161770801991224, 0.005576054099947214, 0.37160083651542664, 0.001533580245450139, 0.00048066090676002204, 0.002403953345492482, 0.0018316125497221947, 0.0008886869181878865, 0.001984564121812582, 0.00033528765197843313, 0.0013090050779283047, 0.22072207927703857, 0.37158963084220886], [0.0019382380414754152, 0.003302214667201042, 0.007746160961687565, 0.00729024363681674, 0.004442588426172733, 0.009294372983276844, 0.007630454376339912, 0.35245299339294434, 0.004192365799099207, 0.0017063801642507315, 0.010362592525780201, 0.0051781050860881805, 0.005036844406276941, 0.0034476565197110176, 0.0012884672032669187, 0.002712011570110917, 0.21953493356704712, 0.3524433672428131], [0.005403326824307442, 0.013646841049194336, 0.01668303646147251, 0.024739256128668785, 0.034199122339487076, 0.02511238493025303, 0.017736079171299934, 0.2934208810329437, 0.012110568583011627, 0.006581100169569254, 0.016701171174645424, 0.014078554697334766, 0.007671821862459183, 0.008664319291710854, 0.0027343195397406816, 0.006725729443132877, 0.20037773251533508, 0.29341375827789307], [0.04654552787542343, 0.05790629982948303, 0.05779441446065903, 0.05434105545282364, 0.05917336046695709, 0.060553617775440216, 0.06124533712863922, 0.058705177158117294, 0.06074381619691849, 0.048264436423778534, 0.06017059460282326, 0.05602530017495155, 0.060460034757852554, 0.04877138510346413, 0.041912809014320374, 0.05039351060986519, 0.05828816071152687, 0.05870509892702103], [0.0031593709718436003, 0.00358353229239583, 0.00553785590454936, 0.002866302151232958, 0.004511821549385786, 0.004553765524178743, 0.00529657956212759, 0.35362952947616577, 0.008822431787848473, 0.002673201495781541, 0.015919294208288193, 0.011869603767991066, 0.004008451011031866, 0.00440919678658247, 0.0008029621676541865, 0.0023950450122356415, 0.21234166622161865, 0.35361936688423157], [0.0033614912535995245, 0.004677047021687031, 0.005664237774908543, 0.0026319806929677725, 0.005140896886587143, 0.0038100166711956263, 0.003128175623714924, 0.36816146969795227, 0.0020687258802354336, 0.0012960209278389812, 0.0046238163486123085, 0.00428886990994215, 0.0014859243528917432, 0.005136172752827406, 0.0006473140674643219, 0.0029861389193683863, 0.21274027228355408, 0.36815136671066284], [0.000660837278701365, 0.0016434653662145138, 0.003539038123562932, 0.0007295755203813314, 0.0012581829214468598, 0.0017122958088293672, 0.0014780675992369652, 0.382868230342865, 0.0008211847161874175, 0.0007291936199180782, 0.001622748444788158, 0.0017373847076669335, 0.001165351364761591, 0.0028612674213945866, 0.000253286532824859, 0.0015394387301057577, 0.2125236839056015, 0.3828568160533905], [0.0016585191478952765, 0.002130035776644945, 0.004698263946920633, 0.0014149619964882731, 0.0023404958192259073, 0.003422208596020937, 0.005402354057878256, 0.3665357828140259, 0.0018692456651479006, 0.0008189132204279304, 0.0035150586627423763, 0.004294571001082659, 0.0030088864732533693, 0.004463209770619869, 0.001622051582671702, 0.0030964496545493603, 0.22318235039710999, 0.36652666330337524], [0.000529590412043035, 0.0008407316636294127, 0.0018093740800395608, 0.0006300591630861163, 0.0011537900427356362, 0.0014544270234182477, 0.0015124037163332105, 0.38732123374938965, 0.0006282369140535593, 0.00039127643685787916, 0.0009089072700589895, 0.0014177054399624467, 0.0008464549318887293, 0.0029013250023126602, 0.0006074181292206049, 0.0021614395081996918, 0.20757590234279633, 0.3873097002506256], [0.002165050944313407, 0.00102227833122015, 0.0016233972273766994, 0.001816281583160162, 0.001905907178297639, 0.002463132841512561, 0.0026815510354936123, 0.37805676460266113, 0.0012587194796651602, 0.0007943771779537201, 0.0028134447056800127, 0.001421613385900855, 0.0013018934987485409, 0.002125610364601016, 0.0007476423634216189, 0.0020244054030627012, 0.21773067116737366, 0.37804728746414185], [0.0022126876283437014, 0.003876312868669629, 0.007322690449655056, 0.0027881294954568148, 0.004532850347459316, 0.0035188496112823486, 0.004836416337639093, 0.3690224587917328, 0.0016640443354845047, 0.0018129836535081267, 0.0011601594742387533, 0.0028667887672781944, 0.0011085093719884753, 0.002968511776998639, 0.0017468712758272886, 0.0017346537206321955, 0.2178139090538025, 0.3690131902694702], [0.0031054620631039143, 0.0017794128507375717, 0.0016136157792061567, 0.0021729369182139635, 0.0021560394670814276, 0.001751200994476676, 0.0029989404138177633, 0.38212084770202637, 0.0009959820890799165, 0.0010374304838478565, 0.0018160754116252065, 0.0011406588600948453, 0.0010013207793235779, 0.0014550781343132257, 0.00057272519916296, 0.0014190261717885733, 0.21075214445590973, 0.3821111023426056], [0.04147067293524742, 0.05429472401738167, 0.05534331873059273, 0.05016234517097473, 0.05889105424284935, 0.06090005859732628, 0.05692301690578461, 0.08129588514566422, 0.0552898533642292, 0.042494162917137146, 0.05711822211742401, 0.053287114948034286, 0.05319403111934662, 0.044515419751405716, 0.03358159959316254, 0.042913004755973816, 0.0770300030708313, 0.08129554241895676], [0.046545445919036865, 0.05790632218122482, 0.057794537395238876, 0.054340895265340805, 0.059173159301280975, 0.060553524643182755, 0.06124505028128624, 0.05870617553591728, 0.06074343994259834, 0.04826437681913376, 0.060170210897922516, 0.05602516233921051, 0.06045963615179062, 0.04877133667469025, 0.041912421584129333, 0.05039321258664131, 0.05828901380300522, 0.058706097304821014]], [[0.029471512883901596, 0.04934141784906387, 0.11698214709758759, 0.06221551075577736, 0.03735045716166496, 0.05687480419874191, 0.06018809229135513, 0.15246057510375977, 0.019339190796017647, 0.06327738612890244, 0.003914506174623966, 0.02847275137901306, 0.008434047922492027, 0.012228008359670639, 0.008431351743638515, 0.01294653583317995, 0.1256132870912552, 0.1524583101272583], [0.058216504752635956, 0.037461649626493454, 0.0904889777302742, 0.04552004486322403, 0.029702018946409225, 0.049803510308265686, 0.015490186400711536, 0.13148632645606995, 0.028996344655752182, 0.11903045326471329, 0.02852100133895874, 0.04687899351119995, 0.017974426969885826, 0.03423093259334564, 0.009350365027785301, 0.02580968476831913, 0.09955526888370514, 0.1314833164215088], [0.03664383664727211, 0.01765647530555725, 0.025693388655781746, 0.016693077981472015, 0.01690751314163208, 0.02141975611448288, 0.013664006255567074, 0.2734411954879761, 0.013614222407341003, 0.026232872158288956, 0.019545678049325943, 0.016748860478401184, 0.009157449007034302, 0.009304068982601166, 0.005364706739783287, 0.010211394168436527, 0.1942664533853531, 0.2734350264072418], [0.021615324541926384, 0.02046838402748108, 0.05288420990109444, 0.006593889556825161, 0.01715990900993347, 0.022667042911052704, 0.018746530637145042, 0.26378652453422546, 0.00482667051255703, 0.02936524711549282, 0.012592915445566177, 0.0204596109688282, 0.012493828311562538, 0.015769071877002716, 0.001402823836542666, 0.024592477828264236, 0.19079405069351196, 0.2637813985347748], [0.07839793711900711, 0.025380918756127357, 0.04307612404227257, 0.017455196008086205, 0.020216593518853188, 0.02806168794631958, 0.016861332580447197, 0.22208163142204285, 0.015503418631851673, 0.04070493206381798, 0.0131272217258811, 0.020542748272418976, 0.01943613402545452, 0.026853490620851517, 0.003304688958451152, 0.023735221475362778, 0.1631840169429779, 0.22207672894001007], [0.03113313391804695, 0.01256184745579958, 0.017333129420876503, 0.011143282055854797, 0.008289605379104614, 0.012725009582936764, 0.013502753339707851, 0.30539920926094055, 0.007918340153992176, 0.020100831985473633, 0.007577370386570692, 0.00886598601937294, 0.006541305687278509, 0.007403912954032421, 0.001774108037352562, 0.009448081254959106, 0.21289002895355225, 0.3053920269012451], [0.06839075684547424, 0.058208391070365906, 0.03575912490487099, 0.04182491824030876, 0.04408102482557297, 0.040167465806007385, 0.018634548410773277, 0.16354599595069885, 0.023502390831708908, 0.10078973323106766, 0.012204008176922798, 0.029445499181747437, 0.013655050657689571, 0.033308178186416626, 0.006852684076875448, 0.023203253746032715, 0.12288399785757065, 0.16354301571846008], [0.06814131140708923, 0.058276597410440445, 0.06192515790462494, 0.06670831888914108, 0.060655128210783005, 0.07228991389274597, 0.05503964051604271, 0.03659874573349953, 0.05827347934246063, 0.07164715975522995, 0.04523887485265732, 0.05767513066530228, 0.053472112864255905, 0.05186563730239868, 0.06227807700634003, 0.04541073366999626, 0.03790522739291191, 0.03659878671169281], [0.03372485190629959, 0.026096897199749947, 0.015424108132719994, 0.019273657351732254, 0.027813708409667015, 0.021115709096193314, 0.03615870699286461, 0.22991468012332916, 0.04047698155045509, 0.024495363235473633, 0.018047120422124863, 0.04289764538407326, 0.016565479338169098, 0.014173073694109917, 0.0052199168130755424, 0.014932346530258656, 0.1837591975927353, 0.22991053760051727], [0.0334579274058342, 0.02372969128191471, 0.04619657248258591, 0.020072543993592262, 0.018052196130156517, 0.045951418578624725, 0.0360981784760952, 0.22473399341106415, 0.011685221455991268, 0.03354613855481148, 0.01582108438014984, 0.02239786833524704, 0.011031890287995338, 0.017265791073441505, 0.016476409509778023, 0.013416023924946785, 0.18533673882484436, 0.22473037242889404], [0.025612950325012207, 0.01253033708781004, 0.02179664745926857, 0.007199130021035671, 0.008522945456206799, 0.015206987969577312, 0.019049612805247307, 0.2771133482456207, 0.013772820122539997, 0.022783083841204643, 0.009494717232882977, 0.016367195174098015, 0.017938928678631783, 0.015599947422742844, 0.005649683531373739, 0.016166096553206444, 0.21808691322803497, 0.2771086096763611], [0.025739097967743874, 0.015283194370567799, 0.01467055082321167, 0.011276095174252987, 0.009479639120399952, 0.01220652088522911, 0.026436245068907738, 0.28903019428253174, 0.014590956270694733, 0.010864286683499813, 0.011730377562344074, 0.012808679603040218, 0.007732069585472345, 0.0080303605645895, 0.007299893535673618, 0.004723810125142336, 0.22907188534736633, 0.28902605175971985], [0.0391249880194664, 0.01587737910449505, 0.02027924172580242, 0.012456451542675495, 0.009943787008523941, 0.015398852527141571, 0.018051443621516228, 0.27508488297462463, 0.012947930954396725, 0.011733410879969597, 0.013956209644675255, 0.020223932340741158, 0.015572918578982353, 0.016694994643330574, 0.009481132961809635, 0.012466280721127987, 0.20562651753425598, 0.2750796675682068], [0.03203089162707329, 0.02481062151491642, 0.032213158905506134, 0.021143076941370964, 0.016430186107754707, 0.020931297913193703, 0.020654110237956047, 0.24707330763339996, 0.008169624023139477, 0.028807025402784348, 0.01920127309858799, 0.02249963767826557, 0.026157012209296227, 0.01602890156209469, 0.008414310403168201, 0.022031016647815704, 0.18633496761322021, 0.2470695674419403], [0.027566464617848396, 0.031563900411129, 0.027904080227017403, 0.015834519639611244, 0.028902439400553703, 0.016563603654503822, 0.022464247420430183, 0.22637927532196045, 0.02383129671216011, 0.015516569837927818, 0.02089894562959671, 0.03680070862174034, 0.01737489178776741, 0.022985367104411125, 0.030280351638793945, 0.03180914372205734, 0.17694807052612305, 0.22637614607810974], [0.04195506125688553, 0.03179970011115074, 0.041627008467912674, 0.02144000679254532, 0.021536897867918015, 0.022886579856276512, 0.028449684381484985, 0.20258928835391998, 0.009785806760191917, 0.02696431428194046, 0.025294702500104904, 0.04856469854712486, 0.031261738389730453, 0.027430197224020958, 0.018860185518860817, 0.035099733620882034, 0.16186851263046265, 0.20258590579032898], [0.06669706106185913, 0.05710075795650482, 0.05984163284301758, 0.06630229949951172, 0.0575217604637146, 0.06855405122041702, 0.052097804844379425, 0.0512692928314209, 0.05671345070004463, 0.07546204328536987, 0.04102300480008125, 0.055178187787532806, 0.04742857813835144, 0.048308126628398895, 0.052554450929164886, 0.04169754683971405, 0.050980765372514725, 0.051269225776195526], [0.06814123690128326, 0.0582764595746994, 0.06192509084939957, 0.06670814752578735, 0.06065500155091286, 0.07228998839855194, 0.05503961443901062, 0.03659921512007713, 0.058273427188396454, 0.07164699584245682, 0.045238807797431946, 0.05767511576414108, 0.05347192659974098, 0.05186571925878525, 0.06227748468518257, 0.04541081562638283, 0.03790564835071564, 0.036599256098270416]], [[0.045241329818964005, 0.051679886877536774, 0.07608166337013245, 0.03425301983952522, 0.11099235713481903, 0.06271696090698242, 0.05446857586503029, 0.03524656966328621, 0.18958309292793274, 0.009154712781310081, 0.09488273411989212, 0.06855364143848419, 0.03859549015760422, 0.030140606686472893, 0.010841749608516693, 0.0208584014326334, 0.031463298946619034, 0.03524605929851532], [0.0020937048830091953, 0.07343846559524536, 0.02310866490006447, 0.034495532512664795, 0.028906837105751038, 0.026322292163968086, 0.05614318698644638, 0.23827944695949554, 0.04966798797249794, 0.005824148654937744, 0.02105977199971676, 0.012330555357038975, 0.0020239821169525385, 0.0056267692707479, 0.0082067446783185, 0.0034050981048494577, 0.17079319059848785, 0.23827362060546875], [0.003157536732032895, 0.01715700887143612, 0.022424103692173958, 0.02764214016497135, 0.020321551710367203, 0.022765278816223145, 0.02114645205438137, 0.2967184782028198, 0.037321314215660095, 0.0077076503075659275, 0.014285826124250889, 0.009495184756815434, 0.0025037769228219986, 0.002842768095433712, 0.004419784992933273, 0.002030696254223585, 0.1913490742444992, 0.2967112958431244], [0.003238894045352936, 0.02927226573228836, 0.029789824038743973, 0.024839702993631363, 0.018108226358890533, 0.019004179164767265, 0.016261808574199677, 0.29341042041778564, 0.03705960512161255, 0.006236654240638018, 0.012772513553500175, 0.012549018487334251, 0.005124598741531372, 0.00692087784409523, 0.004720080643892288, 0.005335500463843346, 0.18195432424545288, 0.2934015989303589], [0.0016570002771914005, 0.02221091277897358, 0.03171105682849884, 0.037725821137428284, 0.03466009348630905, 0.023696284741163254, 0.06894615292549133, 0.2665174901485443, 0.02266213670372963, 0.0037866171915084124, 0.009253024123609066, 0.007121424190700054, 0.0029377418104559183, 0.005111026577651501, 0.0067098080180585384, 0.0034166735131293535, 0.1853657215833664, 0.26651111245155334], [0.002448531100526452, 0.0058496021665632725, 0.01059554610401392, 0.023191845044493675, 0.010298785753548145, 0.018305983394384384, 0.017450891435146332, 0.32319825887680054, 0.025924166664481163, 0.003567968960851431, 0.006729903630912304, 0.007573300041258335, 0.0031559576746076345, 0.005297482013702393, 0.003684547496959567, 0.0024309654254466295, 0.2071063369512558, 0.32318994402885437], [0.01943693496286869, 0.05754685774445534, 0.045879118144512177, 0.07778378576040268, 0.11234430223703384, 0.06288564950227737, 0.06978631764650345, 0.12227030843496323, 0.07562100887298584, 0.011694501154124737, 0.03909781202673912, 0.04041694104671478, 0.0051363310776650906, 0.013653161004185677, 0.014563153497874737, 0.012985475361347198, 0.09662997722625732, 0.12226828187704086], [0.06409956514835358, 0.0546971932053566, 0.05989396199584007, 0.05407964065670967, 0.0710546150803566, 0.06508578360080719, 0.04947297275066376, 0.03546296805143356, 0.09803793579339981, 0.03592453524470329, 0.07413345575332642, 0.06002320721745491, 0.0575718954205513, 0.05239664390683174, 0.04586324095726013, 0.051443085074424744, 0.03529650345444679, 0.0354628823697567], [0.0019992482848465443, 0.010059215128421783, 0.012739337980747223, 0.008027522824704647, 0.008512336760759354, 0.007924835197627544, 0.037889666855335236, 0.32397139072418213, 0.008337326347827911, 0.0036951443180441856, 0.0031020946335047483, 0.005948980804532766, 0.00206000916659832, 0.0026748101226985455, 0.0015568669186905026, 0.0016281140269711614, 0.23590964078903198, 0.3239634335041046], [0.01373794861137867, 0.027752423658967018, 0.029386188834905624, 0.011869963258504868, 0.01630166918039322, 0.016184888780117035, 0.01209369208663702, 0.27903303503990173, 0.026529347524046898, 0.04262739419937134, 0.02562619373202324, 0.012009521946310997, 0.0040947445668280125, 0.0021421071141958237, 0.009900908917188644, 0.0017513290513306856, 0.1899314522743225, 0.2790272831916809], [0.002725322265177965, 0.01552762370556593, 0.025339029729366302, 0.008453890681266785, 0.006916177924722433, 0.011914653703570366, 0.008458212949335575, 0.327211856842041, 0.0056927925907075405, 0.0061653791926801205, 0.007525674533098936, 0.010086839087307453, 0.005365884397178888, 0.005766361020505428, 0.007694437634199858, 0.004013333003968, 0.21393917500972748, 0.3272033631801605], [0.007191864773631096, 0.028165601193904877, 0.0597192645072937, 0.01732105016708374, 0.03472928702831268, 0.032520316541194916, 0.02225119061768055, 0.2539860010147095, 0.02061305195093155, 0.00697838282212615, 0.012994213029742241, 0.019320089370012283, 0.018820825964212418, 0.016278792172670364, 0.006942253094166517, 0.012728355824947357, 0.17545941472053528, 0.25398004055023193], [0.00833525788038969, 0.02152109704911709, 0.03997316211462021, 0.019907347857952118, 0.03047926537692547, 0.023679077625274658, 0.019526472315192223, 0.21106326580047607, 0.03744348883628845, 0.0074837482534348965, 0.05171442776918411, 0.04984680935740471, 0.049515124410390854, 0.03397803381085396, 0.024338701739907265, 0.015399754047393799, 0.1447366625070572, 0.2110583335161209], [0.005418404936790466, 0.029719702899456024, 0.02197408489882946, 0.021174781024456024, 0.02293505147099495, 0.014240358956158161, 0.023715084418654442, 0.2657718062400818, 0.028903121128678322, 0.01003760565072298, 0.019322272390127182, 0.024424517527222633, 0.013480259105563164, 0.018012283369898796, 0.019203804433345795, 0.007929445244371891, 0.18797072768211365, 0.2657666802406311], [0.002784471493214369, 0.02111930027604103, 0.01956159435212612, 0.00815935991704464, 0.0119766341522336, 0.011861935257911682, 0.011898905038833618, 0.28813716769218445, 0.002978227799758315, 0.008998232893645763, 0.004023048561066389, 0.01505186315625906, 0.013616286218166351, 0.019657250493764877, 0.06055738404393196, 0.011039448902010918, 0.20044758915901184, 0.28813132643699646], [0.0035723827313631773, 0.022865712642669678, 0.04040729999542236, 0.01478203572332859, 0.020224206149578094, 0.021422414109110832, 0.020671013742685318, 0.2994537353515625, 0.009262473322451115, 0.008548026904463768, 0.006946086417883635, 0.009102324023842812, 0.005362405441701412, 0.006282137241214514, 0.007013469468802214, 0.005172816105186939, 0.19946472346782684, 0.29944682121276855], [0.062322162091732025, 0.05652236193418503, 0.05917619168758392, 0.053685326129198074, 0.07318957895040512, 0.06510530412197113, 0.05269702151417732, 0.04463417828083038, 0.10345757007598877, 0.03150395303964615, 0.07197653502225876, 0.059389472007751465, 0.04786273464560509, 0.04596312716603279, 0.040307026356458664, 0.044161729514598846, 0.04341182857751846, 0.044633977115154266], [0.06409965455532074, 0.054697319865226746, 0.059894148260354996, 0.05407959595322609, 0.07105447351932526, 0.06508573889732361, 0.04947301372885704, 0.035463497042655945, 0.09803766757249832, 0.03592454269528389, 0.07413328438997269, 0.06002308428287506, 0.057571522891521454, 0.052396260201931, 0.04586298018693924, 0.051442716270685196, 0.0352969728410244, 0.03546341508626938]], [[0.003998899832367897, 0.03155961260199547, 0.20299828052520752, 0.022630970925092697, 0.023841170594096184, 0.22606328129768372, 0.020785879343748093, 0.08347228169441223, 0.08060310035943985, 0.003800528822466731, 0.048794813454151154, 0.012584509328007698, 0.052256353199481964, 0.017587777227163315, 0.009544933214783669, 0.012604774907231331, 0.06340242177248001, 0.08347044140100479], [0.0010164749110117555, 0.002939949743449688, 0.014420665800571442, 0.003551576752215624, 0.002739009913057089, 0.009358233772218227, 0.0057924180291593075, 0.35885822772979736, 0.010729462839663029, 0.0009032338857650757, 0.0023063544649630785, 0.002408701926469803, 0.004521715920418501, 0.0028325796592980623, 0.0007285315077751875, 0.0016580820083618164, 0.21638861298561096, 0.35884615778923035], [0.006524423137307167, 0.009523102082312107, 0.06395179033279419, 0.00806471984833479, 0.005664894822984934, 0.01596103608608246, 0.020896295085549355, 0.3064194619655609, 0.014489484019577503, 0.004999065306037664, 0.003153136931359768, 0.005275678355246782, 0.0023225052282214165, 0.001859982730820775, 0.0025224059354513884, 0.0015393666690215468, 0.2204209566116333, 0.3064117133617401], [0.0019611301831901073, 0.01727454550564289, 0.05934420973062515, 0.013218063861131668, 0.009782474488019943, 0.04379032924771309, 0.009040581062436104, 0.28773507475852966, 0.015520995482802391, 0.007672528736293316, 0.007348437327891588, 0.00728655606508255, 0.01944999396800995, 0.012385031208395958, 0.003305118065327406, 0.011848255060613155, 0.18530884385108948, 0.2877277731895447], [0.0019346448825672269, 0.008898555301129818, 0.015675757080316544, 0.005808596964925528, 0.007801953703165054, 0.048538945615291595, 0.006698574870824814, 0.3226040005683899, 0.020715812221169472, 0.0029882933013141155, 0.009180618450045586, 0.008113802410662174, 0.0074618225917220116, 0.0049956804141402245, 0.0020838058553636074, 0.004861936438828707, 0.1990429311990738, 0.3225942850112915], [0.0016883601201698184, 0.006039753556251526, 0.018505575135350227, 0.009805617853999138, 0.00841502659022808, 0.09077376872301102, 0.005633986555039883, 0.29350483417510986, 0.01953960582613945, 0.0030480390414595604, 0.011257801204919815, 0.006132103502750397, 0.01102176122367382, 0.020695319399237633, 0.004464173223823309, 0.023746293038129807, 0.17223238945007324, 0.2934955656528473], [0.0033760550431907177, 0.011007403023540974, 0.015801159664988518, 0.007142371032387018, 0.008497164584696293, 0.024084851145744324, 0.009973191656172276, 0.32934990525245667, 0.009413265623152256, 0.004563957452774048, 0.004894511308521032, 0.006380677223205566, 0.006862711161375046, 0.004649853799492121, 0.0035419613122940063, 0.006091092247515917, 0.21502818167209625, 0.3293416500091553], [0.045030176639556885, 0.04232853651046753, 0.05346163362264633, 0.03513100743293762, 0.03733356297016144, 0.05589524656534195, 0.05000380054116249, 0.09644489735364914, 0.06555010378360748, 0.03408675640821457, 0.0569164976477623, 0.04481598362326622, 0.06017940491437912, 0.05323905870318413, 0.038750384002923965, 0.045841339975595474, 0.08854725956916809, 0.09644438326358795], [0.00653301365673542, 0.014668452553451061, 0.03677042946219444, 0.005483715329319239, 0.006279755849391222, 0.029509326443076134, 0.005378578789532185, 0.3178277313709259, 0.01896415278315544, 0.00859830155968666, 0.004076340701431036, 0.0030420387629419565, 0.003267444670200348, 0.002929158741608262, 0.0011235279962420464, 0.0029890770092606544, 0.21473939716815948, 0.3178195059299469], [0.003964275121688843, 0.004328371025621891, 0.02834230288863182, 0.0027580971363931894, 0.0016066511161625385, 0.007350620348006487, 0.00571123231202364, 0.3489009737968445, 0.00560680590569973, 0.004121818114072084, 0.0011126877507194877, 0.0017758626490831375, 0.0008160301367752254, 0.0006380673730745912, 0.0005581648438237607, 0.0011240442981943488, 0.23239338397979736, 0.3488905727863312], [0.00036088499473407865, 0.0021443674340844154, 0.00943862833082676, 0.0007296942640095949, 0.0011535825906321406, 0.00938350334763527, 0.0013727956684306264, 0.3749156892299652, 0.0019380636513233185, 0.0016309963539242744, 0.0019990496803075075, 0.0014146942412480712, 0.003810831345617771, 0.0015721898525953293, 0.0007201497792266309, 0.002147648250684142, 0.21036358177661896, 0.3749036192893982], [0.0010293679079040885, 0.0027237648610025644, 0.007519975304603577, 0.0008659223676659167, 0.0015248716808855534, 0.0070081111043691635, 0.002567447256296873, 0.37171024084091187, 0.004152927082031965, 0.00107064179610461, 0.0020847413688898087, 0.002918981248512864, 0.003688163124024868, 0.0018455215031281114, 0.000481138180475682, 0.0013382671168074012, 0.21577125787734985, 0.3716987073421478], [0.0008394678006879985, 0.0019495347514748573, 0.008243054151535034, 0.0009115004795603454, 0.0012049421202391386, 0.0051543996669352055, 0.0013452456332743168, 0.3726404011249542, 0.0022584544494748116, 0.001491676433943212, 0.001941994414664805, 0.0018317745998501778, 0.007704612798988819, 0.004425507504492998, 0.001103533199056983, 0.004918585531413555, 0.20940624177455902, 0.3726290166378021], [0.002974697155877948, 0.0026332661509513855, 0.010431922040879726, 0.003130942350253463, 0.0027384248096495867, 0.013282899744808674, 0.004716901574283838, 0.3540663719177246, 0.005549907684326172, 0.002146015176549554, 0.0018186187371611595, 0.0024907283950597048, 0.001394731691107154, 0.0028164656832814217, 0.0017148860497400165, 0.002745633013546467, 0.23129107058048248, 0.3540565073490143], [0.001072988728992641, 0.0012800897238776088, 0.0072280424647033215, 0.0008801527437753975, 0.0008332192664965987, 0.00460073072463274, 0.002615450182929635, 0.372471421957016, 0.0013400021707639098, 0.0018590891268104315, 0.0005560442805290222, 0.0009934890549629927, 0.0004648126778192818, 0.0010716060642153025, 0.0008929191390052438, 0.0010502903023734689, 0.22832921147346497, 0.37246042490005493], [0.0022712484933435917, 0.004080384969711304, 0.022914379835128784, 0.004628492519259453, 0.0022590691223740578, 0.01502297818660736, 0.005682620219886303, 0.3449508249759674, 0.0038565241266041994, 0.004494885448366404, 0.002220769878476858, 0.00234971777535975, 0.002381717087700963, 0.0045191142708063126, 0.0029865489341318607, 0.004838564898818731, 0.22560051083564758, 0.3449416160583496], [0.036972563713788986, 0.03857256844639778, 0.04735071584582329, 0.029441654682159424, 0.033535346388816833, 0.053073689341545105, 0.04458972439169884, 0.12805020809173584, 0.05870215594768524, 0.028448136523365974, 0.04941699281334877, 0.04159381985664368, 0.051031798124313354, 0.04626472294330597, 0.0318976528942585, 0.04011762887239456, 0.11289145052433014, 0.12804920971393585], [0.04502998664975166, 0.04232855141162872, 0.05346156656742096, 0.03513088449835777, 0.037333399057388306, 0.05589514598250389, 0.05000362917780876, 0.09644610434770584, 0.06554966419935226, 0.03408673033118248, 0.056916140019893646, 0.044815853238105774, 0.06017882376909256, 0.05323868617415428, 0.038750045001506805, 0.045841023325920105, 0.0885482057929039, 0.09644558280706406]], [[0.026621613651514053, 0.010369090363383293, 0.0068130879662930965, 0.05335598066449165, 0.08700788766145706, 0.06353089213371277, 0.03868170455098152, 0.17560455203056335, 0.05451774597167969, 0.019108042120933533, 0.09328537434339523, 0.02643721178174019, 0.01966830901801586, 0.0064767999574542046, 0.003026567865163088, 0.005363601725548506, 0.1345314234495163, 0.17559999227523804], [0.0023898149374872446, 0.13510265946388245, 0.012019813060760498, 0.01865272782742977, 0.02521962858736515, 0.01162776630371809, 0.027171829715371132, 0.20558902621269226, 0.0778900757431984, 0.050435490906238556, 0.04177508130669594, 0.019083717837929726, 0.019544893875718117, 0.003257393604144454, 0.0012578268069773912, 0.0036643249914050102, 0.13973461091518402, 0.2055833339691162], [0.001712072524242103, 0.020069211721420288, 0.20937040448188782, 0.013164193369448185, 0.01665794663131237, 0.020537201315164566, 0.012166931293904781, 0.2295093536376953, 0.017552174627780914, 0.04046766832470894, 0.010790187865495682, 0.009438786655664444, 0.006877962499856949, 0.012472822330892086, 0.0016717585967853665, 0.004872838035225868, 0.14316587150096893, 0.2295026183128357], [0.0019680545665323734, 0.00725901871919632, 0.010422389023005962, 0.5353659987449646, 0.028752179816365242, 0.006045505870133638, 0.006149277091026306, 0.09926734119653702, 0.008447284810245037, 0.011669589206576347, 0.09445198625326157, 0.010951251722872257, 0.012852165848016739, 0.0011547181056812406, 0.000743611715734005, 0.0020816875621676445, 0.06315317004919052, 0.09926474094390869], [0.007135676220059395, 0.021258851513266563, 0.020343074575066566, 0.05540064722299576, 0.43390780687332153, 0.036455363035202026, 0.009183808229863644, 0.0671643614768982, 0.05916950851678848, 0.019643528386950493, 0.05369943380355835, 0.057656992226839066, 0.02867281436920166, 0.01123485155403614, 0.0018708186689764261, 0.004619144834578037, 0.045420702546834946, 0.06716267019510269], [0.005806670058518648, 0.010867584496736526, 0.018619181588292122, 0.008656198158860207, 0.030529746785759926, 0.1125747412443161, 0.012224772945046425, 0.2286948561668396, 0.061055589467287064, 0.021137362346053123, 0.028597533702850342, 0.021115796640515327, 0.0197934340685606, 0.029159778729081154, 0.0016165858833119273, 0.014957714825868607, 0.14590336382389069, 0.2286890149116516], [0.030316513031721115, 0.03879543021321297, 0.007956680841743946, 0.01359756663441658, 0.015689292922616005, 0.023446492850780487, 0.06349673867225647, 0.07191929966211319, 0.3704768717288971, 0.09273990988731384, 0.049393296241760254, 0.030201833695173264, 0.017676008865237236, 0.0209237951785326, 0.010948611423373222, 0.005773745942860842, 0.06472981721162796, 0.07191812247037888], [0.03621935844421387, 0.05627012997865677, 0.05244666710495949, 0.04209093004465103, 0.042922765016555786, 0.03797050938010216, 0.05890250205993652, 0.08297575265169144, 0.0777658224105835, 0.0773826614022255, 0.05960889160633087, 0.0585535392165184, 0.05033449828624725, 0.0375998429954052, 0.027386588975787163, 0.039667095988988876, 0.07892712205648422, 0.08297532051801682], [0.0047097220085561275, 0.02104305662214756, 0.023678375408053398, 0.01301337219774723, 0.04403382167220116, 0.0271775983273983, 0.03632831946015358, 0.17442628741264343, 0.2561720907688141, 0.025161731988191605, 0.01114196702837944, 0.013367220759391785, 0.013920623809099197, 0.02073431760072708, 0.0035718251019716263, 0.012082167901098728, 0.12501521408557892, 0.17442230880260468], [0.006271233782172203, 0.044838014990091324, 0.025669768452644348, 0.019179170951247215, 0.013802420347929, 0.026137063279747963, 0.01925434172153473, 0.06547089666128159, 0.03255748376250267, 0.5350325107574463, 0.018948249518871307, 0.011779241263866425, 0.0071566724218428135, 0.03801869601011276, 0.008669998496770859, 0.010303410701453686, 0.05144151672720909, 0.0654693990945816], [0.005432494450360537, 0.00951183307915926, 0.011587444692850113, 0.10128558427095413, 0.016842449083924294, 0.01959051564335823, 0.009477442130446434, 0.02988453395664692, 0.008573477156460285, 0.044769011437892914, 0.5585584044456482, 0.021569902077317238, 0.07984048873186111, 0.017245516180992126, 0.0025508496910333633, 0.010558915324509144, 0.02283707819879055, 0.029884012416005135], [0.007137647829949856, 0.007566405460238457, 0.014024150557816029, 0.012998114340007305, 0.034137435257434845, 0.018865983933210373, 0.012306420132517815, 0.16478049755096436, 0.012592228129506111, 0.027673829346895218, 0.055813197046518326, 0.2153676599264145, 0.11686892062425613, 0.011709877289831638, 0.0034052592236548662, 0.008832820691168308, 0.11114322394132614, 0.16477641463279724], [0.0016505694948136806, 0.0015152761479839683, 0.003414463484659791, 0.0031267625745385885, 0.00574470916762948, 0.005987811833620071, 0.0019297819817438722, 0.036490075290203094, 0.0024994572158902884, 0.0050597405061125755, 0.03269215300679207, 0.015622940845787525, 0.79578697681427, 0.009272861294448376, 0.0023268579971045256, 0.016897300258278847, 0.0234930831938982, 0.0364890955388546], [0.007396682631224394, 0.002788861747831106, 0.015297865495085716, 0.005443950183689594, 0.01072902511805296, 0.03501064330339432, 0.00952388159930706, 0.06019143387675285, 0.015691129490733147, 0.0303693525493145, 0.01978149823844433, 0.013150992803275585, 0.06967347115278244, 0.5017579793930054, 0.01460969913750887, 0.08411876857280731, 0.04427453875541687, 0.06019027158617973], [0.002926530549302697, 0.002742255572229624, 0.009964917786419392, 0.019907522946596146, 0.009834645316004753, 0.007285849656909704, 0.012043509632349014, 0.04490362107753754, 0.006707755383104086, 0.030755523592233658, 0.05203564092516899, 0.021475572139024734, 0.04084320738911629, 0.021074922755360603, 0.6258460283279419, 0.013182269409298897, 0.03356762230396271, 0.044902555644512177], [0.014777680858969688, 0.0030116883572191, 0.008053864352405071, 0.00926940143108368, 0.00568968802690506, 0.02660328708589077, 0.004842663649469614, 0.07880431413650513, 0.00824185274541378, 0.019027331843972206, 0.008385454304516315, 0.0034933181013911963, 0.09414523094892502, 0.06610362231731415, 0.005094907246530056, 0.5057491064071655, 0.059903599321842194, 0.07880298048257828], [0.032718293368816376, 0.05432064086198807, 0.04460839927196503, 0.03585963696241379, 0.037962768226861954, 0.03468015789985657, 0.062041349709033966, 0.10010959953069687, 0.08464337140321732, 0.07680552452802658, 0.05521955341100693, 0.056955642998218536, 0.043188780546188354, 0.03315672278404236, 0.02260960079729557, 0.031088383868336678, 0.09392273426055908, 0.10010888427495956], [0.03621932119131088, 0.056269947439432144, 0.05244641378521919, 0.042090918868780136, 0.04292267560958862, 0.03797059506177902, 0.058902591466903687, 0.08297652751207352, 0.07776574790477753, 0.07738237082958221, 0.059608664363622665, 0.05855333432555199, 0.0503341406583786, 0.03759972006082535, 0.027386344969272614, 0.039666883647441864, 0.07892779260873795, 0.08297610282897949]]]], \\\"left_text\\\": [\\\"[CLS]\\\", \\\"The\\\", \\\"cat\\\", \\\"is\\\", \\\"very\\\", \\\"sad\\\", \\\".\\\", \\\"[SEP]\\\", \\\"Because\\\", \\\"it\\\", \\\"could\\\", \\\"not\\\", \\\"find\\\", \\\"food\\\", \\\"to\\\", \\\"eat\\\", \\\".\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"[CLS]\\\", \\\"The\\\", \\\"cat\\\", \\\"is\\\", \\\"very\\\", \\\"sad\\\", \\\".\\\", \\\"[SEP]\\\", \\\"Because\\\", \\\"it\\\", \\\"could\\\", \\\"not\\\", \\\"find\\\", \\\"food\\\", \\\"to\\\", \\\"eat\\\", \\\".\\\", \\\"[SEP]\\\"]}], \\\"default_filter\\\": \\\"0\\\", \\\"root_div_id\\\": \\\"bertviz-1de19e1432d14b4aad8c487235728dd3\\\", \\\"layer\\\": null, \\\"heads\\\": null} is a template marker that is replaced by actual params.\\n\",\"    const TEXT_SIZE = 15;\\n\",\"    const BOXWIDTH = 110;\\n\",\"    const BOXHEIGHT = 22.5;\\n\",\"    const MATRIX_WIDTH = 115;\\n\",\"    const CHECKBOX_SIZE = 20;\\n\",\"    const TEXT_TOP = 30;\\n\",\"\\n\",\"    console.log(\\\"d3 version\\\", d3.version)\\n\",\"    let headColors;\\n\",\"    try {\\n\",\"        headColors = d3.scaleOrdinal(d3.schemeCategory10);\\n\",\"    } catch (err) {\\n\",\"        console.log('Older d3 version')\\n\",\"        headColors = d3.scale.category10();\\n\",\"    }\\n\",\"    let config = {};\\n\",\"    initialize();\\n\",\"    renderVis();\\n\",\"\\n\",\"    function initialize() {\\n\",\"        config.attention = params['attention'];\\n\",\"        config.filter = params['default_filter'];\\n\",\"        config.rootDivId = params['root_div_id'];\\n\",\"        config.nLayers = config.attention[config.filter]['attn'].length;\\n\",\"        config.nHeads = config.attention[config.filter]['attn'][0].length;\\n\",\"        if (params['heads']) {\\n\",\"            config.headVis = new Array(config.nHeads).fill(false);\\n\",\"            params['heads'].forEach(x =\\u003e config.headVis[x] = true);\\n\",\"        } else {\\n\",\"            config.headVis = new Array(config.nHeads).fill(true);\\n\",\"        }\\n\",\"        config.initialTextLength = config.attention[config.filter].right_text.length;\\n\",\"        config.layer = (params['layer'] == null ? 0 : params['layer'])\\n\",\"\\n\",\"\\n\",\"        let layerEl = $(`#${config.rootDivId} #layer`);\\n\",\"        for (var i = 0; i \\u003c config.nLayers; i++) {\\n\",\"            layerEl.append($(\\\"\\u003coption /\\u003e\\\").val(i).text(i));\\n\",\"        }\\n\",\"        layerEl.val(config.layer).change();\\n\",\"        layerEl.on('change', function (e) {\\n\",\"            config.layer = +e.currentTarget.value;\\n\",\"            renderVis();\\n\",\"        });\\n\",\"\\n\",\"        $(`#${config.rootDivId} #filter`).on('change', function (e) {\\n\",\"            config.filter = e.currentTarget.value;\\n\",\"            renderVis();\\n\",\"        });\\n\",\"    }\\n\",\"\\n\",\"    function renderVis() {\\n\",\"\\n\",\"        // Load parameters\\n\",\"        const attnData = config.attention[config.filter];\\n\",\"        const leftText = attnData.left_text;\\n\",\"        const rightText = attnData.right_text;\\n\",\"\\n\",\"        // Select attention for given layer\\n\",\"        const layerAttention = attnData.attn[config.layer];\\n\",\"\\n\",\"        // Clear vis\\n\",\"        $(`#${config.rootDivId} #vis`).empty();\\n\",\"\\n\",\"        // Determine size of visualization\\n\",\"        const height = Math.max(leftText.length, rightText.length) * BOXHEIGHT + TEXT_TOP;\\n\",\"        const svg = d3.select(`#${config.rootDivId} #vis`)\\n\",\"            .append('svg')\\n\",\"            .attr(\\\"width\\\", \\\"100%\\\")\\n\",\"            .attr(\\\"height\\\", height + \\\"px\\\");\\n\",\"\\n\",\"        // Display tokens on left and right side of visualization\\n\",\"        renderText(svg, leftText, true, layerAttention, 0);\\n\",\"        renderText(svg, rightText, false, layerAttention, MATRIX_WIDTH + BOXWIDTH);\\n\",\"\\n\",\"        // Render attention arcs\\n\",\"        renderAttention(svg, layerAttention);\\n\",\"\\n\",\"        // Draw squares at top of visualization, one for each head\\n\",\"        drawCheckboxes(0, svg, layerAttention);\\n\",\"    }\\n\",\"\\n\",\"    function renderText(svg, text, isLeft, attention, leftPos) {\\n\",\"\\n\",\"        const textContainer = svg.append(\\\"svg:g\\\")\\n\",\"            .attr(\\\"id\\\", isLeft ? \\\"left\\\" : \\\"right\\\");\\n\",\"\\n\",\"        // Add attention highlights superimposed over words\\n\",\"        textContainer.append(\\\"g\\\")\\n\",\"            .classed(\\\"attentionBoxes\\\", true)\\n\",\"            .selectAll(\\\"g\\\")\\n\",\"            .data(attention)\\n\",\"            .enter()\\n\",\"            .append(\\\"g\\\")\\n\",\"            .attr(\\\"head-index\\\", (d, i) =\\u003e i)\\n\",\"            .selectAll(\\\"rect\\\")\\n\",\"            .data(d =\\u003e isLeft ? d : transpose(d)) // if right text, transpose attention to get right-to-left weights\\n\",\"            .enter()\\n\",\"            .append(\\\"rect\\\")\\n\",\"            .attr(\\\"x\\\", function () {\\n\",\"                var headIndex = +this.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                return leftPos + boxOffsets(headIndex);\\n\",\"            })\\n\",\"            .attr(\\\"y\\\", (+1) * BOXHEIGHT)\\n\",\"            .attr(\\\"width\\\", BOXWIDTH / activeHeads())\\n\",\"            .attr(\\\"height\\\", BOXHEIGHT)\\n\",\"            .attr(\\\"fill\\\", function () {\\n\",\"                return headColors(+this.parentNode.getAttribute(\\\"head-index\\\"))\\n\",\"            })\\n\",\"            .style(\\\"opacity\\\", 0.0);\\n\",\"\\n\",\"        const tokenContainer = textContainer.append(\\\"g\\\").selectAll(\\\"g\\\")\\n\",\"            .data(text)\\n\",\"            .enter()\\n\",\"            .append(\\\"g\\\");\\n\",\"\\n\",\"        // Add gray background that appears when hovering over text\\n\",\"        tokenContainer.append(\\\"rect\\\")\\n\",\"            .classed(\\\"background\\\", true)\\n\",\"            .style(\\\"opacity\\\", 0.0)\\n\",\"            .attr(\\\"fill\\\", \\\"lightgray\\\")\\n\",\"            .attr(\\\"x\\\", leftPos)\\n\",\"            .attr(\\\"y\\\", (d, i) =\\u003e TEXT_TOP + i * BOXHEIGHT)\\n\",\"            .attr(\\\"width\\\", BOXWIDTH)\\n\",\"            .attr(\\\"height\\\", BOXHEIGHT);\\n\",\"\\n\",\"        // Add token text\\n\",\"        const textEl = tokenContainer.append(\\\"text\\\")\\n\",\"            .text(d =\\u003e d)\\n\",\"            .attr(\\\"font-size\\\", TEXT_SIZE + \\\"px\\\")\\n\",\"            .style(\\\"cursor\\\", \\\"default\\\")\\n\",\"            .style(\\\"-webkit-user-select\\\", \\\"none\\\")\\n\",\"            .attr(\\\"x\\\", leftPos)\\n\",\"            .attr(\\\"y\\\", (d, i) =\\u003e TEXT_TOP + i * BOXHEIGHT);\\n\",\"\\n\",\"        if (isLeft) {\\n\",\"            textEl.style(\\\"text-anchor\\\", \\\"end\\\")\\n\",\"                .attr(\\\"dx\\\", BOXWIDTH - 0.5 * TEXT_SIZE)\\n\",\"                .attr(\\\"dy\\\", TEXT_SIZE);\\n\",\"        } else {\\n\",\"            textEl.style(\\\"text-anchor\\\", \\\"start\\\")\\n\",\"                .attr(\\\"dx\\\", +0.5 * TEXT_SIZE)\\n\",\"                .attr(\\\"dy\\\", TEXT_SIZE);\\n\",\"        }\\n\",\"\\n\",\"        tokenContainer.on(\\\"mouseover\\\", function (d, index) {\\n\",\"\\n\",\"            // Show gray background for moused-over token\\n\",\"            textContainer.selectAll(\\\".background\\\")\\n\",\"                .style(\\\"opacity\\\", (d, i) =\\u003e i === index ? 1.0 : 0.0)\\n\",\"\\n\",\"            // Reset visibility attribute for any previously highlighted attention arcs\\n\",\"            svg.select(\\\"#attention\\\")\\n\",\"                .selectAll(\\\"line[visibility='visible']\\\")\\n\",\"                .attr(\\\"visibility\\\", null)\\n\",\"\\n\",\"            // Hide group containing attention arcs\\n\",\"            svg.select(\\\"#attention\\\").attr(\\\"visibility\\\", \\\"hidden\\\");\\n\",\"\\n\",\"            // Set to visible appropriate attention arcs to be highlighted\\n\",\"            if (isLeft) {\\n\",\"                svg.select(\\\"#attention\\\").selectAll(\\\"line[left-token-index='\\\" + index + \\\"']\\\").attr(\\\"visibility\\\", \\\"visible\\\");\\n\",\"            } else {\\n\",\"                svg.select(\\\"#attention\\\").selectAll(\\\"line[right-token-index='\\\" + index + \\\"']\\\").attr(\\\"visibility\\\", \\\"visible\\\");\\n\",\"            }\\n\",\"\\n\",\"            // Update color boxes superimposed over tokens\\n\",\"            const id = isLeft ? \\\"right\\\" : \\\"left\\\";\\n\",\"            const leftPos = isLeft ? MATRIX_WIDTH + BOXWIDTH : 0;\\n\",\"            svg.select(\\\"#\\\" + id)\\n\",\"                .selectAll(\\\".attentionBoxes\\\")\\n\",\"                .selectAll(\\\"g\\\")\\n\",\"                .attr(\\\"head-index\\\", (d, i) =\\u003e i)\\n\",\"                .selectAll(\\\"rect\\\")\\n\",\"                .attr(\\\"x\\\", function () {\\n\",\"                    const headIndex = +this.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                    return leftPos + boxOffsets(headIndex);\\n\",\"                })\\n\",\"                .attr(\\\"y\\\", (d, i) =\\u003e TEXT_TOP + i * BOXHEIGHT)\\n\",\"                .attr(\\\"width\\\", BOXWIDTH / activeHeads())\\n\",\"                .attr(\\\"height\\\", BOXHEIGHT)\\n\",\"                .style(\\\"opacity\\\", function (d) {\\n\",\"                    const headIndex = +this.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                    if (config.headVis[headIndex])\\n\",\"                        if (d) {\\n\",\"                            return d[index];\\n\",\"                        } else {\\n\",\"                            return 0.0;\\n\",\"                        }\\n\",\"                    else\\n\",\"                        return 0.0;\\n\",\"                });\\n\",\"        });\\n\",\"\\n\",\"        textContainer.on(\\\"mouseleave\\\", function () {\\n\",\"\\n\",\"            // Unhighlight selected token\\n\",\"            d3.select(this).selectAll(\\\".background\\\")\\n\",\"                .style(\\\"opacity\\\", 0.0);\\n\",\"\\n\",\"            // Reset visibility attributes for previously selected lines\\n\",\"            svg.select(\\\"#attention\\\")\\n\",\"                .selectAll(\\\"line[visibility='visible']\\\")\\n\",\"                .attr(\\\"visibility\\\", null) ;\\n\",\"            svg.select(\\\"#attention\\\").attr(\\\"visibility\\\", \\\"visible\\\");\\n\",\"\\n\",\"            // Reset highlights superimposed over tokens\\n\",\"            svg.selectAll(\\\".attentionBoxes\\\")\\n\",\"                .selectAll(\\\"g\\\")\\n\",\"                .selectAll(\\\"rect\\\")\\n\",\"                .style(\\\"opacity\\\", 0.0);\\n\",\"        });\\n\",\"    }\\n\",\"\\n\",\"    function renderAttention(svg, attention) {\\n\",\"\\n\",\"        // Remove previous dom elements\\n\",\"        svg.select(\\\"#attention\\\").remove();\\n\",\"\\n\",\"        // Add new elements\\n\",\"        svg.append(\\\"g\\\")\\n\",\"            .attr(\\\"id\\\", \\\"attention\\\") // Container for all attention arcs\\n\",\"            .selectAll(\\\".headAttention\\\")\\n\",\"            .data(attention)\\n\",\"            .enter()\\n\",\"            .append(\\\"g\\\")\\n\",\"            .classed(\\\"headAttention\\\", true) // Group attention arcs by head\\n\",\"            .attr(\\\"head-index\\\", (d, i) =\\u003e i)\\n\",\"            .selectAll(\\\".tokenAttention\\\")\\n\",\"            .data(d =\\u003e d)\\n\",\"            .enter()\\n\",\"            .append(\\\"g\\\")\\n\",\"            .classed(\\\"tokenAttention\\\", true) // Group attention arcs by left token\\n\",\"            .attr(\\\"left-token-index\\\", (d, i) =\\u003e i)\\n\",\"            .selectAll(\\\"line\\\")\\n\",\"            .data(d =\\u003e d)\\n\",\"            .enter()\\n\",\"            .append(\\\"line\\\")\\n\",\"            .attr(\\\"x1\\\", BOXWIDTH)\\n\",\"            .attr(\\\"y1\\\", function () {\\n\",\"                const leftTokenIndex = +this.parentNode.getAttribute(\\\"left-token-index\\\")\\n\",\"                return TEXT_TOP + leftTokenIndex * BOXHEIGHT + (BOXHEIGHT / 2)\\n\",\"            })\\n\",\"            .attr(\\\"x2\\\", BOXWIDTH + MATRIX_WIDTH)\\n\",\"            .attr(\\\"y2\\\", (d, rightTokenIndex) =\\u003e TEXT_TOP + rightTokenIndex * BOXHEIGHT + (BOXHEIGHT / 2))\\n\",\"            .attr(\\\"stroke-width\\\", 2)\\n\",\"            .attr(\\\"stroke\\\", function () {\\n\",\"                const headIndex = +this.parentNode.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                return headColors(headIndex)\\n\",\"            })\\n\",\"            .attr(\\\"left-token-index\\\", function () {\\n\",\"                return +this.parentNode.getAttribute(\\\"left-token-index\\\")\\n\",\"            })\\n\",\"            .attr(\\\"right-token-index\\\", (d, i) =\\u003e i)\\n\",\"        ;\\n\",\"        updateAttention(svg)\\n\",\"    }\\n\",\"\\n\",\"    function updateAttention(svg) {\\n\",\"        svg.select(\\\"#attention\\\")\\n\",\"            .selectAll(\\\"line\\\")\\n\",\"            .attr(\\\"stroke-opacity\\\", function (d) {\\n\",\"                const headIndex = +this.parentNode.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                // If head is selected\\n\",\"                if (config.headVis[headIndex]) {\\n\",\"                    // Set opacity to attention weight divided by number of active heads\\n\",\"                    return d / activeHeads()\\n\",\"                } else {\\n\",\"                    return 0.0;\\n\",\"                }\\n\",\"            })\\n\",\"    }\\n\",\"\\n\",\"    function boxOffsets(i) {\\n\",\"        const numHeadsAbove = config.headVis.reduce(\\n\",\"            function (acc, val, cur) {\\n\",\"                return val \\u0026\\u0026 cur \\u003c i ? acc + 1 : acc;\\n\",\"            }, 0);\\n\",\"        return numHeadsAbove * (BOXWIDTH / activeHeads());\\n\",\"    }\\n\",\"\\n\",\"    function activeHeads() {\\n\",\"        return config.headVis.reduce(function (acc, val) {\\n\",\"            return val ? acc + 1 : acc;\\n\",\"        }, 0);\\n\",\"    }\\n\",\"\\n\",\"    function drawCheckboxes(top, svg) {\\n\",\"        const checkboxContainer = svg.append(\\\"g\\\");\\n\",\"        const checkbox = checkboxContainer.selectAll(\\\"rect\\\")\\n\",\"            .data(config.headVis)\\n\",\"            .enter()\\n\",\"            .append(\\\"rect\\\")\\n\",\"            .attr(\\\"fill\\\", (d, i) =\\u003e headColors(i))\\n\",\"            .attr(\\\"x\\\", (d, i) =\\u003e i * CHECKBOX_SIZE)\\n\",\"            .attr(\\\"y\\\", top)\\n\",\"            .attr(\\\"width\\\", CHECKBOX_SIZE)\\n\",\"            .attr(\\\"height\\\", CHECKBOX_SIZE);\\n\",\"\\n\",\"        function updateCheckboxes() {\\n\",\"            checkboxContainer.selectAll(\\\"rect\\\")\\n\",\"                .data(config.headVis)\\n\",\"                .attr(\\\"fill\\\", (d, i) =\\u003e d ? headColors(i): lighten(headColors(i)));\\n\",\"        }\\n\",\"\\n\",\"        updateCheckboxes();\\n\",\"\\n\",\"        checkbox.on(\\\"click\\\", function (d, i) {\\n\",\"            if (config.headVis[i] \\u0026\\u0026 activeHeads() === 1) return;\\n\",\"            config.headVis[i] = !config.headVis[i];\\n\",\"            updateCheckboxes();\\n\",\"            updateAttention(svg);\\n\",\"        });\\n\",\"\\n\",\"        checkbox.on(\\\"dblclick\\\", function (d, i) {\\n\",\"            // If we double click on the only active head then reset\\n\",\"            if (config.headVis[i] \\u0026\\u0026 activeHeads() === 1) {\\n\",\"                config.headVis = new Array(config.nHeads).fill(true);\\n\",\"            } else {\\n\",\"                config.headVis = new Array(config.nHeads).fill(false);\\n\",\"                config.headVis[i] = true;\\n\",\"            }\\n\",\"            updateCheckboxes();\\n\",\"            updateAttention(svg);\\n\",\"        });\\n\",\"    }\\n\",\"\\n\",\"    function lighten(color) {\\n\",\"        const c = d3.hsl(color);\\n\",\"        const increment = (1 - c.l) * 0.6;\\n\",\"        c.l += increment;\\n\",\"        c.s -= increment;\\n\",\"        return c;\\n\",\"    }\\n\",\"\\n\",\"    function transpose(mat) {\\n\",\"        return mat[0].map(function (col, i) {\\n\",\"            return mat.map(function (row) {\\n\",\"                return row[i];\\n\",\"            });\\n\",\"        });\\n\",\"    }\\n\",\"\\n\",\"});\"],\"text/plain\":[\"\\u003cIPython.core.display.Javascript object\\u003e\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"}],\"source\":[\"model_path = 'bert-base-cased'\\n\",\"sentence_a = \\\"The cat is very sad.\\\"\\n\",\"sentence_b = \\\"Because it could not find food to eat.\\\"\\n\",\"attention, tokens=get_bert_attentions(model_path, sentence_a, sentence_b)\\n\",\"head_view(attention, tokens)\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"DNCLCLhHLnXH\"},\"source\":[\"#Working the language models other than English\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"Zy6P7T2FLy0R\"},\"source\":[\"##  A Turkish Model\"]},{\"cell_type\":\"code\",\"execution_count\":5,\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":726},\"executionInfo\":{\"elapsed\":16721,\"status\":\"ok\",\"timestamp\":1626168733145,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"},\"user_tz\":-180},\"id\":\"exx2UnNurNaM\",\"outputId\":\"d70c0193-18e3-4d10-8b7a-01e04cfd90d5\"},\"outputs\":[{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"f26d375514a445b5a6fc39cfc5e572cf\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=385.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"e52fab08e2cc4767a7af5b94d0918801\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=445018508.0, style=ProgressStyle(descri…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"name\":\"stderr\",\"output_type\":\"stream\",\"text\":[\"Some weights of the model checkpoint at dbmdz/bert-base-turkish-cased were not used when initializing BertModel: ['cls.seq_relationship.bias', 'cls.predictions.bias', 'cls.predictions.decoder.bias', 'cls.predictions.decoder.weight', 'cls.predictions.transform.LayerNorm.weight', 'cls.predictions.transform.dense.bias', 'cls.predictions.transform.LayerNorm.bias', 'cls.seq_relationship.weight', 'cls.predictions.transform.dense.weight']\\n\",\"- This IS expected if you are initializing BertModel from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing BertModel from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\"]},{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"4e6350f90377442387bb2a8cd663ba41\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=251003.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"232e3c710a194886b1347497e7c899a8\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=60.0, style=ProgressStyle(description_w…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"data\":{\"text/html\":[\"\\u003cscript src=\\\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js\\\"\\u003e\\u003c/script\\u003e\"],\"text/plain\":[\"\\u003cIPython.core.display.HTML object\\u003e\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"data\":{\"text/html\":[\"      \\n\",\"        \\u003cdiv id='bertviz-cc7b8cf4d43a4e4eb6c485f2c5030b2a'\\u003e\\n\",\"            \\u003cspan style=\\\"user-select:none\\\"\\u003e\\n\",\"                Layer: \\u003cselect id=\\\"layer\\\"\\u003e\\u003c/select\\u003e\\n\",\"                \\n\",\"            \\u003c/span\\u003e\\n\",\"            \\u003cdiv id='vis'\\u003e\\u003c/div\\u003e\\n\",\"        \\u003c/div\\u003e\\n\",\"    \"],\"text/plain\":[\"\\u003cIPython.core.display.HTML object\\u003e\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"data\":{\"application/javascript\":[\"/**\\n\",\" * @fileoverview Transformer Visualization D3 javascript code.\\n\",\" *\\n\",\" *\\n\",\" *  Based on: https://github.com/tensorflow/tensor2tensor/blob/master/tensor2tensor/visualization/attention.js\\n\",\" *\\n\",\" * Change log:\\n\",\" *\\n\",\" * 12/19/18  Jesse Vig   Assorted cleanup. Changed orientation of attention matrices.\\n\",\" * 12/29/20  Jesse Vig   Significant refactor.\\n\",\" * 12/31/20  Jesse Vig   Support multiple visualizations in single notebook.\\n\",\" * 02/06/21  Jesse Vig   Move require config from separate jupyter notebook step\\n\",\" * 05/03/21  Jesse Vig   Adjust height of visualization dynamically\\n\",\" **/\\n\",\"\\n\",\"require.config({\\n\",\"  paths: {\\n\",\"      d3: '//cdnjs.cloudflare.com/ajax/libs/d3/5.7.0/d3.min',\\n\",\"    jquery: '//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min',\\n\",\"  }\\n\",\"});\\n\",\"\\n\",\"requirejs(['jquery', 'd3'], function ($, d3) {\\n\",\"\\n\",\"    const params = {\\\"attention\\\": [{\\\"name\\\": null, \\\"attn\\\": [[[[0.15172983705997467, 0.03602192923426628, 0.011519229970872402, 0.009708438068628311, 0.5201394557952881, 0.039401836693286896, 0.003433539066463709, 0.0027151210233569145, 0.007104034069925547, 0.00439362833276391, 0.005179014056921005, 0.004345869179815054, 0.0039680334739387035, 0.00530265225097537, 0.004778829403221607, 0.17823965847492218, 0.012018831446766853], [0.11166922003030777, 0.15655943751335144, 0.085210882127285, 0.10402354598045349, 0.06748230755329132, 0.22707705199718475, 0.010417472571134567, 0.015098965726792812, 0.012959935702383518, 0.01873954012989998, 0.013064381666481495, 0.01866372674703598, 0.02187994308769703, 0.02812267653644085, 0.03659956157207489, 0.017718659713864326, 0.054712627083063126], [0.0639045238494873, 0.0697217583656311, 0.07830429077148438, 0.15965399146080017, 0.050683580338954926, 0.11817971616983414, 0.111325703561306, 0.037369582802057266, 0.026879049837589264, 0.05813305079936981, 0.06866567581892014, 0.030368594452738762, 0.03219826892018318, 0.009078938513994217, 0.025183146819472313, 0.019907809793949127, 0.0404423326253891], [0.04552620276808739, 0.11023679375648499, 0.07139045000076294, 0.1157238557934761, 0.06706351786851883, 0.12181930243968964, 0.07223758846521378, 0.029046904295682907, 0.040109213441610336, 0.041717369109392166, 0.03663429990410805, 0.038344189524650574, 0.042676955461502075, 0.05530094727873802, 0.028757749125361443, 0.03481002151966095, 0.04860463738441467], [0.02762548066675663, 0.05650839954614639, 0.19846564531326294, 0.042319584637880325, 0.043236006051301956, 0.06057378649711609, 0.10042395442724228, 0.10647526383399963, 0.04519549757242203, 0.034532636404037476, 0.06573418527841568, 0.06638502329587936, 0.0567871555685997, 0.015643347054719925, 0.025967467576265335, 0.02336244285106659, 0.030764026567339897], [0.1430010050535202, 0.027588024735450745, 0.03995853289961815, 0.023522619158029556, 0.46037939190864563, 0.05051485076546669, 0.010643431916832924, 0.013098734430968761, 0.01328170858323574, 0.008960164152085781, 0.011160259135067463, 0.009600001387298107, 0.009130970574915409, 0.005839348770678043, 0.008544521406292915, 0.15099503099918365, 0.013781429268419743], [0.006188470404595137, 0.016947375610470772, 0.06570493429899216, 0.012776965275406837, 0.006801693234592676, 0.008493772707879543, 0.08893860131502151, 0.09780513495206833, 0.11793307960033417, 0.10863890498876572, 0.1067320704460144, 0.14459553360939026, 0.11397190392017365, 0.013504608534276485, 0.042676009237766266, 0.016353411599993706, 0.03193755820393562], [0.02195589989423752, 0.010027516633272171, 0.023449180647730827, 0.007160264998674393, 0.018338052555918694, 0.026086095720529556, 0.2658236622810364, 0.07322491705417633, 0.08309534937143326, 0.08246459811925888, 0.07888951152563095, 0.06710385531187057, 0.047608423978090286, 0.04059827700257301, 0.026896467432379723, 0.04158347100019455, 0.08569449931383133], [0.02820672281086445, 0.008694577030837536, 0.037267863750457764, 0.009319874458014965, 0.02354484051465988, 0.02574782446026802, 0.20663191378116608, 0.10144655406475067, 0.060880597680807114, 0.05715969577431679, 0.0994875505566597, 0.1058533787727356, 0.062161147594451904, 0.02091745287179947, 0.036712367087602615, 0.0450543649494648, 0.07091327756643295], [0.01247900165617466, 0.009786446578800678, 0.04010119289159775, 0.02490730956196785, 0.010473011061549187, 0.03205065429210663, 0.19481593370437622, 0.11076943576335907, 0.07567861676216125, 0.027317717671394348, 0.07861822843551636, 0.10401590913534164, 0.08521135151386261, 0.03817230835556984, 0.048578690737485886, 0.022820742800831795, 0.08420345187187195], [0.01660824753344059, 0.017344631254673004, 0.07684152573347092, 0.013052196241915226, 0.011258699931204319, 0.02498471923172474, 0.2306169867515564, 0.09502951800823212, 0.054061129689216614, 0.06603126972913742, 0.04215690866112709, 0.13671469688415527, 0.06342019140720367, 0.02712908945977688, 0.05118886008858681, 0.019796699285507202, 0.05376468226313591], [0.0259944386780262, 0.01334423292428255, 0.024478618055582047, 0.026071378961205482, 0.013537050224840641, 0.02221490815281868, 0.1993635594844818, 0.08340154588222504, 0.07452157139778137, 0.11707975715398788, 0.08825168013572693, 0.06273528188467026, 0.059962525963783264, 0.02503855526447296, 0.05056324973702431, 0.03620854765176773, 0.07723302394151688], [0.029448624700307846, 0.023408232256770134, 0.028921766206622124, 0.027036651968955994, 0.014881089329719543, 0.022565018385648727, 0.18095636367797852, 0.13240697979927063, 0.059318989515304565, 0.10950278490781784, 0.08143047988414764, 0.07039877027273178, 0.028852811083197594, 0.026988761499524117, 0.04583051800727844, 0.036206088960170746, 0.08184603601694107], [0.044679757207632065, 0.03142041340470314, 0.0064611840061843395, 0.02344466745853424, 0.009687481448054314, 0.040563929826021194, 0.045802466571331024, 0.03978283330798149, 0.039647456258535385, 0.0916033461689949, 0.07849393784999847, 0.03234991058707237, 0.04045935347676277, 0.15572752058506012, 0.08853317052125931, 0.03836170583963394, 0.1929807960987091], [0.017825789749622345, 0.010381723754107952, 0.03195717930793762, 0.007078188471496105, 0.013292069546878338, 0.02857375331223011, 0.08835947513580322, 0.12844055891036987, 0.10492540150880814, 0.04139178618788719, 0.1204717829823494, 0.09044390916824341, 0.06557557731866837, 0.059024859219789505, 0.026393795385956764, 0.04227832332253456, 0.12358573824167252], [0.014191350899636745, 0.011106867343187332, 0.05571374669671059, 0.007777968887239695, 0.012786926701664925, 0.021780548617243767, 0.1520397812128067, 0.1414688378572464, 0.07390046119689941, 0.04343872144818306, 0.0977506935596466, 0.12619714438915253, 0.09768674522638321, 0.02325073815882206, 0.0289755929261446, 0.026415375992655754, 0.06551854312419891], [0.14314155280590057, 0.006840723101049662, 0.013977890834212303, 0.004337796010077, 0.2004075050354004, 0.023475002497434616, 0.02142065204679966, 0.02684691920876503, 0.03115285560488701, 0.015918470919132233, 0.02356852777302265, 0.029545804485678673, 0.022664353251457214, 0.0149063840508461, 0.01888420432806015, 0.3543573021888733, 0.048554159700870514]], [[0.046507660299539566, 0.02191055752336979, 0.015883080661296844, 0.03996896743774414, 0.009900772012770176, 0.030054301023483276, 0.11451416462659836, 0.01791187934577465, 0.04524122178554535, 0.06824879348278046, 0.0872175544500351, 0.060051847249269485, 0.09105469286441803, 0.08289248496294022, 0.07816328853368759, 0.03000182844698429, 0.1604768931865692], [0.18249541521072388, 0.00528589216992259, 0.04165491834282875, 0.10165663063526154, 0.08287683129310608, 0.20110855996608734, 0.03756623715162277, 0.022864121943712234, 0.022745909169316292, 0.033622484654188156, 0.02538977563381195, 0.022242194041609764, 0.031169816851615906, 0.027557028457522392, 0.027529066428542137, 0.052030377089977264, 0.08220469206571579], [0.1607489287853241, 0.07040300220251083, 0.09801826626062393, 0.013637891039252281, 0.020654160529375076, 0.16276966035366058, 0.004876517225056887, 0.03344699367880821, 0.0508270189166069, 0.011766438372433186, 0.026778703555464745, 0.11008089035749435, 0.05688396841287613, 0.035413697361946106, 0.043356187641620636, 0.022234182804822922, 0.07810349762439728], [0.10532896965742111, 0.06892083585262299, 0.03895149752497673, 0.0018750863382592797, 0.04017641022801399, 0.1982523649930954, 0.01955670863389969, 0.018712038174271584, 0.030016474425792694, 0.017138946801424026, 0.02672896906733513, 0.03792289271950722, 0.027595527470111847, 0.21758531033992767, 0.04711436852812767, 0.029367154464125633, 0.07475635409355164], [0.0964968353509903, 0.04565321281552315, 0.04463181644678116, 0.04678975045681, 0.11913944780826569, 0.1733878254890442, 0.022867601364850998, 0.015372692607343197, 0.02858438529074192, 0.02311592921614647, 0.025439536198973656, 0.03103160299360752, 0.04111884906888008, 0.02158229611814022, 0.0272016953676939, 0.10796493291854858, 0.12962162494659424], [0.13985924422740936, 0.055597614496946335, 0.0696016177535057, 0.06336763501167297, 0.04512467235326767, 0.1691349595785141, 0.03789302334189415, 0.01983051933348179, 0.03535506874322891, 0.02937369979918003, 0.03717808797955513, 0.046440668404102325, 0.04833747819066048, 0.04548201337456703, 0.0314766988158226, 0.03584878519177437, 0.0900982916355133], [0.13597960770130157, 0.08111611008644104, 0.029340244829654694, 0.018090708181262016, 0.045430224388837814, 0.12326869368553162, 0.005117869004607201, 0.0433269627392292, 0.061312831938266754, 0.03088008239865303, 0.02436848357319832, 0.04036809504032135, 0.047143902629613876, 0.03482392802834511, 0.043732900172472, 0.06495647132396698, 0.1707429438829422], [0.18423523008823395, 0.09899182617664337, 0.0213018748909235, 0.014017406851053238, 0.028807956725358963, 0.16591353714466095, 0.01246761716902256, 0.008142043836414814, 0.041308723390102386, 0.022500423714518547, 0.02498832531273365, 0.03151017054915428, 0.037040989845991135, 0.0657428503036499, 0.03044399432837963, 0.043235041201114655, 0.16935203969478607], [0.18798446655273438, 0.031955935060977936, 0.04524629935622215, 0.016354287043213844, 0.02328665740787983, 0.11794894933700562, 0.02542962320148945, 0.03893161937594414, 0.05935463309288025, 0.03805561363697052, 0.03268374502658844, 0.06688456237316132, 0.0466805174946785, 0.031513795256614685, 0.08520397543907166, 0.035553909838199615, 0.11693137884140015], [0.08564174175262451, 0.053652916103601456, 0.026421118527650833, 0.034263089299201965, 0.013434607535600662, 0.17532460391521454, 0.03320932760834694, 0.02782122790813446, 0.05141621083021164, 0.0048033627681434155, 0.033586371690034866, 0.031075015664100647, 0.0425683856010437, 0.030267659574747086, 0.03213616460561752, 0.018521016463637352, 0.3058571517467499], [0.18621373176574707, 0.03089320659637451, 0.026003779843449593, 0.03008127212524414, 0.021619800478219986, 0.1390073001384735, 0.025842461735010147, 0.03310554474592209, 0.06470513343811035, 0.025242557749152184, 0.02501112036406994, 0.03916361555457115, 0.0510932020843029, 0.033722322434186935, 0.04671904817223549, 0.03676930442452431, 0.18480663001537323], [0.1465671956539154, 0.036999017000198364, 0.0625590905547142, 0.01033049263060093, 0.013968157581984997, 0.11057520657777786, 0.008678074926137924, 0.03310929983854294, 0.0641762986779213, 0.017295053228735924, 0.03285762667655945, 0.12949813902378082, 0.07665302604436874, 0.03441951051354408, 0.056940607726573944, 0.028316762298345566, 0.13705646991729736], [0.17547136545181274, 0.05996030941605568, 0.04468837007880211, 0.018037989735603333, 0.020580561831593513, 0.12783898413181305, 0.018151208758354187, 0.06111655384302139, 0.07276168465614319, 0.028605081140995026, 0.02280060574412346, 0.06253888458013535, 0.018605975434184074, 0.02368944138288498, 0.03742364048957825, 0.03346725180745125, 0.17426206171512604], [0.3223859965801239, 0.03271264210343361, 0.017399827018380165, 0.04920370131731033, 0.03222552686929703, 0.17234139144420624, 0.028334390372037888, 0.0212506465613842, 0.0332934595644474, 0.020200077444314957, 0.02823316678404808, 0.027051668614149094, 0.029492558911442757, 0.0020407575648278, 0.008907157927751541, 0.04866462200880051, 0.1262623816728592], [0.11618609726428986, 0.034975044429302216, 0.03836800530552864, 0.02985098958015442, 0.02463388629257679, 0.22005058825016022, 0.05025310814380646, 0.010841788724064827, 0.03445679321885109, 0.016473015770316124, 0.026720253750681877, 0.0383351668715477, 0.040983010083436966, 0.017477601766586304, 0.005592206958681345, 0.03507698327302933, 0.2597254514694214], [0.08956278860569, 0.03471346199512482, 0.029264943674206734, 0.030021242797374725, 0.09639254212379456, 0.1269408017396927, 0.029759123921394348, 0.020398443564772606, 0.03607820346951485, 0.028274307027459145, 0.028503336012363434, 0.034946225583553314, 0.049447860568761826, 0.023315005004405975, 0.03642859682440758, 0.1317785084247589, 0.17417456209659576], [0.1296796202659607, 0.04061632603406906, 0.04563290625810623, 0.03732740879058838, 0.03049679845571518, 0.13418199121952057, 0.05059042200446129, 0.021518487483263016, 0.04610989987850189, 0.029633181169629097, 0.03904658555984497, 0.0577310211956501, 0.06226278841495514, 0.0452558770775795, 0.0446174293756485, 0.04693031683564186, 0.13836897909641266]], [[0.018831845372915268, 0.004736183676868677, 0.005442861933261156, 0.000735588779207319, 0.09333330392837524, 0.025406569242477417, 0.017140189185738564, 0.024049926549196243, 0.012182410806417465, 0.011662151664495468, 0.042329274117946625, 0.036789800971746445, 0.03892641142010689, 0.0296642929315567, 0.027834003791213036, 0.3790564239025116, 0.23187889158725739], [0.2936165928840637, 0.09433145076036453, 0.06504497677087784, 0.1301838904619217, 0.051823314279317856, 0.1481350064277649, 0.00958621222525835, 0.017842864617705345, 0.012296803295612335, 0.04596104472875595, 0.01327743474394083, 0.011832259595394135, 0.021999822929501534, 0.02378777414560318, 0.014063704758882523, 0.015279155224561691, 0.030937695875763893], [0.11107639223337173, 0.13906823098659515, 0.06190045550465584, 0.22251494228839874, 0.06695281714200974, 0.09406744688749313, 0.04424678161740303, 0.017267215996980667, 0.01576097123324871, 0.07216834276914597, 0.018140459433197975, 0.015515298582613468, 0.03229588642716408, 0.014769651927053928, 0.02991398796439171, 0.023406900465488434, 0.020934246480464935], [0.19079723954200745, 0.09425482898950577, 0.10892703384160995, 0.16426384449005127, 0.10277498513460159, 0.1579437255859375, 0.019285593181848526, 0.008044099435210228, 0.011323319748044014, 0.024154961109161377, 0.012115134857594967, 0.018770815804600716, 0.022431204095482826, 0.007011867593973875, 0.010722610168159008, 0.024775976315140724, 0.022402696311473846], [0.175317645072937, 0.03871984779834747, 0.02949196845293045, 0.037185680121183395, 0.215867280960083, 0.12759672105312347, 0.008665617555379868, 0.01697557605803013, 0.013135290704667568, 0.01997368596494198, 0.02383860945701599, 0.016092780977487564, 0.024618515744805336, 0.011834541335701942, 0.06274130940437317, 0.1244683712720871, 0.05347650125622749], [0.14893117547035217, 0.01706712692975998, 0.03871823102235794, 0.02139931358397007, 0.42078638076782227, 0.07447496056556702, 0.009513402357697487, 0.010475722141563892, 0.007996272295713425, 0.010005953721702099, 0.01565241441130638, 0.013907591812312603, 0.02115902304649353, 0.007010628469288349, 0.007234632503241301, 0.15585248172283173, 0.019814709201455116], [0.01580856554210186, 0.0203571617603302, 0.010134493000805378, 0.05432276427745819, 0.006021759007126093, 0.017976487055420876, 0.08052720874547958, 0.021958494558930397, 0.015966957435011864, 0.46530553698539734, 0.027355721220374107, 0.03324475511908531, 0.06291308254003525, 0.022438958287239075, 0.07166015356779099, 0.019043514505028725, 0.05496444180607796], [0.023407433182001114, 0.03728877380490303, 0.021540286019444466, 0.1190146878361702, 0.014427329413592815, 0.016145458444952965, 0.17134825885295868, 0.0305094625800848, 0.022668669000267982, 0.20528820157051086, 0.06365516781806946, 0.04956831410527229, 0.04174923524260521, 0.03670331463217735, 0.07499846071004868, 0.03656122088432312, 0.03512564301490784], [0.043676119297742844, 0.012691516429185867, 0.03990607708692551, 0.03595038875937462, 0.044383399188518524, 0.03674837201833725, 0.09794873744249344, 0.02121439203619957, 0.023672716692090034, 0.0985921323299408, 0.051807235926389694, 0.09752828627824783, 0.09628051519393921, 0.02852017618715763, 0.07838697731494904, 0.10614487528800964, 0.08654813468456268], [0.06923000514507294, 0.010032872669398785, 0.015056343749165535, 0.009506461210548878, 0.041144415736198425, 0.07332136482000351, 0.09276678413152695, 0.017311913892626762, 0.02708170935511589, 0.02204502560198307, 0.052585966885089874, 0.04553552344441414, 0.09165069460868835, 0.03750501945614815, 0.02647843025624752, 0.10912682861089706, 0.2596205174922943], [0.04658333584666252, 0.023817330598831177, 0.02588820829987526, 0.052182573825120926, 0.020490484312176704, 0.022065825760364532, 0.16341176629066467, 0.03860262408852577, 0.03643636777997017, 0.19014877080917358, 0.0336809903383255, 0.07629527896642685, 0.07203620672225952, 0.02746056579053402, 0.0470186248421669, 0.06206895411014557, 0.06181207299232483], [0.05666286125779152, 0.024739157408475876, 0.014760748483240604, 0.0339224599301815, 0.02248079888522625, 0.024661554023623466, 0.12890802323818207, 0.03852437436580658, 0.036454908549785614, 0.21976353228092194, 0.035975705832242966, 0.03747959062457085, 0.06270486116409302, 0.03652512654662132, 0.09809992462396622, 0.055251818150281906, 0.07308457791805267], [0.06662280112504959, 0.010277745313942432, 0.01562422327697277, 0.01353770587593317, 0.028486521914601326, 0.04629530757665634, 0.11029106378555298, 0.023671913892030716, 0.028479263186454773, 0.14740148186683655, 0.03645043820142746, 0.05129881575703621, 0.024572713300585747, 0.053838081657886505, 0.13654668629169464, 0.0749688521027565, 0.13163623213768005], [0.024201825261116028, 0.07003425806760788, 0.0333748422563076, 0.04280366748571396, 0.030523566529154778, 0.027497071772813797, 0.028364980593323708, 0.030623335391283035, 0.03612260892987251, 0.2119935303926468, 0.03046117164194584, 0.056622669100761414, 0.05015914514660835, 0.11630487442016602, 0.0881982296705246, 0.05883415788412094, 0.06387994438409805], [0.0328550860285759, 0.05941334366798401, 0.008655448444187641, 0.021845465525984764, 0.024286191910505295, 0.019966766238212585, 0.056222233921289444, 0.0459485724568367, 0.042055945843458176, 0.11709640175104141, 0.03796544671058655, 0.026037421077489853, 0.03131373971700668, 0.09508852660655975, 0.24900314211845398, 0.06874523311853409, 0.06350108236074448], [0.06976195424795151, 0.010884666815400124, 0.008944093249738216, 0.007829769514501095, 0.08297999948263168, 0.03447351232171059, 0.02603333815932274, 0.029648277908563614, 0.026699023321270943, 0.052135903388261795, 0.04130580648779869, 0.03516894206404686, 0.04461676999926567, 0.024241026490926743, 0.12175359576940536, 0.2492116242647171, 0.13431163132190704], [0.09649966657161713, 0.0029907855205237865, 0.009061957709491253, 0.0038765864446759224, 0.15883465111255646, 0.020066147670149803, 0.02898135595023632, 0.02160181850194931, 0.020815808326005936, 0.028348954394459724, 0.03033929131925106, 0.033541541546583176, 0.0353727713227272, 0.022646700963377953, 0.021519554778933525, 0.40827763080596924, 0.05722476914525032]], [[0.03762385621666908, 0.00321191200055182, 0.0020067195873707533, 0.0015656303148716688, 0.5348219275474548, 0.033240124583244324, 0.0015513271791860461, 0.0016331785591319203, 0.0030143868643790483, 0.0011729395482689142, 0.0020486144348978996, 0.00205893418751657, 0.0015008716145530343, 0.0022200788371264935, 0.0028636413626372814, 0.34614890813827515, 0.023316936567425728], [0.03251032903790474, 0.1435871124267578, 0.11019901186227798, 0.2490484118461609, 0.04118241369724274, 0.08373666554689407, 0.03391548618674278, 0.03425953537225723, 0.023543622344732285, 0.04412907361984253, 0.024379653856158257, 0.041362032294273376, 0.01720701903104782, 0.05692378431558609, 0.030059456825256348, 0.015712207183241844, 0.01824418269097805], [0.028876565396785736, 0.052271705120801926, 0.05051072686910629, 0.27080291509628296, 0.03923778235912323, 0.09244842827320099, 0.0765800029039383, 0.024461019784212112, 0.01750948466360569, 0.07376627624034882, 0.032293159514665604, 0.01977558806538582, 0.06432618945837021, 0.04040783271193504, 0.08118205517530441, 0.015201709233224392, 0.02034863457083702], [0.024892916902899742, 0.1515081375837326, 0.10384903848171234, 0.20982113480567932, 0.032649289816617966, 0.1585417240858078, 0.04095492884516716, 0.015605413354933262, 0.01606770232319832, 0.0517570897936821, 0.020059697329998016, 0.029866212978959084, 0.03778328374028206, 0.0239137951284647, 0.05277583375573158, 0.009259340353310108, 0.020694484934210777], [0.1695827841758728, 0.03151141107082367, 0.036384083330631256, 0.0161871500313282, 0.17089995741844177, 0.2632284462451935, 0.016890497878193855, 0.01857987977564335, 0.019261324778199196, 0.011038525030016899, 0.01785021647810936, 0.016353197395801544, 0.011410134844481945, 0.014987259171903133, 0.022887105122208595, 0.07266654819250107, 0.09028144925832748], [0.06200914829969406, 0.011132774874567986, 0.01019221544265747, 0.010860116221010685, 0.5155831575393677, 0.09008637070655823, 0.004156305454671383, 0.004022016655653715, 0.007973875850439072, 0.003890010993927717, 0.005363801494240761, 0.004262626636773348, 0.0050575933419167995, 0.005745577625930309, 0.008030876517295837, 0.21527966856956482, 0.03635389730334282], [0.0037288987077772617, 0.008785329759120941, 0.01808963716030121, 0.023385757580399513, 0.011148317717015743, 0.01384634617716074, 0.07657229900360107, 0.057390715926885605, 0.0747787207365036, 0.13338623940944672, 0.05696526914834976, 0.09613747149705887, 0.0993281751871109, 0.052537377923727036, 0.14795400202274323, 0.04441911354660988, 0.08154639601707458], [0.0025443686172366142, 0.017277130857110023, 0.01782327890396118, 0.017148306593298912, 0.010758239775896072, 0.010843385010957718, 0.16482014954090118, 0.02511817403137684, 0.04805496707558632, 0.22187046706676483, 0.04292800650000572, 0.0729229599237442, 0.06481342017650604, 0.06355906277894974, 0.1646978259086609, 0.028502188622951508, 0.026318123564124107], [0.004070003516972065, 0.01297621801495552, 0.01642422564327717, 0.032223865389823914, 0.010156270116567612, 0.014474478550255299, 0.09860796481370926, 0.04039570316672325, 0.021504033356904984, 0.26130354404449463, 0.05184362456202507, 0.05138424411416054, 0.08083730190992355, 0.0533343181014061, 0.19163182377815247, 0.025833988562226295, 0.03299843147397041], [0.0039696283638477325, 0.005423189606517553, 0.020749526098370552, 0.022000379860401154, 0.007914653047919273, 0.01669592782855034, 0.17298761010169983, 0.060635827481746674, 0.0843832790851593, 0.035770632326602936, 0.08762520551681519, 0.10159791260957718, 0.12474320828914642, 0.09598910808563232, 0.08218750357627869, 0.02648160792887211, 0.05084480345249176], [0.007642349228262901, 0.011725886724889278, 0.020625464618206024, 0.020534122362732887, 0.009496109560132027, 0.016767073422670364, 0.08806759119033813, 0.06262700259685516, 0.059616927057504654, 0.15557248890399933, 0.037479884922504425, 0.058298509567976, 0.0795147493481636, 0.1250847429037094, 0.1601475179195404, 0.03298686072230339, 0.05381273478269577], [0.0073730796575546265, 0.010757231153547764, 0.010796558111906052, 0.04863906651735306, 0.013325363397598267, 0.01481545064598322, 0.12231035530567169, 0.0412149615585804, 0.04093053564429283, 0.15917064249515533, 0.04534910246729851, 0.027685848996043205, 0.08584976196289062, 0.09747002273797989, 0.19481997191905975, 0.03864404931664467, 0.040848083794116974], [0.004130837507545948, 0.006830497644841671, 0.01563093438744545, 0.031070221215486526, 0.004315874073654413, 0.011302887462079525, 0.08881731331348419, 0.03582356497645378, 0.04844148829579353, 0.2349911481142044, 0.08700524270534515, 0.05324370414018631, 0.03660034015774727, 0.09624025225639343, 0.1844910830259323, 0.015651410445570946, 0.04541315883398056], [0.0059278602711856365, 0.04524882882833481, 0.01219371147453785, 0.09400496631860733, 0.005501487758010626, 0.01159763429313898, 0.09484226256608963, 0.061780963093042374, 0.035890355706214905, 0.18782781064510345, 0.07052528113126755, 0.05172702670097351, 0.0514364093542099, 0.10617047548294067, 0.11018475145101547, 0.015752045437693596, 0.03938819840550423], [0.005035032983869314, 0.014728805050253868, 0.027420829981565475, 0.030734917148947716, 0.012757380492985249, 0.017670931294560432, 0.12358426302671432, 0.07304581999778748, 0.07758408784866333, 0.09346292167901993, 0.08929935097694397, 0.10644778609275818, 0.07074858993291855, 0.1154966950416565, 0.05282822623848915, 0.037626057863235474, 0.05152827128767967], [0.08645294606685638, 0.012293098494410515, 0.014321533031761646, 0.005678038112819195, 0.0763595849275589, 0.1114368587732315, 0.03480837121605873, 0.03989862650632858, 0.03714438155293465, 0.024815691635012627, 0.031051646918058395, 0.04342411831021309, 0.02816867083311081, 0.034999579191207886, 0.054370347410440445, 0.1354525089263916, 0.22932401299476624], [0.02338925004005432, 0.0028729839250445366, 0.0028860101010650396, 0.0019887839443981647, 0.1864917278289795, 0.022322332486510277, 0.010623596608638763, 0.009286019019782543, 0.017365694046020508, 0.00848508533090353, 0.008857591077685356, 0.012607209384441376, 0.011632679030299187, 0.02242579497396946, 0.02132517658174038, 0.555998682975769, 0.08144135773181915]], [[0.1609298288822174, 0.003043812932446599, 0.03367576748132706, 0.004422726109623909, 8.699268619238865e-06, 0.1746368259191513, 0.01402330957353115, 0.01794847659766674, 0.049122683703899384, 0.007347594015300274, 0.0333673357963562, 0.04679480940103531, 0.030069582164287567, 0.0038837511092424393, 0.02782531827688217, 1.5841147614992224e-05, 0.39288368821144104], [0.3449762463569641, 0.06360480934381485, 0.003510260721668601, 0.0009000989375635982, 0.0014900385867804289, 0.027130212634801865, 0.0029501751996576786, 0.010734280571341515, 0.015009991824626923, 0.02154526859521866, 0.04359111934900284, 0.020425476133823395, 0.015687106177210808, 0.01157259289175272, 0.05543643608689308, 0.012257802300155163, 0.3491780459880829], [0.07943598926067352, 0.00025407629436813295, 0.06936480104923248, 0.0009103361517190933, 0.001612871652469039, 0.04357754439115524, 0.006287519820034504, 0.009923843666911125, 0.011757533065974712, 0.004443683195859194, 0.027126651257276535, 0.3563913404941559, 0.07795702666044235, 0.0030427039600908756, 0.008882646448910236, 0.013891033828258514, 0.2851405143737793], [0.22717972099781036, 0.0011661050375550985, 0.006023910362273455, 0.27582916617393494, 0.006621423177421093, 0.03615117445588112, 0.004337294027209282, 0.005939411465078592, 0.005262401886284351, 0.009283525869250298, 0.026177380234003067, 0.019985904917120934, 0.021108387038111687, 0.006912027485668659, 0.017675083130598068, 0.021175876259803772, 0.3091711699962616], [0.22022198140621185, 0.00461805472150445, 0.029737727716565132, 0.0036813952028751373, 0.009590341709554195, 0.050817251205444336, 0.009897890500724316, 0.021528013050556183, 0.025357963517308235, 0.008806790225207806, 0.03166366368532181, 0.06033097952604294, 0.04398854821920395, 0.009948691353201866, 0.07095380127429962, 0.05688805505633354, 0.3419688642024994], [0.1582595258951187, 0.00023332623823080212, 0.012163342908024788, 0.0005947747849859297, 4.665264714276418e-05, 0.02479865588247776, 0.0021681124344468117, 0.0028823032043874264, 0.0092984763905406, 0.0024512852542102337, 0.008881053887307644, 0.020260360091924667, 0.014255862683057785, 0.001573481597006321, 0.043085694313049316, 0.00038292090175673366, 0.6986642479896545], [0.10843424499034882, 0.007926956750452518, 0.10260338336229324, 0.00793391466140747, 0.015276341699063778, 0.039631299674510956, 0.06491529196500778, 0.01588386297225952, 0.02831633761525154, 0.02875853143632412, 0.028558744117617607, 0.07638195157051086, 0.011555800214409828, 0.006477282382547855, 0.035178374499082565, 0.08517278730869293, 0.33699479699134827], [0.201528400182724, 0.002654672134667635, 0.06937649846076965, 0.004302474204450846, 0.007294494658708572, 0.051841940730810165, 0.011685499921441078, 0.19593209028244019, 0.019542859867215157, 0.009130376391112804, 0.024051720276474953, 0.036998167634010315, 0.021236779168248177, 0.0017838653875514865, 0.021575016900897026, 0.008518259972333908, 0.31254681944847107], [0.2209579348564148, 0.008786844089627266, 0.10344844311475754, 0.008602423593401909, 0.011727712117135525, 0.11460591107606888, 0.013933890499174595, 0.013446804136037827, 0.06312834471464157, 0.015085403807461262, 0.0149100162088871, 0.05327305570244789, 0.01847497560083866, 0.004982305224984884, 0.025903400033712387, 0.023330669850111008, 0.285401850938797], [0.18335165083408356, 0.009629160165786743, 0.03852219507098198, 0.013866591267287731, 0.019498225301504135, 0.0891878679394722, 0.01629408821463585, 0.008231673389673233, 0.012362359091639519, 0.30955564975738525, 0.02666918933391571, 0.026195941492915154, 0.01754523254930973, 0.0038484830874949694, 0.02124636247754097, 0.020224997773766518, 0.1837703138589859], [0.23764453828334808, 0.012974957004189491, 0.14719773828983307, 0.007784868124872446, 0.008900590240955353, 0.19048376381397247, 0.02663537859916687, 0.019484205171465874, 0.014252797700464725, 0.013720939867198467, 0.030321644619107246, 0.04503634572029114, 0.007979256100952625, 0.0028225586283951998, 0.008425958454608917, 0.010035448707640171, 0.21629899740219116], [0.08069699257612228, 0.002481175819411874, 0.6208580732345581, 0.009079310111701488, 0.005389392841607332, 0.076943539083004, 0.015094175934791565, 0.008967343717813492, 0.017165064811706543, 0.0017010648734867573, 0.008382455445826054, 0.06902109086513519, 0.017655937001109123, 0.0004692765942309052, 0.0014786524698138237, 0.003859354183077812, 0.06075702980160713], [0.20833832025527954, 0.0039779688231647015, 0.3046853244304657, 0.01136328186839819, 0.01576707325875759, 0.10951043665409088, 0.00827191211283207, 0.008640781044960022, 0.029210256412625313, 0.0041164737194776535, 0.011571613140404224, 0.035416118800640106, 0.13028238713741302, 0.001005066093057394, 0.01000331249088049, 0.010144026018679142, 0.09769559651613235], [0.2467965930700302, 0.036953624337911606, 0.05206453427672386, 0.05278768017888069, 0.03825768083333969, 0.15885783731937408, 0.008095384575426579, 0.011507561430335045, 0.022813087329268456, 0.008958281949162483, 0.018067514523863792, 0.007838943041861057, 0.005407370626926422, 0.26670902967453003, 0.017916304990649223, 0.007265922613441944, 0.03970273956656456], [0.3394536077976227, 0.02775482088327408, 0.02474324032664299, 0.0197269469499588, 0.014756614342331886, 0.296110600233078, 0.002174247056245804, 0.011205794289708138, 0.006676697637885809, 0.008407563902437687, 0.00471988320350647, 0.0035121170803904533, 0.001568118343129754, 0.0024724428076297045, 0.20286433398723602, 0.00263351877219975, 0.03121950663626194], [0.21074943244457245, 0.02831156551837921, 0.12386160343885422, 0.02455630898475647, 0.04571367800235748, 0.290202796459198, 0.04257974028587341, 0.04950686916708946, 0.03064301796257496, 0.008183978497982025, 0.02388271875679493, 0.02459065429866314, 0.011663787998259068, 0.002575117629021406, 0.0057104043662548065, 0.008444299921393394, 0.06882399320602417], [0.1822473406791687, 0.0065779294818639755, 0.059092093259096146, 0.010815920308232307, 0.00014993372315075248, 0.6104812622070312, 0.01741119660437107, 0.01880211941897869, 0.017779983580112457, 0.002604505978524685, 0.010620325803756714, 0.013428875245153904, 0.004361660219728947, 0.0007319723372347653, 0.0017949312459677458, 4.056773104821332e-05, 0.043059367686510086]], [[0.007421984802931547, 0.0011684588389471173, 0.0010509241838008165, 0.00040545128285884857, 0.006597490515559912, 0.011590844951570034, 0.07495400309562683, 0.034165848046541214, 0.01334202941507101, 0.10790124535560608, 0.10647594183683395, 0.05997105687856674, 0.07868199050426483, 0.052621569484472275, 0.049244437366724014, 0.028154045343399048, 0.3662526309490204], [0.08006970584392548, 0.015100836753845215, 0.10940808057785034, 0.0455656461417675, 0.07643300294876099, 0.06886880844831467, 0.08943674713373184, 0.09205963462591171, 0.03712082654237747, 0.06005653366446495, 0.02542552910745144, 0.09801172465085983, 0.062240391969680786, 0.04015287756919861, 0.02368609607219696, 0.05816509202122688, 0.01819857954978943], [0.08001146465539932, 0.04730262979865074, 0.08598645031452179, 0.060123395174741745, 0.09312772750854492, 0.10497179627418518, 0.06393560022115707, 0.03935996815562248, 0.029255397617816925, 0.07138146460056305, 0.05643172934651375, 0.06825680285692215, 0.054086919873952866, 0.015397272072732449, 0.030307721346616745, 0.024090131744742393, 0.07597345858812332], [0.08388517796993256, 0.021821115165948868, 0.08175483345985413, 0.005887363106012344, 0.10792211443185806, 0.03347020596265793, 0.23761489987373352, 0.0419677309691906, 0.04117383807897568, 0.02760196663439274, 0.027906455099582672, 0.06255386769771576, 0.10990386456251144, 0.020252766087651253, 0.03247865289449692, 0.027569960802793503, 0.03623520955443382], [0.09751162678003311, 0.06624162942171097, 0.07870987057685852, 0.060738321393728256, 0.09911896288394928, 0.07690408825874329, 0.05504097416996956, 0.050554580986499786, 0.032435934990644455, 0.06537535786628723, 0.051352277398109436, 0.04985962435603142, 0.03903625160455704, 0.03823187202215195, 0.03220503777265549, 0.06594715267419815, 0.04073655232787132], [0.08476004749536514, 0.06289023160934448, 0.03968312218785286, 0.02190396562218666, 0.03478429093956947, 0.2337522804737091, 0.13731113076210022, 0.060433633625507355, 0.15772128105163574, 0.007829537615180016, 0.017805665731430054, 0.02081339992582798, 0.01864253357052803, 0.008594539016485214, 0.006002018228173256, 0.004255319479852915, 0.08281705528497696], [0.06976839154958725, 0.05714140459895134, 0.0510256253182888, 0.15290477871894836, 0.0376708097755909, 0.1326645314693451, 0.012694355100393295, 0.022427625954151154, 0.018174028024077415, 0.09650495648384094, 0.08473174273967743, 0.0353144146502018, 0.031859587877988815, 0.02106311544775963, 0.030397413298487663, 0.05359751731157303, 0.09205976873636246], [0.13796734809875488, 0.050897806882858276, 0.06651899963617325, 0.10083522647619247, 0.033234745264053345, 0.0843215137720108, 0.029963219538331032, 0.01772790215909481, 0.06489092111587524, 0.06450307369232178, 0.07147340476512909, 0.029724614694714546, 0.045766431838274, 0.016188619658350945, 0.03899581730365753, 0.032570790499448776, 0.11441947519779205], [0.14633557200431824, 0.06062446907162666, 0.11423805356025696, 0.06974271684885025, 0.05415835604071617, 0.07047758996486664, 0.06037136912345886, 0.05652545765042305, 0.03690680116415024, 0.03739888593554497, 0.03628313168883324, 0.04607004672288895, 0.04824797436594963, 0.02953026443719864, 0.05288238450884819, 0.03529557213187218, 0.04491134732961655], [0.06323285400867462, 0.01880149357020855, 0.035164739936590195, 0.020883971825242043, 0.03185970336198807, 0.17894043028354645, 0.10604889690876007, 0.06632917374372482, 0.018394872546195984, 0.10426156222820282, 0.05090728774666786, 0.0869566798210144, 0.030667269602417946, 0.06554476171731949, 0.02098427712917328, 0.03384745121002197, 0.0671745091676712], [0.14985214173793793, 0.0597832091152668, 0.0666022002696991, 0.1022019013762474, 0.0665547177195549, 0.0556541383266449, 0.03379486873745918, 0.03291168808937073, 0.05529437214136124, 0.07375066727399826, 0.04631103202700615, 0.03949807584285736, 0.043031129986047745, 0.03180588409304619, 0.03743286430835724, 0.06708544492721558, 0.038435645401477814], [0.07447855919599533, 0.04322409629821777, 0.06693495064973831, 0.04189293086528778, 0.08009736984968185, 0.13341771066188812, 0.05445902794599533, 0.03861834481358528, 0.03292150795459747, 0.0808388963341713, 0.056939058005809784, 0.06675748527050018, 0.0360071137547493, 0.02390570566058159, 0.02943541668355465, 0.026634518057107925, 0.1134372353553772], [0.09501926600933075, 0.057664308696985245, 0.08670412749052048, 0.058925896883010864, 0.051971208304166794, 0.11876069009304047, 0.045731354504823685, 0.05072307214140892, 0.02770940586924553, 0.08901292830705643, 0.04800291359424591, 0.06330209970474243, 0.025997504591941833, 0.030656764283776283, 0.03746676445007324, 0.03720702603459358, 0.07514465600252151], [0.14663413166999817, 0.04853108152747154, 0.1173289567232132, 0.06435174494981766, 0.06722000986337662, 0.10168015956878662, 0.08740461617708206, 0.045809343457221985, 0.06483855843544006, 0.0401766300201416, 0.029983356595039368, 0.04070600867271423, 0.028460875153541565, 0.0037731013726443052, 0.019807323813438416, 0.04499339684844017, 0.048300743103027344], [0.09470093995332718, 0.048779044300317764, 0.1125655397772789, 0.10838911682367325, 0.039656054228544235, 0.1271173655986786, 0.018841031938791275, 0.05453529953956604, 0.03496607765555382, 0.07713741064071655, 0.034664031118154526, 0.06190238893032074, 0.028978019952774048, 0.05602889880537987, 0.018512671813368797, 0.03445533663034439, 0.04877079650759697], [0.08467837423086166, 0.06081023067235947, 0.07648491859436035, 0.050625029951334, 0.08300060778856277, 0.06814870983362198, 0.059214234352111816, 0.05225066840648651, 0.03980962187051773, 0.06772155314683914, 0.05731727555394173, 0.049772243946790695, 0.04292188957333565, 0.042582836002111435, 0.03793783485889435, 0.07534272223711014, 0.051381319761276245], [0.06118455156683922, 0.07613909244537354, 0.02554367296397686, 0.020205624401569366, 0.01669180393218994, 0.2684347927570343, 0.1003277525305748, 0.0728878527879715, 0.19515107572078705, 0.007123895920813084, 0.015572426840662956, 0.01794428564608097, 0.01202227734029293, 0.012078833766281605, 0.005806004162877798, 0.004529992584139109, 0.08835606276988983]], [[0.028287295252084732, 0.0698222815990448, 0.045133769512176514, 0.02366785705089569, 0.06178444251418114, 0.7700672149658203, 8.194858764909441e-07, 1.3723315532843117e-05, 2.889626330215833e-06, 2.1514322270377306e-06, 1.4792078673053766e-06, 7.731345249339938e-06, 7.784280569467228e-06, 2.7985297492705286e-06, 3.2682266919437097e-06, 2.0625022443709895e-05, 0.001173884724266827], [0.13768813014030457, 0.09993322193622589, 0.07620527595281601, 0.2584827244281769, 0.19597110152244568, 0.22827395796775818, 2.7651180062093772e-05, 0.0002378604403929785, 5.13220475113485e-05, 0.00014027049473952502, 0.00015524396440014243, 0.0001364796480629593, 0.00012703335960395634, 0.00010402179759694263, 0.00011762919166358188, 0.0020352075807750225, 0.0003128750831820071], [0.1592121124267578, 0.10651865601539612, 0.06531072407960892, 0.2771109640598297, 0.13812966644763947, 0.2517062723636627, 4.535826883511618e-05, 0.00019873461860697716, 7.323885802179575e-05, 0.00024383774143643677, 0.00017490764730609953, 0.00010769984510261565, 0.000152591586811468, 6.486017082352191e-05, 6.930313975317404e-05, 0.0006799079710617661, 0.000201233007828705], [0.2038169801235199, 0.09962520748376846, 0.054884761571884155, 0.17527177929878235, 0.23206356167793274, 0.2337500900030136, 2.109283059326117e-06, 1.7430038496968336e-05, 5.603397312370362e-06, 1.1569525668164715e-05, 1.0162159014726058e-05, 1.0271804057992995e-05, 1.403069563821191e-05, 1.221428465214558e-05, 1.840550612541847e-05, 0.0004275535175111145, 5.83481669309549e-05], [0.1259297877550125, 0.12575283646583557, 0.1004192978143692, 0.314074844121933, 0.10597281903028488, 0.2226250320672989, 0.0001338288129772991, 0.0006314825732260942, 0.00020965185831300914, 0.0005085341399535537, 0.00043610186548903584, 0.00036441898555494845, 0.00038388260873034596, 0.00026899416116066277, 0.0002681608311831951, 0.0014375972095876932, 0.0005828207940794528], [0.11631685495376587, 0.11230088025331497, 0.10100062936544418, 0.2376149445772171, 0.18652477860450745, 0.24368076026439667, 4.3509779061423615e-05, 0.00031110059353522956, 6.348434544634074e-05, 9.501715248916298e-05, 9.643295197747648e-05, 0.00017121330893132836, 0.00014617065608035773, 0.0001047920377459377, 0.00013079344353172928, 0.0012095823185518384, 0.00018907402409240603], [0.0013340611476451159, 0.00035092965117655694, 0.0010746679035946727, 0.00030307398992590606, 0.0012370955664664507, 0.0004501192015595734, 0.23345209658145905, 0.05174499377608299, 0.04410255700349808, 0.13650459051132202, 0.09315455704927444, 0.0941300317645073, 0.07934694737195969, 0.07470206916332245, 0.046275366097688675, 0.08643368631601334, 0.05540308728814125], [0.0008870658348314464, 0.000961527053732425, 0.0017086422303691506, 0.00034776065149344504, 0.0020619195420295, 0.0016332356026396155, 0.21909597516059875, 0.051276665180921555, 0.04577571898698807, 0.07694392651319504, 0.04731065034866333, 0.07504266500473022, 0.0646505132317543, 0.0629989355802536, 0.06756630539894104, 0.06781595945358276, 0.21392247080802917], [0.00067844771547243, 0.00022067349345888942, 0.0007173093035817146, 0.00012839313421864063, 0.0022354167886078358, 0.00033492661896161735, 0.22806374728679657, 0.04027504473924637, 0.040528554469347, 0.12137095630168915, 0.06593477725982666, 0.09707389026880264, 0.09613900631666183, 0.026486175134778023, 0.0401652567088604, 0.17834830284118652, 0.06129905954003334], [0.0037073499988764524, 0.00048271199921146035, 0.0019422475015744567, 0.000610912567935884, 0.005724919494241476, 0.0013816438149660826, 0.07793658971786499, 0.0275648795068264, 0.030929917469620705, 0.10155194997787476, 0.08317738026380539, 0.08009537309408188, 0.06543122231960297, 0.04989606887102127, 0.05413568764925003, 0.26444345712661743, 0.15098769962787628], [0.0022354184184223413, 0.0013728045159950852, 0.0021330693271011114, 0.0008095743833109736, 0.0033970654476433992, 0.0023044005502015352, 0.18361450731754303, 0.0510188564658165, 0.04363179951906204, 0.12877406179904938, 0.08477722108364105, 0.08637722581624985, 0.06891186535358429, 0.04987504333257675, 0.06398778408765793, 0.09135107696056366, 0.1354282647371292], [0.0032944930717349052, 0.0005089478800073266, 0.0015811861958354712, 0.0005544893210753798, 0.0025830832310020924, 0.0014687628718093038, 0.22871869802474976, 0.06418902426958084, 0.06523655354976654, 0.17954450845718384, 0.11505883932113647, 0.08022797852754593, 0.07138894498348236, 0.02846665307879448, 0.03233940154314041, 0.04892987385392189, 0.07590851932764053], [0.007247602567076683, 0.0013591393362730742, 0.0036564460024237633, 0.0013643339043483138, 0.006042023655027151, 0.005641665775328875, 0.15999913215637207, 0.07832468301057816, 0.05783800408244133, 0.1806301325559616, 0.09749407321214676, 0.08585336804389954, 0.05925761163234711, 0.029017651453614235, 0.02993674762547016, 0.058019597083330154, 0.1383177489042282], [0.002075364114716649, 0.00042000942630693316, 0.0016582167008891702, 0.0004346713831182569, 0.0021505251061171293, 0.0010447779204696417, 0.22103138267993927, 0.07002107053995132, 0.048486825078725815, 0.1439545899629593, 0.09132068604230881, 0.09919736534357071, 0.06329219043254852, 0.031919702887535095, 0.05503492429852486, 0.0920560210943222, 0.0759015753865242], [0.0010499614290893078, 0.00021167962404433638, 0.000715763948392123, 0.00014401732187252492, 0.0012203885708004236, 0.00041743754991330206, 0.18408392369747162, 0.041346002370119095, 0.028975313529372215, 0.1369927078485489, 0.04919412359595299, 0.12912604212760925, 0.0767894983291626, 0.04854011908173561, 0.06065501272678375, 0.13960722088813782, 0.10093081742525101], [0.008242416195571423, 0.0027393437922000885, 0.005554396193474531, 0.0024875388480722904, 0.005791292991489172, 0.004312703851610422, 0.1765103042125702, 0.0660034716129303, 0.06198452413082123, 0.151428684592247, 0.1239396408200264, 0.09318897128105164, 0.06322647631168365, 0.04490487650036812, 0.05298185721039772, 0.05768679454922676, 0.07901673763990402], [0.002090015448629856, 0.0004917201003991067, 0.001555128488689661, 0.0003738759842235595, 0.003302093129605055, 0.0007019694894552231, 0.1822650283575058, 0.07489483803510666, 0.052951447665691376, 0.09082790464162827, 0.06613675504922867, 0.13754741847515106, 0.06538603454828262, 0.05161257088184357, 0.08788654208183289, 0.14410775899887085, 0.037869032472372055]], [[0.24287134408950806, 0.02666167914867401, 0.06433150172233582, 0.06253456324338913, 0.0024931326042860746, 0.07973232120275497, 0.02049095556139946, 0.037018824368715286, 0.03681265562772751, 0.04641186445951462, 0.03504946082830429, 0.06802459806203842, 0.062151674181222916, 0.04834902659058571, 0.05442947894334793, 0.0021573423873633146, 0.11047958582639694], [0.11579333990812302, 0.07772558927536011, 0.03781406581401825, 0.09583887457847595, 0.008115208707749844, 0.14647269248962402, 0.028901400044560432, 0.06894689053297043, 0.022904181852936745, 0.08881279081106186, 0.029464581981301308, 0.05913350358605385, 0.022146914154291153, 0.07673672586679459, 0.046174947172403336, 0.015315677970647812, 0.059702686965465546], [0.09281373023986816, 0.07253292202949524, 0.03694428503513336, 0.13094845414161682, 0.0008892604382708669, 0.12734226882457733, 0.037803083658218384, 0.08715605735778809, 0.07568534463644028, 0.04610185697674751, 0.04212505742907524, 0.03942139819264412, 0.018057702109217644, 0.07752366364002228, 0.05521261692047119, 0.0009824706939980388, 0.05845994874835014], [0.06613348424434662, 0.1036168709397316, 0.039880238473415375, 0.16221661865711212, 0.007716502528637648, 0.19508053362369537, 0.024463960900902748, 0.027327818796038628, 0.038530703634023666, 0.02653856761753559, 0.07829522341489792, 0.031903140246868134, 0.034257370978593826, 0.06774837523698807, 0.03261338546872139, 0.010510079562664032, 0.05316721275448799], [0.07947220653295517, 0.08586911857128143, 0.07837878167629242, 0.08999944478273392, 0.0015003475127741694, 0.06451795995235443, 0.07259773463010788, 0.06593125313520432, 0.07504085451364517, 0.049925606697797775, 0.06790947914123535, 0.053072527050971985, 0.04528296738862991, 0.038656845688819885, 0.06839772313833237, 0.0014219636796042323, 0.062025196850299835], [0.1529340296983719, 0.06611859798431396, 0.06996457278728485, 0.08327305316925049, 0.010720276273787022, 0.087493397295475, 0.039120741188526154, 0.056809116154909134, 0.04819120094180107, 0.07052060961723328, 0.027219286188483238, 0.0499834306538105, 0.04100921005010605, 0.05897088348865509, 0.04932635650038719, 0.006548062898218632, 0.08179713040590286], [0.2975449860095978, 0.07722456753253937, 0.06491907685995102, 0.0333617739379406, 0.006418182048946619, 0.055604204535484314, 0.036519844084978104, 0.019603220745921135, 0.013089875690639019, 0.08259864151477814, 0.011420919559895992, 0.03504713252186775, 0.03774169459939003, 0.03116714395582676, 0.06588086485862732, 0.00488357525318861, 0.12697429955005646], [0.09486074000597, 0.06539835035800934, 0.08310970664024353, 0.11234379559755325, 0.0009810627670958638, 0.044188156723976135, 0.03507964685559273, 0.06756540387868881, 0.10750151425600052, 0.03338032588362694, 0.0660896822810173, 0.05684911087155342, 0.049367401748895645, 0.05687025934457779, 0.07460073381662369, 0.0011132254730910063, 0.05070089176297188], [0.06519456952810287, 0.04054265096783638, 0.03666675463318825, 0.12396613508462906, 0.0010886534582823515, 0.07873132079839706, 0.025599123910069466, 0.10021965950727463, 0.07805777341127396, 0.030578315258026123, 0.11037652939558029, 0.07630310952663422, 0.04343610256910324, 0.06482744216918945, 0.05934484675526619, 0.0017953491769731045, 0.0632716491818428], [0.06682689487934113, 0.024400822818279266, 0.048335541039705276, 0.09100454300642014, 0.007651872001588345, 0.03841426968574524, 0.017282752320170403, 0.023470943793654442, 0.11299914866685867, 0.054294075816869736, 0.15953773260116577, 0.05571321025490761, 0.04679685831069946, 0.03346914052963257, 0.07759394496679306, 0.00907173752784729, 0.13313665986061096], [0.07975960522890091, 0.07555244117975235, 0.07203519344329834, 0.1474120318889618, 0.002626139670610428, 0.06741434335708618, 0.05394408106803894, 0.05694667249917984, 0.0864185094833374, 0.03300008177757263, 0.06456629186868668, 0.04378731548786163, 0.04538596048951149, 0.0551128163933754, 0.05384884774684906, 0.0017559065017849207, 0.06043381616473198], [0.08071060478687286, 0.06697602570056915, 0.03469094634056091, 0.11932536214590073, 0.0009126330260187387, 0.12344210594892502, 0.051084574311971664, 0.10552872717380524, 0.0917387530207634, 0.03181765601038933, 0.05626145005226135, 0.04265351966023445, 0.02303696796298027, 0.07276985794305801, 0.053782474249601364, 0.0012486277846619487, 0.04401976242661476], [0.10005321353673935, 0.026021268218755722, 0.07722581177949905, 0.04787687212228775, 0.0047321561723947525, 0.043621450662612915, 0.04272398725152016, 0.06471245735883713, 0.09714174270629883, 0.05258519574999809, 0.07715965807437897, 0.07628467679023743, 0.06495043635368347, 0.050671808421611786, 0.0813463032245636, 0.0030206134542822838, 0.08987237513065338], [0.1540258824825287, 0.028356319293379784, 0.06194862723350525, 0.02834697999060154, 0.006661806721240282, 0.07512979209423065, 0.03207448497414589, 0.1423024982213974, 0.02876424975693226, 0.04589635133743286, 0.026000192388892174, 0.15044040977954865, 0.045459069311618805, 0.06146249920129776, 0.060169197618961334, 0.007214460521936417, 0.04574716091156006], [0.11167638003826141, 0.04082725942134857, 0.03664514794945717, 0.09058688580989838, 0.009909181855618954, 0.1011171042919159, 0.04591613635420799, 0.05698392540216446, 0.04440882429480553, 0.05704047530889511, 0.060634009540081024, 0.05941116809844971, 0.04265902191400528, 0.12240664660930634, 0.049436841160058975, 0.00899034645408392, 0.06135058030486107], [0.09316100180149078, 0.09614212810993195, 0.05807892605662346, 0.12024006992578506, 0.001797443488612771, 0.059110432863235474, 0.06750570982694626, 0.062106210738420486, 0.05524313449859619, 0.055291593074798584, 0.06280502676963806, 0.05083952471613884, 0.05376634746789932, 0.04403470456600189, 0.06603705137968063, 0.0017342157661914825, 0.052106574177742004], [0.14794687926769257, 0.06445080041885376, 0.05201401934027672, 0.11149094998836517, 0.008734457194805145, 0.0821816548705101, 0.03357018530368805, 0.06882525235414505, 0.05252310261130333, 0.07227049022912979, 0.028230750933289528, 0.052692607045173645, 0.03760033845901489, 0.07119222730398178, 0.045913904905319214, 0.006222979165613651, 0.06413941830396652]], [[0.02524000220000744, 0.0020839448552578688, 0.005602790042757988, 0.0048566400073468685, 0.008988531306385994, 0.0058546350337564945, 0.034940507262945175, 0.0765567421913147, 0.0911002904176712, 0.10009878873825073, 0.1278752088546753, 0.1394643783569336, 0.09558612108230591, 0.026351500302553177, 0.0945814698934555, 0.07361991703510284, 0.08719860017299652], [0.04952218756079674, 0.11830495297908783, 0.03860272467136383, 0.033139344304800034, 0.034639716148376465, 0.04543963447213173, 0.04237375408411026, 0.035473018884658813, 0.037021931260824203, 0.03610080108046532, 0.0893545150756836, 0.16773338615894318, 0.07184331864118576, 0.038674116134643555, 0.04640251770615578, 0.05447308346629143, 0.0609009712934494], [0.25801506638526917, 0.03126349672675133, 0.019256964325904846, 0.04598415270447731, 0.07029526680707932, 0.08151441067457199, 0.031669795513153076, 0.04501539096236229, 0.0323357917368412, 0.06336939334869385, 0.03185350447893143, 0.025192411616444588, 0.028451846912503242, 0.0592845156788826, 0.05816454440355301, 0.06421428173780441, 0.054119233042001724], [0.06821516156196594, 0.030516009777784348, 0.17443151772022247, 0.11244547367095947, 0.04555324465036392, 0.026475852355360985, 0.029191678389906883, 0.029977979138493538, 0.023960253223776817, 0.035474274307489395, 0.05602436512708664, 0.11081135272979736, 0.060899946838617325, 0.053830377757549286, 0.0432811863720417, 0.05595141649246216, 0.042959995567798615], [0.1489919275045395, 0.034924767911434174, 0.026392487809062004, 0.04815308377146721, 0.10602588206529617, 0.05410192534327507, 0.05660374090075493, 0.044662296772003174, 0.028680790215730667, 0.052378229796886444, 0.045381978154182434, 0.028329307213425636, 0.039791468530893326, 0.057028934359550476, 0.04798746854066849, 0.12037202715873718, 0.06019368767738342], [0.019286291673779488, 0.002002097899094224, 0.010388278402388096, 0.0028781024739146233, 0.01112866960465908, 0.01166918408125639, 0.04162238910794258, 0.08933179080486298, 0.06513003259897232, 0.11010444909334183, 0.02947896346449852, 0.08297660946846008, 0.046584952622652054, 0.044359784573316574, 0.11258570104837418, 0.07124451547861099, 0.2492281198501587], [0.3100114166736603, 0.019898053258657455, 0.02527521923184395, 0.04052380844950676, 0.09844138473272324, 0.057398613542318344, 0.03623208403587341, 0.04489092156291008, 0.029933590441942215, 0.03405988961458206, 0.04649330675601959, 0.023245876654982567, 0.048103850334882736, 0.03562571108341217, 0.027721531689167023, 0.0877281203866005, 0.034416619688272476], [0.08563746511936188, 0.04060884565114975, 0.12732094526290894, 0.11188419908285141, 0.06287328898906708, 0.04426107555627823, 0.040225859731435776, 0.041927192360162735, 0.040836580097675323, 0.05736490339040756, 0.029194403439760208, 0.04228503257036209, 0.031206510961055756, 0.037353046238422394, 0.06764199584722519, 0.048834990710020065, 0.09054352343082428], [0.11395679414272308, 0.0468386672437191, 0.10624011605978012, 0.1217656061053276, 0.057392995804548264, 0.052636634558439255, 0.02130161225795746, 0.029116496443748474, 0.03436065465211868, 0.05940020829439163, 0.028076956048607826, 0.021676916629076004, 0.017364174127578735, 0.05637850984930992, 0.05451275035738945, 0.056513890624046326, 0.12246699631214142], [0.11828001588582993, 0.03234751895070076, 0.0722532644867897, 0.04941030591726303, 0.048823386430740356, 0.0639258474111557, 0.10285212844610214, 0.03821626305580139, 0.03056979365646839, 0.05878140777349472, 0.033377114683389664, 0.10640088468790054, 0.0488668829202652, 0.021961571648716927, 0.0575440339744091, 0.03141171857714653, 0.08497784286737442], [0.10757540911436081, 0.06341520696878433, 0.059530600905418396, 0.08721484988927841, 0.0773295909166336, 0.09500931203365326, 0.06934724003076553, 0.06217427924275398, 0.04414983466267586, 0.0483551025390625, 0.019573228433728218, 0.020101606845855713, 0.024996722117066383, 0.06527644395828247, 0.05552196875214577, 0.0520886667072773, 0.04834003746509552], [0.17820239067077637, 0.04334725812077522, 0.04288420453667641, 0.07313781976699829, 0.09689672291278839, 0.06977444887161255, 0.030133699998259544, 0.038592658936977386, 0.04835660383105278, 0.0645487979054451, 0.027563605457544327, 0.015446307137608528, 0.021812813356518745, 0.03743097931146622, 0.058128081262111664, 0.07789330184459686, 0.07585035264492035], [0.3586953580379486, 0.03833954036235809, 0.025971442461013794, 0.107013039290905, 0.09479101747274399, 0.07774756103754044, 0.014985673129558563, 0.017778633162379265, 0.0399349182844162, 0.03675521910190582, 0.037352584302425385, 0.007359071634709835, 0.016001075506210327, 0.016897309571504593, 0.02208838053047657, 0.04653162509202957, 0.04175760596990585], [0.10824450850486755, 0.025659531354904175, 0.10477117449045181, 0.06489457190036774, 0.07297733426094055, 0.06931785494089127, 0.02030790224671364, 0.014417250640690327, 0.04594283550977707, 0.02560136467218399, 0.06750116497278214, 0.01738206297159195, 0.031193280592560768, 0.1094549372792244, 0.05629485100507736, 0.027180196717381477, 0.13885918259620667], [0.08865220099687576, 0.02656581997871399, 0.028829950839281082, 0.05493142083287239, 0.04147128760814667, 0.13152627646923065, 0.04863676056265831, 0.07419587671756744, 0.04110587388277054, 0.08092014491558075, 0.04744073003530502, 0.08228005468845367, 0.024526281282305717, 0.04018715023994446, 0.05188191309571266, 0.047179099172353745, 0.08966914564371109], [0.1795671284198761, 0.033027201890945435, 0.03085513226687908, 0.05866721272468567, 0.14157098531723022, 0.06568865478038788, 0.07773695886135101, 0.037516579031944275, 0.029876170679926872, 0.046374499797821045, 0.04150533303618431, 0.022387977689504623, 0.032759640365839005, 0.035260990262031555, 0.03174856677651405, 0.07778734713792801, 0.05766957253217697], [0.027791883796453476, 0.002239541383460164, 0.0056255655363202095, 0.003490956500172615, 0.0097038634121418, 0.020714476704597473, 0.06536101549863815, 0.16630563139915466, 0.09018939733505249, 0.15978576242923737, 0.029801206663250923, 0.06953851133584976, 0.042021263390779495, 0.03770371153950691, 0.08706694096326828, 0.05658873915672302, 0.12607157230377197]], [[0.011174561455845833, 0.09414906799793243, 0.030091876164078712, 0.016321904957294464, 0.29843536019325256, 0.4450252652168274, 0.0011839474318549037, 0.001424160785973072, 0.00029455230105668306, 0.001026850426569581, 0.003694254672154784, 0.0013936155010014772, 0.0012927921488881111, 0.0007418997120112181, 0.0004448294057510793, 0.007094791624695063, 0.0862102136015892], [0.11852674186229706, 0.02019118145108223, 0.031497664749622345, 0.034183502197265625, 0.0640023946762085, 0.06057581678032875, 0.024116525426506996, 0.03936151787638664, 0.02036185935139656, 0.08883397281169891, 0.07760791480541229, 0.07434835284948349, 0.0542975589632988, 0.06735076010227203, 0.04554995894432068, 0.06416831910610199, 0.11502596735954285], [0.08648286014795303, 0.037123773247003555, 0.09034660458564758, 0.0710773766040802, 0.06569467484951019, 0.04503156244754791, 0.052130382508039474, 0.02742191031575203, 0.07320478558540344, 0.05374639108777046, 0.06933675706386566, 0.03345033526420593, 0.054339803755283356, 0.02731013484299183, 0.058473072946071625, 0.04059449955821037, 0.1142350435256958], [0.1483263075351715, 0.11024556308984756, 0.053358521312475204, 0.06437084823846817, 0.07773710042238235, 0.10879857838153839, 0.0484408475458622, 0.06108875200152397, 0.018507394939661026, 0.04271094128489494, 0.02706819400191307, 0.03567139431834221, 0.021645793691277504, 0.04019920900464058, 0.031542498618364334, 0.054675452411174774, 0.05561260133981705], [0.15284353494644165, 0.04443354904651642, 0.0766560509800911, 0.07358644157648087, 0.043049924075603485, 0.06101576238870621, 0.04181814193725586, 0.03975846245884895, 0.0420568585395813, 0.06797795742750168, 0.05037062242627144, 0.03893468156456947, 0.03692924976348877, 0.04019352048635483, 0.05643400549888611, 0.03818834573030472, 0.09575283527374268], [0.1227218508720398, 0.12078765034675598, 0.008438208140432835, 0.009750179946422577, 0.08246869593858719, 0.025989452376961708, 0.015425877645611763, 0.05339249223470688, 0.03591480106115341, 0.1403900384902954, 0.03601955622434616, 0.02246982418000698, 0.024790341034531593, 0.03983446955680847, 0.02812313660979271, 0.1678672730922699, 0.06561620533466339], [0.19901809096336365, 0.011799735948443413, 0.020198315382003784, 0.011685042642056942, 0.009246133267879486, 0.02934315986931324, 0.03907804191112518, 0.07270979136228561, 0.053028836846351624, 0.09598486125469208, 0.03601529449224472, 0.07817858457565308, 0.07231493294239044, 0.13584883511066437, 0.058518122881650925, 0.031251974403858185, 0.04578028991818428], [0.06327265501022339, 0.060818061232566833, 0.05438724160194397, 0.06240197643637657, 0.0422535166144371, 0.04475461319088936, 0.019158456474542618, 0.026513194665312767, 0.0248300451785326, 0.07518073171377182, 0.04015598073601723, 0.03308117017149925, 0.030957955867052078, 0.04532204195857048, 0.1000657007098198, 0.07838611304759979, 0.19846057891845703], [0.05516418442130089, 0.06801941990852356, 0.08046028017997742, 0.05895870178937912, 0.08600516617298126, 0.06277994066476822, 0.04894009977579117, 0.0497378371655941, 0.02586940862238407, 0.07081681489944458, 0.046236660331487656, 0.03569170832633972, 0.03137432411313057, 0.024035997688770294, 0.07799064368009567, 0.03563477471470833, 0.14228399097919464], [0.10852563381195068, 0.10430904477834702, 0.08172948658466339, 0.051876939833164215, 0.045835018157958984, 0.06504763662815094, 0.06110985577106476, 0.023101430386304855, 0.04747648537158966, 0.013722150586545467, 0.035511314868927, 0.027175644412636757, 0.1286228448152542, 0.03820859268307686, 0.07410260289907455, 0.023801885545253754, 0.06984337419271469], [0.22078925371170044, 0.047316305339336395, 0.041765764355659485, 0.059768132865428925, 0.023833036422729492, 0.06754029542207718, 0.025370430201292038, 0.051726944744586945, 0.04924919456243515, 0.06651249527931213, 0.03973226249217987, 0.036332108080387115, 0.025877295061945915, 0.05789831280708313, 0.044794633984565735, 0.06319119781255722, 0.07830244302749634], [0.12240998446941376, 0.033233847469091415, 0.10413387417793274, 0.051660098135471344, 0.058150727301836014, 0.045536261051893234, 0.0497964508831501, 0.03003830835223198, 0.0581279993057251, 0.06336068361997604, 0.05563843622803688, 0.03322986513376236, 0.04555968567728996, 0.024562766775488853, 0.05996149033308029, 0.03342469781637192, 0.13117483258247375], [0.06280094385147095, 0.048780087381601334, 0.18938027322292328, 0.11050375550985336, 0.039177168160676956, 0.0513468012213707, 0.025131266564130783, 0.0292655136436224, 0.035603802651166916, 0.042749032378196716, 0.03526562452316284, 0.01932724379003048, 0.02107788249850273, 0.01873885653913021, 0.06530281156301498, 0.026329519227147102, 0.17921945452690125], [0.03436395898461342, 0.106015644967556, 0.07802580296993256, 0.04299001768231392, 0.028943561017513275, 0.03163566067814827, 0.05237169563770294, 0.040463197976350784, 0.02932003326714039, 0.043065059930086136, 0.0390811488032341, 0.023952266201376915, 0.05714116618037224, 0.048520512878894806, 0.15677621960639954, 0.02183368057012558, 0.16550040245056152], [0.11379260569810867, 0.08277527987957001, 0.06352566927671432, 0.058886051177978516, 0.05315932258963585, 0.06009808927774429, 0.07043604552745819, 0.07714526355266571, 0.04622802883386612, 0.06471255421638489, 0.04481203854084015, 0.03016141802072525, 0.038021259009838104, 0.051638733595609665, 0.04624243453145027, 0.04127631336450577, 0.05708890035748482], [0.1446942389011383, 0.043733663856983185, 0.06845075637102127, 0.07954830676317215, 0.042715225368738174, 0.07124115526676178, 0.04207278788089752, 0.044855259358882904, 0.03625879064202309, 0.07161097228527069, 0.053817663341760635, 0.040837597101926804, 0.035311508923769, 0.043398790061473846, 0.05036937817931175, 0.03676663339138031, 0.09431719779968262], [0.12436621636152267, 0.12917573750019073, 0.007331592030823231, 0.009498964063823223, 0.0743517056107521, 0.020818397402763367, 0.018450463190674782, 0.053250957280397415, 0.041430190205574036, 0.15242613852024078, 0.03821490332484245, 0.01800517924129963, 0.022479292005300522, 0.03523609787225723, 0.02880634367465973, 0.1628478765487671, 0.0633099228143692]], [[0.202057346701622, 0.09870608896017075, 0.037488821893930435, 0.07499653846025467, 0.0651821419596672, 0.0649111270904541, 0.04655888304114342, 0.0715402215719223, 0.04143212363123894, 0.06205463409423828, 0.025449534878134727, 0.02500137872993946, 0.026314185932278633, 0.04174935817718506, 0.03792022168636322, 0.05205195024609566, 0.02658540941774845], [0.09523968398571014, 0.05807080492377281, 0.03742891177535057, 0.20199328660964966, 0.04872329160571098, 0.1581435203552246, 0.10988544672727585, 0.04801712557673454, 0.020615844056010246, 0.05470912903547287, 0.02462683990597725, 0.01598132960498333, 0.016870498657226562, 0.011640822514891624, 0.01958615332841873, 0.02382553182542324, 0.05464180186390877], [0.11394883692264557, 0.030318966135382652, 0.05583114176988602, 0.03578253462910652, 0.09550856053829193, 0.03352591395378113, 0.046293508261442184, 0.043532028794288635, 0.05001849681138992, 0.05395461991429329, 0.05761013180017471, 0.06380272656679153, 0.10306684672832489, 0.0380418635904789, 0.07706998288631439, 0.06633143872022629, 0.035362426191568375], [0.11494267731904984, 0.07770498096942902, 0.05972624942660332, 0.21726584434509277, 0.04826267436146736, 0.09012376517057419, 0.05387091264128685, 0.01557247806340456, 0.027022432535886765, 0.020678451284766197, 0.09175770729780197, 0.03335454687476158, 0.05528498440980911, 0.025946248322725296, 0.019681191071867943, 0.026411984115839005, 0.022392932325601578], [0.14603766798973083, 0.08236132562160492, 0.045484136790037155, 0.07131258398294449, 0.029281508177518845, 0.02501554787158966, 0.0610860176384449, 0.022487936541438103, 0.04622804746031761, 0.08516033738851547, 0.08593578636646271, 0.04694882035255432, 0.08721015602350235, 0.02478836663067341, 0.07863709330558777, 0.03915685787796974, 0.02286776714026928], [0.15321341156959534, 0.10481614619493484, 0.035993415862321854, 0.04777584224939346, 0.04917048290371895, 0.051493581384420395, 0.06021755561232567, 0.05314535275101662, 0.05645355209708214, 0.05784853547811508, 0.0487043596804142, 0.03291044011712074, 0.04665278643369675, 0.038263171911239624, 0.06549681723117828, 0.05227714404463768, 0.045567430555820465], [0.11819959431886673, 0.05443412810564041, 0.02432369627058506, 0.09178982675075531, 0.042220182716846466, 0.06883545219898224, 0.05304988846182823, 0.0211311224848032, 0.04323582351207733, 0.12170222401618958, 0.04250318184494972, 0.025250593200325966, 0.04120006039738655, 0.04274487495422363, 0.07827738672494888, 0.0543784573674202, 0.07672354578971863], [0.10395368188619614, 0.042899806052446365, 0.05356842651963234, 0.06734593957662582, 0.04289818927645683, 0.04701051115989685, 0.019936539232730865, 0.017202312126755714, 0.05746377259492874, 0.07629840821027756, 0.08634431660175323, 0.07443484663963318, 0.08583749830722809, 0.05725717544555664, 0.07378020882606506, 0.044838398694992065, 0.04893004521727562], [0.08331204205751419, 0.04889913648366928, 0.07321985810995102, 0.09036929905414581, 0.052828866988420486, 0.05534365773200989, 0.026008104905486107, 0.03710860386490822, 0.07165339589118958, 0.07012365758419037, 0.07082191854715347, 0.09701376408338547, 0.07054297626018524, 0.04285865277051926, 0.04223509132862091, 0.038923781365156174, 0.028737211599946022], [0.014248738996684551, 0.044260840862989426, 0.14235612750053406, 0.07576973736286163, 0.060384176671504974, 0.07144536823034286, 0.06852754205465317, 0.05615100637078285, 0.0730779767036438, 0.004029391799122095, 0.032187577337026596, 0.14863692224025726, 0.06973129510879517, 0.05905790627002716, 0.03159197419881821, 0.01881909742951393, 0.029724309220910072], [0.1477227509021759, 0.02860105037689209, 0.03918815776705742, 0.028221361339092255, 0.08240171521902084, 0.04081542044878006, 0.046101268380880356, 0.016770847141742706, 0.04538718983530998, 0.08595062047243118, 0.057349514216184616, 0.061354462057352066, 0.11203023791313171, 0.0380701906979084, 0.06740202754735947, 0.06369249522686005, 0.0389406681060791], [0.12871581315994263, 0.02339775860309601, 0.04862220212817192, 0.030115164816379547, 0.10578314960002899, 0.035007208585739136, 0.03032924234867096, 0.03148679807782173, 0.04645146429538727, 0.06338782608509064, 0.05882985517382622, 0.07475265115499496, 0.11124823987483978, 0.043974556028842926, 0.055400922894477844, 0.07126304507255554, 0.04123419523239136], [0.1584589034318924, 0.016030853614211082, 0.027734652161598206, 0.03210620954632759, 0.08271390944719315, 0.03354588896036148, 0.01478548813611269, 0.021165212616324425, 0.0555378794670105, 0.09373167902231216, 0.06485565751791, 0.0644426941871643, 0.08209609985351562, 0.05038949102163315, 0.05634259432554245, 0.1023559644818306, 0.04370670020580292], [0.08120528608560562, 0.060508545488119125, 0.04558102414011955, 0.13809151947498322, 0.05804293230175972, 0.1681009978055954, 0.055619627237319946, 0.013711397536098957, 0.031325917690992355, 0.026962334290146828, 0.08018507063388824, 0.03502839058637619, 0.050455041229724884, 0.01625659689307213, 0.02903592959046364, 0.02625254914164543, 0.08363684266805649], [0.06706909835338593, 0.06368619203567505, 0.11192020028829575, 0.05677006021142006, 0.08312227576971054, 0.04000311344861984, 0.029348252341151237, 0.038078632205724716, 0.033749792724847794, 0.03836258873343468, 0.10204228013753891, 0.12314264476299286, 0.09671185910701752, 0.04288192093372345, 0.016429560258984566, 0.038596611469984055, 0.018084945157170296], [0.15513864159584045, 0.07453242689371109, 0.04392542690038681, 0.0681813657283783, 0.03399099037051201, 0.02911587618291378, 0.05536666885018349, 0.02301696687936783, 0.047238364815711975, 0.10083892941474915, 0.07964883744716644, 0.051711536943912506, 0.08365609496831894, 0.028818774968385696, 0.05993220582604408, 0.040785156190395355, 0.024101709946990013], [0.19681859016418457, 0.08593972772359848, 0.018847854807972908, 0.024322355166077614, 0.061234958469867706, 0.03710852935910225, 0.04981411620974541, 0.047981563955545425, 0.058545537292957306, 0.0639086589217186, 0.04838347062468529, 0.022022537887096405, 0.04980063810944557, 0.038914669305086136, 0.06491509824991226, 0.08370743691921234, 0.04773421213030815]], [[0.09473123401403427, 0.03425193578004837, 0.04523380473256111, 0.05132388323545456, 0.05895952880382538, 0.24660730361938477, 0.021831033751368523, 0.018872154876589775, 0.020962174981832504, 0.02660324051976204, 0.05674690008163452, 0.026778364554047585, 0.028220394626259804, 0.019102565944194794, 0.026150749996304512, 0.046307794749736786, 0.17731696367263794], [0.08275946974754333, 0.06660302728414536, 0.27492058277130127, 0.1008169949054718, 0.08460469543933868, 0.1450672149658203, 0.043253421783447266, 0.0568256676197052, 0.043531712144613266, 0.013573168776929379, 0.027608610689640045, 0.01657732203602791, 0.00742073729634285, 0.011924954131245613, 0.008070016279816628, 0.00852033868432045, 0.007922055199742317], [0.060690946877002716, 0.05642139911651611, 0.04476490989327431, 0.3871033489704132, 0.06870853900909424, 0.2012670785188675, 0.025716790929436684, 0.02948637120425701, 0.020142443478107452, 0.03309990465641022, 0.012047525495290756, 0.00537447165697813, 0.006646790541708469, 0.01561870239675045, 0.006753423251211643, 0.011618445627391338, 0.014538878574967384], [0.11151855438947678, 0.04668112471699715, 0.16139914095401764, 0.04498865455389023, 0.12940357625484467, 0.26298922300338745, 0.05283813551068306, 0.03498143330216408, 0.0363096222281456, 0.017354166135191917, 0.032956331968307495, 0.016711385920643806, 0.012429370544850826, 0.00841786339879036, 0.004725378006696701, 0.008477692492306232, 0.017818337306380272], [0.039032865315675735, 0.05138619244098663, 0.05856028571724892, 0.08398881554603577, 0.1207093745470047, 0.33659401535987854, 0.06895813345909119, 0.04837168753147125, 0.04459989443421364, 0.035726431757211685, 0.03684491664171219, 0.019928323104977608, 0.013310503214597702, 0.008204312063753605, 0.003968933597207069, 0.015701310709118843, 0.01411403063684702], [0.032764732837677, 0.04405227676033974, 0.0893423855304718, 0.05521026626229286, 0.12146659195423126, 0.14178000390529633, 0.1395876407623291, 0.09103624522686005, 0.13275881111621857, 0.042469583451747894, 0.0388798750936985, 0.027096902951598167, 0.019695160910487175, 0.007448435295373201, 0.005953744053840637, 0.007548090070486069, 0.0029092892073094845], [0.01684495620429516, 0.014782857149839401, 0.01725134067237377, 0.023629359900951385, 0.041950199753046036, 0.10652446001768112, 0.13336864113807678, 0.18934547901153564, 0.19674737751483917, 0.10464666783809662, 0.04852745682001114, 0.03659902140498161, 0.02017917111515999, 0.026215169578790665, 0.006723625119775534, 0.011855507269501686, 0.004808507859706879], [0.013322124257683754, 0.023657184094190598, 0.016017364338040352, 0.017529183998703957, 0.032489534467458725, 0.08353613317012787, 0.09010247141122818, 0.024037523195147514, 0.09307027608156204, 0.3906835913658142, 0.07258924841880798, 0.035480767488479614, 0.045639485120773315, 0.027946490794420242, 0.007489006966352463, 0.010928449220955372, 0.015481227077543736], [0.010874711908400059, 0.0033228800166398287, 0.0060789273120462894, 0.017839139327406883, 0.017847180366516113, 0.07721541076898575, 0.040404293686151505, 0.06828021258115768, 0.03981360048055649, 0.44803711771965027, 0.07606841623783112, 0.05099278315901756, 0.035264112055301666, 0.05494048073887825, 0.013283698819577694, 0.014947636984288692, 0.024789387360215187], [0.0418858602643013, 0.005755031481385231, 0.011534903198480606, 0.011908644810318947, 0.023025501519441605, 0.04267577826976776, 0.05448700115084648, 0.07579223811626434, 0.13510996103286743, 0.03723622485995293, 0.19938130676746368, 0.07925086468458176, 0.1479371041059494, 0.03187322989106178, 0.028449609875679016, 0.027069630101323128, 0.046627141535282135], [0.020565638318657875, 0.012936996296048164, 0.009009701199829578, 0.023777153342962265, 0.019857050850987434, 0.06321074068546295, 0.0498589351773262, 0.07459582388401031, 0.07013799995183945, 0.19540248811244965, 0.049140799790620804, 0.10443677008152008, 0.08271380513906479, 0.08152496069669724, 0.04891978204250336, 0.034940168261528015, 0.058971140533685684], [0.028245052322745323, 0.006658422760665417, 0.0034801000729203224, 0.02314886264503002, 0.010621018707752228, 0.02517729066312313, 0.027439670637249947, 0.03679434210062027, 0.05297532305121422, 0.13670407235622406, 0.06486381590366364, 0.05470326170325279, 0.1201142743229866, 0.1866532862186432, 0.11220584064722061, 0.03886336460709572, 0.07135189324617386], [0.016749076545238495, 0.004750916734337807, 0.00492549454793334, 0.014186062850058079, 0.004755175672471523, 0.02077152580022812, 0.01841050013899803, 0.035658352077007294, 0.025182384997606277, 0.10599420219659805, 0.032978445291519165, 0.07352093607187271, 0.03390172868967056, 0.35736098885536194, 0.10974966734647751, 0.04004878178238869, 0.1010558158159256], [0.014857087284326553, 0.006715577561408281, 0.008068522438406944, 0.002957392716780305, 0.007325936108827591, 0.009883123449981213, 0.009893126785755157, 0.01824828051030636, 0.024208690971136093, 0.039367418736219406, 0.0657774955034256, 0.06384231895208359, 0.0903254970908165, 0.10010500997304916, 0.3110683262348175, 0.061669256538152695, 0.1656869649887085], [0.019245116040110588, 0.008885644376277924, 0.00792237464338541, 0.005599602125585079, 0.007652665488421917, 0.009188485331833363, 0.006034239195287228, 0.00772566394880414, 0.011027791537344456, 0.030171550810337067, 0.039298802614212036, 0.07375143468379974, 0.05119964852929115, 0.3401343524456024, 0.0578107051551342, 0.1259208470582962, 0.19843116402626038], [0.029008280485868454, 0.008672062307596207, 0.014469334855675697, 0.007418462540954351, 0.02189718559384346, 0.018473856151103973, 0.014212195761501789, 0.011079800315201283, 0.020624982193112373, 0.03227629512548447, 0.06005064770579338, 0.04825673624873161, 0.06125539913773537, 0.05894032493233681, 0.08044513314962387, 0.13112293183803558, 0.381796270608902], [0.036061376333236694, 0.010364646092057228, 0.012752019800245762, 0.008446869440376759, 0.017750296741724014, 0.007619667332619429, 0.010191650129854679, 0.01452632900327444, 0.02401808463037014, 0.028598377481102943, 0.03992410749197006, 0.06615541130304337, 0.06271900981664658, 0.09530017524957657, 0.14469680190086365, 0.2781890034675598, 0.14268623292446136]]], [[[0.2720961272716522, 0.0047176191583275795, 0.007445871829986572, 0.007373543921858072, 0.02844274416565895, 0.09184088557958603, 0.008210180327296257, 0.01079702191054821, 0.010119839571416378, 0.012189269997179508, 0.013898655772209167, 0.019184978678822517, 0.015985675156116486, 0.01822933740913868, 0.01760796830058098, 0.05610639974474907, 0.40575385093688965], [0.05370824784040451, 0.32980939745903015, 0.026174066588282585, 0.021250246092677116, 0.046655427664518356, 0.04350941628217697, 0.029906166717410088, 0.05902639403939247, 0.011858013458549976, 0.04491812363266945, 0.023636819794774055, 0.01924913562834263, 0.004959074780344963, 0.02020331285893917, 0.11618436872959137, 0.08136522769927979, 0.06758658587932587], [0.16937030851840973, 0.2592231333255768, 0.008613250218331814, 0.07461423426866531, 0.016794616356492043, 0.0915118083357811, 0.014460545033216476, 0.01915012300014496, 0.004253507591784, 0.012648710049688816, 0.010439087636768818, 0.0048296283930540085, 0.004917411599308252, 0.02954203635454178, 0.041406597942113876, 0.01743726246058941, 0.22078783810138702], [0.1938166469335556, 0.19381378591060638, 0.040466777980327606, 0.07340949773788452, 0.011309454217553139, 0.05295112356543541, 0.019036320969462395, 0.02199707366526127, 0.0027824498247355223, 0.07119317352771759, 0.03073066845536232, 0.011739782057702541, 0.004384554456919432, 0.06000726297497749, 0.060788046568632126, 0.013395455665886402, 0.13817790150642395], [0.33825933933258057, 0.09750884771347046, 0.02822262793779373, 0.06577137857675552, 0.020140331238508224, 0.057233940809965134, 0.017318831756711006, 0.020192762836813927, 0.01114537101238966, 0.023025482892990112, 0.012760855257511139, 0.018704034388065338, 0.01020083762705326, 0.034977026283741, 0.027572151273489, 0.021857958287000656, 0.19510838389396667], [0.5100507736206055, 0.026299607008695602, 0.021534981206059456, 0.054615747183561325, 0.029007771983742714, 0.06168322265148163, 0.0072142439894378185, 0.013712354004383087, 0.010329951532185078, 0.01190279982984066, 0.007441708352416754, 0.013787481002509594, 0.0054626185446977615, 0.016819175332784653, 0.013793287798762321, 0.025581251829862595, 0.17076298594474792], [0.3221951127052307, 0.029303966090083122, 0.007010327652096748, 0.025597840547561646, 0.016371117904782295, 0.06496277451515198, 0.016113096848130226, 0.06558091938495636, 0.006824779324233532, 0.02229316346347332, 0.007868291810154915, 0.012508012354373932, 0.006820826791226864, 0.019252749159932137, 0.06019536033272743, 0.038542862981557846, 0.2785589396953583], [0.2791869044303894, 0.04583495482802391, 0.015982823446393013, 0.06972896307706833, 0.012428054586052895, 0.061639346182346344, 0.011268007569015026, 0.024852635338902473, 0.007681394927203655, 0.029444612562656403, 0.010083560831844807, 0.019076136872172356, 0.01596539281308651, 0.040087729692459106, 0.054655954241752625, 0.034186311066150665, 0.26789721846580505], [0.2337549328804016, 0.02115803211927414, 0.0074760690331459045, 0.05307677760720253, 0.010702554136514664, 0.07900658249855042, 0.009837934747338295, 0.02336674928665161, 0.004115114454180002, 0.011395113542675972, 0.0105177853256464, 0.011136452667415142, 0.00556586217135191, 0.03864764794707298, 0.045243967324495316, 0.03148092329502106, 0.403517484664917], [0.21845172345638275, 0.01709190011024475, 0.001309955958276987, 0.0065551758743822575, 0.00627560680732131, 0.05543128401041031, 0.007333300542086363, 0.027325671166181564, 0.006534295156598091, 0.0027157380245625973, 0.008664285764098167, 0.0053241620771586895, 0.005624425131827593, 0.05271882191300392, 0.0579812191426754, 0.03022506833076477, 0.4904373288154602], [0.41961830854415894, 0.053302813321352005, 0.00585320545360446, 0.03933021053671837, 0.009844244457781315, 0.04115147143602371, 0.010145356878638268, 0.021867942065000534, 0.005595142487436533, 0.005762067157775164, 0.003072212915867567, 0.01075877994298935, 0.00401648972183466, 0.019521964713931084, 0.032172560691833496, 0.027913955971598625, 0.2900732159614563], [0.21514031291007996, 0.08450949192047119, 0.0043879118748009205, 0.04537258669734001, 0.012408832088112831, 0.08642344921827316, 0.014157330617308617, 0.02215093933045864, 0.005955401808023453, 0.011209794320166111, 0.007960129529237747, 0.005831509828567505, 0.007080587558448315, 0.04441574960947037, 0.04967561736702919, 0.024964526295661926, 0.3583557605743408], [0.2790856957435608, 0.07740747928619385, 0.007116599939763546, 0.023515485227108, 0.009929762221872807, 0.04313325136899948, 0.015198180451989174, 0.028941936790943146, 0.004487935919314623, 0.011941254138946533, 0.008770398795604706, 0.014584281481802464, 0.0047638616524636745, 0.1049753874540329, 0.061734139919281006, 0.02556750178337097, 0.278846800327301], [0.06081320345401764, 0.01750783622264862, 0.011214612051844597, 0.02851071022450924, 0.02236938290297985, 0.065810926258564, 0.020594988018274307, 0.03903201222419739, 0.007975144311785698, 0.09394019097089767, 0.022938638925552368, 0.033456429839134216, 0.015504693612456322, 0.1143939420580864, 0.10607751458883286, 0.07664193212985992, 0.2632178068161011], [0.10813651978969574, 0.02988516539335251, 0.007273549679666758, 0.011930489912629128, 0.03311409428715706, 0.07622631639242172, 0.020506424829363823, 0.06493363529443741, 0.060925234109163284, 0.011853344738483429, 0.014799114316701889, 0.021686172112822533, 0.009593521244823933, 0.06365232914686203, 0.14745987951755524, 0.11409515887498856, 0.2039291262626648], [0.24502693116664886, 0.06572175770998001, 0.017248380929231644, 0.040945690125226974, 0.010960201732814312, 0.041049759835004807, 0.024486426264047623, 0.02867881767451763, 0.016243906691670418, 0.03395956754684448, 0.01757846772670746, 0.031297583132982254, 0.017399447038769722, 0.07529079169034958, 0.05380541831254959, 0.02587670460343361, 0.2544303238391876], [0.37020784616470337, 0.0151824364438653, 0.01744430512189865, 0.03784802183508873, 0.030400177463889122, 0.06890266388654709, 0.010347853414714336, 0.01718025468289852, 0.014692415483295918, 0.016757285222411156, 0.014487243257462978, 0.022093547508120537, 0.010065590962767601, 0.03354581817984581, 0.025748444721102715, 0.051970526576042175, 0.2431255429983139]], [[0.14385899901390076, 0.015308938920497894, 0.025807399302721024, 0.005505569279193878, 0.03221144527196884, 0.06278317421674728, 0.05080750212073326, 0.033139605075120926, 0.049621354788541794, 0.02654743753373623, 0.10414518415927887, 0.06497194617986679, 0.07542839646339417, 0.05810243636369705, 0.04418531432747841, 0.06875357776880264, 0.1388218104839325], [0.02330821193754673, 0.0003373066720087081, 0.0025563479866832495, 0.0018460896098986268, 0.03981049358844757, 0.604191780090332, 0.006394601427018642, 0.019140329211950302, 0.0011952545028179884, 0.002990234410390258, 0.0017607397167012095, 0.004958673380315304, 0.006551253609359264, 0.07861161231994629, 0.00021891047072131187, 0.04200164973735809, 0.1641264706850052], [0.13004760444164276, 0.006842296104878187, 0.02255375310778618, 0.008595074526965618, 0.08192553371191025, 0.2008572369813919, 0.013385243713855743, 0.023601019755005836, 0.04085806384682655, 0.008622516877949238, 0.06323830783367157, 0.021395757794380188, 0.05814114212989807, 0.03795435279607773, 0.009929908439517021, 0.06825543940067291, 0.20379669964313507], [0.14997035264968872, 0.005083002150058746, 0.019013315439224243, 0.00029563182033598423, 0.08489061892032623, 0.17775240540504456, 0.015575152821838856, 0.012154080905020237, 0.06610725820064545, 0.0029261286836117506, 0.09226572513580322, 0.021658185869455338, 0.034087181091308594, 0.013739803805947304, 0.0104850297793746, 0.06448839604854584, 0.22950774431228638], [0.11390962451696396, 0.027186980471014977, 0.030740803107619286, 0.0235507320612669, 0.058813877403736115, 0.14623713493347168, 0.039362285286188126, 0.04356041178107262, 0.039024461060762405, 0.025377342477440834, 0.046185918152332306, 0.03343665227293968, 0.04377162083983421, 0.035378001630306244, 0.027362966910004616, 0.06385020166635513, 0.20225097239017487], [0.15813185274600983, 0.022374723106622696, 0.009743674658238888, 0.011884573847055435, 0.03684253618121147, 0.06488609313964844, 0.01907314546406269, 0.05637926235795021, 0.032291289418935776, 0.011636360548436642, 0.021335003897547722, 0.018022039905190468, 0.01626286655664444, 0.011235845275223255, 0.01025170087814331, 0.06730852276086807, 0.4323403835296631], [0.08825308084487915, 0.010702621191740036, 0.0180505458265543, 0.008709547109901905, 0.06064385920763016, 0.17810851335525513, 0.011110207997262478, 0.02837189845740795, 0.030673740431666374, 0.016201434656977654, 0.05839760601520538, 0.014998836442828178, 0.024965273216366768, 0.025217650458216667, 0.003925382625311613, 0.08466874808073044, 0.33700114488601685], [0.16668301820755005, 0.025902770459651947, 0.03141755610704422, 0.004677740391343832, 0.04429295286536217, 0.1460646390914917, 0.02130371704697609, 0.025241835042834282, 0.04818946495652199, 0.012518716044723988, 0.05527331307530403, 0.043299686163663864, 0.06380051374435425, 0.04164669290184975, 0.009486602619290352, 0.05264776572585106, 0.20755310356616974], [0.10488416254520416, 0.025759480893611908, 0.0344066396355629, 0.013849255628883839, 0.05164724215865135, 0.07830595225095749, 0.028035087510943413, 0.03505873680114746, 0.061029814183712006, 0.03285953402519226, 0.08062005043029785, 0.03206632658839226, 0.10540429502725601, 0.06326715648174286, 0.043010298162698746, 0.05022164806723595, 0.15957431495189667], [0.10337387770414352, 0.0029722489416599274, 0.014076930470764637, 0.0027232873253524303, 0.03286778926849365, 0.3024493157863617, 0.03217090666294098, 0.044592730700969696, 0.04310353845357895, 0.011526226997375488, 0.05924798175692558, 0.02343630976974964, 0.043644219636917114, 0.03384096547961235, 0.016884617507457733, 0.02396254800260067, 0.20912659168243408], [0.17783424258232117, 0.012365097180008888, 0.028537821024656296, 0.011420292779803276, 0.04525793343782425, 0.13913899660110474, 0.02080659754574299, 0.035610176622867584, 0.036932844668626785, 0.017359361052513123, 0.07076592743396759, 0.03156058117747307, 0.09672949463129044, 0.04699535667896271, 0.013229142874479294, 0.04613451287150383, 0.169321671128273], [0.10983610153198242, 0.007760636508464813, 0.027127496898174286, 0.007254261523485184, 0.05999618023633957, 0.14638389647006989, 0.015232485719025135, 0.02497941628098488, 0.04408220946788788, 0.010453658178448677, 0.1038866639137268, 0.027265120297670364, 0.07327192276716232, 0.03128829225897789, 0.015759875997900963, 0.0555771142244339, 0.23984470963478088], [0.08873304724693298, 0.01025793794542551, 0.026916062459349632, 0.005590289365500212, 0.05820513889193535, 0.2120617777109146, 0.019885219633579254, 0.03814222663640976, 0.05106279253959656, 0.01724356971681118, 0.083716481924057, 0.02649391070008278, 0.024302586913108826, 0.02801814116537571, 0.014278707094490528, 0.04786623269319534, 0.24722586572170258], [0.10410800576210022, 0.05034462735056877, 0.06133219599723816, 0.004034843761473894, 0.06242644041776657, 0.05679871141910553, 0.026775673031806946, 0.026605956256389618, 0.06749822199344635, 0.01767699606716633, 0.07636915147304535, 0.05240466445684433, 0.04617342725396156, 0.03207673877477646, 0.039797019213438034, 0.06567847728729248, 0.20989881455898285], [0.12503698468208313, 0.015189476311206818, 0.04698045924305916, 0.0018856555689126253, 0.04447183012962341, 0.13725775480270386, 0.029823636636137962, 0.023603903129696846, 0.030443500727415085, 0.005810841917991638, 0.10116416215896606, 0.05785917863249779, 0.05262189731001854, 0.04938487708568573, 0.009484841488301754, 0.05122824385762215, 0.21775269508361816], [0.07041514664888382, 0.014328040182590485, 0.03570939600467682, 0.016030797734856606, 0.04682944715023041, 0.12566857039928436, 0.044049207121133804, 0.036500293761491776, 0.03563305363059044, 0.01972576417028904, 0.08613040298223495, 0.04087678715586662, 0.07657988369464874, 0.04363652318716049, 0.0347619466483593, 0.0569663941860199, 0.21615836024284363], [0.18872380256652832, 0.012198355980217457, 0.0037503670901060104, 0.011634939350187778, 0.030532104894518852, 0.052303824573755264, 0.011299336329102516, 0.039974093437194824, 0.016877377405762672, 0.009769553318619728, 0.021357236430048943, 0.010815533809363842, 0.008076494559645653, 0.012321862392127514, 0.005771597381681204, 0.08706804364919662, 0.47752541303634644]], [[0.20075663924217224, 0.04420413821935654, 0.01798233389854431, 0.008555117063224316, 0.11379898339509964, 0.09513255953788757, 0.05458465963602066, 0.048957061022520065, 0.025148149579763412, 0.0072125038132071495, 0.024324599653482437, 0.01621350459754467, 0.005208022892475128, 0.022746358066797256, 0.014928814955055714, 0.12417133152484894, 0.17607516050338745], [0.052520811557769775, 0.45562928915023804, 0.02995024062693119, 0.24546316266059875, 0.010444069281220436, 0.012480979785323143, 0.02559000998735428, 0.009470570832490921, 0.0035604541189968586, 0.03815355524420738, 0.010503075085580349, 0.017491653561592102, 0.013199052773416042, 0.04139053449034691, 0.006243683863431215, 0.009496706537902355, 0.018412072211503983], [0.33637771010398865, 0.25207656621932983, 0.006019978318363428, 0.023272937163710594, 0.021432025358080864, 0.06700253486633301, 0.027872106060385704, 0.01998387649655342, 0.010798579081892967, 0.014816542156040668, 0.012340719811618328, 0.0029981457628309727, 0.0014274648856371641, 0.020458852872252464, 0.00728908646851778, 0.023215388879179955, 0.15261749923229218], [0.31766006350517273, 0.046975381672382355, 0.010389476083219051, 0.10687189549207687, 0.0336088165640831, 0.11127054691314697, 0.04119309037923813, 0.034239985048770905, 0.007475915364921093, 0.012107706628739834, 0.027221206575632095, 0.006853172555565834, 0.007021517492830753, 0.05192255601286888, 0.01345644611865282, 0.03226751089096069, 0.13946475088596344], [0.27734115719795227, 0.05695096775889397, 0.01915513537824154, 0.016926519572734833, 0.09992089867591858, 0.10880014300346375, 0.055716708302497864, 0.02170729450881481, 0.015885844826698303, 0.012059032917022705, 0.023898465558886528, 0.010604064911603928, 0.004930445458739996, 0.020765462890267372, 0.009287577122449875, 0.07895997166633606, 0.1670903116464615], [0.23092898726463318, 0.059355851262807846, 0.023756258189678192, 0.022345485165715218, 0.09949379414319992, 0.07771814614534378, 0.05737793818116188, 0.05138352885842323, 0.022948767989873886, 0.015058170072734356, 0.023579521104693413, 0.017601095139980316, 0.006315752398222685, 0.03721107542514801, 0.01387420017272234, 0.10195831954479218, 0.13909313082695007], [0.3623895049095154, 0.022305067628622055, 0.007092347368597984, 0.007985630072653294, 0.03909685090184212, 0.09940481930971146, 0.020989276468753815, 0.023214777931571007, 0.0077403998002409935, 0.01955478824675083, 0.011819401755928993, 0.011598431505262852, 0.006393950432538986, 0.031159700825810432, 0.02522033266723156, 0.06458316743373871, 0.23945164680480957], [0.2806733548641205, 0.2177642583847046, 0.010506948456168175, 0.030568396672606468, 0.02586384490132332, 0.05665509030222893, 0.05014542117714882, 0.04426724836230278, 0.015346408821642399, 0.03643631935119629, 0.01392482127994299, 0.015014641918241978, 0.007741163019090891, 0.031998101621866226, 0.010702719911932945, 0.051590777933597565, 0.100800521671772], [0.3251977860927582, 0.06661509722471237, 0.006989145651459694, 0.016060763970017433, 0.019548848271369934, 0.08419559895992279, 0.014286031015217304, 0.031553715467453, 0.004132350441068411, 0.024787886068224907, 0.013551664538681507, 0.01420812588185072, 0.004663123283535242, 0.07275784760713577, 0.010547567158937454, 0.045735981315374374, 0.2451685518026352], [0.3161104619503021, 0.0710710734128952, 0.0055236369371414185, 0.03056439943611622, 0.015672270208597183, 0.0668778195977211, 0.0180093701928854, 0.013290507718920708, 0.011262097395956516, 0.005055408924818039, 0.007109255995601416, 0.00967684481292963, 0.005237458273768425, 0.034942444413900375, 0.02786489576101303, 0.04328765347599983, 0.3184444010257721], [0.2499435991048813, 0.07331188023090363, 0.01381076779216528, 0.023074762895703316, 0.034189801663160324, 0.05989955738186836, 0.09016358107328415, 0.07029667496681213, 0.01541086658835411, 0.03407420590519905, 0.01680152863264084, 0.022232575342059135, 0.01572496071457863, 0.04227784648537636, 0.022051388397812843, 0.0717427209019661, 0.14499321579933167], [0.28553882241249084, 0.13757291436195374, 0.0038969782181084156, 0.0114736994728446, 0.016671938821673393, 0.052720267325639725, 0.025428319349884987, 0.04066156968474388, 0.01757586933672428, 0.030455032363533974, 0.015378843061625957, 0.005870271474123001, 0.0031910238321870565, 0.07215850055217743, 0.02521032840013504, 0.04366021603345871, 0.21253539621829987], [0.2404254972934723, 0.01357039250433445, 0.005681368988007307, 0.010433457791805267, 0.017826423048973083, 0.0663171112537384, 0.019566157832741737, 0.062126319855451584, 0.01582002453505993, 0.039676275104284286, 0.013909827917814255, 0.013495461083948612, 0.007433244492858648, 0.09539759159088135, 0.03857845813035965, 0.05029076710343361, 0.28945159912109375], [0.07491191476583481, 0.1714627742767334, 0.006326660048216581, 0.038860127329826355, 0.009455947205424309, 0.059582389891147614, 0.01133711077272892, 0.033083681017160416, 0.03569050505757332, 0.02548150345683098, 0.008752950467169285, 0.016994250938296318, 0.03368125110864639, 0.1362370252609253, 0.16655829548835754, 0.023472828790545464, 0.14811070263385773], [0.07533951103687286, 0.17201466858386993, 0.0018903882009908557, 0.007725059054791927, 0.01143450103700161, 0.040604494512081146, 0.007626560982316732, 0.013560399413108826, 0.013304479420185089, 0.014108173549175262, 0.005775101948529482, 0.003987178672105074, 0.0058024427853524685, 0.35400429368019104, 0.13933341205120087, 0.02896907739341259, 0.1045202910900116], [0.24106115102767944, 0.03656453266739845, 0.009384488686919212, 0.008881601504981518, 0.05321911349892616, 0.08254675567150116, 0.04860718548297882, 0.03409253805875778, 0.02341022528707981, 0.022194668650627136, 0.03344164043664932, 0.01547828409820795, 0.0073018562979996204, 0.04413207992911339, 0.02218700759112835, 0.10149481147527695, 0.21600206196308136], [0.25043463706970215, 0.022589202970266342, 0.013734494335949421, 0.009066608734428883, 0.0797322690486908, 0.06434030830860138, 0.04597347602248192, 0.06620267778635025, 0.029698042199015617, 0.018843671306967735, 0.03164996579289436, 0.021771609783172607, 0.005680545698851347, 0.04440012946724892, 0.016517702490091324, 0.14094877243041992, 0.1384158581495285]], [[0.13271604478359222, 0.06365969032049179, 0.01485684234648943, 0.012909997254610062, 0.050979070365428925, 0.21816588938236237, 0.016498127952218056, 0.019215991720557213, 0.009987061843276024, 0.01175764761865139, 0.022476661950349808, 0.013633408583700657, 0.014020279981195927, 0.010169326327741146, 0.018183493986725807, 0.04479264095425606, 0.32597777247428894], [0.27222689986228943, 0.16393272578716278, 0.007347454782575369, 0.0016617513028904796, 0.043599918484687805, 0.16297274827957153, 0.00325424293987453, 0.0057991971261799335, 0.0020864258985966444, 0.00139233423396945, 0.014126683585345745, 0.006509536411613226, 0.0068853734992444515, 0.002457872498780489, 0.008351141586899757, 0.018704025074839592, 0.2786916196346283], [0.21467430889606476, 0.14844392240047455, 0.01962297037243843, 0.02592432126402855, 0.01963450014591217, 0.15341584384441376, 0.007627591025084257, 0.011178359389305115, 0.002760833129286766, 0.007308787666261196, 0.016761429607868195, 0.04189923778176308, 0.10264301300048828, 0.004932987038046122, 0.01005023717880249, 0.0197055134922266, 0.19341611862182617], [0.2160709947347641, 0.004355045035481453, 0.005203354172408581, 0.08047924190759659, 0.04038388282060623, 0.1622864007949829, 0.006296205800026655, 0.007859728299081326, 0.002686487277969718, 0.0027685598470270634, 0.01120700128376484, 0.0070493691600859165, 0.0011824117973446846, 0.002119926270097494, 0.0016721171559765935, 0.022169748321175575, 0.42620956897735596], [0.2065909504890442, 0.10548084229230881, 0.014376047067344189, 0.011171574704349041, 0.036435991525650024, 0.19582730531692505, 0.010564015246927738, 0.02018045075237751, 0.008474948816001415, 0.01339217834174633, 0.01104289572685957, 0.015260530635714531, 0.023243293166160583, 0.018421223387122154, 0.022058822214603424, 0.05223735794425011, 0.23524148762226105], [0.23077362775802612, 0.03884488716721535, 0.02496332675218582, 0.01569173112511635, 0.04115547612309456, 0.11748826503753662, 0.012359032407402992, 0.018634261563420296, 0.01263615395873785, 0.01735037937760353, 0.014230407774448395, 0.013048320077359676, 0.017843516543507576, 0.008329342119395733, 0.017302490770816803, 0.033439189195632935, 0.3659095764160156], [0.2770921587944031, 0.10242246836423874, 0.015108009800314903, 0.020259855315089226, 0.02071152999997139, 0.12805764377117157, 0.0069399201311171055, 0.014069408178329468, 0.005927004385739565, 0.02935885451734066, 0.00892803817987442, 0.017404355108737946, 0.02273743785917759, 0.010656535625457764, 0.02250012196600437, 0.032519612461328506, 0.26530691981315613], [0.2669413387775421, 0.034268323332071304, 0.0063261310569942, 0.01729706861078739, 0.02720215916633606, 0.14392037689685822, 0.004189078696072102, 0.01015386451035738, 0.007334539666771889, 0.008979708887636662, 0.010502923280000687, 0.006869894452393055, 0.010184690356254578, 0.0038386413361877203, 0.006479941308498383, 0.019323742017149925, 0.4161875545978546], [0.20134292542934418, 0.06562738120555878, 0.018275434151291847, 0.021765543147921562, 0.031826481223106384, 0.17569556832313538, 0.012005576863884926, 0.02176441252231598, 0.0023993435315787792, 0.013568258844316006, 0.019615357741713524, 0.03466091305017471, 0.050091635435819626, 0.02384132146835327, 0.03337854892015457, 0.031533874571323395, 0.24260734021663666], [0.2159661203622818, 0.011924443766474724, 0.017888909205794334, 0.0129286739975214, 0.06824635714292526, 0.18171268701553345, 0.01139761507511139, 0.02151275798678398, 0.02362627349793911, 0.01909910887479782, 0.024558570235967636, 0.02070951648056507, 0.043620284646749496, 0.016683751717209816, 0.01249468419700861, 0.04948331415653229, 0.2481468766927719], [0.2913471758365631, 0.054579369723796844, 0.016047963872551918, 0.007454947102814913, 0.02563488855957985, 0.1784050613641739, 0.02240399830043316, 0.048332393169403076, 0.012804512865841389, 0.02567403018474579, 0.01301896758377552, 0.017292790114879608, 0.014845269732177258, 0.009718729183077812, 0.00991775281727314, 0.02127743512392044, 0.23124460875988007], [0.2493724524974823, 0.11985626071691513, 0.04976630210876465, 0.01778201200067997, 0.02004053443670273, 0.08575543016195297, 0.00795772299170494, 0.017389804124832153, 0.007301649544388056, 0.009999735280871391, 0.014797093346714973, 0.02905806340277195, 0.09674295037984848, 0.0038838882464915514, 0.017573010176420212, 0.02073531784117222, 0.23198780417442322], [0.2593901455402374, 0.023087028414011, 0.0314958281815052, 0.012646528892219067, 0.01968289352953434, 0.09481577575206757, 0.00658915750682354, 0.009365529753267765, 0.005767793860286474, 0.014155477285385132, 0.006446812767535448, 0.028976891189813614, 0.10922883450984955, 0.006119252648204565, 0.00682769576087594, 0.02371714450418949, 0.3416871726512909], [0.2140849381685257, 0.013410180807113647, 0.007128790020942688, 0.010968532413244247, 0.05276976898312569, 0.07177030295133591, 0.0033505731262266636, 0.007756400853395462, 0.010923344641923904, 0.009838959202170372, 0.03834424540400505, 0.009216208010911942, 0.018023518845438957, 0.0950634554028511, 0.03950615972280502, 0.0421767495572567, 0.3556678891181946], [0.18896888196468353, 0.028200116008520126, 0.002687708241865039, 0.00121097092051059, 0.03255489468574524, 0.10610006749629974, 0.0022752047516405582, 0.002936760662123561, 0.0017440757947042584, 0.006964198313653469, 0.01277576107531786, 0.007608556654304266, 0.01042754016816616, 0.09984446316957474, 0.1938989758491516, 0.03417600691318512, 0.26762574911117554], [0.2009156048297882, 0.04609737545251846, 0.017014753073453903, 0.009530395269393921, 0.05872688814997673, 0.19826306402683258, 0.015780309215188026, 0.013858826830983162, 0.008878689259290695, 0.00835260096937418, 0.012749861925840378, 0.02262979932129383, 0.035329315811395645, 0.01598539762198925, 0.019887397065758705, 0.025911156088113785, 0.2900885343551636], [0.2598121166229248, 0.03281703591346741, 0.014536570757627487, 0.01093034353107214, 0.037493228912353516, 0.1684655249118805, 0.012433504685759544, 0.020949920639395714, 0.010278443805873394, 0.014293797314167023, 0.009020602330565453, 0.01584750786423683, 0.017523283138871193, 0.010815172456204891, 0.011572458781301975, 0.03979308903217316, 0.31341752409935]], [[0.5767070055007935, 0.014257200993597507, 0.005263809580355883, 0.0031302981078624725, 0.0299182441085577, 0.0451105460524559, 0.008028591051697731, 0.008587010204792023, 0.005734071601182222, 0.003768277121707797, 0.005981091409921646, 0.005011661443859339, 0.0037584127858281136, 0.0033666507806628942, 0.009190964512526989, 0.041628558188676834, 0.23055754601955414], [0.6431852579116821, 0.042153820395469666, 0.008882103487849236, 0.015665749087929726, 0.04738194867968559, 0.04476200416684151, 0.007103890646249056, 0.004887685179710388, 0.0010800337186083198, 0.0016296595567837358, 0.0037312761414796114, 0.002935708500444889, 0.0021089089568704367, 0.0027641518972814083, 0.0011214888654649258, 0.0295780710875988, 0.1410282701253891], [0.2031717300415039, 0.06451650708913803, 0.0880114808678627, 0.0586736761033535, 0.07079833000898361, 0.08857432752847672, 0.05548672378063202, 0.009385654702782631, 0.02561372146010399, 0.013851979747414589, 0.020876552909612656, 0.014535094611346722, 0.0683019608259201, 0.015848979353904724, 0.011144486255943775, 0.050051312893629074, 0.14115746319293976], [0.42055168747901917, 0.06524529308080673, 0.051243990659713745, 0.04116116836667061, 0.05877946317195892, 0.08935417234897614, 0.010520639829337597, 0.04055303335189819, 0.004387718625366688, 0.007932307198643684, 0.0031455298885703087, 0.005733892787247896, 0.014689234085381031, 0.005649965722113848, 0.0016534569440409541, 0.029933465644717216, 0.14946506917476654], [0.2609901428222656, 0.0922900065779686, 0.06466027349233627, 0.02757182903587818, 0.08682654798030853, 0.11452598124742508, 0.023871008306741714, 0.019295206293463707, 0.014880253002047539, 0.007092502433806658, 0.006573200225830078, 0.0055841198191046715, 0.009240100160241127, 0.007328247185796499, 0.00918426550924778, 0.034111540764570236, 0.21597476303577423], [0.46997562050819397, 0.05168212577700615, 0.025509266182780266, 0.02612060122191906, 0.10073461383581161, 0.07286152988672256, 0.013911387883126736, 0.012349771335721016, 0.00585651770234108, 0.00461337948217988, 0.007095350418239832, 0.0037318961694836617, 0.0023848842829465866, 0.002168500330299139, 0.003654333297163248, 0.03467623516917229, 0.1626739501953125], [0.21054881811141968, 0.018221471458673477, 0.02423660270869732, 0.04530567675828934, 0.07254444062709808, 0.21227233111858368, 0.037616066634655, 0.05023638531565666, 0.010939047671854496, 0.023903172463178635, 0.027753224596381187, 0.015544859692454338, 0.016180606558918953, 0.0015476873377338052, 0.0021647915709763765, 0.016844844445586205, 0.21413999795913696], [0.24252304434776306, 0.017193226143717766, 0.02587445266544819, 0.0321691669523716, 0.04115348309278488, 0.22629910707473755, 0.07984290271997452, 0.04709497094154358, 0.007623509969562292, 0.023354312404990196, 0.01570742391049862, 0.011115656234323978, 0.007864752784371376, 0.0017888402799144387, 0.002025035209953785, 0.00793417263776064, 0.2104358673095703], [0.1008835956454277, 0.02301105111837387, 0.040841177105903625, 0.030096665024757385, 0.03553612157702446, 0.26095542311668396, 0.13307523727416992, 0.04542430862784386, 0.061392247676849365, 0.02450958453118801, 0.020104743540287018, 0.024590222164988518, 0.03684729337692261, 0.003607397433370352, 0.011635396629571915, 0.006688262335956097, 0.14080126583576202], [0.16689173877239227, 0.011328475549817085, 0.008640828542411327, 0.002226071199402213, 0.01548035629093647, 0.09574861079454422, 0.04090525954961777, 0.11389359086751938, 0.13715682923793793, 0.043150439858436584, 0.0090754684060812, 0.01856914721429348, 0.015759974718093872, 0.027653822675347328, 0.0728064775466919, 0.024321069940924644, 0.19639183580875397], [0.04408201202750206, 0.038891684263944626, 0.011810828931629658, 0.005730320233851671, 0.022082077339291573, 0.09948751330375671, 0.10144864022731781, 0.05690975487232208, 0.1240428239107132, 0.33572739362716675, 0.007795111741870642, 0.014075104147195816, 0.0053729647770524025, 0.019635207951068878, 0.007692289538681507, 0.018133342266082764, 0.08708296716213226], [0.1236879825592041, 0.005486549809575081, 0.01445541251450777, 0.014689600095152855, 0.023143233731389046, 0.0866284891963005, 0.07058952748775482, 0.020047465339303017, 0.12989921867847443, 0.08020076155662537, 0.07606995850801468, 0.04042777791619301, 0.05339021980762482, 0.012967560440301895, 0.012769020162522793, 0.03657880425453186, 0.1989683359861374], [0.053614962846040726, 0.0012197612086310983, 0.006424912717193365, 0.017267487943172455, 0.017254188656806946, 0.05132627859711647, 0.01863783225417137, 0.006727683823555708, 0.1383555680513382, 0.32875126600265503, 0.056526828557252884, 0.0502878874540329, 0.016849271953105927, 0.028255479410290718, 0.0260795708745718, 0.04839184880256653, 0.1340291053056717], [0.16067451238632202, 0.037286628037691116, 0.005280771292746067, 0.00533110648393631, 0.025840172544121742, 0.10896282643079758, 0.01907043159008026, 0.011107111349701881, 0.01835712231695652, 0.03600200638175011, 0.03243013098835945, 0.05997433885931969, 0.048746902495622635, 0.12218267470598221, 0.011335969902575016, 0.054830484092235565, 0.24258674681186676], [0.059941913932561874, 0.005037880968302488, 0.0009434728417545557, 0.0005885370774194598, 0.005972655490040779, 0.03678271919488907, 0.006705881096422672, 0.0109281400218606, 0.03302174061536789, 0.00721509987488389, 0.00853697769343853, 0.014639551751315594, 0.029718030244112015, 0.642404317855835, 0.027631960809230804, 0.028106534853577614, 0.0818246454000473], [0.13999155163764954, 0.011248922906816006, 0.004754700232297182, 0.00176723743788898, 0.00846047792583704, 0.09444219619035721, 0.023736698552966118, 0.02547360025346279, 0.023455504328012466, 0.016164403408765793, 0.02078920602798462, 0.03530481457710266, 0.06028478220105171, 0.04207591712474823, 0.04048839583992958, 0.04234588146209717, 0.4092158377170563], [0.5110097527503967, 0.009973432868719101, 0.003296829527243972, 0.0018064083997160196, 0.01326203066855669, 0.04399985820055008, 0.009374428540468216, 0.014960043132305145, 0.00675965053960681, 0.004110698122531176, 0.008787252940237522, 0.00672331266105175, 0.005479573737829924, 0.005448839161545038, 0.016924390569329262, 0.044751375913619995, 0.2933320999145508]], [[0.05430091172456741, 0.016765974462032318, 0.007334437686949968, 0.01439934503287077, 0.003244866384193301, 0.8659862875938416, 0.0007580745732411742, 0.0009663935052230954, 0.0005750933778472245, 1.6116591723402962e-05, 0.00023482208780478686, 0.0005179274594411254, 0.0004215059452690184, 0.00012044671893818304, 0.0003290951135568321, 2.762749863904901e-05, 0.03400105983018875], [0.09297240525484085, 0.0351836122572422, 0.041048988699913025, 0.031180065125226974, 0.008147099055349827, 0.2282891422510147, 0.1865839958190918, 0.03921784088015556, 0.04220937192440033, 0.015184191055595875, 0.012034722603857517, 0.049414537847042084, 0.04598911106586456, 0.007773705292493105, 0.032087720930576324, 0.00413502799347043, 0.12854841351509094], [0.08888842910528183, 0.06277422606945038, 0.09030482918024063, 0.05571768805384636, 0.008362875320017338, 0.12160748988389969, 0.028266331180930138, 0.029280828312039375, 0.04968765750527382, 0.013435416854918003, 0.00411585858091712, 0.04476287215948105, 0.07398500293493271, 0.028839848935604095, 0.07275109738111496, 0.006316784769296646, 0.22090275585651398], [0.12778453528881073, 0.025081761181354523, 0.05949749797582626, 0.02582947351038456, 0.001869557541795075, 0.17001336812973022, 0.029120834544301033, 0.033556029200553894, 0.04394255205988884, 0.011279189959168434, 0.007324475795030594, 0.043374452739953995, 0.072723887860775, 0.007249834481626749, 0.09269337356090546, 0.0014894009800627828, 0.24716977775096893], [0.13685490190982819, 0.06793169677257538, 0.05655908212065697, 0.08425978571176529, 0.0016713548684492707, 0.25378209352493286, 0.03753798082470894, 0.03544095903635025, 0.037189703434705734, 0.005206853151321411, 0.007196403574198484, 0.044925425201654434, 0.05701350048184395, 0.009478907100856304, 0.027452761307358742, 0.0003518642042763531, 0.1371467411518097], [0.18049289286136627, 0.07809296995401382, 0.052671708166599274, 0.07756374776363373, 0.005834107752889395, 0.2572821080684662, 0.028056658804416656, 0.0393056720495224, 0.04015000909566879, 0.006949243601411581, 0.015437712892889977, 0.03605559840798378, 0.023594345897436142, 0.00905010849237442, 0.01681353896856308, 0.00125435262452811, 0.13139517605304718], [0.0859261006116867, 0.012343035079538822, 0.05034005269408226, 0.015159199945628643, 0.005110118538141251, 0.15078701078891754, 0.07400473207235336, 0.06627920269966125, 0.12486614286899567, 0.008981701917946339, 0.01448087114840746, 0.07866943627595901, 0.13852596282958984, 0.01019670907407999, 0.029355905950069427, 0.003824236337095499, 0.131149560213089], [0.07701432704925537, 0.022528737783432007, 0.08546224236488342, 0.019795674830675125, 0.00488518550992012, 0.07317119091749191, 0.02154107205569744, 0.046011991798877716, 0.08510106801986694, 0.018143929541110992, 0.013963370583951473, 0.061822474002838135, 0.13185904920101166, 0.026205943897366524, 0.10013385117053986, 0.007934204302728176, 0.2044256031513214], [0.11016496270895004, 0.07438492029905319, 0.04725024104118347, 0.05002223327755928, 0.010414584539830685, 0.08404374122619629, 0.04921393841505051, 0.04075624421238899, 0.0826188325881958, 0.02531919814646244, 0.00847928412258625, 0.036659106612205505, 0.06329324096441269, 0.039871200919151306, 0.0764060914516449, 0.012741779908537865, 0.18836034834384918], [0.06933661550283432, 0.01681196503341198, 0.022037552669644356, 0.038077909499406815, 0.005450091324746609, 0.19876496493816376, 0.16270723938941956, 0.0796286016702652, 0.09549251943826675, 0.007983301766216755, 0.014133870601654053, 0.04486175253987312, 0.07107073068618774, 0.010478710755705833, 0.02397032640874386, 0.004236603155732155, 0.13495725393295288], [0.11839625239372253, 0.03397829085588455, 0.05942299962043762, 0.0271720252931118, 0.003448974108323455, 0.0833040401339531, 0.0749274417757988, 0.061305586248636246, 0.07289645820856094, 0.02112964168190956, 0.0177499670535326, 0.07899586856365204, 0.0936392992734909, 0.020423609763383865, 0.07699793577194214, 0.004139795899391174, 0.15207166969776154], [0.07868664711713791, 0.04627920314669609, 0.05080154165625572, 0.03382488340139389, 0.005814384203404188, 0.11363300681114197, 0.05300942808389664, 0.034942980855703354, 0.048802927136421204, 0.01188679225742817, 0.003620208939537406, 0.04099129140377045, 0.0998014435172081, 0.022511163726449013, 0.09994810074567795, 0.007953040301799774, 0.24749302864074707], [0.06291889399290085, 0.0240775216370821, 0.03633279353380203, 0.016907887533307076, 0.007238141261041164, 0.15514124929904938, 0.08797865360975266, 0.05095416307449341, 0.08704781532287598, 0.008757111616432667, 0.007111609447747469, 0.07688876241445541, 0.07225733995437622, 0.015337099321186543, 0.06562280654907227, 0.00875688437372446, 0.21667125821113586], [0.07449222356081009, 0.02899465709924698, 0.029075028374791145, 0.018919074907898903, 0.028352312743663788, 0.16443891823291779, 0.11033675074577332, 0.09075663983821869, 0.10556315630674362, 0.019333675503730774, 0.01267991028726101, 0.05621888488531113, 0.05590687692165375, 0.01879952847957611, 0.023203518241643906, 0.021836580708622932, 0.1410922408103943], [0.06955604255199432, 0.029651787132024765, 0.04025072231888771, 0.015808064490556717, 0.006878557149320841, 0.1301555037498474, 0.110182985663414, 0.050793569535017014, 0.0460088774561882, 0.012948360294103622, 0.003818806726485491, 0.04304356873035431, 0.19722485542297363, 0.015907755121588707, 0.03541337326169014, 0.009854815900325775, 0.1825023740530014], [0.06919726729393005, 0.04043927788734436, 0.036032065749168396, 0.028800494968891144, 0.004396314267069101, 0.19916152954101562, 0.12394026666879654, 0.05543181672692299, 0.060927946120500565, 0.011181366629898548, 0.010623874142765999, 0.05102541670203209, 0.10485861450433731, 0.010340962558984756, 0.04311351850628853, 0.003474639495834708, 0.14705471694469452], [0.012728169560432434, 0.01531885378062725, 0.01936553791165352, 0.009197955019772053, 0.26604411005973816, 0.03500492498278618, 0.014957177452743053, 0.0169542096555233, 0.06483138352632523, 0.014090237207710743, 0.00909554772078991, 0.02252560667693615, 0.028246423229575157, 0.04088234156370163, 0.04802241921424866, 0.3335629105567932, 0.04917224124073982]], [[0.21102111041545868, 0.023081107065081596, 0.033499497920274734, 0.05686235800385475, 0.2567245364189148, 0.4081202447414398, 0.000553723017219454, 0.0012037876294925809, 0.000687940395437181, 0.0005851116729900241, 0.0007318759453482926, 0.0004489724524319172, 0.0002707565436139703, 0.00020432707970030606, 0.0002115512324962765, 0.0008244805503636599, 0.004968542139977217], [0.4431488811969757, 0.0008762974175624549, 0.007422277703881264, 0.012106584385037422, 0.1283346563577652, 0.40641355514526367, 0.0001455715682823211, 7.093698513926938e-05, 1.5889600035734475e-05, 6.776730970159406e-06, 5.636125570163131e-05, 2.204555130447261e-05, 2.7142414182890207e-05, 4.161915967415553e-06, 4.425142833497375e-06, 0.00014147721230983734, 0.0012030592188239098], [0.2513318359851837, 0.012001865543425083, 0.015081096440553665, 0.044197969138622284, 0.1764794886112213, 0.49198392033576965, 0.0005948924808762968, 0.000751794024836272, 0.00020002055680379272, 0.00010903662769123912, 0.0005536428652703762, 0.00015720048395451158, 0.0002714014844968915, 0.00013338059943635017, 0.00010103241947945207, 0.0008378138882108033, 0.005213585216552019], [0.23569004237651825, 0.005054363515228033, 0.011462393216788769, 0.0016848359955474734, 0.2279520183801651, 0.514332115650177, 0.00034165565739385784, 0.00011946507584070787, 8.387184789171442e-05, 4.970370719092898e-05, 0.00043126658420078456, 9.505121124675497e-05, 6.420719728339463e-05, 4.158844967605546e-05, 2.0402796508278698e-05, 0.00028280142578296363, 0.002294225851073861], [0.2797805368900299, 0.0183400996029377, 0.02688608132302761, 0.028177393600344658, 0.1881149709224701, 0.44976767897605896, 0.0006991421687416732, 0.0006161084747873247, 0.0002484257856849581, 0.00015310323215089738, 0.0006750079919584095, 0.00019206333672627807, 0.00024540291633456945, 7.980578811839223e-05, 3.967667726101354e-05, 0.0003699520311783999, 0.005614636931568384], [0.14064526557922363, 0.02680925838649273, 0.02717296965420246, 0.056612540036439896, 0.1935402899980545, 0.5502279996871948, 0.0005324720987118781, 0.0005185141926631331, 0.00018219248158857226, 7.948711572680622e-05, 0.0003423972812015563, 0.00019298533152323216, 0.00022219889797270298, 9.7196752903983e-05, 6.710801244480535e-05, 0.0003510052338242531, 0.002406153129413724], [0.014114994555711746, 2.66724091488868e-05, 0.0011158923152834177, 0.00013505484093911946, 0.0012494379188865423, 0.0005624994519166648, 0.02575748600065708, 0.08701296895742416, 0.18433088064193726, 0.1654605269432068, 0.09928236901760101, 0.03376765921711922, 0.026105718687176704, 0.02941611222922802, 0.012375745922327042, 0.19115106761455536, 0.12813489139080048], [0.05335824564099312, 5.039254028815776e-05, 0.004615457262843847, 0.00024737793137319386, 0.0037013187538832426, 0.002065977081656456, 0.06532204151153564, 0.05145368352532387, 0.10881952196359634, 0.08943045139312744, 0.14145918190479279, 0.0606439933180809, 0.023541558533906937, 0.015040138736367226, 0.017192842438817024, 0.2208382487297058, 0.14221958816051483], [0.013764205388724804, 9.23374536796473e-05, 0.0023198893759399652, 0.0004222659335937351, 0.0018653355073183775, 0.0013767079217359424, 0.08102074265480042, 0.11489629745483398, 0.11656937748193741, 0.07666777819395065, 0.09603847563266754, 0.05705266073346138, 0.03532383590936661, 0.03930352255702019, 0.03780881687998772, 0.20835116505622864, 0.11712664365768433], [0.005613444373011589, 5.269745088298805e-06, 0.00033041019923985004, 2.615006269479636e-05, 0.00034748276812024415, 0.00023413184680975974, 0.07464675605297089, 0.05532818287611008, 0.07138562202453613, 0.06913279742002487, 0.10941364616155624, 0.03266802802681923, 0.027211235836148262, 0.020510481670498848, 0.03941435366868973, 0.3357965648174286, 0.15793544054031372], [0.012535078451037407, 2.132328154402785e-05, 0.0013302747393026948, 8.352527220267802e-05, 0.0011399253271520138, 0.0008957945974543691, 0.07887422293424606, 0.10081871598958969, 0.09703157842159271, 0.07415227591991425, 0.08471537381410599, 0.05488210916519165, 0.057044122368097305, 0.03620578721165657, 0.030801977962255478, 0.18580061197280884, 0.18366731703281403], [0.019194800406694412, 4.118765355087817e-05, 0.0008814202737994492, 0.0001386906806146726, 0.0012625587405636907, 0.0009375656954944134, 0.05138399451971054, 0.06925731152296066, 0.08894137293100357, 0.07066454738378525, 0.09525573998689651, 0.02883806638419628, 0.03610368072986603, 0.026436645537614822, 0.038955651223659515, 0.27282118797302246, 0.19888542592525482], [0.03017469123005867, 1.6496194803039543e-05, 0.0018679494969546795, 0.00020017022325191647, 0.0020392551086843014, 0.0012459915596991777, 0.04731623828411102, 0.2126908153295517, 0.1213373914361, 0.049164779484272, 0.13156399130821228, 0.037739019840955734, 0.021113397553563118, 0.010286364704370499, 0.022711414843797684, 0.15241798758506775, 0.15811409056186676], [0.03529534861445427, 1.685132519924082e-05, 0.0007960697985254228, 1.592453736520838e-05, 0.000948925968259573, 0.0003242740058340132, 0.0849439948797226, 0.05776681751012802, 0.12693378329277039, 0.06538298726081848, 0.16325275599956512, 0.0203193798661232, 0.022184433415532112, 0.005647081416100264, 0.006051709409803152, 0.17921918630599976, 0.23090040683746338], [0.011825385503470898, 7.447833468177123e-06, 0.0011164348106831312, 5.4512303904630244e-05, 0.0002963464648928493, 0.00016878968745004386, 0.07729285210371017, 0.089568592607975, 0.08326125890016556, 0.08894028514623642, 0.199104443192482, 0.05309135094285011, 0.04257415980100632, 0.006811525672674179, 0.005406685173511505, 0.17627938091754913, 0.164200559258461], [0.014851618558168411, 1.4912934602762107e-05, 0.0004416220763232559, 2.5228498998330906e-05, 0.0003178699407726526, 0.00014674697013106197, 0.07843803614377975, 0.06741675734519958, 0.13820427656173706, 0.10773537307977676, 0.12484924495220184, 0.03529856353998184, 0.035906169563531876, 0.024636248126626015, 0.018852291628718376, 0.1534470021724701, 0.1994180679321289], [0.11769552528858185, 0.0012769204331561923, 0.00969814881682396, 0.010471975430846214, 0.020796360448002815, 0.026143405586481094, 0.0803271159529686, 0.09644545614719391, 0.062458328902721405, 0.033661410212516785, 0.09018903970718384, 0.03864660486578941, 0.03788262978196144, 0.03243815526366234, 0.034032177180051804, 0.17876467108726501, 0.12907209992408752]], [[0.26461121439933777, 0.017166435718536377, 0.006592206656932831, 0.00960161816328764, 0.030011575669050217, 0.12039072066545486, 0.00721179973334074, 0.004566540475934744, 0.004937591031193733, 0.006667617708444595, 0.007033712230622768, 0.004417870193719864, 0.00452926242724061, 0.016428694128990173, 0.005063034128397703, 0.023966584354639053, 0.46680349111557007], [0.03358263894915581, 0.07644867151975632, 0.09019967913627625, 0.15920794010162354, 0.12433610111474991, 0.11183230578899384, 0.0428570955991745, 0.021422673016786575, 0.031259935349226, 0.02807634510099888, 0.04149652644991875, 0.02901819907128811, 0.027653921395540237, 0.037333521991968155, 0.02986946702003479, 0.05036846548318863, 0.06503655016422272], [0.02344432845711708, 0.20144368708133698, 0.11222799867391586, 0.14761227369308472, 0.07611364871263504, 0.08044885098934174, 0.05691268667578697, 0.03150494024157524, 0.03261755779385567, 0.016062619164586067, 0.03865226358175278, 0.029713420197367668, 0.03342355787754059, 0.021020567044615746, 0.02955111861228943, 0.025512956082820892, 0.04373757913708687], [0.04115934669971466, 0.2888142466545105, 0.1385122388601303, 0.03052452951669693, 0.07347355037927628, 0.0663004219532013, 0.029565390199422836, 0.02168787643313408, 0.028078272938728333, 0.031268324702978134, 0.03889071196317673, 0.04167616367340088, 0.029871400445699692, 0.051646679639816284, 0.021268755197525024, 0.03409978374838829, 0.03316231444478035], [0.025896741077303886, 0.2986167371273041, 0.10899991542100906, 0.060506027191877365, 0.09084584563970566, 0.09038882702589035, 0.08142581582069397, 0.015189125202596188, 0.018942832946777344, 0.020284615457057953, 0.028977692127227783, 0.02752707153558731, 0.01816227287054062, 0.01639138162136078, 0.00688531156629324, 0.03247712925076485, 0.05848260223865509], [0.16084358096122742, 0.06840436905622482, 0.05953146889805794, 0.0517047643661499, 0.07307729125022888, 0.14705070853233337, 0.02881721407175064, 0.020036734640598297, 0.024132806807756424, 0.013970880769193172, 0.024266362190246582, 0.023243334144353867, 0.017846837639808655, 0.028768181800842285, 0.011637130752205849, 0.03683875501155853, 0.209829643368721], [0.02869311161339283, 0.05001472309231758, 0.04733578860759735, 0.02417704649269581, 0.023232515901327133, 0.028705552220344543, 0.060714997351169586, 0.08834213763475418, 0.04658058285713196, 0.08889109641313553, 0.07909543067216873, 0.11752187460660934, 0.06280981004238129, 0.06139914691448212, 0.06986716389656067, 0.06544966250658035, 0.057169359177351], [0.03706435114145279, 0.060476917773485184, 0.02895110659301281, 0.02814318612217903, 0.02690582536160946, 0.033242858946323395, 0.13164693117141724, 0.024164119735360146, 0.032039642333984375, 0.04178304597735405, 0.1313357651233673, 0.06910516321659088, 0.054081011563539505, 0.06217849254608154, 0.10351844877004623, 0.06175928935408592, 0.07360377907752991], [0.04289313405752182, 0.03512914478778839, 0.03985102102160454, 0.028400899842381477, 0.019696880131959915, 0.03277750685811043, 0.11509295552968979, 0.0535702183842659, 0.03680168464779854, 0.03984924778342247, 0.08028681576251984, 0.08417563140392303, 0.05075644329190254, 0.06277434527873993, 0.09614360332489014, 0.0565667487680912, 0.1252337098121643], [0.07037367671728134, 0.01978575997054577, 0.01180989108979702, 0.03406139463186264, 0.017154131084680557, 0.033461131155490875, 0.048587024211883545, 0.026450645178556442, 0.022584887221455574, 0.02323472872376442, 0.09395097196102142, 0.043436747044324875, 0.0582120306789875, 0.03841736167669296, 0.12815675139427185, 0.09308072924613953, 0.23724205791950226], [0.017664026468992233, 0.03744593635201454, 0.05232926830649376, 0.020019203424453735, 0.018953921273350716, 0.028537249192595482, 0.09604860097169876, 0.06978863477706909, 0.08502387255430222, 0.0402071513235569, 0.08223967254161835, 0.11267248541116714, 0.10371149331331253, 0.04679330810904503, 0.06917120516300201, 0.053898222744464874, 0.06549567729234695], [0.023518485948443413, 0.06058293581008911, 0.025841709226369858, 0.038973454385995865, 0.019152071326971054, 0.028592413291335106, 0.0849560797214508, 0.048377275466918945, 0.04682822898030281, 0.038771919906139374, 0.09956119954586029, 0.051356952637434006, 0.0990886315703392, 0.0829964429140091, 0.12716661393642426, 0.051873594522476196, 0.07236193865537643], [0.048804618418216705, 0.02385673299431801, 0.021296247839927673, 0.02265043929219246, 0.013404534198343754, 0.02217942476272583, 0.0522601492702961, 0.03178347274661064, 0.04209187999367714, 0.06926386803388596, 0.09891586005687714, 0.06292402744293213, 0.061380669474601746, 0.08563417941331863, 0.1852704882621765, 0.0565180666744709, 0.10176539421081543], [0.046329326927661896, 0.04148407280445099, 0.03340590372681618, 0.02864937297999859, 0.015620235353708267, 0.018903376534581184, 0.0593804270029068, 0.024896681308746338, 0.03573942184448242, 0.05202953889966011, 0.10451361536979675, 0.10715068131685257, 0.10879533737897873, 0.050760868936777115, 0.08335010707378387, 0.10076528787612915, 0.08822579681873322], [0.04684963822364807, 0.043192338198423386, 0.0297569427639246, 0.03009451925754547, 0.015393992885947227, 0.017394572496414185, 0.05820843577384949, 0.04312630742788315, 0.026525480672717094, 0.06179852411150932, 0.10625975579023361, 0.09761931747198105, 0.0645369440317154, 0.09043523669242859, 0.11304239183664322, 0.08988846093416214, 0.06587716192007065], [0.02107069082558155, 0.08743182569742203, 0.030473170801997185, 0.017919158563017845, 0.029382983222603798, 0.03548983484506607, 0.12930242717266083, 0.028258774429559708, 0.030071699991822243, 0.061479274183511734, 0.09814280271530151, 0.06290624290704727, 0.06644333899021149, 0.05673585459589958, 0.04185573011636734, 0.09168578684329987, 0.11135038733482361], [0.2874394953250885, 0.0069820755161345005, 0.005968350451439619, 0.010760568082332611, 0.016831496730446815, 0.05726008117198944, 0.006739205215126276, 0.010293353348970413, 0.013404696248471737, 0.010719546116888523, 0.014849342405796051, 0.01000150479376316, 0.013944784179329872, 0.03752777352929115, 0.015526684932410717, 0.03994519263505936, 0.4418058693408966]], [[0.06279058754444122, 0.001989370910450816, 0.00043082324555143714, 0.0010688735637813807, 0.012801200151443481, 0.8480728268623352, 0.00038117991061881185, 0.00010895432205870748, 6.829927588114515e-05, 4.6898669097572565e-05, 0.00012966438953299075, 4.8444831918459386e-05, 4.225820521241985e-05, 9.819453407544643e-05, 0.00011168413038831204, 0.00040268164593726397, 0.07140807807445526], [0.6095544695854187, 0.03530045971274376, 0.011243660934269428, 0.0020026538986712694, 0.014796772971749306, 0.10829271376132965, 0.00910465233027935, 0.0026991055347025394, 0.0010348001960664988, 0.0006750447792001069, 0.00037880465970374644, 0.0017627798952162266, 0.006706944201141596, 0.011060596443712711, 0.003292281413450837, 0.0014349846169352531, 0.18065936863422394], [0.1310761570930481, 0.6353407502174377, 0.007742743473500013, 0.06383553147315979, 0.0017042997060343623, 0.08534429967403412, 0.0014381648506969213, 0.026256226003170013, 0.0013883357169106603, 0.00035536428913474083, 0.00017774119623936713, 1.8480564904166386e-05, 0.00021673009905498475, 0.00429803691804409, 0.002976189134642482, 0.01910920813679695, 0.01872173883020878], [0.07231564074754715, 0.061171069741249084, 0.6916914582252502, 0.013612167909741402, 0.05845886841416359, 0.015775682404637337, 0.001788326888345182, 0.0010593535844236612, 0.002348918467760086, 0.0006986624794080853, 0.00014118014951236546, 5.5378124670824036e-05, 6.91917011863552e-05, 0.00020107523596379906, 0.005219796672463417, 0.004430647008121014, 0.07096253335475922], [0.09641238301992416, 0.05878857895731926, 0.03915763646364212, 0.5498397946357727, 0.050495777279138565, 0.12967416644096375, 0.0010243240976706147, 0.003609300358220935, 0.0024904338642954826, 0.009181307628750801, 0.003920629620552063, 0.0011555594392120838, 7.28031009202823e-05, 0.0004959471407346427, 0.0002366639528190717, 0.014725680463016033, 0.038719020783901215], [0.19205789268016815, 0.0049704909324646, 0.014801552519202232, 0.020934423431754112, 0.43205714225769043, 0.13611146807670593, 0.017841501161456108, 0.0010490135755389929, 0.0023966438602656126, 0.003304622136056423, 0.012721491977572441, 0.005363087169826031, 0.0023309611715376377, 0.00046598975313827395, 0.0006122963386587799, 0.0013885712251067162, 0.15159285068511963], [0.09169766306877136, 0.0036417788360267878, 0.0003162232751492411, 0.04108762741088867, 0.05289767310023308, 0.6496229767799377, 0.058181896805763245, 0.027376476675271988, 0.0022712904028594494, 0.015574834309518337, 0.012208067812025547, 0.026557931676506996, 0.0021737159695476294, 0.0030982778407633305, 2.373797178734094e-05, 0.0007071129512041807, 0.012562645599246025], [0.09650584310293198, 0.003916118294000626, 0.00017039831436704844, 0.001068446901626885, 0.03776036575436592, 0.33587631583213806, 0.4670522212982178, 0.013815272599458694, 0.019766543060541153, 0.0003938810550607741, 0.0028231691103428602, 0.0003522755578160286, 0.004318665713071823, 0.0008332575089298189, 0.0007996701751835644, 0.00013749241770710796, 0.014410112053155899], [0.05067741498351097, 0.016094502061605453, 0.0006720235687680542, 0.0039070830680429935, 0.002686702413484454, 0.10289926081895828, 0.06984174996614456, 0.6696970462799072, 0.0236582700163126, 0.03596636280417442, 0.0012176953023299575, 0.000945785955991596, 0.0007413291023112833, 0.010665730573236942, 0.0030385213904082775, 0.0025141423102468252, 0.004776305053383112], [0.02772914618253708, 0.00952720083296299, 0.011417985893785954, 0.0054349517449736595, 0.0045674643479287624, 0.003965947311371565, 0.013456203043460846, 0.06533179432153702, 0.7528318166732788, 0.014536365866661072, 0.04073861986398697, 0.0005917333764955401, 0.004096685908734798, 0.001127737108618021, 0.020002497360110283, 0.011695674620568752, 0.012948067858815193], [0.008576709777116776, 0.000769374193623662, 0.0047471970319747925, 0.00501475902274251, 0.006225347053259611, 0.004293285775929689, 0.0025879410095512867, 0.036608316004276276, 0.16842696070671082, 0.702116072177887, 0.00819812435656786, 0.01747026853263378, 0.0005512582720257342, 0.002340561943128705, 0.0011331340065225959, 0.016705218702554703, 0.014235555194318295], [0.04675876349210739, 0.00015519242151640356, 0.00010375426791142672, 0.005068828817456961, 0.02063092403113842, 0.014632251113653183, 0.002137262374162674, 0.0012451475486159325, 0.019181396812200546, 0.03355468437075615, 0.6721585392951965, 0.014147639274597168, 0.017675617709755898, 0.0008533475338481367, 0.002716936869546771, 0.016581641510128975, 0.13239803910255432], [0.02157851867377758, 0.00022062430798541754, 0.00014380838547367603, 0.0005797418998554349, 0.004618954844772816, 0.02629202790558338, 0.0013957822229713202, 0.006248930003494024, 0.0017042146064341068, 0.04913966357707977, 0.02825460582971573, 0.7574753165245056, 0.02206341177225113, 0.02061719261109829, 0.0021997145377099514, 0.018065666779875755, 0.03940186649560928], [0.1237463653087616, 0.002179550239816308, 0.0001834210561355576, 0.0001250946952495724, 0.004635443910956383, 0.019564250484108925, 0.015573718585073948, 0.001754745957441628, 0.005599053576588631, 0.0008370638242922723, 0.021705951541662216, 0.05526755750179291, 0.5377824902534485, 0.03954688832163811, 0.030990436673164368, 0.006932501681149006, 0.13357548415660858], [0.1928655058145523, 0.004013370722532272, 0.00013540068175643682, 8.433483162662014e-05, 0.00029905568226240575, 0.027646757662296295, 0.0026867184787988663, 0.031001880764961243, 0.002488060388714075, 0.0032093569170683622, 0.0015351265901699662, 0.029926659539341927, 0.05598921328783035, 0.38963785767555237, 0.024196337908506393, 0.1255178153514862, 0.10876655578613281], [0.07061485201120377, 0.01354990154504776, 0.011902213096618652, 0.0007894430309534073, 0.000962406920734793, 0.0014892026083543897, 0.0027991377282887697, 0.004600489977747202, 0.030655188485980034, 0.004071637988090515, 0.00442681647837162, 0.002857533749192953, 0.03360523283481598, 0.03747963160276413, 0.5302547812461853, 0.1334885209798813, 0.11645302176475525], [0.4395171105861664, 0.005714294966310263, 0.0016688551986590028, 0.0078268526121974, 0.002835268620401621, 0.014941760338842869, 0.0005010463064536452, 0.0016964926617220044, 0.0033159377053380013, 0.010066747665405273, 0.0070568653754889965, 0.0038310838863253593, 0.0019258562242612243, 0.012031549587845802, 0.00838306825608015, 0.2722003161907196, 0.2064867913722992]], [[0.3568624258041382, 0.013911309652030468, 0.0050085498951375484, 0.011925121769309044, 0.10721224546432495, 0.11778959631919861, 0.001532634487375617, 0.002815303159877658, 0.003677779110148549, 0.0008320346241816878, 0.001990637043491006, 0.0022544385865330696, 0.0011575940297916532, 0.006454457063227892, 0.0030831308104097843, 0.058034490793943405, 0.30545827746391296], [0.34747743606567383, 0.07759817689657211, 0.01877429708838463, 0.08084410429000854, 0.05034142732620239, 0.061560649424791336, 0.013025074265897274, 0.020825613290071487, 0.011907448060810566, 0.012832105159759521, 0.01061904989182949, 0.008969509974122047, 0.00580500066280365, 0.024368934333324432, 0.03194766119122505, 0.03619498014450073, 0.1869085133075714], [0.2535113990306854, 0.07890763878822327, 0.019777540117502213, 0.15545707941055298, 0.029620468616485596, 0.06888552755117416, 0.03778612241148949, 0.03553386777639389, 0.008871911093592644, 0.024449745193123817, 0.0211911853402853, 0.011831876821815968, 0.013402587734162807, 0.032519642263650894, 0.03935797140002251, 0.01882193423807621, 0.15007349848747253], [0.3681919574737549, 0.0466725155711174, 0.014470899477601051, 0.03742222860455513, 0.03371681272983551, 0.0634758397936821, 0.013662314973771572, 0.011545948684215546, 0.005712520331144333, 0.0016864370554685593, 0.0024721394293010235, 0.006220338866114616, 0.00135180598590523, 0.021411985158920288, 0.011355284601449966, 0.021742787212133408, 0.33888810873031616], [0.2779431641101837, 0.11888740211725235, 0.025160038843750954, 0.10322818905115128, 0.0392608679831028, 0.08669538795948029, 0.01780109666287899, 0.013766658492386341, 0.006974983029067516, 0.01570776477456093, 0.01190265640616417, 0.010999037884175777, 0.005188773386180401, 0.041419606655836105, 0.029498830437660217, 0.021637262776494026, 0.17392823100090027], [0.37894052267074585, 0.04131240025162697, 0.011247151531279087, 0.030888421460986137, 0.06587128341197968, 0.11419679969549179, 0.0038641057908535004, 0.00720290606841445, 0.005829175002872944, 0.0024753280449658632, 0.005037091672420502, 0.004991243127733469, 0.0028375189285725355, 0.011602373793721199, 0.0070965769700706005, 0.037126682698726654, 0.26948049664497375], [0.16038495302200317, 0.027804985642433167, 0.013953070156276226, 0.036443788558244705, 0.005565715953707695, 0.02300882712006569, 0.06224538013339043, 0.09515330940485, 0.013675815425813198, 0.07779721170663834, 0.04836393892765045, 0.034168388694524765, 0.03524944931268692, 0.06697148829698563, 0.1216161698102951, 0.020891211926937103, 0.1567062884569168], [0.21506035327911377, 0.032265521585941315, 0.007582849822938442, 0.019574591889977455, 0.01596854068338871, 0.04615416005253792, 0.03577365726232529, 0.053130585700273514, 0.011833755299448967, 0.045827239751815796, 0.02192101441323757, 0.016256945207715034, 0.010402020066976547, 0.03359613195061684, 0.07099985331296921, 0.043298691511154175, 0.3203541934490204], [0.19477543234825134, 0.0663127601146698, 0.01516537182033062, 0.05189228057861328, 0.01613384298980236, 0.04050733894109726, 0.06711521744728088, 0.03929784893989563, 0.009556359611451626, 0.059902124106884, 0.036409731954336166, 0.02990991435945034, 0.02227029763162136, 0.09056109935045242, 0.0508459247648716, 0.036462850868701935, 0.17288152873516083], [0.35632944107055664, 0.005214271135628223, 0.001611948013305664, 0.00586016196757555, 0.019133994355797768, 0.052182335406541824, 0.013717521913349628, 0.024877890944480896, 0.007913557812571526, 0.008113897405564785, 0.007724805269390345, 0.004979907535016537, 0.001681417808867991, 0.01908506639301777, 0.012499240227043629, 0.06556770205497742, 0.393506795167923], [0.15642057359218597, 0.09389612078666687, 0.019896509125828743, 0.09113401919603348, 0.009662593714892864, 0.028933821246027946, 0.05671689659357071, 0.03407388925552368, 0.011340836063027382, 0.07660941034555435, 0.025514928624033928, 0.041700128465890884, 0.0292489156126976, 0.09203396737575531, 0.07310149073600769, 0.02686540223658085, 0.13285040855407715], [0.2587057650089264, 0.02785935439169407, 0.009265510365366936, 0.05871899053454399, 0.014517503790557384, 0.0376284085214138, 0.04505188763141632, 0.04264748468995094, 0.009809277951717377, 0.04291433468461037, 0.026956280693411827, 0.014720158651471138, 0.019691210240125656, 0.06383086740970612, 0.055752530694007874, 0.03870176896452904, 0.23322860896587372], [0.1613772213459015, 0.04036039859056473, 0.026720236986875534, 0.1035674512386322, 0.011218982748687267, 0.026022303849458694, 0.11283951997756958, 0.06450699269771576, 0.01158924400806427, 0.07983876019716263, 0.029756717383861542, 0.0445871576666832, 0.01777040958404541, 0.06904475390911102, 0.03759000450372696, 0.028446996584534645, 0.13476282358169556], [0.31266531348228455, 0.021444739773869514, 0.003582862438634038, 0.021843142807483673, 0.03783903643488884, 0.04080061987042427, 0.029927652329206467, 0.01304826233536005, 0.016132956370711327, 0.010241991840302944, 0.010568602941930294, 0.009442227892577648, 0.004086833912879229, 0.043082598596811295, 0.012967671267688274, 0.12472344189882278, 0.28760215640068054], [0.41859567165374756, 0.006231355015188456, 0.0008647527429275215, 0.004314819350838661, 0.015177205204963684, 0.041632119566202164, 0.007315442431718111, 0.01972176320850849, 0.008111117407679558, 0.02147935889661312, 0.0077655320055782795, 0.003409437835216522, 0.0045623453333973885, 0.008251575753092766, 0.01046386081725359, 0.05927669629454613, 0.3628268837928772], [0.2516283690929413, 0.04901726171374321, 0.013093267567455769, 0.03929145261645317, 0.01923528127372265, 0.04797731712460518, 0.044758789241313934, 0.02643277309834957, 0.012682168744504452, 0.042633410543203354, 0.028016965836286545, 0.022286618128418922, 0.012068894691765308, 0.0964018777012825, 0.04805371165275574, 0.037859562784433365, 0.2085622400045395], [0.39780470728874207, 0.007354907225817442, 0.003677076892927289, 0.006238648667931557, 0.03324583172798157, 0.07787906378507614, 0.003372179577127099, 0.007327673025429249, 0.0070974878035485744, 0.0019056493183597922, 0.0058624763041734695, 0.004429135005921125, 0.003020842559635639, 0.00940390769392252, 0.004143223632127047, 0.05399293452501297, 0.37324416637420654]], [[0.29688066244125366, 0.07324723899364471, 0.039512999355793, 0.08306016027927399, 0.04335775971412659, 0.1117655336856842, 0.01697692833840847, 0.039568204432725906, 0.016204237937927246, 0.010490257292985916, 0.016411352902650833, 0.02013288624584675, 0.009290164336562157, 0.018011918291449547, 0.01257344800978899, 0.028230838477611542, 0.16428551077842712], [0.05794452130794525, 0.1023227646946907, 0.08064406365156174, 0.1466486155986786, 0.05314210057258606, 0.02706611156463623, 0.01957699842751026, 0.03917326778173447, 0.025189315900206566, 0.048151444643735886, 0.020597411319613457, 0.047074172645807266, 0.018623171374201775, 0.1638081669807434, 0.058147698640823364, 0.0603499710559845, 0.031540270894765854], [0.3833606243133545, 0.05791599676012993, 0.021340440958738327, 0.07058146595954895, 0.05055805668234825, 0.11218404769897461, 0.009670926257967949, 0.014284714125096798, 0.011975986883044243, 0.005049111321568489, 0.021097948774695396, 0.01077825017273426, 0.016680797562003136, 0.006975931115448475, 0.022992918267846107, 0.03318900987505913, 0.1513638198375702], [0.19062794744968414, 0.2359861433506012, 0.06735526025295258, 0.13717177510261536, 0.047806281596422195, 0.05325869843363762, 0.011353465728461742, 0.01552253682166338, 0.010602360591292381, 0.010236287489533424, 0.012859173119068146, 0.020560279488563538, 0.013956154696643353, 0.02624613605439663, 0.06698273867368698, 0.02924419194459915, 0.050230562686920166], [0.10628221184015274, 0.08782371878623962, 0.09392767399549484, 0.09349033981561661, 0.16909034550189972, 0.06476887315511703, 0.01948290318250656, 0.03304407000541687, 0.02823111228644848, 0.019335748627781868, 0.031393229961395264, 0.030638404190540314, 0.027830468490719795, 0.023232819512486458, 0.03535811975598335, 0.09652204066514969, 0.03954782336950302], [0.3100374937057495, 0.07441438734531403, 0.05563921481370926, 0.09877707809209824, 0.04665528982877731, 0.08526183664798737, 0.012671194970607758, 0.0304051972925663, 0.01339750550687313, 0.011898435652256012, 0.0174797885119915, 0.023453379049897194, 0.008742361329495907, 0.025700626894831657, 0.02097313478589058, 0.03509686887264252, 0.1293962448835373], [0.20305262506008148, 0.013368950225412846, 0.017997993156313896, 0.06453602015972137, 0.05259348079562187, 0.050758328288793564, 0.021411091089248657, 0.06501147150993347, 0.02476559765636921, 0.019302302971482277, 0.029144035652279854, 0.029670167714357376, 0.02517613209784031, 0.02188747748732567, 0.023291289806365967, 0.2115860879421234, 0.12644700706005096], [0.3515642285346985, 0.016130711883306503, 0.02286619134247303, 0.03531563654541969, 0.019192228093743324, 0.060160521417856216, 0.0050302655436098576, 0.007532850839197636, 0.013960539363324642, 0.01849815808236599, 0.018343264237046242, 0.04483592510223389, 0.012230047024786472, 0.02666623331606388, 0.01740517094731331, 0.042761363089084625, 0.2875066101551056], [0.42089566588401794, 0.007024360354989767, 0.007045472972095013, 0.018835632130503654, 0.017778649926185608, 0.0617198720574379, 0.008949032053351402, 0.019888369366526604, 0.005910040810704231, 0.009981553070247173, 0.014638948254287243, 0.01587132178246975, 0.010684446431696415, 0.01049543172121048, 0.0233346838504076, 0.04657958447933197, 0.3003668785095215], [0.36956727504730225, 0.010945332236588001, 0.005928685422986746, 0.027969777584075928, 0.01224195770919323, 0.03902499005198479, 0.02134709618985653, 0.06725490093231201, 0.018358655273914337, 0.014979873783886433, 0.013308809138834476, 0.015759967267513275, 0.030354956164956093, 0.013042343780398369, 0.02908357046544552, 0.06184030696749687, 0.24899157881736755], [0.39351773262023926, 0.02501133643090725, 0.009169275872409344, 0.02767465077340603, 0.024627482518553734, 0.042182039469480515, 0.01662854664027691, 0.03212325647473335, 0.015969276428222656, 0.014597187750041485, 0.006996230222284794, 0.018295196816325188, 0.018728526309132576, 0.037359464913606644, 0.06739906966686249, 0.08375801891088486, 0.16596271097660065], [0.3564445674419403, 0.027235988527536392, 0.008528920821845531, 0.02608373574912548, 0.018583253026008606, 0.053578149527311325, 0.019063778221607208, 0.030993493273854256, 0.019983451813459396, 0.014704236760735512, 0.027121812105178833, 0.01383071206510067, 0.022893644869327545, 0.025382230058312416, 0.05148820951581001, 0.06769341975450516, 0.21639035642147064], [0.31823471188545227, 0.011967271566390991, 0.022139038890600204, 0.05398344621062279, 0.017076067626476288, 0.05089343339204788, 0.013083713129162788, 0.04316495358943939, 0.011958089657127857, 0.014848888851702213, 0.026955774053931236, 0.031585343182086945, 0.007937820628285408, 0.015375496819615364, 0.02986447885632515, 0.05739455297589302, 0.2735368311405182], [0.14322692155838013, 0.041115447878837585, 0.012787580490112305, 0.0754246637225151, 0.008491849526762962, 0.030816199257969856, 0.039039868861436844, 0.06849194318056107, 0.028548674657940865, 0.06798380613327026, 0.020328233018517494, 0.038334671407938004, 0.03578316420316696, 0.11656654626131058, 0.08302340656518936, 0.03842618316411972, 0.15161071717739105], [0.3288458287715912, 0.004670624155551195, 0.016182245686650276, 0.03983091190457344, 0.00703067472204566, 0.03531663119792938, 0.012377430684864521, 0.04621674492955208, 0.01606633886694908, 0.022669076919555664, 0.028253156691789627, 0.056762415915727615, 0.013663187623023987, 0.04736163094639778, 0.003648152807727456, 0.038793861865997314, 0.2823111414909363], [0.08697562664747238, 0.023235879838466644, 0.02794524095952511, 0.03009216859936714, 0.07578889280557632, 0.0361250564455986, 0.03587188571691513, 0.05239810794591904, 0.03631522133946419, 0.04915749281644821, 0.051677726209163666, 0.05926511064171791, 0.054058369249105453, 0.0776873454451561, 0.06013382226228714, 0.18247076869010925, 0.06080133467912674], [0.42241203784942627, 0.017957231029868126, 0.013878194615244865, 0.03115321323275566, 0.017311476171016693, 0.05754765123128891, 0.01399206556379795, 0.04858720302581787, 0.012654037214815617, 0.012982060201466084, 0.02213456854224205, 0.023837164044380188, 0.007937846705317497, 0.03436515852808952, 0.01621725969016552, 0.042688220739364624, 0.20434466004371643]], [[0.3933342695236206, 0.034888435155153275, 0.01204481441527605, 0.01908121630549431, 0.0581289567053318, 0.08070462197065353, 0.060737382620573044, 0.019878162071108818, 0.016648193821310997, 0.0042229583486914635, 0.003943759948015213, 0.004889685660600662, 0.003185809822753072, 0.009971040301024914, 0.007707389071583748, 0.09241418540477753, 0.1782190352678299], [0.13508930802345276, 0.18409599363803864, 0.5288761258125305, 0.005942090414464474, 0.0724276676774025, 0.006721590645611286, 0.0003648030397016555, 0.003092197235673666, 0.004751451313495636, 0.0006433119415305555, 0.0006417717668227851, 2.2340287614497356e-05, 3.520640575516154e-06, 0.0005082102725282311, 0.002627108246088028, 0.006800524424761534, 0.04739203676581383], [0.012628666125237942, 0.0001845367660280317, 0.00070441939169541, 0.9654712677001953, 0.004474303685128689, 0.008905056864023209, 4.824336429010145e-06, 1.2637803592951968e-05, 8.991297363536432e-05, 5.7184162869816646e-05, 4.391416587168351e-05, 1.592050102772191e-05, 2.0383147784741595e-05, 8.351334145118017e-06, 1.7936716858457658e-06, 0.0034115156158804893, 0.003965260926634073], [0.10319345444440842, 0.00033550194348208606, 0.008194470778107643, 0.0030044401064515114, 0.7785578370094299, 0.0330028273165226, 0.003226944711059332, 0.0001576924551045522, 0.00029529223684221506, 2.5727787942741998e-05, 0.0002523244183976203, 0.00033129705116152763, 1.4895979802531656e-05, 1.0583664334262721e-05, 5.4547931540582795e-06, 0.0005041449912823737, 0.06888706237077713], [0.12973202764987946, 0.005275191739201546, 5.3327563364291564e-05, 0.01189812645316124, 0.027722034603357315, 0.7474089860916138, 0.04682876542210579, 0.017398755997419357, 0.00045562899322248995, 0.000254116952419281, 0.0015183172654360533, 0.0013550875009968877, 0.00026201200671494007, 0.00020255698473192751, 7.527886282332474e-06, 0.0008988948538899422, 0.008728742599487305], [0.17070311307907104, 0.012777110561728477, 0.005384554620832205, 0.0008276884909719229, 0.06889774650335312, 0.06599707901477814, 0.6002329587936401, 0.04055622220039368, 0.007507918402552605, 0.00016664598661009222, 0.00043626638944260776, 0.0006783026619814336, 0.0020855676848441362, 0.0011825499823316932, 0.001117862295359373, 0.0005072503699921072, 0.020941177383065224], [0.1201796606183052, 0.006196539383381605, 0.0006577913882210851, 0.003369213780388236, 0.0018644435331225395, 0.10818707197904587, 0.04378395527601242, 0.6858689188957214, 0.015602749772369862, 0.0006268403958529234, 0.00022834491392131895, 0.0008448391454294324, 0.00018263811944052577, 0.002599201165139675, 0.0001927978009916842, 0.006596030667424202, 0.0030189529061317444], [0.07618267834186554, 0.00040368217742070556, 0.002267856616526842, 0.00023813682491891086, 0.003506273264065385, 0.0017157889669761062, 0.0017280830070376396, 0.009580371901392937, 0.8138898611068726, 0.06016048789024353, 0.006091138813644648, 2.7936748665524647e-05, 6.065626803319901e-05, 0.00042812927858904004, 0.005141024012118578, 0.0025878206361085176, 0.0159901212900877], [0.001712606055662036, 7.665747148166702e-07, 3.7032684758742107e-06, 5.372148280002875e-06, 0.00011482206173241138, 0.00018523311882745475, 1.067826701728336e-06, 0.0006504011689685285, 0.0003663146635517478, 0.9929614663124084, 0.00105656951200217, 5.948811667622067e-05, 3.85370277911079e-08, 2.3033459001453593e-05, 2.4057388145592995e-05, 0.0018680230714380741, 0.0009672307642176747], [0.032544784247875214, 9.216708349413238e-06, 2.9273882319102995e-05, 0.0006070727249607444, 0.02370000071823597, 0.00322984647937119, 0.000982064288109541, 0.00011557460675248876, 0.009805954061448574, 0.0007334898691624403, 0.882483720779419, 0.001193389529362321, 0.00018864867161028087, 1.884635457827244e-05, 1.1818134225904942e-05, 0.003757264232262969, 0.040588945150375366], [0.15256333351135254, 0.00018205509695690125, 7.8066426794976e-05, 0.0008700654725544155, 0.02332397550344467, 0.10011284798383713, 0.0008967045578174293, 0.0032884140964597464, 0.0001300166331930086, 0.001526887877844274, 0.00550546869635582, 0.5301184058189392, 0.006781190168112516, 0.050512880086898804, 4.2674313590396196e-05, 0.008255049586296082, 0.11581197381019592], [0.025492701679468155, 1.8969883967656642e-05, 2.9126740628271364e-06, 0.0001425808441126719, 0.000558426312636584, 0.004033640958368778, 0.0009143415372818708, 5.8475456171436235e-05, 0.00014872355677653104, 4.622554570232751e-06, 0.0002566043986007571, 0.0031674967613071203, 0.9515349864959717, 0.002641383558511734, 0.000490645004902035, 0.00029772764537483454, 0.01023582462221384], [0.09048215299844742, 0.0007720270077697933, 0.00016122180386446416, 0.0004572623292915523, 0.00014552472566720098, 0.010945751331746578, 0.0003703818074427545, 0.007539424113929272, 0.0003298783558420837, 0.0001344384072581306, 1.6530349967069924e-05, 0.03139014542102814, 0.023322027176618576, 0.7391205430030823, 0.007631265092641115, 0.07161366939544678, 0.015567728318274021], [0.0200788713991642, 0.0001018438779283315, 0.0003326456353534013, 1.3291162758832797e-05, 0.0003301249525975436, 0.00013686998863704503, 0.00015452649677172303, 8.312991849379614e-05, 0.0016345245530828834, 0.00021108057990204543, 0.0007727820193395019, 2.0851450244663283e-05, 0.0004776407440658659, 0.008725943975150585, 0.9344054460525513, 0.010326224379241467, 0.02219420112669468], [0.091822050511837, 0.0005151398363523185, 0.00012293084000702947, 0.00029091775650158525, 0.0002305850211996585, 0.0009624570375308394, 4.2864658098551445e-06, 0.0004057272744830698, 0.00048084199079312384, 0.0019781868904829025, 0.00024447435862384737, 0.00018830968474503607, 1.7934265997610055e-05, 0.0019875785801559687, 0.00584026426076889, 0.8238661885261536, 0.07104212790727615], [0.07156739383935928, 0.0002544325834605843, 0.0043623135425150394, 0.001987745054066181, 0.02194822207093239, 0.0006779231480322778, 0.0003374176740180701, 2.9193368391133845e-05, 0.0005694561405107379, 0.0017432712484151125, 0.0064412313513457775, 0.0011849214788526297, 0.0009548672824166715, 0.00011870324669871479, 0.003934534732252359, 0.08323323726654053, 0.8006550669670105], [0.262682169675827, 0.010851199738681316, 0.001039247028529644, 0.017987795174121857, 0.032413069158792496, 0.15254616737365723, 0.009361224249005318, 0.004420773591846228, 0.0004711012588813901, 0.001578588387928903, 0.0038130430039018393, 0.023411929607391357, 0.00396988820284605, 0.00994405522942543, 0.001542041078209877, 0.2694286108016968, 0.1945391148328781]]], [[[0.1055656149983406, 0.025064393877983093, 0.03542523458600044, 0.03466371074318886, 0.06655003875494003, 0.07431600242853165, 0.03531840071082115, 0.04804662615060806, 0.030069103464484215, 0.043322451412677765, 0.049868129193782806, 0.04212965816259384, 0.0553847998380661, 0.052069615572690964, 0.04742612689733505, 0.1074286624789238, 0.14735136926174164], [0.11433883756399155, 0.07326358556747437, 0.01322005782276392, 0.000922212318982929, 0.0708538144826889, 0.07613370567560196, 0.03281063959002495, 0.004624652676284313, 0.006250510457903147, 0.005515872035175562, 0.006486202124506235, 0.010672400705516338, 0.0026395737659186125, 0.006572724785655737, 0.017543386667966843, 0.10324665158987045, 0.454905241727829], [0.11604384332895279, 0.0025428547523915768, 0.11402982473373413, 0.0027145303320139647, 0.024172436445951462, 0.08129166066646576, 0.01182381808757782, 0.014523028396070004, 0.03665337711572647, 0.0017382224323228002, 0.01125158928334713, 0.2895936667919159, 0.06819130480289459, 0.00351566169410944, 0.009114591404795647, 0.06967419385910034, 0.14312532544136047], [0.08090180158615112, 0.0011553653748705983, 0.01032045017927885, 0.23778758943080902, 0.028318284079432487, 0.0654764249920845, 0.02849689871072769, 0.002877604216337204, 0.004064060281962156, 0.006111603230237961, 0.01562630385160446, 0.007456456311047077, 0.0061655668541789055, 0.007936607114970684, 0.005207771901041269, 0.04941743239760399, 0.44267982244491577], [0.12217037379741669, 0.006354343146085739, 0.019054459407925606, 0.007589865010231733, 0.06226557493209839, 0.10727337002754211, 0.03313711658120155, 0.023265209048986435, 0.016756223514676094, 0.009404309093952179, 0.017418140545487404, 0.023067422211170197, 0.013167251832783222, 0.02391057275235653, 0.025304971262812614, 0.3382536470890045, 0.15160708129405975], [0.12788942456245422, 0.02130606584250927, 0.055592481046915054, 0.014111367985606194, 0.084062859416008, 0.05914361774921417, 0.04127974435687065, 0.03566398844122887, 0.03845169022679329, 0.018006080761551857, 0.0449090376496315, 0.029744459316134453, 0.034930672496557236, 0.024447787553071976, 0.04423319548368454, 0.1501806080341339, 0.1760469228029251], [0.1466589868068695, 0.002387640066444874, 0.007375199347734451, 0.0022642596159130335, 0.05287127569317818, 0.10509631037712097, 0.1834573596715927, 0.0038068932481110096, 0.0035719522275030613, 0.0022351862862706184, 0.010992196388542652, 0.00851156935095787, 0.00043109580292366445, 0.0009019650751724839, 0.0006403680890798569, 0.24656039476394653, 0.22223727405071259], [0.13239865005016327, 0.008414806798100471, 0.026519589126110077, 0.0012022295268252492, 0.11712872982025146, 0.06254125386476517, 0.016929058358073235, 0.14219176769256592, 0.04042086750268936, 0.003312892047688365, 0.025661630555987358, 0.014140404760837555, 0.005753776058554649, 0.002185217337682843, 0.021469224244356155, 0.14841938018798828, 0.23131045699119568], [0.2171882688999176, 0.01673092320561409, 0.021888596937060356, 0.001221116166561842, 0.06904876232147217, 0.11344527453184128, 0.0043722703121602535, 0.013627368956804276, 0.26324984431266785, 0.0026827461551874876, 0.003667099168524146, 0.017256086692214012, 0.002551903948187828, 0.0025347773917019367, 0.0056152865290641785, 0.07625101506710052, 0.16866862773895264], [0.12396314740180969, 0.0035114616621285677, 0.007935414090752602, 0.004098583944141865, 0.1772335171699524, 0.1924007534980774, 0.007218934595584869, 0.003979271277785301, 0.01270357146859169, 0.09577466547489166, 0.033248547464609146, 0.0016499873017892241, 0.013423926196992397, 0.0015423770528286695, 0.0052873678505420685, 0.08998686820268631, 0.22604160010814667], [0.2226586937904358, 0.002540158573538065, 0.0061005945317447186, 0.0014386045513674617, 0.06497099995613098, 0.15095552802085876, 0.018965745344758034, 0.008038551546633244, 0.0021455802489072084, 0.009431306272745132, 0.17945553362369537, 0.0023609790951013565, 0.0007911464781500399, 0.0004965737462043762, 0.0004292828089091927, 0.04414951056241989, 0.2850711941719055], [0.10350905358791351, 0.006215955596417189, 0.39996975660324097, 0.0034191280137747526, 0.06152329593896866, 0.04438208416104317, 0.005470839329063892, 0.005662121344357729, 0.049653008580207825, 0.0007889033877290785, 0.0033340253867208958, 0.0637459084391594, 0.06654766947031021, 0.001108734868466854, 0.006277458276599646, 0.05739843100309372, 0.12099356949329376], [0.1363063007593155, 0.0010878448374569416, 0.06804521381855011, 0.0032870578579604626, 0.05124838650226593, 0.13462646305561066, 0.0023385235108435154, 0.0019271388882771134, 0.007160313427448273, 0.0035209637135267258, 0.0022651171311736107, 0.04351837933063507, 0.26813799142837524, 0.001982895191758871, 0.0034116865135729313, 0.07179564237594604, 0.1993401199579239], [0.09806780517101288, 0.020996244624257088, 0.023507827892899513, 0.00833161547780037, 0.12668907642364502, 0.12020160257816315, 0.004882258363068104, 0.003107747994363308, 0.02045382186770439, 0.009165525436401367, 0.004462139680981636, 0.00751523207873106, 0.010747679509222507, 0.1821277141571045, 0.06589891016483307, 0.044786520302295685, 0.2490582913160324], [0.14628411829471588, 0.006069363560527563, 0.008031260222196579, 0.00038313496042974293, 0.1361089050769806, 0.2931118309497833, 0.0029812201391905546, 0.0028881311882287264, 0.00828949362039566, 0.002519749104976654, 0.0006124643259681761, 0.006673604249954224, 0.0053066685795784, 0.004970797337591648, 0.05798342078924179, 0.07758498936891556, 0.24020078778266907], [0.09051431715488434, 0.009808000177145004, 0.032525960355997086, 0.004461231175810099, 0.3777839243412018, 0.10607052594423294, 0.0594526007771492, 0.01169558521360159, 0.019744809716939926, 0.006637934595346451, 0.013424684293568134, 0.014002375304698944, 0.037562742829322815, 0.004372311290353537, 0.01377201359719038, 0.08481309562921524, 0.11335790157318115], [0.11262708157300949, 0.031281016767024994, 0.038371484726667404, 0.03162408620119095, 0.061547841876745224, 0.13356605172157288, 0.053245387971401215, 0.0544632151722908, 0.04599674046039581, 0.04175027087330818, 0.05606818199157715, 0.041141800582408905, 0.03824782371520996, 0.027455324307084084, 0.024630427360534668, 0.0759950652718544, 0.1319882571697235]], [[0.13483926653862, 0.00794154591858387, 0.01069438923150301, 0.009476752020418644, 0.2647480070590973, 0.05259042978286743, 0.008093183860182762, 0.012756397016346455, 0.017497334629297256, 0.0039648814126849174, 0.01378479041159153, 0.007997001521289349, 0.0054015605710446835, 0.0045149861834943295, 0.005281693302094936, 0.220328226685524, 0.22008956968784332], [0.13491502404212952, 0.0432395413517952, 0.018109038472175598, 0.03925491124391556, 0.14903832972049713, 0.08526957780122757, 0.021820809692144394, 0.0321170911192894, 0.01322576031088829, 0.009590242989361286, 0.009072666987776756, 0.004230941645801067, 0.0035502533428370953, 0.013674934394657612, 0.008677166886627674, 0.05493907630443573, 0.3592747151851654], [0.09793438017368317, 0.05922400951385498, 0.007871370762586594, 0.0949767678976059, 0.11079906672239304, 0.05235522612929344, 0.027713488787412643, 0.0216049924492836, 0.01565319485962391, 0.06292121112346649, 0.03008301369845867, 0.003269786946475506, 0.015924595296382904, 0.020770076662302017, 0.015025395900011063, 0.07197069376707077, 0.2919027507305145], [0.16669903695583344, 0.046225957572460175, 0.03412428870797157, 0.07304810732603073, 0.11353542655706406, 0.08078043162822723, 0.01572670415043831, 0.015307066030800343, 0.01799923926591873, 0.006448692176491022, 0.007649703416973352, 0.004512280225753784, 0.00482745748013258, 0.007786616683006287, 0.002918093930929899, 0.030357254669070244, 0.3720535933971405], [0.10031700134277344, 0.05075714364647865, 0.057394400238990784, 0.05379104986786842, 0.17327487468719482, 0.08756471425294876, 0.0418832041323185, 0.04746070131659508, 0.028763484209775925, 0.008447576314210892, 0.017434770241379738, 0.02327510342001915, 0.020978812128305435, 0.020065441727638245, 0.014260108582675457, 0.07045093923807144, 0.18388070166110992], [0.16192753612995148, 0.012593156658113003, 0.01071931142359972, 0.015635117888450623, 0.25958436727523804, 0.06501878052949905, 0.006118816323578358, 0.01030529011040926, 0.011550725437700748, 0.0031685554422438145, 0.009239708073437214, 0.004319522995501757, 0.005312673281878233, 0.004060098435729742, 0.0033531817607581615, 0.12409969419240952, 0.2929934561252594], [0.11731812357902527, 0.01866474188864231, 0.009180838242173195, 0.029197929427027702, 0.025272786617279053, 0.052803173661231995, 0.02904796414077282, 0.027248185127973557, 0.02698092721402645, 0.04289352148771286, 0.024359876289963722, 0.016433123499155045, 0.02837607078254223, 0.042294781655073166, 0.022834308445453644, 0.04658961668610573, 0.4405040740966797], [0.06532256305217743, 0.04668131843209267, 0.012399153783917427, 0.028830504044890404, 0.02143167518079281, 0.050897080451250076, 0.06112544611096382, 0.0493093766272068, 0.03598668426275253, 0.11753661185503006, 0.04977403208613396, 0.023203184828162193, 0.03935861960053444, 0.08838996291160583, 0.02976732887327671, 0.060386307537555695, 0.21960008144378662], [0.08978912979364395, 0.01869106851518154, 0.004073232412338257, 0.028515666723251343, 0.033487606793642044, 0.04677640646696091, 0.032637160271406174, 0.02186756208539009, 0.007212492171674967, 0.10226788371801376, 0.059471409767866135, 0.007773063611239195, 0.025628745555877686, 0.02923271618783474, 0.018266825005412102, 0.06713604182004929, 0.40717294812202454], [0.1447361707687378, 0.0029538029339164495, 0.0013193258782848716, 0.006280079949647188, 0.01811785064637661, 0.0468001551926136, 0.007996825501322746, 0.016587262973189354, 0.006136986427009106, 0.013749632053077221, 0.012211328372359276, 0.0032194722443819046, 0.013574284501373768, 0.022241661325097084, 0.01110322866588831, 0.04796062037348747, 0.6250113248825073], [0.09198705852031708, 0.02005118317902088, 0.006222816649824381, 0.01472858153283596, 0.02911118045449257, 0.059877075254917145, 0.03198864683508873, 0.041160423308610916, 0.02190437912940979, 0.030771251767873764, 0.011465570889413357, 0.016849637031555176, 0.014399037696421146, 0.05209289863705635, 0.029062263667583466, 0.07298267632722855, 0.4553453028202057], [0.062427081167697906, 0.025435300543904305, 0.0024868925102055073, 0.030387016013264656, 0.026523204520344734, 0.03642180934548378, 0.02743072435259819, 0.03974137827754021, 0.01637393794953823, 0.18674646317958832, 0.04802646115422249, 0.005422111600637436, 0.021886266767978668, 0.07484272867441177, 0.031698666512966156, 0.0816202163696289, 0.2825296223163605], [0.08357585966587067, 0.043469253927469254, 0.006191326305270195, 0.035620514303445816, 0.02697904221713543, 0.05196654424071312, 0.028996961191296577, 0.04420200735330582, 0.020962167531251907, 0.07912471145391464, 0.029478207230567932, 0.01365334540605545, 0.016720006242394447, 0.09225459396839142, 0.06277317553758621, 0.05652850121259689, 0.30750373005867004], [0.09520366787910461, 0.04779127240180969, 0.006920307409018278, 0.024112386628985405, 0.016573939472436905, 0.059878554195165634, 0.023637671023607254, 0.056468404829502106, 0.01910109631717205, 0.09351135045289993, 0.023602260276675224, 0.012752089649438858, 0.04012828692793846, 0.07664397358894348, 0.035823140293359756, 0.04841034859418869, 0.3194412887096405], [0.11777358502149582, 0.013779202476143837, 0.00356060778722167, 0.015877576544880867, 0.03870290890336037, 0.029505712911486626, 0.01827513985335827, 0.026303986087441444, 0.029229382053017616, 0.04334365203976631, 0.03031710907816887, 0.0051886048167943954, 0.02016105316579342, 0.04566862806677818, 0.01681760884821415, 0.13631059229373932, 0.4091845750808716], [0.08689463138580322, 0.019912902265787125, 0.02011452615261078, 0.020991794764995575, 0.060908786952495575, 0.0559779554605484, 0.0406695194542408, 0.06477200239896774, 0.03999593108892441, 0.019921692088246346, 0.032353781163692474, 0.03843838348984718, 0.03186092525720596, 0.05712020769715309, 0.039254698902368546, 0.13638393580913544, 0.2344283014535904], [0.1913052648305893, 0.004431602545082569, 0.003834455506876111, 0.007167846895754337, 0.18947739899158478, 0.0508115328848362, 0.0042748707346618176, 0.005897389724850655, 0.009149828925728798, 0.00406830245628953, 0.010597235523164272, 0.0035837204195559025, 0.0033451414201408625, 0.004661983344703913, 0.003318527014926076, 0.1789919137954712, 0.3250829577445984]], [[0.1769334375858307, 0.028170401230454445, 0.03182874247431755, 0.05582617223262787, 0.06665889918804169, 0.05778585374355316, 0.022627755999565125, 0.023620113730430603, 0.020736198872327805, 0.01666559837758541, 0.025934457778930664, 0.023356160148978233, 0.023066435009241104, 0.04262140393257141, 0.030773570761084557, 0.06459606438875198, 0.2887987196445465], [0.17091915011405945, 0.0018766134744510055, 0.02948022074997425, 0.05172095075249672, 0.08041749149560928, 0.06493788212537766, 0.024952193722128868, 0.024228593334555626, 0.02679130807518959, 0.008959966711699963, 0.05491979047656059, 0.027601944282650948, 0.015567115508019924, 0.039737872779369354, 0.023513460531830788, 0.0859023854136467, 0.26847314834594727], [0.3436984419822693, 0.0067591480910778046, 0.002163770142942667, 0.03809479624032974, 0.03179885819554329, 0.06292237341403961, 0.0026048205327242613, 0.006068396847695112, 0.004127045162022114, 0.005013166926801205, 0.004413444548845291, 0.001441268832422793, 0.0018376036314293742, 0.007102043367922306, 0.003961613401770592, 0.023854339495301247, 0.4541388750076294], [0.23203685879707336, 0.024137895554304123, 0.021973999217152596, 0.007829737849533558, 0.051890138536691666, 0.06896616518497467, 0.03816265985369682, 0.022525859996676445, 0.018819229677319527, 0.008163860067725182, 0.044186871498823166, 0.02851230651140213, 0.025814224034547806, 0.03364944830536842, 0.04213792458176613, 0.043512795120477676, 0.287680059671402], [0.2559733986854553, 0.023419037461280823, 0.010368396528065205, 0.01899646781384945, 0.06976623088121414, 0.07922051846981049, 0.00439239339902997, 0.007394886575639248, 0.0028120994102209806, 0.003689889097586274, 0.01074669323861599, 0.004748942330479622, 0.004044785629957914, 0.006226578261703253, 0.005732421763241291, 0.049539193511009216, 0.4429279863834381], [0.20478208363056183, 0.01696423999965191, 0.022723445668816566, 0.023552028462290764, 0.08240748196840286, 0.06927330046892166, 0.009750062599778175, 0.01157847698777914, 0.009643163532018661, 0.004495956469327211, 0.012923264876008034, 0.00851823017001152, 0.011129196733236313, 0.012998356483876705, 0.01187361590564251, 0.050854772329330444, 0.4365323483943939], [0.26182693243026733, 0.033491864800453186, 0.014378092251718044, 0.02774043381214142, 0.04488104209303856, 0.10624800622463226, 0.003568003885447979, 0.01063734944909811, 0.008349460549652576, 0.019298363476991653, 0.011769470758736134, 0.007631231565028429, 0.01445795688778162, 0.009220756590366364, 0.006419691257178783, 0.045210838317871094, 0.37487053871154785], [0.33280545473098755, 0.009028918109834194, 0.003102061105892062, 0.004582129884511232, 0.05198359861969948, 0.07860130071640015, 0.001945600612089038, 0.002345041371881962, 0.0017032650066539645, 0.00203042128123343, 0.006492869928479195, 0.003064507618546486, 0.0034665365237742662, 0.006216607056558132, 0.0047057997435331345, 0.04052182659506798, 0.4474041163921356], [0.3105676472187042, 0.017825011163949966, 0.00712412828579545, 0.0182899609208107, 0.045733265578746796, 0.05969392508268356, 0.00895120482891798, 0.010970442555844784, 0.0017702073091641068, 0.011463837698101997, 0.013770886696875095, 0.006905155722051859, 0.015613499097526073, 0.014951297082006931, 0.009370934218168259, 0.050391219556331635, 0.39660730957984924], [0.19275102019309998, 0.05570434033870697, 0.02963690087199211, 0.01365986093878746, 0.05390213802456856, 0.07776010036468506, 0.08428864181041718, 0.052396927028894424, 0.0335095152258873, 0.004630375187844038, 0.02988508902490139, 0.025091568008065224, 0.0100826695561409, 0.023127827793359756, 0.015268679708242416, 0.04667322337627411, 0.2516311705112457], [0.2514934837818146, 0.012239529751241207, 0.013190330937504768, 0.016101757064461708, 0.0581575371325016, 0.07042515277862549, 0.009983744472265244, 0.013786626048386097, 0.009760638698935509, 0.007262906525284052, 0.003439305815845728, 0.00560725899413228, 0.006797208916395903, 0.0072825136594474316, 0.00823898147791624, 0.04942962899804115, 0.4568032920360565], [0.3503566384315491, 0.010361061431467533, 0.0023617318365722895, 0.03169173374772072, 0.025771230459213257, 0.07803601026535034, 0.005206767935305834, 0.012505041435360909, 0.0067295655608177185, 0.009034061804413795, 0.007674406282603741, 0.001844566548243165, 0.002526175696402788, 0.009001817554235458, 0.004732786677777767, 0.02670382894575596, 0.41546255350112915], [0.3376699984073639, 0.0082466471940279, 0.006788727827370167, 0.01844550296664238, 0.04012144356966019, 0.06474550068378448, 0.012966403737664223, 0.02728879824280739, 0.019524123519659042, 0.012854577042162418, 0.01095276977866888, 0.004812120459973812, 0.0018031449289992452, 0.006968234200030565, 0.004282881505787373, 0.04122747853398323, 0.38130176067352295], [0.34042882919311523, 0.0705040991306305, 0.016191091388463974, 0.05274156481027603, 0.04926168546080589, 0.06710654497146606, 0.027816826477646828, 0.0325281023979187, 0.014137348160147667, 0.027967315167188644, 0.02766214683651924, 0.01324082724750042, 0.005830180365592241, 0.0076221865601837635, 0.0025754740927368402, 0.04627278074622154, 0.19811300933361053], [0.1895497590303421, 0.011140433140099049, 0.013454999774694443, 0.04112602025270462, 0.0573616661131382, 0.1026126965880394, 0.04801681637763977, 0.020394498482346535, 0.004979691468179226, 0.012268362566828728, 0.04503796622157097, 0.010462048463523388, 0.005985327996313572, 0.003259546123445034, 0.0014619434950873256, 0.04837154224514961, 0.3845166265964508], [0.23679111897945404, 0.018876485526561737, 0.008768056519329548, 0.01453317515552044, 0.07161705195903778, 0.08852089941501617, 0.007243345491588116, 0.01300724409520626, 0.0038650447968393564, 0.005472464952617884, 0.018589390441775322, 0.005966353230178356, 0.004621604457497597, 0.006959233898669481, 0.0052474853582680225, 0.06254960596561432, 0.4273712933063507], [0.1586620807647705, 0.008107038214802742, 0.014610803686082363, 0.014010565355420113, 0.057612430304288864, 0.04706596955657005, 0.011029544286429882, 0.017133891582489014, 0.014586417935788631, 0.0064437477849423885, 0.015323798172175884, 0.009547607973217964, 0.014531709253787994, 0.012618609704077244, 0.011116080917418003, 0.04509245976805687, 0.5425072312355042]], [[0.6127891540527344, 0.003854891983792186, 0.0013076922623440623, 0.0019648373126983643, 0.016475962474942207, 0.3401525020599365, 5.314312147675082e-06, 5.145566888131725e-07, 3.2629856150379055e-07, 2.049137037829496e-08, 1.2645472224903642e-07, 5.107239786639184e-08, 6.669083063570724e-07, 3.5082587146462174e-07, 2.49235995397612e-06, 7.580466444778722e-06, 0.0234374962747097], [1.4182317045197124e-06, 5.513876999430067e-07, 0.9999732971191406, 1.3717796321088827e-07, 7.011729508121789e-07, 1.389322407119309e-10, 1.714445807543541e-10, 3.815942700713393e-11, 5.4933835258452746e-08, 3.5453216751246686e-11, 2.8006044952197905e-14, 1.322269649687492e-16, 4.818102127934331e-15, 3.836692655202409e-14, 1.3190608605384568e-08, 6.810939590096154e-10, 2.3815973690943792e-05], [3.819336846788701e-09, 3.805362780440191e-08, 2.1795842997107684e-07, 0.9999991655349731, 1.7268837382289348e-07, 6.056679069388338e-08, 1.1987893825131293e-14, 1.9794387483285103e-14, 2.2017835471510594e-11, 3.2399392058124477e-09, 1.351623035716898e-09, 5.744774637548786e-14, 1.2261070745205077e-17, 1.030456343795443e-15, 2.3159060271311623e-15, 2.1326890475847904e-07, 9.943012457824807e-08], [1.213104923181163e-07, 4.703439786084285e-13, 1.6520947610842995e-05, 2.925575870449393e-07, 0.9998331069946289, 3.2300542329721793e-07, 5.581958895106709e-09, 9.89723905790523e-16, 2.1595160555609727e-13, 1.044434157215779e-11, 3.1021178681367445e-11, 6.340386115438745e-12, 4.566812694065808e-14, 6.736407948170066e-19, 1.2013173152865183e-16, 1.9747764248769385e-15, 0.00014959112741053104], [0.00015902228187769651, 1.856137146205583e-07, 1.1145798910552895e-12, 2.1527115677599795e-05, 3.273089896538295e-05, 0.9997782111167908, 1.2492482710513286e-06, 5.177046702442567e-08, 1.9207261649223373e-12, 4.0391016919993916e-11, 9.770163567068835e-10, 7.066904572639032e-08, 2.7483368358893756e-10, 1.675288796576524e-10, 4.903554795355175e-17, 3.04380002105753e-12, 7.062842541927239e-06], [0.9999480247497559, 5.304843853082275e-08, 1.5592703448419343e-06, 5.798874713747182e-10, 4.8353165766457096e-05, 4.941200586472405e-07, 1.2175249253232323e-07, 1.0908791203689816e-08, 4.7333572616992114e-09, 1.799814746024364e-12, 6.1885427338204124e-12, 1.0810099343450119e-11, 1.7139326757842355e-07, 4.762796823598592e-10, 2.939613885644121e-09, 3.78142544945996e-14, 1.2844177490478614e-06], [3.9605578194823465e-07, 8.825168151815888e-07, 2.405895274670833e-11, 8.66083940675999e-11, 7.205474281471447e-13, 1.0903065685852198e-06, 3.726595878106309e-06, 0.9999598264694214, 3.456237664067885e-06, 7.457197170879226e-08, 4.0839393498914855e-12, 8.982349863906336e-10, 6.50821965764159e-11, 3.0560313462046906e-05, 3.117407165742492e-10, 1.6648010747744024e-09, 8.4659816934618e-09], [2.8694154252661974e-07, 2.4175896840006317e-09, 7.065142426654347e-07, 6.554092771976494e-12, 5.163639515970431e-10, 1.0322788457362009e-10, 3.657384695543442e-06, 3.5122596386827354e-07, 0.9999536275863647, 9.462890915301614e-09, 6.23204954308676e-08, 1.4899585674943948e-14, 9.413202439745305e-10, 3.5436702183755386e-11, 2.1122965335962363e-05, 2.1639743330581496e-09, 2.0233730538166128e-05], [3.682693705542306e-09, 3.828038580566684e-12, 4.86717688374938e-09, 1.8281129143815633e-07, 9.202139050756841e-11, 9.376590615062241e-10, 5.585815013656181e-13, 3.653839826256444e-07, 6.682127491330903e-07, 0.9999476671218872, 6.69522933094413e-07, 3.0644517323707987e-07, 3.1556256495672216e-14, 1.00372901101764e-08, 3.9616596114733227e-10, 4.9644571845419705e-05, 3.620488939759525e-07], [2.81960609527232e-07, 7.383781357606783e-14, 1.2137442743573312e-13, 4.188408786465203e-10, 1.2808509382011835e-06, 3.517546360853885e-07, 5.503318334376672e-08, 1.0946479860789518e-13, 5.949947308181436e-07, 2.433611712149286e-07, 0.998055100440979, 4.886623173661064e-06, 0.00012140740000177175, 2.0162614633445486e-11, 7.782630651043121e-10, 1.2167862273315677e-08, 0.0018158606253564358], [7.217179387453143e-08, 1.1648733362721198e-14, 1.8339097635508648e-15, 1.8974859389894044e-13, 1.1647879993859078e-08, 4.017903847852722e-06, 1.9464816425340814e-09, 1.1362306651108156e-09, 5.543346814559924e-14, 9.753944141266402e-06, 2.943217509709939e-07, 0.9998980760574341, 3.864855898427777e-05, 5.462270110001555e-06, 1.599885154912606e-11, 2.3452644271060308e-09, 4.3676223867805675e-05], [4.283775112412513e-09, 5.2202037451824085e-14, 1.0133519816712297e-18, 3.2213351611940992e-18, 4.072184863618267e-12, 6.65496724394643e-09, 3.653431335237656e-08, 3.027632398261426e-13, 1.4976873907723842e-12, 8.078735976631973e-14, 2.171510118387232e-07, 1.9159353996656137e-06, 0.999997615814209, 2.377275620801811e-07, 1.2988529363155976e-08, 1.2801507900603304e-12, 5.248063317253582e-08], [6.082473760216089e-07, 1.1490426388149899e-08, 2.377298763389917e-15, 2.314481741230354e-15, 2.0027865074234377e-16, 5.994725427171943e-08, 1.7086502351881805e-11, 8.638037797936704e-06, 1.5720496464918104e-13, 1.1640421959668856e-09, 1.5955605706021586e-13, 4.956232260155957e-06, 1.5433082580784685e-06, 0.9999790191650391, 1.0140344102183008e-06, 3.851158908219077e-06, 1.4068680798118294e-07], [4.351200004748534e-06, 2.8244487637607563e-08, 1.4310627705071965e-07, 1.8844778846118307e-14, 2.9092687460485767e-12, 7.381041958187673e-12, 5.615131137837182e-10, 2.310964059004661e-10, 7.101140795384708e-07, 1.9598116532404397e-11, 2.487184069810411e-10, 5.999348587359954e-12, 1.68877886608243e-05, 3.3545798032719176e-06, 0.9997945427894592, 6.5671715674398e-06, 0.00017348614346701652], [1.874248738431561e-07, 1.2445488195567123e-08, 4.2092405116989084e-09, 1.5633737859843677e-08, 3.627157710468787e-14, 2.0411337550707565e-11, 5.674748184455918e-17, 3.199861556280048e-11, 6.948798481065666e-11, 1.2801974662579596e-06, 1.862040382993868e-10, 2.0293067226617723e-10, 3.889704313850273e-13, 2.154710955437622e-06, 7.984494914126117e-06, 0.999962329864502, 2.600653351692017e-05], [7.583398200949887e-06, 1.4307707796312741e-11, 5.016762770537753e-06, 3.2230775826036506e-09, 1.6544561731279828e-05, 1.1440076663760124e-09, 2.2261491695180213e-12, 1.1310358152792768e-16, 3.2692189233518576e-11, 9.241817977567734e-09, 2.8294977028053836e-07, 3.6583256424194133e-09, 1.998726162355524e-08, 1.3944928545228663e-11, 4.047334641654743e-06, 2.0178991690045223e-05, 0.9999463558197021], [0.9221725463867188, 0.0015297244535759091, 2.3096101358532906e-05, 0.030276257544755936, 0.001407857984304428, 0.016686582937836647, 1.0247360933135496e-06, 1.0465674677107017e-05, 9.435315746486594e-07, 0.00011574710515560582, 0.0003514351847115904, 0.0014596788678318262, 0.00014754301810171455, 0.00222591869533062, 2.855258935596794e-05, 0.007452854886651039, 0.016109652817249298]], [[0.16077901422977448, 0.018005184829235077, 0.03674697130918503, 0.03295224532485008, 0.25733450055122375, 0.4791787564754486, 0.0006175494054332376, 0.0003450761141721159, 0.00016031406994443387, 4.5940214477013797e-05, 0.0005996872787363827, 0.0005669062375091016, 0.0002740943164099008, 0.00026777430321089923, 0.0004273770027793944, 0.0012925394112244248, 0.010406111367046833], [0.3716663420200348, 0.001520257443189621, 0.03086196444928646, 0.005981638561934233, 0.34656330943107605, 0.24059782922267914, 1.0186376130150165e-05, 8.207971404772252e-06, 7.337335318879923e-06, 2.9190479722274176e-07, 0.00010654293873813003, 4.6427769120782614e-05, 1.1073067071265541e-05, 2.949438794530579e-06, 9.753233825904317e-06, 6.480435695266351e-05, 0.0025411343667656183], [0.3891809582710266, 0.004878423176705837, 0.031948309391736984, 0.006802862510085106, 0.3324292004108429, 0.22518782317638397, 0.00011286848166491836, 6.270004087127745e-05, 6.439490971388295e-05, 5.981445156066911e-06, 0.00017904984997585416, 0.00014136641402728856, 5.575040995609015e-05, 3.183031003572978e-05, 4.363260813988745e-05, 0.000546559109352529, 0.008328224532306194], [0.3011429011821747, 0.0009152726270258427, 0.020239703357219696, 0.0022926167584955692, 0.47024333477020264, 0.20305544137954712, 2.9266884666867554e-06, 3.0621952191722812e-06, 5.28013561051921e-06, 2.706497923554707e-07, 3.578684845706448e-05, 1.9619075828813948e-05, 4.756114321935456e-06, 1.6762028280936647e-06, 3.1513950489170384e-06, 0.00012085735943401232, 0.0019133903551846743], [0.0996083915233612, 0.15217679738998413, 0.12826691567897797, 0.10044953227043152, 0.2386852651834488, 0.2717210352420807, 0.0011062644189223647, 0.0005303669022396207, 0.0004393437993712723, 9.138364112004638e-05, 0.00043516591540537775, 0.0006133295246399939, 0.0005515405791811645, 0.0002601879241410643, 0.0012182726059108973, 0.000546111143194139, 0.003300015814602375], [0.20008248090744019, 0.010022899135947227, 0.03334628418087959, 0.029603131115436554, 0.25997358560562134, 0.4453183710575104, 0.0005626337369903922, 0.000498741923365742, 0.0003913630498573184, 9.249094728147611e-05, 0.0011655185371637344, 0.0007729142671450973, 0.00046543838107027113, 0.0003407508775126189, 0.0004486327525228262, 0.0025751281064003706, 0.01433961745351553], [0.010421407409012318, 3.0526382488460513e-06, 0.00037574279122054577, 2.151684384443797e-06, 0.00045379935181699693, 4.87964935018681e-05, 0.003559282049536705, 0.010542587377130985, 0.011136029846966267, 0.002609053859487176, 0.06579496711492538, 0.07566464692354202, 0.006483047269284725, 0.003870394080877304, 0.0037970796693116426, 0.4983372092247009, 0.3069007098674774], [0.011063426733016968, 4.340030500316061e-06, 0.0002715392329264432, 2.7165822302777087e-06, 0.0005195609992370009, 5.6962104281410575e-05, 0.012659254483878613, 0.011157633736729622, 0.004368810914456844, 0.0014377073384821415, 0.045870956033468246, 0.053585585206747055, 0.00518902437761426, 0.006300204899162054, 0.004087433218955994, 0.5247235298156738, 0.31870129704475403], [0.009431961923837662, 1.6499892581123277e-06, 9.453222446609288e-05, 1.269211452381569e-06, 0.000429686187999323, 8.950574556365609e-05, 0.02016700990498066, 0.021225295960903168, 0.00918843224644661, 0.0015824775910004973, 0.0573844276368618, 0.03144233301281929, 0.0048926775343716145, 0.005289564840495586, 0.0026302223559468985, 0.48149821162223816, 0.3546507656574249], [0.007859635166823864, 2.1256246895973163e-07, 3.768455280805938e-05, 4.917059754916409e-07, 0.0005490142502821982, 4.5158027205616236e-05, 0.0027407549787312746, 0.0059780641458928585, 0.0028648781590163708, 0.00030278859776444733, 0.03241860494017601, 0.015319015830755234, 0.0012072991812601686, 0.001425761729478836, 0.0013611798640340567, 0.6308400630950928, 0.2970494329929352], [0.015372776426374912, 3.6719411582453176e-06, 0.0002076392702292651, 7.24689380149357e-06, 0.0012095349375158548, 0.0001808706729207188, 0.007844879291951656, 0.020411040633916855, 0.007236007135361433, 0.0016153422184288502, 0.06286419183015823, 0.028592774644494057, 0.0036750121507793665, 0.004707791842520237, 0.0031507413368672132, 0.47563818097114563, 0.3672822415828705], [0.02361123263835907, 2.839653279806953e-05, 0.0007512079318985343, 1.664665796852205e-05, 0.0011886091670021415, 0.00023269384109880775, 0.02749108523130417, 0.01875321939587593, 0.008542525582015514, 0.0033619655296206474, 0.06777071207761765, 0.05047420784831047, 0.008012417703866959, 0.008918480016291142, 0.009884019382297993, 0.32249224185943604, 0.4484703242778778], [0.04135238006711006, 5.522725132323103e-06, 0.00033332942984998226, 4.305399670556653e-06, 0.0018728782888501883, 0.00024498545099049807, 0.01091309916228056, 0.010117917321622372, 0.0024248415138572454, 0.00045039100223220885, 0.05018357187509537, 0.022502828389406204, 0.0020234098192304373, 0.0024121112655848265, 0.0027669896371662617, 0.32474470138549805, 0.5276467800140381], [0.013637779280543327, 7.748438406451896e-07, 0.0001462942746002227, 5.286752866595634e-07, 0.00025874603306874633, 2.4389637474087067e-05, 0.006394587457180023, 0.008586823008954525, 0.004451260436326265, 0.0005485625588335097, 0.07317764312028885, 0.054792050272226334, 0.002934327581897378, 0.002116805873811245, 0.0017024974804371595, 0.3500758707523346, 0.4811510145664215], [0.030358342453837395, 3.726921022462193e-06, 0.0003956094151362777, 1.5751681985420873e-06, 0.000555710110347718, 6.860183930257335e-05, 0.006990213878452778, 0.009800690226256847, 0.006293740123510361, 0.0007812364492565393, 0.049708280712366104, 0.044420450925827026, 0.00275496207177639, 0.0024204645305871964, 0.0027512218803167343, 0.2977353036403656, 0.5449599623680115], [0.00384308909997344, 0.0007127896533347666, 0.0034427051432430744, 0.00015586873632855713, 0.0005772068398073316, 0.00015519015141762793, 0.15906770527362823, 0.11069054901599884, 0.037083834409713745, 0.019473960623145103, 0.058021049946546555, 0.1683085560798645, 0.03920500725507736, 0.03517604619264603, 0.1734161525964737, 0.11232633888721466, 0.078343965113163], [0.24429747462272644, 0.0005753662553615868, 0.011923594400286674, 0.00192537740804255, 0.047313764691352844, 0.06250404566526413, 0.008190779015421867, 0.015925191342830658, 0.005927054677158594, 0.001724912435747683, 0.03820589557290077, 0.029567522928118706, 0.0055772713385522366, 0.005153314676135778, 0.005557183641940355, 0.13198047876358032, 0.38365089893341064]], [[0.27467241883277893, 0.017790816724300385, 0.0266018807888031, 0.008457627147436142, 0.05003209412097931, 0.07180669903755188, 0.013406283222138882, 0.017626803368330002, 0.007168401964008808, 0.0036922036670148373, 0.009264797903597355, 0.022080285474658012, 0.00926895160228014, 0.03398260101675987, 0.01566535048186779, 0.03145422413945198, 0.3870285749435425], [0.4156966507434845, 0.12134125083684921, 0.006904419511556625, 0.00043889108928851783, 0.010241595096886158, 0.015093833208084106, 0.001133020268753171, 0.0042595816776156425, 0.0003359271795488894, 4.207628080621362e-05, 0.0003538442251738161, 0.00011236189311603084, 0.00016573410539422184, 0.0012235381873324513, 0.009706661105155945, 0.0016674313228577375, 0.4112832844257355], [0.36781400442123413, 0.21530279517173767, 0.04024609550833702, 0.008604397997260094, 0.00505608506500721, 0.0666080042719841, 0.00032796067534945905, 0.015178327448666096, 0.0014706322690472007, 1.422525747329928e-05, 0.00018492995877750218, 0.0001181076149805449, 5.412282553152181e-05, 0.0015785535797476768, 0.00136221491266042, 0.07278554886579514, 0.20329402387142181], [0.12319906800985336, 0.0025713499635457993, 0.5385981202125549, 0.004323318600654602, 0.03349592536687851, 0.0019583310931921005, 9.534427226753905e-05, 0.0005628239596262574, 0.002564458642154932, 0.0001314278633799404, 0.00010792829561978579, 3.959256719099358e-05, 2.488513564458117e-05, 0.00014192794333212078, 0.005267746280878782, 0.011094695888459682, 0.2758229672908783], [0.16004107892513275, 0.013748751021921635, 0.008576217107474804, 0.301979660987854, 0.08035698533058167, 0.0886543020606041, 0.002828646684065461, 0.008613101206719875, 0.0012127028312534094, 0.0030079029966145754, 0.008738973177969456, 0.0006719056982547045, 2.9034506951575167e-05, 0.0004043754015583545, 0.0008969894843176007, 0.06044064462184906, 0.25979867577552795], [0.15584777295589447, 0.0024106218479573727, 0.00647654989734292, 0.006345157977193594, 0.28846126794815063, 0.05086759105324745, 0.009798357263207436, 0.0014830513391643763, 0.0008110865019261837, 0.0008375453180633485, 0.007317088544368744, 0.0028408740181475878, 0.0010052748257294297, 0.0003465523477643728, 0.0004471820720937103, 0.002542150905355811, 0.46216192841529846], [0.1873253434896469, 0.004434618633240461, 0.0028571102302521467, 0.008491932414472103, 0.07802138477563858, 0.3626980483531952, 0.03761183097958565, 0.023741446435451508, 0.00029893152532167733, 0.0035407827235758305, 0.0032977766823023558, 0.025868801400065422, 0.00030711363069713116, 0.004800793249160051, 0.00014054130588192493, 0.001822109567001462, 0.2547415792942047], [0.24227018654346466, 0.007495630066841841, 0.0006544472998939455, 0.00015451019862666726, 0.07655082643032074, 0.21043840050697327, 0.1649893820285797, 0.007569733541458845, 0.005394870415329933, 0.0003585637896321714, 0.0009295843774452806, 0.0007690996280871332, 0.0012718483339995146, 0.0008029468008317053, 0.0010022259084507823, 0.0005624659243039787, 0.2787853181362152], [0.22660626471042633, 0.034893397241830826, 0.003541411366313696, 0.00012606047675944865, 0.0046168104745447636, 0.08004556596279144, 0.00423548836261034, 0.43213579058647156, 0.017333369702100754, 0.007539812941104174, 0.00016155120101757348, 0.0009624777594581246, 0.00012700910156127065, 0.0073873368091881275, 0.0011398150818422437, 0.004125002305954695, 0.17502276599407196], [0.014557487331330776, 4.05518694606144e-05, 0.0008301138295792043, 6.415992629626999e-06, 0.0009696494089439511, 0.0008376887417398393, 0.00018339981033932418, 0.007903114892542362, 0.9532968401908875, 0.000497996574267745, 0.00023417407646775246, 3.20702965836972e-05, 3.036299858649727e-05, 3.786084198509343e-05, 0.00022650783648714423, 0.0031394746620208025, 0.017176272347569466], [0.011243748478591442, 0.00015270712901838124, 0.0006900812732055783, 0.0002198056026827544, 0.0024950981605798006, 0.001660275855101645, 7.850718247937039e-05, 0.002585034817457199, 0.0066946265287697315, 0.9298443794250488, 0.0008090442861430347, 0.0006365031586028636, 8.003570656001102e-06, 0.00026206072652712464, 0.0005257058655843139, 0.010095174424350262, 0.031999193131923676], [0.0880192220211029, 9.494848927715793e-05, 0.000984118552878499, 0.00046788822510279715, 0.054236482828855515, 0.01885262317955494, 0.0005760183557868004, 0.0003037861897610128, 0.0033414443023502827, 0.0020217793062329292, 0.34935465455055237, 0.026408938691020012, 0.002915008459240198, 0.00022726522001903504, 0.00039799901423975825, 0.02791561931371689, 0.4238821864128113], [0.009519141167402267, 1.2079051884938963e-05, 0.00016979900829028338, 9.579514880897477e-06, 0.002447988372296095, 0.013032681308686733, 9.240003419108689e-05, 0.0001028804254019633, 1.5023171044958872e-06, 3.519070378388278e-05, 0.001394300372339785, 0.9416462182998657, 0.003045768942683935, 0.0041174329817295074, 6.294575723586604e-05, 0.004286592360585928, 0.020023535937070847], [0.14429965615272522, 0.0058726961724460125, 0.0014459457015618682, 2.5894441932905465e-05, 0.01960412599146366, 0.03439446911215782, 0.002769255777820945, 0.0005967814940959215, 0.00041785635403357446, 0.0009371170890517533, 0.004428232554346323, 0.031085383147001266, 0.19257143139839172, 0.14598320424556732, 0.02068330906331539, 0.008682279847562313, 0.386202335357666], [0.03514653816819191, 0.0013633874477818608, 0.00010907228715950623, 5.080114533484448e-06, 0.00017850320728030056, 0.012072823010385036, 8.857439388521016e-05, 0.0005564167513512075, 7.621854456374422e-05, 0.000233090206165798, 3.9177633880171925e-05, 0.002302916022017598, 0.0021092004608362913, 0.8836972117424011, 0.012413269840180874, 0.022471806034445763, 0.02713671699166298], [0.09908843040466309, 0.00560173811390996, 0.004373116418719292, 0.00029755994910374284, 0.0026859790086746216, 0.0027801222167909145, 0.004514613188803196, 0.008467326872050762, 0.006644471548497677, 0.0015210730489343405, 0.006702197249978781, 0.0003153303114231676, 0.0027855110820382833, 0.012831369414925575, 0.5315288305282593, 0.07036205381155014, 0.2395002394914627], [0.22580485045909882, 0.027116023004055023, 0.034488122910261154, 0.017344847321510315, 0.030339447781443596, 0.056271716952323914, 0.004156241659075022, 0.018589967861771584, 0.008461211808025837, 0.015033233910799026, 0.01753901317715645, 0.018697848543524742, 0.0042067645117640495, 0.045449867844581604, 0.013816130347549915, 0.15369760990142822, 0.3089870512485504]], [[0.07959605008363724, 0.0553077831864357, 0.020977728068828583, 0.03935033455491066, 0.05383552983403206, 0.04411180317401886, 0.08529365062713623, 0.03468305245041847, 0.03209206089377403, 0.04098156467080116, 0.03647289425134659, 0.03627733886241913, 0.055152710527181625, 0.08830636739730835, 0.05051738768815994, 0.13344860076904297, 0.1135951355099678], [0.228453129529953, 0.009324222803115845, 0.013658533804118633, 0.001326529891230166, 0.3255593478679657, 0.10342786461114883, 0.000432552769780159, 0.0025834364350885153, 0.0015971633838489652, 0.0003004596510436386, 0.0028716293163597584, 0.0020710828248411417, 0.0004495737957768142, 0.001045356155373156, 0.0025697569362819195, 0.11797074228525162, 0.18635864555835724], [0.18716315925121307, 0.019615434110164642, 0.07241584360599518, 0.003805972868576646, 0.18229034543037415, 0.10660869628190994, 0.0075257038697600365, 0.02993849292397499, 0.011628298088908195, 0.0027539918664842844, 0.015081541612744331, 0.013167379423975945, 0.007125040516257286, 0.0048322658985853195, 0.004833030980080366, 0.0756106749176979, 0.25560417771339417], [0.24753814935684204, 0.0031601034570485353, 0.0434383749961853, 0.0008788590203039348, 0.3346290588378906, 0.05133966729044914, 0.00038944309926591814, 0.0018910724902525544, 0.003207580419257283, 0.00031327360193245113, 0.004822218790650368, 0.005097340326756239, 0.0012683630920946598, 0.0009966401848942041, 0.0010991564486175776, 0.08905439078807831, 0.21087628602981567], [0.15720851719379425, 0.05310383439064026, 0.03267694264650345, 0.032770074903964996, 0.27860966324806213, 0.1084875538945198, 0.012167925015091896, 0.009745091199874878, 0.005763376597315073, 0.004598923027515411, 0.00963981170207262, 0.007734397891908884, 0.006993933115154505, 0.008363364264369011, 0.008235522545874119, 0.10581690073013306, 0.15808407962322235], [0.14648163318634033, 0.09129562973976135, 0.02324768900871277, 0.08892533928155899, 0.15384335815906525, 0.12124709784984589, 0.034477412700653076, 0.009364231489598751, 0.0053212279453873634, 0.017897319048643112, 0.012062083929777145, 0.009784478694200516, 0.017857203260064125, 0.033363740891218185, 0.02259700559079647, 0.06862520426511765, 0.143609419465065], [0.09274458140134811, 0.0005629519582726061, 0.005340439733117819, 0.00025765501777641475, 0.10082019120454788, 0.10019209235906601, 0.0007123984978534281, 0.005264658015221357, 0.0026642458979040384, 0.00035086055868305266, 0.005611531436443329, 0.0034314857330173254, 0.0007213517092168331, 0.0015616579912602901, 0.0024834780488163233, 0.2155078649520874, 0.46177253127098083], [0.12072867155075073, 0.0014404888497665524, 0.017522061243653297, 0.0002838002983480692, 0.0996483787894249, 0.08853064477443695, 0.00176182109862566, 0.015528745017945766, 0.009582800790667534, 0.0006933068507350981, 0.008330863900482655, 0.009207659400999546, 0.0017452711472287774, 0.0028119313064962626, 0.0026755107101053, 0.203116312623024, 0.4163917899131775], [0.18975885212421417, 0.002010736148804426, 0.009818986058235168, 0.0008217521826736629, 0.06647729128599167, 0.07533756643533707, 0.007155569735914469, 0.013742499984800816, 0.011958573944866657, 0.002266017720103264, 0.017514115199446678, 0.015530680306255817, 0.004259428940713406, 0.003847033018246293, 0.0030431607738137245, 0.10840821266174316, 0.468049556016922], [0.18224488198757172, 0.0002879188396036625, 0.010222859680652618, 0.00015886245819274336, 0.0834764689207077, 0.04079554229974747, 0.0016490403795614839, 0.008680458180606365, 0.008702459745109081, 0.0005212584510445595, 0.011904582381248474, 0.018501723185181618, 0.001780741149559617, 0.0024112414103001356, 0.0013660116819664836, 0.19460691511631012, 0.43268898129463196], [0.13415580987930298, 0.0012989521492272615, 0.039395175874233246, 0.0004001397464890033, 0.09916455298662186, 0.05750805512070656, 0.005602858029305935, 0.02288360521197319, 0.026163192465901375, 0.0011827200651168823, 0.026200097054243088, 0.048211634159088135, 0.01160269882529974, 0.008436786942183971, 0.002696210751309991, 0.18103358149528503, 0.33406397700309753], [0.10399599373340607, 0.0018048551864922047, 0.020163998007774353, 0.0003922621544916183, 0.08359020948410034, 0.09513304382562637, 0.006176177877932787, 0.030437491834163666, 0.01550661027431488, 0.0012540130410343409, 0.014682075008749962, 0.016173560172319412, 0.006494374480098486, 0.005868510343134403, 0.005418969318270683, 0.21613475680351257, 0.3767732083797455], [0.1610516458749771, 0.0008706218795850873, 0.029376879334449768, 9.239892096957192e-05, 0.11555320024490356, 0.05465112626552582, 0.0008898557280190289, 0.0255744606256485, 0.021747933700680733, 0.00043090980034321547, 0.013249123468995094, 0.012375563383102417, 0.00260575651191175, 0.0009588896064087749, 0.0008802933152765036, 0.09418171644210815, 0.4655095636844635], [0.11671224981546402, 0.0024155022110790014, 0.0159138310700655, 0.0002156817208742723, 0.09475088119506836, 0.09657035022974014, 0.0009309118613600731, 0.00790493655949831, 0.01618143729865551, 0.0012388027971610427, 0.009591212496161461, 0.012438720092177391, 0.002665790030732751, 0.0042147040367126465, 0.00378315057605505, 0.21444405615329742, 0.4000277817249298], [0.11084997653961182, 0.003685097908601165, 0.007407616823911667, 0.0016025282675400376, 0.1413775235414505, 0.1221456378698349, 0.0013103076489642262, 0.00629525538533926, 0.0048035201616585255, 0.000742660544347018, 0.005432791542261839, 0.005505293607711792, 0.004206537734717131, 0.006393757648766041, 0.006146579515188932, 0.3087378740310669, 0.2633570730686188], [0.11923347413539886, 0.007921025156974792, 0.010112158954143524, 0.005529005080461502, 0.11909091472625732, 0.10098840296268463, 0.012655233964323997, 0.013118022121489048, 0.01071210578083992, 0.004238514695316553, 0.01634937897324562, 0.012699341401457787, 0.007386006880551577, 0.012729876674711704, 0.010271179489791393, 0.25737887620925903, 0.2795864939689636], [0.15527759492397308, 0.010458573698997498, 0.005093803629279137, 0.0055272551253438, 0.05768483877182007, 0.09997627139091492, 0.006433708127588034, 0.00438097957521677, 0.002990078181028366, 0.002436535432934761, 0.004949180409312248, 0.0025896583683788776, 0.0028936408925801516, 0.009303076192736626, 0.0052651576697826385, 0.054941173642873764, 0.5697985291481018]], [[0.33848726749420166, 0.035722631961107254, 0.045703474432229996, 0.07754818350076675, 0.08718802034854889, 0.09776447713375092, 0.012538373470306396, 0.008608193136751652, 0.007236705161631107, 0.009662579745054245, 0.012593910098075867, 0.0054450067691504955, 0.008720019832253456, 0.012326467782258987, 0.009080920368432999, 0.022226057946681976, 0.20914769172668457], [0.12696567177772522, 0.015488412231206894, 0.048386476933956146, 0.23328866064548492, 0.24591200053691864, 0.13353826105594635, 0.009219993837177753, 0.0017419138457626104, 0.00111866625957191, 0.001390072051435709, 0.003518264275044203, 0.00010424466745462269, 4.128183354623616e-05, 0.0003640668874140829, 0.00018594806897453964, 0.006978531833738089, 0.17175759375095367], [0.06326299905776978, 0.0024991799145936966, 0.024843953549861908, 0.2328302413225174, 0.3929362893104553, 0.10005886107683182, 0.034154266119003296, 0.0015155161963775754, 0.0005348753766156733, 0.004867072682827711, 0.011630958877503872, 0.0008862385293468833, 0.0007002384518273175, 0.00018207704124506563, 0.00011221801833016798, 0.0007829922833479941, 0.12820205092430115], [0.22101910412311554, 0.009093436412513256, 0.004549587611109018, 0.15569022297859192, 0.14436830580234528, 0.2853298783302307, 0.052677858620882034, 0.0030339593067765236, 0.00033315582550130785, 0.0002498343528714031, 0.0012468384811654687, 0.0004989042063243687, 0.000234720588196069, 0.000240877183387056, 1.682893889665138e-05, 0.0001724745670799166, 0.121243916451931], [0.24190790951251984, 0.008541368879377842, 0.0076930648647248745, 0.01203364972025156, 0.11041118949651718, 0.12222080677747726, 0.27624642848968506, 0.043157268315553665, 0.008985423482954502, 0.0035527446307241917, 0.005354228895157576, 0.0024023193400353193, 0.0052225166000425816, 0.003253682516515255, 0.0008838801877573133, 0.0007369524682871997, 0.14739656448364258], [0.28206607699394226, 0.029257705435156822, 0.012392102740705013, 0.029899228364229202, 0.041177526116371155, 0.08809611201286316, 0.14013075828552246, 0.10678937286138535, 0.02768593467772007, 0.016271209344267845, 0.010048706084489822, 0.002913705538958311, 0.006526032462716103, 0.01745503954589367, 0.004746341146528721, 0.010472657158970833, 0.17407137155532837], [0.10552516579627991, 0.00128167774528265, 0.0017932605696842074, 0.0012276918860152364, 0.022061478346586227, 0.021661611273884773, 0.20663830637931824, 0.06886961311101913, 0.12167708575725555, 0.07172378897666931, 0.026702653616666794, 0.00503116101026535, 0.005202850792557001, 0.005935538560152054, 0.010878889821469784, 0.025967074558138847, 0.29782217741012573], [0.0397876612842083, 0.000980631448328495, 0.003041991498321295, 0.00834512896835804, 0.018175939098000526, 0.016068626195192337, 0.0244749765843153, 0.025427749380469322, 0.0729174092411995, 0.37681844830513, 0.16937032341957092, 0.0281631238758564, 0.004047372378408909, 0.007251879200339317, 0.004098587669432163, 0.06307191401720047, 0.13795827329158783], [0.013667367398738861, 2.8865844797110185e-05, 6.421677971957251e-05, 0.00020833895541727543, 0.0023608312476426363, 0.0024228098336607218, 0.0023739554453641176, 0.0007338917930610478, 0.002218437846750021, 0.10272132605314255, 0.8069428205490112, 0.014317158609628677, 0.004678694065660238, 0.0005552151123993099, 0.0007793804979883134, 0.003779387567192316, 0.04214724153280258], [0.12306277453899384, 8.853592589730397e-05, 2.5275074222008698e-05, 7.127996650524437e-05, 0.0015106204664334655, 0.016007335856556892, 0.0010574300540611148, 0.0012894185492768884, 0.00039267033571377397, 0.021901383996009827, 0.20749136805534363, 0.036466918885707855, 0.094434455037117, 0.013440798968076706, 0.0016916089225560427, 0.01805982179939747, 0.4630082845687866], [0.06458373367786407, 0.0005789388669654727, 0.00010972826567012817, 0.00014234053378459066, 0.00199806597083807, 0.00867130234837532, 0.010535666719079018, 0.0030762481037527323, 0.00428348034620285, 0.017036573961377144, 0.014514969661831856, 0.08609580248594284, 0.3247258961200714, 0.14545303583145142, 0.05576834827661514, 0.04274812713265419, 0.21967779099941254], [0.09910169988870621, 0.002413469599559903, 0.00030904842424206436, 0.0004521918890532106, 0.001275251735933125, 0.009036950767040253, 0.0036089858040213585, 0.004359150305390358, 0.0008480680407956243, 0.013254975900053978, 0.0395219624042511, 0.017400987446308136, 0.12007997930049896, 0.24775567650794983, 0.12291551381349564, 0.12900274991989136, 0.1886633187532425], [0.045732393860816956, 0.0015971865504980087, 0.0022102510556578636, 0.00038061942905187607, 0.0009618892217986286, 0.002043425804004073, 0.0017196978442370892, 0.000856544473208487, 0.0015408922918140888, 0.0029677266720682383, 0.007960319519042969, 0.0035878329072147608, 0.014845194295048714, 0.07301466912031174, 0.5783840417861938, 0.12310308963060379, 0.13909423351287842], [0.1025669053196907, 0.003329001134261489, 0.0017758143367245793, 0.0024231658317148685, 0.0008309416007250547, 0.0034864877816289663, 0.0002718681644182652, 0.000524418312124908, 0.00031419115839526057, 0.006190957967191935, 0.006960329599678516, 0.0011462512193247676, 0.0013189646415412426, 0.03855377808213234, 0.10637503862380981, 0.3000212609767914, 0.42391061782836914], [0.10681671649217606, 0.0007405175128951669, 0.003510174574330449, 0.0022578048519790173, 0.0034071053378283978, 0.002089934190735221, 0.00010343965550418943, 7.186502625700086e-05, 0.0002573478559497744, 0.0014269377570599318, 0.0013066543033346534, 0.001659235218539834, 0.003604902420192957, 0.005573165602982044, 0.03547092154622078, 0.11055529862642288, 0.7211480140686035], [0.25334247946739197, 0.0034224174451082945, 0.0025607114657759666, 0.009882204234600067, 0.012137498706579208, 0.013194184750318527, 0.0009636961040087044, 0.00023295439314097166, 9.933605906553566e-05, 0.001169327413663268, 0.004118270706385374, 0.0038163841236382723, 0.0037651616148650646, 0.011030761525034904, 0.008801938034594059, 0.06944487243890762, 0.6020178198814392], [0.34304875135421753, 0.006331826094537973, 0.009648346342146397, 0.01419122889637947, 0.05011746659874916, 0.04047445207834244, 0.018833402544260025, 0.004539214540272951, 0.0025682002305984497, 0.005425045266747475, 0.007096480578184128, 0.004417421296238899, 0.008835557848215103, 0.013494735583662987, 0.011083581484854221, 0.02889135293662548, 0.4310029447078705]], [[0.7410589456558228, 0.006218076217919588, 0.008576477877795696, 0.0011857931967824697, 0.004965857602655888, 0.007661011535674334, 0.0006684255204163492, 0.0014875511405989528, 0.007314062211662531, 0.0013936073519289494, 0.0006363712018355727, 0.00015889728092588484, 0.00022569065913558006, 0.0013710643397644162, 0.004604967311024666, 0.010963034816086292, 0.20151016116142273], [1.0400337487226352e-05, 1.1231068128836341e-06, 0.9998966455459595, 3.565930910554016e-07, 2.0531811060209293e-06, 4.857775071087644e-09, 1.01955877074289e-09, 1.2210954913882688e-08, 2.0742554625030607e-06, 8.30909296922755e-09, 4.572873384210002e-14, 4.364695979180945e-15, 9.867299407835105e-15, 2.89253972336756e-12, 9.638905140718634e-08, 1.052901144049656e-08, 8.721926133148372e-05], [7.952175806735795e-09, 1.9539948326041667e-08, 8.898162491277617e-07, 0.9999982118606567, 8.276027330111901e-08, 7.254186584759736e-08, 4.705120299451637e-14, 1.6140862518082555e-12, 1.1650707065768984e-09, 2.0240383946656948e-07, 3.243640023242733e-09, 7.555567499775706e-13, 1.9745807073265635e-17, 6.54490584585431e-15, 6.161142322507699e-15, 3.500765046737797e-07, 5.477668807429836e-08], [2.7596333893598057e-05, 1.7892349060688595e-11, 0.0001294005778618157, 3.856564944726415e-06, 0.9979754090309143, 1.5645775420125574e-05, 1.31250192225707e-06, 5.631967548574979e-12, 9.779052012603984e-10, 3.212552428522031e-07, 1.9800635797651012e-08, 5.70413050127172e-08, 2.3861607134634255e-10, 1.4020772898541613e-14, 1.3961065376683068e-12, 1.4818460694621116e-11, 0.0018463487504050136], [0.0006145341321825981, 1.2094086514480296e-06, 5.090853086309188e-12, 1.1203356734768022e-05, 4.0739982068771496e-05, 0.9992474317550659, 3.815075979218818e-05, 4.569801149045816e-06, 1.0840882358476023e-10, 1.5885236237522804e-08, 8.566978948465476e-08, 6.154279162728926e-06, 4.979242795855043e-09, 1.3794306141790003e-08, 4.8754288942880284e-15, 3.93259730335771e-10, 3.594567533582449e-05], [0.003926962148398161, 7.873568392824382e-06, 2.9773325422866037e-06, 1.0608733891359634e-09, 0.0007418673485517502, 0.0014409858267754316, 0.989303708076477, 0.002059394959360361, 5.298088217386976e-05, 3.8052707651559103e-08, 5.489768284405727e-08, 7.100782681845885e-07, 0.0007139018271118402, 2.920143970186473e-06, 2.9291359169292264e-06, 3.3509572894274697e-10, 0.0017426678678020835], [5.838599008711753e-06, 3.473950755505939e-06, 2.212204031071252e-11, 3.9566013659841914e-11, 1.7128498272511727e-11, 3.0499437343678437e-05, 1.7074549759854563e-05, 0.9999179840087891, 5.660680926666828e-06, 4.643158888484322e-07, 3.649792273963115e-11, 3.0858537947153764e-09, 2.332115334180429e-10, 1.8200758859165944e-05, 1.5476707415640334e-10, 2.8632607396161802e-09, 7.582362400171405e-07], [3.963793631100998e-07, 1.3482147342980255e-10, 1.7503602123269957e-07, 5.443227032303488e-12, 5.540182201890786e-10, 1.3384987562758965e-10, 1.5520759006903972e-06, 5.886090548301581e-07, 0.9999468326568604, 3.5605233961177873e-07, 6.152205145326661e-08, 2.0556407121755278e-14, 3.42151834642479e-10, 1.3423509699628244e-11, 1.624420747248223e-06, 1.3575358615014466e-09, 4.83443945995532e-05], [2.8917623851043572e-09, 1.4025022462837988e-13, 1.8009964630749664e-09, 3.7683065556848305e-08, 1.164863483449352e-10, 3.008538973503505e-10, 2.176567709703467e-13, 4.50203643254099e-08, 2.3488124156756385e-07, 0.9999924898147583, 4.460018203644722e-07, 3.6832983596468694e-07, 3.8003700189516605e-15, 1.2663757542608067e-10, 1.4232230845234728e-12, 6.175494490889832e-06, 2.49329502821638e-07], [8.706482503839652e-07, 6.296256359572495e-16, 4.064414820328932e-13, 2.048386738007224e-10, 2.567281171650393e-06, 2.81956893388724e-08, 1.841758390241921e-08, 1.4458315390742348e-14, 1.6596438001670322e-07, 5.333524768502684e-06, 0.9985451698303223, 2.276656414323952e-05, 0.0001338905276497826, 4.2333844763042805e-12, 3.2604205446595813e-10, 5.74144998211068e-09, 0.0012893088860437274], [6.690248937957222e-06, 8.631569817349385e-15, 1.0106500665106773e-15, 2.4742093275445867e-14, 2.1323835142084135e-08, 9.392604624736123e-06, 6.247441231010953e-09, 1.001509430942349e-09, 7.299843103039313e-14, 2.0275685528758913e-05, 9.601812962500844e-07, 0.999359667301178, 4.0301794797414914e-05, 3.554842123776325e-06, 7.795709390523431e-12, 5.843260098004066e-09, 0.000559189124032855], [3.4696597595029743e-08, 2.1024757726906956e-13, 5.458513577039451e-18, 5.442361055782006e-17, 1.0226475916086386e-10, 1.4329249609090766e-07, 1.7444200466343318e-06, 1.1315699245673105e-11, 3.404244334342943e-12, 2.608253456964915e-12, 1.2916473224322544e-06, 5.673950454365695e-06, 0.9999886751174927, 6.760887458767684e-07, 7.1889489916543425e-09, 2.908274315815973e-12, 1.7159183016701718e-06], [1.987588575502741e-06, 3.9845897958912246e-07, 5.813898201165483e-15, 2.6779763167205858e-14, 7.240869619932859e-15, 3.160659389322973e-06, 4.4249662267681344e-10, 0.00011354136950103566, 1.3915714284010172e-12, 6.751802672511076e-09, 4.5004095935996524e-12, 6.9157449615886435e-06, 1.8560174339654623e-06, 0.9998676776885986, 1.0057092225679298e-07, 3.0627852538600564e-06, 1.2395464636938414e-06], [5.2485982450889423e-05, 6.918597961202977e-08, 1.417523520785835e-07, 3.19113442268093e-13, 9.458699101738688e-11, 1.9183645783016345e-09, 4.329283953552476e-08, 1.4436129625039484e-08, 6.833190127508715e-06, 9.062369743517706e-10, 2.53688248186279e-09, 4.727453151165406e-11, 9.803512512007728e-05, 2.487458914401941e-05, 0.9809368252754211, 1.1875997188326437e-05, 0.018868762999773026], [2.2524149244418368e-05, 2.0312914017495132e-08, 7.030276805153335e-08, 1.8002364754465816e-07, 4.028117683158028e-12, 1.7309782496255366e-09, 3.142113187069558e-16, 2.2001672705940223e-10, 6.903752569620281e-10, 7.868095053709112e-06, 2.037253921116644e-09, 9.766391029231158e-10, 5.573253447285764e-13, 1.8127500425180187e-06, 1.3161151173335384e-06, 0.9991406202316284, 0.000825519033242017], [3.8926227716729045e-05, 2.786337411069418e-14, 2.69591140522607e-07, 3.1977279157935357e-10, 3.9792575989849865e-06, 5.768093225277937e-10, 5.14066220147491e-13, 4.028886008533274e-16, 3.2252971127189056e-11, 8.141960705643214e-08, 1.544392063124178e-07, 3.281563465407089e-09, 7.062000983992789e-10, 1.5894085093198784e-12, 1.4005730974986363e-07, 5.372564373828936e-06, 0.9999510049819946], [0.6171939969062805, 0.001904839533381164, 2.3470271116821095e-05, 0.004027391783893108, 0.003500839462503791, 0.13018439710140228, 3.2885003747651353e-05, 0.0001869467960204929, 6.5696972342266236e-06, 0.0004447891842573881, 0.000616871751844883, 0.00405615009367466, 8.128953777486458e-05, 0.0020427790004760027, 2.6762740162666887e-05, 0.0301108006387949, 0.2055591344833374]], [[0.572759747505188, 0.0001452567958040163, 7.067358092172071e-05, 2.2070526028983295e-05, 0.000321930245263502, 0.000407984247431159, 3.0543189495801926e-05, 8.5783240137971e-06, 2.0440886146388948e-05, 1.3126882549840957e-05, 4.26013684773352e-05, 9.145885269390419e-05, 0.0009026863262988627, 0.00030976918060332537, 0.00040194677421823144, 0.001361977425403893, 0.42308923602104187], [0.9982907176017761, 4.049998096888885e-07, 9.93778996871697e-08, 4.809852603010478e-13, 1.2452821884778587e-08, 2.987551681599143e-07, 1.7613288605389243e-08, 4.457305191607475e-09, 8.536619328092243e-12, 1.4485994055766366e-13, 2.345813278191054e-16, 2.2702993998646726e-12, 4.36417035842851e-09, 3.020904770778543e-08, 4.11641885023073e-08, 1.6393936208558557e-10, 0.001708398456685245], [1.5529245729339891e-06, 0.9999946355819702, 8.733930201287876e-08, 3.0063918075029505e-06, 2.321219888325762e-15, 5.919120193986771e-10, 1.4604060961844606e-14, 9.835900094401495e-09, 2.418799327497112e-10, 3.4116389861825816e-14, 1.0281026179060356e-17, 1.8947818905300523e-18, 9.968785681028534e-17, 3.6721718998933284e-08, 4.67199212650371e-09, 7.325380124711955e-07, 3.8220793197041303e-10], [1.3529631814890308e-06, 6.039160638238172e-08, 0.9999978542327881, 2.102476415188903e-08, 2.5996060415423017e-08, 1.7203323184403208e-13, 4.655177068477179e-13, 1.2213097286967178e-12, 1.5225300131760378e-08, 2.3042578262133517e-11, 5.958767728442044e-16, 2.679724799849744e-18, 9.089844737953368e-17, 1.8668383811336125e-15, 1.9392061290091078e-08, 1.3425045797266222e-10, 7.315874199775863e-07], [6.965927923374693e-08, 7.651272539987986e-07, 2.926705064965063e-07, 0.9999948740005493, 3.9618376490579976e-07, 1.1686852303682826e-06, 4.9958968846618504e-14, 7.870022342149063e-12, 1.1158118179421805e-10, 6.702547352688271e-07, 4.916672846633219e-09, 1.5151800647483782e-10, 1.5460235935698622e-16, 8.462709699674775e-13, 1.4324546865514265e-14, 1.7075740288419183e-06, 1.3642592477935978e-07], [0.001674926606938243, 7.631732468205144e-10, 2.2019728930899873e-05, 6.8323702180350665e-06, 0.9833366274833679, 0.00013283318548928946, 0.00019266882736701518, 2.4949747823299617e-10, 7.683107128286792e-08, 6.481766376964515e-07, 1.3256559213914443e-05, 1.3152768588042818e-05, 8.739784789213445e-06, 3.412363490731818e-12, 2.4378795857038504e-11, 5.819694032238587e-11, 0.01459807250648737], [3.939881025871728e-06, 3.9585160149790966e-10, 5.194069390627824e-14, 2.7745093333919613e-08, 3.5510113320924575e-06, 0.9999797344207764, 4.386771252029575e-06, 3.4501562140576425e-07, 8.423288650784289e-13, 5.145695869401834e-09, 6.452323675354421e-10, 7.16515887688729e-06, 6.280963249505334e-11, 7.640171273415319e-10, 2.1246407003026658e-17, 9.16567863273876e-12, 8.274221841020335e-07], [2.7493076686369022e-06, 1.8580670335666127e-10, 1.882517579321341e-13, 2.243782865738353e-15, 6.986352474314117e-08, 4.303599052946083e-05, 0.9999357461929321, 4.1961752117458673e-07, 2.942402375083475e-07, 1.0748682929232357e-14, 1.5688508825384417e-10, 1.3269807995486271e-11, 1.7492995539214462e-05, 2.1786518769606467e-11, 4.698412839343469e-11, 4.112174493538993e-16, 1.5529019492532825e-07], [4.078242909599794e-06, 1.933378825924592e-06, 6.320247103452914e-10, 5.203431435729655e-12, 2.1631099689223277e-12, 7.036914212221745e-06, 1.1218482995900558e-06, 0.9999752044677734, 3.639065425886656e-06, 7.904996834895428e-08, 7.41652290796313e-14, 1.1459111437517322e-11, 8.143126743655887e-14, 6.935750207048841e-06, 1.5403914810363517e-09, 2.038664126402523e-09, 8.71764616050541e-09], [7.028005399867254e-10, 4.086907756661873e-10, 1.7250632922127807e-08, 1.510709612961847e-11, 6.217687497679647e-13, 1.464352077096276e-12, 3.879752907831602e-10, 9.394932054540561e-11, 0.9999988079071045, 5.949788217662899e-09, 9.810900110096554e-07, 7.086811267486247e-15, 1.127974103010132e-11, 2.1579797410825607e-13, 1.9030092346383753e-07, 2.293156775579064e-09, 3.422476169134825e-08], [1.6282207582207775e-08, 9.115616247945546e-13, 6.941469621324359e-08, 2.763637541036701e-09, 8.397523565406573e-09, 1.0101102176918175e-08, 6.941353047906773e-11, 3.473083864946602e-08, 1.4675974853162188e-05, 0.9999316930770874, 3.538841338013299e-05, 1.129019983636681e-05, 6.936372483334896e-12, 3.894240041546482e-09, 3.4377758417747373e-09, 2.160154735975084e-06, 4.760825959237991e-06], [4.0267839063190536e-10, 1.3986967178341984e-15, 1.5312848645337995e-12, 4.992599111908191e-10, 1.6782796308234538e-07, 1.0176338660627948e-09, 2.7233384991554033e-10, 9.725221489394458e-16, 4.564419242569784e-08, 1.8116935507350718e-06, 0.9999886751174927, 5.734261321777012e-06, 1.3120753692419385e-06, 1.9683352983548147e-13, 6.557426823761148e-11, 7.3377606213398394e-09, 2.3692705326539e-06], [4.6687715915538774e-09, 3.792127117825455e-15, 3.470832975788008e-17, 8.33078235302348e-13, 2.6835350608322983e-10, 1.9125094695482403e-05, 1.3589426459126308e-11, 9.369146083959556e-12, 1.375414349682799e-16, 6.387975872712559e-07, 6.562628414030769e-07, 0.9999765157699585, 6.994931567305684e-08, 2.9792402074235724e-06, 1.2323503525426497e-14, 6.928866369548814e-09, 4.5043606178296614e-08], [1.874120840739124e-07, 3.700832975034145e-14, 1.5984250750935127e-15, 1.580662431057301e-18, 4.0821443447747185e-10, 1.4310050922006212e-08, 6.1918758547108155e-06, 7.932949002559253e-13, 8.44323135712477e-12, 5.0202704271256823e-14, 1.2660659365337779e-07, 1.157627366410452e-06, 0.9999903440475464, 6.553959508437401e-08, 2.0235148667779868e-07, 2.1851372707798467e-12, 1.6052425735324505e-06], [1.1972208824317931e-07, 6.702364174770992e-08, 1.1828708170496713e-15, 8.760389552583134e-16, 1.9079109425715245e-17, 1.2525719128575474e-08, 7.099781700048435e-12, 4.288378079309041e-07, 1.6156422987662067e-12, 1.5647616882774606e-11, 1.0657479673076287e-12, 6.020854925736785e-08, 1.1575987457490555e-07, 0.9999947547912598, 1.1473142649265355e-06, 3.2776865737105254e-06, 2.052152003884089e-09], [2.0197714434289082e-07, 8.154537600724154e-10, 1.5709016452092328e-06, 7.634437549643939e-15, 2.529318117797108e-12, 1.1696261906050942e-13, 5.896984983655429e-11, 9.20934786763361e-11, 2.027341224675183e-06, 3.832875961062854e-10, 3.316274477249692e-10, 1.0899666585961754e-12, 1.2303078733566508e-07, 1.2645024582980113e-07, 0.9999887943267822, 3.667383907668409e-06, 3.4978506846528035e-06], [0.09275253862142563, 0.004834398627281189, 0.00046307742013596, 0.004604238085448742, 2.577100349299144e-05, 0.003332179971039295, 3.9579785493515374e-07, 1.710215292405337e-05, 0.00010590515012154356, 0.0026203440502285957, 0.0002859305532183498, 0.00018551159882918, 9.731306818139274e-06, 0.0018767768051475286, 0.00016039890761021525, 0.2481573522090912, 0.6405683159828186]], [[0.13763052225112915, 0.007572317495942116, 0.016649125143885612, 0.008278465829789639, 0.030555186793208122, 0.10296937823295593, 0.004919982049614191, 0.009661286137998104, 0.005062412470579147, 0.0040313368663191795, 0.016407839953899384, 0.010894299484789371, 0.01038382574915886, 0.0070262388326227665, 0.006180705036967993, 0.02320224419236183, 0.5985748171806335], [0.22497038543224335, 0.03580440953373909, 0.003987085074186325, 0.0047554862685501575, 0.0705980658531189, 0.11080984026193619, 0.0011137882247567177, 0.0047094691544771194, 0.006064513698220253, 0.003744531888514757, 0.008429368957877159, 0.0031924783252179623, 0.0063768420368433, 0.0020387694239616394, 0.0017989110201597214, 0.02689111977815628, 0.4847148358821869], [0.15108419954776764, 0.0011099480325356126, 0.08305899798870087, 0.0005931833293288946, 0.010300183668732643, 0.08027634024620056, 0.0033633215352892876, 0.013877559453248978, 0.0038185552693903446, 0.00049152149586007, 0.010462462902069092, 0.17373506724834442, 0.056185174733400345, 0.002660918515175581, 0.0021406635642051697, 0.006956109311431646, 0.39988571405410767], [0.16150370240211487, 0.0009789166506379843, 0.0026734669227153063, 0.04689320921897888, 0.007552271243184805, 0.054632898420095444, 0.0005238503799773753, 0.001564919832162559, 0.0006913276156410575, 0.0006988522945903242, 0.0009983315831050277, 0.00323137897066772, 0.002068557543680072, 0.0008421640377491713, 0.0006567593081854284, 0.004948467016220093, 0.7095409631729126], [0.10986747592687607, 0.006182527169585228, 0.009748488664627075, 0.0028291840571910143, 0.007059688214212656, 0.0745735615491867, 0.00233279075473547, 0.008508664555847645, 0.0030956726986914873, 0.003168534254655242, 0.0134673360735178, 0.010096140205860138, 0.010986280627548695, 0.013098658993840218, 0.00808791071176529, 0.03073761984705925, 0.6861594915390015], [0.09853404015302658, 0.0031159978825598955, 0.014662024565041065, 0.0025359871797263622, 0.015874305739998817, 0.045081399381160736, 0.002591719152405858, 0.005651059094816446, 0.0038917819038033485, 0.00278765382245183, 0.012989486567676067, 0.007090213242918253, 0.007797516882419586, 0.008492836728692055, 0.011207493022084236, 0.02874520979821682, 0.7289513945579529], [0.11336351931095123, 0.0049814339727163315, 0.21393267810344696, 0.004121432546526194, 0.009572969749569893, 0.03079412877559662, 0.1463482826948166, 0.029080789536237717, 0.007713729981333017, 0.00943335797637701, 0.005222646985203028, 0.03174322843551636, 0.009563341736793518, 0.007108371239155531, 0.0021600457839667797, 0.02614147961139679, 0.34871864318847656], [0.12163097411394119, 0.000847412389703095, 0.03780816122889519, 0.0005983181181363761, 0.006553827319294214, 0.0482696034014225, 0.0007861428312025964, 0.07192595303058624, 0.00217697536572814, 0.0003747402806766331, 0.004532965831458569, 0.00905547197908163, 0.0016444313805550337, 0.0007130971644073725, 0.0013381772441789508, 0.006923255044966936, 0.6848204731941223], [0.22496411204338074, 0.0011877515353262424, 0.021023696288466454, 0.0010653126519173384, 0.02414265275001526, 0.12493263185024261, 0.001441512955352664, 0.012102673761546612, 0.08884521573781967, 0.0006567558157257736, 0.0013338032877072692, 0.011166869662702084, 0.002269543707370758, 0.0033255957532674074, 0.0011025018757209182, 0.02107318677008152, 0.45936617255210876], [0.11649944633245468, 0.0018366252770647407, 0.017341207712888718, 0.0010311915539205074, 0.013609816320240498, 0.05885561183094978, 0.0005708072567358613, 0.0015892680967226624, 0.001056441804394126, 0.00738106295466423, 0.0023633865639567375, 0.001121358829550445, 0.0021188128739595413, 0.0001426306553184986, 0.0008664557244628668, 0.0040740882977843285, 0.7695419192314148], [0.11493964493274689, 0.005411341320723295, 0.06623759120702744, 0.0022394589614123106, 0.01466272957623005, 0.06895043700933456, 0.0017395541071891785, 0.01458507589995861, 0.001418479485437274, 0.0024851299822330475, 0.05754125118255615, 0.006009282544255257, 0.0049582491628825665, 0.00277943373657763, 0.0005647583748213947, 0.012004578486084938, 0.623473048210144], [0.1113549992442131, 0.0027054387610405684, 0.4861602187156677, 0.0019873392302542925, 0.015011206269264221, 0.05057552084326744, 0.0026055057533085346, 0.009277787059545517, 0.0049048978835344315, 0.0001828365057008341, 0.0013527561677619815, 0.01770874671638012, 0.006420329213142395, 0.0005418114014901221, 0.0010065344395115972, 0.00352996913716197, 0.2846740484237671], [0.1854722648859024, 0.0027257832698524, 0.07094608247280121, 0.001731681521050632, 0.018302051350474358, 0.09128833562135696, 0.0009532677358947694, 0.007366788573563099, 0.0016476496821269393, 0.0015548844821751118, 0.002096497220918536, 0.01239044964313507, 0.08528250455856323, 0.0010701545979827642, 0.00040108757093548775, 0.009905612096190453, 0.5068649053573608], [0.15412895381450653, 0.005434836260974407, 0.05628025159239769, 0.0028638383373618126, 0.06804084777832031, 0.08943527936935425, 0.004741191398352385, 0.004973946139216423, 0.009781254455447197, 0.00023606365721207112, 0.0034214621409773827, 0.00601264089345932, 0.0051378835923969746, 0.02724187821149826, 0.001495588687248528, 0.007468183524906635, 0.5533059239387512], [0.1739373356103897, 0.00033546052873134613, 0.006017968058586121, 0.00015786227595526725, 0.025278881192207336, 0.15595002472400665, 0.00021869673219043761, 0.0055181728675961494, 0.000826958566904068, 0.0003202088992111385, 0.00031640773522667587, 0.0029168380424380302, 0.0008733273716643453, 0.0006112415576353669, 0.11665266752243042, 0.0029651024378836155, 0.5071028470993042], [0.1311100721359253, 0.0071663446724414825, 0.03119106963276863, 0.004881325643509626, 0.06475961953401566, 0.17936839163303375, 0.022717654705047607, 0.01664813980460167, 0.017625225707888603, 0.0053651281632483006, 0.015299837104976177, 0.015848694369196892, 0.012689412571489811, 0.0041625346057116985, 0.003924640826880932, 0.006975253112614155, 0.460266649723053], [0.10411977767944336, 0.004893835633993149, 0.01928696222603321, 0.007287063170224428, 0.01790488325059414, 0.08340548723936081, 0.005900765303522348, 0.013897480443120003, 0.0038945996202528477, 0.001985312905162573, 0.009835893288254738, 0.011304153129458427, 0.006267855409532785, 0.00953003391623497, 0.0027670084964483976, 0.015951750800013542, 0.6817671060562134]], [[0.028214657679200172, 0.0008986772154457867, 0.0015550305834040046, 0.0006471064989455044, 0.006590086501091719, 0.16408506035804749, 0.019629668444395065, 0.0176602303981781, 0.009533214382827282, 0.009555979631841183, 0.014075727201998234, 0.015343546867370605, 0.01090764719992876, 0.021302491426467896, 0.03514471277594566, 0.13812163472175598, 0.5067346692085266], [0.4968920946121216, 0.05146392434835434, 0.004745760932564735, 0.006054847966879606, 0.009188937023282051, 0.01019908394664526, 0.0014743113424628973, 0.0009438058477826416, 7.110349542926997e-05, 0.0005582603625953197, 0.0002822958049364388, 0.001058763824403286, 0.0017726916121318936, 0.0020391475409269333, 0.0005800708895549178, 0.002844355534762144, 0.40983065962791443], [0.3475150465965271, 0.1989550143480301, 0.07333297282457352, 0.0088140107691288, 0.013097884133458138, 0.01693931594491005, 0.004582794848829508, 0.004148425534367561, 0.000851640070322901, 0.0003247719432692975, 0.00023248618526849896, 0.0005634786793962121, 0.0035301519092172384, 0.00587855838239193, 0.006908917799592018, 0.005049309693276882, 0.3092752993106842], [0.16375824809074402, 0.5894628167152405, 0.09199006110429764, 0.03273487836122513, 0.015130256302654743, 0.012768796645104885, 0.0025233053602278233, 0.0020583190489560366, 0.0004928721464239061, 0.00026156939566135406, 8.964384323917329e-05, 0.00012800599506590515, 0.00026141738635487854, 0.001384373172186315, 0.0010079432977363467, 0.009180697612464428, 0.07676666229963303], [0.06604939699172974, 0.18277552723884583, 0.3349970877170563, 0.17709754407405853, 0.0952327698469162, 0.022693077102303505, 0.014935262501239777, 0.0058683911338448524, 0.004095572512596846, 0.0031132774893194437, 0.0007079059723764658, 0.00045736669562757015, 0.0006031758384779096, 0.001022925367578864, 0.004349520895630121, 0.009931652806699276, 0.07606948912143707], [0.24602597951889038, 0.07212148606777191, 0.05699734762310982, 0.1098979115486145, 0.1526789367198944, 0.04816979914903641, 0.008930238895118237, 0.006473397370427847, 0.002403074176982045, 0.00875258818268776, 0.0037340864073485136, 0.0019691342022269964, 0.0007250038906931877, 0.0014923375565558672, 0.0010206029983237386, 0.012380862608551979, 0.26622727513313293], [0.08273191750049591, 0.02608814835548401, 0.019806325435638428, 0.05160323157906532, 0.14028999209403992, 0.20487089455127716, 0.11842766404151917, 0.013516378588974476, 0.004223806317895651, 0.005427404306828976, 0.0033876453526318073, 0.0011074127396568656, 0.0004935142351314425, 0.0002968164917547256, 7.337515853578225e-05, 0.0010340680601075292, 0.3266213536262512], [0.12383589893579483, 0.020913466811180115, 0.003915793262422085, 0.010354917496442795, 0.07686785608530045, 0.17840483784675598, 0.21078743040561676, 0.05127686634659767, 0.003973463550209999, 0.0062005906365811825, 0.0031335277017205954, 0.002155614783987403, 0.0005178166902624071, 0.0006403473089449108, 0.00015577998419757932, 0.000655322743114084, 0.3062104880809784], [0.12844163179397583, 0.013631170615553856, 0.004675520118325949, 0.0018074485706165433, 0.0440385676920414, 0.09455625712871552, 0.381856232881546, 0.10422685742378235, 0.020203785970807076, 0.0008969523478299379, 0.00186163280159235, 0.0011100092669948936, 0.0021618036553263664, 0.0013099446659907699, 0.0004970415029674768, 0.0005231637042015791, 0.1982019990682602], [0.07052488625049591, 0.0017884859116747975, 0.004743223078548908, 0.0005956533132120967, 0.004985527601093054, 0.016974888741970062, 0.05576411262154579, 0.19255679845809937, 0.4830165207386017, 0.0075475899502635, 0.0016723675653338432, 0.003986912313848734, 0.002173313172534108, 0.003291000612080097, 0.0006580714252777398, 0.002437828341498971, 0.1472829133272171], [0.012257306836545467, 0.0028029948007315397, 0.0015825039008632302, 0.0006848534685559571, 0.003622622461989522, 0.007200097199529409, 0.02353123389184475, 0.05394398048520088, 0.8082890510559082, 0.05632277950644493, 0.002804321004077792, 0.0013347718631848693, 0.0017516805091872811, 0.0016977189807221293, 0.0015476943226531148, 0.002140119206160307, 0.018486205488443375], [0.07829231023788452, 0.0021301498636603355, 0.0024174342397600412, 0.0018065929180011153, 0.012934479862451553, 0.020255072042346, 0.023318028077483177, 0.04233315959572792, 0.11242156475782394, 0.2675459086894989, 0.08675818890333176, 0.016394004225730896, 0.003913545981049538, 0.004867923445999622, 0.005823314189910889, 0.02710275910794735, 0.2916855812072754], [0.0552537627518177, 0.0008670839597471058, 0.0011666599893942475, 0.0013520083157345653, 0.018034953624010086, 0.014893854036927223, 0.01893479749560356, 0.014931485056877136, 0.07560958713293076, 0.22347787022590637, 0.2720243036746979, 0.08526115864515305, 0.021072398871183395, 0.00893709622323513, 0.010497502982616425, 0.014327913522720337, 0.16335752606391907], [0.15344823896884918, 0.005464513320475817, 0.0010931757278740406, 0.0021367406006902456, 0.021225128322839737, 0.030549077317118645, 0.01925441436469555, 0.018743198364973068, 0.007007366046309471, 0.06137066334486008, 0.1194571927189827, 0.11435966938734055, 0.09744155406951904, 0.03626547008752823, 0.008244575001299381, 0.04082239046692848, 0.2631165385246277], [0.053071800619363785, 0.0018474451499059796, 0.0005350155988708138, 0.00014095031656324863, 0.003656384302303195, 0.012223911471664906, 0.034121349453926086, 0.018045898526906967, 0.007290930952876806, 0.012134872376918793, 0.034552350640296936, 0.12261524796485901, 0.4081684648990631, 0.07287625223398209, 0.040436260402202606, 0.025425229221582413, 0.15285757184028625], [0.04589550942182541, 0.012570375576615334, 0.0009638631599955261, 0.0006410925998352468, 0.00154017040040344, 0.027073143050074577, 0.027848219498991966, 0.050842706114053726, 0.01004045270383358, 0.042642805725336075, 0.03746800869703293, 0.049240633845329285, 0.06566610187292099, 0.249130517244339, 0.13449914753437042, 0.122127965092659, 0.12180925160646439], [0.21691486239433289, 0.014914077706634998, 0.012347077950835228, 0.004796546418219805, 0.027825118973851204, 0.033973801881074905, 0.012733775191009045, 0.011926327832043171, 0.006089358124881983, 0.007595418486744165, 0.009748956188559532, 0.005397309083491564, 0.009605955332517624, 0.01444400567561388, 0.021094143390655518, 0.06401216238737106, 0.5265811085700989]]], [[[0.08160451799631119, 0.027167238295078278, 0.006886980030685663, 0.01584520936012268, 0.08098098635673523, 0.277580589056015, 0.01581108756363392, 0.022522710263729095, 0.008201264776289463, 0.014734989032149315, 0.0650356262922287, 0.04130808636546135, 0.034031230956315994, 0.029562899842858315, 0.006771223619580269, 0.04636002331972122, 0.22559529542922974], [0.17287683486938477, 0.008083498105406761, 0.006693926174193621, 0.006558581721037626, 0.06801297515630722, 0.15216363966464996, 0.020299101248383522, 0.01107417419552803, 0.008347035385668278, 0.006906269583851099, 0.024381592869758606, 0.005125592928379774, 0.004473609384149313, 0.0034364310558885336, 0.0013307137414813042, 0.07222045212984085, 0.4280155897140503], [0.12697799503803253, 0.019675305113196373, 0.0037674210034310818, 0.004345811437815428, 0.12943845987319946, 0.2448875457048416, 0.04636439308524132, 0.009546583518385887, 0.004095960408449173, 0.0027780146338045597, 0.012811007909476757, 0.0023416096810251474, 0.002000428969040513, 0.0026179540436714888, 0.0009515897836536169, 0.05696214362978935, 0.3304377496242523], [0.15109992027282715, 0.011197131127119064, 0.0016271850327029824, 0.0003822293656412512, 0.09615066647529602, 0.2119845449924469, 0.01078126486390829, 0.004613995086401701, 0.001371385413222015, 0.001614091102965176, 0.01654661074280739, 0.0007718046545051038, 0.0005335496971383691, 0.0016316930996254086, 0.0008384458487853408, 0.060554202646017075, 0.42830121517181396], [0.13788384199142456, 0.024541305378079414, 0.010552840307354927, 0.010156811214983463, 0.06758833676576614, 0.17561261355876923, 0.026284119114279747, 0.028996746987104416, 0.013003634288907051, 0.01596333645284176, 0.032668787986040115, 0.007233962416648865, 0.004456330090761185, 0.009902480989694595, 0.0049859220162034035, 0.06752992421388626, 0.3626389801502228], [0.13917365670204163, 0.05241597071290016, 0.02317851036787033, 0.02338356152176857, 0.05256560817360878, 0.11364717036485672, 0.009810466319322586, 0.01711958274245262, 0.007021800149232149, 0.010078697465360165, 0.0092193353921175, 0.008170953020453453, 0.010123670101165771, 0.0260117519646883, 0.014050462283194065, 0.05345919728279114, 0.430569589138031], [0.1762567162513733, 0.03489912301301956, 0.02186506986618042, 0.002574518322944641, 0.04582929611206055, 0.11110574007034302, 0.008901623077690601, 0.02540232427418232, 0.009060499258339405, 0.004714100155979395, 0.07273783534765244, 0.006364718545228243, 0.0049118963070213795, 0.0031520791817456484, 0.0017193255480378866, 0.06869576871395111, 0.401809424161911], [0.17051836848258972, 0.03870256617665291, 0.019225705415010452, 0.0067921848967671394, 0.0777050256729126, 0.11978907138109207, 0.024264158681035042, 0.010044937022030354, 0.005949948914349079, 0.005481702741235495, 0.029858876019716263, 0.006540538277477026, 0.009561792947351933, 0.005466898903250694, 0.0031000031158328056, 0.06550640612840652, 0.4014919400215149], [0.18187013268470764, 0.038015540689229965, 0.017346354201436043, 0.003034706227481365, 0.07108375430107117, 0.10829772055149078, 0.012520602904260159, 0.012044784612953663, 0.0010456070303916931, 0.000535442668478936, 0.020510852336883545, 0.006249374710023403, 0.007017594762146473, 0.005130692385137081, 0.003929018508642912, 0.046767707914114, 0.46460017561912537], [0.1573820561170578, 0.015220342203974724, 0.0021379292011260986, 0.0010035032173618674, 0.06373579055070877, 0.17780788242816925, 0.00421278178691864, 0.0022495677694678307, 0.0009856580290943384, 0.0004595803620759398, 0.08503357321023941, 0.0006738165975548327, 0.0006530536920763552, 0.002093341201543808, 0.0013139387592673302, 0.058630961924791336, 0.4264061450958252], [0.13391946256160736, 0.02822543866932392, 0.013635724782943726, 0.0038954231422394514, 0.07807137072086334, 0.10662388801574707, 0.018939699977636337, 0.02319231629371643, 0.007130139507353306, 0.003820492187514901, 0.013910424895584583, 0.006304525304585695, 0.009599646553397179, 0.005657306406646967, 0.002003297908231616, 0.08878716826438904, 0.45628365874290466], [0.1671447604894638, 0.05139445140957832, 0.009782985784113407, 0.008655685000121593, 0.08698267489671707, 0.14167232811450958, 0.042627543210983276, 0.01478166226297617, 0.006785861682146788, 0.007109350059181452, 0.03257511556148529, 0.005185112822800875, 0.0059072296135127544, 0.007268248591572046, 0.00518819922581315, 0.08040303736925125, 0.32653576135635376], [0.16914457082748413, 0.008814066648483276, 0.004489385988563299, 0.00772363506257534, 0.05305252969264984, 0.07171795517206192, 0.022095229476690292, 0.0034626207780092955, 0.003009939566254616, 0.004285998642444611, 0.03754211217164993, 0.001047702506184578, 0.0013688236940652132, 0.00245563848875463, 0.0027024198789149523, 0.08072718977928162, 0.5263602137565613], [0.23145148158073425, 0.01564369723200798, 0.0033844986464828253, 0.001474945805966854, 0.03614882007241249, 0.0936964675784111, 0.005887588951736689, 0.0033029234036803246, 0.0033298141788691282, 0.003280257573351264, 0.019159236922860146, 0.0009293464245274663, 0.0006429237546399236, 0.00034239416709169745, 0.0003876069386024028, 0.07169891893863678, 0.509239137172699], [0.23146341741085052, 0.007708603050559759, 0.0036388684529811144, 0.005625357385724783, 0.03841663897037506, 0.08096864819526672, 0.01675804890692234, 0.005546223372220993, 0.008167914114892483, 0.012462764978408813, 0.02834966778755188, 0.001187946298159659, 0.001157762948423624, 0.0009419128182344139, 0.0016154720215126872, 0.06498055905103683, 0.49101027846336365], [0.16145390272140503, 0.0368964821100235, 0.01069081574678421, 0.013581497594714165, 0.036455187946558, 0.08697096258401871, 0.021759459748864174, 0.020883668214082718, 0.016748327761888504, 0.021490702405571938, 0.03063148818910122, 0.00906380545347929, 0.006845396477729082, 0.012087874114513397, 0.00823818426579237, 0.09755873680114746, 0.408643513917923], [0.1253957599401474, 0.029741307720541954, 0.012921594083309174, 0.015122723765671253, 0.04917050898075104, 0.0853247344493866, 0.007526932284235954, 0.011753919534385204, 0.004762591794133186, 0.011169699020683765, 0.009210157208144665, 0.003562658093869686, 0.005605932790786028, 0.010656685568392277, 0.005324559286236763, 0.06872735172510147, 0.5440228581428528]], [[0.13577374815940857, 0.028784222900867462, 0.012634030543267727, 0.032260697335004807, 0.04116920754313469, 0.08793489634990692, 0.02791338972747326, 0.020268697291612625, 0.008979814127087593, 0.020531998947262764, 0.013597634620964527, 0.008565119467675686, 0.007891197688877583, 0.024038149043917656, 0.01303768903017044, 0.04158354550600052, 0.4750358760356903], [0.18827024102210999, 0.007204159628599882, 0.003655149368569255, 0.0023171762004494667, 0.046662479639053345, 0.042796507477760315, 0.01019686833024025, 0.005894348956644535, 0.0026227314956486225, 0.0019320403225719929, 0.005888806190341711, 0.0030798588413745165, 0.0030365868005901575, 0.003973373211920261, 0.0008502205600962043, 0.06076200678944588, 0.6108574867248535], [0.20796425640583038, 0.016968844458460808, 0.002080311765894294, 0.01656845025718212, 0.009906280785799026, 0.1989184021949768, 0.004441648256033659, 0.019082380458712578, 0.003536461153998971, 0.014871407300233841, 0.014614363200962543, 0.0020339691545814276, 0.011830729432404041, 0.006761317607015371, 0.004012899473309517, 0.018631761893630028, 0.44777658581733704], [0.2451520562171936, 0.019983887672424316, 0.002556728897616267, 0.0034105880185961723, 0.016219303011894226, 0.13347434997558594, 0.0021705981343984604, 0.012039003893733025, 0.0019097912590950727, 0.005164721980690956, 0.006082254461944103, 0.0017375379102304578, 0.0023957667872309685, 0.00420505041256547, 0.0056061940267682076, 0.05065755173563957, 0.4872346520423889], [0.13660135865211487, 0.01524487603455782, 0.003344000084325671, 0.007245185784995556, 0.011168653145432472, 0.40746867656707764, 0.016182858496904373, 0.008451975882053375, 0.0026789389085024595, 0.006711954716593027, 0.011733746156096458, 0.0014373308513313532, 0.00492981169372797, 0.00439037661999464, 0.003719322383403778, 0.016799934208393097, 0.3418910503387451], [0.1631002277135849, 0.021083034574985504, 0.011012019589543343, 0.03015783615410328, 0.045238662511110306, 0.09035483747720718, 0.02363581582903862, 0.021684322506189346, 0.005785117391496897, 0.004378294572234154, 0.006974624004215002, 0.00541642215102911, 0.006318151485174894, 0.011678659357130527, 0.010645944625139236, 0.03971417248249054, 0.5028218030929565], [0.2831036448478699, 0.04182348772883415, 0.008554529398679733, 0.0094545753672719, 0.013751032762229443, 0.2411005049943924, 0.004317174199968576, 0.015562339685857296, 0.008029457181692123, 0.019065286964178085, 0.02396179549396038, 0.004745795391499996, 0.0035026217810809612, 0.007516284007579088, 0.003529589856043458, 0.01684732548892498, 0.2951345145702362], [0.23892563581466675, 0.03774697333574295, 0.007117143366485834, 0.006668664515018463, 0.028130270540714264, 0.20393404364585876, 0.007938802242279053, 0.004256334155797958, 0.0034616657067090273, 0.0035443990491330624, 0.012680464424192905, 0.0036998616997152567, 0.003191940486431122, 0.005682331044226885, 0.0013225285802036524, 0.026364902034401894, 0.40533414483070374], [0.27752262353897095, 0.02268439158797264, 0.0063851927407085896, 0.006186510436236858, 0.026518914848566055, 0.15134377777576447, 0.006788697559386492, 0.023910075426101685, 0.003997203893959522, 0.006983404513448477, 0.011588316410779953, 0.007346972823143005, 0.007243892643600702, 0.008158594369888306, 0.011044250801205635, 0.03720355033874512, 0.38509368896484375], [0.3695243299007416, 0.019298609346151352, 0.005323898512870073, 0.0027493273373693228, 0.01821381039917469, 0.1794058233499527, 0.012689649127423763, 0.012557690031826496, 0.0015549566596746445, 0.0002012012992054224, 0.004218884743750095, 0.00424842769280076, 0.000870455929543823, 0.0029968656599521637, 0.004273752216249704, 0.016086654737591743, 0.3457856774330139], [0.15329504013061523, 0.03774529695510864, 0.04220779240131378, 0.016385728493332863, 0.06231601536273956, 0.0717749297618866, 0.032468412071466446, 0.0324062779545784, 0.014551852829754353, 0.008219202049076557, 0.009107944555580616, 0.03703921660780907, 0.02317611686885357, 0.023908156901597977, 0.004698865115642548, 0.038110069930553436, 0.3925889730453491], [0.20523715019226074, 0.022009387612342834, 0.0065259444527328014, 0.010678287595510483, 0.03348613157868385, 0.1416512131690979, 0.00870787538588047, 0.024504438042640686, 0.01054700743407011, 0.015423188917338848, 0.019751030951738358, 0.0048771812580525875, 0.008102616295218468, 0.017233816906809807, 0.004669356159865856, 0.03213828057050705, 0.434457004070282], [0.2759474813938141, 0.016453629359602928, 0.007052114699035883, 0.000747822632547468, 0.026931237429380417, 0.12439023703336716, 0.008402240462601185, 0.010345488786697388, 0.006042276043444872, 0.0008523249998688698, 0.007036921568214893, 0.004869435913860798, 0.0008334210142493248, 0.005886673461645842, 0.0012594570871442556, 0.010062674060463905, 0.49288657307624817], [0.1965048909187317, 0.024573717266321182, 0.0041720750741660595, 0.004390877205878496, 0.013558638282120228, 0.09939491748809814, 0.004685308784246445, 0.01785528101027012, 0.0031759897246956825, 0.006338763050734997, 0.009679213166236877, 0.0037391625810414553, 0.004816216882318258, 0.009600065648555756, 0.003951509017497301, 0.029611356556415558, 0.5639520287513733], [0.22048960626125336, 0.020032936707139015, 0.005158195272088051, 0.076572947204113, 0.03839092329144478, 0.09330108761787415, 0.001196152763441205, 0.010546678677201271, 0.0010759083088487387, 0.004783454351127148, 0.004462724085897207, 0.0026215717662125826, 0.005323299206793308, 0.0048370142467319965, 0.005862893536686897, 0.1031879335641861, 0.40215668082237244], [0.10497988015413284, 0.014574946835637093, 0.002866654423996806, 0.003546136897057295, 0.009785158559679985, 0.46176350116729736, 0.018286501988768578, 0.00862723309546709, 0.0032440046779811382, 0.0066124191507697105, 0.016497408971190453, 0.0013459527399390936, 0.003754409495741129, 0.005957864224910736, 0.005769542418420315, 0.02206750586628914, 0.31032097339630127], [0.12692119181156158, 0.01932610385119915, 0.0075715212151408195, 0.01276752445846796, 0.0355326384305954, 0.04251094162464142, 0.017877180129289627, 0.01967526227235794, 0.00507954740896821, 0.007901064120233059, 0.007660961709916592, 0.005255930591374636, 0.005401696544140577, 0.011656402610242367, 0.0063666850328445435, 0.04898091405630112, 0.6195144057273865]], [[0.18510006368160248, 0.028047310188412666, 0.011318385601043701, 0.041346967220306396, 0.033425990492105484, 0.07483459264039993, 0.02735750377178192, 0.02001512050628662, 0.010818572714924812, 0.030811170116066933, 0.011573580093681812, 0.011571545153856277, 0.017799455672502518, 0.0337299220263958, 0.04701394960284233, 0.07136552780866623, 0.3438703417778015], [0.10916256904602051, 0.005444556474685669, 0.020143402740359306, 0.03381569683551788, 0.30326521396636963, 0.08323108404874802, 0.003739119041711092, 0.005778277292847633, 0.003954846877604723, 0.008911704644560814, 0.007114251609891653, 0.003843554062768817, 0.00129918463062495, 0.001685595721937716, 0.006208016537129879, 0.05001534894108772, 0.3523876368999481], [0.15895873308181763, 0.01368572935461998, 0.00928550399839878, 0.0048832050524652, 0.270776629447937, 0.13677679002285004, 0.004452337510883808, 0.006501403171569109, 0.002414404647424817, 0.0012832983629778028, 0.007234205957502127, 0.003006130689755082, 0.000973614864051342, 0.0019785554613918066, 0.0018933129031211138, 0.062454551458358765, 0.31344160437583923], [0.2520061135292053, 0.006015639286488295, 0.0023353099822998047, 0.0008085626177489758, 0.11360527575016022, 0.22784893214702606, 0.0022431763354688883, 0.0025920842308551073, 0.0005798409110866487, 0.00045100925490260124, 0.002211319049820304, 0.0008454452035948634, 0.0001418885512975976, 0.0009076541755348444, 0.0018338852096349, 0.025924166664481163, 0.3596496880054474], [0.17943075299263, 0.023417813703417778, 0.007483496330678463, 0.006371283438056707, 0.2610548734664917, 0.11937735229730606, 0.003920632414519787, 0.0027685898821800947, 0.0028295973315835, 0.0016860523028299212, 0.005146957468241453, 0.0017105666920542717, 0.0005199717707000673, 0.0027277772314846516, 0.0014391591539606452, 0.040470872074365616, 0.3396441638469696], [0.10649851709604263, 0.08435490727424622, 0.014661855064332485, 0.0817885473370552, 0.07369869202375412, 0.09933659434318542, 0.03352712467312813, 0.03248659893870354, 0.011187570169568062, 0.026003366336226463, 0.005065356381237507, 0.005361009854823351, 0.0042399452067911625, 0.010904123075306416, 0.03854146599769592, 0.047152433544397354, 0.3251919448375702], [0.18747511506080627, 0.015196160413324833, 0.002263955771923065, 0.0009654897730797529, 0.1409592479467392, 0.11003980040550232, 0.0008416185737587512, 0.0007823936175554991, 0.0017727634403854609, 0.00030709325801581144, 0.0022375681437551975, 0.0005926452577114105, 0.00010164664126932621, 0.000819593551568687, 0.00042151496745646, 0.1133035272359848, 0.4219198226928711], [0.23167747259140015, 0.004495210479944944, 0.0010843658819794655, 0.0015347213484346867, 0.14012806117534637, 0.11472716182470322, 0.0033126515336334705, 0.001849384163506329, 0.0008622222812846303, 0.0007402458577416837, 0.005942551884800196, 0.000988268875516951, 0.000517013540957123, 0.0007112601306289434, 0.0008592519443482161, 0.10231778025627136, 0.388252317905426], [0.14588753879070282, 0.021604551002383232, 0.001370208221487701, 0.0019006310030817986, 0.09475292265415192, 0.11054553091526031, 0.0018326268764212728, 0.006047888193279505, 0.0014095730148255825, 0.0008133035153150558, 0.0020830132998526096, 0.0010438866447657347, 0.00042578409193083644, 0.0013820602325722575, 0.0009071282693184912, 0.08313039690256119, 0.5248629450798035], [0.2099575400352478, 0.010050992481410503, 0.0011682353215292096, 0.00048494190559722483, 0.0420072078704834, 0.13314877450466156, 0.0018132554832845926, 0.0028552315197885036, 0.0028044183272868395, 0.00025096640456467867, 0.0019902829080820084, 0.0010031890124082565, 0.00019200568203814328, 0.0017504055285826325, 0.0006600913475267589, 0.06652123481035233, 0.5233411192893982], [0.15997357666492462, 0.029641635715961456, 0.00519922561943531, 0.0023049400188028812, 0.11348272114992142, 0.12029996514320374, 0.002850268268957734, 0.006954158656299114, 0.006899508647620678, 0.002325245412066579, 0.004731555003672838, 0.005206884816288948, 0.000857455946970731, 0.011242949403822422, 0.00861708726733923, 0.13798010349273682, 0.38143280148506165], [0.19269733130931854, 0.009199021384119987, 0.0021950751543045044, 0.0011497971136122942, 0.10293605923652649, 0.11684329807758331, 0.0017247366486117244, 0.005971055943518877, 0.0036919917911291122, 0.0018614502623677254, 0.0046928939409554005, 0.00410838145762682, 0.0014450341695919633, 0.0033506841864436865, 0.003075492335483432, 0.17745737731456757, 0.36760029196739197], [0.23719598352909088, 0.014561244286596775, 0.0023136716336011887, 0.0013936866307631135, 0.09272310882806778, 0.12569716572761536, 0.0011346108512952924, 0.005264774896204472, 0.007129220757633448, 0.001253336202353239, 0.0021349939052015543, 0.0030145877972245216, 0.0009374453802593052, 0.005776932463049889, 0.0028245500288903713, 0.08317366987466812, 0.4134710729122162], [0.2517361640930176, 0.008821425028145313, 0.002324651228263974, 0.002433807821944356, 0.0646316260099411, 0.09483776241540909, 0.0017662419704720378, 0.007332377135753632, 0.009443261660635471, 0.0014408623101189733, 0.004058958031237125, 0.0032173909712582827, 0.000798256485722959, 0.0017505309078842402, 0.007203604094684124, 0.15302833914756775, 0.3851746916770935], [0.24949893355369568, 0.00459660217165947, 0.0006759644602425396, 0.0002427608851576224, 0.03575335815548897, 0.10494834929704666, 0.0011115346569567919, 0.0005539003759622574, 0.0020790258422493935, 0.00011296629963908345, 0.002276725834235549, 0.0010725592728704214, 0.0001491874863859266, 0.0016187317669391632, 0.0008990420028567314, 0.12919379770755768, 0.4652165472507477], [0.2410620003938675, 0.011706833727657795, 0.003123294794932008, 0.002787594450637698, 0.05044017359614372, 0.07068363577127457, 0.0019322310108691454, 0.0015442435396835208, 0.0047949813306331635, 0.0016725334571674466, 0.005628491286188364, 0.0026458692736923695, 0.0008025917923077941, 0.004112021531909704, 0.003839328186586499, 0.1574065238237381, 0.4358176290988922], [0.12563569843769073, 0.03062407672405243, 0.010939767584204674, 0.042466942220926285, 0.033687107264995575, 0.06894087046384811, 0.020790018141269684, 0.021879546344280243, 0.010860064998269081, 0.024609491229057312, 0.0072403536178171635, 0.007331207860261202, 0.009866093285381794, 0.013494031503796577, 0.034938499331474304, 0.058025721460580826, 0.47867047786712646]], [[0.1715061515569687, 0.05652061477303505, 0.03283015266060829, 0.0477357842028141, 0.039762191474437714, 0.03956158086657524, 0.024963069707155228, 0.026382241398096085, 0.008787531405687332, 0.011776326224207878, 0.007811460178345442, 0.01088688988238573, 0.011640246957540512, 0.02952890656888485, 0.027291158214211464, 0.03371438756585121, 0.4193013310432434], [0.1483566164970398, 0.024384887889027596, 0.02808462642133236, 0.0508016012609005, 0.053069621324539185, 0.04994626343250275, 0.04625199735164642, 0.04061603546142578, 0.00914813857525587, 0.006705037318170071, 0.004451676271855831, 0.008318603970110416, 0.011127625592052937, 0.016700929030776024, 0.02312404103577137, 0.04969010129570961, 0.4292222559452057], [0.12951940298080444, 0.04727339372038841, 0.027449283748865128, 0.045887116342782974, 0.044252973049879074, 0.05364958569407463, 0.06007316708564758, 0.0309875700622797, 0.012051776982843876, 0.011808003298938274, 0.0068226284347474575, 0.011497563682496548, 0.013900237157940865, 0.015145904384553432, 0.01564527116715908, 0.04768930375576019, 0.4263468086719513], [0.17545512318611145, 0.05384340509772301, 0.033455558121204376, 0.011946996673941612, 0.042559582740068436, 0.02719404362142086, 0.043424248695373535, 0.014947607181966305, 0.005931895226240158, 0.005792731419205666, 0.005559998098760843, 0.007286290172487497, 0.013332563452422619, 0.022373052313923836, 0.026946719735860825, 0.033332690596580505, 0.4766175448894501], [0.1855415552854538, 0.07091555744409561, 0.039483316242694855, 0.06087413802742958, 0.07425453513860703, 0.0676569938659668, 0.025905806571245193, 0.020352238789200783, 0.005344515200704336, 0.0127599211409688, 0.0058053540997207165, 0.006733533926308155, 0.010847055353224277, 0.01393636129796505, 0.015415336936712265, 0.03272756189107895, 0.35144612193107605], [0.1531836986541748, 0.027732694521546364, 0.013318289071321487, 0.026006357744336128, 0.021214094012975693, 0.03003881499171257, 0.010768628679215908, 0.008669856004416943, 0.0027787243016064167, 0.002562884008511901, 0.0018854138907045126, 0.0023125966545194387, 0.0022719118278473616, 0.007397779729217291, 0.004389619454741478, 0.012156863696873188, 0.6733118891716003], [0.10369690507650375, 0.09633879363536835, 0.0335349440574646, 0.059099383652210236, 0.0690099224448204, 0.06173933297395706, 0.09700874984264374, 0.05559639260172844, 0.02127949148416519, 0.013309451751410961, 0.007358776405453682, 0.009214441291987896, 0.016956891864538193, 0.018016589805483818, 0.020374106243252754, 0.07859565317630768, 0.23887021839618683], [0.1290346384048462, 0.05139961093664169, 0.03873089328408241, 0.04543287307024002, 0.09015823900699615, 0.08858188986778259, 0.06521577388048172, 0.055152542889118195, 0.0121993999928236, 0.007603103294968605, 0.006296188570559025, 0.007547695189714432, 0.015990806743502617, 0.022144906222820282, 0.01314469799399376, 0.03513321653008461, 0.31623348593711853], [0.14306345582008362, 0.03463224694132805, 0.027055658400058746, 0.04731850326061249, 0.03513077273964882, 0.04166030138731003, 0.06497509777545929, 0.02126077376306057, 0.0118664326146245, 0.008173535577952862, 0.003939375746995211, 0.00894688256084919, 0.00939225684851408, 0.020267587155103683, 0.005527611821889877, 0.022249387577176094, 0.4945402443408966], [0.16646817326545715, 0.04348083958029747, 0.030004439875483513, 0.04296734556555748, 0.039697013795375824, 0.05034815892577171, 0.035016220062971115, 0.019742876291275024, 0.006408992689102888, 0.006894203834235668, 0.007527077570557594, 0.00725639658048749, 0.011058232747018337, 0.01509090606123209, 0.0051613738760352135, 0.02006341703236103, 0.49281442165374756], [0.11579213291406631, 0.038872621953487396, 0.03219049796462059, 0.057798974215984344, 0.047471899539232254, 0.0747714564204216, 0.11773905158042908, 0.05829741060733795, 0.02962483838200569, 0.017633900046348572, 0.009744804352521896, 0.016242852434515953, 0.01996522583067417, 0.021128343418240547, 0.007471250370144844, 0.019516346976161003, 0.315738320350647], [0.08650599420070648, 0.04135992005467415, 0.028200818225741386, 0.0778903216123581, 0.04985630512237549, 0.10146953910589218, 0.1379488855600357, 0.08155167102813721, 0.042068883776664734, 0.02376450039446354, 0.013248278759419918, 0.017281660810112953, 0.014637990854680538, 0.01739577203989029, 0.013788178563117981, 0.03363272175192833, 0.2193986028432846], [0.05760757252573967, 0.04583762586116791, 0.02741256169974804, 0.11406305432319641, 0.04146359860897064, 0.07376714050769806, 0.17078842222690582, 0.07320825010538101, 0.05292057991027832, 0.024727195501327515, 0.011095971800386906, 0.015044535510241985, 0.009101315401494503, 0.011543945409357548, 0.022405054420232773, 0.026106154546141624, 0.2229071408510208], [0.08571696281433105, 0.05001813545823097, 0.026486359536647797, 0.06998305022716522, 0.05284707620739937, 0.07811299711465836, 0.1735808253288269, 0.10153096914291382, 0.023934297263622284, 0.008128072135150433, 0.0072711799293756485, 0.014730604365468025, 0.009495075792074203, 0.008501652628183365, 0.022560877725481987, 0.05694742873311043, 0.2101544290781021], [0.036342453211545944, 0.031810276210308075, 0.01809818483889103, 0.04520295187830925, 0.06688588857650757, 0.08895878493785858, 0.27941688895225525, 0.1505829095840454, 0.04109881445765495, 0.013779552653431892, 0.010651796124875546, 0.02200167253613472, 0.01122021023184061, 0.008804824203252792, 0.029536975547671318, 0.08225198835134506, 0.06335575133562088], [0.08369911462068558, 0.03374688699841499, 0.018057972192764282, 0.03658295422792435, 0.051924508064985275, 0.12970714271068573, 0.12534721195697784, 0.08424952626228333, 0.030972972512245178, 0.0243080947548151, 0.015278681181371212, 0.020966801792383194, 0.021575486287474632, 0.02205261029303074, 0.034519094973802567, 0.06976855546236038, 0.19724242389202118], [0.11780774593353271, 0.023284360766410828, 0.009001378901302814, 0.012322460301220417, 0.017623886466026306, 0.02600846439599991, 0.021759964525699615, 0.019846593961119652, 0.006680825259536505, 0.004616870079189539, 0.0040496354922652245, 0.005292261019349098, 0.005336816422641277, 0.019332323223352432, 0.01699827052652836, 0.033531446009874344, 0.6565066576004028]], [[0.13120003044605255, 0.016713781282305717, 0.011165979318320751, 0.025843225419521332, 0.021019402891397476, 0.04488776996731758, 0.04360842704772949, 0.02236117608845234, 0.01227598451077938, 0.01590493507683277, 0.01468481682240963, 0.012060790322721004, 0.014610357582569122, 0.04681294411420822, 0.0716954842209816, 0.05480138957500458, 0.4403533935546875], [0.07477882504463196, 0.026268083602190018, 0.05903298407793045, 0.19955019652843475, 0.16928346455097198, 0.08435129374265671, 0.042577821761369705, 0.026602884754538536, 0.009809264913201332, 0.01661076582968235, 0.018956344574689865, 0.010231160558760166, 0.01189426239579916, 0.03453698009252548, 0.05704484507441521, 0.02003897726535797, 0.13843192160129547], [0.09230054169893265, 0.016524873673915863, 0.05352810025215149, 0.05368131026625633, 0.2007647454738617, 0.2516137659549713, 0.06500957906246185, 0.011514316312968731, 0.0038415503222495317, 0.005426033399999142, 0.010480745695531368, 0.008205213584005833, 0.005184169393032789, 0.00484803831204772, 0.012767670676112175, 0.0076488894410431385, 0.19666044414043427], [0.15046732127666473, 0.024836935102939606, 0.019950930029153824, 0.025083256885409355, 0.06544855982065201, 0.15431837737560272, 0.06973470747470856, 0.02103753387928009, 0.0035340117756277323, 0.0027191350236535072, 0.0035891642328351736, 0.003348536556586623, 0.005516350734978914, 0.005599342752248049, 0.0074050393886864185, 0.004414612893015146, 0.4329961836338043], [0.1210065484046936, 0.0360683910548687, 0.020677613094449043, 0.039638299494981766, 0.06482139974832535, 0.09250187128782272, 0.09678802639245987, 0.0651375949382782, 0.01483725942671299, 0.010392229072749615, 0.010587535798549652, 0.0106387073174119, 0.014606664888560772, 0.021560892462730408, 0.03662590682506561, 0.021771930158138275, 0.32233917713165283], [0.12689752876758575, 0.017638973891735077, 0.005726937670260668, 0.019740166142582893, 0.020200150087475777, 0.06218266859650612, 0.035862263292074203, 0.018873410299420357, 0.007394102402031422, 0.00979533325880766, 0.007555914577096701, 0.003820205805823207, 0.006096703466027975, 0.02054114267230034, 0.026037506759166718, 0.0197357889264822, 0.5919012427330017], [0.036452583968639374, 0.006417684722691774, 0.003805347718298435, 0.011013430543243885, 0.012136482633650303, 0.023319248110055923, 0.029469894245266914, 0.042283881455659866, 0.023406341671943665, 0.031042080372571945, 0.03399587422609329, 0.06517084687948227, 0.04028293117880821, 0.09184201061725616, 0.29635825753211975, 0.13689985871315002, 0.11610326915979385], [0.04449592903256416, 0.005666380748152733, 0.002866598078981042, 0.00878017209470272, 0.01898936927318573, 0.02576349303126335, 0.034450169652700424, 0.01794295944273472, 0.0106741888448596, 0.03802653029561043, 0.10295841842889786, 0.05587179958820343, 0.04192928224802017, 0.0654204860329628, 0.2093951553106308, 0.17431367933750153, 0.14245538413524628], [0.05469384044408798, 0.003677432658150792, 0.0017667784122750163, 0.003661698428913951, 0.008511207066476345, 0.033221710473299026, 0.014524488709867, 0.008055551908910275, 0.006671682931482792, 0.02554292231798172, 0.14382010698318481, 0.0788026675581932, 0.0787743479013443, 0.068939208984375, 0.1883009672164917, 0.06295252591371536, 0.21808284521102905], [0.08456319570541382, 0.00568534666672349, 0.0032084002159535885, 0.004012095741927624, 0.007790112867951393, 0.03433898091316223, 0.016660474240779877, 0.01069653406739235, 0.005219317506998777, 0.01252108346670866, 0.03366745263338089, 0.057426705956459045, 0.05811452120542526, 0.06633258610963821, 0.14781707525253296, 0.09298709779977798, 0.35895904898643494], [0.045606888830661774, 0.00752779608592391, 0.0022168615832924843, 0.002710578963160515, 0.004134627990424633, 0.014024204574525356, 0.008408602327108383, 0.006912520620971918, 0.003210528986528516, 0.005845570936799049, 0.012944071553647518, 0.03276177868247032, 0.06630882620811462, 0.1400478482246399, 0.30007612705230713, 0.1439654678106308, 0.2032977193593979], [0.04374336078763008, 0.008007321506738663, 0.004503370262682438, 0.002688664710149169, 0.0034069817047566175, 0.014402372762560844, 0.007085692603141069, 0.0047563957050442696, 0.0030627998057752848, 0.014845851808786392, 0.02791217342019081, 0.03203342854976654, 0.044405993074178696, 0.11199042201042175, 0.3045726716518402, 0.21346500515937805, 0.15911751985549927], [0.05416037142276764, 0.008501855656504631, 0.012318016029894352, 0.010931327939033508, 0.0046463776379823685, 0.012044462375342846, 0.0051404209807515144, 0.0023872486781328917, 0.002325642853975296, 0.009666116908192635, 0.02147938311100006, 0.019020095467567444, 0.03014385513961315, 0.0769207626581192, 0.3627868592739105, 0.11658167839050293, 0.2509455978870392], [0.1026180163025856, 0.009911926463246346, 0.0040377178229391575, 0.009649770334362984, 0.004379753023386002, 0.016896871849894524, 0.0024335915222764015, 0.0015749353915452957, 0.0012366237351670861, 0.004841067362576723, 0.008771291933953762, 0.005181148648262024, 0.013899121433496475, 0.06876441091299057, 0.15267199277877808, 0.08383909612894058, 0.5092926621437073], [0.14079105854034424, 0.01580834574997425, 0.008732175454497337, 0.016296617686748505, 0.008109146729111671, 0.0177718847990036, 0.0047464510425925255, 0.0018259985372424126, 0.001246843603439629, 0.0022661075927317142, 0.007817929610610008, 0.009997391141951084, 0.01392293069511652, 0.025127429515123367, 0.07560859620571136, 0.10090216249227524, 0.5490289330482483], [0.14919884502887726, 0.012158455327153206, 0.003362441435456276, 0.00800130795687437, 0.007126599550247192, 0.0140711460262537, 0.004009345080703497, 0.002046958776190877, 0.0005128688062541187, 0.0007850451511330903, 0.0014599491842091084, 0.004062211606651545, 0.006184057332575321, 0.01673051342368126, 0.03651753440499306, 0.05442936718463898, 0.6793433427810669], [0.16491959989070892, 0.020261850208044052, 0.00619931286200881, 0.013621063902974129, 0.014622434973716736, 0.04219280928373337, 0.014935411512851715, 0.006204964593052864, 0.002391372574493289, 0.003254430601373315, 0.004762306809425354, 0.003457550425082445, 0.005333078093826771, 0.016864227131009102, 0.024143002927303314, 0.022852299734950066, 0.633984386920929]], [[0.19583025574684143, 0.028591511771082878, 0.01396953035145998, 0.017483090981841087, 0.02888881042599678, 0.07422921061515808, 0.014687811024487019, 0.012545870617032051, 0.003608518512919545, 0.004092120099812746, 0.0028541716746985912, 0.0050644841976463795, 0.007781510706990957, 0.01034858450293541, 0.009012672118842602, 0.02243955060839653, 0.5485722422599792], [0.27218058705329895, 0.014013675972819328, 0.00590447848662734, 0.0016289296327158809, 0.0061403620056807995, 0.02032221108675003, 0.005775035358965397, 0.001859079347923398, 0.00010864673822652549, 6.294314516708255e-05, 3.936132634407841e-05, 0.00010822656622622162, 0.0009753795457072556, 0.0012127640657126904, 0.0007259567501023412, 0.002219105837866664, 0.6667233109474182], [0.12442868202924728, 0.42229804396629333, 0.02765605039894581, 0.006583654321730137, 0.003714566119015217, 0.047604724764823914, 0.003300597658380866, 0.010618914850056171, 0.0005265669897198677, 0.000255662394920364, 2.442586628603749e-05, 4.5020529796602204e-05, 0.0001939963985932991, 0.003595257643610239, 0.004032904282212257, 0.010718072764575481, 0.33440279960632324], [0.16072791814804077, 0.10716451704502106, 0.17043685913085938, 0.0238299872726202, 0.03407666087150574, 0.012853334657847881, 0.0013326056068763137, 0.011465828865766525, 0.0008054403006099164, 0.0006112242117524147, 7.344955520238727e-05, 9.041547855304088e-06, 9.733084152685478e-05, 0.00028277537785470486, 0.003324486082419753, 0.011043776758015156, 0.46186476945877075], [0.08449402451515198, 0.028179237619042397, 0.06504090875387192, 0.42648160457611084, 0.04035511612892151, 0.03542035073041916, 0.001852140761911869, 0.0024762575048953295, 0.0011293331626802683, 0.0021873675286769867, 0.00022668091696687043, 9.902810415951535e-05, 4.085902764927596e-05, 0.0003142838249914348, 0.0018778517842292786, 0.005304025951772928, 0.30452099442481995], [0.12623640894889832, 0.007040397729724646, 0.00831268634647131, 0.03207331523299217, 0.11189772933721542, 0.06862546503543854, 0.010198459960520267, 0.002457129303365946, 0.0006962672341614962, 0.0016556859482079744, 0.0016964582027867436, 0.0009606201783753932, 0.001042925869114697, 0.0005887860315851867, 0.0010561265517026186, 0.004262801259756088, 0.6211988925933838], [0.1093054711818695, 0.0077272746711969376, 0.00034861222957260907, 0.024737928062677383, 0.043672073632478714, 0.3948311507701874, 0.07128135859966278, 0.035350117832422256, 0.000512745522428304, 0.0017114582005888224, 0.003920571878552437, 0.002452181652188301, 0.0006447641644626856, 0.0009322863770648837, 0.00033061308204196393, 0.0015731897437945008, 0.300668329000473], [0.14065998792648315, 0.007299428340047598, 0.0001529979781480506, 0.0006625473033636808, 0.011844239197671413, 0.12236613035202026, 0.23737630248069763, 0.02757507935166359, 0.0006508823134936392, 0.0003672770981211215, 0.0006877395790070295, 0.00044839794281870127, 0.001327625708654523, 0.0008515478111803532, 0.0002662945189513266, 0.0004952253657393157, 0.44696834683418274], [0.15661048889160156, 0.018063079565763474, 0.00011101601558038965, 0.0002276664017699659, 0.0031295460648834705, 0.1075318455696106, 0.027075132355093956, 0.15836471319198608, 0.0015198197215795517, 0.0018067051423713565, 0.0002985491883009672, 0.00020951659826096147, 0.000365722255082801, 0.0030567864887416363, 0.000538585998583585, 0.002497575944289565, 0.5185932517051697], [0.1926940381526947, 0.009201934561133385, 0.0002358506026212126, 0.00170986691955477, 0.01026127114892006, 0.020561184734106064, 0.005640747956931591, 0.07015088945627213, 0.015502630732953548, 0.015783309936523438, 0.009079684503376484, 0.00013620824029203504, 0.0008658793522045016, 0.0017384655075147748, 0.0024606601800769567, 0.034210629761219025, 0.6097666621208191], [0.0035119792446494102, 0.0003732931800186634, 8.467325096717104e-05, 0.0009361625998280942, 0.0008215234847739339, 0.004153059795498848, 0.000757976493332535, 0.021765582263469696, 0.12152625620365143, 0.8145433664321899, 0.005074173677712679, 0.0011846828274428844, 0.00016545680409763008, 0.0013166426215320826, 0.0012595354346558452, 0.004832899663597345, 0.017692795023322105], [0.04667947068810463, 0.0010992108145728707, 0.00011266753426752985, 0.0014370153658092022, 0.004367212299257517, 0.018999462947249413, 0.0046668099239468575, 0.009517990052700043, 0.0024221090134233236, 0.024388466030359268, 0.10706831514835358, 0.016893960535526276, 0.002859817584976554, 0.0030744040850549936, 0.0018804518040269613, 0.01982167921960354, 0.7347109913825989], [0.04503791406750679, 0.0015411656349897385, 4.192331834929064e-05, 0.0007143427501432598, 0.003981464076787233, 0.060450442135334015, 0.004958500154316425, 0.024256115779280663, 0.0003923315671272576, 0.02017277665436268, 0.07498002052307129, 0.3425312340259552, 0.010231658816337585, 0.016857832670211792, 0.0021323945838958025, 0.021488701924681664, 0.37023109197616577], [0.115036740899086, 0.0034023786429315805, 9.369930921820924e-05, 0.00017636525444686413, 0.004906123038381338, 0.030001170933246613, 0.017565950751304626, 0.013294953852891922, 0.0006993054994381964, 0.004402578808367252, 0.017316356301307678, 0.03094019927084446, 0.13440169394016266, 0.042215388268232346, 0.0033515007235109806, 0.014288005419075489, 0.5679076910018921], [0.09186473488807678, 0.014673014171421528, 0.00028136876062490046, 0.0002492803323548287, 0.0014122369466349483, 0.012645539827644825, 0.002891147043555975, 0.029096517711877823, 0.00014200842997524887, 0.0011650733649730682, 0.0029397609177976847, 0.01054553035646677, 0.09770508855581284, 0.41101089119911194, 0.007019399665296078, 0.04270235449075699, 0.2736560106277466], [0.10166198015213013, 0.009155427105724812, 0.0045221406035125256, 0.002553874161094427, 0.0012071052333340049, 0.006499250419437885, 0.003993927035480738, 0.007084038574248552, 0.001385921728797257, 0.0012994396965950727, 0.0019882679916918278, 0.0012493652757257223, 0.016382185742259026, 0.05700292810797691, 0.339881956577301, 0.061092667281627655, 0.3830395042896271], [0.1945490837097168, 0.01731044240295887, 0.007461007684469223, 0.012025177478790283, 0.014342728070914745, 0.03832939639687538, 0.005413043312728405, 0.011983220465481281, 0.0029788739047944546, 0.006045237649232149, 0.0035254633985459805, 0.0024307076819241047, 0.003410260658711195, 0.011495172046124935, 0.008265350945293903, 0.08795710653066635, 0.5724777579307556]], [[0.12264461070299149, 0.05873729661107063, 0.015635833144187927, 0.026419255882501602, 0.05151769518852234, 0.1095593050122261, 0.06014065071940422, 0.03912931680679321, 0.02390705980360508, 0.025726493448019028, 0.01758604496717453, 0.022337697446346283, 0.01601256988942623, 0.03298044577240944, 0.008872815407812595, 0.1333518922328949, 0.23544098436832428], [0.24116644263267517, 0.0049827368929982185, 0.018928440287709236, 0.006413749884814024, 0.05249825865030289, 0.132304385304451, 0.009924648329615593, 0.022876041010022163, 0.006632067728787661, 0.00626259483397007, 0.026195857673883438, 0.009209755808115005, 0.005400584079325199, 0.002925521694123745, 0.0005312727298587561, 0.07208240777254105, 0.3816651701927185], [0.35362523794174194, 0.018586773425340652, 0.010580002330243587, 0.0062776836566627026, 0.024891790002584457, 0.08888119459152222, 0.00861370749771595, 0.013158350251615047, 0.0019424862693995237, 0.0004574533086270094, 0.003979038912802935, 0.00800191331654787, 0.0050424253568053246, 0.006140062119811773, 0.0024076136760413647, 0.06529854983091354, 0.38211581110954285], [0.2678990662097931, 0.009258409962058067, 0.0037860486190766096, 0.002426550257951021, 0.04167419299483299, 0.10678759217262268, 0.012323020957410336, 0.008939613588154316, 0.0025764189194887877, 0.0016902724746614695, 0.005637963768094778, 0.0030564554035663605, 0.003004424273967743, 0.005227365996688604, 0.0013119863579049706, 0.08381336182355881, 0.4405871629714966], [0.23276053369045258, 0.03926974534988403, 0.015553092584013939, 0.020285984501242638, 0.08514657616615295, 0.07495421171188354, 0.03970780968666077, 0.02795090153813362, 0.00511517096310854, 0.004640677012503147, 0.019684430211782455, 0.010141647420823574, 0.01589248515665531, 0.011308648623526096, 0.003621162846684456, 0.11079041659832001, 0.2831764221191406], [0.12997257709503174, 0.09126356989145279, 0.04633283615112305, 0.040570180863142014, 0.05227513983845711, 0.0679740309715271, 0.08662667870521545, 0.051132362335920334, 0.019654328003525734, 0.039532821625471115, 0.01678289659321308, 0.05710345134139061, 0.04226836934685707, 0.02164134383201599, 0.01715468429028988, 0.053895510733127594, 0.16581925749778748], [0.2019921988248825, 0.03963982313871384, 0.03204333782196045, 0.007651726249605417, 0.10560877621173859, 0.08578205108642578, 0.03959522768855095, 0.020537180826067924, 0.0065860082395374775, 0.003362312214449048, 0.030869103968143463, 0.014572742395102978, 0.042506154626607895, 0.016700487583875656, 0.003168581984937191, 0.10329730063676834, 0.2460869550704956], [0.2568057179450989, 0.02743706852197647, 0.010719572193920612, 0.004178781993687153, 0.04799019545316696, 0.07395999133586884, 0.01524096168577671, 0.005453432444483042, 0.0050083729438483715, 0.0013082134537398815, 0.009212854318320751, 0.0049279360100626945, 0.007745425682514906, 0.005457693710923195, 0.0009874155512079597, 0.09016699343919754, 0.43339934945106506], [0.29636672139167786, 0.008189926855266094, 0.006008433178067207, 0.0014491782058030367, 0.023700108751654625, 0.05614170804619789, 0.012064025737345219, 0.004144781269133091, 0.0010352780809625983, 0.0002452465705573559, 0.005664168857038021, 0.004418248310685158, 0.0042506735771894455, 0.003936302848160267, 0.0004773794789798558, 0.056681785732507706, 0.5152260661125183], [0.20143458247184753, 0.0211247019469738, 0.008301541209220886, 0.0004511898441705853, 0.02488737925887108, 0.09670080989599228, 0.020252026617527008, 0.013329953886568546, 0.004489125218242407, 0.0010450092377141118, 0.01528194546699524, 0.011799690313637257, 0.01932951994240284, 0.006167034152895212, 0.0004267882904969156, 0.14123578369617462, 0.4137428402900696], [0.2061087191104889, 0.02106986567378044, 0.0077831437811255455, 0.002388883614912629, 0.03334055095911026, 0.08683880418539047, 0.01205273438245058, 0.011973723769187927, 0.003132856683805585, 0.003100920468568802, 0.031134245917201042, 0.002909405156970024, 0.011048147454857826, 0.004741576500236988, 0.0018231882713735104, 0.061578135937452316, 0.49897512793540955], [0.26513054966926575, 0.02312164194881916, 0.012635458260774612, 0.005502341780811548, 0.04002876952290535, 0.10939935594797134, 0.013396447524428368, 0.013509719632565975, 0.005405135918408632, 0.0015369858592748642, 0.01255972869694233, 0.00762149365618825, 0.006253317464143038, 0.008169591426849365, 0.0018207450630143285, 0.11168017238378525, 0.36222848296165466], [0.2671246826648712, 0.003530285321176052, 0.006910140626132488, 0.008676032535731792, 0.06696848571300507, 0.06320914626121521, 0.00415037851780653, 0.0072034746408462524, 0.0040021189488470554, 0.002460251795127988, 0.015417957678437233, 0.0017273605335503817, 0.0010481562931090593, 0.005089395213872194, 0.0011251860996708274, 0.09654121845960617, 0.44481566548347473], [0.2871648669242859, 0.004215647466480732, 0.011304252780973911, 0.013952839188277721, 0.05501256883144379, 0.08633662015199661, 0.015276762656867504, 0.004162837751209736, 0.004102088510990143, 0.003729994175955653, 0.0306836124509573, 0.004676493816077709, 0.0034503848291933537, 0.002471412532031536, 0.000399849348468706, 0.08955637365579605, 0.38350337743759155], [0.3005715012550354, 0.004781761206686497, 0.00718742236495018, 0.006872726604342461, 0.04194701835513115, 0.08165368437767029, 0.010858460329473019, 0.0038306694477796555, 0.004834427963942289, 0.0015967654762789607, 0.014473031274974346, 0.005815266631543636, 0.003987505566328764, 0.005321665666997433, 0.0007508087437599897, 0.10329995304346085, 0.40221717953681946], [0.16142264008522034, 0.08089714497327805, 0.013329632580280304, 0.01718602143228054, 0.0652572363615036, 0.050247788429260254, 0.03884927183389664, 0.03143643960356712, 0.01104260515421629, 0.003355484688654542, 0.011123467236757278, 0.013684691861271858, 0.016597410663962364, 0.022438157349824905, 0.008744589984416962, 0.22198234498500824, 0.23240503668785095], [0.11404906213283539, 0.08327910304069519, 0.03284807130694389, 0.059132449328899384, 0.042643532156944275, 0.0815434679389, 0.057715293020009995, 0.04564487934112549, 0.02855648659169674, 0.04929210990667343, 0.04435491934418678, 0.03668835386633873, 0.04695991426706314, 0.024566233158111572, 0.023856637999415398, 0.06798714399337769, 0.16088244318962097]], [[0.1942090392112732, 0.15648968517780304, 0.06341677904129028, 0.09321360290050507, 0.06649105250835419, 0.02560357376933098, 0.006502999458462, 0.008485155180096626, 0.002622240921482444, 0.004157166462391615, 0.002674422925338149, 0.0026952058542519808, 0.008579466491937637, 0.009835563600063324, 0.005239767488092184, 0.013178774155676365, 0.33660560846328735], [0.1441507190465927, 0.085496686398983, 0.02006528340280056, 0.011843695305287838, 0.023099156096577644, 0.03714844211935997, 0.011294453404843807, 0.011138604953885078, 0.001079234411008656, 0.0018315601628273726, 0.0019256742671132088, 0.0037117740139365196, 0.012496652081608772, 0.010060055181384087, 0.004379325546324253, 0.009705498814582825, 0.6105731129646301], [0.12470291554927826, 0.2033054530620575, 0.11134490370750427, 0.016281036660075188, 0.03497079014778137, 0.043593328446149826, 0.018916485831141472, 0.015260434709489346, 0.003936791326850653, 0.0030078820418566465, 0.0015505488263443112, 0.008590728044509888, 0.025424357503652573, 0.022052539512515068, 0.008890640921890736, 0.012173428200185299, 0.34599769115448], [0.08404575288295746, 0.4807928800582886, 0.12593375146389008, 0.025682151317596436, 0.03928825631737709, 0.03186468407511711, 0.015684455633163452, 0.022340470924973488, 0.003037630580365658, 0.0016748630441725254, 0.0008043445413932204, 0.0015692395390942693, 0.005374914966523647, 0.015019673854112625, 0.008192858658730984, 0.011704305186867714, 0.12698973715305328], [0.10664205253124237, 0.30696988105773926, 0.18132446706295013, 0.07701791077852249, 0.05961322784423828, 0.04687301442027092, 0.013521199114620686, 0.013439186848700047, 0.00470077246427536, 0.00473862374201417, 0.0012295210035517812, 0.0015477712731808424, 0.0026385921519249678, 0.006364601664245129, 0.006072719115763903, 0.006347307935357094, 0.1609591841697693], [0.1489054411649704, 0.06774993240833282, 0.035284388810396194, 0.038150232285261154, 0.04780235514044762, 0.03829200565814972, 0.006739562842994928, 0.004275672137737274, 0.0014287193771451712, 0.0021266744006425142, 0.00072780268965289, 0.0006644041859544814, 0.0009688089485280216, 0.0017692556139081717, 0.0018968548392876983, 0.006136758252978325, 0.5970811247825623], [0.09384844452142715, 0.06546178460121155, 0.021913796663284302, 0.03737851232290268, 0.09253975749015808, 0.3248279094696045, 0.03389948233962059, 0.03177185729146004, 0.007446518633514643, 0.006589739117771387, 0.003317886032164097, 0.0024142174515873194, 0.0019348397618159652, 0.003939987625926733, 0.0018114499980583787, 0.00693603465333581, 0.263967901468277], [0.14087606966495514, 0.051355160772800446, 0.009885076433420181, 0.019242212176322937, 0.0643373355269432, 0.24832063913345337, 0.03758499398827553, 0.028653837740421295, 0.005582197103649378, 0.004523589741438627, 0.004180976189672947, 0.005075542721897364, 0.007345667574554682, 0.004656955599784851, 0.001793591072782874, 0.005285153165459633, 0.3613009452819824], [0.12399076670408249, 0.01808120869100094, 0.0033514753449708223, 0.0029334130231291056, 0.02683570794761181, 0.16225862503051758, 0.046547651290893555, 0.04642823711037636, 0.009347115643322468, 0.0029018158093094826, 0.002360509941354394, 0.002987423911690712, 0.003374401479959488, 0.011567983776330948, 0.0011823655804619193, 0.0032134174834936857, 0.5326380133628845], [0.1318642944097519, 0.025263024494051933, 0.0027003022842109203, 0.002611891832202673, 0.02737327665090561, 0.1764153093099594, 0.07115020602941513, 0.07601603865623474, 0.02171594277024269, 0.006134917959570885, 0.004445897880941629, 0.00426408089697361, 0.0043066926300525665, 0.022098049521446228, 0.0038894813042134047, 0.013865334913134575, 0.405885249376297], [0.0323294922709465, 0.011033261194825172, 0.004946180619299412, 0.0035088108852505684, 0.010594039224088192, 0.059494245797395706, 0.09227336198091507, 0.11771479994058609, 0.4096435606479645, 0.12062400579452515, 0.008640716783702374, 0.021832674741744995, 0.01027944777160883, 0.02982189692556858, 0.008060222491621971, 0.005464424844831228, 0.05373882129788399], [0.05165291205048561, 0.012508262880146503, 0.005249124485999346, 0.003633989952504635, 0.014068391174077988, 0.056063462048769, 0.07344048470258713, 0.13280121982097626, 0.10125719010829926, 0.10844901204109192, 0.04962589219212532, 0.052040111273527145, 0.0271015502512455, 0.01988276094198227, 0.010507995262742043, 0.013650677166879177, 0.2680671215057373], [0.03519880026578903, 0.014616468921303749, 0.002299967687577009, 0.0023361926432698965, 0.009361271746456623, 0.043905556201934814, 0.08198805153369904, 0.15399070084095, 0.0849091187119484, 0.12552644312381744, 0.06321347504854202, 0.08113153278827667, 0.023981880396604538, 0.0444217249751091, 0.009163969196379185, 0.013737532310187817, 0.21021723747253418], [0.050199784338474274, 0.015924159437417984, 0.002250525401905179, 0.005091020837426186, 0.016462314873933792, 0.06767290085554123, 0.0937274694442749, 0.12363377213478088, 0.03570009022951126, 0.05994733050465584, 0.05580487102270126, 0.10601352155208588, 0.10405992716550827, 0.07381812483072281, 0.013166237622499466, 0.02159481681883335, 0.15493324398994446], [0.003933042753487825, 0.017872663214802742, 0.0021447325125336647, 0.0009450300130993128, 0.0027580764144659042, 0.011050970293581486, 0.09128312021493912, 0.24981161952018738, 0.011867006309330463, 0.027982402592897415, 0.05459224060177803, 0.14176031947135925, 0.20883940160274506, 0.1511407196521759, 0.010428028181195259, 0.0052566081285476685, 0.008333971723914146], [0.06473590433597565, 0.02549227885901928, 0.004635102115571499, 0.003316998016089201, 0.00681563513353467, 0.04227163642644882, 0.05502588301897049, 0.07674381136894226, 0.01557327900081873, 0.04065854474902153, 0.03621925413608551, 0.08804147690534592, 0.08296624571084976, 0.16097146272659302, 0.057622719556093216, 0.03145990148186684, 0.20744985342025757], [0.13269492983818054, 0.026266545057296753, 0.008852371014654636, 0.009315633215010166, 0.015792913734912872, 0.03852767124772072, 0.014905731193721294, 0.018835127353668213, 0.006256869528442621, 0.007616337388753891, 0.006697891745716333, 0.00603528693318367, 0.008234726265072823, 0.02183978632092476, 0.01834001950919628, 0.03472921997308731, 0.6250589489936829]], [[0.18296684324741364, 0.03282267972826958, 0.018326861783862114, 0.026119379326701164, 0.0379033125936985, 0.0862860456109047, 0.019123082980513573, 0.017059853300452232, 0.006575402338057756, 0.008912024088203907, 0.006458192132413387, 0.003060875926166773, 0.003788266098126769, 0.015540198422968388, 0.015192965045571327, 0.02732173167169094, 0.4925422966480255], [0.08954653888940811, 0.020089786499738693, 0.16678732633590698, 0.11739851534366608, 0.10948334634304047, 0.029484542086720467, 0.006439573597162962, 0.0030470769852399826, 0.0012441342696547508, 0.0034963039215654135, 0.0005940383998677135, 4.641281702788547e-05, 9.529296949040145e-05, 0.001934639411047101, 0.014542913995683193, 0.012401551939547062, 0.42336806654930115], [0.022318724542856216, 0.0036079571582376957, 0.011880693957209587, 0.7626683712005615, 0.06289009004831314, 0.021402539685368538, 0.0006466206395998597, 0.0002411224413663149, 0.00020328220853116363, 0.00235364050604403, 0.00030459227855317295, 4.246447133482434e-05, 7.265940075740218e-05, 0.00022727978648617864, 0.000485241471324116, 0.0014454562915489078, 0.10920923203229904], [0.08126986026763916, 0.0009306240826845169, 0.0018045505275949836, 0.00909524504095316, 0.21532593667507172, 0.1688012182712555, 0.0052154590375721455, 0.00024371621839236468, 1.6124566172948107e-05, 6.479524017777294e-05, 0.00015420756244566292, 4.7802219341974705e-05, 1.7995133021031506e-05, 3.389031917322427e-05, 4.252983853803016e-05, 0.0003457860730122775, 0.5165902972221375], [0.1519731730222702, 0.013200541026890278, 0.00039269073749892414, 0.007529745809733868, 0.05009292811155319, 0.39946573972702026, 0.05029749870300293, 0.004993102513253689, 8.545494347345084e-05, 0.0001704315363895148, 0.00021720583026763052, 0.00010675464000087231, 0.0001848231186158955, 0.0005052433698438108, 0.0001906267716549337, 0.00047179905232042074, 0.32012224197387695], [0.1868220716714859, 0.01611785963177681, 0.0023682829923927784, 0.004098796751350164, 0.033442527055740356, 0.13744427263736725, 0.09323783963918686, 0.03379349038004875, 0.0029940586537122726, 0.002777976216748357, 0.0016783906612545252, 0.00045736305764876306, 0.002273094141855836, 0.004041119944304228, 0.0037872891407459974, 0.0023582468274980783, 0.4723072648048401], [0.11864686012268066, 0.017291339114308357, 0.0006335482466965914, 0.003389459801837802, 0.0075885518454015255, 0.07742337882518768, 0.05625420808792114, 0.29558292031288147, 0.007172411307692528, 0.0069296942092478275, 0.0018257154151797295, 0.0024039626587182283, 0.002233159728348255, 0.027822965756058693, 0.020296109840273857, 0.009262154810130596, 0.3452436923980713], [0.0680665597319603, 0.00680201593786478, 0.0034849392250180244, 0.011824742890894413, 0.018840381875634193, 0.01887461543083191, 0.046175871044397354, 0.031051818281412125, 0.11245682090520859, 0.1378432661294937, 0.04120751470327377, 0.008100645616650581, 0.02457188256084919, 0.034780632704496384, 0.0507689043879509, 0.054613739252090454, 0.3305355906486511], [0.0175052247941494, 0.00029925553826615214, 0.00012083961337339133, 0.0020536475349217653, 0.004148933105170727, 0.010479017160832882, 0.0021944663021713495, 0.009932325221598148, 0.005435722414404154, 0.6832643747329712, 0.07747765630483627, 0.022171031683683395, 0.001405809074640274, 0.005064536817371845, 0.002399023389443755, 0.0120097566395998, 0.14403855800628662], [0.03477883338928223, 0.00023947269073687494, 6.667970592388883e-05, 0.000513336737640202, 0.009009263478219509, 0.023382462561130524, 0.007867462933063507, 0.002292157616466284, 0.000987157691270113, 0.00880715437233448, 0.41695356369018555, 0.07188042998313904, 0.014506958425045013, 0.005528538022190332, 0.0015828933101147413, 0.0067604705691337585, 0.3948431611061096], [0.04122260957956314, 0.00036045239539816976, 1.0309297977073584e-05, 0.0002629916707519442, 0.0031424558255821466, 0.02973685972392559, 0.00559965381398797, 0.004469046834856272, 0.0001142474720836617, 0.002350076101720333, 0.01211649551987648, 0.17664176225662231, 0.074862040579319, 0.24473229050636292, 0.06972552090883255, 0.01804606430232525, 0.31660714745521545], [0.017833063378930092, 0.00033567158970981836, 1.9927125322283246e-05, 0.00012050463556079194, 0.0004436156596057117, 0.004123493563383818, 0.0038056515622884035, 0.0022478357423096895, 0.0007838092860765755, 0.0032940602395683527, 0.00798754207789898, 0.03266953304409981, 0.47870898246765137, 0.294776976108551, 0.058596376329660416, 0.010718246921896935, 0.08353464305400848], [0.008655433543026447, 0.0017345263622701168, 0.00011013502808054909, 0.00024290474539157003, 0.000106272884295322, 0.00250921119004488, 0.0005489129107445478, 0.0035806831438094378, 0.00038573419442400336, 0.0013806158676743507, 0.00042458975804038346, 0.0035946869757026434, 0.015427293255925179, 0.5899834036827087, 0.2994833290576935, 0.0203025471419096, 0.0515296645462513], [0.01400658581405878, 0.0008000486996024847, 0.0006621144129894674, 0.0009037702111527324, 0.00010708453191909939, 0.0005699623725377023, 0.0002323133230675012, 0.0005216437857598066, 0.0003124892245978117, 0.0011731396662071347, 0.0007990308222360909, 0.0003358491521794349, 0.004588859621435404, 0.069048210978508, 0.7645925879478455, 0.054579950869083405, 0.0867663249373436], [0.06196879968047142, 0.000650499074254185, 0.001481109531596303, 0.0023948228918015957, 0.0008873780025169253, 0.003302662866190076, 4.908981645712629e-05, 0.0001384614733979106, 8.595120743848383e-05, 0.00044094608165323734, 0.0009690190199762583, 0.0002901788684539497, 0.00029370051925070584, 0.0025551149155944586, 0.010893420316278934, 0.30957579612731934, 0.6040230393409729], [0.07474633306264877, 0.0004352819232735783, 0.00044053298188373446, 0.0009428865159861743, 0.0024766644928604364, 0.004936900921165943, 0.00011213751713512465, 3.3493040973553434e-05, 1.0618794476613402e-05, 0.00012780079850926995, 0.00039359505171887577, 0.0001766010682331398, 0.00026242033345624804, 0.0004664576263166964, 0.0031957041937857866, 0.02150982990860939, 0.8897327780723572], [0.18014515936374664, 0.013153680600225925, 0.004657292272895575, 0.01579437404870987, 0.03415577486157417, 0.07274746894836426, 0.01689211092889309, 0.009171308018267155, 0.002539173699915409, 0.0072594997473061085, 0.01059596799314022, 0.008568579331040382, 0.006425791420042515, 0.021136809140443802, 0.01468158420175314, 0.04194367304444313, 0.5401317477226257]], [[0.08205948024988174, 0.00758326705545187, 0.011831114068627357, 0.005657818168401718, 0.06025032326579094, 0.12102815508842468, 0.03125473111867905, 0.007600193843245506, 0.0035782884806394577, 0.009034590795636177, 0.006405106745660305, 0.00758699607104063, 0.00303672649897635, 0.005487961694598198, 0.004478417802602053, 0.09262862056493759, 0.5404981970787048], [0.1496468037366867, 0.13178643584251404, 0.0031904394272714853, 0.003789179492741823, 0.025829169899225235, 0.060445189476013184, 0.0036971396766602993, 0.007671815808862448, 0.000674934359267354, 0.0017690955428406596, 0.0018222263315692544, 0.002018778584897518, 0.0002983071899507195, 0.013552547432482243, 0.0034878174774348736, 0.03726089000701904, 0.5530591607093811], [0.0808597207069397, 0.0026857173070311546, 0.10227828472852707, 0.00715120742097497, 0.018751787021756172, 0.04909474030137062, 0.009808900766074657, 0.006924884859472513, 0.00386628950946033, 0.008036542683839798, 0.005405463743954897, 0.3082142770290375, 0.01856818236410618, 0.002415575087070465, 0.0015825668815523386, 0.02704700641334057, 0.34730881452560425], [0.06937786936759949, 0.00028072003624401987, 0.004419050645083189, 0.20110641419887543, 0.018758151680231094, 0.027319200336933136, 0.003902285825461149, 0.0019578184001147747, 0.0009749896125867963, 0.0024511588271707296, 0.0026340377517044544, 0.0019044873770326376, 0.00087024737149477, 0.0006792485364712775, 0.00037818713462911546, 0.01271736528724432, 0.6502687335014343], [0.10344699025154114, 0.003614092245697975, 0.0030448921024799347, 0.002717820927500725, 0.09793523699045181, 0.07958021014928818, 0.006284529808908701, 0.007585146464407444, 0.000817786087282002, 0.004648109432309866, 0.003112920094281435, 0.0017619088757783175, 0.000737951195333153, 0.0023048673756420612, 0.0034503377974033356, 0.2109050750732422, 0.4680521786212921], [0.09219042211771011, 0.0069896564818918705, 0.01021102350205183, 0.003157329047098756, 0.058859456330537796, 0.08073139935731888, 0.008900383487343788, 0.00400387030094862, 0.0021544506307691336, 0.0051997653208673, 0.005650086794048548, 0.004132409114390612, 0.002380723599344492, 0.0036348572466522455, 0.006896668579429388, 0.11353634297847748, 0.5913712382316589], [0.06980497390031815, 0.000824662740342319, 0.021533118560910225, 0.007104838266968727, 0.03528447076678276, 0.06448207795619965, 0.16606824100017548, 0.0021094479598104954, 0.001544682658277452, 0.001050934661179781, 0.005289072636514902, 0.010583755560219288, 0.0014756658347323537, 0.00035035566543228924, 0.00019082744256593287, 0.0523478165268898, 0.5599551796913147], [0.16268257796764374, 0.006884667091071606, 0.01293119415640831, 0.005958776455372572, 0.05462058633565903, 0.03614918515086174, 0.0026546844746917486, 0.23411405086517334, 0.003272028872743249, 0.0018898920388892293, 0.0028774901293218136, 0.003432960482314229, 0.0009014467359520495, 0.0014757334720343351, 0.01574021764099598, 0.04075175151228905, 0.41366270184516907], [0.11357643455266953, 0.001417789375409484, 0.04347976669669151, 0.044559553265571594, 0.0335187092423439, 0.053108423948287964, 0.009417136199772358, 0.00837942585349083, 0.17964240908622742, 0.01929362490773201, 0.01168466079980135, 0.04182158038020134, 0.0066145011223852634, 0.0030998007860034704, 0.0020543390419334173, 0.045286715030670166, 0.3830452859401703], [0.11278390884399414, 0.0007005283259786665, 0.010096819140017033, 0.01884223334491253, 0.028425848111510277, 0.052101291716098785, 0.019651217386126518, 0.0033960945438593626, 0.020487448200583458, 0.14240910112857819, 0.13138021528720856, 0.010329409502446651, 0.007127754390239716, 0.0025675606448203325, 0.002674552844837308, 0.040328603237867355, 0.39669737219810486], [0.09455391019582748, 0.0013615230564028025, 0.016588328406214714, 0.00964618194848299, 0.01889757625758648, 0.039328206330537796, 0.007854633033275604, 0.005774320103228092, 0.005712746176868677, 0.06311582773923874, 0.3414141535758972, 0.006437335163354874, 0.003959076013416052, 0.0011056585935875773, 0.0006029234500601888, 0.030892666429281235, 0.35275503993034363], [0.09784062951803207, 0.0031994343735277653, 0.3444443345069885, 0.010881241410970688, 0.01784985512495041, 0.032092150300741196, 0.008192126639187336, 0.008046623319387436, 0.010670962743461132, 0.002634574193507433, 0.009487973526120186, 0.14104308187961578, 0.03130604326725006, 0.0013503356603905559, 0.004411229398101568, 0.019948087632656097, 0.25660133361816406], [0.08012179285287857, 0.0060978238470852375, 0.0693218782544136, 0.008709612302482128, 0.012198223732411861, 0.055554527789354324, 0.002616151235997677, 0.006861026864498854, 0.0016229195753112435, 0.004480451811105013, 0.0025443946942687035, 0.033873893320560455, 0.18270309269428253, 0.0005421509849838912, 0.0003525499487295747, 0.012403175234794617, 0.5199964046478271], [0.10700653493404388, 0.003026270540431142, 0.0013571445597335696, 0.00550561910495162, 0.03484385460615158, 0.05369851365685463, 0.0010011295089498162, 0.001089625176973641, 0.0005248024826869369, 0.0006890071672387421, 0.0008171810768544674, 0.0004393767740111798, 8.62784800119698e-05, 0.06499949097633362, 0.010036642663180828, 0.016160039231181145, 0.6987184882164001], [0.11348466575145721, 0.0031306070741266012, 0.0007688739569857717, 0.0011334804585203528, 0.023059481754899025, 0.04380622133612633, 0.00027941472944803536, 0.0033216532319784164, 0.0001750133524183184, 0.0002832442114595324, 0.0002918016107287258, 0.0004458220792002976, 5.383164170780219e-05, 0.011375789530575275, 0.06120368838310242, 0.02892513945698738, 0.708261251449585], [0.08886841684579849, 0.0013341994490474463, 0.003942534327507019, 0.006894215010106564, 0.2158074826002121, 0.13967284560203552, 0.018835265189409256, 0.00622889120131731, 0.0017080269753932953, 0.0018513795221224427, 0.001759716309607029, 0.0012848172336816788, 0.000614483724348247, 0.0015497544081881642, 0.0009262305684387684, 0.05060547590255737, 0.45811641216278076], [0.06513166427612305, 0.0036293379962444305, 0.002980368211865425, 0.0010751655790954828, 0.023191792890429497, 0.0785839781165123, 0.004695279058068991, 0.002621737541630864, 0.0007481088396161795, 0.0026409938000142574, 0.0015730814775452018, 0.0021528671495616436, 0.0005399840883910656, 0.0021737536881119013, 0.0016879178583621979, 0.050644613802433014, 0.7559293508529663]], [[0.19804348051548004, 0.03699302300810814, 0.04993163421750069, 0.08084632456302643, 0.08033013343811035, 0.12302641570568085, 0.006852436810731888, 0.012742110528051853, 0.0052604107186198235, 0.00475623644888401, 0.006619101855903864, 0.006333403754979372, 0.009164363145828247, 0.009857823140919209, 0.006918891333043575, 0.01913067139685154, 0.34319350123405457], [0.05077354609966278, 0.07348090410232544, 0.03779179975390434, 0.027399929240345955, 0.10634121298789978, 0.11571858823299408, 0.02492663264274597, 0.03782113268971443, 0.0104738874360919, 0.012042775750160217, 0.011660345830023289, 0.010620463639497757, 0.034441739320755005, 0.04229222610592842, 0.02266572415828705, 0.06704434007406235, 0.3145047426223755], [0.034426234662532806, 0.04106787219643593, 0.023390276357531548, 0.04242197051644325, 0.07109016180038452, 0.16357927024364471, 0.022096140310168266, 0.028009241446852684, 0.006265869364142418, 0.01898900419473648, 0.010565175674855709, 0.009334475733339787, 0.09437160938978195, 0.01571243815124035, 0.011781401932239532, 0.04323481768369675, 0.3636641204357147], [0.05743986368179321, 0.0341990701854229, 0.034711215645074844, 0.0423971451818943, 0.07876548171043396, 0.15463754534721375, 0.008230449631810188, 0.01051367074251175, 0.007397920824587345, 0.007812383119016886, 0.008575583808124065, 0.007720802444964647, 0.024412911385297775, 0.011770498938858509, 0.01677374541759491, 0.032315172255039215, 0.46232664585113525], [0.06340119987726212, 0.15301913022994995, 0.06050073355436325, 0.11642157286405563, 0.08012808859348297, 0.1159907802939415, 0.020671751350164413, 0.02545177936553955, 0.008642800152301788, 0.023484552279114723, 0.006731292232871056, 0.01322243083268404, 0.08190897107124329, 0.01620207168161869, 0.011758532375097275, 0.0356627032160759, 0.16680164635181427], [0.14817947149276733, 0.021272581070661545, 0.009897598065435886, 0.02833867445588112, 0.16784746944904327, 0.050336066633462906, 0.0030054356902837753, 0.0035063091199845076, 0.0028717860113829374, 0.003120049834251404, 0.006883514113724232, 0.003774783806875348, 0.0050268592312932014, 0.00778600387275219, 0.006373347714543343, 0.064726822078228, 0.4670531451702118], [0.03363038972020149, 0.03146358206868172, 0.0034306116867810488, 0.012845664285123348, 0.02818857878446579, 0.062175050377845764, 0.0312897227704525, 0.032028913497924805, 0.009303273633122444, 0.04158597066998482, 0.006308756768703461, 0.011294340714812279, 0.13143952190876007, 0.06690303981304169, 0.049446698278188705, 0.09346351027488708, 0.35520246624946594], [0.04149969667196274, 0.034543074667453766, 0.011707999743521214, 0.017634158954024315, 0.024271134287118912, 0.07642850279808044, 0.04177127778530121, 0.05070187896490097, 0.015439939685165882, 0.05011676624417305, 0.010886585339903831, 0.0262164119631052, 0.09384138882160187, 0.07313330471515656, 0.08492479473352432, 0.08246861398220062, 0.26441439986228943], [0.03210720419883728, 0.006253061816096306, 0.002123783342540264, 0.002317602513357997, 0.01881513185799122, 0.06041626259684563, 0.007263688836246729, 0.004853779915720224, 0.0021888059563934803, 0.009686899371445179, 0.0031850463710725307, 0.006140523590147495, 0.03356406092643738, 0.009121918119490147, 0.009633866138756275, 0.04921048879623413, 0.7431178689002991], [0.025494955480098724, 0.013424304313957691, 0.00482614990323782, 0.006490777246654034, 0.04812338948249817, 0.14040791988372803, 0.011165178380906582, 0.010841520503163338, 0.0033316807821393013, 0.004360823892056942, 0.005725682247430086, 0.014987223781645298, 0.030939539894461632, 0.01440510991960764, 0.025745850056409836, 0.062087301164865494, 0.5776426196098328], [0.0667930319905281, 0.02041366510093212, 0.009441113099455833, 0.008065667934715748, 0.025041624903678894, 0.07782404124736786, 0.018678944557905197, 0.02364346571266651, 0.010694429278373718, 0.034147970378398895, 0.006932753138244152, 0.02195780538022518, 0.04560648277401924, 0.02673868089914322, 0.018672341480851173, 0.039278969168663025, 0.5460690855979919], [0.033588312566280365, 0.024282896891236305, 0.006279774475842714, 0.010875814594328403, 0.01894681341946125, 0.09147415310144424, 0.04417063295841217, 0.0470479279756546, 0.009943029843270779, 0.04169083386659622, 0.014836600981652737, 0.016050979495048523, 0.0966237485408783, 0.05722177401185036, 0.03231818228960037, 0.05167422443628311, 0.4029742479324341], [0.03894147276878357, 0.031012697145342827, 0.011361326090991497, 0.0075273276306688786, 0.012838317081332207, 0.11226148903369904, 0.04346393048763275, 0.03987707197666168, 0.0073557947762310505, 0.035135943442583084, 0.010025708004832268, 0.021926309913396835, 0.12016218900680542, 0.04563496634364128, 0.025671081617474556, 0.04287709295749664, 0.3939271569252014], [0.0312536284327507, 0.03751985356211662, 0.0022446380462497473, 0.0030103838071227074, 0.017547424882650375, 0.07698830962181091, 0.027815857902169228, 0.037468455731868744, 0.0028456805739551783, 0.007301894947886467, 0.007581639103591442, 0.007367237936705351, 0.03715213015675545, 0.17187833786010742, 0.086585633456707, 0.09249024093151093, 0.35294869542121887], [0.021908266469836235, 0.025972414761781693, 0.0070616924203932285, 0.012506785802543163, 0.016666263341903687, 0.10086198151111603, 0.05433712899684906, 0.12573182582855225, 0.01890447735786438, 0.036119379103183746, 0.015242323279380798, 0.029356442391872406, 0.10056910663843155, 0.07657741755247116, 0.07082938402891159, 0.07925257086753845, 0.20810261368751526], [0.031113922595977783, 0.030231645330786705, 0.010634556412696838, 0.00934471283107996, 0.013879338279366493, 0.07272842526435852, 0.08083206415176392, 0.09106512367725372, 0.02042786031961441, 0.06417039036750793, 0.01648755744099617, 0.053952693939208984, 0.18433672189712524, 0.0700414627790451, 0.040778547525405884, 0.05027606338262558, 0.15969887375831604], [0.11132900416851044, 0.006879694294184446, 0.0031513236463069916, 0.005739961285144091, 0.08558399975299835, 0.03421659395098686, 0.0034854887053370476, 0.004573054611682892, 0.0035542931873351336, 0.002164639299735427, 0.008886224590241909, 0.004268421325832605, 0.0029105341527611017, 0.014593149535357952, 0.00862814486026764, 0.09184914082288742, 0.6081862449645996]], [[0.18107467889785767, 0.0187649168074131, 0.012969935312867165, 0.009603395126760006, 0.08719559013843536, 0.07725638896226883, 0.01556347031146288, 0.010916664265096188, 0.008481481112539768, 0.011879077181220055, 0.010525683872401714, 0.017758188769221306, 0.028584087267518044, 0.01830502785742283, 0.013275747187435627, 0.07958776503801346, 0.39825794100761414], [0.18809503316879272, 0.050671182572841644, 0.009677312336862087, 0.004735671915113926, 0.12273485213518143, 0.05187711864709854, 0.003888232633471489, 0.0063999248668551445, 0.0012642453657463193, 0.0003257400239817798, 0.0019400852033868432, 0.0051279859617352486, 0.0012563044438138604, 0.005890651606023312, 0.011511597782373428, 0.09441150724887848, 0.4401925802230835], [0.13140299916267395, 0.009447263553738594, 0.036458563059568405, 0.024282705038785934, 0.09186697006225586, 0.08695492148399353, 0.016494469717144966, 0.03742019832134247, 0.009592970833182335, 0.0029579992406070232, 0.006403259467333555, 0.016488870605826378, 0.005327217746526003, 0.008358496241271496, 0.01177749689668417, 0.085983045399189, 0.41878262162208557], [0.14188005030155182, 0.0059510949067771435, 0.01354982703924179, 0.01698688045144081, 0.11468121409416199, 0.08218391239643097, 0.007920002564787865, 0.009978337213397026, 0.0016842663753777742, 0.001452381256967783, 0.0019535222090780735, 0.008522014133632183, 0.0026022407691925764, 0.0018001256976276636, 0.01519614364951849, 0.07795459777116776, 0.4957033395767212], [0.14675623178482056, 0.015583207830786705, 0.02790047787129879, 0.01450169924646616, 0.11541502177715302, 0.1058502122759819, 0.04093551263213158, 0.017231909558176994, 0.0052510532550513744, 0.0023153291549533606, 0.006363101303577423, 0.018459569662809372, 0.008784527890384197, 0.002656888449564576, 0.01077775564044714, 0.07887406647205353, 0.3823433816432953], [0.1525934338569641, 0.012917165644466877, 0.013910162262618542, 0.007805527187883854, 0.05517008528113365, 0.11029711365699768, 0.018413439393043518, 0.009435838088393211, 0.003837642492726445, 0.004673239775002003, 0.0038719542790204287, 0.008629410527646542, 0.004341567866504192, 0.006127343978732824, 0.008441312238574028, 0.03566545620560646, 0.5438693165779114], [0.1998954713344574, 0.001399922650307417, 0.018850449472665787, 0.003356187604367733, 0.05033639445900917, 0.0740571990609169, 0.08227556943893433, 0.024865882471203804, 0.007513339165598154, 0.0014388622948899865, 0.009013931266963482, 0.02573869191110134, 0.014277644455432892, 0.0006212044972926378, 0.0008004595874808729, 0.0720461755990982, 0.41351261734962463], [0.22349439561367035, 0.003902434604242444, 0.00849645584821701, 0.0021305023692548275, 0.050121504813432693, 0.06271502375602722, 0.008903393521904945, 0.02007198892533779, 0.0027587467338889837, 0.0003465061017777771, 0.0033289736602455378, 0.0058239116333425045, 0.0025355464313179255, 0.0009291503811255097, 0.003737512044608593, 0.1040753424167633, 0.49662864208221436], [0.17420953512191772, 0.002858760068193078, 0.012999659404158592, 0.002485583070665598, 0.01788516901433468, 0.06930214166641235, 0.008577318862080574, 0.013817034661769867, 0.008180663920938969, 0.0008262693299911916, 0.003386310301721096, 0.013255109079182148, 0.004129393026232719, 0.0030885504093021154, 0.0016923438524827361, 0.05562755838036537, 0.6076785922050476], [0.1822311133146286, 0.0008187412167899311, 0.0055558690801262856, 0.0015165071235969663, 0.02572634257376194, 0.07600276917219162, 0.0060052708722651005, 0.010127108544111252, 0.003199811326339841, 0.0007731335354037583, 0.0018912287196144462, 0.00724656879901886, 0.0016099108615890145, 0.0027304794639348984, 0.0012104377383366227, 0.05093636363744736, 0.6224184036254883], [0.13738751411437988, 0.0010825850768014789, 0.025788934901356697, 0.01152210496366024, 0.02889571525156498, 0.0486254021525383, 0.07103217393159866, 0.03191932663321495, 0.026032280176877975, 0.0021711126901209354, 0.023120811209082603, 0.04276169836521149, 0.03606215864419937, 0.005249395035207272, 0.0030241128988564014, 0.08196789026260376, 0.4233567714691162], [0.1802692413330078, 0.0021756752394139767, 0.01688537187874317, 0.0079070208594203, 0.04787452891469002, 0.09773754328489304, 0.013586882501840591, 0.02126687578856945, 0.01666121929883957, 0.0014851497253403068, 0.012642564252018929, 0.04115751013159752, 0.012941506691277027, 0.006526350975036621, 0.009793135337531567, 0.07986138015985489, 0.4312281012535095], [0.2313540130853653, 0.0017928120214492083, 0.007081842981278896, 0.002575503895059228, 0.02365792915225029, 0.09374092519283295, 0.00495922053232789, 0.010432085022330284, 0.0033014491200447083, 0.0003851835208479315, 0.002901502652093768, 0.010108908638358116, 0.00761046027764678, 0.003133288351818919, 0.003907671198248863, 0.053578563034534454, 0.5394785404205322], [0.19868861138820648, 0.01615283079445362, 0.006476875860244036, 0.0026714340783655643, 0.053085580468177795, 0.05640162527561188, 0.0024241842329502106, 0.004684273153543472, 0.004397423937916756, 0.00025714925141073763, 0.0019571802113205194, 0.010268280282616615, 0.004812989849597216, 0.030623625963926315, 0.04988933727145195, 0.09459221363067627, 0.4626162648200989], [0.1495482623577118, 0.003937402740120888, 0.005841634701937437, 0.011532171629369259, 0.047222696244716644, 0.06673317402601242, 0.004192890599370003, 0.014754866249859333, 0.006217133719474077, 0.0015526670031249523, 0.004057242069393396, 0.019282225519418716, 0.0019877415616065264, 0.012359744869172573, 0.17256973683834076, 0.12291765213012695, 0.35529279708862305], [0.18318712711334229, 0.00680008577182889, 0.009814403019845486, 0.007668021600693464, 0.05537945032119751, 0.06548891961574554, 0.015261415392160416, 0.011542811058461666, 0.005457377526909113, 0.0026816604658961296, 0.007101587951183319, 0.016953829675912857, 0.006823192350566387, 0.005127907730638981, 0.019706249237060547, 0.14135849475860596, 0.4396474063396454], [0.12799717485904694, 0.011883865110576153, 0.0059284246526658535, 0.00543033005669713, 0.02596178837120533, 0.05495181307196617, 0.00912933237850666, 0.009213455952703953, 0.0029722515027970076, 0.003848107298836112, 0.00285773491486907, 0.0040616621263325214, 0.003775838064029813, 0.009848171845078468, 0.01248173974454403, 0.03140897676348686, 0.6782494187355042]]], [[[0.10975735634565353, 0.08567279577255249, 0.013023074716329575, 0.05347418785095215, 0.04933369532227516, 0.14337962865829468, 0.010216460563242435, 0.03301261365413666, 0.002187495119869709, 0.0027092969976365566, 0.001133072073571384, 0.003336261957883835, 0.008908593095839024, 0.023396292701363564, 0.04531686380505562, 0.0646200105547905, 0.35052233934402466], [0.04356103762984276, 0.312292218208313, 0.006888462230563164, 0.05540322884917259, 0.0450412854552269, 0.09295893460512161, 0.021895596757531166, 0.041858796030282974, 0.0004209233447909355, 0.002546155359596014, 0.0023543103598058224, 0.0022060328628867865, 0.008565098978579044, 0.02444196119904518, 0.02384018898010254, 0.03699938580393791, 0.27872633934020996], [0.05031328275799751, 0.14615994691848755, 0.003306104801595211, 0.04789852723479271, 0.025340858846902847, 0.10060550272464752, 0.0044085304252803326, 0.05141482502222061, 0.000897343154065311, 0.003835389856249094, 0.0017025404376909137, 0.001607556245289743, 0.00484681548550725, 0.0889163538813591, 0.049997568130493164, 0.021339334547519684, 0.39740946888923645], [0.10939197987318039, 0.0448060967028141, 0.045449599623680115, 0.04852960258722305, 0.03446480631828308, 0.15784980356693268, 0.0059821330942213535, 0.04071330651640892, 0.003483921056613326, 0.0058991191908717155, 0.0024070770014077425, 0.005543253384530544, 0.010949750430881977, 0.01590346358716488, 0.044932104647159576, 0.050162576138973236, 0.37353143095970154], [0.07841511815786362, 0.10389717668294907, 0.0148389283567667, 0.08251677453517914, 0.03695183992385864, 0.09428606927394867, 0.015229783020913601, 0.04001251980662346, 0.0021019394043833017, 0.0032959480304270983, 0.0008066451991908252, 0.0038290387019515038, 0.006718817166984081, 0.04720013961195946, 0.09244384616613388, 0.041642144322395325, 0.3358132243156433], [0.08242035657167435, 0.01879744976758957, 0.005899486131966114, 0.032233826816082, 0.01917821727693081, 0.1440209001302719, 0.0062948050908744335, 0.01711025834083557, 0.0016293213702738285, 0.003401323454454541, 0.0009341266704723239, 0.002140083583071828, 0.005604198668152094, 0.016309814527630806, 0.014715850353240967, 0.026887906715273857, 0.6024219989776611], [0.06489386409521103, 0.06246156245470047, 0.015705158933997154, 0.08354518562555313, 0.02916942536830902, 0.11761227250099182, 0.001904908916912973, 0.017261682078242302, 0.0006470825173892081, 0.004028975032269955, 0.0004721457662526518, 0.0011101263808086514, 0.0024645570665597916, 0.03891764581203461, 0.05551018565893173, 0.02431109920144081, 0.4799841344356537], [0.05320464447140694, 0.36820775270462036, 0.017190994694828987, 0.04847297444939613, 0.04198496788740158, 0.06261450797319412, 0.006829238496720791, 0.04266706481575966, 0.001916001085191965, 0.0015589415561407804, 0.0012890814105048776, 0.0023728711530566216, 0.004649335518479347, 0.035397592931985855, 0.12248072028160095, 0.039672162383794785, 0.14949122071266174], [0.052902545779943466, 0.09165941178798676, 0.005201644264161587, 0.02426348254084587, 0.02413753792643547, 0.10286182165145874, 0.003669243073090911, 0.08981955051422119, 0.001117880456149578, 0.0057914648205041885, 0.0018046097829937935, 0.001220968086272478, 0.0034402632154524326, 0.042269013822078705, 0.04047635197639465, 0.02560885064303875, 0.4837552309036255], [0.04885656759142876, 0.1009073257446289, 0.005332171451300383, 0.06106657534837723, 0.030542418360710144, 0.10069799423217773, 0.0022129337303340435, 0.08104501664638519, 0.0006287834839895368, 0.0015853223158046603, 0.0015828560572117567, 0.0006766709848307073, 0.0028775332029908895, 0.036217909306287766, 0.032263681292533875, 0.02201751619577408, 0.47148874402046204], [0.06930672377347946, 0.013456577435135841, 0.009827055037021637, 0.052757032215595245, 0.028426267206668854, 0.14849211275577545, 0.005456872284412384, 0.031341683119535446, 0.005059079732745886, 0.006431116256862879, 0.002953676041215658, 0.002812746213749051, 0.002837905427441001, 0.014712750911712646, 0.04798843339085579, 0.020268941298127174, 0.5378710627555847], [0.06145855411887169, 0.0314788855612278, 0.002547146752476692, 0.022504519671201706, 0.027759362012147903, 0.11832670867443085, 0.005129773169755936, 0.023371435701847076, 0.0009565095533616841, 0.003626957070082426, 0.001729450887069106, 0.0022472767159342766, 0.01361656654626131, 0.17437542974948883, 0.04600432515144348, 0.029518593102693558, 0.43534862995147705], [0.10421742498874664, 0.008593443781137466, 0.010693793185055256, 0.026931358501315117, 0.04326816648244858, 0.13587771356105804, 0.009053448215126991, 0.014069252647459507, 0.0009046901250258088, 0.003512338735163212, 0.0021375359501689672, 0.013609414920210838, 0.025312013924121857, 0.08871690928936005, 0.09374140202999115, 0.05282706394791603, 0.36653393507003784], [0.04217340052127838, 0.10539554804563522, 0.012835251167416573, 0.032820768654346466, 0.08870282769203186, 0.052243612706661224, 0.013334347866475582, 0.030685320496559143, 0.0011135964887216687, 0.0020238817669451237, 0.0025193262845277786, 0.0031939612235873938, 0.008490652777254581, 0.38058075308799744, 0.05507872998714447, 0.06891923397779465, 0.09988880902528763], [0.03624877706170082, 0.06957023590803146, 0.008349447511136532, 0.010860643349587917, 0.07442658394575119, 0.052332986146211624, 0.014967778697609901, 0.013931812718510628, 0.0004511434817686677, 0.0018752390751615167, 0.006902435794472694, 0.005288832820951939, 0.02761191688477993, 0.48743346333503723, 0.05784441903233528, 0.05673948675394058, 0.0751648098230362], [0.06921204924583435, 0.08072835952043533, 0.023399068042635918, 0.09582699090242386, 0.040376268327236176, 0.1011066660284996, 0.006753998808562756, 0.045654281973838806, 0.0023511715698987246, 0.0034443784970790148, 0.0007463614456355572, 0.002785453572869301, 0.005523886065930128, 0.04404120519757271, 0.09558948874473572, 0.030839793384075165, 0.35162055492401123], [0.07802397757768631, 0.02855823189020157, 0.006897787097841501, 0.0347200408577919, 0.01938328891992569, 0.13813358545303345, 0.0060648503713309765, 0.02153022773563862, 0.0018624690128490329, 0.002953766845166683, 0.0010177132207900286, 0.0019952470902353525, 0.00538874976336956, 0.017024986445903778, 0.01687956601381302, 0.02743472531437874, 0.5921308398246765]], [[0.12370415776968002, 0.05168773606419563, 0.019949287176132202, 0.02859216183423996, 0.035967256873846054, 0.10286502540111542, 0.037223875522613525, 0.04995882883667946, 0.015421982854604721, 0.009567796252667904, 0.0077704149298369884, 0.03447843715548515, 0.00776065606623888, 0.026462867856025696, 0.03073573112487793, 0.09401623904705048, 0.3238374888896942], [0.09537373483181, 0.06633473187685013, 0.0350516214966774, 0.029584717005491257, 0.06279600411653519, 0.11010917276144028, 0.011291020549833775, 0.08926233649253845, 0.004879932850599289, 0.003855386981740594, 0.0046134451404213905, 0.01768369972705841, 0.0058377026580274105, 0.13560399413108826, 0.04224216192960739, 0.045280978083610535, 0.24019929766654968], [0.06309036910533905, 0.04993264749646187, 0.05123918503522873, 0.05009358748793602, 0.06198710948228836, 0.14061841368675232, 0.02180350013077259, 0.04718949273228645, 0.019192133098840714, 0.01830977201461792, 0.011515054851770401, 0.037763889878988266, 0.03506952524185181, 0.019696788862347603, 0.012383409775793552, 0.05448092147707939, 0.30563420057296753], [0.05686427652835846, 0.042449500411748886, 0.0448540598154068, 0.02316105179488659, 0.04513833671808243, 0.1752626746892929, 0.019468480721116066, 0.028752222657203674, 0.0029051422607153654, 0.007733563426882029, 0.00238519674167037, 0.017475394532084465, 0.0071622636169195175, 0.01643385738134384, 0.060868967324495316, 0.06761737912893295, 0.3814677298069], [0.07418618351221085, 0.05092902481555939, 0.02540668472647667, 0.018874136731028557, 0.10563165694475174, 0.16271989047527313, 0.0174328051507473, 0.028877412900328636, 0.004686068743467331, 0.007710880134254694, 0.004986629355698824, 0.007267611566931009, 0.0077977231703698635, 0.01545229647308588, 0.04457370564341545, 0.13209405541419983, 0.29137325286865234], [0.038837235420942307, 0.014286251738667488, 0.012107858434319496, 0.028067177161574364, 0.01799658313393593, 0.22929827868938446, 0.006028233096003532, 0.007320329546928406, 0.0020114958751946688, 0.0027499946299940348, 0.0010592396138235927, 0.0038445964455604553, 0.00364549714140594, 0.006036787759512663, 0.01482308842241764, 0.022002650424838066, 0.5898846983909607], [0.06896131485700607, 0.03555179014801979, 0.022911882027983665, 0.011271053925156593, 0.09091568738222122, 0.14412303268909454, 0.014207595027983189, 0.02522299811244011, 0.007630687206983566, 0.03770454227924347, 0.009067481383681297, 0.007037438917905092, 0.013165277428925037, 0.014967327006161213, 0.01394845824688673, 0.10577140003442764, 0.37754204869270325], [0.09180855005979538, 0.06477798521518707, 0.014983931556344032, 0.00583334406837821, 0.04244915023446083, 0.15888887643814087, 0.00950475875288248, 0.02632913924753666, 0.008645998314023018, 0.005573745351284742, 0.006821317598223686, 0.00951241236180067, 0.007657486479729414, 0.00629050238057971, 0.010940399952232838, 0.05881630629301071, 0.47116607427597046], [0.059988416731357574, 0.02555585280060768, 0.04017016291618347, 0.014198054559528828, 0.05491689220070839, 0.16865041851997375, 0.015557974576950073, 0.0628555417060852, 0.022233573719859123, 0.031160471960902214, 0.006378015968948603, 0.02273293025791645, 0.01565290242433548, 0.007563366089016199, 0.018092427402734756, 0.05336324870586395, 0.38092976808547974], [0.059566959738731384, 0.021596504375338554, 0.016832364723086357, 0.014045951887965202, 0.027499182149767876, 0.1577230542898178, 0.009736486710608006, 0.02671257220208645, 0.010008825920522213, 0.010707470588386059, 0.005160296335816383, 0.015467955730855465, 0.010465607978403568, 0.013988260179758072, 0.0070463209412992, 0.03754159435629845, 0.5559006333351135], [0.04122872278094292, 0.020692793652415276, 0.03250832483172417, 0.011762970127165318, 0.033964332193136215, 0.14484849572181702, 0.014762752689421177, 0.023008543998003006, 0.005731962155550718, 0.01493757963180542, 0.0046623144298791885, 0.014016806147992611, 0.023958081379532814, 0.010572942905128002, 0.005208499729633331, 0.05188935995101929, 0.5462455153465271], [0.06198747083544731, 0.020698051899671555, 0.021408647298812866, 0.019924774765968323, 0.0478392019867897, 0.16604115068912506, 0.0156638715416193, 0.048223741352558136, 0.010136082768440247, 0.014790532179176807, 0.006575975101441145, 0.02032979391515255, 0.023279409855604172, 0.014129296876490116, 0.03831581026315689, 0.09005358815193176, 0.38060262799263], [0.04961859807372093, 0.009266924113035202, 0.02130717784166336, 0.015232698991894722, 0.02257649041712284, 0.15559034049510956, 0.008679257705807686, 0.01640096679329872, 0.002343894448131323, 0.006396285258233547, 0.0029012570157647133, 0.01258983463048935, 0.0076808868907392025, 0.013090922497212887, 0.004788919351994991, 0.05064983665943146, 0.6008856892585754], [0.08894689381122589, 0.11963480710983276, 0.00848090834915638, 0.011740141548216343, 0.036095984280109406, 0.13097618520259857, 0.014238802716135979, 0.028808172792196274, 0.005083990283310413, 0.005628752522170544, 0.005732731893658638, 0.013391554355621338, 0.0090302349999547, 0.062133755534887314, 0.07100241631269455, 0.09445412456989288, 0.294620543718338], [0.09765398502349854, 0.17116571962833405, 0.011708146892488003, 0.0325043760240078, 0.047246161848306656, 0.16239526867866516, 0.00592730613425374, 0.0343983992934227, 0.0012838750844821334, 0.0014029490994289517, 0.0013847448863089085, 0.008026215247809887, 0.003997812047600746, 0.021489854902029037, 0.07712189108133316, 0.07945351302623749, 0.24283987283706665], [0.08083250373601913, 0.058451950550079346, 0.015023267827928066, 0.020212680101394653, 0.07815244793891907, 0.15464477241039276, 0.018740003928542137, 0.029815178364515305, 0.0035036602057516575, 0.005559953395277262, 0.004104208201169968, 0.006803763564676046, 0.006555160041898489, 0.0208736602216959, 0.04519416764378548, 0.13131029903888702, 0.32022231817245483], [0.04183836281299591, 0.020509134978055954, 0.012057672254741192, 0.021998006850481033, 0.013729281723499298, 0.20313502848148346, 0.006981987040489912, 0.01100597158074379, 0.002951273461803794, 0.004215042106807232, 0.0015900008147582412, 0.005499797873198986, 0.0039375703781843185, 0.01006944291293621, 0.015809722244739532, 0.022304894402623177, 0.6023667454719543]], [[0.09217434376478195, 0.01029572170227766, 0.004222307354211807, 0.010631819255650043, 0.09989208728075027, 0.12679624557495117, 0.07864208519458771, 0.030379166826605797, 0.004586360417306423, 0.017461707815527916, 0.007018375676125288, 0.010937693528831005, 0.014272536151111126, 0.038365039974451065, 0.015218242071568966, 0.08853885531425476, 0.35056743025779724], [0.16218571364879608, 0.027593111619353294, 0.019497962668538094, 0.006416808348149061, 0.02580380253493786, 0.28689098358154297, 0.005873828660696745, 0.01716110110282898, 0.004827356897294521, 0.00312576862052083, 0.002213965402916074, 0.018400847911834717, 0.003752587828785181, 0.0015762826660647988, 0.002207598416134715, 0.020582908764481544, 0.3918893337249756], [0.16937676072120667, 0.006558865308761597, 0.011927736923098564, 0.005331447813659906, 0.0457160510122776, 0.2521686553955078, 0.01142638549208641, 0.01029928121715784, 0.0010014775907620788, 0.002827240386977792, 0.004152842331677675, 0.003966393880546093, 0.0013267864705994725, 0.0018784726271405816, 0.001823452184908092, 0.034235067665576935, 0.4359831213951111], [0.20386584103107452, 0.00421647634357214, 0.0043199737556278706, 0.003556173061951995, 0.03739621117711067, 0.18967270851135254, 0.015377399511635303, 0.00518737593665719, 0.0004753521643579006, 0.001195851480588317, 0.003994113299995661, 0.005302709061652422, 0.0019046771340072155, 0.0017586974427103996, 0.001363606657832861, 0.02495277114212513, 0.4954601526260376], [0.1867794394493103, 0.003045740770176053, 0.0018377236556261778, 0.0010924587259069085, 0.029036954045295715, 0.24335414171218872, 0.007164792623370886, 0.0018421892309561372, 0.00036586084752343595, 0.0006596922175958753, 0.0012770663015544415, 0.0015895301476120949, 0.0005377359921112657, 0.004273014608770609, 0.0010580922244116664, 0.023598505184054375, 0.49248701333999634], [0.07912898063659668, 0.023930326104164124, 0.008517002686858177, 0.02228306606411934, 0.04254854470491409, 0.2320065051317215, 0.0067513007670640945, 0.005994466599076986, 0.0027796365320682526, 0.0055109839886426926, 0.006305573508143425, 0.004741115961223841, 0.011242846958339214, 0.02994663268327713, 0.011503446847200394, 0.047982871532440186, 0.4588266909122467], [0.21876876056194305, 0.0016018610913306475, 0.0009902993915602565, 0.002013674471527338, 0.04158106818795204, 0.20318831503391266, 0.01979636773467064, 0.002466462319716811, 0.0003028736973647028, 0.0021512415260076523, 0.005787258502095938, 0.0007180995307862759, 0.0005058139795437455, 0.0035508996807038784, 0.0006400583079084754, 0.03213690593838692, 0.46380001306533813], [0.23379363119602203, 0.00696832500398159, 0.003762350184842944, 0.002761867130175233, 0.02958383411169052, 0.17446808516979218, 0.013547205366194248, 0.016702087596058846, 0.001295537338592112, 0.0015383498976007104, 0.0010886257514357567, 0.002103739185258746, 0.00045508245239034295, 0.0003707348951138556, 0.0005384904216043651, 0.0309764314442873, 0.4800456166267395], [0.26976969838142395, 0.004268911201506853, 0.0023977053351700306, 0.002274835016578436, 0.02811283990740776, 0.21327465772628784, 0.010277357883751392, 0.014667765237390995, 0.00159757724031806, 0.010519957169890404, 0.009838239289820194, 0.0010804589837789536, 0.0004669401387218386, 0.002512978622689843, 0.0015414294321089983, 0.03186921030282974, 0.3955293893814087], [0.22487643361091614, 0.0034979116171598434, 0.004005129914730787, 0.0024938464630395174, 0.025920145213603973, 0.14548158645629883, 0.0032364237122237682, 0.007318451534956694, 0.0012782450066879392, 0.006118823308497667, 0.004478022921830416, 0.0021149776875972748, 0.0006191976717673242, 0.0040082745254039764, 0.0009371704654768109, 0.015349403023719788, 0.5482660531997681], [0.27352502942085266, 0.011307453736662865, 0.0033561536110937595, 0.0056943632662296295, 0.040880490094423294, 0.14947816729545593, 0.00876670889556408, 0.031186124309897423, 0.0013454932486638427, 0.009938974864780903, 0.011698639020323753, 0.0020430576987564564, 0.0010831337422132492, 0.004215105436742306, 0.0021762230899184942, 0.04008464887738228, 0.40322017669677734], [0.21187709271907806, 0.00441643875092268, 0.006386468652635813, 0.006638223771005869, 0.029575645923614502, 0.22474423050880432, 0.008728131651878357, 0.009293664246797562, 0.002072548493742943, 0.004828551784157753, 0.007077486719936132, 0.004105865955352783, 0.0015242998488247395, 0.0022253114730119705, 0.001978340558707714, 0.024776633828878403, 0.449751079082489], [0.19584783911705017, 0.0014641594607383013, 0.002989205066114664, 0.0035905898548662663, 0.025037473067641258, 0.19499947130680084, 0.012635748833417892, 0.011661720462143421, 0.0018115087877959013, 0.0020075279753655195, 0.003135213628411293, 0.0017154880333691835, 0.0012190332636237144, 0.0013953271554782987, 0.0009232677984982729, 0.021995574235916138, 0.5175708532333374], [0.12894129753112793, 0.0036925708409398794, 0.026925930753350258, 0.010748541913926601, 0.0447789803147316, 0.2390085905790329, 0.020872654393315315, 0.017046010121703148, 0.02072129026055336, 0.006644919514656067, 0.00474958959966898, 0.03024151176214218, 0.013554995879530907, 0.008531776256859303, 0.01310710608959198, 0.03750593587756157, 0.37292829155921936], [0.19888976216316223, 0.0009588186512701213, 0.002317527076229453, 0.002057748381048441, 0.029146317392587662, 0.2623346447944641, 0.020306168124079704, 0.0063745854422450066, 0.0005120097193866968, 0.0012257074704393744, 0.0010052305879071355, 0.004303812049329281, 0.0006010336219333112, 0.002305266447365284, 0.005656236782670021, 0.02642706409096718, 0.43557819724082947], [0.19643855094909668, 0.0022402857430279255, 0.0013268039328977466, 0.0010910843266174197, 0.025268051773309708, 0.22859534621238708, 0.005574515555053949, 0.0008791468571871519, 0.0003136991581413895, 0.0005366941331885755, 0.0014128806069493294, 0.001436950988136232, 0.00048541772412136197, 0.003920775838196278, 0.0009428694611415267, 0.026437830179929733, 0.5030990242958069], [0.06977857649326324, 0.022613180801272392, 0.009567172266542912, 0.01634948141872883, 0.03962251916527748, 0.2031816691160202, 0.008679838851094246, 0.009603938087821007, 0.00411677360534668, 0.006534968037158251, 0.008836790919303894, 0.006859978195279837, 0.012838892638683319, 0.01779688335955143, 0.008137007243931293, 0.06173522770404816, 0.4937470257282257]], [[0.06071065738797188, 0.005993315484374762, 0.002100145211443305, 0.0039451769553124905, 0.01203045342117548, 0.30777186155319214, 0.003518411424010992, 0.0036679143086075783, 0.0005892623448744416, 0.0012584856012836099, 0.000384127110010013, 0.0006766713340766728, 0.0007648041937500238, 0.0036777846980839968, 0.0016422122716903687, 0.01685008592903614, 0.5744186043739319], [0.04719063639640808, 0.05084172636270523, 0.00043499033199623227, 0.0007346989586949348, 0.0071805790066719055, 0.2747330069541931, 0.0014744203072041273, 0.001539004733785987, 4.597450606524944e-05, 6.24971289653331e-05, 3.9955270040081814e-05, 0.00022874391288496554, 0.0002615780394989997, 0.00335508375428617, 0.0026117386296391487, 0.00906157772988081, 0.6002036929130554], [0.05941270664334297, 0.0027416797820478678, 0.1165560781955719, 0.0026609753258526325, 0.007620663847774267, 0.22892285883426666, 0.0017370828427374363, 0.0035178563557565212, 0.0016399899031966925, 0.0002243980998173356, 0.00011261692270636559, 0.030560387298464775, 0.0027419845573604107, 0.0038046056870371103, 0.0004577446379698813, 0.006262294948101044, 0.5310260057449341], [0.03758944943547249, 0.0021257554180920124, 0.0004273749073036015, 0.08792594820261002, 0.009062626399099827, 0.2502437233924866, 0.0012578304158523679, 0.0002471118641551584, 4.035003803437576e-05, 0.00018804235151037574, 0.0001052451625582762, 0.0009040958248078823, 0.0009404831216670573, 0.0009062686585821211, 0.0012067172210663557, 0.010624272748827934, 0.5962047576904297], [0.06279683858156204, 0.003237012540921569, 0.0006043597240932286, 0.003667674493044615, 0.06511269509792328, 0.30072277784347534, 0.0010052563156932592, 0.0011904301354661584, 0.0001500878861406818, 0.00016841362230479717, 0.00024061593285296112, 0.00023623941524419934, 0.00019879073079209775, 0.001370933372527361, 0.00114825286436826, 0.056080300360918045, 0.502069354057312], [0.07354142516851425, 0.004827212076634169, 0.004794343840330839, 0.007723597809672356, 0.011612724512815475, 0.2756904363632202, 0.006322827190160751, 0.006366596091538668, 0.0010513842571526766, 0.006192200817167759, 0.0011785640381276608, 0.0024822682607918978, 0.001988206058740616, 0.006846142001450062, 0.0048943739384412766, 0.01784326881170273, 0.5666443705558777], [0.04026231914758682, 0.0011627699714154005, 0.0003931055252905935, 0.001087275450117886, 0.0023066415451467037, 0.22608205676078796, 0.17454729974269867, 0.003293102839961648, 0.0004021101340185851, 0.0024012799840420485, 0.000719082192517817, 0.0004336552519816905, 0.0001131233002524823, 0.00040869315853342414, 0.00016185553977265954, 0.004767320118844509, 0.5414584279060364], [0.040455207228660583, 0.0005695411236956716, 0.0003079829039052129, 0.00011687142978189513, 0.0014687207294628024, 0.3166678845882416, 0.000995679758489132, 0.03327002376317978, 5.088522084406577e-05, 6.071432289900258e-05, 9.646220860304311e-05, 0.0002320229832548648, 8.142741717165336e-05, 0.00039537076372653246, 0.00020100042456761003, 0.002598482184112072, 0.6024317145347595], [0.044948380440473557, 0.00045607989886775613, 0.008140361867845058, 0.00029266602359712124, 0.0026908651925623417, 0.21937167644500732, 0.0004896078025922179, 0.0006293431506492198, 0.05294299125671387, 0.002309816423803568, 0.0005903199198655784, 0.002357418416067958, 3.5643275623442605e-05, 0.0008423938998021185, 0.00023490306921303272, 0.0028432777617126703, 0.6608241200447083], [0.048958178609609604, 0.000312407617457211, 0.00029904450639151037, 0.00016691783093847334, 0.0017774318112060428, 0.21952059864997864, 0.002098745433613658, 0.0006520473398268223, 0.0011860099621117115, 0.12675011157989502, 0.0029347743839025497, 0.00031626070267520845, 3.3728760172380134e-05, 0.0005998852429911494, 0.0003074586275033653, 0.0024159059394150972, 0.5916704535484314], [0.06700235605239868, 0.00013843220949638635, 0.0004083953099325299, 0.00012414902448654175, 0.0014951820485293865, 0.21366043388843536, 0.0014976736856624484, 0.0012823984725400805, 0.0015024375170469284, 0.015078268945217133, 0.2367810606956482, 0.0013315415708348155, 0.0005292760324664414, 0.0003578492032829672, 5.584410246228799e-05, 0.001905997865833342, 0.4568485915660858], [0.0814596489071846, 0.0009481796878390014, 0.06021283566951752, 0.0007426660740748048, 0.005278753582388163, 0.23333629965782166, 0.0023815659806132317, 0.0038226440083235502, 0.003907539416104555, 0.0018594606081023812, 0.0009132191771641374, 0.1528458446264267, 0.0032995326910167933, 0.005479456391185522, 0.0003450289077591151, 0.004115714691579342, 0.43905165791511536], [0.04794491082429886, 0.00015255578910000622, 0.0021762007381767035, 0.0002432549954392016, 0.0025970235001295805, 0.2131558656692505, 0.0002462962584104389, 0.0003591200220398605, 2.173665961890947e-05, 0.00037322635762393475, 0.0004065637185703963, 0.0017502045957371593, 0.037724196910858154, 0.0006983450730331242, 8.925204019760713e-05, 0.002232710365206003, 0.6898285150527954], [0.05058467015624046, 0.002287294017150998, 0.0016527429688721895, 0.00027340310043655336, 0.0067225126549601555, 0.28945308923721313, 0.00043579540215432644, 0.0025288064498454332, 0.0001619381655473262, 0.0003799900587182492, 5.5669697758276016e-05, 0.0013177909422665834, 0.0006092790281400084, 0.10780040174722672, 0.0016454693395644426, 0.007200307212769985, 0.526890754699707], [0.045828260481357574, 0.0011943739373236895, 0.00035404518712311983, 0.0006760316318832338, 0.00646353792399168, 0.3626715838909149, 0.00025282244314439595, 0.000831867044325918, 4.908003393211402e-05, 0.00013019477773923427, 9.087694706977345e-06, 0.00021523061150219291, 0.00018817343516275287, 0.002708395244553685, 0.05042584612965584, 0.009012414142489433, 0.518989086151123], [0.03279971331357956, 0.0006102657644078135, 0.0001813363196561113, 0.0003207362606190145, 0.015015557408332825, 0.308258980512619, 0.0006179141346365213, 0.00044857210014015436, 5.541722566704266e-05, 0.00016934963059611619, 7.404344796668738e-05, 8.362637890968472e-05, 8.66898990352638e-05, 0.00037091627018526196, 0.0006369022303260863, 0.011018015444278717, 0.629252016544342], [0.0458177775144577, 0.002479522954672575, 0.001347351004369557, 0.002703036181628704, 0.004566526971757412, 0.31659191846847534, 0.002747335471212864, 0.00280735339038074, 0.0003534806310199201, 0.0019162315875291824, 0.00036681757774204016, 0.0009793095523491502, 0.0006637718761339784, 0.0025868681259453297, 0.001241461024619639, 0.008444419130682945, 0.6043867468833923]], [[0.044367868453264236, 0.16512614488601685, 0.13625440001487732, 0.31255412101745605, 0.09828505665063858, 0.04049234464764595, 0.010004498064517975, 0.01957838609814644, 0.0035724309273064137, 0.01612357795238495, 0.004625924862921238, 0.004319258499890566, 0.01360795833170414, 0.0166512131690979, 0.013530348427593708, 0.018275422975420952, 0.08263102173805237], [0.08244550973176956, 0.0689735934138298, 0.04869594797492027, 0.14798562228679657, 0.11669895052909851, 0.08212398737668991, 0.023060845211148262, 0.06152708828449249, 0.005214149598032236, 0.014654584228992462, 0.00900708045810461, 0.012555188499391079, 0.046070948243141174, 0.043891288340091705, 0.03693199157714844, 0.04601924493908882, 0.1541440188884735], [0.030507633462548256, 0.09955374151468277, 0.05385914817452431, 0.2001010626554489, 0.17252963781356812, 0.05629858002066612, 0.04159669205546379, 0.046018585562705994, 0.006532624829560518, 0.026014329865574837, 0.016285428777337074, 0.006571054924279451, 0.03458636999130249, 0.02076401375234127, 0.036683905869722366, 0.05384775251150131, 0.09824934601783752], [0.03853314742445946, 0.11250994354486465, 0.16761787235736847, 0.2077724039554596, 0.11839184165000916, 0.04058365523815155, 0.01620459370315075, 0.039926208555698395, 0.006939832586795092, 0.024316735565662384, 0.01250495295971632, 0.007514636963605881, 0.0375063382089138, 0.02026820369064808, 0.05551551654934883, 0.02545500360429287, 0.0684390440583229], [0.02291049249470234, 0.23505687713623047, 0.1491617113351822, 0.265537291765213, 0.07375144213438034, 0.016335180029273033, 0.025738069787621498, 0.030096756294369698, 0.007480193395167589, 0.047460369765758514, 0.00855683721601963, 0.009116833098232746, 0.020625103265047073, 0.017555011436343193, 0.027636272832751274, 0.0135910389944911, 0.029390525072813034], [0.02929692156612873, 0.0009633873705752194, 0.0006551833939738572, 0.004511469043791294, 0.011192587204277515, 0.23842374980449677, 0.0005030334577895701, 0.0011049209861084819, 0.00011408302088966593, 0.00034235877683386207, 0.00024166281218640506, 0.00047988712321966887, 0.0006358775426633656, 0.0011693252017721534, 0.0007038986077532172, 0.010919149965047836, 0.6987423300743103], [0.06496106833219528, 0.05078085511922836, 0.024652155116200447, 0.0782616063952446, 0.0876343622803688, 0.0791654959321022, 0.023737598210573196, 0.10699601471424103, 0.015210259705781937, 0.03094310313463211, 0.01472469326108694, 0.019401028752326965, 0.02094276249408722, 0.09679636359214783, 0.06763440370559692, 0.07445339113473892, 0.14370492100715637], [0.0392068587243557, 0.058036863803863525, 0.0335511639714241, 0.12794099748134613, 0.05710645020008087, 0.021445859223604202, 0.02718142606317997, 0.10467368364334106, 0.013741418719291687, 0.05771205201745033, 0.01252827700227499, 0.014438053593039513, 0.031192302703857422, 0.057990942150354385, 0.2378431260585785, 0.062143851071596146, 0.043266624212265015], [0.049456529319286346, 0.019233467057347298, 0.020792359486222267, 0.04881299287080765, 0.05204300582408905, 0.10991540551185608, 0.03506259247660637, 0.05812256783246994, 0.008738023228943348, 0.04388609528541565, 0.026721615344285965, 0.027729446068406105, 0.07926779240369797, 0.03626425564289093, 0.07820361107587814, 0.055059004575014114, 0.2506912350654602], [0.048506539314985275, 0.023433711379766464, 0.02772347629070282, 0.0904025286436081, 0.11463321000337601, 0.06994493305683136, 0.03315139561891556, 0.07128952443599701, 0.01282358355820179, 0.02078206278383732, 0.020384451374411583, 0.01285090297460556, 0.03346916660666466, 0.036476120352745056, 0.1756763607263565, 0.08067435026168823, 0.12777762115001678], [0.045644037425518036, 0.039135802537202835, 0.03729524090886116, 0.05261724442243576, 0.07600222527980804, 0.05369105935096741, 0.08830969780683517, 0.04962446913123131, 0.047225914895534515, 0.08456411212682724, 0.010958589613437653, 0.04282794147729874, 0.052874378859996796, 0.06378886103630066, 0.05715259909629822, 0.06998798996210098, 0.1282997876405716], [0.04924222454428673, 0.04844440892338753, 0.021346427500247955, 0.053123150020837784, 0.0760301798582077, 0.05273916572332382, 0.0806795135140419, 0.10678306221961975, 0.0224954541772604, 0.050921034067869186, 0.023118099197745323, 0.021442927420139313, 0.05915195494890213, 0.076004259288311, 0.06764113903045654, 0.09258555620908737, 0.09825142472982407], [0.06476183235645294, 0.041237201541662216, 0.015534571371972561, 0.04923676326870918, 0.02794267237186432, 0.05419912561774254, 0.0637136697769165, 0.07440148293972015, 0.028766339644789696, 0.04989654943346977, 0.022453758865594864, 0.02427571825683117, 0.06508144736289978, 0.15308848023414612, 0.0842289850115776, 0.04807790368795395, 0.13310350477695465], [0.10877752304077148, 0.07057620584964752, 0.014927428215742111, 0.05798686668276787, 0.019977128133177757, 0.02748640440404415, 0.04380928352475166, 0.1298830360174179, 0.013604188337922096, 0.04071010276675224, 0.012238691560924053, 0.017235036939382553, 0.10952427238225937, 0.16403032839298248, 0.05181689187884331, 0.03839924931526184, 0.07901734858751297], [0.028268348425626755, 0.07644394040107727, 0.035454995930194855, 0.0687192976474762, 0.029142994433641434, 0.007105983793735504, 0.06731705367565155, 0.18147283792495728, 0.01571759022772312, 0.08299970626831055, 0.014936170540750027, 0.01795862428843975, 0.06917810440063477, 0.14168252050876617, 0.12589125335216522, 0.024450156837701797, 0.013260436244308949], [0.03688623011112213, 0.05835831165313721, 0.041105907410383224, 0.043814387172460556, 0.02342292107641697, 0.015359463170170784, 0.11244435608386993, 0.13357578217983246, 0.025959184393286705, 0.13888448476791382, 0.019336247816681862, 0.04728343337774277, 0.060429371893405914, 0.07537706941366196, 0.0939062088727951, 0.037250787019729614, 0.03660591319203377], [0.0341578833758831, 0.0020102716516703367, 0.0010487992549315095, 0.006482187658548355, 0.013011784292757511, 0.23405806720256805, 0.0014428331051021814, 0.002537135034799576, 0.00025094684679061174, 0.0006679276702925563, 0.0005159676074981689, 0.0009502146858721972, 0.0013762739254161716, 0.0025930667761713266, 0.0015992867993190885, 0.02051287703216076, 0.6767845749855042]], [[0.05738327279686928, 0.055491603910923004, 0.02387203648686409, 0.04116933047771454, 0.04689166694879532, 0.16429868340492249, 0.03659815713763237, 0.04946122691035271, 0.010708661749958992, 0.04250524565577507, 0.016627535223960876, 0.02167750522494316, 0.01798597350716591, 0.054529108107089996, 0.0369417704641819, 0.06382069736719131, 0.26003754138946533], [0.03751406446099281, 0.21819673478603363, 0.010907605290412903, 0.017042629420757294, 0.060406189411878586, 0.1420966386795044, 0.013146615587174892, 0.09392905980348587, 0.00159148417878896, 0.00743334274739027, 0.004545362200587988, 0.009231708012521267, 0.004895106423646212, 0.04240640252828598, 0.036235347390174866, 0.051059357821941376, 0.2493622750043869], [0.038532011210918427, 0.011077319271862507, 0.05197183042764664, 0.030520759522914886, 0.04588405415415764, 0.2059415727853775, 0.05581115558743477, 0.03547388315200806, 0.0023273471742868423, 0.003956158179789782, 0.003639434464275837, 0.07142696529626846, 0.04253057762980461, 0.018687592819333076, 0.07854823768138885, 0.04174164682626724, 0.2619294822216034], [0.07468872517347336, 0.00473587354645133, 0.03362831473350525, 0.07733011245727539, 0.019113685935735703, 0.15557852387428284, 0.10145312547683716, 0.0801960825920105, 0.00840007234364748, 0.047975193709135056, 0.01629689894616604, 0.05598383769392967, 0.03822004422545433, 0.03496898338198662, 0.0206889808177948, 0.05810825899243355, 0.1726333051919937], [0.040598705410957336, 0.012522788718342781, 0.05839911103248596, 0.05018755421042442, 0.03441091626882553, 0.06958425790071487, 0.054465215653181076, 0.07367762178182602, 0.005139658227562904, 0.015323453582823277, 0.013439379632472992, 0.053629301488399506, 0.01402395498007536, 0.021871818229556084, 0.2726796567440033, 0.10066619515419006, 0.10938045382499695], [0.04206319525837898, 0.02023288421332836, 0.012162432074546814, 0.014633426442742348, 0.01744394190609455, 0.17552991211414337, 0.013653316535055637, 0.03502078726887703, 0.006780627649277449, 0.0120568061247468, 0.005794448312371969, 0.007335635367780924, 0.005470110569149256, 0.02234910987317562, 0.016397923231124878, 0.04088139161467552, 0.5521940588951111], [0.08641067892313004, 0.006891277153044939, 0.0259303729981184, 0.02942809648811817, 0.09314130991697311, 0.20234251022338867, 0.020032940432429314, 0.006323616486042738, 0.004691002424806356, 0.0020626524928957224, 0.0037849810905754566, 0.00988887157291174, 0.004732727073132992, 0.0034457221627235413, 0.00278881611302495, 0.04466486722230911, 0.45343950390815735], [0.06550803035497665, 0.024568088352680206, 0.00920888688415289, 0.04418697953224182, 0.05268491432070732, 0.06748452037572861, 0.0034901730250567198, 0.4561445713043213, 0.0008583339513279498, 0.0018429378978908062, 0.000666521955281496, 0.00123784935567528, 0.0009177779429592192, 0.0015679610660299659, 0.08493245393037796, 0.039627574384212494, 0.14507246017456055], [0.06454122066497803, 0.003946078009903431, 0.015032538212835789, 0.0206178929656744, 0.023399559780955315, 0.2336290329694748, 0.0105253541842103, 0.014209810644388199, 0.006398428697139025, 0.0012207672698423266, 0.010655025951564312, 0.021688411012291908, 0.015665840357542038, 0.008404742926359177, 0.01897183619439602, 0.02666139230132103, 0.5044320225715637], [0.07850382477045059, 0.01725292205810547, 0.022716645151376724, 0.08494717627763748, 0.1054028570652008, 0.14908400177955627, 0.02500387653708458, 0.03599138930439949, 0.018171826377511024, 0.001988933887332678, 0.017166027799248695, 0.009050334803760052, 0.003485155990347266, 0.011776325292885303, 0.05973295494914055, 0.056216951459646225, 0.30350884795188904], [0.08749820291996002, 0.004010623320937157, 0.04493829607963562, 0.009605413302779198, 0.0561782568693161, 0.1581043004989624, 0.04269896820187569, 0.02811299078166485, 0.051168717443943024, 0.019579611718654633, 0.04479196295142174, 0.019607380032539368, 0.003911328036338091, 0.0013212974881753325, 0.00988253578543663, 0.04178475961089134, 0.37680524587631226], [0.05012347176671028, 0.006448861677199602, 0.0892399474978447, 0.009187995456159115, 0.013883772306144238, 0.21019235253334045, 0.02340495027601719, 0.015273140743374825, 0.0029185879975557327, 0.006196311675012112, 0.005119446199387312, 0.07745493203401566, 0.06142386421561241, 0.011323291808366776, 0.010748451575636864, 0.02566545456647873, 0.3813951015472412], [0.058470141142606735, 0.0012986636720597744, 0.03064068965613842, 0.0029171500355005264, 0.010247345082461834, 0.23802581429481506, 0.014549843966960907, 0.008916179649531841, 0.0015193468425422907, 0.0017748173559084535, 0.0027188570238649845, 0.05008504539728165, 0.04519829899072647, 0.008931562304496765, 0.005372831132262945, 0.025770632550120354, 0.493562787771225], [0.04652336239814758, 0.029856983572244644, 0.0274424497038126, 0.008868598379194736, 0.0365728922188282, 0.18993408977985382, 0.023883409798145294, 0.012803173623979092, 0.0020682401955127716, 0.009510383009910583, 0.0036644742358475924, 0.023484263569116592, 0.04739322140812874, 0.11589010804891586, 0.01546296663582325, 0.046122655272483826, 0.3605187237262726], [0.12406604737043381, 0.017814358696341515, 0.02834593877196312, 0.0343850813806057, 0.11674287915229797, 0.1113356500864029, 0.006439072545617819, 0.058566879481077194, 0.0023827902041375637, 0.006000603083521128, 0.0035867374390363693, 0.009339327923953533, 0.020270539447665215, 0.008666911162436008, 0.3012712597846985, 0.059195708483457565, 0.09159016609191895], [0.0765150710940361, 0.02205670066177845, 0.04486748203635216, 0.09622493386268616, 0.1280454844236374, 0.1482638418674469, 0.021583423018455505, 0.0605945885181427, 0.0029292937833815813, 0.005028299987316132, 0.0031007120851427317, 0.012362061068415642, 0.011742843315005302, 0.005947695579379797, 0.14270439743995667, 0.0347338505089283, 0.18329934775829315], [0.03871595114469528, 0.022850530222058296, 0.011493806727230549, 0.015079102478921413, 0.01700671948492527, 0.19618956744670868, 0.023166460916399956, 0.04537046700716019, 0.007371942047029734, 0.012300048023462296, 0.0060295904986560345, 0.008322532288730145, 0.007643932942301035, 0.02461259625852108, 0.012966572307050228, 0.029912983998656273, 0.5209670662879944]], [[0.0783749520778656, 0.07831326127052307, 0.03832679241895676, 0.04980957880616188, 0.021971995010972023, 0.22261588275432587, 0.004572226665914059, 0.004838478751480579, 0.004040203057229519, 0.006548937875777483, 0.0027577579021453857, 0.0034471398685127497, 0.004836366046220064, 0.010989230126142502, 0.009396559558808804, 0.01335019338876009, 0.445810467004776], [0.017102064564824104, 0.10547586530447006, 0.020254159346222878, 0.0526033379137516, 0.009503941982984543, 0.2034689038991928, 0.003281738143414259, 0.0037290414329618216, 0.0023329302202910185, 0.004982030019164085, 0.004155418835580349, 0.001639144611544907, 0.004815217573195696, 0.007332169450819492, 0.0021920648869127035, 0.006978978868573904, 0.5501530170440674], [0.030603250488638878, 0.08505421131849289, 0.025876296684145927, 0.07811041176319122, 0.02467336319386959, 0.20226331055164337, 0.006769763305783272, 0.00767852459102869, 0.0027200141921639442, 0.0028165574185550213, 0.00243714964017272, 0.0023876004852354527, 0.006598169449716806, 0.01078750193119049, 0.008947758004069328, 0.018054421991109848, 0.4842216968536377], [0.0077561065554618835, 0.1990191787481308, 0.027280015870928764, 0.04763927310705185, 0.007589359302073717, 0.1497850865125656, 0.0018586255609989166, 0.002367284381762147, 0.0017007376300171018, 0.0021693091839551926, 0.0027489119675010443, 0.000839072628878057, 0.0020031563472002745, 0.006331780459731817, 0.0014295201981440187, 0.003350179409608245, 0.5361325144767761], [0.024512575939297676, 0.10480829328298569, 0.021504132077097893, 0.06953029334545135, 0.011528299190104008, 0.15865428745746613, 0.0023238856811076403, 0.0022680265828967094, 0.0008068928145803511, 0.001470739021897316, 0.002528903540223837, 0.0009158198954537511, 0.001748603186570108, 0.005172132980078459, 0.002051095711067319, 0.006746260914951563, 0.583429753780365], [0.026865897700190544, 0.06907527148723602, 0.03664369136095047, 0.05770900100469589, 0.027223508805036545, 0.14496299624443054, 0.029318762943148613, 0.0242190882563591, 0.010759851895272732, 0.012599777430295944, 0.019366851076483727, 0.013030802831053734, 0.01323554664850235, 0.02684326469898224, 0.00954874325543642, 0.023700101301074028, 0.4548969268798828], [0.04327428713440895, 0.019233515486121178, 0.0022940565831959248, 0.007850739173591137, 0.014872366562485695, 0.1873849481344223, 0.02711084857583046, 0.03674182668328285, 0.003202066058292985, 0.016088102012872696, 0.0027211604174226522, 0.0129391523078084, 0.0031894457060843706, 0.019633930176496506, 0.05465187504887581, 0.09376391768455505, 0.4550476670265198], [0.11138785630464554, 0.022114140912890434, 0.002733031753450632, 0.004710390232503414, 0.020356658846139908, 0.2619035840034485, 0.011127488687634468, 0.011109165847301483, 0.0032751779071986675, 0.012847065925598145, 0.002932514762505889, 0.00929062906652689, 0.005612463224679232, 0.020851988345384598, 0.015740087255835533, 0.05179985612630844, 0.4322078824043274], [0.049100879579782486, 0.024134190753102303, 0.00327666406519711, 0.015522157773375511, 0.02864372730255127, 0.18172289431095123, 0.07115081697702408, 0.09040261805057526, 0.008742477744817734, 0.013875246979296207, 0.0033585226628929377, 0.012627855874598026, 0.007906043902039528, 0.03704607114195824, 0.03903427720069885, 0.11653082817792892, 0.2969247102737427], [0.08751222491264343, 0.015724971890449524, 0.003191043622791767, 0.007854845374822617, 0.012448487803339958, 0.22643204033374786, 0.03076956793665886, 0.035305239260196686, 0.002941512269899249, 0.0034149158746004105, 0.0006760350079275668, 0.004444656893610954, 0.0014972324715927243, 0.02750213071703911, 0.027850748971104622, 0.07853922247886658, 0.4338950216770172], [0.051150742918252945, 0.03218769654631615, 0.0075988746248185635, 0.022849464789032936, 0.030591312795877457, 0.16207140684127808, 0.07492948323488235, 0.06152982637286186, 0.01041459385305643, 0.008474497124552727, 0.00778644485399127, 0.015087088569998741, 0.014757778495550156, 0.038534220308065414, 0.02081676572561264, 0.07533515244722366, 0.3658846914768219], [0.11541478335857391, 0.017125915735960007, 0.002715824171900749, 0.008635046891868114, 0.029565948992967606, 0.21255694329738617, 0.015044684521853924, 0.016124162822961807, 0.0025178254581987858, 0.010067522525787354, 0.0014706513611599803, 0.003856257302686572, 0.0021045987959951162, 0.019179314374923706, 0.035749129951000214, 0.0835997611284256, 0.42427167296409607], [0.07601144164800644, 0.010904640890657902, 0.0011340380879119039, 0.002406028099358082, 0.01263414230197668, 0.2330855280160904, 0.01757044531404972, 0.016695965081453323, 0.0019328794442117214, 0.005908834747970104, 0.0012932780664414167, 0.003780020633712411, 0.001776746241375804, 0.01273600198328495, 0.01160198450088501, 0.06858831644058228, 0.5219396948814392], [0.05232129618525505, 0.02893669903278351, 0.0013587697176262736, 0.005974622908979654, 0.009844157844781876, 0.1899159550666809, 0.04426492750644684, 0.06435362249612808, 0.00526675907894969, 0.019168656319379807, 0.00962992012500763, 0.009776976890861988, 0.0066198380663990974, 0.02905547432601452, 0.015514196828007698, 0.10048852860927582, 0.4075094759464264], [0.08525975793600082, 0.01826142519712448, 0.0012170427944511175, 0.002808556193485856, 0.012722684070467949, 0.22015228867530823, 0.015451925806701183, 0.01457525696605444, 0.0019970317371189594, 0.009410473518073559, 0.002255208557471633, 0.004093648865818977, 0.0022611310705542564, 0.01598803512752056, 0.011341908015310764, 0.06784344464540482, 0.5143601894378662], [0.13166145980358124, 0.013238254003226757, 0.0013188935117796063, 0.004018242005258799, 0.013743238523602486, 0.2039021998643875, 0.01793399639427662, 0.02015751600265503, 0.0017751867417246103, 0.004306818824261427, 0.003075201064348221, 0.004136306699365377, 0.0015463436720892787, 0.015145291574299335, 0.011440743692219257, 0.06280078738927841, 0.48979949951171875], [0.030895330011844635, 0.04326101392507553, 0.015750331804156303, 0.021871205419301987, 0.024014605209231377, 0.18202140927314758, 0.03537841513752937, 0.030933281406760216, 0.00799644086509943, 0.008381781168282032, 0.011810988187789917, 0.01209690235555172, 0.010953429155051708, 0.02398621290922165, 0.008433916606009007, 0.039104703813791275, 0.49310994148254395]], [[0.030703958123922348, 0.08026109635829926, 0.055248524993658066, 0.06543517112731934, 0.09636179357767105, 0.18540340662002563, 0.0066496701911091805, 0.00925365649163723, 0.0013921057106927037, 0.0042447918094694614, 0.0028939361218363047, 0.002191185485571623, 0.00371675961650908, 0.005726344883441925, 0.003141893772408366, 0.013318723067641258, 0.43405693769454956], [0.015105478465557098, 0.017613952979445457, 0.09474034607410431, 0.15006403625011444, 0.3524269163608551, 0.024569235742092133, 0.027575833722949028, 0.061563797295093536, 0.002459330949932337, 0.004520538728684187, 0.0014973615761846304, 0.002726939506828785, 0.0029138452373445034, 0.01750238612294197, 0.10475493222475052, 0.07680759578943253, 0.043157417327165604], [0.00933297723531723, 0.009308282285928726, 0.04473528638482094, 0.4064996540546417, 0.3548220098018646, 0.025331735610961914, 0.014020196162164211, 0.014642544090747833, 0.00046858034329488873, 0.00201830780133605, 0.0007176092476584017, 0.0010760808363556862, 0.0009928185027092695, 0.005239352583885193, 0.03585318475961685, 0.025404945015907288, 0.049536366015672684], [0.04179785028100014, 0.09820608049631119, 0.049476128071546555, 0.04855666682124138, 0.24496547877788544, 0.1192827895283699, 0.05982362851500511, 0.026716241613030434, 0.0015378937823697925, 0.0011598417768254876, 0.00046310562174767256, 0.003640706418082118, 0.0025909869000315666, 0.011164692230522633, 0.005554365459829569, 0.032090093940496445, 0.2529734969139099], [0.050885267555713654, 0.024528658017516136, 0.047531694173812866, 0.03231116384267807, 0.12187432497739792, 0.10801251232624054, 0.11711611598730087, 0.06821475923061371, 0.010365945287048817, 0.0052177817560732365, 0.0013111922889947891, 0.009758368134498596, 0.007118850480765104, 0.01686929166316986, 0.015161111950874329, 0.050468526780605316, 0.3132544755935669], [0.03247023746371269, 0.010578527115285397, 0.0034409889485687017, 0.00205201655626297, 0.005932250991463661, 0.12276756763458252, 0.015593631193041801, 0.007042814511805773, 0.0016134612960740924, 0.004150238819420338, 0.002204192103818059, 0.004372666124254465, 0.003982724621891975, 0.01013391837477684, 0.015876421704888344, 0.022819306701421738, 0.7349690198898315], [0.02831156738102436, 0.003904211800545454, 0.002761495765298605, 0.0013871940318495035, 0.00996224582195282, 0.03465375304222107, 0.03664959594607353, 0.039297815412282944, 0.006156144198030233, 0.009266429580748081, 0.007154200691729784, 0.04989504814147949, 0.01555453147739172, 0.054404597729444504, 0.3122851252555847, 0.227450892329216, 0.16090521216392517], [0.007543133571743965, 0.003371811006218195, 0.005577814299613237, 0.020648056641221046, 0.02163940668106079, 0.004437945783138275, 0.011976859532296658, 0.010050267912447453, 0.003111207392066717, 0.017442749813199043, 0.010128755122423172, 0.010759841650724411, 0.008171082474291325, 0.05370936915278435, 0.6336877942085266, 0.16361869871616364, 0.014125213027000427], [0.002905930858105421, 0.001255664392374456, 0.0004920958890579641, 0.001592332380823791, 0.004801968578249216, 0.0037239501252770424, 0.005983519833534956, 0.0041330307722091675, 0.0015031417133286595, 0.043343789875507355, 0.8398264050483704, 0.013273095712065697, 0.0027418569661676884, 0.00886316318064928, 0.03073028288781643, 0.02653510309755802, 0.008294652216136456], [0.03452742099761963, 0.020317059010267258, 0.004231309983879328, 0.00663188099861145, 0.03722457215189934, 0.04272837936878204, 0.03484835475683212, 0.01605454832315445, 0.006311750039458275, 0.02441171556711197, 0.23879389464855194, 0.058110561221838, 0.012130232527852058, 0.018589962273836136, 0.04372747242450714, 0.24306052923202515, 0.15830042958259583], [0.048949968069791794, 0.019139187410473824, 0.008974982425570488, 0.0063577014952898026, 0.05684729665517807, 0.061587750911712646, 0.019447995349764824, 0.010690521448850632, 0.002852087141945958, 0.0032429371494799852, 0.0021628057584166527, 0.03203829377889633, 0.012476673349738121, 0.036072175949811935, 0.13512928783893585, 0.32441282272338867, 0.21961748600006104], [0.029226524755358696, 0.00550758745521307, 0.004359984304755926, 0.004855701234191656, 0.01239133719354868, 0.03156403452157974, 0.02324141003191471, 0.016029413789510727, 0.0025108347181230783, 0.009821607731282711, 0.007673188112676144, 0.02511545456945896, 0.02256111614406109, 0.12734410166740417, 0.3216784596443176, 0.20667119324207306, 0.14944800734519958], [0.02853529155254364, 0.007703793700784445, 0.011652608402073383, 0.0038695959374308586, 0.00819175411015749, 0.028392398729920387, 0.009256436489522457, 0.0064859953708946705, 0.0023690643720328808, 0.004144656006246805, 0.0012525646016001701, 0.024535581469535828, 0.014827057719230652, 0.12325999140739441, 0.46731266379356384, 0.12238255888223648, 0.13582801818847656], [0.03622021898627281, 0.006776869762688875, 0.010633915662765503, 0.007060172501951456, 0.011010157875716686, 0.04305669292807579, 0.008371478877961636, 0.008640765212476254, 0.0016417497536167502, 0.004351932555437088, 0.002607339760288596, 0.022533463314175606, 0.03017502650618553, 0.05326566845178604, 0.4024346172809601, 0.13809509575366974, 0.21312475204467773], [0.07248489558696747, 0.010777881368994713, 0.016560960561037064, 0.0070013627409935, 0.01857505738735199, 0.05349167808890343, 0.018433663994073868, 0.01829409971833229, 0.0034310531336814165, 0.004610635340213776, 0.0029523419216275215, 0.022824473679065704, 0.0139393899589777, 0.017035314813256264, 0.05751892551779747, 0.3578282296657562, 0.30423998832702637], [0.08241727203130722, 0.010866271331906319, 0.011166425421833992, 0.007184374146163464, 0.018330715596675873, 0.06126647815108299, 0.026457099243998528, 0.015945803374052048, 0.003387719625607133, 0.0034334110096096992, 0.0016975946491584182, 0.018129175528883934, 0.009662214666604996, 0.019644003361463547, 0.042391326278448105, 0.19957546889781952, 0.4684445559978485], [0.05142481252551079, 0.022902993485331535, 0.01174906361848116, 0.009491492062807083, 0.02239793911576271, 0.12712623178958893, 0.019460739567875862, 0.011683343909680843, 0.0031737652607262135, 0.007567995227873325, 0.0062815239652991295, 0.006782933138310909, 0.0071035162545740604, 0.021224506199359894, 0.04447758197784424, 0.05857189744710922, 0.5685797333717346]], [[0.03630423918366432, 0.0635715052485466, 0.017420198768377304, 0.017204690724611282, 0.029356468468904495, 0.28318309783935547, 0.0033339227084070444, 0.005294162780046463, 0.0012635969324037433, 0.001918925205245614, 0.0007488413830287755, 0.0011345279635861516, 0.0015040450962260365, 0.009411126375198364, 0.0037015650887042284, 0.025056883692741394, 0.49959221482276917], [0.16260512173175812, 0.010797221213579178, 0.0018032575026154518, 0.004801610950380564, 0.006676836870610714, 0.21631526947021484, 0.007187763229012489, 0.004931415896862745, 0.0038833506405353546, 0.005471617914736271, 0.0027984119951725006, 0.0019866765942424536, 0.0025944106746464968, 0.01296512596309185, 0.0027057931292802095, 0.007773307617753744, 0.5447028279304504], [0.10881508886814117, 0.008384935557842255, 0.0009126040968112648, 0.0013111960142850876, 0.00556151382625103, 0.3011237680912018, 0.0017075382638722658, 0.00309007172472775, 0.0021836860105395317, 0.0029744075145572424, 0.0023903604596853256, 0.00044434479787014425, 0.0007747116615064442, 0.0005854342016391456, 0.0005772042204625905, 0.00400684354826808, 0.5551562309265137], [0.07897303253412247, 0.0036757441703230143, 0.0015482052695006132, 0.0005771903088316321, 0.0028730749618262053, 0.26910164952278137, 0.00037934360443614423, 0.0015728872967883945, 0.0015510352095589042, 0.0027189136017113924, 0.0017225542105734348, 0.001303439144976437, 0.0006725042476318777, 0.0015329403104260564, 0.0011234451085329056, 0.0023968543391674757, 0.6282771825790405], [0.08436843752861023, 0.006860983092337847, 0.007373754866421223, 0.0024358059745281935, 0.010425301268696785, 0.287383496761322, 0.004995780996978283, 0.010346144437789917, 0.004033540841192007, 0.003487537382170558, 0.003035750472918153, 0.0026966824661940336, 0.0027679111808538437, 0.0015694338362663984, 0.0005854073679074645, 0.006764776539057493, 0.5608691573143005], [0.06806203722953796, 0.03135818615555763, 0.013740884140133858, 0.02834021858870983, 0.012056627310812473, 0.21008606255054474, 0.007150019984692335, 0.013158382847905159, 0.0031310387421399355, 0.0036161921452730894, 0.002915353048592806, 0.005255159921944141, 0.0058961715549230576, 0.014014017768204212, 0.009096847847104073, 0.01280271727591753, 0.5593200922012329], [0.05397491529583931, 0.017954383045434952, 0.0057105449959635735, 0.0018859361298382282, 0.0033167824149131775, 0.2776744067668915, 0.00037878393777646124, 0.0022018379531800747, 0.000863774330355227, 0.0016336622647941113, 0.0013660927070304751, 0.0008782039512880147, 0.0018899792339652777, 0.0014754757285118103, 0.00025904682115651667, 0.0015956435818225145, 0.6269406080245972], [0.08609501272439957, 0.024013254791498184, 0.00614381255581975, 0.002478852868080139, 0.006837061606347561, 0.286409467458725, 0.001216529868543148, 0.0010869321413338184, 0.0012360174441710114, 0.0007901802891865373, 0.0017680295277386904, 0.0009834604570642114, 0.0008187012281268835, 0.0012795910006389022, 0.0002682885969989002, 0.002193835098296404, 0.5763810873031616], [0.0559111125767231, 0.04286414012312889, 0.021652447059750557, 0.011517901904881, 0.015806913375854492, 0.2401539832353592, 0.0048132725059986115, 0.004066516179591417, 0.00046677980571985245, 0.0008338862098753452, 0.000641520309727639, 0.005796592682600021, 0.011546586640179157, 0.008064459078013897, 0.0060175578109920025, 0.011554975062608719, 0.5582913756370544], [0.07119280099868774, 0.02825033664703369, 0.007759975269436836, 0.004468835424631834, 0.004961616825312376, 0.24966607987880707, 0.0018291305750608444, 0.0007202420383691788, 0.00018307131540495902, 6.907738134032115e-05, 0.00031896811560727656, 0.0010347565403208137, 0.0010209929896518588, 0.002741570584475994, 0.0013762115268036723, 0.002250988269224763, 0.6221553087234497], [0.06412975490093231, 0.02357710525393486, 0.018036337569355965, 0.014830741100013256, 0.019666943699121475, 0.22701337933540344, 0.00554959662258625, 0.0031244121491909027, 0.0012738704681396484, 0.0010478992480784655, 0.0016023418866097927, 0.0039006206206977367, 0.0037242386024445295, 0.0029631485231220722, 0.0010524974204599857, 0.010610111989080906, 0.5978969931602478], [0.16355673968791962, 0.03558534383773804, 0.0030420359689742327, 0.007341710384935141, 0.006299167405813932, 0.2811657190322876, 0.002934026066213846, 0.0029085930436849594, 0.0023634417448192835, 0.004632929340004921, 0.0041608973406255245, 0.0007847181987017393, 0.0018422264838591218, 0.0015747047727927566, 0.0013007082743570209, 0.004102697130292654, 0.4764043688774109], [0.10099668055772781, 0.010239679366350174, 0.0032510163728147745, 0.0016990633448585868, 0.0028407713398337364, 0.30846697092056274, 0.00039296355680562556, 0.000633444229606539, 0.0038916566409170628, 0.0031058788299560547, 0.0013120225630700588, 0.0006737891235388815, 0.000144182238727808, 0.0005591144436039031, 0.00013291991490405053, 0.0016534145688638091, 0.5600064396858215], [0.09509942680597305, 0.03719201311469078, 0.0008026157156564295, 0.0013531070435419679, 0.002584972884505987, 0.2932474613189697, 0.00031401836895383894, 0.0007294680108316243, 0.0005413880571722984, 0.0003883071185555309, 0.0002746000827755779, 0.0002939266851171851, 0.00011680768511723727, 0.0012756098294630647, 0.000340563477948308, 0.0018204450607299805, 0.5636252760887146], [0.08325894176959991, 0.011705056764185429, 0.0029188336338847876, 0.005379001144319773, 0.0035894291941076517, 0.2924269735813141, 0.00013797399878967553, 0.0006575193838216364, 0.0010098866187036037, 0.001138160703703761, 0.0003612799337133765, 0.00035221874713897705, 0.00010781660967040807, 0.000662903010379523, 0.00010220018157269806, 0.0010432010749354959, 0.5951485633850098], [0.08872807025909424, 0.010378829203546047, 0.004770626779645681, 0.0030172790866345167, 0.010918360203504562, 0.30074343085289, 0.0012623807415366173, 0.0031834221445024014, 0.0014607064658775926, 0.0013131804298609495, 0.000561272434424609, 0.000657901109661907, 0.0009141394402831793, 0.0010363048641011119, 0.0002582152374088764, 0.003301574382930994, 0.5674944519996643], [0.046813856810331345, 0.026927905157208443, 0.006217797752469778, 0.014035247266292572, 0.0064947823993861675, 0.23208613693714142, 0.002950971946120262, 0.005583873949944973, 0.0014597863191738725, 0.0017047385917976499, 0.0012043535243719816, 0.001783899962902069, 0.0026031893212348223, 0.007573914714157581, 0.0035315428394824266, 0.007701389025896788, 0.6313266158103943]], [[0.07819581776857376, 0.021316103637218475, 0.01885007694363594, 0.042768582701683044, 0.02139000967144966, 0.13383378088474274, 0.07406137883663177, 0.04500271752476692, 0.016600336879491806, 0.04368807375431061, 0.01613575778901577, 0.023131676018238068, 0.030504867434501648, 0.057738225907087326, 0.03968145325779915, 0.04779645800590515, 0.2893047034740448], [0.025787701830267906, 0.6775758862495422, 0.00938431080430746, 0.011163381859660149, 0.01667904295027256, 0.03576592355966568, 0.005172457545995712, 0.00915320310741663, 0.0010061445645987988, 0.0043524280190467834, 0.000964379112701863, 0.010947947390377522, 0.002282420638948679, 0.09338075667619705, 0.01993996649980545, 0.018800633028149605, 0.05764337256550789], [0.0813535749912262, 0.02318907156586647, 0.007921296171844006, 0.06230924278497696, 0.07751671224832535, 0.13573406636714935, 0.02197255939245224, 0.07903854548931122, 0.0048796203918755054, 0.02273077704012394, 0.0038639074191451073, 0.016557293012738228, 0.007495489437133074, 0.021481256932020187, 0.04403304308652878, 0.13728442788124084, 0.25263911485671997], [0.06774898618459702, 0.03798530995845795, 0.020282501354813576, 0.0446821004152298, 0.05517463758587837, 0.13057076930999756, 0.01678021438419819, 0.13039961457252502, 0.010944287292659283, 0.014239626005291939, 0.002146703191101551, 0.031177179887890816, 0.009462090209126472, 0.019718965515494347, 0.0385446734726429, 0.08517305552959442, 0.28496918082237244], [0.04804590716958046, 0.07092390209436417, 0.03232215344905853, 0.08682459592819214, 0.0896676629781723, 0.05944487825036049, 0.02784722112119198, 0.07739942520856857, 0.006474669557064772, 0.025504015386104584, 0.002752207452431321, 0.02531043440103531, 0.008990122936666012, 0.0694270208477974, 0.09747150540351868, 0.1453625112771988, 0.12623178958892822], [0.046094849705696106, 0.005220800172537565, 0.010228930041193962, 0.016448387876152992, 0.01464660745114088, 0.19336573779582977, 0.019787589088082314, 0.011461975052952766, 0.002690389286726713, 0.007542210631072521, 0.002658133627846837, 0.007871956564486027, 0.00975799560546875, 0.016697313636541367, 0.013124121353030205, 0.03170408681035042, 0.5906989574432373], [0.046438705176115036, 0.02242453210055828, 0.08370458334684372, 0.050721120089292526, 0.1644672006368637, 0.09246817231178284, 0.062308430671691895, 0.031109414994716644, 0.006843531038612127, 0.01903620921075344, 0.003333139466121793, 0.029599690809845924, 0.01567399874329567, 0.011586310341954231, 0.03230729699134827, 0.13965725898742676, 0.18832041323184967], [0.06395271420478821, 0.045170847326517105, 0.020477838814258575, 0.12259449809789658, 0.11375915259122849, 0.11327480524778366, 0.012200245633721352, 0.07797400653362274, 0.00250983121804893, 0.012430147267878056, 0.0030287394765764475, 0.009847691282629967, 0.004158508498221636, 0.00849124789237976, 0.03872442990541458, 0.13721351325511932, 0.2141917645931244], [0.0552852638065815, 0.006764892488718033, 0.021230895072221756, 0.09605869650840759, 0.0979657992720604, 0.15213759243488312, 0.011655131354928017, 0.04333034157752991, 0.0020447473507374525, 0.0039036094676703215, 0.003801587037742138, 0.011738246306777, 0.00924790557473898, 0.0028508096002042294, 0.012775521725416183, 0.12454407662153244, 0.34466487169265747], [0.04476042464375496, 0.0529324971139431, 0.031380537897348404, 0.11571149528026581, 0.12341688573360443, 0.10790596157312393, 0.021579796448349953, 0.08292379230260849, 0.001947203534655273, 0.004011568147689104, 0.003526468062773347, 0.008651640266180038, 0.007263245061039925, 0.011143731884658337, 0.03682798147201538, 0.13766665756702423, 0.20835013687610626], [0.06609877943992615, 0.011207305826246738, 0.02408645860850811, 0.04527438059449196, 0.09612680226564407, 0.17450983822345734, 0.013220920227468014, 0.025088133290410042, 0.004365134984254837, 0.0063519845716655254, 0.0018431111238896847, 0.01032483670860529, 0.009442751295864582, 0.004558308515697718, 0.012644597329199314, 0.058560047298669815, 0.436296671628952], [0.09674254059791565, 0.005215563345700502, 0.014599115587770939, 0.03394586965441704, 0.09662161022424698, 0.15338252484798431, 0.062207192182540894, 0.07948245108127594, 0.01311933621764183, 0.026426028460264206, 0.008538046851754189, 0.020184192806482315, 0.021398348733782768, 0.015886250883340836, 0.034247711300849915, 0.08390562236309052, 0.23409754037857056], [0.07671193033456802, 0.008196957409381866, 0.010688104666769505, 0.08229180425405502, 0.0779353529214859, 0.09794539213180542, 0.06325744837522507, 0.06484543532133102, 0.014743945561349392, 0.029907388612627983, 0.006541416514664888, 0.023688368499279022, 0.018044961616396904, 0.030867859721183777, 0.06403309106826782, 0.10767963528633118, 0.222620889544487], [0.0485214926302433, 0.3804197907447815, 0.008265077136456966, 0.08728306740522385, 0.02862299233675003, 0.03447188436985016, 0.005655527114868164, 0.02615875005722046, 0.0035509984008967876, 0.011976531706750393, 0.0018859875854104757, 0.003956879023462534, 0.002042057691141963, 0.22133132815361023, 0.057372499257326126, 0.02614106982946396, 0.052344001829624176], [0.06859397143125534, 0.1251056045293808, 0.013454563915729523, 0.26045578718185425, 0.08960753679275513, 0.05142602697014809, 0.010446371510624886, 0.06346249580383301, 0.0023150783963501453, 0.007878163829445839, 0.0015996816800907254, 0.005569120403379202, 0.0027524151373654604, 0.04432600364089012, 0.07907150685787201, 0.07652311772108078, 0.0974125936627388], [0.05715678632259369, 0.07761909067630768, 0.036393534392118454, 0.14998765289783478, 0.15644095838069916, 0.061563894152641296, 0.021125858649611473, 0.07638180255889893, 0.006019079592078924, 0.01917964220046997, 0.0037879261653870344, 0.014211255125701427, 0.006795682478696108, 0.02230500429868698, 0.06641585379838943, 0.12556993961334229, 0.09904605895280838], [0.040669869631528854, 0.005191511008888483, 0.012231042608618736, 0.01823076792061329, 0.015570323914289474, 0.2140648066997528, 0.014932086691260338, 0.010993710719048977, 0.0030259573832154274, 0.0072552296333014965, 0.0022951108403503895, 0.008035878650844097, 0.010678200982511044, 0.013934326358139515, 0.010192052461206913, 0.024276195093989372, 0.5884228944778442]], [[0.05911039561033249, 0.062075868248939514, 0.03156694769859314, 0.06221330538392067, 0.08016546070575714, 0.1108221486210823, 0.050059445202350616, 0.04960256814956665, 0.01107475720345974, 0.022383367642760277, 0.004764581099152565, 0.019263580441474915, 0.02263658307492733, 0.0829697847366333, 0.03240036219358444, 0.07922738045454025, 0.21966345608234406], [0.21247364580631256, 0.0016633003251627088, 0.0037230465095490217, 0.003066251054406166, 0.008537931367754936, 0.2106754183769226, 0.02195744961500168, 0.01833348535001278, 0.0032291554380208254, 0.0032637130934745073, 0.010832993313670158, 0.004141135141253471, 0.023864423856139183, 0.0518869012594223, 0.026454279199242592, 0.027674905955791473, 0.36822202801704407], [0.1170354038476944, 0.008852440863847733, 0.010877707041800022, 0.033473413437604904, 0.04271863028407097, 0.1947842538356781, 0.03657672181725502, 0.018253963440656662, 0.011951256543397903, 0.00820974726229906, 0.03528211638331413, 0.014814059250056744, 0.02964416705071926, 0.028514156118035316, 0.025214027613401413, 0.05552715063095093, 0.3282707631587982], [0.16961413621902466, 0.0028249972965568304, 0.011003116145730019, 0.0036910781636834145, 0.015553170815110207, 0.210714653134346, 0.015554695390164852, 0.012184709310531616, 0.0023942149709910154, 0.003066622419282794, 0.006890274118632078, 0.006877948064357042, 0.022997628897428513, 0.03433389961719513, 0.07652781903743744, 0.04528691619634628, 0.36048424243927], [0.13440054655075073, 0.004589374642819166, 0.009984605014324188, 0.009282514452934265, 0.013605855405330658, 0.2372429370880127, 0.022064529359340668, 0.011310569941997528, 0.007782225497066975, 0.005679825320839882, 0.022963685914874077, 0.006331165786832571, 0.013081725686788559, 0.013104669749736786, 0.01928321085870266, 0.0358215793967247, 0.4334709048271179], [0.04666556417942047, 0.023454023525118828, 0.017148422077298164, 0.02822098508477211, 0.04089697450399399, 0.14338961243629456, 0.01714947633445263, 0.02497848868370056, 0.003461215877905488, 0.010259702801704407, 0.004359301645308733, 0.004645883571356535, 0.006427719723433256, 0.020212441682815552, 0.011006129905581474, 0.05156424641609192, 0.5461598038673401], [0.08403540402650833, 0.011188916862010956, 0.017998812720179558, 0.029758742079138756, 0.013361716642975807, 0.1948091983795166, 0.008507179096341133, 0.025202898308634758, 0.005182589869946241, 0.013442782685160637, 0.009616748429834843, 0.0039976900443434715, 0.005999481305480003, 0.0101788230240345, 0.00569236371666193, 0.0268193781375885, 0.534207284450531], [0.13351671397686005, 0.015619692392647266, 0.009757001884281635, 0.021527327597141266, 0.01740565150976181, 0.24112796783447266, 0.012727833352982998, 0.003049428341910243, 0.0034213182516396046, 0.002128435065969825, 0.012512211687862873, 0.007023852318525314, 0.01286623626947403, 0.03880317881703377, 0.006598279811441898, 0.015103433281183243, 0.4468114674091339], [0.07223444432020187, 0.011715260334312916, 0.02271921932697296, 0.06004316732287407, 0.04011603444814682, 0.20245441794395447, 0.009808657690882683, 0.007032168097794056, 0.0009173110593110323, 0.0026661246083676815, 0.004396702162921429, 0.00934657733887434, 0.014064114540815353, 0.009143903851509094, 0.01159647386521101, 0.042184751480817795, 0.4795607030391693], [0.10911501944065094, 0.011577549390494823, 0.01543428748846054, 0.045190151780843735, 0.03684820607304573, 0.19379983842372894, 0.01942138932645321, 0.01109209656715393, 0.001434248755685985, 0.0018025177996605635, 0.00921869557350874, 0.012753933668136597, 0.0170445553958416, 0.024765342473983765, 0.019806314259767532, 0.03366866707801819, 0.4370271563529968], [0.07144639641046524, 0.0184712465852499, 0.02048434689640999, 0.03396090492606163, 0.02015826851129532, 0.19026602804660797, 0.01100657507777214, 0.017268827185034752, 0.004105914384126663, 0.013793163001537323, 0.0030064904130995274, 0.011941209435462952, 0.011806842871010303, 0.02724628336727619, 0.004706390202045441, 0.02398860827088356, 0.5163425803184509], [0.06890681385993958, 0.01175177376717329, 0.023768844082951546, 0.07849679887294769, 0.07197991758584976, 0.1443944275379181, 0.01909230463206768, 0.026939569041132927, 0.006990950088948011, 0.015681469812989235, 0.013039743527770042, 0.005713693797588348, 0.013529456220567226, 0.026711685582995415, 0.016112342476844788, 0.08274385333061218, 0.37414634227752686], [0.06077642738819122, 0.013447821140289307, 0.023332767188549042, 0.1735851764678955, 0.025153188034892082, 0.15057359635829926, 0.008352263830602169, 0.015511436387896538, 0.01089347805827856, 0.028298834338784218, 0.011648795567452908, 0.007024338934570551, 0.00147591857239604, 0.010284277610480785, 0.004302719607949257, 0.02004755474627018, 0.4352914094924927], [0.2553425133228302, 0.04095541313290596, 0.008249004371464252, 0.08020723611116409, 0.01657295413315296, 0.1794290542602539, 0.005951473955065012, 0.05771645903587341, 0.0016079851193353534, 0.010870461352169514, 0.0031703037675470114, 0.004539843183010817, 0.010729492641985416, 0.026005983352661133, 0.01956024579703808, 0.022943416610360146, 0.25614815950393677], [0.1769947111606598, 0.02194240130484104, 0.008900928311049938, 0.38004568219184875, 0.03303895890712738, 0.13657617568969727, 0.003387277480214834, 0.0056865159422159195, 0.0019281645072624087, 0.002405111910775304, 0.002684646053239703, 0.00361964525654912, 0.003452231641858816, 0.008916891179978848, 0.005122688598930836, 0.014341633766889572, 0.19095636904239655], [0.10807199031114578, 0.016321327537298203, 0.013664374127984047, 0.04629247635602951, 0.024646174162626266, 0.21744759380817413, 0.02932748571038246, 0.01930875889956951, 0.011489259079098701, 0.008451804518699646, 0.0218619666993618, 0.011570677161216736, 0.012550865299999714, 0.01765665039420128, 0.018438994884490967, 0.047218918800354004, 0.3756806552410126], [0.053446996957063675, 0.03278815373778343, 0.01651903986930847, 0.02483813464641571, 0.035367682576179504, 0.14846274256706238, 0.03140809386968613, 0.0376521497964859, 0.005705091170966625, 0.014211416244506836, 0.006798711139708757, 0.008461822755634785, 0.011323023587465286, 0.032335586845874786, 0.015722334384918213, 0.058242496103048325, 0.46671658754348755]], [[0.11855211108922958, 0.03213824704289436, 0.005019806791096926, 0.021291332319378853, 0.048577383160591125, 0.20956026017665863, 0.03740254417061806, 0.022976353764533997, 0.0031419831793755293, 0.010348547250032425, 0.00639833090826869, 0.030737197026610374, 0.03500405326485634, 0.018443148583173752, 0.01183451246470213, 0.0639398992061615, 0.32463425397872925], [0.04236356541514397, 0.009522157721221447, 0.005047031678259373, 0.05242271348834038, 0.14519259333610535, 0.12792529165744781, 0.049912191927433014, 0.013300079852342606, 0.003593413857743144, 0.012900722213089466, 0.028431957587599754, 0.011495217680931091, 0.0361589714884758, 0.02703050896525383, 0.03326604515314102, 0.13414053618907928, 0.2672969400882721], [0.04849286377429962, 0.018533306196331978, 0.006264813710004091, 0.057688090950250626, 0.08394952118396759, 0.16646777093410492, 0.03846932575106621, 0.014518988318741322, 0.003650740021839738, 0.00897993054240942, 0.01435227319598198, 0.023732976987957954, 0.03737111762166023, 0.014675910584628582, 0.009945428930222988, 0.08438429981470108, 0.3685225546360016], [0.04851716756820679, 0.004903425928205252, 0.002752875443547964, 0.01679079234600067, 0.11883800476789474, 0.14946286380290985, 0.04165380820631981, 0.009480020962655544, 0.0018810945330187678, 0.011167619377374649, 0.04396054521203041, 0.010009018704295158, 0.032215606421232224, 0.014125246554613113, 0.017079109326004982, 0.16619937121868134, 0.3109634220600128], [0.06724297255277634, 0.023362591862678528, 0.0036815188359469175, 0.029900209978222847, 0.031162533909082413, 0.2566157877445221, 0.017195679247379303, 0.00855940580368042, 0.002877598162740469, 0.01243207510560751, 0.0070714219473302364, 0.009433082304894924, 0.05249335616827011, 0.010504176840186119, 0.015494079329073429, 0.059812381863594055, 0.392161101102829], [0.2934345602989197, 0.006822443101555109, 0.00215534376911819, 0.005177163053303957, 0.02200954407453537, 0.1737348884344101, 0.00446607219055295, 0.005086834542453289, 0.0012508773943409324, 0.004745549988001585, 0.0016889679245650768, 0.0036317273043096066, 0.0019908177200704813, 0.010833099484443665, 0.001841682125814259, 0.03789391741156578, 0.423236608505249], [0.029656430706381798, 0.004711486864835024, 0.006880887318402529, 0.012962688691914082, 0.059013620018959045, 0.21793746948242188, 0.022885045036673546, 0.011049521155655384, 0.0015757667133584619, 0.007874993607401848, 0.00830849353224039, 0.006903044413775206, 0.03362945467233658, 0.009668017737567425, 0.00653208140283823, 0.13111469149589539, 0.4292964041233063], [0.024567430838942528, 0.01515668723732233, 0.012269116006791592, 0.030592605471611023, 0.05917159095406532, 0.11722815781831741, 0.05441455915570259, 0.010900345630943775, 0.004996008705347776, 0.008875802159309387, 0.012675367295742035, 0.013206029310822487, 0.12866218388080597, 0.04152623564004898, 0.016190283000469208, 0.1748260110616684, 0.27474159002304077], [0.08673185110092163, 0.01246169488877058, 0.010726705193519592, 0.019442815333604813, 0.03326912596821785, 0.1729602962732315, 0.015366914682090282, 0.012118536047637463, 0.0018324624979868531, 0.011858762241899967, 0.007122664246708155, 0.01545120682567358, 0.028282558545470238, 0.03463684022426605, 0.0024869136977940798, 0.06273279339075089, 0.47251787781715393], [0.06470704823732376, 0.018387991935014725, 0.010207838378846645, 0.023151932284235954, 0.023169899359345436, 0.16004376113414764, 0.03736792504787445, 0.0038908664137125015, 0.0039817471988499165, 0.009444795548915863, 0.013016154058277607, 0.014863823540508747, 0.10611514747142792, 0.016847215592861176, 0.003295447211712599, 0.06702505052089691, 0.4244832694530487], [0.07790549844503403, 0.014905457384884357, 0.012125233188271523, 0.015968594700098038, 0.028729982674121857, 0.1977558434009552, 0.03699004277586937, 0.013332221657037735, 0.007169391959905624, 0.01903693377971649, 0.007232095580548048, 0.023898987099528313, 0.0527496263384819, 0.02338315360248089, 0.0036288530100136995, 0.09778804332017899, 0.36740005016326904], [0.04300461336970329, 0.016154907643795013, 0.01221612747758627, 0.01532373670488596, 0.0380597785115242, 0.1926020234823227, 0.03283734619617462, 0.006879914551973343, 0.0025568052660673857, 0.008142614737153053, 0.009281523525714874, 0.012912887148559093, 0.05320397764444351, 0.021903397515416145, 0.008857901208102703, 0.07039914280176163, 0.45566317439079285], [0.04776119813323021, 0.011116473004221916, 0.005868729669600725, 0.013920004479587078, 0.03750719875097275, 0.17251361906528473, 0.05512315407395363, 0.00550794554874301, 0.0019473430002108216, 0.012317150831222534, 0.019731692969799042, 0.012161273509263992, 0.05876735970377922, 0.008416365832090378, 0.006894167046993971, 0.0747024193406105, 0.4557439982891083], [0.05798729136586189, 0.017813490703701973, 0.022555608302354813, 0.022823575884103775, 0.04543080925941467, 0.1734987050294876, 0.03261817619204521, 0.009212557226419449, 0.006808888632804155, 0.012530852109193802, 0.01632145792245865, 0.02139977179467678, 0.03470619395375252, 0.006830096244812012, 0.009274334646761417, 0.08742953091859818, 0.4227586090564728], [0.0411643460392952, 0.0206065084785223, 0.022436941042542458, 0.0432203933596611, 0.07705584913492203, 0.1032383069396019, 0.024007629603147507, 0.009174029342830181, 0.006835202220827341, 0.005711646284908056, 0.014805546961724758, 0.01407836563885212, 0.054579220712184906, 0.01999715529382229, 0.029676314443349838, 0.19925740361213684, 0.31415510177612305], [0.064283587038517, 0.0617799311876297, 0.015174387954175472, 0.03542020171880722, 0.03686259686946869, 0.17623238265514374, 0.030231159180402756, 0.00815170630812645, 0.008157358504831791, 0.010933199897408485, 0.0066154273226857185, 0.012424600310623646, 0.056988123804330826, 0.023050829768180847, 0.021189771592617035, 0.10686907172203064, 0.325635701417923], [0.25643521547317505, 0.0075567299500107765, 0.003062648233026266, 0.007606910075992346, 0.029526280239224434, 0.16496920585632324, 0.0056807054206728935, 0.0063934181816875935, 0.0014400056097656488, 0.005676984786987305, 0.0017955005168914795, 0.004410142078995705, 0.0021033119410276413, 0.012932537123560905, 0.0025085622910410166, 0.050190269947052, 0.43771159648895264]]], [[[0.05492445454001427, 0.050527423620224, 0.016146346926689148, 0.026557987555861473, 0.03394630178809166, 0.25710490345954895, 0.0348990336060524, 0.03805714473128319, 0.004329749848693609, 0.01299035269767046, 0.008542565628886223, 0.008725841529667377, 0.006055062171071768, 0.02157316356897354, 0.02175229787826538, 0.04290379211306572, 0.3609636127948761], [0.06324737519025803, 0.12466730922460556, 0.005620605777949095, 0.002487058751285076, 0.07696356624364853, 0.25684231519699097, 0.013311256654560566, 0.017447078600525856, 0.00112659961450845, 0.0013477596221491694, 0.001476746634580195, 0.006926354020833969, 0.0014957116218283772, 0.00817064754664898, 0.024953419342637062, 0.055202994495630264, 0.3387131989002228], [0.0250942874699831, 0.0054782298393547535, 0.045088548213243484, 0.2135029286146164, 0.03570173680782318, 0.0784047394990921, 0.13887840509414673, 0.022465722635388374, 0.007496675010770559, 0.01834489032626152, 0.021254686638712883, 0.15159179270267487, 0.03476923704147339, 0.01527084968984127, 0.027893075719475746, 0.04938611760735512, 0.10937808454036713], [0.06733369827270508, 0.0014483859995380044, 0.007896223105490208, 0.09297918528318405, 0.02251267060637474, 0.22495105862617493, 0.15701742470264435, 0.00794935878366232, 0.005865644663572311, 0.01647101528942585, 0.0025583957321941853, 0.016165798529982567, 0.0037545994855463505, 0.010362363420426846, 0.010151999071240425, 0.06755656749010086, 0.28502562642097473], [0.05179198458790779, 0.024335572496056557, 0.008668222464621067, 0.01704741083085537, 0.029682427644729614, 0.2224109023809433, 0.07198283076286316, 0.06572660058736801, 0.0029381539206951857, 0.021356748417019844, 0.0035575253423303366, 0.013242489658296108, 0.007315356284379959, 0.01750747300684452, 0.026291944086551666, 0.0722159892320633, 0.34392836689949036], [0.05798904970288277, 0.028450464829802513, 0.005898802541196346, 0.015686502680182457, 0.018811754882335663, 0.28787633776664734, 0.012590315192937851, 0.018062544986605644, 0.0032872699666768312, 0.008828739635646343, 0.0058807809837162495, 0.00477371271699667, 0.007257959805428982, 0.016064168885350227, 0.013582772575318813, 0.027895180508494377, 0.4670636057853699], [0.04610118269920349, 0.0209010299295187, 0.038900602608919144, 0.07142618298530579, 0.053127750754356384, 0.22317002713680267, 0.010210362263023853, 0.010853316634893417, 0.002863043686375022, 0.010529172606766224, 0.0023224472533911467, 0.007489354349672794, 0.006908827926963568, 0.015637986361980438, 0.02585633285343647, 0.05778804421424866, 0.3959144055843353], [0.03609759360551834, 0.06999843567609787, 0.013111396692693233, 0.0034409386571496725, 0.03849831596016884, 0.18191570043563843, 0.004725795704871416, 0.27749893069267273, 0.0009889377979561687, 0.0024010136257857084, 0.0019663230050355196, 0.004199343267828226, 0.0028466510120779276, 0.006349082104861736, 0.03126445412635803, 0.04018719494342804, 0.28450989723205566], [0.029100054875016212, 0.00028829366783611476, 0.004846139345318079, 0.015825318172574043, 0.015355944633483887, 0.1648808866739273, 0.012747204862535, 0.002285666996613145, 0.018508201465010643, 0.10091648250818253, 0.33992159366607666, 0.0032172019127756357, 0.002418779768049717, 0.002165380399674177, 0.009230531752109528, 0.042154211550951004, 0.23613817989826202], [0.028946490958333015, 0.00029361352790147066, 0.031702280044555664, 0.00984086375683546, 0.04351234436035156, 0.13484330475330353, 0.017738236114382744, 0.012261380441486835, 0.009762237779796124, 0.0272147785872221, 0.3929142653942108, 0.02586783468723297, 0.019396299496293068, 0.0064950850792229176, 0.04184373468160629, 0.04762192443013191, 0.14974525570869446], [0.03256625309586525, 0.0014673301484435797, 0.03473862633109093, 0.007035682909190655, 0.036615535616874695, 0.23450520634651184, 0.01549629308283329, 0.011658959090709686, 0.020040301606059074, 0.06781557202339172, 0.18637904524803162, 0.01930766925215721, 0.006101258564740419, 0.013293158262968063, 0.010978320613503456, 0.036555420607328415, 0.26544541120529175], [0.04611188918352127, 0.011380918323993683, 0.26525717973709106, 0.10584460198879242, 0.030974676832556725, 0.08467632532119751, 0.023287829011678696, 0.009401308372616768, 0.0075584701262414455, 0.009545693174004555, 0.0067485482431948185, 0.04630811884999275, 0.0850779339671135, 0.06690245121717453, 0.05766277760267258, 0.03900153562426567, 0.10425974428653717], [0.052518267184495926, 0.005202009342610836, 0.022593997418880463, 0.011256514117121696, 0.0209489893168211, 0.26084768772125244, 0.02932662144303322, 0.004067163914442062, 0.004349808674305677, 0.002854449674487114, 0.0006111090769991279, 0.021052271127700806, 0.024046873673796654, 0.09791494905948639, 0.04927185922861099, 0.06660798192024231, 0.32652950286865234], [0.05179719999432564, 0.013339119032025337, 0.009473743848502636, 0.008944950066506863, 0.031826626509428024, 0.1621541827917099, 0.004690241068601608, 0.0011426088167354465, 0.0021992730908095837, 0.008313203230500221, 0.0007756202830933034, 0.00483348686248064, 0.003503635758534074, 0.3907932639122009, 0.08325009047985077, 0.03745489567518234, 0.1855078637599945], [0.07291586697101593, 0.012279904447495937, 0.014488104730844498, 0.005473683122545481, 0.048030294477939606, 0.20746049284934998, 0.005324894562363625, 0.016677487641572952, 0.003977668471634388, 0.021832304075360298, 0.0005330170388333499, 0.007837530225515366, 0.00482909893617034, 0.20145563781261444, 0.05651336908340454, 0.05305778980255127, 0.2673129141330719], [0.04638318344950676, 0.012890692800283432, 0.005117181222885847, 0.0145984822884202, 0.024271516129374504, 0.3083648681640625, 0.00882639642804861, 0.020618051290512085, 0.001035885768942535, 0.007296727038919926, 0.0028175637125968933, 0.0026834660675376654, 0.0018245853716507554, 0.005599489435553551, 0.0068059819750487804, 0.019038451835513115, 0.5118274688720703], [0.05376911908388138, 0.020320231094956398, 0.005125189200043678, 0.012427352368831635, 0.017955852672457695, 0.3033220171928406, 0.013612756505608559, 0.01607450097799301, 0.0028776878025382757, 0.007974918000400066, 0.006078172009438276, 0.004972110968083143, 0.006386301480233669, 0.014271961525082588, 0.0129201989620924, 0.026756349951028824, 0.4751553237438202]], [[0.06010963395237923, 0.019402043893933296, 0.00225750170648098, 0.0066352058202028275, 0.00830839667469263, 0.12644533812999725, 0.05132780596613884, 0.06994183361530304, 0.017176911234855652, 0.03511258587241173, 0.02652616798877716, 0.06158192455768585, 0.05111555755138397, 0.05100199207663536, 0.04726435989141464, 0.1056484505534172, 0.26014432311058044], [0.15674811601638794, 0.06921286135911942, 0.031633246690034866, 0.023297525942325592, 0.06417512893676758, 0.24157249927520752, 0.008752339519560337, 0.014449059031903744, 0.0033777719363570213, 0.001980627654120326, 0.0021815982181578875, 0.003847946645691991, 0.0030464858282357454, 0.01314633060246706, 0.010879825800657272, 0.011031820438802242, 0.3406667709350586], [0.10435442626476288, 0.017854342237114906, 0.09636791050434113, 0.025963786989450455, 0.09539144486188889, 0.26826825737953186, 0.003266717540100217, 0.004323599394410849, 0.00785356666892767, 0.0014775311574339867, 0.007661461364477873, 0.0102302897721529, 0.0030002526473253965, 0.004310022108256817, 0.0023625160101801157, 0.008778716437518597, 0.3385350704193115], [0.10735350102186203, 0.010195990093052387, 0.007544748485088348, 0.033978965133428574, 0.04878759756684303, 0.3137122392654419, 0.0034133028239011765, 0.0008546715253032744, 0.0010805095080286264, 0.0005448429728858173, 0.001977508421987295, 0.0021459285635501146, 0.001191091607324779, 0.00373077392578125, 0.003319214563816786, 0.006857763044536114, 0.45331135392189026], [0.1312791407108307, 0.009317593649029732, 0.002946246415376663, 0.010986176319420338, 0.07466404139995575, 0.34336093068122864, 0.0011616081465035677, 0.0011989354388788342, 0.000692495028488338, 0.00018190043920185417, 0.0014907203149050474, 0.0012043564347550273, 0.0003604343219194561, 0.0013812440447509289, 0.0013390898238867521, 0.008470765314996243, 0.40996435284614563], [0.06017989665269852, 0.010681509971618652, 0.0037775945384055376, 0.0061948555521667, 0.01261349581182003, 0.2867957353591919, 0.01826666109263897, 0.00606136117130518, 0.0018489721696823835, 0.0018707761773839593, 0.0025616278871893883, 0.004112894646823406, 0.0022587098646909, 0.004562658257782459, 0.003477483754977584, 0.013713453896343708, 0.5610223412513733], [0.10837893187999725, 0.0040181344375014305, 0.0019348253263160586, 0.004591287579387426, 0.038568995893001556, 0.2602502703666687, 0.0225386805832386, 0.007358863018453121, 0.00945331621915102, 0.001308676553890109, 0.005154704209417105, 0.010147432796657085, 0.002399801043793559, 0.0044327680952847, 0.0016543678939342499, 0.036849889904260635, 0.48095911741256714], [0.12265589833259583, 0.02222045324742794, 0.007925715297460556, 0.0068222759291529655, 0.01923298090696335, 0.19342856109142303, 0.02701791375875473, 0.12163060903549194, 0.01613159105181694, 0.00945738423615694, 0.007818206213414669, 0.010715394280850887, 0.004105136729776859, 0.007477672304958105, 0.007240384351462126, 0.02722335420548916, 0.3888964354991913], [0.08459483832120895, 0.0023306049406528473, 0.005020079202950001, 0.003701030509546399, 0.025082699954509735, 0.24428817629814148, 0.008418732322752476, 0.008860467001795769, 0.045099757611751556, 0.0049299634993076324, 0.011710717342793941, 0.012274499051272869, 0.0041761742904782295, 0.003916935529559851, 0.0028848268557339907, 0.040676526725292206, 0.4920339584350586], [0.09159477800130844, 0.0031451585236936808, 0.0021536683198064566, 0.0036646907683461905, 0.017963126301765442, 0.23269958794116974, 0.010011940263211727, 0.005251389928162098, 0.017171842977404594, 0.0018678589258342981, 0.010364685207605362, 0.015446672216057777, 0.002056316938251257, 0.0036673862487077713, 0.0016510109417140484, 0.01982612907886505, 0.5614639520645142], [0.06111269071698189, 0.001316411653533578, 0.0015456092078238726, 0.003309770720079541, 0.011415895074605942, 0.23104096949100494, 0.010092560201883316, 0.0049157459288835526, 0.010031535290181637, 0.0023369004484266043, 0.021607408300042152, 0.019477542489767075, 0.010382024571299553, 0.002783395815640688, 0.0023568265605717897, 0.031802721321582794, 0.5744719505310059], [0.10760196298360825, 0.008583455346524715, 0.012701143510639668, 0.009512271732091904, 0.03836457431316376, 0.1681610345840454, 0.017170017585158348, 0.015597752295434475, 0.01959960348904133, 0.006884254515171051, 0.04734382405877113, 0.1049526110291481, 0.022991102188825607, 0.03010616824030876, 0.011742996983230114, 0.04200563207268715, 0.33668163418769836], [0.06123384088277817, 0.002368797780945897, 0.006741747725754976, 0.0098830321803689, 0.016504835337400436, 0.18706907331943512, 0.006744857411831617, 0.005044926423579454, 0.005582382436841726, 0.001349471160210669, 0.017641646787524223, 0.063811294734478, 0.03951367735862732, 0.018815070390701294, 0.0066368053667247295, 0.024481486529111862, 0.5265770554542542], [0.11686880886554718, 0.00402156263589859, 0.003919648937880993, 0.011272342875599861, 0.017442969605326653, 0.21305182576179504, 0.006014677230268717, 0.004278813023120165, 0.002376413205638528, 0.0016137256752699614, 0.0050971838645637035, 0.020355962216854095, 0.021226482465863228, 0.0600639171898365, 0.01831851340830326, 0.0336107574403286, 0.46046632528305054], [0.11434617638587952, 0.01297676656395197, 0.004774419125169516, 0.030924255028367043, 0.03376459702849388, 0.21630063652992249, 0.014513116329908371, 0.011706697754561901, 0.002553077880293131, 0.003805497195571661, 0.007503333501517773, 0.014829790219664574, 0.01489944662898779, 0.042947448790073395, 0.08107206225395203, 0.04554180055856705, 0.3475409150123596], [0.12684497237205505, 0.004903525114059448, 0.0007391593535430729, 0.004314830526709557, 0.02711409330368042, 0.2896082103252411, 0.0022965301759541035, 0.002050273586064577, 0.0012777948286384344, 0.0004294212849345058, 0.00262889894656837, 0.002446285681799054, 0.0009196797618642449, 0.0034437132999300957, 0.0024676043540239334, 0.030205149203538895, 0.4983099102973938], [0.06008158251643181, 0.00877205841243267, 0.0021274853497743607, 0.003793890355154872, 0.007614155299961567, 0.2630384564399719, 0.012218951247632504, 0.005531462840735912, 0.0015164624201133847, 0.0011314409784972668, 0.0020858149509876966, 0.0033116894774138927, 0.0017882261890918016, 0.0035539816599339247, 0.002929987385869026, 0.011167987249791622, 0.6093363761901855]], [[0.09851142019033432, 0.049062274396419525, 0.014036817476153374, 0.022187618538737297, 0.034168366342782974, 0.2078109085559845, 0.030278850346803665, 0.08225952088832855, 0.004070022609084845, 0.006410142406821251, 0.007603973615914583, 0.024678608402609825, 0.02414901927113533, 0.042916443198919296, 0.025857361033558846, 0.09408020228147507, 0.23191849887371063], [0.06179143115878105, 0.05292019248008728, 0.011957825161516666, 0.004277168307453394, 0.02812189608812332, 0.21606114506721497, 0.009195659309625626, 0.05039382725954056, 0.0014840448275208473, 0.01093622762709856, 0.0030994222033768892, 0.01644044928252697, 0.04422992840409279, 0.14216509461402893, 0.0372176431119442, 0.05601220205426216, 0.25369590520858765], [0.07023800909519196, 0.020634382963180542, 0.04939304292201996, 0.014752059243619442, 0.053151700645685196, 0.14998053014278412, 0.06090882793068886, 0.07669883221387863, 0.00739658810198307, 0.015089218504726887, 0.00556285260245204, 0.03147685155272484, 0.018978102132678032, 0.03131083771586418, 0.051167476922273636, 0.0988069623708725, 0.24445374310016632], [0.054813917726278305, 0.02358776517212391, 0.02125823311507702, 0.03363833203911781, 0.023784412071108818, 0.05100484937429428, 0.0340893417596817, 0.18357762694358826, 0.0027588913217186928, 0.014536263421177864, 0.002191063016653061, 0.023016834631562233, 0.06848108023405075, 0.08456675708293915, 0.22862178087234497, 0.06753649562597275, 0.08253630250692368], [0.07149109244346619, 0.03141121566295624, 0.02812660112977028, 0.020248815417289734, 0.12286454439163208, 0.053181249648332596, 0.08234308660030365, 0.09055481106042862, 0.0012700808001682162, 0.006593215744942427, 0.0017000242369249463, 0.025200454518198967, 0.03090994618833065, 0.04620698466897011, 0.11123066395521164, 0.20712482929229736, 0.06954237073659897], [0.04688301682472229, 0.009571137838065624, 0.004366095177829266, 0.010351919569075108, 0.009266792796552181, 0.2904019057750702, 0.011170713230967522, 0.01350631657987833, 0.006749126128852367, 0.0050559560768306255, 0.01453305408358574, 0.009468069300055504, 0.009587213397026062, 0.016166994348168373, 0.006630260962992907, 0.01796003058552742, 0.5183314085006714], [0.06336664408445358, 0.024033013731241226, 0.07883380353450775, 0.24471640586853027, 0.09115694463253021, 0.0786580815911293, 0.030307577922940254, 0.014884811826050282, 0.010998538695275784, 0.012136583216488361, 0.02307741902768612, 0.011321164667606354, 0.02870846726000309, 0.022282669320702553, 0.04261389747262001, 0.09261493384838104, 0.13028907775878906], [0.05044578015804291, 0.022979022935032845, 0.04404701292514801, 0.03245943784713745, 0.056006334722042084, 0.031530387699604034, 0.0018934106919914484, 0.4364517629146576, 0.0015692869201302528, 0.0023272554390132427, 0.0009647079277783632, 0.007374147418886423, 0.008281671442091465, 0.01060596015304327, 0.12098215520381927, 0.12331314384937286, 0.04876859486103058], [0.07971055060625076, 0.057737141847610474, 0.02420000731945038, 0.0847058966755867, 0.07396534085273743, 0.11029084026813507, 0.05498989298939705, 0.06431493163108826, 0.00944121927022934, 0.010058590210974216, 0.005863777361810207, 0.008802364580333233, 0.013978966511785984, 0.022817688062787056, 0.09455327689647675, 0.09031074494123459, 0.19425882399082184], [0.09266544878482819, 0.05945428088307381, 0.06593713164329529, 0.24592545628547668, 0.05710284039378166, 0.06258536875247955, 0.014955895021557808, 0.09173836559057236, 0.0053961919620633125, 0.01116347685456276, 0.0030855536460876465, 0.01113335695117712, 0.011621465906500816, 0.029974613338708878, 0.06125107407569885, 0.06466294080018997, 0.11134657263755798], [0.08596207201480865, 0.024363214150071144, 0.15049660205841064, 0.1755158007144928, 0.04912794381380081, 0.10209514945745468, 0.061477694660425186, 0.04428361728787422, 0.007847530767321587, 0.010316201485693455, 0.009495879523456097, 0.02233966812491417, 0.015471159480512142, 0.01881701871752739, 0.016970263794064522, 0.04673648253083229, 0.1586836874485016], [0.09113125503063202, 0.039339687675237656, 0.0777708888053894, 0.06481596827507019, 0.061383236199617386, 0.17830291390419006, 0.01897249184548855, 0.029697546735405922, 0.0067179822362959385, 0.01306645292788744, 0.00513478321954608, 0.014768198132514954, 0.013065881095826626, 0.0160286333411932, 0.019289616495370865, 0.04336485639214516, 0.3071495592594147], [0.07255475223064423, 0.07681399583816528, 0.06435161828994751, 0.1778489351272583, 0.047786593437194824, 0.11867744475603104, 0.009308998472988605, 0.041282281279563904, 0.003275108290836215, 0.014249532483518124, 0.006826211232692003, 0.014143671840429306, 0.022979579865932465, 0.037780772894620895, 0.013701028190553188, 0.03899224102497101, 0.23942714929580688], [0.022991899400949478, 0.06394095718860626, 0.0104147270321846, 0.028084736317396164, 0.016551129519939423, 0.03884495049715042, 0.001771853887476027, 0.033375583589076996, 0.0006344831781461835, 0.003456615377217531, 0.0009853777009993792, 0.0028911607805639505, 0.013758069835603237, 0.6104580163955688, 0.060881298035383224, 0.024649472907185555, 0.06630975753068924], [0.024910595268011093, 0.03873800113797188, 0.04224756732583046, 0.03552424907684326, 0.06643154472112656, 0.045791517943143845, 0.002249030862003565, 0.2092350870370865, 0.001121237059123814, 0.00467316247522831, 0.0008005245472304523, 0.004772384185343981, 0.024114089086651802, 0.12600146234035492, 0.2357870489358902, 0.07402808219194412, 0.06357443332672119], [0.05079144611954689, 0.04092705249786377, 0.0690457671880722, 0.07680334895849228, 0.16666194796562195, 0.03200731799006462, 0.03591359406709671, 0.14774733781814575, 0.0016064203809946775, 0.004141454119235277, 0.001982248853892088, 0.022602269425988197, 0.021043194457888603, 0.012114113196730614, 0.10249049216508865, 0.17305244505405426, 0.04106948897242546], [0.04529716819524765, 0.010286302305758, 0.005173846147954464, 0.010036874562501907, 0.009994525462388992, 0.30703121423721313, 0.009348136372864246, 0.015651285648345947, 0.005187037866562605, 0.004682724829763174, 0.012587008066475391, 0.009236960671842098, 0.010387450456619263, 0.016711287200450897, 0.00603123614564538, 0.017322184517979622, 0.5050347447395325]], [[0.11175383627414703, 0.01215983834117651, 0.004894651006907225, 0.01935357227921486, 0.004420117475092411, 0.18343386054039001, 0.022091688588261604, 0.04649394378066063, 0.0027628920506685972, 0.012852998450398445, 0.010514384135603905, 0.03264923393726349, 0.021274549886584282, 0.013208357617259026, 0.009587238542735577, 0.06083798408508301, 0.43171098828315735], [0.08851038664579391, 0.05544926971197128, 0.0028253637719899416, 0.018555058166384697, 0.0073736743070185184, 0.3673646152019501, 0.0034149005077779293, 0.001094344537705183, 9.391133062308654e-05, 0.0001400603068759665, 0.005402703769505024, 0.0012963601620867848, 0.0017197730485349894, 0.009233405813574791, 0.0016616759821772575, 0.0026819074992090464, 0.43318256735801697], [0.062113359570503235, 0.04228155314922333, 0.0028818752616643906, 0.014419362880289555, 0.005229055415838957, 0.305695503950119, 0.0030287618283182383, 0.001680034096352756, 0.00028105106321163476, 0.0001974763290490955, 0.004629568196833134, 0.0008974609081633389, 0.0028300697449594736, 0.01348836813122034, 0.0029908346477895975, 0.00303293252363801, 0.5343227982521057], [0.08794941008090973, 0.01679067499935627, 0.0095062842592597, 0.02445809729397297, 0.004808679688721895, 0.2674625813961029, 0.0033285238314419985, 0.0013809227384626865, 0.0004901927895843983, 0.0006361810956150293, 0.013149980455636978, 0.0035684313625097275, 0.005901527591049671, 0.014408551156520844, 0.004566309507936239, 0.004290763288736343, 0.5373028516769409], [0.08880102634429932, 0.023715326562523842, 0.0031244561541825533, 0.01761879399418831, 0.005243806634098291, 0.331617534160614, 0.0005341189680621028, 0.00042716640746220946, 0.00011422318493714556, 0.00012394825171213597, 0.001631664577871561, 0.0005474619683809578, 0.0010941196233034134, 0.007213315926492214, 0.0014177410630509257, 0.004227147437632084, 0.5125481486320496], [0.034176163375377655, 0.025108346715569496, 0.017890378832817078, 0.018666565418243408, 0.022874461486935616, 0.3687611520290375, 0.0033733348827809095, 0.003235151059925556, 0.0028486275114119053, 0.0012889961944893003, 0.003186162794008851, 0.0059273699298501015, 0.0021451774518936872, 0.009685766883194447, 0.003336493158712983, 0.010179932229220867, 0.4673159420490265], [0.059717439115047455, 0.008718617260456085, 0.00424532126635313, 0.011485237628221512, 0.023036355152726173, 0.35867419838905334, 0.0017034080810844898, 0.00047747319331392646, 0.00023930499446578324, 0.00043722178088501096, 0.001647170283831656, 0.0009449354838579893, 0.0007843946223147213, 0.005823522340506315, 0.00048487528692930937, 0.03440595045685768, 0.4871746003627777], [0.06182543933391571, 0.05800218507647514, 0.0013325370382517576, 0.01396010909229517, 0.008428232744336128, 0.36836275458335876, 0.0015912739327177405, 0.0007283170125447214, 5.995493120281026e-05, 6.91414243192412e-05, 0.0009131588158197701, 0.00042493682121858, 0.0010865069925785065, 0.007335807662457228, 0.0007334096590057015, 0.0071123866364359856, 0.4680338501930237], [0.06216976046562195, 0.011570347473025322, 0.0017061574617400765, 0.016042716801166534, 0.011449652723968029, 0.32933562994003296, 0.0033493274822831154, 0.0027333467733114958, 0.0005393752944655716, 0.0009476994164288044, 0.00664091482758522, 0.0011925760190933943, 0.002988141030073166, 0.008813360705971718, 0.005539154168218374, 0.007966688834130764, 0.5270151495933533], [0.08522342890501022, 0.021473994478583336, 0.002698184223845601, 0.01507312897592783, 0.014434498734772205, 0.30747905373573303, 0.0021662074141204357, 0.0028657028451561928, 0.00035772379487752914, 0.0007415179279632866, 0.002711555454879999, 0.0014299758477136493, 0.005865112412720919, 0.008476173505187035, 0.0023635118268430233, 0.019674941897392273, 0.506965160369873], [0.057102762162685394, 0.008049605414271355, 0.0014066111762076616, 0.009243165142834187, 0.005573519971221685, 0.26468655467033386, 0.0033015275839716196, 0.00333351525478065, 0.000716119771823287, 0.001193741336464882, 0.00394503865391016, 0.001321903197094798, 0.00441162521019578, 0.010962260887026787, 0.002167967613786459, 0.020042307674884796, 0.6025418639183044], [0.07426515221595764, 0.01340633537620306, 0.0011747119715437293, 0.0049772728234529495, 0.004092011135071516, 0.31324806809425354, 0.0014564926968887448, 0.0009290393791161478, 0.000159004470333457, 0.00011615200492087752, 0.0011107930913567543, 0.0008485152502544224, 0.0016278665279969573, 0.0065729268826544285, 0.0011438658693805337, 0.0055131809785962105, 0.5693585872650146], [0.07998760789632797, 0.03542107343673706, 0.0019239424727857113, 0.014380552805960178, 0.0028396144043654203, 0.2680310904979706, 0.0012810977641493082, 0.00115261971950531, 0.00018823027494363487, 9.876090189209208e-05, 0.0012351395562291145, 0.0015183582436293364, 0.004033614415675402, 0.010564053431153297, 0.0013076483737677336, 0.007957384921610355, 0.5680791735649109], [0.10443604737520218, 0.04233301803469658, 0.002935131313279271, 0.02089785784482956, 0.00400530407205224, 0.23675261437892914, 0.001238507218658924, 0.0007598481024615467, 0.00022756302496418357, 0.00023045195848681033, 0.004403215367347002, 0.0018710355507209897, 0.006621884182095528, 0.017373966053128242, 0.001433564000762999, 0.008926539681851864, 0.54555344581604], [0.06412392109632492, 0.0329987071454525, 0.0021499376744031906, 0.00616077333688736, 0.01435221079736948, 0.34730830788612366, 0.0010239630937576294, 0.0021572019904851913, 0.00043583117076195776, 0.0003726168069988489, 0.0016798896249383688, 0.0017332679126411676, 0.006231465842574835, 0.016822166740894318, 0.002736023860052228, 0.01545694563537836, 0.48425668478012085], [0.08924204856157303, 0.012649084441363811, 0.004075352102518082, 0.022493280470371246, 0.011726850643754005, 0.354025274515152, 0.0005662397597916424, 0.0006026774644851685, 0.0001670580095378682, 0.0001912002480821684, 0.0012441667495295405, 0.001097311731427908, 0.001126245129853487, 0.005349158775061369, 0.0015771737089380622, 0.01282038725912571, 0.4810463786125183], [0.03437429293990135, 0.016420315951108932, 0.0101064033806324, 0.014594812877476215, 0.008897228166460991, 0.40591752529144287, 0.003120128996670246, 0.0017437494825571775, 0.0007712027290835977, 0.0004726433544419706, 0.003109970595687628, 0.003782109823077917, 0.0013037418248131871, 0.006361473351716995, 0.0010534599423408508, 0.006808397825807333, 0.4811626672744751]], [[0.09466733038425446, 0.036128930747509, 0.012711159884929657, 0.03810501471161842, 0.04318820312619209, 0.11371435225009918, 0.028295444324612617, 0.03798550367355347, 0.0038746611680835485, 0.010577002540230751, 0.0032920490484684706, 0.012604041025042534, 0.01696988195180893, 0.05803613364696503, 0.07327327877283096, 0.11993340402841568, 0.29664361476898193], [0.08932965248823166, 0.006543472874909639, 0.03480285033583641, 0.078386589884758, 0.06096872687339783, 0.09996117651462555, 0.03923182934522629, 0.07210574299097061, 0.006217045709490776, 0.039826590567827225, 0.00887929555028677, 0.011703078635036945, 0.014471436850726604, 0.050301387906074524, 0.08613310009241104, 0.06112641468644142, 0.2400115728378296], [0.08368511497974396, 0.04907149821519852, 0.012492823414504528, 0.07269423454999924, 0.08663620799779892, 0.18226535618305206, 0.033205319195985794, 0.01943936012685299, 0.009035024791955948, 0.013435112312436104, 0.009938656352460384, 0.005668943282216787, 0.006514061242341995, 0.006201007403433323, 0.012115638703107834, 0.05917391553521156, 0.33842772245407104], [0.09916909039020538, 0.05402058735489845, 0.020493794232606888, 0.003491200739517808, 0.06812352687120438, 0.19868724048137665, 0.040110599249601364, 0.046714141964912415, 0.006818543653935194, 0.006492686457931995, 0.008500223979353905, 0.0067421807907521725, 0.009078152477741241, 0.011642738245427608, 0.05052078142762184, 0.06786439567804337, 0.3015301525592804], [0.09880141168832779, 0.03355921804904938, 0.01907864212989807, 0.034828588366508484, 0.0800258219242096, 0.17839589715003967, 0.025373974815011024, 0.03610572591423988, 0.012083095498383045, 0.01666494645178318, 0.009061547927558422, 0.009116868488490582, 0.006100695114582777, 0.012997781857848167, 0.0331549271941185, 0.06535784155130386, 0.32929298281669617], [0.041363414376974106, 0.014300820417702198, 0.00434416439384222, 0.010055159218609333, 0.016776856034994125, 0.2765742838382721, 0.005962736904621124, 0.00573048647493124, 0.0019204163691028953, 0.004449529107660055, 0.0022495300509035587, 0.0022802322637289762, 0.0021276623010635376, 0.004409617744386196, 0.006596542429178953, 0.020576488226652145, 0.5802820920944214], [0.06640134751796722, 0.013991924934089184, 0.016210045665502548, 0.02293798141181469, 0.07421839982271194, 0.21697615087032318, 0.007269152440130711, 0.01888142339885235, 0.007483249995857477, 0.020230943337082863, 0.00818304531276226, 0.0052717686630785465, 0.001612558146007359, 0.008933122269809246, 0.030385570600628853, 0.04610458016395569, 0.4349087178707123], [0.09200330078601837, 0.09751677513122559, 0.026860956102609634, 0.06980694830417633, 0.08732589334249496, 0.09591533988714218, 0.025033554062247276, 0.06806787848472595, 0.01025336142629385, 0.019292091950774193, 0.029618127271533012, 0.012090004049241543, 0.008545559830963612, 0.044167689979076385, 0.062293048948049545, 0.05977543815970421, 0.19143401086330414], [0.10924108326435089, 0.02354126237332821, 0.02138102799654007, 0.03885538503527641, 0.08617474883794785, 0.14406751096248627, 0.04927562549710274, 0.028066368773579597, 0.0022861286997795105, 0.013345695100724697, 0.013993234373629093, 0.036691781133413315, 0.023911060765385628, 0.013219507411122322, 0.029378658160567284, 0.08237610012292862, 0.28419482707977295], [0.12565173208713531, 0.03601375222206116, 0.011482601054012775, 0.01541427057236433, 0.07218506187200546, 0.13769379258155823, 0.12805764377117157, 0.020094631239771843, 0.02043960615992546, 0.0019242367707192898, 0.014986865222454071, 0.03517630323767662, 0.04658443480730057, 0.020778557285666466, 0.02039419859647751, 0.08881645649671555, 0.20430584251880646], [0.0650402083992958, 0.023967597633600235, 0.018682966008782387, 0.029241912066936493, 0.06976684927940369, 0.07547250390052795, 0.13434618711471558, 0.04132426530122757, 0.010933544486761093, 0.014409820549190044, 0.013005586341023445, 0.06817317754030228, 0.06447746604681015, 0.07366569340229034, 0.058508116751909256, 0.09224998205900192, 0.14673422276973724], [0.08735943585634232, 0.021404696628451347, 0.008301152847707272, 0.030278651043772697, 0.060391560196876526, 0.1096174418926239, 0.044812846928834915, 0.04788673669099808, 0.02124183066189289, 0.058906007558107376, 0.030481332913041115, 0.02333260327577591, 0.01740931160748005, 0.03599724918603897, 0.0712621659040451, 0.1097424328327179, 0.22157453000545502], [0.08425842970609665, 0.05196823924779892, 0.01481295470148325, 0.024958517402410507, 0.05614212900400162, 0.08614884316921234, 0.021368378773331642, 0.04267384484410286, 0.015345873311161995, 0.09642316401004791, 0.0482834093272686, 0.021196532994508743, 0.00884869135916233, 0.08025355637073517, 0.07449944317340851, 0.08538538962602615, 0.18743251264095306], [0.12797348201274872, 0.0717608779668808, 0.008409661240875721, 0.02817775122821331, 0.032165639102458954, 0.09343598037958145, 0.032573748379945755, 0.0873134583234787, 0.005526531487703323, 0.04168817400932312, 0.028361933305859566, 0.021139798685908318, 0.05775075405836105, 0.019086847081780434, 0.048506516963243484, 0.0903908908367157, 0.20573797821998596], [0.0733613520860672, 0.19821380078792572, 0.01938878931105137, 0.1217501237988472, 0.0522809773683548, 0.04003119468688965, 0.058742787688970566, 0.06952375918626785, 0.01328396238386631, 0.03840255364775658, 0.02649088203907013, 0.029309669509530067, 0.033067263662815094, 0.03764091432094574, 0.039909008890390396, 0.07503025233745575, 0.07357273995876312], [0.10962292551994324, 0.02946149930357933, 0.011373937129974365, 0.02701989933848381, 0.050078921020030975, 0.15242433547973633, 0.01807372458279133, 0.04018617048859596, 0.008731812238693237, 0.012847095727920532, 0.008123182691633701, 0.012753615155816078, 0.009156383574008942, 0.026860743761062622, 0.04966947063803673, 0.08628470450639725, 0.34733155369758606], [0.05885384976863861, 0.023782772943377495, 0.006707319989800453, 0.012944784946739674, 0.02177848108112812, 0.253767192363739, 0.009403773583471775, 0.012157752178609371, 0.002892104210332036, 0.007029763888567686, 0.003899752162396908, 0.004418754018843174, 0.004361076280474663, 0.009976750239729881, 0.01615932211279869, 0.03422410413622856, 0.5176425576210022]], [[0.001597216003574431, 0.0010888691758736968, 0.00027517261332832277, 0.0020068648736923933, 0.9414889216423035, 0.013632871210575104, 0.00018860265845432878, 7.180908141890541e-05, 3.7780096135975327e-06, 1.2620524103112984e-05, 1.2753274859278463e-05, 8.130717105814256e-06, 3.4346605389146134e-05, 7.19059826224111e-05, 0.0005344121600501239, 0.01488632895052433, 0.024085408076643944], [0.06114896759390831, 2.1511525119422004e-05, 9.553787094773725e-06, 1.275887552765198e-05, 0.008136611431837082, 0.20793770253658295, 0.014770599082112312, 1.1632153473328799e-05, 1.4674985493456916e-07, 3.793868245338672e-06, 1.9692738817411737e-07, 7.678414704059833e-07, 2.3901500753709115e-05, 1.1843661923194304e-05, 3.0236522434279323e-05, 0.0008994385716505349, 0.7069804072380066], [1.2758828233927488e-05, 0.9985705614089966, 0.00032352263224311173, 0.00017275713616982102, 3.4326071727264207e-06, 0.000278771884040907, 1.4933882539480692e-06, 0.0002381944068474695, 4.358297474027495e-07, 1.5009277376520913e-07, 6.675934915989501e-09, 2.114528774299629e-09, 1.8588608430292197e-09, 1.146244130723062e-06, 6.255157586565474e-06, 4.0446248021908104e-05, 0.00035008537815883756], [0.007795131765305996, 0.008231713436543941, 0.8588615655899048, 0.008799780160188675, 0.014217483811080456, 0.00677386112511158, 0.0006541183684021235, 0.0009319492965005338, 0.0026697395369410515, 0.0007436027517542243, 4.986490966985002e-05, 2.8160513465991244e-05, 9.676290574134327e-06, 0.0006822654395364225, 0.0005782100488431752, 0.0011534984223544598, 0.08781938999891281], [0.0008652316173538566, 0.0010395119898021221, 0.0002472655614838004, 0.9722172021865845, 0.017621861770749092, 0.0013006130466237664, 2.3168391635408625e-05, 2.9963546694489196e-05, 7.980763257364742e-06, 0.00021454138914123178, 4.360319144325331e-05, 5.326632162905298e-06, 4.095757617506024e-07, 4.568126314552501e-06, 0.00012859825801569968, 0.0006822452996857464, 0.005567888263612986], [0.1985262632369995, 0.01474075112491846, 0.006528144236654043, 0.05863653123378754, 0.05139432102441788, 0.09456676244735718, 0.03374772518873215, 0.010890942998230457, 0.0037438226863741875, 0.0279635488986969, 0.014794271439313889, 0.009605403058230877, 0.010006071999669075, 0.013365905731916428, 0.009359867312014103, 0.014699723571538925, 0.4274299740791321], [0.0076350555755198, 0.00010984271648339927, 2.7250717948845704e-07, 0.00030746450647711754, 0.10917188227176666, 0.8132560849189758, 0.004172114655375481, 0.00021116636344231665, 1.8431549619890575e-07, 0.0001985583221539855, 9.744270755618345e-06, 3.760211620829068e-05, 1.2933514881297015e-06, 2.9484797323675593e-06, 1.0355079211876728e-05, 0.0019106378313153982, 0.06296476721763611], [0.010799450799822807, 0.0019446118967607617, 1.234756268786441e-06, 3.0847397283650935e-05, 0.010550055652856827, 0.3050456643104553, 0.4837709665298462, 0.023241497576236725, 0.00019308336777612567, 8.855057239998132e-05, 0.0005347334081307054, 0.00014109538460616022, 0.0008501917473040521, 0.00011771906429203227, 0.0002578368876129389, 0.0008299760520458221, 0.16160254180431366], [0.00010043421207228675, 0.0015679241623729467, 4.781916231877403e-06, 8.615756428298482e-07, 3.630329592851922e-05, 0.0022133984602987766, 0.0010786060011014342, 0.9920857548713684, 0.0006337010418064892, 0.00020347075769677758, 6.684002437395975e-05, 4.947662091581151e-06, 1.0009127436205745e-05, 3.793423093156889e-05, 4.5509270421462134e-05, 0.00013777922140434384, 0.0017717246664687991], [0.00015304125554393977, 8.466407598461956e-05, 7.790108611516189e-06, 7.969082616909873e-06, 1.9573573808884248e-05, 0.0016463517677038908, 0.00019176682690158486, 0.0011025898857042193, 0.9885159730911255, 0.003889456856995821, 0.000550307915546, 4.26106016675476e-05, 3.0176046493579634e-05, 8.909968892112374e-05, 0.0002622587198857218, 0.0009112894185818732, 0.00249505159445107], [3.786198305988364e-07, 3.1541122780254227e-07, 1.942333405224872e-08, 1.8276036826136988e-06, 7.548153462266782e-07, 9.685644499768387e-07, 1.7563016285748745e-07, 2.9742186598014086e-06, 0.00016379925364162773, 0.9990919828414917, 0.0006966711371205747, 6.955644494155422e-06, 7.145084737203433e-07, 6.311937795544509e-06, 1.2057572348567192e-05, 6.859140739834402e-06, 7.126755008357577e-06], [0.0002487168530933559, 3.3488387998659164e-05, 3.2070838642539456e-06, 7.229291804833338e-05, 0.0078035080805420876, 0.010262292809784412, 0.0007919209310784936, 0.00015300892118830234, 3.140714761684649e-05, 0.0021450479980558157, 0.916835367679596, 0.027766995131969452, 0.001317494548857212, 0.0001260151038877666, 0.0005509829497896135, 0.0027389635797590017, 0.029119325801730156], [4.626235750038177e-07, 1.8588471561997721e-07, 3.185965269381086e-08, 7.52862547415134e-07, 7.679728923903895e-07, 1.4144588931230828e-05, 1.8815489966073073e-06, 4.055457793583628e-06, 5.633152341033565e-06, 0.0007883912185207009, 0.003204405540600419, 0.9945173859596252, 0.0007822447223588824, 0.0006454106769524515, 1.5863381122471765e-05, 2.466835212544538e-06, 1.5875079043325968e-05], [0.0003555626608431339, 4.1871309804264456e-05, 1.7405048993168748e-06, 5.655937911797082e-06, 0.00022071987041272223, 0.0031913111452013254, 0.0011228241492062807, 0.0007875955780036747, 2.5253666535718367e-05, 0.00047865672968328, 0.014527411200106144, 0.05034700408577919, 0.9012476205825806, 0.016907935962080956, 0.0017013873439282179, 0.0006073829717934132, 0.008430149406194687], [0.00019188725855201483, 0.0004514155152719468, 2.8094054869143292e-06, 1.7436619600630365e-05, 1.69546838151291e-05, 0.0008753776783123612, 3.738190935109742e-05, 0.0004106388660147786, 6.597414903808385e-05, 0.00040358758997172117, 6.376560486387461e-05, 0.00039208552334457636, 0.006794970482587814, 0.9816564917564392, 0.004271349404007196, 0.0018578736344352365, 0.0024899987038224936], [0.017882464453577995, 0.0018066894263029099, 0.0018770103342831135, 0.0019488263642415404, 0.0011467074509710073, 0.02131197229027748, 0.00042071411735378206, 0.001222906168550253, 0.0022604733239859343, 0.003915158566087484, 0.0002911341725848615, 0.00012065737246302888, 0.001455330173484981, 0.008467371575534344, 0.7443431615829468, 0.042088188230991364, 0.14944130182266235], [0.15876764059066772, 0.07406556606292725, 0.012406694702804089, 0.06299246847629547, 0.019543107599020004, 0.10335883498191833, 0.01217978447675705, 0.02136153168976307, 0.009941021911799908, 0.05986563116312027, 0.021573254838585854, 0.01842436008155346, 0.014296447858214378, 0.04115384817123413, 0.02285728044807911, 0.08176121115684509, 0.2654513716697693]], [[0.0716644674539566, 0.00916158128529787, 0.0031786905601620674, 0.004454168025404215, 0.02517581358551979, 0.22421753406524658, 0.01660705916583538, 0.04383855685591698, 0.007797046564519405, 0.007048709783703089, 0.012712000869214535, 0.02342839725315571, 0.010872933082282543, 0.038955047726631165, 0.0298390444368124, 0.06463278084993362, 0.4064161479473114], [0.1043185144662857, 0.004875644110143185, 0.0012422438012436032, 0.001792537746950984, 0.06005199998617172, 0.30995044112205505, 0.0011740349000319839, 0.005662152543663979, 0.001053637359291315, 0.000268958363449201, 0.00021264298993628472, 0.0007152891485020518, 0.00017715500143822283, 0.0012499247677624226, 0.0009188043186441064, 0.037308335304260254, 0.46902769804000854], [0.12008944898843765, 0.004021999426186085, 0.016313841566443443, 0.004115682560950518, 0.1717625856399536, 0.21596495807170868, 0.00535806268453598, 0.026927417144179344, 0.004480568692088127, 0.0011868266155943274, 0.00731676584109664, 0.007871197536587715, 0.0011126261670142412, 0.0038428509142249823, 0.004877864848822355, 0.09448159486055374, 0.31027573347091675], [0.10978443175554276, 0.0026010186411440372, 0.0037888996303081512, 0.0011336386669427156, 0.12314842641353607, 0.2684929072856903, 0.002039520535618067, 0.008411646820604801, 0.0020498924423009157, 0.0004102432285435498, 0.0012929014628753066, 0.0020015379413962364, 0.00034785064053721726, 0.0013658541720360518, 0.0022985527757555246, 0.05574702098965645, 0.41508564352989197], [0.17734026908874512, 0.0023614305537194014, 0.00244700163602829, 0.0019938559271395206, 0.050302743911743164, 0.28689685463905334, 0.0024615295697003603, 0.00613999180495739, 0.0015220913337543607, 0.0006257728091441095, 0.0005885378923267126, 0.0026837915647774935, 0.00034930126275867224, 0.0019582901149988174, 0.003668488236144185, 0.05416904017329216, 0.40449103713035583], [0.04479599744081497, 0.009824464097619057, 0.01179259642958641, 0.015486191026866436, 0.009942593052983284, 0.27788272500038147, 0.015024418011307716, 0.009467234835028648, 0.0038325712084770203, 0.02119038626551628, 0.009756703861057758, 0.015964766964316368, 0.014966921880841255, 0.013575199991464615, 0.003983271308243275, 0.012278411537408829, 0.5102354884147644], [0.19888432323932648, 0.0028054085560142994, 0.002295776503160596, 0.0003762210253626108, 0.10208429396152496, 0.17830120027065277, 0.001449825125746429, 0.010441629216074944, 0.0005446577561087906, 0.00024861263227649033, 0.000901641498785466, 0.0013468606630340219, 0.0001750554220052436, 0.0006367761525325477, 0.0019938633777201176, 0.11618901044130325, 0.3813249468803406], [0.14572054147720337, 0.001976665109395981, 0.0007369708619080484, 0.00035893922904506326, 0.038926076143980026, 0.24425439536571503, 0.0009360222611576319, 0.008494241163134575, 0.0004408715176396072, 2.756140565907117e-05, 0.0002184558688895777, 0.0005744592053815722, 8.053221245063469e-05, 0.000521507696248591, 0.0010934758465737104, 0.07962697744369507, 0.47601231932640076], [0.1139085590839386, 0.0062414295971393585, 0.005559136625379324, 0.0030507894698530436, 0.05723130702972412, 0.2372586876153946, 0.002896810183301568, 0.012998626567423344, 0.0008762124343775213, 0.00017956084047909826, 0.0014035082422196865, 0.002728564664721489, 0.0006708639557473361, 0.002411125460639596, 0.004167525563389063, 0.09222273528575897, 0.4561944603919983], [0.08214786648750305, 0.005275574512779713, 0.004067227244377136, 0.000685226870700717, 0.036319974809885025, 0.2440231591463089, 0.001093713566660881, 0.005900007672607899, 0.0005302560166455805, 0.00014635581464972347, 0.0010977822821587324, 0.004019811749458313, 0.0006996829761192203, 0.002117072232067585, 0.0028282382991164923, 0.06111013889312744, 0.5479379892349243], [0.13156551122665405, 0.006756706163287163, 0.004601196385920048, 0.0031938464380800724, 0.03448285162448883, 0.2115485817193985, 0.0024761585518717766, 0.012921423651278019, 0.0013833451084792614, 0.0005812758463434875, 0.003971986472606659, 0.005480531137436628, 0.0016647304873913527, 0.004929868504405022, 0.008746142499148846, 0.08365181088447571, 0.4820440113544464], [0.18648482859134674, 0.003129338612779975, 0.0031922131311148405, 0.0019328311318531632, 0.11183536797761917, 0.17159271240234375, 0.0037087290547788143, 0.014204760082066059, 0.0011066655861213803, 0.00036627199733629823, 0.002142271725460887, 0.0042871166951954365, 0.0008739559561945498, 0.0056211515329778194, 0.015054017305374146, 0.12389109283685684, 0.35057663917541504], [0.13198749721050262, 0.002567496383562684, 0.0010939773637801409, 0.0003306132275611162, 0.057286109775304794, 0.24830353260040283, 0.0006823546136729419, 0.0060861180536448956, 0.00026018323842436075, 5.010480526834726e-05, 0.0005472542834468186, 0.0013800226151943207, 0.00023236511333379894, 0.0017959484830498695, 0.003758862381801009, 0.05600670352578163, 0.48763084411621094], [0.10192690044641495, 0.004823909606784582, 0.0005692672566510737, 0.00045155739644542336, 0.025181708857417107, 0.26000308990478516, 0.0006495587294921279, 0.0022326060570776463, 0.0002433282061247155, 3.892840686603449e-05, 0.00012988281378056854, 0.0008364415261894464, 0.0003490277158562094, 0.008075875230133533, 0.004185122437775135, 0.023710910230875015, 0.5665919780731201], [0.18158642947673798, 0.00181566399987787, 0.0005494891083799303, 0.0006508101359941065, 0.05616263300180435, 0.23890765011310577, 0.0003438109706621617, 0.0033294064924120903, 0.000322508392855525, 4.3277872464386746e-05, 0.00011337639443809167, 0.0006497784634120762, 9.594411676516756e-05, 0.002159446943551302, 0.005521079059690237, 0.039276886731386185, 0.46847185492515564], [0.1753302961587906, 0.003908800892531872, 0.001472719362936914, 0.0017709529493004084, 0.030463464558124542, 0.2659461498260498, 0.0010972988093271852, 0.00349162588827312, 0.0004530255391728133, 0.00021505457698367536, 0.00027294293977320194, 0.001354237669147551, 0.00027934444369748235, 0.0019084832165390253, 0.001960845896974206, 0.05244141444563866, 0.45763319730758667], [0.039689965546131134, 0.007041480392217636, 0.005479981657117605, 0.006260442081838846, 0.009549704380333424, 0.29175883531570435, 0.008784486912190914, 0.006687386892735958, 0.002286308677867055, 0.007522578351199627, 0.004977092612534761, 0.008540411479771137, 0.007110235281288624, 0.007949166931211948, 0.0024132539983838797, 0.012784745544195175, 0.5711638927459717]], [[0.06242411956191063, 0.03874944895505905, 0.014300075359642506, 0.021115727722644806, 0.03359111025929451, 0.31638747453689575, 0.007387686055153608, 0.018476111814379692, 0.002809385070577264, 0.007049657870084047, 0.006454364862293005, 0.004915572237223387, 0.008481024764478207, 0.009533204138278961, 0.011602416634559631, 0.0229506678879261, 0.4137718975543976], [0.04676791653037071, 0.003918797243386507, 0.004731056280434132, 0.007464761845767498, 0.04138338938355446, 0.21914967894554138, 0.02272428199648857, 0.04333413392305374, 0.010350411757826805, 0.022732708603143692, 0.011919237673282623, 0.005836923141032457, 0.016214657574892044, 0.012862106785178185, 0.02081960067152977, 0.0807766243815422, 0.4290136992931366], [0.029935428872704506, 0.038099318742752075, 0.019215384498238564, 0.025131797417998314, 0.11720523983240128, 0.21440374851226807, 0.014468954876065254, 0.019199466332793236, 0.01396053098142147, 0.009782162494957447, 0.052462413907051086, 0.014473815448582172, 0.009371564723551273, 0.009148445911705494, 0.013992647640407085, 0.07300715893507004, 0.32614192366600037], [0.05396556481719017, 0.01781117171049118, 0.01630692183971405, 0.009720051661133766, 0.08604838699102402, 0.2943750321865082, 0.009208792820572853, 0.00843437947332859, 0.012284815311431885, 0.004610090050846338, 0.005125630181282759, 0.0071302843280136585, 0.005857241339981556, 0.008695967495441437, 0.005687833297997713, 0.06837563961744308, 0.3863621652126312], [0.04088485613465309, 0.02079785242676735, 0.015506476163864136, 0.015204371884465218, 0.05345349758863449, 0.34716418385505676, 0.008819716051220894, 0.0063771894201636314, 0.007191926706582308, 0.00480396393686533, 0.005087411496788263, 0.006120157893747091, 0.005642496980726719, 0.006930425763130188, 0.005817657336592674, 0.03091844543814659, 0.41927942633628845], [0.06846370548009872, 0.025655314326286316, 0.051056377589702606, 0.04283275827765465, 0.028256790712475777, 0.13794128596782684, 0.050785668194293976, 0.024533938616514206, 0.03688805177807808, 0.04413330554962158, 0.02818719670176506, 0.04663022235035896, 0.038487110286951065, 0.015544149093329906, 0.017007580026984215, 0.030378645285964012, 0.31321781873703003], [0.056946270167827606, 0.044414885342121124, 0.003537619486451149, 0.015220976434648037, 0.04261424392461777, 0.2833055555820465, 0.02251730114221573, 0.027495743706822395, 0.002192666055634618, 0.009763159789144993, 0.006800569593906403, 0.006727957632392645, 0.004103311337530613, 0.025663552805781364, 0.036865003407001495, 0.09102867543697357, 0.32080259919166565], [0.10821503400802612, 0.0172908753156662, 0.006472928915172815, 0.011800508946180344, 0.05205954611301422, 0.2278076708316803, 0.04333221912384033, 0.0288950614631176, 0.0050726644694805145, 0.024341655895113945, 0.010695714503526688, 0.016848880797624588, 0.0071255783550441265, 0.023725293576717377, 0.02449231594800949, 0.10059923678636551, 0.29122474789619446], [0.061158351600170135, 0.03089035116136074, 0.005173919722437859, 0.012623811140656471, 0.05443505942821503, 0.2327556014060974, 0.015538226813077927, 0.025568967685103416, 0.004833589307963848, 0.0028355189133435488, 0.01558631844818592, 0.008443794213235378, 0.0029471153393387794, 0.006700372789055109, 0.014699256047606468, 0.09555044770240784, 0.4102593660354614], [0.08733268082141876, 0.029004661366343498, 0.002018711529672146, 0.004056587349623442, 0.047614794224500656, 0.22622959315776825, 0.011001394130289555, 0.06306807696819305, 0.0025155397597700357, 0.0022801849991083145, 0.010846300050616264, 0.005487230606377125, 0.0012613735161721706, 0.015555650927126408, 0.028730448335409164, 0.10058312118053436, 0.362413614988327], [0.07153455913066864, 0.025122622027993202, 0.0068201362155377865, 0.008868809789419174, 0.03255770355463028, 0.19880113005638123, 0.04269135370850563, 0.024059215560555458, 0.012473825365304947, 0.006127725820988417, 0.00801668781787157, 0.015080718323588371, 0.004189048428088427, 0.01164686307311058, 0.012990843504667282, 0.07120326161384583, 0.4478153884410858], [0.06932494044303894, 0.018269577994942665, 0.006146000232547522, 0.012606904841959476, 0.0439545139670372, 0.2558082640171051, 0.01807081513106823, 0.03341865539550781, 0.006645844783633947, 0.01231876015663147, 0.022059397771954536, 0.011473802849650383, 0.0037955734878778458, 0.016786614432930946, 0.021504946053028107, 0.07742641121149063, 0.3703888952732086], [0.0770382508635521, 0.013112081214785576, 0.005424231756478548, 0.011214959435164928, 0.046508416533470154, 0.2518053352832794, 0.01662677340209484, 0.031960148364305496, 0.005828637629747391, 0.034038301557302475, 0.02311956323683262, 0.013537650927901268, 0.004668291658163071, 0.012675865553319454, 0.012927224859595299, 0.09232839941978455, 0.3471859395503998], [0.05648324638605118, 0.0071736774407327175, 0.005158562213182449, 0.005435744300484657, 0.028925342485308647, 0.24269406497478485, 0.03467383608222008, 0.04759065806865692, 0.01345688197761774, 0.016537116840481758, 0.014903864823281765, 0.012316362001001835, 0.006953752599656582, 0.01964106410741806, 0.01325598731637001, 0.09909895062446594, 0.3757009208202362], [0.1163066178560257, 0.004046713002026081, 0.017647136002779007, 0.0052372971549630165, 0.029483888298273087, 0.19527080655097961, 0.03944312781095505, 0.03469998016953468, 0.04937916249036789, 0.051853254437446594, 0.005835527088493109, 0.035445328801870346, 0.009706869721412659, 0.023979799821972847, 0.006286631803959608, 0.08749768882989883, 0.28788015246391296], [0.07057870179414749, 0.027261052280664444, 0.006514687091112137, 0.008431109599769115, 0.025887731462717056, 0.29128921031951904, 0.04429902508854866, 0.028075886890292168, 0.007221848238259554, 0.010618504136800766, 0.011127608828246593, 0.01970137283205986, 0.006121130660176277, 0.02807387337088585, 0.016504956409335136, 0.054750699549913406, 0.34354251623153687], [0.06678139418363571, 0.02668849192559719, 0.02919541299343109, 0.030891740694642067, 0.02708340436220169, 0.17190520465373993, 0.04511107876896858, 0.033429455012083054, 0.02444641850888729, 0.03663159906864166, 0.02046385034918785, 0.02613047882914543, 0.027573594823479652, 0.01619579643011093, 0.018041763454675674, 0.03514667600393295, 0.3642837405204773]], [[0.025704748928546906, 0.02036306820809841, 0.022178592160344124, 0.08767899870872498, 0.027219479903578758, 0.21572384238243103, 0.003990427125245333, 0.004168313927948475, 0.0015657286858186126, 0.003913887310773134, 0.003743654116988182, 0.0025470894761383533, 0.0010315938852727413, 0.004458827897906303, 0.009514052420854568, 0.008930757641792297, 0.557266891002655], [0.06025874987244606, 0.03108959272503853, 0.0047998311929404736, 0.017676109448075294, 0.021666115149855614, 0.24873952567577362, 0.008006241172552109, 0.008006641641259193, 0.0005806740955449641, 0.003973193466663361, 0.0016551562584936619, 0.0038015299942344427, 0.006118836812674999, 0.00933802966028452, 0.017385056242346764, 0.023688534274697304, 0.5332162380218506], [0.039802826941013336, 0.03036997653543949, 0.01772666536271572, 0.015391774475574493, 0.03794451802968979, 0.26405149698257446, 0.01267699059098959, 0.012457937002182007, 0.0006228561396710575, 0.0065739150159060955, 0.0036767267156392336, 0.0018874129746109247, 0.0015098057920113206, 0.005630254279822111, 0.01270199939608574, 0.025097882375121117, 0.5118769407272339], [0.057265713810920715, 0.11615937203168869, 0.06730801612138748, 0.019924351945519447, 0.06275541335344315, 0.1752186268568039, 0.01562741957604885, 0.03248024731874466, 0.001131357392296195, 0.008449023589491844, 0.005953229498118162, 0.002929569687694311, 0.003333680797368288, 0.00670801755040884, 0.009732780046761036, 0.037819743156433105, 0.37720349431037903], [0.051885440945625305, 0.10743706673383713, 0.048828624188899994, 0.0864686369895935, 0.08803586661815643, 0.15383867919445038, 0.022742317989468575, 0.026735970750451088, 0.0019522642251104116, 0.01287900097668171, 0.005355387926101685, 0.003584673162549734, 0.002228165278211236, 0.006317756604403257, 0.019362246617674828, 0.025598380714654922, 0.33674952387809753], [0.03801785409450531, 0.01436501182615757, 0.0021225716918706894, 0.009876195341348648, 0.010044665075838566, 0.25676336884498596, 0.0032593230716884136, 0.0033769626170396805, 0.0003795264638029039, 0.0011344044469296932, 0.001439743209630251, 0.0015370455803349614, 0.0010226614540442824, 0.0033339185174554586, 0.004528377205133438, 0.007933744229376316, 0.6408646106719971], [0.06959301978349686, 0.05363457649946213, 0.033402491360902786, 0.10177777707576752, 0.09222954511642456, 0.19646890461444855, 0.014019107446074486, 0.01853746920824051, 0.0033909217454493046, 0.005771995522081852, 0.0035191625356674194, 0.0036614341661334038, 0.001807434600777924, 0.011538579128682613, 0.04980217292904854, 0.0177166648209095, 0.32312875986099243], [0.12167540192604065, 0.04899323359131813, 0.007134016137570143, 0.028849152848124504, 0.07663195580244064, 0.24758030474185944, 0.01398948859423399, 0.01103207003325224, 0.001359292073175311, 0.0006597436149604619, 0.001946103642694652, 0.0019478155300021172, 0.0015294367913156748, 0.003406208474189043, 0.02956944704055786, 0.02629534900188446, 0.3774009644985199], [0.05963403359055519, 0.013033843599259853, 0.001357469242066145, 0.012398858554661274, 0.025946825742721558, 0.27659013867378235, 0.02982981503009796, 0.043585024774074554, 0.004938161466270685, 0.007826998829841614, 0.004919198341667652, 0.0018258404452353716, 0.0004092425515409559, 0.0018150531686842442, 0.010513787157833576, 0.017079588025808334, 0.4882960617542267], [0.04309559613466263, 0.02803167887032032, 0.0017152595100924373, 0.010930275544524193, 0.038084957748651505, 0.21962295472621918, 0.01391561422497034, 0.0901203602552414, 0.0410885326564312, 0.01782054267823696, 0.013746360316872597, 0.001735041500069201, 0.00029491851455532014, 0.0030535743571817875, 0.022360345348715782, 0.024562004953622818, 0.4298221170902252], [0.011400716379284859, 0.02073252946138382, 0.0008733537979424, 0.004803457763046026, 0.014570416882634163, 0.047654859721660614, 0.03174104541540146, 0.02677249349653721, 0.2532038688659668, 0.4708706736564636, 0.00826784037053585, 0.0014403928071260452, 0.0005074284854345024, 0.006537322886288166, 0.005602846387773752, 0.008209310472011566, 0.08681144565343857], [0.04800301045179367, 0.0253132376819849, 0.010770970955491066, 0.011036188341677189, 0.04202621430158615, 0.14756983518600464, 0.1395212560892105, 0.12199518084526062, 0.010604338720440865, 0.07286356389522552, 0.0476832389831543, 0.01956619881093502, 0.009048801846802235, 0.02834784798324108, 0.032789766788482666, 0.03347247093915939, 0.19938787817955017], [0.0373273603618145, 0.024682726711034775, 0.004121746867895126, 0.010294086299836636, 0.03363894671201706, 0.1365637183189392, 0.1507202684879303, 0.07298692315816879, 0.007286981213837862, 0.08159971982240677, 0.060371991246938705, 0.041121818125247955, 0.012675697915256023, 0.05504985153675079, 0.04024674743413925, 0.030819004401564598, 0.20049241185188293], [0.0518513023853302, 0.052144620567560196, 0.005915469024330378, 0.022892337292432785, 0.03459323197603226, 0.12932376563549042, 0.0836971253156662, 0.12240490317344666, 0.0033848315943032503, 0.013345113955438137, 0.014869069680571556, 0.02808196097612381, 0.02999034896492958, 0.06410015374422073, 0.04940478876233101, 0.04300172999501228, 0.25099921226501465], [0.01619255729019642, 0.055439144372940063, 0.008461406454443932, 0.005477985832840204, 0.016579629853367805, 0.012314442545175552, 0.17728061974048615, 0.42246952652931213, 0.004384646192193031, 0.016094869002699852, 0.04516492784023285, 0.03633490949869156, 0.07531721144914627, 0.027077116072177887, 0.020428325980901718, 0.037288468331098557, 0.023694239556789398], [0.056358952075242996, 0.05904272571206093, 0.01342756301164627, 0.02465885877609253, 0.03175032138824463, 0.08066155761480331, 0.09644468873739243, 0.23463645577430725, 0.007251359522342682, 0.035190433263778687, 0.022319048643112183, 0.017497647553682327, 0.008693506941199303, 0.017736254259943962, 0.06321966648101807, 0.05192388966679573, 0.17918696999549866], [0.04598967358469963, 0.01882317289710045, 0.003334643552079797, 0.011409949511289597, 0.011673231609165668, 0.25420045852661133, 0.006352678406983614, 0.00778669398277998, 0.0010945330141112208, 0.0030170083045959473, 0.0032529402524232864, 0.0036331554874777794, 0.002661961130797863, 0.006495223846286535, 0.009211290627717972, 0.014003591611981392, 0.5970596075057983]], [[0.08902408182621002, 0.25114706158638, 0.04000377655029297, 0.11471915245056152, 0.1135917603969574, 0.09418928623199463, 0.011493866331875324, 0.03407414257526398, 0.008229035884141922, 0.00791437178850174, 0.013919450342655182, 0.004834572784602642, 0.014909039251506329, 0.024737101048231125, 0.007884499616920948, 0.035431232303380966, 0.1338975727558136], [0.10346776992082596, 0.11015139520168304, 0.044295769184827805, 0.08028825372457504, 0.14690271019935608, 0.10256583988666534, 0.027838826179504395, 0.06419356912374496, 0.004649286158382893, 0.011636323295533657, 0.007987268269062042, 0.01705479435622692, 0.018461797386407852, 0.027986638247966766, 0.029637251049280167, 0.07090611755847931, 0.13197648525238037], [0.0753476545214653, 0.1431065797805786, 0.03547053784132004, 0.07578063011169434, 0.1071273609995842, 0.13169318437576294, 0.03431368246674538, 0.049901459366083145, 0.00596880167722702, 0.020748669281601906, 0.023628685623407364, 0.020625362172722816, 0.050855208188295364, 0.018868952989578247, 0.012498686090111732, 0.03706716373562813, 0.15699738264083862], [0.0972856804728508, 0.12232033163309097, 0.04546572268009186, 0.059152282774448395, 0.05263927951455116, 0.15124300122261047, 0.03407794237136841, 0.05221108719706535, 0.008696404285728931, 0.02597023732960224, 0.025131747126579285, 0.022266848012804985, 0.02892872877418995, 0.026331961154937744, 0.016564348712563515, 0.02648397721350193, 0.2052304893732071], [0.06751152873039246, 0.18467742204666138, 0.10868673771619797, 0.1278139054775238, 0.06061113625764847, 0.11549022793769836, 0.013826114125549793, 0.02862744778394699, 0.007808146066963673, 0.027039609849452972, 0.01835043542087078, 0.023327458649873734, 0.03684372082352638, 0.013422024436295033, 0.007810462731868029, 0.013597575016319752, 0.14455601572990417], [0.048428796231746674, 0.009898023679852486, 0.0018940885784104466, 0.0023892030585557222, 0.007637965027242899, 0.273922324180603, 0.00225241226144135, 0.0015359626850113273, 0.0009112396510317922, 0.000521341513376683, 0.001122406218200922, 0.003888665931299329, 0.0010033659636974335, 0.008814077824354172, 0.0017177850240841508, 0.012144532985985279, 0.6219178438186646], [0.20955197513103485, 0.034203823655843735, 0.01239658985286951, 0.016476046293973923, 0.014573562890291214, 0.1237039566040039, 0.02843109704554081, 0.04137298837304115, 0.010464311577379704, 0.024799097329378128, 0.04294285923242569, 0.05948115512728691, 0.08827397227287292, 0.023443199694156647, 0.013951278291642666, 0.040221478790044785, 0.21571245789527893], [0.2194218933582306, 0.028284059837460518, 0.0164814256131649, 0.02566504292190075, 0.0201475340873003, 0.04430240020155907, 0.09084169566631317, 0.07519768923521042, 0.007757663261145353, 0.036740295588970184, 0.048190802335739136, 0.08041294664144516, 0.06094367057085037, 0.07910480350255966, 0.046686794608831406, 0.05046066641807556, 0.06936051696538925], [0.1440218687057495, 0.016798242926597595, 0.014714814722537994, 0.017406299710273743, 0.021173182874917984, 0.11662324517965317, 0.05751127749681473, 0.03540549427270889, 0.009827250614762306, 0.045307707041502, 0.06127927079796791, 0.054762233048677444, 0.05672318860888481, 0.03822357580065727, 0.05974071845412254, 0.0541691854596138, 0.1963125467300415], [0.15778134763240814, 0.03090144321322441, 0.014652100391685963, 0.015945589169859886, 0.022813891991972923, 0.1920432299375534, 0.021155618131160736, 0.017809996381402016, 0.006650575436651707, 0.01623065583407879, 0.030103133991360664, 0.02718593180179596, 0.02537943422794342, 0.021499736234545708, 0.03426821157336235, 0.04574380815029144, 0.31983527541160583], [0.15265648066997528, 0.031178217381238937, 0.015213631093502045, 0.021593956276774406, 0.021704521030187607, 0.15489567816257477, 0.09137585014104843, 0.039951108396053314, 0.010123123414814472, 0.02635166235268116, 0.014493162743747234, 0.050515856593847275, 0.05392535775899887, 0.01956501044332981, 0.012533511035144329, 0.04727329686284065, 0.23664945363998413], [0.1509012132883072, 0.03975408524274826, 0.010711845010519028, 0.01714840903878212, 0.02497860975563526, 0.09279147535562515, 0.16301587224006653, 0.06033717840909958, 0.011301873251795769, 0.03634633868932724, 0.046898674219846725, 0.03925476595759392, 0.0989794135093689, 0.01323737297207117, 0.011233370751142502, 0.05315908417105675, 0.1299504190683365], [0.1851232647895813, 0.03811228647828102, 0.012036415748298168, 0.020222920924425125, 0.019570929929614067, 0.1388229876756668, 0.10926414281129837, 0.061355143785476685, 0.007119329646229744, 0.022431638091802597, 0.02134699374437332, 0.04770621657371521, 0.05312727019190788, 0.016937676817178726, 0.009621545672416687, 0.04488473758101463, 0.19231653213500977], [0.12376323342323303, 0.09746021032333374, 0.014251827262341976, 0.05739991366863251, 0.03994202986359596, 0.09013836085796356, 0.11144135892391205, 0.06756509840488434, 0.007656466215848923, 0.017639126628637314, 0.029719483107328415, 0.024775225669145584, 0.047207947820425034, 0.060305703431367874, 0.0254588034003973, 0.051092516630887985, 0.13418257236480713], [0.15994030237197876, 0.028625303879380226, 0.01791762374341488, 0.027775153517723083, 0.01707335188984871, 0.07861974835395813, 0.10257218033075333, 0.09030850976705551, 0.012478739023208618, 0.03755461424589157, 0.04308709874749184, 0.04050896316766739, 0.03705618157982826, 0.10381794720888138, 0.04703537002205849, 0.030740512534976006, 0.12488838285207748], [0.11528843641281128, 0.04400048032402992, 0.024984316900372505, 0.028035083785653114, 0.013438316993415356, 0.04473840445280075, 0.07618805766105652, 0.11570417881011963, 0.01989774778485298, 0.07908225804567337, 0.07172292470932007, 0.08547094464302063, 0.13005352020263672, 0.03326012194156647, 0.024412473663687706, 0.02645145356655121, 0.06727121770381927], [0.07761252671480179, 0.014940165914595127, 0.002479950897395611, 0.0037902379408478737, 0.012277050875127316, 0.25673529505729675, 0.0050288476049900055, 0.003549622604623437, 0.0015072794631123543, 0.0010696909157559276, 0.002122319070622325, 0.005762872751802206, 0.001868268009275198, 0.016914168372750282, 0.0037483370397239923, 0.02381083182990551, 0.566782534122467]], [[0.04570379480719566, 0.09281744062900543, 0.05313432961702347, 0.0968732163310051, 0.11049097776412964, 0.18493083119392395, 0.013929651118814945, 0.020056743174791336, 0.0037585750687867403, 0.020041661337018013, 0.009327420964837074, 0.010202580131590366, 0.009084802120923996, 0.014247172512114048, 0.01871155947446823, 0.033559322357177734, 0.26312994956970215], [0.06200564652681351, 0.020771626383066177, 0.012955181300640106, 0.03547421842813492, 0.029940281063318253, 0.22887010872364044, 0.002447014907374978, 0.0021945289336144924, 0.0004644433211069554, 0.004369326867163181, 0.003892151638865471, 0.008325057104229927, 0.01556517742574215, 0.055080268532037735, 0.01031398680061102, 0.010566044598817825, 0.49676498770713806], [0.05010972172021866, 0.04064105823636055, 0.012559696100652218, 0.05330709367990494, 0.03436058759689331, 0.26131153106689453, 0.006130046211183071, 0.0049513643607497215, 0.0010028979741036892, 0.01096070185303688, 0.00829501636326313, 0.007700888905674219, 0.01639568619430065, 0.059705950319767, 0.012327807024121284, 0.015541987493634224, 0.40469789505004883], [0.048355747014284134, 0.0370948426425457, 0.04752744734287262, 0.021804695948958397, 0.029658421874046326, 0.2551969885826111, 0.0056942119263112545, 0.005383742041885853, 0.001094895415008068, 0.004281984642148018, 0.005881409160792828, 0.023853665217757225, 0.036884456872940063, 0.06852926313877106, 0.013019525445997715, 0.0116126025095582, 0.38412609696388245], [0.05187956243753433, 0.1099274531006813, 0.07355141639709473, 0.11297372728586197, 0.062614306807518, 0.15085561573505402, 0.014936856925487518, 0.012271801941096783, 0.003103098599240184, 0.016054732725024223, 0.01058216579258442, 0.027572952210903168, 0.02871377393603325, 0.06728370487689972, 0.018456289544701576, 0.01599843055009842, 0.22322407364845276], [0.03681159019470215, 0.00643669068813324, 0.0012730751186609268, 0.006469347048550844, 0.017606107518076897, 0.2564050555229187, 0.0041289604268968105, 0.0049748471938073635, 0.0005373526946641505, 0.001522540464065969, 0.0021395685616880655, 0.0014191515510901809, 0.0013654670910909772, 0.004818160552531481, 0.004011828918009996, 0.026305774226784706, 0.6237744688987732], [0.027919277548789978, 0.02229326218366623, 0.013955624774098396, 0.017777111381292343, 0.008657448925077915, 0.07545710355043411, 0.03288022801280022, 0.020076584070920944, 0.00424293614923954, 0.03635095804929733, 0.041284412145614624, 0.10810504108667374, 0.10830668359994888, 0.26183149218559265, 0.08503873646259308, 0.016966093331575394, 0.11885704845190048], [0.04644636809825897, 0.020199067890644073, 0.005021975375711918, 0.014551069587469101, 0.008840801194310188, 0.08814732730388641, 0.019314702600240707, 0.014338139444589615, 0.0032829397823661566, 0.0331488661468029, 0.019307857379317284, 0.06189873069524765, 0.07791414111852646, 0.3188124895095825, 0.06607891619205475, 0.021954592317342758, 0.18074198067188263], [0.04898107051849365, 0.03006289340555668, 0.004299364052712917, 0.019836287945508957, 0.010136581026017666, 0.08851894736289978, 0.014532904140651226, 0.025415854528546333, 0.00645105168223381, 0.042670588940382004, 0.0209330003708601, 0.03822091594338417, 0.1080775037407875, 0.3101450800895691, 0.05715378001332283, 0.01818128675222397, 0.1563829481601715], [0.06186898425221443, 0.014587575569748878, 0.0035100672394037247, 0.013372720219194889, 0.010581509210169315, 0.16377264261245728, 0.016739437356591225, 0.00961073487997055, 0.004432599991559982, 0.007173198275268078, 0.014420626685023308, 0.02477506920695305, 0.06726474314928055, 0.22654412686824799, 0.027327725663781166, 0.029347365722060204, 0.3046708405017853], [0.05675559490919113, 0.014198987744748592, 0.004063815344125032, 0.01666811853647232, 0.013931503519415855, 0.14185625314712524, 0.01389763131737709, 0.015257755294442177, 0.011117507703602314, 0.04405267536640167, 0.014252431690692902, 0.04456588998436928, 0.06106068566441536, 0.21290069818496704, 0.07328350841999054, 0.03761656582355499, 0.22452037036418915], [0.04236902669072151, 0.006805202923715115, 0.0009364492143504322, 0.0036864299327135086, 0.003996985964477062, 0.20733748376369476, 0.007144861854612827, 0.0064095440320670605, 0.0011387824779376388, 0.011469054035842419, 0.0075518167577683926, 0.016592340543866158, 0.034740857779979706, 0.16423563659191132, 0.018493054434657097, 0.017495647072792053, 0.4495968520641327], [0.04084152355790138, 0.0028540678322315216, 0.0004532095044851303, 0.0025390367954969406, 0.0028137722983956337, 0.23079270124435425, 0.0013362594181671739, 0.0012462721206247807, 0.0002173691609641537, 0.002615333301946521, 0.0019371288362890482, 0.008853931911289692, 0.00995793379843235, 0.11985283344984055, 0.009731224738061428, 0.01128301490098238, 0.5526743531227112], [0.044073622673749924, 0.006165417842566967, 0.0007896989118307829, 0.002602995140478015, 0.004633753560483456, 0.21846093237400055, 0.0017455185297876596, 0.0014153242809697986, 8.842302486300468e-05, 0.0015534248668700457, 0.0013669461477547884, 0.005321516189724207, 0.011254975572228432, 0.05933568999171257, 0.004858874250203371, 0.013066088780760765, 0.6232668161392212], [0.04134109616279602, 0.010790382511913776, 0.00410855608060956, 0.004695477895438671, 0.005024768877774477, 0.1112171858549118, 0.009465604089200497, 0.007740061264485121, 0.0009976171422749758, 0.004137716721743345, 0.006144934333860874, 0.03806988149881363, 0.10529439896345139, 0.35723578929901123, 0.011815669946372509, 0.01059336680918932, 0.2713274359703064], [0.057600151747465134, 0.029735833406448364, 0.006426020059734583, 0.009487609378993511, 0.009151560254395008, 0.07776544988155365, 0.035480063408613205, 0.04113039746880531, 0.0033985781483352184, 0.014998705126345158, 0.012932991608977318, 0.09063344448804855, 0.07294262200593948, 0.2802569568157196, 0.07074851542711258, 0.03576197847723961, 0.15154913067817688], [0.04883240535855293, 0.008451713249087334, 0.00200910703279078, 0.008468580432236195, 0.02029993198812008, 0.24646584689617157, 0.006314178463071585, 0.008014676161110401, 0.000861208129208535, 0.002455948619171977, 0.003259476274251938, 0.0030187778174877167, 0.0032237274572253227, 0.011570030823349953, 0.00775064155459404, 0.0366692841053009, 0.5823343396186829]], [[0.29784899950027466, 0.03443511947989464, 0.01284785009920597, 0.024005193263292313, 0.03325503692030907, 0.18164803087711334, 0.003018125193193555, 0.005843622609972954, 0.0014649516670033336, 0.0013872012495994568, 0.0018573597772046924, 0.003818855155259371, 0.006475077010691166, 0.004856233950704336, 0.007281705271452665, 0.025141211226582527, 0.3548154830932617], [0.20982778072357178, 0.006582725327461958, 0.001442493055947125, 0.013717365451157093, 0.030284440144896507, 0.30232203006744385, 0.015023455023765564, 0.0014675877755507827, 0.003910646308213472, 0.00197532307356596, 0.00045329323620535433, 0.0015369695611298084, 0.0008930045296438038, 0.006964152678847313, 0.0022616060450673103, 0.027768203988671303, 0.3735688030719757], [0.16951443254947662, 0.014382204040884972, 0.037599675357341766, 0.05126660317182541, 0.07460854202508926, 0.18257473409175873, 0.029582995921373367, 0.008210022002458572, 0.024007415398955345, 0.019811054691672325, 0.017102770507335663, 0.018563611432909966, 0.021531671285629272, 0.0017744749784469604, 0.005853969603776932, 0.03381645679473877, 0.289799302816391], [0.2052464783191681, 0.007869059219956398, 0.012072721496224403, 0.014332879334688187, 0.03534160554409027, 0.24268239736557007, 0.017822640016674995, 0.004087232053279877, 0.008350669406354427, 0.006462177727371454, 0.006035774480551481, 0.013630182482302189, 0.00939764641225338, 0.00342363677918911, 0.006840227637439966, 0.023966407403349876, 0.38243821263313293], [0.10539934784173965, 0.012658021412789822, 0.014035887084901333, 0.017376970499753952, 0.060033492743968964, 0.3119719624519348, 0.07305094599723816, 0.009358524344861507, 0.00693617295473814, 0.005628746468573809, 0.0015012560179457068, 0.015939481556415558, 0.006706304848194122, 0.007557444274425507, 0.012134111486375332, 0.06279708445072174, 0.27691423892974854], [0.04708623141050339, 0.06554656475782394, 0.006624754052609205, 0.02730063535273075, 0.01609671488404274, 0.23799698054790497, 0.007848883047699928, 0.010978324338793755, 0.004588126204907894, 0.012179553508758545, 0.007301319390535355, 0.009766020812094212, 0.006724046543240547, 0.023896150290966034, 0.00974216777831316, 0.024947773665189743, 0.48137569427490234], [0.21835288405418396, 0.023305900394916534, 0.013679645024240017, 0.022555427625775337, 0.042392417788505554, 0.2404584139585495, 0.004623723216354847, 0.0018427856266498566, 0.0036341408267617226, 0.003661543596535921, 0.003378071589395404, 0.0037769575137645006, 0.002204709919169545, 0.002786001656204462, 0.0033043092116713524, 0.023724908009171486, 0.3863180875778198], [0.28879767656326294, 0.01188779715448618, 0.0011970266932621598, 0.01802937686443329, 0.020941367372870445, 0.2936611771583557, 0.005496370140463114, 0.000322694715578109, 0.0014381721848621964, 0.0010913378791883588, 0.0007605242426507175, 0.00043092918349429965, 0.00028259475948289037, 0.0018398711690679193, 0.0026411160361021757, 0.011792434379458427, 0.3393895626068115], [0.22437268495559692, 0.0128197455778718, 0.0038312054239213467, 0.013235779479146004, 0.018323324620723724, 0.2633973956108093, 0.0015243531670421362, 0.002293391153216362, 0.0009647553670220077, 0.0005128614138811827, 0.0014415084151551127, 0.0012483325554057956, 0.0012886032927781343, 0.0003176123427692801, 0.0018946868367493153, 0.009539107792079449, 0.442994624376297], [0.17557306587696075, 0.010358059778809547, 0.004576468840241432, 0.006313400808721781, 0.03362223133444786, 0.2874780297279358, 0.007524396292865276, 0.0037552244029939175, 0.0011787990806624293, 0.0005013076588511467, 0.0014057877706363797, 0.0032672020606696606, 0.004306151531636715, 0.0015222334768623114, 0.00344703602604568, 0.021411094814538956, 0.4337593913078308], [0.19585663080215454, 0.016974614933133125, 0.017808211967349052, 0.020929871127009392, 0.06349484622478485, 0.19130173325538635, 0.009364881552755833, 0.023096729069948196, 0.0008965576416812837, 0.005523710045963526, 0.003051402047276497, 0.008573533035814762, 0.010793466120958328, 0.0024121650494635105, 0.008803064934909344, 0.03246138244867325, 0.3886571526527405], [0.2713016867637634, 0.009160608984529972, 0.011308077722787857, 0.020412474870681763, 0.0678410455584526, 0.2021792083978653, 0.010410159826278687, 0.0019083231454715133, 0.0032023442909121513, 0.002561438363045454, 0.004278256557881832, 0.0016276888782158494, 0.0031770768109709024, 0.0007656367961317301, 0.0029601736459881067, 0.02842196263372898, 0.35848385095596313], [0.2311541736125946, 0.006042612250894308, 0.005416449159383774, 0.008806108497083187, 0.025361886247992516, 0.2604793310165405, 0.0069664823822677135, 0.0008986947941593826, 0.003895085770636797, 0.0025527733378112316, 0.009687051177024841, 0.002593589248135686, 0.0014722213381901383, 0.0008874355698935688, 0.0016435426659882069, 0.01243817713111639, 0.4197043478488922], [0.10765474289655685, 0.009089881554245949, 0.00047918307245709, 0.0016853304114192724, 0.01225915178656578, 0.3333625793457031, 0.002570504555478692, 0.0019642487168312073, 0.0008368006674572825, 0.00038808630779385567, 0.0005412033060565591, 0.0010094292229041457, 0.0010719136334955692, 0.004826690070331097, 0.0016701773274689913, 0.015680382028222084, 0.5049096345901489], [0.25372427701950073, 0.012072893790900707, 0.002123907906934619, 0.016040243208408356, 0.028965117409825325, 0.27760472893714905, 0.021312886849045753, 0.0027904987800866365, 0.0014530819607898593, 0.0007466237875632942, 0.0017678213771432638, 0.0038899751380085945, 0.0033483223523944616, 0.0052025699988007545, 0.009077190421521664, 0.014819181524217129, 0.3450607359409332], [0.14968910813331604, 0.017487524077296257, 0.005006758496165276, 0.01569298841059208, 0.03829890862107277, 0.3345465362071991, 0.023725174367427826, 0.0039469036273658276, 0.0017204644391313195, 0.0025690351612865925, 0.0017415734473615885, 0.004245628137141466, 0.0025430636014789343, 0.0034151137806475163, 0.00688600679859519, 0.037961509078741074, 0.3505236804485321], [0.06584235280752182, 0.05126255005598068, 0.006231611128896475, 0.022753655910491943, 0.016689401119947433, 0.23653534054756165, 0.00577424094080925, 0.00949489139020443, 0.004630971234291792, 0.009708111174404621, 0.007498364895582199, 0.007708054035902023, 0.006676457356661558, 0.015219400636851788, 0.0081251859664917, 0.021153125911951065, 0.5046963095664978]]], [[[0.21880605816841125, 0.029423339292407036, 0.01643129251897335, 0.03178385645151138, 0.07375075668096542, 0.2253551483154297, 0.010523500852286816, 0.015595330856740475, 0.001020244788378477, 0.003393232123926282, 0.0008943344000726938, 0.004855870734900236, 0.004096492659300566, 0.011441378854215145, 0.005136472638696432, 0.01353104691952467, 0.33396169543266296], [0.010325507260859013, 0.024945620447397232, 0.010923627763986588, 0.008832315914332867, 0.0515105240046978, 0.2993182837963104, 0.040953997522592545, 0.009275798685848713, 0.0037391793448477983, 0.0051664733327925205, 0.009535534307360649, 0.023485107347369194, 0.00937643926590681, 0.022231966257095337, 0.014658159576356411, 0.04760148376226425, 0.4081200063228607], [0.022238126024603844, 0.030434811487793922, 0.0010800824966281652, 0.001199722639285028, 0.039878882467746735, 0.3607332706451416, 0.004223627503961325, 0.002747392049059272, 0.0009065037593245506, 0.006102900020778179, 0.001060380949638784, 0.0058469087816774845, 0.0016641359543427825, 0.023650281131267548, 0.009043226018548012, 0.02734849601984024, 0.4618411958217621], [0.009107903577387333, 0.00519223976880312, 0.0024365761782974005, 0.0007368925726041198, 0.03765375167131424, 0.3629664182662964, 0.008192873559892178, 0.0019398522563278675, 0.0005422807298600674, 0.001177687430754304, 0.00042942099389620125, 0.009334755130112171, 0.0018591678235679865, 0.005670319776982069, 0.0048775929026305676, 0.02696777880191803, 0.5209145545959473], [0.023410562425851822, 0.025067441165447235, 0.006690921727567911, 0.0019155312329530716, 0.022694094106554985, 0.34095484018325806, 0.027688240632414818, 0.003998863510787487, 0.0011022127000615, 0.0032409057021141052, 0.0022337972186505795, 0.011943375691771507, 0.004132093861699104, 0.026288898661732674, 0.01157185435295105, 0.024179955944418907, 0.4628864526748657], [0.030043113976716995, 0.018162889406085014, 0.006375506520271301, 0.01405356265604496, 0.006134179886430502, 0.3220933973789215, 0.006348534487187862, 0.008706890977919102, 0.006674391683191061, 0.005323913414031267, 0.0010929665295407176, 0.00619696918874979, 0.0026300910394638777, 0.01420959085226059, 0.0044157421216368675, 0.005548049695789814, 0.5419901609420776], [0.06544236093759537, 0.012373194098472595, 0.0010575091000646353, 0.001508619636297226, 0.012159307487308979, 0.343688040971756, 0.003060972783714533, 0.004861798137426376, 0.0001058438720065169, 0.0005752532742917538, 6.698472861899063e-05, 0.001299993135035038, 0.0002536436659283936, 0.001469644601456821, 0.001000947318971157, 0.011275180615484715, 0.5398007035255432], [0.07062283158302307, 0.021385004743933678, 0.012850326485931873, 0.008092524483799934, 0.024795178323984146, 0.32851549983024597, 0.010013105347752571, 0.006276830565184355, 0.0011533109936863184, 0.0018265441758558154, 0.0008135206298902631, 0.01196462381631136, 0.004302658140659332, 0.006170439533889294, 0.00925479643046856, 0.024898871779441833, 0.4570639431476593], [0.07664494216442108, 0.020859792828559875, 0.0032110612373799086, 0.002398721408098936, 0.04438488557934761, 0.35173317790031433, 0.004965102765709162, 0.004287429619580507, 0.00032498696236871183, 0.0012695336481556296, 0.0003784628352150321, 0.003982702735811472, 0.0009734920458868146, 0.0047435639426112175, 0.003299443982541561, 0.030353164300322533, 0.44618964195251465], [0.08321394771337509, 0.008127405308187008, 0.002188085112720728, 0.0025775146204978228, 0.010654808953404427, 0.35774365067481995, 0.0040967329405248165, 0.00344305532053113, 0.000721614807844162, 0.001972253667190671, 0.0003938900772482157, 0.0031730742193758488, 0.0013424037024378777, 0.00506245531141758, 0.0032629030756652355, 0.012017879635095596, 0.5000084638595581], [0.08192257583141327, 0.006455244496464729, 0.0007945873658172786, 0.0004972495371475816, 0.013976111076772213, 0.3835112452507019, 0.003647164674475789, 0.0011381655931472778, 0.0001850817061495036, 0.000745304801966995, 0.00022314376838039607, 0.004167543258517981, 0.00118168699555099, 0.009062560275197029, 0.002278515137732029, 0.013748597353696823, 0.4764651954174042], [0.12344084680080414, 0.009740730747580528, 0.0009095041314139962, 0.0009229804272763431, 0.019889462739229202, 0.323800653219223, 0.002456145826727152, 0.0017464552074670792, 0.00028868441586382687, 0.001326039433479309, 0.0002992380759678781, 0.0018026799662038684, 0.0009449367644265294, 0.0052144271321594715, 0.0032567442394793034, 0.014453431591391563, 0.48950710892677307], [0.10258392989635468, 0.009381970390677452, 0.0023500770330429077, 0.0026780948974192142, 0.010959752835333347, 0.34753409028053284, 0.0031161843799054623, 0.004100112244486809, 0.0008502847631461918, 0.0015351480105891824, 0.0003173026198055595, 0.004489582497626543, 0.0013968093553557992, 0.004279212560504675, 0.002869783667847514, 0.008241226896643639, 0.4933165907859802], [0.04048106074333191, 0.0076672835275530815, 0.012100870721042156, 0.010452124290168285, 0.026203135028481483, 0.3237355947494507, 0.017006825655698776, 0.020012039691209793, 0.0019132687011733651, 0.00136832264252007, 0.0010421345941722393, 0.007413890678435564, 0.0038352326955646276, 0.0013381821336224675, 0.0035299570299685, 0.028492292389273643, 0.4934076964855194], [0.047751545906066895, 0.003602532437071204, 0.004853762686252594, 0.0037270106840878725, 0.03069904074072838, 0.35024920105934143, 0.005360979121178389, 0.0031079845502972603, 0.0003767839225474745, 0.0003686395357362926, 0.00028456744621507823, 0.0029582756105810404, 0.0011064920108765364, 0.0008816110203042626, 0.0019500531489029527, 0.012519177049398422, 0.5302022695541382], [0.07420005649328232, 0.019031977280974388, 0.010935061611235142, 0.0049987188540399075, 0.016334107145667076, 0.33982038497924805, 0.014425625093281269, 0.006087079178541899, 0.0007939585484564304, 0.001271493500098586, 0.000728691287804395, 0.008273971267044544, 0.002594442805275321, 0.01284298300743103, 0.005670866463333368, 0.014879882335662842, 0.46711066365242004], [0.03717063367366791, 0.017843274399638176, 0.0071722823195159435, 0.015080456621944904, 0.008178689517080784, 0.3223513066768646, 0.008279139176011086, 0.009970765560865402, 0.006938830949366093, 0.0055580176413059235, 0.0014090880285948515, 0.007989452220499516, 0.0029053271282464266, 0.01794520765542984, 0.004856733605265617, 0.008314254693686962, 0.5180365443229675]], [[0.0628194734454155, 0.024951184168457985, 0.0053540561348199844, 0.008084693923592567, 0.015820777043700218, 0.13375146687030792, 0.058980025351047516, 0.0860334038734436, 0.009132806211709976, 0.05719814822077751, 0.02102350816130638, 0.033726874738931656, 0.02394808456301689, 0.10840379446744919, 0.10482126474380493, 0.11251367628574371, 0.1334368735551834], [0.03549014776945114, 0.005591104738414288, 0.002023521810770035, 0.002268986776471138, 0.026666700839996338, 0.255309134721756, 0.03564968332648277, 0.06339725852012634, 0.0026113411877304316, 0.005383850075304508, 0.003685964737087488, 0.005657774396240711, 0.014302203431725502, 0.010026110336184502, 0.008971445262432098, 0.14228051900863647, 0.3806841969490051], [0.0524003803730011, 0.08046295493841171, 0.010234943591058254, 0.007390360347926617, 0.06237044557929039, 0.15499934554100037, 0.015070002526044846, 0.10909523814916611, 0.0026578011456876993, 0.0036156950518488884, 0.0036903994623571634, 0.0063315266743302345, 0.013628551736474037, 0.020781533792614937, 0.013901499100029469, 0.19579678773880005, 0.24757252633571625], [0.034721896052360535, 0.014247126877307892, 0.00541326217353344, 0.0031329335179179907, 0.029673278331756592, 0.2410934865474701, 0.017911462113261223, 0.052715834230184555, 0.004493329674005508, 0.0055305492132902145, 0.006564346142113209, 0.013132767751812935, 0.01488578412681818, 0.025607986375689507, 0.033558525145053864, 0.18937906622886658, 0.3079383075237274], [0.04860707372426987, 0.034977179020643234, 0.005011261440813541, 0.012905418872833252, 0.05087678134441376, 0.2677393853664398, 0.013480699621140957, 0.027386344969272614, 0.0023093123454600573, 0.013467168435454369, 0.002592233708128333, 0.00903359055519104, 0.005943442694842815, 0.06106052175164223, 0.03339778631925583, 0.12736080586910248, 0.2838509976863861], [0.007214078679680824, 8.78200662555173e-05, 2.5340972570120357e-05, 9.259085345547646e-05, 0.00017739144095685333, 0.5746970772743225, 0.00012753152986988425, 0.00039269309490919113, 2.127076731994748e-05, 4.9682497774483636e-05, 4.681629070546478e-05, 0.0002533305960241705, 0.0001484626845922321, 0.0011421386152505875, 0.00033397795050404966, 0.0006838583503849804, 0.41450604796409607], [0.18482069671154022, 0.061758607625961304, 0.012279750779271126, 0.05258054658770561, 0.0481104776263237, 0.29142171144485474, 0.003108259290456772, 0.011176005937159061, 0.0007061823853291571, 0.0011942557757720351, 0.00046040929737500846, 0.0032819195184856653, 0.0012269382132217288, 0.013897072523832321, 0.007155808620154858, 0.019299626350402832, 0.28752171993255615], [0.10030427575111389, 0.015994906425476074, 0.0016519653145223856, 0.004245250951498747, 0.01940552145242691, 0.395474910736084, 0.003468519076704979, 0.009921707212924957, 0.0003720840613823384, 0.00036253646248951554, 0.0005721062188968062, 0.002784753916785121, 0.001715947175398469, 0.006201294716447592, 0.003484134329482913, 0.020722994580864906, 0.4133169949054718], [0.1611524373292923, 0.0745990052819252, 0.007833687588572502, 0.0058851903304457664, 0.04705645143985748, 0.1945243626832962, 0.017571503296494484, 0.06400647014379501, 0.0017123891739174724, 0.0014666717033833265, 0.0035305379424244165, 0.007069386076182127, 0.011516892351210117, 0.010769120417535305, 0.012554274871945381, 0.07389461994171143, 0.30485689640045166], [0.12772604823112488, 0.03140014037489891, 0.0032204180024564266, 0.00479344604536891, 0.025394972413778305, 0.3279065787792206, 0.007854600436985493, 0.017600925639271736, 0.0003662678354885429, 0.0006121486658230424, 0.0011204160982742906, 0.00364131317473948, 0.003481823019683361, 0.011652848683297634, 0.008361626416444778, 0.02714064158499241, 0.39772582054138184], [0.1725541353225708, 0.08664535731077194, 0.013419409282505512, 0.012850670143961906, 0.07944931089878082, 0.2326781153678894, 0.006137572228908539, 0.027274081483483315, 0.0014155895914882421, 0.0003821803838945925, 0.0008320841589011252, 0.006691073067486286, 0.004640466067939997, 0.005534263327717781, 0.0041112229228019714, 0.0627020001411438, 0.28268247842788696], [0.20685012638568878, 0.06596287339925766, 0.0060415249317884445, 0.020897576585412025, 0.08866804093122482, 0.21190029382705688, 0.003659644862636924, 0.021529871970415115, 0.00045342405792325735, 0.0006300007808022201, 0.0004091285518370569, 0.002150769578292966, 0.002008936833590269, 0.008493248373270035, 0.0077430978417396545, 0.04852120205760002, 0.30408015847206116], [0.09222780913114548, 0.03005639649927616, 0.0046276310458779335, 0.00753437727689743, 0.04891742393374443, 0.32594794034957886, 0.0035699745640158653, 0.015853499993681908, 0.0004930956638418138, 0.0003764455614145845, 0.0006272390601225197, 0.003964753355830908, 0.0020901220850646496, 0.011903365142643452, 0.009304423816502094, 0.05112804099917412, 0.39137744903564453], [0.06429851055145264, 0.004580761305987835, 0.001554416841827333, 0.0050135101191699505, 0.01120445691049099, 0.3897300958633423, 0.00180724635720253, 0.004894355311989784, 0.00032521283719688654, 0.0006211500731296837, 0.0002258978202007711, 0.001963032176718116, 0.0009520150488242507, 0.005521059967577457, 0.0055388882756233215, 0.013552797958254814, 0.4882165491580963], [0.0916045680642128, 0.003436797996982932, 0.0015175879234448075, 0.0026103511918336153, 0.00796203687787056, 0.3838459551334381, 0.0011441940441727638, 0.002615167759358883, 0.00020781756029464304, 0.0003184351371601224, 0.0001113006510422565, 0.0018859372939914465, 0.0004637761740013957, 0.003253013826906681, 0.003854034235700965, 0.01025086734443903, 0.4849182069301605], [0.09957900643348694, 0.020782938227057457, 0.0034039339516311884, 0.010075487196445465, 0.036081183701753616, 0.33333373069763184, 0.007554688025265932, 0.016353581100702286, 0.0011337853502482176, 0.00425307173281908, 0.0014678941806778312, 0.006203892175108194, 0.0036393634509295225, 0.056666430085897446, 0.03772571310400963, 0.04843546077609062, 0.31330981850624084], [0.009531166404485703, 0.00010302218288416043, 2.7367159418645315e-05, 0.0001166268193628639, 0.00022225103748496622, 0.5959863662719727, 0.00016166154819075018, 0.0006128544919192791, 2.8956854293937795e-05, 6.627538095926866e-05, 7.165161514421925e-05, 0.00029300915775820613, 0.00018081784946843982, 0.001840071054175496, 0.0006711397436447442, 0.0008289326797239482, 0.38925784826278687]], [[0.05218513682484627, 0.04497428610920906, 0.009471475146710873, 0.05890268832445145, 0.02350708656013012, 0.23229281604290009, 0.010010690428316593, 0.040079254657030106, 0.0036974740214645863, 0.009054428897798061, 0.0014554414665326476, 0.005479092244058847, 0.00553206168115139, 0.012927445583045483, 0.017900491133332253, 0.04580964520573616, 0.4267204999923706], [0.06145293638110161, 0.12715984880924225, 0.0021214729640632868, 0.0011299900943413377, 0.023556148633360863, 0.2661474347114563, 0.00300776120275259, 0.027315840125083923, 0.0008698574383743107, 0.001104538794606924, 0.00042672024574130774, 0.003334933426231146, 0.002069693524390459, 0.007221663370728493, 0.009361016564071178, 0.022279586642980576, 0.44144052267074585], [0.0402713343501091, 0.0077561684884130955, 0.07665722817182541, 0.004047393333166838, 0.03731353208422661, 0.16687524318695068, 0.019771337509155273, 0.002875668928027153, 0.004403861705213785, 0.001761895720846951, 0.002749256556853652, 0.2510828375816345, 0.07534133642911911, 0.0012606829404830933, 0.001642084214836359, 0.044068384915590286, 0.2621218264102936], [0.033753182739019394, 0.00043227500282227993, 0.0015067863278090954, 0.32140791416168213, 0.029928382486104965, 0.1974867433309555, 0.005059644114226103, 0.00132285978179425, 0.0005125257303006947, 0.0011069067986682057, 0.00022578485368285328, 0.0042680189944803715, 0.003559008240699768, 0.0026313604321330786, 0.002724933670833707, 0.08031478524208069, 0.3137589693069458], [0.04962903633713722, 0.008993533439934254, 0.007664873730391264, 0.020855624228715897, 0.03253837674856186, 0.2859383523464203, 0.008088385686278343, 0.013742748647928238, 0.0022055895533412695, 0.004535463638603687, 0.0011942371493205428, 0.006062026601284742, 0.0048960852436721325, 0.008853367529809475, 0.01808827556669712, 0.055791813880205154, 0.47092220187187195], [0.04201645404100418, 0.02270502783358097, 0.006872508674860001, 0.00949972216039896, 0.013722816482186317, 0.283383846282959, 0.009430182166397572, 0.007559525314718485, 0.00235521188005805, 0.0049883900210261345, 0.0014964599395170808, 0.005076094064861536, 0.005759208928793669, 0.009157562628388405, 0.006037380546331406, 0.018849652260541916, 0.5510900020599365], [0.03095521405339241, 0.004135404713451862, 0.01126971747726202, 0.014768081717193127, 0.02008793130517006, 0.272632896900177, 0.015203195624053478, 0.001492334296926856, 0.0010846862569451332, 0.0048553538508713245, 0.004768284037709236, 0.009041409939527512, 0.003542467253282666, 0.005605577491223812, 0.0030709016136825085, 0.024333374574780464, 0.5731531381607056], [0.08902917802333832, 0.04421904310584068, 0.013655911199748516, 0.0032252224627882242, 0.03674927353858948, 0.23154588043689728, 0.003443789202719927, 0.12332512438297272, 0.0040990873239934444, 0.002236325293779373, 0.0018873043591156602, 0.005128877237439156, 0.0047851549461483955, 0.002748149447143078, 0.026383668184280396, 0.03634682297706604, 0.371191143989563], [0.06734955310821533, 0.0019002766348421574, 0.007856513373553753, 0.002749425359070301, 0.03263362869620323, 0.27226516604423523, 0.014111238531768322, 0.0050799003802239895, 0.028782352805137634, 0.005112835671752691, 0.0027089170180261135, 0.02008640579879284, 0.013252679258584976, 0.005231647752225399, 0.006625050213187933, 0.034259386360645294, 0.47999513149261475], [0.07297343015670776, 0.0014781518839299679, 0.00345822935923934, 0.0019955297466367483, 0.03578260540962219, 0.350554883480072, 0.0137086883187294, 0.005586184561252594, 0.004407285246998072, 0.0029043094255030155, 0.0016241871053352952, 0.0021851782221347094, 0.0006237556226551533, 0.0015882765874266624, 0.0018468856578692794, 0.0318865142762661, 0.4673960208892822], [0.06533157825469971, 0.001563266501761973, 0.019676314666867256, 0.020055672153830528, 0.06402403861284256, 0.2455335110425949, 0.06839649379253387, 0.018945395946502686, 0.010007196106016636, 0.0036023894790560007, 0.07719128578901291, 0.004557098727673292, 0.002432276261970401, 0.0006958742742426693, 0.0006933864206075668, 0.035959210246801376, 0.36133500933647156], [0.03558013215661049, 0.005841870326548815, 0.27139797806739807, 0.012520410120487213, 0.05105749890208244, 0.1088021919131279, 0.030227599665522575, 0.0018574093701317906, 0.009122188203036785, 0.0028723187278956175, 0.0028610494919121265, 0.17512989044189453, 0.08714993298053741, 0.0013580325758084655, 0.0015176325105130672, 0.04015566408634186, 0.16254809498786926], [0.03990878537297249, 0.006484742742031813, 0.14382009208202362, 0.014012821950018406, 0.055974021553993225, 0.15659703314304352, 0.012836240231990814, 0.0007477307808585465, 0.0028714367654174566, 0.0017660000594332814, 0.0018815257353708148, 0.13910895586013794, 0.1365923434495926, 0.003421287052333355, 0.0008353823213838041, 0.03253874555230141, 0.2506029009819031], [0.05054723098874092, 0.00874280370771885, 0.004054287448525429, 0.020430466160178185, 0.07705944776535034, 0.26852935552597046, 0.013320069760084152, 0.0009915452683344483, 0.0012648955453187227, 0.0006454107933677733, 0.0002808280987665057, 0.005169277545064688, 0.007070883177220821, 0.12827757000923157, 0.018370531499385834, 0.035166628658771515, 0.3600787818431854], [0.07726559787988663, 0.003487273119390011, 0.002881597029045224, 0.012821665033698082, 0.0986613854765892, 0.16865836083889008, 0.007815337739884853, 0.01765567623078823, 0.0027294266037642956, 0.001641094801016152, 0.00015283595712389797, 0.003945354837924242, 0.0011418978683650494, 0.011378474533557892, 0.34721043705940247, 0.05511897802352905, 0.18743464350700378], [0.05506395176053047, 0.007154636085033417, 0.005210397765040398, 0.02091044746339321, 0.03810705244541168, 0.3028075695037842, 0.00931104738265276, 0.012986178509891033, 0.0014605473261326551, 0.003041572868824005, 0.0009205089299939573, 0.0032795178703963757, 0.003203876316547394, 0.004021923523396254, 0.013339316472411156, 0.01245829276740551, 0.506723165512085], [0.051593367010354996, 0.029119038954377174, 0.008509663864970207, 0.013138296082615852, 0.01986815221607685, 0.281210720539093, 0.010887163691222668, 0.009180691093206406, 0.003132787998765707, 0.006000082474201918, 0.002033224096521735, 0.0060060597024858, 0.00744234025478363, 0.01087941788136959, 0.007662484887987375, 0.023263519629836082, 0.5100729465484619]], [[0.10336869210004807, 0.1225782036781311, 0.03529629483819008, 0.17628857493400574, 0.13615213334560394, 0.0857137143611908, 0.01073545590043068, 0.037293270230293274, 0.011125377379357815, 0.005583721678704023, 0.005551045294851065, 0.0035320816095918417, 0.0032003577798604965, 0.017626957967877388, 0.037587545812129974, 0.07705569267272949, 0.13131090998649597], [0.08681363612413406, 0.008783026598393917, 0.0012937630526721478, 0.008755655959248543, 0.03562639281153679, 0.09109000116586685, 0.00490904413163662, 0.3934192955493927, 0.0025112489238381386, 0.020903782919049263, 0.0009284766274504364, 0.002268973272293806, 0.003902988275513053, 0.028809402137994766, 0.06208878383040428, 0.11168660968542099, 0.13620898127555847], [0.082151859998703, 0.007726113311946392, 0.018879756331443787, 0.032986242324113846, 0.050636377185583115, 0.18699638545513153, 0.0738079622387886, 0.09495062381029129, 0.028496991842985153, 0.03325236961245537, 0.03456613048911095, 0.017317118123173714, 0.02618158981204033, 0.006774140987545252, 0.018708543851971626, 0.08097532391548157, 0.20559252798557281], [0.11828630417585373, 0.015885327011346817, 0.006034341175109148, 0.0015313253970816731, 0.0738229975104332, 0.1519528478384018, 0.019031153991818428, 0.0685887485742569, 0.003700725268572569, 0.018257994204759598, 0.004624657332897186, 0.0042316666804254055, 0.00700906990095973, 0.007637304719537497, 0.06946372240781784, 0.2320757657289505, 0.1978660374879837], [0.1341184824705124, 0.024436404928565025, 0.010183961130678654, 0.056069765239953995, 0.05597365275025368, 0.22445854544639587, 0.014208444394171238, 0.043106433004140854, 0.011776364408433437, 0.02237282134592533, 0.005547026637941599, 0.005493832752108574, 0.010627062059938908, 0.0037383167073130608, 0.023844625800848007, 0.07954635471105576, 0.2744978666305542], [0.02648344449698925, 0.01099418569356203, 0.002891591750085354, 0.009878634475171566, 0.009541776031255722, 0.32127025723457336, 0.004688975866883993, 0.004109886474907398, 0.0018489719368517399, 0.006412194576114416, 0.0032173197250813246, 0.00234213680960238, 0.0040642814710736275, 0.005061607342213392, 0.005262448452413082, 0.017254287376999855, 0.5646779537200928], [0.13729871809482574, 0.03379979357123375, 0.01871505007147789, 0.041503921151161194, 0.07438752800226212, 0.20402242243289948, 0.002648571040481329, 0.01896880939602852, 0.0027704027015715837, 0.01543358713388443, 0.006445690058171749, 0.007710008881986141, 0.004615255631506443, 0.006662537343800068, 0.019713586196303368, 0.06686218827962875, 0.33844193816185], [0.25141122937202454, 0.13794012367725372, 0.012225898914039135, 0.09989318996667862, 0.10542666912078857, 0.09594608098268509, 0.007071088999509811, 0.033175449818372726, 0.004345077555626631, 0.01523233950138092, 0.0030151554383337498, 0.004281243309378624, 0.007662689778953791, 0.015680335462093353, 0.013454570434987545, 0.036142610013484955, 0.15709629654884338], [0.18127132952213287, 0.010720261372625828, 0.05320054292678833, 0.09204297512769699, 0.1065879836678505, 0.11929713934659958, 0.015761228278279305, 0.0902443677186966, 0.0028684516437351704, 0.007102891802787781, 0.00858998578041792, 0.04198714718222618, 0.020695744082331657, 0.005626024678349495, 0.02843034639954567, 0.05451374128460884, 0.16105978190898895], [0.13157248497009277, 0.024854842573404312, 0.04730375111103058, 0.14041516184806824, 0.07954300194978714, 0.17040109634399414, 0.016410596668720245, 0.014561440795660019, 0.0025242564734071493, 0.0014768473338335752, 0.004488035570830107, 0.011154004372656345, 0.026768021285533905, 0.0055696964263916016, 0.025582581758499146, 0.03528425097465515, 0.2620898187160492], [0.12418176233768463, 0.02322266437113285, 0.05831792950630188, 0.04265858232975006, 0.13718806207180023, 0.17307572066783905, 0.021790562197566032, 0.027257809415459633, 0.002818731125444174, 0.005577308591455221, 0.016896557062864304, 0.01410334650427103, 0.027375709265470505, 0.003873097011819482, 0.008725002408027649, 0.05366206169128418, 0.2592751681804657], [0.08731339871883392, 0.013800994493067265, 0.04437326639890671, 0.07419276237487793, 0.04107537865638733, 0.14255428314208984, 0.06392258405685425, 0.02437262423336506, 0.053048621863126755, 0.0461420863866806, 0.04334021359682083, 0.03472164273262024, 0.03115539252758026, 0.01307627372443676, 0.027484634891152382, 0.0618659146130085, 0.1975598931312561], [0.1082717701792717, 0.02116864174604416, 0.02565820887684822, 0.08669930696487427, 0.0295505803078413, 0.16957823932170868, 0.01379176415503025, 0.01710134744644165, 0.013857324607670307, 0.05601979047060013, 0.018394047394394875, 0.016321707516908646, 0.010623350739479065, 0.03345605731010437, 0.019989201799035072, 0.059176523238420486, 0.3003421723842621], [0.23923413455486298, 0.1072065681219101, 0.005270267836749554, 0.05509188771247864, 0.01441070158034563, 0.17891623079776764, 0.00625356612727046, 0.013027623295783997, 0.002073727548122406, 0.008066103793680668, 0.0007277958211489022, 0.004716387018561363, 0.01119291316717863, 0.005834843963384628, 0.009916200302541256, 0.02795359119772911, 0.3101073205471039], [0.33737891912460327, 0.04281759262084961, 0.009820016101002693, 0.13722273707389832, 0.057082392275333405, 0.10974987596273422, 0.02055457979440689, 0.034221600741147995, 0.005730246659368277, 0.022487493231892586, 0.0009611845598556101, 0.00583009934052825, 0.008041179738938808, 0.00712266331538558, 0.009075631387531757, 0.03183794021606445, 0.16006577014923096], [0.15622156858444214, 0.03496575728058815, 0.01813303865492344, 0.14434178173542023, 0.057292208075523376, 0.19471754133701324, 0.013485225848853588, 0.016717445105314255, 0.008774242363870144, 0.01648121327161789, 0.0058390372432768345, 0.0071086157113313675, 0.01200396940112114, 0.005699866451323032, 0.00947626307606697, 0.03348911553621292, 0.26525309681892395], [0.034607693552970886, 0.01672479696571827, 0.0044392854906618595, 0.014982888475060463, 0.013953316025435925, 0.30665940046310425, 0.0065314872190356255, 0.006472308188676834, 0.002343123545870185, 0.008858323097229004, 0.0042868126183748245, 0.0031605660915374756, 0.005941335577517748, 0.008359720930457115, 0.008701157756149769, 0.02304043434560299, 0.5309373140335083]], [[0.05165894329547882, 0.023755986243486404, 0.006565973628312349, 0.016698382794857025, 0.021363699808716774, 0.23178629577159882, 0.010155029594898224, 0.06475724279880524, 0.010554233565926552, 0.003769868053495884, 0.001996897626668215, 0.01208445057272911, 0.0066091567277908325, 0.05454133450984955, 0.012395089492201805, 0.1299595832824707, 0.34134790301322937], [0.0947539210319519, 0.012472497299313545, 0.005847487132996321, 0.021336523815989494, 0.02351018786430359, 0.33107995986938477, 0.020265035331249237, 0.0172430407255888, 0.00891499686986208, 0.004778641741722822, 0.0009743247064761817, 0.0034364869352430105, 0.002036142395809293, 0.00747316051274538, 0.005807611625641584, 0.022258255630731583, 0.4178118407726288], [0.1894897073507309, 0.01981247216463089, 0.018218418583273888, 0.045318905264139175, 0.0462697334587574, 0.23434966802597046, 0.010763924568891525, 0.013889777474105358, 0.007284166291356087, 0.0038900079671293497, 0.001249484485015273, 0.00790287647396326, 0.005473711062222719, 0.01566099002957344, 0.01935945451259613, 0.023539898917078972, 0.33752673864364624], [0.1314813196659088, 0.014610939659178257, 0.01356077566742897, 0.018384795635938644, 0.040713243186473846, 0.3016456067562103, 0.015155076049268246, 0.00822015106678009, 0.007083596661686897, 0.004059185273945332, 0.0028674807399511337, 0.004334619268774986, 0.0031802367884665728, 0.005610951688140631, 0.008701307699084282, 0.011809668503701687, 0.4085809290409088], [0.22549404203891754, 0.007114562205970287, 0.0024433487560600042, 0.04477564990520477, 0.023403620347380638, 0.27019304037094116, 0.013984372839331627, 0.03506350889801979, 0.004006613977253437, 0.008757180534303188, 0.0008591520600020885, 0.0020729294046759605, 0.0018172194249927998, 0.005845396313816309, 0.00705011747777462, 0.022568615153431892, 0.324550598859787], [0.04789324104785919, 0.022946739569306374, 0.006669843103736639, 0.015496197156608105, 0.01695776917040348, 0.32363376021385193, 0.00863400287926197, 0.004274304956197739, 0.003925928380340338, 0.015557684935629368, 0.006055773235857487, 0.004728637170046568, 0.009349378757178783, 0.012688489630818367, 0.00912445317953825, 0.012776820920407772, 0.47928690910339355], [0.02811301313340664, 0.012686808593571186, 0.00422761170193553, 0.01496970746666193, 0.04796605557203293, 0.34970906376838684, 0.006416724994778633, 0.003921122755855322, 0.0024393051862716675, 0.0021565300412476063, 0.0028066232334822416, 0.0032630523201078176, 0.0027942194137722254, 0.009819312021136284, 0.02310374565422535, 0.024439070373773575, 0.4611680507659912], [0.02847570925951004, 0.013004687614738941, 0.0034612175077199936, 0.004368717782199383, 0.02125864289700985, 0.3343687355518341, 0.007146271876990795, 0.018228719010949135, 0.005304870195686817, 0.000811816134955734, 0.0012338045053184032, 0.003617834532633424, 0.0018875488312914968, 0.010798485018312931, 0.008526266552507877, 0.02893068827688694, 0.5085759162902832], [0.03385113179683685, 0.02547447942197323, 0.011923396959900856, 0.007906449027359486, 0.03823704645037651, 0.34403911232948303, 0.007194030564278364, 0.0053366245701909065, 0.006245515774935484, 0.0010532786836847663, 0.0017640780424699187, 0.007598034106194973, 0.002859683707356453, 0.005799680482596159, 0.006100657861679792, 0.013296027667820454, 0.4813207983970642], [0.017575060948729515, 0.00877892691642046, 0.006980573292821646, 0.0041288044303655624, 0.01787586510181427, 0.3724302351474762, 0.005221376195549965, 0.0035955174826085567, 0.0042810337617993355, 0.002457154681906104, 0.006341694388538599, 0.006903673056513071, 0.003715184982866049, 0.003326407400891185, 0.008210653439164162, 0.012383714318275452, 0.515794038772583], [0.058126095682382584, 0.015935411676764488, 0.015137264505028725, 0.009239228442311287, 0.025616435334086418, 0.3332746624946594, 0.006274143699556589, 0.004316830076277256, 0.003852009540423751, 0.0036235731095075607, 0.0056288763880729675, 0.006736073177307844, 0.005423455499112606, 0.0072571886703372, 0.006291393656283617, 0.01175197958946228, 0.48151522874832153], [0.028032336384058, 0.022896450012922287, 0.008364403620362282, 0.005802186205983162, 0.02999231405556202, 0.3156295716762543, 0.006044185720384121, 0.007869179360568523, 0.003812572918832302, 0.0018915525870397687, 0.002577143721282482, 0.010929853655397892, 0.008988377638161182, 0.031067898496985435, 0.0232265405356884, 0.03188694268465042, 0.46098846197128296], [0.02442978508770466, 0.011217782273888588, 0.008742407895624638, 0.004693811759352684, 0.02841014601290226, 0.3396807610988617, 0.002995001617819071, 0.004459674004465342, 0.001385514042340219, 0.0014268947998061776, 0.0046672639437019825, 0.0072952681221067905, 0.007603543810546398, 0.009223833680152893, 0.010006716474890709, 0.018526868894696236, 0.5152347683906555], [0.02531510218977928, 0.00555157708004117, 0.010257742367684841, 0.003404574003070593, 0.02686181850731373, 0.3118719160556793, 0.009223297238349915, 0.00908953882753849, 0.005229737143963575, 0.0022455407306551933, 0.0037355078384280205, 0.019336285069584846, 0.0095559973269701, 0.009497511200606823, 0.016472138464450836, 0.04330996796488762, 0.4890417754650116], [0.04582818225026131, 0.006601357366889715, 0.004020633175969124, 0.004667738918215036, 0.044194843620061874, 0.3225451707839966, 0.0039333561435341835, 0.008371192961931229, 0.002781418850645423, 0.0007694057421758771, 0.0038627446629107, 0.008096563629806042, 0.0027948308270424604, 0.007541014812886715, 0.03292239457368851, 0.05040775611996651, 0.45066145062446594], [0.05321057513356209, 0.011758091859519482, 0.004460273776203394, 0.023404840379953384, 0.03574329987168312, 0.33166417479515076, 0.008508510887622833, 0.020843498408794403, 0.0026954396162182093, 0.0021198031026870012, 0.0007207473972812295, 0.004331736825406551, 0.0029813169967383146, 0.014873208478093147, 0.012876981869339943, 0.05464870110154152, 0.41515883803367615], [0.03919724002480507, 0.017372263595461845, 0.009026450105011463, 0.013540424406528473, 0.017397485673427582, 0.3266577124595642, 0.009396608918905258, 0.004159429110586643, 0.004410432185977697, 0.013475866988301277, 0.007279003504663706, 0.005993909668177366, 0.009623916819691658, 0.009632362052798271, 0.00818620529025793, 0.011695836670696735, 0.4929548501968384]], [[0.023211730644106865, 0.00466602249071002, 0.001595613663084805, 0.003089980222284794, 0.0021290131844580173, 0.024768218398094177, 0.6605097651481628, 0.14358989894390106, 0.007355018053203821, 0.007155024912208319, 0.0029368402902036905, 0.014772218652069569, 0.004885509610176086, 0.0262523852288723, 0.010754216462373734, 0.012744246050715446, 0.049584317952394485], [0.02799438312649727, 0.02317277155816555, 0.12365210801362991, 0.0365353487432003, 0.09020043164491653, 0.24931147694587708, 0.00462312251329422, 0.015827486291527748, 0.0016008876264095306, 0.0018512947717681527, 0.00013217383821029216, 0.00028174291946925223, 0.00022760491992812604, 0.0015499008586630225, 0.005968927405774593, 0.00882467906922102, 0.40824562311172485], [0.02476915717124939, 0.008628848008811474, 0.010543876327574253, 0.4721522927284241, 0.13587231934070587, 0.12504509091377258, 0.01438688300549984, 0.006198087707161903, 0.0011423028772696853, 0.0024869644548743963, 0.0008268015226349235, 0.0004253006773069501, 0.000600500381551683, 0.003156698541715741, 0.0022634947672486305, 0.005491552874445915, 0.1860099583864212], [0.030751392245292664, 0.002105646999552846, 0.0016396120190620422, 0.0031108909752219915, 0.6480420827865601, 0.11435682326555252, 0.003738359548151493, 0.0023767626844346523, 4.125712439417839e-05, 6.466128979809582e-05, 6.081668834667653e-05, 0.00021372022456489503, 5.399443398346193e-05, 0.00012123991473345086, 0.00017275186837650836, 0.005538542754948139, 0.18761137127876282], [0.27365750074386597, 0.024592958390712738, 0.0010076690232381225, 0.012209033593535423, 0.029955271631479263, 0.1588202714920044, 0.13777999579906464, 0.06800521165132523, 0.000763312098570168, 0.0028196945786476135, 0.0005068961181677878, 0.00163919513579458, 0.0007284693419933319, 0.0030180164612829685, 0.002134254900738597, 0.00874103233218193, 0.27362123131752014], [0.153690904378891, 0.03394666686654091, 0.004576488863676786, 0.015444139949977398, 0.031960271298885345, 0.18739880621433258, 0.035278450697660446, 0.027590535581111908, 0.006107023451477289, 0.011865966953337193, 0.00598477479070425, 0.01035168394446373, 0.006364523433148861, 0.02301783114671707, 0.018442515283823013, 0.039890795946121216, 0.3880887031555176], [0.024575529620051384, 0.00525854155421257, 0.0007384816999547184, 0.0014944388531148434, 0.0066286553628742695, 0.09789392352104187, 0.06694644689559937, 0.3901151120662689, 0.051509756594896317, 0.09051057696342468, 0.0169462189078331, 0.032911770045757294, 0.014559967443346977, 0.0386369414627552, 0.018103884533047676, 0.01049030665308237, 0.13267941772937775], [0.014018679969012737, 0.002980936551466584, 0.0012251707958057523, 0.003070020116865635, 0.012072538025677204, 0.11192471534013748, 0.03180665150284767, 0.11648521572351456, 0.12485145032405853, 0.07640864700078964, 0.01960974931716919, 0.03710455819964409, 0.02831263840198517, 0.09385960549116135, 0.06820748746395111, 0.02891392819583416, 0.2291480302810669], [0.004273127764463425, 0.0002602452877908945, 7.392426050500944e-05, 0.0011007841676473618, 0.0014528634492307901, 0.02683922089636326, 0.004407321568578482, 0.010651294142007828, 0.010374179109930992, 0.7186926603317261, 0.10431402176618576, 0.02597646415233612, 0.005334318615496159, 0.019569505006074905, 0.006564782466739416, 0.0049203247763216496, 0.0551949068903923], [0.012348685413599014, 0.0003315323556307703, 5.337392212823033e-05, 0.0006584448274224997, 0.0056983232498168945, 0.11354583501815796, 0.00526374951004982, 0.008690906688570976, 0.007551788352429867, 0.08868472278118134, 0.2673601508140564, 0.15295451879501343, 0.021575909107923508, 0.041842468082904816, 0.013035586103796959, 0.021906109526753426, 0.23849795758724213], [0.011466892436146736, 0.0007154044578783214, 2.8268375899642706e-05, 0.000547687232028693, 0.004791250452399254, 0.09515953063964844, 0.013738821260631084, 0.017673589289188385, 0.0008721679914742708, 0.002826421521604061, 0.004620818421244621, 0.30959460139274597, 0.08159030228853226, 0.1973135769367218, 0.0647592544555664, 0.029354166239500046, 0.1649472862482071], [0.0006707666907459497, 7.040103810140863e-05, 2.0656791093642823e-05, 0.00026258069556206465, 0.000205895776161924, 0.01663457602262497, 0.007809856906533241, 0.0031699934042990208, 0.0017602250445634127, 0.009558247402310371, 0.011305002495646477, 0.05440544709563255, 0.6434403657913208, 0.1877625286579132, 0.03427339717745781, 0.0039769443683326244, 0.02467317506670952], [0.0013727007899433374, 0.0008228248334489763, 9.254166070604697e-05, 0.00047811047988943756, 0.0003704484843183309, 0.04031042382121086, 0.0022535158786922693, 0.005137591622769833, 0.001009731786325574, 0.003224855288863182, 0.0008325522649101913, 0.01588313654065132, 0.07317420840263367, 0.5068409442901611, 0.26624107360839844, 0.012120026163756847, 0.06983529776334763], [0.008716636337339878, 0.0017853545723482966, 0.0016161662060767412, 0.003433765145018697, 0.0016346735646948218, 0.13639192283153534, 0.002339157974347472, 0.004461678210645914, 0.001684343907982111, 0.0067450315691530704, 0.0011079664109274745, 0.0070571936666965485, 0.044473957270383835, 0.07587456703186035, 0.36789703369140625, 0.07134087383747101, 0.26343968510627747], [0.03629195690155029, 0.00245522428303957, 0.0015393587527796626, 0.0017270996468141675, 0.009121891111135483, 0.0986005961894989, 0.004856136627495289, 0.008991147391498089, 0.0015357794472947717, 0.003008153522387147, 0.0016521761426702142, 0.011931486427783966, 0.011252088472247124, 0.016655687242746353, 0.03047342039644718, 0.5064504742622375, 0.25345730781555176], [0.11568381637334824, 0.00731974421069026, 0.0014667087234556675, 0.0057333786971867085, 0.004877214320003986, 0.1728309988975525, 0.01854667440056801, 0.013645730912685394, 0.0009700780501589179, 0.01257389597594738, 0.002192673273384571, 0.004227973986417055, 0.004633863922208548, 0.017549728974699974, 0.025164993479847908, 0.08616610616445541, 0.5064164400100708], [0.15066541731357574, 0.033348504453897476, 0.007980413734912872, 0.02388893999159336, 0.03644131124019623, 0.17045605182647705, 0.035565853118896484, 0.028213638812303543, 0.006972623523324728, 0.013329114764928818, 0.008805900812149048, 0.01712845452129841, 0.009016210213303566, 0.029238790273666382, 0.025422925129532814, 0.06052538380026817, 0.34300053119659424]], [[0.1401900053024292, 0.028113579377532005, 0.015647513791918755, 0.027940943837165833, 0.07883161306381226, 0.16676656901836395, 0.05915408208966255, 0.056243568658828735, 0.006478872150182724, 0.00890008732676506, 0.00564498221501708, 0.004460262134671211, 0.005652919877320528, 0.009031516499817371, 0.016585029661655426, 0.05820611119270325, 0.31215235590934753], [0.05983929708600044, 0.01987399347126484, 0.004870415199548006, 0.011512423865497112, 0.017558757215738297, 0.3452082574367523, 0.008106443099677563, 0.007582777179777622, 0.00039095862302929163, 0.0005975717213004827, 0.00029422587249428034, 0.00046280300011858344, 0.0013136877678334713, 0.0016783312894403934, 0.003228544956073165, 0.011549598537385464, 0.5059318542480469], [0.06327949464321136, 0.24431659281253815, 0.035684745758771896, 0.06591286510229111, 0.042913876473903656, 0.18250170350074768, 0.02628510259091854, 0.01127178966999054, 0.000738381699193269, 0.0016145415138453245, 0.0012491854140534997, 0.0007925564423203468, 0.006095913704484701, 0.012602375820279121, 0.008303116075694561, 0.01780800335109234, 0.27862969040870667], [0.043122902512550354, 0.099399134516716, 0.08293254673480988, 0.009888379834592342, 0.03895541653037071, 0.2437041997909546, 0.017262643203139305, 0.012762797996401787, 0.0012454090174287558, 0.0019190785242244601, 0.001160597545094788, 0.0006667557754553854, 0.0012468487257137895, 0.004924622364342213, 0.004552507307380438, 0.022440919652581215, 0.4138151705265045], [0.043932460248470306, 0.15543703734874725, 0.12311000376939774, 0.17269685864448547, 0.05046471208333969, 0.15910816192626953, 0.010188672691583633, 0.011399788782000542, 0.0013636777875944972, 0.001482657971791923, 0.0014044058043509722, 0.0010452191345393658, 0.0009397288085892797, 0.003427242860198021, 0.0033940011635422707, 0.005682741291821003, 0.25492265820503235], [0.054385196417570114, 0.013110375963151455, 0.007813626900315285, 0.009411541745066643, 0.0175066739320755, 0.2924765646457672, 0.015352481044828892, 0.015838272869586945, 0.0034517201129347086, 0.004771355073899031, 0.0031383417081087828, 0.004848658572882414, 0.005979365669190884, 0.0055879857391119, 0.004025738686323166, 0.0192168690264225, 0.5230851769447327], [0.1522325575351715, 0.0392732210457325, 0.004189175087958574, 0.08258581906557083, 0.19743098318576813, 0.18844737112522125, 0.02976786345243454, 0.025820305570960045, 0.0016187430592253804, 0.0023501215036958456, 0.0024883237201720476, 0.0008848988800309598, 0.0011700810864567757, 0.004171321168541908, 0.0047963401302695274, 0.009420989081263542, 0.2533518373966217], [0.13247407972812653, 0.022907884791493416, 0.0029724701307713985, 0.01873820833861828, 0.12811024487018585, 0.1341034173965454, 0.2723173499107361, 0.09185628592967987, 0.009976754896342754, 0.006009792909026146, 0.002401560777798295, 0.001374844927340746, 0.000997610273770988, 0.001964875962585211, 0.004327590111643076, 0.00836953241378069, 0.16109754145145416], [0.1181982234120369, 0.02914504148066044, 0.0011057726806029677, 0.007916825823485851, 0.07282356917858124, 0.09534642100334167, 0.29335445165634155, 0.17801035940647125, 0.025848763063549995, 0.01345974300056696, 0.013002016581594944, 0.00395544245839119, 0.0034101116470992565, 0.006267228163778782, 0.007205338682979345, 0.014383014291524887, 0.1165677160024643], [0.06620685011148453, 0.007468943018466234, 0.0009561091428622603, 0.00197137170471251, 0.034924525767564774, 0.11259371787309647, 0.1891031116247177, 0.2861321270465851, 0.08417737483978271, 0.01532285287976265, 0.011005536653101444, 0.007073312532156706, 0.005692370235919952, 0.007974729873239994, 0.0073600527830421925, 0.01922466792166233, 0.14281237125396729], [0.012253198772668839, 0.0011942153796553612, 0.0005605336627922952, 0.0012843506410717964, 0.009202368557453156, 0.014125197194516659, 0.20978151261806488, 0.10667110234498978, 0.4384540021419525, 0.160136878490448, 0.00478324806317687, 0.004690897185355425, 0.0016759367426857352, 0.0035957731306552887, 0.005051938816905022, 0.0069873034954071045, 0.01955154910683632], [0.03320518508553505, 0.004107944667339325, 0.0006745075806975365, 0.005015206523239613, 0.023073410615324974, 0.04623394459486008, 0.17908485233783722, 0.1236698180437088, 0.08372961729764938, 0.1666155457496643, 0.1207275241613388, 0.04215870425105095, 0.03510230779647827, 0.02547468990087509, 0.014676296152174473, 0.022731494158506393, 0.07371900975704193], [0.019371025264263153, 0.0025333594530820847, 0.0006729546585120261, 0.0029273596592247486, 0.014065791852772236, 0.06691975146532059, 0.08536545187234879, 0.05498379096388817, 0.05048707500100136, 0.189193457365036, 0.17335674166679382, 0.1352636069059372, 0.041427355259656906, 0.037606436759233475, 0.010935909114778042, 0.016723817214369774, 0.09816617518663406], [0.041043736040592194, 0.006951713468879461, 0.001135463360697031, 0.0022053460124880075, 0.023165440186858177, 0.12555012106895447, 0.08479582518339157, 0.06915120035409927, 0.02262333780527115, 0.07711441069841385, 0.04180590808391571, 0.09090447425842285, 0.11126773059368134, 0.03760271891951561, 0.01792389154434204, 0.04064730927348137, 0.20611129701137543], [0.012222692370414734, 0.0038915248587727547, 0.001387462834827602, 0.0011161412112414837, 0.011921308934688568, 0.025273172184824944, 0.07688242197036743, 0.14822231233119965, 0.03364647179841995, 0.038491521030664444, 0.0960070937871933, 0.17095935344696045, 0.23185427486896515, 0.0603300966322422, 0.01993490941822529, 0.026943393051624298, 0.040915850549936295], [0.06260522454977036, 0.016925688832998276, 0.0027843168936669827, 0.005787092261016369, 0.013218763284385204, 0.204588383436203, 0.01167080458253622, 0.03883005678653717, 0.006958593614399433, 0.017395740374922752, 0.025202542543411255, 0.031618066132068634, 0.039821870625019073, 0.07209596782922745, 0.06485216319561005, 0.05426434427499771, 0.3313803970813751], [0.06837667524814606, 0.015184596180915833, 0.008909791707992554, 0.009956056252121925, 0.019921785220503807, 0.27095597982406616, 0.02309945784509182, 0.023704499006271362, 0.0055786133743822575, 0.007294753100723028, 0.004511021077632904, 0.007085579447448254, 0.009487494826316833, 0.008870461024343967, 0.007077313028275967, 0.03062671795487404, 0.47935932874679565]], [[0.06570226699113846, 0.013404469937086105, 0.0010317463893443346, 0.0037525345105677843, 0.02520647458732128, 0.34878009557724, 0.0016726370668038726, 0.005946717225015163, 0.0010537565685808659, 0.0012786510633304715, 0.0005143113085068762, 0.0013222352135926485, 0.002291781594976783, 0.00745434919372201, 0.006352053955197334, 0.04039645195007324, 0.47383949160575867], [0.053694259375333786, 0.047311507165431976, 0.0002456077199894935, 9.43408886087127e-05, 0.009032156318426132, 0.3999272584915161, 0.01426733285188675, 0.02799800969660282, 0.0003710322198458016, 0.0015812097117304802, 9.487176430411637e-05, 0.0012390495976433158, 0.0006372751668095589, 0.005485310684889555, 0.003409816650673747, 0.021896550431847572, 0.4127143919467926], [0.024044213816523552, 0.0004130765446461737, 0.0966353639960289, 0.0014724996872246265, 0.0060294317081570625, 0.2514822483062744, 0.014601172879338264, 0.009746543131768703, 0.0019603066612035036, 0.002832145895808935, 0.0002915467484854162, 0.2388623058795929, 0.01167753990739584, 0.0013034830335527658, 0.0006156119634397328, 0.019184259697794914, 0.31884822249412537], [0.024280641227960587, 6.511964602395892e-05, 0.0011148948688060045, 0.05297445133328438, 0.01793387345969677, 0.33930477499961853, 0.0060739764012396336, 0.0007633985951542854, 9.186705574393272e-05, 0.00038976551149971783, 0.00014531397027894855, 0.003910662140697241, 0.0010686202440410852, 0.000318248727126047, 0.001665199059061706, 0.09551947563886642, 0.4543795883655548], [0.053389884531497955, 0.001136645209044218, 0.0006365918670780957, 0.0010870775440707803, 0.08938983827829361, 0.27214211225509644, 0.006751717533916235, 0.006494175177067518, 0.00025712899514473975, 0.0016391393728554249, 4.949928188580088e-05, 0.0010322091402485967, 0.0005670086829923093, 0.0020824915263801813, 0.004460904747247696, 0.17319369316101074, 0.3856898546218872], [0.045665327459573746, 0.00750511372461915, 0.0012352375779300928, 0.0017922535771504045, 0.007658358663320541, 0.37350088357925415, 0.006727366708219051, 0.013222869485616684, 0.0008905936265364289, 0.0028303819708526134, 0.0007003381615504622, 0.0024052222725003958, 0.003250986570492387, 0.005675951484590769, 0.005734232719987631, 0.022416645660996437, 0.4987882673740387], [0.04142669215798378, 0.005803171079605818, 0.013422605581581593, 0.010834252461791039, 0.05827654153108597, 0.3769848346710205, 0.017906486988067627, 0.001470280229113996, 0.0005378356436267495, 0.0002581725420895964, 8.275623986264691e-05, 0.001675425679422915, 0.001062852912582457, 0.0016211604233831167, 0.0012720780214294791, 0.018309079110622406, 0.4490557312965393], [0.05009599030017853, 0.01564614661037922, 0.0033492823131382465, 0.0012596832821145654, 0.034346286207437515, 0.2836068272590637, 0.0005846041603945196, 0.23371616005897522, 0.00027866175514645875, 0.00016857324226293713, 7.118852954590693e-05, 0.00027560730814002454, 8.323076326632872e-05, 0.00024075695546343923, 0.002733398461714387, 0.014707050286233425, 0.3588365316390991], [0.09040585160255432, 0.0013930265558883548, 0.040452130138874054, 0.013046897016465664, 0.023524651303887367, 0.35615718364715576, 0.002280870219692588, 0.0019798390567302704, 0.039209600538015366, 0.000598990183789283, 6.92625399096869e-05, 0.007492052856832743, 0.00038111789035610855, 0.0014361102366819978, 0.0014860020019114017, 0.014659230597317219, 0.40542715787887573], [0.10650663077831268, 0.003948159981518984, 0.02408776804804802, 0.0245578084141016, 0.04623785987496376, 0.3116132318973541, 0.0011653004912659526, 0.002677070675417781, 0.002715964335948229, 0.018764663487672806, 0.0004999885568395257, 0.0009353991481475532, 0.000173010237631388, 0.0016566201811656356, 0.010064538568258286, 0.024906301870942116, 0.4194898009300232], [0.09968402236700058, 0.00021540321176871657, 0.005297600291669369, 0.004712133668363094, 0.020949268713593483, 0.3424343764781952, 0.0014704528730362654, 0.0018096878193318844, 0.0009650461724959314, 0.002700075739994645, 0.02441536821424961, 0.001276038703508675, 0.0004480421484913677, 3.3635529689490795e-05, 5.336787580745295e-05, 0.013217881321907043, 0.4803175628185272], [0.03165177255868912, 0.0026100550312548876, 0.5045634508132935, 0.01429863553494215, 0.014885075390338898, 0.12133555859327316, 0.0020846317056566477, 0.0006799469119869173, 0.0025432342663407326, 0.000146442573168315, 0.0001085404001059942, 0.13168023526668549, 0.006755494978278875, 0.0025289691984653473, 0.00035374361323192716, 0.004741345066577196, 0.15903282165527344], [0.04796713963150978, 0.0027867844328284264, 0.02222169004380703, 0.004391808062791824, 0.01921819895505905, 0.30197715759277344, 0.0013361972523853183, 0.00020907960424665362, 0.00033465196611359715, 9.017864795168862e-05, 0.00010548855061642826, 0.009152410551905632, 0.16082501411437988, 0.0017686228966340423, 0.0005036082002334297, 0.008889799006283283, 0.41822224855422974], [0.041357047855854034, 0.0034673893824219704, 0.0009387538302689791, 0.0009413735242560506, 0.04258274286985397, 0.28404542803764343, 0.0006039298023097217, 0.00011000943777617067, 3.0859631806379184e-05, 3.536407893989235e-05, 2.155240281354054e-06, 0.00024535131524316967, 0.00013703174772672355, 0.2223626673221588, 0.016774998977780342, 0.01435803808271885, 0.372006893157959], [0.03458356857299805, 0.0016797103453427553, 0.0003266152343712747, 0.0010211282642558217, 0.022770900279283524, 0.21168583631515503, 0.00015335231728386134, 0.0003959585737902671, 2.772431071207393e-05, 3.728480078279972e-05, 1.3733465493714903e-06, 7.04475023667328e-05, 9.454359678784385e-05, 0.028682244941592216, 0.3826564848423004, 0.020169531926512718, 0.29564324021339417], [0.06466073542833328, 0.0023442318197339773, 0.001292256754823029, 0.006862551439553499, 0.11567161977291107, 0.32172736525535583, 0.0017938480013981462, 0.003336162306368351, 0.0002913714852184057, 0.0005706550437025726, 4.075264951097779e-05, 0.00043681534589268267, 0.0004929225542582572, 0.0017750391270965338, 0.005985098425298929, 0.04134365916252136, 0.4313748776912689], [0.04538986459374428, 0.00677186343818903, 0.0011203563772141933, 0.0018689405405893922, 0.008766681887209415, 0.3768336772918701, 0.005006261635571718, 0.01060221903026104, 0.0006627669790759683, 0.0021747141145169735, 0.0006284755072556436, 0.0018242899095639586, 0.002925712615251541, 0.005136676598340273, 0.005908265244215727, 0.020982516929507256, 0.50339674949646]], [[0.05208815261721611, 0.017580274492502213, 0.012287329882383347, 0.033215854316949844, 0.047535490244627, 0.11820408701896667, 0.03792410343885422, 0.06918510049581528, 0.010652332566678524, 0.0543842613697052, 0.0068865129724144936, 0.041267313063144684, 0.07284370809793472, 0.058874670416116714, 0.05899472162127495, 0.18293556571006775, 0.1251405030488968], [0.0479232482612133, 0.057220470160245895, 0.05963917076587677, 0.07159499078989029, 0.03968450427055359, 0.14415188133716583, 0.008814776316285133, 0.12050143629312515, 0.013438704423606396, 0.029827747493982315, 0.0058643086813390255, 0.03023342601954937, 0.0638999491930008, 0.03227095305919647, 0.05764109641313553, 0.044349219650030136, 0.1729440838098526], [0.07684830576181412, 0.11606902629137039, 0.0836779996752739, 0.07391451299190521, 0.03288302198052406, 0.08500505238771439, 0.005641262978315353, 0.12624214589595795, 0.011361116543412209, 0.07661863416433334, 0.011296546086668968, 0.034511253237724304, 0.06746894121170044, 0.01677570678293705, 0.033155154436826706, 0.03202498331665993, 0.11650636047124863], [0.156021386384964, 0.013051741756498814, 0.009633714333176613, 0.11331102252006531, 0.021981213241815567, 0.23763777315616608, 0.0013393934350460768, 0.012547309510409832, 0.0018770452588796616, 0.003993379417806864, 0.0015034243697300553, 0.003512242343276739, 0.03092331811785698, 0.002067649271339178, 0.0020391889847815037, 0.011808805167675018, 0.37675151228904724], [0.056127388030290604, 0.030337831005454063, 0.06295059621334076, 0.11194103956222534, 0.15698638558387756, 0.021518524736166, 0.004567071795463562, 0.10384882986545563, 0.013977992348372936, 0.06338205188512802, 0.002627940382808447, 0.024606937542557716, 0.043017446994781494, 0.020783288404345512, 0.0556599497795105, 0.2045217752456665, 0.023144906386733055], [0.02357194758951664, 0.01186568383127451, 0.005106527823954821, 0.015743879601359367, 0.008554891683161259, 0.34963807463645935, 0.009584025479853153, 0.01009287592023611, 0.0021059054415673018, 0.005264738574624062, 0.0027867176104336977, 0.005449934396892786, 0.012258512899279594, 0.015118051320314407, 0.004076636396348476, 0.013579714111983776, 0.5052019357681274], [0.05258013680577278, 0.012442373670637608, 0.02996491640806198, 0.00825582817196846, 0.010958386585116386, 0.106424979865551, 0.07357220351696014, 0.11620809137821198, 0.058995723724365234, 0.028885770589113235, 0.03238144889473915, 0.10124759376049042, 0.11136454343795776, 0.011914861388504505, 0.01984642632305622, 0.06847573816776276, 0.15648099780082703], [0.09837958216667175, 0.03612620756030083, 0.015913743525743484, 0.029234975576400757, 0.02597794309258461, 0.07353201508522034, 0.007258148863911629, 0.33192870020866394, 0.01764831878244877, 0.038325291126966476, 0.004015341401100159, 0.02791045792400837, 0.07996232062578201, 0.010049172677099705, 0.024112598970532417, 0.0877959281206131, 0.09182924777269363], [0.05486788600683212, 0.061171382665634155, 0.016811132431030273, 0.034584350883960724, 0.02974740043282509, 0.07285163551568985, 0.05576164647936821, 0.26135918498039246, 0.04982591047883034, 0.04918902367353439, 0.01497100479900837, 0.02649696171283722, 0.079750195145607, 0.0075650643557310104, 0.016863001510500908, 0.06633874773979187, 0.10184551030397415], [0.04181832820177078, 0.02449757046997547, 0.028457384556531906, 0.02324235439300537, 0.005731598939746618, 0.07968546450138092, 0.012101569212973118, 0.05014419928193092, 0.06005803123116493, 0.1692640334367752, 0.04457905888557434, 0.08138038963079453, 0.18214796483516693, 0.017337016761302948, 0.043959349393844604, 0.021009249612689018, 0.1145864799618721], [0.048040010035037994, 0.07459519058465958, 0.08194038271903992, 0.026056554168462753, 0.05652179941534996, 0.06231757998466492, 0.03580717369914055, 0.11649337410926819, 0.022182129323482513, 0.0592397041618824, 0.06902027130126953, 0.04818356782197952, 0.1210353821516037, 0.016946934163570404, 0.02218104526400566, 0.05658193305134773, 0.08285702764987946], [0.09735854715108871, 0.13872943818569183, 0.04147857055068016, 0.020244404673576355, 0.04260934889316559, 0.0770537257194519, 0.00829361006617546, 0.11890677362680435, 0.014627338387072086, 0.05665642023086548, 0.028286393731832504, 0.07663282006978989, 0.03710039332509041, 0.017372379079461098, 0.07137400656938553, 0.053756192326545715, 0.09951973706483841], [0.06139388680458069, 0.05208630859851837, 0.028882509097456932, 0.02748284861445427, 0.017532341182231903, 0.1169055849313736, 0.002783819567412138, 0.09570512175559998, 0.01561897061765194, 0.06904810667037964, 0.011906755156815052, 0.07167152315378189, 0.1380191296339035, 0.018260296434164047, 0.03760198503732681, 0.05451933667063713, 0.1805814653635025], [0.037574756890535355, 0.04221701622009277, 0.0834491103887558, 0.08325868844985962, 0.031644903123378754, 0.15039396286010742, 0.0022812203969806433, 0.06619957089424133, 0.0031612643506377935, 0.042175065726041794, 0.0017927169101312757, 0.01898762211203575, 0.06093049421906471, 0.03939639404416084, 0.01887166127562523, 0.07173221558332443, 0.2459334284067154], [0.047432586550712585, 0.012818827293813229, 0.03174414113163948, 0.057131197303533554, 0.04645457863807678, 0.1949448585510254, 0.0016869365936145186, 0.14344589412212372, 0.0018160792533308268, 0.008168235421180725, 0.0004119741206523031, 0.01055159792304039, 0.02913542278110981, 0.007100243587046862, 0.01502331905066967, 0.0894794836640358, 0.3026546537876129], [0.022036153823137283, 0.017980171367526054, 0.05808321386575699, 0.06565607339143753, 0.06438849866390228, 0.025406647473573685, 0.00637753214687109, 0.16708889603614807, 0.02316141687333584, 0.09074443578720093, 0.003843299811705947, 0.04951801896095276, 0.1018105298280716, 0.022243373095989227, 0.07480688393115997, 0.17444926500320435, 0.032405510544776917], [0.020678415894508362, 0.014905363321304321, 0.007168258540332317, 0.01997438445687294, 0.007600688841193914, 0.34409940242767334, 0.006761330645531416, 0.009293880313634872, 0.002202963922172785, 0.007669124286621809, 0.002429393120110035, 0.006108245346695185, 0.015162311494350433, 0.017164481803774834, 0.004851218778640032, 0.010834069922566414, 0.5030964612960815]], [[0.0890066921710968, 0.011220937594771385, 0.03193318471312523, 0.03633606433868408, 0.04450204223394394, 0.06455114483833313, 0.13605907559394836, 0.07147836685180664, 0.046247243881225586, 0.0894816666841507, 0.02957029826939106, 0.03527477756142616, 0.053058527410030365, 0.03637510538101196, 0.02822837047278881, 0.10672280192375183, 0.0899537056684494], [0.12684810161590576, 0.0718609169125557, 0.02232460118830204, 0.010219847783446312, 0.11247704178094864, 0.1058749109506607, 0.026559041813015938, 0.14864268898963928, 0.013168415054678917, 0.04629601165652275, 0.004205701407045126, 0.011758952401578426, 0.019318852573633194, 0.04018661007285118, 0.026858001947402954, 0.09767202287912369, 0.1157282143831253], [0.07344578206539154, 0.021174414083361626, 0.008171138353645802, 0.06672805547714233, 0.24461495876312256, 0.09443715959787369, 0.04674224928021431, 0.04852819815278053, 0.004477259237319231, 0.00544574111700058, 0.002036080928519368, 0.002509325509890914, 0.0026579201221466064, 0.006472613662481308, 0.014321580529212952, 0.2203720360994339, 0.1378655731678009], [0.0698671042919159, 0.02291816473007202, 0.006787440273910761, 0.016076115891337395, 0.16335804760456085, 0.09747812151908875, 0.16803738474845886, 0.04842459037899971, 0.020862307399511337, 0.05018981173634529, 0.01344000268727541, 0.0067831347696483135, 0.0047341641038656235, 0.01021320279687643, 0.0064616440795362, 0.18580089509487152, 0.10856782644987106], [0.08531231433153152, 0.06306179612874985, 0.014226701110601425, 0.03175815939903259, 0.12743280827999115, 0.12180161476135254, 0.07454251497983932, 0.04832976311445236, 0.005066269543021917, 0.011003050953149796, 0.0008911437471397221, 0.004443604964762926, 0.0033238870091736317, 0.009121350944042206, 0.008516418747603893, 0.21086485683918, 0.18030370771884918], [0.03656074404716492, 0.006394779775291681, 0.0009262075764127076, 0.002641878789290786, 0.0032517409417778254, 0.3139254152774811, 0.00829294789582491, 0.005651180166751146, 0.001720218569971621, 0.0039636497385799885, 0.001693632104434073, 0.0018839502008631825, 0.0020858978386968374, 0.005679875612258911, 0.003476342186331749, 0.0058256653137505054, 0.596025824546814], [0.054977089166641235, 0.020349761471152306, 0.010700646787881851, 0.04312029480934143, 0.07797302305698395, 0.25519391894340515, 0.05093793198466301, 0.003382111433893442, 0.007677164394408464, 0.002044442342594266, 0.0022352130617946386, 0.008232297375798225, 0.006045496091246605, 0.009467548690736294, 0.015042806975543499, 0.06857302039861679, 0.36404722929000854], [0.040277667343616486, 0.03723898157477379, 0.00920944008976221, 0.10310044884681702, 0.1950298398733139, 0.05831253528594971, 0.020818771794438362, 0.04657403752207756, 0.013085939921438694, 0.006999940145760775, 0.0007961458759382367, 0.003956893924623728, 0.003472393611446023, 0.017470598220825195, 0.0918714851140976, 0.26978811621665955, 0.0819968432188034], [0.06952259689569473, 0.009900962002575397, 0.011598870158195496, 0.0698859766125679, 0.11147987097501755, 0.14738011360168457, 0.05011570826172829, 0.022257886826992035, 0.006881361361593008, 0.01291750930249691, 0.004057748708873987, 0.008651881478726864, 0.0058438824489712715, 0.004505551420152187, 0.028254495933651924, 0.2115003764629364, 0.22524525225162506], [0.08760904520750046, 0.07530766725540161, 0.014250349253416061, 0.02582179568707943, 0.10034005343914032, 0.12565433979034424, 0.012464934028685093, 0.1117827296257019, 0.004531186074018478, 0.004508567973971367, 0.001256821327842772, 0.009439956396818161, 0.008358804509043694, 0.012543334625661373, 0.0364752858877182, 0.16987426578998566, 0.1997808963060379], [0.035449083894491196, 0.002892602002248168, 0.004833728540688753, 0.013442211784422398, 0.04026613011956215, 0.2931154668331146, 0.044273000210523605, 0.0022870367392897606, 0.002814290579408407, 0.0012596654705703259, 0.0005980492569506168, 0.003878980875015259, 0.0029597976244986057, 0.0015564186032861471, 0.0049823918379843235, 0.06717635691165924, 0.4782147705554962], [0.0760512426495552, 0.02244512178003788, 0.011333276517689228, 0.14430324733257294, 0.08951383084058762, 0.1605980098247528, 0.074344202876091, 0.005224473308771849, 0.007708125282078981, 0.0040098074823617935, 0.004377999342978001, 0.008898441679775715, 0.006613695528358221, 0.013898609206080437, 0.028161674737930298, 0.07592923939228058, 0.26658907532691956], [0.07706496864557266, 0.021484479308128357, 0.016020435839891434, 0.0993906557559967, 0.04105427488684654, 0.1531786173582077, 0.11030890792608261, 0.005784118082374334, 0.013745050877332687, 0.003323155455291271, 0.004533405415713787, 0.025723740458488464, 0.01383835356682539, 0.02593175508081913, 0.10873971879482269, 0.05247138440608978, 0.2274070382118225], [0.03259003534913063, 0.08096890151500702, 0.017818408086895943, 0.005806071683764458, 0.03345103934407234, 0.07150357961654663, 0.008251948282122612, 0.00436203321442008, 0.002976398915052414, 0.009222688153386116, 0.0034780476707965136, 0.03475837782025337, 0.024136774241924286, 0.27076256275177, 0.27392274141311646, 0.03299154341220856, 0.09299881756305695], [0.048438169062137604, 0.2232060432434082, 0.027400372549891472, 0.10914413630962372, 0.17108456790447235, 0.03639601171016693, 0.008067404851317406, 0.07195273786783218, 0.009229441173374653, 0.009972182102501392, 0.00420945230871439, 0.017182260751724243, 0.01198237482458353, 0.021905135363340378, 0.057137664407491684, 0.12687356770038605, 0.0458185188472271], [0.06730442494153976, 0.0691862404346466, 0.01508920919150114, 0.07840950042009354, 0.12842269241809845, 0.126926451921463, 0.047994621098041534, 0.04127613082528114, 0.006061125546693802, 0.0043702577240765095, 0.0009442776208743453, 0.006149107590317726, 0.0037854742258787155, 0.013952747918665409, 0.016057457774877548, 0.18594907224178314, 0.1881212443113327], [0.04940931126475334, 0.00791082065552473, 0.001504136947914958, 0.003302274737507105, 0.005103186704218388, 0.3081689178943634, 0.012174245901405811, 0.007639917079359293, 0.0028688113670796156, 0.004955245181918144, 0.00235524564050138, 0.003036473412066698, 0.00343532906845212, 0.008149228058755398, 0.005391087848693132, 0.009729037992656231, 0.5648667216300964]], [[0.0334879569709301, 0.0500732958316803, 0.0294929351657629, 0.07528666406869888, 0.0419907346367836, 0.32299691438674927, 0.005384373944252729, 0.008907054550945759, 0.007238701917231083, 0.003933004103600979, 0.0053870342671871185, 0.003917771857231855, 0.0038291672244668007, 0.01476918626576662, 0.010437590070068836, 0.017292166128754616, 0.36557549238204956], [0.06239599362015724, 0.002350099151954055, 0.0008674222626723349, 0.0013655835064128041, 0.0020196763798594475, 0.38465937972068787, 0.01625465601682663, 0.017529986798763275, 0.011150818318128586, 0.005434444639831781, 0.007319574244320393, 0.004021128639578819, 0.005788799375295639, 0.005084428936243057, 0.0020862126257270575, 0.006133667659014463, 0.4655380845069885], [0.057868439704179764, 0.0010380579624325037, 9.228676208294928e-05, 0.0006599263288080692, 0.0015686086844652891, 0.4983234107494354, 0.009935878217220306, 0.004428375046700239, 0.004343952517956495, 0.00434495322406292, 0.004088406916707754, 0.0005898525705561042, 0.000787283934187144, 0.0012345884460955858, 0.000874746183399111, 0.0023585273884236813, 0.40746262669563293], [0.041188355535268784, 0.0008406852139160037, 0.0009326112922281027, 0.00026141214766539633, 0.0024083382450044155, 0.43906599283218384, 0.0032646353356540203, 0.012881981208920479, 0.0006362170097418129, 0.0009002357837744057, 0.000708153413143009, 0.002141016535460949, 0.001479780301451683, 0.0004197789530735463, 0.0015182449715211987, 0.007506244815886021, 0.4838462471961975], [0.09705463796854019, 0.0030656566377729177, 0.0015919911675155163, 0.0006528494996018708, 0.002294640289619565, 0.49269944429397583, 0.004804143216460943, 0.003583039389923215, 0.00201588636264205, 0.002241396112367511, 0.0030791056342422962, 0.0012666051043197513, 0.0007127386052161455, 0.0008127916371449828, 0.0003539185272529721, 0.0018373725470155478, 0.38193389773368835], [0.03475601226091385, 0.03440103679895401, 0.014185594394803047, 0.046892546117305756, 0.043677181005477905, 0.22018061578273773, 0.03196752443909645, 0.026927391067147255, 0.004993440117686987, 0.005261764861643314, 0.0056190588511526585, 0.014848745428025723, 0.02181711606681347, 0.012567904777824879, 0.007778368424624205, 0.04319680109620094, 0.43092888593673706], [0.096239373087883, 0.008643447421491146, 0.002323672641068697, 0.015095299109816551, 0.020691169425845146, 0.4517982602119446, 0.00019731966312974691, 0.003251016605645418, 0.0002127585030393675, 0.00217937002889812, 0.0006562941707670689, 0.0007587866857647896, 0.0006773167406208813, 0.0025894520804286003, 0.0017192407976835966, 0.0053263637237250805, 0.38764074444770813], [0.13052032887935638, 0.009854733012616634, 0.001899153576232493, 0.0029137202072888613, 0.0070276870392262936, 0.4656504988670349, 0.0023167990148067474, 0.0007407134398818016, 0.0010751534719020128, 0.0019429979147389531, 0.002784008625894785, 0.0007604275597259402, 0.0007947885314933956, 0.0024718272034078836, 0.0003585041267797351, 0.0015205556992441416, 0.36736810207366943], [0.1404094696044922, 0.007771007716655731, 0.00420507974922657, 0.0064289504662156105, 0.021916337311267853, 0.3879842460155487, 0.00237037381157279, 0.007664681877940893, 5.285312363412231e-05, 0.0003082750190515071, 0.00024610498803667724, 0.0036455828230828047, 0.0025327594485133886, 0.005047565326094627, 0.004059745464473963, 0.0084241246804595, 0.39693284034729004], [0.06983952224254608, 0.007921572774648666, 0.0026933744084089994, 0.01289602741599083, 0.013720888644456863, 0.38138169050216675, 0.017227867618203163, 0.011447910219430923, 0.000552015844732523, 9.883431630441919e-05, 0.0004813491541426629, 0.00474092410877347, 0.01152776088565588, 0.009036754257977009, 0.012445744127035141, 0.010596957989037037, 0.433390736579895], [0.08205367624759674, 0.00819452479481697, 0.009862501174211502, 0.026804910972714424, 0.045636702328920364, 0.29732516407966614, 0.03682993724942207, 0.019876381382346153, 0.0012558420421555638, 0.0015709017170593143, 0.0006715300842188299, 0.006700094789266586, 0.0068345037288963795, 0.008136308752000332, 0.003496313700452447, 0.019670521840453148, 0.42508015036582947], [0.08200373500585556, 0.002624976448714733, 0.0005796732730232179, 0.0029230520594865084, 0.00258275237865746, 0.501730740070343, 0.005432517267763615, 0.002984696300700307, 0.0030703602824360132, 0.007338834460824728, 0.0024906303733587265, 0.0008473063353449106, 0.0017626460175961256, 0.003879265859723091, 0.0007714527891948819, 0.0014026648132130504, 0.37757471203804016], [0.027972375974059105, 0.0019200413953512907, 0.0008006885764189065, 0.005023660138249397, 0.000921388273127377, 0.49514296650886536, 0.002719731768593192, 0.0010747873457148671, 0.0015320070087909698, 0.0036897663958370686, 0.0013190092286095023, 0.0008647151989862323, 0.000349245936376974, 0.0030883769504725933, 0.00025774879031814635, 0.00041728210635483265, 0.4529062509536743], [0.053121984004974365, 0.004082352388650179, 0.0008382080704905093, 0.0038121992256492376, 0.0012517381692305207, 0.4592058062553406, 0.003019447671249509, 0.0023335053119808435, 0.0008906380971893668, 0.001580989919602871, 0.0005543253500945866, 0.002185143530368805, 0.004175244830548763, 0.00039503155858255923, 0.0002869167074095458, 0.0011882181279361248, 0.4610782563686371], [0.029602890834212303, 0.0021833525970578194, 0.0007312060333788395, 0.0018083410104736686, 0.0005363072850741446, 0.4583262801170349, 0.0013586622662842274, 0.0008261016919277608, 0.0005365668912418187, 0.0013875579461455345, 0.0008222268079407513, 0.0006893972749821842, 0.000594500859733671, 0.0004998273216187954, 6.449280772358179e-05, 0.0002378233621129766, 0.49979445338249207], [0.06529995799064636, 0.0027133431285619736, 0.0005964407464489341, 0.0012253589229658246, 0.0014197166310623288, 0.5137256383895874, 0.0008020225213840604, 0.0008915717480704188, 0.000332612544298172, 0.0012095739366486669, 0.0016456511802971363, 0.000360146164894104, 0.00022339154384098947, 0.0011120063718408346, 0.00014464456762652844, 0.00028711315826512873, 0.4080107510089874], [0.03567797318100929, 0.030216053128242493, 0.010475830174982548, 0.041790030896663666, 0.031587865203619, 0.24811424314975739, 0.023037627339363098, 0.02430175058543682, 0.00400086585432291, 0.004789393860846758, 0.005065888166427612, 0.011238161474466324, 0.01781543344259262, 0.0143202543258667, 0.008594377897679806, 0.03421162813901901, 0.4547624886035919]], [[0.08032708615064621, 0.22425547242164612, 0.007794482633471489, 0.022465895861387253, 0.21576569974422455, 0.15211772918701172, 0.004568515811115503, 0.014128798618912697, 0.0011811584699898958, 0.0023515336215496063, 0.001120750792324543, 0.0024638031609356403, 0.003688535653054714, 0.0026776741724461317, 0.003555726259946823, 0.07595318555831909, 0.1855839341878891], [0.07691558450460434, 0.09619896858930588, 0.0018777638906612992, 0.001920003560371697, 0.011197514832019806, 0.2507827877998352, 0.034314148128032684, 0.05614983290433884, 0.0028517725877463818, 0.008069606497883797, 0.0030079097487032413, 0.011643161997199059, 0.012933214195072651, 0.054219990968704224, 0.014559895731508732, 0.03155110403895378, 0.3318066895008087], [0.0487082377076149, 0.012236449867486954, 0.028110887855291367, 0.04680344834923744, 0.014848161488771439, 0.1648724526166916, 0.06705828756093979, 0.1236124262213707, 0.02339535392820835, 0.09321426600217819, 0.006140873301774263, 0.05042191967368126, 0.048586685210466385, 0.013184049166738987, 0.010768946260213852, 0.01600530371069908, 0.2320321947336197], [0.037395499646663666, 0.011049971915781498, 0.0549771785736084, 0.11238305270671844, 0.023852257058024406, 0.1693694293498993, 0.024055179208517075, 0.08260545134544373, 0.011416049674153328, 0.05476352199912071, 0.006340587977319956, 0.028583284467458725, 0.027077922597527504, 0.046339839696884155, 0.04550918936729431, 0.03216966241598129, 0.23211202025413513], [0.04628876969218254, 0.01355069875717163, 0.014435692690312862, 0.009407014586031437, 0.038472939282655716, 0.06452733278274536, 0.1575232446193695, 0.21168383955955505, 0.024463051930069923, 0.06199496611952782, 0.006055316422134638, 0.05453237146139145, 0.019316768273711205, 0.026459507644176483, 0.03873397782444954, 0.12156519293785095, 0.09098931401968002], [0.020587516948580742, 0.007187387440353632, 0.001132456585764885, 0.002475237473845482, 0.002411085180938244, 0.36579057574272156, 0.0032199302222579718, 0.004018680192530155, 0.0003718196239788085, 0.0013782817404717207, 0.000653805851470679, 0.0015878621488809586, 0.002481155563145876, 0.005122046452015638, 0.0014119230909273028, 0.003477992257103324, 0.5766923427581787], [0.04098612442612648, 0.07735295593738556, 0.03261325880885124, 0.060681261122226715, 0.05819828063249588, 0.30114278197288513, 0.01060013473033905, 0.008279543370008469, 0.0013964702375233173, 0.00304315029643476, 0.002103904727846384, 0.0037852071691304445, 0.0037723060231655836, 0.001952389837242663, 0.002886040834710002, 0.008270357735455036, 0.38293588161468506], [0.03935060650110245, 0.0610586442053318, 0.013460601679980755, 0.016360240057110786, 0.04056938737630844, 0.3299850523471832, 0.004257143009454012, 0.0756179615855217, 0.002469718223437667, 0.0046477108262479305, 0.003178038401529193, 0.003364908043295145, 0.0029964123386889696, 0.004200599156320095, 0.007554037030786276, 0.016188329085707664, 0.3747406005859375], [0.03376109525561333, 0.012479079887270927, 0.03239912539720535, 0.0891922116279602, 0.015856657177209854, 0.3159570097923279, 0.001716351485811174, 0.012161471880972385, 0.006398846860975027, 0.011114946566522121, 0.0025444820057600737, 0.007995868101716042, 0.00949633214622736, 0.00974329374730587, 0.005135938059538603, 0.006049571093171835, 0.4279977083206177], [0.03200259059667587, 0.014778265729546547, 0.016609663143754005, 0.089057058095932, 0.03151806816458702, 0.3135432004928589, 0.001812063972465694, 0.010757043026387691, 0.0023713817354291677, 0.00963552761822939, 0.0012740523088723421, 0.0034277429804205894, 0.003943844698369503, 0.008346165530383587, 0.005095123313367367, 0.011180930770933628, 0.44464728236198425], [0.020915161818265915, 0.0024113664403557777, 0.010157466866075993, 0.1412632018327713, 0.013448785059154034, 0.3147982954978943, 0.012298807501792908, 0.02103716880083084, 0.002394322073087096, 0.024089669808745384, 0.01548497099429369, 0.00743986526504159, 0.006853459402918816, 0.0069582099094986916, 0.005598751362413168, 0.005534054711461067, 0.38931646943092346], [0.02981250360608101, 0.016202107071876526, 0.008498483337461948, 0.05659431964159012, 0.020799236372113228, 0.4093884825706482, 0.0011866303393617272, 0.00427039060741663, 0.001305221812799573, 0.002891074400395155, 0.001167010748758912, 0.006366171408444643, 0.00357448379509151, 0.00205122004263103, 0.0014589143684133887, 0.0029268250800669193, 0.4315069019794464], [0.015757862478494644, 0.0120365796610713, 0.007196120917797089, 0.03738414868712425, 0.012389514595270157, 0.4168360233306885, 0.0036250343546271324, 0.007351917680352926, 0.0018580735195428133, 0.009951064363121986, 0.000982983154244721, 0.008677154779434204, 0.009091667830944061, 0.006555299740284681, 0.002599974162876606, 0.003728776006028056, 0.44397783279418945], [0.018734082579612732, 0.023879438638687134, 0.003109167329967022, 0.04858922213315964, 0.016669996082782745, 0.3743773400783539, 0.0007969364523887634, 0.002653467236086726, 0.0005097721004858613, 0.0015506553463637829, 0.00022401883325073868, 0.0007801573374308646, 0.0011513440404087305, 0.028136560693383217, 0.004913870245218277, 0.0075112804770469666, 0.4664127230644226], [0.024566974490880966, 0.019195184111595154, 0.00890283938497305, 0.06925869733095169, 0.03258289396762848, 0.35375431180000305, 0.0011987582547590137, 0.009977703914046288, 0.0009498150320723653, 0.003585022408515215, 0.0006006935145705938, 0.0015377959934994578, 0.002232160186395049, 0.009443695656955242, 0.01327548734843731, 0.010936710052192211, 0.4380013048648834], [0.05953958258032799, 0.03853470832109451, 0.015160846523940563, 0.04560504108667374, 0.07348273694515228, 0.24953721463680267, 0.021284347400069237, 0.0546068511903286, 0.004812306724488735, 0.017903931438922882, 0.002145258244127035, 0.014423469081521034, 0.012060157023370266, 0.008293792605400085, 0.013354522176086903, 0.03551812469959259, 0.33373701572418213], [0.021690277382731438, 0.008768011815845966, 0.0011366637190803885, 0.00265175336971879, 0.002917693927884102, 0.36612001061439514, 0.0028035114519298077, 0.004224672447890043, 0.00034051656257361174, 0.0013568595750257373, 0.0006003699381835759, 0.0013150800950825214, 0.002417756710201502, 0.005844953469932079, 0.0013474415754899383, 0.003699340159073472, 0.5727651119232178]]], [[[0.06477326154708862, 0.019108328968286514, 0.014626211486756802, 0.021900177001953125, 0.022086959332227707, 0.02975093573331833, 0.07804898917675018, 0.09909103810787201, 0.010806560516357422, 0.12648344039916992, 0.034663937985897064, 0.04033222794532776, 0.04824821650981903, 0.09788341075181961, 0.1154000386595726, 0.1335829794406891, 0.04321327805519104], [0.035855598747730255, 0.045678526163101196, 0.02058788388967514, 0.30336204171180725, 0.10034798830747604, 0.19522058963775635, 0.008629531599581242, 0.009664545767009258, 0.0048219277523458, 0.009911792352795601, 0.001227542874403298, 0.0025968016125261784, 0.0015625741798430681, 0.006240804214030504, 0.016402199864387512, 0.02319902367889881, 0.21469062566757202], [0.049319446086883545, 0.12593987584114075, 0.08063432574272156, 0.2382691651582718, 0.14895129203796387, 0.1059783324599266, 0.02035016007721424, 0.027193693444132805, 0.0019100873032584786, 0.007815773598849773, 0.0016554391477257013, 0.003007939551025629, 0.003271405352279544, 0.008452353067696095, 0.04220020771026611, 0.02106459252536297, 0.11398588120937347], [0.0408162958920002, 0.2670469582080841, 0.15046876668930054, 0.05533061549067497, 0.19978207349777222, 0.09934012591838837, 0.007631713058799505, 0.02213989943265915, 0.0008795639150775969, 0.001388311735354364, 0.00042056417441926897, 0.0014623714378103614, 0.0004926301771774888, 0.0006990086985751987, 0.007431503850966692, 0.026616228744387627, 0.1180533915758133], [0.038202229887247086, 0.36264264583587646, 0.0752076655626297, 0.130133256316185, 0.14859338104724884, 0.04422803595662117, 0.021988466382026672, 0.04124567285180092, 0.002029357012361288, 0.008799076080322266, 0.0020022052340209484, 0.003574441885575652, 0.008900103159248829, 0.015814559534192085, 0.017972415313124657, 0.026815345510840416, 0.051851190626621246], [0.0303135197609663, 0.021288780495524406, 0.003914440982043743, 0.009606091305613518, 0.016249818727374077, 0.37704870104789734, 0.004046428482979536, 0.004400381352752447, 0.0016282190335914493, 0.0018602771451696754, 0.0006790083716623485, 0.0014763756189495325, 0.0013793893158435822, 0.0038004559464752674, 0.005352886859327555, 0.008880706503987312, 0.5080744028091431], [0.1255650818347931, 0.04960238188505173, 0.01865100860595703, 0.043545305728912354, 0.04721580445766449, 0.21000798046588898, 0.03000331111252308, 0.03526231646537781, 0.0048047397285699844, 0.01569395512342453, 0.005939003080129623, 0.016835790127515793, 0.021211307495832443, 0.02030923031270504, 0.04935366287827492, 0.03661257028579712, 0.2693865895271301], [0.11983751505613327, 0.04590773582458496, 0.011789059266448021, 0.0900082215666771, 0.09757240861654282, 0.10215850174427032, 0.04745407775044441, 0.01957279071211815, 0.00829451996833086, 0.041880153119564056, 0.015362833626568317, 0.010108557529747486, 0.030972838401794434, 0.03108607977628708, 0.13700957596302032, 0.06487464904785156, 0.12611043453216553], [0.058627188205718994, 0.024875039234757423, 0.004058515187352896, 0.031582288444042206, 0.018819915130734444, 0.10745891183614731, 0.08340819180011749, 0.12430212646722794, 0.017341716215014458, 0.06717026233673096, 0.041245926171541214, 0.0254608653485775, 0.07485786080360413, 0.048705942928791046, 0.1390356421470642, 0.02084839716553688, 0.1122012659907341], [0.08555824309587479, 0.012860828079283237, 0.0013800828019157052, 0.01657065935432911, 0.036561738699674606, 0.2100527584552765, 0.0518215149641037, 0.1437351405620575, 0.01271758507937193, 0.03040546365082264, 0.010079551488161087, 0.013976512476801872, 0.014728200621902943, 0.010790214873850346, 0.07575465738773346, 0.028509216383099556, 0.2444976270198822], [0.038505762815475464, 0.005737186875194311, 0.0019367239437997341, 0.0032281719613820314, 0.017163604497909546, 0.23412014544010162, 0.03770480304956436, 0.11479192972183228, 0.05804351344704628, 0.10770250111818314, 0.007402497809380293, 0.017237452790141106, 0.014134797267615795, 0.01912730745971203, 0.05488064885139465, 0.015448628924787045, 0.2528343200683594], [0.05235985293984413, 0.0065042064525187016, 0.0023693712428212166, 0.003372223349288106, 0.011047071777284145, 0.05798058211803436, 0.13100649416446686, 0.1330486685037613, 0.04915914312005043, 0.12162300944328308, 0.0350341722369194, 0.03528175130486488, 0.05414518713951111, 0.05721709504723549, 0.15868909657001495, 0.027998967096209526, 0.0631631389260292], [0.054600466042757034, 0.0042073093354702, 0.0010935959871858358, 0.004768561106175184, 0.016121583059430122, 0.1682511419057846, 0.12185834348201752, 0.08186836540699005, 0.03577876091003418, 0.035834453999996185, 0.010712835006415844, 0.055441971868276596, 0.060392092913389206, 0.04379679262638092, 0.10808856040239334, 0.02368233911693096, 0.1735028773546219], [0.06748948991298676, 0.02536054141819477, 0.004566833842545748, 0.003683896269649267, 0.036538705229759216, 0.16897204518318176, 0.09747646749019623, 0.17401644587516785, 0.028503943234682083, 0.024921312928199768, 0.007320844102650881, 0.03670477494597435, 0.03769008442759514, 0.024842776358127594, 0.045264799147844315, 0.03233839198946953, 0.18430869281291962], [0.029171304777264595, 0.023127183318138123, 0.003436198690906167, 0.0011160725262016058, 0.018896102905273438, 0.0437023900449276, 0.12848632037639618, 0.2787154018878937, 0.02957233414053917, 0.03974200412631035, 0.036329176276922226, 0.10958384722471237, 0.13126938045024872, 0.038817718625068665, 0.018934199586510658, 0.019212616607546806, 0.04988770931959152], [0.09731915593147278, 0.04993699491024017, 0.007266861852258444, 0.035306528210639954, 0.05030687153339386, 0.09760463982820511, 0.11428655683994293, 0.1692209243774414, 0.009827964939177036, 0.05155433714389801, 0.016248159110546112, 0.018166782334446907, 0.02948835864663124, 0.037863314151763916, 0.04987846314907074, 0.03773609176278114, 0.12798795104026794], [0.03602571412920952, 0.022794993594288826, 0.004547761287540197, 0.011149361729621887, 0.017467966303229332, 0.36756208539009094, 0.0053981030359864235, 0.005767327267676592, 0.002126340987160802, 0.0026518446393311024, 0.001038157381117344, 0.0019868682138621807, 0.0017649037763476372, 0.004551583901047707, 0.007085232064127922, 0.011315561830997467, 0.4967661499977112]], [[0.027722345665097237, 0.002608699258416891, 0.0011931118788197637, 0.0065498026087880135, 0.006481471471488476, 0.024163970723748207, 0.2366887927055359, 0.13182199001312256, 0.020971694961190224, 0.05263034999370575, 0.03172558918595314, 0.037662237882614136, 0.02198898047208786, 0.049611896276474, 0.12398241460323334, 0.19101667404174805, 0.03317991644144058], [0.06920420378446579, 0.030698338523507118, 0.036162953823804855, 0.13847079873085022, 0.19565632939338684, 0.1528937667608261, 0.042436905205249786, 0.06309755146503448, 0.008057661354541779, 0.00889039970934391, 0.005059246905148029, 0.0064511410892009735, 0.005705934017896652, 0.007358954753726721, 0.012930335476994514, 0.0319221131503582, 0.18500323593616486], [0.09558229893445969, 0.05368341505527496, 0.060421597212553024, 0.0752883106470108, 0.20020723342895508, 0.1110636442899704, 0.13273866474628448, 0.04859970882534981, 0.013360877521336079, 0.008628440089523792, 0.004617278929799795, 0.013254575431346893, 0.006935986690223217, 0.009518344886600971, 0.008260669186711311, 0.032704226672649384, 0.12513475120067596], [0.12548407912254333, 0.06747536361217499, 0.049400217831134796, 0.03987430781126022, 0.12023648619651794, 0.18158374726772308, 0.07681632041931152, 0.04160238057374954, 0.010429485701024532, 0.00897940807044506, 0.0028077983297407627, 0.008570750243961811, 0.005976859480142593, 0.010952616110444069, 0.016364792361855507, 0.03267489746212959, 0.20077045261859894], [0.07942517101764679, 0.05682402849197388, 0.03284993767738342, 0.08029106259346008, 0.04863063246011734, 0.08422090858221054, 0.17565464973449707, 0.0727757066488266, 0.024036861956119537, 0.04110872745513916, 0.01191236637532711, 0.017407814040780067, 0.01990640163421631, 0.0422978438436985, 0.05057515203952789, 0.06053363159298897, 0.10154900699853897], [0.020776353776454926, 0.005085315555334091, 0.0024721466470509768, 0.005095910280942917, 0.009841572493314743, 0.43366721272468567, 0.00293844286352396, 0.003809408051893115, 0.001735644182190299, 0.0012314253253862262, 0.0007809773087501526, 0.0019122171215713024, 0.0012750551104545593, 0.0026484020054340363, 0.004538868088275194, 0.00713239936158061, 0.4950585663318634], [0.03821013122797012, 0.0032193264923989773, 0.0019693176727741957, 0.005304847378283739, 0.011456437408924103, 0.11761020123958588, 0.06812309473752975, 0.0940166786313057, 0.040978845208883286, 0.04712558165192604, 0.07071632146835327, 0.04312950000166893, 0.035776931792497635, 0.039929334074258804, 0.14718496799468994, 0.08316949754953384, 0.1520790010690689], [0.028970269486308098, 0.008372565731406212, 0.0020240095909684896, 0.003590142820030451, 0.01011162344366312, 0.09166055917739868, 0.025384141132235527, 0.10965269804000854, 0.022431660443544388, 0.04886121302843094, 0.05772148445248604, 0.05074558034539223, 0.0802084356546402, 0.048081230372190475, 0.19692333042621613, 0.10372154414653778, 0.11153945326805115], [0.018515069037675858, 0.0050613777711987495, 0.0011725513031706214, 0.002140927128493786, 0.0038790805265307426, 0.08675755560398102, 0.011514185927808285, 0.06979291141033173, 0.03192775323987007, 0.023653440177440643, 0.0820380449295044, 0.13148024678230286, 0.17928320169448853, 0.054806165397167206, 0.13132847845554352, 0.06219088286161423, 0.1044580414891243], [0.03192289173603058, 0.007876385003328323, 0.0012505524791777134, 0.003822879632934928, 0.005918263457715511, 0.1491129845380783, 0.01818835735321045, 0.06641101837158203, 0.019943390041589737, 0.011592362076044083, 0.04500223696231842, 0.059311773627996445, 0.12740783393383026, 0.04545854777097702, 0.17678438127040863, 0.05072435364127159, 0.17927180230617523], [0.02670205384492874, 0.007263219449669123, 0.0035157131496816874, 0.002552345860749483, 0.006217120215296745, 0.12444018572568893, 0.007972805760800838, 0.03694235160946846, 0.055799826979637146, 0.01933998428285122, 0.05596720054745674, 0.12818369269371033, 0.1144745871424675, 0.03546345606446266, 0.1844068169593811, 0.05455457791686058, 0.13620400428771973], [0.02630387432873249, 0.0053362371399998665, 0.0034246041905134916, 0.0020664758048951626, 0.0041642216965556145, 0.09990985691547394, 0.022815192118287086, 0.026452012360095978, 0.04375532269477844, 0.04256710410118103, 0.04027430713176727, 0.1042952761054039, 0.08565443009138107, 0.06584269553422928, 0.2180211991071701, 0.09561207890510559, 0.11350507289171219], [0.02836085669696331, 0.00505027174949646, 0.007600605022162199, 0.0034824497997760773, 0.004508791491389275, 0.24740152060985565, 0.01933136396110058, 0.00877578929066658, 0.020523840561509132, 0.02025737054646015, 0.020704779773950577, 0.10454870760440826, 0.057393722236156464, 0.046236757189035416, 0.08392968028783798, 0.05597618222236633, 0.26591727137565613], [0.05911236256361008, 0.010135146789252758, 0.005863134283572435, 0.01500307209789753, 0.011597918346524239, 0.28426408767700195, 0.01783248782157898, 0.015506954863667488, 0.010795955546200275, 0.015016334131360054, 0.01088663563132286, 0.022512640804052353, 0.020109940320253372, 0.029291674494743347, 0.042610060423612595, 0.08009511232376099, 0.3493664860725403], [0.09140419214963913, 0.023027721792459488, 0.010873368941247463, 0.02142084389925003, 0.013995018787682056, 0.2032656967639923, 0.045083317905664444, 0.06873741745948792, 0.02068495564162731, 0.020681975409388542, 0.020944766700267792, 0.02407619170844555, 0.02850938029587269, 0.03699304163455963, 0.06509353220462799, 0.05863220617175102, 0.2465764582157135], [0.06938353925943375, 0.02451932057738304, 0.016103388741612434, 0.017604833468794823, 0.018006162717938423, 0.30572637915611267, 0.02662801742553711, 0.019331978633999825, 0.0075568244792521, 0.009254107251763344, 0.0037041502073407173, 0.006272972095757723, 0.008994044736027718, 0.019839944317936897, 0.025495504960417747, 0.050445571541786194, 0.3711332082748413], [0.023564791306853294, 0.005679330322891474, 0.003266617888584733, 0.005758908111602068, 0.01084749773144722, 0.4280085563659668, 0.003697563661262393, 0.004531743470579386, 0.0021419497206807137, 0.0014764161314815283, 0.000958077609539032, 0.0025637811049818993, 0.0017013755859807134, 0.0034800798166543245, 0.005586019717156887, 0.008708234876394272, 0.4880290925502777]], [[0.008645211346447468, 0.04782893508672714, 0.08613535016775131, 0.48929792642593384, 0.19721592962741852, 0.05172480642795563, 0.0030072738882154226, 0.002452721120789647, 0.0015345048159360886, 0.002874932251870632, 0.0008704072679392993, 0.0006102505140006542, 0.001079111942090094, 0.01411605067551136, 0.02041601948440075, 0.013615654781460762, 0.058575015515089035], [0.02988838031888008, 0.0355505645275116, 0.0075247520580887794, 0.019634433090686798, 0.020389920100569725, 0.41529005765914917, 0.0033842287957668304, 0.004179829731583595, 0.0009643445955589414, 0.0021166775841265917, 0.0012617490720003843, 0.00238970248028636, 0.002568491268903017, 0.004627779591828585, 0.005205658730119467, 0.013453465886414051, 0.4315698444843292], [0.03334727883338928, 0.22097842395305634, 0.053220946341753006, 0.06711910665035248, 0.03719435632228851, 0.25318974256515503, 0.00800024438649416, 0.0035307772923260927, 0.0004929084680043161, 0.001206458080559969, 0.001045672339387238, 0.0021392833441495895, 0.0036161502357572317, 0.007040669675916433, 0.004904432687908411, 0.011786898598074913, 0.291186660528183], [0.027762915939092636, 0.20713505148887634, 0.10023646801710129, 0.09081380069255829, 0.06204201281070709, 0.2144792526960373, 0.008850817568600178, 0.002606244757771492, 0.000718346273060888, 0.0013048216933384538, 0.0009207537514157593, 0.0011506415903568268, 0.0020574138034135103, 0.00862132664769888, 0.0070547196082770824, 0.015913812443614006, 0.24833163619041443], [0.018486209213733673, 0.16721290349960327, 0.188447967171669, 0.3854222297668457, 0.059551943093538284, 0.059999655932188034, 0.008978190831840038, 0.0033489270135760307, 0.0007019254262559116, 0.0020999053958803415, 0.0012206623796373606, 0.0009047752828337252, 0.0019839874003082514, 0.009570549242198467, 0.010531497187912464, 0.009929793886840343, 0.07160893827676773], [0.025323014706373215, 0.016039131209254265, 0.0018541754689067602, 0.003004149766638875, 0.00774909695610404, 0.42632174491882324, 0.0026246989145874977, 0.00877316389232874, 0.0014519098913297057, 0.0014233604306355119, 0.000751917134039104, 0.0011724064825102687, 0.0011226758360862732, 0.002336113480851054, 0.003698789980262518, 0.008264378644526005, 0.4880892336368561], [0.05685785040259361, 0.03464340418577194, 0.012623701244592667, 0.13507196307182312, 0.049056269228458405, 0.3113221824169159, 0.018090669065713882, 0.0148750189691782, 0.001658424618653953, 0.005748277064412832, 0.0006297705695033073, 0.001495872507803142, 0.0035090558230876923, 0.008993914350867271, 0.009511906653642654, 0.005614614579826593, 0.3302970230579376], [0.16570590436458588, 0.0535641573369503, 0.004291354678571224, 0.029158560559153557, 0.07670307904481888, 0.2247588336467743, 0.07958808541297913, 0.07710469514131546, 0.005863775499165058, 0.009001906961202621, 0.0022193468175828457, 0.0014918922679498792, 0.002139253308996558, 0.0052993749268352985, 0.011927863582968712, 0.0149214593693614, 0.23626042902469635], [0.11030079424381256, 0.024026378989219666, 0.001170043251477182, 0.013728552497923374, 0.03516272082924843, 0.1823432296514511, 0.19341668486595154, 0.10472191870212555, 0.023587556555867195, 0.03400668501853943, 0.009288730099797249, 0.010871941223740578, 0.014820794574916363, 0.01472009252756834, 0.015443801879882812, 0.010710841044783592, 0.20167921483516693], [0.06509155035018921, 0.004609242081642151, 0.0002753945009317249, 0.0026937955990433693, 0.00920192338526249, 0.32937708497047424, 0.03801718354225159, 0.036527592688798904, 0.0510849766433239, 0.03202858194708824, 0.005508856847882271, 0.009671702049672604, 0.009895053692162037, 0.01381279993802309, 0.024561014026403427, 0.011860622093081474, 0.35578253865242004], [0.03334939479827881, 0.0006988302920944989, 0.00012132222764194012, 0.0016517729964107275, 0.0034102245699614286, 0.16604416072368622, 0.03245437145233154, 0.0305287204682827, 0.22815652191638947, 0.21109764277935028, 0.015421733260154724, 0.02324128895998001, 0.022190142422914505, 0.01826002448797226, 0.030105503275990486, 0.007553428877145052, 0.17571483552455902], [0.04776649549603462, 0.006314534693956375, 0.0009151394478976727, 0.004754307679831982, 0.012890697456896305, 0.11091911792755127, 0.08382141590118408, 0.11954990029335022, 0.09190652519464493, 0.21361194550991058, 0.047403350472450256, 0.03985222801566124, 0.03286759555339813, 0.03029564954340458, 0.020731531083583832, 0.011548593640327454, 0.12485098093748093], [0.047683220356702805, 0.002261563902720809, 0.00040778302354738116, 0.002552252495661378, 0.012449086643755436, 0.21811053156852722, 0.03418081998825073, 0.06197187677025795, 0.044288117438554764, 0.11112614721059799, 0.04662761464715004, 0.07175391167402267, 0.03156277909874916, 0.026848869398236275, 0.02953982725739479, 0.01553345751017332, 0.2431020885705948], [0.04629248008131981, 0.00480361795052886, 0.0007504948298446834, 0.004676584154367447, 0.0148331169039011, 0.222198948264122, 0.03400018811225891, 0.0471692718565464, 0.020021799951791763, 0.047079309821128845, 0.0584133118391037, 0.06743128597736359, 0.0595165491104126, 0.07646641880273819, 0.028487201780080795, 0.01734623685479164, 0.2505131661891937], [0.017541706562042236, 0.0028752528596669436, 0.0004503072705119848, 0.0019510999554768205, 0.003255285322666168, 0.04689054936170578, 0.02793695218861103, 0.09759888052940369, 0.029616758227348328, 0.056809201836586, 0.11852690577507019, 0.17171302437782288, 0.22803907096385956, 0.096123605966568, 0.03453417867422104, 0.010747283697128296, 0.05538995563983917], [0.06368274986743927, 0.01246542390435934, 0.0028323065489530563, 0.02110467292368412, 0.014252766035497189, 0.17456676065921783, 0.04049629718065262, 0.07070911675691605, 0.01799231953918934, 0.04805271700024605, 0.028660040348768234, 0.048338260501623154, 0.06091880425810814, 0.08236296474933624, 0.06385068595409393, 0.037610553205013275, 0.21210357546806335], [0.027144065126776695, 0.016545291990041733, 0.0023978655226528645, 0.0036987389903515577, 0.009165016934275627, 0.42235228419303894, 0.002971264999359846, 0.009424659423530102, 0.0016756865661591291, 0.0017641506856307387, 0.0008903141715563834, 0.0014674222329631448, 0.0014773256843909621, 0.002979898825287819, 0.004510100930929184, 0.009243830107152462, 0.4822922348976135]], [[0.05191999301314354, 0.014255331829190254, 0.0035874417517334223, 0.03139149025082588, 0.08180756121873856, 0.37349027395248413, 0.00033548130886629224, 0.0023680177982896566, 5.908963066758588e-05, 0.00039356909110210836, 0.00021059726714156568, 3.6778954381588846e-05, 0.0002796078915707767, 0.0011951514752581716, 0.0009101129835471511, 0.01202775351703167, 0.42573174834251404], [0.015549421310424805, 0.06168118119239807, 0.0011013116454705596, 0.002523562638089061, 0.021597890183329582, 0.35163265466690063, 0.00871447753161192, 0.02512802742421627, 0.001428153715096414, 0.022601909935474396, 0.0026177475228905678, 0.0013516085455194116, 0.0017262969631701708, 0.0028990611899644136, 0.010749733075499535, 0.023977559059858322, 0.44471946358680725], [0.004535372368991375, 0.0031185373663902283, 0.17204871773719788, 0.0017646197229623795, 0.0018606308149173856, 0.24083130061626434, 0.006176111754029989, 0.0214450154453516, 0.006081035360693932, 0.012790355831384659, 0.00940798781812191, 0.18770061433315277, 0.03343801200389862, 0.0014755306765437126, 0.0013561553787440062, 0.00770909246057272, 0.28826096653938293], [0.024112286046147346, 0.0007701275171712041, 0.00035039964132010937, 0.11639436334371567, 0.007864966988563538, 0.3666888475418091, 0.0025756957475095987, 0.0007488370756618679, 0.0011771982535719872, 0.0062758284620940685, 0.0002708795655053109, 0.000612010364420712, 0.00022934931621421129, 0.00021601551270578057, 0.02077621966600418, 0.038459111005067825, 0.412477970123291], [0.030768366530537605, 0.017599979415535927, 0.004344018176198006, 0.01740458980202675, 0.05898961052298546, 0.3385351896286011, 0.006641630083322525, 0.017107922583818436, 0.0012339253444224596, 0.01630072109401226, 0.0037556965835392475, 0.0032562478445470333, 0.003951870836317539, 0.007927974686026573, 0.018879102542996407, 0.061596326529979706, 0.39170676469802856], [0.014106005430221558, 0.004514920059591532, 0.0016692887293174863, 0.0017052266048267484, 0.0049047875218093395, 0.4425371587276459, 0.00799903366714716, 0.005928941071033478, 0.003396865213289857, 0.005228962283581495, 0.0010950412834063172, 0.0012453634990379214, 0.0013107541017234325, 0.003290631342679262, 0.002474931301549077, 0.010142022743821144, 0.4884501099586487], [0.005463538691401482, 0.002639015670865774, 0.000663106853608042, 0.0009406644967384636, 0.009307212196290493, 0.44044944643974304, 0.012048356235027313, 0.0017358817858621478, 0.0006803144933655858, 0.0008485452854074538, 0.0004985260893590748, 0.0002663476625457406, 0.00016584651893936098, 0.0005537021206691861, 0.0003871372027788311, 0.002084980020299554, 0.5212674140930176], [0.019435008987784386, 0.01791595108807087, 0.002980574732646346, 0.0010654041543602943, 0.011120808310806751, 0.3565709590911865, 0.004250059835612774, 0.1667121797800064, 0.0009375624358654022, 0.001287490944378078, 0.0006902505992911756, 0.0009206439717672765, 0.00022143422393128276, 0.0007146734278649092, 0.0008348779520019889, 0.005603932309895754, 0.4087381064891815], [0.008245502598583698, 0.0002631572133395821, 0.005814468953758478, 0.003377441316843033, 0.005895813461393118, 0.4235056936740875, 0.0009812196949496865, 0.0004054324817843735, 0.044997651129961014, 0.00110890984069556, 6.726561696268618e-05, 0.0008497710805386305, 9.243149543181062e-05, 0.00033141201129183173, 0.00033571329549886286, 0.0010592115577310324, 0.5026689171791077], [0.033323951065540314, 0.0065187872387468815, 0.0032458368223160505, 0.01566525362432003, 0.0843026414513588, 0.3787045478820801, 0.000782553746830672, 0.00017295608995482326, 0.0008915740181691945, 0.031756509095430374, 0.00013409004895947874, 3.247511631343514e-05, 9.966051038645674e-06, 7.36237780074589e-05, 0.0005503194406628609, 0.0030835154466331005, 0.44075149297714233], [0.021165408194065094, 0.0016060261987149715, 0.008765303529798985, 0.0012179170735180378, 0.028876373544335365, 0.38972029089927673, 0.004008492920547724, 0.001083330367691815, 0.0007665737648494542, 0.0014606387121602893, 0.024690721184015274, 0.001150496886111796, 0.00044855434680357575, 8.803277887636796e-05, 6.264321564231068e-05, 0.003336058696731925, 0.511553168296814], [0.009027846157550812, 0.0026001213118433952, 0.16567373275756836, 0.0020351852290332317, 0.006141344550997019, 0.205255925655365, 0.0036134826950728893, 0.0034916105214506388, 0.0037910854443907738, 0.0009795700898393989, 0.0027059942949563265, 0.3072371482849121, 0.0072919148951768875, 0.0016667203744873405, 0.0003867301275022328, 0.0019935593008995056, 0.2761080265045166], [0.010423285886645317, 0.0007667701574973762, 0.005594474729150534, 0.000575728714466095, 0.008748438209295273, 0.3793868124485016, 0.0009168271790258586, 0.0003720024542417377, 0.00015351938782259822, 0.00013916738680563867, 0.00033431677729822695, 0.0017945144791156054, 0.03204590454697609, 0.0014935032231733203, 0.00016295006207656115, 0.0022349499631673098, 0.5548567175865173], [0.010900147259235382, 0.0008977745310403407, 0.000748897495213896, 0.0005548822809942067, 0.007206144277006388, 0.3440284729003906, 0.0005306698731146753, 8.566595352021977e-05, 0.00031120565836317837, 3.065755299758166e-05, 4.014873411506414e-06, 0.0001820387551560998, 0.00024557544384151697, 0.14241556823253632, 0.0016902461647987366, 0.003920259885489941, 0.48624780774116516], [0.035971906036138535, 0.00959521159529686, 0.00038137787487357855, 0.002910920884460211, 0.015553577803075314, 0.39261114597320557, 0.0012642333749681711, 0.0009421565919183195, 0.0005561434081755579, 0.000710071122739464, 1.8390293917036615e-05, 8.746718231122941e-05, 0.00012226306716911495, 0.0023986108135432005, 0.04176166653633118, 0.012600825168192387, 0.4825139343738556], [0.03947310894727707, 0.006518223322927952, 0.002951619680970907, 0.009039818309247494, 0.05021350830793381, 0.40014445781707764, 0.0014636870473623276, 0.0019196401117369533, 0.0005032957415096462, 0.0015808693133294582, 0.00015136500587686896, 0.0003266984422225505, 0.0004305561014916748, 0.0017862111562862992, 0.0037079891189932823, 0.028571993112564087, 0.45121705532073975], [0.015843268483877182, 0.006004801485687494, 0.002095157979056239, 0.0023132706992328167, 0.00629804190248251, 0.43657729029655457, 0.007696131709963083, 0.006017404608428478, 0.0028867253568023443, 0.005069043021649122, 0.0012522004544734955, 0.0012091058306396008, 0.0016009474638849497, 0.004051181022077799, 0.0025391385424882174, 0.01007365807890892, 0.4884726405143738]], [[0.04012926295399666, 0.0625835582613945, 0.007591774221509695, 0.06549941003322601, 0.15970522165298462, 0.21919485926628113, 0.012750320136547089, 0.023709475994110107, 0.001000423333607614, 0.0038404185324907303, 0.0023164045996963978, 0.0015962122706696391, 0.0020872754976153374, 0.009448248893022537, 0.04568268731236458, 0.07916831225156784, 0.2636961340904236], [0.0377076081931591, 0.054996415972709656, 0.001860421267338097, 0.014137010090053082, 0.01233983039855957, 0.393696129322052, 0.0024536680430173874, 0.003907914273440838, 0.0002888082235585898, 0.0002776433830149472, 7.565948908450082e-05, 0.0005895976210013032, 0.0022658228408545256, 0.004766677040606737, 0.004681476391851902, 0.008333711884915829, 0.4576215147972107], [0.02350740320980549, 0.3547515571117401, 0.026527799665927887, 0.09480781853199005, 0.05057695135474205, 0.16447311639785767, 0.0057240561582148075, 0.012983843684196472, 0.00024267964181490242, 0.0006289551383815706, 3.744293644558638e-05, 0.00013619509991258383, 0.0009121514158323407, 0.012991889379918575, 0.04290191829204559, 0.016308225691318512, 0.19248799979686737], [0.03184793144464493, 0.07808099687099457, 0.02095477655529976, 0.029869139194488525, 0.12214790284633636, 0.312808096408844, 0.004581349901854992, 0.003076745430007577, 0.00039467273745685816, 0.00044760937453247607, 0.0001173545460915193, 0.00010598379594739527, 0.0004625602741725743, 0.0020175864920020103, 0.008411779068410397, 0.023264439776539803, 0.36141112446784973], [0.02637428417801857, 0.06162627413868904, 0.041012778878211975, 0.3154652714729309, 0.04300021007657051, 0.2139255404472351, 0.005172719247639179, 0.004200192634016275, 0.00037968726246617734, 0.0009385652374476194, 0.0002279382897540927, 0.0007027920801192522, 0.0014892217004671693, 0.007568393833935261, 0.026556288823485374, 0.00804030429571867, 0.24331951141357422], [0.04464123398065567, 0.00977512076497078, 0.003254235489293933, 0.0034214172046631575, 0.014485078863799572, 0.3988734185695648, 0.0027124553453177214, 0.004710639826953411, 0.0021521863527595997, 0.0012787291780114174, 0.00035609983024187386, 0.00242409436032176, 0.002208598190918565, 0.004015914164483547, 0.002906193258240819, 0.013317028991878033, 0.48946765065193176], [0.06945369392633438, 0.05172627791762352, 0.016521094366908073, 0.276468962430954, 0.039755165576934814, 0.18912504613399506, 0.027639908716082573, 0.0710172951221466, 0.0035759147722274065, 0.003282082499936223, 0.0007072772714309394, 0.003016309579834342, 0.005329236853867769, 0.006211283151060343, 0.015465566888451576, 0.003245745087042451, 0.21745915710926056], [0.07115773111581802, 0.04742471128702164, 0.0027664434164762497, 0.03342388570308685, 0.032722409814596176, 0.31098830699920654, 0.04856519401073456, 0.026563897728919983, 0.005424769129604101, 0.0036525363102555275, 0.0006695837364532053, 0.0033160632010549307, 0.01136943232268095, 0.01985359936952591, 0.03803249076008797, 0.00977515522390604, 0.3342938721179962], [0.02457723766565323, 0.03618861362338066, 0.0006892344099469483, 0.008819745853543282, 0.012080410495400429, 0.12211072444915771, 0.05740775913000107, 0.4106515049934387, 0.00921719428151846, 0.03591976687312126, 0.0037448301445692778, 0.007587548345327377, 0.023898491635918617, 0.04400986060500145, 0.059336107224226, 0.008576562628149986, 0.13518449664115906], [0.019048575311899185, 0.01007205992937088, 0.0011648653307929635, 0.00925432424992323, 0.00933525338768959, 0.25338029861450195, 0.017104508355259895, 0.0677204504609108, 0.06261308491230011, 0.1049933210015297, 0.002155286492779851, 0.010569268837571144, 0.020591383799910545, 0.04326753318309784, 0.0652947798371315, 0.0156876053661108, 0.28774741291999817], [0.0018327947473153472, 0.000495635555125773, 0.00015822317800484598, 0.0032250788062810898, 0.0006659876089543104, 0.025898773223161697, 0.0037400389555841684, 0.026626868173480034, 0.058951880782842636, 0.792058527469635, 0.006684870924800634, 0.014103013090789318, 0.005658924113959074, 0.013223288580775261, 0.01505964808166027, 0.00133261748123914, 0.03028394654393196], [0.014809058047831059, 0.004701316822320223, 0.0006862141308374703, 0.011010400950908661, 0.010077212005853653, 0.12369426339864731, 0.014606540091335773, 0.09463223814964294, 0.022648578509688377, 0.11246160417795181, 0.01630067080259323, 0.037770118564367294, 0.05066262558102608, 0.13698609173297882, 0.19301339983940125, 0.015935465693473816, 0.1400042474269867], [0.0024572110269218683, 0.0006032480741851032, 0.0003749581810552627, 0.004957485944032669, 0.0022179719526320696, 0.06223900616168976, 0.0014243967598304152, 0.008473986759781837, 0.008068840950727463, 0.06380912661552429, 0.008250881917774677, 0.14069022238254547, 0.05015256255865097, 0.4692787826061249, 0.10540144890546799, 0.0043213642202317715, 0.06727848201990128], [0.01089535839855671, 0.003285595215857029, 0.0005082603893242776, 0.0018164560897275805, 0.008617360144853592, 0.33047932386398315, 0.004251247737556696, 0.025561193004250526, 0.0139682088047266, 0.013085538521409035, 0.012163273058831692, 0.05098017305135727, 0.08389817178249359, 0.054987091571092606, 0.020171763375401497, 0.01851046271622181, 0.346820592880249], [0.006680815946310759, 0.0016694952500984073, 0.0004559082444757223, 0.0018594095017760992, 0.00216368748806417, 0.0822250247001648, 0.005736463703215122, 0.009113679639995098, 0.006241751369088888, 0.01583021692931652, 0.00747113861143589, 0.040249940007925034, 0.2219374030828476, 0.43727830052375793, 0.05628252774477005, 0.010220151394605637, 0.094584159553051], [0.03654547408223152, 0.012335815466940403, 0.0020026687998324633, 0.025427011772990227, 0.008904581889510155, 0.2842395603656769, 0.00425956305116415, 0.008019527420401573, 0.0016712567303329706, 0.005212876945734024, 0.001343442709185183, 0.008010130375623703, 0.019817695021629333, 0.04405208304524422, 0.15196844935417175, 0.03082386776804924, 0.3553660213947296], [0.04448375105857849, 0.010896026156842709, 0.004029369447380304, 0.0040903883054852486, 0.016114743426442146, 0.3940673768520355, 0.0030035870149731636, 0.005241914186626673, 0.0026686813216656446, 0.0017058642115443945, 0.00043277107761241496, 0.0029247046913951635, 0.0029099523089826107, 0.00515971053391695, 0.0038690485525876284, 0.015710266306996346, 0.48269185423851013]], [[0.011745928786695004, 0.0062329769134521484, 0.0010027594398707151, 0.005914890673011541, 0.0011800754582509398, 0.013179422356188297, 0.03167868033051491, 0.08151928335428238, 0.002928894478827715, 0.08667372912168503, 0.01892264187335968, 0.022633865475654602, 0.05012677609920502, 0.22344458103179932, 0.3924691379070282, 0.03125333413481712, 0.019093068316578865], [0.0701994001865387, 0.037097081542015076, 0.014195121824741364, 0.0786680281162262, 0.06663282960653305, 0.2862122058868408, 0.005684569012373686, 0.005245870444923639, 0.003238614648580551, 0.0068922569043934345, 0.0025749593041837215, 0.0018932876409962773, 0.007599738892167807, 0.01822536252439022, 0.024241870269179344, 0.03455154970288277, 0.33684730529785156], [0.03346171975135803, 0.07137329876422882, 0.015068628825247288, 0.4049472212791443, 0.060258716344833374, 0.05032085254788399, 0.029220987111330032, 0.016237014904618263, 0.002288706600666046, 0.02731616422533989, 0.0037741432897746563, 0.0034451396204531193, 0.02440538816154003, 0.12248725444078445, 0.04476483166217804, 0.02582969143986702, 0.06480032950639725], [0.044429413974285126, 0.05432059243321419, 0.025126906111836433, 0.09452318400144577, 0.08756448328495026, 0.2692755162715912, 0.007934557273983955, 0.008769693784415722, 0.001748312497511506, 0.007920578122138977, 0.0015911280643194914, 0.0024415566585958004, 0.00499425083398819, 0.016298804432153702, 0.0193299762904644, 0.02585052140057087, 0.32788053154945374], [0.03676027059555054, 0.12432157248258591, 0.013099239207804203, 0.3400425910949707, 0.11064024269580841, 0.03181346878409386, 0.003505702828988433, 0.02007620595395565, 0.0007105794502422214, 0.010992540046572685, 0.0021882192231714725, 0.001955413492396474, 0.007029307074844837, 0.10571878403425217, 0.101249098777771, 0.046254418790340424, 0.043642349541187286], [0.05319398641586304, 0.0023519513197243214, 0.0011821351945400238, 0.001853124238550663, 0.05526569485664368, 0.4031102657318115, 0.003353151259943843, 0.002373545430600643, 0.0013039893237873912, 0.00021416811796370894, 0.0003905228804796934, 0.0004932542215101421, 0.0005200651357881725, 0.0004931441508233547, 0.00041712913662195206, 0.023296602070331573, 0.4501872956752777], [0.05740540474653244, 0.028990739956498146, 0.0030851843766868114, 0.027415571734309196, 0.022122759371995926, 0.13600745797157288, 0.01333904080092907, 0.026594115421175957, 0.0037046829238533974, 0.06886157393455505, 0.0203512255102396, 0.010094146244227886, 0.034956127405166626, 0.11703400313854218, 0.20500023663043976, 0.05730103328824043, 0.1677367389202118], [0.03954058513045311, 0.03585774451494217, 0.002398305106908083, 0.019010888412594795, 0.022684913128614426, 0.07537836581468582, 0.013512923382222652, 0.01906421035528183, 0.005785489920526743, 0.13370230793952942, 0.010432407259941101, 0.010442331433296204, 0.0348869152367115, 0.253010094165802, 0.17767596244812012, 0.052249591797590256, 0.09436690807342529], [0.024345092475414276, 0.006480593699961901, 0.0007575515192002058, 0.01977401040494442, 0.0027428511530160904, 0.039289191365242004, 0.03799010440707207, 0.012622120790183544, 0.00886193010956049, 0.4471181035041809, 0.02045348845422268, 0.02260175347328186, 0.0901544839143753, 0.0745389312505722, 0.12768441438674927, 0.013893851079046726, 0.050691504031419754], [0.05518034100532532, 0.02234932966530323, 0.0019954999443143606, 0.011222252622246742, 0.014506284147500992, 0.08965545892715454, 0.04304124787449837, 0.0321977436542511, 0.008851118385791779, 0.08070135861635208, 0.007833704352378845, 0.02280564233660698, 0.04277501627802849, 0.16130827367305756, 0.20223118364810944, 0.08553429692983627, 0.11781121790409088], [0.05698253959417343, 0.007510640192776918, 0.0034210404846817255, 0.009123348630964756, 0.023947415873408318, 0.16215388476848602, 0.07667281478643417, 0.020434709265828133, 0.014038817025721073, 0.20988065004348755, 0.014508956111967564, 0.046308498829603195, 0.0485721193253994, 0.015636088326573372, 0.03489917889237404, 0.07674001902341843, 0.17916929721832275], [0.033410001546144485, 0.007801820524036884, 0.001961742527782917, 0.012269026599824429, 0.011085418984293938, 0.037616610527038574, 0.05996103212237358, 0.03398968279361725, 0.017606249079108238, 0.24342314898967743, 0.04929006099700928, 0.03247559815645218, 0.15859796106815338, 0.12103674560785294, 0.09386268258094788, 0.04208803549408913, 0.043524209409952164], [0.043718427419662476, 0.022076833993196487, 0.0024787692818790674, 0.016272472217679024, 0.01868523843586445, 0.1182624101638794, 0.04620588570833206, 0.021426822990179062, 0.015412796288728714, 0.09175955504179001, 0.015712235122919083, 0.031452108174562454, 0.05067882314324379, 0.1554744988679886, 0.17699143290519714, 0.032565418630838394, 0.14082634449005127], [0.048032067716121674, 0.05018284544348717, 0.005675525404512882, 0.015573854558169842, 0.03973454609513283, 0.2519073486328125, 0.015249481424689293, 0.01066484022885561, 0.008519903756678104, 0.03239189088344574, 0.004731472115963697, 0.0074173626489937305, 0.025456208735704422, 0.0357888862490654, 0.07625093311071396, 0.06997489184141159, 0.30244797468185425], [0.04763731360435486, 0.032941970974206924, 0.012169847264885902, 0.04466553404927254, 0.019067009910941124, 0.12387130409479141, 0.03320107236504555, 0.022036036476492882, 0.019197234883904457, 0.0957086831331253, 0.011409181170165539, 0.03618469089269638, 0.12101806700229645, 0.14751668274402618, 0.06552694737911224, 0.02024943009018898, 0.14759907126426697], [0.07443181425333023, 0.039984263479709625, 0.003416621359065175, 0.029496757313609123, 0.037923526018857956, 0.06088580936193466, 0.025935888290405273, 0.092855304479599, 0.002555832266807556, 0.0534265898168087, 0.00697892252355814, 0.01339070312678814, 0.018060356378555298, 0.20480607450008392, 0.1480686068534851, 0.10603268444538116, 0.08175020664930344], [0.06257263571023941, 0.002838176442310214, 0.0014556579990312457, 0.0022523461375385523, 0.053589727729558945, 0.39037251472473145, 0.004535827785730362, 0.003297677729278803, 0.001661572139710188, 0.0003358593676239252, 0.0005102029535919428, 0.000740567222237587, 0.0007953036692924798, 0.0008185196202248335, 0.0006488313083536923, 0.02910616621375084, 0.44446855783462524]], [[0.053250353783369064, 0.021428143605589867, 0.0051818955689668655, 0.03852960094809532, 0.05926515534520149, 0.35475075244903564, 0.02706008218228817, 0.010832552798092365, 0.001554525806568563, 0.0017375575844198465, 0.002158296760171652, 0.002263802569359541, 0.0015762622933834791, 0.012867536395788193, 0.017971865832805634, 0.015652909874916077, 0.3739188015460968], [0.02728887088596821, 0.019619356840848923, 0.0018268191488459706, 0.002478045644238591, 0.1122383177280426, 0.3963495194911957, 0.003447913099080324, 0.0002994124952238053, 3.96566501876805e-05, 2.9089422241668217e-05, 3.2073367037810385e-05, 6.888240750413388e-05, 0.00015664919919800013, 0.0014110432239249349, 0.0007509017596021295, 0.019278980791568756, 0.4146844148635864], [0.0025306076277047396, 0.8742099404335022, 0.0074773384258151054, 0.005336517933756113, 0.009488888084888458, 0.03830445930361748, 0.003361170180141926, 0.009635872207581997, 9.034978575073183e-05, 7.168793672462925e-05, 2.886229776777327e-05, 9.970178325602319e-06, 1.7221436792169698e-05, 0.0006350796320475638, 0.0006408249610103667, 0.0033748564310371876, 0.04478636011481285], [0.03913715109229088, 0.3518241345882416, 0.08090449869632721, 0.024909213185310364, 0.06495244801044464, 0.18606765568256378, 0.014269761741161346, 0.013612354174256325, 0.0012211980065330863, 0.0006023223977535963, 0.00035852738074027, 0.00021181580086704344, 0.001009089406579733, 0.002576107159256935, 0.0023510814644396305, 0.01063949428498745, 0.20535315573215485], [0.022622141987085342, 0.028696060180664062, 0.008487414568662643, 0.25713735818862915, 0.06655583530664444, 0.298642635345459, 0.005443311762064695, 0.00122064130846411, 0.00013210336328484118, 0.00014246763021219522, 0.0003483048640191555, 0.0003663350944407284, 0.00018647398974280804, 0.0013178433291614056, 0.016357755288481712, 0.006659823469817638, 0.28568339347839355], [0.04320772737264633, 0.01363128051161766, 0.003697984153404832, 0.00567106157541275, 0.02094758115708828, 0.3958369195461273, 0.007210877723991871, 0.00426508579403162, 0.003932990599423647, 0.0038640983402729034, 0.0010566951241344213, 0.0035510044544935226, 0.002011870266869664, 0.004863417241722345, 0.003153191413730383, 0.02494625933468342, 0.45815202593803406], [0.07683917135000229, 0.01164943352341652, 0.00069064786657691, 0.012122392654418945, 0.4605494439601898, 0.19931913912296295, 0.02240915596485138, 0.012339919805526733, 0.00010238853428745642, 9.928987128660083e-05, 0.00017886771820485592, 5.392646562540904e-05, 0.00014452349569182843, 0.0005670564714819193, 0.001960291061550379, 0.014046681113541126, 0.18692773580551147], [0.07459123432636261, 0.015138261951506138, 0.0004293913079891354, 0.0017556094098836184, 0.07147229462862015, 0.2680170238018036, 0.24318672716617584, 0.027971047908067703, 0.0040589296258986, 0.0016729008639231324, 0.0020964236464351416, 0.0009244972607120872, 0.0015229720156639814, 0.003077390603721142, 0.005454137921333313, 0.012955457903444767, 0.2656756639480591], [0.008695850148797035, 0.020575303584337234, 0.00021642967476509511, 0.0005405689589679241, 0.011086690239608288, 0.04562556743621826, 0.03793047368526459, 0.7878344655036926, 0.0047247689217329025, 0.0038913919124752283, 0.0046172477304935455, 0.001146626309491694, 0.00239961058832705, 0.006326477508991957, 0.004127529915422201, 0.005935367196798325, 0.054325591772794724], [0.014313812367618084, 0.0047895293682813644, 0.0016971968580037355, 0.002722910838201642, 0.001963056158274412, 0.13007432222366333, 0.01570127345621586, 0.04424270614981651, 0.4869479238986969, 0.0914095938205719, 0.005859155207872391, 0.007759270258247852, 0.007574169430881739, 0.015686560422182083, 0.013837725855410099, 0.008134693838655949, 0.1472860872745514], [0.0012179415207356215, 3.356791421538219e-05, 0.00010790451051434502, 0.00055761105613783, 9.645488898968324e-05, 0.018041454255580902, 0.002499051159247756, 0.005572240799665451, 0.07690712064504623, 0.8118375539779663, 0.024170363321900368, 0.030805222690105438, 0.0016265593003481627, 0.0010500367498025298, 0.0016980076907202601, 0.0006966270739212632, 0.02308223582804203], [0.005074055399745703, 0.0020129173062741756, 0.0003162375360261649, 0.0008397016208618879, 0.0033861089032143354, 0.04783887416124344, 0.02355002611875534, 0.10809100419282913, 0.033586226403713226, 0.08655618131160736, 0.5165081024169922, 0.0775294303894043, 0.017507176846265793, 0.006648204755038023, 0.007210851646959782, 0.009267927147448063, 0.05407700315117836], [0.0017570822965353727, 0.00037035386776551604, 0.00017048922018148005, 0.00025357099366374314, 0.0007364702178165317, 0.022307343780994415, 0.004825394134968519, 0.010129745118319988, 0.04569286108016968, 0.06786736845970154, 0.1217992976307869, 0.6129242181777954, 0.05887439846992493, 0.016472766175866127, 0.008898674510419369, 0.003173781093209982, 0.023746121674776077], [0.014867233112454414, 0.002547208685427904, 0.00033992898534052074, 0.0006434565293602645, 0.012972514145076275, 0.22387002408504486, 0.017361652106046677, 0.023820921778678894, 0.006810403428971767, 0.00828538741916418, 0.08322378247976303, 0.1116313487291336, 0.17318515479564667, 0.03735863417387009, 0.010601546615362167, 0.027754172682762146, 0.24472659826278687], [0.009065965190529823, 0.004850266966968775, 0.0005334914894774556, 0.001448568538762629, 0.002963123843073845, 0.11445589363574982, 0.011372286826372147, 0.01704123243689537, 0.012076790444552898, 0.00869410578161478, 0.0167878195643425, 0.03377215564250946, 0.18820235133171082, 0.38493385910987854, 0.04224519431591034, 0.0198602806776762, 0.13169671595096588], [0.013280371204018593, 0.0031844291370362043, 0.0007361332536675036, 0.005527934990823269, 0.0027400455437600613, 0.3039664626121521, 0.0014747424283996224, 0.002697115996852517, 0.0008635381236672401, 0.0005646578501909971, 0.0016510221175849438, 0.004215729422867298, 0.004911670461297035, 0.02618507109582424, 0.25625669956207275, 0.03284140303730965, 0.33890300989151], [0.043759070336818695, 0.013434484601020813, 0.0043453313410282135, 0.005763033404946327, 0.018428755924105644, 0.39525169134140015, 0.0075631290674209595, 0.0045519485138356686, 0.004435177892446518, 0.004297436680644751, 0.001225289306603372, 0.004223262891173363, 0.0025303366128355265, 0.0059415302239358425, 0.003771039191633463, 0.024257954210042953, 0.4562205374240875]], [[0.0926532968878746, 0.00046004040632396936, 0.00035326267243362963, 0.0008130265050567687, 0.8712214231491089, 0.00852342788130045, 0.0021018011029809713, 0.0002598184801172465, 6.747120551153785e-06, 5.662566309183603e-06, 7.795164856361225e-05, 0.00012265585246495903, 2.6095891371369362e-05, 2.2662537958240137e-05, 0.0003578004252631217, 0.013750048354268074, 0.009244274348020554], [0.11187947541475296, 0.0005643272888846695, 9.180670531350188e-06, 0.0003416717518121004, 0.21601684391498566, 0.0003150899719912559, 0.0022784743923693895, 7.986877790244762e-06, 5.574295300903032e-07, 2.3511347535531968e-07, 6.977211910452752e-07, 8.42257236399746e-07, 2.1446088794618845e-05, 2.8462138288887218e-05, 0.0003546938532963395, 0.6677358150482178, 0.00044425399391911924], [2.9367118258960545e-05, 0.9977153539657593, 5.016205250285566e-05, 3.817678225459531e-05, 9.885146027954761e-06, 3.567308885976672e-05, 3.578034738893621e-05, 0.001957656815648079, 2.4042893187470327e-07, 9.479920208832482e-07, 2.0074341477993585e-07, 2.3236528257086775e-09, 9.147204771409179e-09, 2.3062068521539913e-06, 2.3425656763720326e-05, 4.9472084356239066e-05, 5.1364197133807465e-05], [1.525736297480762e-05, 6.373680662363768e-05, 0.9995471835136414, 7.818854646757245e-05, 2.4227894755313173e-05, 1.0398165386504843e-06, 1.591152795299422e-05, 5.127908480062615e-06, 0.000204792944714427, 1.6492031136294827e-05, 5.962983351537332e-08, 1.0052843208541162e-05, 3.6153428482066374e-06, 6.267434400797356e-06, 4.360230718702951e-07, 6.231906354514649e-06, 1.3256073998491047e-06], [0.0024384588468819857, 0.000527155410964042, 8.584598981542513e-05, 0.9558300375938416, 0.03012588806450367, 1.528609027445782e-05, 0.0001675835665082559, 8.103293657768518e-05, 5.893506340726162e-07, 3.102894697804004e-05, 8.664417691761628e-06, 1.3743671161137172e-06, 2.95309575903957e-07, 5.590451110037975e-06, 0.010114614851772785, 0.0005485177389346063, 1.8113114492734894e-05], [0.20821800827980042, 0.034929778426885605, 0.022191420197486877, 0.04576757177710533, 0.05104828253388405, 0.20295770466327667, 0.02652614936232567, 0.011855359189212322, 0.012937454506754875, 0.010223855264484882, 0.011441131122410297, 0.01199814397841692, 0.013235358521342278, 0.01863105781376362, 0.024021657183766365, 0.08503022789955139, 0.2089868038892746], [0.6646676659584045, 0.00024785619461908937, 6.502024916699156e-05, 0.001330661354586482, 0.1993982046842575, 0.0015253720339387655, 0.12263227999210358, 0.0016074498416855931, 3.568038664525375e-05, 1.6978667190414853e-05, 0.00017049892630893737, 2.784970092761796e-05, 3.5125602153129876e-05, 6.796187335567083e-06, 3.4882115869550034e-05, 0.006356196478009224, 0.0018416342791169882], [0.013342893682420254, 0.0004165208956692368, 6.733258032909362e-06, 2.7855532607645728e-05, 0.0007168418960645795, 0.00024615839356556535, 0.9684208035469055, 0.011840205639600754, 0.00161682756152004, 0.00016146834241226315, 0.0017900815000757575, 0.000103018268418964, 0.0002168420032830909, 5.3672771173296496e-05, 8.22424262878485e-05, 0.0006699247751384974, 0.00028792174998670816], [1.221595721290214e-05, 0.00016476325981784612, 9.902208830681047e-07, 4.007224774227325e-08, 1.1838096725114156e-06, 4.005611117463559e-05, 0.0023877050261944532, 0.9961560368537903, 0.0001717061677481979, 5.38860731467139e-05, 0.0008643728797324002, 1.3129265425959602e-05, 5.034075729781762e-05, 4.392458777147112e-06, 4.807647655979963e-06, 1.3021689483139198e-05, 6.128435779828578e-05], [6.994079626565508e-08, 2.4331103798402864e-09, 3.6359870136948302e-06, 2.7158431059604027e-09, 2.601890092268633e-10, 6.617530345920386e-08, 2.181204308726592e-06, 9.041176781465765e-06, 0.9969887137413025, 0.0028977326583117247, 1.6686052504155668e-06, 9.410302300238982e-05, 1.2025748219457455e-06, 1.2526678574431571e-06, 8.384046878973095e-08, 1.1751871653586932e-07, 8.4954564272266e-08], [1.662549742320607e-08, 1.2530226856100057e-09, 4.445413281928268e-08, 2.8778120508832217e-07, 2.7811137837119304e-09, 4.701269418205811e-08, 2.5144640858343337e-07, 4.851415269513382e-06, 0.0012034160317853093, 0.9928107857704163, 0.00475648045539856, 0.0012188551481813192, 2.5204674329870613e-06, 5.307360879669432e-07, 1.6419695612057694e-06, 1.2201621757412795e-07, 7.879919650122247e-08], [8.603877176938113e-06, 4.2396681010359316e-07, 8.317471866803317e-08, 1.5444302334799431e-06, 1.8195197526438278e-06, 7.4950939961127006e-06, 0.00031271297484636307, 0.0007197466329671443, 5.653173866448924e-05, 0.000776937638875097, 0.9966487288475037, 0.0012562028132379055, 0.00016039007459767163, 6.2369595070776995e-06, 1.2854679880547337e-05, 1.824102218961343e-05, 1.1437376087997109e-05], [1.480459310698734e-08, 3.030797834924215e-10, 1.0351730850288732e-07, 1.7137667285282987e-08, 1.4538744652625724e-09, 6.049027234666937e-08, 3.0983972010290017e-07, 3.90326874821767e-07, 0.00016521768702659756, 3.5875429603038356e-05, 0.0017030034214258194, 0.9957210421562195, 0.002325708046555519, 4.7563135012751445e-05, 7.487642506021075e-07, 1.6044170436657623e-08, 7.959687309266883e-08], [8.825501936371438e-06, 1.914074232445273e-07, 3.3390674047950597e-07, 3.771733929625043e-07, 1.7470235889049945e-06, 7.0858586695976555e-06, 1.472561234550085e-05, 1.4171697330311872e-05, 6.6230763877683785e-06, 9.572127964929678e-06, 0.001587722566910088, 0.00520247733220458, 0.9925746917724609, 0.0004982539103366435, 3.141670458717272e-05, 3.07433947455138e-05, 1.0905764611379709e-05], [1.6073714732556255e-06, 1.825238655328576e-06, 1.804204543986998e-06, 4.303584773879265e-06, 9.368282860577892e-08, 1.1933590030821506e-05, 2.0312299966462888e-06, 1.2372740457067266e-05, 7.943532546050847e-05, 3.4486329241190106e-05, 9.586257874616422e-06, 0.0002011168107856065, 0.04136361554265022, 0.9513413906097412, 0.006898029241710901, 1.843728023231961e-05, 1.7921207472682e-05], [0.000147324099089019, 0.00012082717876182869, 1.3677829883818049e-05, 0.0027494330424815416, 5.0814887799788266e-05, 0.00010632579505909234, 2.2044445358915254e-05, 0.0005907799350097775, 2.9064140107948333e-05, 0.00020362800569273531, 2.0656885681091808e-05, 6.081096580601297e-05, 0.0003843613376375288, 0.000814493396319449, 0.9932843446731567, 0.0012573250569403172, 0.0001440986670786515], [0.21667754650115967, 0.03320940211415291, 0.03137752413749695, 0.038204025477170944, 0.06109166517853737, 0.18316058814525604, 0.025908105075359344, 0.011678146198391914, 0.016027702018618584, 0.00985539611428976, 0.010340763255953789, 0.013923415914177895, 0.01768583618104458, 0.02242647297680378, 0.029495317488908768, 0.09172210842370987, 0.1872159093618393]], [[0.09732333570718765, 0.04127632454037666, 0.023208238184452057, 0.057158298790454865, 0.05573540925979614, 0.30760130286216736, 0.01831478253006935, 0.014978364109992981, 0.0024387126322835684, 0.0043037645518779755, 0.0020844857208430767, 0.0017909802263602614, 0.004295842722058296, 0.02493487112224102, 0.005773591808974743, 0.026738278567790985, 0.3120434582233429], [0.09845854341983795, 0.04407496005296707, 0.007530024275183678, 0.015846848487854004, 0.021849453449249268, 0.32556861639022827, 0.042993854731321335, 0.026718026027083397, 0.005284250248223543, 0.005674863699823618, 0.00364727177657187, 0.006413675844669342, 0.010040884837508202, 0.011823214590549469, 0.010917755775153637, 0.03290623426437378, 0.3302515149116516], [0.06851168721914291, 0.018066341057419777, 0.059831686317920685, 0.006438723299652338, 0.01560160517692566, 0.3031734228134155, 0.03216887265443802, 0.05196017026901245, 0.03123168833553791, 0.01731545478105545, 0.01398786436766386, 0.023312000557780266, 0.01751467026770115, 0.005855483468621969, 0.007558520883321762, 0.02021077461540699, 0.3072609603404999], [0.08180458843708038, 0.014064254239201546, 0.012886791490018368, 0.007258912082761526, 0.012882008217275143, 0.30230075120925903, 0.1404019594192505, 0.035580698400735855, 0.018969450145959854, 0.011147393845021725, 0.009505057707428932, 0.009060709737241268, 0.007620598189532757, 0.004986701533198357, 0.007573735900223255, 0.026339448988437653, 0.2976168394088745], [0.07077880203723907, 0.028036227449774742, 0.014239185489714146, 0.012333907186985016, 0.012496501207351685, 0.319171667098999, 0.07732761651277542, 0.026361821219325066, 0.016643177717924118, 0.016547538340091705, 0.017972420901060104, 0.01163605134934187, 0.015623289160430431, 0.0081818588078022, 0.015706434845924377, 0.025780832394957542, 0.3111627399921417], [0.051859695464372635, 0.01831630989909172, 0.004769710823893547, 0.010963133536279202, 0.019116848707199097, 0.3681997060775757, 0.009081168100237846, 0.007036424707621336, 0.0076855262741446495, 0.006751721259206533, 0.002001506043598056, 0.004515001550316811, 0.005241168197244406, 0.011781174689531326, 0.008467965759336948, 0.016200561076402664, 0.44801244139671326], [0.0549548976123333, 0.011692343279719353, 0.003616464091464877, 0.003206152468919754, 0.007208489812910557, 0.38803720474243164, 0.027389254420995712, 0.012300672940909863, 0.0030642652418464422, 0.0014829651918262243, 0.006032878067344427, 0.009747900068759918, 0.0031847550999373198, 0.005036674905568361, 0.004296791739761829, 0.03251410275697708, 0.4262342154979706], [0.07178366184234619, 0.044384513050317764, 0.008137227036058903, 0.0016043140785768628, 0.014685566537082195, 0.34020307660102844, 0.025229524821043015, 0.05172078311443329, 0.011804723180830479, 0.0030743929091840982, 0.01102338545024395, 0.015400917269289494, 0.0076885707676410675, 0.00419873371720314, 0.006323227193206549, 0.03369784727692604, 0.3490394949913025], [0.056732580065727234, 0.015820061787962914, 0.00840391032397747, 0.003950423561036587, 0.02454390935599804, 0.38285884261131287, 0.012500878423452377, 0.024154962971806526, 0.00596994161605835, 0.005049371626228094, 0.00629060436040163, 0.014101812615990639, 0.00261095748282969, 0.006178299896419048, 0.003931492567062378, 0.040221069008111954, 0.3866809010505676], [0.022904135286808014, 0.005670115817338228, 0.001361885224469006, 0.001562978606671095, 0.00778204295784235, 0.4644013047218323, 0.011860947124660015, 0.005685209296643734, 0.0029658142011612654, 0.0015787059674039483, 0.005924267694354057, 0.0055916449055075645, 0.0034634883049875498, 0.002648472087457776, 0.002462671371176839, 0.023442110046744347, 0.43069419264793396], [0.040095649659633636, 0.006425333209335804, 0.003142740810289979, 0.0035530230961740017, 0.007168014533817768, 0.391705721616745, 0.00778802577406168, 0.006487422622740269, 0.008368288166821003, 0.004897934850305319, 0.011017621494829655, 0.016448643058538437, 0.0033594383858144283, 0.00477882893756032, 0.003701729467138648, 0.04286150261759758, 0.4382001757621765], [0.06030392646789551, 0.007553019095212221, 0.007140674628317356, 0.00279225897975266, 0.009096208028495312, 0.37079671025276184, 0.009127539582550526, 0.011710272170603275, 0.0070053632371127605, 0.0042723617516458035, 0.012757772579789162, 0.026721807196736336, 0.008693136274814606, 0.009204806759953499, 0.008133744820952415, 0.060704801231622696, 0.38398563861846924], [0.022360436618328094, 0.0048698182217776775, 0.010318665765225887, 0.00399829400703311, 0.0056510381400585175, 0.3615722954273224, 0.02059074491262436, 0.006513659842312336, 0.006111196707934141, 0.007258197758346796, 0.021024445071816444, 0.0340309664607048, 0.012791580520570278, 0.013004436157643795, 0.007146678399294615, 0.037213653326034546, 0.4255439341068268], [0.028450308367609978, 0.005516668315976858, 0.003376757726073265, 0.0008683850755915046, 0.004381790291517973, 0.40500736236572266, 0.03273956850171089, 0.003111417405307293, 0.002854679711163044, 0.002465152181684971, 0.0127633111551404, 0.018010159954428673, 0.011485375463962555, 0.007595574948936701, 0.0022994624450802803, 0.026669900864362717, 0.43240413069725037], [0.044305235147476196, 0.014054586179554462, 0.005724434275180101, 0.0019015277503058314, 0.006490947213023901, 0.3521500825881958, 0.033324822783470154, 0.016051923856139183, 0.01720915548503399, 0.0066710831597447395, 0.022578081116080284, 0.032569412142038345, 0.014521765522658825, 0.010573308914899826, 0.011057153344154358, 0.03270983695983887, 0.37810665369033813], [0.07964763045310974, 0.02863367274403572, 0.0025074949953705072, 0.0037267161533236504, 0.0063338554464280605, 0.36446404457092285, 0.0495673306286335, 0.018979158252477646, 0.0075148241594433784, 0.0035296776331961155, 0.007775275036692619, 0.009063326753675938, 0.005064904689788818, 0.005626440513879061, 0.00633964454755187, 0.03804650157690048, 0.3631795644760132], [0.049046412110328674, 0.016938339918851852, 0.005616047885268927, 0.010768730193376541, 0.016673898324370384, 0.37273696064949036, 0.008753039874136448, 0.006881519686430693, 0.007170061580836773, 0.0064485645852983, 0.002416576026007533, 0.0048516616225242615, 0.006557590328156948, 0.012424547225236893, 0.00803079642355442, 0.01757935620844364, 0.44710588455200195]], [[0.047602828592061996, 0.0199678223580122, 0.0024183657951653004, 0.007238134741783142, 0.008302741684019566, 0.1616302728652954, 0.39857152104377747, 0.0885252133011818, 0.006599934305995703, 0.009145625866949558, 0.0009747584699653089, 0.007490368559956551, 0.0035602992866188288, 0.004321693908423185, 0.004350475035607815, 0.026812784373760223, 0.20248718559741974], [0.052399907261133194, 0.04461914300918579, 0.09994984418153763, 0.09529820829629898, 0.155148446559906, 0.2263060361146927, 0.04181867465376854, 0.02087537571787834, 0.007228192873299122, 0.0011977177346125245, 6.962334737181664e-05, 0.0005064155557192862, 0.00023312572739087045, 0.0006550892721861601, 0.0016988498391583562, 0.018294641748070717, 0.23370061814785004], [0.016402827575802803, 0.012914055958390236, 0.015045600943267345, 0.518268346786499, 0.30574116110801697, 0.03377016633749008, 0.04442569613456726, 0.003332435851916671, 0.00045751480502076447, 0.0008537363028153777, 9.583941573509946e-05, 0.00023041384702082723, 0.00040749178151600063, 0.0010918948100879788, 0.0014389307470992208, 0.006973427254706621, 0.03855052590370178], [0.06295331567525864, 0.019003422930836678, 0.013840124942362309, 0.02939620241522789, 0.2989926040172577, 0.19676309823989868, 0.12494606524705887, 0.013042949140071869, 0.0008298691245727241, 0.0006281585665419698, 0.0002766202378552407, 0.0008899366948753595, 0.0002774452150333673, 0.0003216308250557631, 0.0006046342896297574, 0.028884468600153923, 0.20834942162036896], [0.06835059076547623, 0.02856764942407608, 0.003648783778771758, 0.03071078099310398, 0.03155376389622688, 0.17015156149864197, 0.3422110378742218, 0.08002364635467529, 0.0024484547320753336, 0.0017257013823837042, 0.00024222405045293272, 0.0025397855788469315, 0.0022458515595644712, 0.0026687283534556627, 0.002718802774325013, 0.019232530146837234, 0.21096013486385345], [0.028067540377378464, 0.011494298465549946, 0.0043521448969841, 0.009489002637565136, 0.017606325447559357, 0.4075601398944855, 0.008631573989987373, 0.005954613443464041, 0.0021810398902744055, 0.0029105795547366142, 0.002653521718457341, 0.004141334444284439, 0.004292548168450594, 0.004980138503015041, 0.007492429576814175, 0.02089586853981018, 0.45729687809944153], [0.0277186781167984, 0.0025289885234087706, 0.0005278593744151294, 0.0018871623324230313, 0.007594327908009291, 0.33387428522109985, 0.06495466083288193, 0.09816750884056091, 0.016729310154914856, 0.006049274932593107, 0.0017561205895617604, 0.010415248572826385, 0.005910058971494436, 0.0041720932349562645, 0.010194764472544193, 0.020102692767977715, 0.38741692900657654], [0.032179854810237885, 0.002381535479798913, 0.0004819239256903529, 0.002759405178949237, 0.00864389631897211, 0.22563692927360535, 0.04546903073787689, 0.04857683926820755, 0.07615591585636139, 0.027995778247714043, 0.007705626543611288, 0.04226510599255562, 0.02792964316904545, 0.014223371632397175, 0.07952652126550674, 0.10119368880987167, 0.2568749189376831], [0.0056479149498045444, 0.0005956473760306835, 4.8960315325530246e-05, 0.0007484665839001536, 0.0011954954825341702, 0.06453351676464081, 0.010428241454064846, 0.01001778244972229, 0.017559068277478218, 0.3961511254310608, 0.2155872881412506, 0.036064330488443375, 0.03145057335495949, 0.02819826267659664, 0.07630018144845963, 0.030766380950808525, 0.07470682263374329], [0.013078087940812111, 0.0008139823330566287, 9.254938049707562e-05, 0.0006881022127345204, 0.0035721587482839823, 0.34972304105758667, 0.010844727046787739, 0.015531066805124283, 0.0068396348506212234, 0.032920293509960175, 0.051260046660900116, 0.055830951780080795, 0.01204033475369215, 0.010953632183372974, 0.020814966410398483, 0.04592049494385719, 0.36907604336738586], [0.020949190482497215, 0.0020478868391364813, 0.00011266394722042605, 0.0010225161677226424, 0.0040842508897185326, 0.19513314962387085, 0.009259209036827087, 0.017741618677973747, 0.008797011338174343, 0.007122138515114784, 0.008414631709456444, 0.07579917460680008, 0.058115389198064804, 0.09523535519838333, 0.20746979117393494, 0.06065582111477852, 0.22804023325443268], [0.003144080052152276, 0.0014022300019860268, 6.137368472991511e-05, 0.0010502203367650509, 0.002057618461549282, 0.05516030639410019, 0.00555536849424243, 0.005047655198723078, 0.005147554911673069, 0.02332204394042492, 0.03512948751449585, 0.02181176282465458, 0.18294957280158997, 0.18022076785564423, 0.3549002707004547, 0.05932432785630226, 0.06371527910232544], [0.0030758450739085674, 0.0021165369544178247, 0.00016771584341768175, 0.0012786519946530461, 0.001364158815704286, 0.05550551787018776, 0.0021012190263718367, 0.005405099596828222, 0.009347639046609402, 0.009358868934214115, 0.0059926812537014484, 0.014753168448805809, 0.03747773543000221, 0.11804359406232834, 0.6249566674232483, 0.04243512824177742, 0.06661984324455261], [0.014904682524502277, 0.006639725994318724, 0.0013054056325927377, 0.0016129795694723725, 0.0034466523211449385, 0.17946164309978485, 0.00593178765848279, 0.01601613312959671, 0.00911157950758934, 0.016725828871130943, 0.008418903686106205, 0.0142781687900424, 0.04285509139299393, 0.04912608489394188, 0.29603350162506104, 0.11588522046804428, 0.21824656426906586], [0.03654736652970314, 0.0059004356153309345, 0.0021092717070132494, 0.0023582903668284416, 0.008891073055565357, 0.24386587738990784, 0.019767815247178078, 0.02065027505159378, 0.009092922322452068, 0.011706164106726646, 0.007394001819193363, 0.011802359484136105, 0.017120080068707466, 0.012643110007047653, 0.03407656401395798, 0.25102508068084717, 0.3050493001937866], [0.030241988599300385, 0.01045253872871399, 0.0009175126324407756, 0.0033576504793018103, 0.0034207734279334545, 0.36941537261009216, 0.019736142829060555, 0.009946406818926334, 0.0007368034566752613, 0.0012381967389956117, 0.0001609472674317658, 0.002123933518305421, 0.0022451982367783785, 0.0034882239997386932, 0.005784119479358196, 0.03990751504898071, 0.4968266487121582], [0.03065553866326809, 0.012756031937897205, 0.005240755621343851, 0.01038082130253315, 0.018673298880457878, 0.39993372559547424, 0.010076044127345085, 0.006655395496636629, 0.0023596978280693293, 0.0032124267891049385, 0.0028304087463766336, 0.004572637844830751, 0.004537693690508604, 0.005290676839649677, 0.008341234177350998, 0.024691378697752953, 0.4497922360897064]], [[0.016530795022845268, 0.04525337368249893, 0.0013726870529353619, 0.005484055262058973, 0.013397755101323128, 0.21023164689540863, 0.017902879044413567, 0.05713210254907608, 0.003272861707955599, 0.021658875048160553, 0.00813365075737238, 0.0334472581744194, 0.004478103946894407, 0.02901173010468483, 0.12531384825706482, 0.18595239520072937, 0.22142599523067474], [0.05378527566790581, 0.03567526116967201, 0.006902674678713083, 0.016162531450390816, 0.05893326178193092, 0.335713654756546, 0.007946164347231388, 0.03174161538481712, 0.0037069516256451607, 0.0068224528804421425, 0.0023767740931361914, 0.001986124785616994, 0.0007584089180454612, 0.004197533242404461, 0.007541579194366932, 0.04978729039430618, 0.37596243619918823], [0.04991404339671135, 0.012921680696308613, 0.05550321564078331, 0.023600047454237938, 0.04813205450773239, 0.3203135132789612, 0.009290304034948349, 0.015331842936575413, 0.007368067745119333, 0.006227897945791483, 0.005440182983875275, 0.010352836921811104, 0.0019635658245533705, 0.005843971855938435, 0.007883131504058838, 0.04908193647861481, 0.3708317279815674], [0.045234933495521545, 0.013627352192997932, 0.015078200027346611, 0.08233864605426788, 0.06528086960315704, 0.3196227550506592, 0.007423072122037411, 0.008661394938826561, 0.0017962352139875293, 0.004077059682458639, 0.002463584765791893, 0.003420162945985794, 0.004250515252351761, 0.004912383854389191, 0.008809680119156837, 0.03841989114880562, 0.37458330392837524], [0.07392562925815582, 0.03237948566675186, 0.002618682337924838, 0.005064924247562885, 0.028264250606298447, 0.393044650554657, 0.004930008668452501, 0.005808784160763025, 0.00199861079454422, 0.0028564883396029472, 0.0009032972157001495, 0.0023720155004411936, 0.0008529276819899678, 0.0022524134255945683, 0.006507226265966892, 0.030769286677241325, 0.4054514169692993], [0.03493747115135193, 0.012504897080361843, 0.010790678672492504, 0.023411355912685394, 0.019496263936161995, 0.34044286608695984, 0.016105396673083305, 0.007114864885807037, 0.006417371798306704, 0.021246522665023804, 0.005827418528497219, 0.006332996767014265, 0.007281651720404625, 0.006388430949300528, 0.0064338683150708675, 0.011280903592705727, 0.4639870822429657], [0.14293541014194489, 0.012488600797951221, 0.004704891238361597, 0.005391417536884546, 0.09117604047060013, 0.3065621554851532, 0.011515829712152481, 0.009135106578469276, 0.0012192066060379148, 0.003570097964257002, 0.0022523703519254923, 0.0023256586864590645, 0.0012819711118936539, 0.0036499344278126955, 0.007052213419228792, 0.06553768366575241, 0.329201340675354], [0.2197677344083786, 0.016743171960115433, 0.005847967695444822, 0.008037097752094269, 0.10674815624952316, 0.26341649889945984, 0.013474574312567711, 0.034171707928180695, 0.002391402143985033, 0.005054729524999857, 0.002618408063426614, 0.0011634217808023095, 0.0001397345622535795, 0.000639593112282455, 0.004492250736802816, 0.05315930023789406, 0.26213428378105164], [0.1964108943939209, 0.008627096191048622, 0.02391599491238594, 0.014605099335312843, 0.06397505849599838, 0.22141946852207184, 0.02608654275536537, 0.060828834772109985, 0.025664759799838066, 0.013194872066378593, 0.015947971493005753, 0.010941660962998867, 0.0008920817635953426, 0.004812635015696287, 0.009700853377580643, 0.05321202427148819, 0.24976415932178497], [0.18563203513622284, 0.008178602904081345, 0.01211610808968544, 0.009592805057764053, 0.0599830187857151, 0.2745717465877533, 0.024994760751724243, 0.03225596621632576, 0.00909616518765688, 0.009270552545785904, 0.020304039120674133, 0.010258245281875134, 0.001711973687633872, 0.003330373903736472, 0.004684444051235914, 0.03436568006873131, 0.2996535003185272], [0.18822120130062103, 0.005216168239712715, 0.05089213699102402, 0.01750890165567398, 0.05881175026297569, 0.20796272158622742, 0.03936447948217392, 0.03829551115632057, 0.014085061848163605, 0.011876643635332584, 0.07312940061092377, 0.018423382192850113, 0.007119789253920317, 0.0037966326344758272, 0.007225173059850931, 0.021391484886407852, 0.2366795539855957], [0.06383036077022552, 0.010537585243582726, 0.09341300278902054, 0.023191262036561966, 0.041771743446588516, 0.1792515218257904, 0.029088962823152542, 0.03258972987532616, 0.04892268031835556, 0.02244482934474945, 0.09484164416790009, 0.08432850241661072, 0.019050145521759987, 0.010981680825352669, 0.011534083634614944, 0.03751906752586365, 0.19670310616493225], [0.05016164109110832, 0.007896756753325462, 0.0464194193482399, 0.014678075909614563, 0.037474069744348526, 0.22611279785633087, 0.017491081729531288, 0.041372425854206085, 0.026383474469184875, 0.02066541090607643, 0.08206301927566528, 0.045972924679517746, 0.04841352626681328, 0.02036386728286743, 0.01705980859696865, 0.03760950267314911, 0.25986212491989136], [0.09877991676330566, 0.01578521728515625, 0.018379943445324898, 0.010750392451882362, 0.05832136422395706, 0.25479403138160706, 0.014249105006456375, 0.016966072842478752, 0.014571496285498142, 0.00809515081346035, 0.017694732174277306, 0.01523570716381073, 0.04679178446531296, 0.062085654586553574, 0.022476473823189735, 0.046659402549266815, 0.27836352586746216], [0.1899062544107437, 0.017922697588801384, 0.0041588423773646355, 0.011138231493532658, 0.07280229032039642, 0.23696281015872955, 0.013636091724038124, 0.04523855820298195, 0.009722007438540459, 0.014802285470068455, 0.007284044753760099, 0.0056777275167405605, 0.006478574592620134, 0.013235372491180897, 0.055625807493925095, 0.050993338227272034, 0.24441510438919067], [0.24519504606723785, 0.017328225076198578, 0.002085472922772169, 0.005114118568599224, 0.047369301319122314, 0.2899099290370941, 0.005869138054549694, 0.011198497377336025, 0.0031855469569563866, 0.006350397597998381, 0.0029422943480312824, 0.0026757516898214817, 0.0016013850690796971, 0.004753932356834412, 0.009970623068511486, 0.044480543583631516, 0.29996979236602783], [0.033528268337249756, 0.015174895524978638, 0.011802869848906994, 0.02203042432665825, 0.019549472257494926, 0.3368554711341858, 0.01688748225569725, 0.009179949760437012, 0.007275144569575787, 0.022528214380145073, 0.007012196350842714, 0.0075939716771245, 0.007712275721132755, 0.007965046912431717, 0.008383420296013355, 0.013813565485179424, 0.45270732045173645]], [[0.03902856260538101, 0.012353340163826942, 0.008067750371992588, 0.02612488716840744, 0.05052872747182846, 0.05739995837211609, 0.080766960978508, 0.07154131680727005, 0.007297065574675798, 0.018706394359469414, 0.011997305788099766, 0.02413061261177063, 0.026983745396137238, 0.04532281681895256, 0.09009118378162384, 0.36414217948913574, 0.06551718711853027], [0.06616959720849991, 0.011113354004919529, 0.017620045691728592, 0.03230896592140198, 0.04179016873240471, 0.3562430739402771, 0.009351878426969051, 0.0043995557352900505, 0.0018178793834522367, 0.004674478899687529, 0.0028478943277150393, 0.020648203790187836, 0.03174329549074173, 0.040056902915239334, 0.023866228759288788, 0.024521272629499435, 0.3108272850513458], [0.16417379677295685, 0.033448800444602966, 0.024737052619457245, 0.014613399282097816, 0.01273435726761818, 0.26598915457725525, 0.024227891117334366, 0.007974962703883648, 0.008267305791378021, 0.016416151076555252, 0.014251571148633957, 0.018765464425086975, 0.05130377784371376, 0.040966179221868515, 0.019696595147252083, 0.011854253709316254, 0.2705792784690857], [0.10497729480266571, 0.00920892134308815, 0.03263178467750549, 0.014262617565691471, 0.008450180292129517, 0.2284911870956421, 0.04805002734065056, 0.020361924543976784, 0.019724644720554352, 0.02225928008556366, 0.01313843671232462, 0.08432880789041519, 0.08355266600847244, 0.041333165019750595, 0.035540416836738586, 0.013702641241252422, 0.2199859321117401], [0.08806438744068146, 0.029508858919143677, 0.023211168125271797, 0.017013639211654663, 0.03885161131620407, 0.37730124592781067, 0.021007193252444267, 0.006201107986271381, 0.005444920156151056, 0.007285746745765209, 0.006350636947900057, 0.014769073575735092, 0.018229903653264046, 0.01750459522008896, 0.011186736635863781, 0.017433054745197296, 0.3006361126899719], [0.007870666682720184, 0.00337035721167922, 0.006918436381965876, 0.009250747039914131, 0.006689910311251879, 0.5438838005065918, 0.0015999746974557638, 0.0012842532014474273, 0.0029297559522092342, 0.002262171357870102, 0.0016952507430687547, 0.0032759904861450195, 0.004860737361013889, 0.005724475719034672, 0.007010126020759344, 0.0032002045772969723, 0.3881731331348419], [0.022989721968770027, 0.02251145988702774, 0.04696929454803467, 0.04938763007521629, 0.02891700342297554, 0.3742566704750061, 0.01058944407850504, 0.004956976976245642, 0.005685391835868359, 0.0037522229831665754, 0.0030445398297160864, 0.011844601482152939, 0.020133478567004204, 0.012538694776594639, 0.0058857896365225315, 0.013183272443711758, 0.36335378885269165], [0.044307563453912735, 0.025844650343060493, 0.023982642218470573, 0.03975486382842064, 0.03403787314891815, 0.39036551117897034, 0.012796720489859581, 0.008931144140660763, 0.004898487124592066, 0.008630839176476002, 0.004540032707154751, 0.010292300954461098, 0.013687187805771828, 0.012399931438267231, 0.009507769718766212, 0.020876241847872734, 0.3351462185382843], [0.05917210131883621, 0.015959203243255615, 0.029118230566382408, 0.012889309786260128, 0.008289167657494545, 0.30261194705963135, 0.03207869082689285, 0.013017046265304089, 0.016281234100461006, 0.01904977299273014, 0.027780158445239067, 0.048840928822755814, 0.03102218732237816, 0.011077599599957466, 0.00857636984437704, 0.018472889438271523, 0.3457631468772888], [0.007121877744793892, 0.020470967516303062, 0.010187339968979359, 0.014775511808693409, 0.00555788166821003, 0.47663402557373047, 0.0028066199738532305, 0.003104546805843711, 0.0014576357789337635, 0.0016860530013218522, 0.0019803389441221952, 0.0030856735538691282, 0.006383821368217468, 0.00562590966001153, 0.0023579741828143597, 0.004659012891352177, 0.4321048855781555], [0.014749811962246895, 0.011793386191129684, 0.012252098880708218, 0.011705758050084114, 0.009344732388854027, 0.4297594130039215, 0.006448186002671719, 0.004409717861562967, 0.004773399326950312, 0.00332088815048337, 0.006635040510445833, 0.02030804567039013, 0.016459261998534203, 0.01213015429675579, 0.009253076277673244, 0.012212645262479782, 0.41444435715675354], [0.022978033870458603, 0.02141779102385044, 0.03469834476709366, 0.011887623928487301, 0.008938622660934925, 0.3442479074001312, 0.01133657619357109, 0.011560989543795586, 0.007042416371405125, 0.005530775990337133, 0.02168409153819084, 0.03190372884273529, 0.06680448353290558, 0.031876325607299805, 0.006835408974438906, 0.019071275368332863, 0.3421856462955475], [0.019427338615059853, 0.011374717578291893, 0.019056400284171104, 0.009690647013485432, 0.0123243173584342, 0.4435129761695862, 0.004146405030041933, 0.004731675144284964, 0.003665381809696555, 0.002778717316687107, 0.009093315340578556, 0.01077476516366005, 0.02152094803750515, 0.007487479597330093, 0.0034599192440509796, 0.007491882890462875, 0.409463107585907], [0.013602357357740402, 0.017699243500828743, 0.01204387191683054, 0.01114657148718834, 0.011708714999258518, 0.4341638684272766, 0.005104632582515478, 0.011175128631293774, 0.0044754305854439735, 0.0051321531645953655, 0.00711806258186698, 0.01819673739373684, 0.029036883264780045, 0.022512946277856827, 0.01054355874657631, 0.025635305792093277, 0.3607043921947479], [0.015578137710690498, 0.01600710116326809, 0.015111906453967094, 0.01138861384242773, 0.012591436505317688, 0.43690112233161926, 0.005854576360434294, 0.009020195342600346, 0.004040938802063465, 0.005035726819187403, 0.008665109984576702, 0.01704920269548893, 0.027676299214363098, 0.01790444739162922, 0.012484932318329811, 0.020981555804610252, 0.3637087643146515], [0.01479338388890028, 0.024913106113672256, 0.03244296461343765, 0.040564876049757004, 0.17036879062652588, 0.35793206095695496, 0.004145581740885973, 0.006667504087090492, 0.0029980444815009832, 0.0029503453988581896, 0.0026780427433550358, 0.009157346561551094, 0.013552159070968628, 0.01802494376897812, 0.012389203533530235, 0.06346625834703445, 0.22295549511909485], [0.008757331408560276, 0.0031762735452502966, 0.007517780177295208, 0.008637906983494759, 0.006375944707542658, 0.5315690040588379, 0.0020179960411041975, 0.0018077748827636242, 0.003781295148655772, 0.002555238315835595, 0.0019373777322471142, 0.004720861557871103, 0.006681512109935284, 0.007692368235439062, 0.008125752210617065, 0.0041457777842879295, 0.39049988985061646]]], [[[0.11180595308542252, 0.014114515855908394, 0.007435491308569908, 0.007666383869946003, 0.03662494942545891, 0.3130195736885071, 0.025818752124905586, 0.030548464506864548, 0.007742311805486679, 0.010976684279739857, 0.008631303906440735, 0.009453895501792431, 0.0035582820419222116, 0.006694144569337368, 0.005631633568555117, 0.04899495095014572, 0.3512828052043915], [0.022282814607024193, 0.06506384164094925, 0.004720656201243401, 0.0010520583018660545, 0.011828170157968998, 0.29508087038993835, 0.15206918120384216, 0.07235323637723923, 0.0020479378290474415, 0.0028862887993454933, 0.0008758766343817115, 0.0022669804748147726, 0.0005004638223908842, 0.0015935300616547465, 0.0009286312852054834, 0.027352869510650635, 0.33709657192230225], [0.0031180446967482567, 0.0036734272725880146, 0.17144988477230072, 0.005478122271597385, 0.009726217947900295, 0.3548985421657562, 0.00209580035880208, 0.00624857610091567, 0.008242513984441757, 0.002931087976321578, 0.0004856555606238544, 0.0021543868351727724, 0.0005894016358070076, 0.0007528805290348828, 0.0005438930820673704, 0.005428598262369633, 0.42218297719955444], [0.005526375025510788, 0.0013655131915584207, 0.002467122860252857, 0.032551828771829605, 0.0071172527968883514, 0.4124743938446045, 0.004985381383448839, 0.0037830169312655926, 0.003504890250042081, 0.007996665313839912, 0.0004713141534011811, 0.0014050432946532965, 0.007379934191703796, 0.008659552782773972, 0.0043398733250796795, 0.009583578445017338, 0.48638826608657837], [0.021775472909212112, 0.0014683551853522658, 0.002155774040147662, 0.000869346724357456, 0.2011875957250595, 0.2973606586456299, 0.027540653944015503, 0.013519389554858208, 0.0011519207619130611, 0.0018503008177503943, 0.0005131415673531592, 0.0008809378487057984, 0.0003910265804734081, 0.0005615001427941024, 0.0022034349385648966, 0.08033842593431473, 0.3462320566177368], [0.00661865109577775, 0.0020998925901949406, 0.001485015032812953, 0.0020404462702572346, 0.0021522766910493374, 0.43928995728492737, 0.00262889894656837, 0.0022042233031243086, 0.0018612925196066499, 0.003340579569339752, 0.0018137049628421664, 0.0015509905060753226, 0.0017115972004830837, 0.0034425442572683096, 0.002186506986618042, 0.008432801812887192, 0.5171406269073486], [0.03030734695494175, 0.12109067291021347, 0.004326965659856796, 0.00707452604547143, 0.07038562744855881, 0.29723504185676575, 0.08755824714899063, 0.013912592083215714, 0.002026761882007122, 0.003186940448358655, 0.0008126107859425247, 0.0013998392969369888, 0.0008355017052963376, 0.0022808476351201534, 0.0007757145212963223, 0.009877239353954792, 0.34691357612609863], [0.015913914889097214, 0.022756794467568398, 0.02657422237098217, 0.005244249943643808, 0.014133714139461517, 0.3693476915359497, 0.01678694598376751, 0.06290639936923981, 0.006432035472244024, 0.00496216444298625, 0.0058231111615896225, 0.015146843157708645, 0.0021473297383636236, 0.0035841770004481077, 0.001210808171890676, 0.006422798149287701, 0.4206068515777588], [0.005075306631624699, 0.0019490764243528247, 0.019817572087049484, 0.011584760621190071, 0.004741634242236614, 0.39009255170822144, 0.0026030028238892555, 0.002184719778597355, 0.09270548075437546, 0.004638398066163063, 0.0022218080703169107, 0.00347732612863183, 0.001020205789245665, 0.001941109192557633, 0.00028394549735821784, 0.004181533120572567, 0.4514816105365753], [0.009264230728149414, 0.0013589092995971441, 0.0034949721302837133, 0.011877336539328098, 0.003031462896615267, 0.3652120530605316, 0.0027520027942955494, 0.0009958019945770502, 0.005440813023597002, 0.14737211167812347, 0.0014187681954354048, 0.0005085442680865526, 0.002374039264395833, 0.001379854278638959, 0.0006458245334215462, 0.003603604156523943, 0.4392696022987366], [0.003907973412424326, 0.0011712901759892702, 0.001957172993570566, 0.0011971468338742852, 0.002731344662606716, 0.4489440619945526, 0.0018086190102621913, 0.0008382651722058654, 0.0007397707086056471, 0.0029748971574008465, 0.013136060908436775, 0.0008602142916060984, 0.00010305460455128923, 0.0011335330782458186, 8.824080578051507e-05, 0.0019361143931746483, 0.5164722800254822], [0.009244817309081554, 0.0033722277730703354, 0.005205124616622925, 0.005414610728621483, 0.005510094575583935, 0.44078218936920166, 0.002659692894667387, 0.007242392282932997, 0.0028276625089347363, 0.0011335313320159912, 0.0014627899508923292, 0.017674289643764496, 0.0019772362429648638, 0.0029258073773235083, 0.00046131055569276214, 0.003916727378964424, 0.4881894886493683], [0.0026089423336088657, 0.00052115588914603, 0.001088924938812852, 0.028514480218291283, 0.003426954383030534, 0.4395987093448639, 0.0005119013949297369, 0.000508221099153161, 0.0003029491344932467, 0.002373137976974249, 7.103173993527889e-05, 0.0009696119232103229, 0.014973204582929611, 0.004770688246935606, 0.0004473443841561675, 0.0007482640212401748, 0.4985645115375519], [0.002708417596295476, 0.0004315636761020869, 0.0009253512253053486, 0.008225523866713047, 0.00663323188200593, 0.4229734241962433, 0.0005780315841548145, 0.0008251707185991108, 0.0005399129004217684, 0.0008124721352942288, 0.0009252505842596292, 0.0007779118022881448, 0.002172500593587756, 0.042582396417856216, 0.0016231562476605177, 0.0027851436752825975, 0.5044805407524109], [0.00271904980763793, 0.00026921997778117657, 0.0003937841975130141, 0.0028390937950462103, 0.002770809456706047, 0.452278733253479, 0.0003119752509519458, 0.0004668534093070775, 4.996652569388971e-05, 0.0003973038401454687, 8.370723662665114e-05, 0.0001341337338089943, 0.00026471592718735337, 0.0023942922707647085, 0.0113610178232193, 0.006258991081267595, 0.5170063972473145], [0.03196282312273979, 0.012690015137195587, 0.010341156274080276, 0.015285861678421497, 0.1496296226978302, 0.29912257194519043, 0.0039028918836265802, 0.002361906226724386, 0.0013953332090750337, 0.0011964148143306375, 0.0011388699058443308, 0.0013772659003734589, 0.0013341729063540697, 0.0032468268182128668, 0.006625726819038391, 0.1224851906299591, 0.3359033763408661], [0.006412169896066189, 0.00209377845749259, 0.0015686372062191367, 0.002169688930734992, 0.002123422920703888, 0.4397622048854828, 0.0024837928358465433, 0.002105396008118987, 0.001807866501621902, 0.0034004668705165386, 0.001807820750400424, 0.0014836573973298073, 0.0016583192627876997, 0.0033977795392274857, 0.002083772560581565, 0.00793131161481142, 0.5177098512649536]], [[0.02888069674372673, 0.006813147570937872, 0.006633823737502098, 0.0030666152015328407, 0.004503718111664057, 0.3807011544704437, 0.05708836764097214, 0.017359735444188118, 0.004172376822680235, 0.007534163072705269, 0.0036666071973741055, 0.007498201448470354, 0.0033081420697271824, 0.0039236037991940975, 0.004146044608205557, 0.019163554534316063, 0.4415399730205536], [0.04320494458079338, 0.017977949231863022, 0.2141379565000534, 0.04966772720217705, 0.034328024834394455, 0.21746180951595306, 0.019876930862665176, 0.09080970287322998, 0.01771537959575653, 0.011474715545773506, 0.001056623994372785, 0.0018888850463554263, 0.00047143088886514306, 0.00636510644108057, 0.0020494551863521338, 0.023995855823159218, 0.24751748144626617], [0.010287154465913773, 0.010430460795760155, 0.026429615914821625, 0.2867426574230194, 0.03276520222425461, 0.2487591803073883, 0.018400944769382477, 0.01644856482744217, 0.0066438294015824795, 0.006603782065212727, 0.0010014788713306189, 0.003585893427953124, 0.012796873226761818, 0.013730956241488457, 0.00232590246014297, 0.013030779547989368, 0.2900167405605316], [0.017094768583774567, 0.012916249223053455, 0.007668192032724619, 0.017498306930065155, 0.6459144353866577, 0.11216793209314346, 0.02171255275607109, 0.008605705574154854, 0.0004977266653440893, 0.0007241466664709151, 0.00022733421064913273, 0.002115791430696845, 0.0004194109933450818, 0.0021799039095640182, 0.0010883600916713476, 0.028123103082180023, 0.12104608863592148], [0.026769567281007767, 0.10190052539110184, 0.0034538579639047384, 0.011822251603007317, 0.060202211141586304, 0.24018648266792297, 0.2140364795923233, 0.021335041150450706, 0.0027197713498026133, 0.0032385385129600763, 0.0006479835719801486, 0.003742948407307267, 0.0027580605819821358, 0.00384367979131639, 0.001618997543118894, 0.029530102387070656, 0.2721935510635376], [0.007306995335966349, 0.008734559640288353, 0.0019560379441827536, 0.003837862517684698, 0.006916593294590712, 0.4270668923854828, 0.0026469645090401173, 0.006758954841643572, 0.002425707643851638, 0.007539505138993263, 0.005636175628751516, 0.00413156021386385, 0.0017672013491392136, 0.009236125275492668, 0.00823550671339035, 0.013500832952558994, 0.4823024272918701], [0.007122747600078583, 0.0121538657695055, 0.0029085332062095404, 0.003929913975298405, 0.01252403948456049, 0.3614879846572876, 0.07994432747364044, 0.07864811271429062, 0.0036751143634319305, 0.003429451724514365, 0.001498566591180861, 0.010100247338414192, 0.0030978734139353037, 0.005917040165513754, 0.0032510748133063316, 0.005708586890250444, 0.40460261702537537], [0.0053981030359864235, 0.0021416533272713423, 0.0015150425024330616, 0.006838170345872641, 0.0024923288729041815, 0.34940916299819946, 0.007969086989760399, 0.04526762291789055, 0.11527995765209198, 0.014095282182097435, 0.0032982274424284697, 0.007724008522927761, 0.005465623922646046, 0.018299629911780357, 0.0027598696760833263, 0.019347598776221275, 0.39269864559173584], [0.004207162652164698, 0.0005602808087132871, 0.0019487518584355712, 0.005172813776880503, 0.00313285063020885, 0.2914814054965973, 0.0022888316307216883, 0.011010611429810524, 0.027986178174614906, 0.22312696278095245, 0.02818065695464611, 0.01744934916496277, 0.014061863534152508, 0.017760490998625755, 0.005800037644803524, 0.012882103212177753, 0.332949697971344], [0.004871535114943981, 0.0013100497890263796, 0.0007934438181109726, 0.003643477102741599, 0.011728588491678238, 0.3772180676460266, 0.0021129704546183348, 0.026596590876579285, 0.004752781242132187, 0.01057213544845581, 0.030007677152752876, 0.04087681323289871, 0.002573252422735095, 0.019995838403701782, 0.004942520521581173, 0.036987122148275375, 0.4210170805454254], [0.003333248430863023, 0.0012297914363443851, 0.00012875015090685338, 0.0032408260740339756, 0.001858405419625342, 0.3863199055194855, 0.01075519435107708, 0.02468923293054104, 0.0019860428292304277, 0.001066866796463728, 0.002784374635666609, 0.06515929102897644, 0.016653969883918762, 0.05339508131146431, 0.004724705591797829, 0.007555960677564144, 0.41511839628219604], [0.000650112924631685, 0.0005974534433335066, 0.00020953973580617458, 0.005649523343890905, 0.0010439450852572918, 0.14126832783222198, 0.002309447852894664, 0.00437666242942214, 0.006155122071504593, 0.009396335110068321, 0.0023857704363763332, 0.021507389843463898, 0.5367333889007568, 0.09827873855829239, 0.004518631845712662, 0.0044776988215744495, 0.16044190526008606], [0.00040609066491015255, 0.0005625482881441712, 6.22150837443769e-05, 0.0014796867035329342, 0.0019539801869541407, 0.2788620591163635, 0.0004039390478283167, 0.00835023820400238, 0.00230730464681983, 0.0020504884887486696, 0.0009111526887863874, 0.009769999422132969, 0.026994027197360992, 0.3011077046394348, 0.029758363962173462, 0.015093149617314339, 0.31992706656455994], [0.0017944241408258677, 0.002109531546011567, 0.0008672014810144901, 0.004804972559213638, 0.005274573341012001, 0.3075590431690216, 0.001271363697014749, 0.013479523360729218, 0.0008402928942814469, 0.004907173104584217, 0.0005511994822882116, 0.003221015213057399, 0.005223499145358801, 0.026221681386232376, 0.2357819825410843, 0.026519251987338066, 0.35957327485084534], [0.006188142113387585, 0.007341613527387381, 0.00034680450335144997, 0.0022874183487147093, 0.013562150299549103, 0.3663836419582367, 0.004520074464380741, 0.007389015518128872, 0.0011091395281255245, 0.00434052525088191, 0.0014700102619826794, 0.0020047363359481096, 0.000807865581009537, 0.0053182924166321754, 0.005803832318633795, 0.1454356461763382, 0.4256911277770996], [0.015967940911650658, 0.09355229884386063, 0.0034329311456531286, 0.0049596079625189304, 0.017221206799149513, 0.276360422372818, 0.17237836122512817, 0.02245575189590454, 0.001975995022803545, 0.004558362066745758, 0.0018767924048006535, 0.005956239532679319, 0.0013516113394871354, 0.003152518766000867, 0.0018408886389806867, 0.040431246161460876, 0.3325277864933014], [0.007912474684417248, 0.008337456732988358, 0.0021109390072524548, 0.0040980614721775055, 0.007529671303927898, 0.4248385727405548, 0.0027160951867699623, 0.006892562378197908, 0.0024666259996593, 0.007464565336704254, 0.005903847981244326, 0.0044466727413237095, 0.0019952584989368916, 0.009980293922126293, 0.009132202714681625, 0.014391967095434666, 0.47978270053863525]], [[0.0086734713986516, 0.3211432099342346, 0.036097150295972824, 0.11602669209241867, 0.022773418575525284, 0.21508638560771942, 0.0011529516195878386, 0.011312822811305523, 0.0006414575036615133, 0.005086440127342939, 0.0016902170609682798, 0.00045798832434229553, 0.0012536990689113736, 0.011317835189402103, 0.00430721789598465, 0.006460228003561497, 0.23651887476444244], [0.011474967934191227, 0.1326718032360077, 0.07154788076877594, 0.08102317154407501, 0.045718975365161896, 0.18583591282367706, 0.011951430700719357, 0.1055818423628807, 0.020131638273596764, 0.017408622428774834, 0.010402049869298935, 0.00885416753590107, 0.0040083639323711395, 0.014663252048194408, 0.017785867676138878, 0.06457498669624329, 0.19636505842208862], [0.007472825702279806, 0.05288553982973099, 0.0685892403125763, 0.19114816188812256, 0.04113918915390968, 0.25592440366744995, 0.00706110754981637, 0.015070868656039238, 0.004006056115031242, 0.006466642953455448, 0.004736205097287893, 0.006018877029418945, 0.007693017367273569, 0.0066850814037024975, 0.012173091061413288, 0.03589493781328201, 0.2770347595214844], [0.014273910783231258, 0.046600084751844406, 0.02219029702246189, 0.15235678851604462, 0.058186840265989304, 0.2740708291530609, 0.01379422377794981, 0.013106943108141422, 0.004827842116355896, 0.010142462328076363, 0.005817878060042858, 0.003160858526825905, 0.007719938177615404, 0.006470203399658203, 0.018716175109148026, 0.04993981868028641, 0.29862475395202637], [0.013429490849375725, 0.04696616157889366, 0.0105905095115304, 0.024773580953478813, 0.009217662736773491, 0.2786625921726227, 0.02744811587035656, 0.04816269874572754, 0.015462352894246578, 0.028294293209910393, 0.005712765268981457, 0.017082426697015762, 0.01108250766992569, 0.016352083534002304, 0.05977243930101395, 0.08940882235765457, 0.29758158326148987], [0.00604435196146369, 0.003044951008632779, 0.0011001935927197337, 0.0015904884785413742, 0.0019814991392195225, 0.438127726316452, 0.0017973713111132383, 0.0021814070641994476, 0.00043549059773795307, 0.002586532849818468, 0.001364290714263916, 0.0007053578156046569, 0.0009025506442412734, 0.0022538313642144203, 0.0016402548644691706, 0.003618466667830944, 0.5306252241134644], [0.0438617467880249, 0.058503203094005585, 0.05124622583389282, 0.14907212555408478, 0.10768098384141922, 0.20533056557178497, 0.024444540962576866, 0.026710694655776024, 0.01215149275958538, 0.010845993645489216, 0.008855524472892284, 0.004823980387300253, 0.006925774272531271, 0.006357645150274038, 0.021393967792391777, 0.04182697832584381, 0.21996845304965973], [0.03607060760259628, 0.10361529886722565, 0.04417310282588005, 0.0570874959230423, 0.07006669789552689, 0.26126012206077576, 0.010840781964361668, 0.02683364972472191, 0.011953243985772133, 0.010508003644645214, 0.00753272557631135, 0.006700460333377123, 0.0023419661447405815, 0.01676715351641178, 0.011363217607140541, 0.04560223966836929, 0.27728328108787537], [0.014343210496008396, 0.019738703966140747, 0.016901696100831032, 0.03375721722841263, 0.02785935066640377, 0.3467388153076172, 0.015810344368219376, 0.018841179087758064, 0.02960674837231636, 0.02227845788002014, 0.01454633753746748, 0.016227582469582558, 0.006846343167126179, 0.009831271134316921, 0.011482994072139263, 0.030201654881238937, 0.3649880588054657], [0.03233784809708595, 0.04568100348114967, 0.016514252871274948, 0.03673847019672394, 0.038496438413858414, 0.298910915851593, 0.014194939285516739, 0.02277497574687004, 0.037866078317165375, 0.03870837390422821, 0.030340617522597313, 0.008614069782197475, 0.0035558328963816166, 0.0067810178734362125, 0.008586638607084751, 0.033296845853328705, 0.32660171389579773], [0.03743409737944603, 0.010696712881326675, 0.01393597386777401, 0.017118465155363083, 0.04603249579668045, 0.2942800223827362, 0.029524749144911766, 0.021409034729003906, 0.056371454149484634, 0.01758747547864914, 0.0324290469288826, 0.02757127769291401, 0.004598565399646759, 0.008408344350755215, 0.00834235455840826, 0.04774174094200134, 0.32651814818382263], [0.02707349881529808, 0.051069226115942, 0.03154194727540016, 0.10169072449207306, 0.048473384231328964, 0.23857426643371582, 0.0352209210395813, 0.029054906219244003, 0.0265201423317194, 0.016852062195539474, 0.017340699210762978, 0.02088858187198639, 0.033017098903656006, 0.018278414383530617, 0.008945511654019356, 0.03451994061470032, 0.2609385848045349], [0.03649405017495155, 0.03081170655786991, 0.015607270412147045, 0.09245756268501282, 0.04840387776494026, 0.23199370503425598, 0.05532379075884819, 0.04177214950323105, 0.01760208047926426, 0.03205810859799385, 0.020769108086824417, 0.009772649966180325, 0.02872440777719021, 0.02034904435276985, 0.022839704528450966, 0.032953958958387375, 0.2620667815208435], [0.0470050685107708, 0.0420074537396431, 0.00900084525346756, 0.04793832078576088, 0.05806881561875343, 0.27718186378479004, 0.02735929936170578, 0.02531707100570202, 0.008352335542440414, 0.024988923221826553, 0.004637314006686211, 0.005378750152885914, 0.008865738287568092, 0.03894945606589317, 0.02125031314790249, 0.040746551007032394, 0.31295186281204224], [0.05749176815152168, 0.030439186841249466, 0.004814877640455961, 0.06012553721666336, 0.0982264056801796, 0.26403090357780457, 0.052436839789152145, 0.036216408014297485, 0.009297322481870651, 0.01865377649664879, 0.008924164809286594, 0.0035484505351632833, 0.007688657380640507, 0.007479620631784201, 0.023968825116753578, 0.02890617400407791, 0.287751168012619], [0.04842215031385422, 0.0964021384716034, 0.009469770826399326, 0.06671608239412308, 0.025058424100279808, 0.2797546982765198, 0.019504224881529808, 0.02813147008419037, 0.010851120576262474, 0.028470011427998543, 0.006389289163053036, 0.005292215850204229, 0.004874376114457846, 0.01622224599123001, 0.016081606969237328, 0.03360609710216522, 0.30475401878356934], [0.006344496738165617, 0.0036128966603428125, 0.0012166270753368735, 0.0018927804194390774, 0.002200046554207802, 0.43738657236099243, 0.0017756473971530795, 0.0023167929612100124, 0.0004464415251277387, 0.0025583943352103233, 0.001355257467366755, 0.0006948513328097761, 0.000953620474319905, 0.0025438950397074223, 0.0017562236171215773, 0.0037167200352996588, 0.529228687286377]], [[0.0313992016017437, 0.04127791151404381, 0.11663998663425446, 0.10670389235019684, 0.18905556201934814, 0.19304987788200378, 0.009801455773413181, 0.007997897453606129, 0.003054363653063774, 0.004866741131991148, 0.005991353653371334, 0.00651905220001936, 0.00781112490221858, 0.051630549132823944, 0.008435470052063465, 0.006256383378058672, 0.20950914919376373], [0.05217510834336281, 0.025213468819856644, 0.020534852519631386, 0.010813802480697632, 0.02926800400018692, 0.32655900716781616, 0.02176765166223049, 0.01061280444264412, 0.01986815594136715, 0.0045037963427603245, 0.014250352047383785, 0.00967476051300764, 0.013433311134576797, 0.004428638145327568, 0.003963235300034285, 0.04578510671854019, 0.3871478736400604], [0.027993788942694664, 0.09222877025604248, 0.010260279290378094, 0.05181973800063133, 0.10582014918327332, 0.27196645736694336, 0.011019674129784107, 0.0036890944465994835, 0.007104003801941872, 0.007154481485486031, 0.010510429739952087, 0.007065169978886843, 0.008945229463279247, 0.01783456839621067, 0.013570605777204037, 0.03279832378029823, 0.32021912932395935], [0.02668161876499653, 0.08617578446865082, 0.0052340151742100716, 0.035968441516160965, 0.040401507169008255, 0.33579021692276, 0.0051386477425694466, 0.0037119933404028416, 0.003483318956568837, 0.005584597587585449, 0.011007973924279213, 0.005502375774085522, 0.008403354324400425, 0.009284588508307934, 0.0052266232669353485, 0.013016392476856709, 0.39938852190971375], [0.01830088533461094, 0.14240187406539917, 0.003213405841961503, 0.01107490062713623, 0.046463966369628906, 0.3263216018676758, 0.0026095097418874502, 0.006168853025883436, 0.0029056724160909653, 0.007662887219339609, 0.008139828220009804, 0.009799184277653694, 0.007990308105945587, 0.012978690676391125, 0.008622447960078716, 0.017074257135391235, 0.3682717978954315], [0.010727501474320889, 0.035232704132795334, 0.004867132753133774, 0.017648659646511078, 0.005721047054976225, 0.35837048292160034, 0.012689158320426941, 0.022210130468010902, 0.005490076262503862, 0.013302708975970745, 0.005878916941583157, 0.005392426159232855, 0.008011293597519398, 0.024578899145126343, 0.01562938652932644, 0.01381748542189598, 0.44043195247650146], [0.02014986425638199, 0.019915923476219177, 0.014345211908221245, 0.06281701475381851, 0.025248225778341293, 0.32411062717437744, 0.014584352262318134, 0.008785400539636612, 0.005584883503615856, 0.011809720657765865, 0.012410839088261127, 0.020904121920466423, 0.008031172677874565, 0.02920062653720379, 0.025056252256035805, 0.01581612601876259, 0.38122954964637756], [0.022686082869768143, 0.016381772235035896, 0.01646987348794937, 0.004839299712330103, 0.01904052495956421, 0.3767840564250946, 0.020362060517072678, 0.012659892439842224, 0.010009435936808586, 0.005179197061806917, 0.013622645288705826, 0.013738900423049927, 0.010305787436664104, 0.00626319320872426, 0.003982707858085632, 0.015164121985435486, 0.4325106143951416], [0.06929890811443329, 0.022919846698641777, 0.01570560224354267, 0.008444448933005333, 0.017400726675987244, 0.2903725206851959, 0.02459803782403469, 0.03093581087887287, 0.01924537494778633, 0.017160577699542046, 0.02646675705909729, 0.018467381596565247, 0.01144773606210947, 0.018125485628843307, 0.017904017120599747, 0.05700260028243065, 0.3345041871070862], [0.02123473770916462, 0.004033256787806749, 0.006214731372892857, 0.0023992187343537807, 0.004412653390318155, 0.38885509967803955, 0.007453219499439001, 0.010165965184569359, 0.0066809081472456455, 0.003788016038015485, 0.009008192457258701, 0.006037343759089708, 0.0034012519754469395, 0.005844499915838242, 0.007337629329413176, 0.038462068885564804, 0.47467127442359924], [0.016854597255587578, 0.017239950597286224, 0.01103689894080162, 0.01657579094171524, 0.014691679738461971, 0.3265393078327179, 0.010331086814403534, 0.016298210248351097, 0.00945388525724411, 0.008801311254501343, 0.013007980771362782, 0.014794697985053062, 0.006244721356779337, 0.028346236795186996, 0.03279281035065651, 0.05614032968878746, 0.4008506238460541], [0.04074631631374359, 0.01820710115134716, 0.012074541300535202, 0.00845924112945795, 0.011844271793961525, 0.3138953149318695, 0.026385167613625526, 0.034274160861968994, 0.012345212511718273, 0.010037228465080261, 0.015125775709748268, 0.012232311069965363, 0.004820776171982288, 0.030132677406072617, 0.027920128777623177, 0.06383445858955383, 0.3576652705669403], [0.01699378341436386, 0.004481353797018528, 0.003063096199184656, 0.0033335527405142784, 0.002045591128990054, 0.3948352038860321, 0.021335851401090622, 0.015007155947387218, 0.005099436268210411, 0.008258916437625885, 0.016258830204606056, 0.007567724213004112, 0.0035253805108368397, 0.017697613686323166, 0.02099190279841423, 0.012675478123128414, 0.4468291103839874], [0.014548920094966888, 0.005981468595564365, 0.006194691173732281, 0.001965502044185996, 0.004265266470611095, 0.4058707356452942, 0.011853187344968319, 0.01683139055967331, 0.0030801002867519855, 0.003644591197371483, 0.005604077130556107, 0.0033310228027403355, 0.0018223634688183665, 0.006768015678972006, 0.005101718939840794, 0.015734784305095673, 0.48740220069885254], [0.013490749523043633, 0.011217270977795124, 0.005594153888523579, 0.004021509550511837, 0.006921778433024883, 0.40627309679985046, 0.005086957011371851, 0.01216357946395874, 0.0019284357549622655, 0.004040542058646679, 0.006562946364283562, 0.004587603732943535, 0.0032497120555490255, 0.004964916501194239, 0.00957038626074791, 0.01728196069598198, 0.4830443561077118], [0.038348838686943054, 0.02181072160601616, 0.021423177793622017, 0.010598553344607353, 0.02792845480144024, 0.3113843500614166, 0.014878511428833008, 0.02403482049703598, 0.017821092158555984, 0.024515166878700256, 0.016629472374916077, 0.0226212777197361, 0.010451466776430607, 0.013118522241711617, 0.020387372002005577, 0.05649089813232422, 0.34755727648735046], [0.010295357555150986, 0.0344940647482872, 0.005072253756225109, 0.018667040392756462, 0.006140485871583223, 0.3641045391559601, 0.010661786422133446, 0.01976783573627472, 0.004681326914578676, 0.011337812058627605, 0.005162470508366823, 0.004667222965508699, 0.006815075408667326, 0.022082939743995667, 0.013940861448645592, 0.012498714961111546, 0.44961017370224]], [[0.0084765600040555, 0.0136650325730443, 0.003129539079964161, 0.009236106649041176, 0.01803673803806305, 0.3809669613838196, 0.024006590247154236, 0.017646100372076035, 0.0036038074176758528, 0.011402721516788006, 0.0027213371358811855, 0.00675358297303319, 0.0032058842480182648, 0.004489272832870483, 0.003775646910071373, 0.04273507744073868, 0.4461490511894226], [0.02221781387925148, 0.03298290818929672, 0.07073959708213806, 0.1432960480451584, 0.35421496629714966, 0.0762585997581482, 0.04262581095099449, 0.05269180238246918, 0.005990283098071814, 0.0063379365019500256, 0.0018287792336195707, 0.004261973313987255, 0.002731015207245946, 0.016578206792473793, 0.023197637870907784, 0.05827132612466812, 0.08577534556388855], [0.006044495385140181, 0.010023897513747215, 0.01982470415532589, 0.573982298374176, 0.19547788798809052, 0.05086158961057663, 0.042874276638031006, 0.023523185402154922, 0.0008611503290012479, 0.0015976188005879521, 0.00025062134955078363, 0.001221778686158359, 0.0005006130668334663, 0.0008118888363242149, 0.0017745853401720524, 0.015170447528362274, 0.05519896745681763], [0.011867951601743698, 0.04736120253801346, 0.022582948207855225, 0.07200354337692261, 0.12608562409877777, 0.206405371427536, 0.17588751018047333, 0.032311562448740005, 0.010981421917676926, 0.005841027945280075, 0.0005240037571638823, 0.0027073135133832693, 0.0009908770443871617, 0.0033217077143490314, 0.0020401827059686184, 0.05765685811638832, 0.22143082320690155], [0.020772693678736687, 0.06952901184558868, 0.03502266854047775, 0.15443581342697144, 0.12635301053524017, 0.07788395136594772, 0.17270253598690033, 0.10703226923942566, 0.010636323131620884, 0.025180047377943993, 0.004461394157260656, 0.005318275652825832, 0.004265946801751852, 0.014854731038212776, 0.0200728140771389, 0.06513097882270813, 0.08634752035140991], [0.010813653469085693, 0.010152311064302921, 0.00493446784093976, 0.007813741452991962, 0.019213398918509483, 0.4100152552127838, 0.0124941011890769, 0.010719383135437965, 0.002094472525641322, 0.002944546053186059, 0.001437985454685986, 0.001653709216043353, 0.0016338967252522707, 0.005828061141073704, 0.0037045408971607685, 0.00985999871045351, 0.4846864640712738], [0.0022675935178995132, 0.004346749279648066, 0.0014838489005342126, 0.02671341970562935, 0.02586851827800274, 0.12386965751647949, 0.07958400994539261, 0.059355512261390686, 0.010283241979777813, 0.03925356641411781, 0.059216707944869995, 0.04042345657944679, 0.026588458567857742, 0.023808661848306656, 0.14071615040302277, 0.18886849284172058, 0.14735186100006104], [0.007621753495186567, 0.013936178758740425, 0.0028495206497609615, 0.012970623560249805, 0.03297167271375656, 0.05452708154916763, 0.022342432290315628, 0.03907136619091034, 0.022829271852970123, 0.040332015603780746, 0.10723382979631424, 0.03459570184350014, 0.042328692972660065, 0.06444992125034332, 0.22697007656097412, 0.2120094746351242, 0.06296035647392273], [0.008258538320660591, 0.009513442404568195, 0.0013837548904120922, 0.020482460036873817, 0.020799467340111732, 0.07244278490543365, 0.026351122185587883, 0.02951779030263424, 0.011386372148990631, 0.045485273003578186, 0.20649965107440948, 0.04765678942203522, 0.033945150673389435, 0.06528608500957489, 0.2370363175868988, 0.08129100501537323, 0.08266407996416092], [0.011403203941881657, 0.009442728012800217, 0.004050238523632288, 0.01971837505698204, 0.04138333350419998, 0.22233600914478302, 0.03677867352962494, 0.010907098650932312, 0.013226553797721863, 0.024955766275525093, 0.08668158203363419, 0.050402697175741196, 0.013664713129401207, 0.027064083144068718, 0.056385014206171036, 0.11688478291034698, 0.2547152042388916], [0.013163934461772442, 0.008632929995656013, 0.0022449821699410677, 0.008780431002378464, 0.037906464189291, 0.1300717443227768, 0.0518663264811039, 0.014067579060792923, 0.01847381331026554, 0.011339292861521244, 0.08512130379676819, 0.09118236601352692, 0.05081203579902649, 0.039204634726047516, 0.09361808001995087, 0.1903793215751648, 0.15313471853733063], [0.003206830471754074, 0.004947054665535688, 0.0007304749451577663, 0.012668413110077381, 0.01372039970010519, 0.28335168957710266, 0.012659874744713306, 0.006098825950175524, 0.003672066144645214, 0.0061385431326925755, 0.007981909438967705, 0.019467508420348167, 0.05230139568448067, 0.051685087382793427, 0.12302432954311371, 0.06937741488218307, 0.32896825671195984], [0.0026902162935584784, 0.003427451942116022, 0.0003848462656605989, 0.0018898913403972983, 0.006833553779870272, 0.30226022005081177, 0.005360948853194714, 0.0036722691729664803, 0.005856277421116829, 0.002499526599422097, 0.002128214342519641, 0.009656718000769615, 0.025224925950169563, 0.043434638530015945, 0.18082135915756226, 0.062242500483989716, 0.3416164517402649], [0.0024390171747654676, 0.0023670345544815063, 0.00047672641812823713, 0.0006018337444402277, 0.00833008624613285, 0.3601240813732147, 0.0047499630600214005, 0.0070414794608950615, 0.006664571352303028, 0.0031067233067005873, 0.0016215045470744371, 0.006038229446858168, 0.011885697953402996, 0.044134266674518585, 0.05467481166124344, 0.08289267122745514, 0.40285125374794006], [0.004684513434767723, 0.009556366130709648, 0.0023924168199300766, 0.004612388089299202, 0.019000345841050148, 0.3417900502681732, 0.02648727409541607, 0.012854506261646748, 0.022488849237561226, 0.00992591679096222, 0.003584554884582758, 0.0143734747543931, 0.010366528294980526, 0.025901423767209053, 0.043082237243652344, 0.07902584969997406, 0.3698732852935791], [0.016769709065556526, 0.034820955246686935, 0.012139073573052883, 0.055223383009433746, 0.0434112511575222, 0.31443527340888977, 0.03898666054010391, 0.051806628704071045, 0.004894434008747339, 0.0069004748947918415, 0.001938067376613617, 0.0028169266879558563, 0.005874291993677616, 0.01526802871376276, 0.016296569257974625, 0.02844971790909767, 0.3499686121940613], [0.011109295301139355, 0.009648129343986511, 0.00509110139682889, 0.008025046437978745, 0.018914319574832916, 0.4106828272342682, 0.01198936253786087, 0.010297306813299656, 0.0019511254504323006, 0.0028382481541484594, 0.0014757228782400489, 0.0016445994842797518, 0.001588482758961618, 0.005543144419789314, 0.0035359642934054136, 0.009689509868621826, 0.48597586154937744]], [[0.0056648110039532185, 0.0031542337965220213, 0.001900354167446494, 0.001957627944648266, 0.00890817679464817, 0.17956650257110596, 0.05865481495857239, 0.05688151344656944, 0.00546076288446784, 0.050778262317180634, 0.015060584992170334, 0.023895304650068283, 0.008135725744068623, 0.015345633961260319, 0.02020944654941559, 0.32522860169410706, 0.219197615981102], [0.026364870369434357, 0.03063518926501274, 0.04950929060578346, 0.10652383416891098, 0.14653673768043518, 0.26059654355049133, 0.0199687909334898, 0.016760891303420067, 0.0021923917811363935, 0.005321944132447243, 0.00204277690500021, 0.001529799192212522, 0.002069162903353572, 0.003352808067575097, 0.007837172597646713, 0.0347292423248291, 0.28402847051620483], [0.035487327724695206, 0.04578317329287529, 0.05921776592731476, 0.10029792785644531, 0.24047845602035522, 0.22446930408477783, 0.0195474810898304, 0.007935755886137486, 0.0004291362129151821, 0.0009936409769579768, 0.0004605217545758933, 0.00023250312369782478, 0.000270078337052837, 0.0004710695066023618, 0.0009317632066085935, 0.017438696697354317, 0.24555529654026031], [0.03525598347187042, 0.18895773589611053, 0.153364360332489, 0.1202487051486969, 0.17345425486564636, 0.0988776832818985, 0.04561226814985275, 0.023602092638611794, 0.002579602412879467, 0.006128574721515179, 0.0023837783373892307, 0.0016365526244044304, 0.00324652181006968, 0.003422956448048353, 0.004595943260937929, 0.025197133421897888, 0.11143592745065689], [0.028102336451411247, 0.10465482622385025, 0.15767215192317963, 0.46947845816612244, 0.13121069967746735, 0.030072733759880066, 0.006605671253055334, 0.009921666234731674, 0.0006845618481747806, 0.0038264873437583447, 0.0009368048049509525, 0.0009671807638369501, 0.0023343958891928196, 0.0017452873289585114, 0.005165531300008297, 0.014395089820027351, 0.03222605958580971], [0.0019998836796730757, 0.0025594979524612427, 0.0004887170507572591, 0.0012076845159754157, 0.002254773862659931, 0.4490341544151306, 0.0003494815609883517, 0.0013194632483646274, 0.000626302498858422, 0.0010358436265960336, 0.0004188435268588364, 0.00032026940607465804, 0.0004376490833237767, 0.0008334989543072879, 0.0007061678334139287, 0.0015728974249213934, 0.5348348617553711], [0.011475177481770515, 0.006217768881469965, 0.008313556201756, 0.010965567082166672, 0.035162508487701416, 0.2523273825645447, 0.056513287127017975, 0.03055962361395359, 0.008620102889835835, 0.03317703679203987, 0.045270103961229324, 0.042330916970968246, 0.019665425643324852, 0.010164005681872368, 0.026247449219226837, 0.11999903619289398, 0.28299105167388916], [0.027736317366361618, 0.01719975471496582, 0.007456844672560692, 0.01812739670276642, 0.08131217956542969, 0.18889641761779785, 0.1380745768547058, 0.04322170838713646, 0.011483771726489067, 0.03080499731004238, 0.022876104339957237, 0.01618851348757744, 0.021020779386162758, 0.019245421513915062, 0.04044901207089424, 0.10834275186061859, 0.20756344497203827], [0.013712865300476551, 0.008669622242450714, 0.001618259702809155, 0.00741998478770256, 0.04674401134252548, 0.25670677423477173, 0.0783344954252243, 0.08118084073066711, 0.01650746911764145, 0.031167877838015556, 0.01633285917341709, 0.022319959476590157, 0.024417806416749954, 0.01993313431739807, 0.0398106686770916, 0.051930565387010574, 0.28319284319877625], [0.009814893826842308, 0.010966897010803223, 0.002534427447244525, 0.009713809005916119, 0.03602777421474457, 0.14941661059856415, 0.11197812855243683, 0.1684257835149765, 0.020852945744991302, 0.02026013471186161, 0.030422832816839218, 0.03497011959552765, 0.02697782963514328, 0.03682218864560127, 0.08048219978809357, 0.080020971596241, 0.17031243443489075], [0.005714434199035168, 0.012627811171114445, 0.002831768710166216, 0.0022477295715361834, 0.05237514153122902, 0.1885734349489212, 0.22099050879478455, 0.12465927749872208, 0.01495759654790163, 0.007664416916668415, 0.020410776138305664, 0.018131185322999954, 0.03306153416633606, 0.01507523376494646, 0.0444776825606823, 0.031865742057561874, 0.2043357491493225], [0.028385642915964127, 0.02445875108242035, 0.0041345213539898396, 0.02118934504687786, 0.0361180454492569, 0.1463320553302765, 0.19192492961883545, 0.08355940133333206, 0.036079540848731995, 0.04590807482600212, 0.06147495284676552, 0.023857025429606438, 0.032853059470653534, 0.026309240609407425, 0.03692140057682991, 0.04016640782356262, 0.16032762825489044], [0.01979951374232769, 0.015330440364778042, 0.0025604593101888895, 0.022946897894144058, 0.027564654126763344, 0.13889078795909882, 0.10488034039735794, 0.05237383395433426, 0.06142657995223999, 0.07560715824365616, 0.10927645862102509, 0.05274959281086922, 0.05703289434313774, 0.03240213170647621, 0.041843391954898834, 0.032511841505765915, 0.15280303359031677], [0.028486311435699463, 0.03280573710799217, 0.005441514775156975, 0.02540135756134987, 0.01886351965367794, 0.15497955679893494, 0.07365544885396957, 0.058509886264801025, 0.03247954696416855, 0.05370405688881874, 0.08511658757925034, 0.04438695311546326, 0.0631173625588417, 0.07234266400337219, 0.033699557185173035, 0.04377417266368866, 0.17323577404022217], [0.0376240611076355, 0.026926683261990547, 0.009695052169263363, 0.04852931201457977, 0.048223964869976044, 0.06440585106611252, 0.22394980490207672, 0.09844931215047836, 0.03691673278808594, 0.041401881724596024, 0.056385334581136703, 0.03901078179478645, 0.08308157324790955, 0.05385078117251396, 0.02946539595723152, 0.0289947260171175, 0.07308875769376755], [0.0578371100127697, 0.02458062209188938, 0.05524018406867981, 0.1763569712638855, 0.05810556188225746, 0.07624806463718414, 0.17443138360977173, 0.061472147703170776, 0.00824589841067791, 0.05308108404278755, 0.01454854104667902, 0.02610713429749012, 0.025817928835749626, 0.02125014178454876, 0.020795313641428947, 0.056936394423246384, 0.08894552290439606], [0.002066300017759204, 0.0025262441486120224, 0.0005217270227149129, 0.001192563446238637, 0.002209256635978818, 0.44884032011032104, 0.0004033568548038602, 0.0013638997916132212, 0.0006593348225578666, 0.0010889108525589108, 0.00047633188660256565, 0.00035318953450769186, 0.00045944281737320125, 0.0008957376121543348, 0.0007220281404443085, 0.001677205553278327, 0.534544050693512]], [[0.004188334569334984, 0.007133683189749718, 0.002255934989079833, 0.00367872160859406, 0.00739370658993721, 0.42482465505599976, 0.046003203839063644, 0.021216770634055138, 0.005400949157774448, 0.004183854907751083, 0.0006155548617243767, 0.00200402713380754, 0.0005638170405291021, 0.0021610616240650415, 0.0014077579835429788, 0.013045152649283409, 0.4539228677749634], [0.042315080761909485, 0.03620697185397148, 0.09689433127641678, 0.1401035487651825, 0.2607179880142212, 0.17639607191085815, 0.01541982963681221, 0.013832149095833302, 0.0023356201127171516, 0.001449362374842167, 0.00020138338732067496, 0.0006552930572070181, 0.00033352518221363425, 0.00261643691919744, 0.0024744535330682993, 0.012035604566335678, 0.19601234793663025], [0.008309096097946167, 0.024041447788476944, 0.03857972472906113, 0.07967700064182281, 0.3928961455821991, 0.20114199817180634, 0.021089497953653336, 0.0034242384135723114, 0.0001356136053800583, 0.00011471353354863822, 0.0002239649766124785, 0.0002819320361595601, 0.00012345192953944206, 0.00038171367486938834, 0.0005938534741289914, 0.006742387544363737, 0.2222432643175125], [0.019074048846960068, 0.04359908029437065, 0.018214218318462372, 0.08043204993009567, 0.2323787957429886, 0.22555887699127197, 0.09947431832551956, 0.011998637579381466, 0.0016122477827593684, 0.0008231392130255699, 0.0005960233393125236, 0.0014823791570961475, 0.0006127739325165749, 0.0010351808741688728, 0.0021903610322624445, 0.015595021657645702, 0.24532273411750793], [0.018854105845093727, 0.0607125349342823, 0.01801801472902298, 0.08351784944534302, 0.12313386052846909, 0.17992493510246277, 0.21040493249893188, 0.055491045117378235, 0.00852768775075674, 0.005140678957104683, 0.0021006197202950716, 0.003207239555194974, 0.0024408388417214155, 0.004610402509570122, 0.007915151305496693, 0.023972071707248688, 0.19202813506126404], [0.009726137854158878, 0.008658583275973797, 0.005348327569663525, 0.0036379049997776747, 0.019593603909015656, 0.42148515582084656, 0.002761242212727666, 0.008751537650823593, 0.0017329598776996136, 0.0018423069268465042, 0.0023161692079156637, 0.0025739376433193684, 0.001060024369508028, 0.002178811002522707, 0.00537658529356122, 0.020217495039105415, 0.48273923993110657], [0.005470804870128632, 0.0012375679798424244, 0.0012004447635263205, 0.0021518878638744354, 0.01788945309817791, 0.29543164372444153, 0.13532130420207977, 0.10881204158067703, 0.02294863760471344, 0.017659280449151993, 0.016767844557762146, 0.015749404206871986, 0.0030904917512089014, 0.005638785194605589, 0.008087560534477234, 0.023739051073789597, 0.3188038468360901], [0.0025695108342915773, 0.0013264776207506657, 0.0002037191588897258, 0.00035255245165899396, 0.00192298146430403, 0.318138986825943, 0.010375426150858402, 0.05118357017636299, 0.03129534795880318, 0.04405597597360611, 0.05977093055844307, 0.01688707061111927, 0.005205220077186823, 0.016820700839161873, 0.04562033340334892, 0.05905449390411377, 0.335216760635376], [0.0018554945709183812, 0.0004681009741034359, 6.545229553012177e-05, 0.000359601661330089, 0.0008542025461792946, 0.18623092770576477, 0.006062052212655544, 0.007689942140132189, 0.01257398072630167, 0.09830958396196365, 0.35832223296165466, 0.030397625640034676, 0.011958751827478409, 0.029234865680336952, 0.027231601998209953, 0.02607865445315838, 0.20230694115161896], [0.0020992031786590815, 0.0010525269899517298, 5.9625959693221375e-05, 0.0009962208569049835, 0.001865331083536148, 0.33537063002586365, 0.01945953629910946, 0.013114429078996181, 0.003995473496615887, 0.016729852184653282, 0.10241486132144928, 0.02057354710996151, 0.015425577759742737, 0.026669712737202644, 0.036807868629693985, 0.03656840696930885, 0.3667970597743988], [0.0005605418118648231, 0.0016279572155326605, 9.617940668249503e-05, 0.00025577069027349353, 0.0016097460174933076, 0.3857985734939575, 0.005171994213014841, 0.010014885105192661, 0.001459111925214529, 0.0040320660918951035, 0.02128465846180916, 0.014301283285021782, 0.02420620620250702, 0.01948489621281624, 0.052217088639736176, 0.028828753158450127, 0.42905035614967346], [0.0009177778265438974, 0.0020174849778413773, 0.0001600640534888953, 0.0006884312024340034, 0.002542647300288081, 0.2618713080883026, 0.003673566272482276, 0.010073209181427956, 0.003171514952555299, 0.010668303817510605, 0.04959910735487938, 0.015012258663773537, 0.03368154168128967, 0.08474739640951157, 0.1571851223707199, 0.06683295965194702, 0.297157347202301], [0.0009476901614107192, 0.0021396586671471596, 0.0005256434087641537, 0.0015726103447377682, 0.003164571477100253, 0.18710927665233612, 0.004270684439688921, 0.014662038534879684, 0.004982678219676018, 0.022168787196278572, 0.024342749267816544, 0.011398361064493656, 0.01609661988914013, 0.06333593279123306, 0.33231037855148315, 0.09132267534732819, 0.21964961290359497], [0.0025148154236376286, 0.004056510049849749, 0.0007603541598655283, 0.0063637844286859035, 0.004141639452427626, 0.16041047871112823, 0.0030329516157507896, 0.016645288094878197, 0.005086853634566069, 0.015093181282281876, 0.008217992261052132, 0.007805551402270794, 0.0122417863458395, 0.06775514781475067, 0.39363905787467957, 0.10360913723707199, 0.18862545490264893], [0.01111416146159172, 0.010163098573684692, 0.0012950801756232977, 0.02043714001774788, 0.012655578553676605, 0.3103998303413391, 0.015623996965587139, 0.020527182146906853, 0.009320110082626343, 0.031658634543418884, 0.013513845391571522, 0.009898391552269459, 0.009594922885298729, 0.016684869304299355, 0.04591407626867294, 0.09806475788354874, 0.3631344139575958], [0.015806427225470543, 0.02835725247859955, 0.0071237473748624325, 0.0389384962618351, 0.02222716435790062, 0.3227516710758209, 0.04514496028423309, 0.02011147327721119, 0.010231449268758297, 0.02464936301112175, 0.006605076137930155, 0.005150409881025553, 0.004178547766059637, 0.0113968625664711, 0.01687593385577202, 0.05558512359857559, 0.3648659586906433], [0.009854944422841072, 0.008724772371351719, 0.0055234916508197784, 0.003998120315372944, 0.020219851285219193, 0.4202844798564911, 0.00296954158693552, 0.008542217314243317, 0.0016003235941752791, 0.0017917373916134238, 0.002263573231175542, 0.002494567772373557, 0.001010014326311648, 0.002124918159097433, 0.005555675830692053, 0.020633304491639137, 0.48240843415260315]], [[0.018186552450060844, 0.1823132038116455, 0.024218477308750153, 0.11275806277990341, 0.14089669287204742, 0.1794857531785965, 0.020192673429846764, 0.028026582673192024, 0.004373583011329174, 0.009105173870921135, 0.0010647429153323174, 0.0013421261683106422, 0.002005667658522725, 0.013452323153614998, 0.03204953297972679, 0.019610757008194923, 0.21091806888580322], [0.005609873682260513, 0.02844351902604103, 0.012248458340764046, 0.040490806102752686, 0.06180007383227348, 0.38734033703804016, 0.006646975874900818, 0.008535830304026604, 0.002291326643899083, 0.0010459410259500146, 0.0017532827332615852, 0.0026835817843675613, 0.0036993594840168953, 0.0031258731614798307, 0.004474401008337736, 0.013957834802567959, 0.41585245728492737], [0.002691861242055893, 0.19998838007450104, 0.02071753703057766, 0.06890784204006195, 0.0853261724114418, 0.27387943863868713, 0.0025572364684194326, 0.004012655932456255, 0.0005462020053528249, 0.0004219186957925558, 7.440750778187066e-05, 0.00027020630659535527, 0.0006347518065012991, 0.002161855809390545, 0.0030355427879840136, 0.009133919142186642, 0.32564011216163635], [0.004510881379246712, 0.07208456844091415, 0.3211689591407776, 0.05328734591603279, 0.050793085247278214, 0.21320345997810364, 0.006751725450158119, 0.003848251886665821, 0.001749134506098926, 0.002026455709710717, 0.000745248980820179, 0.002329826122149825, 0.002325287787243724, 0.002415639581158757, 0.0030330016743391752, 0.011958577670156956, 0.24776864051818848], [0.0010120784863829613, 0.06773669272661209, 0.22581954300403595, 0.4231593608856201, 0.08283545076847076, 0.08342058956623077, 0.0066301701590418816, 0.0023824742529541254, 0.00034852910903282464, 0.0005207907524891198, 0.00015329680172726512, 0.0005019515519961715, 0.0004763328761328012, 0.0015558687737211585, 0.0030413810163736343, 0.002614064607769251, 0.09779147058725357], [0.005573457106947899, 0.01383672934025526, 0.0017656544223427773, 0.0023815203458070755, 0.006817927584052086, 0.4348298907279968, 0.0019979628268629313, 0.008725469931960106, 0.002532935468479991, 0.0027160905301570892, 0.001431912649422884, 0.0013266963651403785, 0.0009238217025995255, 0.0036334339529275894, 0.001954076113179326, 0.007166879717260599, 0.5023855566978455], [0.007654241286218166, 0.05936341732740402, 0.06624143570661545, 0.4381338655948639, 0.19064247608184814, 0.08347903937101364, 0.02870515175163746, 0.009970055893063545, 0.002499472349882126, 0.0019360263831913471, 0.0018484829925000668, 0.0017945471918210387, 0.003491402370855212, 0.003696377156302333, 0.009130757302045822, 0.003908255603164434, 0.08750505745410919], [0.007992465980350971, 0.12741415202617645, 0.007724827155470848, 0.07971340417861938, 0.14382916688919067, 0.23259486258029938, 0.024296021088957787, 0.05866388604044914, 0.010474557057023048, 0.0039685433730483055, 0.00042858938104473054, 0.0008956706151366234, 0.004043235909193754, 0.00981864519417286, 0.02893434651196003, 0.012760907411575317, 0.2464466691017151], [0.007613699417561293, 0.024103758856654167, 0.0004887630348093808, 0.005694406107068062, 0.014542028307914734, 0.3385777473449707, 0.01383659616112709, 0.10016417503356934, 0.02168077602982521, 0.012115869671106339, 0.0010157331125810742, 0.0027246223762631416, 0.005203557666391134, 0.021602081134915352, 0.03699857369065285, 0.0170406773686409, 0.3765968382358551], [0.003991507459431887, 0.009446964599192142, 0.0009863240411505103, 0.001922381343320012, 0.01393255963921547, 0.32130202651023865, 0.01270506251603365, 0.04850569739937782, 0.08340718597173691, 0.03835781291127205, 0.002187745412811637, 0.006774316541850567, 0.009342610836029053, 0.028772884979844093, 0.032556723803281784, 0.027432287111878395, 0.3583759367465973], [0.0014869195874780416, 0.0011420990340411663, 3.425547402002849e-05, 0.00039495641249231994, 0.0015302683459594846, 0.07459839433431625, 0.01324643287807703, 0.03190841153264046, 0.20809407532215118, 0.5316380262374878, 0.01347263716161251, 0.006063028238713741, 0.004502402152866125, 0.004494435619562864, 0.011880114674568176, 0.009101423434913158, 0.08641207218170166], [0.0029515172354876995, 0.0046341074630618095, 0.0003570991975720972, 0.0020722676999866962, 0.009502637200057507, 0.34545788168907166, 0.007572531700134277, 0.05725153908133507, 0.053158458322286606, 0.03892159461975098, 0.011991689912974834, 0.011687049642205238, 0.009453082457184792, 0.01837826520204544, 0.023837080225348473, 0.01363587100058794, 0.38913726806640625], [0.0009497370338067412, 0.0009595750598236918, 0.00018651399295777082, 0.0004489131097216159, 0.002576481783762574, 0.3548777997493744, 0.003959370777010918, 0.01415613666176796, 0.015842672437429428, 0.015910057350993156, 0.005732581950724125, 0.0516972653567791, 0.03859798237681389, 0.058410611003637314, 0.02525930292904377, 0.007416188716888428, 0.4030188024044037], [0.0014143710723146796, 0.0028231837786734104, 0.0006716718198731542, 0.0006097178556956351, 0.005581748206168413, 0.3150624632835388, 0.0038239278364926577, 0.027913305908441544, 0.019783733412623405, 0.017497468739748, 0.015855025500059128, 0.08162148296833038, 0.09731604158878326, 0.03693721443414688, 0.01100077759474516, 0.009539751335978508, 0.35254815220832825], [0.0008578316774219275, 0.00384965306147933, 0.0003430765646044165, 0.0008377742487937212, 0.0025053240824490786, 0.12367133796215057, 0.01884080097079277, 0.08323756605386734, 0.029918348416686058, 0.02936484105885029, 0.01863955520093441, 0.09094791114330292, 0.19476830959320068, 0.21546193957328796, 0.03947518393397331, 0.009455462917685509, 0.13782523572444916], [0.003448329633101821, 0.05371733382344246, 0.010829840786755085, 0.0676378682255745, 0.06487922370433807, 0.15381602942943573, 0.08987484127283096, 0.05630721524357796, 0.011521661654114723, 0.011936428025364876, 0.005307525862008333, 0.018324414268136024, 0.06778241693973541, 0.11114568263292313, 0.07755409181118011, 0.017365392297506332, 0.17855167388916016], [0.0054224575869739056, 0.013875997625291348, 0.0018316832138225436, 0.0023690680973231792, 0.006915634498000145, 0.43458524346351624, 0.0019351541996002197, 0.008719532750546932, 0.0026190250646322966, 0.00270450790412724, 0.0014321057824417949, 0.0013744182651862502, 0.0009785298025235534, 0.0036767995916306973, 0.0020182766020298004, 0.007230615243315697, 0.5023109912872314]], [[0.010265127755701542, 0.2232622653245926, 0.05678197368979454, 0.07689021527767181, 0.18020139634609222, 0.15690137445926666, 0.006618151441216469, 0.03365424647927284, 0.0014606311451643705, 0.006848826538771391, 0.0029160112608224154, 0.0040119122713804245, 0.002603476634249091, 0.002888269489631057, 0.012129584327340126, 0.04567653685808182, 0.17689000070095062], [0.02879398688673973, 0.05467435345053673, 0.016623828560113907, 0.021370425820350647, 0.051677629351615906, 0.24790184199810028, 0.011017652228474617, 0.20956213772296906, 0.010133158415555954, 0.01645810715854168, 0.0043173315934836864, 0.0025554397143423557, 0.0020684103947132826, 0.0035261756274849176, 0.010181444697082043, 0.04337063431739807, 0.2657674252986908], [0.031211769208312035, 0.024806369096040726, 0.018280962482094765, 0.07082919776439667, 0.09276816248893738, 0.12891539931297302, 0.032049331814050674, 0.2643558382987976, 0.01566830836236477, 0.030905310064554214, 0.002814750885590911, 0.006386816967278719, 0.004527093376964331, 0.007868634536862373, 0.030876100063323975, 0.09142207354307175, 0.1463138908147812], [0.01633545570075512, 0.03732959181070328, 0.02301092818379402, 0.12765556573867798, 0.16681067645549774, 0.17557907104492188, 0.03199303150177002, 0.10885646939277649, 0.007015097886323929, 0.008825917728245258, 0.0077860113233327866, 0.0036776065826416016, 0.002281520515680313, 0.0020606659818440676, 0.008347799070179462, 0.07775885611772537, 0.19467581808567047], [0.01945141889154911, 0.22356761991977692, 0.04016910865902901, 0.2519915997982025, 0.14827214181423187, 0.05129188671708107, 0.004936706740409136, 0.12043104320764542, 0.002083021914586425, 0.007104513235390186, 0.0007584961713291705, 0.0012526942882686853, 0.0020892091561108828, 0.002551470883190632, 0.005912725813686848, 0.05792907997965813, 0.0602073110640049], [0.0021346136927604675, 0.0010469233384355903, 0.0002160046569770202, 0.0003505503118503839, 0.001961757428944111, 0.4739588797092438, 0.0005399598740041256, 0.00038332625990733504, 0.0013989555882290006, 0.000637598626781255, 0.0008709132089279592, 0.0006562484195455909, 0.0009156459127552807, 0.0003736233920790255, 0.00029644175083376467, 0.002358180470764637, 0.5119002461433411], [0.029168296605348587, 0.058513835072517395, 0.041056569665670395, 0.11615211516618729, 0.10755036026239395, 0.20436106622219086, 0.03125567361712456, 0.023567531257867813, 0.014242010191082954, 0.028318265452980995, 0.0025854557752609253, 0.006905518006533384, 0.007259258069097996, 0.002910315291956067, 0.011264611966907978, 0.07889358699321747, 0.2359955757856369], [0.008760140277445316, 0.7217814922332764, 0.011277453973889351, 0.06434950977563858, 0.04183107241988182, 0.016620829701423645, 0.00375489448197186, 0.04841559752821922, 0.003151751821860671, 0.009589849039912224, 0.0011572868097573519, 0.0004126018029637635, 0.00043356846435926855, 0.0006370106129907072, 0.005776014178991318, 0.043467432260513306, 0.018583521246910095], [0.015919599682092667, 0.1384141445159912, 0.0027500593569129705, 0.060639020055532455, 0.04921140521764755, 0.10047032684087753, 0.013175947591662407, 0.06428591907024384, 0.009382463991641998, 0.10390728712081909, 0.0017704907804727554, 0.0032039545476436615, 0.007427481934428215, 0.013925074599683285, 0.20564021170139313, 0.09292779862880707, 0.11694878339767456], [0.016222631558775902, 0.25394201278686523, 0.004768054932355881, 0.09679404646158218, 0.11971274763345718, 0.058909084647893906, 0.0031051833648234606, 0.03400060907006264, 0.007896446622908115, 0.05215363949537277, 0.0019155171466991305, 0.001171921961940825, 0.000625861284788698, 0.005021657794713974, 0.026490172371268272, 0.25110262632369995, 0.06616776436567307], [0.03703060373663902, 0.07739081978797913, 0.005418005865067244, 0.036399491131305695, 0.10390383750200272, 0.1988244205713272, 0.015400655567646027, 0.05255616828799248, 0.012176823802292347, 0.04076771065592766, 0.009216740727424622, 0.0036406570579856634, 0.0008267203811556101, 0.0022283338475972414, 0.01072884164750576, 0.1884412169456482, 0.20504894852638245], [0.04563455656170845, 0.01594393700361252, 0.0073554725386202335, 0.06799016147851944, 0.04061184823513031, 0.25972431898117065, 0.006238131318241358, 0.018703341484069824, 0.030625758692622185, 0.03544196859002113, 0.00852174311876297, 0.017846981063485146, 0.013368632644414902, 0.020614949986338615, 0.034894056618213654, 0.0867638811469078, 0.2897203266620636], [0.014568242244422436, 0.005328716244548559, 0.0010997724020853639, 0.014150719158351421, 0.01055135764181614, 0.3555523157119751, 0.0029320018365979195, 0.004025968257337809, 0.006880276836454868, 0.010483568534255028, 0.001453457516618073, 0.0056562162935733795, 0.026500370353460312, 0.05622415244579315, 0.056392770260572433, 0.02697182074189186, 0.40122830867767334], [0.007318341173231602, 0.005305900704115629, 0.000792134553194046, 0.012331118807196617, 0.015722138807177544, 0.3926977217197418, 0.0006282264366745949, 0.0027503441087901592, 0.0034164239186793566, 0.007064077537506819, 0.0005821837112307549, 0.001860111835412681, 0.012103135697543621, 0.013428621925413609, 0.029875194653868675, 0.04587136209011078, 0.44825297594070435], [0.029859179630875587, 0.049556370824575424, 0.003082074923440814, 0.03929593041539192, 0.04183705896139145, 0.29988884925842285, 0.003909519873559475, 0.023515917360782623, 0.015205607749521732, 0.029256373643875122, 0.004078534431755543, 0.003898527240380645, 0.02255287766456604, 0.021046387031674385, 0.03534012287855148, 0.05855464190244675, 0.3191221058368683], [0.05087096616625786, 0.14277350902557373, 0.020318899303674698, 0.05531356856226921, 0.1030222550034523, 0.04572594165802002, 0.027357857674360275, 0.13612042367458344, 0.021364277228713036, 0.16175904870033264, 0.003227386623620987, 0.006122049875557423, 0.008792604319751263, 0.011813133955001831, 0.03921202942728996, 0.1143302321434021, 0.05187591165304184], [0.0023518898524343967, 0.00110493297688663, 0.00024215856683440506, 0.00037356821121647954, 0.0021288383286446333, 0.4736343026161194, 0.0005599730648100376, 0.00041239059646613896, 0.0014486706349998713, 0.0006302052643150091, 0.0009281612001359463, 0.0007071456057019532, 0.000880642153788358, 0.00036713495501317084, 0.0002842222747858614, 0.0025381557643413544, 0.511407732963562]], [[0.008257219567894936, 0.004893642850220203, 8.742692443775013e-05, 0.0004604661662597209, 0.0011276161530986428, 0.12468386441469193, 0.011071695946156979, 0.03026345558464527, 0.0009005650645121932, 0.21164079010486603, 0.003384918672963977, 0.008318377658724785, 0.008776056580245495, 0.3448408544063568, 0.03226902708411217, 0.05589490011334419, 0.1531292051076889], [0.01068151369690895, 0.1118510290980339, 0.033196352422237396, 0.015081765130162239, 0.05269603803753853, 0.20010313391685486, 0.03233983740210533, 0.22907482087612152, 0.003326513571664691, 0.013112522661685944, 0.0052414569072425365, 0.005675492808222771, 0.004343098029494286, 0.015076672658324242, 0.01089662965387106, 0.0293927863240242, 0.22791032493114471], [0.011088138446211815, 0.0403350293636322, 0.053592417389154434, 0.011016963049769402, 0.037595272064208984, 0.3447132408618927, 0.013916597701609135, 0.032274577766656876, 0.008088011294603348, 0.0069275908172130585, 0.0024391221813857555, 0.008102627471089363, 0.003841554746031761, 0.008192767389118671, 0.004099509213119745, 0.022170476615428925, 0.39160603284835815], [0.005647200625389814, 0.023429373279213905, 0.013827008195221424, 0.024682629853487015, 0.008244422264397144, 0.332151859998703, 0.011849045753479004, 0.024184802547097206, 0.006494515109807253, 0.013333173468708992, 0.00305345025844872, 0.012509648688137531, 0.015985170379281044, 0.09652780741453171, 0.014385666698217392, 0.009910388849675655, 0.38378390669822693], [0.014805599115788937, 0.27724504470825195, 0.03752792626619339, 0.01881391555070877, 0.06760449707508087, 0.16170665621757507, 0.006418578326702118, 0.0606168694794178, 0.001984716858714819, 0.008849586360156536, 0.0022502639330923557, 0.011699778959155083, 0.007266813423484564, 0.10840683430433273, 0.024708248674869537, 0.016955319792032242, 0.17313940823078156], [0.0034122380893677473, 0.00445818156003952, 0.0019394936971366405, 0.002149065723642707, 0.006814661901444197, 0.43780508637428284, 0.0031416008714586496, 0.003791274270042777, 0.0015809854958206415, 0.0022312900982797146, 0.002952396869659424, 0.0010447100503370166, 0.0006937501020729542, 0.0019261428387835622, 0.0013325806939974427, 0.00911635160446167, 0.5156100988388062], [0.013128633610904217, 0.054125621914863586, 0.0026552341878414154, 0.0024853821378201246, 0.01050017960369587, 0.24772115051746368, 0.03380419686436653, 0.08424610644578934, 0.0045247264206409454, 0.07893596589565277, 0.05008922144770622, 0.01777995005249977, 0.014046954922378063, 0.0485159233212471, 0.012506048195064068, 0.032122477889060974, 0.29281219840049744], [0.01303162518888712, 0.07973283529281616, 0.004567460156977177, 0.0019292011857032776, 0.010174212045967579, 0.1494891345500946, 0.02016182616353035, 0.0750681534409523, 0.012776673771440983, 0.12956547737121582, 0.06615664064884186, 0.03337272256612778, 0.021654536947607994, 0.09548152983188629, 0.08678989112377167, 0.036826930940151215, 0.1632211059331894], [0.007704000920057297, 0.007916847243905067, 0.003396571846678853, 0.0021418153773993254, 0.0030041695572435856, 0.3513297140598297, 0.002586089540272951, 0.01020289957523346, 0.039395421743392944, 0.055891457945108414, 0.04490537941455841, 0.019021574407815933, 0.011947663500905037, 0.02881046012043953, 0.009847951121628284, 0.015392406843602657, 0.3865056335926056], [0.015445230528712273, 0.018073460087180138, 0.0011081199627369642, 0.0025074996519833803, 0.006494317203760147, 0.2873903214931488, 0.00942162238061428, 0.030998989939689636, 0.02854325622320175, 0.10180513560771942, 0.01560528576374054, 0.017228001728653908, 0.02256528101861477, 0.0400036945939064, 0.024396797642111778, 0.06125336140394211, 0.3171595633029938], [0.014537700451910496, 0.014863836579024792, 0.0024775422643870115, 0.0006858667475171387, 0.006965064909309149, 0.3931906521320343, 0.005573492031544447, 0.004546377807855606, 0.021178994327783585, 0.019111724570393562, 0.03565484285354614, 0.0174759142100811, 0.0034818167332559824, 0.009509425610303879, 0.00457116961479187, 0.020692646503448486, 0.42548298835754395], [0.012703723274171352, 0.0054679629392921925, 0.006032486911863089, 0.00289106834679842, 0.004761080257594585, 0.3363911807537079, 0.004802789073437452, 0.006355115212500095, 0.033189717680215836, 0.027029143646359444, 0.031544726341962814, 0.04762855917215347, 0.02806723304092884, 0.025729099288582802, 0.016575660556554794, 0.0444786511361599, 0.366351842880249], [0.0055680545046925545, 0.001296712551265955, 0.0020161347929388285, 0.00851807463914156, 0.0037014521658420563, 0.362201064825058, 0.0052298749797046185, 0.002452065236866474, 0.026408245787024498, 0.02603040635585785, 0.007545111700892448, 0.02477366290986538, 0.06703043729066849, 0.027195211499929428, 0.012534881010651588, 0.01988750509917736, 0.397611141204834], [0.010165980085730553, 0.003975159488618374, 0.0010572937317192554, 0.0023133018985390663, 0.013636105693876743, 0.3278009295463562, 0.006804314441978931, 0.006080782040953636, 0.01368589885532856, 0.013352219015359879, 0.009636926464736462, 0.020090095698833466, 0.029375392943620682, 0.10656117647886276, 0.020595252513885498, 0.044070467352867126, 0.3707987070083618], [0.010866696946322918, 0.006787267047911882, 0.0014682484325021505, 0.002457280410453677, 0.020308634266257286, 0.34402626752853394, 0.005273439455777407, 0.017298532649874687, 0.008687775582075119, 0.016884302720427513, 0.004645138513296843, 0.012603851966559887, 0.01069951057434082, 0.04749172180891037, 0.04962023347616196, 0.04276479035615921, 0.3981162905693054], [0.049397315829992294, 0.05426033213734627, 0.004027979914098978, 0.004404637962579727, 0.031035268679261208, 0.10137810558080673, 0.036087825894355774, 0.17316536605358124, 0.006977003999054432, 0.10765694826841354, 0.006531053688377142, 0.03146718442440033, 0.01385226659476757, 0.134491965174675, 0.04509700834751129, 0.0840262621641159, 0.11614350229501724], [0.0035750947427004576, 0.004454511683434248, 0.0019751267973333597, 0.0021982635371387005, 0.0067324270494282246, 0.4368283450603485, 0.003283038502559066, 0.004010500852018595, 0.001697935746051371, 0.0025479362811893225, 0.003095107851549983, 0.0011476894142106175, 0.0007771088276058435, 0.002152083907276392, 0.0014796664472669363, 0.009435396641492844, 0.5146099328994751]], [[0.01408146321773529, 0.001574650057591498, 0.00034399094874970615, 0.017182335257530212, 0.004257685970515013, 0.4497431218624115, 0.004845339804887772, 0.000372610695194453, 0.0007309483480639756, 0.003913710359483957, 0.00022153349709697068, 0.0007323424215428531, 0.0015358866658061743, 0.003799161408096552, 0.00040599022759124637, 0.0005617482820525765, 0.49569740891456604], [0.0020613898523151875, 0.01743810810148716, 0.6423357129096985, 0.01567259430885315, 0.022248296067118645, 0.12978814542293549, 0.014053741469979286, 0.012185146100819111, 0.003936453256756067, 0.0001899230555864051, 5.444023190648295e-05, 0.00017854111501947045, 1.8796214135363698e-05, 0.0006384572479873896, 0.0004499627975746989, 0.008924039080739021, 0.1298261433839798], [0.004395355936139822, 0.002226634882390499, 0.008446075953543186, 0.8587096333503723, 0.012255243957042694, 0.04603106528520584, 0.0009396475506946445, 0.00036220764741301537, 0.00041308958316221833, 0.010045025497674942, 0.00013877484889235348, 4.722585072158836e-05, 0.0004337375867180526, 0.0007782169850543141, 0.00023864237300585955, 0.002626685192808509, 0.051912710070610046], [0.0071515548042953014, 0.004929795861244202, 0.003913418389856815, 0.009962242096662521, 0.8748357892036438, 0.045173317193984985, 0.003409020369872451, 0.0002870821044780314, 1.962881287909113e-05, 3.274782284279354e-05, 9.439574932912365e-05, 9.787506132852286e-05, 1.2160940059402492e-05, 0.0002432355104247108, 0.0004266382602509111, 0.003645355813205242, 0.04576573893427849], [0.055222418159246445, 0.3108732998371124, 0.0035990297328680754, 0.012483933009207249, 0.24609746038913727, 0.11218152940273285, 0.10708765685558319, 0.009563809260725975, 0.0006382389692589641, 5.9439738834043965e-05, 7.305407052626833e-05, 0.0014116897946223617, 0.00012700514344032854, 0.0008387345005758107, 0.000789254903793335, 0.007735870312899351, 0.13121755421161652], [0.0103993508964777, 0.02248504012823105, 0.005668136291205883, 0.02249225042760372, 0.050455957651138306, 0.3559737205505371, 0.008645015768706799, 0.006430633366107941, 0.005295170936733484, 0.009789758361876011, 0.0037623660173267126, 0.003986689727753401, 0.007335345726460218, 0.02300848998129368, 0.025969883427023888, 0.05108536034822464, 0.38721683621406555], [0.009819390252232552, 0.024214118719100952, 0.0010832223342731595, 0.00884968787431717, 0.048769935965538025, 0.2768266797065735, 0.06321939826011658, 0.2434345781803131, 0.003973012790083885, 0.002221109811216593, 0.0005925202276557684, 0.0030689630657434464, 0.000898835132829845, 0.002349564339965582, 0.004480126779526472, 0.0036102936137467623, 0.3025886118412018], [0.0012096705613657832, 0.0007986605050973594, 0.00033864693250507116, 0.004095091018825769, 0.0019745812751352787, 0.08016572147607803, 0.009815915487706661, 0.050553616136312485, 0.685996949672699, 0.0421324148774147, 0.0026321099139750004, 0.002702031983062625, 0.00222086813300848, 0.007866231724619865, 0.006555180065333843, 0.012131133116781712, 0.08881130814552307], [2.54418991971761e-05, 9.60042598308064e-07, 1.0126744882654748e-06, 8.375877951039001e-05, 5.35686876901309e-06, 0.0002333679294679314, 2.5142060621874407e-05, 6.0685910284519196e-05, 0.001536187599413097, 0.9943016767501831, 0.0022327026817947626, 3.477992504485883e-05, 0.0010042967041954398, 7.006266969256103e-05, 9.202172805089504e-05, 3.3319414797006175e-05, 0.00025938215549103916], [4.6100569306872785e-05, 3.347871597725316e-06, 2.549385953898309e-06, 0.00010449565888848156, 3.784679211094044e-05, 0.0017649501096457243, 0.00010963423119392246, 0.00019276211969554424, 0.000377871620003134, 0.11477901041507721, 0.8772613406181335, 0.0015086372150108218, 0.0005793901509605348, 0.00040520032052882016, 0.00042455640505068004, 0.0005225301720201969, 0.0018798487726598978], [0.0013344907201826572, 0.0002758883638307452, 1.1929361789952964e-05, 0.0006592972204089165, 0.001884762430563569, 0.24266071617603302, 0.003968945238739252, 0.03329095244407654, 0.0026307457592338324, 0.00179788947571069, 0.038194440305233, 0.1771521419286728, 0.017752699553966522, 0.18490572273731232, 0.007332176901400089, 0.01401127502322197, 0.2721359133720398], [0.00046451130765490234, 0.00011906915460713208, 4.451086169865448e-06, 0.0016196300275623798, 0.00012009611236862838, 0.018040824681520462, 0.00034077890450134873, 0.0021857134997844696, 0.004716335330158472, 0.07996460795402527, 0.0075972783379256725, 0.010074727237224579, 0.8231084942817688, 0.028060395270586014, 0.002300055930390954, 0.0012272234307602048, 0.02005571499466896], [6.656120967818424e-05, 0.00025115578318946064, 3.2701609598007053e-06, 0.00043487222865223885, 0.00014143879525363445, 0.020630188286304474, 0.00013165791460778564, 0.0009167424286715686, 0.00023775234876666218, 0.0003713516634888947, 0.0008491724147461355, 0.0019545776303857565, 0.010409840382635593, 0.9290471076965332, 0.007021206431090832, 0.004036462400108576, 0.023496676236391068], [0.0013182590482756495, 0.0006638254271820188, 0.00017158620175905526, 0.001623322139494121, 0.0014197247801348567, 0.06388121843338013, 0.00031302307615987957, 0.004345766268670559, 0.0008740058983676136, 0.020485972985625267, 0.008001362904906273, 0.0026210350915789604, 0.029038649052381516, 0.017767097800970078, 0.7516993880271912, 0.020434612408280373, 0.07534120976924896], [0.006286650896072388, 0.025819994509220123, 0.0009887989144772291, 0.0013101986842229962, 0.013374892063438892, 0.14875224232673645, 0.005388990510255098, 0.026751309633255005, 0.007309566251933575, 0.008584192022681236, 0.008866596966981888, 0.005496143829077482, 0.0007185834110714495, 0.006569966673851013, 0.04636684060096741, 0.5075952410697937, 0.1798197627067566], [0.050149597227573395, 0.30569788813591003, 0.008752528578042984, 0.03326259180903435, 0.053340643644332886, 0.17257598042488098, 0.033369291573762894, 0.013623017817735672, 0.005498291924595833, 0.0206012986600399, 0.004293531645089388, 0.004327096976339817, 0.0006333703058771789, 0.0021143995691090822, 0.017564252018928528, 0.05942404270172119, 0.21477213501930237], [0.01028570905327797, 0.021752601489424706, 0.006020726636052132, 0.02173515036702156, 0.049466442316770554, 0.3585376739501953, 0.008806771598756313, 0.0061854408122599125, 0.004957334604114294, 0.009440203197300434, 0.0041090515442192554, 0.004219769965857267, 0.006966304499655962, 0.0224921852350235, 0.02468484826385975, 0.049375686794519424, 0.39096400141716003]], [[0.011721757240593433, 0.007046922110021114, 0.015499955043196678, 0.051409900188446045, 0.13097745180130005, 0.32172781229019165, 0.004770840052515268, 0.014009694568812847, 0.0009056874550879002, 0.0005501421983353794, 0.0020572138018906116, 0.00027760775992646813, 0.002391071990132332, 0.07459204643964767, 0.011169451288878918, 0.01747933216392994, 0.33341315388679504], [0.00885069090873003, 0.04544084146618843, 0.01604078710079193, 0.012966599315404892, 0.05233452096581459, 0.3225391209125519, 0.013190428726375103, 0.0418412946164608, 0.010102935135364532, 0.004285761620849371, 0.002772104926407337, 0.0034894554410129786, 0.005400280002504587, 0.03643094375729561, 0.034059058874845505, 0.028532948344945908, 0.3617222309112549], [0.00455421581864357, 0.06610382348299026, 0.05903423950076103, 0.05043047294020653, 0.05740812420845032, 0.2913150489330292, 0.006456590257585049, 0.04512419551610947, 0.014806688763201237, 0.010592000558972359, 0.006378078367561102, 0.004725506994873285, 0.004361783619970083, 0.01239682361483574, 0.01955190859735012, 0.02532346174120903, 0.3214370012283325], [0.003647416364401579, 0.04467647522687912, 0.007149004843086004, 0.010480230674147606, 0.05409850552678108, 0.38623183965682983, 0.0058138431049883366, 0.00915644783526659, 0.0009816165547817945, 0.001275165588594973, 0.0010768126230686903, 0.0006005791947245598, 0.0009129037498496473, 0.004646778106689453, 0.01211613044142723, 0.017416995018720627, 0.4397193193435669], [0.0019476315937936306, 0.04978090152144432, 0.007916431874036789, 0.01704901084303856, 0.056832410395145416, 0.13275092840194702, 0.15445519983768463, 0.09568975120782852, 0.024426309391856194, 0.05542673543095589, 0.006322779227048159, 0.017253389582037926, 0.010407804511487484, 0.025139160454273224, 0.05549096688628197, 0.14533758163452148, 0.14377300441265106], [0.01328740268945694, 0.009116914123296738, 0.002928277710452676, 0.007765603717416525, 0.004659684374928474, 0.40239426493644714, 0.011865634471178055, 0.007094255648553371, 0.004250122234225273, 0.005594837944954634, 0.0025534643791615963, 0.006018457002937794, 0.004263646900653839, 0.00943384412676096, 0.006783852819353342, 0.007252140901982784, 0.49473750591278076], [0.1062094047665596, 0.022527193650603294, 0.007539268117398024, 0.009360559284687042, 0.02430119551718235, 0.23784923553466797, 0.019240936264395714, 0.08557629585266113, 0.025563564151525497, 0.017944904044270515, 0.044012024998664856, 0.009851524606347084, 0.009724471718072891, 0.01624513417482376, 0.011741029098629951, 0.07670438289642334, 0.27560895681381226], [0.01816686987876892, 0.028595443814992905, 0.00891269464045763, 0.0031857602298259735, 0.041015952825546265, 0.3416673243045807, 0.021197890862822533, 0.037000831216573715, 0.012120778672397137, 0.006097718607634306, 0.011292031034827232, 0.004889900796115398, 0.0070329406298696995, 0.029477104544639587, 0.026767922565340996, 0.022011995315551758, 0.3805668354034424], [0.05780412256717682, 0.010600382462143898, 0.004518390167504549, 0.005853764247149229, 0.027256513014435768, 0.3153594434261322, 0.011415298096835613, 0.06347476691007614, 0.024674689397215843, 0.0077991783618927, 0.009398122318089008, 0.010247057303786278, 0.00912571419030428, 0.027174444869160652, 0.020983880385756493, 0.03675534576177597, 0.35755887627601624], [0.047172632068395615, 0.019349655136466026, 0.0037693637423217297, 0.0027639165055006742, 0.03593737259507179, 0.36282145977020264, 0.008670296519994736, 0.03268292173743248, 0.0058566490188241005, 0.002221260219812393, 0.0024433606304228306, 0.0034438709262758493, 0.005746565293520689, 0.014489769004285336, 0.012698623351752758, 0.022212300449609756, 0.4177200496196747], [0.011229473166167736, 0.020581817254424095, 0.013863361440598965, 0.010032136924564838, 0.05429014563560486, 0.2420099824666977, 0.031671322882175446, 0.06903990358114243, 0.02086169831454754, 0.024723414331674576, 0.05764700844883919, 0.026265881955623627, 0.030915025621652603, 0.0362841822206974, 0.04389539733529091, 0.03290143609046936, 0.27378782629966736], [0.11236307770013809, 0.01446970459073782, 0.0054349638521671295, 0.00992583204060793, 0.011019826866686344, 0.2947739064693451, 0.006909534335136414, 0.04313119873404503, 0.021064545959234238, 0.01611168123781681, 0.05811484903097153, 0.010380059480667114, 0.011350695975124836, 0.02172929048538208, 0.006476261653006077, 0.026182183995842934, 0.33056241273880005], [0.04455120489001274, 0.007338186725974083, 0.0009178618201985955, 0.007283796090632677, 0.019055889919400215, 0.3551396429538727, 0.005402221344411373, 0.02569395676255226, 0.006255147513002157, 0.017190705984830856, 0.02743673324584961, 0.004633537493646145, 0.009084510616958141, 0.01816130243241787, 0.004230207297950983, 0.022411992773413658, 0.42521315813064575], [0.044442590326070786, 0.00971419457346201, 0.0006923770997673273, 0.002533711725845933, 0.025141334161162376, 0.367998868227005, 0.011294341646134853, 0.03181444853544235, 0.004296659026294947, 0.005480797961354256, 0.006810206454247236, 0.002447106409817934, 0.002957419026643038, 0.007110204081982374, 0.006232909392565489, 0.03230837732553482, 0.43872445821762085], [0.021863823756575584, 0.015739837661385536, 0.0020128716714680195, 0.003098546527326107, 0.03831372782588005, 0.3727547526359558, 0.011659132316708565, 0.026501843705773354, 0.0034776434767991304, 0.007701070047914982, 0.006890401244163513, 0.0018185413209721446, 0.0017652097158133984, 0.008977421559393406, 0.011417554691433907, 0.03919363394379616, 0.42681393027305603], [0.12257027626037598, 0.02016676589846611, 0.006522119045257568, 0.004189263563603163, 0.017190564423799515, 0.28708869218826294, 0.01523829810321331, 0.031580667942762375, 0.011953160166740417, 0.0060540735721588135, 0.006723586469888687, 0.00284628476947546, 0.0040832022204995155, 0.015117276459932327, 0.017963798716664314, 0.10842431336641312, 0.32228773832321167], [0.012997462414205074, 0.008569048717617989, 0.0026560714468359947, 0.0068712420761585236, 0.004779750481247902, 0.4068121016025543, 0.009962677955627441, 0.0065444596111774445, 0.0034512262791395187, 0.004746640101075172, 0.0024060423020273447, 0.004597364459186792, 0.003576250746846199, 0.008625650778412819, 0.00606136629357934, 0.0070505994372069836, 0.5002920031547546]]], [[[0.006571450736373663, 0.03231116011738777, 0.0060843718238174915, 0.010939499363303185, 0.029718413949012756, 0.3756438195705414, 0.016353540122509003, 0.03611200675368309, 0.010275124572217464, 0.014534635469317436, 0.013872158713638783, 0.0040468089282512665, 0.003946039825677872, 0.00824730098247528, 0.00675297062844038, 0.022778842598199844, 0.4018118381500244], [0.004669229034334421, 0.02604677341878414, 0.01596035435795784, 0.042996734380722046, 0.11408274620771408, 0.3425053656101227, 0.005179218016564846, 0.007646061480045319, 0.0017051061149686575, 0.0034700767137110233, 0.0010544791584834456, 0.0009811145719140768, 0.0008547144243493676, 0.0013090394204482436, 0.005255553405731916, 0.0600179061293602, 0.36626559495925903], [0.005626289173960686, 0.1111801415681839, 0.04647073894739151, 0.08236653357744217, 0.07928118109703064, 0.29784804582595825, 0.00611494854092598, 0.0029997960664331913, 0.0005157940904609859, 0.0027847609017044306, 0.0006708022556267679, 0.0004921290674246848, 0.00015063077444210649, 0.000541865243576467, 0.0026603550650179386, 0.032369986176490784, 0.3279259204864502], [0.010712155140936375, 0.3056299686431885, 0.15387332439422607, 0.06553152948617935, 0.08848340064287186, 0.15075187385082245, 0.009970422834157944, 0.007849017158150673, 0.001594838104210794, 0.0025056051090359688, 0.0017829311545938253, 0.0010181375546380877, 0.00043897409341298044, 0.0009042700403369963, 0.0032091934699565172, 0.030970167368650436, 0.16477416455745697], [0.009321191348135471, 0.2592308223247528, 0.0742013156414032, 0.1750539094209671, 0.08853522688150406, 0.17207342386245728, 0.004157948307693005, 0.00390601041726768, 0.0004833135171793401, 0.0018395466031506658, 0.0002492375497240573, 0.00030878509278409183, 8.195926056941971e-05, 0.0006246723351068795, 0.0032147145830094814, 0.015365242958068848, 0.1913527399301529], [0.0036372847389429808, 0.005417324136942625, 0.000582063221372664, 0.0010778418509289622, 0.003949346486479044, 0.44936153292655945, 0.001916583743877709, 0.006937703583389521, 0.0014880062080919743, 0.0021857949905097485, 0.0014847615966573358, 0.0018869327614083886, 0.0015653877053409815, 0.004136418923735619, 0.004093483090400696, 0.011670844629406929, 0.49860870838165283], [0.009966672398149967, 0.03945241868495941, 0.03587585687637329, 0.06984475255012512, 0.19421306252479553, 0.28031498193740845, 0.019376978278160095, 0.012134258635342121, 0.0018198523903265595, 0.004274806473404169, 0.003484386717900634, 0.000966412597335875, 0.0007152818143367767, 0.001483783358708024, 0.005875064060091972, 0.019391098991036415, 0.3008103668689728], [0.00916271936148405, 0.020380401983857155, 0.004020430613309145, 0.03993494436144829, 0.1802157759666443, 0.25431954860687256, 0.08051224797964096, 0.03675761818885803, 0.005962752737104893, 0.012112484313547611, 0.007687008008360863, 0.0013048837427049875, 0.0012917376589030027, 0.0029094673227518797, 0.03039085865020752, 0.0364728718996048, 0.27656418085098267], [0.003186228685081005, 0.004239910282194614, 0.00022294555674307048, 0.004766670521348715, 0.015422729775309563, 0.41804394125938416, 0.01347191073000431, 0.02567669376730919, 0.008912059478461742, 0.01602073386311531, 0.006087659392505884, 0.0009545390494167805, 0.0006097995792515576, 0.0015419530682265759, 0.012563951313495636, 0.015025430358946323, 0.45325279235839844], [0.0033368421718478203, 0.005816859658807516, 0.0002549643977545202, 0.002501118928194046, 0.015930699184536934, 0.3944280445575714, 0.018717488273978233, 0.03952006623148918, 0.020245689898729324, 0.02330552414059639, 0.008413683623075485, 0.0016763900639489293, 0.0011680694296956062, 0.0018452404765412211, 0.012448301538825035, 0.018651220947504044, 0.43173980712890625], [0.0037512085400521755, 0.0067479414865374565, 0.0003012923407368362, 0.003564730752259493, 0.02358764037489891, 0.16269159317016602, 0.06985650211572647, 0.22487600147724152, 0.09589719027280807, 0.10714767128229141, 0.05186496675014496, 0.005466029513627291, 0.0021582001354545355, 0.003553583985194564, 0.03954550251364708, 0.020535755902528763, 0.17845416069030762], [0.011860104277729988, 0.020146576687693596, 0.001395444036461413, 0.01220784056931734, 0.027183042839169502, 0.255216509103775, 0.056673724204301834, 0.10346011817455292, 0.028933679684996605, 0.06861232966184616, 0.04812535643577576, 0.009641727432608604, 0.003849110333248973, 0.009121028706431389, 0.03967716917395592, 0.02155587263405323, 0.282340407371521], [0.010573787614703178, 0.011640708893537521, 0.0013849403476342559, 0.005522306077182293, 0.012383108958601952, 0.2489493191242218, 0.04696689173579216, 0.09338436275720596, 0.03819954767823219, 0.07271764427423477, 0.04317425936460495, 0.025008967146277428, 0.021144118160009384, 0.024992551654577255, 0.04700125753879547, 0.016388023272156715, 0.28056830167770386], [0.007564245257526636, 0.017356006428599358, 0.0017715881112962961, 0.00457038264721632, 0.016619808971881866, 0.27710238099098206, 0.024042095988988876, 0.08666171133518219, 0.01877642422914505, 0.032951440662145615, 0.029151063412427902, 0.02299783006310463, 0.042821254581213, 0.01978006400167942, 0.05566839501261711, 0.03767986595630646, 0.30448535084724426], [0.008749565109610558, 0.018948590382933617, 0.0009006994077935815, 0.002355035860091448, 0.008147696033120155, 0.11859093606472015, 0.043210629373788834, 0.2907063663005829, 0.04115533456206322, 0.06710280478000641, 0.10248338431119919, 0.02490907534956932, 0.036847252398729324, 0.02169002778828144, 0.05685657635331154, 0.02524169161915779, 0.13210421800613403], [0.011363101191818714, 0.054327238351106644, 0.009213419631123543, 0.025076719000935555, 0.03891473636031151, 0.35073718428611755, 0.016379142180085182, 0.02554488368332386, 0.005443628877401352, 0.010187423788011074, 0.007032104767858982, 0.005376366898417473, 0.004335195291787386, 0.005221061408519745, 0.017070341855287552, 0.027394933626055717, 0.3863823711872101], [0.00384830916300416, 0.005657290108501911, 0.0006331037729978561, 0.0011373577872291207, 0.004133445210754871, 0.4487379789352417, 0.001978004351258278, 0.007065367419272661, 0.0015435249079018831, 0.002255941042676568, 0.0015081006567925215, 0.001979075139388442, 0.0016481444472447038, 0.00426762318238616, 0.004251431208103895, 0.011933159083127975, 0.4974220395088196]], [[0.016341622918844223, 0.02719985693693161, 0.01919861137866974, 0.018220270052552223, 0.08342975378036499, 0.38038548827171326, 0.0007754954276606441, 0.010455494746565819, 0.0015493003884330392, 0.0037128638941794634, 0.009791417047381401, 0.001986690564081073, 0.003984208684414625, 0.0061568315140903, 0.006735784001648426, 0.004753898363560438, 0.4053223729133606], [0.0029205167666077614, 0.032669033855199814, 0.05714166536927223, 0.13468608260154724, 0.15711523592472076, 0.26244887709617615, 0.02498544752597809, 0.01416677888482809, 0.0014435478951781988, 0.001529152155853808, 0.0006475313566625118, 0.0008438701624982059, 0.0004078491765540093, 0.0019118705531582236, 0.0024867276661098003, 0.01875673234462738, 0.28583914041519165], [0.001512204180471599, 0.022545544430613518, 0.02969730645418167, 0.11137425154447556, 0.21323086321353912, 0.25859370827674866, 0.05274759978055954, 0.003721971996128559, 0.00011048332817154005, 0.00029637973057106137, 0.00021420235862024128, 0.00018218158220406622, 0.00012084365880582482, 0.00045764053356833756, 0.0004781046009156853, 0.011358247138559818, 0.2933584749698639], [0.0018608454847708344, 0.028155451640486717, 0.010707927867770195, 0.021213434636592865, 0.10348837077617645, 0.33727502822875977, 0.09142838418483734, 0.011800822801887989, 0.00035712032695300877, 0.0004177347873337567, 0.00033772591268643737, 0.0005681808106601238, 0.0002803747192956507, 0.0005360277718864381, 0.0007419876055791974, 0.022731924429535866, 0.3680986762046814], [0.002096721436828375, 0.03408925607800484, 0.019108712673187256, 0.032213687896728516, 0.049833036959171295, 0.3895110487937927, 0.016271864995360374, 0.01475535798817873, 0.000620789360255003, 0.0006599643384106457, 0.0008403754327446222, 0.0006974482093937695, 0.0005440177046693861, 0.0012465653708204627, 0.0008354689925909042, 0.004521598573774099, 0.4321540594100952], [0.005291206296533346, 0.0035529746674001217, 0.0020762367639690638, 0.0044511849991977215, 0.012383286841213703, 0.45124033093452454, 0.0015817094827070832, 0.0021208336111158133, 0.0008660426246933639, 0.0011504130670800805, 0.0014065975556150079, 0.0012137778103351593, 0.0011981184361502528, 0.0026905143167823553, 0.0030237012542784214, 0.005381339229643345, 0.5003716945648193], [0.0017772559076547623, 0.0052090599201619625, 0.001150774653069675, 0.0019596631173044443, 0.004744472447782755, 0.34979328513145447, 0.039858732372522354, 0.09479936957359314, 0.00980838481336832, 0.010393369942903519, 0.0036699071060866117, 0.00764220766723156, 0.0022708396427333355, 0.004075774922966957, 0.014175781048834324, 0.0603383332490921, 0.3883328139781952], [0.0063247233629226685, 0.006200484931468964, 0.0020206933841109276, 0.005910214968025684, 0.009568393230438232, 0.2418573498725891, 0.05616576969623566, 0.05632157623767853, 0.030239636078476906, 0.0530196912586689, 0.09592807292938232, 0.024769453331828117, 0.009832805022597313, 0.014336253516376019, 0.05270225927233696, 0.07083994150161743, 0.26396265625953674], [0.004037868231534958, 0.0009641372016631067, 0.0002594602410681546, 0.001735799596644938, 0.002104038605466485, 0.17126679420471191, 0.010331844910979271, 0.011773094534873962, 0.01316381897777319, 0.1946587711572647, 0.29620838165283203, 0.01296317856758833, 0.013840937986969948, 0.017650851979851723, 0.04135093465447426, 0.01647258549928665, 0.19121740758419037], [0.0017765857046470046, 0.002209083642810583, 0.0005169670912437141, 0.0026875960174947977, 0.0023181906435638666, 0.33850449323654175, 0.015308466739952564, 0.012268167920410633, 0.009300594218075275, 0.03355606272816658, 0.05886610969901085, 0.026677843183279037, 0.01847892813384533, 0.027077680453658104, 0.043079257011413574, 0.03229975327849388, 0.3750741183757782], [0.0010730675421655178, 0.0011718455934897065, 0.0005433420883491635, 0.0027164758648723364, 0.0023684711195528507, 0.23142899572849274, 0.009563479572534561, 0.007144153583794832, 0.004058823920786381, 0.0130532868206501, 0.029555508866906166, 0.04958799108862877, 0.05207475274801254, 0.08075188845396042, 0.20515227317810059, 0.05519777163863182, 0.2545578181743622], [0.002224812749773264, 0.007461386267095804, 0.0007854655268602073, 0.005354833789169788, 0.0062718577682971954, 0.14576256275177002, 0.026937777176499367, 0.015695292502641678, 0.0039029945619404316, 0.030556539073586464, 0.0209672711789608, 0.013352709822356701, 0.04715227708220482, 0.11995958536863327, 0.32100337743759155, 0.06910090148448944, 0.16351044178009033], [0.002667998895049095, 0.010076879523694515, 0.0004876776074524969, 0.0022620868403464556, 0.002965739695355296, 0.2271018624305725, 0.01653064414858818, 0.02235334739089012, 0.00171704834792763, 0.01892070099711418, 0.00771109526976943, 0.0072537134401500225, 0.025134334340691566, 0.09312014281749725, 0.22052407264709473, 0.08318749815225601, 0.2579851448535919], [0.0032017333433032036, 0.007227545138448477, 0.0005752744036726654, 0.0008777984185144305, 0.0030036454554647207, 0.37760934233665466, 0.00928395427763462, 0.026304826140403748, 0.0022979562636464834, 0.005935438442975283, 0.0030455824453383684, 0.005526515189558268, 0.007295764982700348, 0.01229715347290039, 0.037231918424367905, 0.07991176843643188, 0.41837364435195923], [0.0022498341277241707, 0.01956709660589695, 0.0017280536703765392, 0.0038607821334153414, 0.007445657160133123, 0.3582489490509033, 0.020495392382144928, 0.0520317368209362, 0.003608846804127097, 0.0071327644400298595, 0.004837716463953257, 0.0068014333955943584, 0.005987899843603373, 0.012159791775047779, 0.026020968332886696, 0.06774523854255676, 0.4000779092311859], [0.0015251763397827744, 0.05081665515899658, 0.012903283350169659, 0.017427459359169006, 0.014158054254949093, 0.34188440442085266, 0.06978010386228561, 0.05271865800023079, 0.003504192689433694, 0.004156964831054211, 0.0009290194720961154, 0.002883228939026594, 0.0013040232006460428, 0.004094937350600958, 0.004686961881816387, 0.03855528682470322, 0.3786716163158417], [0.005161878652870655, 0.003584243357181549, 0.0020525213330984116, 0.004342056345194578, 0.012004921212792397, 0.45167428255081177, 0.0015994544373825192, 0.002151474356651306, 0.0008528910693712533, 0.0011238751467317343, 0.001351119950413704, 0.0012139402097091079, 0.001168507500551641, 0.0026230448856949806, 0.0029554772190749645, 0.005425856914371252, 0.5007146000862122]], [[0.03977227210998535, 0.007421145681291819, 0.0023518367670476437, 0.008504215627908707, 0.00018339676898904145, 0.009421526454389095, 0.06200069934129715, 0.17912426590919495, 0.0016040626214817166, 0.26860567927360535, 0.0006596980383619666, 0.008024330250918865, 0.010955912992358208, 0.02648373693227768, 0.3236154615879059, 0.04105432331562042, 0.010217367671430111], [0.004816192667931318, 0.011410130187869072, 0.011923141777515411, 0.0027992650866508484, 0.011315610259771347, 0.37672343850135803, 0.010881176218390465, 0.023009220138192177, 0.023496735841035843, 0.02223365753889084, 0.004269727505743504, 0.004018120467662811, 0.004583772737532854, 0.003942160401493311, 0.01128687895834446, 0.05238358676433563, 0.4209071397781372], [0.001271316665224731, 0.06450509279966354, 0.05040263384580612, 0.0117358872666955, 0.048671428114175797, 0.2919841408729553, 0.015290933661162853, 0.019235759973526, 0.012489551678299904, 0.006412081886082888, 0.005513415206223726, 0.005118173081427813, 0.0029226886108517647, 0.016374660655856133, 0.009581570513546467, 0.11251694709062576, 0.32597362995147705], [0.00188052945304662, 0.017156468704342842, 0.03862198442220688, 0.01205472368746996, 0.09277527779340744, 0.3080485165119171, 0.01293917279690504, 0.010912453755736351, 0.008016047067940235, 0.008459010161459446, 0.008402431383728981, 0.003000801894813776, 0.002972529735416174, 0.00794847123324871, 0.021720578894019127, 0.1052265539765358, 0.3398644030094147], [0.017691578716039658, 0.009203127585351467, 0.009721123613417149, 0.012800187803804874, 0.080718494951725, 0.19364486634731293, 0.08711777627468109, 0.04866427928209305, 0.00792727805674076, 0.014778216369450092, 0.009822559542953968, 0.00530974892899394, 0.00859890878200531, 0.017862830311059952, 0.08215629309415817, 0.17877866327762604, 0.21520406007766724], [0.0020056716166436672, 0.01291673257946968, 0.0028422572650015354, 0.002438918687403202, 0.0018828780157491565, 0.41330647468566895, 0.006914142053574324, 0.0075041926465928555, 0.001395969302393496, 0.0022729297634214163, 0.0044302865862846375, 0.003669781843200326, 0.004684313666075468, 0.015122033655643463, 0.008929327130317688, 0.03028741106390953, 0.4793965816497803], [0.008084574714303017, 0.12863563001155853, 0.009062865749001503, 0.0067621273919939995, 0.026765476912260056, 0.2965068221092224, 0.011591463349759579, 0.016715750098228455, 0.006562290713191032, 0.007319207768887281, 0.0021824261639267206, 0.003869728883728385, 0.0014639762230217457, 0.016040850430727005, 0.02098138816654682, 0.11278220266103745, 0.3246731460094452], [0.00783130619674921, 0.03512607887387276, 0.026380209252238274, 0.007102136500179768, 0.057968005537986755, 0.27139246463775635, 0.020080847665667534, 0.058689799159765244, 0.037908975034952164, 0.03308279812335968, 0.00873807817697525, 0.011098094284534454, 0.005930105224251747, 0.006694085896015167, 0.016453605145215988, 0.10124371200799942, 0.29427966475486755], [0.01170581765472889, 0.04288090020418167, 0.013425254262983799, 0.008071226067841053, 0.08156900852918625, 0.25961366295814514, 0.0063381739892065525, 0.033832989633083344, 0.020842932164669037, 0.021489406004548073, 0.006050300318747759, 0.010926206596195698, 0.0035362569615244865, 0.013220448978245258, 0.01966000720858574, 0.16404631733894348, 0.28279104828834534], [0.003039053175598383, 0.0070158676244318485, 0.00434153201058507, 0.0007746839546598494, 0.026394248008728027, 0.3952069878578186, 0.002818067092448473, 0.006116052158176899, 0.005194010678678751, 0.012035264633595943, 0.008555394597351551, 0.002828349359333515, 0.0019608319271355867, 0.002584305126219988, 0.0037254400085657835, 0.07045682519674301, 0.44695308804512024], [0.0018341856775805354, 0.05026697367429733, 0.006369220092892647, 0.0037145945243537426, 0.05643777176737785, 0.3419512212276459, 0.006814794614911079, 0.009009321220219135, 0.003728436306118965, 0.0020994716323912144, 0.025116395205259323, 0.004096571821719408, 0.0026193351950496435, 0.013529839925467968, 0.0038814847357571125, 0.08271672576665878, 0.3858136832714081], [0.002514295279979706, 0.058113791048526764, 0.02149585448205471, 0.012446046806871891, 0.026093602180480957, 0.26787737011909485, 0.020189419388771057, 0.031647127121686935, 0.010417113080620766, 0.0097267534583807, 0.012574687600135803, 0.024166055023670197, 0.00680637639015913, 0.0450437031686306, 0.026167765259742737, 0.12478601187467575, 0.2999340295791626], [0.0019250668119639158, 0.016474561765789986, 0.008295862935483456, 0.005320927128195763, 0.0103441858664155, 0.3495588004589081, 0.0067882295697927475, 0.014554907567799091, 0.006238983012735844, 0.004540208261460066, 0.012906164862215519, 0.016727622598409653, 0.012270319275557995, 0.038440607488155365, 0.03465043753385544, 0.06055230274796486, 0.40041089057922363], [0.012503697536885738, 0.001570604625158012, 0.0070843808352947235, 0.0033749931026250124, 0.014323930256068707, 0.2919022738933563, 0.027299655601382256, 0.015691382810473442, 0.017509538680315018, 0.007232319563627243, 0.01425120048224926, 0.023656364530324936, 0.02230626344680786, 0.024821940809488297, 0.041103873401880264, 0.13797123730182648, 0.3373963534832001], [0.006133626215159893, 0.005992963910102844, 0.005731905810534954, 0.0016291845822706819, 0.01968415267765522, 0.1579407900571823, 0.018861254677176476, 0.04832529276609421, 0.009953834116458893, 0.016283908858895302, 0.009612022899091244, 0.0168825164437294, 0.01392805390059948, 0.015742287039756775, 0.06270264089107513, 0.41219887137413025, 0.17839659750461578], [0.02351122908294201, 0.013471840880811214, 0.011775960214436054, 0.008610757067799568, 0.2026633769273758, 0.1669004261493683, 0.009738420136272907, 0.021964242681860924, 0.00677597988396883, 0.011204834096133709, 0.0021595777943730354, 0.005451116245239973, 0.002789439633488655, 0.010404136963188648, 0.03565514460206032, 0.28475046157836914, 0.18217304348945618], [0.0019722653087228537, 0.01237864326685667, 0.002740855561569333, 0.0022993150632828474, 0.0018680852372199297, 0.41494840383529663, 0.006597211584448814, 0.007193869445472956, 0.0013671420747414231, 0.0021406400483101606, 0.004230852704495192, 0.003508547320961952, 0.0043705846183001995, 0.014459701254963875, 0.008496071211993694, 0.029693949967622757, 0.48173385858535767]], [[0.0034857382997870445, 0.001073125982657075, 5.991301077301614e-05, 0.002749743638560176, 0.00014532353088725358, 0.0011705410433933139, 0.02969464100897312, 0.0876680240035057, 0.01232711598277092, 0.30689772963523865, 0.0034637099597603083, 0.007471045479178429, 0.008415314368903637, 0.029474640265107155, 0.3203085958957672, 0.18429243564605713, 0.0013022978091612458], [0.011940881609916687, 0.030847672373056412, 0.053600821644067764, 0.027828114107251167, 0.048116281628608704, 0.26432907581329346, 0.06874247640371323, 0.03247946500778198, 0.01975381001830101, 0.009269604459404945, 0.027161961421370506, 0.020175529643893242, 0.010748914442956448, 0.012733214534819126, 0.010009437799453735, 0.058287497609853745, 0.29397526383399963], [0.01312837190926075, 0.06969049572944641, 0.10750187188386917, 0.12324967980384827, 0.187277689576149, 0.13674122095108032, 0.04499031975865364, 0.04301311448216438, 0.014139048755168915, 0.008170885033905506, 0.012492867186665535, 0.012626981362700462, 0.008176034316420555, 0.01309499703347683, 0.019430100917816162, 0.03385750576853752, 0.1524188369512558], [0.007465899456292391, 0.039565734565258026, 0.037029847502708435, 0.03826941177248955, 0.060648150742053986, 0.21191342175006866, 0.06163501739501953, 0.11943377554416656, 0.015229492448270321, 0.018045062199234962, 0.018502581864595413, 0.017341259866952896, 0.015065514482557774, 0.014123242348432541, 0.023160383105278015, 0.060625653713941574, 0.2419455647468567], [0.023352637887001038, 0.009499715641140938, 0.002633030992001295, 0.022466367110610008, 0.016727741807699203, 0.12033350765705109, 0.027575679123401642, 0.08275126665830612, 0.027281008660793304, 0.07980318367481232, 0.018645644187927246, 0.016115212813019753, 0.019674774259328842, 0.08804759383201599, 0.12715007364749908, 0.18326804041862488, 0.13467445969581604], [0.00328277749940753, 0.005679896101355553, 0.003526862245053053, 0.004532482009381056, 0.0040018740110099316, 0.4194706380367279, 0.010602778755128384, 0.006226246245205402, 0.0034415796399116516, 0.003145033959299326, 0.0017281147884204984, 0.003339858725667, 0.004057620652019978, 0.004980362951755524, 0.006222815718501806, 0.018224826082587242, 0.49753621220588684], [0.0042731873691082, 0.0364549420773983, 0.04975600913167, 0.04152713343501091, 0.03968200460076332, 0.16250427067279816, 0.11272743344306946, 0.09325240552425385, 0.025539277121424675, 0.016056420281529427, 0.04417062923312187, 0.02693520113825798, 0.02445186674594879, 0.04523083567619324, 0.03440408036112785, 0.06105806306004524, 0.18197627365589142], [0.009878507815301418, 0.011491572484374046, 0.04820448160171509, 0.013396798633038998, 0.025492804124951363, 0.2601567506790161, 0.0583035834133625, 0.03919139876961708, 0.021262427791953087, 0.012874308973550797, 0.05235239118337631, 0.03453388065099716, 0.01984420418739319, 0.031861014664173126, 0.019749103114008904, 0.05896655470132828, 0.28244030475616455], [0.006629250477999449, 0.04353249818086624, 0.019350556656718254, 0.021019788458943367, 0.02889118902385235, 0.15994392335414886, 0.03479153662919998, 0.0752607062458992, 0.0381070151925087, 0.018731683492660522, 0.035021085292100906, 0.03459814935922623, 0.024840453639626503, 0.16084526479244232, 0.05233257636427879, 0.06742046028375626, 0.178683802485466], [0.0014396760379895568, 0.0073150754906237125, 0.03323246166110039, 0.006955915130674839, 0.01929936744272709, 0.34374481439590454, 0.023935098201036453, 0.033446379005908966, 0.00940023921430111, 0.00476973969489336, 0.025957126170396805, 0.02260703034698963, 0.018604476004838943, 0.02320057898759842, 0.01724184677004814, 0.022841917350888252, 0.38600826263427734], [0.0024810878094285727, 0.024837065488100052, 0.02507353015244007, 0.0035593858920037746, 0.02536015771329403, 0.30867865681648254, 0.01917998492717743, 0.024708341807127, 0.01166212372481823, 0.008270936086773872, 0.05614371970295906, 0.04052519425749779, 0.01407593209296465, 0.030314261093735695, 0.028712229803204536, 0.032069649547338486, 0.3443477153778076], [0.004732602275907993, 0.09689351171255112, 0.04342124983668327, 0.024004604667425156, 0.06859015673398972, 0.15688368678092957, 0.052311498671770096, 0.07762155681848526, 0.017293380573391914, 0.009936768561601639, 0.019803058356046677, 0.028570540249347687, 0.030626075342297554, 0.07574360817670822, 0.05444210767745972, 0.06474357843399048, 0.1743820458650589], [0.0013278461992740631, 0.011351189576089382, 0.014411239884793758, 0.002491716295480728, 0.008771908469498158, 0.28860029578208923, 0.03302289918065071, 0.06366103142499924, 0.015699312090873718, 0.008449813351035118, 0.017144741490483284, 0.03614560887217522, 0.030225543305277824, 0.05440365895628929, 0.026375385001301765, 0.05687900260090828, 0.3310387432575226], [0.0025102836079895496, 0.0039437562227249146, 0.015574281103909016, 0.0027845902368426323, 0.01121150329709053, 0.3401525616645813, 0.017105212435126305, 0.024598823860287666, 0.015850365161895752, 0.0051694451831281185, 0.027597103267908096, 0.03674578666687012, 0.03545040637254715, 0.03237290307879448, 0.02228352054953575, 0.024485956877470016, 0.3821634352207184], [0.002700488083064556, 0.0046656131744384766, 0.02060377039015293, 0.004115220624953508, 0.008752026595175266, 0.32044556736946106, 0.045141469687223434, 0.04189132899045944, 0.012688725255429745, 0.009295924566686153, 0.02212938666343689, 0.034217845648527145, 0.031050074845552444, 0.028201522305607796, 0.021166644990444183, 0.03262756019830704, 0.36030691862106323], [0.007689155172556639, 0.03030511364340782, 0.04155603051185608, 0.04666053503751755, 0.05603818595409393, 0.16106131672859192, 0.11315456032752991, 0.07349123060703278, 0.01312324870377779, 0.007818820886313915, 0.01816728338599205, 0.015600600279867649, 0.040980264544487, 0.09626325219869614, 0.031509511172771454, 0.07197576016187668, 0.174605131149292], [0.0031355805695056915, 0.005599671509116888, 0.0034482835326343775, 0.004314611200243235, 0.004006987903267145, 0.42089298367500305, 0.010133747011423111, 0.0059994119219481945, 0.003240991150960326, 0.0028961391653865576, 0.0016866291407495737, 0.003274246584624052, 0.003949384205043316, 0.004862749949097633, 0.005958770401775837, 0.017415644600987434, 0.4991842210292816]], [[0.016887297853827477, 0.07453306019306183, 0.5270455479621887, 0.0387762151658535, 0.019722336903214455, 0.009074505418539047, 0.10175413638353348, 0.043731752783060074, 0.042679596692323685, 0.014733674935996532, 0.01721758022904396, 0.012329811230301857, 0.0014394063036888838, 0.007112356834113598, 0.014832863584160805, 0.04861236736178398, 0.009517520666122437], [0.0009182601352222264, 0.010962128639221191, 0.27066054940223694, 0.0118385199457407, 0.005741646979004145, 0.21181020140647888, 0.02064516581594944, 0.04853282868862152, 0.12246744334697723, 0.005695205181837082, 0.0037801817525178194, 0.03262624517083168, 0.0010224158177152276, 0.0019137617200613022, 0.0005579153657890856, 0.018749073147773743, 0.2320784330368042], [0.0019062792416661978, 0.0035188263282179832, 0.02032744139432907, 0.6187322735786438, 0.004273565951734781, 0.1563563346862793, 0.0022425607312470675, 0.0014076674124225974, 0.0011944803409278393, 0.004853151738643646, 0.0008070593466982245, 0.0008581288275308907, 0.0015516293933615088, 0.0018642294453456998, 0.0005869410233572125, 0.004318419378250837, 0.17520099878311157], [0.0020715310238301754, 0.004070967901498079, 0.003883494297042489, 0.0036591466050595045, 0.4748710095882416, 0.12332583963871002, 0.0435672402381897, 0.002942122519016266, 0.0010859103640541434, 0.0023597562685608864, 0.0014606773620471358, 0.0005938953254371881, 0.00019353846437297761, 0.00025935060693882406, 0.0011019910452887416, 0.1999640017747879, 0.13458950817584991], [0.03927247226238251, 0.07710937410593033, 0.010201101191341877, 0.025328729301691055, 0.11299058049917221, 0.1753547638654709, 0.22764578461647034, 0.029919371008872986, 0.004536844789981842, 0.014086002483963966, 0.0021546995267271996, 0.003836086019873619, 0.002590932883322239, 0.006898142863065004, 0.0036861123517155647, 0.07280020415782928, 0.19158877432346344], [0.003514271229505539, 0.015145903453230858, 0.0025378973223268986, 0.006584004033356905, 0.0246095210313797, 0.42350706458091736, 0.007857699878513813, 0.009352716617286205, 0.0024406302254647017, 0.005054427310824394, 0.0031993240118026733, 0.002314938697963953, 0.003959733992815018, 0.003384210169315338, 0.0075936028733849525, 0.026580866426229477, 0.45236316323280334], [0.001770500442944467, 0.03561278432607651, 0.01979166455566883, 0.005021194461733103, 0.012177576310932636, 0.21658632159233093, 0.04844078794121742, 0.3317459225654602, 0.03182580694556236, 0.002561588305979967, 0.0020198733545839787, 0.026437735185027122, 0.003749030875042081, 0.014714893884956837, 0.005058839451521635, 0.00834539532661438, 0.23414000868797302], [0.0018331914907321334, 0.0029877196066081524, 0.043447982519865036, 0.0039332653395831585, 0.0033221840858459473, 0.13640959560871124, 0.005552501417696476, 0.039951276034116745, 0.482950359582901, 0.02929185889661312, 0.012022326700389385, 0.06624924391508102, 0.0015955313574522734, 0.006044748704880476, 0.001802929793484509, 0.015556384809315205, 0.14704900979995728], [9.565056825522333e-05, 0.00030618341406807303, 0.00023708355729468167, 0.0005669868551194668, 3.896072303177789e-05, 0.020590301603078842, 0.000734778877813369, 0.00023705553030595183, 0.003074156353250146, 0.9469141364097595, 0.0032990998588502407, 0.0001847183593781665, 0.00023858484928496182, 8.291764243040234e-05, 0.00013310639769770205, 0.00010004457726608962, 0.023166244849562645], [0.0006359126418828964, 0.0009059884469024837, 0.005907674320042133, 0.0009514269768260419, 0.0018245781539008021, 0.19573645293712616, 0.0038505923002958298, 0.005621122661978006, 0.015604428946971893, 0.0419718436896801, 0.4939635097980499, 0.005589972250163555, 0.0004217888927087188, 0.0004614800272975117, 0.0015334237832576036, 0.006756765767931938, 0.21826297044754028], [0.0036099941935390234, 0.0004968925495631993, 0.003772326512262225, 0.008141218684613705, 0.005280856043100357, 0.3747767210006714, 0.0021698158234357834, 0.014012685976922512, 0.026808859780430794, 0.0038950119633227587, 0.05462520197033882, 0.07777901738882065, 0.0016686999006196856, 0.00677552679553628, 0.001041376031935215, 0.0041864304803311825, 0.41095924377441406], [0.0018837378593161702, 0.0008533549262210727, 0.004156768787652254, 0.013461606577038765, 0.0009376024827361107, 0.3541499972343445, 0.0006306542782112956, 0.0005329998093657196, 0.0019665563013404608, 0.0031266966834664345, 0.0011163693852722645, 0.021379802376031876, 0.18163511157035828, 0.004039150197058916, 0.00046822443255223334, 0.001423395937308669, 0.4082380533218384], [0.00011637103307293728, 0.0005685702781192958, 0.00020229844085406512, 0.006050011143088341, 0.0008190728258341551, 0.18611253798007965, 0.0003484136250335723, 0.00033886366873048246, 0.0007434599683620036, 0.0002804305113386363, 0.0002155602996936068, 0.0005299120093695819, 0.0012218799674883485, 0.5640639662742615, 0.016562633216381073, 0.002113392809405923, 0.21971261501312256], [0.00022936744790058583, 0.0020126276649534702, 0.0008693713461980224, 0.003874231828376651, 0.003981504589319229, 0.3201264441013336, 0.001190785551443696, 0.0019383466569706798, 0.0008523695869371295, 0.001474830904044211, 9.669820428825915e-05, 0.0008785029640421271, 0.0036170610692352057, 0.016864266246557236, 0.26127222180366516, 0.014330408535897732, 0.36639097332954407], [0.0017021058592945337, 0.021014094352722168, 0.004690501838922501, 0.0034168721176683903, 0.1409687101840973, 0.18413124978542328, 0.011140158399939537, 0.018121540546417236, 0.0034075393341481686, 0.0016364339971914887, 0.0031851744279265404, 0.004352455027401447, 0.0007585656130686402, 0.0021935165859758854, 0.018659770488739014, 0.38630014657974243, 0.19432109594345093], [0.0031019148882478476, 0.12521879374980927, 0.0074949711561203, 0.016481885686516762, 0.0526643805205822, 0.2571607232093811, 0.09655258804559708, 0.045572325587272644, 0.004955659620463848, 0.004380909726023674, 0.0008213712135329843, 0.0051997629925608635, 0.001472262549214065, 0.008660992607474327, 0.005150974728167057, 0.0864049643278122, 0.27870550751686096], [0.003613709704950452, 0.014890032820403576, 0.002589176408946514, 0.00653419503942132, 0.024587200954556465, 0.42263782024383545, 0.00807299092411995, 0.009222346358001232, 0.002532386686652899, 0.004872581921517849, 0.0031506370287388563, 0.0024740942753851414, 0.004211193881928921, 0.003678442444652319, 0.007885890081524849, 0.026606619358062744, 0.45244064927101135]], [[0.004991566296666861, 0.0049356017261743546, 0.011522180400788784, 0.040503643453121185, 0.2357499897480011, 0.18529821932315826, 0.036609213799238205, 0.04691228270530701, 0.025473179295659065, 0.05260701850056648, 0.11760687828063965, 0.002992884488776326, 0.0010869238758459687, 0.0012537733418866992, 0.004687718115746975, 0.03130372241139412, 0.1964651197195053], [0.004635844845324755, 0.008528118021786213, 0.0009734176564961672, 0.0032561111729592085, 0.11536747217178345, 0.30264899134635925, 0.021073950454592705, 0.005784326698631048, 0.0012639239430427551, 0.0019822667818516493, 0.0020261439494788647, 0.00030083677847869694, 0.00013208728341851383, 0.00040822813753038645, 0.0034615471959114075, 0.1871732920408249, 0.34098348021507263], [0.0006548382807523012, 0.10350505262613297, 0.004596821032464504, 0.0024479615967720747, 0.007009575609117746, 0.4017286002635956, 0.0037384741008281708, 0.009827250614762306, 0.0010374765843153, 0.0010251686908304691, 0.00026921890093944967, 0.0002635651908349246, 0.00033454690128564835, 0.0007364521734416485, 0.0006480961455963552, 0.006294141057878733, 0.45588284730911255], [0.0009183362708427012, 0.013478630222380161, 0.13093744218349457, 0.015910401940345764, 0.01832004077732563, 0.3481948673725128, 0.013083902187645435, 0.011352501809597015, 0.011518251150846481, 0.00573828024789691, 0.0010327387135475874, 0.007656866684556007, 0.002930278889834881, 0.007392508909106255, 0.0012037360575050116, 0.017969798296689987, 0.39236119389533997], [0.00032487683347426355, 0.0011063951533287764, 0.001131655415520072, 0.06863588839769363, 0.048043143004179, 0.4062601625919342, 0.002235045889392495, 0.0004977911594323814, 0.0003745714493561536, 0.0022913608700037003, 0.00044110961607657373, 0.0002953820221591741, 0.00037704079295508564, 0.0005019557429477572, 0.002257823245599866, 0.009970784187316895, 0.45525500178337097], [0.0042042541317641735, 0.00460637966170907, 0.0012228655396029353, 0.0052454364486038685, 0.009554075077176094, 0.44540777802467346, 0.0044004651717841625, 0.0043676551431417465, 0.0017489849124103785, 0.0022502196952700615, 0.0009946493664756417, 0.002085444051772356, 0.00648534344509244, 0.005599749740213156, 0.0054164002649486065, 0.009615984745323658, 0.4867943227291107], [0.0009704098920337856, 0.0021253468003124, 0.0017334065632894635, 0.02815515734255314, 0.3101390302181244, 0.24590855836868286, 0.02320198155939579, 0.009024697355926037, 0.0012408619513735175, 0.0010409557726234198, 0.002575690159574151, 0.0015233538579195738, 0.000462029071059078, 0.0009109591483138502, 0.004563093651086092, 0.08990219235420227, 0.2765222489833832], [0.007550531532615423, 0.03385873883962631, 0.0012796891387552023, 0.003168631112203002, 0.07008635252714157, 0.28903937339782715, 0.1642882376909256, 0.030706141144037247, 0.00525639345869422, 0.004139219876378775, 0.006121319252997637, 0.0008733815047889948, 0.000620762468315661, 0.004433709662407637, 0.008713997900485992, 0.04396631568670273, 0.3258971571922302], [0.0004227175086271018, 0.01297078188508749, 0.0025791553780436516, 0.000200920389033854, 0.009077095426619053, 0.3991083800792694, 0.010367312468588352, 0.09443584829568863, 0.007217461708933115, 0.0011712700361385942, 0.0005714588914997876, 0.0005518239340744913, 0.0001189806207548827, 0.00013083200610708445, 0.0002531853679101914, 0.008403271436691284, 0.4524194300174713], [0.000750402919948101, 0.00203557126224041, 0.004338526166975498, 0.00043181347427889705, 0.005125510971993208, 0.28425562381744385, 0.0034531953278928995, 0.008875024504959583, 0.353859007358551, 0.011062408797442913, 0.0008567284094169736, 0.0016781064914539456, 0.00017130025662481785, 0.000940183992497623, 0.0007371809333562851, 0.005306305829435587, 0.31612297892570496], [0.00034886752837337554, 0.0009186448878608644, 0.0004453264700714499, 0.0006777332746423781, 0.0028406300116330385, 0.43199422955513, 0.0008152593509294093, 0.0015211026184260845, 0.021561112254858017, 0.060326382517814636, 0.01498207077383995, 0.0004699995624832809, 0.0003526697983033955, 7.195217767730355e-05, 0.0008984662126749754, 0.0019710443448275328, 0.45980459451675415], [0.001099355984479189, 0.01158134639263153, 0.0032674111425876617, 0.002164857229217887, 0.014262516051530838, 0.39565664529800415, 0.03307173773646355, 0.019218338653445244, 0.0021195057779550552, 0.0026616191025823355, 0.03909701108932495, 0.009291408583521843, 0.004593925550580025, 0.0015487880446016788, 0.0019512276630848646, 0.009733843617141247, 0.4486805498600006], [0.0003188763512298465, 0.0006482862518168986, 0.03592238202691078, 0.0024299784563481808, 0.0033871971536427736, 0.2539026141166687, 0.0036064470186829567, 0.00316385505720973, 0.005365937016904354, 0.0020419806241989136, 0.006465874146670103, 0.37322333455085754, 0.010663392953574657, 0.0057784211821854115, 0.00037147197872400284, 0.0029787386301904917, 0.2897311747074127], [0.0017979028634727001, 0.005776162259280682, 0.0024430439807474613, 0.0018308875150978565, 0.007909765467047691, 0.4067133963108063, 0.0088022006675601, 0.007366798352450132, 0.008109304122626781, 0.015447819605469704, 0.018797144293785095, 0.007656971458345652, 0.034030720591545105, 0.001710825483314693, 0.002024120884016156, 0.009266422130167484, 0.4603164792060852], [0.0008602349553257227, 0.001422042609192431, 0.0003501235041767359, 0.0017290939576923847, 0.0037263487465679646, 0.3903194069862366, 0.004076830111443996, 0.0005878772935830057, 0.002041835570707917, 0.003555908566340804, 0.0007420028559863567, 0.0009835464879870415, 0.009098052978515625, 0.11899040639400482, 0.016208834946155548, 0.005642758682370186, 0.439664751291275], [0.0009434872190468013, 0.004721757024526596, 0.0012990375980734825, 0.008422842249274254, 0.02890973538160324, 0.41325101256370544, 0.002559394109994173, 0.00484714237973094, 0.0010113388998433948, 0.003869883716106415, 0.0007158401422202587, 0.0005330370040610433, 0.0017462073592469096, 0.0018408691976219416, 0.03829048573970795, 0.026582995429635048, 0.460455060005188], [0.004354116972535849, 0.004725533537566662, 0.001266402774490416, 0.005103004164993763, 0.009742103517055511, 0.44460731744766235, 0.004524897783994675, 0.0046775490045547485, 0.0018298671348020434, 0.0022653290070593357, 0.0009797501843422651, 0.0021483057644218206, 0.0065329791978001595, 0.005601209122687578, 0.005468710791319609, 0.009866435080766678, 0.4863065481185913]], [[0.03354061394929886, 0.036546628922224045, 0.020028086379170418, 0.06273370236158371, 0.08954088389873505, 0.28640565276145935, 0.018786603584885597, 0.013588810339570045, 0.015361332334578037, 0.028991950675845146, 0.003517379052937031, 0.0061401184648275375, 0.005048149731010199, 0.006892459467053413, 0.009133128449320793, 0.04058646410703659, 0.32315802574157715], [0.0012207769323140383, 0.2386137694120407, 0.004923317115753889, 0.03135829418897629, 0.03311686962842941, 0.28681206703186035, 0.00621413579210639, 0.010645049624145031, 0.0007071614963933825, 0.006012382917106152, 0.0030166669748723507, 0.0008638384169898927, 0.0006249319994822145, 0.001730648335069418, 0.0036044211592525244, 0.03972260281443596, 0.33081310987472534], [0.0006485965568572283, 0.011603505350649357, 0.004824628587812185, 0.07442351430654526, 0.023138029500842094, 0.3886205852031708, 0.007124986033886671, 0.0013744650641456246, 0.00020983639115002006, 0.0012008127523586154, 0.0003733707999344915, 0.0003175510501023382, 0.0008439093362540007, 0.000517646549269557, 0.0006210384890437126, 0.012255060486495495, 0.4719025790691376], [0.000828367134090513, 0.0451924093067646, 0.00366321112960577, 0.10411512106657028, 0.027565721422433853, 0.3543318212032318, 0.0054466514848172665, 0.0016117645427584648, 0.0004172292537987232, 0.0011077896924689412, 0.00020636242697946727, 0.0007335000555031002, 0.0008197671850211918, 0.001278101117350161, 0.0027333302423357964, 0.022853145375847816, 0.4270957112312317], [0.0012118512531742454, 0.040424738079309464, 0.0033015236258506775, 0.1224566176533699, 0.04619430750608444, 0.3472755551338196, 0.0047020153142511845, 0.004573083948343992, 0.00033884934964589775, 0.0022144524846225977, 0.0008063974673859775, 0.0006122675840742886, 0.0014437779318541288, 0.0011204429902136326, 0.0017525850562378764, 0.017025714740157127, 0.4045458734035492], [0.00012304718256928027, 0.0009142312337644398, 0.0002043846616288647, 0.0014871824532747269, 0.0011782917426899076, 0.4678395986557007, 0.00030852126656100154, 0.00016034182044677436, 9.056367707671598e-05, 0.00037185288965702057, 0.00016036354645621032, 0.00018950682715512812, 0.0004555176419671625, 0.00035119184758514166, 0.00041456293547526, 0.0017558529507368803, 0.5239949822425842], [0.0013324907049536705, 0.034471556544303894, 0.004487169906497002, 0.04811990633606911, 0.042968474328517914, 0.36374133825302124, 0.027832381427288055, 0.005605192855000496, 0.0008967333124019206, 0.00263822334818542, 0.0032977305818349123, 0.001644515316002071, 0.0015557423466816545, 0.001460324740037322, 0.0024108889047056437, 0.03278857097029686, 0.42474883794784546], [0.003283838042989373, 0.1729709655046463, 0.0017946193693205714, 0.049957431852817535, 0.0279829241335392, 0.2929126024246216, 0.008676056750118732, 0.017117038369178772, 0.0011616696137934923, 0.02007831446826458, 0.011307014152407646, 0.0019594186451286077, 0.0044142198748886585, 0.0067613511346280575, 0.010947105474770069, 0.03629264980554581, 0.3323827385902405], [0.0018937319982796907, 0.008718986995518208, 0.0004691554931923747, 0.011207311414182186, 0.007506244815886021, 0.386824369430542, 0.006320000160485506, 0.0029884628020226955, 0.0026624754536896944, 0.06969994306564331, 0.012987349182367325, 0.0012804091675207019, 0.009259771555662155, 0.0031899255700409412, 0.008855585008859634, 0.012899136170744896, 0.45323723554611206], [0.0004325018380768597, 0.007398161571472883, 0.0008884607814252377, 0.01231873407959938, 0.006265450734645128, 0.39179837703704834, 0.008649006485939026, 0.002825862029567361, 0.00823664665222168, 0.059206295758485794, 0.004627130925655365, 0.0035112774930894375, 0.006227209698408842, 0.004926894325762987, 0.011925791390240192, 0.020009271800518036, 0.45075294375419617], [0.0018074957188218832, 0.0012975248973816633, 0.0014124803710728884, 0.01471701916307211, 0.003148663090541959, 0.2503879964351654, 0.022276150062680244, 0.013745293952524662, 0.024452397599816322, 0.24869084358215332, 0.05482543632388115, 0.014142246916890144, 0.028510112315416336, 0.004855050239712, 0.019676921889185905, 0.012195507064461708, 0.2838588356971741], [0.0003477107093203813, 0.0011482181726023555, 0.0005061561823822558, 0.011391806416213512, 0.0036437478847801685, 0.41396239399909973, 0.0033227677922695875, 0.001320284092798829, 0.0015677183400839567, 0.009539354592561722, 0.00749291991814971, 0.005114161409437656, 0.02867458015680313, 0.00432346248999238, 0.008334130048751831, 0.011951839551329613, 0.48735862970352173], [0.00016556143236812204, 0.0020551925990730524, 0.0003084753407165408, 0.011506902985274792, 0.0018144415225833654, 0.379891037940979, 0.0026168145705014467, 0.0015160472830757499, 0.0021179295144975185, 0.0059585715644061565, 0.002741497242823243, 0.014322894625365734, 0.03813719004392624, 0.022283101454377174, 0.0410185270011425, 0.020106518641114235, 0.4534393846988678], [0.0018020716961473227, 0.053242601454257965, 0.0004924543900415301, 0.017670748755335808, 0.004669290501624346, 0.39328259229660034, 0.0016227316809818149, 0.0026554802898317575, 0.000982404570095241, 0.005043122451752424, 0.0008326077368110418, 0.0021763374097645283, 0.004995796829462051, 0.009079515933990479, 0.008143643848598003, 0.017892010509967804, 0.47541654109954834], [0.0014416102785617113, 0.024738721549510956, 0.00040829050703905523, 0.03980890288949013, 0.006931872572749853, 0.3562738001346588, 0.005408498924225569, 0.00457193935289979, 0.0023314543068408966, 0.017850829288363457, 0.005012141074985266, 0.004706456791609526, 0.016349051147699356, 0.0285111702978611, 0.04075140878558159, 0.022546805441379547, 0.42235711216926575], [0.0010222067357972264, 0.029425859451293945, 0.0032610853668302298, 0.09234442561864853, 0.020083913579583168, 0.3769485056400299, 0.007886138744652271, 0.007537794765084982, 0.0009487615898251534, 0.00575308408588171, 0.0040764594450592995, 0.001047314377501607, 0.002889596624299884, 0.003779701190069318, 0.003074044594541192, 0.016589662060141563, 0.42333149909973145], [0.00012948129733558744, 0.0009526920039206743, 0.00021089591609779745, 0.0015745607670396566, 0.001215607626363635, 0.46750304102897644, 0.0003216609766241163, 0.0001701822766335681, 9.428458724869415e-05, 0.00038081759703345597, 0.00016354271792806685, 0.00019784431788139045, 0.00047011423157528043, 0.00037546511157415807, 0.0004448834515642375, 0.0018222120124846697, 0.5239726901054382]], [[0.005225453991442919, 0.13278362154960632, 0.015604914166033268, 0.05507849529385567, 0.07408538460731506, 0.3088340163230896, 0.0070516187697649, 0.009579096920788288, 0.0035280378069728613, 0.007592035457491875, 0.004598513711243868, 0.0026383581571280956, 0.0037200977094471455, 0.007204917259514332, 0.01891772635281086, 0.023771751672029495, 0.31978604197502136], [0.010202493518590927, 0.13363735377788544, 0.0249113030731678, 0.04578603059053421, 0.10993015021085739, 0.2616283893585205, 0.012343108654022217, 0.012487956322729588, 0.003963174298405647, 0.010087307542562485, 0.00780558492988348, 0.0034401521552354097, 0.0055135576985776424, 0.016463270410895348, 0.01744760200381279, 0.04325312376022339, 0.28109949827194214], [0.00916023924946785, 0.06819313019514084, 0.08949250727891922, 0.11232680827379227, 0.09463512897491455, 0.26647624373435974, 0.017329692840576172, 0.004898605402559042, 0.0016725676832720637, 0.0061371359042823315, 0.003242362989112735, 0.0024331004824489355, 0.0013940249336883426, 0.0023869003634899855, 0.0036267766263335943, 0.02718939818441868, 0.2894054055213928], [0.00839464645832777, 0.06244048848748207, 0.06707097589969635, 0.0778818279504776, 0.054635509848594666, 0.3131088614463806, 0.012562226504087448, 0.0042556654661893845, 0.0014205867191776633, 0.00870385579764843, 0.004809381905943155, 0.0036507751792669296, 0.0024386048316955566, 0.0033006593585014343, 0.006224437151104212, 0.021093353629112244, 0.34800809621810913], [0.00701939919963479, 0.44681212306022644, 0.04355858638882637, 0.08401420712471008, 0.06473547220230103, 0.1363699734210968, 0.004361109808087349, 0.010598227381706238, 0.0014540172414854169, 0.0075685554184019566, 0.003542965976521373, 0.000998159870505333, 0.0006322431727312505, 0.0064462763257324696, 0.016767755150794983, 0.01876283809542656, 0.14635804295539856], [0.002969052642583847, 0.006961180362850428, 0.001172954449430108, 0.0022457027807831764, 0.003544014412909746, 0.4528251588344574, 0.000941384700126946, 0.004839372355490923, 0.0011856225319206715, 0.0009690196602605283, 0.0014996909303590655, 0.0017587095499038696, 0.001345118973404169, 0.0024520198348909616, 0.0019077298929914832, 0.004581325687468052, 0.5088019967079163], [0.01426152978092432, 0.017740020528435707, 0.0058599128387868404, 0.032409824430942535, 0.026349447667598724, 0.2335154265165329, 0.05911435931921005, 0.06712190806865692, 0.010043510235846043, 0.04270460084080696, 0.03699781373143196, 0.011385057121515274, 0.018389401957392693, 0.03364400565624237, 0.10019490122795105, 0.03346801549196243, 0.25680023431777954], [0.007190949283540249, 0.01839095912873745, 0.002446479629725218, 0.003527152817696333, 0.017872359603643417, 0.18397966027259827, 0.06408525258302689, 0.03610590472817421, 0.0212892834097147, 0.03825853392481804, 0.08602652698755264, 0.030537135899066925, 0.03199892118573189, 0.10885652154684067, 0.10232537239789963, 0.040259718894958496, 0.20684926211833954], [0.002431201282888651, 0.0046455394476652145, 0.00041657357360236347, 0.0025613312609493732, 0.004418934695422649, 0.3187122344970703, 0.01325160264968872, 0.053576383739709854, 0.011004333384335041, 0.032538529485464096, 0.020703695714473724, 0.014605171047151089, 0.015006151981651783, 0.07837823033332825, 0.05551992356777191, 0.017747817561030388, 0.35448235273361206], [0.002819000743329525, 0.006866976153105497, 0.00037505218642763793, 0.001895034103654325, 0.0037889007944613695, 0.2931831479072571, 0.01060445699840784, 0.08695916831493378, 0.011204827576875687, 0.03882253170013428, 0.02659900113940239, 0.009106164798140526, 0.011858605779707432, 0.050479307770729065, 0.09205325692892075, 0.02218339778482914, 0.33120107650756836], [0.006585861090570688, 0.00847112387418747, 0.0009933351539075375, 0.004133992828428745, 0.009831409901380539, 0.13475008308887482, 0.09141010046005249, 0.0827268734574318, 0.029521459713578224, 0.22227902710437775, 0.07875487208366394, 0.032207779586315155, 0.04426193609833717, 0.04154753312468529, 0.04536442458629608, 0.019338497892022133, 0.14782172441482544], [0.016334716230630875, 0.006743403151631355, 0.0008912249468266964, 0.006220965180546045, 0.007283717393875122, 0.12404786050319672, 0.12278612703084946, 0.07874415069818497, 0.029059449210762978, 0.10781417042016983, 0.07854348421096802, 0.025525666773319244, 0.05357009917497635, 0.07485394179821014, 0.10560612380504608, 0.026072878390550613, 0.13590200245380402], [0.007360085844993591, 0.004792055115103722, 0.0002891373878810555, 0.001598987029865384, 0.004990969784557819, 0.28382256627082825, 0.0424920991063118, 0.03387744352221489, 0.01810668595135212, 0.0847415179014206, 0.05063400790095329, 0.023935092613101006, 0.03506258502602577, 0.035653430968523026, 0.03746429458260536, 0.024066537618637085, 0.3111124038696289], [0.01761351339519024, 0.01142715010792017, 0.0004200209805276245, 0.002220872789621353, 0.008383149281144142, 0.3179383873939514, 0.009481988847255707, 0.05300271511077881, 0.012401104904711246, 0.03577551245689392, 0.034362565726041794, 0.015121876262128353, 0.01953117921948433, 0.0449640266597271, 0.04005027562379837, 0.02570519782602787, 0.3516004681587219], [0.009375718422234058, 0.011361963115632534, 0.0010375106940045953, 0.0022944933734834194, 0.007236037869006395, 0.17163735628128052, 0.03162403032183647, 0.10060440003871918, 0.021156584843993187, 0.06936033070087433, 0.05480878800153732, 0.04459640383720398, 0.06556850671768188, 0.09775768965482712, 0.08509550988674164, 0.03398383408784866, 0.19250081479549408], [0.017826566472649574, 0.13342930376529694, 0.01297638937830925, 0.03187556192278862, 0.017881982028484344, 0.0888974517583847, 0.04056994989514351, 0.12195225059986115, 0.009910497814416885, 0.04726501181721687, 0.02552087791264057, 0.012257290072739124, 0.014230494387447834, 0.07588912546634674, 0.20231841504573822, 0.04803788289427757, 0.09916092455387115], [0.0032253246754407883, 0.007175246253609657, 0.0012366126757115126, 0.0023619348648935556, 0.003734902013093233, 0.45204994082450867, 0.001019321964122355, 0.005096371751278639, 0.001272275228984654, 0.0010698867263272405, 0.0016275907400995493, 0.0018699211068451405, 0.0014454066986218095, 0.002662474289536476, 0.002070474438369274, 0.004871051758527756, 0.5072113871574402]], [[0.31348419189453125, 0.03330084681510925, 0.029832830652594566, 0.010106411762535572, 0.07880597561597824, 0.21776168048381805, 0.008372432552278042, 0.014662574045360088, 0.005582291167229414, 0.012037524953484535, 0.005917920731008053, 0.011087644845247269, 0.00883878767490387, 0.0066285282373428345, 0.005355075933039188, 0.016823358833789825, 0.22140191495418549], [0.0079728988930583, 0.028365442529320717, 0.05325358361005783, 0.08646201342344284, 0.07736389338970184, 0.2854674160480499, 0.049522049725055695, 0.05988389253616333, 0.00277676316909492, 0.0035002792719751596, 0.001232578419148922, 0.0011418036883696914, 0.0010758251883089542, 0.004138840828090906, 0.005043361335992813, 0.02384295128285885, 0.30895647406578064], [0.0004504892567638308, 0.007783500477671623, 0.04084312915802002, 0.14877188205718994, 0.08950518071651459, 0.27829602360725403, 0.10025036334991455, 0.008953620679676533, 0.0005850932211615145, 0.001596938818693161, 0.0002936560194939375, 0.00029410276329144835, 0.00017094412760343403, 0.00015004533634055406, 0.0003749431052710861, 0.015928367152810097, 0.3057517409324646], [0.00047204739530570805, 0.013325163163244724, 0.028783274814486504, 0.03795022889971733, 0.10298430919647217, 0.35573798418045044, 0.05159134417772293, 0.005938608665019274, 0.0016976690385490656, 0.0011949161998927593, 0.0005192543612793088, 0.0005816338816657662, 0.0002817771164700389, 0.00017327489331364632, 0.00021501528681255877, 0.00903817918151617, 0.38951531052589417], [0.0025694051291793585, 0.032147668302059174, 0.01663358509540558, 0.04420579597353935, 0.04116367921233177, 0.37825286388397217, 0.04273945465683937, 0.01652396284043789, 0.0033070803619921207, 0.004054093733429909, 0.0011299938196316361, 0.000717018498107791, 0.00040795281529426575, 0.00046022984315641224, 0.000683038670103997, 0.009066822938621044, 0.4059373140335083], [0.006194618530571461, 0.005326359998434782, 0.002757200738415122, 0.005013035144656897, 0.006935070268809795, 0.4496716558933258, 0.0031023614574223757, 0.005074725486338139, 0.0025094032753258944, 0.0025939622428268194, 0.0007976836641319096, 0.004654230549931526, 0.002977962838485837, 0.0024620406329631805, 0.0028923682402819395, 0.008283333852887154, 0.488754004240036], [0.0017069678287953138, 0.0027630275581032038, 0.005089789163321257, 0.012183067388832569, 0.02047101780772209, 0.3356747329235077, 0.11182793974876404, 0.04789392277598381, 0.009128638543188572, 0.014880119822919369, 0.009802160784602165, 0.0042825429700315, 0.0031051039695739746, 0.004636202473193407, 0.012552108615636826, 0.03805314749479294, 0.3659495413303375], [0.004569163545966148, 0.0077609652653336525, 0.003158815670758486, 0.005574681330472231, 0.007169587071985006, 0.3458733856678009, 0.03273102268576622, 0.04836622253060341, 0.02407427690923214, 0.02318810485303402, 0.01628500409424305, 0.015131121501326561, 0.009938240051269531, 0.02059660106897354, 0.03946426510810852, 0.019201472401618958, 0.3769170343875885], [0.004709076602011919, 0.0020039291121065617, 0.0008044303976930678, 0.004049425013363361, 0.004057925660163164, 0.25959447026252747, 0.019152909517288208, 0.03680732101202011, 0.01779303513467312, 0.14763779938220978, 0.07710140198469162, 0.022447193041443825, 0.02237035520374775, 0.014737740159034729, 0.05804365500807762, 0.02581159956753254, 0.28287774324417114], [0.0016058107139542699, 0.0027911621145904064, 0.0005688040982931852, 0.004491415806114674, 0.004309725947678089, 0.3548728823661804, 0.011128588579595089, 0.020497921854257584, 0.010867848061025143, 0.028742428869009018, 0.020031176507472992, 0.016629569232463837, 0.032884322106838226, 0.022439857944846153, 0.04543016105890274, 0.024547241628170013, 0.3981611132621765], [0.0002842544054146856, 0.0013750346843153238, 0.0007133425679057837, 0.002001849701628089, 0.0054502603597939014, 0.3355615437030792, 0.01268080621957779, 0.016970207914710045, 0.005125659052282572, 0.01314573548734188, 0.03172338008880615, 0.05030015856027603, 0.050849560648202896, 0.015587597154080868, 0.02678869292140007, 0.048638224601745605, 0.3828035891056061], [0.0009670720901340246, 0.0015100857708603144, 0.0023126653395593166, 0.008780313655734062, 0.009800257161259651, 0.25977036356925964, 0.07959631830453873, 0.03774944692850113, 0.013958195224404335, 0.042522232979536057, 0.02506026066839695, 0.02676171064376831, 0.03469232842326164, 0.014727603644132614, 0.06355971097946167, 0.09034422785043716, 0.28788724541664124], [0.0010459324112161994, 0.0037237913347780704, 0.0008701183251105249, 0.0031374741811305285, 0.005392078775912523, 0.24497497081756592, 0.033577337861061096, 0.032204609364271164, 0.019481392577290535, 0.04001771658658981, 0.016758883371949196, 0.036579448729753494, 0.03202064335346222, 0.019995523616671562, 0.13294768333435059, 0.10123497992753983, 0.27603745460510254], [0.0014537537936121225, 0.012050416320562363, 0.0013989330036565661, 0.00864583719521761, 0.005253980867564678, 0.24932898581027985, 0.008166384883224964, 0.03607797622680664, 0.022728847339749336, 0.024315178394317627, 0.005380060523748398, 0.03932349756360054, 0.11341450363397598, 0.020825566723942757, 0.12270723283290863, 0.05178884416818619, 0.2771400213241577], [0.0005942753050476313, 0.0132222268730402, 0.004156948067247868, 0.021349389106035233, 0.02591695263981819, 0.2610316872596741, 0.03664552420377731, 0.058094289153814316, 0.04078312963247299, 0.03813428804278374, 0.01579289324581623, 0.029720038175582886, 0.041216202080249786, 0.025493668392300606, 0.04887331277132034, 0.0497569739818573, 0.2892181873321533], [0.001792527618817985, 0.02931695245206356, 0.010017281398177147, 0.09291703999042511, 0.016530591994524002, 0.22350850701332092, 0.1422826498746872, 0.08207007497549057, 0.02275678515434265, 0.04891049116849899, 0.0047688791528344154, 0.0038206102326512337, 0.005266980733722448, 0.010219511575996876, 0.020128393545746803, 0.04125628620386124, 0.24443641304969788], [0.006270617712289095, 0.00546306325122714, 0.002813740400597453, 0.005295136943459511, 0.007033090107142925, 0.4489315450191498, 0.0032559544779360294, 0.005215927958488464, 0.002493741689249873, 0.002627489622682333, 0.0007951167062856257, 0.004632426425814629, 0.0030210758559405804, 0.0025433555711060762, 0.003040399169549346, 0.008499864488840103, 0.48806753754615784]], [[0.00814394373446703, 0.050629038363695145, 0.007443604990839958, 0.339735209941864, 0.28823456168174744, 0.12525072693824768, 0.008244143798947334, 0.0024610464461147785, 0.005086870398372412, 0.0011521790875121951, 0.012114914134144783, 0.0009506157948635519, 0.00334725109860301, 0.000548910116776824, 0.0003863765159621835, 0.011222652159631252, 0.13504791259765625], [0.0005475026555359364, 0.29415932297706604, 0.001840192941017449, 0.0008766598766669631, 0.01445192750543356, 0.2887706160545349, 0.00419792253524065, 0.01756761036813259, 0.002156867878511548, 0.004809743724763393, 0.002674700925126672, 0.0003240705991629511, 0.0006651767762377858, 0.0009704299736768007, 0.0011064099380746484, 0.04580644145607948, 0.3190743625164032], [0.001329625491052866, 0.005599969532340765, 0.01583985798060894, 0.009588503278791904, 0.017040222883224487, 0.4025842249393463, 0.014459138736128807, 0.008968042209744453, 0.009241421706974506, 0.014722906053066254, 0.008384844288229942, 0.005586327984929085, 0.0036966041661798954, 0.0005831162561662495, 0.001558487070724368, 0.020099084824323654, 0.4607176184654236], [0.0006092067342251539, 0.005615589674562216, 0.0019683195278048515, 0.15200330317020416, 0.03420222923159599, 0.3616775572299957, 0.003460646141320467, 0.0009548823582008481, 0.0012565579963847995, 0.0012027259217575192, 0.0007903557270765305, 0.00040452549001201987, 0.001000169082544744, 0.000957324227783829, 0.0048240069299936295, 0.020004794001579285, 0.409067839384079], [0.0011089704930782318, 0.03984946757555008, 0.004657146520912647, 0.057957470417022705, 0.06195057928562164, 0.31812575459480286, 0.023533575236797333, 0.016821831464767456, 0.004250092897564173, 0.0110396146774292, 0.006955252960324287, 0.0013875106815248728, 0.001767055131494999, 0.0022509433329105377, 0.011678687296807766, 0.07433491945266724, 0.3623311221599579], [0.0001365785428788513, 0.0011218821164220572, 0.0004118712095078081, 0.003905681660398841, 0.00048238964518532157, 0.4497067630290985, 0.0014329166151583195, 0.00039417235529981554, 0.00037423663889057934, 0.0022443505004048347, 0.0012469601351767778, 0.00016384909395128489, 0.0006296955398283899, 0.0003678790235426277, 0.00019526433607097715, 0.0007208486786112189, 0.5364646315574646], [0.01681983284652233, 0.026016395539045334, 0.00634330790489912, 0.04466177523136139, 0.059767309576272964, 0.2207106053829193, 0.21305467188358307, 0.05042722821235657, 0.005336566362529993, 0.02307184785604477, 0.010125774890184402, 0.0030304458923637867, 0.004212199244648218, 0.0051506622694432735, 0.02451190911233425, 0.03397414833307266, 0.2527853548526764], [0.0009002091828733683, 0.08665070682764053, 0.0012194567825645208, 0.0016175558557733893, 0.02205009013414383, 0.38822656869888306, 0.00448690727353096, 0.02305956743657589, 0.001077571650967002, 0.0030158725567162037, 0.0016341853188350797, 0.00030986699857749045, 0.0007521507795900106, 0.0013916714815422893, 0.002107769949361682, 0.02087283506989479, 0.4406270682811737], [0.0013953916495665908, 0.01453556027263403, 0.004904402419924736, 0.008284272626042366, 0.02522912807762623, 0.4025590717792511, 0.005243021994829178, 0.005085201468318701, 0.014505919069051743, 0.020747333765029907, 0.008757641538977623, 0.003240772755816579, 0.0019280569395050406, 0.002008677227422595, 0.0022337406408041716, 0.019113540649414062, 0.46022820472717285], [0.0017151189967989922, 0.029554232954978943, 0.0009895529365167022, 0.019246883690357208, 0.026620179414749146, 0.391620010137558, 0.00231061945669353, 0.0032298173755407333, 0.0011863503605127335, 0.05211416259407997, 0.0038368054665625095, 0.0001682921138126403, 0.0007964593241922557, 0.0022416040301322937, 0.006053125020116568, 0.00755725521594286, 0.4507595896720886], [0.0028467292431741953, 0.02757129818201065, 0.016593284904956818, 0.06380432099103928, 0.04087642952799797, 0.2984573245048523, 0.013227567076683044, 0.01795879751443863, 0.019810238853096962, 0.04731438308954239, 0.07756554335355759, 0.004322423133999109, 0.00848512165248394, 0.0022041520569473505, 0.004736908245831728, 0.014302866533398628, 0.3399225175380707], [0.001249412540346384, 0.004255485720932484, 0.023134203627705574, 0.003799815196543932, 0.012455882504582405, 0.3433598577976227, 0.016352958977222443, 0.00858756061643362, 0.014827262610197067, 0.013991282321512699, 0.0171928983181715, 0.07850450277328491, 0.039689820259809494, 0.006158654112368822, 0.0036157071590423584, 0.018186457455158234, 0.39463815093040466], [0.0003042030439246446, 0.004839623346924782, 0.0032497518695890903, 0.004007961135357618, 0.005224590189754963, 0.363937109708786, 0.011529977433383465, 0.0013583158142864704, 0.003335948335006833, 0.013498319312930107, 0.006738518830388784, 0.007551304064691067, 0.11865432560443878, 0.011286352761089802, 0.006273910403251648, 0.016917094588279724, 0.42129281163215637], [0.0005081970011815429, 0.014223231002688408, 0.00025667762383818626, 0.001633877051062882, 0.014851105399429798, 0.38700640201568604, 0.0011771036079153419, 0.00031230796594172716, 0.0005195048288442194, 0.0008611414232291281, 0.00032221278524957597, 0.00017123839643318206, 0.0015194113366305828, 0.1147589236497879, 0.006571272853761911, 0.014603440649807453, 0.4407040774822235], [0.0007882410427555442, 0.01806337758898735, 0.00036010437179356813, 0.005706909578293562, 0.020332271233201027, 0.3374231159687042, 0.0028948793187737465, 0.0020996148232370615, 0.001096677384339273, 0.0034868442453444004, 0.0009128739475272596, 0.0003573071153368801, 0.002619863720610738, 0.03248610720038414, 0.1687232255935669, 0.01956307142972946, 0.38308554887771606], [0.016326233744621277, 0.04525411128997803, 0.003528792876750231, 0.04649915546178818, 0.06660020351409912, 0.23046176135540009, 0.03289118409156799, 0.032572709023952484, 0.0028051366098225117, 0.029856538400053978, 0.0054108197800815105, 0.0016708944458514452, 0.002228344790637493, 0.03762228041887283, 0.11688264459371567, 0.0657527893781662, 0.26363635063171387], [0.0001477461337344721, 0.001186820911243558, 0.0004157738876529038, 0.003894762834534049, 0.0005204161861911416, 0.4494522511959076, 0.0015007229521870613, 0.0004164933634456247, 0.0003712534671649337, 0.0022437984589487314, 0.0012585902586579323, 0.00016921915812417865, 0.0006614005542360246, 0.0004093470051884651, 0.0002078456018352881, 0.0007609970052726567, 0.5363824963569641]], [[5.182709514883754e-07, 0.0007918357732705772, 0.00266750855371356, 0.0016555594047531486, 0.9064989686012268, 0.014452059753239155, 0.00026796580641530454, 9.771611803444102e-05, 0.002269677584990859, 9.536708239465952e-05, 0.049513768404722214, 0.0001033967564580962, 3.7249534216243774e-05, 0.0010946942493319511, 6.589965050807223e-05, 0.005354606080800295, 0.015033168718218803], [0.03328867629170418, 0.24397894740104675, 0.033868297934532166, 0.01799839921295643, 0.025335559621453285, 0.2501417100429535, 0.029409080743789673, 0.023884087800979614, 0.009297945536673069, 0.013980057090520859, 0.006324138958007097, 0.002749726641923189, 0.0017119181575253606, 0.00757656479254365, 0.004966563079506159, 0.023079829290509224, 0.27240851521492004], [0.003390108933672309, 0.04014764353632927, 0.11461123824119568, 0.042902443557977676, 0.029998663812875748, 0.3216535151004791, 0.013267935253679752, 0.01782734878361225, 0.009940086863934994, 0.005918638315051794, 0.0035343996714800596, 0.014250963926315308, 0.006223616655915976, 0.006003312300890684, 0.005186194088310003, 0.009954293258488178, 0.35518962144851685], [0.008427123539149761, 0.035745397210121155, 0.04621991515159607, 0.10975539684295654, 0.04160467907786369, 0.27406707406044006, 0.04190247505903244, 0.047234825789928436, 0.007597209885716438, 0.016534751281142235, 0.004797480534762144, 0.008547860197722912, 0.008834607899188995, 0.007900306023657322, 0.02050122804939747, 0.016769295558333397, 0.30356037616729736], [0.004334247671067715, 0.055587057024240494, 0.01011045090854168, 0.015375137329101562, 0.0194522887468338, 0.25536131858825684, 0.06144610047340393, 0.13406968116760254, 0.017943140119314194, 0.02092491090297699, 0.01584765873849392, 0.010209314525127411, 0.005057055503129959, 0.015336669981479645, 0.03775348886847496, 0.04452244192361832, 0.2766690254211426], [0.003249326255172491, 0.019385674968361855, 0.004834496416151524, 0.007018655072897673, 0.008813135325908661, 0.4354492723941803, 0.0034556256141513586, 0.003097669454291463, 0.0018872717628255486, 0.0016819657757878304, 0.002435369649901986, 0.0017734080320224166, 0.0016811751993373036, 0.003303654259070754, 0.001364902243949473, 0.009941058233380318, 0.49062734842300415], [0.004413003101944923, 0.029019972309470177, 0.0025694870855659246, 0.005741381086409092, 0.004574887454509735, 0.1656462401151657, 0.10329975187778473, 0.09454368054866791, 0.05223359540104866, 0.11083856225013733, 0.06004724279046059, 0.030685756355524063, 0.026373032480478287, 0.02991679683327675, 0.06009940430521965, 0.03829327970743179, 0.18170391023159027], [0.007347446400672197, 0.1477622091770172, 0.005015436559915543, 0.0028196650091558695, 0.004127866588532925, 0.19232332706451416, 0.02620832249522209, 0.09532894939184189, 0.03575441613793373, 0.0713757872581482, 0.06881321221590042, 0.028191622346639633, 0.015135823749005795, 0.021014321595430374, 0.03756153956055641, 0.032529667019844055, 0.20869044959545135], [0.003121109213680029, 0.016274120658636093, 0.001451609656214714, 0.002078937366604805, 0.0048827482387423515, 0.30344823002815247, 0.007755194325000048, 0.0434899628162384, 0.047397714108228683, 0.07187098264694214, 0.039643507450819016, 0.053398676216602325, 0.014096648432314396, 0.019863348454236984, 0.024811899289488792, 0.017421536147594452, 0.3289937376976013], [0.00622611865401268, 0.016274593770503998, 0.002094022696837783, 0.007731395773589611, 0.0071057821623981, 0.2712479531764984, 0.016095347702503204, 0.032255467027425766, 0.02564518339931965, 0.11104171723127365, 0.03932259604334831, 0.03579578548669815, 0.03864482417702675, 0.029282476752996445, 0.03310154750943184, 0.03048022650182247, 0.2976548671722412], [0.001304424600675702, 0.00875906366854906, 0.003688827157020569, 0.0036144854966551065, 0.0018784458516165614, 0.22278960049152374, 0.019698427990078926, 0.039817456156015396, 0.011197403073310852, 0.05567018315196037, 0.07478947937488556, 0.13491606712341309, 0.0771782174706459, 0.029220005497336388, 0.037748705595731735, 0.026377690955996513, 0.2513515055179596], [0.0022329604253172874, 0.009267470799386501, 0.007743210066109896, 0.005616020876914263, 0.0035525804851204157, 0.22368109226226807, 0.005045042373239994, 0.033958550542593, 0.029716618359088898, 0.0333821177482605, 0.02499203383922577, 0.1940075159072876, 0.07617086172103882, 0.043117672204971313, 0.04558543115854263, 0.013424055650830269, 0.2485068142414093], [0.004059227183461189, 0.002981215715408325, 0.0032929652370512486, 0.011482873931527138, 0.002751880558207631, 0.26580169796943665, 0.0038605525624006987, 0.02194466069340706, 0.008257769979536533, 0.018807251006364822, 0.0167579036206007, 0.06610666960477829, 0.1698889434337616, 0.04344656690955162, 0.043822769075632095, 0.016551032662391663, 0.3001859784126282], [0.02121531032025814, 0.006479152478277683, 0.0011371843283995986, 0.00849240180104971, 0.012924756854772568, 0.3098805844783783, 0.0036641538608819246, 0.023239748552441597, 0.007959931157529354, 0.011341037228703499, 0.00592382438480854, 0.00959000363945961, 0.016811612993478775, 0.1400373876094818, 0.04712655395269394, 0.031932178884744644, 0.3422442376613617], [0.006848362274467945, 0.020613091066479683, 0.0023368741385638714, 0.019609538838267326, 0.012164656072854996, 0.24217185378074646, 0.03422744944691658, 0.04719820246100426, 0.013949869200587273, 0.04062749817967415, 0.011714239604771137, 0.01147499494254589, 0.023457476869225502, 0.06631440669298172, 0.14913195371627808, 0.033086638897657394, 0.26507291197776794], [0.007421222515404224, 0.1536867916584015, 0.009436036460101604, 0.042101334780454636, 0.016123926267027855, 0.12749068439006805, 0.11342205852270126, 0.09345583617687225, 0.018398653715848923, 0.04487430304288864, 0.013622074387967587, 0.022204402834177017, 0.0052075316198170185, 0.036353547126054764, 0.09767154604196548, 0.06114676967263222, 0.13738323748111725], [0.003417540341615677, 0.019556008279323578, 0.004817836452275515, 0.006970472168177366, 0.008579585701227188, 0.4351347088813782, 0.0035461115185171366, 0.0031962550710886717, 0.0018856395035982132, 0.0017011670861393213, 0.0024266368709504604, 0.0018244514940306544, 0.0017353466246277094, 0.0034565394744277, 0.0014112655771896243, 0.0100044384598732, 0.49033603072166443]], [[7.117319182725623e-05, 0.08006221801042557, 0.012524613179266453, 0.012420137412846088, 0.844393789768219, 0.023090440779924393, 0.00014091109915170819, 0.00010063665104098618, 6.465756450779736e-05, 1.5837931641726755e-05, 0.00011905281280633062, 0.00018606812227517366, 0.0007845158106647432, 0.0002883397100958973, 0.00010200359974987805, 0.0017905008280649781, 0.023845162242650986], [0.013457149267196655, 0.0357852466404438, 0.01379571482539177, 0.06817774474620819, 0.07993543148040771, 0.22316983342170715, 0.04184297099709511, 0.08558578789234161, 0.007771374192088842, 0.027423419058322906, 0.010564476251602173, 0.006952516734600067, 0.0068688225001096725, 0.025384148582816124, 0.041935309767723083, 0.06874865293502808, 0.24260136485099792], [0.006344517692923546, 0.02552461437880993, 0.012057078070938587, 0.10713005810976028, 0.062167905271053314, 0.2567042112350464, 0.060136828571558, 0.04345277324318886, 0.0016771405935287476, 0.013202040456235409, 0.003975332248955965, 0.005856635048985481, 0.012732370756566525, 0.013829032890498638, 0.0373600535094738, 0.05081840977072716, 0.28703099489212036], [0.010676342062652111, 0.1184416189789772, 0.035417161881923676, 0.07848614454269409, 0.10204708576202393, 0.17034319043159485, 0.03901127725839615, 0.040100377053022385, 0.005462796427309513, 0.01648564077913761, 0.007266136817634106, 0.018100624904036522, 0.03127139061689377, 0.04335915297269821, 0.061390724033117294, 0.03286072984337807, 0.18927960097789764], [0.0025561500806361437, 0.42451632022857666, 0.013190866447985172, 0.11200279742479324, 0.06923557817935944, 0.13212116062641144, 0.005722925066947937, 0.02777595818042755, 0.0008534158696420491, 0.006585963070392609, 0.003442466724663973, 0.002671608468517661, 0.0074600097723305225, 0.01813339628279209, 0.020190393552184105, 0.00631675636395812, 0.14722412824630737], [0.0008404373656958342, 0.01838488131761551, 0.002008028095588088, 0.0051690395921468735, 0.012873372063040733, 0.421865850687027, 0.0018935520201921463, 0.0031982078216969967, 0.0004890362615697086, 0.0007932658190838993, 0.0006129401153884828, 0.002352298703044653, 0.0023419794160872698, 0.007459078449755907, 0.004042188636958599, 0.018472440540790558, 0.49720340967178345], [0.03910854831337929, 0.06700325757265091, 0.010724730789661407, 0.06688687205314636, 0.023181181401014328, 0.09986617416143417, 0.04089304804801941, 0.09131184965372086, 0.010007784701883793, 0.10574706643819809, 0.04859134554862976, 0.023835111409425735, 0.018270740285515785, 0.06542164832353592, 0.12032267451286316, 0.05412229523062706, 0.11470571160316467], [0.02262083813548088, 0.052917059510946274, 0.002078278688713908, 0.03006710670888424, 0.033037327229976654, 0.30436211824417114, 0.01780189573764801, 0.021462656557559967, 0.006050117779523134, 0.02821621485054493, 0.0190142709761858, 0.007067458238452673, 0.011330223642289639, 0.018394922837615013, 0.06393956393003464, 0.025056196376681328, 0.3365837633609772], [0.004197309259325266, 0.014671478420495987, 0.0011642968747764826, 0.034070275723934174, 0.029523713514208794, 0.2808503210544586, 0.016096770763397217, 0.026570385321974754, 0.004347406327724457, 0.03673700988292694, 0.015810366719961166, 0.007231599651277065, 0.04408877342939377, 0.03575853630900383, 0.09252451360225677, 0.0336560420691967, 0.32270121574401855], [0.00505137350410223, 0.03961740806698799, 0.0029605701565742493, 0.04041459411382675, 0.06489108502864838, 0.18022577464580536, 0.022191764786839485, 0.038889359682798386, 0.006871272809803486, 0.020764503628015518, 0.009187175892293453, 0.013021326623857021, 0.0470593124628067, 0.0475769080221653, 0.16684891283512115, 0.08124001324176788, 0.21318860352039337], [0.0028325205203145742, 0.009897339157760143, 0.00352689903229475, 0.020498301833868027, 0.02111181616783142, 0.16895736753940582, 0.05593189224600792, 0.03528394550085068, 0.01362541038542986, 0.030286697670817375, 0.018756993114948273, 0.045787885785102844, 0.08161728084087372, 0.037797629833221436, 0.1906362771987915, 0.07253831624984741, 0.19091345369815826], [0.008626637049019337, 0.0065709687769412994, 0.00310188764706254, 0.07459469139575958, 0.04967472702264786, 0.11355835944414139, 0.04670358821749687, 0.054739996790885925, 0.008730822242796421, 0.04007641226053238, 0.030569007620215416, 0.01726970262825489, 0.07932183146476746, 0.06919774413108826, 0.22452297806739807, 0.04727625846862793, 0.12546434998512268], [0.010346474125981331, 0.011137865483760834, 0.0015593059360980988, 0.03242627531290054, 0.026193905621767044, 0.24318334460258484, 0.018444910645484924, 0.01999111846089363, 0.00830143690109253, 0.026350492611527443, 0.012180249206721783, 0.014446426182985306, 0.042310044169425964, 0.08421789854764938, 0.13889899849891663, 0.03935046121478081, 0.2706608474254608], [0.0349709689617157, 0.06389845907688141, 0.004240445327013731, 0.04438548535108566, 0.11450137197971344, 0.177937313914299, 0.01969144120812416, 0.04138534888625145, 0.010904012247920036, 0.022972341626882553, 0.013805127702653408, 0.013967537321150303, 0.0174744613468647, 0.027880296111106873, 0.05983808636665344, 0.13397376239299774, 0.19817353785037994], [0.012551232241094112, 0.08537637442350388, 0.0015356026124209166, 0.05437560752034187, 0.06228287145495415, 0.14381250739097595, 0.01198512688279152, 0.06519928574562073, 0.005521612241864204, 0.03371706232428551, 0.020162308588624, 0.012281745672225952, 0.05977732688188553, 0.09603852778673172, 0.11999557167291641, 0.05238010734319687, 0.16300708055496216], [0.03964490070939064, 0.04821242019534111, 0.0021176342852413654, 0.07997944951057434, 0.015490702353417873, 0.04868143051862717, 0.04223526269197464, 0.1397404819726944, 0.004866685252636671, 0.14456886053085327, 0.02664513885974884, 0.007056145928800106, 0.0181142445653677, 0.0839180126786232, 0.22203055024147034, 0.01972992718219757, 0.05696820095181465], [0.0009013257222250104, 0.01855313405394554, 0.0020604131277650595, 0.005341579671949148, 0.01329201739281416, 0.4199516773223877, 0.00199707830324769, 0.003390936180949211, 0.0005265101208351552, 0.0008674709242768586, 0.0006603084621019661, 0.0025245998986065388, 0.0024831260088831186, 0.007987916469573975, 0.004316417034715414, 0.020035479217767715, 0.49511006474494934]]], [[[0.00305598764680326, 0.0024946797639131546, 0.002111281268298626, 0.0010998313082382083, 8.725462976144627e-05, 0.47783681750297546, 0.0019616554491221905, 0.0017174789682030678, 0.0004330296069383621, 0.0015849892515689135, 0.0012568795355036855, 0.002180660841986537, 0.002044031396508217, 0.0007664142176508904, 0.0002914521610364318, 0.004872433841228485, 0.4962051510810852], [0.00016498303739354014, 0.2087773084640503, 0.002652397844940424, 0.02164381556212902, 0.003730859374627471, 0.31855618953704834, 0.009634067304432392, 0.020743533968925476, 0.0008775822934694588, 0.006594090256839991, 0.0011855532648041844, 0.0019265887094661593, 0.0020149629563093185, 0.03695323318243027, 0.00738115468993783, 0.025995781645178795, 0.3311678469181061], [0.00029912643367424607, 0.024702761322259903, 0.002601831452921033, 0.016428476199507713, 0.0041880072094500065, 0.44337159395217896, 0.005260796286165714, 0.0029795230366289616, 0.0008898882078938186, 0.0014816350303590298, 0.0013075139140710235, 0.0033122990280389786, 0.002502875169739127, 0.00975137297064066, 0.002779710106551647, 0.010209811851382256, 0.467932790517807], [0.00021391946938820183, 0.24425563216209412, 0.0026161405257880688, 0.19713813066482544, 0.01709960587322712, 0.17129650712013245, 0.00830630213022232, 0.01342203188687563, 0.0018888403428718448, 0.014903828501701355, 0.0023887634743005037, 0.0022638854570686817, 0.002717736642807722, 0.04764475300908089, 0.04617572948336601, 0.04743016138672829, 0.1802380383014679], [0.00043590704444795847, 0.08471620827913284, 0.013595730066299438, 0.22265079617500305, 0.02849874272942543, 0.01384926401078701, 0.11230392754077911, 0.03090902417898178, 0.004197695758193731, 0.028967276215553284, 0.010544105432927608, 0.007496904116123915, 0.003036301815882325, 0.01013533491641283, 0.043313004076480865, 0.3708200454711914, 0.014529766514897346], [0.00015101215103641152, 0.0021831714548170567, 0.0004501432413235307, 0.0002937937679234892, 9.768682502908632e-05, 0.4822514057159424, 0.0011712334817275405, 0.0004817576555069536, 0.00037646203418262303, 0.0003867712221108377, 0.0004119145742151886, 0.0010637107770889997, 0.0005776994512416422, 0.001043293857946992, 0.00020632914674934, 0.0015159206232056022, 0.5073376297950745], [7.905064194346778e-06, 0.020144030451774597, 0.00045355717884376645, 0.00392452348023653, 0.0002861063403543085, 0.4642609655857086, 0.0010913353180512786, 0.0017249559750780463, 0.00022314254601951689, 0.001139206811785698, 0.0008832388557493687, 0.0009438403649255633, 0.0013165937270969152, 0.0036677273456007242, 0.0018773891497403383, 0.0029016463086009026, 0.49515384435653687], [9.385291923535988e-05, 0.18753454089164734, 0.00034648936707526445, 0.004670873284339905, 0.000611265015322715, 0.32476040720939636, 0.0013085441896691918, 0.011652898043394089, 0.0003559276810847223, 0.0017269356176257133, 0.0007007776293903589, 0.0008063709829002619, 0.003059578128159046, 0.09813889861106873, 0.014013332314789295, 0.0073183090426027775, 0.3429010510444641], [6.969868263695389e-05, 0.0145994508638978, 0.0012618941254913807, 0.0027213592547923326, 0.0005091911880299449, 0.46428364515304565, 0.001851263688877225, 0.001186369452625513, 0.0012671170989051461, 0.0018512282986193895, 0.0016794211696833372, 0.0021012553479522467, 0.0019433381967246532, 0.0043299440294504166, 0.003245741128921509, 0.004571173805743456, 0.4925278425216675], [4.6131990529829636e-05, 0.11937309056520462, 0.00046926416689530015, 0.009203581139445305, 0.0007063905359245837, 0.3850710391998291, 0.0014979186234995723, 0.005844235420227051, 0.0005742309149354696, 0.00391245586797595, 0.0011219090083613992, 0.0007005712250247598, 0.0021868750918656588, 0.04007758945226669, 0.01047220267355442, 0.007943524979054928, 0.4107990264892578], [4.42371419921983e-05, 0.018973205238580704, 0.0004195880319457501, 0.00827112328261137, 0.0006656525656580925, 0.4515514373779297, 0.0018881355645135045, 0.0013620906975120306, 0.0006313174962997437, 0.0020774335134774446, 0.0018527815118432045, 0.0011611517984420061, 0.0028166319243609905, 0.0190805085003376, 0.006856593303382397, 0.004571578931063414, 0.4777764678001404], [5.5347067245747894e-05, 0.005595128517597914, 0.00040643863030709326, 0.0016367671778425574, 0.00039488711627200246, 0.4660564363002777, 0.0015665757237002254, 0.0008139628916978836, 0.0005515461671166122, 0.0010418014135211706, 0.0013732166262343526, 0.0032689468935132027, 0.004834353923797607, 0.012571143917739391, 0.002146112732589245, 0.00290644820779562, 0.49478086829185486], [4.568027361528948e-05, 0.011173081584274769, 0.00022737946710549295, 0.003193288343027234, 0.00020317219605203718, 0.4585338234901428, 0.0007520458311773837, 0.0008061947883106768, 0.00032424955861642957, 0.001638551359064877, 0.0009887742344290018, 0.0014453580370172858, 0.003928390797227621, 0.02176077663898468, 0.006997682154178619, 0.0031006736680865288, 0.48488083481788635], [4.0005030314205214e-05, 0.06791049987077713, 0.00022018616436980665, 0.0031000939197838306, 0.00033633553539402783, 0.4333825409412384, 0.0007185632130131125, 0.0014927348820492625, 0.0002863100089598447, 0.0028610273730009794, 0.0007337838178500533, 0.0007648919126950204, 0.002343948930501938, 0.017604632303118706, 0.007223514374345541, 0.004750362131744623, 0.456230491399765], [2.207541729148943e-05, 0.028619786724448204, 0.00012953697296325117, 0.003900179173797369, 0.00014772883150726557, 0.3807770311832428, 0.0005749393603764474, 0.002111955778673291, 0.00019608404545579106, 0.001460566301830113, 0.0005657440633513033, 0.0013317784760147333, 0.006155791226774454, 0.11906615644693375, 0.04066307470202446, 0.006799555383622646, 0.4074779748916626], [1.5555708159809e-05, 0.010057270526885986, 0.0002895993529818952, 0.001764582353644073, 0.0002594352117739618, 0.4628456234931946, 0.000994982081465423, 0.0013232158962637186, 0.00020711681281682104, 0.0016702086431905627, 0.0006155386217869818, 0.0018573268316686153, 0.0022753167431801558, 0.009097309783101082, 0.0016649471363052726, 0.0059539382345974445, 0.4991079866886139], [0.00015665469982195646, 0.0022166911512613297, 0.0004579983651638031, 0.0003007229242939502, 0.00010200327960774302, 0.48220041394233704, 0.0011801084037870169, 0.0004852929268963635, 0.00038140476681292057, 0.0003895260451827198, 0.00041712401434779167, 0.0010761694284155965, 0.0005833854083903134, 0.0010599569650366902, 0.00020888277504127473, 0.0015290093142539263, 0.5072547197341919]], [[7.222581189125776e-05, 0.00037517870077863336, 0.00013537357153836638, 7.140566594898701e-05, 1.8649216144694947e-05, 0.4880334436893463, 0.00010676807869458571, 0.00010973837197525427, 0.00024183066852856427, 3.671731610666029e-05, 5.2560782933142036e-05, 0.00014384050155058503, 0.00013876502634957433, 0.0005449159070849419, 7.793252734700218e-05, 5.46460687473882e-05, 0.509786069393158], [0.003029661485925317, 0.08919132500886917, 0.02733919769525528, 0.06201835721731186, 0.039955463260412216, 0.2781596779823303, 0.04012039303779602, 0.030925041064620018, 0.008472406305372715, 0.026538606733083725, 0.013420414179563522, 0.008948421105742455, 0.013227643445134163, 0.015548281371593475, 0.02537311054766178, 0.031104957684874535, 0.28662699460983276], [0.0029963133856654167, 0.06647272408008575, 0.00992140918970108, 0.06343724578619003, 0.0374145582318306, 0.3394675552845001, 0.019824551418423653, 0.020122306421399117, 0.002700887620449066, 0.02201317809522152, 0.0097261443734169, 0.0020387640688568354, 0.0033313154708594084, 0.009834502823650837, 0.017044246196746826, 0.018534792587161064, 0.3551194667816162], [0.0007884592050686479, 0.08929868787527084, 0.013654874637722969, 0.1049535945057869, 0.03679986298084259, 0.2743632197380066, 0.031107043847441673, 0.02383076213300228, 0.006350473966449499, 0.05065349116921425, 0.010461587458848953, 0.004208981059491634, 0.00838235579431057, 0.012881537899374962, 0.020071540027856827, 0.026572713628411293, 0.2856208086013794], [0.0013454145519062877, 0.009885892271995544, 0.002204624470323324, 0.006806781981140375, 0.007959095761179924, 0.46688932180404663, 0.0022025418002158403, 0.0006292921025305986, 0.0011626865016296506, 0.0018698407802730799, 0.001074348227120936, 0.0007828642264939845, 0.001048754551447928, 0.004825419280678034, 0.0021026001777499914, 0.0016054916195571423, 0.48760509490966797], [0.0011277699377387762, 0.001901822630316019, 3.4650009183678776e-05, 0.0003418286214582622, 0.00015662962687201798, 0.4855710566043854, 6.522958574350923e-05, 0.000520429399330169, 5.568543201661669e-05, 7.694702071603388e-05, 4.9519007006892934e-05, 2.262626549054403e-05, 8.944919682107866e-05, 0.0018769107991829515, 0.00023038219660520554, 0.0001417206512996927, 0.5077373385429382], [0.012697214260697365, 0.07749129831790924, 0.008154653012752533, 0.067148856818676, 0.29889848828315735, 0.19880838692188263, 0.01836187019944191, 0.01962701790034771, 0.0032308136578649282, 0.025497950613498688, 0.010903380811214447, 0.0015924270264804363, 0.005464931949973106, 0.011084812693297863, 0.021439651027321815, 0.012400411069393158, 0.20719777047634125], [0.002238375600427389, 0.05254901200532913, 0.005175681319087744, 0.036546528339385986, 0.0340530090034008, 0.3776576817035675, 0.011114871129393578, 0.021750569343566895, 0.002701479708775878, 0.009232576005160809, 0.006257064640522003, 0.0018260267097502947, 0.00612102122977376, 0.008576884865760803, 0.01830195263028145, 0.009351436048746109, 0.39654576778411865], [0.0019760907161980867, 0.015867576003074646, 0.003935588989406824, 0.01934015192091465, 0.02581571228802204, 0.424389123916626, 0.007425593212246895, 0.006166067905724049, 0.0030567438807338476, 0.014604616910219193, 0.005512351170182228, 0.002211326500400901, 0.00402613403275609, 0.005014462396502495, 0.005558492615818977, 0.007758344989269972, 0.447341650724411], [0.0016615500207990408, 0.04133385792374611, 0.013701976276934147, 0.059499844908714294, 0.06746853142976761, 0.3192451298236847, 0.02259671874344349, 0.017439963296055794, 0.004596627317368984, 0.05684831738471985, 0.008226142264902592, 0.005583405960351229, 0.006064516492187977, 0.004981109872460365, 0.01586836762726307, 0.01985902152955532, 0.33502498269081116], [0.0010736361145973206, 0.03036201000213623, 0.004878693260252476, 0.031151095405220985, 0.023068927228450775, 0.3937661051750183, 0.013069313019514084, 0.024983786046504974, 0.001719718100503087, 0.011918103322386742, 0.013279492035508156, 0.0021019550040364265, 0.004699168726801872, 0.005185707937926054, 0.01612897589802742, 0.008233710192143917, 0.4143795967102051], [0.004893111065030098, 0.04078719764947891, 0.006607234477996826, 0.03566856309771538, 0.04089151695370674, 0.3731358051300049, 0.007986337877810001, 0.01634579338133335, 0.002425005892291665, 0.019147299230098724, 0.009973128326237202, 0.0036393876653164625, 0.008543109521269798, 0.01311473734676838, 0.01803872361779213, 0.008467371575534344, 0.3903355896472931], [0.0014993472723290324, 0.05097734555602074, 0.004386712796986103, 0.03338378667831421, 0.014322031289339066, 0.3567340075969696, 0.0074327075853943825, 0.029162529855966568, 0.001950348261743784, 0.02390322834253311, 0.013678701594471931, 0.002641037805005908, 0.007959473878145218, 0.018733730539679527, 0.04164103418588638, 0.015533125959336758, 0.3760608732700348], [0.0018678338965401053, 0.13360652327537537, 0.005804813001304865, 0.04091794788837433, 0.04285372048616409, 0.28241199254989624, 0.009782182052731514, 0.03065682388842106, 0.004499492701143026, 0.03326546773314476, 0.008712366223335266, 0.004014298785477877, 0.010423402301967144, 0.03177671507000923, 0.029292471706867218, 0.035868946462869644, 0.2942449748516083], [0.0020892980974167585, 0.06700993329286575, 0.007753936108201742, 0.077008455991745, 0.021190473809838295, 0.27695468068122864, 0.00658646272495389, 0.046944987028837204, 0.005452786106616259, 0.034532580524683, 0.013656155206263065, 0.0042593637481331825, 0.01008691731840372, 0.021795133128762245, 0.08903602510690689, 0.02555307000875473, 0.29008981585502625], [0.007876444607973099, 0.027980640530586243, 0.00408808933570981, 0.036933742463588715, 0.5360808968544006, 0.16124875843524933, 0.005118642933666706, 0.004219674039632082, 0.0021120402961969376, 0.009052746929228306, 0.003853636095300317, 0.0009893927490338683, 0.003208599053323269, 0.007493280339986086, 0.017827343195676804, 0.003611151361837983, 0.16830499470233917], [0.0011756611056625843, 0.0019627613946795464, 3.545448635122739e-05, 0.0003532684058882296, 0.0001655051310081035, 0.48549938201904297, 6.70391382300295e-05, 0.0005335717578418553, 5.716073064832017e-05, 7.916984759503976e-05, 5.106448952574283e-05, 2.312071774213109e-05, 9.202107321470976e-05, 0.0019269103650003672, 0.00023616565158590674, 0.00014549570914823562, 0.5075963139533997]], [[0.016010386869311333, 0.006091316230595112, 0.0008487484301440418, 0.0021872720681130886, 0.002663716906681657, 0.46615660190582275, 0.001050187973305583, 0.0005590380169451237, 0.0015382764395326376, 0.0005909071769565344, 0.000389174121664837, 0.0008401904487982392, 0.00038689086795784533, 0.0028907135128974915, 0.000743406533729285, 0.007384113967418671, 0.4896690845489502], [0.0004407122905831784, 0.23399671912193298, 0.000718809082172811, 0.01661824621260166, 0.0022986209951341152, 0.34508973360061646, 0.0016692120116204023, 0.005011866334825754, 0.0005379935610108078, 0.004665978718549013, 0.0005336350295692682, 0.0003660256043076515, 0.0005182139575481415, 0.008497942239046097, 0.0025940502528101206, 0.012615961022675037, 0.36382633447647095], [0.0012371810153126717, 0.004439321346580982, 0.004534319508820772, 0.00873649399727583, 0.0043069906532764435, 0.44555407762527466, 0.004925429821014404, 0.0023803855292499065, 0.003762866836041212, 0.0030763184186071157, 0.0037090713158249855, 0.004000191111117601, 0.00267915241420269, 0.002641333732753992, 0.003104698145762086, 0.031031429767608643, 0.4698809087276459], [0.00025594254839234054, 0.00890002865344286, 0.0006101021426729858, 0.1312539130449295, 0.004642488434910774, 0.38923346996307373, 0.0023415726609528065, 0.0008651079842820764, 0.00044728495413437486, 0.0029256094712764025, 0.0010762715246528387, 0.000308003684040159, 0.001397353713400662, 0.011235207319259644, 0.010456477291882038, 0.0215540062636137, 0.41249722242355347], [0.002232869155704975, 0.00594757217913866, 0.002023949520662427, 0.014631807804107666, 0.027827860787510872, 0.4044027030467987, 0.006642539985477924, 0.0015867907786741853, 0.003309826832264662, 0.003437866922467947, 0.003668304532766342, 0.0006879694992676377, 0.0006171513814479113, 0.0017774663865566254, 0.0036937801633030176, 0.09159303456544876, 0.4259185492992401], [0.00043733653728850186, 0.0014607937773689628, 0.0016419189050793648, 0.0006636109901592135, 0.0016254843212664127, 0.47977569699287415, 0.001147228991612792, 0.0015787484589964151, 0.0019912973511964083, 0.0010698221158236265, 0.0014123112196102738, 0.0015283663524314761, 0.0015179939800873399, 0.0008022708934731781, 0.0006334814825095236, 0.0028095212765038013, 0.4999041259288788], [0.0004611304320860654, 0.0043322257697582245, 0.0007392701809294522, 0.0023808309342712164, 0.0010062193032354116, 0.4700138568878174, 0.0019932028371840715, 0.0005525078158825636, 0.0009747655712999403, 0.002008188283070922, 0.0015781560214236379, 0.0004355350974947214, 0.0008085592999123037, 0.0016558589413762093, 0.0007521583465859294, 0.010944700799882412, 0.4993627965450287], [0.0006665043183602393, 0.11281245946884155, 0.0007610887405462563, 0.021491676568984985, 0.002441206481307745, 0.3995841145515442, 0.0008903673151507974, 0.005109384190291166, 0.0007641571573913097, 0.002733156317844987, 0.000807124306447804, 0.0004607519367709756, 0.0010597390355542302, 0.007704359013587236, 0.006431563291698694, 0.013890732079744339, 0.4223916232585907], [0.00092631223378703, 0.0033345844130963087, 0.0017157424008473754, 0.0033019911497831345, 0.0018462247680872679, 0.4438186585903168, 0.0014638802967965603, 0.0012378577375784516, 0.037963103502988815, 0.007779768202453852, 0.0033471949864178896, 0.0027322799433022738, 0.0021563805639743805, 0.0019010355463251472, 0.0014421362429857254, 0.016953136771917343, 0.46807974576950073], [0.0004408314707688987, 0.0567755363881588, 0.0004919411148875952, 0.03020809218287468, 0.0012753972550854087, 0.41290727257728577, 0.0005914752837270498, 0.0020691792014986277, 0.0011231305543333292, 0.02545870840549469, 0.0019074227893725038, 0.0004227649769745767, 0.002400678815320134, 0.00996947381645441, 0.0072290534153580666, 0.01038526464253664, 0.4363437294960022], [0.00030983047327026725, 0.0040231188759207726, 0.0009240712388418615, 0.0123373344540596, 0.0022575196344405413, 0.4565354287624359, 0.0018839683616533875, 0.001329195685684681, 0.0017585420282557607, 0.005669696722179651, 0.012266110628843307, 0.001475313096307218, 0.003939170856028795, 0.0034421076998114586, 0.003972652833908796, 0.007608200889080763, 0.4802676737308502], [0.0008898398955352604, 0.002427054801955819, 0.002890343777835369, 0.004416672978550196, 0.0021065371111035347, 0.44534364342689514, 0.0025797775015234947, 0.0009456577827222645, 0.00430614547803998, 0.004666315391659737, 0.008380813524127007, 0.012208657339215279, 0.011386282742023468, 0.005280391778796911, 0.0022727397736161947, 0.0191931314766407, 0.4707060158252716], [0.0001318292779615149, 0.007049486506730318, 0.0007453773287124932, 0.01588715799152851, 0.0008610970107838511, 0.43861013650894165, 0.001046717050485313, 0.0005505785811692476, 0.0007428247481584549, 0.006219411268830299, 0.0031061475165188313, 0.002709551714360714, 0.02092060074210167, 0.014188840053975582, 0.013996012508869171, 0.006828362122178078, 0.46640586853027344], [0.00042361568193882704, 0.023101793602108955, 0.0007574164774268866, 0.04301227629184723, 0.0015778073575347662, 0.41284483671188354, 0.0011970106279477477, 0.0006218412308953702, 0.0003716528008226305, 0.004187942482531071, 0.0019015445141121745, 0.00159797805827111, 0.005729170050472021, 0.041567686945199966, 0.012207929976284504, 0.011094302870333195, 0.43780529499053955], [0.00011341287608956918, 0.008545301854610443, 0.0004320453735999763, 0.0340738520026207, 0.0016639941604807973, 0.38894662261009216, 0.0010610537137836218, 0.0016005245270207524, 0.0003063399053644389, 0.00308818556368351, 0.001008100458420813, 0.0006844943854957819, 0.004011392127722502, 0.011818766593933105, 0.11930470913648605, 0.010450849309563637, 0.41289037466049194], [0.0003383024304639548, 0.012103146873414516, 0.0008077548700384796, 0.01580100692808628, 0.003147766925394535, 0.4550243020057678, 0.001472552539780736, 0.0009537354344502091, 0.0006444132886826992, 0.002677997574210167, 0.001584362587891519, 0.00046051244135014713, 0.000905747467186302, 0.004564785864204168, 0.0033169311936944723, 0.014574732631444931, 0.4816218912601471], [0.00044636751408688724, 0.0014942423440515995, 0.0016746694454923272, 0.0006783038261346519, 0.0016532257432118058, 0.4796466827392578, 0.0011659760493785143, 0.0016059984918683767, 0.0020036480855196714, 0.0010868024546653032, 0.001429918804205954, 0.0015543649205937982, 0.0015451093204319477, 0.0008176696137525141, 0.0006441281293518841, 0.0028394919354468584, 0.4997134804725647]], [[0.0035900245420634747, 0.01216958649456501, 0.006880486849695444, 0.0058799549005925655, 0.006502002943307161, 0.4564931392669678, 0.007220793515443802, 0.005134181585162878, 0.0046211774460971355, 0.0014748831745237112, 0.0019218336092308164, 0.004927070811390877, 0.0037372312508523464, 0.002881917404010892, 0.0022421430330723524, 0.003322033677250147, 0.471001535654068], [0.0036113783717155457, 0.02903205156326294, 0.07581311464309692, 0.11621232330799103, 0.08009381592273712, 0.25197339057922363, 0.07081342488527298, 0.0212237611413002, 0.0036695420276373625, 0.011213189922273159, 0.004611437674611807, 0.004824592731893063, 0.0019601869862526655, 0.005160883069038391, 0.021282915025949478, 0.036365728825330734, 0.26213833689689636], [0.0012029046192765236, 0.030452406033873558, 0.04609818011522293, 0.07073606550693512, 0.05265383422374725, 0.36875924468040466, 0.020217280834913254, 0.003546153660863638, 0.00013965467223897576, 0.0005020989337936044, 0.0004190555482637137, 0.0005325648817233741, 0.0003001650038640946, 0.0006430274806916714, 0.0008938768296502531, 0.01152216549962759, 0.39138132333755493], [0.0015283954562619328, 0.05691039189696312, 0.0352368988096714, 0.028889106586575508, 0.04231726750731468, 0.37576553225517273, 0.026694925501942635, 0.012271806597709656, 0.0018270077416673303, 0.0028414747212082148, 0.001907718600705266, 0.0027500493451952934, 0.0012575361179187894, 0.0015001213178038597, 0.0011537676909938455, 0.01194612868130207, 0.39520183205604553], [0.0008105948800221086, 0.008961383253335953, 0.012137134559452534, 0.01670636422932148, 0.010000775568187237, 0.4503120481967926, 0.015073692426085472, 0.0017173259984701872, 0.0003909159859176725, 0.0005658332956954837, 0.0007005800725892186, 0.0012891908409073949, 0.0009625125676393509, 0.0009244465618394315, 0.0005965994787402451, 0.00230899709276855, 0.4765414595603943], [0.0017604741733521223, 0.0023067162837833166, 0.001759217120707035, 0.0019327320624142885, 0.002770084887742996, 0.47537365555763245, 0.0034083775244653225, 0.001694402890279889, 0.002509875688701868, 0.0013752871891483665, 0.001002977485768497, 0.0015496466076001525, 0.0008917315280996263, 0.0013746034819632769, 0.0013821283355355263, 0.003374457824975252, 0.4955335557460785], [0.0011897413060069084, 0.0056625730358064175, 0.005295667331665754, 0.008098882623016834, 0.0048470208421349525, 0.42616701126098633, 0.024437570944428444, 0.014726178720593452, 0.001734684337861836, 0.007581433281302452, 0.010545714758336544, 0.008274623192846775, 0.006307671777904034, 0.005721671972423792, 0.012554297223687172, 0.007474358659237623, 0.44938090443611145], [0.001712653087452054, 0.00406720582395792, 0.0024730199947953224, 0.008045732043683529, 0.003783486085012555, 0.4008016288280487, 0.017888706177473068, 0.015308943577110767, 0.0028339987620711327, 0.015134845860302448, 0.01711188070476055, 0.013646762818098068, 0.013949497602880001, 0.010912035591900349, 0.04148469865322113, 0.009261757135391235, 0.4215831756591797], [0.00047858760808594525, 0.0011772394645959139, 0.00016117087216116488, 0.0005365189863368869, 0.0006167726241983473, 0.45113253593444824, 0.0017979867989197373, 0.00460009416565299, 0.004717822186648846, 0.028252078220248222, 0.010461251251399517, 0.003945974633097649, 0.005015586037188768, 0.0019398553995415568, 0.005065116100013256, 0.0011075977236032486, 0.47899380326271057], [0.0010367532959207892, 0.01047910749912262, 0.0014196087140589952, 0.004430267494171858, 0.005514098331332207, 0.36516454815864563, 0.013937762938439846, 0.04534425586462021, 0.02260630950331688, 0.02151395194232464, 0.03305203840136528, 0.01595059037208557, 0.02025158330798149, 0.011033782735466957, 0.03216079995036125, 0.010983512736856937, 0.3851209282875061], [0.00026349921245127916, 0.001883374061435461, 0.0008799862116575241, 0.0015740515664219856, 0.002149356994777918, 0.4136521816253662, 0.010022112168371677, 0.010572390630841255, 0.004480067640542984, 0.005826769396662712, 0.04126446694135666, 0.014354370534420013, 0.01577674224972725, 0.005144776776432991, 0.024093395099043846, 0.009930020198225975, 0.4381323456764221], [0.0021618905011564493, 0.004637092351913452, 0.002605376299470663, 0.007319344207644463, 0.00722713116556406, 0.35681742429733276, 0.01706821098923683, 0.021556874737143517, 0.005929118953645229, 0.013076507486402988, 0.049803707748651505, 0.026762505993247032, 0.03200412541627884, 0.015568584203720093, 0.046128369867801666, 0.014738243073225021, 0.37659552693367004], [0.0009272153256461024, 0.0016419123858213425, 0.001032451749779284, 0.0022638302762061357, 0.004383502993732691, 0.406827449798584, 0.005483785644173622, 0.014068636111915112, 0.00530308298766613, 0.007745290175080299, 0.02918114885687828, 0.021555442363023758, 0.015460873953998089, 0.007403255440294743, 0.03519990295171738, 0.012456807307898998, 0.42906540632247925], [0.0020396162290126085, 0.006595653481781483, 0.002078932709991932, 0.006173979956656694, 0.005352513398975134, 0.41703692078590393, 0.0063353972509503365, 0.015402254648506641, 0.004706087522208691, 0.007611225824803114, 0.009871801361441612, 0.018442919477820396, 0.02866845205426216, 0.004313294775784016, 0.0151321180164814, 0.0127878962084651, 0.4374508261680603], [0.0010532229207456112, 0.013647079467773438, 0.0028137294575572014, 0.009286713786423206, 0.006865496747195721, 0.34787461161613464, 0.01679893024265766, 0.029145997017621994, 0.009598154574632645, 0.01645546965301037, 0.027847910299897194, 0.036252088844776154, 0.06399457901716232, 0.01341558899730444, 0.025392433628439903, 0.013416311703622341, 0.36614158749580383], [0.001274012727662921, 0.01131044328212738, 0.009358730167150497, 0.010626068338751793, 0.013090966269373894, 0.445933997631073, 0.01329649705439806, 0.004993366077542305, 0.0014204217586666346, 0.0020174349192529917, 0.002295845653861761, 0.0036107460036873817, 0.0027391372714191675, 0.0013449816033244133, 0.00224176119081676, 0.004966038279235363, 0.46947944164276123], [0.0017946624429896474, 0.002358986297622323, 0.0018057296983897686, 0.0019871117547154427, 0.0028573789168149233, 0.4750659167766571, 0.003499762387946248, 0.0017391238361597061, 0.002551268320530653, 0.0013960718642920256, 0.0010245381854474545, 0.0015803296118974686, 0.0009095136192627251, 0.00139928690623492, 0.0014123746659606695, 0.003447804367169738, 0.4951702654361725]], [[0.018687425181269646, 0.0167615357786417, 0.0021330316085368395, 0.0022060303017497063, 0.0019531003199517727, 0.4563862085342407, 0.0014661012683063745, 0.0016238812822848558, 0.0002753569569904357, 0.0011521149426698685, 0.003198871621862054, 0.001513423165306449, 0.0013286750763654709, 0.005334199406206608, 0.003332630032673478, 0.002431877190247178, 0.48021554946899414], [0.00036796717904508114, 0.3290698230266571, 0.002206440083682537, 0.004849342629313469, 0.0049147712998092175, 0.28434517979621887, 0.013413825072348118, 0.028341293334960938, 0.0005886641447432339, 0.0019204504787921906, 0.0011824513785541058, 0.002071558265015483, 0.00045951551874168217, 0.005085798446089029, 0.00151151604950428, 0.018229087814688683, 0.30144232511520386], [0.0002983541344292462, 0.004479093477129936, 0.015285385772585869, 0.002046152949333191, 0.003259318182244897, 0.46242377161979675, 0.003298390656709671, 0.0019089384004473686, 0.0004265537136234343, 0.0004997584619559348, 0.0006909850635565817, 0.003241382772102952, 0.0007681529968976974, 0.0012667776318266988, 0.0006276762578636408, 0.006567955017089844, 0.49291130900382996], [0.0006056616548448801, 0.014953275211155415, 0.0006983126513659954, 0.14354658126831055, 0.01744847185909748, 0.3655674159526825, 0.005889381747692823, 0.004058468155562878, 0.0005686079384759068, 0.0023472700268030167, 0.0010832555126398802, 0.0011095060035586357, 0.002750582527369261, 0.011721562594175339, 0.01649303361773491, 0.023071929812431335, 0.3880867660045624], [0.0002840041124727577, 0.011091669090092182, 0.0011926424922421575, 0.006733535323292017, 0.11513197422027588, 0.3445805013179779, 0.024004215374588966, 0.007166013121604919, 0.0010645996080711484, 0.00037079007597640157, 0.0006675373297184706, 0.0006643637316301465, 0.0004338769940659404, 0.002471035812050104, 0.005541650112718344, 0.11501630395650864, 0.3635852634906769], [4.0922375774243847e-05, 0.0009777828818187118, 0.0005116760730743408, 0.0005940560949966311, 0.0006007197080180049, 0.48272913694381714, 0.00026811775751411915, 0.0005827349377796054, 0.0004215749795548618, 0.0004816987784579396, 0.00046319348621182144, 0.0004038897168356925, 0.0008642731700092554, 0.00124819774646312, 0.0017784865340217948, 0.002619061851873994, 0.5054145455360413], [0.00032271657255478203, 0.011404312215745449, 0.0003148666291963309, 0.0036728985141962767, 0.005484209395945072, 0.4550701379776001, 0.01929120160639286, 0.0032927950378507376, 0.0002930259215645492, 0.000373698741896078, 0.0003549706016201526, 0.00030918538686819375, 0.001239283476024866, 0.0014262127224355936, 0.0007806126377545297, 0.00744042219594121, 0.48892953991889954], [0.00020995817612856627, 0.03523608297109604, 0.000585276517085731, 0.0034829226788133383, 0.005258850287646055, 0.42838841676712036, 0.008472939021885395, 0.02401200495660305, 0.00047873269068077207, 0.0010404593776911497, 0.0009058216237463057, 0.0010321122827008367, 0.0024686716496944427, 0.004478744696825743, 0.0041856057941913605, 0.02176756225526333, 0.45799580216407776], [0.00015317850920837373, 0.0017162731382995844, 0.00019223391427658498, 0.0010275414679199457, 0.0010023318463936448, 0.4452396035194397, 0.002295633079484105, 0.0021625913213938475, 0.06399888545274734, 0.002724918071180582, 0.0006410073838196695, 0.0007827365188859403, 0.001132375793531537, 0.0018958363216370344, 0.0013439762406051159, 0.003115509869530797, 0.47057539224624634], [0.000250600598519668, 0.027644257992506027, 0.00028024305356666446, 0.006101250182837248, 0.0009006234467960894, 0.435997873544693, 0.001275690970942378, 0.0033306756522506475, 0.0009711685124784708, 0.034224897623062134, 0.0047063278034329414, 0.00081017822958529, 0.007216488942503929, 0.004611840471625328, 0.0068110632710158825, 0.003105712588876486, 0.4617610573768616], [9.51871697907336e-05, 0.003381154965609312, 0.0003220249491278082, 0.0035046956036239862, 0.0013452352723106742, 0.46713948249816895, 0.001490722643211484, 0.0015612042043358088, 0.0002673495910130441, 0.002169156214222312, 0.005261705722659826, 0.0007175562786869705, 0.0072448053397238255, 0.001902455696836114, 0.004445722792297602, 0.0024660611525177956, 0.4966853857040405], [9.569563553668559e-05, 0.002606271067634225, 0.002744195517152548, 0.0025284788571298122, 0.001300936914049089, 0.4531266689300537, 0.001668841578066349, 0.0025508583057671785, 0.0009081168682314456, 0.0008982930448837578, 0.0010427887318655849, 0.027643805369734764, 0.004426092840731144, 0.00511461915448308, 0.002959104022011161, 0.008073003962635994, 0.4823122024536133], [0.00010169842425966635, 0.0024437028914690018, 0.00029387479298748076, 0.0055100033059716225, 0.0012436934048309922, 0.38991111516952515, 0.001442435896024108, 0.0027904342859983444, 0.00030164478812366724, 0.004555508494377136, 0.0017825360409915447, 0.002148821484297514, 0.13379709422588348, 0.014487361535429955, 0.016021404415369034, 0.00650269677862525, 0.41666603088378906], [0.0002811384620144963, 0.011887571774423122, 0.0004400784964673221, 0.007422806229442358, 0.0008720404584892094, 0.4316537082195282, 0.00105220265686512, 0.0038504311814904213, 0.00032148719765245914, 0.0016938188346102834, 0.0007248972542583942, 0.0019576370250433683, 0.013469009660184383, 0.05099630355834961, 0.008227258920669556, 0.00454621110111475, 0.46060341596603394], [8.94488621270284e-05, 0.007009284570813179, 9.571455302648246e-05, 0.012665132991969585, 0.0020679845474660397, 0.4227478504180908, 0.0012907824711874127, 0.0055910744704306126, 0.00014906487194821239, 0.001117244828492403, 0.000771805178374052, 0.0005631965468637645, 0.005540178157389164, 0.005964810494333506, 0.07477247714996338, 0.007522715721279383, 0.45204123854637146], [0.00048741759383119643, 0.011754171922802925, 0.0004342868342064321, 0.01762816309928894, 0.015415582805871964, 0.4330420196056366, 0.011869124136865139, 0.004235807806253433, 0.00037311899359337986, 0.0010298005072399974, 0.001149981515482068, 0.0005991078214719892, 0.0016730144852772355, 0.004191338550299406, 0.009199807420372963, 0.02818830870091915, 0.45872896909713745], [4.143610203755088e-05, 0.001002457458525896, 0.0005206650821492076, 0.0006037360872142017, 0.0006084141205064952, 0.48263463377952576, 0.0002740035706665367, 0.0005947627942077816, 0.00042828047298826277, 0.0004913308657705784, 0.00047240423737093806, 0.000412004126701504, 0.0008874781779013574, 0.0012710144510492682, 0.0018027927726507187, 0.0026365783996880054, 0.5053179860115051]], [[0.04561252146959305, 0.018460284918546677, 0.0059175132773816586, 0.0024086004123091698, 0.004740792326629162, 0.42705315351486206, 0.0034596368204802275, 0.004517668392509222, 0.004746435210108757, 0.005558692384511232, 0.007057453505694866, 0.005567722488194704, 0.000922444392926991, 0.008876685053110123, 0.000897359277587384, 0.007774872239679098, 0.44642823934555054], [0.00021958745492156595, 0.2205788642168045, 0.0020322545897215605, 0.012269624508917332, 0.010938899591565132, 0.31360164284706116, 0.052125170826911926, 0.03233858197927475, 0.0004855600418522954, 0.0056548104621469975, 0.0029168755281716585, 0.00047878650366328657, 0.00141222367528826, 0.004222440533339977, 0.002446467289701104, 0.0066741276532411575, 0.3316041827201843], [0.0002793255844153464, 0.002662035869434476, 0.007250702008605003, 0.0011164091993123293, 0.002031581709161401, 0.4662431478500366, 0.003759704763069749, 0.0043638632632792, 0.0012267351849004626, 0.0021301882807165384, 0.002647473243996501, 0.0014112801291048527, 0.0007355814450420439, 0.0011336312163621187, 0.0009807879105210304, 0.005832712631672621, 0.4961949288845062], [6.14318487350829e-05, 0.003834294620901346, 0.002255786908790469, 0.08884312212467194, 0.019617943093180656, 0.40404000878334045, 0.011305266059935093, 0.006345187779515982, 0.0004460709460545331, 0.0050573949702084064, 0.003533370792865753, 0.0014621333684772253, 0.0026650126092135906, 0.002779176691547036, 0.006685786414891481, 0.012275805696845055, 0.4287922978401184], [0.00019232004706282169, 0.004678590223193169, 0.0027889395132660866, 0.009916639886796474, 0.1148427277803421, 0.39261433482170105, 0.03346176818013191, 0.0033919985871762037, 0.0004817628359887749, 0.0015647069085389376, 0.0028509702533483505, 0.000787148775998503, 0.0005739171174354851, 0.0014429005095735192, 0.0012002912117168307, 0.01415758952498436, 0.4150533378124237], [0.00010842431947821751, 0.0003421311848796904, 0.0002881749242078513, 0.0009957354050129652, 0.00101807015016675, 0.48271751403808594, 0.0006738469237461686, 0.00015766244905535132, 0.0001979403750738129, 0.0009651214932091534, 0.00021984096383675933, 0.0006507323705591261, 0.000839297310449183, 0.001152558485046029, 0.0005339324125088751, 0.0023002438247203827, 0.5068387985229492], [0.00034113050787709653, 0.003639787435531616, 0.0015862250002101064, 0.004776161164045334, 0.015821021050214767, 0.34666600823402405, 0.19938932359218597, 0.009995922446250916, 0.0005661236355081201, 0.008511224761605263, 0.003677473170682788, 0.0007210384937934577, 0.0009667240083217621, 0.0010121557861566544, 0.0013836335856467485, 0.03462721407413483, 0.36631888151168823], [0.00017928059969563037, 0.013396657072007656, 0.001178975566290319, 0.007625240366905928, 0.006443332880735397, 0.3901331424713135, 0.012228189036250114, 0.10511422157287598, 0.0011183307506144047, 0.0067718601785600185, 0.005029875785112381, 0.0013970892177894711, 0.0018655508756637573, 0.005595054477453232, 0.016244933009147644, 0.008718880824744701, 0.41695937514305115], [0.0005722095957025886, 0.002837746636942029, 0.0034524870570749044, 0.0015290752053260803, 0.0016720725689083338, 0.36885929107666016, 0.0025914032012224197, 0.005017375573515892, 0.19067999720573425, 0.01371905766427517, 0.0019268585601821542, 0.006504612509161234, 0.0003709527663886547, 0.0018503011669963598, 0.001692173769697547, 0.008475910872220993, 0.3882485330104828], [0.0003044739714823663, 0.008952283300459385, 0.0014846967533230782, 0.017345163971185684, 0.002508319914340973, 0.27595099806785583, 0.003992226906120777, 0.005399494431912899, 0.013416348025202751, 0.3452576696872711, 0.006197819486260414, 0.001516304793767631, 0.0012234920868650079, 0.0024792177136987448, 0.011109456419944763, 0.012654818594455719, 0.29020729660987854], [0.00032206979813054204, 0.0018642885843291879, 0.0010954294120892882, 0.005359770730137825, 0.0032849330455064774, 0.43405723571777344, 0.0038872752338647842, 0.004813998471945524, 0.004381078295409679, 0.01603076234459877, 0.05262317880988121, 0.0014606582699343562, 0.001393122598528862, 0.0013599557569250464, 0.0016026701778173447, 0.006766015663743019, 0.459697425365448], [0.00025572028243914247, 0.0018362175906077027, 0.0015751743922010064, 0.0015521044842898846, 0.0014063698472455144, 0.4617844820022583, 0.00163375458214432, 0.005208019632846117, 0.002074752701446414, 0.002936170669272542, 0.0025975671596825123, 0.0071619837544858456, 0.004469189327210188, 0.003941789269447327, 0.00198430591262877, 0.0071220495738089085, 0.4924603998661041], [0.00010309807839803398, 0.0012381100095808506, 0.0015425046440213919, 0.006959727965295315, 0.0016932643484324217, 0.4183071553707123, 0.00298045645467937, 0.0022768396884202957, 0.00039701274363324046, 0.008299465291202068, 0.009530440904200077, 0.004085983615368605, 0.08467957377433777, 0.003841784317046404, 0.002557171043008566, 0.004185972735285759, 0.44732141494750977], [0.00020694501290563494, 0.007479389663785696, 0.0011270333779975772, 0.01672932878136635, 0.0027695964090526104, 0.43542417883872986, 0.003626270452514291, 0.008382124826312065, 0.0003206910623703152, 0.0041452920995652676, 0.004397739190608263, 0.0024686530232429504, 0.009146813303232193, 0.02566557377576828, 0.008346262387931347, 0.005984313786029816, 0.46377986669540405], [4.3128766264999285e-05, 0.0019822947215288877, 0.0006914043333381414, 0.02806020900607109, 0.005495643243193626, 0.36175474524497986, 0.002585425740107894, 0.00415302999317646, 0.0007282280712388456, 0.007811745163053274, 0.001954484498128295, 0.0011754714651033282, 0.004330812022089958, 0.004363913554698229, 0.17867505550384521, 0.010699152015149593, 0.38549524545669556], [0.000219600202399306, 0.005247925408184528, 0.001382597372867167, 0.01139132957905531, 0.01282823272049427, 0.42527905106544495, 0.01993275061249733, 0.005057929083704948, 0.0010675655212253332, 0.006377193611115217, 0.003504530992358923, 0.001470562070608139, 0.0016141417436301708, 0.0034416408743709326, 0.00884726457297802, 0.04367494583129883, 0.44866275787353516], [0.00011071372136939317, 0.00035034777829423547, 0.0002927544410340488, 0.0010162661783397198, 0.001038214541040361, 0.48263299465179443, 0.0006885387701913714, 0.00016174730262719095, 0.00019944290397688746, 0.000982426106929779, 0.0002254840946989134, 0.000656636490020901, 0.0008528504986315966, 0.0011731740087270737, 0.0005486113368533552, 0.002338676480576396, 0.5067312121391296]], [[0.0027014315128326416, 0.0025997168850153685, 0.0016365472692996264, 0.0006207306869328022, 0.0033317813649773598, 0.4676778316497803, 0.0009804152650758624, 0.00570668512955308, 0.00683080917224288, 0.004380485974252224, 0.003313452238216996, 0.004494787659496069, 0.0036959752906113863, 0.003249091561883688, 0.00132177141495049, 0.0008958905818872154, 0.48656266927719116], [0.0007426590309478343, 0.02516266703605652, 0.006033783312886953, 0.0055265240371227264, 0.005122517701238394, 0.43717047572135925, 0.008060622960329056, 0.015653343871235847, 0.006419383455067873, 0.011802415363490582, 0.006096439901739359, 0.0018310933373868465, 0.0020758367609232664, 0.0023638957645744085, 0.005775123368948698, 0.004577796906232834, 0.4555855393409729], [0.0004461438802536577, 0.015006795525550842, 0.013455123640596867, 0.07178854942321777, 0.02034885808825493, 0.39371633529663086, 0.017990097403526306, 0.004966971464455128, 0.0020079337991774082, 0.009212242439389229, 0.006261854898184538, 0.002326610032469034, 0.0035243951715528965, 0.0018905078759416938, 0.010596519336104393, 0.013377771712839603, 0.4130832552909851], [0.00018207565881311893, 0.024472763761878014, 0.0093770120292902, 0.05594583600759506, 0.07253716886043549, 0.3406054377555847, 0.023195406422019005, 0.01245623268187046, 0.002689550630748272, 0.015591799281537533, 0.009363710880279541, 0.0014976814854890108, 0.0011245983187109232, 0.0019559089560061693, 0.012115010991692543, 0.057801343500614166, 0.3590884506702423], [0.00010610017488943413, 0.002886776579543948, 0.001819187542423606, 0.022377243265509605, 0.016346648335456848, 0.44998496770858765, 0.003393994877114892, 0.0036253812722861767, 0.0010442635975778103, 0.004886376205831766, 0.003710597287863493, 0.0005596655537374318, 0.0006038727588020265, 0.0007846933440305293, 0.00595072703436017, 0.004895655903965235, 0.4770239293575287], [0.0013039866462349892, 0.0009491844684816897, 0.00034338634577579796, 0.000953168491832912, 0.0007424625218845904, 0.48186883330345154, 0.0002725014928728342, 0.0007444137008860707, 0.0018066056072711945, 0.0017580105923116207, 0.0007159298402257264, 0.00043612023000605404, 0.0004964135587215424, 0.0017104330472648144, 0.0008152240770868957, 0.0007663406431674957, 0.504317045211792], [0.0002414670743746683, 0.008448872715234756, 0.0054538496769964695, 0.05690860003232956, 0.03302204981446266, 0.3833864629268646, 0.02312895841896534, 0.014336369931697845, 0.00321450037881732, 0.016393069177865982, 0.012759638018906116, 0.002212794031947851, 0.003242218866944313, 0.0015158138703554869, 0.017379887402057648, 0.015723131597042084, 0.40263232588768005], [0.0001167687150882557, 0.013363229110836983, 0.0015824984293431044, 0.00898666400462389, 0.007093646097928286, 0.4063126742839813, 0.01317342184484005, 0.021998930722475052, 0.011093138717114925, 0.025456907227635384, 0.022847864776849747, 0.0019921865314245224, 0.0025108465924859047, 0.0024108607321977615, 0.025114981457591057, 0.009170321747660637, 0.42677512764930725], [9.439068526262417e-05, 0.001351997721940279, 0.0005519918631762266, 0.003909386694431305, 0.0012225685641169548, 0.44988808035850525, 0.0022354519460350275, 0.0026756401639431715, 0.012899770401418209, 0.022463511675596237, 0.00870110746473074, 0.0010604754788801074, 0.0013369368389248848, 0.0011479329550638795, 0.010898428037762642, 0.001644141972064972, 0.4779183268547058], [6.76093841320835e-05, 0.0036421348340809345, 0.0005340203642845154, 0.002065888838842511, 0.0018321673851460218, 0.4457152485847473, 0.003198524471372366, 0.0057075005024671555, 0.01500694639980793, 0.020765533670783043, 0.009027399122714996, 0.00167031679302454, 0.0012896046973764896, 0.0017928719753399491, 0.011844562366604805, 0.0027414739597588778, 0.4730982482433319], [9.055134432855994e-05, 0.0030583487823605537, 0.001264171558432281, 0.006556706503033638, 0.00610411586239934, 0.37835249304771423, 0.024097736924886703, 0.017611367627978325, 0.013171041384339333, 0.031547751277685165, 0.07134389877319336, 0.0049822269938886166, 0.0030225967057049274, 0.003861033823341131, 0.02658820152282715, 0.007315295282751322, 0.4010324776172638], [0.0005381566006690264, 0.0038298815488815308, 0.0034845273476094007, 0.019277093932032585, 0.007658825255930424, 0.3808801472187042, 0.015533536672592163, 0.008660631254315376, 0.0113668879494071, 0.03099258989095688, 0.0442536324262619, 0.014105258509516716, 0.021139182150363922, 0.0055665383115410805, 0.026392070576548576, 0.0060056415386497974, 0.40031540393829346], [0.00023647682974115014, 0.0010628182208165526, 0.0015447750920429826, 0.0062661683186888695, 0.0034418499562889338, 0.4190976917743683, 0.0072328755632042885, 0.00601023668423295, 0.006976609118282795, 0.01811167597770691, 0.020269138738512993, 0.012374245561659336, 0.023768704384565353, 0.011138483881950378, 0.015232046134769917, 0.003240018617361784, 0.44399604201316833], [0.00021015947277192026, 0.0018997982842847705, 0.0010471625719219446, 0.0045213960111141205, 0.003701677778735757, 0.43782082200050354, 0.0032547947484999895, 0.005512657109647989, 0.0025281854905188084, 0.007646110840141773, 0.008282307535409927, 0.006714074406772852, 0.01381716225296259, 0.02145307883620262, 0.01730988174676895, 0.0035307053476572037, 0.460750013589859], [0.00011305095540592447, 0.0034283422864973545, 0.001332602696493268, 0.007055305875837803, 0.0041626738384366035, 0.3956339657306671, 0.015609067864716053, 0.016358591616153717, 0.008819732815027237, 0.028249818831682205, 0.030921034514904022, 0.004380007740110159, 0.009204402565956116, 0.013914546929299831, 0.03280288353562355, 0.009009169414639473, 0.4190048575401306], [0.00037130239070393145, 0.006610088050365448, 0.0034762746654450893, 0.03291703760623932, 0.01785561442375183, 0.41187286376953125, 0.008138947188854218, 0.007320455741137266, 0.005187649745494127, 0.022591326385736465, 0.010682801716029644, 0.002380714286118746, 0.003944162745028734, 0.0038576493971049786, 0.02099914476275444, 0.008614905178546906, 0.4331790804862976], [0.0013342613819986582, 0.000976762967184186, 0.00035347696393728256, 0.0009886198677122593, 0.0007710709469392896, 0.48172736167907715, 0.00028156107873655856, 0.0007690034108236432, 0.00185225042514503, 0.0018020020797848701, 0.0007380538736470044, 0.00044889291166327894, 0.000513130915351212, 0.001753983204253018, 0.0008451348985545337, 0.000789892568718642, 0.5040545463562012]], [[0.03701421990990639, 0.010153098031878471, 0.0035267414059489965, 0.0014824436511844397, 0.00362804951146245, 0.41966596245765686, 0.0019439541501924396, 0.015755368396639824, 0.006347017828375101, 0.005714490078389645, 0.009788651019334793, 0.00515552144497633, 0.005599677097052336, 0.026968425139784813, 0.00338172004558146, 0.0029734186828136444, 0.44090136885643005], [0.00028327020118013024, 0.023287752643227577, 0.003108654171228409, 0.0040166643448174, 0.0020856948103755713, 0.43222352862358093, 0.007248287554830313, 0.04531906172633171, 0.006233641412109137, 0.006880492903292179, 0.003734596073627472, 0.004851772449910641, 0.0013159274822100997, 0.0016513103619217873, 0.0018265844555571675, 0.0032990933395922184, 0.45263364911079407], [0.00020366332319099456, 0.00426735682412982, 0.0080330278724432, 0.003321622498333454, 0.0012480163713917136, 0.47188490629196167, 0.0005640801973640919, 0.0016097902553156018, 0.00022788054775446653, 0.0002587877679616213, 0.0007334023248404264, 0.0007417778251692653, 0.0010526432888582349, 0.002324068918824196, 0.0016260934062302113, 0.0011600098805502057, 0.5007428526878357], [5.306247476255521e-05, 0.00045572311501018703, 0.0007813947158865631, 0.006233426742255688, 0.0015720273368060589, 0.47519469261169434, 0.0006666206754744053, 0.001831781817600131, 0.0004982455284334719, 0.001869194325990975, 0.0010293559171259403, 0.0006771726766601205, 0.0011306345695629716, 0.0026979208923876286, 0.003215538104996085, 0.0018812495982274413, 0.5002121329307556], [9.807366586755961e-05, 0.0015734345652163029, 0.0008728116517886519, 0.005819140933454037, 0.0037688619922846556, 0.4732426702976227, 0.0013942370424047112, 0.0014771579299122095, 0.000439287832705304, 0.0007061971118673682, 0.0005962426657788455, 0.0009047382045537233, 0.0007169262389652431, 0.0020769652910530567, 0.0012968610972166061, 0.001953047700226307, 0.5030632615089417], [2.01447637664387e-05, 9.43799241213128e-05, 3.629510320024565e-05, 0.0002684258215595037, 8.877713844412938e-05, 0.48493659496307373, 6.44292522338219e-05, 0.0005672876723110676, 8.433715265709907e-05, 0.00017142965225502849, 0.000100643839687109, 6.49469657219015e-05, 0.00027817662339657545, 0.0006747560692019761, 0.000256141007412225, 9.861469879979268e-05, 0.5121946334838867], [0.00012914642866235226, 0.0036915410310029984, 0.0005129267810843885, 0.0023218784481287003, 0.0016760403523221612, 0.46932369470596313, 0.006052115000784397, 0.007921517826616764, 0.0008693975978530943, 0.00193192926235497, 0.0006401811842806637, 0.0006627919501625001, 0.0012528235092759132, 0.0026262898463755846, 0.0009534015553072095, 0.0019039820181205869, 0.49753037095069885], [8.854058251017705e-05, 0.002319183899089694, 0.0001172117845271714, 0.0010659006657078862, 0.0005736882449127734, 0.4657270610332489, 0.0013344588223844767, 0.020985396578907967, 0.0015858745900914073, 0.003385735908523202, 0.002914366079494357, 0.0009041213197633624, 0.0010608290322124958, 0.002192745916545391, 0.0013825662899762392, 0.0016302859876304865, 0.49273213744163513], [0.0001625841250643134, 0.0007732406374998391, 7.550566078862175e-05, 0.00022081292991060764, 0.00016909661644604057, 0.4683074951171875, 0.00033623212948441505, 0.003445180132985115, 0.021506814286112785, 0.002946398453786969, 0.0004598063533194363, 0.0003411367360968143, 0.00011480871762614697, 0.0006930359522812068, 0.0005106721073389053, 0.0010829662205651402, 0.4988541007041931], [0.00020428041170816869, 0.0013236430240795016, 0.00011975619418080896, 0.00041582033736631274, 0.0002615793200675398, 0.45686838030815125, 0.0005080998525954783, 0.0119276512414217, 0.00266221072524786, 0.029969502240419388, 0.002810969017446041, 0.0005630281521007419, 0.0006398934056051075, 0.0017788164550438523, 0.0033858772367239, 0.001130270422436297, 0.4854302704334259], [0.00018050505605060607, 0.0009872876107692719, 0.0004520321381278336, 0.000913103052880615, 0.0007296973490156233, 0.4718988239765167, 0.0007101196679286659, 0.005070746410638094, 0.001649846788495779, 0.0024306955747306347, 0.00749341631308198, 0.0012738326331600547, 0.0013889273395761847, 0.0020290056709200144, 0.0021000870037823915, 0.001073796534910798, 0.4996180534362793], [0.00010364236368332058, 0.0006696943310089409, 0.0005262720515020192, 0.0008324662339873612, 0.0003317496448289603, 0.47452521324157715, 0.00025025196373462677, 0.0023668198846280575, 0.0004899307969026268, 0.0010621604742482305, 0.0017185671022161841, 0.0061918883584439754, 0.0025372058153152466, 0.0036098903510719538, 0.0015943129546940327, 0.0005386644043028355, 0.5026512742042542], [2.3827449695090763e-05, 7.7062715718057e-05, 0.00011772758443839848, 0.0004302464076317847, 0.0001238318654941395, 0.47330814599990845, 7.19920644769445e-05, 0.0008035214268602431, 9.536817378830165e-05, 0.0006240003276616335, 0.0006284611881710589, 0.00040919819730333984, 0.008987867273390293, 0.003975889645516872, 0.0014561357675120234, 0.0001904382515931502, 0.5086763501167297], [3.2573429052717984e-05, 0.00015081062156241387, 0.0002579500724095851, 0.0005736029706895351, 0.00025668187299743295, 0.47481876611709595, 0.00024967367062345147, 0.0018329932354390621, 0.0005420281086117029, 0.001137769897468388, 0.0012112583499401808, 0.0008076237863861024, 0.003104589646682143, 0.008029958233237267, 0.0021008788608014584, 0.0005516196833923459, 0.5043412446975708], [1.4905540410836693e-05, 0.00023560183763038367, 0.0001809952809708193, 0.0008254746207967401, 0.0003369830083101988, 0.4779052734375, 0.00031046682852320373, 0.0014163977466523647, 0.0002386925189057365, 0.00144189631100744, 0.001937472028657794, 0.0004958802601322532, 0.0009760229731909931, 0.002545690629631281, 0.003220750018954277, 0.0005432769539766014, 0.5073742866516113], [6.037436833139509e-05, 0.0017558152321726084, 0.0007506156107410789, 0.003970440477132797, 0.002083448227494955, 0.4741849899291992, 0.0014790925197303295, 0.0026372051797807217, 0.0005517172976396978, 0.0009257959900423884, 0.0009121636976487935, 0.0007856109295971692, 0.0009213027660734951, 0.0017654900439083576, 0.0020837662741541862, 0.003180862870067358, 0.5019513964653015], [2.0643801690312102e-05, 9.82285855570808e-05, 3.737792212632485e-05, 0.0002752720902208239, 9.1721405624412e-05, 0.48491597175598145, 6.63925675326027e-05, 0.000582174165174365, 8.665914356242865e-05, 0.00017564701556693763, 0.00010371118696639314, 6.686022243229672e-05, 0.00028917708550579846, 0.0006913027027621865, 0.0002612251846585423, 0.00010137704521184787, 0.5121362209320068]], [[0.0018339601811021566, 0.018899861723184586, 0.006327509880065918, 0.0030549264047294855, 0.007836793549358845, 0.4382213354110718, 0.007318783551454544, 0.009626693092286587, 0.004118545912206173, 0.008936850354075432, 0.0032182831782847643, 0.006049117539077997, 0.004488237202167511, 0.005975952837616205, 0.009573315270245075, 0.007789003662765026, 0.4567307233810425], [0.001839793287217617, 0.07718976587057114, 0.011018582619726658, 0.01772923767566681, 0.02854211814701557, 0.395879328250885, 0.00562889501452446, 0.007731173653155565, 0.0013533035526052117, 0.0038284442853182554, 0.0010392062831670046, 0.0020333353895694017, 0.0012126596411690116, 0.003717351472005248, 0.003883305937051773, 0.01958180032670498, 0.4177916944026947], [0.00032464959076605737, 0.07134220749139786, 0.013701485469937325, 0.00790735986083746, 0.009636010974645615, 0.4254339933395386, 0.0029686230700463057, 0.0029141143895685673, 0.00018846210150513798, 0.0010256440145894885, 0.00027128838701173663, 0.00041836852324195206, 0.00023680197773501277, 0.00040156676550395787, 0.0007329664076678455, 0.009931058622896671, 0.45256537199020386], [0.0011498689418658614, 0.16161924600601196, 0.04172910377383232, 0.017049090936779976, 0.031334031373262405, 0.34407147765159607, 0.0034864044282585382, 0.0050530512817204, 0.0005344949895516038, 0.0017725584330037236, 0.0007918180781416595, 0.00204259785823524, 0.0008282270864583552, 0.0032666123006492853, 0.002943789353594184, 0.016824055463075638, 0.36550360918045044], [0.0009809747571125627, 0.040267109870910645, 0.030209582298994064, 0.028653670102357864, 0.027789628133177757, 0.4121406376361847, 0.0036098421551287174, 0.0017336515011265874, 0.00023876001068856567, 0.0012581517221406102, 0.0006972408154979348, 0.0011482136324048042, 0.0007358265575021505, 0.0007574752671644092, 0.0012210983550176024, 0.011322882026433945, 0.4372352659702301], [0.0013597520301118493, 0.00954285729676485, 0.0016534345922991633, 0.0008982545114122331, 0.0036592327523976564, 0.46730542182922363, 0.002828672993928194, 0.005872098263353109, 0.0019199905218556523, 0.0013849162496626377, 0.0010586397256702185, 0.0025836359709501266, 0.0013681119307875633, 0.002964662853628397, 0.0014124319422990084, 0.004211630672216415, 0.4899761974811554], [0.00015918903227429837, 0.02260226011276245, 0.005875736474990845, 0.0044706640765070915, 0.011658765375614166, 0.4448092579841614, 0.008510611951351166, 0.012364176101982594, 0.0014342303620651364, 0.0036161027383059263, 0.0015862634172663093, 0.0014575888635590672, 0.0008206616039387882, 0.000831162033136934, 0.0023752881679683924, 0.005539566278457642, 0.47188833355903625], [0.0008056246442720294, 0.028160981833934784, 0.0016631475882604718, 0.001899220049381256, 0.010461832396686077, 0.4208311438560486, 0.010327089577913284, 0.027004098519682884, 0.0061482759192585945, 0.011502929963171482, 0.004147953353822231, 0.0043824203312397, 0.00269102375023067, 0.0049262819811701775, 0.005483252461999655, 0.012873382307589054, 0.4466913044452667], [0.00014445999113377184, 0.002497119829058647, 9.189960837829858e-05, 0.00027361465618014336, 0.001058557303622365, 0.46302273869514465, 0.0027463906444609165, 0.006464040372520685, 0.0035102509427815676, 0.012064929120242596, 0.0023332044947892427, 0.0012505988124758005, 0.0015906490152701735, 0.0019160531228408217, 0.0025615256745368242, 0.002456972375512123, 0.49601712822914124], [0.0001593280612723902, 0.00574876694008708, 0.00032340962206944823, 0.0004971754387952387, 0.001769631402567029, 0.409417062997818, 0.0070182280614972115, 0.02627316676080227, 0.027873406186699867, 0.03327886387705803, 0.006865511182695627, 0.008843569085001945, 0.006475812289863825, 0.009153918363153934, 0.010242159478366375, 0.007398639805614948, 0.43866145610809326], [0.0001727038761600852, 0.0065090893767774105, 0.00031787349143996835, 0.0008685848442837596, 0.0023312880657613277, 0.3691885471343994, 0.0090477941557765, 0.043056588619947433, 0.02191954478621483, 0.08135703206062317, 0.03169576823711395, 0.0062105548568069935, 0.0073615326546132565, 0.005216591060161591, 0.011494047939777374, 0.009101376868784428, 0.39415109157562256], [0.00034180781221948564, 0.008124655112624168, 0.0004696669930126518, 0.0007365670753642917, 0.0015455741668120027, 0.4219101667404175, 0.007146649062633514, 0.023441709578037262, 0.005146472714841366, 0.02107313647866249, 0.01731681637465954, 0.006210602819919586, 0.011091096326708794, 0.007172232493758202, 0.016036344692111015, 0.004520404152572155, 0.44771620631217957], [0.00023360089107882231, 0.0062441700138151646, 0.00021385792933870107, 0.00046248018043115735, 0.001791415037587285, 0.4194789230823517, 0.002995371352881193, 0.018301162868738174, 0.004014125559478998, 0.016451558098196983, 0.014146110974252224, 0.011124051176011562, 0.012728525325655937, 0.01839737594127655, 0.02144651487469673, 0.003996135201305151, 0.44797468185424805], [0.00044629626790992916, 0.005226652137935162, 0.00043571446440182626, 0.0007920687203295529, 0.0038318620063364506, 0.42809298634529114, 0.0038059058133512735, 0.014568745158612728, 0.0034463645424693823, 0.010627776384353638, 0.012489029206335545, 0.014225300401449203, 0.016430290415883064, 0.010717933997511864, 0.01225864328444004, 0.006047660950571299, 0.4565567374229431], [0.0006892525707371533, 0.008169866167008877, 0.0007257726392708719, 0.0008408005814999342, 0.0021317186765372753, 0.3385085463523865, 0.0033520511351525784, 0.04703269526362419, 0.0052854036912322044, 0.018284620717167854, 0.03078770823776722, 0.022470401600003242, 0.053926315158605576, 0.07454051077365875, 0.026035437360405922, 0.005900698248296976, 0.36131808161735535], [0.0009360439726151526, 0.03247488662600517, 0.006906818598508835, 0.0053560188971459866, 0.007829937152564526, 0.42234915494918823, 0.007101993542164564, 0.011296904645860195, 0.0012548679951578379, 0.009794887155294418, 0.004276325926184654, 0.006465433165431023, 0.008821283467113972, 0.0059324889443814754, 0.009843849577009678, 0.011243690736591816, 0.44811537861824036], [0.001375178573653102, 0.009692107327282429, 0.001689758151769638, 0.0009170257835648954, 0.003726306138560176, 0.4669685363769531, 0.002877413062378764, 0.00597055908292532, 0.0019500136841088533, 0.0014105982845649123, 0.0010758225107565522, 0.0026276763528585434, 0.001397759304381907, 0.003007943043485284, 0.0014420142397284508, 0.004301152192056179, 0.4895702004432678]], [[0.019248908385634422, 0.01480217557400465, 0.010205009020864964, 0.006696663796901703, 0.019485170021653175, 0.3743170201778412, 0.007149669341742992, 0.024365555495023727, 0.05163656175136566, 0.027699807658791542, 0.005293770227581263, 0.008998138830065727, 0.00480720866471529, 0.004600257147103548, 0.005969189573079348, 0.02984301559627056, 0.38488179445266724], [0.0007218239479698241, 0.04907909035682678, 0.05513348802924156, 0.03715800121426582, 0.3309376537799835, 0.17829632759094238, 0.02948438562452793, 0.006368480622768402, 0.00031842096359468997, 0.000551929755602032, 0.0004933672025799751, 0.0016821158351376653, 0.000582986744120717, 0.0016551206354051828, 0.016318047419190407, 0.10367254167795181, 0.18754616379737854], [0.00046789474436081946, 0.06111692264676094, 0.014793864451348782, 0.013795171864330769, 0.020956700667738914, 0.42010414600372314, 0.001077658380381763, 0.005513245239853859, 6.86904022586532e-05, 0.00012436990800779313, 0.0009751582983881235, 0.0007676906534470618, 0.000198492911295034, 0.0006717048236168921, 0.0037564397789537907, 0.013650902546942234, 0.4419609010219574], [0.0029989704489707947, 0.07449936866760254, 0.18271905183792114, 0.03370964527130127, 0.032184015959501266, 0.2994893789291382, 0.004527234937995672, 0.011256610043346882, 0.0007231579511426389, 0.0008858744986355305, 0.002933765994384885, 0.0056874980218708515, 0.0024203534703701735, 0.009112473577260971, 0.006138143595308065, 0.017204005271196365, 0.3135105073451996], [0.001048192149028182, 0.023281307891011238, 0.027808567509055138, 0.06843291968107224, 0.10155663639307022, 0.3434578478336334, 0.010328413918614388, 0.006703805644065142, 0.00020970322657376528, 0.000857948383782059, 0.001736100879497826, 0.0019191015744581819, 0.0012693332973867655, 0.00429074652493, 0.012820477597415447, 0.0349663607776165, 0.35931259393692017], [0.003874782705679536, 0.008100195787847042, 0.001210757065564394, 0.003948390018194914, 0.008430915884673595, 0.45574644207954407, 0.0024150002282112837, 0.006010955199599266, 0.0021049948409199715, 0.0020313826389610767, 0.0017984450096264482, 0.001442679320462048, 0.0015896618133410811, 0.006338395178318024, 0.005490052979439497, 0.012479618191719055, 0.4769872725009918], [0.00014520202239509672, 0.0031741198617964983, 0.0029172368813306093, 0.016918782144784927, 0.0885704830288887, 0.4043721556663513, 0.014288768172264099, 0.002237289445474744, 0.0004283092566765845, 0.0009445390896871686, 0.0011369100539013743, 0.0007017849129624665, 0.0004211982886772603, 0.0007090853177942336, 0.003090505488216877, 0.03380971401929855, 0.42613381147384644], [0.0006988083478063345, 0.02710699662566185, 0.0017969128675758839, 0.009211747907102108, 0.07952792942523956, 0.1728142946958542, 0.35926353931427, 0.05568072944879532, 0.001264282502233982, 0.0028024495113641024, 0.02755304053425789, 0.004943542648106813, 0.002883599139750004, 0.002797741675749421, 0.03510993719100952, 0.035934507846832275, 0.18060995638370514], [0.0004427331150509417, 0.0036390910390764475, 0.00035995853249914944, 0.0008677346049807966, 0.004260180052369833, 0.39635413885116577, 0.006640078965574503, 0.09696051478385925, 0.021311426535248756, 0.003703882684931159, 0.02011101320385933, 0.005933646112680435, 0.0009701956296339631, 0.0021453138906508684, 0.004606919828802347, 0.01217031478881836, 0.41952285170555115], [0.00035013610613532364, 0.0024520265869796276, 0.0007643235730938613, 0.0004951590672135353, 0.004411253612488508, 0.22101329267024994, 0.008761007338762283, 0.04247080534696579, 0.3952495753765106, 0.01668373867869377, 0.009528948925435543, 0.029447872191667557, 0.0029458235949277878, 0.007112286984920502, 0.0073491367511451244, 0.01911599189043045, 0.23184867203235626], [0.000361503625754267, 0.0006578044849447906, 0.00022495354642160237, 0.001086507341824472, 0.001844072830863297, 0.3678184449672699, 0.0035790433175861835, 0.015685543417930603, 0.07467830181121826, 0.07933691143989563, 0.02601599134504795, 0.014155295677483082, 0.008367893286049366, 0.005025434773415327, 0.005535174161195755, 0.008135083131492138, 0.3874920606613159], [0.002047212328761816, 0.009772772900760174, 0.001231967005878687, 0.003982083406299353, 0.008920907974243164, 0.31980374455451965, 0.011070160195231438, 0.06462246179580688, 0.0030965148471295834, 0.006445444654673338, 0.17471551895141602, 0.013853042386472225, 0.006051899865269661, 0.005970354191958904, 0.017997466027736664, 0.015285570174455643, 0.335132896900177], [0.00042326340917497873, 0.002009144052863121, 0.0006461897864937782, 0.0008182369056157768, 0.0028818068094551563, 0.3660890460014343, 0.002387285465374589, 0.009366865269839764, 0.004569265991449356, 0.006725737825036049, 0.029359353706240654, 0.12804019451141357, 0.027219634503126144, 0.01780633069574833, 0.007843540981411934, 0.008002432063221931, 0.38581177592277527], [0.0016445685178041458, 0.005504337605088949, 0.0014831050066277385, 0.001939463196322322, 0.008610568940639496, 0.384212851524353, 0.007940074428915977, 0.016638705506920815, 0.002344338223338127, 0.007571537978947163, 0.04121311381459236, 0.03433937951922417, 0.04377005994319916, 0.009835240431129932, 0.014829084277153015, 0.0159776471555233, 0.40214601159095764], [0.0010739865247160196, 0.0012005146127194166, 0.0007384679047390819, 0.001650925143621862, 0.0025752298533916473, 0.3946628272533417, 0.0026718652807176113, 0.006012276280671358, 0.0018381963018327951, 0.007710272911936045, 0.010943545028567314, 0.01331268809735775, 0.039312943816185, 0.07470961660146713, 0.018229767680168152, 0.007762956898659468, 0.4155938923358917], [0.0014196498086676002, 0.012338312342762947, 0.008271031081676483, 0.021274400874972343, 0.03055623732507229, 0.34258705377578735, 0.006988208275288343, 0.01682557724416256, 0.0009618202457204461, 0.004438998643308878, 0.008029961958527565, 0.007368366699665785, 0.009646422229707241, 0.012575509957969189, 0.09339086711406708, 0.06518536061048508, 0.35814225673675537], [0.003913010936230421, 0.008255818858742714, 0.0012411761563271284, 0.004018742591142654, 0.008581443689763546, 0.45516350865364075, 0.0024533921387046576, 0.006125037092715502, 0.0021402284037321806, 0.002061497652903199, 0.0018221937352791429, 0.001478428253903985, 0.001625432283617556, 0.006434766110032797, 0.005631700623780489, 0.01271708682179451, 0.4763365089893341]], [[0.02731984294950962, 0.005502458196133375, 0.05181949958205223, 0.022971315309405327, 0.04119244962930679, 0.3331863284111023, 0.010448422282934189, 0.01076094713062048, 0.006942944601178169, 0.02060864306986332, 0.02127819135785103, 0.02114257961511612, 0.018061162903904915, 0.020212439820170403, 0.01963547244668007, 0.023462504148483276, 0.3454548418521881], [0.0026080720126628876, 0.0225790087133646, 0.2070750892162323, 0.055886417627334595, 0.05099991708993912, 0.2549954354763031, 0.01573345810174942, 0.04035501182079315, 0.008334148675203323, 0.014549321494996548, 0.004905801732093096, 0.009907904081046581, 0.004519863519817591, 0.005193368531763554, 0.008212282322347164, 0.027507368475198746, 0.26663750410079956], [0.0010978949721902609, 0.005529374815523624, 0.009095960296690464, 0.1322556734085083, 0.03540791571140289, 0.38977864384651184, 0.0030418033711612225, 0.0006083052139729261, 4.4661857828032225e-05, 0.0004651964409276843, 0.00017785652016755193, 0.0004218104004394263, 0.0008500615367665887, 0.0006601897766813636, 0.0024769892916083336, 0.005139749031513929, 0.41294795274734497], [0.0016806734493002295, 0.015900280326604843, 0.011433690786361694, 0.016939479857683182, 0.1274772584438324, 0.37521106004714966, 0.007494168356060982, 0.0019585087429732084, 0.0002208391233580187, 0.0031611728481948376, 0.0011759180342778563, 0.00047322522732429206, 0.0003401257563382387, 0.00047583438572473824, 0.0019504389492794871, 0.03675047680735588, 0.397356778383255], [0.002864298177883029, 0.05274946987628937, 0.02587033435702324, 0.020457634702324867, 0.12923936545848846, 0.33194708824157715, 0.0255756638944149, 0.01225193589925766, 0.0017418452771380544, 0.00423798942938447, 0.0018057306297123432, 0.0031111284624785185, 0.0008640255546197295, 0.001754714990966022, 0.002786007709801197, 0.03462224453687668, 0.34812048077583313], [0.0021298264618963003, 0.0037204199470579624, 0.0036203714553266764, 0.0036823025438934565, 0.007283227983862162, 0.45613759756088257, 0.0032749376259744167, 0.006382207851856947, 0.0018130589742213488, 0.00484040891751647, 0.0036669655237346888, 0.00335898669436574, 0.0040728310123085976, 0.005567759741097689, 0.004574128892272711, 0.010519953444600105, 0.47535502910614014], [0.0010760410223156214, 0.021419668570160866, 0.008907132782042027, 0.0025153865572065115, 0.007161665707826614, 0.3680490553379059, 0.030073052272200584, 0.09188690781593323, 0.02580895833671093, 0.009577684104442596, 0.006179072428494692, 0.013502604328095913, 0.0041983784176409245, 0.004282137379050255, 0.002443688688799739, 0.017152203246951103, 0.3857663571834564], [0.001439534011296928, 0.004695995710790157, 0.00950940977782011, 0.0046338289976119995, 0.007427570875734091, 0.3621928095817566, 0.0047453162260353565, 0.04232824593782425, 0.032217882573604584, 0.045853059738874435, 0.015189668163657188, 0.02799750678241253, 0.016856832429766655, 0.011952201835811138, 0.015956509858369827, 0.019293297082185745, 0.3777102828025818], [0.0006983808125369251, 0.0008986812317743897, 9.616684837965295e-05, 0.0004067900590598583, 0.0005985717289149761, 0.2593602240085602, 0.0010505199898034334, 0.0022273173090070486, 0.00846103671938181, 0.40988442301750183, 0.03037100099027157, 0.0012708238791674376, 0.006333175115287304, 0.0009375499794259667, 0.0019266321323812008, 0.0012072273530066013, 0.27427148818969727], [0.0005660933675244451, 0.0007939239731058478, 0.00048513920046389103, 0.0014131780480965972, 0.0013935633469372988, 0.33178049325942993, 0.0031172751914709806, 0.006593754515051842, 0.003134919563308358, 0.06531379371881485, 0.1489846110343933, 0.0062284586019814014, 0.030378557741642, 0.013174088671803474, 0.025549771264195442, 0.007648133672773838, 0.35344433784484863], [0.0018088772194460034, 0.0014632405946031213, 0.0014724171487614512, 0.0051009273156523705, 0.004812456201761961, 0.36434683203697205, 0.00274017290212214, 0.014120204374194145, 0.003970498219132423, 0.02245422825217247, 0.05114912614226341, 0.024115005508065224, 0.032562680542469025, 0.033275581896305084, 0.034738726913928986, 0.017424844205379486, 0.3844441771507263], [0.001338712521828711, 0.0010153752518817782, 0.0012654282618314028, 0.003476791549474001, 0.0026113262865692377, 0.31004607677459717, 0.0035315549466758966, 0.0031078022439032793, 0.0009672759915702045, 0.014373080804944038, 0.008893021382391453, 0.01656406931579113, 0.25874221324920654, 0.02422620914876461, 0.018249904736876488, 0.004037749487906694, 0.3275534212589264], [0.00019327952759340405, 0.0005703889182768762, 0.0002612424723338336, 0.0013356697745621204, 0.0012309777084738016, 0.38133424520492554, 0.0011649634689092636, 0.0012688032584264874, 0.00029391361749731004, 0.002987302141264081, 0.005029281601309776, 0.004870954435318708, 0.047489460557699203, 0.04635341465473175, 0.09251371771097183, 0.008738788776099682, 0.40436357259750366], [0.0011898024240508676, 0.0015511150704696774, 0.001814279705286026, 0.0067792292684316635, 0.004282780457288027, 0.4103781580924988, 0.0017674955306574702, 0.0045425500720739365, 0.0011520858388394117, 0.008311009034514427, 0.0034799736458808184, 0.003045078134164214, 0.012066999450325966, 0.010301219299435616, 0.08125898241996765, 0.01455690898001194, 0.43352240324020386], [0.0012171114794909954, 0.007911792024970055, 0.0025075734592974186, 0.004724342375993729, 0.015099027194082737, 0.3963594436645508, 0.007496222387999296, 0.009749451652169228, 0.004042894579470158, 0.02008434198796749, 0.018467307090759277, 0.005717242136597633, 0.006148646119982004, 0.00564322154968977, 0.0240694098174572, 0.05258079990744591, 0.41818130016326904], [0.0038679966237396, 0.03355589881539345, 0.013527938164770603, 0.01721641607582569, 0.042482685297727585, 0.3891935348510742, 0.015766046941280365, 0.015042915940284729, 0.002578245010226965, 0.005366945639252663, 0.003416468622162938, 0.004180568736046553, 0.002235224237665534, 0.003050931030884385, 0.004814848303794861, 0.03726924583315849, 0.4064340591430664], [0.002172961365431547, 0.003794673830270767, 0.003692486323416233, 0.003735742997378111, 0.0073716663755476475, 0.4556419551372528, 0.003324884455651045, 0.006479989737272263, 0.001846130471676588, 0.0049010347574949265, 0.0037075357977300882, 0.003430887358263135, 0.004116034600883722, 0.0056518856436014175, 0.0046536121517419815, 0.010657905600965023, 0.4748205840587616]], [[0.0007983528776094317, 0.000356365111656487, 0.0005223937914706767, 0.0001823029015213251, 4.32020278822165e-05, 0.47928640246391296, 0.0009928415529429913, 0.001873213448561728, 0.00020997550745960325, 0.002154764486476779, 0.0003951006510760635, 0.0008316453895531595, 0.0006713386974297464, 0.0010820096358656883, 0.0005515326047316194, 0.0013627585722133517, 0.5086857676506042], [6.0973354266025126e-05, 0.032982923090457916, 0.003912065178155899, 0.0017772949067875743, 0.0010652034543454647, 0.3998650908470154, 0.08020780235528946, 0.03019523061811924, 0.0012337066000327468, 0.004056375008076429, 0.006516092456877232, 0.005187094211578369, 0.002419442171230912, 0.0016636663349345326, 0.0017607565969228745, 0.004879860207438469, 0.4222164452075958], [4.426383748068474e-05, 0.0004182596458122134, 0.016022939234972, 0.0027003984432667494, 0.000923154060728848, 0.46875911951065063, 0.0008363322704099119, 0.0012489988002926111, 0.0004493493470363319, 0.0009848783956840634, 0.0006501986063085496, 0.000895935925655067, 0.001623976626433432, 0.0008535019005648792, 0.0008282876806333661, 0.002058046404272318, 0.5007023215293884], [4.3313473724992946e-05, 0.000825983879622072, 0.003572487970814109, 0.037941958755254745, 0.004964129533618689, 0.4451315402984619, 0.004831845406442881, 0.0029100265819579363, 0.0006735857459716499, 0.006243755109608173, 0.0021111597307026386, 0.0012331173056736588, 0.002704038517549634, 0.0017147255130112171, 0.00791121181100607, 0.005586262326687574, 0.47160083055496216], [0.000130382293718867, 0.005794697906821966, 0.011438464745879173, 0.09044979512691498, 0.07253266125917435, 0.2820877134799957, 0.02549494057893753, 0.0297164898365736, 0.0057780989445745945, 0.039472274482250214, 0.015144214034080505, 0.005058072041720152, 0.008627925999462605, 0.00884686503559351, 0.023175489157438278, 0.0801512748003006, 0.29610052704811096], [1.0833701708179433e-05, 4.8527130275033414e-05, 0.00020229205256327987, 6.415693496819586e-05, 1.0133255273103714e-05, 0.47990694642066956, 0.00034408789360895753, 0.00036576599813997746, 3.1218638468999416e-05, 0.00014661795285064727, 6.53968018013984e-05, 0.00012746360152959824, 0.0003474682162050158, 0.0001653358485782519, 0.00023541244445368648, 0.0009599818149581552, 0.5169683694839478], [4.01069555664435e-05, 0.0016491853166371584, 0.0006844897288829088, 0.0032187821343541145, 0.0009189731208607554, 0.45648255944252014, 0.027952292934060097, 0.0032915391493588686, 0.0004854175203945488, 0.002315032295882702, 0.0018217868637293577, 0.0014080650871619582, 0.0017474923515692353, 0.0013672042405232787, 0.002427788218483329, 0.003640676848590374, 0.4905485510826111], [4.8055051593109965e-05, 0.0011438234942033887, 0.0009089639643207192, 0.0009651912841945887, 0.0012082542525604367, 0.4712352454662323, 0.0030777358915656805, 0.010147563181817532, 0.0005843393737450242, 0.0011126280296593904, 0.0025992158334702253, 0.0007314060349017382, 0.0008692850824445486, 0.001376997446641326, 0.002105594612658024, 0.001299712690524757, 0.5005859732627869], [4.535798143479042e-05, 0.00013328185013961047, 0.0007431908161379397, 0.0006322271656244993, 0.0003879281575791538, 0.4770902097225189, 0.00022101224749349058, 0.0007556045311503112, 0.0026776986196637154, 0.001895527821034193, 0.0002872054174076766, 0.0006425122264772654, 0.0004274571838323027, 0.0010208102175965905, 0.0005448093870654702, 0.0015869848430156708, 0.5109081864356995], [1.365685420751106e-05, 0.0002009750169236213, 0.00015987544611562043, 0.0003979032044298947, 0.00022418062144424766, 0.46851497888565063, 0.0005066486774012446, 0.0008620920707471669, 0.00044615159276872873, 0.016756579279899597, 0.0004335224803071469, 0.000415636197431013, 0.0011124719167128205, 0.0005677359877154231, 0.0008834875770844519, 0.0012040769215673208, 0.5073000192642212], [6.925030902493745e-05, 0.0004419378819875419, 0.0005144735332578421, 0.0012222217628732324, 0.002257048385217786, 0.46669891476631165, 0.0010002809576690197, 0.003769851289689541, 0.000654259929433465, 0.0015041056321933866, 0.012402045540511608, 0.0016921180067583919, 0.0015097908908501267, 0.0016984532121568918, 0.002505128039047122, 0.004129977896809578, 0.4979301393032074], [3.679060682770796e-05, 0.0001936942571774125, 0.00085845758439973, 0.0007010403205640614, 0.0003070622915402055, 0.47633299231529236, 0.0006133341230452061, 0.0006443115998990834, 0.000304496381431818, 0.000524620758369565, 0.0007244448061101139, 0.003975110128521919, 0.0011152157094329596, 0.0007399307796731591, 0.0008718860917724669, 0.0013425847282633185, 0.5107139945030212], [1.984150003409013e-05, 0.00010288850171491504, 0.0007408176898024976, 0.0007402117480523884, 0.00023418698401656002, 0.47099775075912476, 0.0007672572392039001, 0.001009681960567832, 0.00012816603702958673, 0.002417496172711253, 0.0007763921748846769, 0.0006887127528898418, 0.012515184469521046, 0.0018100365996360779, 0.001671629142947495, 0.0005776858306489885, 0.5048020482063293], [1.2977436199435033e-05, 0.00015046259795781225, 0.0006878940621390939, 0.0004532225721050054, 0.00018004511366598308, 0.47681739926338196, 0.0006876307306811213, 0.0008401342784054577, 0.00013688896433450282, 0.0004656724340748042, 0.0006240070797502995, 0.0009072290849871933, 0.001629907637834549, 0.0016444138018414378, 0.0009086161735467613, 0.001215155702084303, 0.512638509273529], [3.1014616979518905e-05, 0.0004441671189852059, 0.0005490462644957006, 0.003014432964846492, 0.001124926027841866, 0.4706578552722931, 0.0015102069592103362, 0.0011513590579852462, 0.00011033778719138354, 0.001064024050720036, 0.0008238152367994189, 0.0005799526115879416, 0.0012049977667629719, 0.0010225302539765835, 0.007858861237764359, 0.0051810247823596, 0.5036715269088745], [2.7040703571401536e-05, 0.0007751703960821033, 0.0006206338875927031, 0.0055013359524309635, 0.00514128478243947, 0.46254557371139526, 0.002053977455943823, 0.0015373857459053397, 0.00027553990366868675, 0.001145369722507894, 0.000885430199559778, 0.0005982904694974422, 0.0003940611786674708, 0.0006193484296090901, 0.004428650718182325, 0.015649542212486267, 0.4978012442588806], [1.0843044037756044e-05, 4.8994039389071986e-05, 0.0002011370233958587, 6.427413609344512e-05, 1.03017655419535e-05, 0.4798944890499115, 0.000346240121871233, 0.00036610790994018316, 3.129076139885001e-05, 0.00014638334687333554, 6.584631046280265e-05, 0.0001273469242732972, 0.0003473714168649167, 0.00016532791778445244, 0.00023470491578336805, 0.000960293342359364, 0.5169790983200073]]], [[[0.0037361152935773134, 0.01700936071574688, 0.007876680232584476, 0.005702730733901262, 0.0011862647952511907, 0.44345661997795105, 0.0050741820596158504, 0.003932533785700798, 0.0019157642964273691, 0.0012742180842906237, 0.0028318658005446196, 0.00851325411349535, 0.009575949981808662, 0.024156849831342697, 0.002584281377494335, 0.004417515359818935, 0.4567559063434601], [0.0006350124021992087, 0.09995114058256149, 0.015023126266896725, 0.037462811917066574, 0.009762896224856377, 0.27373358607292175, 0.05011264979839325, 0.0658363401889801, 0.0043493472039699554, 0.01898050867021084, 0.006971593480557203, 0.008153524249792099, 0.009999854490160942, 0.04603550583124161, 0.022301562130451202, 0.049213457852602005, 0.2814771234989166], [0.00040034964331425726, 0.021722638979554176, 0.005781750660389662, 0.011395109817385674, 0.009859727695584297, 0.43900132179260254, 0.006561574060469866, 0.00741583714261651, 0.0011706510558724403, 0.002449655905365944, 0.0017579529667273164, 0.0032607598695904016, 0.0047642323188483715, 0.006174800917506218, 0.0052336882799863815, 0.018527263775467873, 0.45452257990837097], [0.00022065489611122757, 0.015276175923645496, 0.009483518078923225, 0.09278103709220886, 0.01966066285967827, 0.32768332958221436, 0.025778843089938164, 0.009689338505268097, 0.0011246999492868781, 0.0052958894520998, 0.004418804310262203, 0.002766176126897335, 0.007004080340266228, 0.020755840465426445, 0.03968840837478638, 0.07765504717826843, 0.3407174348831177], [0.0019052260322496295, 0.04412013664841652, 0.01468773651868105, 0.08015180379152298, 0.07938508689403534, 0.27913418412208557, 0.03126426786184311, 0.01603589951992035, 0.0010815705172717571, 0.00721443397924304, 0.005617152433842421, 0.002927987603470683, 0.0056655253283679485, 0.029202530160546303, 0.023360414430499077, 0.08955748379230499, 0.2886885106563568], [0.05809209123253822, 0.09456519037485123, 0.029149843379855156, 0.048172902315855026, 0.008772948756814003, 0.060624778270721436, 0.03861435875296593, 0.09157029539346695, 0.029788702726364136, 0.03723738715052605, 0.018603602424263954, 0.024638526141643524, 0.04540807381272316, 0.24621936678886414, 0.0671720877289772, 0.04058307409286499, 0.06078677996993065], [0.00030884184525348246, 0.022208010777831078, 0.006097600795328617, 0.017670633271336555, 0.012344826012849808, 0.41556814312934875, 0.01943099871277809, 0.008085972629487514, 0.0012058877618983388, 0.0047271279618144035, 0.0022830606903880835, 0.003713407786563039, 0.005320228170603514, 0.01177260186523199, 0.009682953357696533, 0.027644136920571327, 0.43193545937538147], [0.00043524763896130025, 0.017406249418854713, 0.002125943312421441, 0.005650099366903305, 0.004978288896381855, 0.44895365834236145, 0.008016679435968399, 0.011705623008310795, 0.0013021565973758698, 0.004315070807933807, 0.0029066945426166058, 0.002079053083434701, 0.0031926881056278944, 0.009500267915427685, 0.003467460162937641, 0.008363364264369011, 0.46560144424438477], [7.074521272443235e-05, 0.00309582008048892, 0.0006553804269060493, 0.0004817094886675477, 0.0006076085846871138, 0.4830261170864105, 0.0004338783328421414, 0.001039208727888763, 0.0010264290031045675, 0.0012357692467048764, 0.0006764285499230027, 0.0011358953779563308, 0.0016245637089014053, 0.000568204210139811, 0.000284625100903213, 0.0011483350535854697, 0.5028893351554871], [3.824270606855862e-05, 0.0046024443581700325, 0.0005775767494924366, 0.0013509331038221717, 0.0005937083624303341, 0.47878485918045044, 0.0008094973163679242, 0.0012548003578558564, 0.0005185437039472163, 0.0014749804977327585, 0.0007131624734029174, 0.0009253411553800106, 0.002727096201851964, 0.0016537305200472474, 0.0012648588744923472, 0.0019929592963308096, 0.500717282295227], [9.545609646011144e-05, 0.013611036352813244, 0.0023778912145644426, 0.0060047185979783535, 0.004113687202334404, 0.4529918134212494, 0.003559765173122287, 0.004648369271308184, 0.0010762352030724287, 0.003309247549623251, 0.0034347602631896734, 0.003365211421623826, 0.004937705583870411, 0.007138233631849289, 0.00727927265688777, 0.009450619108974934, 0.47260600328445435], [0.0005699590547010303, 0.010713743045926094, 0.0026457272469997406, 0.005362655967473984, 0.003962715622037649, 0.4604926109313965, 0.002834063721820712, 0.004310342948883772, 0.00172241625841707, 0.0028781448490917683, 0.0016146799316629767, 0.0038718758150935173, 0.006643167231231928, 0.005694136023521423, 0.0036304998211562634, 0.006014565005898476, 0.4770386815071106], [0.00015387735038530082, 0.01782088913023472, 0.002457078779116273, 0.01052196603268385, 0.0009502198081463575, 0.4384726583957672, 0.002319004852324724, 0.006634366232901812, 0.00157739978749305, 0.00592459924519062, 0.0015053176321089268, 0.00441459845751524, 0.01754942163825035, 0.015461238101124763, 0.009185311384499073, 0.009573200717568398, 0.4554789662361145], [0.00016712056822143495, 0.012036770582199097, 0.00664690975099802, 0.01548302173614502, 0.0056618875823915005, 0.43381425738334656, 0.006001810543239117, 0.009928212501108646, 0.0024652001447975636, 0.00990559533238411, 0.004410272929817438, 0.005042301025241613, 0.016552863642573357, 0.006170425098389387, 0.0052628060802817345, 0.011319567449390888, 0.44913092255592346], [9.808626055018976e-05, 0.004942488390952349, 0.003183037741109729, 0.013448312878608704, 0.004593662917613983, 0.4528280198574066, 0.006050358526408672, 0.005436488427221775, 0.000913218769710511, 0.0032137224916368723, 0.0026843745727092028, 0.002596256323158741, 0.007482069544494152, 0.007090781349688768, 0.006335843354463577, 0.007879686541855335, 0.47122353315353394], [0.00035433340235613286, 0.02441437542438507, 0.004335001576691866, 0.02261817827820778, 0.03344037011265755, 0.4183763265609741, 0.012738159857690334, 0.005290136206895113, 0.000835438899230212, 0.0025035373400896788, 0.001990115037187934, 0.0019748895429074764, 0.0048286933451890945, 0.011768222786486149, 0.004616172052919865, 0.015138398855924606, 0.43477770686149597], [0.05823949724435806, 0.09503357857465744, 0.02917914092540741, 0.04857776686549187, 0.008869216777384281, 0.05908707529306412, 0.03883536159992218, 0.09200332313776016, 0.029831456020474434, 0.03753231465816498, 0.01869335025548935, 0.02456950768828392, 0.04532637074589729, 0.24649745225906372, 0.06760797649621964, 0.04087867587804794, 0.05923795700073242]], [[0.0010772671084851027, 0.01669488102197647, 0.008249938488006592, 0.011210673488676548, 3.4001594030996785e-05, 0.41457757353782654, 0.012223928235471249, 0.022316310554742813, 0.003798390505835414, 0.006217293441295624, 0.00981068518012762, 0.0048720040358603, 0.00629927683621645, 0.024431290104985237, 0.014056464657187462, 0.018624471500515938, 0.42550545930862427], [0.006530422251671553, 0.024365711957216263, 0.0306050144135952, 0.02197108045220375, 0.018984714522957802, 0.3519043028354645, 0.016748711466789246, 0.012747873552143574, 0.019943147897720337, 0.009870086796581745, 0.028788525611162186, 0.01771935261785984, 0.013153779320418835, 0.01598667912185192, 0.010840286500751972, 0.035127945244312286, 0.36471235752105713], [0.01397964358329773, 0.052659258246421814, 0.04804394766688347, 0.0703112781047821, 0.10798442363739014, 0.1543222814798355, 0.03943628817796707, 0.03732341527938843, 0.035866763442754745, 0.08868619799613953, 0.022472353652119637, 0.02383546158671379, 0.04159821569919586, 0.05725020542740822, 0.025516947731375694, 0.02245304547250271, 0.1582602560520172], [0.002406195504590869, 0.031530022621154785, 0.028009552508592606, 0.03910616412758827, 0.002178825670853257, 0.318745881319046, 0.020569851621985435, 0.02427111566066742, 0.0290872510522604, 0.03505324572324753, 0.026150135323405266, 0.018098443746566772, 0.03188756853342056, 0.033553190529346466, 0.008969186805188656, 0.019280098378658295, 0.3311033248901367], [0.011133047752082348, 0.09537576138973236, 0.0840563103556633, 0.05476289242506027, 0.024063117802143097, 0.15166622400283813, 0.028646981343626976, 0.02862233854830265, 0.05134938284754753, 0.0426291860640049, 0.053734999150037766, 0.04439987242221832, 0.07635077834129333, 0.06799609214067459, 0.016082366928458214, 0.014353807084262371, 0.15477675199508667], [0.01761511340737343, 0.04402463510632515, 0.05883042514324188, 0.036506298929452896, 0.009033780544996262, 0.1741763800382614, 0.042417120188474655, 0.06411512196063995, 0.03807149454951286, 0.047643471509218216, 0.03343712538480759, 0.04279479756951332, 0.02843291684985161, 0.050135448575019836, 0.06852762401103973, 0.06785888224840164, 0.17637933790683746], [0.004449722357094288, 0.02601415477693081, 0.03594636544585228, 0.01938536949455738, 0.005135484971106052, 0.2993934154510498, 0.04385123774409294, 0.04624427855014801, 0.01994551531970501, 0.02778843231499195, 0.034237757325172424, 0.026947852224111557, 0.021529126912355423, 0.027628548443317413, 0.015443731099367142, 0.035898368805646896, 0.3101605772972107], [0.008213997818529606, 0.040374577045440674, 0.03903034329414368, 0.037198506295681, 0.03375918045639992, 0.2272064983844757, 0.02193666808307171, 0.03734801337122917, 0.026520119979977608, 0.0571121908724308, 0.049358416348695755, 0.028050798922777176, 0.025998661294579506, 0.037094999104738235, 0.024364084005355835, 0.07095971703529358, 0.23547318577766418], [0.007839784026145935, 0.026667965576052666, 0.023749832063913345, 0.03826000913977623, 0.007708088494837284, 0.26328083872795105, 0.023648740723729134, 0.0389801524579525, 0.03073742240667343, 0.05378307029604912, 0.04108863323926926, 0.026220737025141716, 0.03392736613750458, 0.03286682069301605, 0.02996300533413887, 0.04824443906545639, 0.273033082485199], [0.00580038595944643, 0.025412261486053467, 0.024274766445159912, 0.04501662775874138, 0.0023130413610488176, 0.27489349246025085, 0.017487766221165657, 0.03202655911445618, 0.019111907109618187, 0.06201091408729553, 0.029391610994935036, 0.023167351260781288, 0.02252206951379776, 0.04179617390036583, 0.042516086250543594, 0.047132618725299835, 0.28512638807296753], [0.016327526420354843, 0.023455386981368065, 0.034935113042593, 0.03314615786075592, 0.013800734654068947, 0.23744431138038635, 0.01963476836681366, 0.04005449265241623, 0.03230461850762367, 0.06999702751636505, 0.062186382710933685, 0.03173130750656128, 0.04564414545893669, 0.034566137939691544, 0.02711872197687626, 0.03252188861370087, 0.2451312243938446], [0.021909216418862343, 0.03304796293377876, 0.04482084885239601, 0.044173963367938995, 0.050006087869405746, 0.17008651793003082, 0.02669200487434864, 0.02817676216363907, 0.04551292583346367, 0.10594233870506287, 0.03907107189297676, 0.04492008686065674, 0.05312061309814453, 0.04713945463299751, 0.03370761126279831, 0.03645859658718109, 0.1752139925956726], [0.009654641151428223, 0.014237807132303715, 0.029728353023529053, 0.02212313376367092, 0.007508967537432909, 0.2975044846534729, 0.023212162777781487, 0.030939213931560516, 0.027525564655661583, 0.051194820553064346, 0.03526412323117256, 0.02473287656903267, 0.02660767361521721, 0.029749197885394096, 0.02893664874136448, 0.03251513093709946, 0.3085651695728302], [0.003919222392141819, 0.020113900303840637, 0.03657948970794678, 0.037833116948604584, 0.011898510158061981, 0.23964662849903107, 0.017996320500969887, 0.02878177911043167, 0.028328927233815193, 0.04547226428985596, 0.03664310276508331, 0.03678952157497406, 0.041370488703250885, 0.05158938467502594, 0.07456707954406738, 0.0407109297811985, 0.24775931239128113], [0.0024526275228708982, 0.022924859076738358, 0.0444306842982769, 0.05406060442328453, 0.005107522010803223, 0.19269002974033356, 0.022685376927256584, 0.02995295077562332, 0.032054927200078964, 0.10942681133747101, 0.03345783054828644, 0.033632759004831314, 0.0498170368373394, 0.06178045645356178, 0.06828732043504715, 0.037637386471033096, 0.19960090517997742], [0.0063768536783754826, 0.060852184891700745, 0.04043475538492203, 0.0619373545050621, 0.025701774284243584, 0.20907235145568848, 0.032517772167921066, 0.04542966187000275, 0.02407226152718067, 0.06419378519058228, 0.027453510090708733, 0.030577706173062325, 0.03655925765633583, 0.037364888936281204, 0.03068498522043228, 0.05066245049238205, 0.21610842645168304], [0.017998892813920975, 0.04478790611028671, 0.059329308569431305, 0.03707195818424225, 0.00937819853425026, 0.17061421275138855, 0.04275156930088997, 0.0647507756948471, 0.038417547941207886, 0.048440832644701004, 0.03366370499134064, 0.04323389381170273, 0.02885165624320507, 0.05072980746626854, 0.06926645338535309, 0.06798111647367477, 0.17273223400115967]], [[0.0016059820773079991, 0.0062650577165186405, 0.009824243374168873, 0.0012028933269903064, 0.00011167612683493644, 0.44478461146354675, 0.0012391199124976993, 0.012525873258709908, 0.003960846923291683, 0.002028631279245019, 0.0013618131633847952, 0.009177119471132755, 0.01035177893936634, 0.019623158499598503, 0.004658335819840431, 0.009603741578757763, 0.4616751968860626], [0.007632837165147066, 0.06466235220432281, 0.14424213767051697, 0.04248343035578728, 0.07445677369832993, 0.20616038143634796, 0.012696710415184498, 0.10499189049005508, 0.011526700109243393, 0.010891451500356197, 0.011365270242094994, 0.01835581846535206, 0.022702017799019814, 0.016782747581601143, 0.017163634300231934, 0.02220027521252632, 0.21168561279773712], [0.001713970210403204, 0.011232347227633, 0.06469910591840744, 0.0455097034573555, 0.05861491337418556, 0.33007362484931946, 0.010071472264826298, 0.01614084094762802, 0.003147970186546445, 0.017353089526295662, 0.004442710429430008, 0.016370059922337532, 0.02316676266491413, 0.008580785244703293, 0.014182817190885544, 0.034431543201208115, 0.34026819467544556], [0.0008223493350669742, 0.006402633618563414, 0.030226081609725952, 0.03122517094016075, 0.04065188765525818, 0.3820211589336395, 0.0117086973041296, 0.013284129090607166, 0.0015986638609319925, 0.007413400337100029, 0.011549415066838264, 0.004916858859360218, 0.008695324882864952, 0.008562606759369373, 0.018193894997239113, 0.026900971308350563, 0.3958267271518707], [0.004587713163346052, 0.026676667854189873, 0.03457869589328766, 0.04352138563990593, 0.055424947291612625, 0.34766772389411926, 0.023461977019906044, 0.014279202558100224, 0.0017124461010098457, 0.004640220198780298, 0.005164254456758499, 0.009197420440614223, 0.015997450798749924, 0.012588424608111382, 0.013352075591683388, 0.029024170711636543, 0.3581252098083496], [0.038645435124635696, 0.035212721675634384, 0.12283337861299515, 0.12026069313287735, 0.025984972715377808, 0.07833023369312286, 0.026550373062491417, 0.0525798499584198, 0.01214374415576458, 0.04356779530644417, 0.05800160393118858, 0.022445963695645332, 0.07344275712966919, 0.06682708859443665, 0.10996878147125244, 0.03462011739611626, 0.07858456671237946], [0.0011281793704256415, 0.06088065728545189, 0.037156376987695694, 0.01252981647849083, 0.01402696967124939, 0.28365445137023926, 0.043788518756628036, 0.13738234341144562, 0.009817116893827915, 0.008430412039160728, 0.006958404555916786, 0.020726677030324936, 0.011650516651570797, 0.030079232528805733, 0.005573545582592487, 0.02270422875881195, 0.29351264238357544], [0.006121120881289244, 0.015155796892940998, 0.025260422378778458, 0.01308528333902359, 0.10161728411912918, 0.28017592430114746, 0.005185714922845364, 0.06781154870986938, 0.02650034800171852, 0.049755025655031204, 0.021389499306678772, 0.02563478983938694, 0.01334224734455347, 0.02266642265021801, 0.019533837214112282, 0.017037495970726013, 0.2897273600101471], [0.0021685699466615915, 0.0009488306823186576, 0.0041282945312559605, 0.0036110342480242252, 0.009944138117134571, 0.10473022609949112, 0.0026324065402150154, 0.0035416262689977884, 0.047741085290908813, 0.6454941034317017, 0.04567597433924675, 0.008372994139790535, 0.0037317986134439707, 0.0021604576613754034, 0.002834536135196686, 0.0037876733113080263, 0.10849615186452866], [0.0009414762025699019, 0.002415847033262253, 0.006631316617131233, 0.004080631770193577, 0.004405434709042311, 0.2852615416049957, 0.0027257369365543127, 0.02096295729279518, 0.01243389118462801, 0.19806721806526184, 0.10926717519760132, 0.007888289168477058, 0.008577450178563595, 0.015182847157120705, 0.0158391036093235, 0.008180652745068073, 0.29713839292526245], [0.002071577589958906, 0.004844940733164549, 0.013192503713071346, 0.018179140985012054, 0.04287876933813095, 0.3140469491481781, 0.0053712292574346066, 0.023486612364649773, 0.010556116700172424, 0.05289578065276146, 0.08771578222513199, 0.02140633575618267, 0.013348089531064034, 0.018242621794342995, 0.02728862687945366, 0.01891196146607399, 0.32556289434432983], [0.003312567714601755, 0.007833009585738182, 0.028767354786396027, 0.01876564510166645, 0.031517889350652695, 0.23079776763916016, 0.009912471286952496, 0.03340119123458862, 0.00942711066454649, 0.07190722972154617, 0.028902677819132805, 0.047975484281778336, 0.1501743346452713, 0.04319243133068085, 0.030662227421998978, 0.015385930426418781, 0.238064706325531], [0.0004494091554079205, 0.0011578041594475508, 0.01034923642873764, 0.009110440500080585, 0.010362404398620129, 0.33122414350509644, 0.0033661341294646263, 0.03157436102628708, 0.003567893523722887, 0.01818479783833027, 0.02716222032904625, 0.023536523804068565, 0.051557302474975586, 0.0652916356921196, 0.057205598801374435, 0.012305906042456627, 0.34359416365623474], [0.008837437257170677, 0.004411994945257902, 0.04309031739830971, 0.0233260840177536, 0.05259416624903679, 0.2115028202533722, 0.003679809859022498, 0.06567640602588654, 0.010024097748100758, 0.037955790758132935, 0.05625401809811592, 0.02933848276734352, 0.04681221768260002, 0.0405786894261837, 0.13200291991233826, 0.016877492889761925, 0.21703727543354034], [0.0024089706130325794, 0.007094787433743477, 0.020774032920598984, 0.01696576178073883, 0.029251985251903534, 0.36207452416419983, 0.010151381604373455, 0.02255850099027157, 0.00397214712575078, 0.0184295903891325, 0.04103245586156845, 0.008341711945831776, 0.013674664311110973, 0.01369511615484953, 0.03159405291080475, 0.023567581549286842, 0.37441274523735046], [0.005276049021631479, 0.027477825060486794, 0.027911297976970673, 0.017226064577698708, 0.035831160843372345, 0.36240461468696594, 0.031825169920921326, 0.022615930065512657, 0.006216070149093866, 0.011680909432470798, 0.006733251735568047, 0.01025216281414032, 0.011046179570257664, 0.013808244839310646, 0.00712225679308176, 0.02925039641559124, 0.37332242727279663], [0.039084505289793015, 0.03543638065457344, 0.1229260191321373, 0.1207740306854248, 0.026475418359041214, 0.07655509561300278, 0.026587095111608505, 0.052854686975479126, 0.012195585295557976, 0.04362374171614647, 0.05810108780860901, 0.022522050887346268, 0.07366081327199936, 0.06706303358078003, 0.11081480234861374, 0.034536153078079224, 0.07678952813148499]], [[0.006187991704791784, 0.0003568255342543125, 9.086394857149571e-05, 0.010508646257221699, 0.9773180484771729, 0.000943205610383302, 0.00018331459432374686, 0.0005030487664043903, 5.3213721002975944e-06, 5.702091220882721e-05, 0.0005188366048969328, 5.8614892623154446e-05, 8.476134098600596e-05, 2.6942568638332887e-06, 0.0017548835603520274, 0.00046763988211750984, 0.0009582070051692426], [0.012464841827750206, 0.0620601549744606, 0.013717511668801308, 0.023871485143899918, 0.18253515660762787, 0.08422316610813141, 0.08340241014957428, 0.011951434426009655, 0.0053121959790587425, 0.007596180308610201, 0.007928292267024517, 0.0037039401941001415, 0.003354917513206601, 0.004649871028959751, 0.010287800803780556, 0.39609426259994507, 0.08684642612934113], [0.007159403990954161, 0.4739425480365753, 0.024464450776576996, 0.04159407317638397, 0.055201973766088486, 0.09252564609050751, 0.03886175528168678, 0.044615134596824646, 0.009503799490630627, 0.026353446766734123, 0.014520503580570221, 0.01339181698858738, 0.016029037535190582, 0.018958162516355515, 0.013377947732806206, 0.015419991686940193, 0.09408032894134521], [0.0013985780533403158, 0.026027578860521317, 0.14831875264644623, 0.1571182906627655, 0.028120122849941254, 0.08426498621702194, 0.07483997941017151, 0.0406685397028923, 0.028738241642713547, 0.04312010109424591, 0.04136748984456062, 0.06195049360394478, 0.07203039526939392, 0.06307664513587952, 0.014240921474993229, 0.028175491839647293, 0.08654338866472244], [0.003555611241608858, 0.01876828446984291, 0.0182938352227211, 0.5056823492050171, 0.14394479990005493, 0.055190231651067734, 0.013693155720829964, 0.019491227343678474, 0.0032395226880908012, 0.027375826612114906, 0.023921478539705276, 0.00872955285012722, 0.014834239147603512, 0.018849153071641922, 0.05125153809785843, 0.017018353566527367, 0.05616086348891258], [0.10512138903141022, 0.07088592648506165, 0.07524073123931885, 0.08069272339344025, 0.016777563840150833, 0.09418074786663055, 0.07384324818849564, 0.0390021950006485, 0.03782433643937111, 0.020724784582853317, 0.01348249800503254, 0.06768838316202164, 0.06803563982248306, 0.04398726299405098, 0.024011312052607536, 0.07361271977424622, 0.09488853812217712], [0.0037044608034193516, 0.012685013934969902, 0.01033136434853077, 0.028825068846344948, 0.27853256464004517, 0.1591208577156067, 0.04106593877077103, 0.0046165077947080135, 0.009054737165570259, 0.014386043883860111, 0.0024931461084634066, 0.006164496764540672, 0.0027810947503894567, 0.006803461816161871, 0.013074025511741638, 0.24269656836986542, 0.16366459429264069], [0.0016985776601359248, 0.04045785218477249, 0.017954152077436447, 0.04758305475115776, 0.09018069505691528, 0.11836939305067062, 0.13004618883132935, 0.0814167857170105, 0.029598338529467583, 0.09119775891304016, 0.07981866598129272, 0.03231107443571091, 0.025988800451159477, 0.024962468072772026, 0.03551468625664711, 0.03122165985405445, 0.12167984247207642], [0.0010052837897092104, 0.03485294058918953, 0.01712751016020775, 0.007335319183766842, 0.13327261805534363, 0.2731854021549225, 0.03881285712122917, 0.06413516402244568, 0.03593826666474342, 0.02902812696993351, 0.024488788098096848, 0.02230129949748516, 0.007330221123993397, 0.00473032146692276, 0.010288771241903305, 0.013918394222855568, 0.2822486162185669], [0.00016218889504671097, 0.0032592234201729298, 0.04052003473043442, 0.003346323734149337, 0.020061474293470383, 0.03891531750559807, 0.006843366660177708, 0.0391538068652153, 0.6375337839126587, 0.05806710198521614, 0.00841717142611742, 0.07599245756864548, 0.007316327653825283, 0.006261879112571478, 0.005701614078134298, 0.008186095394194126, 0.04026181995868683], [0.001081131398677826, 0.005407160148024559, 0.011625098064541817, 0.008990935981273651, 0.028173226863145828, 0.051205914467573166, 0.008544073440134525, 0.019222797825932503, 0.0735478475689888, 0.5784700512886047, 0.06624390929937363, 0.03908608853816986, 0.01128272246569395, 0.0070644705556333065, 0.022146359086036682, 0.015454841777682304, 0.05245347321033478], [0.007303156424313784, 0.0500217005610466, 0.019937269389629364, 0.028772618621587753, 0.07622744143009186, 0.14022812247276306, 0.07521576434373856, 0.03902123495936394, 0.0193572286516428, 0.06616774946451187, 0.14880749583244324, 0.05552944168448448, 0.043456923216581345, 0.02230791375041008, 0.032089535146951675, 0.0319538414478302, 0.14360249042510986], [0.000862176704686135, 0.009422646835446358, 0.04926973953843117, 0.015617121942341328, 0.004559503402560949, 0.05309617519378662, 0.014508998021483421, 0.017281197011470795, 0.04912933334708214, 0.056419312953948975, 0.026260579004883766, 0.5089274048805237, 0.08142189681529999, 0.03621714934706688, 0.009424605406820774, 0.013134484179317951, 0.05444769188761711], [0.011306985281407833, 0.016087843105196953, 0.029502438381314278, 0.026234803721308708, 0.028520824387669563, 0.12465331703424454, 0.032435089349746704, 0.02526036836206913, 0.02679009549319744, 0.11052197962999344, 0.06815923005342484, 0.07648678869009018, 0.21615366637706757, 0.036591578274965286, 0.026468656957149506, 0.017081215977668762, 0.12774507701396942], [0.0010535644832998514, 0.008559945039451122, 0.01563405618071556, 0.051006294786930084, 0.007426570635288954, 0.0536453016102314, 0.00596762215718627, 0.015491881407797337, 0.020762480795383453, 0.08702125400304794, 0.020436255261301994, 0.025802990421652794, 0.0912303701043129, 0.45393627882003784, 0.06308721005916595, 0.023715272545814514, 0.055222783237695694], [0.002966084750369191, 0.04204538092017174, 0.023533310741186142, 0.13727635145187378, 0.15830634534358978, 0.10406048595905304, 0.04343279078602791, 0.03378653898835182, 0.0071930051781237125, 0.022722095251083374, 0.012591282837092876, 0.013112884014844894, 0.02340659499168396, 0.03308438882231712, 0.12434948980808258, 0.11134576052427292, 0.10678713023662567], [0.1062435582280159, 0.07168163359165192, 0.07540064305067062, 0.08128029108047485, 0.016940928995609283, 0.09165539592504501, 0.07395901530981064, 0.039476264268159866, 0.03827531635761261, 0.0208763275295496, 0.01356310211122036, 0.06802491098642349, 0.06833479553461075, 0.04409569129347801, 0.024163268506526947, 0.073698490858078, 0.09233037382364273]], [[6.026379196555354e-05, 0.0067036510445177555, 0.0017702272161841393, 0.0003696790663525462, 2.0075854990864173e-05, 0.47378143668174744, 0.0013052171561866999, 0.004937739111483097, 0.001499877660535276, 0.0015307647408917546, 0.0016994066536426544, 0.0018784991698339581, 0.0009704476105980575, 0.005120700225234032, 0.003973912913352251, 0.0025422479957342148, 0.4918358027935028], [0.0057748351246118546, 0.056561652570962906, 0.11656497418880463, 0.12383583933115005, 0.06991899013519287, 0.144246444106102, 0.06124958395957947, 0.03545273840427399, 0.009239548817276955, 0.02900312840938568, 0.02529652789235115, 0.01780351996421814, 0.012086533941328526, 0.015318833291530609, 0.029561391100287437, 0.09996703267097473, 0.14811848104000092], [0.002253243699669838, 0.017625071108341217, 0.017386965453624725, 0.010130763985216618, 0.02906917966902256, 0.4394603371620178, 0.005844302009791136, 0.0027806139551103115, 0.0003448394709266722, 0.0011931156041100621, 0.0009789636824280024, 0.0014394624158740044, 0.0010697732213884592, 0.002149509731680155, 0.0018878082046285272, 0.007464113179594278, 0.4589221179485321], [0.0005642628530040383, 0.01605062559247017, 0.009980570524930954, 0.004292525816708803, 0.0057779112830758095, 0.46221524477005005, 0.0024744279216974974, 0.003360130824148655, 0.0005210783565416932, 0.0013156221248209476, 0.0006793527281843126, 0.0010581286624073982, 0.00039137102430686355, 0.0024918594863265753, 0.0011591854272410274, 0.004767013248056173, 0.4829007089138031], [0.0019264727598056197, 0.03168381750583649, 0.011057861149311066, 0.005780818406492472, 0.00242335582152009, 0.44795167446136475, 0.003965341951698065, 0.00464504212141037, 0.0014053424820303917, 0.002517969813197851, 0.002300758147612214, 0.0013818073784932494, 0.0008218354196287692, 0.00719475606456399, 0.002824563765898347, 0.008028890937566757, 0.4640898108482361], [0.05263017117977142, 0.03950681909918785, 0.03378437086939812, 0.056078772991895676, 0.02552403323352337, 0.16184625029563904, 0.048907555639743805, 0.05039695277810097, 0.03562553972005844, 0.030108466744422913, 0.04095447063446045, 0.03424866497516632, 0.04595797508955002, 0.0645536407828331, 0.05967973917722702, 0.057022690773010254, 0.1631738543510437], [0.003119438886642456, 0.018113283440470695, 0.015442822128534317, 0.006279048975557089, 0.0203509833663702, 0.4123493432998657, 0.005858829710632563, 0.020349029451608658, 0.0021196764428168535, 0.008046546950936317, 0.010061887092888355, 0.009864650666713715, 0.006286802235990763, 0.011015688069164753, 0.009605895727872849, 0.011317167431116104, 0.4298190474510193], [0.004986603278666735, 0.021362802013754845, 0.01095663197338581, 0.008470294997096062, 0.026143288239836693, 0.38324278593063354, 0.010762859135866165, 0.02455470897257328, 0.006489030085504055, 0.015022787265479565, 0.015601113438606262, 0.011278053745627403, 0.009472144767642021, 0.018371080979704857, 0.015800558030605316, 0.019446415826678276, 0.3980388343334198], [0.0013038142351433635, 0.0022856860887259245, 0.0006278061773627996, 0.0003123161441180855, 0.002808909397572279, 0.47672948241233826, 0.0009434585808776319, 0.001769230468198657, 0.0006940153543837368, 0.0030994657427072525, 0.001180326915346086, 0.0012224355014041066, 0.0006199218332767487, 0.0029495148919522762, 0.0017054298659786582, 0.0018884959863498807, 0.49985983967781067], [0.0009652926819398999, 0.008198604919016361, 0.0010926041286438704, 0.0010146194836124778, 0.0011674345005303621, 0.4635809361934662, 0.0028108246624469757, 0.004728811327368021, 0.0015522307949140668, 0.00488270865753293, 0.0027940182480961084, 0.0019214553758502007, 0.0011543865548446774, 0.006254937965422869, 0.0057500503025949, 0.004918775521218777, 0.48721224069595337], [0.0012432184303179383, 0.011734227649867535, 0.0019273272482678294, 0.0019128941930830479, 0.0039035268127918243, 0.4237612187862396, 0.006342590786516666, 0.019753897562623024, 0.0020544358994811773, 0.006334726233035326, 0.013048012740910053, 0.005984748248010874, 0.005721098277717829, 0.019508948549628258, 0.024892626330256462, 0.008990476839244366, 0.44288599491119385], [0.004889367148280144, 0.01471570786088705, 0.0027582868933677673, 0.002281101420521736, 0.012052801437675953, 0.4376122057437897, 0.0044552977196872234, 0.01090418640524149, 0.0012357010273262858, 0.004375831689685583, 0.005265068728476763, 0.0051925452426075935, 0.006028333213180304, 0.016181020066142082, 0.01019645482301712, 0.005807266104966402, 0.4560489058494568], [0.000602843938395381, 0.012684080749750137, 0.0010431393748149276, 0.0006858843844383955, 0.001514865318313241, 0.452363520860672, 0.0017232963582500815, 0.016282321885228157, 0.0010943847009912133, 0.003618359100073576, 0.00365835870616138, 0.0034060587640851736, 0.0017191254300996661, 0.012949994765222073, 0.009332476183772087, 0.0041382270865142345, 0.4731830954551697], [0.0031727731693536043, 0.01341979205608368, 0.003162574488669634, 0.003063561161980033, 0.008399874903261662, 0.4440481960773468, 0.0038699277210980654, 0.010829261504113674, 0.002423804486170411, 0.0038951372262090445, 0.00509470421820879, 0.004605561960488558, 0.003174991812556982, 0.012403351254761219, 0.009291231632232666, 0.007735594175755978, 0.4614095687866211], [0.0009101140312850475, 0.011250769719481468, 0.0027540235314518213, 0.0010615494102239609, 0.0008734894799999893, 0.4498807191848755, 0.002539049368351698, 0.014060321263968945, 0.0017031040042638779, 0.0033554791007190943, 0.005856123752892017, 0.005707497708499432, 0.002710007829591632, 0.011000283062458038, 0.009151308797299862, 0.00538830179721117, 0.4717979431152344], [0.002735912799835205, 0.013371976092457771, 0.0057265134528279305, 0.00256176944822073, 0.008573356084525585, 0.45604395866394043, 0.0023309143725782633, 0.0043056439608335495, 0.0011862069368362427, 0.003410336561501026, 0.0020307672675698996, 0.002279849024489522, 0.002154671587049961, 0.007945219986140728, 0.0034085256047546864, 0.006996982730925083, 0.4749373197555542], [0.05323844403028488, 0.039814744144678116, 0.03426754102110863, 0.05713411048054695, 0.025956720113754272, 0.1577083319425583, 0.049578357487916946, 0.05100490152835846, 0.03600551560521126, 0.03044009581208229, 0.041715145111083984, 0.034661803394556046, 0.04652071371674538, 0.0648723617196083, 0.060557059943675995, 0.057549428194761276, 0.1589747816324234]], [[0.00415405398234725, 0.002833407837897539, 0.0022882784251123667, 0.0009175207815133035, 8.092842472251505e-05, 0.48025256395339966, 0.0010130936279892921, 0.0014856148045510054, 0.0007774279802106321, 0.0007909504929557443, 0.002399585908278823, 0.0017939360113814473, 0.002358336467295885, 0.0020157985854893923, 0.000825664377771318, 0.0009467173367738724, 0.49506616592407227], [0.0005244046915322542, 0.053637925535440445, 0.014417653903365135, 0.007080999203026295, 0.0286672692745924, 0.38758721947669983, 0.022804999724030495, 0.016078490763902664, 0.0018762790132313967, 0.0031810696236789227, 0.001760102342814207, 0.006494235247373581, 0.007915771566331387, 0.013270634226500988, 0.007604226004332304, 0.025129588320851326, 0.40196922421455383], [0.001167363952845335, 0.016938047483563423, 0.020666537806391716, 0.004638750571757555, 0.01867106929421425, 0.4300316274166107, 0.0045988429337739944, 0.00919420924037695, 0.002353416522964835, 0.0017219531582668424, 0.001243356615304947, 0.010014478117227554, 0.00486866245046258, 0.006568016484379768, 0.004616613499820232, 0.017210202291607857, 0.4454967677593231], [0.00011513779463712126, 0.009211458265781403, 0.002299494808539748, 0.002638451289385557, 0.001975532155483961, 0.4702375531196594, 0.0015564777422696352, 0.003175093326717615, 0.00046471631503663957, 0.0007894336595200002, 0.0006918971776030958, 0.0016250384505838156, 0.002122177043929696, 0.004267719108611345, 0.004758349619805813, 0.003947538789361715, 0.49012401700019836], [0.0024864827282726765, 0.02326790615916252, 0.003703959984704852, 0.004919169470667839, 0.0035264496691524982, 0.4469118118286133, 0.004398280289024115, 0.005656108725816011, 0.0009402295690961182, 0.0015401591081172228, 0.0012658328050747514, 0.003143388545140624, 0.004110012203454971, 0.009840098209679127, 0.00723055237904191, 0.01815541833639145, 0.4589041769504547], [0.01876899227499962, 0.10031139850616455, 0.05472763255238533, 0.030926330015063286, 0.0342743955552578, 0.18172593414783478, 0.031756311655044556, 0.07150211185216904, 0.03892343118786812, 0.021650169044733047, 0.03136510029435158, 0.03472655266523361, 0.0455121211707592, 0.05304093286395073, 0.042172037065029144, 0.02467096410691738, 0.18394553661346436], [0.0002650030655786395, 0.008916361257433891, 0.005481118801981211, 0.0026930775493383408, 0.013014555908739567, 0.44717249274253845, 0.010826585814356804, 0.008742567151784897, 0.0023208383936434984, 0.0014934419887140393, 0.001075027510523796, 0.003580912481993437, 0.005058096721768379, 0.004314419347792864, 0.004269450902938843, 0.015250524505972862, 0.465525358915329], [0.0005429658922366798, 0.010581156238913536, 0.004945630673319101, 0.002375006442889571, 0.03168889880180359, 0.4462611675262451, 0.0028789120260626078, 0.007850578986108303, 0.0011320961639285088, 0.0007985322154127061, 0.0013160579837858677, 0.002042415551841259, 0.0017425153637304902, 0.0038161673583090305, 0.0031147082336246967, 0.013794731348752975, 0.4651185870170593], [0.00040278283995576203, 0.003515886375680566, 0.005794986616820097, 0.001994328573346138, 0.005143600516021252, 0.46749529242515564, 0.0011753798462450504, 0.0037181067746132612, 0.003258051350712776, 0.0012578420573845506, 0.0009349597385153174, 0.0038829564582556486, 0.0018417650135233998, 0.0030904205050319433, 0.002143068006262183, 0.009320106357336044, 0.4850304126739502], [2.986770232382696e-05, 0.003988304641097784, 0.0026662626769393682, 0.001063319738022983, 0.0022315734531730413, 0.47492673993110657, 0.0007253506919369102, 0.002607341855764389, 0.0012200482888147235, 0.0021037072874605656, 0.0006392296636477113, 0.0017128377221524715, 0.0014069023309275508, 0.0019483629148453474, 0.0017497505759820342, 0.004471311345696449, 0.4965090751647949], [0.000249104225076735, 0.004859396256506443, 0.003993621561676264, 0.0016533380839973688, 0.007476010825484991, 0.4664028286933899, 0.002415398368611932, 0.005713383201509714, 0.001354763749986887, 0.001330806640908122, 0.0031946778763085604, 0.0025994712486863136, 0.0020524649880826473, 0.003093051491305232, 0.001683501759544015, 0.00843063648790121, 0.4834975004196167], [0.000603690801654011, 0.00956064835190773, 0.010512025095522404, 0.00395973352715373, 0.02496749348938465, 0.43887579441070557, 0.004697183612734079, 0.009642548859119415, 0.0021700519137084484, 0.001634359359741211, 0.0013270082417875528, 0.008158469572663307, 0.0035728784278035164, 0.004360043443739414, 0.003789518726989627, 0.016374066472053528, 0.4557945132255554], [0.00015288555005099624, 0.00941737461835146, 0.008301074616611004, 0.002817489206790924, 0.006276380270719528, 0.45499345660209656, 0.004114019218832254, 0.0070970188826322556, 0.0020429512951523066, 0.0022385024931281805, 0.0016929716803133488, 0.005705620627850294, 0.005960507784038782, 0.005159182008355856, 0.003529250156134367, 0.008508953265845776, 0.4719923734664917], [0.0001513519382569939, 0.00993896834552288, 0.004132029600441456, 0.0023689656518399715, 0.0023470090236514807, 0.46455538272857666, 0.0021604138892143965, 0.005018789321184158, 0.001969715813174844, 0.0016439183382317424, 0.0014343679649755359, 0.0031398513820022345, 0.003675177227705717, 0.007490071933716536, 0.0033639618195593357, 0.005437696352601051, 0.4811723828315735], [4.6209359425120056e-05, 0.005380389746278524, 0.0045694876462221146, 0.0015567566733807325, 0.0060910326428711414, 0.4713228940963745, 0.0016491011483594775, 0.0025454116985201836, 0.0007545427652075887, 0.0004435360024217516, 0.0006796933012083173, 0.002677749842405319, 0.002356259385123849, 0.002177754184231162, 0.00312797911465168, 0.004158027470111847, 0.4904631972312927], [0.00010836825822480023, 0.004973593633621931, 0.0038768716622143984, 0.0013488770928233862, 0.01181221567094326, 0.4658403992652893, 0.0022257003001868725, 0.003308834508061409, 0.0008064735447987914, 0.00036771842860616744, 0.0002824069233611226, 0.002118604490533471, 0.001103008515201509, 0.0017953282222151756, 0.0020369794219732285, 0.011116640642285347, 0.4868779480457306], [0.019023554399609566, 0.10106069594621658, 0.05496586859226227, 0.03114890120923519, 0.03472151979804039, 0.17948433756828308, 0.03214426338672638, 0.07187505066394806, 0.039097461849451065, 0.02180774323642254, 0.03150145709514618, 0.0348878912627697, 0.04570818692445755, 0.053505077958106995, 0.04242857173085213, 0.024978110566735268, 0.18166132271289825]], [[0.0004994634073227644, 0.0010435011936351657, 0.004557562991976738, 0.005276572424918413, 0.8083537220954895, 0.08080103248357773, 0.0021933268290013075, 0.0026851005386561155, 0.0025990931317210197, 0.0006285299314185977, 0.0006553033599629998, 0.00075313332490623, 0.0006662516389042139, 0.0009940312011167407, 0.0016448508249595761, 0.0033343001268804073, 0.08331426978111267], [0.0030356436036527157, 0.01749740168452263, 0.17459650337696075, 0.19228850305080414, 0.05699131265282631, 0.0742798000574112, 0.15809902548789978, 0.02730032615363598, 0.006356874480843544, 0.016605939716100693, 0.05634099617600441, 0.020428191870450974, 0.01578686572611332, 0.009712345898151398, 0.035152796655893326, 0.05911451578140259, 0.07641302794218063], [0.0005715140723623335, 0.020688779652118683, 0.027444319799542427, 0.02610994689166546, 0.032622329890728, 0.4112543761730194, 0.008126077242195606, 0.005416239611804485, 0.000619629689026624, 0.0031574047170579433, 0.0020036103669553995, 0.001622153096832335, 0.0012675204779952765, 0.0027166353538632393, 0.0020852121524512768, 0.025219792500138283, 0.4290744364261627], [0.0007312805391848087, 0.026604410260915756, 0.02655726671218872, 0.02186778374016285, 0.028521828353405, 0.4101411998271942, 0.014085067436099052, 0.007100661750882864, 0.0006251586601138115, 0.0025078661274164915, 0.0022428908850997686, 0.0025025266222655773, 0.0021217865869402885, 0.0035190486814826727, 0.0034507557284086943, 0.018656155094504356, 0.42876434326171875], [0.00270376936532557, 0.03655863180756569, 0.03806456923484802, 0.03459138423204422, 0.08923488110303879, 0.3456230163574219, 0.01488769892603159, 0.011439257301390171, 0.001265194034203887, 0.004561577457934618, 0.0037953322753310204, 0.00530583318322897, 0.0028204380068928003, 0.0058405702002346516, 0.005597114562988281, 0.03911422938108444, 0.35859644412994385], [0.031231693923473358, 0.026592079550027847, 0.036116328090429306, 0.03234368935227394, 0.009179345332086086, 0.2517361342906952, 0.04461037740111351, 0.02984650805592537, 0.03350377082824707, 0.022286593914031982, 0.050381213426589966, 0.03982386365532875, 0.04268442839384079, 0.03687688708305359, 0.033586226403713226, 0.024930087849497795, 0.2542707622051239], [0.0006035208352841437, 0.00572449853643775, 0.016994304955005646, 0.011917905882000923, 0.23231008648872375, 0.2899603545665741, 0.012225490994751453, 0.017682567238807678, 0.002684596460312605, 0.009965897537767887, 0.015326803550124168, 0.013258229941129684, 0.014120645821094513, 0.01730145514011383, 0.02597985602915287, 0.011757156811654568, 0.30218666791915894], [0.0017301328480243683, 0.005230106879025698, 0.008864469826221466, 0.007434172090142965, 0.08006387948989868, 0.3633981943130493, 0.011943387798964977, 0.010629113763570786, 0.005184425041079521, 0.01813478395342827, 0.03596621751785278, 0.0149007523432374, 0.011340402998030186, 0.015759913250803947, 0.021663343533873558, 0.010885574854910374, 0.37687113881111145], [0.00035368168028071523, 0.0010898022446781397, 0.0007720065768808126, 0.0009454321698285639, 0.1568889021873474, 0.3967500627040863, 0.001635293709114194, 0.0016119887586683035, 0.0024782102555036545, 0.003867675317451358, 0.0019517811015248299, 0.0014412490418180823, 0.0018866440514102578, 0.006615569349378347, 0.0034382580779492855, 0.0027272170409560204, 0.41554611921310425], [0.00016251674969680607, 0.0015148075763136148, 0.0006465999758802354, 0.000672204652801156, 0.030047103762626648, 0.4618891775608063, 0.0017434365581721067, 0.001347685931250453, 0.0014605711912736297, 0.0014643312897533178, 0.0008173243841156363, 0.0012715489137917757, 0.0013172359904274344, 0.003714722814038396, 0.0018753943732008338, 0.0026467989664524794, 0.4874085485935211], [0.00022574714967049658, 0.0023377358447760344, 0.0011492952471598983, 0.0012446610489860177, 0.12168766558170319, 0.39721009135246277, 0.003934401553124189, 0.0056556458584964275, 0.0033874802757054567, 0.005633830092847347, 0.014347082003951073, 0.005096517037600279, 0.005362571682780981, 0.005545539315789938, 0.006008625030517578, 0.004346593748778105, 0.4168265759944916], [0.00034931948175653815, 0.0037663790863007307, 0.002088492503389716, 0.0025509910192340612, 0.06007571890950203, 0.4178144633769989, 0.004290376789867878, 0.007881647907197475, 0.0027460232377052307, 0.006821244955062866, 0.01042330265045166, 0.006050060968846083, 0.008384189568459988, 0.013409167528152466, 0.010858798399567604, 0.007287754211574793, 0.435202032327652], [0.00021116762945894152, 0.003771975403651595, 0.002198791364207864, 0.002579823136329651, 0.011630847118794918, 0.43358156085014343, 0.0038903544191271067, 0.0066293166019022465, 0.0024068758357316256, 0.008257858455181122, 0.010659388266503811, 0.009168471209704876, 0.009198258630931377, 0.017278390005230904, 0.0187497828155756, 0.005567026790231466, 0.454220175743103], [0.0015511654783040285, 0.006871512159705162, 0.0026717891450971365, 0.0032216436229646206, 0.005594505462795496, 0.4242333769798279, 0.005908191669732332, 0.009947850368916988, 0.0057348208501935005, 0.013593786396086216, 0.013811187818646431, 0.012995664961636066, 0.014727098867297173, 0.017060479149222374, 0.01325168740004301, 0.008412742055952549, 0.4404124319553375], [0.00021744977857451886, 0.0035134735517203808, 0.0018225957173854113, 0.0021693073213100433, 0.008593730628490448, 0.4500732421875, 0.003623231779783964, 0.008518064394593239, 0.002363326493650675, 0.005363743752241135, 0.007021159399300814, 0.0060378327034413815, 0.008524389937520027, 0.010764307342469692, 0.0051601049490273, 0.004050133749842644, 0.4721839725971222], [0.0006333528435789049, 0.010979656130075455, 0.00826142355799675, 0.00794635433703661, 0.06333466619253159, 0.4178299903869629, 0.009029483422636986, 0.006961943581700325, 0.0016014270950108767, 0.003925922326743603, 0.0029632083605974913, 0.003888262901455164, 0.004362886771559715, 0.0076651014387607574, 0.0061233676970005035, 0.008241512812674046, 0.4362514615058899], [0.03163955733180046, 0.026966383680701256, 0.036717940121889114, 0.032862886786460876, 0.009202975779771805, 0.24741719663143158, 0.045577116310596466, 0.030416416004300117, 0.034124039113521576, 0.022665193304419518, 0.05164715275168419, 0.04057704284787178, 0.04351033270359039, 0.03729603439569473, 0.034251876175403595, 0.025255149230360985, 0.24987271428108215]], [[0.030048668384552002, 0.0024877518881112337, 0.0012608696706593037, 0.0017611873336136341, 0.0002767719270195812, 0.4559608995914459, 0.001798742450773716, 0.0025275067891925573, 0.00922231376171112, 0.002960342215374112, 0.0034626282285898924, 0.0014808509731665254, 0.0007421819027513266, 0.00280205812305212, 0.0002767468395177275, 0.00511871138587594, 0.477811723947525], [0.0057953838258981705, 0.100986048579216, 0.010533655993640423, 0.003726818598806858, 0.0035228657070547342, 0.3945578634738922, 0.006483670324087143, 0.03043273463845253, 0.004406224936246872, 0.0015834808582440019, 0.0021352418698370457, 0.0011697829468175769, 0.0011335432063788176, 0.004483009222894907, 0.0021294637117534876, 0.014682499691843987, 0.41223767399787903], [8.327965042553842e-05, 0.002309722825884819, 0.004315887112170458, 0.001669342746026814, 0.0001522309030406177, 0.4786614775657654, 0.00020504608983173966, 0.0008089352631941438, 0.0004956239135935903, 0.0001742110471241176, 0.00014094935613684356, 0.00033998253638856113, 0.00015659538621548563, 0.0006825486780144274, 0.0002882491680793464, 0.004114946816116571, 0.5054009556770325], [0.0001308359351241961, 0.0015851061325520277, 0.002463008975610137, 0.005982284899801016, 0.00023860068176873028, 0.4759533703327179, 0.0003333979984745383, 0.0008578659035265446, 0.00045044414582662284, 0.0001955136685865, 0.0003264091210439801, 0.000272568897344172, 0.0002981261641252786, 0.000996675225906074, 0.0003843401209451258, 0.003054158529266715, 0.5064772367477417], [0.0003091947583016008, 0.003753933822736144, 0.0026050421874970198, 0.002973312744870782, 0.00037381844595074654, 0.47535547614097595, 0.0005712572601623833, 0.002732439897954464, 0.001066842582076788, 0.0006499774171970785, 0.000976014940533787, 0.00046141137136146426, 0.0002600216830614954, 0.0011763829970732331, 0.0008935114601626992, 0.006424563936889172, 0.49941691756248474], [0.012292551808059216, 0.010998503305017948, 0.015579926781356335, 0.014066340401768684, 0.013699726201593876, 0.3469683527946472, 0.007598537486046553, 0.04282494634389877, 0.017493868246674538, 0.008313199505209923, 0.015531153418123722, 0.021595127880573273, 0.025942571461200714, 0.04549785703420639, 0.03169679641723633, 0.015439371578395367, 0.35446107387542725], [0.0006360327242873609, 0.00395905040204525, 0.0023163417354226112, 0.0008555912645533681, 0.00020071202015969902, 0.46377673745155334, 0.010687323287129402, 0.008617065846920013, 0.004086365923285484, 0.0009115559514611959, 0.0019316255347803235, 0.0013647980522364378, 0.0009891175432130694, 0.0024294427130371332, 0.0006037005805410445, 0.005178556777536869, 0.49145597219467163], [0.0007919495110400021, 0.004776235204190016, 0.0015622202772647142, 0.0005310687120072544, 0.0008337408653460443, 0.44898033142089844, 0.0019318984122946858, 0.03436794504523277, 0.0034494642168283463, 0.000847524031996727, 0.002304514404386282, 0.0020584347657859325, 0.0019908915273845196, 0.005552026443183422, 0.006032357458025217, 0.010273498483002186, 0.47371599078178406], [0.00012458476703613997, 0.0008120143902488053, 0.001707982155494392, 0.0004169603926129639, 0.00011478588567115366, 0.45997390151023865, 0.0010462802601978183, 0.007104674354195595, 0.020510783419013023, 0.0020785110536962748, 0.002918179612606764, 0.0027221289929002523, 0.0011342582292854786, 0.002173794899135828, 0.0012954933336004615, 0.006881057750433683, 0.48898449540138245], [0.00012027481716359034, 0.002811130601912737, 0.0009967591613531113, 0.001046075951308012, 0.0002547828480601311, 0.4612797796726227, 0.0010690758936107159, 0.005852365400642157, 0.0031890575774013996, 0.0038643868174403906, 0.004242381546646357, 0.001341898227110505, 0.0012413199292495847, 0.004546931479126215, 0.004491997882723808, 0.01170335803180933, 0.4919484853744507], [0.00023025042901281267, 0.0025530040729790926, 0.001524728024378419, 0.0010679967235773802, 0.0003074424166698009, 0.4495812654495239, 0.0016707099275663495, 0.009373314678668976, 0.0032607256434857845, 0.002851347206160426, 0.01574229635298252, 0.004519606474786997, 0.00519479950889945, 0.009211506694555283, 0.006288205273449421, 0.009452374652028084, 0.47717034816741943], [0.00010497944458620623, 0.000726523285266012, 0.0011162463342770934, 0.00043357210233807564, 0.00024388314341194928, 0.4760870635509491, 0.0007098541245795786, 0.002493623411282897, 0.0013016079319640994, 0.0004794404667336494, 0.001037607085891068, 0.001988619100302458, 0.001343661337159574, 0.001866512349806726, 0.001536238705739379, 0.005347326397895813, 0.5031832456588745], [7.387266668956727e-05, 0.0006567435921169817, 0.0006061063031665981, 0.00044161389814689755, 0.00011928227468160912, 0.473837286233902, 0.000331822840962559, 0.003047000849619508, 0.0008164631435647607, 0.00027716875774785876, 0.0012662687804549932, 0.0016507714753970504, 0.004426304716616869, 0.0026247494388371706, 0.0016805774066597223, 0.003436463186517358, 0.5047075152397156], [0.00015551892283838242, 0.0013196674408391118, 0.0009234666940756142, 0.000488990917801857, 0.00030503084417432547, 0.46879178285598755, 0.0005667287041433156, 0.0042366753332316875, 0.0011501702247187495, 0.00045959054841659963, 0.0014999390114098787, 0.0011722755152732134, 0.0023539282847195864, 0.010933272540569305, 0.003832645481452346, 0.00539987301453948, 0.49641039967536926], [5.731631244998425e-05, 0.0012038926361128688, 0.0005449049058370292, 0.0004564173868857324, 0.0001410644908901304, 0.4637811779975891, 0.00047678331611678004, 0.0038882517255842686, 0.0004497033078223467, 0.0004110280133318156, 0.0020325235091149807, 0.0009358148672617972, 0.002752354834228754, 0.005022698547691107, 0.020071137696504593, 0.003773996140807867, 0.49400097131729126], [0.00047469898709096014, 0.00673022773116827, 0.002594608813524246, 0.0014541283017024398, 0.0005066498415544629, 0.46923863887786865, 0.0015309893060475588, 0.005890001077204943, 0.0016982309753075242, 0.0006363806896843016, 0.0009043823229148984, 0.000789143203292042, 0.000677062664180994, 0.004645936656743288, 0.001314402325078845, 0.0072666979394853115, 0.4936477243900299], [0.012600336223840714, 0.011260409839451313, 0.015881584957242012, 0.014361578039824963, 0.013920237310230732, 0.3441026508808136, 0.007760573644191027, 0.04378535971045494, 0.017817361280322075, 0.008494887501001358, 0.015784310176968575, 0.021982824429869652, 0.026427142322063446, 0.04638919606804848, 0.03226320818066597, 0.01569807156920433, 0.35147035121917725]], [[0.00024122082686517388, 0.0041755931451916695, 0.0016273697838187218, 0.00039020428084768355, 2.7030550882045645e-06, 0.4834291636943817, 0.000696244474966079, 0.0008069644100032747, 0.0005135743413120508, 0.0005311251152306795, 0.0006866190233267844, 0.0018468323396518826, 0.0010771151864901185, 0.004013979807496071, 0.0005079202819615602, 0.0018274245085194707, 0.49762600660324097], [0.006344777066260576, 0.16785494983196259, 0.011881212703883648, 0.012100555002689362, 0.005060200579464436, 0.334680438041687, 0.010161318816244602, 0.03264975920319557, 0.0026085067074745893, 0.012454922311007977, 0.0033716093748807907, 0.004378470126539469, 0.005404946394264698, 0.0225836168974638, 0.0053872535936534405, 0.018834196031093597, 0.34424328804016113], [0.00334173534065485, 0.034456897526979446, 0.015521487221121788, 0.006738630123436451, 0.009809460490942001, 0.4217064082622528, 0.007816988043487072, 0.013279812410473824, 0.0038139582611620426, 0.005566832143813372, 0.0017366406973451376, 0.0065644970163702965, 0.0022505775559693575, 0.011269782669842243, 0.003607078455388546, 0.017953509464859962, 0.4345657229423523], [0.0006356092635542154, 0.02304847165942192, 0.0037605271209031343, 0.019091956317424774, 0.0025418128352612257, 0.42793136835098267, 0.0013230297481641173, 0.008717094548046589, 0.000861711916513741, 0.004028602968901396, 0.0010195894865319133, 0.0017932800110429525, 0.0021715634502470493, 0.04216747358441353, 0.007272237911820412, 0.010640187188982964, 0.442995548248291], [0.002923120278865099, 0.02299751155078411, 0.016919078305363655, 0.021754194051027298, 0.0015232362784445286, 0.4097056984901428, 0.006278342567384243, 0.014532997272908688, 0.0011654801201075315, 0.0049864016473293304, 0.002347160829231143, 0.005024791695177555, 0.003827259875833988, 0.03256240487098694, 0.008894377388060093, 0.024538060650229454, 0.42001989483833313], [0.07617279142141342, 0.07795913517475128, 0.03503090888261795, 0.049036212265491486, 0.016228949651122093, 0.16057470440864563, 0.03111070767045021, 0.042247068136930466, 0.04151887446641922, 0.034645676612854004, 0.0336640402674675, 0.031738344579935074, 0.05078244209289551, 0.077152319252491, 0.044325463473796844, 0.03649819642305374, 0.16131427884101868], [0.003047647187486291, 0.017091909423470497, 0.004692105110734701, 0.004105167929083109, 0.0030240456108003855, 0.4475594460964203, 0.0030258961487561464, 0.01082320511341095, 0.0019297391409054399, 0.006359045393764973, 0.0019391265232115984, 0.0028446409851312637, 0.0020360066555440426, 0.015400371514260769, 0.0025302062276750803, 0.010833252221345901, 0.4627581834793091], [0.0036838981322944164, 0.09991160780191422, 0.00822425540536642, 0.007835844531655312, 0.0222031120210886, 0.35380300879478455, 0.00701838219538331, 0.038426466286182404, 0.0024357347283512354, 0.011058442294597626, 0.002966861240565777, 0.005118748173117638, 0.004107875283807516, 0.02888144552707672, 0.008363570086658001, 0.03077125921845436, 0.3651895523071289], [0.0010571125894784927, 0.009986849501729012, 0.004546396434307098, 0.001594154629856348, 0.016387779265642166, 0.44901371002197266, 0.004113574977964163, 0.007463566027581692, 0.0031705289147794247, 0.004720210563391447, 0.0025037522427737713, 0.0074280546978116035, 0.0015469011850655079, 0.006048879586160183, 0.003589344210922718, 0.011931018903851509, 0.46489807963371277], [0.00016135220357682556, 0.02477494813501835, 0.0020672648679465055, 0.0013012816198170185, 0.0008259101305156946, 0.4510280191898346, 0.0016377064166590571, 0.011927323415875435, 0.004168046172708273, 0.005507149733603001, 0.0018864127341657877, 0.0030737409833818674, 0.0018973781261593103, 0.011885439045727253, 0.0016222737031057477, 0.008670371025800705, 0.4675654172897339], [0.0010792240500450134, 0.010214962996542454, 0.006006580777466297, 0.004859045147895813, 0.002961172955110669, 0.4135887622833252, 0.003928480204194784, 0.019339608028531075, 0.010359990410506725, 0.015372836031019688, 0.007973354309797287, 0.011644395999610424, 0.007506543770432472, 0.035109177231788635, 0.008116200566291809, 0.014666988514363766, 0.4272727370262146], [0.003472219919785857, 0.02338642254471779, 0.006701789330691099, 0.004029793664813042, 0.01108253002166748, 0.4164965748786926, 0.005603489000350237, 0.01625795103609562, 0.005738281179219484, 0.00886513851583004, 0.0039116269908845425, 0.01135172788053751, 0.0054019745439291, 0.027852440252900124, 0.006980614736676216, 0.014838401228189468, 0.42802903056144714], [0.0008205111953429878, 0.038076870143413544, 0.0038350140675902367, 0.004890442360192537, 0.0013280636630952358, 0.3985012173652649, 0.003408709540963173, 0.01917431317269802, 0.003912866581231356, 0.007608526851981878, 0.00408722460269928, 0.009988651610910892, 0.008917555212974548, 0.05875924602150917, 0.007801949046552181, 0.01740267314016819, 0.4114862084388733], [0.0030213105492293835, 0.03023276850581169, 0.004153192974627018, 0.004437243565917015, 0.002549462951719761, 0.42860841751098633, 0.003935673739761114, 0.010681882500648499, 0.002102726371958852, 0.007799946703016758, 0.0029054826591163874, 0.006881154607981443, 0.006404772400856018, 0.028477564454078674, 0.006554091349244118, 0.010395340621471405, 0.4408588707447052], [0.0011083751451224089, 0.01437816210091114, 0.0029203607700765133, 0.006045607849955559, 0.00056814169511199, 0.42514875531196594, 0.003962207585573196, 0.009712685830891132, 0.002198380883783102, 0.007044545840471983, 0.004108647350221872, 0.005083181895315647, 0.006811224389821291, 0.04154910147190094, 0.010838381946086884, 0.017674487084150314, 0.44084781408309937], [0.0021698607597500086, 0.0240564476698637, 0.004810225684195757, 0.005933362524956465, 0.0031878314912319183, 0.4379982352256775, 0.002625317545607686, 0.014016716741025448, 0.002111441222950816, 0.006281062960624695, 0.0015140624018386006, 0.002772582694888115, 0.0030366964638233185, 0.018903281539678574, 0.004540346562862396, 0.013787996023893356, 0.45225444436073303], [0.07721052318811417, 0.07834730297327042, 0.03523865342140198, 0.04959369823336601, 0.016454245895147324, 0.15783663094043732, 0.031260550022125244, 0.04258471354842186, 0.041857317090034485, 0.03498491644859314, 0.033944159746170044, 0.03194080665707588, 0.051200151443481445, 0.07771861553192139, 0.04468340426683426, 0.036605071276426315, 0.15853926539421082]], [[0.005831320304423571, 0.01177266240119934, 0.00434677442535758, 0.007693035528063774, 0.0020752931013703346, 0.4430723786354065, 0.003220920218154788, 0.005553597118705511, 0.001921060960739851, 0.009653241373598576, 0.0031950362026691437, 0.0047004385851323605, 0.01733250916004181, 0.016290610656142235, 0.0009530833340249956, 0.0029002258088439703, 0.45948782563209534], [0.0003245966217946261, 0.23319341242313385, 0.015076971612870693, 0.03400760889053345, 0.022869311273097992, 0.18727460503578186, 0.09975313395261765, 0.10346582531929016, 0.005378175526857376, 0.03362703695893288, 0.006363469175994396, 0.009295099414885044, 0.009060614742338657, 0.013776933774352074, 0.005516912788152695, 0.026426518335938454, 0.19458970427513123], [0.002654092852026224, 0.035178057849407196, 0.31765562295913696, 0.01972026191651821, 0.029924556612968445, 0.168646439909935, 0.04360334947705269, 0.02369031123816967, 0.02463795430958271, 0.03752652555704117, 0.01809990219771862, 0.033540137112140656, 0.02786613069474697, 0.013838606886565685, 0.004488723818212748, 0.025684921070933342, 0.1732443869113922], [9.204095113091171e-05, 0.012977209873497486, 0.006741984281688929, 0.21890780329704285, 0.06181371584534645, 0.26080846786499023, 0.02742384932935238, 0.014037508517503738, 0.002650769427418709, 0.02043241262435913, 0.006106800399720669, 0.0030072967056185007, 0.015176472254097462, 0.022113464772701263, 0.025320803746581078, 0.031882625073194504, 0.2705067992210388], [0.0006031574448570609, 0.03778867796063423, 0.022092368453741074, 0.07852448523044586, 0.27076947689056396, 0.19207417964935303, 0.06112397089600563, 0.02070661447942257, 0.0030436753295361996, 0.004968165885657072, 0.0036982381716370583, 0.0034512507263571024, 0.005451066419482231, 0.01766902022063732, 0.011470925062894821, 0.06837006658315659, 0.1981946974992752], [0.004088226240128279, 0.07967300713062286, 0.029852766543626785, 0.07637123763561249, 0.002512900857254863, 0.1602073758840561, 0.01712733507156372, 0.11242978274822235, 0.00845243688672781, 0.03200126066803932, 0.020538104698061943, 0.023642774671316147, 0.08808572590351105, 0.11124499887228012, 0.05831914022564888, 0.0115753673017025, 0.16387759149074554], [0.0003003059246111661, 0.03157700225710869, 0.008651879616081715, 0.01704981178045273, 0.04723678156733513, 0.13709500432014465, 0.48067283630371094, 0.02792474813759327, 0.0026137614622712135, 0.01134602352976799, 0.012199681252241135, 0.010581477545201778, 0.01701228879392147, 0.012101322412490845, 0.004801246337592602, 0.0372360497713089, 0.1415998488664627], [0.0012510159285739064, 0.05968744680285454, 0.012457656674087048, 0.023954836651682854, 0.0933033674955368, 0.23328377306461334, 0.038146428763866425, 0.10956336557865143, 0.019130771979689598, 0.040309399366378784, 0.017529990524053574, 0.01935768313705921, 0.012656865641474724, 0.02431550808250904, 0.014817817136645317, 0.0398135706782341, 0.24042047560214996], [0.00016671273624524474, 0.0038662434089928865, 0.003919951152056456, 0.0013331023510545492, 0.010191835463047028, 0.048735011368989944, 0.0011451373575255275, 0.005781473126262426, 0.8391794562339783, 0.023097801953554153, 0.002293685683980584, 0.0038806002121418715, 0.0019128161948174238, 0.0014490816975012422, 0.0004926783149130642, 0.0023780353367328644, 0.05017640441656113], [0.00041072527528740466, 0.005508243106305599, 0.0030747060663998127, 0.005580278113484383, 0.0012970947427675128, 0.1087382584810257, 0.0021671378053724766, 0.008749880827963352, 0.048073660582304, 0.6622543334960938, 0.016672657802700996, 0.003289890941232443, 0.010226262733340263, 0.0031431992538273335, 0.0037767700850963593, 0.004142649471759796, 0.11289432644844055], [0.0012204707600176334, 0.016790058463811874, 0.009093675762414932, 0.01637817732989788, 0.02417641691863537, 0.23000116646289825, 0.03270893543958664, 0.02527029998600483, 0.026653625071048737, 0.0768292173743248, 0.18514207005500793, 0.02562292292714119, 0.04070065915584564, 0.01414379570633173, 0.012759245000779629, 0.024803368374705315, 0.23770593106746674], [0.0019662119448184967, 0.01650949940085411, 0.02753237634897232, 0.007802025880664587, 0.014688005670905113, 0.2348063439130783, 0.026650192216038704, 0.0256191398948431, 0.039691612124443054, 0.03205813467502594, 0.030954943969845772, 0.1785167157649994, 0.05074504762887955, 0.04298452287912369, 0.008832957595586777, 0.018984511494636536, 0.24165788292884827], [0.00041849605622701347, 0.004063398577272892, 0.00704614445567131, 0.014434083364903927, 0.002436222741380334, 0.17812810838222504, 0.007557305973023176, 0.013747706077992916, 0.0059114377945661545, 0.08130192756652832, 0.02441258169710636, 0.021846847608685493, 0.3909624218940735, 0.046039506793022156, 0.011339789256453514, 0.005574003793299198, 0.18478001654148102], [0.0006194679881446064, 0.018317051231861115, 0.007914450950920582, 0.029451919719576836, 0.00751156359910965, 0.25125929713249207, 0.01519228145480156, 0.03992174193263054, 0.01043176744133234, 0.026790179312229156, 0.01644105277955532, 0.022474132478237152, 0.08471998572349548, 0.15881066024303436, 0.037675641477108, 0.012312451377511024, 0.26015642285346985], [0.00019025133224204183, 0.003956777509301901, 0.0030896749813109636, 0.025168059393763542, 0.01001733634620905, 0.29934951663017273, 0.00472840154543519, 0.018034599721431732, 0.0035799196921288967, 0.03296920284628868, 0.013493282720446587, 0.005203608889132738, 0.016057446599006653, 0.029770096763968468, 0.19661328196525574, 0.02736583910882473, 0.31041276454925537], [0.0006360780098475516, 0.07387086749076843, 0.009531293995678425, 0.043063584715127945, 0.06354290246963501, 0.2806938886642456, 0.041408587247133255, 0.0352645143866539, 0.004905599169433117, 0.009743313305079937, 0.0051108552142977715, 0.005372344050556421, 0.013156158849596977, 0.03526909649372101, 0.019911523908376694, 0.06827884167432785, 0.2902405560016632], [0.004144406411796808, 0.08055808395147324, 0.030144015327095985, 0.07706895470619202, 0.0025522306095808744, 0.157363623380661, 0.017380569130182266, 0.11364361643791199, 0.008510811254382133, 0.03221731260418892, 0.020727308467030525, 0.023826273158192635, 0.08892863988876343, 0.11162080615758896, 0.05871307849884033, 0.011652396991848946, 0.16094791889190674]], [[0.0019022258929908276, 0.0028518533799797297, 0.023877127096056938, 0.002818893175572157, 2.8957925678696483e-05, 0.41810137033462524, 0.005783493630588055, 0.010046356357634068, 0.02295095846056938, 0.012258436530828476, 0.02296709641814232, 0.017327917739748955, 0.00576773239299655, 0.002016407670453191, 0.002586920978501439, 0.015043526887893677, 0.43367066979408264], [0.001216525794006884, 0.09313598275184631, 0.03132186830043793, 0.009057292714715004, 0.11545923352241516, 0.31246423721313477, 0.018562141805887222, 0.020972223952412605, 0.01567009650170803, 0.010771157220005989, 0.012572611682116985, 0.008857020176947117, 0.002875644015148282, 0.003951703663915396, 0.005975358188152313, 0.013038826175034046, 0.3240981101989746], [0.0024681342765688896, 0.004996032454073429, 0.02663525566458702, 0.019920671358704567, 0.11852669715881348, 0.36220991611480713, 0.012977932579815388, 0.008488473482429981, 0.008891948498785496, 0.00610839668661356, 0.01048985030502081, 0.012336947955191135, 0.011766326613724232, 0.0027479107957333326, 0.003998419735580683, 0.013664686121046543, 0.37377238273620605], [0.0006503177573904395, 0.004740986507385969, 0.016093367710709572, 0.03929069638252258, 0.036912702023983, 0.4077463448047638, 0.0083429254591465, 0.005426348652690649, 0.012381486594676971, 0.006204079836606979, 0.009881153702735901, 0.005784002132713795, 0.006350136362016201, 0.0029678097926080227, 0.004570384975522757, 0.009530861862003803, 0.42312631011009216], [0.0010214517824351788, 0.027149803936481476, 0.043224602937698364, 0.04294352978467941, 0.013902762904763222, 0.36381515860557556, 0.016482103615999222, 0.014110058546066284, 0.03177379071712494, 0.008538416586816311, 0.016034452244639397, 0.015803853049874306, 0.004429541062563658, 0.002999021438881755, 0.00309337698854506, 0.019298551604151726, 0.3753794729709625], [0.013143510557711124, 0.03452545776963234, 0.029296696186065674, 0.01624143496155739, 0.0040252357721328735, 0.25596532225608826, 0.028565166518092155, 0.023865701630711555, 0.02440827526152134, 0.01673075184226036, 0.03549576178193092, 0.02963970974087715, 0.03463161736726761, 0.11361231654882431, 0.043143488466739655, 0.0359220951795578, 0.2607874274253845], [0.0005859640659764409, 0.00421966752037406, 0.0304410457611084, 0.012703359127044678, 0.06402577459812164, 0.36856701970100403, 0.01825401373207569, 0.016768882051110268, 0.016583941876888275, 0.009370322339236736, 0.01634148135781288, 0.023013344034552574, 0.01154485996812582, 0.0033107679337263107, 0.0061307004652917385, 0.016710249707102776, 0.38142848014831543], [0.0011901101097464561, 0.01384146697819233, 0.02261945605278015, 0.00713687390089035, 0.17730063199996948, 0.3048979640007019, 0.012252973392605782, 0.0357365719974041, 0.014828757382929325, 0.01066965889185667, 0.015467341057956219, 0.016321443021297455, 0.01213481742888689, 0.009721986949443817, 0.0156781654804945, 0.014146126806735992, 0.31605565547943115], [0.00048708581016398966, 0.0015397840179502964, 0.020487653091549873, 0.008557535707950592, 0.010052883997559547, 0.40871191024780273, 0.0075721037574112415, 0.0110563263297081, 0.02761998027563095, 0.016603579744696617, 0.023043643683195114, 0.014415320940315723, 0.0073043606244027615, 0.0027321111410856247, 0.0026046824641525745, 0.011422018520534039, 0.42578890919685364], [0.0003543811326380819, 0.004109828732907772, 0.023577461019158363, 0.007221638225018978, 0.010980814695358276, 0.3686993420124054, 0.008469087071716785, 0.020953770726919174, 0.022631168365478516, 0.04748958349227905, 0.03427116945385933, 0.017405811697244644, 0.010583546943962574, 0.006159454584121704, 0.010084313340485096, 0.022903243079781532, 0.3841054141521454], [0.0006075790734030306, 0.0038110725581645966, 0.025148576125502586, 0.017370514571666718, 0.02249809168279171, 0.35028645396232605, 0.015180419199168682, 0.019289089366793633, 0.027348851785063744, 0.024659382179379463, 0.056532878428697586, 0.01735147461295128, 0.01663198135793209, 0.007348248735070229, 0.014101103879511356, 0.018182000145316124, 0.3636523187160492], [0.001276108669117093, 0.0026143528521060944, 0.027368007227778435, 0.009514599107205868, 0.04243889078497887, 0.3722313344478607, 0.013800058513879776, 0.01333552598953247, 0.01215767115354538, 0.013874214142560959, 0.025489550083875656, 0.02792678400874138, 0.0219037514179945, 0.00402042968198657, 0.007385497447103262, 0.01944700814783573, 0.38521626591682434], [0.0002959351404570043, 0.0020505436696112156, 0.0178506001830101, 0.004280950408428907, 0.0035021300427615643, 0.38046979904174805, 0.009544748812913895, 0.0154102873057127, 0.015685053542256355, 0.011735287494957447, 0.03900917246937752, 0.022873826324939728, 0.04131555184721947, 0.009710383601486683, 0.016277698799967766, 0.014443300664424896, 0.39554470777511597], [0.0008328131516464055, 0.0035333798732608557, 0.010972613468766212, 0.0045646559447050095, 0.05841260030865669, 0.33175408840179443, 0.00652679055929184, 0.010772940702736378, 0.012339622713625431, 0.012212409637868404, 0.013103439472615719, 0.009248980320990086, 0.02296219952404499, 0.09514404833316803, 0.052700407803058624, 0.010692276060581207, 0.3442266285419464], [0.00046085071517154574, 0.0019143593963235617, 0.014879899099469185, 0.005335604771971703, 0.010660521686077118, 0.3114052414894104, 0.009831681847572327, 0.015383126214146614, 0.014872334897518158, 0.02657659538090229, 0.026061030104756355, 0.015878554433584213, 0.03705916553735733, 0.0381053201854229, 0.13035142421722412, 0.01748838648200035, 0.32373595237731934], [0.0006094921263866127, 0.006091001909226179, 0.022159233689308167, 0.013296100310981274, 0.019250784069299698, 0.39450937509536743, 0.013079353608191013, 0.01685570552945137, 0.015032617375254631, 0.010655424557626247, 0.014353615231812, 0.014095754362642765, 0.008823973126709461, 0.008039773441851139, 0.010948363691568375, 0.023108532652258873, 0.40909087657928467], [0.01341425534337759, 0.03519280254840851, 0.029303068295121193, 0.016470912843942642, 0.004177981987595558, 0.2539690434932709, 0.028686828911304474, 0.023955365642905235, 0.024363987147808075, 0.016812413930892944, 0.03537944704294205, 0.02974861115217209, 0.03482182323932648, 0.11550600081682205, 0.04347052052617073, 0.036010272800922394, 0.2587166428565979]], [[0.007389470934867859, 0.01829157955944538, 0.00845251139253378, 0.013051776215434074, 0.017004946246743202, 0.43078628182411194, 0.005508810747414827, 0.003723839530721307, 0.0026270251255482435, 0.002239653142169118, 0.0016685979207977653, 0.005715097766369581, 0.005864901002496481, 0.009299086406826973, 0.004129218868911266, 0.021531783044338226, 0.44271546602249146], [0.004789163824170828, 0.21338936686515808, 0.013958451338112354, 0.04122016206383705, 0.020148109644651413, 0.21852339804172516, 0.015935339033603668, 0.09450928121805191, 0.004145747981965542, 0.04075729474425316, 0.010015474632382393, 0.009052900597453117, 0.007581078913062811, 0.013277600519359112, 0.009992029517889023, 0.05867085978388786, 0.22403378784656525], [0.0040914262644946575, 0.05104576423764229, 0.019646286964416504, 0.03210711479187012, 0.01773713156580925, 0.370922714471817, 0.014878179877996445, 0.009834961034357548, 0.005241227336227894, 0.012684490531682968, 0.002648735884577036, 0.015206418931484222, 0.009653091430664062, 0.012623204849660397, 0.00997329130768776, 0.030581548810005188, 0.3811243772506714], [0.0009611447458155453, 0.033308323472738266, 0.0342724472284317, 0.09277479350566864, 0.02615957148373127, 0.27097901701927185, 0.014527857303619385, 0.014633425511419773, 0.005486134439706802, 0.03221901133656502, 0.0064330692403018475, 0.020369602367281914, 0.024121297523379326, 0.032885581254959106, 0.06195885315537453, 0.0493503212928772, 0.27955949306488037], [0.0017678893636912107, 0.049694374203681946, 0.01846885494887829, 0.04765691980719566, 0.03602023422718048, 0.3219151794910431, 0.013291195966303349, 0.038917139172554016, 0.004317349288612604, 0.021138550713658333, 0.006432921625673771, 0.00637804763391614, 0.005297844763845205, 0.012889263220131397, 0.019916506484150887, 0.06489411741495132, 0.33100372552871704], [0.036235976964235306, 0.19028089940547943, 0.02416452392935753, 0.06858456879854202, 0.03403222933411598, 0.1045173853635788, 0.0205293670296669, 0.047064173966646194, 0.008629909716546535, 0.01852097176015377, 0.013740534894168377, 0.018262971192598343, 0.05919438228011131, 0.1352081596851349, 0.0873369500041008, 0.02888587862253189, 0.10481107980012894], [0.0014928648015484214, 0.05016807094216347, 0.006042085122317076, 0.012665248475968838, 0.004569854587316513, 0.4031609892845154, 0.009498868137598038, 0.011989490129053593, 0.0030663982033729553, 0.016210895031690598, 0.001951287966221571, 0.008935458026826382, 0.006942552048712969, 0.012140193022787571, 0.010401125997304916, 0.025691550225019455, 0.415073037147522], [0.0035383175127208233, 0.11680669337511063, 0.009164322167634964, 0.03344154357910156, 0.010600870475172997, 0.3171765208244324, 0.009809310548007488, 0.039994943886995316, 0.003386025782674551, 0.021950284019112587, 0.0041715726256370544, 0.008025341667234898, 0.008206680417060852, 0.027053462341427803, 0.02701931819319725, 0.03434072807431221, 0.3253140151500702], [0.0006632587173953652, 0.010741904377937317, 0.006203365046530962, 0.006714809685945511, 0.0036519314162433147, 0.4373721182346344, 0.0037844055332243443, 0.002472192980349064, 0.012317026033997536, 0.02224021963775158, 0.0014940665569156408, 0.011379499919712543, 0.009332661516964436, 0.004507684614509344, 0.006196343339979649, 0.008340946398675442, 0.4525875449180603], [0.00038393604336306453, 0.046612706035375595, 0.009713984094560146, 0.03533177077770233, 0.007008887827396393, 0.33961647748947144, 0.0029100507963448763, 0.012486566789448261, 0.00879690796136856, 0.08765149116516113, 0.00300618470646441, 0.012695442885160446, 0.018511854112148285, 0.011330066248774529, 0.028972091153264046, 0.023272981867194176, 0.35169869661331177], [0.0002460178511682898, 0.015072574838995934, 0.007381409872323275, 0.020201807841658592, 0.005909177474677563, 0.40245094895362854, 0.002557218773290515, 0.005336532834917307, 0.005218052305281162, 0.037311021238565445, 0.006556379608809948, 0.00956442579627037, 0.010577062144875526, 0.012790646404027939, 0.023777257651090622, 0.01754939742386341, 0.4175001382827759], [0.0014701661420986056, 0.015442299656569958, 0.006827336270362139, 0.011002520099282265, 0.0038052706513553858, 0.4084694981575012, 0.004630680661648512, 0.004363355226814747, 0.004840238019824028, 0.010694161988794804, 0.0035577225498855114, 0.02847881056368351, 0.02916611358523369, 0.01957547850906849, 0.015987366437911987, 0.010356932878494263, 0.4213320314884186], [0.0003888678038492799, 0.013530793599784374, 0.0059682829305529594, 0.008791477419435978, 0.0018907168414443731, 0.38568565249443054, 0.001964295282959938, 0.0037467717193067074, 0.002661838661879301, 0.01328457985073328, 0.0025560499634593725, 0.025804661214351654, 0.042466387152671814, 0.035395167768001556, 0.04943682998418808, 0.007418293040245771, 0.3990093767642975], [0.003990862984210253, 0.01700129173696041, 0.007978437468409538, 0.013954945839941502, 0.0047778296284377575, 0.39596399664878845, 0.002993785310536623, 0.006727760657668114, 0.002855227328836918, 0.013028956018388271, 0.004195814020931721, 0.021579060703516006, 0.041043445467948914, 0.020061884075403214, 0.025666149333119392, 0.009758359752595425, 0.40842220187187195], [0.0003185365058016032, 0.011468544602394104, 0.007245360873639584, 0.013416090980172157, 0.0031921572517603636, 0.32317882776260376, 0.0029380100313574076, 0.012032217346131802, 0.001776980934664607, 0.011103610508143902, 0.004212576895952225, 0.01774551160633564, 0.04200638458132744, 0.04227885231375694, 0.1594015210866928, 0.013156195171177387, 0.33452868461608887], [0.0036993299145251513, 0.11480454355478287, 0.008078468963503838, 0.029468156397342682, 0.012394116260111332, 0.3358854055404663, 0.009418094530701637, 0.01668315753340721, 0.002604477107524872, 0.01212986744940281, 0.0027530898805707693, 0.00864039920270443, 0.012647895142436028, 0.028422106057405472, 0.02417171187698841, 0.03309774026274681, 0.34510135650634766], [0.03643961250782013, 0.19183850288391113, 0.024208668619394302, 0.0689311996102333, 0.03423827141523361, 0.10233719646930695, 0.020557403564453125, 0.047402188181877136, 0.008666301146149635, 0.018653254956007004, 0.013825536705553532, 0.018277935683727264, 0.059385593980550766, 0.13596506416797638, 0.08778192102909088, 0.028880709782242775, 0.10261073708534241]]]], \\\"left_text\\\": [\\\"[CLS]\\\", \\\"Kedi\\\", \\\"\\\\u00e7ok\\\", \\\"\\\\u00fczg\\\\u00fcn\\\", \\\".\\\", \\\"[SEP]\\\", \\\"\\\\u00c7\\\\u00fcnk\\\\u00fc\\\", \\\"o\\\", \\\"her\\\", \\\"zamanki\\\", \\\"gibi\\\", \\\"\\\\u00e7ok\\\", \\\"fazla\\\", \\\"yemek\\\", \\\"yedi\\\", \\\".\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"[CLS]\\\", \\\"Kedi\\\", \\\"\\\\u00e7ok\\\", \\\"\\\\u00fczg\\\\u00fcn\\\", \\\".\\\", \\\"[SEP]\\\", \\\"\\\\u00c7\\\\u00fcnk\\\\u00fc\\\", \\\"o\\\", \\\"her\\\", \\\"zamanki\\\", \\\"gibi\\\", \\\"\\\\u00e7ok\\\", \\\"fazla\\\", \\\"yemek\\\", \\\"yedi\\\", \\\".\\\", \\\"[SEP]\\\"]}], \\\"default_filter\\\": \\\"0\\\", \\\"root_div_id\\\": \\\"bertviz-cc7b8cf4d43a4e4eb6c485f2c5030b2a\\\", \\\"layer\\\": null, \\\"heads\\\": null}; // HACK: {\\\"attention\\\": [{\\\"name\\\": null, \\\"attn\\\": [[[[0.15172983705997467, 0.03602192923426628, 0.011519229970872402, 0.009708438068628311, 0.5201394557952881, 0.039401836693286896, 0.003433539066463709, 0.0027151210233569145, 0.007104034069925547, 0.00439362833276391, 0.005179014056921005, 0.004345869179815054, 0.0039680334739387035, 0.00530265225097537, 0.004778829403221607, 0.17823965847492218, 0.012018831446766853], [0.11166922003030777, 0.15655943751335144, 0.085210882127285, 0.10402354598045349, 0.06748230755329132, 0.22707705199718475, 0.010417472571134567, 0.015098965726792812, 0.012959935702383518, 0.01873954012989998, 0.013064381666481495, 0.01866372674703598, 0.02187994308769703, 0.02812267653644085, 0.03659956157207489, 0.017718659713864326, 0.054712627083063126], [0.0639045238494873, 0.0697217583656311, 0.07830429077148438, 0.15965399146080017, 0.050683580338954926, 0.11817971616983414, 0.111325703561306, 0.037369582802057266, 0.026879049837589264, 0.05813305079936981, 0.06866567581892014, 0.030368594452738762, 0.03219826892018318, 0.009078938513994217, 0.025183146819472313, 0.019907809793949127, 0.0404423326253891], [0.04552620276808739, 0.11023679375648499, 0.07139045000076294, 0.1157238557934761, 0.06706351786851883, 0.12181930243968964, 0.07223758846521378, 0.029046904295682907, 0.040109213441610336, 0.041717369109392166, 0.03663429990410805, 0.038344189524650574, 0.042676955461502075, 0.05530094727873802, 0.028757749125361443, 0.03481002151966095, 0.04860463738441467], [0.02762548066675663, 0.05650839954614639, 0.19846564531326294, 0.042319584637880325, 0.043236006051301956, 0.06057378649711609, 0.10042395442724228, 0.10647526383399963, 0.04519549757242203, 0.034532636404037476, 0.06573418527841568, 0.06638502329587936, 0.0567871555685997, 0.015643347054719925, 0.025967467576265335, 0.02336244285106659, 0.030764026567339897], [0.1430010050535202, 0.027588024735450745, 0.03995853289961815, 0.023522619158029556, 0.46037939190864563, 0.05051485076546669, 0.010643431916832924, 0.013098734430968761, 0.01328170858323574, 0.008960164152085781, 0.011160259135067463, 0.009600001387298107, 0.009130970574915409, 0.005839348770678043, 0.008544521406292915, 0.15099503099918365, 0.013781429268419743], [0.006188470404595137, 0.016947375610470772, 0.06570493429899216, 0.012776965275406837, 0.006801693234592676, 0.008493772707879543, 0.08893860131502151, 0.09780513495206833, 0.11793307960033417, 0.10863890498876572, 0.1067320704460144, 0.14459553360939026, 0.11397190392017365, 0.013504608534276485, 0.042676009237766266, 0.016353411599993706, 0.03193755820393562], [0.02195589989423752, 0.010027516633272171, 0.023449180647730827, 0.007160264998674393, 0.018338052555918694, 0.026086095720529556, 0.2658236622810364, 0.07322491705417633, 0.08309534937143326, 0.08246459811925888, 0.07888951152563095, 0.06710385531187057, 0.047608423978090286, 0.04059827700257301, 0.026896467432379723, 0.04158347100019455, 0.08569449931383133], [0.02820672281086445, 0.008694577030837536, 0.037267863750457764, 0.009319874458014965, 0.02354484051465988, 0.02574782446026802, 0.20663191378116608, 0.10144655406475067, 0.060880597680807114, 0.05715969577431679, 0.0994875505566597, 0.1058533787727356, 0.062161147594451904, 0.02091745287179947, 0.036712367087602615, 0.0450543649494648, 0.07091327756643295], [0.01247900165617466, 0.009786446578800678, 0.04010119289159775, 0.02490730956196785, 0.010473011061549187, 0.03205065429210663, 0.19481593370437622, 0.11076943576335907, 0.07567861676216125, 0.027317717671394348, 0.07861822843551636, 0.10401590913534164, 0.08521135151386261, 0.03817230835556984, 0.048578690737485886, 0.022820742800831795, 0.08420345187187195], [0.01660824753344059, 0.017344631254673004, 0.07684152573347092, 0.013052196241915226, 0.011258699931204319, 0.02498471923172474, 0.2306169867515564, 0.09502951800823212, 0.054061129689216614, 0.06603126972913742, 0.04215690866112709, 0.13671469688415527, 0.06342019140720367, 0.02712908945977688, 0.05118886008858681, 0.019796699285507202, 0.05376468226313591], [0.0259944386780262, 0.01334423292428255, 0.024478618055582047, 0.026071378961205482, 0.013537050224840641, 0.02221490815281868, 0.1993635594844818, 0.08340154588222504, 0.07452157139778137, 0.11707975715398788, 0.08825168013572693, 0.06273528188467026, 0.059962525963783264, 0.02503855526447296, 0.05056324973702431, 0.03620854765176773, 0.07723302394151688], [0.029448624700307846, 0.023408232256770134, 0.028921766206622124, 0.027036651968955994, 0.014881089329719543, 0.022565018385648727, 0.18095636367797852, 0.13240697979927063, 0.059318989515304565, 0.10950278490781784, 0.08143047988414764, 0.07039877027273178, 0.028852811083197594, 0.026988761499524117, 0.04583051800727844, 0.036206088960170746, 0.08184603601694107], [0.044679757207632065, 0.03142041340470314, 0.0064611840061843395, 0.02344466745853424, 0.009687481448054314, 0.040563929826021194, 0.045802466571331024, 0.03978283330798149, 0.039647456258535385, 0.0916033461689949, 0.07849393784999847, 0.03234991058707237, 0.04045935347676277, 0.15572752058506012, 0.08853317052125931, 0.03836170583963394, 0.1929807960987091], [0.017825789749622345, 0.010381723754107952, 0.03195717930793762, 0.007078188471496105, 0.013292069546878338, 0.02857375331223011, 0.08835947513580322, 0.12844055891036987, 0.10492540150880814, 0.04139178618788719, 0.1204717829823494, 0.09044390916824341, 0.06557557731866837, 0.059024859219789505, 0.026393795385956764, 0.04227832332253456, 0.12358573824167252], [0.014191350899636745, 0.011106867343187332, 0.05571374669671059, 0.007777968887239695, 0.012786926701664925, 0.021780548617243767, 0.1520397812128067, 0.1414688378572464, 0.07390046119689941, 0.04343872144818306, 0.0977506935596466, 0.12619714438915253, 0.09768674522638321, 0.02325073815882206, 0.0289755929261446, 0.026415375992655754, 0.06551854312419891], [0.14314155280590057, 0.006840723101049662, 0.013977890834212303, 0.004337796010077, 0.2004075050354004, 0.023475002497434616, 0.02142065204679966, 0.02684691920876503, 0.03115285560488701, 0.015918470919132233, 0.02356852777302265, 0.029545804485678673, 0.022664353251457214, 0.0149063840508461, 0.01888420432806015, 0.3543573021888733, 0.048554159700870514]], [[0.046507660299539566, 0.02191055752336979, 0.015883080661296844, 0.03996896743774414, 0.009900772012770176, 0.030054301023483276, 0.11451416462659836, 0.01791187934577465, 0.04524122178554535, 0.06824879348278046, 0.0872175544500351, 0.060051847249269485, 0.09105469286441803, 0.08289248496294022, 0.07816328853368759, 0.03000182844698429, 0.1604768931865692], [0.18249541521072388, 0.00528589216992259, 0.04165491834282875, 0.10165663063526154, 0.08287683129310608, 0.20110855996608734, 0.03756623715162277, 0.022864121943712234, 0.022745909169316292, 0.033622484654188156, 0.02538977563381195, 0.022242194041609764, 0.031169816851615906, 0.027557028457522392, 0.027529066428542137, 0.052030377089977264, 0.08220469206571579], [0.1607489287853241, 0.07040300220251083, 0.09801826626062393, 0.013637891039252281, 0.020654160529375076, 0.16276966035366058, 0.004876517225056887, 0.03344699367880821, 0.0508270189166069, 0.011766438372433186, 0.026778703555464745, 0.11008089035749435, 0.05688396841287613, 0.035413697361946106, 0.043356187641620636, 0.022234182804822922, 0.07810349762439728], [0.10532896965742111, 0.06892083585262299, 0.03895149752497673, 0.0018750863382592797, 0.04017641022801399, 0.1982523649930954, 0.01955670863389969, 0.018712038174271584, 0.030016474425792694, 0.017138946801424026, 0.02672896906733513, 0.03792289271950722, 0.027595527470111847, 0.21758531033992767, 0.04711436852812767, 0.029367154464125633, 0.07475635409355164], [0.0964968353509903, 0.04565321281552315, 0.04463181644678116, 0.04678975045681, 0.11913944780826569, 0.1733878254890442, 0.022867601364850998, 0.015372692607343197, 0.02858438529074192, 0.02311592921614647, 0.025439536198973656, 0.03103160299360752, 0.04111884906888008, 0.02158229611814022, 0.0272016953676939, 0.10796493291854858, 0.12962162494659424], [0.13985924422740936, 0.055597614496946335, 0.0696016177535057, 0.06336763501167297, 0.04512467235326767, 0.1691349595785141, 0.03789302334189415, 0.01983051933348179, 0.03535506874322891, 0.02937369979918003, 0.03717808797955513, 0.046440668404102325, 0.04833747819066048, 0.04548201337456703, 0.0314766988158226, 0.03584878519177437, 0.0900982916355133], [0.13597960770130157, 0.08111611008644104, 0.029340244829654694, 0.018090708181262016, 0.045430224388837814, 0.12326869368553162, 0.005117869004607201, 0.0433269627392292, 0.061312831938266754, 0.03088008239865303, 0.02436848357319832, 0.04036809504032135, 0.047143902629613876, 0.03482392802834511, 0.043732900172472, 0.06495647132396698, 0.1707429438829422], [0.18423523008823395, 0.09899182617664337, 0.0213018748909235, 0.014017406851053238, 0.028807956725358963, 0.16591353714466095, 0.01246761716902256, 0.008142043836414814, 0.041308723390102386, 0.022500423714518547, 0.02498832531273365, 0.03151017054915428, 0.037040989845991135, 0.0657428503036499, 0.03044399432837963, 0.043235041201114655, 0.16935203969478607], [0.18798446655273438, 0.031955935060977936, 0.04524629935622215, 0.016354287043213844, 0.02328665740787983, 0.11794894933700562, 0.02542962320148945, 0.03893161937594414, 0.05935463309288025, 0.03805561363697052, 0.03268374502658844, 0.06688456237316132, 0.0466805174946785, 0.031513795256614685, 0.08520397543907166, 0.035553909838199615, 0.11693137884140015], [0.08564174175262451, 0.053652916103601456, 0.026421118527650833, 0.034263089299201965, 0.013434607535600662, 0.17532460391521454, 0.03320932760834694, 0.02782122790813446, 0.05141621083021164, 0.0048033627681434155, 0.033586371690034866, 0.031075015664100647, 0.0425683856010437, 0.030267659574747086, 0.03213616460561752, 0.018521016463637352, 0.3058571517467499], [0.18621373176574707, 0.03089320659637451, 0.026003779843449593, 0.03008127212524414, 0.021619800478219986, 0.1390073001384735, 0.025842461735010147, 0.03310554474592209, 0.06470513343811035, 0.025242557749152184, 0.02501112036406994, 0.03916361555457115, 0.0510932020843029, 0.033722322434186935, 0.04671904817223549, 0.03676930442452431, 0.18480663001537323], [0.1465671956539154, 0.036999017000198364, 0.0625590905547142, 0.01033049263060093, 0.013968157581984997, 0.11057520657777786, 0.008678074926137924, 0.03310929983854294, 0.0641762986779213, 0.017295053228735924, 0.03285762667655945, 0.12949813902378082, 0.07665302604436874, 0.03441951051354408, 0.056940607726573944, 0.028316762298345566, 0.13705646991729736], [0.17547136545181274, 0.05996030941605568, 0.04468837007880211, 0.018037989735603333, 0.020580561831593513, 0.12783898413181305, 0.018151208758354187, 0.06111655384302139, 0.07276168465614319, 0.028605081140995026, 0.02280060574412346, 0.06253888458013535, 0.018605975434184074, 0.02368944138288498, 0.03742364048957825, 0.03346725180745125, 0.17426206171512604], [0.3223859965801239, 0.03271264210343361, 0.017399827018380165, 0.04920370131731033, 0.03222552686929703, 0.17234139144420624, 0.028334390372037888, 0.0212506465613842, 0.0332934595644474, 0.020200077444314957, 0.02823316678404808, 0.027051668614149094, 0.029492558911442757, 0.0020407575648278, 0.008907157927751541, 0.04866462200880051, 0.1262623816728592], [0.11618609726428986, 0.034975044429302216, 0.03836800530552864, 0.02985098958015442, 0.02463388629257679, 0.22005058825016022, 0.05025310814380646, 0.010841788724064827, 0.03445679321885109, 0.016473015770316124, 0.026720253750681877, 0.0383351668715477, 0.040983010083436966, 0.017477601766586304, 0.005592206958681345, 0.03507698327302933, 0.2597254514694214], [0.08956278860569, 0.03471346199512482, 0.029264943674206734, 0.030021242797374725, 0.09639254212379456, 0.1269408017396927, 0.029759123921394348, 0.020398443564772606, 0.03607820346951485, 0.028274307027459145, 0.028503336012363434, 0.034946225583553314, 0.049447860568761826, 0.023315005004405975, 0.03642859682440758, 0.1317785084247589, 0.17417456209659576], [0.1296796202659607, 0.04061632603406906, 0.04563290625810623, 0.03732740879058838, 0.03049679845571518, 0.13418199121952057, 0.05059042200446129, 0.021518487483263016, 0.04610989987850189, 0.029633181169629097, 0.03904658555984497, 0.0577310211956501, 0.06226278841495514, 0.0452558770775795, 0.0446174293756485, 0.04693031683564186, 0.13836897909641266]], [[0.018831845372915268, 0.004736183676868677, 0.005442861933261156, 0.000735588779207319, 0.09333330392837524, 0.025406569242477417, 0.017140189185738564, 0.024049926549196243, 0.012182410806417465, 0.011662151664495468, 0.042329274117946625, 0.036789800971746445, 0.03892641142010689, 0.0296642929315567, 0.027834003791213036, 0.3790564239025116, 0.23187889158725739], [0.2936165928840637, 0.09433145076036453, 0.06504497677087784, 0.1301838904619217, 0.051823314279317856, 0.1481350064277649, 0.00958621222525835, 0.017842864617705345, 0.012296803295612335, 0.04596104472875595, 0.01327743474394083, 0.011832259595394135, 0.021999822929501534, 0.02378777414560318, 0.014063704758882523, 0.015279155224561691, 0.030937695875763893], [0.11107639223337173, 0.13906823098659515, 0.06190045550465584, 0.22251494228839874, 0.06695281714200974, 0.09406744688749313, 0.04424678161740303, 0.017267215996980667, 0.01576097123324871, 0.07216834276914597, 0.018140459433197975, 0.015515298582613468, 0.03229588642716408, 0.014769651927053928, 0.02991398796439171, 0.023406900465488434, 0.020934246480464935], [0.19079723954200745, 0.09425482898950577, 0.10892703384160995, 0.16426384449005127, 0.10277498513460159, 0.1579437255859375, 0.019285593181848526, 0.008044099435210228, 0.011323319748044014, 0.024154961109161377, 0.012115134857594967, 0.018770815804600716, 0.022431204095482826, 0.007011867593973875, 0.010722610168159008, 0.024775976315140724, 0.022402696311473846], [0.175317645072937, 0.03871984779834747, 0.02949196845293045, 0.037185680121183395, 0.215867280960083, 0.12759672105312347, 0.008665617555379868, 0.01697557605803013, 0.013135290704667568, 0.01997368596494198, 0.02383860945701599, 0.016092780977487564, 0.024618515744805336, 0.011834541335701942, 0.06274130940437317, 0.1244683712720871, 0.05347650125622749], [0.14893117547035217, 0.01706712692975998, 0.03871823102235794, 0.02139931358397007, 0.42078638076782227, 0.07447496056556702, 0.009513402357697487, 0.010475722141563892, 0.007996272295713425, 0.010005953721702099, 0.01565241441130638, 0.013907591812312603, 0.02115902304649353, 0.007010628469288349, 0.007234632503241301, 0.15585248172283173, 0.019814709201455116], [0.01580856554210186, 0.0203571617603302, 0.010134493000805378, 0.05432276427745819, 0.006021759007126093, 0.017976487055420876, 0.08052720874547958, 0.021958494558930397, 0.015966957435011864, 0.46530553698539734, 0.027355721220374107, 0.03324475511908531, 0.06291308254003525, 0.022438958287239075, 0.07166015356779099, 0.019043514505028725, 0.05496444180607796], [0.023407433182001114, 0.03728877380490303, 0.021540286019444466, 0.1190146878361702, 0.014427329413592815, 0.016145458444952965, 0.17134825885295868, 0.0305094625800848, 0.022668669000267982, 0.20528820157051086, 0.06365516781806946, 0.04956831410527229, 0.04174923524260521, 0.03670331463217735, 0.07499846071004868, 0.03656122088432312, 0.03512564301490784], [0.043676119297742844, 0.012691516429185867, 0.03990607708692551, 0.03595038875937462, 0.044383399188518524, 0.03674837201833725, 0.09794873744249344, 0.02121439203619957, 0.023672716692090034, 0.0985921323299408, 0.051807235926389694, 0.09752828627824783, 0.09628051519393921, 0.02852017618715763, 0.07838697731494904, 0.10614487528800964, 0.08654813468456268], [0.06923000514507294, 0.010032872669398785, 0.015056343749165535, 0.009506461210548878, 0.041144415736198425, 0.07332136482000351, 0.09276678413152695, 0.017311913892626762, 0.02708170935511589, 0.02204502560198307, 0.052585966885089874, 0.04553552344441414, 0.09165069460868835, 0.03750501945614815, 0.02647843025624752, 0.10912682861089706, 0.2596205174922943], [0.04658333584666252, 0.023817330598831177, 0.02588820829987526, 0.052182573825120926, 0.020490484312176704, 0.022065825760364532, 0.16341176629066467, 0.03860262408852577, 0.03643636777997017, 0.19014877080917358, 0.0336809903383255, 0.07629527896642685, 0.07203620672225952, 0.02746056579053402, 0.0470186248421669, 0.06206895411014557, 0.06181207299232483], [0.05666286125779152, 0.024739157408475876, 0.014760748483240604, 0.0339224599301815, 0.02248079888522625, 0.024661554023623466, 0.12890802323818207, 0.03852437436580658, 0.036454908549785614, 0.21976353228092194, 0.035975705832242966, 0.03747959062457085, 0.06270486116409302, 0.03652512654662132, 0.09809992462396622, 0.055251818150281906, 0.07308457791805267], [0.06662280112504959, 0.010277745313942432, 0.01562422327697277, 0.01353770587593317, 0.028486521914601326, 0.04629530757665634, 0.11029106378555298, 0.023671913892030716, 0.028479263186454773, 0.14740148186683655, 0.03645043820142746, 0.05129881575703621, 0.024572713300585747, 0.053838081657886505, 0.13654668629169464, 0.0749688521027565, 0.13163623213768005], [0.024201825261116028, 0.07003425806760788, 0.0333748422563076, 0.04280366748571396, 0.030523566529154778, 0.027497071772813797, 0.028364980593323708, 0.030623335391283035, 0.03612260892987251, 0.2119935303926468, 0.03046117164194584, 0.056622669100761414, 0.05015914514660835, 0.11630487442016602, 0.0881982296705246, 0.05883415788412094, 0.06387994438409805], [0.0328550860285759, 0.05941334366798401, 0.008655448444187641, 0.021845465525984764, 0.024286191910505295, 0.019966766238212585, 0.056222233921289444, 0.0459485724568367, 0.042055945843458176, 0.11709640175104141, 0.03796544671058655, 0.026037421077489853, 0.03131373971700668, 0.09508852660655975, 0.24900314211845398, 0.06874523311853409, 0.06350108236074448], [0.06976195424795151, 0.010884666815400124, 0.008944093249738216, 0.007829769514501095, 0.08297999948263168, 0.03447351232171059, 0.02603333815932274, 0.029648277908563614, 0.026699023321270943, 0.052135903388261795, 0.04130580648779869, 0.03516894206404686, 0.04461676999926567, 0.024241026490926743, 0.12175359576940536, 0.2492116242647171, 0.13431163132190704], [0.09649966657161713, 0.0029907855205237865, 0.009061957709491253, 0.0038765864446759224, 0.15883465111255646, 0.020066147670149803, 0.02898135595023632, 0.02160181850194931, 0.020815808326005936, 0.028348954394459724, 0.03033929131925106, 0.033541541546583176, 0.0353727713227272, 0.022646700963377953, 0.021519554778933525, 0.40827763080596924, 0.05722476914525032]], [[0.03762385621666908, 0.00321191200055182, 0.0020067195873707533, 0.0015656303148716688, 0.5348219275474548, 0.033240124583244324, 0.0015513271791860461, 0.0016331785591319203, 0.0030143868643790483, 0.0011729395482689142, 0.0020486144348978996, 0.00205893418751657, 0.0015008716145530343, 0.0022200788371264935, 0.0028636413626372814, 0.34614890813827515, 0.023316936567425728], [0.03251032903790474, 0.1435871124267578, 0.11019901186227798, 0.2490484118461609, 0.04118241369724274, 0.08373666554689407, 0.03391548618674278, 0.03425953537225723, 0.023543622344732285, 0.04412907361984253, 0.024379653856158257, 0.041362032294273376, 0.01720701903104782, 0.05692378431558609, 0.030059456825256348, 0.015712207183241844, 0.01824418269097805], [0.028876565396785736, 0.052271705120801926, 0.05051072686910629, 0.27080291509628296, 0.03923778235912323, 0.09244842827320099, 0.0765800029039383, 0.024461019784212112, 0.01750948466360569, 0.07376627624034882, 0.032293159514665604, 0.01977558806538582, 0.06432618945837021, 0.04040783271193504, 0.08118205517530441, 0.015201709233224392, 0.02034863457083702], [0.024892916902899742, 0.1515081375837326, 0.10384903848171234, 0.20982113480567932, 0.032649289816617966, 0.1585417240858078, 0.04095492884516716, 0.015605413354933262, 0.01606770232319832, 0.0517570897936821, 0.020059697329998016, 0.029866212978959084, 0.03778328374028206, 0.0239137951284647, 0.05277583375573158, 0.009259340353310108, 0.020694484934210777], [0.1695827841758728, 0.03151141107082367, 0.036384083330631256, 0.0161871500313282, 0.17089995741844177, 0.2632284462451935, 0.016890497878193855, 0.01857987977564335, 0.019261324778199196, 0.011038525030016899, 0.01785021647810936, 0.016353197395801544, 0.011410134844481945, 0.014987259171903133, 0.022887105122208595, 0.07266654819250107, 0.09028144925832748], [0.06200914829969406, 0.011132774874567986, 0.01019221544265747, 0.010860116221010685, 0.5155831575393677, 0.09008637070655823, 0.004156305454671383, 0.004022016655653715, 0.007973875850439072, 0.003890010993927717, 0.005363801494240761, 0.004262626636773348, 0.0050575933419167995, 0.005745577625930309, 0.008030876517295837, 0.21527966856956482, 0.03635389730334282], [0.0037288987077772617, 0.008785329759120941, 0.01808963716030121, 0.023385757580399513, 0.011148317717015743, 0.01384634617716074, 0.07657229900360107, 0.057390715926885605, 0.0747787207365036, 0.13338623940944672, 0.05696526914834976, 0.09613747149705887, 0.0993281751871109, 0.052537377923727036, 0.14795400202274323, 0.04441911354660988, 0.08154639601707458], [0.0025443686172366142, 0.017277130857110023, 0.01782327890396118, 0.017148306593298912, 0.010758239775896072, 0.010843385010957718, 0.16482014954090118, 0.02511817403137684, 0.04805496707558632, 0.22187046706676483, 0.04292800650000572, 0.0729229599237442, 0.06481342017650604, 0.06355906277894974, 0.1646978259086609, 0.028502188622951508, 0.026318123564124107], [0.004070003516972065, 0.01297621801495552, 0.01642422564327717, 0.032223865389823914, 0.010156270116567612, 0.014474478550255299, 0.09860796481370926, 0.04039570316672325, 0.021504033356904984, 0.26130354404449463, 0.05184362456202507, 0.05138424411416054, 0.08083730190992355, 0.0533343181014061, 0.19163182377815247, 0.025833988562226295, 0.03299843147397041], [0.0039696283638477325, 0.005423189606517553, 0.020749526098370552, 0.022000379860401154, 0.007914653047919273, 0.01669592782855034, 0.17298761010169983, 0.060635827481746674, 0.0843832790851593, 0.035770632326602936, 0.08762520551681519, 0.10159791260957718, 0.12474320828914642, 0.09598910808563232, 0.08218750357627869, 0.02648160792887211, 0.05084480345249176], [0.007642349228262901, 0.011725886724889278, 0.020625464618206024, 0.020534122362732887, 0.009496109560132027, 0.016767073422670364, 0.08806759119033813, 0.06262700259685516, 0.059616927057504654, 0.15557248890399933, 0.037479884922504425, 0.058298509567976, 0.0795147493481636, 0.1250847429037094, 0.1601475179195404, 0.03298686072230339, 0.05381273478269577], [0.0073730796575546265, 0.010757231153547764, 0.010796558111906052, 0.04863906651735306, 0.013325363397598267, 0.01481545064598322, 0.12231035530567169, 0.0412149615585804, 0.04093053564429283, 0.15917064249515533, 0.04534910246729851, 0.027685848996043205, 0.08584976196289062, 0.09747002273797989, 0.19481997191905975, 0.03864404931664467, 0.040848083794116974], [0.004130837507545948, 0.006830497644841671, 0.01563093438744545, 0.031070221215486526, 0.004315874073654413, 0.011302887462079525, 0.08881731331348419, 0.03582356497645378, 0.04844148829579353, 0.2349911481142044, 0.08700524270534515, 0.05324370414018631, 0.03660034015774727, 0.09624025225639343, 0.1844910830259323, 0.015651410445570946, 0.04541315883398056], [0.0059278602711856365, 0.04524882882833481, 0.01219371147453785, 0.09400496631860733, 0.005501487758010626, 0.01159763429313898, 0.09484226256608963, 0.061780963093042374, 0.035890355706214905, 0.18782781064510345, 0.07052528113126755, 0.05172702670097351, 0.0514364093542099, 0.10617047548294067, 0.11018475145101547, 0.015752045437693596, 0.03938819840550423], [0.005035032983869314, 0.014728805050253868, 0.027420829981565475, 0.030734917148947716, 0.012757380492985249, 0.017670931294560432, 0.12358426302671432, 0.07304581999778748, 0.07758408784866333, 0.09346292167901993, 0.08929935097694397, 0.10644778609275818, 0.07074858993291855, 0.1154966950416565, 0.05282822623848915, 0.037626057863235474, 0.05152827128767967], [0.08645294606685638, 0.012293098494410515, 0.014321533031761646, 0.005678038112819195, 0.0763595849275589, 0.1114368587732315, 0.03480837121605873, 0.03989862650632858, 0.03714438155293465, 0.024815691635012627, 0.031051646918058395, 0.04342411831021309, 0.02816867083311081, 0.034999579191207886, 0.054370347410440445, 0.1354525089263916, 0.22932401299476624], [0.02338925004005432, 0.0028729839250445366, 0.0028860101010650396, 0.0019887839443981647, 0.1864917278289795, 0.022322332486510277, 0.010623596608638763, 0.009286019019782543, 0.017365694046020508, 0.00848508533090353, 0.008857591077685356, 0.012607209384441376, 0.011632679030299187, 0.02242579497396946, 0.02132517658174038, 0.555998682975769, 0.08144135773181915]], [[0.1609298288822174, 0.003043812932446599, 0.03367576748132706, 0.004422726109623909, 8.699268619238865e-06, 0.1746368259191513, 0.01402330957353115, 0.01794847659766674, 0.049122683703899384, 0.007347594015300274, 0.0333673357963562, 0.04679480940103531, 0.030069582164287567, 0.0038837511092424393, 0.02782531827688217, 1.5841147614992224e-05, 0.39288368821144104], [0.3449762463569641, 0.06360480934381485, 0.003510260721668601, 0.0009000989375635982, 0.0014900385867804289, 0.027130212634801865, 0.0029501751996576786, 0.010734280571341515, 0.015009991824626923, 0.02154526859521866, 0.04359111934900284, 0.020425476133823395, 0.015687106177210808, 0.01157259289175272, 0.05543643608689308, 0.012257802300155163, 0.3491780459880829], [0.07943598926067352, 0.00025407629436813295, 0.06936480104923248, 0.0009103361517190933, 0.001612871652469039, 0.04357754439115524, 0.006287519820034504, 0.009923843666911125, 0.011757533065974712, 0.004443683195859194, 0.027126651257276535, 0.3563913404941559, 0.07795702666044235, 0.0030427039600908756, 0.008882646448910236, 0.013891033828258514, 0.2851405143737793], [0.22717972099781036, 0.0011661050375550985, 0.006023910362273455, 0.27582916617393494, 0.006621423177421093, 0.03615117445588112, 0.004337294027209282, 0.005939411465078592, 0.005262401886284351, 0.009283525869250298, 0.026177380234003067, 0.019985904917120934, 0.021108387038111687, 0.006912027485668659, 0.017675083130598068, 0.021175876259803772, 0.3091711699962616], [0.22022198140621185, 0.00461805472150445, 0.029737727716565132, 0.0036813952028751373, 0.009590341709554195, 0.050817251205444336, 0.009897890500724316, 0.021528013050556183, 0.025357963517308235, 0.008806790225207806, 0.03166366368532181, 0.06033097952604294, 0.04398854821920395, 0.009948691353201866, 0.07095380127429962, 0.05688805505633354, 0.3419688642024994], [0.1582595258951187, 0.00023332623823080212, 0.012163342908024788, 0.0005947747849859297, 4.665264714276418e-05, 0.02479865588247776, 0.0021681124344468117, 0.0028823032043874264, 0.0092984763905406, 0.0024512852542102337, 0.008881053887307644, 0.020260360091924667, 0.014255862683057785, 0.001573481597006321, 0.043085694313049316, 0.00038292090175673366, 0.6986642479896545], [0.10843424499034882, 0.007926956750452518, 0.10260338336229324, 0.00793391466140747, 0.015276341699063778, 0.039631299674510956, 0.06491529196500778, 0.01588386297225952, 0.02831633761525154, 0.02875853143632412, 0.028558744117617607, 0.07638195157051086, 0.011555800214409828, 0.006477282382547855, 0.035178374499082565, 0.08517278730869293, 0.33699479699134827], [0.201528400182724, 0.002654672134667635, 0.06937649846076965, 0.004302474204450846, 0.007294494658708572, 0.051841940730810165, 0.011685499921441078, 0.19593209028244019, 0.019542859867215157, 0.009130376391112804, 0.024051720276474953, 0.036998167634010315, 0.021236779168248177, 0.0017838653875514865, 0.021575016900897026, 0.008518259972333908, 0.31254681944847107], [0.2209579348564148, 0.008786844089627266, 0.10344844311475754, 0.008602423593401909, 0.011727712117135525, 0.11460591107606888, 0.013933890499174595, 0.013446804136037827, 0.06312834471464157, 0.015085403807461262, 0.0149100162088871, 0.05327305570244789, 0.01847497560083866, 0.004982305224984884, 0.025903400033712387, 0.023330669850111008, 0.285401850938797], [0.18335165083408356, 0.009629160165786743, 0.03852219507098198, 0.013866591267287731, 0.019498225301504135, 0.0891878679394722, 0.01629408821463585, 0.008231673389673233, 0.012362359091639519, 0.30955564975738525, 0.02666918933391571, 0.026195941492915154, 0.01754523254930973, 0.0038484830874949694, 0.02124636247754097, 0.020224997773766518, 0.1837703138589859], [0.23764453828334808, 0.012974957004189491, 0.14719773828983307, 0.007784868124872446, 0.008900590240955353, 0.19048376381397247, 0.02663537859916687, 0.019484205171465874, 0.014252797700464725, 0.013720939867198467, 0.030321644619107246, 0.04503634572029114, 0.007979256100952625, 0.0028225586283951998, 0.008425958454608917, 0.010035448707640171, 0.21629899740219116], [0.08069699257612228, 0.002481175819411874, 0.6208580732345581, 0.009079310111701488, 0.005389392841607332, 0.076943539083004, 0.015094175934791565, 0.008967343717813492, 0.017165064811706543, 0.0017010648734867573, 0.008382455445826054, 0.06902109086513519, 0.017655937001109123, 0.0004692765942309052, 0.0014786524698138237, 0.003859354183077812, 0.06075702980160713], [0.20833832025527954, 0.0039779688231647015, 0.3046853244304657, 0.01136328186839819, 0.01576707325875759, 0.10951043665409088, 0.00827191211283207, 0.008640781044960022, 0.029210256412625313, 0.0041164737194776535, 0.011571613140404224, 0.035416118800640106, 0.13028238713741302, 0.001005066093057394, 0.01000331249088049, 0.010144026018679142, 0.09769559651613235], [0.2467965930700302, 0.036953624337911606, 0.05206453427672386, 0.05278768017888069, 0.03825768083333969, 0.15885783731937408, 0.008095384575426579, 0.011507561430335045, 0.022813087329268456, 0.008958281949162483, 0.018067514523863792, 0.007838943041861057, 0.005407370626926422, 0.26670902967453003, 0.017916304990649223, 0.007265922613441944, 0.03970273956656456], [0.3394536077976227, 0.02775482088327408, 0.02474324032664299, 0.0197269469499588, 0.014756614342331886, 0.296110600233078, 0.002174247056245804, 0.011205794289708138, 0.006676697637885809, 0.008407563902437687, 0.00471988320350647, 0.0035121170803904533, 0.001568118343129754, 0.0024724428076297045, 0.20286433398723602, 0.00263351877219975, 0.03121950663626194], [0.21074943244457245, 0.02831156551837921, 0.12386160343885422, 0.02455630898475647, 0.04571367800235748, 0.290202796459198, 0.04257974028587341, 0.04950686916708946, 0.03064301796257496, 0.008183978497982025, 0.02388271875679493, 0.02459065429866314, 0.011663787998259068, 0.002575117629021406, 0.0057104043662548065, 0.008444299921393394, 0.06882399320602417], [0.1822473406791687, 0.0065779294818639755, 0.059092093259096146, 0.010815920308232307, 0.00014993372315075248, 0.6104812622070312, 0.01741119660437107, 0.01880211941897869, 0.017779983580112457, 0.002604505978524685, 0.010620325803756714, 0.013428875245153904, 0.004361660219728947, 0.0007319723372347653, 0.0017949312459677458, 4.056773104821332e-05, 0.043059367686510086]], [[0.007421984802931547, 0.0011684588389471173, 0.0010509241838008165, 0.00040545128285884857, 0.006597490515559912, 0.011590844951570034, 0.07495400309562683, 0.034165848046541214, 0.01334202941507101, 0.10790124535560608, 0.10647594183683395, 0.05997105687856674, 0.07868199050426483, 0.052621569484472275, 0.049244437366724014, 0.028154045343399048, 0.3662526309490204], [0.08006970584392548, 0.015100836753845215, 0.10940808057785034, 0.0455656461417675, 0.07643300294876099, 0.06886880844831467, 0.08943674713373184, 0.09205963462591171, 0.03712082654237747, 0.06005653366446495, 0.02542552910745144, 0.09801172465085983, 0.062240391969680786, 0.04015287756919861, 0.02368609607219696, 0.05816509202122688, 0.01819857954978943], [0.08001146465539932, 0.04730262979865074, 0.08598645031452179, 0.060123395174741745, 0.09312772750854492, 0.10497179627418518, 0.06393560022115707, 0.03935996815562248, 0.029255397617816925, 0.07138146460056305, 0.05643172934651375, 0.06825680285692215, 0.054086919873952866, 0.015397272072732449, 0.030307721346616745, 0.024090131744742393, 0.07597345858812332], [0.08388517796993256, 0.021821115165948868, 0.08175483345985413, 0.005887363106012344, 0.10792211443185806, 0.03347020596265793, 0.23761489987373352, 0.0419677309691906, 0.04117383807897568, 0.02760196663439274, 0.027906455099582672, 0.06255386769771576, 0.10990386456251144, 0.020252766087651253, 0.03247865289449692, 0.027569960802793503, 0.03623520955443382], [0.09751162678003311, 0.06624162942171097, 0.07870987057685852, 0.060738321393728256, 0.09911896288394928, 0.07690408825874329, 0.05504097416996956, 0.050554580986499786, 0.032435934990644455, 0.06537535786628723, 0.051352277398109436, 0.04985962435603142, 0.03903625160455704, 0.03823187202215195, 0.03220503777265549, 0.06594715267419815, 0.04073655232787132], [0.08476004749536514, 0.06289023160934448, 0.03968312218785286, 0.02190396562218666, 0.03478429093956947, 0.2337522804737091, 0.13731113076210022, 0.060433633625507355, 0.15772128105163574, 0.007829537615180016, 0.017805665731430054, 0.02081339992582798, 0.01864253357052803, 0.008594539016485214, 0.006002018228173256, 0.004255319479852915, 0.08281705528497696], [0.06976839154958725, 0.05714140459895134, 0.0510256253182888, 0.15290477871894836, 0.0376708097755909, 0.1326645314693451, 0.012694355100393295, 0.022427625954151154, 0.018174028024077415, 0.09650495648384094, 0.08473174273967743, 0.0353144146502018, 0.031859587877988815, 0.02106311544775963, 0.030397413298487663, 0.05359751731157303, 0.09205976873636246], [0.13796734809875488, 0.050897806882858276, 0.06651899963617325, 0.10083522647619247, 0.033234745264053345, 0.0843215137720108, 0.029963219538331032, 0.01772790215909481, 0.06489092111587524, 0.06450307369232178, 0.07147340476512909, 0.029724614694714546, 0.045766431838274, 0.016188619658350945, 0.03899581730365753, 0.032570790499448776, 0.11441947519779205], [0.14633557200431824, 0.06062446907162666, 0.11423805356025696, 0.06974271684885025, 0.05415835604071617, 0.07047758996486664, 0.06037136912345886, 0.05652545765042305, 0.03690680116415024, 0.03739888593554497, 0.03628313168883324, 0.04607004672288895, 0.04824797436594963, 0.02953026443719864, 0.05288238450884819, 0.03529557213187218, 0.04491134732961655], [0.06323285400867462, 0.01880149357020855, 0.035164739936590195, 0.020883971825242043, 0.03185970336198807, 0.17894043028354645, 0.10604889690876007, 0.06632917374372482, 0.018394872546195984, 0.10426156222820282, 0.05090728774666786, 0.0869566798210144, 0.030667269602417946, 0.06554476171731949, 0.02098427712917328, 0.03384745121002197, 0.0671745091676712], [0.14985214173793793, 0.0597832091152668, 0.0666022002696991, 0.1022019013762474, 0.0665547177195549, 0.0556541383266449, 0.03379486873745918, 0.03291168808937073, 0.05529437214136124, 0.07375066727399826, 0.04631103202700615, 0.03949807584285736, 0.043031129986047745, 0.03180588409304619, 0.03743286430835724, 0.06708544492721558, 0.038435645401477814], [0.07447855919599533, 0.04322409629821777, 0.06693495064973831, 0.04189293086528778, 0.08009736984968185, 0.13341771066188812, 0.05445902794599533, 0.03861834481358528, 0.03292150795459747, 0.0808388963341713, 0.056939058005809784, 0.06675748527050018, 0.0360071137547493, 0.02390570566058159, 0.02943541668355465, 0.026634518057107925, 0.1134372353553772], [0.09501926600933075, 0.057664308696985245, 0.08670412749052048, 0.058925896883010864, 0.051971208304166794, 0.11876069009304047, 0.045731354504823685, 0.05072307214140892, 0.02770940586924553, 0.08901292830705643, 0.04800291359424591, 0.06330209970474243, 0.025997504591941833, 0.030656764283776283, 0.03746676445007324, 0.03720702603459358, 0.07514465600252151], [0.14663413166999817, 0.04853108152747154, 0.1173289567232132, 0.06435174494981766, 0.06722000986337662, 0.10168015956878662, 0.08740461617708206, 0.045809343457221985, 0.06483855843544006, 0.0401766300201416, 0.029983356595039368, 0.04070600867271423, 0.028460875153541565, 0.0037731013726443052, 0.019807323813438416, 0.04499339684844017, 0.048300743103027344], [0.09470093995332718, 0.048779044300317764, 0.1125655397772789, 0.10838911682367325, 0.039656054228544235, 0.1271173655986786, 0.018841031938791275, 0.05453529953956604, 0.03496607765555382, 0.07713741064071655, 0.034664031118154526, 0.06190238893032074, 0.028978019952774048, 0.05602889880537987, 0.018512671813368797, 0.03445533663034439, 0.04877079650759697], [0.08467837423086166, 0.06081023067235947, 0.07648491859436035, 0.050625029951334, 0.08300060778856277, 0.06814870983362198, 0.059214234352111816, 0.05225066840648651, 0.03980962187051773, 0.06772155314683914, 0.05731727555394173, 0.049772243946790695, 0.04292188957333565, 0.042582836002111435, 0.03793783485889435, 0.07534272223711014, 0.051381319761276245], [0.06118455156683922, 0.07613909244537354, 0.02554367296397686, 0.020205624401569366, 0.01669180393218994, 0.2684347927570343, 0.1003277525305748, 0.0728878527879715, 0.19515107572078705, 0.007123895920813084, 0.015572426840662956, 0.01794428564608097, 0.01202227734029293, 0.012078833766281605, 0.005806004162877798, 0.004529992584139109, 0.08835606276988983]], [[0.028287295252084732, 0.0698222815990448, 0.045133769512176514, 0.02366785705089569, 0.06178444251418114, 0.7700672149658203, 8.194858764909441e-07, 1.3723315532843117e-05, 2.889626330215833e-06, 2.1514322270377306e-06, 1.4792078673053766e-06, 7.731345249339938e-06, 7.784280569467228e-06, 2.7985297492705286e-06, 3.2682266919437097e-06, 2.0625022443709895e-05, 0.001173884724266827], [0.13768813014030457, 0.09993322193622589, 0.07620527595281601, 0.2584827244281769, 0.19597110152244568, 0.22827395796775818, 2.7651180062093772e-05, 0.0002378604403929785, 5.13220475113485e-05, 0.00014027049473952502, 0.00015524396440014243, 0.0001364796480629593, 0.00012703335960395634, 0.00010402179759694263, 0.00011762919166358188, 0.0020352075807750225, 0.0003128750831820071], [0.1592121124267578, 0.10651865601539612, 0.06531072407960892, 0.2771109640598297, 0.13812966644763947, 0.2517062723636627, 4.535826883511618e-05, 0.00019873461860697716, 7.323885802179575e-05, 0.00024383774143643677, 0.00017490764730609953, 0.00010769984510261565, 0.000152591586811468, 6.486017082352191e-05, 6.930313975317404e-05, 0.0006799079710617661, 0.000201233007828705], [0.2038169801235199, 0.09962520748376846, 0.054884761571884155, 0.17527177929878235, 0.23206356167793274, 0.2337500900030136, 2.109283059326117e-06, 1.7430038496968336e-05, 5.603397312370362e-06, 1.1569525668164715e-05, 1.0162159014726058e-05, 1.0271804057992995e-05, 1.403069563821191e-05, 1.221428465214558e-05, 1.840550612541847e-05, 0.0004275535175111145, 5.83481669309549e-05], [0.1259297877550125, 0.12575283646583557, 0.1004192978143692, 0.314074844121933, 0.10597281903028488, 0.2226250320672989, 0.0001338288129772991, 0.0006314825732260942, 0.00020965185831300914, 0.0005085341399535537, 0.00043610186548903584, 0.00036441898555494845, 0.00038388260873034596, 0.00026899416116066277, 0.0002681608311831951, 0.0014375972095876932, 0.0005828207940794528], [0.11631685495376587, 0.11230088025331497, 0.10100062936544418, 0.2376149445772171, 0.18652477860450745, 0.24368076026439667, 4.3509779061423615e-05, 0.00031110059353522956, 6.348434544634074e-05, 9.501715248916298e-05, 9.643295197747648e-05, 0.00017121330893132836, 0.00014617065608035773, 0.0001047920377459377, 0.00013079344353172928, 0.0012095823185518384, 0.00018907402409240603], [0.0013340611476451159, 0.00035092965117655694, 0.0010746679035946727, 0.00030307398992590606, 0.0012370955664664507, 0.0004501192015595734, 0.23345209658145905, 0.05174499377608299, 0.04410255700349808, 0.13650459051132202, 0.09315455704927444, 0.0941300317645073, 0.07934694737195969, 0.07470206916332245, 0.046275366097688675, 0.08643368631601334, 0.05540308728814125], [0.0008870658348314464, 0.000961527053732425, 0.0017086422303691506, 0.00034776065149344504, 0.0020619195420295, 0.0016332356026396155, 0.21909597516059875, 0.051276665180921555, 0.04577571898698807, 0.07694392651319504, 0.04731065034866333, 0.07504266500473022, 0.0646505132317543, 0.0629989355802536, 0.06756630539894104, 0.06781595945358276, 0.21392247080802917], [0.00067844771547243, 0.00022067349345888942, 0.0007173093035817146, 0.00012839313421864063, 0.0022354167886078358, 0.00033492661896161735, 0.22806374728679657, 0.04027504473924637, 0.040528554469347, 0.12137095630168915, 0.06593477725982666, 0.09707389026880264, 0.09613900631666183, 0.026486175134778023, 0.0401652567088604, 0.17834830284118652, 0.06129905954003334], [0.0037073499988764524, 0.00048271199921146035, 0.0019422475015744567, 0.000610912567935884, 0.005724919494241476, 0.0013816438149660826, 0.07793658971786499, 0.0275648795068264, 0.030929917469620705, 0.10155194997787476, 0.08317738026380539, 0.08009537309408188, 0.06543122231960297, 0.04989606887102127, 0.05413568764925003, 0.26444345712661743, 0.15098769962787628], [0.0022354184184223413, 0.0013728045159950852, 0.0021330693271011114, 0.0008095743833109736, 0.0033970654476433992, 0.0023044005502015352, 0.18361450731754303, 0.0510188564658165, 0.04363179951906204, 0.12877406179904938, 0.08477722108364105, 0.08637722581624985, 0.06891186535358429, 0.04987504333257675, 0.06398778408765793, 0.09135107696056366, 0.1354282647371292], [0.0032944930717349052, 0.0005089478800073266, 0.0015811861958354712, 0.0005544893210753798, 0.0025830832310020924, 0.0014687628718093038, 0.22871869802474976, 0.06418902426958084, 0.06523655354976654, 0.17954450845718384, 0.11505883932113647, 0.08022797852754593, 0.07138894498348236, 0.02846665307879448, 0.03233940154314041, 0.04892987385392189, 0.07590851932764053], [0.007247602567076683, 0.0013591393362730742, 0.0036564460024237633, 0.0013643339043483138, 0.006042023655027151, 0.005641665775328875, 0.15999913215637207, 0.07832468301057816, 0.05783800408244133, 0.1806301325559616, 0.09749407321214676, 0.08585336804389954, 0.05925761163234711, 0.029017651453614235, 0.02993674762547016, 0.058019597083330154, 0.1383177489042282], [0.002075364114716649, 0.00042000942630693316, 0.0016582167008891702, 0.0004346713831182569, 0.0021505251061171293, 0.0010447779204696417, 0.22103138267993927, 0.07002107053995132, 0.048486825078725815, 0.1439545899629593, 0.09132068604230881, 0.09919736534357071, 0.06329219043254852, 0.031919702887535095, 0.05503492429852486, 0.0920560210943222, 0.0759015753865242], [0.0010499614290893078, 0.00021167962404433638, 0.000715763948392123, 0.00014401732187252492, 0.0012203885708004236, 0.00041743754991330206, 0.18408392369747162, 0.041346002370119095, 0.028975313529372215, 0.1369927078485489, 0.04919412359595299, 0.12912604212760925, 0.0767894983291626, 0.04854011908173561, 0.06065501272678375, 0.13960722088813782, 0.10093081742525101], [0.008242416195571423, 0.0027393437922000885, 0.005554396193474531, 0.0024875388480722904, 0.005791292991489172, 0.004312703851610422, 0.1765103042125702, 0.0660034716129303, 0.06198452413082123, 0.151428684592247, 0.1239396408200264, 0.09318897128105164, 0.06322647631168365, 0.04490487650036812, 0.05298185721039772, 0.05768679454922676, 0.07901673763990402], [0.002090015448629856, 0.0004917201003991067, 0.001555128488689661, 0.0003738759842235595, 0.003302093129605055, 0.0007019694894552231, 0.1822650283575058, 0.07489483803510666, 0.052951447665691376, 0.09082790464162827, 0.06613675504922867, 0.13754741847515106, 0.06538603454828262, 0.05161257088184357, 0.08788654208183289, 0.14410775899887085, 0.037869032472372055]], [[0.24287134408950806, 0.02666167914867401, 0.06433150172233582, 0.06253456324338913, 0.0024931326042860746, 0.07973232120275497, 0.02049095556139946, 0.037018824368715286, 0.03681265562772751, 0.04641186445951462, 0.03504946082830429, 0.06802459806203842, 0.062151674181222916, 0.04834902659058571, 0.05442947894334793, 0.0021573423873633146, 0.11047958582639694], [0.11579333990812302, 0.07772558927536011, 0.03781406581401825, 0.09583887457847595, 0.008115208707749844, 0.14647269248962402, 0.028901400044560432, 0.06894689053297043, 0.022904181852936745, 0.08881279081106186, 0.029464581981301308, 0.05913350358605385, 0.022146914154291153, 0.07673672586679459, 0.046174947172403336, 0.015315677970647812, 0.059702686965465546], [0.09281373023986816, 0.07253292202949524, 0.03694428503513336, 0.13094845414161682, 0.0008892604382708669, 0.12734226882457733, 0.037803083658218384, 0.08715605735778809, 0.07568534463644028, 0.04610185697674751, 0.04212505742907524, 0.03942139819264412, 0.018057702109217644, 0.07752366364002228, 0.05521261692047119, 0.0009824706939980388, 0.05845994874835014], [0.06613348424434662, 0.1036168709397316, 0.039880238473415375, 0.16221661865711212, 0.007716502528637648, 0.19508053362369537, 0.024463960900902748, 0.027327818796038628, 0.038530703634023666, 0.02653856761753559, 0.07829522341489792, 0.031903140246868134, 0.034257370978593826, 0.06774837523698807, 0.03261338546872139, 0.010510079562664032, 0.05316721275448799], [0.07947220653295517, 0.08586911857128143, 0.07837878167629242, 0.08999944478273392, 0.0015003475127741694, 0.06451795995235443, 0.07259773463010788, 0.06593125313520432, 0.07504085451364517, 0.049925606697797775, 0.06790947914123535, 0.053072527050971985, 0.04528296738862991, 0.038656845688819885, 0.06839772313833237, 0.0014219636796042323, 0.062025196850299835], [0.1529340296983719, 0.06611859798431396, 0.06996457278728485, 0.08327305316925049, 0.010720276273787022, 0.087493397295475, 0.039120741188526154, 0.056809116154909134, 0.04819120094180107, 0.07052060961723328, 0.027219286188483238, 0.0499834306538105, 0.04100921005010605, 0.05897088348865509, 0.04932635650038719, 0.006548062898218632, 0.08179713040590286], [0.2975449860095978, 0.07722456753253937, 0.06491907685995102, 0.0333617739379406, 0.006418182048946619, 0.055604204535484314, 0.036519844084978104, 0.019603220745921135, 0.013089875690639019, 0.08259864151477814, 0.011420919559895992, 0.03504713252186775, 0.03774169459939003, 0.03116714395582676, 0.06588086485862732, 0.00488357525318861, 0.12697429955005646], [0.09486074000597, 0.06539835035800934, 0.08310970664024353, 0.11234379559755325, 0.0009810627670958638, 0.044188156723976135, 0.03507964685559273, 0.06756540387868881, 0.10750151425600052, 0.03338032588362694, 0.0660896822810173, 0.05684911087155342, 0.049367401748895645, 0.05687025934457779, 0.07460073381662369, 0.0011132254730910063, 0.05070089176297188], [0.06519456952810287, 0.04054265096783638, 0.03666675463318825, 0.12396613508462906, 0.0010886534582823515, 0.07873132079839706, 0.025599123910069466, 0.10021965950727463, 0.07805777341127396, 0.030578315258026123, 0.11037652939558029, 0.07630310952663422, 0.04343610256910324, 0.06482744216918945, 0.05934484675526619, 0.0017953491769731045, 0.0632716491818428], [0.06682689487934113, 0.024400822818279266, 0.048335541039705276, 0.09100454300642014, 0.007651872001588345, 0.03841426968574524, 0.017282752320170403, 0.023470943793654442, 0.11299914866685867, 0.054294075816869736, 0.15953773260116577, 0.05571321025490761, 0.04679685831069946, 0.03346914052963257, 0.07759394496679306, 0.00907173752784729, 0.13313665986061096], [0.07975960522890091, 0.07555244117975235, 0.07203519344329834, 0.1474120318889618, 0.002626139670610428, 0.06741434335708618, 0.05394408106803894, 0.05694667249917984, 0.0864185094833374, 0.03300008177757263, 0.06456629186868668, 0.04378731548786163, 0.04538596048951149, 0.0551128163933754, 0.05384884774684906, 0.0017559065017849207, 0.06043381616473198], [0.08071060478687286, 0.06697602570056915, 0.03469094634056091, 0.11932536214590073, 0.0009126330260187387, 0.12344210594892502, 0.051084574311971664, 0.10552872717380524, 0.0917387530207634, 0.03181765601038933, 0.05626145005226135, 0.04265351966023445, 0.02303696796298027, 0.07276985794305801, 0.053782474249601364, 0.0012486277846619487, 0.04401976242661476], [0.10005321353673935, 0.026021268218755722, 0.07722581177949905, 0.04787687212228775, 0.0047321561723947525, 0.043621450662612915, 0.04272398725152016, 0.06471245735883713, 0.09714174270629883, 0.05258519574999809, 0.07715965807437897, 0.07628467679023743, 0.06495043635368347, 0.050671808421611786, 0.0813463032245636, 0.0030206134542822838, 0.08987237513065338], [0.1540258824825287, 0.028356319293379784, 0.06194862723350525, 0.02834697999060154, 0.006661806721240282, 0.07512979209423065, 0.03207448497414589, 0.1423024982213974, 0.02876424975693226, 0.04589635133743286, 0.026000192388892174, 0.15044040977954865, 0.045459069311618805, 0.06146249920129776, 0.060169197618961334, 0.007214460521936417, 0.04574716091156006], [0.11167638003826141, 0.04082725942134857, 0.03664514794945717, 0.09058688580989838, 0.009909181855618954, 0.1011171042919159, 0.04591613635420799, 0.05698392540216446, 0.04440882429480553, 0.05704047530889511, 0.060634009540081024, 0.05941116809844971, 0.04265902191400528, 0.12240664660930634, 0.049436841160058975, 0.00899034645408392, 0.06135058030486107], [0.09316100180149078, 0.09614212810993195, 0.05807892605662346, 0.12024006992578506, 0.001797443488612771, 0.059110432863235474, 0.06750570982694626, 0.062106210738420486, 0.05524313449859619, 0.055291593074798584, 0.06280502676963806, 0.05083952471613884, 0.05376634746789932, 0.04403470456600189, 0.06603705137968063, 0.0017342157661914825, 0.052106574177742004], [0.14794687926769257, 0.06445080041885376, 0.05201401934027672, 0.11149094998836517, 0.008734457194805145, 0.0821816548705101, 0.03357018530368805, 0.06882525235414505, 0.05252310261130333, 0.07227049022912979, 0.028230750933289528, 0.052692607045173645, 0.03760033845901489, 0.07119222730398178, 0.045913904905319214, 0.006222979165613651, 0.06413941830396652]], [[0.02524000220000744, 0.0020839448552578688, 0.005602790042757988, 0.0048566400073468685, 0.008988531306385994, 0.0058546350337564945, 0.034940507262945175, 0.0765567421913147, 0.0911002904176712, 0.10009878873825073, 0.1278752088546753, 0.1394643783569336, 0.09558612108230591, 0.026351500302553177, 0.0945814698934555, 0.07361991703510284, 0.08719860017299652], [0.04952218756079674, 0.11830495297908783, 0.03860272467136383, 0.033139344304800034, 0.034639716148376465, 0.04543963447213173, 0.04237375408411026, 0.035473018884658813, 0.037021931260824203, 0.03610080108046532, 0.0893545150756836, 0.16773338615894318, 0.07184331864118576, 0.038674116134643555, 0.04640251770615578, 0.05447308346629143, 0.0609009712934494], [0.25801506638526917, 0.03126349672675133, 0.019256964325904846, 0.04598415270447731, 0.07029526680707932, 0.08151441067457199, 0.031669795513153076, 0.04501539096236229, 0.0323357917368412, 0.06336939334869385, 0.03185350447893143, 0.025192411616444588, 0.028451846912503242, 0.0592845156788826, 0.05816454440355301, 0.06421428173780441, 0.054119233042001724], [0.06821516156196594, 0.030516009777784348, 0.17443151772022247, 0.11244547367095947, 0.04555324465036392, 0.026475852355360985, 0.029191678389906883, 0.029977979138493538, 0.023960253223776817, 0.035474274307489395, 0.05602436512708664, 0.11081135272979736, 0.060899946838617325, 0.053830377757549286, 0.0432811863720417, 0.05595141649246216, 0.042959995567798615], [0.1489919275045395, 0.034924767911434174, 0.026392487809062004, 0.04815308377146721, 0.10602588206529617, 0.05410192534327507, 0.05660374090075493, 0.044662296772003174, 0.028680790215730667, 0.052378229796886444, 0.045381978154182434, 0.028329307213425636, 0.039791468530893326, 0.057028934359550476, 0.04798746854066849, 0.12037202715873718, 0.06019368767738342], [0.019286291673779488, 0.002002097899094224, 0.010388278402388096, 0.0028781024739146233, 0.01112866960465908, 0.01166918408125639, 0.04162238910794258, 0.08933179080486298, 0.06513003259897232, 0.11010444909334183, 0.02947896346449852, 0.08297660946846008, 0.046584952622652054, 0.044359784573316574, 0.11258570104837418, 0.07124451547861099, 0.2492281198501587], [0.3100114166736603, 0.019898053258657455, 0.02527521923184395, 0.04052380844950676, 0.09844138473272324, 0.057398613542318344, 0.03623208403587341, 0.04489092156291008, 0.029933590441942215, 0.03405988961458206, 0.04649330675601959, 0.023245876654982567, 0.048103850334882736, 0.03562571108341217, 0.027721531689167023, 0.0877281203866005, 0.034416619688272476], [0.08563746511936188, 0.04060884565114975, 0.12732094526290894, 0.11188419908285141, 0.06287328898906708, 0.04426107555627823, 0.040225859731435776, 0.041927192360162735, 0.040836580097675323, 0.05736490339040756, 0.029194403439760208, 0.04228503257036209, 0.031206510961055756, 0.037353046238422394, 0.06764199584722519, 0.048834990710020065, 0.09054352343082428], [0.11395679414272308, 0.0468386672437191, 0.10624011605978012, 0.1217656061053276, 0.057392995804548264, 0.052636634558439255, 0.02130161225795746, 0.029116496443748474, 0.03436065465211868, 0.05940020829439163, 0.028076956048607826, 0.021676916629076004, 0.017364174127578735, 0.05637850984930992, 0.05451275035738945, 0.056513890624046326, 0.12246699631214142], [0.11828001588582993, 0.03234751895070076, 0.0722532644867897, 0.04941030591726303, 0.048823386430740356, 0.0639258474111557, 0.10285212844610214, 0.03821626305580139, 0.03056979365646839, 0.05878140777349472, 0.033377114683389664, 0.10640088468790054, 0.0488668829202652, 0.021961571648716927, 0.0575440339744091, 0.03141171857714653, 0.08497784286737442], [0.10757540911436081, 0.06341520696878433, 0.059530600905418396, 0.08721484988927841, 0.0773295909166336, 0.09500931203365326, 0.06934724003076553, 0.06217427924275398, 0.04414983466267586, 0.0483551025390625, 0.019573228433728218, 0.020101606845855713, 0.024996722117066383, 0.06527644395828247, 0.05552196875214577, 0.0520886667072773, 0.04834003746509552], [0.17820239067077637, 0.04334725812077522, 0.04288420453667641, 0.07313781976699829, 0.09689672291278839, 0.06977444887161255, 0.030133699998259544, 0.038592658936977386, 0.04835660383105278, 0.0645487979054451, 0.027563605457544327, 0.015446307137608528, 0.021812813356518745, 0.03743097931146622, 0.058128081262111664, 0.07789330184459686, 0.07585035264492035], [0.3586953580379486, 0.03833954036235809, 0.025971442461013794, 0.107013039290905, 0.09479101747274399, 0.07774756103754044, 0.014985673129558563, 0.017778633162379265, 0.0399349182844162, 0.03675521910190582, 0.037352584302425385, 0.007359071634709835, 0.016001075506210327, 0.016897309571504593, 0.02208838053047657, 0.04653162509202957, 0.04175760596990585], [0.10824450850486755, 0.025659531354904175, 0.10477117449045181, 0.06489457190036774, 0.07297733426094055, 0.06931785494089127, 0.02030790224671364, 0.014417250640690327, 0.04594283550977707, 0.02560136467218399, 0.06750116497278214, 0.01738206297159195, 0.031193280592560768, 0.1094549372792244, 0.05629485100507736, 0.027180196717381477, 0.13885918259620667], [0.08865220099687576, 0.02656581997871399, 0.028829950839281082, 0.05493142083287239, 0.04147128760814667, 0.13152627646923065, 0.04863676056265831, 0.07419587671756744, 0.04110587388277054, 0.08092014491558075, 0.04744073003530502, 0.08228005468845367, 0.024526281282305717, 0.04018715023994446, 0.05188191309571266, 0.047179099172353745, 0.08966914564371109], [0.1795671284198761, 0.033027201890945435, 0.03085513226687908, 0.05866721272468567, 0.14157098531723022, 0.06568865478038788, 0.07773695886135101, 0.037516579031944275, 0.029876170679926872, 0.046374499797821045, 0.04150533303618431, 0.022387977689504623, 0.032759640365839005, 0.035260990262031555, 0.03174856677651405, 0.07778734713792801, 0.05766957253217697], [0.027791883796453476, 0.002239541383460164, 0.0056255655363202095, 0.003490956500172615, 0.0097038634121418, 0.020714476704597473, 0.06536101549863815, 0.16630563139915466, 0.09018939733505249, 0.15978576242923737, 0.029801206663250923, 0.06953851133584976, 0.042021263390779495, 0.03770371153950691, 0.08706694096326828, 0.05658873915672302, 0.12607157230377197]], [[0.011174561455845833, 0.09414906799793243, 0.030091876164078712, 0.016321904957294464, 0.29843536019325256, 0.4450252652168274, 0.0011839474318549037, 0.001424160785973072, 0.00029455230105668306, 0.001026850426569581, 0.003694254672154784, 0.0013936155010014772, 0.0012927921488881111, 0.0007418997120112181, 0.0004448294057510793, 0.007094791624695063, 0.0862102136015892], [0.11852674186229706, 0.02019118145108223, 0.031497664749622345, 0.034183502197265625, 0.0640023946762085, 0.06057581678032875, 0.024116525426506996, 0.03936151787638664, 0.02036185935139656, 0.08883397281169891, 0.07760791480541229, 0.07434835284948349, 0.0542975589632988, 0.06735076010227203, 0.04554995894432068, 0.06416831910610199, 0.11502596735954285], [0.08648286014795303, 0.037123773247003555, 0.09034660458564758, 0.0710773766040802, 0.06569467484951019, 0.04503156244754791, 0.052130382508039474, 0.02742191031575203, 0.07320478558540344, 0.05374639108777046, 0.06933675706386566, 0.03345033526420593, 0.054339803755283356, 0.02731013484299183, 0.058473072946071625, 0.04059449955821037, 0.1142350435256958], [0.1483263075351715, 0.11024556308984756, 0.053358521312475204, 0.06437084823846817, 0.07773710042238235, 0.10879857838153839, 0.0484408475458622, 0.06108875200152397, 0.018507394939661026, 0.04271094128489494, 0.02706819400191307, 0.03567139431834221, 0.021645793691277504, 0.04019920900464058, 0.031542498618364334, 0.054675452411174774, 0.05561260133981705], [0.15284353494644165, 0.04443354904651642, 0.0766560509800911, 0.07358644157648087, 0.043049924075603485, 0.06101576238870621, 0.04181814193725586, 0.03975846245884895, 0.0420568585395813, 0.06797795742750168, 0.05037062242627144, 0.03893468156456947, 0.03692924976348877, 0.04019352048635483, 0.05643400549888611, 0.03818834573030472, 0.09575283527374268], [0.1227218508720398, 0.12078765034675598, 0.008438208140432835, 0.009750179946422577, 0.08246869593858719, 0.025989452376961708, 0.015425877645611763, 0.05339249223470688, 0.03591480106115341, 0.1403900384902954, 0.03601955622434616, 0.02246982418000698, 0.024790341034531593, 0.03983446955680847, 0.02812313660979271, 0.1678672730922699, 0.06561620533466339], [0.19901809096336365, 0.011799735948443413, 0.020198315382003784, 0.011685042642056942, 0.009246133267879486, 0.02934315986931324, 0.03907804191112518, 0.07270979136228561, 0.053028836846351624, 0.09598486125469208, 0.03601529449224472, 0.07817858457565308, 0.07231493294239044, 0.13584883511066437, 0.058518122881650925, 0.031251974403858185, 0.04578028991818428], [0.06327265501022339, 0.060818061232566833, 0.05438724160194397, 0.06240197643637657, 0.0422535166144371, 0.04475461319088936, 0.019158456474542618, 0.026513194665312767, 0.0248300451785326, 0.07518073171377182, 0.04015598073601723, 0.03308117017149925, 0.030957955867052078, 0.04532204195857048, 0.1000657007098198, 0.07838611304759979, 0.19846057891845703], [0.05516418442130089, 0.06801941990852356, 0.08046028017997742, 0.05895870178937912, 0.08600516617298126, 0.06277994066476822, 0.04894009977579117, 0.0497378371655941, 0.02586940862238407, 0.07081681489944458, 0.046236660331487656, 0.03569170832633972, 0.03137432411313057, 0.024035997688770294, 0.07799064368009567, 0.03563477471470833, 0.14228399097919464], [0.10852563381195068, 0.10430904477834702, 0.08172948658466339, 0.051876939833164215, 0.045835018157958984, 0.06504763662815094, 0.06110985577106476, 0.023101430386304855, 0.04747648537158966, 0.013722150586545467, 0.035511314868927, 0.027175644412636757, 0.1286228448152542, 0.03820859268307686, 0.07410260289907455, 0.023801885545253754, 0.06984337419271469], [0.22078925371170044, 0.047316305339336395, 0.041765764355659485, 0.059768132865428925, 0.023833036422729492, 0.06754029542207718, 0.025370430201292038, 0.051726944744586945, 0.04924919456243515, 0.06651249527931213, 0.03973226249217987, 0.036332108080387115, 0.025877295061945915, 0.05789831280708313, 0.044794633984565735, 0.06319119781255722, 0.07830244302749634], [0.12240998446941376, 0.033233847469091415, 0.10413387417793274, 0.051660098135471344, 0.058150727301836014, 0.045536261051893234, 0.0497964508831501, 0.03003830835223198, 0.0581279993057251, 0.06336068361997604, 0.05563843622803688, 0.03322986513376236, 0.04555968567728996, 0.024562766775488853, 0.05996149033308029, 0.03342469781637192, 0.13117483258247375], [0.06280094385147095, 0.048780087381601334, 0.18938027322292328, 0.11050375550985336, 0.039177168160676956, 0.0513468012213707, 0.025131266564130783, 0.0292655136436224, 0.035603802651166916, 0.042749032378196716, 0.03526562452316284, 0.01932724379003048, 0.02107788249850273, 0.01873885653913021, 0.06530281156301498, 0.026329519227147102, 0.17921945452690125], [0.03436395898461342, 0.106015644967556, 0.07802580296993256, 0.04299001768231392, 0.028943561017513275, 0.03163566067814827, 0.05237169563770294, 0.040463197976350784, 0.02932003326714039, 0.043065059930086136, 0.0390811488032341, 0.023952266201376915, 0.05714116618037224, 0.048520512878894806, 0.15677621960639954, 0.02183368057012558, 0.16550040245056152], [0.11379260569810867, 0.08277527987957001, 0.06352566927671432, 0.058886051177978516, 0.05315932258963585, 0.06009808927774429, 0.07043604552745819, 0.07714526355266571, 0.04622802883386612, 0.06471255421638489, 0.04481203854084015, 0.03016141802072525, 0.038021259009838104, 0.051638733595609665, 0.04624243453145027, 0.04127631336450577, 0.05708890035748482], [0.1446942389011383, 0.043733663856983185, 0.06845075637102127, 0.07954830676317215, 0.042715225368738174, 0.07124115526676178, 0.04207278788089752, 0.044855259358882904, 0.03625879064202309, 0.07161097228527069, 0.053817663341760635, 0.040837597101926804, 0.035311508923769, 0.043398790061473846, 0.05036937817931175, 0.03676663339138031, 0.09431719779968262], [0.12436621636152267, 0.12917573750019073, 0.007331592030823231, 0.009498964063823223, 0.0743517056107521, 0.020818397402763367, 0.018450463190674782, 0.053250957280397415, 0.041430190205574036, 0.15242613852024078, 0.03821490332484245, 0.01800517924129963, 0.022479292005300522, 0.03523609787225723, 0.02880634367465973, 0.1628478765487671, 0.0633099228143692]], [[0.202057346701622, 0.09870608896017075, 0.037488821893930435, 0.07499653846025467, 0.0651821419596672, 0.0649111270904541, 0.04655888304114342, 0.0715402215719223, 0.04143212363123894, 0.06205463409423828, 0.025449534878134727, 0.02500137872993946, 0.026314185932278633, 0.04174935817718506, 0.03792022168636322, 0.05205195024609566, 0.02658540941774845], [0.09523968398571014, 0.05807080492377281, 0.03742891177535057, 0.20199328660964966, 0.04872329160571098, 0.1581435203552246, 0.10988544672727585, 0.04801712557673454, 0.020615844056010246, 0.05470912903547287, 0.02462683990597725, 0.01598132960498333, 0.016870498657226562, 0.011640822514891624, 0.01958615332841873, 0.02382553182542324, 0.05464180186390877], [0.11394883692264557, 0.030318966135382652, 0.05583114176988602, 0.03578253462910652, 0.09550856053829193, 0.03352591395378113, 0.046293508261442184, 0.043532028794288635, 0.05001849681138992, 0.05395461991429329, 0.05761013180017471, 0.06380272656679153, 0.10306684672832489, 0.0380418635904789, 0.07706998288631439, 0.06633143872022629, 0.035362426191568375], [0.11494267731904984, 0.07770498096942902, 0.05972624942660332, 0.21726584434509277, 0.04826267436146736, 0.09012376517057419, 0.05387091264128685, 0.01557247806340456, 0.027022432535886765, 0.020678451284766197, 0.09175770729780197, 0.03335454687476158, 0.05528498440980911, 0.025946248322725296, 0.019681191071867943, 0.026411984115839005, 0.022392932325601578], [0.14603766798973083, 0.08236132562160492, 0.045484136790037155, 0.07131258398294449, 0.029281508177518845, 0.02501554787158966, 0.0610860176384449, 0.022487936541438103, 0.04622804746031761, 0.08516033738851547, 0.08593578636646271, 0.04694882035255432, 0.08721015602350235, 0.02478836663067341, 0.07863709330558777, 0.03915685787796974, 0.02286776714026928], [0.15321341156959534, 0.10481614619493484, 0.035993415862321854, 0.04777584224939346, 0.04917048290371895, 0.051493581384420395, 0.06021755561232567, 0.05314535275101662, 0.05645355209708214, 0.05784853547811508, 0.0487043596804142, 0.03291044011712074, 0.04665278643369675, 0.038263171911239624, 0.06549681723117828, 0.05227714404463768, 0.045567430555820465], [0.11819959431886673, 0.05443412810564041, 0.02432369627058506, 0.09178982675075531, 0.042220182716846466, 0.06883545219898224, 0.05304988846182823, 0.0211311224848032, 0.04323582351207733, 0.12170222401618958, 0.04250318184494972, 0.025250593200325966, 0.04120006039738655, 0.04274487495422363, 0.07827738672494888, 0.0543784573674202, 0.07672354578971863], [0.10395368188619614, 0.042899806052446365, 0.05356842651963234, 0.06734593957662582, 0.04289818927645683, 0.04701051115989685, 0.019936539232730865, 0.017202312126755714, 0.05746377259492874, 0.07629840821027756, 0.08634431660175323, 0.07443484663963318, 0.08583749830722809, 0.05725717544555664, 0.07378020882606506, 0.044838398694992065, 0.04893004521727562], [0.08331204205751419, 0.04889913648366928, 0.07321985810995102, 0.09036929905414581, 0.052828866988420486, 0.05534365773200989, 0.026008104905486107, 0.03710860386490822, 0.07165339589118958, 0.07012365758419037, 0.07082191854715347, 0.09701376408338547, 0.07054297626018524, 0.04285865277051926, 0.04223509132862091, 0.038923781365156174, 0.028737211599946022], [0.014248738996684551, 0.044260840862989426, 0.14235612750053406, 0.07576973736286163, 0.060384176671504974, 0.07144536823034286, 0.06852754205465317, 0.05615100637078285, 0.0730779767036438, 0.004029391799122095, 0.032187577337026596, 0.14863692224025726, 0.06973129510879517, 0.05905790627002716, 0.03159197419881821, 0.01881909742951393, 0.029724309220910072], [0.1477227509021759, 0.02860105037689209, 0.03918815776705742, 0.028221361339092255, 0.08240171521902084, 0.04081542044878006, 0.046101268380880356, 0.016770847141742706, 0.04538718983530998, 0.08595062047243118, 0.057349514216184616, 0.061354462057352066, 0.11203023791313171, 0.0380701906979084, 0.06740202754735947, 0.06369249522686005, 0.0389406681060791], [0.12871581315994263, 0.02339775860309601, 0.04862220212817192, 0.030115164816379547, 0.10578314960002899, 0.035007208585739136, 0.03032924234867096, 0.03148679807782173, 0.04645146429538727, 0.06338782608509064, 0.05882985517382622, 0.07475265115499496, 0.11124823987483978, 0.043974556028842926, 0.055400922894477844, 0.07126304507255554, 0.04123419523239136], [0.1584589034318924, 0.016030853614211082, 0.027734652161598206, 0.03210620954632759, 0.08271390944719315, 0.03354588896036148, 0.01478548813611269, 0.021165212616324425, 0.0555378794670105, 0.09373167902231216, 0.06485565751791, 0.0644426941871643, 0.08209609985351562, 0.05038949102163315, 0.05634259432554245, 0.1023559644818306, 0.04370670020580292], [0.08120528608560562, 0.060508545488119125, 0.04558102414011955, 0.13809151947498322, 0.05804293230175972, 0.1681009978055954, 0.055619627237319946, 0.013711397536098957, 0.031325917690992355, 0.026962334290146828, 0.08018507063388824, 0.03502839058637619, 0.050455041229724884, 0.01625659689307213, 0.02903592959046364, 0.02625254914164543, 0.08363684266805649], [0.06706909835338593, 0.06368619203567505, 0.11192020028829575, 0.05677006021142006, 0.08312227576971054, 0.04000311344861984, 0.029348252341151237, 0.038078632205724716, 0.033749792724847794, 0.03836258873343468, 0.10204228013753891, 0.12314264476299286, 0.09671185910701752, 0.04288192093372345, 0.016429560258984566, 0.038596611469984055, 0.018084945157170296], [0.15513864159584045, 0.07453242689371109, 0.04392542690038681, 0.0681813657283783, 0.03399099037051201, 0.02911587618291378, 0.05536666885018349, 0.02301696687936783, 0.047238364815711975, 0.10083892941474915, 0.07964883744716644, 0.051711536943912506, 0.08365609496831894, 0.028818774968385696, 0.05993220582604408, 0.040785156190395355, 0.024101709946990013], [0.19681859016418457, 0.08593972772359848, 0.018847854807972908, 0.024322355166077614, 0.061234958469867706, 0.03710852935910225, 0.04981411620974541, 0.047981563955545425, 0.058545537292957306, 0.0639086589217186, 0.04838347062468529, 0.022022537887096405, 0.04980063810944557, 0.038914669305086136, 0.06491509824991226, 0.08370743691921234, 0.04773421213030815]], [[0.09473123401403427, 0.03425193578004837, 0.04523380473256111, 0.05132388323545456, 0.05895952880382538, 0.24660730361938477, 0.021831033751368523, 0.018872154876589775, 0.020962174981832504, 0.02660324051976204, 0.05674690008163452, 0.026778364554047585, 0.028220394626259804, 0.019102565944194794, 0.026150749996304512, 0.046307794749736786, 0.17731696367263794], [0.08275946974754333, 0.06660302728414536, 0.27492058277130127, 0.1008169949054718, 0.08460469543933868, 0.1450672149658203, 0.043253421783447266, 0.0568256676197052, 0.043531712144613266, 0.013573168776929379, 0.027608610689640045, 0.01657732203602791, 0.00742073729634285, 0.011924954131245613, 0.008070016279816628, 0.00852033868432045, 0.007922055199742317], [0.060690946877002716, 0.05642139911651611, 0.04476490989327431, 0.3871033489704132, 0.06870853900909424, 0.2012670785188675, 0.025716790929436684, 0.02948637120425701, 0.020142443478107452, 0.03309990465641022, 0.012047525495290756, 0.00537447165697813, 0.006646790541708469, 0.01561870239675045, 0.006753423251211643, 0.011618445627391338, 0.014538878574967384], [0.11151855438947678, 0.04668112471699715, 0.16139914095401764, 0.04498865455389023, 0.12940357625484467, 0.26298922300338745, 0.05283813551068306, 0.03498143330216408, 0.0363096222281456, 0.017354166135191917, 0.032956331968307495, 0.016711385920643806, 0.012429370544850826, 0.00841786339879036, 0.004725378006696701, 0.008477692492306232, 0.017818337306380272], [0.039032865315675735, 0.05138619244098663, 0.05856028571724892, 0.08398881554603577, 0.1207093745470047, 0.33659401535987854, 0.06895813345909119, 0.04837168753147125, 0.04459989443421364, 0.035726431757211685, 0.03684491664171219, 0.019928323104977608, 0.013310503214597702, 0.008204312063753605, 0.003968933597207069, 0.015701310709118843, 0.01411403063684702], [0.032764732837677, 0.04405227676033974, 0.0893423855304718, 0.05521026626229286, 0.12146659195423126, 0.14178000390529633, 0.1395876407623291, 0.09103624522686005, 0.13275881111621857, 0.042469583451747894, 0.0388798750936985, 0.027096902951598167, 0.019695160910487175, 0.007448435295373201, 0.005953744053840637, 0.007548090070486069, 0.0029092892073094845], [0.01684495620429516, 0.014782857149839401, 0.01725134067237377, 0.023629359900951385, 0.041950199753046036, 0.10652446001768112, 0.13336864113807678, 0.18934547901153564, 0.19674737751483917, 0.10464666783809662, 0.04852745682001114, 0.03659902140498161, 0.02017917111515999, 0.026215169578790665, 0.006723625119775534, 0.011855507269501686, 0.004808507859706879], [0.013322124257683754, 0.023657184094190598, 0.016017364338040352, 0.017529183998703957, 0.032489534467458725, 0.08353613317012787, 0.09010247141122818, 0.024037523195147514, 0.09307027608156204, 0.3906835913658142, 0.07258924841880798, 0.035480767488479614, 0.045639485120773315, 0.027946490794420242, 0.007489006966352463, 0.010928449220955372, 0.015481227077543736], [0.010874711908400059, 0.0033228800166398287, 0.0060789273120462894, 0.017839139327406883, 0.017847180366516113, 0.07721541076898575, 0.040404293686151505, 0.06828021258115768, 0.03981360048055649, 0.44803711771965027, 0.07606841623783112, 0.05099278315901756, 0.035264112055301666, 0.05494048073887825, 0.013283698819577694, 0.014947636984288692, 0.024789387360215187], [0.0418858602643013, 0.005755031481385231, 0.011534903198480606, 0.011908644810318947, 0.023025501519441605, 0.04267577826976776, 0.05448700115084648, 0.07579223811626434, 0.13510996103286743, 0.03723622485995293, 0.19938130676746368, 0.07925086468458176, 0.1479371041059494, 0.03187322989106178, 0.028449609875679016, 0.027069630101323128, 0.046627141535282135], [0.020565638318657875, 0.012936996296048164, 0.009009701199829578, 0.023777153342962265, 0.019857050850987434, 0.06321074068546295, 0.0498589351773262, 0.07459582388401031, 0.07013799995183945, 0.19540248811244965, 0.049140799790620804, 0.10443677008152008, 0.08271380513906479, 0.08152496069669724, 0.04891978204250336, 0.034940168261528015, 0.058971140533685684], [0.028245052322745323, 0.006658422760665417, 0.0034801000729203224, 0.02314886264503002, 0.010621018707752228, 0.02517729066312313, 0.027439670637249947, 0.03679434210062027, 0.05297532305121422, 0.13670407235622406, 0.06486381590366364, 0.05470326170325279, 0.1201142743229866, 0.1866532862186432, 0.11220584064722061, 0.03886336460709572, 0.07135189324617386], [0.016749076545238495, 0.004750916734337807, 0.00492549454793334, 0.014186062850058079, 0.004755175672471523, 0.02077152580022812, 0.01841050013899803, 0.035658352077007294, 0.025182384997606277, 0.10599420219659805, 0.032978445291519165, 0.07352093607187271, 0.03390172868967056, 0.35736098885536194, 0.10974966734647751, 0.04004878178238869, 0.1010558158159256], [0.014857087284326553, 0.006715577561408281, 0.008068522438406944, 0.002957392716780305, 0.007325936108827591, 0.009883123449981213, 0.009893126785755157, 0.01824828051030636, 0.024208690971136093, 0.039367418736219406, 0.0657774955034256, 0.06384231895208359, 0.0903254970908165, 0.10010500997304916, 0.3110683262348175, 0.061669256538152695, 0.1656869649887085], [0.019245116040110588, 0.008885644376277924, 0.00792237464338541, 0.005599602125585079, 0.007652665488421917, 0.009188485331833363, 0.006034239195287228, 0.00772566394880414, 0.011027791537344456, 0.030171550810337067, 0.039298802614212036, 0.07375143468379974, 0.05119964852929115, 0.3401343524456024, 0.0578107051551342, 0.1259208470582962, 0.19843116402626038], [0.029008280485868454, 0.008672062307596207, 0.014469334855675697, 0.007418462540954351, 0.02189718559384346, 0.018473856151103973, 0.014212195761501789, 0.011079800315201283, 0.020624982193112373, 0.03227629512548447, 0.06005064770579338, 0.04825673624873161, 0.06125539913773537, 0.05894032493233681, 0.08044513314962387, 0.13112293183803558, 0.381796270608902], [0.036061376333236694, 0.010364646092057228, 0.012752019800245762, 0.008446869440376759, 0.017750296741724014, 0.007619667332619429, 0.010191650129854679, 0.01452632900327444, 0.02401808463037014, 0.028598377481102943, 0.03992410749197006, 0.06615541130304337, 0.06271900981664658, 0.09530017524957657, 0.14469680190086365, 0.2781890034675598, 0.14268623292446136]]], [[[0.2720961272716522, 0.0047176191583275795, 0.007445871829986572, 0.007373543921858072, 0.02844274416565895, 0.09184088557958603, 0.008210180327296257, 0.01079702191054821, 0.010119839571416378, 0.012189269997179508, 0.013898655772209167, 0.019184978678822517, 0.015985675156116486, 0.01822933740913868, 0.01760796830058098, 0.05610639974474907, 0.40575385093688965], [0.05370824784040451, 0.32980939745903015, 0.026174066588282585, 0.021250246092677116, 0.046655427664518356, 0.04350941628217697, 0.029906166717410088, 0.05902639403939247, 0.011858013458549976, 0.04491812363266945, 0.023636819794774055, 0.01924913562834263, 0.004959074780344963, 0.02020331285893917, 0.11618436872959137, 0.08136522769927979, 0.06758658587932587], [0.16937030851840973, 0.2592231333255768, 0.008613250218331814, 0.07461423426866531, 0.016794616356492043, 0.0915118083357811, 0.014460545033216476, 0.01915012300014496, 0.004253507591784, 0.012648710049688816, 0.010439087636768818, 0.0048296283930540085, 0.004917411599308252, 0.02954203635454178, 0.041406597942113876, 0.01743726246058941, 0.22078783810138702], [0.1938166469335556, 0.19381378591060638, 0.040466777980327606, 0.07340949773788452, 0.011309454217553139, 0.05295112356543541, 0.019036320969462395, 0.02199707366526127, 0.0027824498247355223, 0.07119317352771759, 0.03073066845536232, 0.011739782057702541, 0.004384554456919432, 0.06000726297497749, 0.060788046568632126, 0.013395455665886402, 0.13817790150642395], [0.33825933933258057, 0.09750884771347046, 0.02822262793779373, 0.06577137857675552, 0.020140331238508224, 0.057233940809965134, 0.017318831756711006, 0.020192762836813927, 0.01114537101238966, 0.023025482892990112, 0.012760855257511139, 0.018704034388065338, 0.01020083762705326, 0.034977026283741, 0.027572151273489, 0.021857958287000656, 0.19510838389396667], [0.5100507736206055, 0.026299607008695602, 0.021534981206059456, 0.054615747183561325, 0.029007771983742714, 0.06168322265148163, 0.0072142439894378185, 0.013712354004383087, 0.010329951532185078, 0.01190279982984066, 0.007441708352416754, 0.013787481002509594, 0.0054626185446977615, 0.016819175332784653, 0.013793287798762321, 0.025581251829862595, 0.17076298594474792], [0.3221951127052307, 0.029303966090083122, 0.007010327652096748, 0.025597840547561646, 0.016371117904782295, 0.06496277451515198, 0.016113096848130226, 0.06558091938495636, 0.006824779324233532, 0.02229316346347332, 0.007868291810154915, 0.012508012354373932, 0.006820826791226864, 0.019252749159932137, 0.06019536033272743, 0.038542862981557846, 0.2785589396953583], [0.2791869044303894, 0.04583495482802391, 0.015982823446393013, 0.06972896307706833, 0.012428054586052895, 0.061639346182346344, 0.011268007569015026, 0.024852635338902473, 0.007681394927203655, 0.029444612562656403, 0.010083560831844807, 0.019076136872172356, 0.01596539281308651, 0.040087729692459106, 0.054655954241752625, 0.034186311066150665, 0.26789721846580505], [0.2337549328804016, 0.02115803211927414, 0.0074760690331459045, 0.05307677760720253, 0.010702554136514664, 0.07900658249855042, 0.009837934747338295, 0.02336674928665161, 0.004115114454180002, 0.011395113542675972, 0.0105177853256464, 0.011136452667415142, 0.00556586217135191, 0.03864764794707298, 0.045243967324495316, 0.03148092329502106, 0.403517484664917], [0.21845172345638275, 0.01709190011024475, 0.001309955958276987, 0.0065551758743822575, 0.00627560680732131, 0.05543128401041031, 0.007333300542086363, 0.027325671166181564, 0.006534295156598091, 0.0027157380245625973, 0.008664285764098167, 0.0053241620771586895, 0.005624425131827593, 0.05271882191300392, 0.0579812191426754, 0.03022506833076477, 0.4904373288154602], [0.41961830854415894, 0.053302813321352005, 0.00585320545360446, 0.03933021053671837, 0.009844244457781315, 0.04115147143602371, 0.010145356878638268, 0.021867942065000534, 0.005595142487436533, 0.005762067157775164, 0.003072212915867567, 0.01075877994298935, 0.00401648972183466, 0.019521964713931084, 0.032172560691833496, 0.027913955971598625, 0.2900732159614563], [0.21514031291007996, 0.08450949192047119, 0.0043879118748009205, 0.04537258669734001, 0.012408832088112831, 0.08642344921827316, 0.014157330617308617, 0.02215093933045864, 0.005955401808023453, 0.011209794320166111, 0.007960129529237747, 0.005831509828567505, 0.007080587558448315, 0.04441574960947037, 0.04967561736702919, 0.024964526295661926, 0.3583557605743408], [0.2790856957435608, 0.07740747928619385, 0.007116599939763546, 0.023515485227108, 0.009929762221872807, 0.04313325136899948, 0.015198180451989174, 0.028941936790943146, 0.004487935919314623, 0.011941254138946533, 0.008770398795604706, 0.014584281481802464, 0.0047638616524636745, 0.1049753874540329, 0.061734139919281006, 0.02556750178337097, 0.278846800327301], [0.06081320345401764, 0.01750783622264862, 0.011214612051844597, 0.02851071022450924, 0.02236938290297985, 0.065810926258564, 0.020594988018274307, 0.03903201222419739, 0.007975144311785698, 0.09394019097089767, 0.022938638925552368, 0.033456429839134216, 0.015504693612456322, 0.1143939420580864, 0.10607751458883286, 0.07664193212985992, 0.2632178068161011], [0.10813651978969574, 0.02988516539335251, 0.007273549679666758, 0.011930489912629128, 0.03311409428715706, 0.07622631639242172, 0.020506424829363823, 0.06493363529443741, 0.060925234109163284, 0.011853344738483429, 0.014799114316701889, 0.021686172112822533, 0.009593521244823933, 0.06365232914686203, 0.14745987951755524, 0.11409515887498856, 0.2039291262626648], [0.24502693116664886, 0.06572175770998001, 0.017248380929231644, 0.040945690125226974, 0.010960201732814312, 0.041049759835004807, 0.024486426264047623, 0.02867881767451763, 0.016243906691670418, 0.03395956754684448, 0.01757846772670746, 0.031297583132982254, 0.017399447038769722, 0.07529079169034958, 0.05380541831254959, 0.02587670460343361, 0.2544303238391876], [0.37020784616470337, 0.0151824364438653, 0.01744430512189865, 0.03784802183508873, 0.030400177463889122, 0.06890266388654709, 0.010347853414714336, 0.01718025468289852, 0.014692415483295918, 0.016757285222411156, 0.014487243257462978, 0.022093547508120537, 0.010065590962767601, 0.03354581817984581, 0.025748444721102715, 0.051970526576042175, 0.2431255429983139]], [[0.14385899901390076, 0.015308938920497894, 0.025807399302721024, 0.005505569279193878, 0.03221144527196884, 0.06278317421674728, 0.05080750212073326, 0.033139605075120926, 0.049621354788541794, 0.02654743753373623, 0.10414518415927887, 0.06497194617986679, 0.07542839646339417, 0.05810243636369705, 0.04418531432747841, 0.06875357776880264, 0.1388218104839325], [0.02330821193754673, 0.0003373066720087081, 0.0025563479866832495, 0.0018460896098986268, 0.03981049358844757, 0.604191780090332, 0.006394601427018642, 0.019140329211950302, 0.0011952545028179884, 0.002990234410390258, 0.0017607397167012095, 0.004958673380315304, 0.006551253609359264, 0.07861161231994629, 0.00021891047072131187, 0.04200164973735809, 0.1641264706850052], [0.13004760444164276, 0.006842296104878187, 0.02255375310778618, 0.008595074526965618, 0.08192553371191025, 0.2008572369813919, 0.013385243713855743, 0.023601019755005836, 0.04085806384682655, 0.008622516877949238, 0.06323830783367157, 0.021395757794380188, 0.05814114212989807, 0.03795435279607773, 0.009929908439517021, 0.06825543940067291, 0.20379669964313507], [0.14997035264968872, 0.005083002150058746, 0.019013315439224243, 0.00029563182033598423, 0.08489061892032623, 0.17775240540504456, 0.015575152821838856, 0.012154080905020237, 0.06610725820064545, 0.0029261286836117506, 0.09226572513580322, 0.021658185869455338, 0.034087181091308594, 0.013739803805947304, 0.0104850297793746, 0.06448839604854584, 0.22950774431228638], [0.11390962451696396, 0.027186980471014977, 0.030740803107619286, 0.0235507320612669, 0.058813877403736115, 0.14623713493347168, 0.039362285286188126, 0.04356041178107262, 0.039024461060762405, 0.025377342477440834, 0.046185918152332306, 0.03343665227293968, 0.04377162083983421, 0.035378001630306244, 0.027362966910004616, 0.06385020166635513, 0.20225097239017487], [0.15813185274600983, 0.022374723106622696, 0.009743674658238888, 0.011884573847055435, 0.03684253618121147, 0.06488609313964844, 0.01907314546406269, 0.05637926235795021, 0.032291289418935776, 0.011636360548436642, 0.021335003897547722, 0.018022039905190468, 0.01626286655664444, 0.011235845275223255, 0.01025170087814331, 0.06730852276086807, 0.4323403835296631], [0.08825308084487915, 0.010702621191740036, 0.0180505458265543, 0.008709547109901905, 0.06064385920763016, 0.17810851335525513, 0.011110207997262478, 0.02837189845740795, 0.030673740431666374, 0.016201434656977654, 0.05839760601520538, 0.014998836442828178, 0.024965273216366768, 0.025217650458216667, 0.003925382625311613, 0.08466874808073044, 0.33700114488601685], [0.16668301820755005, 0.025902770459651947, 0.03141755610704422, 0.004677740391343832, 0.04429295286536217, 0.1460646390914917, 0.02130371704697609, 0.025241835042834282, 0.04818946495652199, 0.012518716044723988, 0.05527331307530403, 0.043299686163663864, 0.06380051374435425, 0.04164669290184975, 0.009486602619290352, 0.05264776572585106, 0.20755310356616974], [0.10488416254520416, 0.025759480893611908, 0.0344066396355629, 0.013849255628883839, 0.05164724215865135, 0.07830595225095749, 0.028035087510943413, 0.03505873680114746, 0.061029814183712006, 0.03285953402519226, 0.08062005043029785, 0.03206632658839226, 0.10540429502725601, 0.06326715648174286, 0.043010298162698746, 0.05022164806723595, 0.15957431495189667], [0.10337387770414352, 0.0029722489416599274, 0.014076930470764637, 0.0027232873253524303, 0.03286778926849365, 0.3024493157863617, 0.03217090666294098, 0.044592730700969696, 0.04310353845357895, 0.011526226997375488, 0.05924798175692558, 0.02343630976974964, 0.043644219636917114, 0.03384096547961235, 0.016884617507457733, 0.02396254800260067, 0.20912659168243408], [0.17783424258232117, 0.012365097180008888, 0.028537821024656296, 0.011420292779803276, 0.04525793343782425, 0.13913899660110474, 0.02080659754574299, 0.035610176622867584, 0.036932844668626785, 0.017359361052513123, 0.07076592743396759, 0.03156058117747307, 0.09672949463129044, 0.04699535667896271, 0.013229142874479294, 0.04613451287150383, 0.169321671128273], [0.10983610153198242, 0.007760636508464813, 0.027127496898174286, 0.007254261523485184, 0.05999618023633957, 0.14638389647006989, 0.015232485719025135, 0.02497941628098488, 0.04408220946788788, 0.010453658178448677, 0.1038866639137268, 0.027265120297670364, 0.07327192276716232, 0.03128829225897789, 0.015759875997900963, 0.0555771142244339, 0.23984470963478088], [0.08873304724693298, 0.01025793794542551, 0.026916062459349632, 0.005590289365500212, 0.05820513889193535, 0.2120617777109146, 0.019885219633579254, 0.03814222663640976, 0.05106279253959656, 0.01724356971681118, 0.083716481924057, 0.02649391070008278, 0.024302586913108826, 0.02801814116537571, 0.014278707094490528, 0.04786623269319534, 0.24722586572170258], [0.10410800576210022, 0.05034462735056877, 0.06133219599723816, 0.004034843761473894, 0.06242644041776657, 0.05679871141910553, 0.026775673031806946, 0.026605956256389618, 0.06749822199344635, 0.01767699606716633, 0.07636915147304535, 0.05240466445684433, 0.04617342725396156, 0.03207673877477646, 0.039797019213438034, 0.06567847728729248, 0.20989881455898285], [0.12503698468208313, 0.015189476311206818, 0.04698045924305916, 0.0018856555689126253, 0.04447183012962341, 0.13725775480270386, 0.029823636636137962, 0.023603903129696846, 0.030443500727415085, 0.005810841917991638, 0.10116416215896606, 0.05785917863249779, 0.05262189731001854, 0.04938487708568573, 0.009484841488301754, 0.05122824385762215, 0.21775269508361816], [0.07041514664888382, 0.014328040182590485, 0.03570939600467682, 0.016030797734856606, 0.04682944715023041, 0.12566857039928436, 0.044049207121133804, 0.036500293761491776, 0.03563305363059044, 0.01972576417028904, 0.08613040298223495, 0.04087678715586662, 0.07657988369464874, 0.04363652318716049, 0.0347619466483593, 0.0569663941860199, 0.21615836024284363], [0.18872380256652832, 0.012198355980217457, 0.0037503670901060104, 0.011634939350187778, 0.030532104894518852, 0.052303824573755264, 0.011299336329102516, 0.039974093437194824, 0.016877377405762672, 0.009769553318619728, 0.021357236430048943, 0.010815533809363842, 0.008076494559645653, 0.012321862392127514, 0.005771597381681204, 0.08706804364919662, 0.47752541303634644]], [[0.20075663924217224, 0.04420413821935654, 0.01798233389854431, 0.008555117063224316, 0.11379898339509964, 0.09513255953788757, 0.05458465963602066, 0.048957061022520065, 0.025148149579763412, 0.0072125038132071495, 0.024324599653482437, 0.01621350459754467, 0.005208022892475128, 0.022746358066797256, 0.014928814955055714, 0.12417133152484894, 0.17607516050338745], [0.052520811557769775, 0.45562928915023804, 0.02995024062693119, 0.24546316266059875, 0.010444069281220436, 0.012480979785323143, 0.02559000998735428, 0.009470570832490921, 0.0035604541189968586, 0.03815355524420738, 0.010503075085580349, 0.017491653561592102, 0.013199052773416042, 0.04139053449034691, 0.006243683863431215, 0.009496706537902355, 0.018412072211503983], [0.33637771010398865, 0.25207656621932983, 0.006019978318363428, 0.023272937163710594, 0.021432025358080864, 0.06700253486633301, 0.027872106060385704, 0.01998387649655342, 0.010798579081892967, 0.014816542156040668, 0.012340719811618328, 0.0029981457628309727, 0.0014274648856371641, 0.020458852872252464, 0.00728908646851778, 0.023215388879179955, 0.15261749923229218], [0.31766006350517273, 0.046975381672382355, 0.010389476083219051, 0.10687189549207687, 0.0336088165640831, 0.11127054691314697, 0.04119309037923813, 0.034239985048770905, 0.007475915364921093, 0.012107706628739834, 0.027221206575632095, 0.006853172555565834, 0.007021517492830753, 0.05192255601286888, 0.01345644611865282, 0.03226751089096069, 0.13946475088596344], [0.27734115719795227, 0.05695096775889397, 0.01915513537824154, 0.016926519572734833, 0.09992089867591858, 0.10880014300346375, 0.055716708302497864, 0.02170729450881481, 0.015885844826698303, 0.012059032917022705, 0.023898465558886528, 0.010604064911603928, 0.004930445458739996, 0.020765462890267372, 0.009287577122449875, 0.07895997166633606, 0.1670903116464615], [0.23092898726463318, 0.059355851262807846, 0.023756258189678192, 0.022345485165715218, 0.09949379414319992, 0.07771814614534378, 0.05737793818116188, 0.05138352885842323, 0.022948767989873886, 0.015058170072734356, 0.023579521104693413, 0.017601095139980316, 0.006315752398222685, 0.03721107542514801, 0.01387420017272234, 0.10195831954479218, 0.13909313082695007], [0.3623895049095154, 0.022305067628622055, 0.007092347368597984, 0.007985630072653294, 0.03909685090184212, 0.09940481930971146, 0.020989276468753815, 0.023214777931571007, 0.0077403998002409935, 0.01955478824675083, 0.011819401755928993, 0.011598431505262852, 0.006393950432538986, 0.031159700825810432, 0.02522033266723156, 0.06458316743373871, 0.23945164680480957], [0.2806733548641205, 0.2177642583847046, 0.010506948456168175, 0.030568396672606468, 0.02586384490132332, 0.05665509030222893, 0.05014542117714882, 0.04426724836230278, 0.015346408821642399, 0.03643631935119629, 0.01392482127994299, 0.015014641918241978, 0.007741163019090891, 0.031998101621866226, 0.010702719911932945, 0.051590777933597565, 0.100800521671772], [0.3251977860927582, 0.06661509722471237, 0.006989145651459694, 0.016060763970017433, 0.019548848271369934, 0.08419559895992279, 0.014286031015217304, 0.031553715467453, 0.004132350441068411, 0.024787886068224907, 0.013551664538681507, 0.01420812588185072, 0.004663123283535242, 0.07275784760713577, 0.010547567158937454, 0.045735981315374374, 0.2451685518026352], [0.3161104619503021, 0.0710710734128952, 0.0055236369371414185, 0.03056439943611622, 0.015672270208597183, 0.0668778195977211, 0.0180093701928854, 0.013290507718920708, 0.011262097395956516, 0.005055408924818039, 0.007109255995601416, 0.00967684481292963, 0.005237458273768425, 0.034942444413900375, 0.02786489576101303, 0.04328765347599983, 0.3184444010257721], [0.2499435991048813, 0.07331188023090363, 0.01381076779216528, 0.023074762895703316, 0.034189801663160324, 0.05989955738186836, 0.09016358107328415, 0.07029667496681213, 0.01541086658835411, 0.03407420590519905, 0.01680152863264084, 0.022232575342059135, 0.01572496071457863, 0.04227784648537636, 0.022051388397812843, 0.0717427209019661, 0.14499321579933167], [0.28553882241249084, 0.13757291436195374, 0.0038969782181084156, 0.0114736994728446, 0.016671938821673393, 0.052720267325639725, 0.025428319349884987, 0.04066156968474388, 0.01757586933672428, 0.030455032363533974, 0.015378843061625957, 0.005870271474123001, 0.0031910238321870565, 0.07215850055217743, 0.02521032840013504, 0.04366021603345871, 0.21253539621829987], [0.2404254972934723, 0.01357039250433445, 0.005681368988007307, 0.010433457791805267, 0.017826423048973083, 0.0663171112537384, 0.019566157832741737, 0.062126319855451584, 0.01582002453505993, 0.039676275104284286, 0.013909827917814255, 0.013495461083948612, 0.007433244492858648, 0.09539759159088135, 0.03857845813035965, 0.05029076710343361, 0.28945159912109375], [0.07491191476583481, 0.1714627742767334, 0.006326660048216581, 0.038860127329826355, 0.009455947205424309, 0.059582389891147614, 0.01133711077272892, 0.033083681017160416, 0.03569050505757332, 0.02548150345683098, 0.008752950467169285, 0.016994250938296318, 0.03368125110864639, 0.1362370252609253, 0.16655829548835754, 0.023472828790545464, 0.14811070263385773], [0.07533951103687286, 0.17201466858386993, 0.0018903882009908557, 0.007725059054791927, 0.01143450103700161, 0.040604494512081146, 0.007626560982316732, 0.013560399413108826, 0.013304479420185089, 0.014108173549175262, 0.005775101948529482, 0.003987178672105074, 0.0058024427853524685, 0.35400429368019104, 0.13933341205120087, 0.02896907739341259, 0.1045202910900116], [0.24106115102767944, 0.03656453266739845, 0.009384488686919212, 0.008881601504981518, 0.05321911349892616, 0.08254675567150116, 0.04860718548297882, 0.03409253805875778, 0.02341022528707981, 0.022194668650627136, 0.03344164043664932, 0.01547828409820795, 0.0073018562979996204, 0.04413207992911339, 0.02218700759112835, 0.10149481147527695, 0.21600206196308136], [0.25043463706970215, 0.022589202970266342, 0.013734494335949421, 0.009066608734428883, 0.0797322690486908, 0.06434030830860138, 0.04597347602248192, 0.06620267778635025, 0.029698042199015617, 0.018843671306967735, 0.03164996579289436, 0.021771609783172607, 0.005680545698851347, 0.04440012946724892, 0.016517702490091324, 0.14094877243041992, 0.1384158581495285]], [[0.13271604478359222, 0.06365969032049179, 0.01485684234648943, 0.012909997254610062, 0.050979070365428925, 0.21816588938236237, 0.016498127952218056, 0.019215991720557213, 0.009987061843276024, 0.01175764761865139, 0.022476661950349808, 0.013633408583700657, 0.014020279981195927, 0.010169326327741146, 0.018183493986725807, 0.04479264095425606, 0.32597777247428894], [0.27222689986228943, 0.16393272578716278, 0.007347454782575369, 0.0016617513028904796, 0.043599918484687805, 0.16297274827957153, 0.00325424293987453, 0.0057991971261799335, 0.0020864258985966444, 0.00139233423396945, 0.014126683585345745, 0.006509536411613226, 0.0068853734992444515, 0.002457872498780489, 0.008351141586899757, 0.018704025074839592, 0.2786916196346283], [0.21467430889606476, 0.14844392240047455, 0.01962297037243843, 0.02592432126402855, 0.01963450014591217, 0.15341584384441376, 0.007627591025084257, 0.011178359389305115, 0.002760833129286766, 0.007308787666261196, 0.016761429607868195, 0.04189923778176308, 0.10264301300048828, 0.004932987038046122, 0.01005023717880249, 0.0197055134922266, 0.19341611862182617], [0.2160709947347641, 0.004355045035481453, 0.005203354172408581, 0.08047924190759659, 0.04038388282060623, 0.1622864007949829, 0.006296205800026655, 0.007859728299081326, 0.002686487277969718, 0.0027685598470270634, 0.01120700128376484, 0.0070493691600859165, 0.0011824117973446846, 0.002119926270097494, 0.0016721171559765935, 0.022169748321175575, 0.42620956897735596], [0.2065909504890442, 0.10548084229230881, 0.014376047067344189, 0.011171574704349041, 0.036435991525650024, 0.19582730531692505, 0.010564015246927738, 0.02018045075237751, 0.008474948816001415, 0.01339217834174633, 0.01104289572685957, 0.015260530635714531, 0.023243293166160583, 0.018421223387122154, 0.022058822214603424, 0.05223735794425011, 0.23524148762226105], [0.23077362775802612, 0.03884488716721535, 0.02496332675218582, 0.01569173112511635, 0.04115547612309456, 0.11748826503753662, 0.012359032407402992, 0.018634261563420296, 0.01263615395873785, 0.01735037937760353, 0.014230407774448395, 0.013048320077359676, 0.017843516543507576, 0.008329342119395733, 0.017302490770816803, 0.033439189195632935, 0.3659095764160156], [0.2770921587944031, 0.10242246836423874, 0.015108009800314903, 0.020259855315089226, 0.02071152999997139, 0.12805764377117157, 0.0069399201311171055, 0.014069408178329468, 0.005927004385739565, 0.02935885451734066, 0.00892803817987442, 0.017404355108737946, 0.02273743785917759, 0.010656535625457764, 0.02250012196600437, 0.032519612461328506, 0.26530691981315613], [0.2669413387775421, 0.034268323332071304, 0.0063261310569942, 0.01729706861078739, 0.02720215916633606, 0.14392037689685822, 0.004189078696072102, 0.01015386451035738, 0.007334539666771889, 0.008979708887636662, 0.010502923280000687, 0.006869894452393055, 0.010184690356254578, 0.0038386413361877203, 0.006479941308498383, 0.019323742017149925, 0.4161875545978546], [0.20134292542934418, 0.06562738120555878, 0.018275434151291847, 0.021765543147921562, 0.031826481223106384, 0.17569556832313538, 0.012005576863884926, 0.02176441252231598, 0.0023993435315787792, 0.013568258844316006, 0.019615357741713524, 0.03466091305017471, 0.050091635435819626, 0.02384132146835327, 0.03337854892015457, 0.031533874571323395, 0.24260734021663666], [0.2159661203622818, 0.011924443766474724, 0.017888909205794334, 0.0129286739975214, 0.06824635714292526, 0.18171268701553345, 0.01139761507511139, 0.02151275798678398, 0.02362627349793911, 0.01909910887479782, 0.024558570235967636, 0.02070951648056507, 0.043620284646749496, 0.016683751717209816, 0.01249468419700861, 0.04948331415653229, 0.2481468766927719], [0.2913471758365631, 0.054579369723796844, 0.016047963872551918, 0.007454947102814913, 0.02563488855957985, 0.1784050613641739, 0.02240399830043316, 0.048332393169403076, 0.012804512865841389, 0.02567403018474579, 0.01301896758377552, 0.017292790114879608, 0.014845269732177258, 0.009718729183077812, 0.00991775281727314, 0.02127743512392044, 0.23124460875988007], [0.2493724524974823, 0.11985626071691513, 0.04976630210876465, 0.01778201200067997, 0.02004053443670273, 0.08575543016195297, 0.00795772299170494, 0.017389804124832153, 0.007301649544388056, 0.009999735280871391, 0.014797093346714973, 0.02905806340277195, 0.09674295037984848, 0.0038838882464915514, 0.017573010176420212, 0.02073531784117222, 0.23198780417442322], [0.2593901455402374, 0.023087028414011, 0.0314958281815052, 0.012646528892219067, 0.01968289352953434, 0.09481577575206757, 0.00658915750682354, 0.009365529753267765, 0.005767793860286474, 0.014155477285385132, 0.006446812767535448, 0.028976891189813614, 0.10922883450984955, 0.006119252648204565, 0.00682769576087594, 0.02371714450418949, 0.3416871726512909], [0.2140849381685257, 0.013410180807113647, 0.007128790020942688, 0.010968532413244247, 0.05276976898312569, 0.07177030295133591, 0.0033505731262266636, 0.007756400853395462, 0.010923344641923904, 0.009838959202170372, 0.03834424540400505, 0.009216208010911942, 0.018023518845438957, 0.0950634554028511, 0.03950615972280502, 0.0421767495572567, 0.3556678891181946], [0.18896888196468353, 0.028200116008520126, 0.002687708241865039, 0.00121097092051059, 0.03255489468574524, 0.10610006749629974, 0.0022752047516405582, 0.002936760662123561, 0.0017440757947042584, 0.006964198313653469, 0.01277576107531786, 0.007608556654304266, 0.01042754016816616, 0.09984446316957474, 0.1938989758491516, 0.03417600691318512, 0.26762574911117554], [0.2009156048297882, 0.04609737545251846, 0.017014753073453903, 0.009530395269393921, 0.05872688814997673, 0.19826306402683258, 0.015780309215188026, 0.013858826830983162, 0.008878689259290695, 0.00835260096937418, 0.012749861925840378, 0.02262979932129383, 0.035329315811395645, 0.01598539762198925, 0.019887397065758705, 0.025911156088113785, 0.2900885343551636], [0.2598121166229248, 0.03281703591346741, 0.014536570757627487, 0.01093034353107214, 0.037493228912353516, 0.1684655249118805, 0.012433504685759544, 0.020949920639395714, 0.010278443805873394, 0.014293797314167023, 0.009020602330565453, 0.01584750786423683, 0.017523283138871193, 0.010815172456204891, 0.011572458781301975, 0.03979308903217316, 0.31341752409935]], [[0.5767070055007935, 0.014257200993597507, 0.005263809580355883, 0.0031302981078624725, 0.0299182441085577, 0.0451105460524559, 0.008028591051697731, 0.008587010204792023, 0.005734071601182222, 0.003768277121707797, 0.005981091409921646, 0.005011661443859339, 0.0037584127858281136, 0.0033666507806628942, 0.009190964512526989, 0.041628558188676834, 0.23055754601955414], [0.6431852579116821, 0.042153820395469666, 0.008882103487849236, 0.015665749087929726, 0.04738194867968559, 0.04476200416684151, 0.007103890646249056, 0.004887685179710388, 0.0010800337186083198, 0.0016296595567837358, 0.0037312761414796114, 0.002935708500444889, 0.0021089089568704367, 0.0027641518972814083, 0.0011214888654649258, 0.0295780710875988, 0.1410282701253891], [0.2031717300415039, 0.06451650708913803, 0.0880114808678627, 0.0586736761033535, 0.07079833000898361, 0.08857432752847672, 0.05548672378063202, 0.009385654702782631, 0.02561372146010399, 0.013851979747414589, 0.020876552909612656, 0.014535094611346722, 0.0683019608259201, 0.015848979353904724, 0.011144486255943775, 0.050051312893629074, 0.14115746319293976], [0.42055168747901917, 0.06524529308080673, 0.051243990659713745, 0.04116116836667061, 0.05877946317195892, 0.08935417234897614, 0.010520639829337597, 0.04055303335189819, 0.004387718625366688, 0.007932307198643684, 0.0031455298885703087, 0.005733892787247896, 0.014689234085381031, 0.005649965722113848, 0.0016534569440409541, 0.029933465644717216, 0.14946506917476654], [0.2609901428222656, 0.0922900065779686, 0.06466027349233627, 0.02757182903587818, 0.08682654798030853, 0.11452598124742508, 0.023871008306741714, 0.019295206293463707, 0.014880253002047539, 0.007092502433806658, 0.006573200225830078, 0.0055841198191046715, 0.009240100160241127, 0.007328247185796499, 0.00918426550924778, 0.034111540764570236, 0.21597476303577423], [0.46997562050819397, 0.05168212577700615, 0.025509266182780266, 0.02612060122191906, 0.10073461383581161, 0.07286152988672256, 0.013911387883126736, 0.012349771335721016, 0.00585651770234108, 0.00461337948217988, 0.007095350418239832, 0.0037318961694836617, 0.0023848842829465866, 0.002168500330299139, 0.003654333297163248, 0.03467623516917229, 0.1626739501953125], [0.21054881811141968, 0.018221471458673477, 0.02423660270869732, 0.04530567675828934, 0.07254444062709808, 0.21227233111858368, 0.037616066634655, 0.05023638531565666, 0.010939047671854496, 0.023903172463178635, 0.027753224596381187, 0.015544859692454338, 0.016180606558918953, 0.0015476873377338052, 0.0021647915709763765, 0.016844844445586205, 0.21413999795913696], [0.24252304434776306, 0.017193226143717766, 0.02587445266544819, 0.0321691669523716, 0.04115348309278488, 0.22629910707473755, 0.07984290271997452, 0.04709497094154358, 0.007623509969562292, 0.023354312404990196, 0.01570742391049862, 0.011115656234323978, 0.007864752784371376, 0.0017888402799144387, 0.002025035209953785, 0.00793417263776064, 0.2104358673095703], [0.1008835956454277, 0.02301105111837387, 0.040841177105903625, 0.030096665024757385, 0.03553612157702446, 0.26095542311668396, 0.13307523727416992, 0.04542430862784386, 0.061392247676849365, 0.02450958453118801, 0.020104743540287018, 0.024590222164988518, 0.03684729337692261, 0.003607397433370352, 0.011635396629571915, 0.006688262335956097, 0.14080126583576202], [0.16689173877239227, 0.011328475549817085, 0.008640828542411327, 0.002226071199402213, 0.01548035629093647, 0.09574861079454422, 0.04090525954961777, 0.11389359086751938, 0.13715682923793793, 0.043150439858436584, 0.0090754684060812, 0.01856914721429348, 0.015759974718093872, 0.027653822675347328, 0.0728064775466919, 0.024321069940924644, 0.19639183580875397], [0.04408201202750206, 0.038891684263944626, 0.011810828931629658, 0.005730320233851671, 0.022082077339291573, 0.09948751330375671, 0.10144864022731781, 0.05690975487232208, 0.1240428239107132, 0.33572739362716675, 0.007795111741870642, 0.014075104147195816, 0.0053729647770524025, 0.019635207951068878, 0.007692289538681507, 0.018133342266082764, 0.08708296716213226], [0.1236879825592041, 0.005486549809575081, 0.01445541251450777, 0.014689600095152855, 0.023143233731389046, 0.0866284891963005, 0.07058952748775482, 0.020047465339303017, 0.12989921867847443, 0.08020076155662537, 0.07606995850801468, 0.04042777791619301, 0.05339021980762482, 0.012967560440301895, 0.012769020162522793, 0.03657880425453186, 0.1989683359861374], [0.053614962846040726, 0.0012197612086310983, 0.006424912717193365, 0.017267487943172455, 0.017254188656806946, 0.05132627859711647, 0.01863783225417137, 0.006727683823555708, 0.1383555680513382, 0.32875126600265503, 0.056526828557252884, 0.0502878874540329, 0.016849271953105927, 0.028255479410290718, 0.0260795708745718, 0.04839184880256653, 0.1340291053056717], [0.16067451238632202, 0.037286628037691116, 0.005280771292746067, 0.00533110648393631, 0.025840172544121742, 0.10896282643079758, 0.01907043159008026, 0.011107111349701881, 0.01835712231695652, 0.03600200638175011, 0.03243013098835945, 0.05997433885931969, 0.048746902495622635, 0.12218267470598221, 0.011335969902575016, 0.054830484092235565, 0.24258674681186676], [0.059941913932561874, 0.005037880968302488, 0.0009434728417545557, 0.0005885370774194598, 0.005972655490040779, 0.03678271919488907, 0.006705881096422672, 0.0109281400218606, 0.03302174061536789, 0.00721509987488389, 0.00853697769343853, 0.014639551751315594, 0.029718030244112015, 0.642404317855835, 0.027631960809230804, 0.028106534853577614, 0.0818246454000473], [0.13999155163764954, 0.011248922906816006, 0.004754700232297182, 0.00176723743788898, 0.00846047792583704, 0.09444219619035721, 0.023736698552966118, 0.02547360025346279, 0.023455504328012466, 0.016164403408765793, 0.02078920602798462, 0.03530481457710266, 0.06028478220105171, 0.04207591712474823, 0.04048839583992958, 0.04234588146209717, 0.4092158377170563], [0.5110097527503967, 0.009973432868719101, 0.003296829527243972, 0.0018064083997160196, 0.01326203066855669, 0.04399985820055008, 0.009374428540468216, 0.014960043132305145, 0.00675965053960681, 0.004110698122531176, 0.008787252940237522, 0.00672331266105175, 0.005479573737829924, 0.005448839161545038, 0.016924390569329262, 0.044751375913619995, 0.2933320999145508]], [[0.05430091172456741, 0.016765974462032318, 0.007334437686949968, 0.01439934503287077, 0.003244866384193301, 0.8659862875938416, 0.0007580745732411742, 0.0009663935052230954, 0.0005750933778472245, 1.6116591723402962e-05, 0.00023482208780478686, 0.0005179274594411254, 0.0004215059452690184, 0.00012044671893818304, 0.0003290951135568321, 2.762749863904901e-05, 0.03400105983018875], [0.09297240525484085, 0.0351836122572422, 0.041048988699913025, 0.031180065125226974, 0.008147099055349827, 0.2282891422510147, 0.1865839958190918, 0.03921784088015556, 0.04220937192440033, 0.015184191055595875, 0.012034722603857517, 0.049414537847042084, 0.04598911106586456, 0.007773705292493105, 0.032087720930576324, 0.00413502799347043, 0.12854841351509094], [0.08888842910528183, 0.06277422606945038, 0.09030482918024063, 0.05571768805384636, 0.008362875320017338, 0.12160748988389969, 0.028266331180930138, 0.029280828312039375, 0.04968765750527382, 0.013435416854918003, 0.00411585858091712, 0.04476287215948105, 0.07398500293493271, 0.028839848935604095, 0.07275109738111496, 0.006316784769296646, 0.22090275585651398], [0.12778453528881073, 0.025081761181354523, 0.05949749797582626, 0.02582947351038456, 0.001869557541795075, 0.17001336812973022, 0.029120834544301033, 0.033556029200553894, 0.04394255205988884, 0.011279189959168434, 0.007324475795030594, 0.043374452739953995, 0.072723887860775, 0.007249834481626749, 0.09269337356090546, 0.0014894009800627828, 0.24716977775096893], [0.13685490190982819, 0.06793169677257538, 0.05655908212065697, 0.08425978571176529, 0.0016713548684492707, 0.25378209352493286, 0.03753798082470894, 0.03544095903635025, 0.037189703434705734, 0.005206853151321411, 0.007196403574198484, 0.044925425201654434, 0.05701350048184395, 0.009478907100856304, 0.027452761307358742, 0.0003518642042763531, 0.1371467411518097], [0.18049289286136627, 0.07809296995401382, 0.052671708166599274, 0.07756374776363373, 0.005834107752889395, 0.2572821080684662, 0.028056658804416656, 0.0393056720495224, 0.04015000909566879, 0.006949243601411581, 0.015437712892889977, 0.03605559840798378, 0.023594345897436142, 0.00905010849237442, 0.01681353896856308, 0.00125435262452811, 0.13139517605304718], [0.0859261006116867, 0.012343035079538822, 0.05034005269408226, 0.015159199945628643, 0.005110118538141251, 0.15078701078891754, 0.07400473207235336, 0.06627920269966125, 0.12486614286899567, 0.008981701917946339, 0.01448087114840746, 0.07866943627595901, 0.13852596282958984, 0.01019670907407999, 0.029355905950069427, 0.003824236337095499, 0.131149560213089], [0.07701432704925537, 0.022528737783432007, 0.08546224236488342, 0.019795674830675125, 0.00488518550992012, 0.07317119091749191, 0.02154107205569744, 0.046011991798877716, 0.08510106801986694, 0.018143929541110992, 0.013963370583951473, 0.061822474002838135, 0.13185904920101166, 0.026205943897366524, 0.10013385117053986, 0.007934204302728176, 0.2044256031513214], [0.11016496270895004, 0.07438492029905319, 0.04725024104118347, 0.05002223327755928, 0.010414584539830685, 0.08404374122619629, 0.04921393841505051, 0.04075624421238899, 0.0826188325881958, 0.02531919814646244, 0.00847928412258625, 0.036659106612205505, 0.06329324096441269, 0.039871200919151306, 0.0764060914516449, 0.012741779908537865, 0.18836034834384918], [0.06933661550283432, 0.01681196503341198, 0.022037552669644356, 0.038077909499406815, 0.005450091324746609, 0.19876496493816376, 0.16270723938941956, 0.0796286016702652, 0.09549251943826675, 0.007983301766216755, 0.014133870601654053, 0.04486175253987312, 0.07107073068618774, 0.010478710755705833, 0.02397032640874386, 0.004236603155732155, 0.13495725393295288], [0.11839625239372253, 0.03397829085588455, 0.05942299962043762, 0.0271720252931118, 0.003448974108323455, 0.0833040401339531, 0.0749274417757988, 0.061305586248636246, 0.07289645820856094, 0.02112964168190956, 0.0177499670535326, 0.07899586856365204, 0.0936392992734909, 0.020423609763383865, 0.07699793577194214, 0.004139795899391174, 0.15207166969776154], [0.07868664711713791, 0.04627920314669609, 0.05080154165625572, 0.03382488340139389, 0.005814384203404188, 0.11363300681114197, 0.05300942808389664, 0.034942980855703354, 0.048802927136421204, 0.01188679225742817, 0.003620208939537406, 0.04099129140377045, 0.0998014435172081, 0.022511163726449013, 0.09994810074567795, 0.007953040301799774, 0.24749302864074707], [0.06291889399290085, 0.0240775216370821, 0.03633279353380203, 0.016907887533307076, 0.007238141261041164, 0.15514124929904938, 0.08797865360975266, 0.05095416307449341, 0.08704781532287598, 0.008757111616432667, 0.007111609447747469, 0.07688876241445541, 0.07225733995437622, 0.015337099321186543, 0.06562280654907227, 0.00875688437372446, 0.21667125821113586], [0.07449222356081009, 0.02899465709924698, 0.029075028374791145, 0.018919074907898903, 0.028352312743663788, 0.16443891823291779, 0.11033675074577332, 0.09075663983821869, 0.10556315630674362, 0.019333675503730774, 0.01267991028726101, 0.05621888488531113, 0.05590687692165375, 0.01879952847957611, 0.023203518241643906, 0.021836580708622932, 0.1410922408103943], [0.06955604255199432, 0.029651787132024765, 0.04025072231888771, 0.015808064490556717, 0.006878557149320841, 0.1301555037498474, 0.110182985663414, 0.050793569535017014, 0.0460088774561882, 0.012948360294103622, 0.003818806726485491, 0.04304356873035431, 0.19722485542297363, 0.015907755121588707, 0.03541337326169014, 0.009854815900325775, 0.1825023740530014], [0.06919726729393005, 0.04043927788734436, 0.036032065749168396, 0.028800494968891144, 0.004396314267069101, 0.19916152954101562, 0.12394026666879654, 0.05543181672692299, 0.060927946120500565, 0.011181366629898548, 0.010623874142765999, 0.05102541670203209, 0.10485861450433731, 0.010340962558984756, 0.04311351850628853, 0.003474639495834708, 0.14705471694469452], [0.012728169560432434, 0.01531885378062725, 0.01936553791165352, 0.009197955019772053, 0.26604411005973816, 0.03500492498278618, 0.014957177452743053, 0.0169542096555233, 0.06483138352632523, 0.014090237207710743, 0.00909554772078991, 0.02252560667693615, 0.028246423229575157, 0.04088234156370163, 0.04802241921424866, 0.3335629105567932, 0.04917224124073982]], [[0.21102111041545868, 0.023081107065081596, 0.033499497920274734, 0.05686235800385475, 0.2567245364189148, 0.4081202447414398, 0.000553723017219454, 0.0012037876294925809, 0.000687940395437181, 0.0005851116729900241, 0.0007318759453482926, 0.0004489724524319172, 0.0002707565436139703, 0.00020432707970030606, 0.0002115512324962765, 0.0008244805503636599, 0.004968542139977217], [0.4431488811969757, 0.0008762974175624549, 0.007422277703881264, 0.012106584385037422, 0.1283346563577652, 0.40641355514526367, 0.0001455715682823211, 7.093698513926938e-05, 1.5889600035734475e-05, 6.776730970159406e-06, 5.636125570163131e-05, 2.204555130447261e-05, 2.7142414182890207e-05, 4.161915967415553e-06, 4.425142833497375e-06, 0.00014147721230983734, 0.0012030592188239098], [0.2513318359851837, 0.012001865543425083, 0.015081096440553665, 0.044197969138622284, 0.1764794886112213, 0.49198392033576965, 0.0005948924808762968, 0.000751794024836272, 0.00020002055680379272, 0.00010903662769123912, 0.0005536428652703762, 0.00015720048395451158, 0.0002714014844968915, 0.00013338059943635017, 0.00010103241947945207, 0.0008378138882108033, 0.005213585216552019], [0.23569004237651825, 0.005054363515228033, 0.011462393216788769, 0.0016848359955474734, 0.2279520183801651, 0.514332115650177, 0.00034165565739385784, 0.00011946507584070787, 8.387184789171442e-05, 4.970370719092898e-05, 0.00043126658420078456, 9.505121124675497e-05, 6.420719728339463e-05, 4.158844967605546e-05, 2.0402796508278698e-05, 0.00028280142578296363, 0.002294225851073861], [0.2797805368900299, 0.0183400996029377, 0.02688608132302761, 0.028177393600344658, 0.1881149709224701, 0.44976767897605896, 0.0006991421687416732, 0.0006161084747873247, 0.0002484257856849581, 0.00015310323215089738, 0.0006750079919584095, 0.00019206333672627807, 0.00024540291633456945, 7.980578811839223e-05, 3.967667726101354e-05, 0.0003699520311783999, 0.005614636931568384], [0.14064526557922363, 0.02680925838649273, 0.02717296965420246, 0.056612540036439896, 0.1935402899980545, 0.5502279996871948, 0.0005324720987118781, 0.0005185141926631331, 0.00018219248158857226, 7.948711572680622e-05, 0.0003423972812015563, 0.00019298533152323216, 0.00022219889797270298, 9.7196752903983e-05, 6.710801244480535e-05, 0.0003510052338242531, 0.002406153129413724], [0.014114994555711746, 2.66724091488868e-05, 0.0011158923152834177, 0.00013505484093911946, 0.0012494379188865423, 0.0005624994519166648, 0.02575748600065708, 0.08701296895742416, 0.18433088064193726, 0.1654605269432068, 0.09928236901760101, 0.03376765921711922, 0.026105718687176704, 0.02941611222922802, 0.012375745922327042, 0.19115106761455536, 0.12813489139080048], [0.05335824564099312, 5.039254028815776e-05, 0.004615457262843847, 0.00024737793137319386, 0.0037013187538832426, 0.002065977081656456, 0.06532204151153564, 0.05145368352532387, 0.10881952196359634, 0.08943045139312744, 0.14145918190479279, 0.0606439933180809, 0.023541558533906937, 0.015040138736367226, 0.017192842438817024, 0.2208382487297058, 0.14221958816051483], [0.013764205388724804, 9.23374536796473e-05, 0.0023198893759399652, 0.0004222659335937351, 0.0018653355073183775, 0.0013767079217359424, 0.08102074265480042, 0.11489629745483398, 0.11656937748193741, 0.07666777819395065, 0.09603847563266754, 0.05705266073346138, 0.03532383590936661, 0.03930352255702019, 0.03780881687998772, 0.20835116505622864, 0.11712664365768433], [0.005613444373011589, 5.269745088298805e-06, 0.00033041019923985004, 2.615006269479636e-05, 0.00034748276812024415, 0.00023413184680975974, 0.07464675605297089, 0.05532818287611008, 0.07138562202453613, 0.06913279742002487, 0.10941364616155624, 0.03266802802681923, 0.027211235836148262, 0.020510481670498848, 0.03941435366868973, 0.3357965648174286, 0.15793544054031372], [0.012535078451037407, 2.132328154402785e-05, 0.0013302747393026948, 8.352527220267802e-05, 0.0011399253271520138, 0.0008957945974543691, 0.07887422293424606, 0.10081871598958969, 0.09703157842159271, 0.07415227591991425, 0.08471537381410599, 0.05488210916519165, 0.057044122368097305, 0.03620578721165657, 0.030801977962255478, 0.18580061197280884, 0.18366731703281403], [0.019194800406694412, 4.118765355087817e-05, 0.0008814202737994492, 0.0001386906806146726, 0.0012625587405636907, 0.0009375656954944134, 0.05138399451971054, 0.06925731152296066, 0.08894137293100357, 0.07066454738378525, 0.09525573998689651, 0.02883806638419628, 0.03610368072986603, 0.026436645537614822, 0.038955651223659515, 0.27282118797302246, 0.19888542592525482], [0.03017469123005867, 1.6496194803039543e-05, 0.0018679494969546795, 0.00020017022325191647, 0.0020392551086843014, 0.0012459915596991777, 0.04731623828411102, 0.2126908153295517, 0.1213373914361, 0.049164779484272, 0.13156399130821228, 0.037739019840955734, 0.021113397553563118, 0.010286364704370499, 0.022711414843797684, 0.15241798758506775, 0.15811409056186676], [0.03529534861445427, 1.685132519924082e-05, 0.0007960697985254228, 1.592453736520838e-05, 0.000948925968259573, 0.0003242740058340132, 0.0849439948797226, 0.05776681751012802, 0.12693378329277039, 0.06538298726081848, 0.16325275599956512, 0.0203193798661232, 0.022184433415532112, 0.005647081416100264, 0.006051709409803152, 0.17921918630599976, 0.23090040683746338], [0.011825385503470898, 7.447833468177123e-06, 0.0011164348106831312, 5.4512303904630244e-05, 0.0002963464648928493, 0.00016878968745004386, 0.07729285210371017, 0.089568592607975, 0.08326125890016556, 0.08894028514623642, 0.199104443192482, 0.05309135094285011, 0.04257415980100632, 0.006811525672674179, 0.005406685173511505, 0.17627938091754913, 0.164200559258461], [0.014851618558168411, 1.4912934602762107e-05, 0.0004416220763232559, 2.5228498998330906e-05, 0.0003178699407726526, 0.00014674697013106197, 0.07843803614377975, 0.06741675734519958, 0.13820427656173706, 0.10773537307977676, 0.12484924495220184, 0.03529856353998184, 0.035906169563531876, 0.024636248126626015, 0.018852291628718376, 0.1534470021724701, 0.1994180679321289], [0.11769552528858185, 0.0012769204331561923, 0.00969814881682396, 0.010471975430846214, 0.020796360448002815, 0.026143405586481094, 0.0803271159529686, 0.09644545614719391, 0.062458328902721405, 0.033661410212516785, 0.09018903970718384, 0.03864660486578941, 0.03788262978196144, 0.03243815526366234, 0.034032177180051804, 0.17876467108726501, 0.12907209992408752]], [[0.26461121439933777, 0.017166435718536377, 0.006592206656932831, 0.00960161816328764, 0.030011575669050217, 0.12039072066545486, 0.00721179973334074, 0.004566540475934744, 0.004937591031193733, 0.006667617708444595, 0.007033712230622768, 0.004417870193719864, 0.00452926242724061, 0.016428694128990173, 0.005063034128397703, 0.023966584354639053, 0.46680349111557007], [0.03358263894915581, 0.07644867151975632, 0.09019967913627625, 0.15920794010162354, 0.12433610111474991, 0.11183230578899384, 0.0428570955991745, 0.021422673016786575, 0.031259935349226, 0.02807634510099888, 0.04149652644991875, 0.02901819907128811, 0.027653921395540237, 0.037333521991968155, 0.02986946702003479, 0.05036846548318863, 0.06503655016422272], [0.02344432845711708, 0.20144368708133698, 0.11222799867391586, 0.14761227369308472, 0.07611364871263504, 0.08044885098934174, 0.05691268667578697, 0.03150494024157524, 0.03261755779385567, 0.016062619164586067, 0.03865226358175278, 0.029713420197367668, 0.03342355787754059, 0.021020567044615746, 0.02955111861228943, 0.025512956082820892, 0.04373757913708687], [0.04115934669971466, 0.2888142466545105, 0.1385122388601303, 0.03052452951669693, 0.07347355037927628, 0.0663004219532013, 0.029565390199422836, 0.02168787643313408, 0.028078272938728333, 0.031268324702978134, 0.03889071196317673, 0.04167616367340088, 0.029871400445699692, 0.051646679639816284, 0.021268755197525024, 0.03409978374838829, 0.03316231444478035], [0.025896741077303886, 0.2986167371273041, 0.10899991542100906, 0.060506027191877365, 0.09084584563970566, 0.09038882702589035, 0.08142581582069397, 0.015189125202596188, 0.018942832946777344, 0.020284615457057953, 0.028977692127227783, 0.02752707153558731, 0.01816227287054062, 0.01639138162136078, 0.00688531156629324, 0.03247712925076485, 0.05848260223865509], [0.16084358096122742, 0.06840436905622482, 0.05953146889805794, 0.0517047643661499, 0.07307729125022888, 0.14705070853233337, 0.02881721407175064, 0.020036734640598297, 0.024132806807756424, 0.013970880769193172, 0.024266362190246582, 0.023243334144353867, 0.017846837639808655, 0.028768181800842285, 0.011637130752205849, 0.03683875501155853, 0.209829643368721], [0.02869311161339283, 0.05001472309231758, 0.04733578860759735, 0.02417704649269581, 0.023232515901327133, 0.028705552220344543, 0.060714997351169586, 0.08834213763475418, 0.04658058285713196, 0.08889109641313553, 0.07909543067216873, 0.11752187460660934, 0.06280981004238129, 0.06139914691448212, 0.06986716389656067, 0.06544966250658035, 0.057169359177351], [0.03706435114145279, 0.060476917773485184, 0.02895110659301281, 0.02814318612217903, 0.02690582536160946, 0.033242858946323395, 0.13164693117141724, 0.024164119735360146, 0.032039642333984375, 0.04178304597735405, 0.1313357651233673, 0.06910516321659088, 0.054081011563539505, 0.06217849254608154, 0.10351844877004623, 0.06175928935408592, 0.07360377907752991], [0.04289313405752182, 0.03512914478778839, 0.03985102102160454, 0.028400899842381477, 0.019696880131959915, 0.03277750685811043, 0.11509295552968979, 0.0535702183842659, 0.03680168464779854, 0.03984924778342247, 0.08028681576251984, 0.08417563140392303, 0.05075644329190254, 0.06277434527873993, 0.09614360332489014, 0.0565667487680912, 0.1252337098121643], [0.07037367671728134, 0.01978575997054577, 0.01180989108979702, 0.03406139463186264, 0.017154131084680557, 0.033461131155490875, 0.048587024211883545, 0.026450645178556442, 0.022584887221455574, 0.02323472872376442, 0.09395097196102142, 0.043436747044324875, 0.0582120306789875, 0.03841736167669296, 0.12815675139427185, 0.09308072924613953, 0.23724205791950226], [0.017664026468992233, 0.03744593635201454, 0.05232926830649376, 0.020019203424453735, 0.018953921273350716, 0.028537249192595482, 0.09604860097169876, 0.06978863477706909, 0.08502387255430222, 0.0402071513235569, 0.08223967254161835, 0.11267248541116714, 0.10371149331331253, 0.04679330810904503, 0.06917120516300201, 0.053898222744464874, 0.06549567729234695], [0.023518485948443413, 0.06058293581008911, 0.025841709226369858, 0.038973454385995865, 0.019152071326971054, 0.028592413291335106, 0.0849560797214508, 0.048377275466918945, 0.04682822898030281, 0.038771919906139374, 0.09956119954586029, 0.051356952637434006, 0.0990886315703392, 0.0829964429140091, 0.12716661393642426, 0.051873594522476196, 0.07236193865537643], [0.048804618418216705, 0.02385673299431801, 0.021296247839927673, 0.02265043929219246, 0.013404534198343754, 0.02217942476272583, 0.0522601492702961, 0.03178347274661064, 0.04209187999367714, 0.06926386803388596, 0.09891586005687714, 0.06292402744293213, 0.061380669474601746, 0.08563417941331863, 0.1852704882621765, 0.0565180666744709, 0.10176539421081543], [0.046329326927661896, 0.04148407280445099, 0.03340590372681618, 0.02864937297999859, 0.015620235353708267, 0.018903376534581184, 0.0593804270029068, 0.024896681308746338, 0.03573942184448242, 0.05202953889966011, 0.10451361536979675, 0.10715068131685257, 0.10879533737897873, 0.050760868936777115, 0.08335010707378387, 0.10076528787612915, 0.08822579681873322], [0.04684963822364807, 0.043192338198423386, 0.0297569427639246, 0.03009451925754547, 0.015393992885947227, 0.017394572496414185, 0.05820843577384949, 0.04312630742788315, 0.026525480672717094, 0.06179852411150932, 0.10625975579023361, 0.09761931747198105, 0.0645369440317154, 0.09043523669242859, 0.11304239183664322, 0.08988846093416214, 0.06587716192007065], [0.02107069082558155, 0.08743182569742203, 0.030473170801997185, 0.017919158563017845, 0.029382983222603798, 0.03548983484506607, 0.12930242717266083, 0.028258774429559708, 0.030071699991822243, 0.061479274183511734, 0.09814280271530151, 0.06290624290704727, 0.06644333899021149, 0.05673585459589958, 0.04185573011636734, 0.09168578684329987, 0.11135038733482361], [0.2874394953250885, 0.0069820755161345005, 0.005968350451439619, 0.010760568082332611, 0.016831496730446815, 0.05726008117198944, 0.006739205215126276, 0.010293353348970413, 0.013404696248471737, 0.010719546116888523, 0.014849342405796051, 0.01000150479376316, 0.013944784179329872, 0.03752777352929115, 0.015526684932410717, 0.03994519263505936, 0.4418058693408966]], [[0.06279058754444122, 0.001989370910450816, 0.00043082324555143714, 0.0010688735637813807, 0.012801200151443481, 0.8480728268623352, 0.00038117991061881185, 0.00010895432205870748, 6.829927588114515e-05, 4.6898669097572565e-05, 0.00012966438953299075, 4.8444831918459386e-05, 4.225820521241985e-05, 9.819453407544643e-05, 0.00011168413038831204, 0.00040268164593726397, 0.07140807807445526], [0.6095544695854187, 0.03530045971274376, 0.011243660934269428, 0.0020026538986712694, 0.014796772971749306, 0.10829271376132965, 0.00910465233027935, 0.0026991055347025394, 0.0010348001960664988, 0.0006750447792001069, 0.00037880465970374644, 0.0017627798952162266, 0.006706944201141596, 0.011060596443712711, 0.003292281413450837, 0.0014349846169352531, 0.18065936863422394], [0.1310761570930481, 0.6353407502174377, 0.007742743473500013, 0.06383553147315979, 0.0017042997060343623, 0.08534429967403412, 0.0014381648506969213, 0.026256226003170013, 0.0013883357169106603, 0.00035536428913474083, 0.00017774119623936713, 1.8480564904166386e-05, 0.00021673009905498475, 0.00429803691804409, 0.002976189134642482, 0.01910920813679695, 0.01872173883020878], [0.07231564074754715, 0.061171069741249084, 0.6916914582252502, 0.013612167909741402, 0.05845886841416359, 0.015775682404637337, 0.001788326888345182, 0.0010593535844236612, 0.002348918467760086, 0.0006986624794080853, 0.00014118014951236546, 5.5378124670824036e-05, 6.91917011863552e-05, 0.00020107523596379906, 0.005219796672463417, 0.004430647008121014, 0.07096253335475922], [0.09641238301992416, 0.05878857895731926, 0.03915763646364212, 0.5498397946357727, 0.050495777279138565, 0.12967416644096375, 0.0010243240976706147, 0.003609300358220935, 0.0024904338642954826, 0.009181307628750801, 0.003920629620552063, 0.0011555594392120838, 7.28031009202823e-05, 0.0004959471407346427, 0.0002366639528190717, 0.014725680463016033, 0.038719020783901215], [0.19205789268016815, 0.0049704909324646, 0.014801552519202232, 0.020934423431754112, 0.43205714225769043, 0.13611146807670593, 0.017841501161456108, 0.0010490135755389929, 0.0023966438602656126, 0.003304622136056423, 0.012721491977572441, 0.005363087169826031, 0.0023309611715376377, 0.00046598975313827395, 0.0006122963386587799, 0.0013885712251067162, 0.15159285068511963], [0.09169766306877136, 0.0036417788360267878, 0.0003162232751492411, 0.04108762741088867, 0.05289767310023308, 0.6496229767799377, 0.058181896805763245, 0.027376476675271988, 0.0022712904028594494, 0.015574834309518337, 0.012208067812025547, 0.026557931676506996, 0.0021737159695476294, 0.0030982778407633305, 2.373797178734094e-05, 0.0007071129512041807, 0.012562645599246025], [0.09650584310293198, 0.003916118294000626, 0.00017039831436704844, 0.001068446901626885, 0.03776036575436592, 0.33587631583213806, 0.4670522212982178, 0.013815272599458694, 0.019766543060541153, 0.0003938810550607741, 0.0028231691103428602, 0.0003522755578160286, 0.004318665713071823, 0.0008332575089298189, 0.0007996701751835644, 0.00013749241770710796, 0.014410112053155899], [0.05067741498351097, 0.016094502061605453, 0.0006720235687680542, 0.0039070830680429935, 0.002686702413484454, 0.10289926081895828, 0.06984174996614456, 0.6696970462799072, 0.0236582700163126, 0.03596636280417442, 0.0012176953023299575, 0.000945785955991596, 0.0007413291023112833, 0.010665730573236942, 0.0030385213904082775, 0.0025141423102468252, 0.004776305053383112], [0.02772914618253708, 0.00952720083296299, 0.011417985893785954, 0.0054349517449736595, 0.0045674643479287624, 0.003965947311371565, 0.013456203043460846, 0.06533179432153702, 0.7528318166732788, 0.014536365866661072, 0.04073861986398697, 0.0005917333764955401, 0.004096685908734798, 0.001127737108618021, 0.020002497360110283, 0.011695674620568752, 0.012948067858815193], [0.008576709777116776, 0.000769374193623662, 0.0047471970319747925, 0.00501475902274251, 0.006225347053259611, 0.004293285775929689, 0.0025879410095512867, 0.036608316004276276, 0.16842696070671082, 0.702116072177887, 0.00819812435656786, 0.01747026853263378, 0.0005512582720257342, 0.002340561943128705, 0.0011331340065225959, 0.016705218702554703, 0.014235555194318295], [0.04675876349210739, 0.00015519242151640356, 0.00010375426791142672, 0.005068828817456961, 0.02063092403113842, 0.014632251113653183, 0.002137262374162674, 0.0012451475486159325, 0.019181396812200546, 0.03355468437075615, 0.6721585392951965, 0.014147639274597168, 0.017675617709755898, 0.0008533475338481367, 0.002716936869546771, 0.016581641510128975, 0.13239803910255432], [0.02157851867377758, 0.00022062430798541754, 0.00014380838547367603, 0.0005797418998554349, 0.004618954844772816, 0.02629202790558338, 0.0013957822229713202, 0.006248930003494024, 0.0017042146064341068, 0.04913966357707977, 0.02825460582971573, 0.7574753165245056, 0.02206341177225113, 0.02061719261109829, 0.0021997145377099514, 0.018065666779875755, 0.03940186649560928], [0.1237463653087616, 0.002179550239816308, 0.0001834210561355576, 0.0001250946952495724, 0.004635443910956383, 0.019564250484108925, 0.015573718585073948, 0.001754745957441628, 0.005599053576588631, 0.0008370638242922723, 0.021705951541662216, 0.05526755750179291, 0.5377824902534485, 0.03954688832163811, 0.030990436673164368, 0.006932501681149006, 0.13357548415660858], [0.1928655058145523, 0.004013370722532272, 0.00013540068175643682, 8.433483162662014e-05, 0.00029905568226240575, 0.027646757662296295, 0.0026867184787988663, 0.031001880764961243, 0.002488060388714075, 0.0032093569170683622, 0.0015351265901699662, 0.029926659539341927, 0.05598921328783035, 0.38963785767555237, 0.024196337908506393, 0.1255178153514862, 0.10876655578613281], [0.07061485201120377, 0.01354990154504776, 0.011902213096618652, 0.0007894430309534073, 0.000962406920734793, 0.0014892026083543897, 0.0027991377282887697, 0.004600489977747202, 0.030655188485980034, 0.004071637988090515, 0.00442681647837162, 0.002857533749192953, 0.03360523283481598, 0.03747963160276413, 0.5302547812461853, 0.1334885209798813, 0.11645302176475525], [0.4395171105861664, 0.005714294966310263, 0.0016688551986590028, 0.0078268526121974, 0.002835268620401621, 0.014941760338842869, 0.0005010463064536452, 0.0016964926617220044, 0.0033159377053380013, 0.010066747665405273, 0.0070568653754889965, 0.0038310838863253593, 0.0019258562242612243, 0.012031549587845802, 0.00838306825608015, 0.2722003161907196, 0.2064867913722992]], [[0.3568624258041382, 0.013911309652030468, 0.0050085498951375484, 0.011925121769309044, 0.10721224546432495, 0.11778959631919861, 0.001532634487375617, 0.002815303159877658, 0.003677779110148549, 0.0008320346241816878, 0.001990637043491006, 0.0022544385865330696, 0.0011575940297916532, 0.006454457063227892, 0.0030831308104097843, 0.058034490793943405, 0.30545827746391296], [0.34747743606567383, 0.07759817689657211, 0.01877429708838463, 0.08084410429000854, 0.05034142732620239, 0.061560649424791336, 0.013025074265897274, 0.020825613290071487, 0.011907448060810566, 0.012832105159759521, 0.01061904989182949, 0.008969509974122047, 0.00580500066280365, 0.024368934333324432, 0.03194766119122505, 0.03619498014450073, 0.1869085133075714], [0.2535113990306854, 0.07890763878822327, 0.019777540117502213, 0.15545707941055298, 0.029620468616485596, 0.06888552755117416, 0.03778612241148949, 0.03553386777639389, 0.008871911093592644, 0.024449745193123817, 0.0211911853402853, 0.011831876821815968, 0.013402587734162807, 0.032519642263650894, 0.03935797140002251, 0.01882193423807621, 0.15007349848747253], [0.3681919574737549, 0.0466725155711174, 0.014470899477601051, 0.03742222860455513, 0.03371681272983551, 0.0634758397936821, 0.013662314973771572, 0.011545948684215546, 0.005712520331144333, 0.0016864370554685593, 0.0024721394293010235, 0.006220338866114616, 0.00135180598590523, 0.021411985158920288, 0.011355284601449966, 0.021742787212133408, 0.33888810873031616], [0.2779431641101837, 0.11888740211725235, 0.025160038843750954, 0.10322818905115128, 0.0392608679831028, 0.08669538795948029, 0.01780109666287899, 0.013766658492386341, 0.006974983029067516, 0.01570776477456093, 0.01190265640616417, 0.010999037884175777, 0.005188773386180401, 0.041419606655836105, 0.029498830437660217, 0.021637262776494026, 0.17392823100090027], [0.37894052267074585, 0.04131240025162697, 0.011247151531279087, 0.030888421460986137, 0.06587128341197968, 0.11419679969549179, 0.0038641057908535004, 0.00720290606841445, 0.005829175002872944, 0.0024753280449658632, 0.005037091672420502, 0.004991243127733469, 0.0028375189285725355, 0.011602373793721199, 0.0070965769700706005, 0.037126682698726654, 0.26948049664497375], [0.16038495302200317, 0.027804985642433167, 0.013953070156276226, 0.036443788558244705, 0.005565715953707695, 0.02300882712006569, 0.06224538013339043, 0.09515330940485, 0.013675815425813198, 0.07779721170663834, 0.04836393892765045, 0.034168388694524765, 0.03524944931268692, 0.06697148829698563, 0.1216161698102951, 0.020891211926937103, 0.1567062884569168], [0.21506035327911377, 0.032265521585941315, 0.007582849822938442, 0.019574591889977455, 0.01596854068338871, 0.04615416005253792, 0.03577365726232529, 0.053130585700273514, 0.011833755299448967, 0.045827239751815796, 0.02192101441323757, 0.016256945207715034, 0.010402020066976547, 0.03359613195061684, 0.07099985331296921, 0.043298691511154175, 0.3203541934490204], [0.19477543234825134, 0.0663127601146698, 0.01516537182033062, 0.05189228057861328, 0.01613384298980236, 0.04050733894109726, 0.06711521744728088, 0.03929784893989563, 0.009556359611451626, 0.059902124106884, 0.036409731954336166, 0.02990991435945034, 0.02227029763162136, 0.09056109935045242, 0.0508459247648716, 0.036462850868701935, 0.17288152873516083], [0.35632944107055664, 0.005214271135628223, 0.001611948013305664, 0.00586016196757555, 0.019133994355797768, 0.052182335406541824, 0.013717521913349628, 0.024877890944480896, 0.007913557812571526, 0.008113897405564785, 0.007724805269390345, 0.004979907535016537, 0.001681417808867991, 0.01908506639301777, 0.012499240227043629, 0.06556770205497742, 0.393506795167923], [0.15642057359218597, 0.09389612078666687, 0.019896509125828743, 0.09113401919603348, 0.009662593714892864, 0.028933821246027946, 0.05671689659357071, 0.03407388925552368, 0.011340836063027382, 0.07660941034555435, 0.025514928624033928, 0.041700128465890884, 0.0292489156126976, 0.09203396737575531, 0.07310149073600769, 0.02686540223658085, 0.13285040855407715], [0.2587057650089264, 0.02785935439169407, 0.009265510365366936, 0.05871899053454399, 0.014517503790557384, 0.0376284085214138, 0.04505188763141632, 0.04264748468995094, 0.009809277951717377, 0.04291433468461037, 0.026956280693411827, 0.014720158651471138, 0.019691210240125656, 0.06383086740970612, 0.055752530694007874, 0.03870176896452904, 0.23322860896587372], [0.1613772213459015, 0.04036039859056473, 0.026720236986875534, 0.1035674512386322, 0.011218982748687267, 0.026022303849458694, 0.11283951997756958, 0.06450699269771576, 0.01158924400806427, 0.07983876019716263, 0.029756717383861542, 0.0445871576666832, 0.01777040958404541, 0.06904475390911102, 0.03759000450372696, 0.028446996584534645, 0.13476282358169556], [0.31266531348228455, 0.021444739773869514, 0.003582862438634038, 0.021843142807483673, 0.03783903643488884, 0.04080061987042427, 0.029927652329206467, 0.01304826233536005, 0.016132956370711327, 0.010241991840302944, 0.010568602941930294, 0.009442227892577648, 0.004086833912879229, 0.043082598596811295, 0.012967671267688274, 0.12472344189882278, 0.28760215640068054], [0.41859567165374756, 0.006231355015188456, 0.0008647527429275215, 0.004314819350838661, 0.015177205204963684, 0.041632119566202164, 0.007315442431718111, 0.01972176320850849, 0.008111117407679558, 0.02147935889661312, 0.0077655320055782795, 0.003409437835216522, 0.0045623453333973885, 0.008251575753092766, 0.01046386081725359, 0.05927669629454613, 0.3628268837928772], [0.2516283690929413, 0.04901726171374321, 0.013093267567455769, 0.03929145261645317, 0.01923528127372265, 0.04797731712460518, 0.044758789241313934, 0.02643277309834957, 0.012682168744504452, 0.042633410543203354, 0.028016965836286545, 0.022286618128418922, 0.012068894691765308, 0.0964018777012825, 0.04805371165275574, 0.037859562784433365, 0.2085622400045395], [0.39780470728874207, 0.007354907225817442, 0.003677076892927289, 0.006238648667931557, 0.03324583172798157, 0.07787906378507614, 0.003372179577127099, 0.007327673025429249, 0.0070974878035485744, 0.0019056493183597922, 0.0058624763041734695, 0.004429135005921125, 0.003020842559635639, 0.00940390769392252, 0.004143223632127047, 0.05399293452501297, 0.37324416637420654]], [[0.29688066244125366, 0.07324723899364471, 0.039512999355793, 0.08306016027927399, 0.04335775971412659, 0.1117655336856842, 0.01697692833840847, 0.039568204432725906, 0.016204237937927246, 0.010490257292985916, 0.016411352902650833, 0.02013288624584675, 0.009290164336562157, 0.018011918291449547, 0.01257344800978899, 0.028230838477611542, 0.16428551077842712], [0.05794452130794525, 0.1023227646946907, 0.08064406365156174, 0.1466486155986786, 0.05314210057258606, 0.02706611156463623, 0.01957699842751026, 0.03917326778173447, 0.025189315900206566, 0.048151444643735886, 0.020597411319613457, 0.047074172645807266, 0.018623171374201775, 0.1638081669807434, 0.058147698640823364, 0.0603499710559845, 0.031540270894765854], [0.3833606243133545, 0.05791599676012993, 0.021340440958738327, 0.07058146595954895, 0.05055805668234825, 0.11218404769897461, 0.009670926257967949, 0.014284714125096798, 0.011975986883044243, 0.005049111321568489, 0.021097948774695396, 0.01077825017273426, 0.016680797562003136, 0.006975931115448475, 0.022992918267846107, 0.03318900987505913, 0.1513638198375702], [0.19062794744968414, 0.2359861433506012, 0.06735526025295258, 0.13717177510261536, 0.047806281596422195, 0.05325869843363762, 0.011353465728461742, 0.01552253682166338, 0.010602360591292381, 0.010236287489533424, 0.012859173119068146, 0.020560279488563538, 0.013956154696643353, 0.02624613605439663, 0.06698273867368698, 0.02924419194459915, 0.050230562686920166], [0.10628221184015274, 0.08782371878623962, 0.09392767399549484, 0.09349033981561661, 0.16909034550189972, 0.06476887315511703, 0.01948290318250656, 0.03304407000541687, 0.02823111228644848, 0.019335748627781868, 0.031393229961395264, 0.030638404190540314, 0.027830468490719795, 0.023232819512486458, 0.03535811975598335, 0.09652204066514969, 0.03954782336950302], [0.3100374937057495, 0.07441438734531403, 0.05563921481370926, 0.09877707809209824, 0.04665528982877731, 0.08526183664798737, 0.012671194970607758, 0.0304051972925663, 0.01339750550687313, 0.011898435652256012, 0.0174797885119915, 0.023453379049897194, 0.008742361329495907, 0.025700626894831657, 0.02097313478589058, 0.03509686887264252, 0.1293962448835373], [0.20305262506008148, 0.013368950225412846, 0.017997993156313896, 0.06453602015972137, 0.05259348079562187, 0.050758328288793564, 0.021411091089248657, 0.06501147150993347, 0.02476559765636921, 0.019302302971482277, 0.029144035652279854, 0.029670167714357376, 0.02517613209784031, 0.02188747748732567, 0.023291289806365967, 0.2115860879421234, 0.12644700706005096], [0.3515642285346985, 0.016130711883306503, 0.02286619134247303, 0.03531563654541969, 0.019192228093743324, 0.060160521417856216, 0.0050302655436098576, 0.007532850839197636, 0.013960539363324642, 0.01849815808236599, 0.018343264237046242, 0.04483592510223389, 0.012230047024786472, 0.02666623331606388, 0.01740517094731331, 0.042761363089084625, 0.2875066101551056], [0.42089566588401794, 0.007024360354989767, 0.007045472972095013, 0.018835632130503654, 0.017778649926185608, 0.0617198720574379, 0.008949032053351402, 0.019888369366526604, 0.005910040810704231, 0.009981553070247173, 0.014638948254287243, 0.01587132178246975, 0.010684446431696415, 0.01049543172121048, 0.0233346838504076, 0.04657958447933197, 0.3003668785095215], [0.36956727504730225, 0.010945332236588001, 0.005928685422986746, 0.027969777584075928, 0.01224195770919323, 0.03902499005198479, 0.02134709618985653, 0.06725490093231201, 0.018358655273914337, 0.014979873783886433, 0.013308809138834476, 0.015759967267513275, 0.030354956164956093, 0.013042343780398369, 0.02908357046544552, 0.06184030696749687, 0.24899157881736755], [0.39351773262023926, 0.02501133643090725, 0.009169275872409344, 0.02767465077340603, 0.024627482518553734, 0.042182039469480515, 0.01662854664027691, 0.03212325647473335, 0.015969276428222656, 0.014597187750041485, 0.006996230222284794, 0.018295196816325188, 0.018728526309132576, 0.037359464913606644, 0.06739906966686249, 0.08375801891088486, 0.16596271097660065], [0.3564445674419403, 0.027235988527536392, 0.008528920821845531, 0.02608373574912548, 0.018583253026008606, 0.053578149527311325, 0.019063778221607208, 0.030993493273854256, 0.019983451813459396, 0.014704236760735512, 0.027121812105178833, 0.01383071206510067, 0.022893644869327545, 0.025382230058312416, 0.05148820951581001, 0.06769341975450516, 0.21639035642147064], [0.31823471188545227, 0.011967271566390991, 0.022139038890600204, 0.05398344621062279, 0.017076067626476288, 0.05089343339204788, 0.013083713129162788, 0.04316495358943939, 0.011958089657127857, 0.014848888851702213, 0.026955774053931236, 0.031585343182086945, 0.007937820628285408, 0.015375496819615364, 0.02986447885632515, 0.05739455297589302, 0.2735368311405182], [0.14322692155838013, 0.041115447878837585, 0.012787580490112305, 0.0754246637225151, 0.008491849526762962, 0.030816199257969856, 0.039039868861436844, 0.06849194318056107, 0.028548674657940865, 0.06798380613327026, 0.020328233018517494, 0.038334671407938004, 0.03578316420316696, 0.11656654626131058, 0.08302340656518936, 0.03842618316411972, 0.15161071717739105], [0.3288458287715912, 0.004670624155551195, 0.016182245686650276, 0.03983091190457344, 0.00703067472204566, 0.03531663119792938, 0.012377430684864521, 0.04621674492955208, 0.01606633886694908, 0.022669076919555664, 0.028253156691789627, 0.056762415915727615, 0.013663187623023987, 0.04736163094639778, 0.003648152807727456, 0.038793861865997314, 0.2823111414909363], [0.08697562664747238, 0.023235879838466644, 0.02794524095952511, 0.03009216859936714, 0.07578889280557632, 0.0361250564455986, 0.03587188571691513, 0.05239810794591904, 0.03631522133946419, 0.04915749281644821, 0.051677726209163666, 0.05926511064171791, 0.054058369249105453, 0.0776873454451561, 0.06013382226228714, 0.18247076869010925, 0.06080133467912674], [0.42241203784942627, 0.017957231029868126, 0.013878194615244865, 0.03115321323275566, 0.017311476171016693, 0.05754765123128891, 0.01399206556379795, 0.04858720302581787, 0.012654037214815617, 0.012982060201466084, 0.02213456854224205, 0.023837164044380188, 0.007937846705317497, 0.03436515852808952, 0.01621725969016552, 0.042688220739364624, 0.20434466004371643]], [[0.3933342695236206, 0.034888435155153275, 0.01204481441527605, 0.01908121630549431, 0.0581289567053318, 0.08070462197065353, 0.060737382620573044, 0.019878162071108818, 0.016648193821310997, 0.0042229583486914635, 0.003943759948015213, 0.004889685660600662, 0.003185809822753072, 0.009971040301024914, 0.007707389071583748, 0.09241418540477753, 0.1782190352678299], [0.13508930802345276, 0.18409599363803864, 0.5288761258125305, 0.005942090414464474, 0.0724276676774025, 0.006721590645611286, 0.0003648030397016555, 0.003092197235673666, 0.004751451313495636, 0.0006433119415305555, 0.0006417717668227851, 2.2340287614497356e-05, 3.520640575516154e-06, 0.0005082102725282311, 0.002627108246088028, 0.006800524424761534, 0.04739203676581383], [0.012628666125237942, 0.0001845367660280317, 0.00070441939169541, 0.9654712677001953, 0.004474303685128689, 0.008905056864023209, 4.824336429010145e-06, 1.2637803592951968e-05, 8.991297363536432e-05, 5.7184162869816646e-05, 4.391416587168351e-05, 1.592050102772191e-05, 2.0383147784741595e-05, 8.351334145118017e-06, 1.7936716858457658e-06, 0.0034115156158804893, 0.003965260926634073], [0.10319345444440842, 0.00033550194348208606, 0.008194470778107643, 0.0030044401064515114, 0.7785578370094299, 0.0330028273165226, 0.003226944711059332, 0.0001576924551045522, 0.00029529223684221506, 2.5727787942741998e-05, 0.0002523244183976203, 0.00033129705116152763, 1.4895979802531656e-05, 1.0583664334262721e-05, 5.4547931540582795e-06, 0.0005041449912823737, 0.06888706237077713], [0.12973202764987946, 0.005275191739201546, 5.3327563364291564e-05, 0.01189812645316124, 0.027722034603357315, 0.7474089860916138, 0.04682876542210579, 0.017398755997419357, 0.00045562899322248995, 0.000254116952419281, 0.0015183172654360533, 0.0013550875009968877, 0.00026201200671494007, 0.00020255698473192751, 7.527886282332474e-06, 0.0008988948538899422, 0.008728742599487305], [0.17070311307907104, 0.012777110561728477, 0.005384554620832205, 0.0008276884909719229, 0.06889774650335312, 0.06599707901477814, 0.6002329587936401, 0.04055622220039368, 0.007507918402552605, 0.00016664598661009222, 0.00043626638944260776, 0.0006783026619814336, 0.0020855676848441362, 0.0011825499823316932, 0.001117862295359373, 0.0005072503699921072, 0.020941177383065224], [0.1201796606183052, 0.006196539383381605, 0.0006577913882210851, 0.003369213780388236, 0.0018644435331225395, 0.10818707197904587, 0.04378395527601242, 0.6858689188957214, 0.015602749772369862, 0.0006268403958529234, 0.00022834491392131895, 0.0008448391454294324, 0.00018263811944052577, 0.002599201165139675, 0.0001927978009916842, 0.006596030667424202, 0.0030189529061317444], [0.07618267834186554, 0.00040368217742070556, 0.002267856616526842, 0.00023813682491891086, 0.003506273264065385, 0.0017157889669761062, 0.0017280830070376396, 0.009580371901392937, 0.8138898611068726, 0.06016048789024353, 0.006091138813644648, 2.7936748665524647e-05, 6.065626803319901e-05, 0.00042812927858904004, 0.005141024012118578, 0.0025878206361085176, 0.0159901212900877], [0.001712606055662036, 7.665747148166702e-07, 3.7032684758742107e-06, 5.372148280002875e-06, 0.00011482206173241138, 0.00018523311882745475, 1.067826701728336e-06, 0.0006504011689685285, 0.0003663146635517478, 0.9929614663124084, 0.00105656951200217, 5.948811667622067e-05, 3.85370277911079e-08, 2.3033459001453593e-05, 2.4057388145592995e-05, 0.0018680230714380741, 0.0009672307642176747], [0.032544784247875214, 9.216708349413238e-06, 2.9273882319102995e-05, 0.0006070727249607444, 0.02370000071823597, 0.00322984647937119, 0.000982064288109541, 0.00011557460675248876, 0.009805954061448574, 0.0007334898691624403, 0.882483720779419, 0.001193389529362321, 0.00018864867161028087, 1.884635457827244e-05, 1.1818134225904942e-05, 0.003757264232262969, 0.040588945150375366], [0.15256333351135254, 0.00018205509695690125, 7.8066426794976e-05, 0.0008700654725544155, 0.02332397550344467, 0.10011284798383713, 0.0008967045578174293, 0.0032884140964597464, 0.0001300166331930086, 0.001526887877844274, 0.00550546869635582, 0.5301184058189392, 0.006781190168112516, 0.050512880086898804, 4.2674313590396196e-05, 0.008255049586296082, 0.11581197381019592], [0.025492701679468155, 1.8969883967656642e-05, 2.9126740628271364e-06, 0.0001425808441126719, 0.000558426312636584, 0.004033640958368778, 0.0009143415372818708, 5.8475456171436235e-05, 0.00014872355677653104, 4.622554570232751e-06, 0.0002566043986007571, 0.0031674967613071203, 0.9515349864959717, 0.002641383558511734, 0.000490645004902035, 0.00029772764537483454, 0.01023582462221384], [0.09048215299844742, 0.0007720270077697933, 0.00016122180386446416, 0.0004572623292915523, 0.00014552472566720098, 0.010945751331746578, 0.0003703818074427545, 0.007539424113929272, 0.0003298783558420837, 0.0001344384072581306, 1.6530349967069924e-05, 0.03139014542102814, 0.023322027176618576, 0.7391205430030823, 0.007631265092641115, 0.07161366939544678, 0.015567728318274021], [0.0200788713991642, 0.0001018438779283315, 0.0003326456353534013, 1.3291162758832797e-05, 0.0003301249525975436, 0.00013686998863704503, 0.00015452649677172303, 8.312991849379614e-05, 0.0016345245530828834, 0.00021108057990204543, 0.0007727820193395019, 2.0851450244663283e-05, 0.0004776407440658659, 0.008725943975150585, 0.9344054460525513, 0.010326224379241467, 0.02219420112669468], [0.091822050511837, 0.0005151398363523185, 0.00012293084000702947, 0.00029091775650158525, 0.0002305850211996585, 0.0009624570375308394, 4.2864658098551445e-06, 0.0004057272744830698, 0.00048084199079312384, 0.0019781868904829025, 0.00024447435862384737, 0.00018830968474503607, 1.7934265997610055e-05, 0.0019875785801559687, 0.00584026426076889, 0.8238661885261536, 0.07104212790727615], [0.07156739383935928, 0.0002544325834605843, 0.0043623135425150394, 0.001987745054066181, 0.02194822207093239, 0.0006779231480322778, 0.0003374176740180701, 2.9193368391133845e-05, 0.0005694561405107379, 0.0017432712484151125, 0.0064412313513457775, 0.0011849214788526297, 0.0009548672824166715, 0.00011870324669871479, 0.003934534732252359, 0.08323323726654053, 0.8006550669670105], [0.262682169675827, 0.010851199738681316, 0.001039247028529644, 0.017987795174121857, 0.032413069158792496, 0.15254616737365723, 0.009361224249005318, 0.004420773591846228, 0.0004711012588813901, 0.001578588387928903, 0.0038130430039018393, 0.023411929607391357, 0.00396988820284605, 0.00994405522942543, 0.001542041078209877, 0.2694286108016968, 0.1945391148328781]]], [[[0.1055656149983406, 0.025064393877983093, 0.03542523458600044, 0.03466371074318886, 0.06655003875494003, 0.07431600242853165, 0.03531840071082115, 0.04804662615060806, 0.030069103464484215, 0.043322451412677765, 0.049868129193782806, 0.04212965816259384, 0.0553847998380661, 0.052069615572690964, 0.04742612689733505, 0.1074286624789238, 0.14735136926174164], [0.11433883756399155, 0.07326358556747437, 0.01322005782276392, 0.000922212318982929, 0.0708538144826889, 0.07613370567560196, 0.03281063959002495, 0.004624652676284313, 0.006250510457903147, 0.005515872035175562, 0.006486202124506235, 0.010672400705516338, 0.0026395737659186125, 0.006572724785655737, 0.017543386667966843, 0.10324665158987045, 0.454905241727829], [0.11604384332895279, 0.0025428547523915768, 0.11402982473373413, 0.0027145303320139647, 0.024172436445951462, 0.08129166066646576, 0.01182381808757782, 0.014523028396070004, 0.03665337711572647, 0.0017382224323228002, 0.01125158928334713, 0.2895936667919159, 0.06819130480289459, 0.00351566169410944, 0.009114591404795647, 0.06967419385910034, 0.14312532544136047], [0.08090180158615112, 0.0011553653748705983, 0.01032045017927885, 0.23778758943080902, 0.028318284079432487, 0.0654764249920845, 0.02849689871072769, 0.002877604216337204, 0.004064060281962156, 0.006111603230237961, 0.01562630385160446, 0.007456456311047077, 0.0061655668541789055, 0.007936607114970684, 0.005207771901041269, 0.04941743239760399, 0.44267982244491577], [0.12217037379741669, 0.006354343146085739, 0.019054459407925606, 0.007589865010231733, 0.06226557493209839, 0.10727337002754211, 0.03313711658120155, 0.023265209048986435, 0.016756223514676094, 0.009404309093952179, 0.017418140545487404, 0.023067422211170197, 0.013167251832783222, 0.02391057275235653, 0.025304971262812614, 0.3382536470890045, 0.15160708129405975], [0.12788942456245422, 0.02130606584250927, 0.055592481046915054, 0.014111367985606194, 0.084062859416008, 0.05914361774921417, 0.04127974435687065, 0.03566398844122887, 0.03845169022679329, 0.018006080761551857, 0.0449090376496315, 0.029744459316134453, 0.034930672496557236, 0.024447787553071976, 0.04423319548368454, 0.1501806080341339, 0.1760469228029251], [0.1466589868068695, 0.002387640066444874, 0.007375199347734451, 0.0022642596159130335, 0.05287127569317818, 0.10509631037712097, 0.1834573596715927, 0.0038068932481110096, 0.0035719522275030613, 0.0022351862862706184, 0.010992196388542652, 0.00851156935095787, 0.00043109580292366445, 0.0009019650751724839, 0.0006403680890798569, 0.24656039476394653, 0.22223727405071259], [0.13239865005016327, 0.008414806798100471, 0.026519589126110077, 0.0012022295268252492, 0.11712872982025146, 0.06254125386476517, 0.016929058358073235, 0.14219176769256592, 0.04042086750268936, 0.003312892047688365, 0.025661630555987358, 0.014140404760837555, 0.005753776058554649, 0.002185217337682843, 0.021469224244356155, 0.14841938018798828, 0.23131045699119568], [0.2171882688999176, 0.01673092320561409, 0.021888596937060356, 0.001221116166561842, 0.06904876232147217, 0.11344527453184128, 0.0043722703121602535, 0.013627368956804276, 0.26324984431266785, 0.0026827461551874876, 0.003667099168524146, 0.017256086692214012, 0.002551903948187828, 0.0025347773917019367, 0.0056152865290641785, 0.07625101506710052, 0.16866862773895264], [0.12396314740180969, 0.0035114616621285677, 0.007935414090752602, 0.004098583944141865, 0.1772335171699524, 0.1924007534980774, 0.007218934595584869, 0.003979271277785301, 0.01270357146859169, 0.09577466547489166, 0.033248547464609146, 0.0016499873017892241, 0.013423926196992397, 0.0015423770528286695, 0.0052873678505420685, 0.08998686820268631, 0.22604160010814667], [0.2226586937904358, 0.002540158573538065, 0.0061005945317447186, 0.0014386045513674617, 0.06497099995613098, 0.15095552802085876, 0.018965745344758034, 0.008038551546633244, 0.0021455802489072084, 0.009431306272745132, 0.17945553362369537, 0.0023609790951013565, 0.0007911464781500399, 0.0004965737462043762, 0.0004292828089091927, 0.04414951056241989, 0.2850711941719055], [0.10350905358791351, 0.006215955596417189, 0.39996975660324097, 0.0034191280137747526, 0.06152329593896866, 0.04438208416104317, 0.005470839329063892, 0.005662121344357729, 0.049653008580207825, 0.0007889033877290785, 0.0033340253867208958, 0.0637459084391594, 0.06654766947031021, 0.001108734868466854, 0.006277458276599646, 0.05739843100309372, 0.12099356949329376], [0.1363063007593155, 0.0010878448374569416, 0.06804521381855011, 0.0032870578579604626, 0.05124838650226593, 0.13462646305561066, 0.0023385235108435154, 0.0019271388882771134, 0.007160313427448273, 0.0035209637135267258, 0.0022651171311736107, 0.04351837933063507, 0.26813799142837524, 0.001982895191758871, 0.0034116865135729313, 0.07179564237594604, 0.1993401199579239], [0.09806780517101288, 0.020996244624257088, 0.023507827892899513, 0.00833161547780037, 0.12668907642364502, 0.12020160257816315, 0.004882258363068104, 0.003107747994363308, 0.02045382186770439, 0.009165525436401367, 0.004462139680981636, 0.00751523207873106, 0.010747679509222507, 0.1821277141571045, 0.06589891016483307, 0.044786520302295685, 0.2490582913160324], [0.14628411829471588, 0.006069363560527563, 0.008031260222196579, 0.00038313496042974293, 0.1361089050769806, 0.2931118309497833, 0.0029812201391905546, 0.0028881311882287264, 0.00828949362039566, 0.002519749104976654, 0.0006124643259681761, 0.006673604249954224, 0.0053066685795784, 0.004970797337591648, 0.05798342078924179, 0.07758498936891556, 0.24020078778266907], [0.09051431715488434, 0.009808000177145004, 0.032525960355997086, 0.004461231175810099, 0.3777839243412018, 0.10607052594423294, 0.0594526007771492, 0.01169558521360159, 0.019744809716939926, 0.006637934595346451, 0.013424684293568134, 0.014002375304698944, 0.037562742829322815, 0.004372311290353537, 0.01377201359719038, 0.08481309562921524, 0.11335790157318115], [0.11262708157300949, 0.031281016767024994, 0.038371484726667404, 0.03162408620119095, 0.061547841876745224, 0.13356605172157288, 0.053245387971401215, 0.0544632151722908, 0.04599674046039581, 0.04175027087330818, 0.05606818199157715, 0.041141800582408905, 0.03824782371520996, 0.027455324307084084, 0.024630427360534668, 0.0759950652718544, 0.1319882571697235]], [[0.13483926653862, 0.00794154591858387, 0.01069438923150301, 0.009476752020418644, 0.2647480070590973, 0.05259042978286743, 0.008093183860182762, 0.012756397016346455, 0.017497334629297256, 0.0039648814126849174, 0.01378479041159153, 0.007997001521289349, 0.0054015605710446835, 0.0045149861834943295, 0.005281693302094936, 0.220328226685524, 0.22008956968784332], [0.13491502404212952, 0.0432395413517952, 0.018109038472175598, 0.03925491124391556, 0.14903832972049713, 0.08526957780122757, 0.021820809692144394, 0.0321170911192894, 0.01322576031088829, 0.009590242989361286, 0.009072666987776756, 0.004230941645801067, 0.0035502533428370953, 0.013674934394657612, 0.008677166886627674, 0.05493907630443573, 0.3592747151851654], [0.09793438017368317, 0.05922400951385498, 0.007871370762586594, 0.0949767678976059, 0.11079906672239304, 0.05235522612929344, 0.027713488787412643, 0.0216049924492836, 0.01565319485962391, 0.06292121112346649, 0.03008301369845867, 0.003269786946475506, 0.015924595296382904, 0.020770076662302017, 0.015025395900011063, 0.07197069376707077, 0.2919027507305145], [0.16669903695583344, 0.046225957572460175, 0.03412428870797157, 0.07304810732603073, 0.11353542655706406, 0.08078043162822723, 0.01572670415043831, 0.015307066030800343, 0.01799923926591873, 0.006448692176491022, 0.007649703416973352, 0.004512280225753784, 0.00482745748013258, 0.007786616683006287, 0.002918093930929899, 0.030357254669070244, 0.3720535933971405], [0.10031700134277344, 0.05075714364647865, 0.057394400238990784, 0.05379104986786842, 0.17327487468719482, 0.08756471425294876, 0.0418832041323185, 0.04746070131659508, 0.028763484209775925, 0.008447576314210892, 0.017434770241379738, 0.02327510342001915, 0.020978812128305435, 0.020065441727638245, 0.014260108582675457, 0.07045093923807144, 0.18388070166110992], [0.16192753612995148, 0.012593156658113003, 0.01071931142359972, 0.015635117888450623, 0.25958436727523804, 0.06501878052949905, 0.006118816323578358, 0.01030529011040926, 0.011550725437700748, 0.0031685554422438145, 0.009239708073437214, 0.004319522995501757, 0.005312673281878233, 0.004060098435729742, 0.0033531817607581615, 0.12409969419240952, 0.2929934561252594], [0.11731812357902527, 0.01866474188864231, 0.009180838242173195, 0.029197929427027702, 0.025272786617279053, 0.052803173661231995, 0.02904796414077282, 0.027248185127973557, 0.02698092721402645, 0.04289352148771286, 0.024359876289963722, 0.016433123499155045, 0.02837607078254223, 0.042294781655073166, 0.022834308445453644, 0.04658961668610573, 0.4405040740966797], [0.06532256305217743, 0.04668131843209267, 0.012399153783917427, 0.028830504044890404, 0.02143167518079281, 0.050897080451250076, 0.06112544611096382, 0.0493093766272068, 0.03598668426275253, 0.11753661185503006, 0.04977403208613396, 0.023203184828162193, 0.03935861960053444, 0.08838996291160583, 0.02976732887327671, 0.060386307537555695, 0.21960008144378662], [0.08978912979364395, 0.01869106851518154, 0.004073232412338257, 0.028515666723251343, 0.033487606793642044, 0.04677640646696091, 0.032637160271406174, 0.02186756208539009, 0.007212492171674967, 0.10226788371801376, 0.059471409767866135, 0.007773063611239195, 0.025628745555877686, 0.02923271618783474, 0.018266825005412102, 0.06713604182004929, 0.40717294812202454], [0.1447361707687378, 0.0029538029339164495, 0.0013193258782848716, 0.006280079949647188, 0.01811785064637661, 0.0468001551926136, 0.007996825501322746, 0.016587262973189354, 0.006136986427009106, 0.013749632053077221, 0.012211328372359276, 0.0032194722443819046, 0.013574284501373768, 0.022241661325097084, 0.01110322866588831, 0.04796062037348747, 0.6250113248825073], [0.09198705852031708, 0.02005118317902088, 0.006222816649824381, 0.01472858153283596, 0.02911118045449257, 0.059877075254917145, 0.03198864683508873, 0.041160423308610916, 0.02190437912940979, 0.030771251767873764, 0.011465570889413357, 0.016849637031555176, 0.014399037696421146, 0.05209289863705635, 0.029062263667583466, 0.07298267632722855, 0.4553453028202057], [0.062427081167697906, 0.025435300543904305, 0.0024868925102055073, 0.030387016013264656, 0.026523204520344734, 0.03642180934548378, 0.02743072435259819, 0.03974137827754021, 0.01637393794953823, 0.18674646317958832, 0.04802646115422249, 0.005422111600637436, 0.021886266767978668, 0.07484272867441177, 0.031698666512966156, 0.0816202163696289, 0.2825296223163605], [0.08357585966587067, 0.043469253927469254, 0.006191326305270195, 0.035620514303445816, 0.02697904221713543, 0.05196654424071312, 0.028996961191296577, 0.04420200735330582, 0.020962167531251907, 0.07912471145391464, 0.029478207230567932, 0.01365334540605545, 0.016720006242394447, 0.09225459396839142, 0.06277317553758621, 0.05652850121259689, 0.30750373005867004], [0.09520366787910461, 0.04779127240180969, 0.006920307409018278, 0.024112386628985405, 0.016573939472436905, 0.059878554195165634, 0.023637671023607254, 0.056468404829502106, 0.01910109631717205, 0.09351135045289993, 0.023602260276675224, 0.012752089649438858, 0.04012828692793846, 0.07664397358894348, 0.035823140293359756, 0.04841034859418869, 0.3194412887096405], [0.11777358502149582, 0.013779202476143837, 0.00356060778722167, 0.015877576544880867, 0.03870290890336037, 0.029505712911486626, 0.01827513985335827, 0.026303986087441444, 0.029229382053017616, 0.04334365203976631, 0.03031710907816887, 0.0051886048167943954, 0.02016105316579342, 0.04566862806677818, 0.01681760884821415, 0.13631059229373932, 0.4091845750808716], [0.08689463138580322, 0.019912902265787125, 0.02011452615261078, 0.020991794764995575, 0.060908786952495575, 0.0559779554605484, 0.0406695194542408, 0.06477200239896774, 0.03999593108892441, 0.019921692088246346, 0.032353781163692474, 0.03843838348984718, 0.03186092525720596, 0.05712020769715309, 0.039254698902368546, 0.13638393580913544, 0.2344283014535904], [0.1913052648305893, 0.004431602545082569, 0.003834455506876111, 0.007167846895754337, 0.18947739899158478, 0.0508115328848362, 0.0042748707346618176, 0.005897389724850655, 0.009149828925728798, 0.00406830245628953, 0.010597235523164272, 0.0035837204195559025, 0.0033451414201408625, 0.004661983344703913, 0.003318527014926076, 0.1789919137954712, 0.3250829577445984]], [[0.1769334375858307, 0.028170401230454445, 0.03182874247431755, 0.05582617223262787, 0.06665889918804169, 0.05778585374355316, 0.022627755999565125, 0.023620113730430603, 0.020736198872327805, 0.01666559837758541, 0.025934457778930664, 0.023356160148978233, 0.023066435009241104, 0.04262140393257141, 0.030773570761084557, 0.06459606438875198, 0.2887987196445465], [0.17091915011405945, 0.0018766134744510055, 0.02948022074997425, 0.05172095075249672, 0.08041749149560928, 0.06493788212537766, 0.024952193722128868, 0.024228593334555626, 0.02679130807518959, 0.008959966711699963, 0.05491979047656059, 0.027601944282650948, 0.015567115508019924, 0.039737872779369354, 0.023513460531830788, 0.0859023854136467, 0.26847314834594727], [0.3436984419822693, 0.0067591480910778046, 0.002163770142942667, 0.03809479624032974, 0.03179885819554329, 0.06292237341403961, 0.0026048205327242613, 0.006068396847695112, 0.004127045162022114, 0.005013166926801205, 0.004413444548845291, 0.001441268832422793, 0.0018376036314293742, 0.007102043367922306, 0.003961613401770592, 0.023854339495301247, 0.4541388750076294], [0.23203685879707336, 0.024137895554304123, 0.021973999217152596, 0.007829737849533558, 0.051890138536691666, 0.06896616518497467, 0.03816265985369682, 0.022525859996676445, 0.018819229677319527, 0.008163860067725182, 0.044186871498823166, 0.02851230651140213, 0.025814224034547806, 0.03364944830536842, 0.04213792458176613, 0.043512795120477676, 0.287680059671402], [0.2559733986854553, 0.023419037461280823, 0.010368396528065205, 0.01899646781384945, 0.06976623088121414, 0.07922051846981049, 0.00439239339902997, 0.007394886575639248, 0.0028120994102209806, 0.003689889097586274, 0.01074669323861599, 0.004748942330479622, 0.004044785629957914, 0.006226578261703253, 0.005732421763241291, 0.049539193511009216, 0.4429279863834381], [0.20478208363056183, 0.01696423999965191, 0.022723445668816566, 0.023552028462290764, 0.08240748196840286, 0.06927330046892166, 0.009750062599778175, 0.01157847698777914, 0.009643163532018661, 0.004495956469327211, 0.012923264876008034, 0.00851823017001152, 0.011129196733236313, 0.012998356483876705, 0.01187361590564251, 0.050854772329330444, 0.4365323483943939], [0.26182693243026733, 0.033491864800453186, 0.014378092251718044, 0.02774043381214142, 0.04488104209303856, 0.10624800622463226, 0.003568003885447979, 0.01063734944909811, 0.008349460549652576, 0.019298363476991653, 0.011769470758736134, 0.007631231565028429, 0.01445795688778162, 0.009220756590366364, 0.006419691257178783, 0.045210838317871094, 0.37487053871154785], [0.33280545473098755, 0.009028918109834194, 0.003102061105892062, 0.004582129884511232, 0.05198359861969948, 0.07860130071640015, 0.001945600612089038, 0.002345041371881962, 0.0017032650066539645, 0.00203042128123343, 0.006492869928479195, 0.003064507618546486, 0.0034665365237742662, 0.006216607056558132, 0.0047057997435331345, 0.04052182659506798, 0.4474041163921356], [0.3105676472187042, 0.017825011163949966, 0.00712412828579545, 0.0182899609208107, 0.045733265578746796, 0.05969392508268356, 0.00895120482891798, 0.010970442555844784, 0.0017702073091641068, 0.011463837698101997, 0.013770886696875095, 0.006905155722051859, 0.015613499097526073, 0.014951297082006931, 0.009370934218168259, 0.050391219556331635, 0.39660730957984924], [0.19275102019309998, 0.05570434033870697, 0.02963690087199211, 0.01365986093878746, 0.05390213802456856, 0.07776010036468506, 0.08428864181041718, 0.052396927028894424, 0.0335095152258873, 0.004630375187844038, 0.02988508902490139, 0.025091568008065224, 0.0100826695561409, 0.023127827793359756, 0.015268679708242416, 0.04667322337627411, 0.2516311705112457], [0.2514934837818146, 0.012239529751241207, 0.013190330937504768, 0.016101757064461708, 0.0581575371325016, 0.07042515277862549, 0.009983744472265244, 0.013786626048386097, 0.009760638698935509, 0.007262906525284052, 0.003439305815845728, 0.00560725899413228, 0.006797208916395903, 0.0072825136594474316, 0.00823898147791624, 0.04942962899804115, 0.4568032920360565], [0.3503566384315491, 0.010361061431467533, 0.0023617318365722895, 0.03169173374772072, 0.025771230459213257, 0.07803601026535034, 0.005206767935305834, 0.012505041435360909, 0.0067295655608177185, 0.009034061804413795, 0.007674406282603741, 0.001844566548243165, 0.002526175696402788, 0.009001817554235458, 0.004732786677777767, 0.02670382894575596, 0.41546255350112915], [0.3376699984073639, 0.0082466471940279, 0.006788727827370167, 0.01844550296664238, 0.04012144356966019, 0.06474550068378448, 0.012966403737664223, 0.02728879824280739, 0.019524123519659042, 0.012854577042162418, 0.01095276977866888, 0.004812120459973812, 0.0018031449289992452, 0.006968234200030565, 0.004282881505787373, 0.04122747853398323, 0.38130176067352295], [0.34042882919311523, 0.0705040991306305, 0.016191091388463974, 0.05274156481027603, 0.04926168546080589, 0.06710654497146606, 0.027816826477646828, 0.0325281023979187, 0.014137348160147667, 0.027967315167188644, 0.02766214683651924, 0.01324082724750042, 0.005830180365592241, 0.0076221865601837635, 0.0025754740927368402, 0.04627278074622154, 0.19811300933361053], [0.1895497590303421, 0.011140433140099049, 0.013454999774694443, 0.04112602025270462, 0.0573616661131382, 0.1026126965880394, 0.04801681637763977, 0.020394498482346535, 0.004979691468179226, 0.012268362566828728, 0.04503796622157097, 0.010462048463523388, 0.005985327996313572, 0.003259546123445034, 0.0014619434950873256, 0.04837154224514961, 0.3845166265964508], [0.23679111897945404, 0.018876485526561737, 0.008768056519329548, 0.01453317515552044, 0.07161705195903778, 0.08852089941501617, 0.007243345491588116, 0.01300724409520626, 0.0038650447968393564, 0.005472464952617884, 0.018589390441775322, 0.005966353230178356, 0.004621604457497597, 0.006959233898669481, 0.0052474853582680225, 0.06254960596561432, 0.4273712933063507], [0.1586620807647705, 0.008107038214802742, 0.014610803686082363, 0.014010565355420113, 0.057612430304288864, 0.04706596955657005, 0.011029544286429882, 0.017133891582489014, 0.014586417935788631, 0.0064437477849423885, 0.015323798172175884, 0.009547607973217964, 0.014531709253787994, 0.012618609704077244, 0.011116080917418003, 0.04509245976805687, 0.5425072312355042]], [[0.6127891540527344, 0.003854891983792186, 0.0013076922623440623, 0.0019648373126983643, 0.016475962474942207, 0.3401525020599365, 5.314312147675082e-06, 5.145566888131725e-07, 3.2629856150379055e-07, 2.049137037829496e-08, 1.2645472224903642e-07, 5.107239786639184e-08, 6.669083063570724e-07, 3.5082587146462174e-07, 2.49235995397612e-06, 7.580466444778722e-06, 0.0234374962747097], [1.4182317045197124e-06, 5.513876999430067e-07, 0.9999732971191406, 1.3717796321088827e-07, 7.011729508121789e-07, 1.389322407119309e-10, 1.714445807543541e-10, 3.815942700713393e-11, 5.4933835258452746e-08, 3.5453216751246686e-11, 2.8006044952197905e-14, 1.322269649687492e-16, 4.818102127934331e-15, 3.836692655202409e-14, 1.3190608605384568e-08, 6.810939590096154e-10, 2.3815973690943792e-05], [3.819336846788701e-09, 3.805362780440191e-08, 2.1795842997107684e-07, 0.9999991655349731, 1.7268837382289348e-07, 6.056679069388338e-08, 1.1987893825131293e-14, 1.9794387483285103e-14, 2.2017835471510594e-11, 3.2399392058124477e-09, 1.351623035716898e-09, 5.744774637548786e-14, 1.2261070745205077e-17, 1.030456343795443e-15, 2.3159060271311623e-15, 2.1326890475847904e-07, 9.943012457824807e-08], [1.213104923181163e-07, 4.703439786084285e-13, 1.6520947610842995e-05, 2.925575870449393e-07, 0.9998331069946289, 3.2300542329721793e-07, 5.581958895106709e-09, 9.89723905790523e-16, 2.1595160555609727e-13, 1.044434157215779e-11, 3.1021178681367445e-11, 6.340386115438745e-12, 4.566812694065808e-14, 6.736407948170066e-19, 1.2013173152865183e-16, 1.9747764248769385e-15, 0.00014959112741053104], [0.00015902228187769651, 1.856137146205583e-07, 1.1145798910552895e-12, 2.1527115677599795e-05, 3.273089896538295e-05, 0.9997782111167908, 1.2492482710513286e-06, 5.177046702442567e-08, 1.9207261649223373e-12, 4.0391016919993916e-11, 9.770163567068835e-10, 7.066904572639032e-08, 2.7483368358893756e-10, 1.675288796576524e-10, 4.903554795355175e-17, 3.04380002105753e-12, 7.062842541927239e-06], [0.9999480247497559, 5.304843853082275e-08, 1.5592703448419343e-06, 5.798874713747182e-10, 4.8353165766457096e-05, 4.941200586472405e-07, 1.2175249253232323e-07, 1.0908791203689816e-08, 4.7333572616992114e-09, 1.799814746024364e-12, 6.1885427338204124e-12, 1.0810099343450119e-11, 1.7139326757842355e-07, 4.762796823598592e-10, 2.939613885644121e-09, 3.78142544945996e-14, 1.2844177490478614e-06], [3.9605578194823465e-07, 8.825168151815888e-07, 2.405895274670833e-11, 8.66083940675999e-11, 7.205474281471447e-13, 1.0903065685852198e-06, 3.726595878106309e-06, 0.9999598264694214, 3.456237664067885e-06, 7.457197170879226e-08, 4.0839393498914855e-12, 8.982349863906336e-10, 6.50821965764159e-11, 3.0560313462046906e-05, 3.117407165742492e-10, 1.6648010747744024e-09, 8.4659816934618e-09], [2.8694154252661974e-07, 2.4175896840006317e-09, 7.065142426654347e-07, 6.554092771976494e-12, 5.163639515970431e-10, 1.0322788457362009e-10, 3.657384695543442e-06, 3.5122596386827354e-07, 0.9999536275863647, 9.462890915301614e-09, 6.23204954308676e-08, 1.4899585674943948e-14, 9.413202439745305e-10, 3.5436702183755386e-11, 2.1122965335962363e-05, 2.1639743330581496e-09, 2.0233730538166128e-05], [3.682693705542306e-09, 3.828038580566684e-12, 4.86717688374938e-09, 1.8281129143815633e-07, 9.202139050756841e-11, 9.376590615062241e-10, 5.585815013656181e-13, 3.653839826256444e-07, 6.682127491330903e-07, 0.9999476671218872, 6.69522933094413e-07, 3.0644517323707987e-07, 3.1556256495672216e-14, 1.00372901101764e-08, 3.9616596114733227e-10, 4.9644571845419705e-05, 3.620488939759525e-07], [2.81960609527232e-07, 7.383781357606783e-14, 1.2137442743573312e-13, 4.188408786465203e-10, 1.2808509382011835e-06, 3.517546360853885e-07, 5.503318334376672e-08, 1.0946479860789518e-13, 5.949947308181436e-07, 2.433611712149286e-07, 0.998055100440979, 4.886623173661064e-06, 0.00012140740000177175, 2.0162614633445486e-11, 7.782630651043121e-10, 1.2167862273315677e-08, 0.0018158606253564358], [7.217179387453143e-08, 1.1648733362721198e-14, 1.8339097635508648e-15, 1.8974859389894044e-13, 1.1647879993859078e-08, 4.017903847852722e-06, 1.9464816425340814e-09, 1.1362306651108156e-09, 5.543346814559924e-14, 9.753944141266402e-06, 2.943217509709939e-07, 0.9998980760574341, 3.864855898427777e-05, 5.462270110001555e-06, 1.599885154912606e-11, 2.3452644271060308e-09, 4.3676223867805675e-05], [4.283775112412513e-09, 5.2202037451824085e-14, 1.0133519816712297e-18, 3.2213351611940992e-18, 4.072184863618267e-12, 6.65496724394643e-09, 3.653431335237656e-08, 3.027632398261426e-13, 1.4976873907723842e-12, 8.078735976631973e-14, 2.171510118387232e-07, 1.9159353996656137e-06, 0.999997615814209, 2.377275620801811e-07, 1.2988529363155976e-08, 1.2801507900603304e-12, 5.248063317253582e-08], [6.082473760216089e-07, 1.1490426388149899e-08, 2.377298763389917e-15, 2.314481741230354e-15, 2.0027865074234377e-16, 5.994725427171943e-08, 1.7086502351881805e-11, 8.638037797936704e-06, 1.5720496464918104e-13, 1.1640421959668856e-09, 1.5955605706021586e-13, 4.956232260155957e-06, 1.5433082580784685e-06, 0.9999790191650391, 1.0140344102183008e-06, 3.851158908219077e-06, 1.4068680798118294e-07], [4.351200004748534e-06, 2.8244487637607563e-08, 1.4310627705071965e-07, 1.8844778846118307e-14, 2.9092687460485767e-12, 7.381041958187673e-12, 5.615131137837182e-10, 2.310964059004661e-10, 7.101140795384708e-07, 1.9598116532404397e-11, 2.487184069810411e-10, 5.999348587359954e-12, 1.68877886608243e-05, 3.3545798032719176e-06, 0.9997945427894592, 6.5671715674398e-06, 0.00017348614346701652], [1.874248738431561e-07, 1.2445488195567123e-08, 4.2092405116989084e-09, 1.5633737859843677e-08, 3.627157710468787e-14, 2.0411337550707565e-11, 5.674748184455918e-17, 3.199861556280048e-11, 6.948798481065666e-11, 1.2801974662579596e-06, 1.862040382993868e-10, 2.0293067226617723e-10, 3.889704313850273e-13, 2.154710955437622e-06, 7.984494914126117e-06, 0.999962329864502, 2.600653351692017e-05], [7.583398200949887e-06, 1.4307707796312741e-11, 5.016762770537753e-06, 3.2230775826036506e-09, 1.6544561731279828e-05, 1.1440076663760124e-09, 2.2261491695180213e-12, 1.1310358152792768e-16, 3.2692189233518576e-11, 9.241817977567734e-09, 2.8294977028053836e-07, 3.6583256424194133e-09, 1.998726162355524e-08, 1.3944928545228663e-11, 4.047334641654743e-06, 2.0178991690045223e-05, 0.9999463558197021], [0.9221725463867188, 0.0015297244535759091, 2.3096101358532906e-05, 0.030276257544755936, 0.001407857984304428, 0.016686582937836647, 1.0247360933135496e-06, 1.0465674677107017e-05, 9.435315746486594e-07, 0.00011574710515560582, 0.0003514351847115904, 0.0014596788678318262, 0.00014754301810171455, 0.00222591869533062, 2.855258935596794e-05, 0.007452854886651039, 0.016109652817249298]], [[0.16077901422977448, 0.018005184829235077, 0.03674697130918503, 0.03295224532485008, 0.25733450055122375, 0.4791787564754486, 0.0006175494054332376, 0.0003450761141721159, 0.00016031406994443387, 4.5940214477013797e-05, 0.0005996872787363827, 0.0005669062375091016, 0.0002740943164099008, 0.00026777430321089923, 0.0004273770027793944, 0.0012925394112244248, 0.010406111367046833], [0.3716663420200348, 0.001520257443189621, 0.03086196444928646, 0.005981638561934233, 0.34656330943107605, 0.24059782922267914, 1.0186376130150165e-05, 8.207971404772252e-06, 7.337335318879923e-06, 2.9190479722274176e-07, 0.00010654293873813003, 4.6427769120782614e-05, 1.1073067071265541e-05, 2.949438794530579e-06, 9.753233825904317e-06, 6.480435695266351e-05, 0.0025411343667656183], [0.3891809582710266, 0.004878423176705837, 0.031948309391736984, 0.006802862510085106, 0.3324292004108429, 0.22518782317638397, 0.00011286848166491836, 6.270004087127745e-05, 6.439490971388295e-05, 5.981445156066911e-06, 0.00017904984997585416, 0.00014136641402728856, 5.575040995609015e-05, 3.183031003572978e-05, 4.363260813988745e-05, 0.000546559109352529, 0.008328224532306194], [0.3011429011821747, 0.0009152726270258427, 0.020239703357219696, 0.0022926167584955692, 0.47024333477020264, 0.20305544137954712, 2.9266884666867554e-06, 3.0621952191722812e-06, 5.28013561051921e-06, 2.706497923554707e-07, 3.578684845706448e-05, 1.9619075828813948e-05, 4.756114321935456e-06, 1.6762028280936647e-06, 3.1513950489170384e-06, 0.00012085735943401232, 0.0019133903551846743], [0.0996083915233612, 0.15217679738998413, 0.12826691567897797, 0.10044953227043152, 0.2386852651834488, 0.2717210352420807, 0.0011062644189223647, 0.0005303669022396207, 0.0004393437993712723, 9.138364112004638e-05, 0.00043516591540537775, 0.0006133295246399939, 0.0005515405791811645, 0.0002601879241410643, 0.0012182726059108973, 0.000546111143194139, 0.003300015814602375], [0.20008248090744019, 0.010022899135947227, 0.03334628418087959, 0.029603131115436554, 0.25997358560562134, 0.4453183710575104, 0.0005626337369903922, 0.000498741923365742, 0.0003913630498573184, 9.249094728147611e-05, 0.0011655185371637344, 0.0007729142671450973, 0.00046543838107027113, 0.0003407508775126189, 0.0004486327525228262, 0.0025751281064003706, 0.01433961745351553], [0.010421407409012318, 3.0526382488460513e-06, 0.00037574279122054577, 2.151684384443797e-06, 0.00045379935181699693, 4.87964935018681e-05, 0.003559282049536705, 0.010542587377130985, 0.011136029846966267, 0.002609053859487176, 0.06579496711492538, 0.07566464692354202, 0.006483047269284725, 0.003870394080877304, 0.0037970796693116426, 0.4983372092247009, 0.3069007098674774], [0.011063426733016968, 4.340030500316061e-06, 0.0002715392329264432, 2.7165822302777087e-06, 0.0005195609992370009, 5.6962104281410575e-05, 0.012659254483878613, 0.011157633736729622, 0.004368810914456844, 0.0014377073384821415, 0.045870956033468246, 0.053585585206747055, 0.00518902437761426, 0.006300204899162054, 0.004087433218955994, 0.5247235298156738, 0.31870129704475403], [0.009431961923837662, 1.6499892581123277e-06, 9.453222446609288e-05, 1.269211452381569e-06, 0.000429686187999323, 8.950574556365609e-05, 0.02016700990498066, 0.021225295960903168, 0.00918843224644661, 0.0015824775910004973, 0.0573844276368618, 0.03144233301281929, 0.0048926775343716145, 0.005289564840495586, 0.0026302223559468985, 0.48149821162223816, 0.3546507656574249], [0.007859635166823864, 2.1256246895973163e-07, 3.768455280805938e-05, 4.917059754916409e-07, 0.0005490142502821982, 4.5158027205616236e-05, 0.0027407549787312746, 0.0059780641458928585, 0.0028648781590163708, 0.00030278859776444733, 0.03241860494017601, 0.015319015830755234, 0.0012072991812601686, 0.001425761729478836, 0.0013611798640340567, 0.6308400630950928, 0.2970494329929352], [0.015372776426374912, 3.6719411582453176e-06, 0.0002076392702292651, 7.24689380149357e-06, 0.0012095349375158548, 0.0001808706729207188, 0.007844879291951656, 0.020411040633916855, 0.007236007135361433, 0.0016153422184288502, 0.06286419183015823, 0.028592774644494057, 0.0036750121507793665, 0.004707791842520237, 0.0031507413368672132, 0.47563818097114563, 0.3672822415828705], [0.02361123263835907, 2.839653279806953e-05, 0.0007512079318985343, 1.664665796852205e-05, 0.0011886091670021415, 0.00023269384109880775, 0.02749108523130417, 0.01875321939587593, 0.008542525582015514, 0.0033619655296206474, 0.06777071207761765, 0.05047420784831047, 0.008012417703866959, 0.008918480016291142, 0.009884019382297993, 0.32249224185943604, 0.4484703242778778], [0.04135238006711006, 5.522725132323103e-06, 0.00033332942984998226, 4.305399670556653e-06, 0.0018728782888501883, 0.00024498545099049807, 0.01091309916228056, 0.010117917321622372, 0.0024248415138572454, 0.00045039100223220885, 0.05018357187509537, 0.022502828389406204, 0.0020234098192304373, 0.0024121112655848265, 0.0027669896371662617, 0.32474470138549805, 0.5276467800140381], [0.013637779280543327, 7.748438406451896e-07, 0.0001462942746002227, 5.286752866595634e-07, 0.00025874603306874633, 2.4389637474087067e-05, 0.006394587457180023, 0.008586823008954525, 0.004451260436326265, 0.0005485625588335097, 0.07317764312028885, 0.054792050272226334, 0.002934327581897378, 0.002116805873811245, 0.0017024974804371595, 0.3500758707523346, 0.4811510145664215], [0.030358342453837395, 3.726921022462193e-06, 0.0003956094151362777, 1.5751681985420873e-06, 0.000555710110347718, 6.860183930257335e-05, 0.006990213878452778, 0.009800690226256847, 0.006293740123510361, 0.0007812364492565393, 0.049708280712366104, 0.044420450925827026, 0.00275496207177639, 0.0024204645305871964, 0.0027512218803167343, 0.2977353036403656, 0.5449599623680115], [0.00384308909997344, 0.0007127896533347666, 0.0034427051432430744, 0.00015586873632855713, 0.0005772068398073316, 0.00015519015141762793, 0.15906770527362823, 0.11069054901599884, 0.037083834409713745, 0.019473960623145103, 0.058021049946546555, 0.1683085560798645, 0.03920500725507736, 0.03517604619264603, 0.1734161525964737, 0.11232633888721466, 0.078343965113163], [0.24429747462272644, 0.0005753662553615868, 0.011923594400286674, 0.00192537740804255, 0.047313764691352844, 0.06250404566526413, 0.008190779015421867, 0.015925191342830658, 0.005927054677158594, 0.001724912435747683, 0.03820589557290077, 0.029567522928118706, 0.0055772713385522366, 0.005153314676135778, 0.005557183641940355, 0.13198047876358032, 0.38365089893341064]], [[0.27467241883277893, 0.017790816724300385, 0.0266018807888031, 0.008457627147436142, 0.05003209412097931, 0.07180669903755188, 0.013406283222138882, 0.017626803368330002, 0.007168401964008808, 0.0036922036670148373, 0.009264797903597355, 0.022080285474658012, 0.00926895160228014, 0.03398260101675987, 0.01566535048186779, 0.03145422413945198, 0.3870285749435425], [0.4156966507434845, 0.12134125083684921, 0.006904419511556625, 0.00043889108928851783, 0.010241595096886158, 0.015093833208084106, 0.001133020268753171, 0.0042595816776156425, 0.0003359271795488894, 4.207628080621362e-05, 0.0003538442251738161, 0.00011236189311603084, 0.00016573410539422184, 0.0012235381873324513, 0.009706661105155945, 0.0016674313228577375, 0.4112832844257355], [0.36781400442123413, 0.21530279517173767, 0.04024609550833702, 0.008604397997260094, 0.00505608506500721, 0.0666080042719841, 0.00032796067534945905, 0.015178327448666096, 0.0014706322690472007, 1.422525747329928e-05, 0.00018492995877750218, 0.0001181076149805449, 5.412282553152181e-05, 0.0015785535797476768, 0.00136221491266042, 0.07278554886579514, 0.20329402387142181], [0.12319906800985336, 0.0025713499635457993, 0.5385981202125549, 0.004323318600654602, 0.03349592536687851, 0.0019583310931921005, 9.534427226753905e-05, 0.0005628239596262574, 0.002564458642154932, 0.0001314278633799404, 0.00010792829561978579, 3.959256719099358e-05, 2.488513564458117e-05, 0.00014192794333212078, 0.005267746280878782, 0.011094695888459682, 0.2758229672908783], [0.16004107892513275, 0.013748751021921635, 0.008576217107474804, 0.301979660987854, 0.08035698533058167, 0.0886543020606041, 0.002828646684065461, 0.008613101206719875, 0.0012127028312534094, 0.0030079029966145754, 0.008738973177969456, 0.0006719056982547045, 2.9034506951575167e-05, 0.0004043754015583545, 0.0008969894843176007, 0.06044064462184906, 0.25979867577552795], [0.15584777295589447, 0.0024106218479573727, 0.00647654989734292, 0.006345157977193594, 0.28846126794815063, 0.05086759105324745, 0.009798357263207436, 0.0014830513391643763, 0.0008110865019261837, 0.0008375453180633485, 0.007317088544368744, 0.0028408740181475878, 0.0010052748257294297, 0.0003465523477643728, 0.0004471820720937103, 0.002542150905355811, 0.46216192841529846], [0.1873253434896469, 0.004434618633240461, 0.0028571102302521467, 0.008491932414472103, 0.07802138477563858, 0.3626980483531952, 0.03761183097958565, 0.023741446435451508, 0.00029893152532167733, 0.0035407827235758305, 0.0032977766823023558, 0.025868801400065422, 0.00030711363069713116, 0.004800793249160051, 0.00014054130588192493, 0.001822109567001462, 0.2547415792942047], [0.24227018654346466, 0.007495630066841841, 0.0006544472998939455, 0.00015451019862666726, 0.07655082643032074, 0.21043840050697327, 0.1649893820285797, 0.007569733541458845, 0.005394870415329933, 0.0003585637896321714, 0.0009295843774452806, 0.0007690996280871332, 0.0012718483339995146, 0.0008029468008317053, 0.0010022259084507823, 0.0005624659243039787, 0.2787853181362152], [0.22660626471042633, 0.034893397241830826, 0.003541411366313696, 0.00012606047675944865, 0.0046168104745447636, 0.08004556596279144, 0.00423548836261034, 0.43213579058647156, 0.017333369702100754, 0.007539812941104174, 0.00016155120101757348, 0.0009624777594581246, 0.00012700910156127065, 0.0073873368091881275, 0.0011398150818422437, 0.004125002305954695, 0.17502276599407196], [0.014557487331330776, 4.05518694606144e-05, 0.0008301138295792043, 6.415992629626999e-06, 0.0009696494089439511, 0.0008376887417398393, 0.00018339981033932418, 0.007903114892542362, 0.9532968401908875, 0.000497996574267745, 0.00023417407646775246, 3.20702965836972e-05, 3.036299858649727e-05, 3.786084198509343e-05, 0.00022650783648714423, 0.0031394746620208025, 0.017176272347569466], [0.011243748478591442, 0.00015270712901838124, 0.0006900812732055783, 0.0002198056026827544, 0.0024950981605798006, 0.001660275855101645, 7.850718247937039e-05, 0.002585034817457199, 0.0066946265287697315, 0.9298443794250488, 0.0008090442861430347, 0.0006365031586028636, 8.003570656001102e-06, 0.00026206072652712464, 0.0005257058655843139, 0.010095174424350262, 0.031999193131923676], [0.0880192220211029, 9.494848927715793e-05, 0.000984118552878499, 0.00046788822510279715, 0.054236482828855515, 0.01885262317955494, 0.0005760183557868004, 0.0003037861897610128, 0.0033414443023502827, 0.0020217793062329292, 0.34935465455055237, 0.026408938691020012, 0.002915008459240198, 0.00022726522001903504, 0.00039799901423975825, 0.02791561931371689, 0.4238821864128113], [0.009519141167402267, 1.2079051884938963e-05, 0.00016979900829028338, 9.579514880897477e-06, 0.002447988372296095, 0.013032681308686733, 9.240003419108689e-05, 0.0001028804254019633, 1.5023171044958872e-06, 3.519070378388278e-05, 0.001394300372339785, 0.9416462182998657, 0.003045768942683935, 0.0041174329817295074, 6.294575723586604e-05, 0.004286592360585928, 0.020023535937070847], [0.14429965615272522, 0.0058726961724460125, 0.0014459457015618682, 2.5894441932905465e-05, 0.01960412599146366, 0.03439446911215782, 0.002769255777820945, 0.0005967814940959215, 0.00041785635403357446, 0.0009371170890517533, 0.004428232554346323, 0.031085383147001266, 0.19257143139839172, 0.14598320424556732, 0.02068330906331539, 0.008682279847562313, 0.386202335357666], [0.03514653816819191, 0.0013633874477818608, 0.00010907228715950623, 5.080114533484448e-06, 0.00017850320728030056, 0.012072823010385036, 8.857439388521016e-05, 0.0005564167513512075, 7.621854456374422e-05, 0.000233090206165798, 3.9177633880171925e-05, 0.002302916022017598, 0.0021092004608362913, 0.8836972117424011, 0.012413269840180874, 0.022471806034445763, 0.02713671699166298], [0.09908843040466309, 0.00560173811390996, 0.004373116418719292, 0.00029755994910374284, 0.0026859790086746216, 0.0027801222167909145, 0.004514613188803196, 0.008467326872050762, 0.006644471548497677, 0.0015210730489343405, 0.006702197249978781, 0.0003153303114231676, 0.0027855110820382833, 0.012831369414925575, 0.5315288305282593, 0.07036205381155014, 0.2395002394914627], [0.22580485045909882, 0.027116023004055023, 0.034488122910261154, 0.017344847321510315, 0.030339447781443596, 0.056271716952323914, 0.004156241659075022, 0.018589967861771584, 0.008461211808025837, 0.015033233910799026, 0.01753901317715645, 0.018697848543524742, 0.0042067645117640495, 0.045449867844581604, 0.013816130347549915, 0.15369760990142822, 0.3089870512485504]], [[0.07959605008363724, 0.0553077831864357, 0.020977728068828583, 0.03935033455491066, 0.05383552983403206, 0.04411180317401886, 0.08529365062713623, 0.03468305245041847, 0.03209206089377403, 0.04098156467080116, 0.03647289425134659, 0.03627733886241913, 0.055152710527181625, 0.08830636739730835, 0.05051738768815994, 0.13344860076904297, 0.1135951355099678], [0.228453129529953, 0.009324222803115845, 0.013658533804118633, 0.001326529891230166, 0.3255593478679657, 0.10342786461114883, 0.000432552769780159, 0.0025834364350885153, 0.0015971633838489652, 0.0003004596510436386, 0.0028716293163597584, 0.0020710828248411417, 0.0004495737957768142, 0.001045356155373156, 0.0025697569362819195, 0.11797074228525162, 0.18635864555835724], [0.18716315925121307, 0.019615434110164642, 0.07241584360599518, 0.003805972868576646, 0.18229034543037415, 0.10660869628190994, 0.0075257038697600365, 0.02993849292397499, 0.011628298088908195, 0.0027539918664842844, 0.015081541612744331, 0.013167379423975945, 0.007125040516257286, 0.0048322658985853195, 0.004833030980080366, 0.0756106749176979, 0.25560417771339417], [0.24753814935684204, 0.0031601034570485353, 0.0434383749961853, 0.0008788590203039348, 0.3346290588378906, 0.05133966729044914, 0.00038944309926591814, 0.0018910724902525544, 0.003207580419257283, 0.00031327360193245113, 0.004822218790650368, 0.005097340326756239, 0.0012683630920946598, 0.0009966401848942041, 0.0010991564486175776, 0.08905439078807831, 0.21087628602981567], [0.15720851719379425, 0.05310383439064026, 0.03267694264650345, 0.032770074903964996, 0.27860966324806213, 0.1084875538945198, 0.012167925015091896, 0.009745091199874878, 0.005763376597315073, 0.004598923027515411, 0.00963981170207262, 0.007734397891908884, 0.006993933115154505, 0.008363364264369011, 0.008235522545874119, 0.10581690073013306, 0.15808407962322235], [0.14648163318634033, 0.09129562973976135, 0.02324768900871277, 0.08892533928155899, 0.15384335815906525, 0.12124709784984589, 0.034477412700653076, 0.009364231489598751, 0.0053212279453873634, 0.017897319048643112, 0.012062083929777145, 0.009784478694200516, 0.017857203260064125, 0.033363740891218185, 0.02259700559079647, 0.06862520426511765, 0.143609419465065], [0.09274458140134811, 0.0005629519582726061, 0.005340439733117819, 0.00025765501777641475, 0.10082019120454788, 0.10019209235906601, 0.0007123984978534281, 0.005264658015221357, 0.0026642458979040384, 0.00035086055868305266, 0.005611531436443329, 0.0034314857330173254, 0.0007213517092168331, 0.0015616579912602901, 0.0024834780488163233, 0.2155078649520874, 0.46177253127098083], [0.12072867155075073, 0.0014404888497665524, 0.017522061243653297, 0.0002838002983480692, 0.0996483787894249, 0.08853064477443695, 0.00176182109862566, 0.015528745017945766, 0.009582800790667534, 0.0006933068507350981, 0.008330863900482655, 0.009207659400999546, 0.0017452711472287774, 0.0028119313064962626, 0.0026755107101053, 0.203116312623024, 0.4163917899131775], [0.18975885212421417, 0.002010736148804426, 0.009818986058235168, 0.0008217521826736629, 0.06647729128599167, 0.07533756643533707, 0.007155569735914469, 0.013742499984800816, 0.011958573944866657, 0.002266017720103264, 0.017514115199446678, 0.015530680306255817, 0.004259428940713406, 0.003847033018246293, 0.0030431607738137245, 0.10840821266174316, 0.468049556016922], [0.18224488198757172, 0.0002879188396036625, 0.010222859680652618, 0.00015886245819274336, 0.0834764689207077, 0.04079554229974747, 0.0016490403795614839, 0.008680458180606365, 0.008702459745109081, 0.0005212584510445595, 0.011904582381248474, 0.018501723185181618, 0.001780741149559617, 0.0024112414103001356, 0.0013660116819664836, 0.19460691511631012, 0.43268898129463196], [0.13415580987930298, 0.0012989521492272615, 0.039395175874233246, 0.0004001397464890033, 0.09916455298662186, 0.05750805512070656, 0.005602858029305935, 0.02288360521197319, 0.026163192465901375, 0.0011827200651168823, 0.026200097054243088, 0.048211634159088135, 0.01160269882529974, 0.008436786942183971, 0.002696210751309991, 0.18103358149528503, 0.33406397700309753], [0.10399599373340607, 0.0018048551864922047, 0.020163998007774353, 0.0003922621544916183, 0.08359020948410034, 0.09513304382562637, 0.006176177877932787, 0.030437491834163666, 0.01550661027431488, 0.0012540130410343409, 0.014682075008749962, 0.016173560172319412, 0.006494374480098486, 0.005868510343134403, 0.005418969318270683, 0.21613475680351257, 0.3767732083797455], [0.1610516458749771, 0.0008706218795850873, 0.029376879334449768, 9.239892096957192e-05, 0.11555320024490356, 0.05465112626552582, 0.0008898557280190289, 0.0255744606256485, 0.021747933700680733, 0.00043090980034321547, 0.013249123468995094, 0.012375563383102417, 0.00260575651191175, 0.0009588896064087749, 0.0008802933152765036, 0.09418171644210815, 0.4655095636844635], [0.11671224981546402, 0.0024155022110790014, 0.0159138310700655, 0.0002156817208742723, 0.09475088119506836, 0.09657035022974014, 0.0009309118613600731, 0.00790493655949831, 0.01618143729865551, 0.0012388027971610427, 0.009591212496161461, 0.012438720092177391, 0.002665790030732751, 0.0042147040367126465, 0.00378315057605505, 0.21444405615329742, 0.4000277817249298], [0.11084997653961182, 0.003685097908601165, 0.007407616823911667, 0.0016025282675400376, 0.1413775235414505, 0.1221456378698349, 0.0013103076489642262, 0.00629525538533926, 0.0048035201616585255, 0.000742660544347018, 0.005432791542261839, 0.005505293607711792, 0.004206537734717131, 0.006393757648766041, 0.006146579515188932, 0.3087378740310669, 0.2633570730686188], [0.11923347413539886, 0.007921025156974792, 0.010112158954143524, 0.005529005080461502, 0.11909091472625732, 0.10098840296268463, 0.012655233964323997, 0.013118022121489048, 0.01071210578083992, 0.004238514695316553, 0.01634937897324562, 0.012699341401457787, 0.007386006880551577, 0.012729876674711704, 0.010271179489791393, 0.25737887620925903, 0.2795864939689636], [0.15527759492397308, 0.010458573698997498, 0.005093803629279137, 0.0055272551253438, 0.05768483877182007, 0.09997627139091492, 0.006433708127588034, 0.00438097957521677, 0.002990078181028366, 0.002436535432934761, 0.004949180409312248, 0.0025896583683788776, 0.0028936408925801516, 0.009303076192736626, 0.0052651576697826385, 0.054941173642873764, 0.5697985291481018]], [[0.33848726749420166, 0.035722631961107254, 0.045703474432229996, 0.07754818350076675, 0.08718802034854889, 0.09776447713375092, 0.012538373470306396, 0.008608193136751652, 0.007236705161631107, 0.009662579745054245, 0.012593910098075867, 0.0054450067691504955, 0.008720019832253456, 0.012326467782258987, 0.009080920368432999, 0.022226057946681976, 0.20914769172668457], [0.12696567177772522, 0.015488412231206894, 0.048386476933956146, 0.23328866064548492, 0.24591200053691864, 0.13353826105594635, 0.009219993837177753, 0.0017419138457626104, 0.00111866625957191, 0.001390072051435709, 0.003518264275044203, 0.00010424466745462269, 4.128183354623616e-05, 0.0003640668874140829, 0.00018594806897453964, 0.006978531833738089, 0.17175759375095367], [0.06326299905776978, 0.0024991799145936966, 0.024843953549861908, 0.2328302413225174, 0.3929362893104553, 0.10005886107683182, 0.034154266119003296, 0.0015155161963775754, 0.0005348753766156733, 0.004867072682827711, 0.011630958877503872, 0.0008862385293468833, 0.0007002384518273175, 0.00018207704124506563, 0.00011221801833016798, 0.0007829922833479941, 0.12820205092430115], [0.22101910412311554, 0.009093436412513256, 0.004549587611109018, 0.15569022297859192, 0.14436830580234528, 0.2853298783302307, 0.052677858620882034, 0.0030339593067765236, 0.00033315582550130785, 0.0002498343528714031, 0.0012468384811654687, 0.0004989042063243687, 0.000234720588196069, 0.000240877183387056, 1.682893889665138e-05, 0.0001724745670799166, 0.121243916451931], [0.24190790951251984, 0.008541368879377842, 0.0076930648647248745, 0.01203364972025156, 0.11041118949651718, 0.12222080677747726, 0.27624642848968506, 0.043157268315553665, 0.008985423482954502, 0.0035527446307241917, 0.005354228895157576, 0.0024023193400353193, 0.0052225166000425816, 0.003253682516515255, 0.0008838801877573133, 0.0007369524682871997, 0.14739656448364258], [0.28206607699394226, 0.029257705435156822, 0.012392102740705013, 0.029899228364229202, 0.041177526116371155, 0.08809611201286316, 0.14013075828552246, 0.10678937286138535, 0.02768593467772007, 0.016271209344267845, 0.010048706084489822, 0.002913705538958311, 0.006526032462716103, 0.01745503954589367, 0.004746341146528721, 0.010472657158970833, 0.17407137155532837], [0.10552516579627991, 0.00128167774528265, 0.0017932605696842074, 0.0012276918860152364, 0.022061478346586227, 0.021661611273884773, 0.20663830637931824, 0.06886961311101913, 0.12167708575725555, 0.07172378897666931, 0.026702653616666794, 0.00503116101026535, 0.005202850792557001, 0.005935538560152054, 0.010878889821469784, 0.025967074558138847, 0.29782217741012573], [0.0397876612842083, 0.000980631448328495, 0.003041991498321295, 0.00834512896835804, 0.018175939098000526, 0.016068626195192337, 0.0244749765843153, 0.025427749380469322, 0.0729174092411995, 0.37681844830513, 0.16937032341957092, 0.0281631238758564, 0.004047372378408909, 0.007251879200339317, 0.004098587669432163, 0.06307191401720047, 0.13795827329158783], [0.013667367398738861, 2.8865844797110185e-05, 6.421677971957251e-05, 0.00020833895541727543, 0.0023608312476426363, 0.0024228098336607218, 0.0023739554453641176, 0.0007338917930610478, 0.002218437846750021, 0.10272132605314255, 0.8069428205490112, 0.014317158609628677, 0.004678694065660238, 0.0005552151123993099, 0.0007793804979883134, 0.003779387567192316, 0.04214724153280258], [0.12306277453899384, 8.853592589730397e-05, 2.5275074222008698e-05, 7.127996650524437e-05, 0.0015106204664334655, 0.016007335856556892, 0.0010574300540611148, 0.0012894185492768884, 0.00039267033571377397, 0.021901383996009827, 0.20749136805534363, 0.036466918885707855, 0.094434455037117, 0.013440798968076706, 0.0016916089225560427, 0.01805982179939747, 0.4630082845687866], [0.06458373367786407, 0.0005789388669654727, 0.00010972826567012817, 0.00014234053378459066, 0.00199806597083807, 0.00867130234837532, 0.010535666719079018, 0.0030762481037527323, 0.00428348034620285, 0.017036573961377144, 0.014514969661831856, 0.08609580248594284, 0.3247258961200714, 0.14545303583145142, 0.05576834827661514, 0.04274812713265419, 0.21967779099941254], [0.09910169988870621, 0.002413469599559903, 0.00030904842424206436, 0.0004521918890532106, 0.001275251735933125, 0.009036950767040253, 0.0036089858040213585, 0.004359150305390358, 0.0008480680407956243, 0.013254975900053978, 0.0395219624042511, 0.017400987446308136, 0.12007997930049896, 0.24775567650794983, 0.12291551381349564, 0.12900274991989136, 0.1886633187532425], [0.045732393860816956, 0.0015971865504980087, 0.0022102510556578636, 0.00038061942905187607, 0.0009618892217986286, 0.002043425804004073, 0.0017196978442370892, 0.000856544473208487, 0.0015408922918140888, 0.0029677266720682383, 0.007960319519042969, 0.0035878329072147608, 0.014845194295048714, 0.07301466912031174, 0.5783840417861938, 0.12310308963060379, 0.13909423351287842], [0.1025669053196907, 0.003329001134261489, 0.0017758143367245793, 0.0024231658317148685, 0.0008309416007250547, 0.0034864877816289663, 0.0002718681644182652, 0.000524418312124908, 0.00031419115839526057, 0.006190957967191935, 0.006960329599678516, 0.0011462512193247676, 0.0013189646415412426, 0.03855377808213234, 0.10637503862380981, 0.3000212609767914, 0.42391061782836914], [0.10681671649217606, 0.0007405175128951669, 0.003510174574330449, 0.0022578048519790173, 0.0034071053378283978, 0.002089934190735221, 0.00010343965550418943, 7.186502625700086e-05, 0.0002573478559497744, 0.0014269377570599318, 0.0013066543033346534, 0.001659235218539834, 0.003604902420192957, 0.005573165602982044, 0.03547092154622078, 0.11055529862642288, 0.7211480140686035], [0.25334247946739197, 0.0034224174451082945, 0.0025607114657759666, 0.009882204234600067, 0.012137498706579208, 0.013194184750318527, 0.0009636961040087044, 0.00023295439314097166, 9.933605906553566e-05, 0.001169327413663268, 0.004118270706385374, 0.0038163841236382723, 0.0037651616148650646, 0.011030761525034904, 0.008801938034594059, 0.06944487243890762, 0.6020178198814392], [0.34304875135421753, 0.006331826094537973, 0.009648346342146397, 0.01419122889637947, 0.05011746659874916, 0.04047445207834244, 0.018833402544260025, 0.004539214540272951, 0.0025682002305984497, 0.005425045266747475, 0.007096480578184128, 0.004417421296238899, 0.008835557848215103, 0.013494735583662987, 0.011083581484854221, 0.02889135293662548, 0.4310029447078705]], [[0.7410589456558228, 0.006218076217919588, 0.008576477877795696, 0.0011857931967824697, 0.004965857602655888, 0.007661011535674334, 0.0006684255204163492, 0.0014875511405989528, 0.007314062211662531, 0.0013936073519289494, 0.0006363712018355727, 0.00015889728092588484, 0.00022569065913558006, 0.0013710643397644162, 0.004604967311024666, 0.010963034816086292, 0.20151016116142273], [1.0400337487226352e-05, 1.1231068128836341e-06, 0.9998966455459595, 3.565930910554016e-07, 2.0531811060209293e-06, 4.857775071087644e-09, 1.01955877074289e-09, 1.2210954913882688e-08, 2.0742554625030607e-06, 8.30909296922755e-09, 4.572873384210002e-14, 4.364695979180945e-15, 9.867299407835105e-15, 2.89253972336756e-12, 9.638905140718634e-08, 1.052901144049656e-08, 8.721926133148372e-05], [7.952175806735795e-09, 1.9539948326041667e-08, 8.898162491277617e-07, 0.9999982118606567, 8.276027330111901e-08, 7.254186584759736e-08, 4.705120299451637e-14, 1.6140862518082555e-12, 1.1650707065768984e-09, 2.0240383946656948e-07, 3.243640023242733e-09, 7.555567499775706e-13, 1.9745807073265635e-17, 6.54490584585431e-15, 6.161142322507699e-15, 3.500765046737797e-07, 5.477668807429836e-08], [2.7596333893598057e-05, 1.7892349060688595e-11, 0.0001294005778618157, 3.856564944726415e-06, 0.9979754090309143, 1.5645775420125574e-05, 1.31250192225707e-06, 5.631967548574979e-12, 9.779052012603984e-10, 3.212552428522031e-07, 1.9800635797651012e-08, 5.70413050127172e-08, 2.3861607134634255e-10, 1.4020772898541613e-14, 1.3961065376683068e-12, 1.4818460694621116e-11, 0.0018463487504050136], [0.0006145341321825981, 1.2094086514480296e-06, 5.090853086309188e-12, 1.1203356734768022e-05, 4.0739982068771496e-05, 0.9992474317550659, 3.815075979218818e-05, 4.569801149045816e-06, 1.0840882358476023e-10, 1.5885236237522804e-08, 8.566978948465476e-08, 6.154279162728926e-06, 4.979242795855043e-09, 1.3794306141790003e-08, 4.8754288942880284e-15, 3.93259730335771e-10, 3.594567533582449e-05], [0.003926962148398161, 7.873568392824382e-06, 2.9773325422866037e-06, 1.0608733891359634e-09, 0.0007418673485517502, 0.0014409858267754316, 0.989303708076477, 0.002059394959360361, 5.298088217386976e-05, 3.8052707651559103e-08, 5.489768284405727e-08, 7.100782681845885e-07, 0.0007139018271118402, 2.920143970186473e-06, 2.9291359169292264e-06, 3.3509572894274697e-10, 0.0017426678678020835], [5.838599008711753e-06, 3.473950755505939e-06, 2.212204031071252e-11, 3.9566013659841914e-11, 1.7128498272511727e-11, 3.0499437343678437e-05, 1.7074549759854563e-05, 0.9999179840087891, 5.660680926666828e-06, 4.643158888484322e-07, 3.649792273963115e-11, 3.0858537947153764e-09, 2.332115334180429e-10, 1.8200758859165944e-05, 1.5476707415640334e-10, 2.8632607396161802e-09, 7.582362400171405e-07], [3.963793631100998e-07, 1.3482147342980255e-10, 1.7503602123269957e-07, 5.443227032303488e-12, 5.540182201890786e-10, 1.3384987562758965e-10, 1.5520759006903972e-06, 5.886090548301581e-07, 0.9999468326568604, 3.5605233961177873e-07, 6.152205145326661e-08, 2.0556407121755278e-14, 3.42151834642479e-10, 1.3423509699628244e-11, 1.624420747248223e-06, 1.3575358615014466e-09, 4.83443945995532e-05], [2.8917623851043572e-09, 1.4025022462837988e-13, 1.8009964630749664e-09, 3.7683065556848305e-08, 1.164863483449352e-10, 3.008538973503505e-10, 2.176567709703467e-13, 4.50203643254099e-08, 2.3488124156756385e-07, 0.9999924898147583, 4.460018203644722e-07, 3.6832983596468694e-07, 3.8003700189516605e-15, 1.2663757542608067e-10, 1.4232230845234728e-12, 6.175494490889832e-06, 2.49329502821638e-07], [8.706482503839652e-07, 6.296256359572495e-16, 4.064414820328932e-13, 2.048386738007224e-10, 2.567281171650393e-06, 2.81956893388724e-08, 1.841758390241921e-08, 1.4458315390742348e-14, 1.6596438001670322e-07, 5.333524768502684e-06, 0.9985451698303223, 2.276656414323952e-05, 0.0001338905276497826, 4.2333844763042805e-12, 3.2604205446595813e-10, 5.74144998211068e-09, 0.0012893088860437274], [6.690248937957222e-06, 8.631569817349385e-15, 1.0106500665106773e-15, 2.4742093275445867e-14, 2.1323835142084135e-08, 9.392604624736123e-06, 6.247441231010953e-09, 1.001509430942349e-09, 7.299843103039313e-14, 2.0275685528758913e-05, 9.601812962500844e-07, 0.999359667301178, 4.0301794797414914e-05, 3.554842123776325e-06, 7.795709390523431e-12, 5.843260098004066e-09, 0.000559189124032855], [3.4696597595029743e-08, 2.1024757726906956e-13, 5.458513577039451e-18, 5.442361055782006e-17, 1.0226475916086386e-10, 1.4329249609090766e-07, 1.7444200466343318e-06, 1.1315699245673105e-11, 3.404244334342943e-12, 2.608253456964915e-12, 1.2916473224322544e-06, 5.673950454365695e-06, 0.9999886751174927, 6.760887458767684e-07, 7.1889489916543425e-09, 2.908274315815973e-12, 1.7159183016701718e-06], [1.987588575502741e-06, 3.9845897958912246e-07, 5.813898201165483e-15, 2.6779763167205858e-14, 7.240869619932859e-15, 3.160659389322973e-06, 4.4249662267681344e-10, 0.00011354136950103566, 1.3915714284010172e-12, 6.751802672511076e-09, 4.5004095935996524e-12, 6.9157449615886435e-06, 1.8560174339654623e-06, 0.9998676776885986, 1.0057092225679298e-07, 3.0627852538600564e-06, 1.2395464636938414e-06], [5.2485982450889423e-05, 6.918597961202977e-08, 1.417523520785835e-07, 3.19113442268093e-13, 9.458699101738688e-11, 1.9183645783016345e-09, 4.329283953552476e-08, 1.4436129625039484e-08, 6.833190127508715e-06, 9.062369743517706e-10, 2.53688248186279e-09, 4.727453151165406e-11, 9.803512512007728e-05, 2.487458914401941e-05, 0.9809368252754211, 1.1875997188326437e-05, 0.018868762999773026], [2.2524149244418368e-05, 2.0312914017495132e-08, 7.030276805153335e-08, 1.8002364754465816e-07, 4.028117683158028e-12, 1.7309782496255366e-09, 3.142113187069558e-16, 2.2001672705940223e-10, 6.903752569620281e-10, 7.868095053709112e-06, 2.037253921116644e-09, 9.766391029231158e-10, 5.573253447285764e-13, 1.8127500425180187e-06, 1.3161151173335384e-06, 0.9991406202316284, 0.000825519033242017], [3.8926227716729045e-05, 2.786337411069418e-14, 2.69591140522607e-07, 3.1977279157935357e-10, 3.9792575989849865e-06, 5.768093225277937e-10, 5.14066220147491e-13, 4.028886008533274e-16, 3.2252971127189056e-11, 8.141960705643214e-08, 1.544392063124178e-07, 3.281563465407089e-09, 7.062000983992789e-10, 1.5894085093198784e-12, 1.4005730974986363e-07, 5.372564373828936e-06, 0.9999510049819946], [0.6171939969062805, 0.001904839533381164, 2.3470271116821095e-05, 0.004027391783893108, 0.003500839462503791, 0.13018439710140228, 3.2885003747651353e-05, 0.0001869467960204929, 6.5696972342266236e-06, 0.0004447891842573881, 0.000616871751844883, 0.00405615009367466, 8.128953777486458e-05, 0.0020427790004760027, 2.6762740162666887e-05, 0.0301108006387949, 0.2055591344833374]], [[0.572759747505188, 0.0001452567958040163, 7.067358092172071e-05, 2.2070526028983295e-05, 0.000321930245263502, 0.000407984247431159, 3.0543189495801926e-05, 8.5783240137971e-06, 2.0440886146388948e-05, 1.3126882549840957e-05, 4.26013684773352e-05, 9.145885269390419e-05, 0.0009026863262988627, 0.00030976918060332537, 0.00040194677421823144, 0.001361977425403893, 0.42308923602104187], [0.9982907176017761, 4.049998096888885e-07, 9.93778996871697e-08, 4.809852603010478e-13, 1.2452821884778587e-08, 2.987551681599143e-07, 1.7613288605389243e-08, 4.457305191607475e-09, 8.536619328092243e-12, 1.4485994055766366e-13, 2.345813278191054e-16, 2.2702993998646726e-12, 4.36417035842851e-09, 3.020904770778543e-08, 4.11641885023073e-08, 1.6393936208558557e-10, 0.001708398456685245], [1.5529245729339891e-06, 0.9999946355819702, 8.733930201287876e-08, 3.0063918075029505e-06, 2.321219888325762e-15, 5.919120193986771e-10, 1.4604060961844606e-14, 9.835900094401495e-09, 2.418799327497112e-10, 3.4116389861825816e-14, 1.0281026179060356e-17, 1.8947818905300523e-18, 9.968785681028534e-17, 3.6721718998933284e-08, 4.67199212650371e-09, 7.325380124711955e-07, 3.8220793197041303e-10], [1.3529631814890308e-06, 6.039160638238172e-08, 0.9999978542327881, 2.102476415188903e-08, 2.5996060415423017e-08, 1.7203323184403208e-13, 4.655177068477179e-13, 1.2213097286967178e-12, 1.5225300131760378e-08, 2.3042578262133517e-11, 5.958767728442044e-16, 2.679724799849744e-18, 9.089844737953368e-17, 1.8668383811336125e-15, 1.9392061290091078e-08, 1.3425045797266222e-10, 7.315874199775863e-07], [6.965927923374693e-08, 7.651272539987986e-07, 2.926705064965063e-07, 0.9999948740005493, 3.9618376490579976e-07, 1.1686852303682826e-06, 4.9958968846618504e-14, 7.870022342149063e-12, 1.1158118179421805e-10, 6.702547352688271e-07, 4.916672846633219e-09, 1.5151800647483782e-10, 1.5460235935698622e-16, 8.462709699674775e-13, 1.4324546865514265e-14, 1.7075740288419183e-06, 1.3642592477935978e-07], [0.001674926606938243, 7.631732468205144e-10, 2.2019728930899873e-05, 6.8323702180350665e-06, 0.9833366274833679, 0.00013283318548928946, 0.00019266882736701518, 2.4949747823299617e-10, 7.683107128286792e-08, 6.481766376964515e-07, 1.3256559213914443e-05, 1.3152768588042818e-05, 8.739784789213445e-06, 3.412363490731818e-12, 2.4378795857038504e-11, 5.819694032238587e-11, 0.01459807250648737], [3.939881025871728e-06, 3.9585160149790966e-10, 5.194069390627824e-14, 2.7745093333919613e-08, 3.5510113320924575e-06, 0.9999797344207764, 4.386771252029575e-06, 3.4501562140576425e-07, 8.423288650784289e-13, 5.145695869401834e-09, 6.452323675354421e-10, 7.16515887688729e-06, 6.280963249505334e-11, 7.640171273415319e-10, 2.1246407003026658e-17, 9.16567863273876e-12, 8.274221841020335e-07], [2.7493076686369022e-06, 1.8580670335666127e-10, 1.882517579321341e-13, 2.243782865738353e-15, 6.986352474314117e-08, 4.303599052946083e-05, 0.9999357461929321, 4.1961752117458673e-07, 2.942402375083475e-07, 1.0748682929232357e-14, 1.5688508825384417e-10, 1.3269807995486271e-11, 1.7492995539214462e-05, 2.1786518769606467e-11, 4.698412839343469e-11, 4.112174493538993e-16, 1.5529019492532825e-07], [4.078242909599794e-06, 1.933378825924592e-06, 6.320247103452914e-10, 5.203431435729655e-12, 2.1631099689223277e-12, 7.036914212221745e-06, 1.1218482995900558e-06, 0.9999752044677734, 3.639065425886656e-06, 7.904996834895428e-08, 7.41652290796313e-14, 1.1459111437517322e-11, 8.143126743655887e-14, 6.935750207048841e-06, 1.5403914810363517e-09, 2.038664126402523e-09, 8.71764616050541e-09], [7.028005399867254e-10, 4.086907756661873e-10, 1.7250632922127807e-08, 1.510709612961847e-11, 6.217687497679647e-13, 1.464352077096276e-12, 3.879752907831602e-10, 9.394932054540561e-11, 0.9999988079071045, 5.949788217662899e-09, 9.810900110096554e-07, 7.086811267486247e-15, 1.127974103010132e-11, 2.1579797410825607e-13, 1.9030092346383753e-07, 2.293156775579064e-09, 3.422476169134825e-08], [1.6282207582207775e-08, 9.115616247945546e-13, 6.941469621324359e-08, 2.763637541036701e-09, 8.397523565406573e-09, 1.0101102176918175e-08, 6.941353047906773e-11, 3.473083864946602e-08, 1.4675974853162188e-05, 0.9999316930770874, 3.538841338013299e-05, 1.129019983636681e-05, 6.936372483334896e-12, 3.894240041546482e-09, 3.4377758417747373e-09, 2.160154735975084e-06, 4.760825959237991e-06], [4.0267839063190536e-10, 1.3986967178341984e-15, 1.5312848645337995e-12, 4.992599111908191e-10, 1.6782796308234538e-07, 1.0176338660627948e-09, 2.7233384991554033e-10, 9.725221489394458e-16, 4.564419242569784e-08, 1.8116935507350718e-06, 0.9999886751174927, 5.734261321777012e-06, 1.3120753692419385e-06, 1.9683352983548147e-13, 6.557426823761148e-11, 7.3377606213398394e-09, 2.3692705326539e-06], [4.6687715915538774e-09, 3.792127117825455e-15, 3.470832975788008e-17, 8.33078235302348e-13, 2.6835350608322983e-10, 1.9125094695482403e-05, 1.3589426459126308e-11, 9.369146083959556e-12, 1.375414349682799e-16, 6.387975872712559e-07, 6.562628414030769e-07, 0.9999765157699585, 6.994931567305684e-08, 2.9792402074235724e-06, 1.2323503525426497e-14, 6.928866369548814e-09, 4.5043606178296614e-08], [1.874120840739124e-07, 3.700832975034145e-14, 1.5984250750935127e-15, 1.580662431057301e-18, 4.0821443447747185e-10, 1.4310050922006212e-08, 6.1918758547108155e-06, 7.932949002559253e-13, 8.44323135712477e-12, 5.0202704271256823e-14, 1.2660659365337779e-07, 1.157627366410452e-06, 0.9999903440475464, 6.553959508437401e-08, 2.0235148667779868e-07, 2.1851372707798467e-12, 1.6052425735324505e-06], [1.1972208824317931e-07, 6.702364174770992e-08, 1.1828708170496713e-15, 8.760389552583134e-16, 1.9079109425715245e-17, 1.2525719128575474e-08, 7.099781700048435e-12, 4.288378079309041e-07, 1.6156422987662067e-12, 1.5647616882774606e-11, 1.0657479673076287e-12, 6.020854925736785e-08, 1.1575987457490555e-07, 0.9999947547912598, 1.1473142649265355e-06, 3.2776865737105254e-06, 2.052152003884089e-09], [2.0197714434289082e-07, 8.154537600724154e-10, 1.5709016452092328e-06, 7.634437549643939e-15, 2.529318117797108e-12, 1.1696261906050942e-13, 5.896984983655429e-11, 9.20934786763361e-11, 2.027341224675183e-06, 3.832875961062854e-10, 3.316274477249692e-10, 1.0899666585961754e-12, 1.2303078733566508e-07, 1.2645024582980113e-07, 0.9999887943267822, 3.667383907668409e-06, 3.4978506846528035e-06], [0.09275253862142563, 0.004834398627281189, 0.00046307742013596, 0.004604238085448742, 2.577100349299144e-05, 0.003332179971039295, 3.9579785493515374e-07, 1.710215292405337e-05, 0.00010590515012154356, 0.0026203440502285957, 0.0002859305532183498, 0.00018551159882918, 9.731306818139274e-06, 0.0018767768051475286, 0.00016039890761021525, 0.2481573522090912, 0.6405683159828186]], [[0.13763052225112915, 0.007572317495942116, 0.016649125143885612, 0.008278465829789639, 0.030555186793208122, 0.10296937823295593, 0.004919982049614191, 0.009661286137998104, 0.005062412470579147, 0.0040313368663191795, 0.016407839953899384, 0.010894299484789371, 0.01038382574915886, 0.0070262388326227665, 0.006180705036967993, 0.02320224419236183, 0.5985748171806335], [0.22497038543224335, 0.03580440953373909, 0.003987085074186325, 0.0047554862685501575, 0.0705980658531189, 0.11080984026193619, 0.0011137882247567177, 0.0047094691544771194, 0.006064513698220253, 0.003744531888514757, 0.008429368957877159, 0.0031924783252179623, 0.0063768420368433, 0.0020387694239616394, 0.0017989110201597214, 0.02689111977815628, 0.4847148358821869], [0.15108419954776764, 0.0011099480325356126, 0.08305899798870087, 0.0005931833293288946, 0.010300183668732643, 0.08027634024620056, 0.0033633215352892876, 0.013877559453248978, 0.0038185552693903446, 0.00049152149586007, 0.010462462902069092, 0.17373506724834442, 0.056185174733400345, 0.002660918515175581, 0.0021406635642051697, 0.006956109311431646, 0.39988571405410767], [0.16150370240211487, 0.0009789166506379843, 0.0026734669227153063, 0.04689320921897888, 0.007552271243184805, 0.054632898420095444, 0.0005238503799773753, 0.001564919832162559, 0.0006913276156410575, 0.0006988522945903242, 0.0009983315831050277, 0.00323137897066772, 0.002068557543680072, 0.0008421640377491713, 0.0006567593081854284, 0.004948467016220093, 0.7095409631729126], [0.10986747592687607, 0.006182527169585228, 0.009748488664627075, 0.0028291840571910143, 0.007059688214212656, 0.0745735615491867, 0.00233279075473547, 0.008508664555847645, 0.0030956726986914873, 0.003168534254655242, 0.0134673360735178, 0.010096140205860138, 0.010986280627548695, 0.013098658993840218, 0.00808791071176529, 0.03073761984705925, 0.6861594915390015], [0.09853404015302658, 0.0031159978825598955, 0.014662024565041065, 0.0025359871797263622, 0.015874305739998817, 0.045081399381160736, 0.002591719152405858, 0.005651059094816446, 0.0038917819038033485, 0.00278765382245183, 0.012989486567676067, 0.007090213242918253, 0.007797516882419586, 0.008492836728692055, 0.011207493022084236, 0.02874520979821682, 0.7289513945579529], [0.11336351931095123, 0.0049814339727163315, 0.21393267810344696, 0.004121432546526194, 0.009572969749569893, 0.03079412877559662, 0.1463482826948166, 0.029080789536237717, 0.007713729981333017, 0.00943335797637701, 0.005222646985203028, 0.03174322843551636, 0.009563341736793518, 0.007108371239155531, 0.0021600457839667797, 0.02614147961139679, 0.34871864318847656], [0.12163097411394119, 0.000847412389703095, 0.03780816122889519, 0.0005983181181363761, 0.006553827319294214, 0.0482696034014225, 0.0007861428312025964, 0.07192595303058624, 0.00217697536572814, 0.0003747402806766331, 0.004532965831458569, 0.00905547197908163, 0.0016444313805550337, 0.0007130971644073725, 0.0013381772441789508, 0.006923255044966936, 0.6848204731941223], [0.22496411204338074, 0.0011877515353262424, 0.021023696288466454, 0.0010653126519173384, 0.02414265275001526, 0.12493263185024261, 0.001441512955352664, 0.012102673761546612, 0.08884521573781967, 0.0006567558157257736, 0.0013338032877072692, 0.011166869662702084, 0.002269543707370758, 0.0033255957532674074, 0.0011025018757209182, 0.02107318677008152, 0.45936617255210876], [0.11649944633245468, 0.0018366252770647407, 0.017341207712888718, 0.0010311915539205074, 0.013609816320240498, 0.05885561183094978, 0.0005708072567358613, 0.0015892680967226624, 0.001056441804394126, 0.00738106295466423, 0.0023633865639567375, 0.001121358829550445, 0.0021188128739595413, 0.0001426306553184986, 0.0008664557244628668, 0.0040740882977843285, 0.7695419192314148], [0.11493964493274689, 0.005411341320723295, 0.06623759120702744, 0.0022394589614123106, 0.01466272957623005, 0.06895043700933456, 0.0017395541071891785, 0.01458507589995861, 0.001418479485437274, 0.0024851299822330475, 0.05754125118255615, 0.006009282544255257, 0.0049582491628825665, 0.00277943373657763, 0.0005647583748213947, 0.012004578486084938, 0.623473048210144], [0.1113549992442131, 0.0027054387610405684, 0.4861602187156677, 0.0019873392302542925, 0.015011206269264221, 0.05057552084326744, 0.0026055057533085346, 0.009277787059545517, 0.0049048978835344315, 0.0001828365057008341, 0.0013527561677619815, 0.01770874671638012, 0.006420329213142395, 0.0005418114014901221, 0.0010065344395115972, 0.00352996913716197, 0.2846740484237671], [0.1854722648859024, 0.0027257832698524, 0.07094608247280121, 0.001731681521050632, 0.018302051350474358, 0.09128833562135696, 0.0009532677358947694, 0.007366788573563099, 0.0016476496821269393, 0.0015548844821751118, 0.002096497220918536, 0.01239044964313507, 0.08528250455856323, 0.0010701545979827642, 0.00040108757093548775, 0.009905612096190453, 0.5068649053573608], [0.15412895381450653, 0.005434836260974407, 0.05628025159239769, 0.0028638383373618126, 0.06804084777832031, 0.08943527936935425, 0.004741191398352385, 0.004973946139216423, 0.009781254455447197, 0.00023606365721207112, 0.0034214621409773827, 0.00601264089345932, 0.0051378835923969746, 0.02724187821149826, 0.001495588687248528, 0.007468183524906635, 0.5533059239387512], [0.1739373356103897, 0.00033546052873134613, 0.006017968058586121, 0.00015786227595526725, 0.025278881192207336, 0.15595002472400665, 0.00021869673219043761, 0.0055181728675961494, 0.000826958566904068, 0.0003202088992111385, 0.00031640773522667587, 0.0029168380424380302, 0.0008733273716643453, 0.0006112415576353669, 0.11665266752243042, 0.0029651024378836155, 0.5071028470993042], [0.1311100721359253, 0.0071663446724414825, 0.03119106963276863, 0.004881325643509626, 0.06475961953401566, 0.17936839163303375, 0.022717654705047607, 0.01664813980460167, 0.017625225707888603, 0.0053651281632483006, 0.015299837104976177, 0.015848694369196892, 0.012689412571489811, 0.0041625346057116985, 0.003924640826880932, 0.006975253112614155, 0.460266649723053], [0.10411977767944336, 0.004893835633993149, 0.01928696222603321, 0.007287063170224428, 0.01790488325059414, 0.08340548723936081, 0.005900765303522348, 0.013897480443120003, 0.0038945996202528477, 0.001985312905162573, 0.009835893288254738, 0.011304153129458427, 0.006267855409532785, 0.00953003391623497, 0.0027670084964483976, 0.015951750800013542, 0.6817671060562134]], [[0.028214657679200172, 0.0008986772154457867, 0.0015550305834040046, 0.0006471064989455044, 0.006590086501091719, 0.16408506035804749, 0.019629668444395065, 0.0176602303981781, 0.009533214382827282, 0.009555979631841183, 0.014075727201998234, 0.015343546867370605, 0.01090764719992876, 0.021302491426467896, 0.03514471277594566, 0.13812163472175598, 0.5067346692085266], [0.4968920946121216, 0.05146392434835434, 0.004745760932564735, 0.006054847966879606, 0.009188937023282051, 0.01019908394664526, 0.0014743113424628973, 0.0009438058477826416, 7.110349542926997e-05, 0.0005582603625953197, 0.0002822958049364388, 0.001058763824403286, 0.0017726916121318936, 0.0020391475409269333, 0.0005800708895549178, 0.002844355534762144, 0.40983065962791443], [0.3475150465965271, 0.1989550143480301, 0.07333297282457352, 0.0088140107691288, 0.013097884133458138, 0.01693931594491005, 0.004582794848829508, 0.004148425534367561, 0.000851640070322901, 0.0003247719432692975, 0.00023248618526849896, 0.0005634786793962121, 0.0035301519092172384, 0.00587855838239193, 0.006908917799592018, 0.005049309693276882, 0.3092752993106842], [0.16375824809074402, 0.5894628167152405, 0.09199006110429764, 0.03273487836122513, 0.015130256302654743, 0.012768796645104885, 0.0025233053602278233, 0.0020583190489560366, 0.0004928721464239061, 0.00026156939566135406, 8.964384323917329e-05, 0.00012800599506590515, 0.00026141738635487854, 0.001384373172186315, 0.0010079432977363467, 0.009180697612464428, 0.07676666229963303], [0.06604939699172974, 0.18277552723884583, 0.3349970877170563, 0.17709754407405853, 0.0952327698469162, 0.022693077102303505, 0.014935262501239777, 0.0058683911338448524, 0.004095572512596846, 0.0031132774893194437, 0.0007079059723764658, 0.00045736669562757015, 0.0006031758384779096, 0.001022925367578864, 0.004349520895630121, 0.009931652806699276, 0.07606948912143707], [0.24602597951889038, 0.07212148606777191, 0.05699734762310982, 0.1098979115486145, 0.1526789367198944, 0.04816979914903641, 0.008930238895118237, 0.006473397370427847, 0.002403074176982045, 0.00875258818268776, 0.0037340864073485136, 0.0019691342022269964, 0.0007250038906931877, 0.0014923375565558672, 0.0010206029983237386, 0.012380862608551979, 0.26622727513313293], [0.08273191750049591, 0.02608814835548401, 0.019806325435638428, 0.05160323157906532, 0.14028999209403992, 0.20487089455127716, 0.11842766404151917, 0.013516378588974476, 0.004223806317895651, 0.005427404306828976, 0.0033876453526318073, 0.0011074127396568656, 0.0004935142351314425, 0.0002968164917547256, 7.337515853578225e-05, 0.0010340680601075292, 0.3266213536262512], [0.12383589893579483, 0.020913466811180115, 0.003915793262422085, 0.010354917496442795, 0.07686785608530045, 0.17840483784675598, 0.21078743040561676, 0.05127686634659767, 0.003973463550209999, 0.0062005906365811825, 0.0031335277017205954, 0.002155614783987403, 0.0005178166902624071, 0.0006403473089449108, 0.00015577998419757932, 0.000655322743114084, 0.3062104880809784], [0.12844163179397583, 0.013631170615553856, 0.004675520118325949, 0.0018074485706165433, 0.0440385676920414, 0.09455625712871552, 0.381856232881546, 0.10422685742378235, 0.020203785970807076, 0.0008969523478299379, 0.00186163280159235, 0.0011100092669948936, 0.0021618036553263664, 0.0013099446659907699, 0.0004970415029674768, 0.0005231637042015791, 0.1982019990682602], [0.07052488625049591, 0.0017884859116747975, 0.004743223078548908, 0.0005956533132120967, 0.004985527601093054, 0.016974888741970062, 0.05576411262154579, 0.19255679845809937, 0.4830165207386017, 0.0075475899502635, 0.0016723675653338432, 0.003986912313848734, 0.002173313172534108, 0.003291000612080097, 0.0006580714252777398, 0.002437828341498971, 0.1472829133272171], [0.012257306836545467, 0.0028029948007315397, 0.0015825039008632302, 0.0006848534685559571, 0.003622622461989522, 0.007200097199529409, 0.02353123389184475, 0.05394398048520088, 0.8082890510559082, 0.05632277950644493, 0.002804321004077792, 0.0013347718631848693, 0.0017516805091872811, 0.0016977189807221293, 0.0015476943226531148, 0.002140119206160307, 0.018486205488443375], [0.07829231023788452, 0.0021301498636603355, 0.0024174342397600412, 0.0018065929180011153, 0.012934479862451553, 0.020255072042346, 0.023318028077483177, 0.04233315959572792, 0.11242156475782394, 0.2675459086894989, 0.08675818890333176, 0.016394004225730896, 0.003913545981049538, 0.004867923445999622, 0.005823314189910889, 0.02710275910794735, 0.2916855812072754], [0.0552537627518177, 0.0008670839597471058, 0.0011666599893942475, 0.0013520083157345653, 0.018034953624010086, 0.014893854036927223, 0.01893479749560356, 0.014931485056877136, 0.07560958713293076, 0.22347787022590637, 0.2720243036746979, 0.08526115864515305, 0.021072398871183395, 0.00893709622323513, 0.010497502982616425, 0.014327913522720337, 0.16335752606391907], [0.15344823896884918, 0.005464513320475817, 0.0010931757278740406, 0.0021367406006902456, 0.021225128322839737, 0.030549077317118645, 0.01925441436469555, 0.018743198364973068, 0.007007366046309471, 0.06137066334486008, 0.1194571927189827, 0.11435966938734055, 0.09744155406951904, 0.03626547008752823, 0.008244575001299381, 0.04082239046692848, 0.2631165385246277], [0.053071800619363785, 0.0018474451499059796, 0.0005350155988708138, 0.00014095031656324863, 0.003656384302303195, 0.012223911471664906, 0.034121349453926086, 0.018045898526906967, 0.007290930952876806, 0.012134872376918793, 0.034552350640296936, 0.12261524796485901, 0.4081684648990631, 0.07287625223398209, 0.040436260402202606, 0.025425229221582413, 0.15285757184028625], [0.04589550942182541, 0.012570375576615334, 0.0009638631599955261, 0.0006410925998352468, 0.00154017040040344, 0.027073143050074577, 0.027848219498991966, 0.050842706114053726, 0.01004045270383358, 0.042642805725336075, 0.03746800869703293, 0.049240633845329285, 0.06566610187292099, 0.249130517244339, 0.13449914753437042, 0.122127965092659, 0.12180925160646439], [0.21691486239433289, 0.014914077706634998, 0.012347077950835228, 0.004796546418219805, 0.027825118973851204, 0.033973801881074905, 0.012733775191009045, 0.011926327832043171, 0.006089358124881983, 0.007595418486744165, 0.009748956188559532, 0.005397309083491564, 0.009605955332517624, 0.01444400567561388, 0.021094143390655518, 0.06401216238737106, 0.5265811085700989]]], [[[0.08160451799631119, 0.027167238295078278, 0.006886980030685663, 0.01584520936012268, 0.08098098635673523, 0.277580589056015, 0.01581108756363392, 0.022522710263729095, 0.008201264776289463, 0.014734989032149315, 0.0650356262922287, 0.04130808636546135, 0.034031230956315994, 0.029562899842858315, 0.006771223619580269, 0.04636002331972122, 0.22559529542922974], [0.17287683486938477, 0.008083498105406761, 0.006693926174193621, 0.006558581721037626, 0.06801297515630722, 0.15216363966464996, 0.020299101248383522, 0.01107417419552803, 0.008347035385668278, 0.006906269583851099, 0.024381592869758606, 0.005125592928379774, 0.004473609384149313, 0.0034364310558885336, 0.0013307137414813042, 0.07222045212984085, 0.4280155897140503], [0.12697799503803253, 0.019675305113196373, 0.0037674210034310818, 0.004345811437815428, 0.12943845987319946, 0.2448875457048416, 0.04636439308524132, 0.009546583518385887, 0.004095960408449173, 0.0027780146338045597, 0.012811007909476757, 0.0023416096810251474, 0.002000428969040513, 0.0026179540436714888, 0.0009515897836536169, 0.05696214362978935, 0.3304377496242523], [0.15109992027282715, 0.011197131127119064, 0.0016271850327029824, 0.0003822293656412512, 0.09615066647529602, 0.2119845449924469, 0.01078126486390829, 0.004613995086401701, 0.001371385413222015, 0.001614091102965176, 0.01654661074280739, 0.0007718046545051038, 0.0005335496971383691, 0.0016316930996254086, 0.0008384458487853408, 0.060554202646017075, 0.42830121517181396], [0.13788384199142456, 0.024541305378079414, 0.010552840307354927, 0.010156811214983463, 0.06758833676576614, 0.17561261355876923, 0.026284119114279747, 0.028996746987104416, 0.013003634288907051, 0.01596333645284176, 0.032668787986040115, 0.007233962416648865, 0.004456330090761185, 0.009902480989694595, 0.0049859220162034035, 0.06752992421388626, 0.3626389801502228], [0.13917365670204163, 0.05241597071290016, 0.02317851036787033, 0.02338356152176857, 0.05256560817360878, 0.11364717036485672, 0.009810466319322586, 0.01711958274245262, 0.007021800149232149, 0.010078697465360165, 0.0092193353921175, 0.008170953020453453, 0.010123670101165771, 0.0260117519646883, 0.014050462283194065, 0.05345919728279114, 0.430569589138031], [0.1762567162513733, 0.03489912301301956, 0.02186506986618042, 0.002574518322944641, 0.04582929611206055, 0.11110574007034302, 0.008901623077690601, 0.02540232427418232, 0.009060499258339405, 0.004714100155979395, 0.07273783534765244, 0.006364718545228243, 0.0049118963070213795, 0.0031520791817456484, 0.0017193255480378866, 0.06869576871395111, 0.401809424161911], [0.17051836848258972, 0.03870256617665291, 0.019225705415010452, 0.0067921848967671394, 0.0777050256729126, 0.11978907138109207, 0.024264158681035042, 0.010044937022030354, 0.005949948914349079, 0.005481702741235495, 0.029858876019716263, 0.006540538277477026, 0.009561792947351933, 0.005466898903250694, 0.0031000031158328056, 0.06550640612840652, 0.4014919400215149], [0.18187013268470764, 0.038015540689229965, 0.017346354201436043, 0.003034706227481365, 0.07108375430107117, 0.10829772055149078, 0.012520602904260159, 0.012044784612953663, 0.0010456070303916931, 0.000535442668478936, 0.020510852336883545, 0.006249374710023403, 0.007017594762146473, 0.005130692385137081, 0.003929018508642912, 0.046767707914114, 0.46460017561912537], [0.1573820561170578, 0.015220342203974724, 0.0021379292011260986, 0.0010035032173618674, 0.06373579055070877, 0.17780788242816925, 0.00421278178691864, 0.0022495677694678307, 0.0009856580290943384, 0.0004595803620759398, 0.08503357321023941, 0.0006738165975548327, 0.0006530536920763552, 0.002093341201543808, 0.0013139387592673302, 0.058630961924791336, 0.4264061450958252], [0.13391946256160736, 0.02822543866932392, 0.013635724782943726, 0.0038954231422394514, 0.07807137072086334, 0.10662388801574707, 0.018939699977636337, 0.02319231629371643, 0.007130139507353306, 0.003820492187514901, 0.013910424895584583, 0.006304525304585695, 0.009599646553397179, 0.005657306406646967, 0.002003297908231616, 0.08878716826438904, 0.45628365874290466], [0.1671447604894638, 0.05139445140957832, 0.009782985784113407, 0.008655685000121593, 0.08698267489671707, 0.14167232811450958, 0.042627543210983276, 0.01478166226297617, 0.006785861682146788, 0.007109350059181452, 0.03257511556148529, 0.005185112822800875, 0.0059072296135127544, 0.007268248591572046, 0.00518819922581315, 0.08040303736925125, 0.32653576135635376], [0.16914457082748413, 0.008814066648483276, 0.004489385988563299, 0.00772363506257534, 0.05305252969264984, 0.07171795517206192, 0.022095229476690292, 0.0034626207780092955, 0.003009939566254616, 0.004285998642444611, 0.03754211217164993, 0.001047702506184578, 0.0013688236940652132, 0.00245563848875463, 0.0027024198789149523, 0.08072718977928162, 0.5263602137565613], [0.23145148158073425, 0.01564369723200798, 0.0033844986464828253, 0.001474945805966854, 0.03614882007241249, 0.0936964675784111, 0.005887588951736689, 0.0033029234036803246, 0.0033298141788691282, 0.003280257573351264, 0.019159236922860146, 0.0009293464245274663, 0.0006429237546399236, 0.00034239416709169745, 0.0003876069386024028, 0.07169891893863678, 0.509239137172699], [0.23146341741085052, 0.007708603050559759, 0.0036388684529811144, 0.005625357385724783, 0.03841663897037506, 0.08096864819526672, 0.01675804890692234, 0.005546223372220993, 0.008167914114892483, 0.012462764978408813, 0.02834966778755188, 0.001187946298159659, 0.001157762948423624, 0.0009419128182344139, 0.0016154720215126872, 0.06498055905103683, 0.49101027846336365], [0.16145390272140503, 0.0368964821100235, 0.01069081574678421, 0.013581497594714165, 0.036455187946558, 0.08697096258401871, 0.021759459748864174, 0.020883668214082718, 0.016748327761888504, 0.021490702405571938, 0.03063148818910122, 0.00906380545347929, 0.006845396477729082, 0.012087874114513397, 0.00823818426579237, 0.09755873680114746, 0.408643513917923], [0.1253957599401474, 0.029741307720541954, 0.012921594083309174, 0.015122723765671253, 0.04917050898075104, 0.0853247344493866, 0.007526932284235954, 0.011753919534385204, 0.004762591794133186, 0.011169699020683765, 0.009210157208144665, 0.003562658093869686, 0.005605932790786028, 0.010656685568392277, 0.005324559286236763, 0.06872735172510147, 0.5440228581428528]], [[0.13577374815940857, 0.028784222900867462, 0.012634030543267727, 0.032260697335004807, 0.04116920754313469, 0.08793489634990692, 0.02791338972747326, 0.020268697291612625, 0.008979814127087593, 0.020531998947262764, 0.013597634620964527, 0.008565119467675686, 0.007891197688877583, 0.024038149043917656, 0.01303768903017044, 0.04158354550600052, 0.4750358760356903], [0.18827024102210999, 0.007204159628599882, 0.003655149368569255, 0.0023171762004494667, 0.046662479639053345, 0.042796507477760315, 0.01019686833024025, 0.005894348956644535, 0.0026227314956486225, 0.0019320403225719929, 0.005888806190341711, 0.0030798588413745165, 0.0030365868005901575, 0.003973373211920261, 0.0008502205600962043, 0.06076200678944588, 0.6108574867248535], [0.20796425640583038, 0.016968844458460808, 0.002080311765894294, 0.01656845025718212, 0.009906280785799026, 0.1989184021949768, 0.004441648256033659, 0.019082380458712578, 0.003536461153998971, 0.014871407300233841, 0.014614363200962543, 0.0020339691545814276, 0.011830729432404041, 0.006761317607015371, 0.004012899473309517, 0.018631761893630028, 0.44777658581733704], [0.2451520562171936, 0.019983887672424316, 0.002556728897616267, 0.0034105880185961723, 0.016219303011894226, 0.13347434997558594, 0.0021705981343984604, 0.012039003893733025, 0.0019097912590950727, 0.005164721980690956, 0.006082254461944103, 0.0017375379102304578, 0.0023957667872309685, 0.00420505041256547, 0.0056061940267682076, 0.05065755173563957, 0.4872346520423889], [0.13660135865211487, 0.01524487603455782, 0.003344000084325671, 0.007245185784995556, 0.011168653145432472, 0.40746867656707764, 0.016182858496904373, 0.008451975882053375, 0.0026789389085024595, 0.006711954716593027, 0.011733746156096458, 0.0014373308513313532, 0.00492981169372797, 0.00439037661999464, 0.003719322383403778, 0.016799934208393097, 0.3418910503387451], [0.1631002277135849, 0.021083034574985504, 0.011012019589543343, 0.03015783615410328, 0.045238662511110306, 0.09035483747720718, 0.02363581582903862, 0.021684322506189346, 0.005785117391496897, 0.004378294572234154, 0.006974624004215002, 0.00541642215102911, 0.006318151485174894, 0.011678659357130527, 0.010645944625139236, 0.03971417248249054, 0.5028218030929565], [0.2831036448478699, 0.04182348772883415, 0.008554529398679733, 0.0094545753672719, 0.013751032762229443, 0.2411005049943924, 0.004317174199968576, 0.015562339685857296, 0.008029457181692123, 0.019065286964178085, 0.02396179549396038, 0.004745795391499996, 0.0035026217810809612, 0.007516284007579088, 0.003529589856043458, 0.01684732548892498, 0.2951345145702362], [0.23892563581466675, 0.03774697333574295, 0.007117143366485834, 0.006668664515018463, 0.028130270540714264, 0.20393404364585876, 0.007938802242279053, 0.004256334155797958, 0.0034616657067090273, 0.0035443990491330624, 0.012680464424192905, 0.0036998616997152567, 0.003191940486431122, 0.005682331044226885, 0.0013225285802036524, 0.026364902034401894, 0.40533414483070374], [0.27752262353897095, 0.02268439158797264, 0.0063851927407085896, 0.006186510436236858, 0.026518914848566055, 0.15134377777576447, 0.006788697559386492, 0.023910075426101685, 0.003997203893959522, 0.006983404513448477, 0.011588316410779953, 0.007346972823143005, 0.007243892643600702, 0.008158594369888306, 0.011044250801205635, 0.03720355033874512, 0.38509368896484375], [0.3695243299007416, 0.019298609346151352, 0.005323898512870073, 0.0027493273373693228, 0.01821381039917469, 0.1794058233499527, 0.012689649127423763, 0.012557690031826496, 0.0015549566596746445, 0.0002012012992054224, 0.004218884743750095, 0.00424842769280076, 0.000870455929543823, 0.0029968656599521637, 0.004273752216249704, 0.016086654737591743, 0.3457856774330139], [0.15329504013061523, 0.03774529695510864, 0.04220779240131378, 0.016385728493332863, 0.06231601536273956, 0.0717749297618866, 0.032468412071466446, 0.0324062779545784, 0.014551852829754353, 0.008219202049076557, 0.009107944555580616, 0.03703921660780907, 0.02317611686885357, 0.023908156901597977, 0.004698865115642548, 0.038110069930553436, 0.3925889730453491], [0.20523715019226074, 0.022009387612342834, 0.0065259444527328014, 0.010678287595510483, 0.03348613157868385, 0.1416512131690979, 0.00870787538588047, 0.024504438042640686, 0.01054700743407011, 0.015423188917338848, 0.019751030951738358, 0.0048771812580525875, 0.008102616295218468, 0.017233816906809807, 0.004669356159865856, 0.03213828057050705, 0.434457004070282], [0.2759474813938141, 0.016453629359602928, 0.007052114699035883, 0.000747822632547468, 0.026931237429380417, 0.12439023703336716, 0.008402240462601185, 0.010345488786697388, 0.006042276043444872, 0.0008523249998688698, 0.007036921568214893, 0.004869435913860798, 0.0008334210142493248, 0.005886673461645842, 0.0012594570871442556, 0.010062674060463905, 0.49288657307624817], [0.1965048909187317, 0.024573717266321182, 0.0041720750741660595, 0.004390877205878496, 0.013558638282120228, 0.09939491748809814, 0.004685308784246445, 0.01785528101027012, 0.0031759897246956825, 0.006338763050734997, 0.009679213166236877, 0.0037391625810414553, 0.004816216882318258, 0.009600065648555756, 0.003951509017497301, 0.029611356556415558, 0.5639520287513733], [0.22048960626125336, 0.020032936707139015, 0.005158195272088051, 0.076572947204113, 0.03839092329144478, 0.09330108761787415, 0.001196152763441205, 0.010546678677201271, 0.0010759083088487387, 0.004783454351127148, 0.004462724085897207, 0.0026215717662125826, 0.005323299206793308, 0.0048370142467319965, 0.005862893536686897, 0.1031879335641861, 0.40215668082237244], [0.10497988015413284, 0.014574946835637093, 0.002866654423996806, 0.003546136897057295, 0.009785158559679985, 0.46176350116729736, 0.018286501988768578, 0.00862723309546709, 0.0032440046779811382, 0.0066124191507697105, 0.016497408971190453, 0.0013459527399390936, 0.003754409495741129, 0.005957864224910736, 0.005769542418420315, 0.02206750586628914, 0.31032097339630127], [0.12692119181156158, 0.01932610385119915, 0.0075715212151408195, 0.01276752445846796, 0.0355326384305954, 0.04251094162464142, 0.017877180129289627, 0.01967526227235794, 0.00507954740896821, 0.007901064120233059, 0.007660961709916592, 0.005255930591374636, 0.005401696544140577, 0.011656402610242367, 0.0063666850328445435, 0.04898091405630112, 0.6195144057273865]], [[0.18510006368160248, 0.028047310188412666, 0.011318385601043701, 0.041346967220306396, 0.033425990492105484, 0.07483459264039993, 0.02735750377178192, 0.02001512050628662, 0.010818572714924812, 0.030811170116066933, 0.011573580093681812, 0.011571545153856277, 0.017799455672502518, 0.0337299220263958, 0.04701394960284233, 0.07136552780866623, 0.3438703417778015], [0.10916256904602051, 0.005444556474685669, 0.020143402740359306, 0.03381569683551788, 0.30326521396636963, 0.08323108404874802, 0.003739119041711092, 0.005778277292847633, 0.003954846877604723, 0.008911704644560814, 0.007114251609891653, 0.003843554062768817, 0.00129918463062495, 0.001685595721937716, 0.006208016537129879, 0.05001534894108772, 0.3523876368999481], [0.15895873308181763, 0.01368572935461998, 0.00928550399839878, 0.0048832050524652, 0.270776629447937, 0.13677679002285004, 0.004452337510883808, 0.006501403171569109, 0.002414404647424817, 0.0012832983629778028, 0.007234205957502127, 0.003006130689755082, 0.000973614864051342, 0.0019785554613918066, 0.0018933129031211138, 0.062454551458358765, 0.31344160437583923], [0.2520061135292053, 0.006015639286488295, 0.0023353099822998047, 0.0008085626177489758, 0.11360527575016022, 0.22784893214702606, 0.0022431763354688883, 0.0025920842308551073, 0.0005798409110866487, 0.00045100925490260124, 0.002211319049820304, 0.0008454452035948634, 0.0001418885512975976, 0.0009076541755348444, 0.0018338852096349, 0.025924166664481163, 0.3596496880054474], [0.17943075299263, 0.023417813703417778, 0.007483496330678463, 0.006371283438056707, 0.2610548734664917, 0.11937735229730606, 0.003920632414519787, 0.0027685898821800947, 0.0028295973315835, 0.0016860523028299212, 0.005146957468241453, 0.0017105666920542717, 0.0005199717707000673, 0.0027277772314846516, 0.0014391591539606452, 0.040470872074365616, 0.3396441638469696], [0.10649851709604263, 0.08435490727424622, 0.014661855064332485, 0.0817885473370552, 0.07369869202375412, 0.09933659434318542, 0.03352712467312813, 0.03248659893870354, 0.011187570169568062, 0.026003366336226463, 0.005065356381237507, 0.005361009854823351, 0.0042399452067911625, 0.010904123075306416, 0.03854146599769592, 0.047152433544397354, 0.3251919448375702], [0.18747511506080627, 0.015196160413324833, 0.002263955771923065, 0.0009654897730797529, 0.1409592479467392, 0.11003980040550232, 0.0008416185737587512, 0.0007823936175554991, 0.0017727634403854609, 0.00030709325801581144, 0.0022375681437551975, 0.0005926452577114105, 0.00010164664126932621, 0.000819593551568687, 0.00042151496745646, 0.1133035272359848, 0.4219198226928711], [0.23167747259140015, 0.004495210479944944, 0.0010843658819794655, 0.0015347213484346867, 0.14012806117534637, 0.11472716182470322, 0.0033126515336334705, 0.001849384163506329, 0.0008622222812846303, 0.0007402458577416837, 0.005942551884800196, 0.000988268875516951, 0.000517013540957123, 0.0007112601306289434, 0.0008592519443482161, 0.10231778025627136, 0.388252317905426], [0.14588753879070282, 0.021604551002383232, 0.001370208221487701, 0.0019006310030817986, 0.09475292265415192, 0.11054553091526031, 0.0018326268764212728, 0.006047888193279505, 0.0014095730148255825, 0.0008133035153150558, 0.0020830132998526096, 0.0010438866447657347, 0.00042578409193083644, 0.0013820602325722575, 0.0009071282693184912, 0.08313039690256119, 0.5248629450798035], [0.2099575400352478, 0.010050992481410503, 0.0011682353215292096, 0.00048494190559722483, 0.0420072078704834, 0.13314877450466156, 0.0018132554832845926, 0.0028552315197885036, 0.0028044183272868395, 0.00025096640456467867, 0.0019902829080820084, 0.0010031890124082565, 0.00019200568203814328, 0.0017504055285826325, 0.0006600913475267589, 0.06652123481035233, 0.5233411192893982], [0.15997357666492462, 0.029641635715961456, 0.00519922561943531, 0.0023049400188028812, 0.11348272114992142, 0.12029996514320374, 0.002850268268957734, 0.006954158656299114, 0.006899508647620678, 0.002325245412066579, 0.004731555003672838, 0.005206884816288948, 0.000857455946970731, 0.011242949403822422, 0.00861708726733923, 0.13798010349273682, 0.38143280148506165], [0.19269733130931854, 0.009199021384119987, 0.0021950751543045044, 0.0011497971136122942, 0.10293605923652649, 0.11684329807758331, 0.0017247366486117244, 0.005971055943518877, 0.0036919917911291122, 0.0018614502623677254, 0.0046928939409554005, 0.00410838145762682, 0.0014450341695919633, 0.0033506841864436865, 0.003075492335483432, 0.17745737731456757, 0.36760029196739197], [0.23719598352909088, 0.014561244286596775, 0.0023136716336011887, 0.0013936866307631135, 0.09272310882806778, 0.12569716572761536, 0.0011346108512952924, 0.005264774896204472, 0.007129220757633448, 0.001253336202353239, 0.0021349939052015543, 0.0030145877972245216, 0.0009374453802593052, 0.005776932463049889, 0.0028245500288903713, 0.08317366987466812, 0.4134710729122162], [0.2517361640930176, 0.008821425028145313, 0.002324651228263974, 0.002433807821944356, 0.0646316260099411, 0.09483776241540909, 0.0017662419704720378, 0.007332377135753632, 0.009443261660635471, 0.0014408623101189733, 0.004058958031237125, 0.0032173909712582827, 0.000798256485722959, 0.0017505309078842402, 0.007203604094684124, 0.15302833914756775, 0.3851746916770935], [0.24949893355369568, 0.00459660217165947, 0.0006759644602425396, 0.0002427608851576224, 0.03575335815548897, 0.10494834929704666, 0.0011115346569567919, 0.0005539003759622574, 0.0020790258422493935, 0.00011296629963908345, 0.002276725834235549, 0.0010725592728704214, 0.0001491874863859266, 0.0016187317669391632, 0.0008990420028567314, 0.12919379770755768, 0.4652165472507477], [0.2410620003938675, 0.011706833727657795, 0.003123294794932008, 0.002787594450637698, 0.05044017359614372, 0.07068363577127457, 0.0019322310108691454, 0.0015442435396835208, 0.0047949813306331635, 0.0016725334571674466, 0.005628491286188364, 0.0026458692736923695, 0.0008025917923077941, 0.004112021531909704, 0.003839328186586499, 0.1574065238237381, 0.4358176290988922], [0.12563569843769073, 0.03062407672405243, 0.010939767584204674, 0.042466942220926285, 0.033687107264995575, 0.06894087046384811, 0.020790018141269684, 0.021879546344280243, 0.010860064998269081, 0.024609491229057312, 0.0072403536178171635, 0.007331207860261202, 0.009866093285381794, 0.013494031503796577, 0.034938499331474304, 0.058025721460580826, 0.47867047786712646]], [[0.1715061515569687, 0.05652061477303505, 0.03283015266060829, 0.0477357842028141, 0.039762191474437714, 0.03956158086657524, 0.024963069707155228, 0.026382241398096085, 0.008787531405687332, 0.011776326224207878, 0.007811460178345442, 0.01088688988238573, 0.011640246957540512, 0.02952890656888485, 0.027291158214211464, 0.03371438756585121, 0.4193013310432434], [0.1483566164970398, 0.024384887889027596, 0.02808462642133236, 0.0508016012609005, 0.053069621324539185, 0.04994626343250275, 0.04625199735164642, 0.04061603546142578, 0.00914813857525587, 0.006705037318170071, 0.004451676271855831, 0.008318603970110416, 0.011127625592052937, 0.016700929030776024, 0.02312404103577137, 0.04969010129570961, 0.4292222559452057], [0.12951940298080444, 0.04727339372038841, 0.027449283748865128, 0.045887116342782974, 0.044252973049879074, 0.05364958569407463, 0.06007316708564758, 0.0309875700622797, 0.012051776982843876, 0.011808003298938274, 0.0068226284347474575, 0.011497563682496548, 0.013900237157940865, 0.015145904384553432, 0.01564527116715908, 0.04768930375576019, 0.4263468086719513], [0.17545512318611145, 0.05384340509772301, 0.033455558121204376, 0.011946996673941612, 0.042559582740068436, 0.02719404362142086, 0.043424248695373535, 0.014947607181966305, 0.005931895226240158, 0.005792731419205666, 0.005559998098760843, 0.007286290172487497, 0.013332563452422619, 0.022373052313923836, 0.026946719735860825, 0.033332690596580505, 0.4766175448894501], [0.1855415552854538, 0.07091555744409561, 0.039483316242694855, 0.06087413802742958, 0.07425453513860703, 0.0676569938659668, 0.025905806571245193, 0.020352238789200783, 0.005344515200704336, 0.0127599211409688, 0.0058053540997207165, 0.006733533926308155, 0.010847055353224277, 0.01393636129796505, 0.015415336936712265, 0.03272756189107895, 0.35144612193107605], [0.1531836986541748, 0.027732694521546364, 0.013318289071321487, 0.026006357744336128, 0.021214094012975693, 0.03003881499171257, 0.010768628679215908, 0.008669856004416943, 0.0027787243016064167, 0.002562884008511901, 0.0018854138907045126, 0.0023125966545194387, 0.0022719118278473616, 0.007397779729217291, 0.004389619454741478, 0.012156863696873188, 0.6733118891716003], [0.10369690507650375, 0.09633879363536835, 0.0335349440574646, 0.059099383652210236, 0.0690099224448204, 0.06173933297395706, 0.09700874984264374, 0.05559639260172844, 0.02127949148416519, 0.013309451751410961, 0.007358776405453682, 0.009214441291987896, 0.016956891864538193, 0.018016589805483818, 0.020374106243252754, 0.07859565317630768, 0.23887021839618683], [0.1290346384048462, 0.05139961093664169, 0.03873089328408241, 0.04543287307024002, 0.09015823900699615, 0.08858188986778259, 0.06521577388048172, 0.055152542889118195, 0.0121993999928236, 0.007603103294968605, 0.006296188570559025, 0.007547695189714432, 0.015990806743502617, 0.022144906222820282, 0.01314469799399376, 0.03513321653008461, 0.31623348593711853], [0.14306345582008362, 0.03463224694132805, 0.027055658400058746, 0.04731850326061249, 0.03513077273964882, 0.04166030138731003, 0.06497509777545929, 0.02126077376306057, 0.0118664326146245, 0.008173535577952862, 0.003939375746995211, 0.00894688256084919, 0.00939225684851408, 0.020267587155103683, 0.005527611821889877, 0.022249387577176094, 0.4945402443408966], [0.16646817326545715, 0.04348083958029747, 0.030004439875483513, 0.04296734556555748, 0.039697013795375824, 0.05034815892577171, 0.035016220062971115, 0.019742876291275024, 0.006408992689102888, 0.006894203834235668, 0.007527077570557594, 0.00725639658048749, 0.011058232747018337, 0.01509090606123209, 0.0051613738760352135, 0.02006341703236103, 0.49281442165374756], [0.11579213291406631, 0.038872621953487396, 0.03219049796462059, 0.057798974215984344, 0.047471899539232254, 0.0747714564204216, 0.11773905158042908, 0.05829741060733795, 0.02962483838200569, 0.017633900046348572, 0.009744804352521896, 0.016242852434515953, 0.01996522583067417, 0.021128343418240547, 0.007471250370144844, 0.019516346976161003, 0.315738320350647], [0.08650599420070648, 0.04135992005467415, 0.028200818225741386, 0.0778903216123581, 0.04985630512237549, 0.10146953910589218, 0.1379488855600357, 0.08155167102813721, 0.042068883776664734, 0.02376450039446354, 0.013248278759419918, 0.017281660810112953, 0.014637990854680538, 0.01739577203989029, 0.013788178563117981, 0.03363272175192833, 0.2193986028432846], [0.05760757252573967, 0.04583762586116791, 0.02741256169974804, 0.11406305432319641, 0.04146359860897064, 0.07376714050769806, 0.17078842222690582, 0.07320825010538101, 0.05292057991027832, 0.024727195501327515, 0.011095971800386906, 0.015044535510241985, 0.009101315401494503, 0.011543945409357548, 0.022405054420232773, 0.026106154546141624, 0.2229071408510208], [0.08571696281433105, 0.05001813545823097, 0.026486359536647797, 0.06998305022716522, 0.05284707620739937, 0.07811299711465836, 0.1735808253288269, 0.10153096914291382, 0.023934297263622284, 0.008128072135150433, 0.0072711799293756485, 0.014730604365468025, 0.009495075792074203, 0.008501652628183365, 0.022560877725481987, 0.05694742873311043, 0.2101544290781021], [0.036342453211545944, 0.031810276210308075, 0.01809818483889103, 0.04520295187830925, 0.06688588857650757, 0.08895878493785858, 0.27941688895225525, 0.1505829095840454, 0.04109881445765495, 0.013779552653431892, 0.010651796124875546, 0.02200167253613472, 0.01122021023184061, 0.008804824203252792, 0.029536975547671318, 0.08225198835134506, 0.06335575133562088], [0.08369911462068558, 0.03374688699841499, 0.018057972192764282, 0.03658295422792435, 0.051924508064985275, 0.12970714271068573, 0.12534721195697784, 0.08424952626228333, 0.030972972512245178, 0.0243080947548151, 0.015278681181371212, 0.020966801792383194, 0.021575486287474632, 0.02205261029303074, 0.034519094973802567, 0.06976855546236038, 0.19724242389202118], [0.11780774593353271, 0.023284360766410828, 0.009001378901302814, 0.012322460301220417, 0.017623886466026306, 0.02600846439599991, 0.021759964525699615, 0.019846593961119652, 0.006680825259536505, 0.004616870079189539, 0.0040496354922652245, 0.005292261019349098, 0.005336816422641277, 0.019332323223352432, 0.01699827052652836, 0.033531446009874344, 0.6565066576004028]], [[0.13120003044605255, 0.016713781282305717, 0.011165979318320751, 0.025843225419521332, 0.021019402891397476, 0.04488776996731758, 0.04360842704772949, 0.02236117608845234, 0.01227598451077938, 0.01590493507683277, 0.01468481682240963, 0.012060790322721004, 0.014610357582569122, 0.04681294411420822, 0.0716954842209816, 0.05480138957500458, 0.4403533935546875], [0.07477882504463196, 0.026268083602190018, 0.05903298407793045, 0.19955019652843475, 0.16928346455097198, 0.08435129374265671, 0.042577821761369705, 0.026602884754538536, 0.009809264913201332, 0.01661076582968235, 0.018956344574689865, 0.010231160558760166, 0.01189426239579916, 0.03453698009252548, 0.05704484507441521, 0.02003897726535797, 0.13843192160129547], [0.09230054169893265, 0.016524873673915863, 0.05352810025215149, 0.05368131026625633, 0.2007647454738617, 0.2516137659549713, 0.06500957906246185, 0.011514316312968731, 0.0038415503222495317, 0.005426033399999142, 0.010480745695531368, 0.008205213584005833, 0.005184169393032789, 0.00484803831204772, 0.012767670676112175, 0.0076488894410431385, 0.19666044414043427], [0.15046732127666473, 0.024836935102939606, 0.019950930029153824, 0.025083256885409355, 0.06544855982065201, 0.15431837737560272, 0.06973470747470856, 0.02103753387928009, 0.0035340117756277323, 0.0027191350236535072, 0.0035891642328351736, 0.003348536556586623, 0.005516350734978914, 0.005599342752248049, 0.0074050393886864185, 0.004414612893015146, 0.4329961836338043], [0.1210065484046936, 0.0360683910548687, 0.020677613094449043, 0.039638299494981766, 0.06482139974832535, 0.09250187128782272, 0.09678802639245987, 0.0651375949382782, 0.01483725942671299, 0.010392229072749615, 0.010587535798549652, 0.0106387073174119, 0.014606664888560772, 0.021560892462730408, 0.03662590682506561, 0.021771930158138275, 0.32233917713165283], [0.12689752876758575, 0.017638973891735077, 0.005726937670260668, 0.019740166142582893, 0.020200150087475777, 0.06218266859650612, 0.035862263292074203, 0.018873410299420357, 0.007394102402031422, 0.00979533325880766, 0.007555914577096701, 0.003820205805823207, 0.006096703466027975, 0.02054114267230034, 0.026037506759166718, 0.0197357889264822, 0.5919012427330017], [0.036452583968639374, 0.006417684722691774, 0.003805347718298435, 0.011013430543243885, 0.012136482633650303, 0.023319248110055923, 0.029469894245266914, 0.042283881455659866, 0.023406341671943665, 0.031042080372571945, 0.03399587422609329, 0.06517084687948227, 0.04028293117880821, 0.09184201061725616, 0.29635825753211975, 0.13689985871315002, 0.11610326915979385], [0.04449592903256416, 0.005666380748152733, 0.002866598078981042, 0.00878017209470272, 0.01898936927318573, 0.02576349303126335, 0.034450169652700424, 0.01794295944273472, 0.0106741888448596, 0.03802653029561043, 0.10295841842889786, 0.05587179958820343, 0.04192928224802017, 0.0654204860329628, 0.2093951553106308, 0.17431367933750153, 0.14245538413524628], [0.05469384044408798, 0.003677432658150792, 0.0017667784122750163, 0.003661698428913951, 0.008511207066476345, 0.033221710473299026, 0.014524488709867, 0.008055551908910275, 0.006671682931482792, 0.02554292231798172, 0.14382010698318481, 0.0788026675581932, 0.0787743479013443, 0.068939208984375, 0.1883009672164917, 0.06295252591371536, 0.21808284521102905], [0.08456319570541382, 0.00568534666672349, 0.0032084002159535885, 0.004012095741927624, 0.007790112867951393, 0.03433898091316223, 0.016660474240779877, 0.01069653406739235, 0.005219317506998777, 0.01252108346670866, 0.03366745263338089, 0.057426705956459045, 0.05811452120542526, 0.06633258610963821, 0.14781707525253296, 0.09298709779977798, 0.35895904898643494], [0.045606888830661774, 0.00752779608592391, 0.0022168615832924843, 0.002710578963160515, 0.004134627990424633, 0.014024204574525356, 0.008408602327108383, 0.006912520620971918, 0.003210528986528516, 0.005845570936799049, 0.012944071553647518, 0.03276177868247032, 0.06630882620811462, 0.1400478482246399, 0.30007612705230713, 0.1439654678106308, 0.2032977193593979], [0.04374336078763008, 0.008007321506738663, 0.004503370262682438, 0.002688664710149169, 0.0034069817047566175, 0.014402372762560844, 0.007085692603141069, 0.0047563957050442696, 0.0030627998057752848, 0.014845851808786392, 0.02791217342019081, 0.03203342854976654, 0.044405993074178696, 0.11199042201042175, 0.3045726716518402, 0.21346500515937805, 0.15911751985549927], [0.05416037142276764, 0.008501855656504631, 0.012318016029894352, 0.010931327939033508, 0.0046463776379823685, 0.012044462375342846, 0.0051404209807515144, 0.0023872486781328917, 0.002325642853975296, 0.009666116908192635, 0.02147938311100006, 0.019020095467567444, 0.03014385513961315, 0.0769207626581192, 0.3627868592739105, 0.11658167839050293, 0.2509455978870392], [0.1026180163025856, 0.009911926463246346, 0.0040377178229391575, 0.009649770334362984, 0.004379753023386002, 0.016896871849894524, 0.0024335915222764015, 0.0015749353915452957, 0.0012366237351670861, 0.004841067362576723, 0.008771291933953762, 0.005181148648262024, 0.013899121433496475, 0.06876441091299057, 0.15267199277877808, 0.08383909612894058, 0.5092926621437073], [0.14079105854034424, 0.01580834574997425, 0.008732175454497337, 0.016296617686748505, 0.008109146729111671, 0.0177718847990036, 0.0047464510425925255, 0.0018259985372424126, 0.001246843603439629, 0.0022661075927317142, 0.007817929610610008, 0.009997391141951084, 0.01392293069511652, 0.025127429515123367, 0.07560859620571136, 0.10090216249227524, 0.5490289330482483], [0.14919884502887726, 0.012158455327153206, 0.003362441435456276, 0.00800130795687437, 0.007126599550247192, 0.0140711460262537, 0.004009345080703497, 0.002046958776190877, 0.0005128688062541187, 0.0007850451511330903, 0.0014599491842091084, 0.004062211606651545, 0.006184057332575321, 0.01673051342368126, 0.03651753440499306, 0.05442936718463898, 0.6793433427810669], [0.16491959989070892, 0.020261850208044052, 0.00619931286200881, 0.013621063902974129, 0.014622434973716736, 0.04219280928373337, 0.014935411512851715, 0.006204964593052864, 0.002391372574493289, 0.003254430601373315, 0.004762306809425354, 0.003457550425082445, 0.005333078093826771, 0.016864227131009102, 0.024143002927303314, 0.022852299734950066, 0.633984386920929]], [[0.19583025574684143, 0.028591511771082878, 0.01396953035145998, 0.017483090981841087, 0.02888881042599678, 0.07422921061515808, 0.014687811024487019, 0.012545870617032051, 0.003608518512919545, 0.004092120099812746, 0.0028541716746985912, 0.0050644841976463795, 0.007781510706990957, 0.01034858450293541, 0.009012672118842602, 0.02243955060839653, 0.5485722422599792], [0.27218058705329895, 0.014013675972819328, 0.00590447848662734, 0.0016289296327158809, 0.0061403620056807995, 0.02032221108675003, 0.005775035358965397, 0.001859079347923398, 0.00010864673822652549, 6.294314516708255e-05, 3.936132634407841e-05, 0.00010822656622622162, 0.0009753795457072556, 0.0012127640657126904, 0.0007259567501023412, 0.002219105837866664, 0.6667233109474182], [0.12442868202924728, 0.42229804396629333, 0.02765605039894581, 0.006583654321730137, 0.003714566119015217, 0.047604724764823914, 0.003300597658380866, 0.010618914850056171, 0.0005265669897198677, 0.000255662394920364, 2.442586628603749e-05, 4.5020529796602204e-05, 0.0001939963985932991, 0.003595257643610239, 0.004032904282212257, 0.010718072764575481, 0.33440279960632324], [0.16072791814804077, 0.10716451704502106, 0.17043685913085938, 0.0238299872726202, 0.03407666087150574, 0.012853334657847881, 0.0013326056068763137, 0.011465828865766525, 0.0008054403006099164, 0.0006112242117524147, 7.344955520238727e-05, 9.041547855304088e-06, 9.733084152685478e-05, 0.00028277537785470486, 0.003324486082419753, 0.011043776758015156, 0.46186476945877075], [0.08449402451515198, 0.028179237619042397, 0.06504090875387192, 0.42648160457611084, 0.04035511612892151, 0.03542035073041916, 0.001852140761911869, 0.0024762575048953295, 0.0011293331626802683, 0.0021873675286769867, 0.00022668091696687043, 9.902810415951535e-05, 4.085902764927596e-05, 0.0003142838249914348, 0.0018778517842292786, 0.005304025951772928, 0.30452099442481995], [0.12623640894889832, 0.007040397729724646, 0.00831268634647131, 0.03207331523299217, 0.11189772933721542, 0.06862546503543854, 0.010198459960520267, 0.002457129303365946, 0.0006962672341614962, 0.0016556859482079744, 0.0016964582027867436, 0.0009606201783753932, 0.001042925869114697, 0.0005887860315851867, 0.0010561265517026186, 0.004262801259756088, 0.6211988925933838], [0.1093054711818695, 0.0077272746711969376, 0.00034861222957260907, 0.024737928062677383, 0.043672073632478714, 0.3948311507701874, 0.07128135859966278, 0.035350117832422256, 0.000512745522428304, 0.0017114582005888224, 0.003920571878552437, 0.002452181652188301, 0.0006447641644626856, 0.0009322863770648837, 0.00033061308204196393, 0.0015731897437945008, 0.300668329000473], [0.14065998792648315, 0.007299428340047598, 0.0001529979781480506, 0.0006625473033636808, 0.011844239197671413, 0.12236613035202026, 0.23737630248069763, 0.02757507935166359, 0.0006508823134936392, 0.0003672770981211215, 0.0006877395790070295, 0.00044839794281870127, 0.001327625708654523, 0.0008515478111803532, 0.0002662945189513266, 0.0004952253657393157, 0.44696834683418274], [0.15661048889160156, 0.018063079565763474, 0.00011101601558038965, 0.0002276664017699659, 0.0031295460648834705, 0.1075318455696106, 0.027075132355093956, 0.15836471319198608, 0.0015198197215795517, 0.0018067051423713565, 0.0002985491883009672, 0.00020951659826096147, 0.000365722255082801, 0.0030567864887416363, 0.000538585998583585, 0.002497575944289565, 0.5185932517051697], [0.1926940381526947, 0.009201934561133385, 0.0002358506026212126, 0.00170986691955477, 0.01026127114892006, 0.020561184734106064, 0.005640747956931591, 0.07015088945627213, 0.015502630732953548, 0.015783309936523438, 0.009079684503376484, 0.00013620824029203504, 0.0008658793522045016, 0.0017384655075147748, 0.0024606601800769567, 0.034210629761219025, 0.6097666621208191], [0.0035119792446494102, 0.0003732931800186634, 8.467325096717104e-05, 0.0009361625998280942, 0.0008215234847739339, 0.004153059795498848, 0.000757976493332535, 0.021765582263469696, 0.12152625620365143, 0.8145433664321899, 0.005074173677712679, 0.0011846828274428844, 0.00016545680409763008, 0.0013166426215320826, 0.0012595354346558452, 0.004832899663597345, 0.017692795023322105], [0.04667947068810463, 0.0010992108145728707, 0.00011266753426752985, 0.0014370153658092022, 0.004367212299257517, 0.018999462947249413, 0.0046668099239468575, 0.009517990052700043, 0.0024221090134233236, 0.024388466030359268, 0.10706831514835358, 0.016893960535526276, 0.002859817584976554, 0.0030744040850549936, 0.0018804518040269613, 0.01982167921960354, 0.7347109913825989], [0.04503791406750679, 0.0015411656349897385, 4.192331834929064e-05, 0.0007143427501432598, 0.003981464076787233, 0.060450442135334015, 0.004958500154316425, 0.024256115779280663, 0.0003923315671272576, 0.02017277665436268, 0.07498002052307129, 0.3425312340259552, 0.010231658816337585, 0.016857832670211792, 0.0021323945838958025, 0.021488701924681664, 0.37023109197616577], [0.115036740899086, 0.0034023786429315805, 9.369930921820924e-05, 0.00017636525444686413, 0.004906123038381338, 0.030001170933246613, 0.017565950751304626, 0.013294953852891922, 0.0006993054994381964, 0.004402578808367252, 0.017316356301307678, 0.03094019927084446, 0.13440169394016266, 0.042215388268232346, 0.0033515007235109806, 0.014288005419075489, 0.5679076910018921], [0.09186473488807678, 0.014673014171421528, 0.00028136876062490046, 0.0002492803323548287, 0.0014122369466349483, 0.012645539827644825, 0.002891147043555975, 0.029096517711877823, 0.00014200842997524887, 0.0011650733649730682, 0.0029397609177976847, 0.01054553035646677, 0.09770508855581284, 0.41101089119911194, 0.007019399665296078, 0.04270235449075699, 0.2736560106277466], [0.10166198015213013, 0.009155427105724812, 0.0045221406035125256, 0.002553874161094427, 0.0012071052333340049, 0.006499250419437885, 0.003993927035480738, 0.007084038574248552, 0.001385921728797257, 0.0012994396965950727, 0.0019882679916918278, 0.0012493652757257223, 0.016382185742259026, 0.05700292810797691, 0.339881956577301, 0.061092667281627655, 0.3830395042896271], [0.1945490837097168, 0.01731044240295887, 0.007461007684469223, 0.012025177478790283, 0.014342728070914745, 0.03832939639687538, 0.005413043312728405, 0.011983220465481281, 0.0029788739047944546, 0.006045237649232149, 0.0035254633985459805, 0.0024307076819241047, 0.003410260658711195, 0.011495172046124935, 0.008265350945293903, 0.08795710653066635, 0.5724777579307556]], [[0.12264461070299149, 0.05873729661107063, 0.015635833144187927, 0.026419255882501602, 0.05151769518852234, 0.1095593050122261, 0.06014065071940422, 0.03912931680679321, 0.02390705980360508, 0.025726493448019028, 0.01758604496717453, 0.022337697446346283, 0.01601256988942623, 0.03298044577240944, 0.008872815407812595, 0.1333518922328949, 0.23544098436832428], [0.24116644263267517, 0.0049827368929982185, 0.018928440287709236, 0.006413749884814024, 0.05249825865030289, 0.132304385304451, 0.009924648329615593, 0.022876041010022163, 0.006632067728787661, 0.00626259483397007, 0.026195857673883438, 0.009209755808115005, 0.005400584079325199, 0.002925521694123745, 0.0005312727298587561, 0.07208240777254105, 0.3816651701927185], [0.35362523794174194, 0.018586773425340652, 0.010580002330243587, 0.0062776836566627026, 0.024891790002584457, 0.08888119459152222, 0.00861370749771595, 0.013158350251615047, 0.0019424862693995237, 0.0004574533086270094, 0.003979038912802935, 0.00800191331654787, 0.0050424253568053246, 0.006140062119811773, 0.0024076136760413647, 0.06529854983091354, 0.38211581110954285], [0.2678990662097931, 0.009258409962058067, 0.0037860486190766096, 0.002426550257951021, 0.04167419299483299, 0.10678759217262268, 0.012323020957410336, 0.008939613588154316, 0.0025764189194887877, 0.0016902724746614695, 0.005637963768094778, 0.0030564554035663605, 0.003004424273967743, 0.005227365996688604, 0.0013119863579049706, 0.08381336182355881, 0.4405871629714966], [0.23276053369045258, 0.03926974534988403, 0.015553092584013939, 0.020285984501242638, 0.08514657616615295, 0.07495421171188354, 0.03970780968666077, 0.02795090153813362, 0.00511517096310854, 0.004640677012503147, 0.019684430211782455, 0.010141647420823574, 0.01589248515665531, 0.011308648623526096, 0.003621162846684456, 0.11079041659832001, 0.2831764221191406], [0.12997257709503174, 0.09126356989145279, 0.04633283615112305, 0.040570180863142014, 0.05227513983845711, 0.0679740309715271, 0.08662667870521545, 0.051132362335920334, 0.019654328003525734, 0.039532821625471115, 0.01678289659321308, 0.05710345134139061, 0.04226836934685707, 0.02164134383201599, 0.01715468429028988, 0.053895510733127594, 0.16581925749778748], [0.2019921988248825, 0.03963982313871384, 0.03204333782196045, 0.007651726249605417, 0.10560877621173859, 0.08578205108642578, 0.03959522768855095, 0.020537180826067924, 0.0065860082395374775, 0.003362312214449048, 0.030869103968143463, 0.014572742395102978, 0.042506154626607895, 0.016700487583875656, 0.003168581984937191, 0.10329730063676834, 0.2460869550704956], [0.2568057179450989, 0.02743706852197647, 0.010719572193920612, 0.004178781993687153, 0.04799019545316696, 0.07395999133586884, 0.01524096168577671, 0.005453432444483042, 0.0050083729438483715, 0.0013082134537398815, 0.009212854318320751, 0.0049279360100626945, 0.007745425682514906, 0.005457693710923195, 0.0009874155512079597, 0.09016699343919754, 0.43339934945106506], [0.29636672139167786, 0.008189926855266094, 0.006008433178067207, 0.0014491782058030367, 0.023700108751654625, 0.05614170804619789, 0.012064025737345219, 0.004144781269133091, 0.0010352780809625983, 0.0002452465705573559, 0.005664168857038021, 0.004418248310685158, 0.0042506735771894455, 0.003936302848160267, 0.0004773794789798558, 0.056681785732507706, 0.5152260661125183], [0.20143458247184753, 0.0211247019469738, 0.008301541209220886, 0.0004511898441705853, 0.02488737925887108, 0.09670080989599228, 0.020252026617527008, 0.013329953886568546, 0.004489125218242407, 0.0010450092377141118, 0.01528194546699524, 0.011799690313637257, 0.01932951994240284, 0.006167034152895212, 0.0004267882904969156, 0.14123578369617462, 0.4137428402900696], [0.2061087191104889, 0.02106986567378044, 0.0077831437811255455, 0.002388883614912629, 0.03334055095911026, 0.08683880418539047, 0.01205273438245058, 0.011973723769187927, 0.003132856683805585, 0.003100920468568802, 0.031134245917201042, 0.002909405156970024, 0.011048147454857826, 0.004741576500236988, 0.0018231882713735104, 0.061578135937452316, 0.49897512793540955], [0.26513054966926575, 0.02312164194881916, 0.012635458260774612, 0.005502341780811548, 0.04002876952290535, 0.10939935594797134, 0.013396447524428368, 0.013509719632565975, 0.005405135918408632, 0.0015369858592748642, 0.01255972869694233, 0.00762149365618825, 0.006253317464143038, 0.008169591426849365, 0.0018207450630143285, 0.11168017238378525, 0.36222848296165466], [0.2671246826648712, 0.003530285321176052, 0.006910140626132488, 0.008676032535731792, 0.06696848571300507, 0.06320914626121521, 0.00415037851780653, 0.0072034746408462524, 0.0040021189488470554, 0.002460251795127988, 0.015417957678437233, 0.0017273605335503817, 0.0010481562931090593, 0.005089395213872194, 0.0011251860996708274, 0.09654121845960617, 0.44481566548347473], [0.2871648669242859, 0.004215647466480732, 0.011304252780973911, 0.013952839188277721, 0.05501256883144379, 0.08633662015199661, 0.015276762656867504, 0.004162837751209736, 0.004102088510990143, 0.003729994175955653, 0.0306836124509573, 0.004676493816077709, 0.0034503848291933537, 0.002471412532031536, 0.000399849348468706, 0.08955637365579605, 0.38350337743759155], [0.3005715012550354, 0.004781761206686497, 0.00718742236495018, 0.006872726604342461, 0.04194701835513115, 0.08165368437767029, 0.010858460329473019, 0.0038306694477796555, 0.004834427963942289, 0.0015967654762789607, 0.014473031274974346, 0.005815266631543636, 0.003987505566328764, 0.005321665666997433, 0.0007508087437599897, 0.10329995304346085, 0.40221717953681946], [0.16142264008522034, 0.08089714497327805, 0.013329632580280304, 0.01718602143228054, 0.0652572363615036, 0.050247788429260254, 0.03884927183389664, 0.03143643960356712, 0.01104260515421629, 0.003355484688654542, 0.011123467236757278, 0.013684691861271858, 0.016597410663962364, 0.022438157349824905, 0.008744589984416962, 0.22198234498500824, 0.23240503668785095], [0.11404906213283539, 0.08327910304069519, 0.03284807130694389, 0.059132449328899384, 0.042643532156944275, 0.0815434679389, 0.057715293020009995, 0.04564487934112549, 0.02855648659169674, 0.04929210990667343, 0.04435491934418678, 0.03668835386633873, 0.04695991426706314, 0.024566233158111572, 0.023856637999415398, 0.06798714399337769, 0.16088244318962097]], [[0.1942090392112732, 0.15648968517780304, 0.06341677904129028, 0.09321360290050507, 0.06649105250835419, 0.02560357376933098, 0.006502999458462, 0.008485155180096626, 0.002622240921482444, 0.004157166462391615, 0.002674422925338149, 0.0026952058542519808, 0.008579466491937637, 0.009835563600063324, 0.005239767488092184, 0.013178774155676365, 0.33660560846328735], [0.1441507190465927, 0.085496686398983, 0.02006528340280056, 0.011843695305287838, 0.023099156096577644, 0.03714844211935997, 0.011294453404843807, 0.011138604953885078, 0.001079234411008656, 0.0018315601628273726, 0.0019256742671132088, 0.0037117740139365196, 0.012496652081608772, 0.010060055181384087, 0.004379325546324253, 0.009705498814582825, 0.6105731129646301], [0.12470291554927826, 0.2033054530620575, 0.11134490370750427, 0.016281036660075188, 0.03497079014778137, 0.043593328446149826, 0.018916485831141472, 0.015260434709489346, 0.003936791326850653, 0.0030078820418566465, 0.0015505488263443112, 0.008590728044509888, 0.025424357503652573, 0.022052539512515068, 0.008890640921890736, 0.012173428200185299, 0.34599769115448], [0.08404575288295746, 0.4807928800582886, 0.12593375146389008, 0.025682151317596436, 0.03928825631737709, 0.03186468407511711, 0.015684455633163452, 0.022340470924973488, 0.003037630580365658, 0.0016748630441725254, 0.0008043445413932204, 0.0015692395390942693, 0.005374914966523647, 0.015019673854112625, 0.008192858658730984, 0.011704305186867714, 0.12698973715305328], [0.10664205253124237, 0.30696988105773926, 0.18132446706295013, 0.07701791077852249, 0.05961322784423828, 0.04687301442027092, 0.013521199114620686, 0.013439186848700047, 0.00470077246427536, 0.00473862374201417, 0.0012295210035517812, 0.0015477712731808424, 0.0026385921519249678, 0.006364601664245129, 0.006072719115763903, 0.006347307935357094, 0.1609591841697693], [0.1489054411649704, 0.06774993240833282, 0.035284388810396194, 0.038150232285261154, 0.04780235514044762, 0.03829200565814972, 0.006739562842994928, 0.004275672137737274, 0.0014287193771451712, 0.0021266744006425142, 0.00072780268965289, 0.0006644041859544814, 0.0009688089485280216, 0.0017692556139081717, 0.0018968548392876983, 0.006136758252978325, 0.5970811247825623], [0.09384844452142715, 0.06546178460121155, 0.021913796663284302, 0.03737851232290268, 0.09253975749015808, 0.3248279094696045, 0.03389948233962059, 0.03177185729146004, 0.007446518633514643, 0.006589739117771387, 0.003317886032164097, 0.0024142174515873194, 0.0019348397618159652, 0.003939987625926733, 0.0018114499980583787, 0.00693603465333581, 0.263967901468277], [0.14087606966495514, 0.051355160772800446, 0.009885076433420181, 0.019242212176322937, 0.0643373355269432, 0.24832063913345337, 0.03758499398827553, 0.028653837740421295, 0.005582197103649378, 0.004523589741438627, 0.004180976189672947, 0.005075542721897364, 0.007345667574554682, 0.004656955599784851, 0.001793591072782874, 0.005285153165459633, 0.3613009452819824], [0.12399076670408249, 0.01808120869100094, 0.0033514753449708223, 0.0029334130231291056, 0.02683570794761181, 0.16225862503051758, 0.046547651290893555, 0.04642823711037636, 0.009347115643322468, 0.0029018158093094826, 0.002360509941354394, 0.002987423911690712, 0.003374401479959488, 0.011567983776330948, 0.0011823655804619193, 0.0032134174834936857, 0.5326380133628845], [0.1318642944097519, 0.025263024494051933, 0.0027003022842109203, 0.002611891832202673, 0.02737327665090561, 0.1764153093099594, 0.07115020602941513, 0.07601603865623474, 0.02171594277024269, 0.006134917959570885, 0.004445897880941629, 0.00426408089697361, 0.0043066926300525665, 0.022098049521446228, 0.0038894813042134047, 0.013865334913134575, 0.405885249376297], [0.0323294922709465, 0.011033261194825172, 0.004946180619299412, 0.0035088108852505684, 0.010594039224088192, 0.059494245797395706, 0.09227336198091507, 0.11771479994058609, 0.4096435606479645, 0.12062400579452515, 0.008640716783702374, 0.021832674741744995, 0.01027944777160883, 0.02982189692556858, 0.008060222491621971, 0.005464424844831228, 0.05373882129788399], [0.05165291205048561, 0.012508262880146503, 0.005249124485999346, 0.003633989952504635, 0.014068391174077988, 0.056063462048769, 0.07344048470258713, 0.13280121982097626, 0.10125719010829926, 0.10844901204109192, 0.04962589219212532, 0.052040111273527145, 0.0271015502512455, 0.01988276094198227, 0.010507995262742043, 0.013650677166879177, 0.2680671215057373], [0.03519880026578903, 0.014616468921303749, 0.002299967687577009, 0.0023361926432698965, 0.009361271746456623, 0.043905556201934814, 0.08198805153369904, 0.15399070084095, 0.0849091187119484, 0.12552644312381744, 0.06321347504854202, 0.08113153278827667, 0.023981880396604538, 0.0444217249751091, 0.009163969196379185, 0.013737532310187817, 0.21021723747253418], [0.050199784338474274, 0.015924159437417984, 0.002250525401905179, 0.005091020837426186, 0.016462314873933792, 0.06767290085554123, 0.0937274694442749, 0.12363377213478088, 0.03570009022951126, 0.05994733050465584, 0.05580487102270126, 0.10601352155208588, 0.10405992716550827, 0.07381812483072281, 0.013166237622499466, 0.02159481681883335, 0.15493324398994446], [0.003933042753487825, 0.017872663214802742, 0.0021447325125336647, 0.0009450300130993128, 0.0027580764144659042, 0.011050970293581486, 0.09128312021493912, 0.24981161952018738, 0.011867006309330463, 0.027982402592897415, 0.05459224060177803, 0.14176031947135925, 0.20883940160274506, 0.1511407196521759, 0.010428028181195259, 0.0052566081285476685, 0.008333971723914146], [0.06473590433597565, 0.02549227885901928, 0.004635102115571499, 0.003316998016089201, 0.00681563513353467, 0.04227163642644882, 0.05502588301897049, 0.07674381136894226, 0.01557327900081873, 0.04065854474902153, 0.03621925413608551, 0.08804147690534592, 0.08296624571084976, 0.16097146272659302, 0.057622719556093216, 0.03145990148186684, 0.20744985342025757], [0.13269492983818054, 0.026266545057296753, 0.008852371014654636, 0.009315633215010166, 0.015792913734912872, 0.03852767124772072, 0.014905731193721294, 0.018835127353668213, 0.006256869528442621, 0.007616337388753891, 0.006697891745716333, 0.00603528693318367, 0.008234726265072823, 0.02183978632092476, 0.01834001950919628, 0.03472921997308731, 0.6250589489936829]], [[0.18296684324741364, 0.03282267972826958, 0.018326861783862114, 0.026119379326701164, 0.0379033125936985, 0.0862860456109047, 0.019123082980513573, 0.017059853300452232, 0.006575402338057756, 0.008912024088203907, 0.006458192132413387, 0.003060875926166773, 0.003788266098126769, 0.015540198422968388, 0.015192965045571327, 0.02732173167169094, 0.4925422966480255], [0.08954653888940811, 0.020089786499738693, 0.16678732633590698, 0.11739851534366608, 0.10948334634304047, 0.029484542086720467, 0.006439573597162962, 0.0030470769852399826, 0.0012441342696547508, 0.0034963039215654135, 0.0005940383998677135, 4.641281702788547e-05, 9.529296949040145e-05, 0.001934639411047101, 0.014542913995683193, 0.012401551939547062, 0.42336806654930115], [0.022318724542856216, 0.0036079571582376957, 0.011880693957209587, 0.7626683712005615, 0.06289009004831314, 0.021402539685368538, 0.0006466206395998597, 0.0002411224413663149, 0.00020328220853116363, 0.00235364050604403, 0.00030459227855317295, 4.246447133482434e-05, 7.265940075740218e-05, 0.00022727978648617864, 0.000485241471324116, 0.0014454562915489078, 0.10920923203229904], [0.08126986026763916, 0.0009306240826845169, 0.0018045505275949836, 0.00909524504095316, 0.21532593667507172, 0.1688012182712555, 0.0052154590375721455, 0.00024371621839236468, 1.6124566172948107e-05, 6.479524017777294e-05, 0.00015420756244566292, 4.7802219341974705e-05, 1.7995133021031506e-05, 3.389031917322427e-05, 4.252983853803016e-05, 0.0003457860730122775, 0.5165902972221375], [0.1519731730222702, 0.013200541026890278, 0.00039269073749892414, 0.007529745809733868, 0.05009292811155319, 0.39946573972702026, 0.05029749870300293, 0.004993102513253689, 8.545494347345084e-05, 0.0001704315363895148, 0.00021720583026763052, 0.00010675464000087231, 0.0001848231186158955, 0.0005052433698438108, 0.0001906267716549337, 0.00047179905232042074, 0.32012224197387695], [0.1868220716714859, 0.01611785963177681, 0.0023682829923927784, 0.004098796751350164, 0.033442527055740356, 0.13744427263736725, 0.09323783963918686, 0.03379349038004875, 0.0029940586537122726, 0.002777976216748357, 0.0016783906612545252, 0.00045736305764876306, 0.002273094141855836, 0.004041119944304228, 0.0037872891407459974, 0.0023582468274980783, 0.4723072648048401], [0.11864686012268066, 0.017291339114308357, 0.0006335482466965914, 0.003389459801837802, 0.0075885518454015255, 0.07742337882518768, 0.05625420808792114, 0.29558292031288147, 0.007172411307692528, 0.0069296942092478275, 0.0018257154151797295, 0.0024039626587182283, 0.002233159728348255, 0.027822965756058693, 0.020296109840273857, 0.009262154810130596, 0.3452436923980713], [0.0680665597319603, 0.00680201593786478, 0.0034849392250180244, 0.011824742890894413, 0.018840381875634193, 0.01887461543083191, 0.046175871044397354, 0.031051818281412125, 0.11245682090520859, 0.1378432661294937, 0.04120751470327377, 0.008100645616650581, 0.02457188256084919, 0.034780632704496384, 0.0507689043879509, 0.054613739252090454, 0.3305355906486511], [0.0175052247941494, 0.00029925553826615214, 0.00012083961337339133, 0.0020536475349217653, 0.004148933105170727, 0.010479017160832882, 0.0021944663021713495, 0.009932325221598148, 0.005435722414404154, 0.6832643747329712, 0.07747765630483627, 0.022171031683683395, 0.001405809074640274, 0.005064536817371845, 0.002399023389443755, 0.0120097566395998, 0.14403855800628662], [0.03477883338928223, 0.00023947269073687494, 6.667970592388883e-05, 0.000513336737640202, 0.009009263478219509, 0.023382462561130524, 0.007867462933063507, 0.002292157616466284, 0.000987157691270113, 0.00880715437233448, 0.41695356369018555, 0.07188042998313904, 0.014506958425045013, 0.005528538022190332, 0.0015828933101147413, 0.0067604705691337585, 0.3948431611061096], [0.04122260957956314, 0.00036045239539816976, 1.0309297977073584e-05, 0.0002629916707519442, 0.0031424558255821466, 0.02973685972392559, 0.00559965381398797, 0.004469046834856272, 0.0001142474720836617, 0.002350076101720333, 0.01211649551987648, 0.17664176225662231, 0.074862040579319, 0.24473229050636292, 0.06972552090883255, 0.01804606430232525, 0.31660714745521545], [0.017833063378930092, 0.00033567158970981836, 1.9927125322283246e-05, 0.00012050463556079194, 0.0004436156596057117, 0.004123493563383818, 0.0038056515622884035, 0.0022478357423096895, 0.0007838092860765755, 0.0032940602395683527, 0.00798754207789898, 0.03266953304409981, 0.47870898246765137, 0.294776976108551, 0.058596376329660416, 0.010718246921896935, 0.08353464305400848], [0.008655433543026447, 0.0017345263622701168, 0.00011013502808054909, 0.00024290474539157003, 0.000106272884295322, 0.00250921119004488, 0.0005489129107445478, 0.0035806831438094378, 0.00038573419442400336, 0.0013806158676743507, 0.00042458975804038346, 0.0035946869757026434, 0.015427293255925179, 0.5899834036827087, 0.2994833290576935, 0.0203025471419096, 0.0515296645462513], [0.01400658581405878, 0.0008000486996024847, 0.0006621144129894674, 0.0009037702111527324, 0.00010708453191909939, 0.0005699623725377023, 0.0002323133230675012, 0.0005216437857598066, 0.0003124892245978117, 0.0011731396662071347, 0.0007990308222360909, 0.0003358491521794349, 0.004588859621435404, 0.069048210978508, 0.7645925879478455, 0.054579950869083405, 0.0867663249373436], [0.06196879968047142, 0.000650499074254185, 0.001481109531596303, 0.0023948228918015957, 0.0008873780025169253, 0.003302662866190076, 4.908981645712629e-05, 0.0001384614733979106, 8.595120743848383e-05, 0.00044094608165323734, 0.0009690190199762583, 0.0002901788684539497, 0.00029370051925070584, 0.0025551149155944586, 0.010893420316278934, 0.30957579612731934, 0.6040230393409729], [0.07474633306264877, 0.0004352819232735783, 0.00044053298188373446, 0.0009428865159861743, 0.0024766644928604364, 0.004936900921165943, 0.00011213751713512465, 3.3493040973553434e-05, 1.0618794476613402e-05, 0.00012780079850926995, 0.00039359505171887577, 0.0001766010682331398, 0.00026242033345624804, 0.0004664576263166964, 0.0031957041937857866, 0.02150982990860939, 0.8897327780723572], [0.18014515936374664, 0.013153680600225925, 0.004657292272895575, 0.01579437404870987, 0.03415577486157417, 0.07274746894836426, 0.01689211092889309, 0.009171308018267155, 0.002539173699915409, 0.0072594997473061085, 0.01059596799314022, 0.008568579331040382, 0.006425791420042515, 0.021136809140443802, 0.01468158420175314, 0.04194367304444313, 0.5401317477226257]], [[0.08205948024988174, 0.00758326705545187, 0.011831114068627357, 0.005657818168401718, 0.06025032326579094, 0.12102815508842468, 0.03125473111867905, 0.007600193843245506, 0.0035782884806394577, 0.009034590795636177, 0.006405106745660305, 0.00758699607104063, 0.00303672649897635, 0.005487961694598198, 0.004478417802602053, 0.09262862056493759, 0.5404981970787048], [0.1496468037366867, 0.13178643584251404, 0.0031904394272714853, 0.003789179492741823, 0.025829169899225235, 0.060445189476013184, 0.0036971396766602993, 0.007671815808862448, 0.000674934359267354, 0.0017690955428406596, 0.0018222263315692544, 0.002018778584897518, 0.0002983071899507195, 0.013552547432482243, 0.0034878174774348736, 0.03726089000701904, 0.5530591607093811], [0.0808597207069397, 0.0026857173070311546, 0.10227828472852707, 0.00715120742097497, 0.018751787021756172, 0.04909474030137062, 0.009808900766074657, 0.006924884859472513, 0.00386628950946033, 0.008036542683839798, 0.005405463743954897, 0.3082142770290375, 0.01856818236410618, 0.002415575087070465, 0.0015825668815523386, 0.02704700641334057, 0.34730881452560425], [0.06937786936759949, 0.00028072003624401987, 0.004419050645083189, 0.20110641419887543, 0.018758151680231094, 0.027319200336933136, 0.003902285825461149, 0.0019578184001147747, 0.0009749896125867963, 0.0024511588271707296, 0.0026340377517044544, 0.0019044873770326376, 0.00087024737149477, 0.0006792485364712775, 0.00037818713462911546, 0.01271736528724432, 0.6502687335014343], [0.10344699025154114, 0.003614092245697975, 0.0030448921024799347, 0.002717820927500725, 0.09793523699045181, 0.07958021014928818, 0.006284529808908701, 0.007585146464407444, 0.000817786087282002, 0.004648109432309866, 0.003112920094281435, 0.0017619088757783175, 0.000737951195333153, 0.0023048673756420612, 0.0034503377974033356, 0.2109050750732422, 0.4680521786212921], [0.09219042211771011, 0.0069896564818918705, 0.01021102350205183, 0.003157329047098756, 0.058859456330537796, 0.08073139935731888, 0.008900383487343788, 0.00400387030094862, 0.0021544506307691336, 0.0051997653208673, 0.005650086794048548, 0.004132409114390612, 0.002380723599344492, 0.0036348572466522455, 0.006896668579429388, 0.11353634297847748, 0.5913712382316589], [0.06980497390031815, 0.000824662740342319, 0.021533118560910225, 0.007104838266968727, 0.03528447076678276, 0.06448207795619965, 0.16606824100017548, 0.0021094479598104954, 0.001544682658277452, 0.001050934661179781, 0.005289072636514902, 0.010583755560219288, 0.0014756658347323537, 0.00035035566543228924, 0.00019082744256593287, 0.0523478165268898, 0.5599551796913147], [0.16268257796764374, 0.006884667091071606, 0.01293119415640831, 0.005958776455372572, 0.05462058633565903, 0.03614918515086174, 0.0026546844746917486, 0.23411405086517334, 0.003272028872743249, 0.0018898920388892293, 0.0028774901293218136, 0.003432960482314229, 0.0009014467359520495, 0.0014757334720343351, 0.01574021764099598, 0.04075175151228905, 0.41366270184516907], [0.11357643455266953, 0.001417789375409484, 0.04347976669669151, 0.044559553265571594, 0.0335187092423439, 0.053108423948287964, 0.009417136199772358, 0.00837942585349083, 0.17964240908622742, 0.01929362490773201, 0.01168466079980135, 0.04182158038020134, 0.0066145011223852634, 0.0030998007860034704, 0.0020543390419334173, 0.045286715030670166, 0.3830452859401703], [0.11278390884399414, 0.0007005283259786665, 0.010096819140017033, 0.01884223334491253, 0.028425848111510277, 0.052101291716098785, 0.019651217386126518, 0.0033960945438593626, 0.020487448200583458, 0.14240910112857819, 0.13138021528720856, 0.010329409502446651, 0.007127754390239716, 0.0025675606448203325, 0.002674552844837308, 0.040328603237867355, 0.39669737219810486], [0.09455391019582748, 0.0013615230564028025, 0.016588328406214714, 0.00964618194848299, 0.01889757625758648, 0.039328206330537796, 0.007854633033275604, 0.005774320103228092, 0.005712746176868677, 0.06311582773923874, 0.3414141535758972, 0.006437335163354874, 0.003959076013416052, 0.0011056585935875773, 0.0006029234500601888, 0.030892666429281235, 0.35275503993034363], [0.09784062951803207, 0.0031994343735277653, 0.3444443345069885, 0.010881241410970688, 0.01784985512495041, 0.032092150300741196, 0.008192126639187336, 0.008046623319387436, 0.010670962743461132, 0.002634574193507433, 0.009487973526120186, 0.14104308187961578, 0.03130604326725006, 0.0013503356603905559, 0.004411229398101568, 0.019948087632656097, 0.25660133361816406], [0.08012179285287857, 0.0060978238470852375, 0.0693218782544136, 0.008709612302482128, 0.012198223732411861, 0.055554527789354324, 0.002616151235997677, 0.006861026864498854, 0.0016229195753112435, 0.004480451811105013, 0.0025443946942687035, 0.033873893320560455, 0.18270309269428253, 0.0005421509849838912, 0.0003525499487295747, 0.012403175234794617, 0.5199964046478271], [0.10700653493404388, 0.003026270540431142, 0.0013571445597335696, 0.00550561910495162, 0.03484385460615158, 0.05369851365685463, 0.0010011295089498162, 0.001089625176973641, 0.0005248024826869369, 0.0006890071672387421, 0.0008171810768544674, 0.0004393767740111798, 8.62784800119698e-05, 0.06499949097633362, 0.010036642663180828, 0.016160039231181145, 0.6987184882164001], [0.11348466575145721, 0.0031306070741266012, 0.0007688739569857717, 0.0011334804585203528, 0.023059481754899025, 0.04380622133612633, 0.00027941472944803536, 0.0033216532319784164, 0.0001750133524183184, 0.0002832442114595324, 0.0002918016107287258, 0.0004458220792002976, 5.383164170780219e-05, 0.011375789530575275, 0.06120368838310242, 0.02892513945698738, 0.708261251449585], [0.08886841684579849, 0.0013341994490474463, 0.003942534327507019, 0.006894215010106564, 0.2158074826002121, 0.13967284560203552, 0.018835265189409256, 0.00622889120131731, 0.0017080269753932953, 0.0018513795221224427, 0.001759716309607029, 0.0012848172336816788, 0.000614483724348247, 0.0015497544081881642, 0.0009262305684387684, 0.05060547590255737, 0.45811641216278076], [0.06513166427612305, 0.0036293379962444305, 0.002980368211865425, 0.0010751655790954828, 0.023191792890429497, 0.0785839781165123, 0.004695279058068991, 0.002621737541630864, 0.0007481088396161795, 0.0026409938000142574, 0.0015730814775452018, 0.0021528671495616436, 0.0005399840883910656, 0.0021737536881119013, 0.0016879178583621979, 0.050644613802433014, 0.7559293508529663]], [[0.19804348051548004, 0.03699302300810814, 0.04993163421750069, 0.08084632456302643, 0.08033013343811035, 0.12302641570568085, 0.006852436810731888, 0.012742110528051853, 0.0052604107186198235, 0.00475623644888401, 0.006619101855903864, 0.006333403754979372, 0.009164363145828247, 0.009857823140919209, 0.006918891333043575, 0.01913067139685154, 0.34319350123405457], [0.05077354609966278, 0.07348090410232544, 0.03779179975390434, 0.027399929240345955, 0.10634121298789978, 0.11571858823299408, 0.02492663264274597, 0.03782113268971443, 0.0104738874360919, 0.012042775750160217, 0.011660345830023289, 0.010620463639497757, 0.034441739320755005, 0.04229222610592842, 0.02266572415828705, 0.06704434007406235, 0.3145047426223755], [0.034426234662532806, 0.04106787219643593, 0.023390276357531548, 0.04242197051644325, 0.07109016180038452, 0.16357927024364471, 0.022096140310168266, 0.028009241446852684, 0.006265869364142418, 0.01898900419473648, 0.010565175674855709, 0.009334475733339787, 0.09437160938978195, 0.01571243815124035, 0.011781401932239532, 0.04323481768369675, 0.3636641204357147], [0.05743986368179321, 0.0341990701854229, 0.034711215645074844, 0.0423971451818943, 0.07876548171043396, 0.15463754534721375, 0.008230449631810188, 0.01051367074251175, 0.007397920824587345, 0.007812383119016886, 0.008575583808124065, 0.007720802444964647, 0.024412911385297775, 0.011770498938858509, 0.01677374541759491, 0.032315172255039215, 0.46232664585113525], [0.06340119987726212, 0.15301913022994995, 0.06050073355436325, 0.11642157286405563, 0.08012808859348297, 0.1159907802939415, 0.020671751350164413, 0.02545177936553955, 0.008642800152301788, 0.023484552279114723, 0.006731292232871056, 0.01322243083268404, 0.08190897107124329, 0.01620207168161869, 0.011758532375097275, 0.0356627032160759, 0.16680164635181427], [0.14817947149276733, 0.021272581070661545, 0.009897598065435886, 0.02833867445588112, 0.16784746944904327, 0.050336066633462906, 0.0030054356902837753, 0.0035063091199845076, 0.0028717860113829374, 0.003120049834251404, 0.006883514113724232, 0.003774783806875348, 0.0050268592312932014, 0.00778600387275219, 0.006373347714543343, 0.064726822078228, 0.4670531451702118], [0.03363038972020149, 0.03146358206868172, 0.0034306116867810488, 0.012845664285123348, 0.02818857878446579, 0.062175050377845764, 0.0312897227704525, 0.032028913497924805, 0.009303273633122444, 0.04158597066998482, 0.006308756768703461, 0.011294340714812279, 0.13143952190876007, 0.06690303981304169, 0.049446698278188705, 0.09346351027488708, 0.35520246624946594], [0.04149969667196274, 0.034543074667453766, 0.011707999743521214, 0.017634158954024315, 0.024271134287118912, 0.07642850279808044, 0.04177127778530121, 0.05070187896490097, 0.015439939685165882, 0.05011676624417305, 0.010886585339903831, 0.0262164119631052, 0.09384138882160187, 0.07313330471515656, 0.08492479473352432, 0.08246861398220062, 0.26441439986228943], [0.03210720419883728, 0.006253061816096306, 0.002123783342540264, 0.002317602513357997, 0.01881513185799122, 0.06041626259684563, 0.007263688836246729, 0.004853779915720224, 0.0021888059563934803, 0.009686899371445179, 0.0031850463710725307, 0.006140523590147495, 0.03356406092643738, 0.009121918119490147, 0.009633866138756275, 0.04921048879623413, 0.7431178689002991], [0.025494955480098724, 0.013424304313957691, 0.00482614990323782, 0.006490777246654034, 0.04812338948249817, 0.14040791988372803, 0.011165178380906582, 0.010841520503163338, 0.0033316807821393013, 0.004360823892056942, 0.005725682247430086, 0.014987223781645298, 0.030939539894461632, 0.01440510991960764, 0.025745850056409836, 0.062087301164865494, 0.5776426196098328], [0.0667930319905281, 0.02041366510093212, 0.009441113099455833, 0.008065667934715748, 0.025041624903678894, 0.07782404124736786, 0.018678944557905197, 0.02364346571266651, 0.010694429278373718, 0.034147970378398895, 0.006932753138244152, 0.02195780538022518, 0.04560648277401924, 0.02673868089914322, 0.018672341480851173, 0.039278969168663025, 0.5460690855979919], [0.033588312566280365, 0.024282896891236305, 0.006279774475842714, 0.010875814594328403, 0.01894681341946125, 0.09147415310144424, 0.04417063295841217, 0.0470479279756546, 0.009943029843270779, 0.04169083386659622, 0.014836600981652737, 0.016050979495048523, 0.0966237485408783, 0.05722177401185036, 0.03231818228960037, 0.05167422443628311, 0.4029742479324341], [0.03894147276878357, 0.031012697145342827, 0.011361326090991497, 0.0075273276306688786, 0.012838317081332207, 0.11226148903369904, 0.04346393048763275, 0.03987707197666168, 0.0073557947762310505, 0.035135943442583084, 0.010025708004832268, 0.021926309913396835, 0.12016218900680542, 0.04563496634364128, 0.025671081617474556, 0.04287709295749664, 0.3939271569252014], [0.0312536284327507, 0.03751985356211662, 0.0022446380462497473, 0.0030103838071227074, 0.017547424882650375, 0.07698830962181091, 0.027815857902169228, 0.037468455731868744, 0.0028456805739551783, 0.007301894947886467, 0.007581639103591442, 0.007367237936705351, 0.03715213015675545, 0.17187833786010742, 0.086585633456707, 0.09249024093151093, 0.35294869542121887], [0.021908266469836235, 0.025972414761781693, 0.0070616924203932285, 0.012506785802543163, 0.016666263341903687, 0.10086198151111603, 0.05433712899684906, 0.12573182582855225, 0.01890447735786438, 0.036119379103183746, 0.015242323279380798, 0.029356442391872406, 0.10056910663843155, 0.07657741755247116, 0.07082938402891159, 0.07925257086753845, 0.20810261368751526], [0.031113922595977783, 0.030231645330786705, 0.010634556412696838, 0.00934471283107996, 0.013879338279366493, 0.07272842526435852, 0.08083206415176392, 0.09106512367725372, 0.02042786031961441, 0.06417039036750793, 0.01648755744099617, 0.053952693939208984, 0.18433672189712524, 0.0700414627790451, 0.040778547525405884, 0.05027606338262558, 0.15969887375831604], [0.11132900416851044, 0.006879694294184446, 0.0031513236463069916, 0.005739961285144091, 0.08558399975299835, 0.03421659395098686, 0.0034854887053370476, 0.004573054611682892, 0.0035542931873351336, 0.002164639299735427, 0.008886224590241909, 0.004268421325832605, 0.0029105341527611017, 0.014593149535357952, 0.00862814486026764, 0.09184914082288742, 0.6081862449645996]], [[0.18107467889785767, 0.0187649168074131, 0.012969935312867165, 0.009603395126760006, 0.08719559013843536, 0.07725638896226883, 0.01556347031146288, 0.010916664265096188, 0.008481481112539768, 0.011879077181220055, 0.010525683872401714, 0.017758188769221306, 0.028584087267518044, 0.01830502785742283, 0.013275747187435627, 0.07958776503801346, 0.39825794100761414], [0.18809503316879272, 0.050671182572841644, 0.009677312336862087, 0.004735671915113926, 0.12273485213518143, 0.05187711864709854, 0.003888232633471489, 0.0063999248668551445, 0.0012642453657463193, 0.0003257400239817798, 0.0019400852033868432, 0.0051279859617352486, 0.0012563044438138604, 0.005890651606023312, 0.011511597782373428, 0.09441150724887848, 0.4401925802230835], [0.13140299916267395, 0.009447263553738594, 0.036458563059568405, 0.024282705038785934, 0.09186697006225586, 0.08695492148399353, 0.016494469717144966, 0.03742019832134247, 0.009592970833182335, 0.0029579992406070232, 0.006403259467333555, 0.016488870605826378, 0.005327217746526003, 0.008358496241271496, 0.01177749689668417, 0.085983045399189, 0.41878262162208557], [0.14188005030155182, 0.0059510949067771435, 0.01354982703924179, 0.01698688045144081, 0.11468121409416199, 0.08218391239643097, 0.007920002564787865, 0.009978337213397026, 0.0016842663753777742, 0.001452381256967783, 0.0019535222090780735, 0.008522014133632183, 0.0026022407691925764, 0.0018001256976276636, 0.01519614364951849, 0.07795459777116776, 0.4957033395767212], [0.14675623178482056, 0.015583207830786705, 0.02790047787129879, 0.01450169924646616, 0.11541502177715302, 0.1058502122759819, 0.04093551263213158, 0.017231909558176994, 0.0052510532550513744, 0.0023153291549533606, 0.006363101303577423, 0.018459569662809372, 0.008784527890384197, 0.002656888449564576, 0.01077775564044714, 0.07887406647205353, 0.3823433816432953], [0.1525934338569641, 0.012917165644466877, 0.013910162262618542, 0.007805527187883854, 0.05517008528113365, 0.11029711365699768, 0.018413439393043518, 0.009435838088393211, 0.003837642492726445, 0.004673239775002003, 0.0038719542790204287, 0.008629410527646542, 0.004341567866504192, 0.006127343978732824, 0.008441312238574028, 0.03566545620560646, 0.5438693165779114], [0.1998954713344574, 0.001399922650307417, 0.018850449472665787, 0.003356187604367733, 0.05033639445900917, 0.0740571990609169, 0.08227556943893433, 0.024865882471203804, 0.007513339165598154, 0.0014388622948899865, 0.009013931266963482, 0.02573869191110134, 0.014277644455432892, 0.0006212044972926378, 0.0008004595874808729, 0.0720461755990982, 0.41351261734962463], [0.22349439561367035, 0.003902434604242444, 0.00849645584821701, 0.0021305023692548275, 0.050121504813432693, 0.06271502375602722, 0.008903393521904945, 0.02007198892533779, 0.0027587467338889837, 0.0003465061017777771, 0.0033289736602455378, 0.0058239116333425045, 0.0025355464313179255, 0.0009291503811255097, 0.003737512044608593, 0.1040753424167633, 0.49662864208221436], [0.17420953512191772, 0.002858760068193078, 0.012999659404158592, 0.002485583070665598, 0.01788516901433468, 0.06930214166641235, 0.008577318862080574, 0.013817034661769867, 0.008180663920938969, 0.0008262693299911916, 0.003386310301721096, 0.013255109079182148, 0.004129393026232719, 0.0030885504093021154, 0.0016923438524827361, 0.05562755838036537, 0.6076785922050476], [0.1822311133146286, 0.0008187412167899311, 0.0055558690801262856, 0.0015165071235969663, 0.02572634257376194, 0.07600276917219162, 0.0060052708722651005, 0.010127108544111252, 0.003199811326339841, 0.0007731335354037583, 0.0018912287196144462, 0.00724656879901886, 0.0016099108615890145, 0.0027304794639348984, 0.0012104377383366227, 0.05093636363744736, 0.6224184036254883], [0.13738751411437988, 0.0010825850768014789, 0.025788934901356697, 0.01152210496366024, 0.02889571525156498, 0.0486254021525383, 0.07103217393159866, 0.03191932663321495, 0.026032280176877975, 0.0021711126901209354, 0.023120811209082603, 0.04276169836521149, 0.03606215864419937, 0.005249395035207272, 0.0030241128988564014, 0.08196789026260376, 0.4233567714691162], [0.1802692413330078, 0.0021756752394139767, 0.01688537187874317, 0.0079070208594203, 0.04787452891469002, 0.09773754328489304, 0.013586882501840591, 0.02126687578856945, 0.01666121929883957, 0.0014851497253403068, 0.012642564252018929, 0.04115751013159752, 0.012941506691277027, 0.006526350975036621, 0.009793135337531567, 0.07986138015985489, 0.4312281012535095], [0.2313540130853653, 0.0017928120214492083, 0.007081842981278896, 0.002575503895059228, 0.02365792915225029, 0.09374092519283295, 0.00495922053232789, 0.010432085022330284, 0.0033014491200447083, 0.0003851835208479315, 0.002901502652093768, 0.010108908638358116, 0.00761046027764678, 0.003133288351818919, 0.003907671198248863, 0.053578563034534454, 0.5394785404205322], [0.19868861138820648, 0.01615283079445362, 0.006476875860244036, 0.0026714340783655643, 0.053085580468177795, 0.05640162527561188, 0.0024241842329502106, 0.004684273153543472, 0.004397423937916756, 0.00025714925141073763, 0.0019571802113205194, 0.010268280282616615, 0.004812989849597216, 0.030623625963926315, 0.04988933727145195, 0.09459221363067627, 0.4626162648200989], [0.1495482623577118, 0.003937402740120888, 0.005841634701937437, 0.011532171629369259, 0.047222696244716644, 0.06673317402601242, 0.004192890599370003, 0.014754866249859333, 0.006217133719474077, 0.0015526670031249523, 0.004057242069393396, 0.019282225519418716, 0.0019877415616065264, 0.012359744869172573, 0.17256973683834076, 0.12291765213012695, 0.35529279708862305], [0.18318712711334229, 0.00680008577182889, 0.009814403019845486, 0.007668021600693464, 0.05537945032119751, 0.06548891961574554, 0.015261415392160416, 0.011542811058461666, 0.005457377526909113, 0.0026816604658961296, 0.007101587951183319, 0.016953829675912857, 0.006823192350566387, 0.005127907730638981, 0.019706249237060547, 0.14135849475860596, 0.4396474063396454], [0.12799717485904694, 0.011883865110576153, 0.0059284246526658535, 0.00543033005669713, 0.02596178837120533, 0.05495181307196617, 0.00912933237850666, 0.009213455952703953, 0.0029722515027970076, 0.003848107298836112, 0.00285773491486907, 0.0040616621263325214, 0.003775838064029813, 0.009848171845078468, 0.01248173974454403, 0.03140897676348686, 0.6782494187355042]]], [[[0.10975735634565353, 0.08567279577255249, 0.013023074716329575, 0.05347418785095215, 0.04933369532227516, 0.14337962865829468, 0.010216460563242435, 0.03301261365413666, 0.002187495119869709, 0.0027092969976365566, 0.001133072073571384, 0.003336261957883835, 0.008908593095839024, 0.023396292701363564, 0.04531686380505562, 0.0646200105547905, 0.35052233934402466], [0.04356103762984276, 0.312292218208313, 0.006888462230563164, 0.05540322884917259, 0.0450412854552269, 0.09295893460512161, 0.021895596757531166, 0.041858796030282974, 0.0004209233447909355, 0.002546155359596014, 0.0023543103598058224, 0.0022060328628867865, 0.008565098978579044, 0.02444196119904518, 0.02384018898010254, 0.03699938580393791, 0.27872633934020996], [0.05031328275799751, 0.14615994691848755, 0.003306104801595211, 0.04789852723479271, 0.025340858846902847, 0.10060550272464752, 0.0044085304252803326, 0.05141482502222061, 0.000897343154065311, 0.003835389856249094, 0.0017025404376909137, 0.001607556245289743, 0.00484681548550725, 0.0889163538813591, 0.049997568130493164, 0.021339334547519684, 0.39740946888923645], [0.10939197987318039, 0.0448060967028141, 0.045449599623680115, 0.04852960258722305, 0.03446480631828308, 0.15784980356693268, 0.0059821330942213535, 0.04071330651640892, 0.003483921056613326, 0.0058991191908717155, 0.0024070770014077425, 0.005543253384530544, 0.010949750430881977, 0.01590346358716488, 0.044932104647159576, 0.050162576138973236, 0.37353143095970154], [0.07841511815786362, 0.10389717668294907, 0.0148389283567667, 0.08251677453517914, 0.03695183992385864, 0.09428606927394867, 0.015229783020913601, 0.04001251980662346, 0.0021019394043833017, 0.0032959480304270983, 0.0008066451991908252, 0.0038290387019515038, 0.006718817166984081, 0.04720013961195946, 0.09244384616613388, 0.041642144322395325, 0.3358132243156433], [0.08242035657167435, 0.01879744976758957, 0.005899486131966114, 0.032233826816082, 0.01917821727693081, 0.1440209001302719, 0.0062948050908744335, 0.01711025834083557, 0.0016293213702738285, 0.003401323454454541, 0.0009341266704723239, 0.002140083583071828, 0.005604198668152094, 0.016309814527630806, 0.014715850353240967, 0.026887906715273857, 0.6024219989776611], [0.06489386409521103, 0.06246156245470047, 0.015705158933997154, 0.08354518562555313, 0.02916942536830902, 0.11761227250099182, 0.001904908916912973, 0.017261682078242302, 0.0006470825173892081, 0.004028975032269955, 0.0004721457662526518, 0.0011101263808086514, 0.0024645570665597916, 0.03891764581203461, 0.05551018565893173, 0.02431109920144081, 0.4799841344356537], [0.05320464447140694, 0.36820775270462036, 0.017190994694828987, 0.04847297444939613, 0.04198496788740158, 0.06261450797319412, 0.006829238496720791, 0.04266706481575966, 0.001916001085191965, 0.0015589415561407804, 0.0012890814105048776, 0.0023728711530566216, 0.004649335518479347, 0.035397592931985855, 0.12248072028160095, 0.039672162383794785, 0.14949122071266174], [0.052902545779943466, 0.09165941178798676, 0.005201644264161587, 0.02426348254084587, 0.02413753792643547, 0.10286182165145874, 0.003669243073090911, 0.08981955051422119, 0.001117880456149578, 0.0057914648205041885, 0.0018046097829937935, 0.001220968086272478, 0.0034402632154524326, 0.042269013822078705, 0.04047635197639465, 0.02560885064303875, 0.4837552309036255], [0.04885656759142876, 0.1009073257446289, 0.005332171451300383, 0.06106657534837723, 0.030542418360710144, 0.10069799423217773, 0.0022129337303340435, 0.08104501664638519, 0.0006287834839895368, 0.0015853223158046603, 0.0015828560572117567, 0.0006766709848307073, 0.0028775332029908895, 0.036217909306287766, 0.032263681292533875, 0.02201751619577408, 0.47148874402046204], [0.06930672377347946, 0.013456577435135841, 0.009827055037021637, 0.052757032215595245, 0.028426267206668854, 0.14849211275577545, 0.005456872284412384, 0.031341683119535446, 0.005059079732745886, 0.006431116256862879, 0.002953676041215658, 0.002812746213749051, 0.002837905427441001, 0.014712750911712646, 0.04798843339085579, 0.020268941298127174, 0.5378710627555847], [0.06145855411887169, 0.0314788855612278, 0.002547146752476692, 0.022504519671201706, 0.027759362012147903, 0.11832670867443085, 0.005129773169755936, 0.023371435701847076, 0.0009565095533616841, 0.003626957070082426, 0.001729450887069106, 0.0022472767159342766, 0.01361656654626131, 0.17437542974948883, 0.04600432515144348, 0.029518593102693558, 0.43534862995147705], [0.10421742498874664, 0.008593443781137466, 0.010693793185055256, 0.026931358501315117, 0.04326816648244858, 0.13587771356105804, 0.009053448215126991, 0.014069252647459507, 0.0009046901250258088, 0.003512338735163212, 0.0021375359501689672, 0.013609414920210838, 0.025312013924121857, 0.08871690928936005, 0.09374140202999115, 0.05282706394791603, 0.36653393507003784], [0.04217340052127838, 0.10539554804563522, 0.012835251167416573, 0.032820768654346466, 0.08870282769203186, 0.052243612706661224, 0.013334347866475582, 0.030685320496559143, 0.0011135964887216687, 0.0020238817669451237, 0.0025193262845277786, 0.0031939612235873938, 0.008490652777254581, 0.38058075308799744, 0.05507872998714447, 0.06891923397779465, 0.09988880902528763], [0.03624877706170082, 0.06957023590803146, 0.008349447511136532, 0.010860643349587917, 0.07442658394575119, 0.052332986146211624, 0.014967778697609901, 0.013931812718510628, 0.0004511434817686677, 0.0018752390751615167, 0.006902435794472694, 0.005288832820951939, 0.02761191688477993, 0.48743346333503723, 0.05784441903233528, 0.05673948675394058, 0.0751648098230362], [0.06921204924583435, 0.08072835952043533, 0.023399068042635918, 0.09582699090242386, 0.040376268327236176, 0.1011066660284996, 0.006753998808562756, 0.045654281973838806, 0.0023511715698987246, 0.0034443784970790148, 0.0007463614456355572, 0.002785453572869301, 0.005523886065930128, 0.04404120519757271, 0.09558948874473572, 0.030839793384075165, 0.35162055492401123], [0.07802397757768631, 0.02855823189020157, 0.006897787097841501, 0.0347200408577919, 0.01938328891992569, 0.13813358545303345, 0.0060648503713309765, 0.02153022773563862, 0.0018624690128490329, 0.002953766845166683, 0.0010177132207900286, 0.0019952470902353525, 0.00538874976336956, 0.017024986445903778, 0.01687956601381302, 0.02743472531437874, 0.5921308398246765]], [[0.12370415776968002, 0.05168773606419563, 0.019949287176132202, 0.02859216183423996, 0.035967256873846054, 0.10286502540111542, 0.037223875522613525, 0.04995882883667946, 0.015421982854604721, 0.009567796252667904, 0.0077704149298369884, 0.03447843715548515, 0.00776065606623888, 0.026462867856025696, 0.03073573112487793, 0.09401623904705048, 0.3238374888896942], [0.09537373483181, 0.06633473187685013, 0.0350516214966774, 0.029584717005491257, 0.06279600411653519, 0.11010917276144028, 0.011291020549833775, 0.08926233649253845, 0.004879932850599289, 0.003855386981740594, 0.0046134451404213905, 0.01768369972705841, 0.0058377026580274105, 0.13560399413108826, 0.04224216192960739, 0.045280978083610535, 0.24019929766654968], [0.06309036910533905, 0.04993264749646187, 0.05123918503522873, 0.05009358748793602, 0.06198710948228836, 0.14061841368675232, 0.02180350013077259, 0.04718949273228645, 0.019192133098840714, 0.01830977201461792, 0.011515054851770401, 0.037763889878988266, 0.03506952524185181, 0.019696788862347603, 0.012383409775793552, 0.05448092147707939, 0.30563420057296753], [0.05686427652835846, 0.042449500411748886, 0.0448540598154068, 0.02316105179488659, 0.04513833671808243, 0.1752626746892929, 0.019468480721116066, 0.028752222657203674, 0.0029051422607153654, 0.007733563426882029, 0.00238519674167037, 0.017475394532084465, 0.0071622636169195175, 0.01643385738134384, 0.060868967324495316, 0.06761737912893295, 0.3814677298069], [0.07418618351221085, 0.05092902481555939, 0.02540668472647667, 0.018874136731028557, 0.10563165694475174, 0.16271989047527313, 0.0174328051507473, 0.028877412900328636, 0.004686068743467331, 0.007710880134254694, 0.004986629355698824, 0.007267611566931009, 0.0077977231703698635, 0.01545229647308588, 0.04457370564341545, 0.13209405541419983, 0.29137325286865234], [0.038837235420942307, 0.014286251738667488, 0.012107858434319496, 0.028067177161574364, 0.01799658313393593, 0.22929827868938446, 0.006028233096003532, 0.007320329546928406, 0.0020114958751946688, 0.0027499946299940348, 0.0010592396138235927, 0.0038445964455604553, 0.00364549714140594, 0.006036787759512663, 0.01482308842241764, 0.022002650424838066, 0.5898846983909607], [0.06896131485700607, 0.03555179014801979, 0.022911882027983665, 0.011271053925156593, 0.09091568738222122, 0.14412303268909454, 0.014207595027983189, 0.02522299811244011, 0.007630687206983566, 0.03770454227924347, 0.009067481383681297, 0.007037438917905092, 0.013165277428925037, 0.014967327006161213, 0.01394845824688673, 0.10577140003442764, 0.37754204869270325], [0.09180855005979538, 0.06477798521518707, 0.014983931556344032, 0.00583334406837821, 0.04244915023446083, 0.15888887643814087, 0.00950475875288248, 0.02632913924753666, 0.008645998314023018, 0.005573745351284742, 0.006821317598223686, 0.00951241236180067, 0.007657486479729414, 0.00629050238057971, 0.010940399952232838, 0.05881630629301071, 0.47116607427597046], [0.059988416731357574, 0.02555585280060768, 0.04017016291618347, 0.014198054559528828, 0.05491689220070839, 0.16865041851997375, 0.015557974576950073, 0.0628555417060852, 0.022233573719859123, 0.031160471960902214, 0.006378015968948603, 0.02273293025791645, 0.01565290242433548, 0.007563366089016199, 0.018092427402734756, 0.05336324870586395, 0.38092976808547974], [0.059566959738731384, 0.021596504375338554, 0.016832364723086357, 0.014045951887965202, 0.027499182149767876, 0.1577230542898178, 0.009736486710608006, 0.02671257220208645, 0.010008825920522213, 0.010707470588386059, 0.005160296335816383, 0.015467955730855465, 0.010465607978403568, 0.013988260179758072, 0.0070463209412992, 0.03754159435629845, 0.5559006333351135], [0.04122872278094292, 0.020692793652415276, 0.03250832483172417, 0.011762970127165318, 0.033964332193136215, 0.14484849572181702, 0.014762752689421177, 0.023008543998003006, 0.005731962155550718, 0.01493757963180542, 0.0046623144298791885, 0.014016806147992611, 0.023958081379532814, 0.010572942905128002, 0.005208499729633331, 0.05188935995101929, 0.5462455153465271], [0.06198747083544731, 0.020698051899671555, 0.021408647298812866, 0.019924774765968323, 0.0478392019867897, 0.16604115068912506, 0.0156638715416193, 0.048223741352558136, 0.010136082768440247, 0.014790532179176807, 0.006575975101441145, 0.02032979391515255, 0.023279409855604172, 0.014129296876490116, 0.03831581026315689, 0.09005358815193176, 0.38060262799263], [0.04961859807372093, 0.009266924113035202, 0.02130717784166336, 0.015232698991894722, 0.02257649041712284, 0.15559034049510956, 0.008679257705807686, 0.01640096679329872, 0.002343894448131323, 0.006396285258233547, 0.0029012570157647133, 0.01258983463048935, 0.0076808868907392025, 0.013090922497212887, 0.004788919351994991, 0.05064983665943146, 0.6008856892585754], [0.08894689381122589, 0.11963480710983276, 0.00848090834915638, 0.011740141548216343, 0.036095984280109406, 0.13097618520259857, 0.014238802716135979, 0.028808172792196274, 0.005083990283310413, 0.005628752522170544, 0.005732731893658638, 0.013391554355621338, 0.0090302349999547, 0.062133755534887314, 0.07100241631269455, 0.09445412456989288, 0.294620543718338], [0.09765398502349854, 0.17116571962833405, 0.011708146892488003, 0.0325043760240078, 0.047246161848306656, 0.16239526867866516, 0.00592730613425374, 0.0343983992934227, 0.0012838750844821334, 0.0014029490994289517, 0.0013847448863089085, 0.008026215247809887, 0.003997812047600746, 0.021489854902029037, 0.07712189108133316, 0.07945351302623749, 0.24283987283706665], [0.08083250373601913, 0.058451950550079346, 0.015023267827928066, 0.020212680101394653, 0.07815244793891907, 0.15464477241039276, 0.018740003928542137, 0.029815178364515305, 0.0035036602057516575, 0.005559953395277262, 0.004104208201169968, 0.006803763564676046, 0.006555160041898489, 0.0208736602216959, 0.04519416764378548, 0.13131029903888702, 0.32022231817245483], [0.04183836281299591, 0.020509134978055954, 0.012057672254741192, 0.021998006850481033, 0.013729281723499298, 0.20313502848148346, 0.006981987040489912, 0.01100597158074379, 0.002951273461803794, 0.004215042106807232, 0.0015900008147582412, 0.005499797873198986, 0.0039375703781843185, 0.01006944291293621, 0.015809722244739532, 0.022304894402623177, 0.6023667454719543]], [[0.09217434376478195, 0.01029572170227766, 0.004222307354211807, 0.010631819255650043, 0.09989208728075027, 0.12679624557495117, 0.07864208519458771, 0.030379166826605797, 0.004586360417306423, 0.017461707815527916, 0.007018375676125288, 0.010937693528831005, 0.014272536151111126, 0.038365039974451065, 0.015218242071568966, 0.08853885531425476, 0.35056743025779724], [0.16218571364879608, 0.027593111619353294, 0.019497962668538094, 0.006416808348149061, 0.02580380253493786, 0.28689098358154297, 0.005873828660696745, 0.01716110110282898, 0.004827356897294521, 0.00312576862052083, 0.002213965402916074, 0.018400847911834717, 0.003752587828785181, 0.0015762826660647988, 0.002207598416134715, 0.020582908764481544, 0.3918893337249756], [0.16937676072120667, 0.006558865308761597, 0.011927736923098564, 0.005331447813659906, 0.0457160510122776, 0.2521686553955078, 0.01142638549208641, 0.01029928121715784, 0.0010014775907620788, 0.002827240386977792, 0.004152842331677675, 0.003966393880546093, 0.0013267864705994725, 0.0018784726271405816, 0.001823452184908092, 0.034235067665576935, 0.4359831213951111], [0.20386584103107452, 0.00421647634357214, 0.0043199737556278706, 0.003556173061951995, 0.03739621117711067, 0.18967270851135254, 0.015377399511635303, 0.00518737593665719, 0.0004753521643579006, 0.001195851480588317, 0.003994113299995661, 0.005302709061652422, 0.0019046771340072155, 0.0017586974427103996, 0.001363606657832861, 0.02495277114212513, 0.4954601526260376], [0.1867794394493103, 0.003045740770176053, 0.0018377236556261778, 0.0010924587259069085, 0.029036954045295715, 0.24335414171218872, 0.007164792623370886, 0.0018421892309561372, 0.00036586084752343595, 0.0006596922175958753, 0.0012770663015544415, 0.0015895301476120949, 0.0005377359921112657, 0.004273014608770609, 0.0010580922244116664, 0.023598505184054375, 0.49248701333999634], [0.07912898063659668, 0.023930326104164124, 0.008517002686858177, 0.02228306606411934, 0.04254854470491409, 0.2320065051317215, 0.0067513007670640945, 0.005994466599076986, 0.0027796365320682526, 0.0055109839886426926, 0.006305573508143425, 0.004741115961223841, 0.011242846958339214, 0.02994663268327713, 0.011503446847200394, 0.047982871532440186, 0.4588266909122467], [0.21876876056194305, 0.0016018610913306475, 0.0009902993915602565, 0.002013674471527338, 0.04158106818795204, 0.20318831503391266, 0.01979636773467064, 0.002466462319716811, 0.0003028736973647028, 0.0021512415260076523, 0.005787258502095938, 0.0007180995307862759, 0.0005058139795437455, 0.0035508996807038784, 0.0006400583079084754, 0.03213690593838692, 0.46380001306533813], [0.23379363119602203, 0.00696832500398159, 0.003762350184842944, 0.002761867130175233, 0.02958383411169052, 0.17446808516979218, 0.013547205366194248, 0.016702087596058846, 0.001295537338592112, 0.0015383498976007104, 0.0010886257514357567, 0.002103739185258746, 0.00045508245239034295, 0.0003707348951138556, 0.0005384904216043651, 0.0309764314442873, 0.4800456166267395], [0.26976969838142395, 0.004268911201506853, 0.0023977053351700306, 0.002274835016578436, 0.02811283990740776, 0.21327465772628784, 0.010277357883751392, 0.014667765237390995, 0.00159757724031806, 0.010519957169890404, 0.009838239289820194, 0.0010804589837789536, 0.0004669401387218386, 0.002512978622689843, 0.0015414294321089983, 0.03186921030282974, 0.3955293893814087], [0.22487643361091614, 0.0034979116171598434, 0.004005129914730787, 0.0024938464630395174, 0.025920145213603973, 0.14548158645629883, 0.0032364237122237682, 0.007318451534956694, 0.0012782450066879392, 0.006118823308497667, 0.004478022921830416, 0.0021149776875972748, 0.0006191976717673242, 0.0040082745254039764, 0.0009371704654768109, 0.015349403023719788, 0.5482660531997681], [0.27352502942085266, 0.011307453736662865, 0.0033561536110937595, 0.0056943632662296295, 0.040880490094423294, 0.14947816729545593, 0.00876670889556408, 0.031186124309897423, 0.0013454932486638427, 0.009938974864780903, 0.011698639020323753, 0.0020430576987564564, 0.0010831337422132492, 0.004215105436742306, 0.0021762230899184942, 0.04008464887738228, 0.40322017669677734], [0.21187709271907806, 0.00441643875092268, 0.006386468652635813, 0.006638223771005869, 0.029575645923614502, 0.22474423050880432, 0.008728131651878357, 0.009293664246797562, 0.002072548493742943, 0.004828551784157753, 0.007077486719936132, 0.004105865955352783, 0.0015242998488247395, 0.0022253114730119705, 0.001978340558707714, 0.024776633828878403, 0.449751079082489], [0.19584783911705017, 0.0014641594607383013, 0.002989205066114664, 0.0035905898548662663, 0.025037473067641258, 0.19499947130680084, 0.012635748833417892, 0.011661720462143421, 0.0018115087877959013, 0.0020075279753655195, 0.003135213628411293, 0.0017154880333691835, 0.0012190332636237144, 0.0013953271554782987, 0.0009232677984982729, 0.021995574235916138, 0.5175708532333374], [0.12894129753112793, 0.0036925708409398794, 0.026925930753350258, 0.010748541913926601, 0.0447789803147316, 0.2390085905790329, 0.020872654393315315, 0.017046010121703148, 0.02072129026055336, 0.006644919514656067, 0.00474958959966898, 0.03024151176214218, 0.013554995879530907, 0.008531776256859303, 0.01310710608959198, 0.03750593587756157, 0.37292829155921936], [0.19888976216316223, 0.0009588186512701213, 0.002317527076229453, 0.002057748381048441, 0.029146317392587662, 0.2623346447944641, 0.020306168124079704, 0.0063745854422450066, 0.0005120097193866968, 0.0012257074704393744, 0.0010052305879071355, 0.004303812049329281, 0.0006010336219333112, 0.002305266447365284, 0.005656236782670021, 0.02642706409096718, 0.43557819724082947], [0.19643855094909668, 0.0022402857430279255, 0.0013268039328977466, 0.0010910843266174197, 0.025268051773309708, 0.22859534621238708, 0.005574515555053949, 0.0008791468571871519, 0.0003136991581413895, 0.0005366941331885755, 0.0014128806069493294, 0.001436950988136232, 0.00048541772412136197, 0.003920775838196278, 0.0009428694611415267, 0.026437830179929733, 0.5030990242958069], [0.06977857649326324, 0.022613180801272392, 0.009567172266542912, 0.01634948141872883, 0.03962251916527748, 0.2031816691160202, 0.008679838851094246, 0.009603938087821007, 0.00411677360534668, 0.006534968037158251, 0.008836790919303894, 0.006859978195279837, 0.012838892638683319, 0.01779688335955143, 0.008137007243931293, 0.06173522770404816, 0.4937470257282257]], [[0.06071065738797188, 0.005993315484374762, 0.002100145211443305, 0.0039451769553124905, 0.01203045342117548, 0.30777186155319214, 0.003518411424010992, 0.0036679143086075783, 0.0005892623448744416, 0.0012584856012836099, 0.000384127110010013, 0.0006766713340766728, 0.0007648041937500238, 0.0036777846980839968, 0.0016422122716903687, 0.01685008592903614, 0.5744186043739319], [0.04719063639640808, 0.05084172636270523, 0.00043499033199623227, 0.0007346989586949348, 0.0071805790066719055, 0.2747330069541931, 0.0014744203072041273, 0.001539004733785987, 4.597450606524944e-05, 6.24971289653331e-05, 3.9955270040081814e-05, 0.00022874391288496554, 0.0002615780394989997, 0.00335508375428617, 0.0026117386296391487, 0.00906157772988081, 0.6002036929130554], [0.05941270664334297, 0.0027416797820478678, 0.1165560781955719, 0.0026609753258526325, 0.007620663847774267, 0.22892285883426666, 0.0017370828427374363, 0.0035178563557565212, 0.0016399899031966925, 0.0002243980998173356, 0.00011261692270636559, 0.030560387298464775, 0.0027419845573604107, 0.0038046056870371103, 0.0004577446379698813, 0.006262294948101044, 0.5310260057449341], [0.03758944943547249, 0.0021257554180920124, 0.0004273749073036015, 0.08792594820261002, 0.009062626399099827, 0.2502437233924866, 0.0012578304158523679, 0.0002471118641551584, 4.035003803437576e-05, 0.00018804235151037574, 0.0001052451625582762, 0.0009040958248078823, 0.0009404831216670573, 0.0009062686585821211, 0.0012067172210663557, 0.010624272748827934, 0.5962047576904297], [0.06279683858156204, 0.003237012540921569, 0.0006043597240932286, 0.003667674493044615, 0.06511269509792328, 0.30072277784347534, 0.0010052563156932592, 0.0011904301354661584, 0.0001500878861406818, 0.00016841362230479717, 0.00024061593285296112, 0.00023623941524419934, 0.00019879073079209775, 0.001370933372527361, 0.00114825286436826, 0.056080300360918045, 0.502069354057312], [0.07354142516851425, 0.004827212076634169, 0.004794343840330839, 0.007723597809672356, 0.011612724512815475, 0.2756904363632202, 0.006322827190160751, 0.006366596091538668, 0.0010513842571526766, 0.006192200817167759, 0.0011785640381276608, 0.0024822682607918978, 0.001988206058740616, 0.006846142001450062, 0.0048943739384412766, 0.01784326881170273, 0.5666443705558777], [0.04026231914758682, 0.0011627699714154005, 0.0003931055252905935, 0.001087275450117886, 0.0023066415451467037, 0.22608205676078796, 0.17454729974269867, 0.003293102839961648, 0.0004021101340185851, 0.0024012799840420485, 0.000719082192517817, 0.0004336552519816905, 0.0001131233002524823, 0.00040869315853342414, 0.00016185553977265954, 0.004767320118844509, 0.5414584279060364], [0.040455207228660583, 0.0005695411236956716, 0.0003079829039052129, 0.00011687142978189513, 0.0014687207294628024, 0.3166678845882416, 0.000995679758489132, 0.03327002376317978, 5.088522084406577e-05, 6.071432289900258e-05, 9.646220860304311e-05, 0.0002320229832548648, 8.142741717165336e-05, 0.00039537076372653246, 0.00020100042456761003, 0.002598482184112072, 0.6024317145347595], [0.044948380440473557, 0.00045607989886775613, 0.008140361867845058, 0.00029266602359712124, 0.0026908651925623417, 0.21937167644500732, 0.0004896078025922179, 0.0006293431506492198, 0.05294299125671387, 0.002309816423803568, 0.0005903199198655784, 0.002357418416067958, 3.5643275623442605e-05, 0.0008423938998021185, 0.00023490306921303272, 0.0028432777617126703, 0.6608241200447083], [0.048958178609609604, 0.000312407617457211, 0.00029904450639151037, 0.00016691783093847334, 0.0017774318112060428, 0.21952059864997864, 0.002098745433613658, 0.0006520473398268223, 0.0011860099621117115, 0.12675011157989502, 0.0029347743839025497, 0.00031626070267520845, 3.3728760172380134e-05, 0.0005998852429911494, 0.0003074586275033653, 0.0024159059394150972, 0.5916704535484314], [0.06700235605239868, 0.00013843220949638635, 0.0004083953099325299, 0.00012414902448654175, 0.0014951820485293865, 0.21366043388843536, 0.0014976736856624484, 0.0012823984725400805, 0.0015024375170469284, 0.015078268945217133, 0.2367810606956482, 0.0013315415708348155, 0.0005292760324664414, 0.0003578492032829672, 5.584410246228799e-05, 0.001905997865833342, 0.4568485915660858], [0.0814596489071846, 0.0009481796878390014, 0.06021283566951752, 0.0007426660740748048, 0.005278753582388163, 0.23333629965782166, 0.0023815659806132317, 0.0038226440083235502, 0.003907539416104555, 0.0018594606081023812, 0.0009132191771641374, 0.1528458446264267, 0.0032995326910167933, 0.005479456391185522, 0.0003450289077591151, 0.004115714691579342, 0.43905165791511536], [0.04794491082429886, 0.00015255578910000622, 0.0021762007381767035, 0.0002432549954392016, 0.0025970235001295805, 0.2131558656692505, 0.0002462962584104389, 0.0003591200220398605, 2.173665961890947e-05, 0.00037322635762393475, 0.0004065637185703963, 0.0017502045957371593, 0.037724196910858154, 0.0006983450730331242, 8.925204019760713e-05, 0.002232710365206003, 0.6898285150527954], [0.05058467015624046, 0.002287294017150998, 0.0016527429688721895, 0.00027340310043655336, 0.0067225126549601555, 0.28945308923721313, 0.00043579540215432644, 0.0025288064498454332, 0.0001619381655473262, 0.0003799900587182492, 5.5669697758276016e-05, 0.0013177909422665834, 0.0006092790281400084, 0.10780040174722672, 0.0016454693395644426, 0.007200307212769985, 0.526890754699707], [0.045828260481357574, 0.0011943739373236895, 0.00035404518712311983, 0.0006760316318832338, 0.00646353792399168, 0.3626715838909149, 0.00025282244314439595, 0.000831867044325918, 4.908003393211402e-05, 0.00013019477773923427, 9.087694706977345e-06, 0.00021523061150219291, 0.00018817343516275287, 0.002708395244553685, 0.05042584612965584, 0.009012414142489433, 0.518989086151123], [0.03279971331357956, 0.0006102657644078135, 0.0001813363196561113, 0.0003207362606190145, 0.015015557408332825, 0.308258980512619, 0.0006179141346365213, 0.00044857210014015436, 5.541722566704266e-05, 0.00016934963059611619, 7.404344796668738e-05, 8.362637890968472e-05, 8.66898990352638e-05, 0.00037091627018526196, 0.0006369022303260863, 0.011018015444278717, 0.629252016544342], [0.0458177775144577, 0.002479522954672575, 0.001347351004369557, 0.002703036181628704, 0.004566526971757412, 0.31659191846847534, 0.002747335471212864, 0.00280735339038074, 0.0003534806310199201, 0.0019162315875291824, 0.00036681757774204016, 0.0009793095523491502, 0.0006637718761339784, 0.0025868681259453297, 0.001241461024619639, 0.008444419130682945, 0.6043867468833923]], [[0.044367868453264236, 0.16512614488601685, 0.13625440001487732, 0.31255412101745605, 0.09828505665063858, 0.04049234464764595, 0.010004498064517975, 0.01957838609814644, 0.0035724309273064137, 0.01612357795238495, 0.004625924862921238, 0.004319258499890566, 0.01360795833170414, 0.0166512131690979, 0.013530348427593708, 0.018275422975420952, 0.08263102173805237], [0.08244550973176956, 0.0689735934138298, 0.04869594797492027, 0.14798562228679657, 0.11669895052909851, 0.08212398737668991, 0.023060845211148262, 0.06152708828449249, 0.005214149598032236, 0.014654584228992462, 0.00900708045810461, 0.012555188499391079, 0.046070948243141174, 0.043891288340091705, 0.03693199157714844, 0.04601924493908882, 0.1541440188884735], [0.030507633462548256, 0.09955374151468277, 0.05385914817452431, 0.2001010626554489, 0.17252963781356812, 0.05629858002066612, 0.04159669205546379, 0.046018585562705994, 0.006532624829560518, 0.026014329865574837, 0.016285428777337074, 0.006571054924279451, 0.03458636999130249, 0.02076401375234127, 0.036683905869722366, 0.05384775251150131, 0.09824934601783752], [0.03853314742445946, 0.11250994354486465, 0.16761787235736847, 0.2077724039554596, 0.11839184165000916, 0.04058365523815155, 0.01620459370315075, 0.039926208555698395, 0.006939832586795092, 0.024316735565662384, 0.01250495295971632, 0.007514636963605881, 0.0375063382089138, 0.02026820369064808, 0.05551551654934883, 0.02545500360429287, 0.0684390440583229], [0.02291049249470234, 0.23505687713623047, 0.1491617113351822, 0.265537291765213, 0.07375144213438034, 0.016335180029273033, 0.025738069787621498, 0.030096756294369698, 0.007480193395167589, 0.047460369765758514, 0.00855683721601963, 0.009116833098232746, 0.020625103265047073, 0.017555011436343193, 0.027636272832751274, 0.0135910389944911, 0.029390525072813034], [0.02929692156612873, 0.0009633873705752194, 0.0006551833939738572, 0.004511469043791294, 0.011192587204277515, 0.23842374980449677, 0.0005030334577895701, 0.0011049209861084819, 0.00011408302088966593, 0.00034235877683386207, 0.00024166281218640506, 0.00047988712321966887, 0.0006358775426633656, 0.0011693252017721534, 0.0007038986077532172, 0.010919149965047836, 0.6987423300743103], [0.06496106833219528, 0.05078085511922836, 0.024652155116200447, 0.0782616063952446, 0.0876343622803688, 0.0791654959321022, 0.023737598210573196, 0.10699601471424103, 0.015210259705781937, 0.03094310313463211, 0.01472469326108694, 0.019401028752326965, 0.02094276249408722, 0.09679636359214783, 0.06763440370559692, 0.07445339113473892, 0.14370492100715637], [0.0392068587243557, 0.058036863803863525, 0.0335511639714241, 0.12794099748134613, 0.05710645020008087, 0.021445859223604202, 0.02718142606317997, 0.10467368364334106, 0.013741418719291687, 0.05771205201745033, 0.01252827700227499, 0.014438053593039513, 0.031192302703857422, 0.057990942150354385, 0.2378431260585785, 0.062143851071596146, 0.043266624212265015], [0.049456529319286346, 0.019233467057347298, 0.020792359486222267, 0.04881299287080765, 0.05204300582408905, 0.10991540551185608, 0.03506259247660637, 0.05812256783246994, 0.008738023228943348, 0.04388609528541565, 0.026721615344285965, 0.027729446068406105, 0.07926779240369797, 0.03626425564289093, 0.07820361107587814, 0.055059004575014114, 0.2506912350654602], [0.048506539314985275, 0.023433711379766464, 0.02772347629070282, 0.0904025286436081, 0.11463321000337601, 0.06994493305683136, 0.03315139561891556, 0.07128952443599701, 0.01282358355820179, 0.02078206278383732, 0.020384451374411583, 0.01285090297460556, 0.03346916660666466, 0.036476120352745056, 0.1756763607263565, 0.08067435026168823, 0.12777762115001678], [0.045644037425518036, 0.039135802537202835, 0.03729524090886116, 0.05261724442243576, 0.07600222527980804, 0.05369105935096741, 0.08830969780683517, 0.04962446913123131, 0.047225914895534515, 0.08456411212682724, 0.010958589613437653, 0.04282794147729874, 0.052874378859996796, 0.06378886103630066, 0.05715259909629822, 0.06998798996210098, 0.1282997876405716], [0.04924222454428673, 0.04844440892338753, 0.021346427500247955, 0.053123150020837784, 0.0760301798582077, 0.05273916572332382, 0.0806795135140419, 0.10678306221961975, 0.0224954541772604, 0.050921034067869186, 0.023118099197745323, 0.021442927420139313, 0.05915195494890213, 0.076004259288311, 0.06764113903045654, 0.09258555620908737, 0.09825142472982407], [0.06476183235645294, 0.041237201541662216, 0.015534571371972561, 0.04923676326870918, 0.02794267237186432, 0.05419912561774254, 0.0637136697769165, 0.07440148293972015, 0.028766339644789696, 0.04989654943346977, 0.022453758865594864, 0.02427571825683117, 0.06508144736289978, 0.15308848023414612, 0.0842289850115776, 0.04807790368795395, 0.13310350477695465], [0.10877752304077148, 0.07057620584964752, 0.014927428215742111, 0.05798686668276787, 0.019977128133177757, 0.02748640440404415, 0.04380928352475166, 0.1298830360174179, 0.013604188337922096, 0.04071010276675224, 0.012238691560924053, 0.017235036939382553, 0.10952427238225937, 0.16403032839298248, 0.05181689187884331, 0.03839924931526184, 0.07901734858751297], [0.028268348425626755, 0.07644394040107727, 0.035454995930194855, 0.0687192976474762, 0.029142994433641434, 0.007105983793735504, 0.06731705367565155, 0.18147283792495728, 0.01571759022772312, 0.08299970626831055, 0.014936170540750027, 0.01795862428843975, 0.06917810440063477, 0.14168252050876617, 0.12589125335216522, 0.024450156837701797, 0.013260436244308949], [0.03688623011112213, 0.05835831165313721, 0.041105907410383224, 0.043814387172460556, 0.02342292107641697, 0.015359463170170784, 0.11244435608386993, 0.13357578217983246, 0.025959184393286705, 0.13888448476791382, 0.019336247816681862, 0.04728343337774277, 0.060429371893405914, 0.07537706941366196, 0.0939062088727951, 0.037250787019729614, 0.03660591319203377], [0.0341578833758831, 0.0020102716516703367, 0.0010487992549315095, 0.006482187658548355, 0.013011784292757511, 0.23405806720256805, 0.0014428331051021814, 0.002537135034799576, 0.00025094684679061174, 0.0006679276702925563, 0.0005159676074981689, 0.0009502146858721972, 0.0013762739254161716, 0.0025930667761713266, 0.0015992867993190885, 0.02051287703216076, 0.6767845749855042]], [[0.05738327279686928, 0.055491603910923004, 0.02387203648686409, 0.04116933047771454, 0.04689166694879532, 0.16429868340492249, 0.03659815713763237, 0.04946122691035271, 0.010708661749958992, 0.04250524565577507, 0.016627535223960876, 0.02167750522494316, 0.01798597350716591, 0.054529108107089996, 0.0369417704641819, 0.06382069736719131, 0.26003754138946533], [0.03751406446099281, 0.21819673478603363, 0.010907605290412903, 0.017042629420757294, 0.060406189411878586, 0.1420966386795044, 0.013146615587174892, 0.09392905980348587, 0.00159148417878896, 0.00743334274739027, 0.004545362200587988, 0.009231708012521267, 0.004895106423646212, 0.04240640252828598, 0.036235347390174866, 0.051059357821941376, 0.2493622750043869], [0.038532011210918427, 0.011077319271862507, 0.05197183042764664, 0.030520759522914886, 0.04588405415415764, 0.2059415727853775, 0.05581115558743477, 0.03547388315200806, 0.0023273471742868423, 0.003956158179789782, 0.003639434464275837, 0.07142696529626846, 0.04253057762980461, 0.018687592819333076, 0.07854823768138885, 0.04174164682626724, 0.2619294822216034], [0.07468872517347336, 0.00473587354645133, 0.03362831473350525, 0.07733011245727539, 0.019113685935735703, 0.15557852387428284, 0.10145312547683716, 0.0801960825920105, 0.00840007234364748, 0.047975193709135056, 0.01629689894616604, 0.05598383769392967, 0.03822004422545433, 0.03496898338198662, 0.0206889808177948, 0.05810825899243355, 0.1726333051919937], [0.040598705410957336, 0.012522788718342781, 0.05839911103248596, 0.05018755421042442, 0.03441091626882553, 0.06958425790071487, 0.054465215653181076, 0.07367762178182602, 0.005139658227562904, 0.015323453582823277, 0.013439379632472992, 0.053629301488399506, 0.01402395498007536, 0.021871818229556084, 0.2726796567440033, 0.10066619515419006, 0.10938045382499695], [0.04206319525837898, 0.02023288421332836, 0.012162432074546814, 0.014633426442742348, 0.01744394190609455, 0.17552991211414337, 0.013653316535055637, 0.03502078726887703, 0.006780627649277449, 0.0120568061247468, 0.005794448312371969, 0.007335635367780924, 0.005470110569149256, 0.02234910987317562, 0.016397923231124878, 0.04088139161467552, 0.5521940588951111], [0.08641067892313004, 0.006891277153044939, 0.0259303729981184, 0.02942809648811817, 0.09314130991697311, 0.20234251022338867, 0.020032940432429314, 0.006323616486042738, 0.004691002424806356, 0.0020626524928957224, 0.0037849810905754566, 0.00988887157291174, 0.004732727073132992, 0.0034457221627235413, 0.00278881611302495, 0.04466486722230911, 0.45343950390815735], [0.06550803035497665, 0.024568088352680206, 0.00920888688415289, 0.04418697953224182, 0.05268491432070732, 0.06748452037572861, 0.0034901730250567198, 0.4561445713043213, 0.0008583339513279498, 0.0018429378978908062, 0.000666521955281496, 0.00123784935567528, 0.0009177779429592192, 0.0015679610660299659, 0.08493245393037796, 0.039627574384212494, 0.14507246017456055], [0.06454122066497803, 0.003946078009903431, 0.015032538212835789, 0.0206178929656744, 0.023399559780955315, 0.2336290329694748, 0.0105253541842103, 0.014209810644388199, 0.006398428697139025, 0.0012207672698423266, 0.010655025951564312, 0.021688411012291908, 0.015665840357542038, 0.008404742926359177, 0.01897183619439602, 0.02666139230132103, 0.5044320225715637], [0.07850382477045059, 0.01725292205810547, 0.022716645151376724, 0.08494717627763748, 0.1054028570652008, 0.14908400177955627, 0.02500387653708458, 0.03599138930439949, 0.018171826377511024, 0.001988933887332678, 0.017166027799248695, 0.009050334803760052, 0.003485155990347266, 0.011776325292885303, 0.05973295494914055, 0.056216951459646225, 0.30350884795188904], [0.08749820291996002, 0.004010623320937157, 0.04493829607963562, 0.009605413302779198, 0.0561782568693161, 0.1581043004989624, 0.04269896820187569, 0.02811299078166485, 0.051168717443943024, 0.019579611718654633, 0.04479196295142174, 0.019607380032539368, 0.003911328036338091, 0.0013212974881753325, 0.00988253578543663, 0.04178475961089134, 0.37680524587631226], [0.05012347176671028, 0.006448861677199602, 0.0892399474978447, 0.009187995456159115, 0.013883772306144238, 0.21019235253334045, 0.02340495027601719, 0.015273140743374825, 0.0029185879975557327, 0.006196311675012112, 0.005119446199387312, 0.07745493203401566, 0.06142386421561241, 0.011323291808366776, 0.010748451575636864, 0.02566545456647873, 0.3813951015472412], [0.058470141142606735, 0.0012986636720597744, 0.03064068965613842, 0.0029171500355005264, 0.010247345082461834, 0.23802581429481506, 0.014549843966960907, 0.008916179649531841, 0.0015193468425422907, 0.0017748173559084535, 0.0027188570238649845, 0.05008504539728165, 0.04519829899072647, 0.008931562304496765, 0.005372831132262945, 0.025770632550120354, 0.493562787771225], [0.04652336239814758, 0.029856983572244644, 0.0274424497038126, 0.008868598379194736, 0.0365728922188282, 0.18993408977985382, 0.023883409798145294, 0.012803173623979092, 0.0020682401955127716, 0.009510383009910583, 0.0036644742358475924, 0.023484263569116592, 0.04739322140812874, 0.11589010804891586, 0.01546296663582325, 0.046122655272483826, 0.3605187237262726], [0.12406604737043381, 0.017814358696341515, 0.02834593877196312, 0.0343850813806057, 0.11674287915229797, 0.1113356500864029, 0.006439072545617819, 0.058566879481077194, 0.0023827902041375637, 0.006000603083521128, 0.0035867374390363693, 0.009339327923953533, 0.020270539447665215, 0.008666911162436008, 0.3012712597846985, 0.059195708483457565, 0.09159016609191895], [0.0765150710940361, 0.02205670066177845, 0.04486748203635216, 0.09622493386268616, 0.1280454844236374, 0.1482638418674469, 0.021583423018455505, 0.0605945885181427, 0.0029292937833815813, 0.005028299987316132, 0.0031007120851427317, 0.012362061068415642, 0.011742843315005302, 0.005947695579379797, 0.14270439743995667, 0.0347338505089283, 0.18329934775829315], [0.03871595114469528, 0.022850530222058296, 0.011493806727230549, 0.015079102478921413, 0.01700671948492527, 0.19618956744670868, 0.023166460916399956, 0.04537046700716019, 0.007371942047029734, 0.012300048023462296, 0.0060295904986560345, 0.008322532288730145, 0.007643932942301035, 0.02461259625852108, 0.012966572307050228, 0.029912983998656273, 0.5209670662879944]], [[0.0783749520778656, 0.07831326127052307, 0.03832679241895676, 0.04980957880616188, 0.021971995010972023, 0.22261588275432587, 0.004572226665914059, 0.004838478751480579, 0.004040203057229519, 0.006548937875777483, 0.0027577579021453857, 0.0034471398685127497, 0.004836366046220064, 0.010989230126142502, 0.009396559558808804, 0.01335019338876009, 0.445810467004776], [0.017102064564824104, 0.10547586530447006, 0.020254159346222878, 0.0526033379137516, 0.009503941982984543, 0.2034689038991928, 0.003281738143414259, 0.0037290414329618216, 0.0023329302202910185, 0.004982030019164085, 0.004155418835580349, 0.001639144611544907, 0.004815217573195696, 0.007332169450819492, 0.0021920648869127035, 0.006978978868573904, 0.5501530170440674], [0.030603250488638878, 0.08505421131849289, 0.025876296684145927, 0.07811041176319122, 0.02467336319386959, 0.20226331055164337, 0.006769763305783272, 0.00767852459102869, 0.0027200141921639442, 0.0028165574185550213, 0.00243714964017272, 0.0023876004852354527, 0.006598169449716806, 0.01078750193119049, 0.008947758004069328, 0.018054421991109848, 0.4842216968536377], [0.0077561065554618835, 0.1990191787481308, 0.027280015870928764, 0.04763927310705185, 0.007589359302073717, 0.1497850865125656, 0.0018586255609989166, 0.002367284381762147, 0.0017007376300171018, 0.0021693091839551926, 0.0027489119675010443, 0.000839072628878057, 0.0020031563472002745, 0.006331780459731817, 0.0014295201981440187, 0.003350179409608245, 0.5361325144767761], [0.024512575939297676, 0.10480829328298569, 0.021504132077097893, 0.06953029334545135, 0.011528299190104008, 0.15865428745746613, 0.0023238856811076403, 0.0022680265828967094, 0.0008068928145803511, 0.001470739021897316, 0.002528903540223837, 0.0009158198954537511, 0.001748603186570108, 0.005172132980078459, 0.002051095711067319, 0.006746260914951563, 0.583429753780365], [0.026865897700190544, 0.06907527148723602, 0.03664369136095047, 0.05770900100469589, 0.027223508805036545, 0.14496299624443054, 0.029318762943148613, 0.0242190882563591, 0.010759851895272732, 0.012599777430295944, 0.019366851076483727, 0.013030802831053734, 0.01323554664850235, 0.02684326469898224, 0.00954874325543642, 0.023700101301074028, 0.4548969268798828], [0.04327428713440895, 0.019233515486121178, 0.0022940565831959248, 0.007850739173591137, 0.014872366562485695, 0.1873849481344223, 0.02711084857583046, 0.03674182668328285, 0.003202066058292985, 0.016088102012872696, 0.0027211604174226522, 0.0129391523078084, 0.0031894457060843706, 0.019633930176496506, 0.05465187504887581, 0.09376391768455505, 0.4550476670265198], [0.11138785630464554, 0.022114140912890434, 0.002733031753450632, 0.004710390232503414, 0.020356658846139908, 0.2619035840034485, 0.011127488687634468, 0.011109165847301483, 0.0032751779071986675, 0.012847065925598145, 0.002932514762505889, 0.00929062906652689, 0.005612463224679232, 0.020851988345384598, 0.015740087255835533, 0.05179985612630844, 0.4322078824043274], [0.049100879579782486, 0.024134190753102303, 0.00327666406519711, 0.015522157773375511, 0.02864372730255127, 0.18172289431095123, 0.07115081697702408, 0.09040261805057526, 0.008742477744817734, 0.013875246979296207, 0.0033585226628929377, 0.012627855874598026, 0.007906043902039528, 0.03704607114195824, 0.03903427720069885, 0.11653082817792892, 0.2969247102737427], [0.08751222491264343, 0.015724971890449524, 0.003191043622791767, 0.007854845374822617, 0.012448487803339958, 0.22643204033374786, 0.03076956793665886, 0.035305239260196686, 0.002941512269899249, 0.0034149158746004105, 0.0006760350079275668, 0.004444656893610954, 0.0014972324715927243, 0.02750213071703911, 0.027850748971104622, 0.07853922247886658, 0.4338950216770172], [0.051150742918252945, 0.03218769654631615, 0.0075988746248185635, 0.022849464789032936, 0.030591312795877457, 0.16207140684127808, 0.07492948323488235, 0.06152982637286186, 0.01041459385305643, 0.008474497124552727, 0.00778644485399127, 0.015087088569998741, 0.014757778495550156, 0.038534220308065414, 0.02081676572561264, 0.07533515244722366, 0.3658846914768219], [0.11541478335857391, 0.017125915735960007, 0.002715824171900749, 0.008635046891868114, 0.029565948992967606, 0.21255694329738617, 0.015044684521853924, 0.016124162822961807, 0.0025178254581987858, 0.010067522525787354, 0.0014706513611599803, 0.003856257302686572, 0.0021045987959951162, 0.019179314374923706, 0.035749129951000214, 0.0835997611284256, 0.42427167296409607], [0.07601144164800644, 0.010904640890657902, 0.0011340380879119039, 0.002406028099358082, 0.01263414230197668, 0.2330855280160904, 0.01757044531404972, 0.016695965081453323, 0.0019328794442117214, 0.005908834747970104, 0.0012932780664414167, 0.003780020633712411, 0.001776746241375804, 0.01273600198328495, 0.01160198450088501, 0.06858831644058228, 0.5219396948814392], [0.05232129618525505, 0.02893669903278351, 0.0013587697176262736, 0.005974622908979654, 0.009844157844781876, 0.1899159550666809, 0.04426492750644684, 0.06435362249612808, 0.00526675907894969, 0.019168656319379807, 0.00962992012500763, 0.009776976890861988, 0.0066198380663990974, 0.02905547432601452, 0.015514196828007698, 0.10048852860927582, 0.4075094759464264], [0.08525975793600082, 0.01826142519712448, 0.0012170427944511175, 0.002808556193485856, 0.012722684070467949, 0.22015228867530823, 0.015451925806701183, 0.01457525696605444, 0.0019970317371189594, 0.009410473518073559, 0.002255208557471633, 0.004093648865818977, 0.0022611310705542564, 0.01598803512752056, 0.011341908015310764, 0.06784344464540482, 0.5143601894378662], [0.13166145980358124, 0.013238254003226757, 0.0013188935117796063, 0.004018242005258799, 0.013743238523602486, 0.2039021998643875, 0.01793399639427662, 0.02015751600265503, 0.0017751867417246103, 0.004306818824261427, 0.003075201064348221, 0.004136306699365377, 0.0015463436720892787, 0.015145291574299335, 0.011440743692219257, 0.06280078738927841, 0.48979949951171875], [0.030895330011844635, 0.04326101392507553, 0.015750331804156303, 0.021871205419301987, 0.024014605209231377, 0.18202140927314758, 0.03537841513752937, 0.030933281406760216, 0.00799644086509943, 0.008381781168282032, 0.011810988187789917, 0.01209690235555172, 0.010953429155051708, 0.02398621290922165, 0.008433916606009007, 0.039104703813791275, 0.49310994148254395]], [[0.030703958123922348, 0.08026109635829926, 0.055248524993658066, 0.06543517112731934, 0.09636179357767105, 0.18540340662002563, 0.0066496701911091805, 0.00925365649163723, 0.0013921057106927037, 0.0042447918094694614, 0.0028939361218363047, 0.002191185485571623, 0.00371675961650908, 0.005726344883441925, 0.003141893772408366, 0.013318723067641258, 0.43405693769454956], [0.015105478465557098, 0.017613952979445457, 0.09474034607410431, 0.15006403625011444, 0.3524269163608551, 0.024569235742092133, 0.027575833722949028, 0.061563797295093536, 0.002459330949932337, 0.004520538728684187, 0.0014973615761846304, 0.002726939506828785, 0.0029138452373445034, 0.01750238612294197, 0.10475493222475052, 0.07680759578943253, 0.043157417327165604], [0.00933297723531723, 0.009308282285928726, 0.04473528638482094, 0.4064996540546417, 0.3548220098018646, 0.025331735610961914, 0.014020196162164211, 0.014642544090747833, 0.00046858034329488873, 0.00201830780133605, 0.0007176092476584017, 0.0010760808363556862, 0.0009928185027092695, 0.005239352583885193, 0.03585318475961685, 0.025404945015907288, 0.049536366015672684], [0.04179785028100014, 0.09820608049631119, 0.049476128071546555, 0.04855666682124138, 0.24496547877788544, 0.1192827895283699, 0.05982362851500511, 0.026716241613030434, 0.0015378937823697925, 0.0011598417768254876, 0.00046310562174767256, 0.003640706418082118, 0.0025909869000315666, 0.011164692230522633, 0.005554365459829569, 0.032090093940496445, 0.2529734969139099], [0.050885267555713654, 0.024528658017516136, 0.047531694173812866, 0.03231116384267807, 0.12187432497739792, 0.10801251232624054, 0.11711611598730087, 0.06821475923061371, 0.010365945287048817, 0.0052177817560732365, 0.0013111922889947891, 0.009758368134498596, 0.007118850480765104, 0.01686929166316986, 0.015161111950874329, 0.050468526780605316, 0.3132544755935669], [0.03247023746371269, 0.010578527115285397, 0.0034409889485687017, 0.00205201655626297, 0.005932250991463661, 0.12276756763458252, 0.015593631193041801, 0.007042814511805773, 0.0016134612960740924, 0.004150238819420338, 0.002204192103818059, 0.004372666124254465, 0.003982724621891975, 0.01013391837477684, 0.015876421704888344, 0.022819306701421738, 0.7349690198898315], [0.02831156738102436, 0.003904211800545454, 0.002761495765298605, 0.0013871940318495035, 0.00996224582195282, 0.03465375304222107, 0.03664959594607353, 0.039297815412282944, 0.006156144198030233, 0.009266429580748081, 0.007154200691729784, 0.04989504814147949, 0.01555453147739172, 0.054404597729444504, 0.3122851252555847, 0.227450892329216, 0.16090521216392517], [0.007543133571743965, 0.003371811006218195, 0.005577814299613237, 0.020648056641221046, 0.02163940668106079, 0.004437945783138275, 0.011976859532296658, 0.010050267912447453, 0.003111207392066717, 0.017442749813199043, 0.010128755122423172, 0.010759841650724411, 0.008171082474291325, 0.05370936915278435, 0.6336877942085266, 0.16361869871616364, 0.014125213027000427], [0.002905930858105421, 0.001255664392374456, 0.0004920958890579641, 0.001592332380823791, 0.004801968578249216, 0.0037239501252770424, 0.005983519833534956, 0.0041330307722091675, 0.0015031417133286595, 0.043343789875507355, 0.8398264050483704, 0.013273095712065697, 0.0027418569661676884, 0.00886316318064928, 0.03073028288781643, 0.02653510309755802, 0.008294652216136456], [0.03452742099761963, 0.020317059010267258, 0.004231309983879328, 0.00663188099861145, 0.03722457215189934, 0.04272837936878204, 0.03484835475683212, 0.01605454832315445, 0.006311750039458275, 0.02441171556711197, 0.23879389464855194, 0.058110561221838, 0.012130232527852058, 0.018589962273836136, 0.04372747242450714, 0.24306052923202515, 0.15830042958259583], [0.048949968069791794, 0.019139187410473824, 0.008974982425570488, 0.0063577014952898026, 0.05684729665517807, 0.061587750911712646, 0.019447995349764824, 0.010690521448850632, 0.002852087141945958, 0.0032429371494799852, 0.0021628057584166527, 0.03203829377889633, 0.012476673349738121, 0.036072175949811935, 0.13512928783893585, 0.32441282272338867, 0.21961748600006104], [0.029226524755358696, 0.00550758745521307, 0.004359984304755926, 0.004855701234191656, 0.01239133719354868, 0.03156403452157974, 0.02324141003191471, 0.016029413789510727, 0.0025108347181230783, 0.009821607731282711, 0.007673188112676144, 0.02511545456945896, 0.02256111614406109, 0.12734410166740417, 0.3216784596443176, 0.20667119324207306, 0.14944800734519958], [0.02853529155254364, 0.007703793700784445, 0.011652608402073383, 0.0038695959374308586, 0.00819175411015749, 0.028392398729920387, 0.009256436489522457, 0.0064859953708946705, 0.0023690643720328808, 0.004144656006246805, 0.0012525646016001701, 0.024535581469535828, 0.014827057719230652, 0.12325999140739441, 0.46731266379356384, 0.12238255888223648, 0.13582801818847656], [0.03622021898627281, 0.006776869762688875, 0.010633915662765503, 0.007060172501951456, 0.011010157875716686, 0.04305669292807579, 0.008371478877961636, 0.008640765212476254, 0.0016417497536167502, 0.004351932555437088, 0.002607339760288596, 0.022533463314175606, 0.03017502650618553, 0.05326566845178604, 0.4024346172809601, 0.13809509575366974, 0.21312475204467773], [0.07248489558696747, 0.010777881368994713, 0.016560960561037064, 0.0070013627409935, 0.01857505738735199, 0.05349167808890343, 0.018433663994073868, 0.01829409971833229, 0.0034310531336814165, 0.004610635340213776, 0.0029523419216275215, 0.022824473679065704, 0.0139393899589777, 0.017035314813256264, 0.05751892551779747, 0.3578282296657562, 0.30423998832702637], [0.08241727203130722, 0.010866271331906319, 0.011166425421833992, 0.007184374146163464, 0.018330715596675873, 0.06126647815108299, 0.026457099243998528, 0.015945803374052048, 0.003387719625607133, 0.0034334110096096992, 0.0016975946491584182, 0.018129175528883934, 0.009662214666604996, 0.019644003361463547, 0.042391326278448105, 0.19957546889781952, 0.4684445559978485], [0.05142481252551079, 0.022902993485331535, 0.01174906361848116, 0.009491492062807083, 0.02239793911576271, 0.12712623178958893, 0.019460739567875862, 0.011683343909680843, 0.0031737652607262135, 0.007567995227873325, 0.0062815239652991295, 0.006782933138310909, 0.0071035162545740604, 0.021224506199359894, 0.04447758197784424, 0.05857189744710922, 0.5685797333717346]], [[0.03630423918366432, 0.0635715052485466, 0.017420198768377304, 0.017204690724611282, 0.029356468468904495, 0.28318309783935547, 0.0033339227084070444, 0.005294162780046463, 0.0012635969324037433, 0.001918925205245614, 0.0007488413830287755, 0.0011345279635861516, 0.0015040450962260365, 0.009411126375198364, 0.0037015650887042284, 0.025056883692741394, 0.49959221482276917], [0.16260512173175812, 0.010797221213579178, 0.0018032575026154518, 0.004801610950380564, 0.006676836870610714, 0.21631526947021484, 0.007187763229012489, 0.004931415896862745, 0.0038833506405353546, 0.005471617914736271, 0.0027984119951725006, 0.0019866765942424536, 0.0025944106746464968, 0.01296512596309185, 0.0027057931292802095, 0.007773307617753744, 0.5447028279304504], [0.10881508886814117, 0.008384935557842255, 0.0009126040968112648, 0.0013111960142850876, 0.00556151382625103, 0.3011237680912018, 0.0017075382638722658, 0.00309007172472775, 0.0021836860105395317, 0.0029744075145572424, 0.0023903604596853256, 0.00044434479787014425, 0.0007747116615064442, 0.0005854342016391456, 0.0005772042204625905, 0.00400684354826808, 0.5551562309265137], [0.07897303253412247, 0.0036757441703230143, 0.0015482052695006132, 0.0005771903088316321, 0.0028730749618262053, 0.26910164952278137, 0.00037934360443614423, 0.0015728872967883945, 0.0015510352095589042, 0.0027189136017113924, 0.0017225542105734348, 0.001303439144976437, 0.0006725042476318777, 0.0015329403104260564, 0.0011234451085329056, 0.0023968543391674757, 0.6282771825790405], [0.08436843752861023, 0.006860983092337847, 0.007373754866421223, 0.0024358059745281935, 0.010425301268696785, 0.287383496761322, 0.004995780996978283, 0.010346144437789917, 0.004033540841192007, 0.003487537382170558, 0.003035750472918153, 0.0026966824661940336, 0.0027679111808538437, 0.0015694338362663984, 0.0005854073679074645, 0.006764776539057493, 0.5608691573143005], [0.06806203722953796, 0.03135818615555763, 0.013740884140133858, 0.02834021858870983, 0.012056627310812473, 0.21008606255054474, 0.007150019984692335, 0.013158382847905159, 0.0031310387421399355, 0.0036161921452730894, 0.002915353048592806, 0.005255159921944141, 0.0058961715549230576, 0.014014017768204212, 0.009096847847104073, 0.01280271727591753, 0.5593200922012329], [0.05397491529583931, 0.017954383045434952, 0.0057105449959635735, 0.0018859361298382282, 0.0033167824149131775, 0.2776744067668915, 0.00037878393777646124, 0.0022018379531800747, 0.000863774330355227, 0.0016336622647941113, 0.0013660927070304751, 0.0008782039512880147, 0.0018899792339652777, 0.0014754757285118103, 0.00025904682115651667, 0.0015956435818225145, 0.6269406080245972], [0.08609501272439957, 0.024013254791498184, 0.00614381255581975, 0.002478852868080139, 0.006837061606347561, 0.286409467458725, 0.001216529868543148, 0.0010869321413338184, 0.0012360174441710114, 0.0007901802891865373, 0.0017680295277386904, 0.0009834604570642114, 0.0008187012281268835, 0.0012795910006389022, 0.0002682885969989002, 0.002193835098296404, 0.5763810873031616], [0.0559111125767231, 0.04286414012312889, 0.021652447059750557, 0.011517901904881, 0.015806913375854492, 0.2401539832353592, 0.0048132725059986115, 0.004066516179591417, 0.00046677980571985245, 0.0008338862098753452, 0.000641520309727639, 0.005796592682600021, 0.011546586640179157, 0.008064459078013897, 0.0060175578109920025, 0.011554975062608719, 0.5582913756370544], [0.07119280099868774, 0.02825033664703369, 0.007759975269436836, 0.004468835424631834, 0.004961616825312376, 0.24966607987880707, 0.0018291305750608444, 0.0007202420383691788, 0.00018307131540495902, 6.907738134032115e-05, 0.00031896811560727656, 0.0010347565403208137, 0.0010209929896518588, 0.002741570584475994, 0.0013762115268036723, 0.002250988269224763, 0.6221553087234497], [0.06412975490093231, 0.02357710525393486, 0.018036337569355965, 0.014830741100013256, 0.019666943699121475, 0.22701337933540344, 0.00554959662258625, 0.0031244121491909027, 0.0012738704681396484, 0.0010478992480784655, 0.0016023418866097927, 0.0039006206206977367, 0.0037242386024445295, 0.0029631485231220722, 0.0010524974204599857, 0.010610111989080906, 0.5978969931602478], [0.16355673968791962, 0.03558534383773804, 0.0030420359689742327, 0.007341710384935141, 0.006299167405813932, 0.2811657190322876, 0.002934026066213846, 0.0029085930436849594, 0.0023634417448192835, 0.004632929340004921, 0.0041608973406255245, 0.0007847181987017393, 0.0018422264838591218, 0.0015747047727927566, 0.0013007082743570209, 0.004102697130292654, 0.4764043688774109], [0.10099668055772781, 0.010239679366350174, 0.0032510163728147745, 0.0016990633448585868, 0.0028407713398337364, 0.30846697092056274, 0.00039296355680562556, 0.000633444229606539, 0.0038916566409170628, 0.0031058788299560547, 0.0013120225630700588, 0.0006737891235388815, 0.000144182238727808, 0.0005591144436039031, 0.00013291991490405053, 0.0016534145688638091, 0.5600064396858215], [0.09509942680597305, 0.03719201311469078, 0.0008026157156564295, 0.0013531070435419679, 0.002584972884505987, 0.2932474613189697, 0.00031401836895383894, 0.0007294680108316243, 0.0005413880571722984, 0.0003883071185555309, 0.0002746000827755779, 0.0002939266851171851, 0.00011680768511723727, 0.0012756098294630647, 0.000340563477948308, 0.0018204450607299805, 0.5636252760887146], [0.08325894176959991, 0.011705056764185429, 0.0029188336338847876, 0.005379001144319773, 0.0035894291941076517, 0.2924269735813141, 0.00013797399878967553, 0.0006575193838216364, 0.0010098866187036037, 0.001138160703703761, 0.0003612799337133765, 0.00035221874713897705, 0.00010781660967040807, 0.000662903010379523, 0.00010220018157269806, 0.0010432010749354959, 0.5951485633850098], [0.08872807025909424, 0.010378829203546047, 0.004770626779645681, 0.0030172790866345167, 0.010918360203504562, 0.30074343085289, 0.0012623807415366173, 0.0031834221445024014, 0.0014607064658775926, 0.0013131804298609495, 0.000561272434424609, 0.000657901109661907, 0.0009141394402831793, 0.0010363048641011119, 0.0002582152374088764, 0.003301574382930994, 0.5674944519996643], [0.046813856810331345, 0.026927905157208443, 0.006217797752469778, 0.014035247266292572, 0.0064947823993861675, 0.23208613693714142, 0.002950971946120262, 0.005583873949944973, 0.0014597863191738725, 0.0017047385917976499, 0.0012043535243719816, 0.001783899962902069, 0.0026031893212348223, 0.007573914714157581, 0.0035315428394824266, 0.007701389025896788, 0.6313266158103943]], [[0.07819581776857376, 0.021316103637218475, 0.01885007694363594, 0.042768582701683044, 0.02139000967144966, 0.13383378088474274, 0.07406137883663177, 0.04500271752476692, 0.016600336879491806, 0.04368807375431061, 0.01613575778901577, 0.023131676018238068, 0.030504867434501648, 0.057738225907087326, 0.03968145325779915, 0.04779645800590515, 0.2893047034740448], [0.025787701830267906, 0.6775758862495422, 0.00938431080430746, 0.011163381859660149, 0.01667904295027256, 0.03576592355966568, 0.005172457545995712, 0.00915320310741663, 0.0010061445645987988, 0.0043524280190467834, 0.000964379112701863, 0.010947947390377522, 0.002282420638948679, 0.09338075667619705, 0.01993996649980545, 0.018800633028149605, 0.05764337256550789], [0.0813535749912262, 0.02318907156586647, 0.007921296171844006, 0.06230924278497696, 0.07751671224832535, 0.13573406636714935, 0.02197255939245224, 0.07903854548931122, 0.0048796203918755054, 0.02273077704012394, 0.0038639074191451073, 0.016557293012738228, 0.007495489437133074, 0.021481256932020187, 0.04403304308652878, 0.13728442788124084, 0.25263911485671997], [0.06774898618459702, 0.03798530995845795, 0.020282501354813576, 0.0446821004152298, 0.05517463758587837, 0.13057076930999756, 0.01678021438419819, 0.13039961457252502, 0.010944287292659283, 0.014239626005291939, 0.002146703191101551, 0.031177179887890816, 0.009462090209126472, 0.019718965515494347, 0.0385446734726429, 0.08517305552959442, 0.28496918082237244], [0.04804590716958046, 0.07092390209436417, 0.03232215344905853, 0.08682459592819214, 0.0896676629781723, 0.05944487825036049, 0.02784722112119198, 0.07739942520856857, 0.006474669557064772, 0.025504015386104584, 0.002752207452431321, 0.02531043440103531, 0.008990122936666012, 0.0694270208477974, 0.09747150540351868, 0.1453625112771988, 0.12623178958892822], [0.046094849705696106, 0.005220800172537565, 0.010228930041193962, 0.016448387876152992, 0.01464660745114088, 0.19336573779582977, 0.019787589088082314, 0.011461975052952766, 0.002690389286726713, 0.007542210631072521, 0.002658133627846837, 0.007871956564486027, 0.00975799560546875, 0.016697313636541367, 0.013124121353030205, 0.03170408681035042, 0.5906989574432373], [0.046438705176115036, 0.02242453210055828, 0.08370458334684372, 0.050721120089292526, 0.1644672006368637, 0.09246817231178284, 0.062308430671691895, 0.031109414994716644, 0.006843531038612127, 0.01903620921075344, 0.003333139466121793, 0.029599690809845924, 0.01567399874329567, 0.011586310341954231, 0.03230729699134827, 0.13965725898742676, 0.18832041323184967], [0.06395271420478821, 0.045170847326517105, 0.020477838814258575, 0.12259449809789658, 0.11375915259122849, 0.11327480524778366, 0.012200245633721352, 0.07797400653362274, 0.00250983121804893, 0.012430147267878056, 0.0030287394765764475, 0.009847691282629967, 0.004158508498221636, 0.00849124789237976, 0.03872442990541458, 0.13721351325511932, 0.2141917645931244], [0.0552852638065815, 0.006764892488718033, 0.021230895072221756, 0.09605869650840759, 0.0979657992720604, 0.15213759243488312, 0.011655131354928017, 0.04333034157752991, 0.0020447473507374525, 0.0039036094676703215, 0.003801587037742138, 0.011738246306777, 0.00924790557473898, 0.0028508096002042294, 0.012775521725416183, 0.12454407662153244, 0.34466487169265747], [0.04476042464375496, 0.0529324971139431, 0.031380537897348404, 0.11571149528026581, 0.12341688573360443, 0.10790596157312393, 0.021579796448349953, 0.08292379230260849, 0.001947203534655273, 0.004011568147689104, 0.003526468062773347, 0.008651640266180038, 0.007263245061039925, 0.011143731884658337, 0.03682798147201538, 0.13766665756702423, 0.20835013687610626], [0.06609877943992615, 0.011207305826246738, 0.02408645860850811, 0.04527438059449196, 0.09612680226564407, 0.17450983822345734, 0.013220920227468014, 0.025088133290410042, 0.004365134984254837, 0.0063519845716655254, 0.0018431111238896847, 0.01032483670860529, 0.009442751295864582, 0.004558308515697718, 0.012644597329199314, 0.058560047298669815, 0.436296671628952], [0.09674254059791565, 0.005215563345700502, 0.014599115587770939, 0.03394586965441704, 0.09662161022424698, 0.15338252484798431, 0.062207192182540894, 0.07948245108127594, 0.01311933621764183, 0.026426028460264206, 0.008538046851754189, 0.020184192806482315, 0.021398348733782768, 0.015886250883340836, 0.034247711300849915, 0.08390562236309052, 0.23409754037857056], [0.07671193033456802, 0.008196957409381866, 0.010688104666769505, 0.08229180425405502, 0.0779353529214859, 0.09794539213180542, 0.06325744837522507, 0.06484543532133102, 0.014743945561349392, 0.029907388612627983, 0.006541416514664888, 0.023688368499279022, 0.018044961616396904, 0.030867859721183777, 0.06403309106826782, 0.10767963528633118, 0.222620889544487], [0.0485214926302433, 0.3804197907447815, 0.008265077136456966, 0.08728306740522385, 0.02862299233675003, 0.03447188436985016, 0.005655527114868164, 0.02615875005722046, 0.0035509984008967876, 0.011976531706750393, 0.0018859875854104757, 0.003956879023462534, 0.002042057691141963, 0.22133132815361023, 0.057372499257326126, 0.02614106982946396, 0.052344001829624176], [0.06859397143125534, 0.1251056045293808, 0.013454563915729523, 0.26045578718185425, 0.08960753679275513, 0.05142602697014809, 0.010446371510624886, 0.06346249580383301, 0.0023150783963501453, 0.007878163829445839, 0.0015996816800907254, 0.005569120403379202, 0.0027524151373654604, 0.04432600364089012, 0.07907150685787201, 0.07652311772108078, 0.0974125936627388], [0.05715678632259369, 0.07761909067630768, 0.036393534392118454, 0.14998765289783478, 0.15644095838069916, 0.061563894152641296, 0.021125858649611473, 0.07638180255889893, 0.006019079592078924, 0.01917964220046997, 0.0037879261653870344, 0.014211255125701427, 0.006795682478696108, 0.02230500429868698, 0.06641585379838943, 0.12556993961334229, 0.09904605895280838], [0.040669869631528854, 0.005191511008888483, 0.012231042608618736, 0.01823076792061329, 0.015570323914289474, 0.2140648066997528, 0.014932086691260338, 0.010993710719048977, 0.0030259573832154274, 0.0072552296333014965, 0.0022951108403503895, 0.008035878650844097, 0.010678200982511044, 0.013934326358139515, 0.010192052461206913, 0.024276195093989372, 0.5884228944778442]], [[0.05911039561033249, 0.062075868248939514, 0.03156694769859314, 0.06221330538392067, 0.08016546070575714, 0.1108221486210823, 0.050059445202350616, 0.04960256814956665, 0.01107475720345974, 0.022383367642760277, 0.004764581099152565, 0.019263580441474915, 0.02263658307492733, 0.0829697847366333, 0.03240036219358444, 0.07922738045454025, 0.21966345608234406], [0.21247364580631256, 0.0016633003251627088, 0.0037230465095490217, 0.003066251054406166, 0.008537931367754936, 0.2106754183769226, 0.02195744961500168, 0.01833348535001278, 0.0032291554380208254, 0.0032637130934745073, 0.010832993313670158, 0.004141135141253471, 0.023864423856139183, 0.0518869012594223, 0.026454279199242592, 0.027674905955791473, 0.36822202801704407], [0.1170354038476944, 0.008852440863847733, 0.010877707041800022, 0.033473413437604904, 0.04271863028407097, 0.1947842538356781, 0.03657672181725502, 0.018253963440656662, 0.011951256543397903, 0.00820974726229906, 0.03528211638331413, 0.014814059250056744, 0.02964416705071926, 0.028514156118035316, 0.025214027613401413, 0.05552715063095093, 0.3282707631587982], [0.16961413621902466, 0.0028249972965568304, 0.011003116145730019, 0.0036910781636834145, 0.015553170815110207, 0.210714653134346, 0.015554695390164852, 0.012184709310531616, 0.0023942149709910154, 0.003066622419282794, 0.006890274118632078, 0.006877948064357042, 0.022997628897428513, 0.03433389961719513, 0.07652781903743744, 0.04528691619634628, 0.36048424243927], [0.13440054655075073, 0.004589374642819166, 0.009984605014324188, 0.009282514452934265, 0.013605855405330658, 0.2372429370880127, 0.022064529359340668, 0.011310569941997528, 0.007782225497066975, 0.005679825320839882, 0.022963685914874077, 0.006331165786832571, 0.013081725686788559, 0.013104669749736786, 0.01928321085870266, 0.0358215793967247, 0.4334709048271179], [0.04666556417942047, 0.023454023525118828, 0.017148422077298164, 0.02822098508477211, 0.04089697450399399, 0.14338961243629456, 0.01714947633445263, 0.02497848868370056, 0.003461215877905488, 0.010259702801704407, 0.004359301645308733, 0.004645883571356535, 0.006427719723433256, 0.020212441682815552, 0.011006129905581474, 0.05156424641609192, 0.5461598038673401], [0.08403540402650833, 0.011188916862010956, 0.017998812720179558, 0.029758742079138756, 0.013361716642975807, 0.1948091983795166, 0.008507179096341133, 0.025202898308634758, 0.005182589869946241, 0.013442782685160637, 0.009616748429834843, 0.0039976900443434715, 0.005999481305480003, 0.0101788230240345, 0.00569236371666193, 0.0268193781375885, 0.534207284450531], [0.13351671397686005, 0.015619692392647266, 0.009757001884281635, 0.021527327597141266, 0.01740565150976181, 0.24112796783447266, 0.012727833352982998, 0.003049428341910243, 0.0034213182516396046, 0.002128435065969825, 0.012512211687862873, 0.007023852318525314, 0.01286623626947403, 0.03880317881703377, 0.006598279811441898, 0.015103433281183243, 0.4468114674091339], [0.07223444432020187, 0.011715260334312916, 0.02271921932697296, 0.06004316732287407, 0.04011603444814682, 0.20245441794395447, 0.009808657690882683, 0.007032168097794056, 0.0009173110593110323, 0.0026661246083676815, 0.004396702162921429, 0.00934657733887434, 0.014064114540815353, 0.009143903851509094, 0.01159647386521101, 0.042184751480817795, 0.4795607030391693], [0.10911501944065094, 0.011577549390494823, 0.01543428748846054, 0.045190151780843735, 0.03684820607304573, 0.19379983842372894, 0.01942138932645321, 0.01109209656715393, 0.001434248755685985, 0.0018025177996605635, 0.00921869557350874, 0.012753933668136597, 0.0170445553958416, 0.024765342473983765, 0.019806314259767532, 0.03366866707801819, 0.4370271563529968], [0.07144639641046524, 0.0184712465852499, 0.02048434689640999, 0.03396090492606163, 0.02015826851129532, 0.19026602804660797, 0.01100657507777214, 0.017268827185034752, 0.004105914384126663, 0.013793163001537323, 0.0030064904130995274, 0.011941209435462952, 0.011806842871010303, 0.02724628336727619, 0.004706390202045441, 0.02398860827088356, 0.5163425803184509], [0.06890681385993958, 0.01175177376717329, 0.023768844082951546, 0.07849679887294769, 0.07197991758584976, 0.1443944275379181, 0.01909230463206768, 0.026939569041132927, 0.006990950088948011, 0.015681469812989235, 0.013039743527770042, 0.005713693797588348, 0.013529456220567226, 0.026711685582995415, 0.016112342476844788, 0.08274385333061218, 0.37414634227752686], [0.06077642738819122, 0.013447821140289307, 0.023332767188549042, 0.1735851764678955, 0.025153188034892082, 0.15057359635829926, 0.008352263830602169, 0.015511436387896538, 0.01089347805827856, 0.028298834338784218, 0.011648795567452908, 0.007024338934570551, 0.00147591857239604, 0.010284277610480785, 0.004302719607949257, 0.02004755474627018, 0.4352914094924927], [0.2553425133228302, 0.04095541313290596, 0.008249004371464252, 0.08020723611116409, 0.01657295413315296, 0.1794290542602539, 0.005951473955065012, 0.05771645903587341, 0.0016079851193353534, 0.010870461352169514, 0.0031703037675470114, 0.004539843183010817, 0.010729492641985416, 0.026005983352661133, 0.01956024579703808, 0.022943416610360146, 0.25614815950393677], [0.1769947111606598, 0.02194240130484104, 0.008900928311049938, 0.38004568219184875, 0.03303895890712738, 0.13657617568969727, 0.003387277480214834, 0.0056865159422159195, 0.0019281645072624087, 0.002405111910775304, 0.002684646053239703, 0.00361964525654912, 0.003452231641858816, 0.008916891179978848, 0.005122688598930836, 0.014341633766889572, 0.19095636904239655], [0.10807199031114578, 0.016321327537298203, 0.013664374127984047, 0.04629247635602951, 0.024646174162626266, 0.21744759380817413, 0.02932748571038246, 0.01930875889956951, 0.011489259079098701, 0.008451804518699646, 0.0218619666993618, 0.011570677161216736, 0.012550865299999714, 0.01765665039420128, 0.018438994884490967, 0.047218918800354004, 0.3756806552410126], [0.053446996957063675, 0.03278815373778343, 0.01651903986930847, 0.02483813464641571, 0.035367682576179504, 0.14846274256706238, 0.03140809386968613, 0.0376521497964859, 0.005705091170966625, 0.014211416244506836, 0.006798711139708757, 0.008461822755634785, 0.011323023587465286, 0.032335586845874786, 0.015722334384918213, 0.058242496103048325, 0.46671658754348755]], [[0.11855211108922958, 0.03213824704289436, 0.005019806791096926, 0.021291332319378853, 0.048577383160591125, 0.20956026017665863, 0.03740254417061806, 0.022976353764533997, 0.0031419831793755293, 0.010348547250032425, 0.00639833090826869, 0.030737197026610374, 0.03500405326485634, 0.018443148583173752, 0.01183451246470213, 0.0639398992061615, 0.32463425397872925], [0.04236356541514397, 0.009522157721221447, 0.005047031678259373, 0.05242271348834038, 0.14519259333610535, 0.12792529165744781, 0.049912191927433014, 0.013300079852342606, 0.003593413857743144, 0.012900722213089466, 0.028431957587599754, 0.011495217680931091, 0.0361589714884758, 0.02703050896525383, 0.03326604515314102, 0.13414053618907928, 0.2672969400882721], [0.04849286377429962, 0.018533306196331978, 0.006264813710004091, 0.057688090950250626, 0.08394952118396759, 0.16646777093410492, 0.03846932575106621, 0.014518988318741322, 0.003650740021839738, 0.00897993054240942, 0.01435227319598198, 0.023732976987957954, 0.03737111762166023, 0.014675910584628582, 0.009945428930222988, 0.08438429981470108, 0.3685225546360016], [0.04851716756820679, 0.004903425928205252, 0.002752875443547964, 0.01679079234600067, 0.11883800476789474, 0.14946286380290985, 0.04165380820631981, 0.009480020962655544, 0.0018810945330187678, 0.011167619377374649, 0.04396054521203041, 0.010009018704295158, 0.032215606421232224, 0.014125246554613113, 0.017079109326004982, 0.16619937121868134, 0.3109634220600128], [0.06724297255277634, 0.023362591862678528, 0.0036815188359469175, 0.029900209978222847, 0.031162533909082413, 0.2566157877445221, 0.017195679247379303, 0.00855940580368042, 0.002877598162740469, 0.01243207510560751, 0.0070714219473302364, 0.009433082304894924, 0.05249335616827011, 0.010504176840186119, 0.015494079329073429, 0.059812381863594055, 0.392161101102829], [0.2934345602989197, 0.006822443101555109, 0.00215534376911819, 0.005177163053303957, 0.02200954407453537, 0.1737348884344101, 0.00446607219055295, 0.005086834542453289, 0.0012508773943409324, 0.004745549988001585, 0.0016889679245650768, 0.0036317273043096066, 0.0019908177200704813, 0.010833099484443665, 0.001841682125814259, 0.03789391741156578, 0.423236608505249], [0.029656430706381798, 0.004711486864835024, 0.006880887318402529, 0.012962688691914082, 0.059013620018959045, 0.21793746948242188, 0.022885045036673546, 0.011049521155655384, 0.0015757667133584619, 0.007874993607401848, 0.00830849353224039, 0.006903044413775206, 0.03362945467233658, 0.009668017737567425, 0.00653208140283823, 0.13111469149589539, 0.4292964041233063], [0.024567430838942528, 0.01515668723732233, 0.012269116006791592, 0.030592605471611023, 0.05917159095406532, 0.11722815781831741, 0.05441455915570259, 0.010900345630943775, 0.004996008705347776, 0.008875802159309387, 0.012675367295742035, 0.013206029310822487, 0.12866218388080597, 0.04152623564004898, 0.016190283000469208, 0.1748260110616684, 0.27474159002304077], [0.08673185110092163, 0.01246169488877058, 0.010726705193519592, 0.019442815333604813, 0.03326912596821785, 0.1729602962732315, 0.015366914682090282, 0.012118536047637463, 0.0018324624979868531, 0.011858762241899967, 0.007122664246708155, 0.01545120682567358, 0.028282558545470238, 0.03463684022426605, 0.0024869136977940798, 0.06273279339075089, 0.47251787781715393], [0.06470704823732376, 0.018387991935014725, 0.010207838378846645, 0.023151932284235954, 0.023169899359345436, 0.16004376113414764, 0.03736792504787445, 0.0038908664137125015, 0.0039817471988499165, 0.009444795548915863, 0.013016154058277607, 0.014863823540508747, 0.10611514747142792, 0.016847215592861176, 0.003295447211712599, 0.06702505052089691, 0.4244832694530487], [0.07790549844503403, 0.014905457384884357, 0.012125233188271523, 0.015968594700098038, 0.028729982674121857, 0.1977558434009552, 0.03699004277586937, 0.013332221657037735, 0.007169391959905624, 0.01903693377971649, 0.007232095580548048, 0.023898987099528313, 0.0527496263384819, 0.02338315360248089, 0.0036288530100136995, 0.09778804332017899, 0.36740005016326904], [0.04300461336970329, 0.016154907643795013, 0.01221612747758627, 0.01532373670488596, 0.0380597785115242, 0.1926020234823227, 0.03283734619617462, 0.006879914551973343, 0.0025568052660673857, 0.008142614737153053, 0.009281523525714874, 0.012912887148559093, 0.05320397764444351, 0.021903397515416145, 0.008857901208102703, 0.07039914280176163, 0.45566317439079285], [0.04776119813323021, 0.011116473004221916, 0.005868729669600725, 0.013920004479587078, 0.03750719875097275, 0.17251361906528473, 0.05512315407395363, 0.00550794554874301, 0.0019473430002108216, 0.012317150831222534, 0.019731692969799042, 0.012161273509263992, 0.05876735970377922, 0.008416365832090378, 0.006894167046993971, 0.0747024193406105, 0.4557439982891083], [0.05798729136586189, 0.017813490703701973, 0.022555608302354813, 0.022823575884103775, 0.04543080925941467, 0.1734987050294876, 0.03261817619204521, 0.009212557226419449, 0.006808888632804155, 0.012530852109193802, 0.01632145792245865, 0.02139977179467678, 0.03470619395375252, 0.006830096244812012, 0.009274334646761417, 0.08742953091859818, 0.4227586090564728], [0.0411643460392952, 0.0206065084785223, 0.022436941042542458, 0.0432203933596611, 0.07705584913492203, 0.1032383069396019, 0.024007629603147507, 0.009174029342830181, 0.006835202220827341, 0.005711646284908056, 0.014805546961724758, 0.01407836563885212, 0.054579220712184906, 0.01999715529382229, 0.029676314443349838, 0.19925740361213684, 0.31415510177612305], [0.064283587038517, 0.0617799311876297, 0.015174387954175472, 0.03542020171880722, 0.03686259686946869, 0.17623238265514374, 0.030231159180402756, 0.00815170630812645, 0.008157358504831791, 0.010933199897408485, 0.0066154273226857185, 0.012424600310623646, 0.056988123804330826, 0.023050829768180847, 0.021189771592617035, 0.10686907172203064, 0.325635701417923], [0.25643521547317505, 0.0075567299500107765, 0.003062648233026266, 0.007606910075992346, 0.029526280239224434, 0.16496920585632324, 0.0056807054206728935, 0.0063934181816875935, 0.0014400056097656488, 0.005676984786987305, 0.0017955005168914795, 0.004410142078995705, 0.0021033119410276413, 0.012932537123560905, 0.0025085622910410166, 0.050190269947052, 0.43771159648895264]]], [[[0.05492445454001427, 0.050527423620224, 0.016146346926689148, 0.026557987555861473, 0.03394630178809166, 0.25710490345954895, 0.0348990336060524, 0.03805714473128319, 0.004329749848693609, 0.01299035269767046, 0.008542565628886223, 0.008725841529667377, 0.006055062171071768, 0.02157316356897354, 0.02175229787826538, 0.04290379211306572, 0.3609636127948761], [0.06324737519025803, 0.12466730922460556, 0.005620605777949095, 0.002487058751285076, 0.07696356624364853, 0.25684231519699097, 0.013311256654560566, 0.017447078600525856, 0.00112659961450845, 0.0013477596221491694, 0.001476746634580195, 0.006926354020833969, 0.0014957116218283772, 0.00817064754664898, 0.024953419342637062, 0.055202994495630264, 0.3387131989002228], [0.0250942874699831, 0.0054782298393547535, 0.045088548213243484, 0.2135029286146164, 0.03570173680782318, 0.0784047394990921, 0.13887840509414673, 0.022465722635388374, 0.007496675010770559, 0.01834489032626152, 0.021254686638712883, 0.15159179270267487, 0.03476923704147339, 0.01527084968984127, 0.027893075719475746, 0.04938611760735512, 0.10937808454036713], [0.06733369827270508, 0.0014483859995380044, 0.007896223105490208, 0.09297918528318405, 0.02251267060637474, 0.22495105862617493, 0.15701742470264435, 0.00794935878366232, 0.005865644663572311, 0.01647101528942585, 0.0025583957321941853, 0.016165798529982567, 0.0037545994855463505, 0.010362363420426846, 0.010151999071240425, 0.06755656749010086, 0.28502562642097473], [0.05179198458790779, 0.024335572496056557, 0.008668222464621067, 0.01704741083085537, 0.029682427644729614, 0.2224109023809433, 0.07198283076286316, 0.06572660058736801, 0.0029381539206951857, 0.021356748417019844, 0.0035575253423303366, 0.013242489658296108, 0.007315356284379959, 0.01750747300684452, 0.026291944086551666, 0.0722159892320633, 0.34392836689949036], [0.05798904970288277, 0.028450464829802513, 0.005898802541196346, 0.015686502680182457, 0.018811754882335663, 0.28787633776664734, 0.012590315192937851, 0.018062544986605644, 0.0032872699666768312, 0.008828739635646343, 0.0058807809837162495, 0.00477371271699667, 0.007257959805428982, 0.016064168885350227, 0.013582772575318813, 0.027895180508494377, 0.4670636057853699], [0.04610118269920349, 0.0209010299295187, 0.038900602608919144, 0.07142618298530579, 0.053127750754356384, 0.22317002713680267, 0.010210362263023853, 0.010853316634893417, 0.002863043686375022, 0.010529172606766224, 0.0023224472533911467, 0.007489354349672794, 0.006908827926963568, 0.015637986361980438, 0.02585633285343647, 0.05778804421424866, 0.3959144055843353], [0.03609759360551834, 0.06999843567609787, 0.013111396692693233, 0.0034409386571496725, 0.03849831596016884, 0.18191570043563843, 0.004725795704871416, 0.27749893069267273, 0.0009889377979561687, 0.0024010136257857084, 0.0019663230050355196, 0.004199343267828226, 0.0028466510120779276, 0.006349082104861736, 0.03126445412635803, 0.04018719494342804, 0.28450989723205566], [0.029100054875016212, 0.00028829366783611476, 0.004846139345318079, 0.015825318172574043, 0.015355944633483887, 0.1648808866739273, 0.012747204862535, 0.002285666996613145, 0.018508201465010643, 0.10091648250818253, 0.33992159366607666, 0.0032172019127756357, 0.002418779768049717, 0.002165380399674177, 0.009230531752109528, 0.042154211550951004, 0.23613817989826202], [0.028946490958333015, 0.00029361352790147066, 0.031702280044555664, 0.00984086375683546, 0.04351234436035156, 0.13484330475330353, 0.017738236114382744, 0.012261380441486835, 0.009762237779796124, 0.0272147785872221, 0.3929142653942108, 0.02586783468723297, 0.019396299496293068, 0.0064950850792229176, 0.04184373468160629, 0.04762192443013191, 0.14974525570869446], [0.03256625309586525, 0.0014673301484435797, 0.03473862633109093, 0.007035682909190655, 0.036615535616874695, 0.23450520634651184, 0.01549629308283329, 0.011658959090709686, 0.020040301606059074, 0.06781557202339172, 0.18637904524803162, 0.01930766925215721, 0.006101258564740419, 0.013293158262968063, 0.010978320613503456, 0.036555420607328415, 0.26544541120529175], [0.04611188918352127, 0.011380918323993683, 0.26525717973709106, 0.10584460198879242, 0.030974676832556725, 0.08467632532119751, 0.023287829011678696, 0.009401308372616768, 0.0075584701262414455, 0.009545693174004555, 0.0067485482431948185, 0.04630811884999275, 0.0850779339671135, 0.06690245121717453, 0.05766277760267258, 0.03900153562426567, 0.10425974428653717], [0.052518267184495926, 0.005202009342610836, 0.022593997418880463, 0.011256514117121696, 0.0209489893168211, 0.26084768772125244, 0.02932662144303322, 0.004067163914442062, 0.004349808674305677, 0.002854449674487114, 0.0006111090769991279, 0.021052271127700806, 0.024046873673796654, 0.09791494905948639, 0.04927185922861099, 0.06660798192024231, 0.32652950286865234], [0.05179719999432564, 0.013339119032025337, 0.009473743848502636, 0.008944950066506863, 0.031826626509428024, 0.1621541827917099, 0.004690241068601608, 0.0011426088167354465, 0.0021992730908095837, 0.008313203230500221, 0.0007756202830933034, 0.00483348686248064, 0.003503635758534074, 0.3907932639122009, 0.08325009047985077, 0.03745489567518234, 0.1855078637599945], [0.07291586697101593, 0.012279904447495937, 0.014488104730844498, 0.005473683122545481, 0.048030294477939606, 0.20746049284934998, 0.005324894562363625, 0.016677487641572952, 0.003977668471634388, 0.021832304075360298, 0.0005330170388333499, 0.007837530225515366, 0.00482909893617034, 0.20145563781261444, 0.05651336908340454, 0.05305778980255127, 0.2673129141330719], [0.04638318344950676, 0.012890692800283432, 0.005117181222885847, 0.0145984822884202, 0.024271516129374504, 0.3083648681640625, 0.00882639642804861, 0.020618051290512085, 0.001035885768942535, 0.007296727038919926, 0.0028175637125968933, 0.0026834660675376654, 0.0018245853716507554, 0.005599489435553551, 0.0068059819750487804, 0.019038451835513115, 0.5118274688720703], [0.05376911908388138, 0.020320231094956398, 0.005125189200043678, 0.012427352368831635, 0.017955852672457695, 0.3033220171928406, 0.013612756505608559, 0.01607450097799301, 0.0028776878025382757, 0.007974918000400066, 0.006078172009438276, 0.004972110968083143, 0.006386301480233669, 0.014271961525082588, 0.0129201989620924, 0.026756349951028824, 0.4751553237438202]], [[0.06010963395237923, 0.019402043893933296, 0.00225750170648098, 0.0066352058202028275, 0.00830839667469263, 0.12644533812999725, 0.05132780596613884, 0.06994183361530304, 0.017176911234855652, 0.03511258587241173, 0.02652616798877716, 0.06158192455768585, 0.05111555755138397, 0.05100199207663536, 0.04726435989141464, 0.1056484505534172, 0.26014432311058044], [0.15674811601638794, 0.06921286135911942, 0.031633246690034866, 0.023297525942325592, 0.06417512893676758, 0.24157249927520752, 0.008752339519560337, 0.014449059031903744, 0.0033777719363570213, 0.001980627654120326, 0.0021815982181578875, 0.003847946645691991, 0.0030464858282357454, 0.01314633060246706, 0.010879825800657272, 0.011031820438802242, 0.3406667709350586], [0.10435442626476288, 0.017854342237114906, 0.09636791050434113, 0.025963786989450455, 0.09539144486188889, 0.26826825737953186, 0.003266717540100217, 0.004323599394410849, 0.00785356666892767, 0.0014775311574339867, 0.007661461364477873, 0.0102302897721529, 0.0030002526473253965, 0.004310022108256817, 0.0023625160101801157, 0.008778716437518597, 0.3385350704193115], [0.10735350102186203, 0.010195990093052387, 0.007544748485088348, 0.033978965133428574, 0.04878759756684303, 0.3137122392654419, 0.0034133028239011765, 0.0008546715253032744, 0.0010805095080286264, 0.0005448429728858173, 0.001977508421987295, 0.0021459285635501146, 0.001191091607324779, 0.00373077392578125, 0.003319214563816786, 0.006857763044536114, 0.45331135392189026], [0.1312791407108307, 0.009317593649029732, 0.002946246415376663, 0.010986176319420338, 0.07466404139995575, 0.34336093068122864, 0.0011616081465035677, 0.0011989354388788342, 0.000692495028488338, 0.00018190043920185417, 0.0014907203149050474, 0.0012043564347550273, 0.0003604343219194561, 0.0013812440447509289, 0.0013390898238867521, 0.008470765314996243, 0.40996435284614563], [0.06017989665269852, 0.010681509971618652, 0.0037775945384055376, 0.0061948555521667, 0.01261349581182003, 0.2867957353591919, 0.01826666109263897, 0.00606136117130518, 0.0018489721696823835, 0.0018707761773839593, 0.0025616278871893883, 0.004112894646823406, 0.0022587098646909, 0.004562658257782459, 0.003477483754977584, 0.013713453896343708, 0.5610223412513733], [0.10837893187999725, 0.0040181344375014305, 0.0019348253263160586, 0.004591287579387426, 0.038568995893001556, 0.2602502703666687, 0.0225386805832386, 0.007358863018453121, 0.00945331621915102, 0.001308676553890109, 0.005154704209417105, 0.010147432796657085, 0.002399801043793559, 0.0044327680952847, 0.0016543678939342499, 0.036849889904260635, 0.48095911741256714], [0.12265589833259583, 0.02222045324742794, 0.007925715297460556, 0.0068222759291529655, 0.01923298090696335, 0.19342856109142303, 0.02701791375875473, 0.12163060903549194, 0.01613159105181694, 0.00945738423615694, 0.007818206213414669, 0.010715394280850887, 0.004105136729776859, 0.007477672304958105, 0.007240384351462126, 0.02722335420548916, 0.3888964354991913], [0.08459483832120895, 0.0023306049406528473, 0.005020079202950001, 0.003701030509546399, 0.025082699954509735, 0.24428817629814148, 0.008418732322752476, 0.008860467001795769, 0.045099757611751556, 0.0049299634993076324, 0.011710717342793941, 0.012274499051272869, 0.0041761742904782295, 0.003916935529559851, 0.0028848268557339907, 0.040676526725292206, 0.4920339584350586], [0.09159477800130844, 0.0031451585236936808, 0.0021536683198064566, 0.0036646907683461905, 0.017963126301765442, 0.23269958794116974, 0.010011940263211727, 0.005251389928162098, 0.017171842977404594, 0.0018678589258342981, 0.010364685207605362, 0.015446672216057777, 0.002056316938251257, 0.0036673862487077713, 0.0016510109417140484, 0.01982612907886505, 0.5614639520645142], [0.06111269071698189, 0.001316411653533578, 0.0015456092078238726, 0.003309770720079541, 0.011415895074605942, 0.23104096949100494, 0.010092560201883316, 0.0049157459288835526, 0.010031535290181637, 0.0023369004484266043, 0.021607408300042152, 0.019477542489767075, 0.010382024571299553, 0.002783395815640688, 0.0023568265605717897, 0.031802721321582794, 0.5744719505310059], [0.10760196298360825, 0.008583455346524715, 0.012701143510639668, 0.009512271732091904, 0.03836457431316376, 0.1681610345840454, 0.017170017585158348, 0.015597752295434475, 0.01959960348904133, 0.006884254515171051, 0.04734382405877113, 0.1049526110291481, 0.022991102188825607, 0.03010616824030876, 0.011742996983230114, 0.04200563207268715, 0.33668163418769836], [0.06123384088277817, 0.002368797780945897, 0.006741747725754976, 0.0098830321803689, 0.016504835337400436, 0.18706907331943512, 0.006744857411831617, 0.005044926423579454, 0.005582382436841726, 0.001349471160210669, 0.017641646787524223, 0.063811294734478, 0.03951367735862732, 0.018815070390701294, 0.0066368053667247295, 0.024481486529111862, 0.5265770554542542], [0.11686880886554718, 0.00402156263589859, 0.003919648937880993, 0.011272342875599861, 0.017442969605326653, 0.21305182576179504, 0.006014677230268717, 0.004278813023120165, 0.002376413205638528, 0.0016137256752699614, 0.0050971838645637035, 0.020355962216854095, 0.021226482465863228, 0.0600639171898365, 0.01831851340830326, 0.0336107574403286, 0.46046632528305054], [0.11434617638587952, 0.01297676656395197, 0.004774419125169516, 0.030924255028367043, 0.03376459702849388, 0.21630063652992249, 0.014513116329908371, 0.011706697754561901, 0.002553077880293131, 0.003805497195571661, 0.007503333501517773, 0.014829790219664574, 0.01489944662898779, 0.042947448790073395, 0.08107206225395203, 0.04554180055856705, 0.3475409150123596], [0.12684497237205505, 0.004903525114059448, 0.0007391593535430729, 0.004314830526709557, 0.02711409330368042, 0.2896082103252411, 0.0022965301759541035, 0.002050273586064577, 0.0012777948286384344, 0.0004294212849345058, 0.00262889894656837, 0.002446285681799054, 0.0009196797618642449, 0.0034437132999300957, 0.0024676043540239334, 0.030205149203538895, 0.4983099102973938], [0.06008158251643181, 0.00877205841243267, 0.0021274853497743607, 0.003793890355154872, 0.007614155299961567, 0.2630384564399719, 0.012218951247632504, 0.005531462840735912, 0.0015164624201133847, 0.0011314409784972668, 0.0020858149509876966, 0.0033116894774138927, 0.0017882261890918016, 0.0035539816599339247, 0.002929987385869026, 0.011167987249791622, 0.6093363761901855]], [[0.09851142019033432, 0.049062274396419525, 0.014036817476153374, 0.022187618538737297, 0.034168366342782974, 0.2078109085559845, 0.030278850346803665, 0.08225952088832855, 0.004070022609084845, 0.006410142406821251, 0.007603973615914583, 0.024678608402609825, 0.02414901927113533, 0.042916443198919296, 0.025857361033558846, 0.09408020228147507, 0.23191849887371063], [0.06179143115878105, 0.05292019248008728, 0.011957825161516666, 0.004277168307453394, 0.02812189608812332, 0.21606114506721497, 0.009195659309625626, 0.05039382725954056, 0.0014840448275208473, 0.01093622762709856, 0.0030994222033768892, 0.01644044928252697, 0.04422992840409279, 0.14216509461402893, 0.0372176431119442, 0.05601220205426216, 0.25369590520858765], [0.07023800909519196, 0.020634382963180542, 0.04939304292201996, 0.014752059243619442, 0.053151700645685196, 0.14998053014278412, 0.06090882793068886, 0.07669883221387863, 0.00739658810198307, 0.015089218504726887, 0.00556285260245204, 0.03147685155272484, 0.018978102132678032, 0.03131083771586418, 0.051167476922273636, 0.0988069623708725, 0.24445374310016632], [0.054813917726278305, 0.02358776517212391, 0.02125823311507702, 0.03363833203911781, 0.023784412071108818, 0.05100484937429428, 0.0340893417596817, 0.18357762694358826, 0.0027588913217186928, 0.014536263421177864, 0.002191063016653061, 0.023016834631562233, 0.06848108023405075, 0.08456675708293915, 0.22862178087234497, 0.06753649562597275, 0.08253630250692368], [0.07149109244346619, 0.03141121566295624, 0.02812660112977028, 0.020248815417289734, 0.12286454439163208, 0.053181249648332596, 0.08234308660030365, 0.09055481106042862, 0.0012700808001682162, 0.006593215744942427, 0.0017000242369249463, 0.025200454518198967, 0.03090994618833065, 0.04620698466897011, 0.11123066395521164, 0.20712482929229736, 0.06954237073659897], [0.04688301682472229, 0.009571137838065624, 0.004366095177829266, 0.010351919569075108, 0.009266792796552181, 0.2904019057750702, 0.011170713230967522, 0.01350631657987833, 0.006749126128852367, 0.0050559560768306255, 0.01453305408358574, 0.009468069300055504, 0.009587213397026062, 0.016166994348168373, 0.006630260962992907, 0.01796003058552742, 0.5183314085006714], [0.06336664408445358, 0.024033013731241226, 0.07883380353450775, 0.24471640586853027, 0.09115694463253021, 0.0786580815911293, 0.030307577922940254, 0.014884811826050282, 0.010998538695275784, 0.012136583216488361, 0.02307741902768612, 0.011321164667606354, 0.02870846726000309, 0.022282669320702553, 0.04261389747262001, 0.09261493384838104, 0.13028907775878906], [0.05044578015804291, 0.022979022935032845, 0.04404701292514801, 0.03245943784713745, 0.056006334722042084, 0.031530387699604034, 0.0018934106919914484, 0.4364517629146576, 0.0015692869201302528, 0.0023272554390132427, 0.0009647079277783632, 0.007374147418886423, 0.008281671442091465, 0.01060596015304327, 0.12098215520381927, 0.12331314384937286, 0.04876859486103058], [0.07971055060625076, 0.057737141847610474, 0.02420000731945038, 0.0847058966755867, 0.07396534085273743, 0.11029084026813507, 0.05498989298939705, 0.06431493163108826, 0.00944121927022934, 0.010058590210974216, 0.005863777361810207, 0.008802364580333233, 0.013978966511785984, 0.022817688062787056, 0.09455327689647675, 0.09031074494123459, 0.19425882399082184], [0.09266544878482819, 0.05945428088307381, 0.06593713164329529, 0.24592545628547668, 0.05710284039378166, 0.06258536875247955, 0.014955895021557808, 0.09173836559057236, 0.0053961919620633125, 0.01116347685456276, 0.0030855536460876465, 0.01113335695117712, 0.011621465906500816, 0.029974613338708878, 0.06125107407569885, 0.06466294080018997, 0.11134657263755798], [0.08596207201480865, 0.024363214150071144, 0.15049660205841064, 0.1755158007144928, 0.04912794381380081, 0.10209514945745468, 0.061477694660425186, 0.04428361728787422, 0.007847530767321587, 0.010316201485693455, 0.009495879523456097, 0.02233966812491417, 0.015471159480512142, 0.01881701871752739, 0.016970263794064522, 0.04673648253083229, 0.1586836874485016], [0.09113125503063202, 0.039339687675237656, 0.0777708888053894, 0.06481596827507019, 0.061383236199617386, 0.17830291390419006, 0.01897249184548855, 0.029697546735405922, 0.0067179822362959385, 0.01306645292788744, 0.00513478321954608, 0.014768198132514954, 0.013065881095826626, 0.0160286333411932, 0.019289616495370865, 0.04336485639214516, 0.3071495592594147], [0.07255475223064423, 0.07681399583816528, 0.06435161828994751, 0.1778489351272583, 0.047786593437194824, 0.11867744475603104, 0.009308998472988605, 0.041282281279563904, 0.003275108290836215, 0.014249532483518124, 0.006826211232692003, 0.014143671840429306, 0.022979579865932465, 0.037780772894620895, 0.013701028190553188, 0.03899224102497101, 0.23942714929580688], [0.022991899400949478, 0.06394095718860626, 0.0104147270321846, 0.028084736317396164, 0.016551129519939423, 0.03884495049715042, 0.001771853887476027, 0.033375583589076996, 0.0006344831781461835, 0.003456615377217531, 0.0009853777009993792, 0.0028911607805639505, 0.013758069835603237, 0.6104580163955688, 0.060881298035383224, 0.024649472907185555, 0.06630975753068924], [0.024910595268011093, 0.03873800113797188, 0.04224756732583046, 0.03552424907684326, 0.06643154472112656, 0.045791517943143845, 0.002249030862003565, 0.2092350870370865, 0.001121237059123814, 0.00467316247522831, 0.0008005245472304523, 0.004772384185343981, 0.024114089086651802, 0.12600146234035492, 0.2357870489358902, 0.07402808219194412, 0.06357443332672119], [0.05079144611954689, 0.04092705249786377, 0.0690457671880722, 0.07680334895849228, 0.16666194796562195, 0.03200731799006462, 0.03591359406709671, 0.14774733781814575, 0.0016064203809946775, 0.004141454119235277, 0.001982248853892088, 0.022602269425988197, 0.021043194457888603, 0.012114113196730614, 0.10249049216508865, 0.17305244505405426, 0.04106948897242546], [0.04529716819524765, 0.010286302305758, 0.005173846147954464, 0.010036874562501907, 0.009994525462388992, 0.30703121423721313, 0.009348136372864246, 0.015651285648345947, 0.005187037866562605, 0.004682724829763174, 0.012587008066475391, 0.009236960671842098, 0.010387450456619263, 0.016711287200450897, 0.00603123614564538, 0.017322184517979622, 0.5050347447395325]], [[0.11175383627414703, 0.01215983834117651, 0.004894651006907225, 0.01935357227921486, 0.004420117475092411, 0.18343386054039001, 0.022091688588261604, 0.04649394378066063, 0.0027628920506685972, 0.012852998450398445, 0.010514384135603905, 0.03264923393726349, 0.021274549886584282, 0.013208357617259026, 0.009587238542735577, 0.06083798408508301, 0.43171098828315735], [0.08851038664579391, 0.05544926971197128, 0.0028253637719899416, 0.018555058166384697, 0.0073736743070185184, 0.3673646152019501, 0.0034149005077779293, 0.001094344537705183, 9.391133062308654e-05, 0.0001400603068759665, 0.005402703769505024, 0.0012963601620867848, 0.0017197730485349894, 0.009233405813574791, 0.0016616759821772575, 0.0026819074992090464, 0.43318256735801697], [0.062113359570503235, 0.04228155314922333, 0.0028818752616643906, 0.014419362880289555, 0.005229055415838957, 0.305695503950119, 0.0030287618283182383, 0.001680034096352756, 0.00028105106321163476, 0.0001974763290490955, 0.004629568196833134, 0.0008974609081633389, 0.0028300697449594736, 0.01348836813122034, 0.0029908346477895975, 0.00303293252363801, 0.5343227982521057], [0.08794941008090973, 0.01679067499935627, 0.0095062842592597, 0.02445809729397297, 0.004808679688721895, 0.2674625813961029, 0.0033285238314419985, 0.0013809227384626865, 0.0004901927895843983, 0.0006361810956150293, 0.013149980455636978, 0.0035684313625097275, 0.005901527591049671, 0.014408551156520844, 0.004566309507936239, 0.004290763288736343, 0.5373028516769409], [0.08880102634429932, 0.023715326562523842, 0.0031244561541825533, 0.01761879399418831, 0.005243806634098291, 0.331617534160614, 0.0005341189680621028, 0.00042716640746220946, 0.00011422318493714556, 0.00012394825171213597, 0.001631664577871561, 0.0005474619683809578, 0.0010941196233034134, 0.007213315926492214, 0.0014177410630509257, 0.004227147437632084, 0.5125481486320496], [0.034176163375377655, 0.025108346715569496, 0.017890378832817078, 0.018666565418243408, 0.022874461486935616, 0.3687611520290375, 0.0033733348827809095, 0.003235151059925556, 0.0028486275114119053, 0.0012889961944893003, 0.003186162794008851, 0.0059273699298501015, 0.0021451774518936872, 0.009685766883194447, 0.003336493158712983, 0.010179932229220867, 0.4673159420490265], [0.059717439115047455, 0.008718617260456085, 0.00424532126635313, 0.011485237628221512, 0.023036355152726173, 0.35867419838905334, 0.0017034080810844898, 0.00047747319331392646, 0.00023930499446578324, 0.00043722178088501096, 0.001647170283831656, 0.0009449354838579893, 0.0007843946223147213, 0.005823522340506315, 0.00048487528692930937, 0.03440595045685768, 0.4871746003627777], [0.06182543933391571, 0.05800218507647514, 0.0013325370382517576, 0.01396010909229517, 0.008428232744336128, 0.36836275458335876, 0.0015912739327177405, 0.0007283170125447214, 5.995493120281026e-05, 6.91414243192412e-05, 0.0009131588158197701, 0.00042493682121858, 0.0010865069925785065, 0.007335807662457228, 0.0007334096590057015, 0.0071123866364359856, 0.4680338501930237], [0.06216976046562195, 0.011570347473025322, 0.0017061574617400765, 0.016042716801166534, 0.011449652723968029, 0.32933562994003296, 0.0033493274822831154, 0.0027333467733114958, 0.0005393752944655716, 0.0009476994164288044, 0.00664091482758522, 0.0011925760190933943, 0.002988141030073166, 0.008813360705971718, 0.005539154168218374, 0.007966688834130764, 0.5270151495933533], [0.08522342890501022, 0.021473994478583336, 0.002698184223845601, 0.01507312897592783, 0.014434498734772205, 0.30747905373573303, 0.0021662074141204357, 0.0028657028451561928, 0.00035772379487752914, 0.0007415179279632866, 0.002711555454879999, 0.0014299758477136493, 0.005865112412720919, 0.008476173505187035, 0.0023635118268430233, 0.019674941897392273, 0.506965160369873], [0.057102762162685394, 0.008049605414271355, 0.0014066111762076616, 0.009243165142834187, 0.005573519971221685, 0.26468655467033386, 0.0033015275839716196, 0.00333351525478065, 0.000716119771823287, 0.001193741336464882, 0.00394503865391016, 0.001321903197094798, 0.00441162521019578, 0.010962260887026787, 0.002167967613786459, 0.020042307674884796, 0.6025418639183044], [0.07426515221595764, 0.01340633537620306, 0.0011747119715437293, 0.0049772728234529495, 0.004092011135071516, 0.31324806809425354, 0.0014564926968887448, 0.0009290393791161478, 0.000159004470333457, 0.00011615200492087752, 0.0011107930913567543, 0.0008485152502544224, 0.0016278665279969573, 0.0065729268826544285, 0.0011438658693805337, 0.0055131809785962105, 0.5693585872650146], [0.07998760789632797, 0.03542107343673706, 0.0019239424727857113, 0.014380552805960178, 0.0028396144043654203, 0.2680310904979706, 0.0012810977641493082, 0.00115261971950531, 0.00018823027494363487, 9.876090189209208e-05, 0.0012351395562291145, 0.0015183582436293364, 0.004033614415675402, 0.010564053431153297, 0.0013076483737677336, 0.007957384921610355, 0.5680791735649109], [0.10443604737520218, 0.04233301803469658, 0.002935131313279271, 0.02089785784482956, 0.00400530407205224, 0.23675261437892914, 0.001238507218658924, 0.0007598481024615467, 0.00022756302496418357, 0.00023045195848681033, 0.004403215367347002, 0.0018710355507209897, 0.006621884182095528, 0.017373966053128242, 0.001433564000762999, 0.008926539681851864, 0.54555344581604], [0.06412392109632492, 0.0329987071454525, 0.0021499376744031906, 0.00616077333688736, 0.01435221079736948, 0.34730830788612366, 0.0010239630937576294, 0.0021572019904851913, 0.00043583117076195776, 0.0003726168069988489, 0.0016798896249383688, 0.0017332679126411676, 0.006231465842574835, 0.016822166740894318, 0.002736023860052228, 0.01545694563537836, 0.48425668478012085], [0.08924204856157303, 0.012649084441363811, 0.004075352102518082, 0.022493280470371246, 0.011726850643754005, 0.354025274515152, 0.0005662397597916424, 0.0006026774644851685, 0.0001670580095378682, 0.0001912002480821684, 0.0012441667495295405, 0.001097311731427908, 0.001126245129853487, 0.005349158775061369, 0.0015771737089380622, 0.01282038725912571, 0.4810463786125183], [0.03437429293990135, 0.016420315951108932, 0.0101064033806324, 0.014594812877476215, 0.008897228166460991, 0.40591752529144287, 0.003120128996670246, 0.0017437494825571775, 0.0007712027290835977, 0.0004726433544419706, 0.003109970595687628, 0.003782109823077917, 0.0013037418248131871, 0.006361473351716995, 0.0010534599423408508, 0.006808397825807333, 0.4811626672744751]], [[0.09466733038425446, 0.036128930747509, 0.012711159884929657, 0.03810501471161842, 0.04318820312619209, 0.11371435225009918, 0.028295444324612617, 0.03798550367355347, 0.0038746611680835485, 0.010577002540230751, 0.0032920490484684706, 0.012604041025042534, 0.01696988195180893, 0.05803613364696503, 0.07327327877283096, 0.11993340402841568, 0.29664361476898193], [0.08932965248823166, 0.006543472874909639, 0.03480285033583641, 0.078386589884758, 0.06096872687339783, 0.09996117651462555, 0.03923182934522629, 0.07210574299097061, 0.006217045709490776, 0.039826590567827225, 0.00887929555028677, 0.011703078635036945, 0.014471436850726604, 0.050301387906074524, 0.08613310009241104, 0.06112641468644142, 0.2400115728378296], [0.08368511497974396, 0.04907149821519852, 0.012492823414504528, 0.07269423454999924, 0.08663620799779892, 0.18226535618305206, 0.033205319195985794, 0.01943936012685299, 0.009035024791955948, 0.013435112312436104, 0.009938656352460384, 0.005668943282216787, 0.006514061242341995, 0.006201007403433323, 0.012115638703107834, 0.05917391553521156, 0.33842772245407104], [0.09916909039020538, 0.05402058735489845, 0.020493794232606888, 0.003491200739517808, 0.06812352687120438, 0.19868724048137665, 0.040110599249601364, 0.046714141964912415, 0.006818543653935194, 0.006492686457931995, 0.008500223979353905, 0.0067421807907521725, 0.009078152477741241, 0.011642738245427608, 0.05052078142762184, 0.06786439567804337, 0.3015301525592804], [0.09880141168832779, 0.03355921804904938, 0.01907864212989807, 0.034828588366508484, 0.0800258219242096, 0.17839589715003967, 0.025373974815011024, 0.03610572591423988, 0.012083095498383045, 0.01666494645178318, 0.009061547927558422, 0.009116868488490582, 0.006100695114582777, 0.012997781857848167, 0.0331549271941185, 0.06535784155130386, 0.32929298281669617], [0.041363414376974106, 0.014300820417702198, 0.00434416439384222, 0.010055159218609333, 0.016776856034994125, 0.2765742838382721, 0.005962736904621124, 0.00573048647493124, 0.0019204163691028953, 0.004449529107660055, 0.0022495300509035587, 0.0022802322637289762, 0.0021276623010635376, 0.004409617744386196, 0.006596542429178953, 0.020576488226652145, 0.5802820920944214], [0.06640134751796722, 0.013991924934089184, 0.016210045665502548, 0.02293798141181469, 0.07421839982271194, 0.21697615087032318, 0.007269152440130711, 0.01888142339885235, 0.007483249995857477, 0.020230943337082863, 0.00818304531276226, 0.0052717686630785465, 0.001612558146007359, 0.008933122269809246, 0.030385570600628853, 0.04610458016395569, 0.4349087178707123], [0.09200330078601837, 0.09751677513122559, 0.026860956102609634, 0.06980694830417633, 0.08732589334249496, 0.09591533988714218, 0.025033554062247276, 0.06806787848472595, 0.01025336142629385, 0.019292091950774193, 0.029618127271533012, 0.012090004049241543, 0.008545559830963612, 0.044167689979076385, 0.062293048948049545, 0.05977543815970421, 0.19143401086330414], [0.10924108326435089, 0.02354126237332821, 0.02138102799654007, 0.03885538503527641, 0.08617474883794785, 0.14406751096248627, 0.04927562549710274, 0.028066368773579597, 0.0022861286997795105, 0.013345695100724697, 0.013993234373629093, 0.036691781133413315, 0.023911060765385628, 0.013219507411122322, 0.029378658160567284, 0.08237610012292862, 0.28419482707977295], [0.12565173208713531, 0.03601375222206116, 0.011482601054012775, 0.01541427057236433, 0.07218506187200546, 0.13769379258155823, 0.12805764377117157, 0.020094631239771843, 0.02043960615992546, 0.0019242367707192898, 0.014986865222454071, 0.03517630323767662, 0.04658443480730057, 0.020778557285666466, 0.02039419859647751, 0.08881645649671555, 0.20430584251880646], [0.0650402083992958, 0.023967597633600235, 0.018682966008782387, 0.029241912066936493, 0.06976684927940369, 0.07547250390052795, 0.13434618711471558, 0.04132426530122757, 0.010933544486761093, 0.014409820549190044, 0.013005586341023445, 0.06817317754030228, 0.06447746604681015, 0.07366569340229034, 0.058508116751909256, 0.09224998205900192, 0.14673422276973724], [0.08735943585634232, 0.021404696628451347, 0.008301152847707272, 0.030278651043772697, 0.060391560196876526, 0.1096174418926239, 0.044812846928834915, 0.04788673669099808, 0.02124183066189289, 0.058906007558107376, 0.030481332913041115, 0.02333260327577591, 0.01740931160748005, 0.03599724918603897, 0.0712621659040451, 0.1097424328327179, 0.22157453000545502], [0.08425842970609665, 0.05196823924779892, 0.01481295470148325, 0.024958517402410507, 0.05614212900400162, 0.08614884316921234, 0.021368378773331642, 0.04267384484410286, 0.015345873311161995, 0.09642316401004791, 0.0482834093272686, 0.021196532994508743, 0.00884869135916233, 0.08025355637073517, 0.07449944317340851, 0.08538538962602615, 0.18743251264095306], [0.12797348201274872, 0.0717608779668808, 0.008409661240875721, 0.02817775122821331, 0.032165639102458954, 0.09343598037958145, 0.032573748379945755, 0.0873134583234787, 0.005526531487703323, 0.04168817400932312, 0.028361933305859566, 0.021139798685908318, 0.05775075405836105, 0.019086847081780434, 0.048506516963243484, 0.0903908908367157, 0.20573797821998596], [0.0733613520860672, 0.19821380078792572, 0.01938878931105137, 0.1217501237988472, 0.0522809773683548, 0.04003119468688965, 0.058742787688970566, 0.06952375918626785, 0.01328396238386631, 0.03840255364775658, 0.02649088203907013, 0.029309669509530067, 0.033067263662815094, 0.03764091432094574, 0.039909008890390396, 0.07503025233745575, 0.07357273995876312], [0.10962292551994324, 0.02946149930357933, 0.011373937129974365, 0.02701989933848381, 0.050078921020030975, 0.15242433547973633, 0.01807372458279133, 0.04018617048859596, 0.008731812238693237, 0.012847095727920532, 0.008123182691633701, 0.012753615155816078, 0.009156383574008942, 0.026860743761062622, 0.04966947063803673, 0.08628470450639725, 0.34733155369758606], [0.05885384976863861, 0.023782772943377495, 0.006707319989800453, 0.012944784946739674, 0.02177848108112812, 0.253767192363739, 0.009403773583471775, 0.012157752178609371, 0.002892104210332036, 0.007029763888567686, 0.003899752162396908, 0.004418754018843174, 0.004361076280474663, 0.009976750239729881, 0.01615932211279869, 0.03422410413622856, 0.5176425576210022]], [[0.001597216003574431, 0.0010888691758736968, 0.00027517261332832277, 0.0020068648736923933, 0.9414889216423035, 0.013632871210575104, 0.00018860265845432878, 7.180908141890541e-05, 3.7780096135975327e-06, 1.2620524103112984e-05, 1.2753274859278463e-05, 8.130717105814256e-06, 3.4346605389146134e-05, 7.19059826224111e-05, 0.0005344121600501239, 0.01488632895052433, 0.024085408076643944], [0.06114896759390831, 2.1511525119422004e-05, 9.553787094773725e-06, 1.275887552765198e-05, 0.008136611431837082, 0.20793770253658295, 0.014770599082112312, 1.1632153473328799e-05, 1.4674985493456916e-07, 3.793868245338672e-06, 1.9692738817411737e-07, 7.678414704059833e-07, 2.3901500753709115e-05, 1.1843661923194304e-05, 3.0236522434279323e-05, 0.0008994385716505349, 0.7069804072380066], [1.2758828233927488e-05, 0.9985705614089966, 0.00032352263224311173, 0.00017275713616982102, 3.4326071727264207e-06, 0.000278771884040907, 1.4933882539480692e-06, 0.0002381944068474695, 4.358297474027495e-07, 1.5009277376520913e-07, 6.675934915989501e-09, 2.114528774299629e-09, 1.8588608430292197e-09, 1.146244130723062e-06, 6.255157586565474e-06, 4.0446248021908104e-05, 0.00035008537815883756], [0.007795131765305996, 0.008231713436543941, 0.8588615655899048, 0.008799780160188675, 0.014217483811080456, 0.00677386112511158, 0.0006541183684021235, 0.0009319492965005338, 0.0026697395369410515, 0.0007436027517542243, 4.986490966985002e-05, 2.8160513465991244e-05, 9.676290574134327e-06, 0.0006822654395364225, 0.0005782100488431752, 0.0011534984223544598, 0.08781938999891281], [0.0008652316173538566, 0.0010395119898021221, 0.0002472655614838004, 0.9722172021865845, 0.017621861770749092, 0.0013006130466237664, 2.3168391635408625e-05, 2.9963546694489196e-05, 7.980763257364742e-06, 0.00021454138914123178, 4.360319144325331e-05, 5.326632162905298e-06, 4.095757617506024e-07, 4.568126314552501e-06, 0.00012859825801569968, 0.0006822452996857464, 0.005567888263612986], [0.1985262632369995, 0.01474075112491846, 0.006528144236654043, 0.05863653123378754, 0.05139432102441788, 0.09456676244735718, 0.03374772518873215, 0.010890942998230457, 0.0037438226863741875, 0.0279635488986969, 0.014794271439313889, 0.009605403058230877, 0.010006071999669075, 0.013365905731916428, 0.009359867312014103, 0.014699723571538925, 0.4274299740791321], [0.0076350555755198, 0.00010984271648339927, 2.7250717948845704e-07, 0.00030746450647711754, 0.10917188227176666, 0.8132560849189758, 0.004172114655375481, 0.00021116636344231665, 1.8431549619890575e-07, 0.0001985583221539855, 9.744270755618345e-06, 3.760211620829068e-05, 1.2933514881297015e-06, 2.9484797323675593e-06, 1.0355079211876728e-05, 0.0019106378313153982, 0.06296476721763611], [0.010799450799822807, 0.0019446118967607617, 1.234756268786441e-06, 3.0847397283650935e-05, 0.010550055652856827, 0.3050456643104553, 0.4837709665298462, 0.023241497576236725, 0.00019308336777612567, 8.855057239998132e-05, 0.0005347334081307054, 0.00014109538460616022, 0.0008501917473040521, 0.00011771906429203227, 0.0002578368876129389, 0.0008299760520458221, 0.16160254180431366], [0.00010043421207228675, 0.0015679241623729467, 4.781916231877403e-06, 8.615756428298482e-07, 3.630329592851922e-05, 0.0022133984602987766, 0.0010786060011014342, 0.9920857548713684, 0.0006337010418064892, 0.00020347075769677758, 6.684002437395975e-05, 4.947662091581151e-06, 1.0009127436205745e-05, 3.793423093156889e-05, 4.5509270421462134e-05, 0.00013777922140434384, 0.0017717246664687991], [0.00015304125554393977, 8.466407598461956e-05, 7.790108611516189e-06, 7.969082616909873e-06, 1.9573573808884248e-05, 0.0016463517677038908, 0.00019176682690158486, 0.0011025898857042193, 0.9885159730911255, 0.003889456856995821, 0.000550307915546, 4.26106016675476e-05, 3.0176046493579634e-05, 8.909968892112374e-05, 0.0002622587198857218, 0.0009112894185818732, 0.00249505159445107], [3.786198305988364e-07, 3.1541122780254227e-07, 1.942333405224872e-08, 1.8276036826136988e-06, 7.548153462266782e-07, 9.685644499768387e-07, 1.7563016285748745e-07, 2.9742186598014086e-06, 0.00016379925364162773, 0.9990919828414917, 0.0006966711371205747, 6.955644494155422e-06, 7.145084737203433e-07, 6.311937795544509e-06, 1.2057572348567192e-05, 6.859140739834402e-06, 7.126755008357577e-06], [0.0002487168530933559, 3.3488387998659164e-05, 3.2070838642539456e-06, 7.229291804833338e-05, 0.0078035080805420876, 0.010262292809784412, 0.0007919209310784936, 0.00015300892118830234, 3.140714761684649e-05, 0.0021450479980558157, 0.916835367679596, 0.027766995131969452, 0.001317494548857212, 0.0001260151038877666, 0.0005509829497896135, 0.0027389635797590017, 0.029119325801730156], [4.626235750038177e-07, 1.8588471561997721e-07, 3.185965269381086e-08, 7.52862547415134e-07, 7.679728923903895e-07, 1.4144588931230828e-05, 1.8815489966073073e-06, 4.055457793583628e-06, 5.633152341033565e-06, 0.0007883912185207009, 0.003204405540600419, 0.9945173859596252, 0.0007822447223588824, 0.0006454106769524515, 1.5863381122471765e-05, 2.466835212544538e-06, 1.5875079043325968e-05], [0.0003555626608431339, 4.1871309804264456e-05, 1.7405048993168748e-06, 5.655937911797082e-06, 0.00022071987041272223, 0.0031913111452013254, 0.0011228241492062807, 0.0007875955780036747, 2.5253666535718367e-05, 0.00047865672968328, 0.014527411200106144, 0.05034700408577919, 0.9012476205825806, 0.016907935962080956, 0.0017013873439282179, 0.0006073829717934132, 0.008430149406194687], [0.00019188725855201483, 0.0004514155152719468, 2.8094054869143292e-06, 1.7436619600630365e-05, 1.69546838151291e-05, 0.0008753776783123612, 3.738190935109742e-05, 0.0004106388660147786, 6.597414903808385e-05, 0.00040358758997172117, 6.376560486387461e-05, 0.00039208552334457636, 0.006794970482587814, 0.9816564917564392, 0.004271349404007196, 0.0018578736344352365, 0.0024899987038224936], [0.017882464453577995, 0.0018066894263029099, 0.0018770103342831135, 0.0019488263642415404, 0.0011467074509710073, 0.02131197229027748, 0.00042071411735378206, 0.001222906168550253, 0.0022604733239859343, 0.003915158566087484, 0.0002911341725848615, 0.00012065737246302888, 0.001455330173484981, 0.008467371575534344, 0.7443431615829468, 0.042088188230991364, 0.14944130182266235], [0.15876764059066772, 0.07406556606292725, 0.012406694702804089, 0.06299246847629547, 0.019543107599020004, 0.10335883498191833, 0.01217978447675705, 0.02136153168976307, 0.009941021911799908, 0.05986563116312027, 0.021573254838585854, 0.01842436008155346, 0.014296447858214378, 0.04115384817123413, 0.02285728044807911, 0.08176121115684509, 0.2654513716697693]], [[0.0716644674539566, 0.00916158128529787, 0.0031786905601620674, 0.004454168025404215, 0.02517581358551979, 0.22421753406524658, 0.01660705916583538, 0.04383855685591698, 0.007797046564519405, 0.007048709783703089, 0.012712000869214535, 0.02342839725315571, 0.010872933082282543, 0.038955047726631165, 0.0298390444368124, 0.06463278084993362, 0.4064161479473114], [0.1043185144662857, 0.004875644110143185, 0.0012422438012436032, 0.001792537746950984, 0.06005199998617172, 0.30995044112205505, 0.0011740349000319839, 0.005662152543663979, 0.001053637359291315, 0.000268958363449201, 0.00021264298993628472, 0.0007152891485020518, 0.00017715500143822283, 0.0012499247677624226, 0.0009188043186441064, 0.037308335304260254, 0.46902769804000854], [0.12008944898843765, 0.004021999426186085, 0.016313841566443443, 0.004115682560950518, 0.1717625856399536, 0.21596495807170868, 0.00535806268453598, 0.026927417144179344, 0.004480568692088127, 0.0011868266155943274, 0.00731676584109664, 0.007871197536587715, 0.0011126261670142412, 0.0038428509142249823, 0.004877864848822355, 0.09448159486055374, 0.31027573347091675], [0.10978443175554276, 0.0026010186411440372, 0.0037888996303081512, 0.0011336386669427156, 0.12314842641353607, 0.2684929072856903, 0.002039520535618067, 0.008411646820604801, 0.0020498924423009157, 0.0004102432285435498, 0.0012929014628753066, 0.0020015379413962364, 0.00034785064053721726, 0.0013658541720360518, 0.0022985527757555246, 0.05574702098965645, 0.41508564352989197], [0.17734026908874512, 0.0023614305537194014, 0.00244700163602829, 0.0019938559271395206, 0.050302743911743164, 0.28689685463905334, 0.0024615295697003603, 0.00613999180495739, 0.0015220913337543607, 0.0006257728091441095, 0.0005885378923267126, 0.0026837915647774935, 0.00034930126275867224, 0.0019582901149988174, 0.003668488236144185, 0.05416904017329216, 0.40449103713035583], [0.04479599744081497, 0.009824464097619057, 0.01179259642958641, 0.015486191026866436, 0.009942593052983284, 0.27788272500038147, 0.015024418011307716, 0.009467234835028648, 0.0038325712084770203, 0.02119038626551628, 0.009756703861057758, 0.015964766964316368, 0.014966921880841255, 0.013575199991464615, 0.003983271308243275, 0.012278411537408829, 0.5102354884147644], [0.19888432323932648, 0.0028054085560142994, 0.002295776503160596, 0.0003762210253626108, 0.10208429396152496, 0.17830120027065277, 0.001449825125746429, 0.010441629216074944, 0.0005446577561087906, 0.00024861263227649033, 0.000901641498785466, 0.0013468606630340219, 0.0001750554220052436, 0.0006367761525325477, 0.0019938633777201176, 0.11618901044130325, 0.3813249468803406], [0.14572054147720337, 0.001976665109395981, 0.0007369708619080484, 0.00035893922904506326, 0.038926076143980026, 0.24425439536571503, 0.0009360222611576319, 0.008494241163134575, 0.0004408715176396072, 2.756140565907117e-05, 0.0002184558688895777, 0.0005744592053815722, 8.053221245063469e-05, 0.000521507696248591, 0.0010934758465737104, 0.07962697744369507, 0.47601231932640076], [0.1139085590839386, 0.0062414295971393585, 0.005559136625379324, 0.0030507894698530436, 0.05723130702972412, 0.2372586876153946, 0.002896810183301568, 0.012998626567423344, 0.0008762124343775213, 0.00017956084047909826, 0.0014035082422196865, 0.002728564664721489, 0.0006708639557473361, 0.002411125460639596, 0.004167525563389063, 0.09222273528575897, 0.4561944603919983], [0.08214786648750305, 0.005275574512779713, 0.004067227244377136, 0.000685226870700717, 0.036319974809885025, 0.2440231591463089, 0.001093713566660881, 0.005900007672607899, 0.0005302560166455805, 0.00014635581464972347, 0.0010977822821587324, 0.004019811749458313, 0.0006996829761192203, 0.002117072232067585, 0.0028282382991164923, 0.06111013889312744, 0.5479379892349243], [0.13156551122665405, 0.006756706163287163, 0.004601196385920048, 0.0031938464380800724, 0.03448285162448883, 0.2115485817193985, 0.0024761585518717766, 0.012921423651278019, 0.0013833451084792614, 0.0005812758463434875, 0.003971986472606659, 0.005480531137436628, 0.0016647304873913527, 0.004929868504405022, 0.008746142499148846, 0.08365181088447571, 0.4820440113544464], [0.18648482859134674, 0.003129338612779975, 0.0031922131311148405, 0.0019328311318531632, 0.11183536797761917, 0.17159271240234375, 0.0037087290547788143, 0.014204760082066059, 0.0011066655861213803, 0.00036627199733629823, 0.002142271725460887, 0.0042871166951954365, 0.0008739559561945498, 0.0056211515329778194, 0.015054017305374146, 0.12389109283685684, 0.35057663917541504], [0.13198749721050262, 0.002567496383562684, 0.0010939773637801409, 0.0003306132275611162, 0.057286109775304794, 0.24830353260040283, 0.0006823546136729419, 0.0060861180536448956, 0.00026018323842436075, 5.010480526834726e-05, 0.0005472542834468186, 0.0013800226151943207, 0.00023236511333379894, 0.0017959484830498695, 0.003758862381801009, 0.05600670352578163, 0.48763084411621094], [0.10192690044641495, 0.004823909606784582, 0.0005692672566510737, 0.00045155739644542336, 0.025181708857417107, 0.26000308990478516, 0.0006495587294921279, 0.0022326060570776463, 0.0002433282061247155, 3.892840686603449e-05, 0.00012988281378056854, 0.0008364415261894464, 0.0003490277158562094, 0.008075875230133533, 0.004185122437775135, 0.023710910230875015, 0.5665919780731201], [0.18158642947673798, 0.00181566399987787, 0.0005494891083799303, 0.0006508101359941065, 0.05616263300180435, 0.23890765011310577, 0.0003438109706621617, 0.0033294064924120903, 0.000322508392855525, 4.3277872464386746e-05, 0.00011337639443809167, 0.0006497784634120762, 9.594411676516756e-05, 0.002159446943551302, 0.005521079059690237, 0.039276886731386185, 0.46847185492515564], [0.1753302961587906, 0.003908800892531872, 0.001472719362936914, 0.0017709529493004084, 0.030463464558124542, 0.2659461498260498, 0.0010972988093271852, 0.00349162588827312, 0.0004530255391728133, 0.00021505457698367536, 0.00027294293977320194, 0.001354237669147551, 0.00027934444369748235, 0.0019084832165390253, 0.001960845896974206, 0.05244141444563866, 0.45763319730758667], [0.039689965546131134, 0.007041480392217636, 0.005479981657117605, 0.006260442081838846, 0.009549704380333424, 0.29175883531570435, 0.008784486912190914, 0.006687386892735958, 0.002286308677867055, 0.007522578351199627, 0.004977092612534761, 0.008540411479771137, 0.007110235281288624, 0.007949166931211948, 0.0024132539983838797, 0.012784745544195175, 0.5711638927459717]], [[0.06242411956191063, 0.03874944895505905, 0.014300075359642506, 0.021115727722644806, 0.03359111025929451, 0.31638747453689575, 0.007387686055153608, 0.018476111814379692, 0.002809385070577264, 0.007049657870084047, 0.006454364862293005, 0.004915572237223387, 0.008481024764478207, 0.009533204138278961, 0.011602416634559631, 0.0229506678879261, 0.4137718975543976], [0.04676791653037071, 0.003918797243386507, 0.004731056280434132, 0.007464761845767498, 0.04138338938355446, 0.21914967894554138, 0.02272428199648857, 0.04333413392305374, 0.010350411757826805, 0.022732708603143692, 0.011919237673282623, 0.005836923141032457, 0.016214657574892044, 0.012862106785178185, 0.02081960067152977, 0.0807766243815422, 0.4290136992931366], [0.029935428872704506, 0.038099318742752075, 0.019215384498238564, 0.025131797417998314, 0.11720523983240128, 0.21440374851226807, 0.014468954876065254, 0.019199466332793236, 0.01396053098142147, 0.009782162494957447, 0.052462413907051086, 0.014473815448582172, 0.009371564723551273, 0.009148445911705494, 0.013992647640407085, 0.07300715893507004, 0.32614192366600037], [0.05396556481719017, 0.01781117171049118, 0.01630692183971405, 0.009720051661133766, 0.08604838699102402, 0.2943750321865082, 0.009208792820572853, 0.00843437947332859, 0.012284815311431885, 0.004610090050846338, 0.005125630181282759, 0.0071302843280136585, 0.005857241339981556, 0.008695967495441437, 0.005687833297997713, 0.06837563961744308, 0.3863621652126312], [0.04088485613465309, 0.02079785242676735, 0.015506476163864136, 0.015204371884465218, 0.05345349758863449, 0.34716418385505676, 0.008819716051220894, 0.0063771894201636314, 0.007191926706582308, 0.00480396393686533, 0.005087411496788263, 0.006120157893747091, 0.005642496980726719, 0.006930425763130188, 0.005817657336592674, 0.03091844543814659, 0.41927942633628845], [0.06846370548009872, 0.025655314326286316, 0.051056377589702606, 0.04283275827765465, 0.028256790712475777, 0.13794128596782684, 0.050785668194293976, 0.024533938616514206, 0.03688805177807808, 0.04413330554962158, 0.02818719670176506, 0.04663022235035896, 0.038487110286951065, 0.015544149093329906, 0.017007580026984215, 0.030378645285964012, 0.31321781873703003], [0.056946270167827606, 0.044414885342121124, 0.003537619486451149, 0.015220976434648037, 0.04261424392461777, 0.2833055555820465, 0.02251730114221573, 0.027495743706822395, 0.002192666055634618, 0.009763159789144993, 0.006800569593906403, 0.006727957632392645, 0.004103311337530613, 0.025663552805781364, 0.036865003407001495, 0.09102867543697357, 0.32080259919166565], [0.10821503400802612, 0.0172908753156662, 0.006472928915172815, 0.011800508946180344, 0.05205954611301422, 0.2278076708316803, 0.04333221912384033, 0.0288950614631176, 0.0050726644694805145, 0.024341655895113945, 0.010695714503526688, 0.016848880797624588, 0.0071255783550441265, 0.023725293576717377, 0.02449231594800949, 0.10059923678636551, 0.29122474789619446], [0.061158351600170135, 0.03089035116136074, 0.005173919722437859, 0.012623811140656471, 0.05443505942821503, 0.2327556014060974, 0.015538226813077927, 0.025568967685103416, 0.004833589307963848, 0.0028355189133435488, 0.01558631844818592, 0.008443794213235378, 0.0029471153393387794, 0.006700372789055109, 0.014699256047606468, 0.09555044770240784, 0.4102593660354614], [0.08733268082141876, 0.029004661366343498, 0.002018711529672146, 0.004056587349623442, 0.047614794224500656, 0.22622959315776825, 0.011001394130289555, 0.06306807696819305, 0.0025155397597700357, 0.0022801849991083145, 0.010846300050616264, 0.005487230606377125, 0.0012613735161721706, 0.015555650927126408, 0.028730448335409164, 0.10058312118053436, 0.362413614988327], [0.07153455913066864, 0.025122622027993202, 0.0068201362155377865, 0.008868809789419174, 0.03255770355463028, 0.19880113005638123, 0.04269135370850563, 0.024059215560555458, 0.012473825365304947, 0.006127725820988417, 0.00801668781787157, 0.015080718323588371, 0.004189048428088427, 0.01164686307311058, 0.012990843504667282, 0.07120326161384583, 0.4478153884410858], [0.06932494044303894, 0.018269577994942665, 0.006146000232547522, 0.012606904841959476, 0.0439545139670372, 0.2558082640171051, 0.01807081513106823, 0.03341865539550781, 0.006645844783633947, 0.01231876015663147, 0.022059397771954536, 0.011473802849650383, 0.0037955734878778458, 0.016786614432930946, 0.021504946053028107, 0.07742641121149063, 0.3703888952732086], [0.0770382508635521, 0.013112081214785576, 0.005424231756478548, 0.011214959435164928, 0.046508416533470154, 0.2518053352832794, 0.01662677340209484, 0.031960148364305496, 0.005828637629747391, 0.034038301557302475, 0.02311956323683262, 0.013537650927901268, 0.004668291658163071, 0.012675865553319454, 0.012927224859595299, 0.09232839941978455, 0.3471859395503998], [0.05648324638605118, 0.0071736774407327175, 0.005158562213182449, 0.005435744300484657, 0.028925342485308647, 0.24269406497478485, 0.03467383608222008, 0.04759065806865692, 0.01345688197761774, 0.016537116840481758, 0.014903864823281765, 0.012316362001001835, 0.006953752599656582, 0.01964106410741806, 0.01325598731637001, 0.09909895062446594, 0.3757009208202362], [0.1163066178560257, 0.004046713002026081, 0.017647136002779007, 0.0052372971549630165, 0.029483888298273087, 0.19527080655097961, 0.03944312781095505, 0.03469998016953468, 0.04937916249036789, 0.051853254437446594, 0.005835527088493109, 0.035445328801870346, 0.009706869721412659, 0.023979799821972847, 0.006286631803959608, 0.08749768882989883, 0.28788015246391296], [0.07057870179414749, 0.027261052280664444, 0.006514687091112137, 0.008431109599769115, 0.025887731462717056, 0.29128921031951904, 0.04429902508854866, 0.028075886890292168, 0.007221848238259554, 0.010618504136800766, 0.011127608828246593, 0.01970137283205986, 0.006121130660176277, 0.02807387337088585, 0.016504956409335136, 0.054750699549913406, 0.34354251623153687], [0.06678139418363571, 0.02668849192559719, 0.02919541299343109, 0.030891740694642067, 0.02708340436220169, 0.17190520465373993, 0.04511107876896858, 0.033429455012083054, 0.02444641850888729, 0.03663159906864166, 0.02046385034918785, 0.02613047882914543, 0.027573594823479652, 0.01619579643011093, 0.018041763454675674, 0.03514667600393295, 0.3642837405204773]], [[0.025704748928546906, 0.02036306820809841, 0.022178592160344124, 0.08767899870872498, 0.027219479903578758, 0.21572384238243103, 0.003990427125245333, 0.004168313927948475, 0.0015657286858186126, 0.003913887310773134, 0.003743654116988182, 0.0025470894761383533, 0.0010315938852727413, 0.004458827897906303, 0.009514052420854568, 0.008930757641792297, 0.557266891002655], [0.06025874987244606, 0.03108959272503853, 0.0047998311929404736, 0.017676109448075294, 0.021666115149855614, 0.24873952567577362, 0.008006241172552109, 0.008006641641259193, 0.0005806740955449641, 0.003973193466663361, 0.0016551562584936619, 0.0038015299942344427, 0.006118836812674999, 0.00933802966028452, 0.017385056242346764, 0.023688534274697304, 0.5332162380218506], [0.039802826941013336, 0.03036997653543949, 0.01772666536271572, 0.015391774475574493, 0.03794451802968979, 0.26405149698257446, 0.01267699059098959, 0.012457937002182007, 0.0006228561396710575, 0.0065739150159060955, 0.0036767267156392336, 0.0018874129746109247, 0.0015098057920113206, 0.005630254279822111, 0.01270199939608574, 0.025097882375121117, 0.5118769407272339], [0.057265713810920715, 0.11615937203168869, 0.06730801612138748, 0.019924351945519447, 0.06275541335344315, 0.1752186268568039, 0.01562741957604885, 0.03248024731874466, 0.001131357392296195, 0.008449023589491844, 0.005953229498118162, 0.002929569687694311, 0.003333680797368288, 0.00670801755040884, 0.009732780046761036, 0.037819743156433105, 0.37720349431037903], [0.051885440945625305, 0.10743706673383713, 0.048828624188899994, 0.0864686369895935, 0.08803586661815643, 0.15383867919445038, 0.022742317989468575, 0.026735970750451088, 0.0019522642251104116, 0.01287900097668171, 0.005355387926101685, 0.003584673162549734, 0.002228165278211236, 0.006317756604403257, 0.019362246617674828, 0.025598380714654922, 0.33674952387809753], [0.03801785409450531, 0.01436501182615757, 0.0021225716918706894, 0.009876195341348648, 0.010044665075838566, 0.25676336884498596, 0.0032593230716884136, 0.0033769626170396805, 0.0003795264638029039, 0.0011344044469296932, 0.001439743209630251, 0.0015370455803349614, 0.0010226614540442824, 0.0033339185174554586, 0.004528377205133438, 0.007933744229376316, 0.6408646106719971], [0.06959301978349686, 0.05363457649946213, 0.033402491360902786, 0.10177777707576752, 0.09222954511642456, 0.19646890461444855, 0.014019107446074486, 0.01853746920824051, 0.0033909217454493046, 0.005771995522081852, 0.0035191625356674194, 0.0036614341661334038, 0.001807434600777924, 0.011538579128682613, 0.04980217292904854, 0.0177166648209095, 0.32312875986099243], [0.12167540192604065, 0.04899323359131813, 0.007134016137570143, 0.028849152848124504, 0.07663195580244064, 0.24758030474185944, 0.01398948859423399, 0.01103207003325224, 0.001359292073175311, 0.0006597436149604619, 0.001946103642694652, 0.0019478155300021172, 0.0015294367913156748, 0.003406208474189043, 0.02956944704055786, 0.02629534900188446, 0.3774009644985199], [0.05963403359055519, 0.013033843599259853, 0.001357469242066145, 0.012398858554661274, 0.025946825742721558, 0.27659013867378235, 0.02982981503009796, 0.043585024774074554, 0.004938161466270685, 0.007826998829841614, 0.004919198341667652, 0.0018258404452353716, 0.0004092425515409559, 0.0018150531686842442, 0.010513787157833576, 0.017079588025808334, 0.4882960617542267], [0.04309559613466263, 0.02803167887032032, 0.0017152595100924373, 0.010930275544524193, 0.038084957748651505, 0.21962295472621918, 0.01391561422497034, 0.0901203602552414, 0.0410885326564312, 0.01782054267823696, 0.013746360316872597, 0.001735041500069201, 0.00029491851455532014, 0.0030535743571817875, 0.022360345348715782, 0.024562004953622818, 0.4298221170902252], [0.011400716379284859, 0.02073252946138382, 0.0008733537979424, 0.004803457763046026, 0.014570416882634163, 0.047654859721660614, 0.03174104541540146, 0.02677249349653721, 0.2532038688659668, 0.4708706736564636, 0.00826784037053585, 0.0014403928071260452, 0.0005074284854345024, 0.006537322886288166, 0.005602846387773752, 0.008209310472011566, 0.08681144565343857], [0.04800301045179367, 0.0253132376819849, 0.010770970955491066, 0.011036188341677189, 0.04202621430158615, 0.14756983518600464, 0.1395212560892105, 0.12199518084526062, 0.010604338720440865, 0.07286356389522552, 0.0476832389831543, 0.01956619881093502, 0.009048801846802235, 0.02834784798324108, 0.032789766788482666, 0.03347247093915939, 0.19938787817955017], [0.0373273603618145, 0.024682726711034775, 0.004121746867895126, 0.010294086299836636, 0.03363894671201706, 0.1365637183189392, 0.1507202684879303, 0.07298692315816879, 0.007286981213837862, 0.08159971982240677, 0.060371991246938705, 0.041121818125247955, 0.012675697915256023, 0.05504985153675079, 0.04024674743413925, 0.030819004401564598, 0.20049241185188293], [0.0518513023853302, 0.052144620567560196, 0.005915469024330378, 0.022892337292432785, 0.03459323197603226, 0.12932376563549042, 0.0836971253156662, 0.12240490317344666, 0.0033848315943032503, 0.013345113955438137, 0.014869069680571556, 0.02808196097612381, 0.02999034896492958, 0.06410015374422073, 0.04940478876233101, 0.04300172999501228, 0.25099921226501465], [0.01619255729019642, 0.055439144372940063, 0.008461406454443932, 0.005477985832840204, 0.016579629853367805, 0.012314442545175552, 0.17728061974048615, 0.42246952652931213, 0.004384646192193031, 0.016094869002699852, 0.04516492784023285, 0.03633490949869156, 0.07531721144914627, 0.027077116072177887, 0.020428325980901718, 0.037288468331098557, 0.023694239556789398], [0.056358952075242996, 0.05904272571206093, 0.01342756301164627, 0.02465885877609253, 0.03175032138824463, 0.08066155761480331, 0.09644468873739243, 0.23463645577430725, 0.007251359522342682, 0.035190433263778687, 0.022319048643112183, 0.017497647553682327, 0.008693506941199303, 0.017736254259943962, 0.06321966648101807, 0.05192388966679573, 0.17918696999549866], [0.04598967358469963, 0.01882317289710045, 0.003334643552079797, 0.011409949511289597, 0.011673231609165668, 0.25420045852661133, 0.006352678406983614, 0.00778669398277998, 0.0010945330141112208, 0.0030170083045959473, 0.0032529402524232864, 0.0036331554874777794, 0.002661961130797863, 0.006495223846286535, 0.009211290627717972, 0.014003591611981392, 0.5970596075057983]], [[0.08902408182621002, 0.25114706158638, 0.04000377655029297, 0.11471915245056152, 0.1135917603969574, 0.09418928623199463, 0.011493866331875324, 0.03407414257526398, 0.008229035884141922, 0.00791437178850174, 0.013919450342655182, 0.004834572784602642, 0.014909039251506329, 0.024737101048231125, 0.007884499616920948, 0.035431232303380966, 0.1338975727558136], [0.10346776992082596, 0.11015139520168304, 0.044295769184827805, 0.08028825372457504, 0.14690271019935608, 0.10256583988666534, 0.027838826179504395, 0.06419356912374496, 0.004649286158382893, 0.011636323295533657, 0.007987268269062042, 0.01705479435622692, 0.018461797386407852, 0.027986638247966766, 0.029637251049280167, 0.07090611755847931, 0.13197648525238037], [0.0753476545214653, 0.1431065797805786, 0.03547053784132004, 0.07578063011169434, 0.1071273609995842, 0.13169318437576294, 0.03431368246674538, 0.049901459366083145, 0.00596880167722702, 0.020748669281601906, 0.023628685623407364, 0.020625362172722816, 0.050855208188295364, 0.018868952989578247, 0.012498686090111732, 0.03706716373562813, 0.15699738264083862], [0.0972856804728508, 0.12232033163309097, 0.04546572268009186, 0.059152282774448395, 0.05263927951455116, 0.15124300122261047, 0.03407794237136841, 0.05221108719706535, 0.008696404285728931, 0.02597023732960224, 0.025131747126579285, 0.022266848012804985, 0.02892872877418995, 0.026331961154937744, 0.016564348712563515, 0.02648397721350193, 0.2052304893732071], [0.06751152873039246, 0.18467742204666138, 0.10868673771619797, 0.1278139054775238, 0.06061113625764847, 0.11549022793769836, 0.013826114125549793, 0.02862744778394699, 0.007808146066963673, 0.027039609849452972, 0.01835043542087078, 0.023327458649873734, 0.03684372082352638, 0.013422024436295033, 0.007810462731868029, 0.013597575016319752, 0.14455601572990417], [0.048428796231746674, 0.009898023679852486, 0.0018940885784104466, 0.0023892030585557222, 0.007637965027242899, 0.273922324180603, 0.00225241226144135, 0.0015359626850113273, 0.0009112396510317922, 0.000521341513376683, 0.001122406218200922, 0.003888665931299329, 0.0010033659636974335, 0.008814077824354172, 0.0017177850240841508, 0.012144532985985279, 0.6219178438186646], [0.20955197513103485, 0.034203823655843735, 0.01239658985286951, 0.016476046293973923, 0.014573562890291214, 0.1237039566040039, 0.02843109704554081, 0.04137298837304115, 0.010464311577379704, 0.024799097329378128, 0.04294285923242569, 0.05948115512728691, 0.08827397227287292, 0.023443199694156647, 0.013951278291642666, 0.040221478790044785, 0.21571245789527893], [0.2194218933582306, 0.028284059837460518, 0.0164814256131649, 0.02566504292190075, 0.0201475340873003, 0.04430240020155907, 0.09084169566631317, 0.07519768923521042, 0.007757663261145353, 0.036740295588970184, 0.048190802335739136, 0.08041294664144516, 0.06094367057085037, 0.07910480350255966, 0.046686794608831406, 0.05046066641807556, 0.06936051696538925], [0.1440218687057495, 0.016798242926597595, 0.014714814722537994, 0.017406299710273743, 0.021173182874917984, 0.11662324517965317, 0.05751127749681473, 0.03540549427270889, 0.009827250614762306, 0.045307707041502, 0.06127927079796791, 0.054762233048677444, 0.05672318860888481, 0.03822357580065727, 0.05974071845412254, 0.0541691854596138, 0.1963125467300415], [0.15778134763240814, 0.03090144321322441, 0.014652100391685963, 0.015945589169859886, 0.022813891991972923, 0.1920432299375534, 0.021155618131160736, 0.017809996381402016, 0.006650575436651707, 0.01623065583407879, 0.030103133991360664, 0.02718593180179596, 0.02537943422794342, 0.021499736234545708, 0.03426821157336235, 0.04574380815029144, 0.31983527541160583], [0.15265648066997528, 0.031178217381238937, 0.015213631093502045, 0.021593956276774406, 0.021704521030187607, 0.15489567816257477, 0.09137585014104843, 0.039951108396053314, 0.010123123414814472, 0.02635166235268116, 0.014493162743747234, 0.050515856593847275, 0.05392535775899887, 0.01956501044332981, 0.012533511035144329, 0.04727329686284065, 0.23664945363998413], [0.1509012132883072, 0.03975408524274826, 0.010711845010519028, 0.01714840903878212, 0.02497860975563526, 0.09279147535562515, 0.16301587224006653, 0.06033717840909958, 0.011301873251795769, 0.03634633868932724, 0.046898674219846725, 0.03925476595759392, 0.0989794135093689, 0.01323737297207117, 0.011233370751142502, 0.05315908417105675, 0.1299504190683365], [0.1851232647895813, 0.03811228647828102, 0.012036415748298168, 0.020222920924425125, 0.019570929929614067, 0.1388229876756668, 0.10926414281129837, 0.061355143785476685, 0.007119329646229744, 0.022431638091802597, 0.02134699374437332, 0.04770621657371521, 0.05312727019190788, 0.016937676817178726, 0.009621545672416687, 0.04488473758101463, 0.19231653213500977], [0.12376323342323303, 0.09746021032333374, 0.014251827262341976, 0.05739991366863251, 0.03994202986359596, 0.09013836085796356, 0.11144135892391205, 0.06756509840488434, 0.007656466215848923, 0.017639126628637314, 0.029719483107328415, 0.024775225669145584, 0.047207947820425034, 0.060305703431367874, 0.0254588034003973, 0.051092516630887985, 0.13418257236480713], [0.15994030237197876, 0.028625303879380226, 0.01791762374341488, 0.027775153517723083, 0.01707335188984871, 0.07861974835395813, 0.10257218033075333, 0.09030850976705551, 0.012478739023208618, 0.03755461424589157, 0.04308709874749184, 0.04050896316766739, 0.03705618157982826, 0.10381794720888138, 0.04703537002205849, 0.030740512534976006, 0.12488838285207748], [0.11528843641281128, 0.04400048032402992, 0.024984316900372505, 0.028035083785653114, 0.013438316993415356, 0.04473840445280075, 0.07618805766105652, 0.11570417881011963, 0.01989774778485298, 0.07908225804567337, 0.07172292470932007, 0.08547094464302063, 0.13005352020263672, 0.03326012194156647, 0.024412473663687706, 0.02645145356655121, 0.06727121770381927], [0.07761252671480179, 0.014940165914595127, 0.002479950897395611, 0.0037902379408478737, 0.012277050875127316, 0.25673529505729675, 0.0050288476049900055, 0.003549622604623437, 0.0015072794631123543, 0.0010696909157559276, 0.002122319070622325, 0.005762872751802206, 0.001868268009275198, 0.016914168372750282, 0.0037483370397239923, 0.02381083182990551, 0.566782534122467]], [[0.04570379480719566, 0.09281744062900543, 0.05313432961702347, 0.0968732163310051, 0.11049097776412964, 0.18493083119392395, 0.013929651118814945, 0.020056743174791336, 0.0037585750687867403, 0.020041661337018013, 0.009327420964837074, 0.010202580131590366, 0.009084802120923996, 0.014247172512114048, 0.01871155947446823, 0.033559322357177734, 0.26312994956970215], [0.06200564652681351, 0.020771626383066177, 0.012955181300640106, 0.03547421842813492, 0.029940281063318253, 0.22887010872364044, 0.002447014907374978, 0.0021945289336144924, 0.0004644433211069554, 0.004369326867163181, 0.003892151638865471, 0.008325057104229927, 0.01556517742574215, 0.055080268532037735, 0.01031398680061102, 0.010566044598817825, 0.49676498770713806], [0.05010972172021866, 0.04064105823636055, 0.012559696100652218, 0.05330709367990494, 0.03436058759689331, 0.26131153106689453, 0.006130046211183071, 0.0049513643607497215, 0.0010028979741036892, 0.01096070185303688, 0.00829501636326313, 0.007700888905674219, 0.01639568619430065, 0.059705950319767, 0.012327807024121284, 0.015541987493634224, 0.40469789505004883], [0.048355747014284134, 0.0370948426425457, 0.04752744734287262, 0.021804695948958397, 0.029658421874046326, 0.2551969885826111, 0.0056942119263112545, 0.005383742041885853, 0.001094895415008068, 0.004281984642148018, 0.005881409160792828, 0.023853665217757225, 0.036884456872940063, 0.06852926313877106, 0.013019525445997715, 0.0116126025095582, 0.38412609696388245], [0.05187956243753433, 0.1099274531006813, 0.07355141639709473, 0.11297372728586197, 0.062614306807518, 0.15085561573505402, 0.014936856925487518, 0.012271801941096783, 0.003103098599240184, 0.016054732725024223, 0.01058216579258442, 0.027572952210903168, 0.02871377393603325, 0.06728370487689972, 0.018456289544701576, 0.01599843055009842, 0.22322407364845276], [0.03681159019470215, 0.00643669068813324, 0.0012730751186609268, 0.006469347048550844, 0.017606107518076897, 0.2564050555229187, 0.0041289604268968105, 0.0049748471938073635, 0.0005373526946641505, 0.001522540464065969, 0.0021395685616880655, 0.0014191515510901809, 0.0013654670910909772, 0.004818160552531481, 0.004011828918009996, 0.026305774226784706, 0.6237744688987732], [0.027919277548789978, 0.02229326218366623, 0.013955624774098396, 0.017777111381292343, 0.008657448925077915, 0.07545710355043411, 0.03288022801280022, 0.020076584070920944, 0.00424293614923954, 0.03635095804929733, 0.041284412145614624, 0.10810504108667374, 0.10830668359994888, 0.26183149218559265, 0.08503873646259308, 0.016966093331575394, 0.11885704845190048], [0.04644636809825897, 0.020199067890644073, 0.005021975375711918, 0.014551069587469101, 0.008840801194310188, 0.08814732730388641, 0.019314702600240707, 0.014338139444589615, 0.0032829397823661566, 0.0331488661468029, 0.019307857379317284, 0.06189873069524765, 0.07791414111852646, 0.3188124895095825, 0.06607891619205475, 0.021954592317342758, 0.18074198067188263], [0.04898107051849365, 0.03006289340555668, 0.004299364052712917, 0.019836287945508957, 0.010136581026017666, 0.08851894736289978, 0.014532904140651226, 0.025415854528546333, 0.00645105168223381, 0.042670588940382004, 0.0209330003708601, 0.03822091594338417, 0.1080775037407875, 0.3101450800895691, 0.05715378001332283, 0.01818128675222397, 0.1563829481601715], [0.06186898425221443, 0.014587575569748878, 0.0035100672394037247, 0.013372720219194889, 0.010581509210169315, 0.16377264261245728, 0.016739437356591225, 0.00961073487997055, 0.004432599991559982, 0.007173198275268078, 0.014420626685023308, 0.02477506920695305, 0.06726474314928055, 0.22654412686824799, 0.027327725663781166, 0.029347365722060204, 0.3046708405017853], [0.05675559490919113, 0.014198987744748592, 0.004063815344125032, 0.01666811853647232, 0.013931503519415855, 0.14185625314712524, 0.01389763131737709, 0.015257755294442177, 0.011117507703602314, 0.04405267536640167, 0.014252431690692902, 0.04456588998436928, 0.06106068566441536, 0.21290069818496704, 0.07328350841999054, 0.03761656582355499, 0.22452037036418915], [0.04236902669072151, 0.006805202923715115, 0.0009364492143504322, 0.0036864299327135086, 0.003996985964477062, 0.20733748376369476, 0.007144861854612827, 0.0064095440320670605, 0.0011387824779376388, 0.011469054035842419, 0.0075518167577683926, 0.016592340543866158, 0.034740857779979706, 0.16423563659191132, 0.018493054434657097, 0.017495647072792053, 0.4495968520641327], [0.04084152355790138, 0.0028540678322315216, 0.0004532095044851303, 0.0025390367954969406, 0.0028137722983956337, 0.23079270124435425, 0.0013362594181671739, 0.0012462721206247807, 0.0002173691609641537, 0.002615333301946521, 0.0019371288362890482, 0.008853931911289692, 0.00995793379843235, 0.11985283344984055, 0.009731224738061428, 0.01128301490098238, 0.5526743531227112], [0.044073622673749924, 0.006165417842566967, 0.0007896989118307829, 0.002602995140478015, 0.004633753560483456, 0.21846093237400055, 0.0017455185297876596, 0.0014153242809697986, 8.842302486300468e-05, 0.0015534248668700457, 0.0013669461477547884, 0.005321516189724207, 0.011254975572228432, 0.05933568999171257, 0.004858874250203371, 0.013066088780760765, 0.6232668161392212], [0.04134109616279602, 0.010790382511913776, 0.00410855608060956, 0.004695477895438671, 0.005024768877774477, 0.1112171858549118, 0.009465604089200497, 0.007740061264485121, 0.0009976171422749758, 0.004137716721743345, 0.006144934333860874, 0.03806988149881363, 0.10529439896345139, 0.35723578929901123, 0.011815669946372509, 0.01059336680918932, 0.2713274359703064], [0.057600151747465134, 0.029735833406448364, 0.006426020059734583, 0.009487609378993511, 0.009151560254395008, 0.07776544988155365, 0.035480063408613205, 0.04113039746880531, 0.0033985781483352184, 0.014998705126345158, 0.012932991608977318, 0.09063344448804855, 0.07294262200593948, 0.2802569568157196, 0.07074851542711258, 0.03576197847723961, 0.15154913067817688], [0.04883240535855293, 0.008451713249087334, 0.00200910703279078, 0.008468580432236195, 0.02029993198812008, 0.24646584689617157, 0.006314178463071585, 0.008014676161110401, 0.000861208129208535, 0.002455948619171977, 0.003259476274251938, 0.0030187778174877167, 0.0032237274572253227, 0.011570030823349953, 0.00775064155459404, 0.0366692841053009, 0.5823343396186829]], [[0.29784899950027466, 0.03443511947989464, 0.01284785009920597, 0.024005193263292313, 0.03325503692030907, 0.18164803087711334, 0.003018125193193555, 0.005843622609972954, 0.0014649516670033336, 0.0013872012495994568, 0.0018573597772046924, 0.003818855155259371, 0.006475077010691166, 0.004856233950704336, 0.007281705271452665, 0.025141211226582527, 0.3548154830932617], [0.20982778072357178, 0.006582725327461958, 0.001442493055947125, 0.013717365451157093, 0.030284440144896507, 0.30232203006744385, 0.015023455023765564, 0.0014675877755507827, 0.003910646308213472, 0.00197532307356596, 0.00045329323620535433, 0.0015369695611298084, 0.0008930045296438038, 0.006964152678847313, 0.0022616060450673103, 0.027768203988671303, 0.3735688030719757], [0.16951443254947662, 0.014382204040884972, 0.037599675357341766, 0.05126660317182541, 0.07460854202508926, 0.18257473409175873, 0.029582995921373367, 0.008210022002458572, 0.024007415398955345, 0.019811054691672325, 0.017102770507335663, 0.018563611432909966, 0.021531671285629272, 0.0017744749784469604, 0.005853969603776932, 0.03381645679473877, 0.289799302816391], [0.2052464783191681, 0.007869059219956398, 0.012072721496224403, 0.014332879334688187, 0.03534160554409027, 0.24268239736557007, 0.017822640016674995, 0.004087232053279877, 0.008350669406354427, 0.006462177727371454, 0.006035774480551481, 0.013630182482302189, 0.00939764641225338, 0.00342363677918911, 0.006840227637439966, 0.023966407403349876, 0.38243821263313293], [0.10539934784173965, 0.012658021412789822, 0.014035887084901333, 0.017376970499753952, 0.060033492743968964, 0.3119719624519348, 0.07305094599723816, 0.009358524344861507, 0.00693617295473814, 0.005628746468573809, 0.0015012560179457068, 0.015939481556415558, 0.006706304848194122, 0.007557444274425507, 0.012134111486375332, 0.06279708445072174, 0.27691423892974854], [0.04708623141050339, 0.06554656475782394, 0.006624754052609205, 0.02730063535273075, 0.01609671488404274, 0.23799698054790497, 0.007848883047699928, 0.010978324338793755, 0.004588126204907894, 0.012179553508758545, 0.007301319390535355, 0.009766020812094212, 0.006724046543240547, 0.023896150290966034, 0.00974216777831316, 0.024947773665189743, 0.48137569427490234], [0.21835288405418396, 0.023305900394916534, 0.013679645024240017, 0.022555427625775337, 0.042392417788505554, 0.2404584139585495, 0.004623723216354847, 0.0018427856266498566, 0.0036341408267617226, 0.003661543596535921, 0.003378071589395404, 0.0037769575137645006, 0.002204709919169545, 0.002786001656204462, 0.0033043092116713524, 0.023724908009171486, 0.3863180875778198], [0.28879767656326294, 0.01188779715448618, 0.0011970266932621598, 0.01802937686443329, 0.020941367372870445, 0.2936611771583557, 0.005496370140463114, 0.000322694715578109, 0.0014381721848621964, 0.0010913378791883588, 0.0007605242426507175, 0.00043092918349429965, 0.00028259475948289037, 0.0018398711690679193, 0.0026411160361021757, 0.011792434379458427, 0.3393895626068115], [0.22437268495559692, 0.0128197455778718, 0.0038312054239213467, 0.013235779479146004, 0.018323324620723724, 0.2633973956108093, 0.0015243531670421362, 0.002293391153216362, 0.0009647553670220077, 0.0005128614138811827, 0.0014415084151551127, 0.0012483325554057956, 0.0012886032927781343, 0.0003176123427692801, 0.0018946868367493153, 0.009539107792079449, 0.442994624376297], [0.17557306587696075, 0.010358059778809547, 0.004576468840241432, 0.006313400808721781, 0.03362223133444786, 0.2874780297279358, 0.007524396292865276, 0.0037552244029939175, 0.0011787990806624293, 0.0005013076588511467, 0.0014057877706363797, 0.0032672020606696606, 0.004306151531636715, 0.0015222334768623114, 0.00344703602604568, 0.021411094814538956, 0.4337593913078308], [0.19585663080215454, 0.016974614933133125, 0.017808211967349052, 0.020929871127009392, 0.06349484622478485, 0.19130173325538635, 0.009364881552755833, 0.023096729069948196, 0.0008965576416812837, 0.005523710045963526, 0.003051402047276497, 0.008573533035814762, 0.010793466120958328, 0.0024121650494635105, 0.008803064934909344, 0.03246138244867325, 0.3886571526527405], [0.2713016867637634, 0.009160608984529972, 0.011308077722787857, 0.020412474870681763, 0.0678410455584526, 0.2021792083978653, 0.010410159826278687, 0.0019083231454715133, 0.0032023442909121513, 0.002561438363045454, 0.004278256557881832, 0.0016276888782158494, 0.0031770768109709024, 0.0007656367961317301, 0.0029601736459881067, 0.02842196263372898, 0.35848385095596313], [0.2311541736125946, 0.006042612250894308, 0.005416449159383774, 0.008806108497083187, 0.025361886247992516, 0.2604793310165405, 0.0069664823822677135, 0.0008986947941593826, 0.003895085770636797, 0.0025527733378112316, 0.009687051177024841, 0.002593589248135686, 0.0014722213381901383, 0.0008874355698935688, 0.0016435426659882069, 0.01243817713111639, 0.4197043478488922], [0.10765474289655685, 0.009089881554245949, 0.00047918307245709, 0.0016853304114192724, 0.01225915178656578, 0.3333625793457031, 0.002570504555478692, 0.0019642487168312073, 0.0008368006674572825, 0.00038808630779385567, 0.0005412033060565591, 0.0010094292229041457, 0.0010719136334955692, 0.004826690070331097, 0.0016701773274689913, 0.015680382028222084, 0.5049096345901489], [0.25372427701950073, 0.012072893790900707, 0.002123907906934619, 0.016040243208408356, 0.028965117409825325, 0.27760472893714905, 0.021312886849045753, 0.0027904987800866365, 0.0014530819607898593, 0.0007466237875632942, 0.0017678213771432638, 0.0038899751380085945, 0.0033483223523944616, 0.0052025699988007545, 0.009077190421521664, 0.014819181524217129, 0.3450607359409332], [0.14968910813331604, 0.017487524077296257, 0.005006758496165276, 0.01569298841059208, 0.03829890862107277, 0.3345465362071991, 0.023725174367427826, 0.0039469036273658276, 0.0017204644391313195, 0.0025690351612865925, 0.0017415734473615885, 0.004245628137141466, 0.0025430636014789343, 0.0034151137806475163, 0.00688600679859519, 0.037961509078741074, 0.3505236804485321], [0.06584235280752182, 0.05126255005598068, 0.006231611128896475, 0.022753655910491943, 0.016689401119947433, 0.23653534054756165, 0.00577424094080925, 0.00949489139020443, 0.004630971234291792, 0.009708111174404621, 0.007498364895582199, 0.007708054035902023, 0.006676457356661558, 0.015219400636851788, 0.0081251859664917, 0.021153125911951065, 0.5046963095664978]]], [[[0.21880605816841125, 0.029423339292407036, 0.01643129251897335, 0.03178385645151138, 0.07375075668096542, 0.2253551483154297, 0.010523500852286816, 0.015595330856740475, 0.001020244788378477, 0.003393232123926282, 0.0008943344000726938, 0.004855870734900236, 0.004096492659300566, 0.011441378854215145, 0.005136472638696432, 0.01353104691952467, 0.33396169543266296], [0.010325507260859013, 0.024945620447397232, 0.010923627763986588, 0.008832315914332867, 0.0515105240046978, 0.2993182837963104, 0.040953997522592545, 0.009275798685848713, 0.0037391793448477983, 0.0051664733327925205, 0.009535534307360649, 0.023485107347369194, 0.00937643926590681, 0.022231966257095337, 0.014658159576356411, 0.04760148376226425, 0.4081200063228607], [0.022238126024603844, 0.030434811487793922, 0.0010800824966281652, 0.001199722639285028, 0.039878882467746735, 0.3607332706451416, 0.004223627503961325, 0.002747392049059272, 0.0009065037593245506, 0.006102900020778179, 0.001060380949638784, 0.0058469087816774845, 0.0016641359543427825, 0.023650281131267548, 0.009043226018548012, 0.02734849601984024, 0.4618411958217621], [0.009107903577387333, 0.00519223976880312, 0.0024365761782974005, 0.0007368925726041198, 0.03765375167131424, 0.3629664182662964, 0.008192873559892178, 0.0019398522563278675, 0.0005422807298600674, 0.001177687430754304, 0.00042942099389620125, 0.009334755130112171, 0.0018591678235679865, 0.005670319776982069, 0.0048775929026305676, 0.02696777880191803, 0.5209145545959473], [0.023410562425851822, 0.025067441165447235, 0.006690921727567911, 0.0019155312329530716, 0.022694094106554985, 0.34095484018325806, 0.027688240632414818, 0.003998863510787487, 0.0011022127000615, 0.0032409057021141052, 0.0022337972186505795, 0.011943375691771507, 0.004132093861699104, 0.026288898661732674, 0.01157185435295105, 0.024179955944418907, 0.4628864526748657], [0.030043113976716995, 0.018162889406085014, 0.006375506520271301, 0.01405356265604496, 0.006134179886430502, 0.3220933973789215, 0.006348534487187862, 0.008706890977919102, 0.006674391683191061, 0.005323913414031267, 0.0010929665295407176, 0.00619696918874979, 0.0026300910394638777, 0.01420959085226059, 0.0044157421216368675, 0.005548049695789814, 0.5419901609420776], [0.06544236093759537, 0.012373194098472595, 0.0010575091000646353, 0.001508619636297226, 0.012159307487308979, 0.343688040971756, 0.003060972783714533, 0.004861798137426376, 0.0001058438720065169, 0.0005752532742917538, 6.698472861899063e-05, 0.001299993135035038, 0.0002536436659283936, 0.001469644601456821, 0.001000947318971157, 0.011275180615484715, 0.5398007035255432], [0.07062283158302307, 0.021385004743933678, 0.012850326485931873, 0.008092524483799934, 0.024795178323984146, 0.32851549983024597, 0.010013105347752571, 0.006276830565184355, 0.0011533109936863184, 0.0018265441758558154, 0.0008135206298902631, 0.01196462381631136, 0.004302658140659332, 0.006170439533889294, 0.00925479643046856, 0.024898871779441833, 0.4570639431476593], [0.07664494216442108, 0.020859792828559875, 0.0032110612373799086, 0.002398721408098936, 0.04438488557934761, 0.35173317790031433, 0.004965102765709162, 0.004287429619580507, 0.00032498696236871183, 0.0012695336481556296, 0.0003784628352150321, 0.003982702735811472, 0.0009734920458868146, 0.0047435639426112175, 0.003299443982541561, 0.030353164300322533, 0.44618964195251465], [0.08321394771337509, 0.008127405308187008, 0.002188085112720728, 0.0025775146204978228, 0.010654808953404427, 0.35774365067481995, 0.0040967329405248165, 0.00344305532053113, 0.000721614807844162, 0.001972253667190671, 0.0003938900772482157, 0.0031730742193758488, 0.0013424037024378777, 0.00506245531141758, 0.0032629030756652355, 0.012017879635095596, 0.5000084638595581], [0.08192257583141327, 0.006455244496464729, 0.0007945873658172786, 0.0004972495371475816, 0.013976111076772213, 0.3835112452507019, 0.003647164674475789, 0.0011381655931472778, 0.0001850817061495036, 0.000745304801966995, 0.00022314376838039607, 0.004167543258517981, 0.00118168699555099, 0.009062560275197029, 0.002278515137732029, 0.013748597353696823, 0.4764651954174042], [0.12344084680080414, 0.009740730747580528, 0.0009095041314139962, 0.0009229804272763431, 0.019889462739229202, 0.323800653219223, 0.002456145826727152, 0.0017464552074670792, 0.00028868441586382687, 0.001326039433479309, 0.0002992380759678781, 0.0018026799662038684, 0.0009449367644265294, 0.0052144271321594715, 0.0032567442394793034, 0.014453431591391563, 0.48950710892677307], [0.10258392989635468, 0.009381970390677452, 0.0023500770330429077, 0.0026780948974192142, 0.010959752835333347, 0.34753409028053284, 0.0031161843799054623, 0.004100112244486809, 0.0008502847631461918, 0.0015351480105891824, 0.0003173026198055595, 0.004489582497626543, 0.0013968093553557992, 0.004279212560504675, 0.002869783667847514, 0.008241226896643639, 0.4933165907859802], [0.04048106074333191, 0.0076672835275530815, 0.012100870721042156, 0.010452124290168285, 0.026203135028481483, 0.3237355947494507, 0.017006825655698776, 0.020012039691209793, 0.0019132687011733651, 0.00136832264252007, 0.0010421345941722393, 0.007413890678435564, 0.0038352326955646276, 0.0013381821336224675, 0.0035299570299685, 0.028492292389273643, 0.4934076964855194], [0.047751545906066895, 0.003602532437071204, 0.004853762686252594, 0.0037270106840878725, 0.03069904074072838, 0.35024920105934143, 0.005360979121178389, 0.0031079845502972603, 0.0003767839225474745, 0.0003686395357362926, 0.00028456744621507823, 0.0029582756105810404, 0.0011064920108765364, 0.0008816110203042626, 0.0019500531489029527, 0.012519177049398422, 0.5302022695541382], [0.07420005649328232, 0.019031977280974388, 0.010935061611235142, 0.0049987188540399075, 0.016334107145667076, 0.33982038497924805, 0.014425625093281269, 0.006087079178541899, 0.0007939585484564304, 0.001271493500098586, 0.000728691287804395, 0.008273971267044544, 0.002594442805275321, 0.01284298300743103, 0.005670866463333368, 0.014879882335662842, 0.46711066365242004], [0.03717063367366791, 0.017843274399638176, 0.0071722823195159435, 0.015080456621944904, 0.008178689517080784, 0.3223513066768646, 0.008279139176011086, 0.009970765560865402, 0.006938830949366093, 0.0055580176413059235, 0.0014090880285948515, 0.007989452220499516, 0.0029053271282464266, 0.01794520765542984, 0.004856733605265617, 0.008314254693686962, 0.5180365443229675]], [[0.0628194734454155, 0.024951184168457985, 0.0053540561348199844, 0.008084693923592567, 0.015820777043700218, 0.13375146687030792, 0.058980025351047516, 0.0860334038734436, 0.009132806211709976, 0.05719814822077751, 0.02102350816130638, 0.033726874738931656, 0.02394808456301689, 0.10840379446744919, 0.10482126474380493, 0.11251367628574371, 0.1334368735551834], [0.03549014776945114, 0.005591104738414288, 0.002023521810770035, 0.002268986776471138, 0.026666700839996338, 0.255309134721756, 0.03564968332648277, 0.06339725852012634, 0.0026113411877304316, 0.005383850075304508, 0.003685964737087488, 0.005657774396240711, 0.014302203431725502, 0.010026110336184502, 0.008971445262432098, 0.14228051900863647, 0.3806841969490051], [0.0524003803730011, 0.08046295493841171, 0.010234943591058254, 0.007390360347926617, 0.06237044557929039, 0.15499934554100037, 0.015070002526044846, 0.10909523814916611, 0.0026578011456876993, 0.0036156950518488884, 0.0036903994623571634, 0.0063315266743302345, 0.013628551736474037, 0.020781533792614937, 0.013901499100029469, 0.19579678773880005, 0.24757252633571625], [0.034721896052360535, 0.014247126877307892, 0.00541326217353344, 0.0031329335179179907, 0.029673278331756592, 0.2410934865474701, 0.017911462113261223, 0.052715834230184555, 0.004493329674005508, 0.0055305492132902145, 0.006564346142113209, 0.013132767751812935, 0.01488578412681818, 0.025607986375689507, 0.033558525145053864, 0.18937906622886658, 0.3079383075237274], [0.04860707372426987, 0.034977179020643234, 0.005011261440813541, 0.012905418872833252, 0.05087678134441376, 0.2677393853664398, 0.013480699621140957, 0.027386344969272614, 0.0023093123454600573, 0.013467168435454369, 0.002592233708128333, 0.00903359055519104, 0.005943442694842815, 0.06106052175164223, 0.03339778631925583, 0.12736080586910248, 0.2838509976863861], [0.007214078679680824, 8.78200662555173e-05, 2.5340972570120357e-05, 9.259085345547646e-05, 0.00017739144095685333, 0.5746970772743225, 0.00012753152986988425, 0.00039269309490919113, 2.127076731994748e-05, 4.9682497774483636e-05, 4.681629070546478e-05, 0.0002533305960241705, 0.0001484626845922321, 0.0011421386152505875, 0.00033397795050404966, 0.0006838583503849804, 0.41450604796409607], [0.18482069671154022, 0.061758607625961304, 0.012279750779271126, 0.05258054658770561, 0.0481104776263237, 0.29142171144485474, 0.003108259290456772, 0.011176005937159061, 0.0007061823853291571, 0.0011942557757720351, 0.00046040929737500846, 0.0032819195184856653, 0.0012269382132217288, 0.013897072523832321, 0.007155808620154858, 0.019299626350402832, 0.28752171993255615], [0.10030427575111389, 0.015994906425476074, 0.0016519653145223856, 0.004245250951498747, 0.01940552145242691, 0.395474910736084, 0.003468519076704979, 0.009921707212924957, 0.0003720840613823384, 0.00036253646248951554, 0.0005721062188968062, 0.002784753916785121, 0.001715947175398469, 0.006201294716447592, 0.003484134329482913, 0.020722994580864906, 0.4133169949054718], [0.1611524373292923, 0.0745990052819252, 0.007833687588572502, 0.0058851903304457664, 0.04705645143985748, 0.1945243626832962, 0.017571503296494484, 0.06400647014379501, 0.0017123891739174724, 0.0014666717033833265, 0.0035305379424244165, 0.007069386076182127, 0.011516892351210117, 0.010769120417535305, 0.012554274871945381, 0.07389461994171143, 0.30485689640045166], [0.12772604823112488, 0.03140014037489891, 0.0032204180024564266, 0.00479344604536891, 0.025394972413778305, 0.3279065787792206, 0.007854600436985493, 0.017600925639271736, 0.0003662678354885429, 0.0006121486658230424, 0.0011204160982742906, 0.00364131317473948, 0.003481823019683361, 0.011652848683297634, 0.008361626416444778, 0.02714064158499241, 0.39772582054138184], [0.1725541353225708, 0.08664535731077194, 0.013419409282505512, 0.012850670143961906, 0.07944931089878082, 0.2326781153678894, 0.006137572228908539, 0.027274081483483315, 0.0014155895914882421, 0.0003821803838945925, 0.0008320841589011252, 0.006691073067486286, 0.004640466067939997, 0.005534263327717781, 0.0041112229228019714, 0.0627020001411438, 0.28268247842788696], [0.20685012638568878, 0.06596287339925766, 0.0060415249317884445, 0.020897576585412025, 0.08866804093122482, 0.21190029382705688, 0.003659644862636924, 0.021529871970415115, 0.00045342405792325735, 0.0006300007808022201, 0.0004091285518370569, 0.002150769578292966, 0.002008936833590269, 0.008493248373270035, 0.0077430978417396545, 0.04852120205760002, 0.30408015847206116], [0.09222780913114548, 0.03005639649927616, 0.0046276310458779335, 0.00753437727689743, 0.04891742393374443, 0.32594794034957886, 0.0035699745640158653, 0.015853499993681908, 0.0004930956638418138, 0.0003764455614145845, 0.0006272390601225197, 0.003964753355830908, 0.0020901220850646496, 0.011903365142643452, 0.009304423816502094, 0.05112804099917412, 0.39137744903564453], [0.06429851055145264, 0.004580761305987835, 0.001554416841827333, 0.0050135101191699505, 0.01120445691049099, 0.3897300958633423, 0.00180724635720253, 0.004894355311989784, 0.00032521283719688654, 0.0006211500731296837, 0.0002258978202007711, 0.001963032176718116, 0.0009520150488242507, 0.005521059967577457, 0.0055388882756233215, 0.013552797958254814, 0.4882165491580963], [0.0916045680642128, 0.003436797996982932, 0.0015175879234448075, 0.0026103511918336153, 0.00796203687787056, 0.3838459551334381, 0.0011441940441727638, 0.002615167759358883, 0.00020781756029464304, 0.0003184351371601224, 0.0001113006510422565, 0.0018859372939914465, 0.0004637761740013957, 0.003253013826906681, 0.003854034235700965, 0.01025086734443903, 0.4849182069301605], [0.09957900643348694, 0.020782938227057457, 0.0034039339516311884, 0.010075487196445465, 0.036081183701753616, 0.33333373069763184, 0.007554688025265932, 0.016353581100702286, 0.0011337853502482176, 0.00425307173281908, 0.0014678941806778312, 0.006203892175108194, 0.0036393634509295225, 0.056666430085897446, 0.03772571310400963, 0.04843546077609062, 0.31330981850624084], [0.009531166404485703, 0.00010302218288416043, 2.7367159418645315e-05, 0.0001166268193628639, 0.00022225103748496622, 0.5959863662719727, 0.00016166154819075018, 0.0006128544919192791, 2.8956854293937795e-05, 6.627538095926866e-05, 7.165161514421925e-05, 0.00029300915775820613, 0.00018081784946843982, 0.001840071054175496, 0.0006711397436447442, 0.0008289326797239482, 0.38925784826278687]], [[0.05218513682484627, 0.04497428610920906, 0.009471475146710873, 0.05890268832445145, 0.02350708656013012, 0.23229281604290009, 0.010010690428316593, 0.040079254657030106, 0.0036974740214645863, 0.009054428897798061, 0.0014554414665326476, 0.005479092244058847, 0.00553206168115139, 0.012927445583045483, 0.017900491133332253, 0.04580964520573616, 0.4267204999923706], [0.06145293638110161, 0.12715984880924225, 0.0021214729640632868, 0.0011299900943413377, 0.023556148633360863, 0.2661474347114563, 0.00300776120275259, 0.027315840125083923, 0.0008698574383743107, 0.001104538794606924, 0.00042672024574130774, 0.003334933426231146, 0.002069693524390459, 0.007221663370728493, 0.009361016564071178, 0.022279586642980576, 0.44144052267074585], [0.0402713343501091, 0.0077561684884130955, 0.07665722817182541, 0.004047393333166838, 0.03731353208422661, 0.16687524318695068, 0.019771337509155273, 0.002875668928027153, 0.004403861705213785, 0.001761895720846951, 0.002749256556853652, 0.2510828375816345, 0.07534133642911911, 0.0012606829404830933, 0.001642084214836359, 0.044068384915590286, 0.2621218264102936], [0.033753182739019394, 0.00043227500282227993, 0.0015067863278090954, 0.32140791416168213, 0.029928382486104965, 0.1974867433309555, 0.005059644114226103, 0.00132285978179425, 0.0005125257303006947, 0.0011069067986682057, 0.00022578485368285328, 0.0042680189944803715, 0.003559008240699768, 0.0026313604321330786, 0.002724933670833707, 0.08031478524208069, 0.3137589693069458], [0.04962903633713722, 0.008993533439934254, 0.007664873730391264, 0.020855624228715897, 0.03253837674856186, 0.2859383523464203, 0.008088385686278343, 0.013742748647928238, 0.0022055895533412695, 0.004535463638603687, 0.0011942371493205428, 0.006062026601284742, 0.0048960852436721325, 0.008853367529809475, 0.01808827556669712, 0.055791813880205154, 0.47092220187187195], [0.04201645404100418, 0.02270502783358097, 0.006872508674860001, 0.00949972216039896, 0.013722816482186317, 0.283383846282959, 0.009430182166397572, 0.007559525314718485, 0.00235521188005805, 0.0049883900210261345, 0.0014964599395170808, 0.005076094064861536, 0.005759208928793669, 0.009157562628388405, 0.006037380546331406, 0.018849652260541916, 0.5510900020599365], [0.03095521405339241, 0.004135404713451862, 0.01126971747726202, 0.014768081717193127, 0.02008793130517006, 0.272632896900177, 0.015203195624053478, 0.001492334296926856, 0.0010846862569451332, 0.0048553538508713245, 0.004768284037709236, 0.009041409939527512, 0.003542467253282666, 0.005605577491223812, 0.0030709016136825085, 0.024333374574780464, 0.5731531381607056], [0.08902917802333832, 0.04421904310584068, 0.013655911199748516, 0.0032252224627882242, 0.03674927353858948, 0.23154588043689728, 0.003443789202719927, 0.12332512438297272, 0.0040990873239934444, 0.002236325293779373, 0.0018873043591156602, 0.005128877237439156, 0.0047851549461483955, 0.002748149447143078, 0.026383668184280396, 0.03634682297706604, 0.371191143989563], [0.06734955310821533, 0.0019002766348421574, 0.007856513373553753, 0.002749425359070301, 0.03263362869620323, 0.27226516604423523, 0.014111238531768322, 0.0050799003802239895, 0.028782352805137634, 0.005112835671752691, 0.0027089170180261135, 0.02008640579879284, 0.013252679258584976, 0.005231647752225399, 0.006625050213187933, 0.034259386360645294, 0.47999513149261475], [0.07297343015670776, 0.0014781518839299679, 0.00345822935923934, 0.0019955297466367483, 0.03578260540962219, 0.350554883480072, 0.0137086883187294, 0.005586184561252594, 0.004407285246998072, 0.0029043094255030155, 0.0016241871053352952, 0.0021851782221347094, 0.0006237556226551533, 0.0015882765874266624, 0.0018468856578692794, 0.0318865142762661, 0.4673960208892822], [0.06533157825469971, 0.001563266501761973, 0.019676314666867256, 0.020055672153830528, 0.06402403861284256, 0.2455335110425949, 0.06839649379253387, 0.018945395946502686, 0.010007196106016636, 0.0036023894790560007, 0.07719128578901291, 0.004557098727673292, 0.002432276261970401, 0.0006958742742426693, 0.0006933864206075668, 0.035959210246801376, 0.36133500933647156], [0.03558013215661049, 0.005841870326548815, 0.27139797806739807, 0.012520410120487213, 0.05105749890208244, 0.1088021919131279, 0.030227599665522575, 0.0018574093701317906, 0.009122188203036785, 0.0028723187278956175, 0.0028610494919121265, 0.17512989044189453, 0.08714993298053741, 0.0013580325758084655, 0.0015176325105130672, 0.04015566408634186, 0.16254809498786926], [0.03990878537297249, 0.006484742742031813, 0.14382009208202362, 0.014012821950018406, 0.055974021553993225, 0.15659703314304352, 0.012836240231990814, 0.0007477307808585465, 0.0028714367654174566, 0.0017660000594332814, 0.0018815257353708148, 0.13910895586013794, 0.1365923434495926, 0.003421287052333355, 0.0008353823213838041, 0.03253874555230141, 0.2506029009819031], [0.05054723098874092, 0.00874280370771885, 0.004054287448525429, 0.020430466160178185, 0.07705944776535034, 0.26852935552597046, 0.013320069760084152, 0.0009915452683344483, 0.0012648955453187227, 0.0006454107933677733, 0.0002808280987665057, 0.005169277545064688, 0.007070883177220821, 0.12827757000923157, 0.018370531499385834, 0.035166628658771515, 0.3600787818431854], [0.07726559787988663, 0.003487273119390011, 0.002881597029045224, 0.012821665033698082, 0.0986613854765892, 0.16865836083889008, 0.007815337739884853, 0.01765567623078823, 0.0027294266037642956, 0.001641094801016152, 0.00015283595712389797, 0.003945354837924242, 0.0011418978683650494, 0.011378474533557892, 0.34721043705940247, 0.05511897802352905, 0.18743464350700378], [0.05506395176053047, 0.007154636085033417, 0.005210397765040398, 0.02091044746339321, 0.03810705244541168, 0.3028075695037842, 0.00931104738265276, 0.012986178509891033, 0.0014605473261326551, 0.003041572868824005, 0.0009205089299939573, 0.0032795178703963757, 0.003203876316547394, 0.004021923523396254, 0.013339316472411156, 0.01245829276740551, 0.506723165512085], [0.051593367010354996, 0.029119038954377174, 0.008509663864970207, 0.013138296082615852, 0.01986815221607685, 0.281210720539093, 0.010887163691222668, 0.009180691093206406, 0.003132787998765707, 0.006000082474201918, 0.002033224096521735, 0.0060060597024858, 0.00744234025478363, 0.01087941788136959, 0.007662484887987375, 0.023263519629836082, 0.5100729465484619]], [[0.10336869210004807, 0.1225782036781311, 0.03529629483819008, 0.17628857493400574, 0.13615213334560394, 0.0857137143611908, 0.01073545590043068, 0.037293270230293274, 0.011125377379357815, 0.005583721678704023, 0.005551045294851065, 0.0035320816095918417, 0.0032003577798604965, 0.017626957967877388, 0.037587545812129974, 0.07705569267272949, 0.13131090998649597], [0.08681363612413406, 0.008783026598393917, 0.0012937630526721478, 0.008755655959248543, 0.03562639281153679, 0.09109000116586685, 0.00490904413163662, 0.3934192955493927, 0.0025112489238381386, 0.020903782919049263, 0.0009284766274504364, 0.002268973272293806, 0.003902988275513053, 0.028809402137994766, 0.06208878383040428, 0.11168660968542099, 0.13620898127555847], [0.082151859998703, 0.007726113311946392, 0.018879756331443787, 0.032986242324113846, 0.050636377185583115, 0.18699638545513153, 0.0738079622387886, 0.09495062381029129, 0.028496991842985153, 0.03325236961245537, 0.03456613048911095, 0.017317118123173714, 0.02618158981204033, 0.006774140987545252, 0.018708543851971626, 0.08097532391548157, 0.20559252798557281], [0.11828630417585373, 0.015885327011346817, 0.006034341175109148, 0.0015313253970816731, 0.0738229975104332, 0.1519528478384018, 0.019031153991818428, 0.0685887485742569, 0.003700725268572569, 0.018257994204759598, 0.004624657332897186, 0.0042316666804254055, 0.00700906990095973, 0.007637304719537497, 0.06946372240781784, 0.2320757657289505, 0.1978660374879837], [0.1341184824705124, 0.024436404928565025, 0.010183961130678654, 0.056069765239953995, 0.05597365275025368, 0.22445854544639587, 0.014208444394171238, 0.043106433004140854, 0.011776364408433437, 0.02237282134592533, 0.005547026637941599, 0.005493832752108574, 0.010627062059938908, 0.0037383167073130608, 0.023844625800848007, 0.07954635471105576, 0.2744978666305542], [0.02648344449698925, 0.01099418569356203, 0.002891591750085354, 0.009878634475171566, 0.009541776031255722, 0.32127025723457336, 0.004688975866883993, 0.004109886474907398, 0.0018489719368517399, 0.006412194576114416, 0.0032173197250813246, 0.00234213680960238, 0.0040642814710736275, 0.005061607342213392, 0.005262448452413082, 0.017254287376999855, 0.5646779537200928], [0.13729871809482574, 0.03379979357123375, 0.01871505007147789, 0.041503921151161194, 0.07438752800226212, 0.20402242243289948, 0.002648571040481329, 0.01896880939602852, 0.0027704027015715837, 0.01543358713388443, 0.006445690058171749, 0.007710008881986141, 0.004615255631506443, 0.006662537343800068, 0.019713586196303368, 0.06686218827962875, 0.33844193816185], [0.25141122937202454, 0.13794012367725372, 0.012225898914039135, 0.09989318996667862, 0.10542666912078857, 0.09594608098268509, 0.007071088999509811, 0.033175449818372726, 0.004345077555626631, 0.01523233950138092, 0.0030151554383337498, 0.004281243309378624, 0.007662689778953791, 0.015680335462093353, 0.013454570434987545, 0.036142610013484955, 0.15709629654884338], [0.18127132952213287, 0.010720261372625828, 0.05320054292678833, 0.09204297512769699, 0.1065879836678505, 0.11929713934659958, 0.015761228278279305, 0.0902443677186966, 0.0028684516437351704, 0.007102891802787781, 0.00858998578041792, 0.04198714718222618, 0.020695744082331657, 0.005626024678349495, 0.02843034639954567, 0.05451374128460884, 0.16105978190898895], [0.13157248497009277, 0.024854842573404312, 0.04730375111103058, 0.14041516184806824, 0.07954300194978714, 0.17040109634399414, 0.016410596668720245, 0.014561440795660019, 0.0025242564734071493, 0.0014768473338335752, 0.004488035570830107, 0.011154004372656345, 0.026768021285533905, 0.0055696964263916016, 0.025582581758499146, 0.03528425097465515, 0.2620898187160492], [0.12418176233768463, 0.02322266437113285, 0.05831792950630188, 0.04265858232975006, 0.13718806207180023, 0.17307572066783905, 0.021790562197566032, 0.027257809415459633, 0.002818731125444174, 0.005577308591455221, 0.016896557062864304, 0.01410334650427103, 0.027375709265470505, 0.003873097011819482, 0.008725002408027649, 0.05366206169128418, 0.2592751681804657], [0.08731339871883392, 0.013800994493067265, 0.04437326639890671, 0.07419276237487793, 0.04107537865638733, 0.14255428314208984, 0.06392258405685425, 0.02437262423336506, 0.053048621863126755, 0.0461420863866806, 0.04334021359682083, 0.03472164273262024, 0.03115539252758026, 0.01307627372443676, 0.027484634891152382, 0.0618659146130085, 0.1975598931312561], [0.1082717701792717, 0.02116864174604416, 0.02565820887684822, 0.08669930696487427, 0.0295505803078413, 0.16957823932170868, 0.01379176415503025, 0.01710134744644165, 0.013857324607670307, 0.05601979047060013, 0.018394047394394875, 0.016321707516908646, 0.010623350739479065, 0.03345605731010437, 0.019989201799035072, 0.059176523238420486, 0.3003421723842621], [0.23923413455486298, 0.1072065681219101, 0.005270267836749554, 0.05509188771247864, 0.01441070158034563, 0.17891623079776764, 0.00625356612727046, 0.013027623295783997, 0.002073727548122406, 0.008066103793680668, 0.0007277958211489022, 0.004716387018561363, 0.01119291316717863, 0.005834843963384628, 0.009916200302541256, 0.02795359119772911, 0.3101073205471039], [0.33737891912460327, 0.04281759262084961, 0.009820016101002693, 0.13722273707389832, 0.057082392275333405, 0.10974987596273422, 0.02055457979440689, 0.034221600741147995, 0.005730246659368277, 0.022487493231892586, 0.0009611845598556101, 0.00583009934052825, 0.008041179738938808, 0.00712266331538558, 0.009075631387531757, 0.03183794021606445, 0.16006577014923096], [0.15622156858444214, 0.03496575728058815, 0.01813303865492344, 0.14434178173542023, 0.057292208075523376, 0.19471754133701324, 0.013485225848853588, 0.016717445105314255, 0.008774242363870144, 0.01648121327161789, 0.0058390372432768345, 0.0071086157113313675, 0.01200396940112114, 0.005699866451323032, 0.00947626307606697, 0.03348911553621292, 0.26525309681892395], [0.034607693552970886, 0.01672479696571827, 0.0044392854906618595, 0.014982888475060463, 0.013953316025435925, 0.30665940046310425, 0.0065314872190356255, 0.006472308188676834, 0.002343123545870185, 0.008858323097229004, 0.0042868126183748245, 0.0031605660915374756, 0.005941335577517748, 0.008359720930457115, 0.008701157756149769, 0.02304043434560299, 0.5309373140335083]], [[0.05165894329547882, 0.023755986243486404, 0.006565973628312349, 0.016698382794857025, 0.021363699808716774, 0.23178629577159882, 0.010155029594898224, 0.06475724279880524, 0.010554233565926552, 0.003769868053495884, 0.001996897626668215, 0.01208445057272911, 0.0066091567277908325, 0.05454133450984955, 0.012395089492201805, 0.1299595832824707, 0.34134790301322937], [0.0947539210319519, 0.012472497299313545, 0.005847487132996321, 0.021336523815989494, 0.02351018786430359, 0.33107995986938477, 0.020265035331249237, 0.0172430407255888, 0.00891499686986208, 0.004778641741722822, 0.0009743247064761817, 0.0034364869352430105, 0.002036142395809293, 0.00747316051274538, 0.005807611625641584, 0.022258255630731583, 0.4178118407726288], [0.1894897073507309, 0.01981247216463089, 0.018218418583273888, 0.045318905264139175, 0.0462697334587574, 0.23434966802597046, 0.010763924568891525, 0.013889777474105358, 0.007284166291356087, 0.0038900079671293497, 0.001249484485015273, 0.00790287647396326, 0.005473711062222719, 0.01566099002957344, 0.01935945451259613, 0.023539898917078972, 0.33752673864364624], [0.1314813196659088, 0.014610939659178257, 0.01356077566742897, 0.018384795635938644, 0.040713243186473846, 0.3016456067562103, 0.015155076049268246, 0.00822015106678009, 0.007083596661686897, 0.004059185273945332, 0.0028674807399511337, 0.004334619268774986, 0.0031802367884665728, 0.005610951688140631, 0.008701307699084282, 0.011809668503701687, 0.4085809290409088], [0.22549404203891754, 0.007114562205970287, 0.0024433487560600042, 0.04477564990520477, 0.023403620347380638, 0.27019304037094116, 0.013984372839331627, 0.03506350889801979, 0.004006613977253437, 0.008757180534303188, 0.0008591520600020885, 0.0020729294046759605, 0.0018172194249927998, 0.005845396313816309, 0.00705011747777462, 0.022568615153431892, 0.324550598859787], [0.04789324104785919, 0.022946739569306374, 0.006669843103736639, 0.015496197156608105, 0.01695776917040348, 0.32363376021385193, 0.00863400287926197, 0.004274304956197739, 0.003925928380340338, 0.015557684935629368, 0.006055773235857487, 0.004728637170046568, 0.009349378757178783, 0.012688489630818367, 0.00912445317953825, 0.012776820920407772, 0.47928690910339355], [0.02811301313340664, 0.012686808593571186, 0.00422761170193553, 0.01496970746666193, 0.04796605557203293, 0.34970906376838684, 0.006416724994778633, 0.003921122755855322, 0.0024393051862716675, 0.0021565300412476063, 0.0028066232334822416, 0.0032630523201078176, 0.0027942194137722254, 0.009819312021136284, 0.02310374565422535, 0.024439070373773575, 0.4611680507659912], [0.02847570925951004, 0.013004687614738941, 0.0034612175077199936, 0.004368717782199383, 0.02125864289700985, 0.3343687355518341, 0.007146271876990795, 0.018228719010949135, 0.005304870195686817, 0.000811816134955734, 0.0012338045053184032, 0.003617834532633424, 0.0018875488312914968, 0.010798485018312931, 0.008526266552507877, 0.02893068827688694, 0.5085759162902832], [0.03385113179683685, 0.02547447942197323, 0.011923396959900856, 0.007906449027359486, 0.03823704645037651, 0.34403911232948303, 0.007194030564278364, 0.0053366245701909065, 0.006245515774935484, 0.0010532786836847663, 0.0017640780424699187, 0.007598034106194973, 0.002859683707356453, 0.005799680482596159, 0.006100657861679792, 0.013296027667820454, 0.4813207983970642], [0.017575060948729515, 0.00877892691642046, 0.006980573292821646, 0.0041288044303655624, 0.01787586510181427, 0.3724302351474762, 0.005221376195549965, 0.0035955174826085567, 0.0042810337617993355, 0.002457154681906104, 0.006341694388538599, 0.006903673056513071, 0.003715184982866049, 0.003326407400891185, 0.008210653439164162, 0.012383714318275452, 0.515794038772583], [0.058126095682382584, 0.015935411676764488, 0.015137264505028725, 0.009239228442311287, 0.025616435334086418, 0.3332746624946594, 0.006274143699556589, 0.004316830076277256, 0.003852009540423751, 0.0036235731095075607, 0.0056288763880729675, 0.006736073177307844, 0.005423455499112606, 0.0072571886703372, 0.006291393656283617, 0.01175197958946228, 0.48151522874832153], [0.028032336384058, 0.022896450012922287, 0.008364403620362282, 0.005802186205983162, 0.02999231405556202, 0.3156295716762543, 0.006044185720384121, 0.007869179360568523, 0.003812572918832302, 0.0018915525870397687, 0.002577143721282482, 0.010929853655397892, 0.008988377638161182, 0.031067898496985435, 0.0232265405356884, 0.03188694268465042, 0.46098846197128296], [0.02442978508770466, 0.011217782273888588, 0.008742407895624638, 0.004693811759352684, 0.02841014601290226, 0.3396807610988617, 0.002995001617819071, 0.004459674004465342, 0.001385514042340219, 0.0014268947998061776, 0.0046672639437019825, 0.0072952681221067905, 0.007603543810546398, 0.009223833680152893, 0.010006716474890709, 0.018526868894696236, 0.5152347683906555], [0.02531510218977928, 0.00555157708004117, 0.010257742367684841, 0.003404574003070593, 0.02686181850731373, 0.3118719160556793, 0.009223297238349915, 0.00908953882753849, 0.005229737143963575, 0.0022455407306551933, 0.0037355078384280205, 0.019336285069584846, 0.0095559973269701, 0.009497511200606823, 0.016472138464450836, 0.04330996796488762, 0.4890417754650116], [0.04582818225026131, 0.006601357366889715, 0.004020633175969124, 0.004667738918215036, 0.044194843620061874, 0.3225451707839966, 0.0039333561435341835, 0.008371192961931229, 0.002781418850645423, 0.0007694057421758771, 0.0038627446629107, 0.008096563629806042, 0.0027948308270424604, 0.007541014812886715, 0.03292239457368851, 0.05040775611996651, 0.45066145062446594], [0.05321057513356209, 0.011758091859519482, 0.004460273776203394, 0.023404840379953384, 0.03574329987168312, 0.33166417479515076, 0.008508510887622833, 0.020843498408794403, 0.0026954396162182093, 0.0021198031026870012, 0.0007207473972812295, 0.004331736825406551, 0.0029813169967383146, 0.014873208478093147, 0.012876981869339943, 0.05464870110154152, 0.41515883803367615], [0.03919724002480507, 0.017372263595461845, 0.009026450105011463, 0.013540424406528473, 0.017397485673427582, 0.3266577124595642, 0.009396608918905258, 0.004159429110586643, 0.004410432185977697, 0.013475866988301277, 0.007279003504663706, 0.005993909668177366, 0.009623916819691658, 0.009632362052798271, 0.00818620529025793, 0.011695836670696735, 0.4929548501968384]], [[0.023211730644106865, 0.00466602249071002, 0.001595613663084805, 0.003089980222284794, 0.0021290131844580173, 0.024768218398094177, 0.6605097651481628, 0.14358989894390106, 0.007355018053203821, 0.007155024912208319, 0.0029368402902036905, 0.014772218652069569, 0.004885509610176086, 0.0262523852288723, 0.010754216462373734, 0.012744246050715446, 0.049584317952394485], [0.02799438312649727, 0.02317277155816555, 0.12365210801362991, 0.0365353487432003, 0.09020043164491653, 0.24931147694587708, 0.00462312251329422, 0.015827486291527748, 0.0016008876264095306, 0.0018512947717681527, 0.00013217383821029216, 0.00028174291946925223, 0.00022760491992812604, 0.0015499008586630225, 0.005968927405774593, 0.00882467906922102, 0.40824562311172485], [0.02476915717124939, 0.008628848008811474, 0.010543876327574253, 0.4721522927284241, 0.13587231934070587, 0.12504509091377258, 0.01438688300549984, 0.006198087707161903, 0.0011423028772696853, 0.0024869644548743963, 0.0008268015226349235, 0.0004253006773069501, 0.000600500381551683, 0.003156698541715741, 0.0022634947672486305, 0.005491552874445915, 0.1860099583864212], [0.030751392245292664, 0.002105646999552846, 0.0016396120190620422, 0.0031108909752219915, 0.6480420827865601, 0.11435682326555252, 0.003738359548151493, 0.0023767626844346523, 4.125712439417839e-05, 6.466128979809582e-05, 6.081668834667653e-05, 0.00021372022456489503, 5.399443398346193e-05, 0.00012123991473345086, 0.00017275186837650836, 0.005538542754948139, 0.18761137127876282], [0.27365750074386597, 0.024592958390712738, 0.0010076690232381225, 0.012209033593535423, 0.029955271631479263, 0.1588202714920044, 0.13777999579906464, 0.06800521165132523, 0.000763312098570168, 0.0028196945786476135, 0.0005068961181677878, 0.00163919513579458, 0.0007284693419933319, 0.0030180164612829685, 0.002134254900738597, 0.00874103233218193, 0.27362123131752014], [0.153690904378891, 0.03394666686654091, 0.004576488863676786, 0.015444139949977398, 0.031960271298885345, 0.18739880621433258, 0.035278450697660446, 0.027590535581111908, 0.006107023451477289, 0.011865966953337193, 0.00598477479070425, 0.01035168394446373, 0.006364523433148861, 0.02301783114671707, 0.018442515283823013, 0.039890795946121216, 0.3880887031555176], [0.024575529620051384, 0.00525854155421257, 0.0007384816999547184, 0.0014944388531148434, 0.0066286553628742695, 0.09789392352104187, 0.06694644689559937, 0.3901151120662689, 0.051509756594896317, 0.09051057696342468, 0.0169462189078331, 0.032911770045757294, 0.014559967443346977, 0.0386369414627552, 0.018103884533047676, 0.01049030665308237, 0.13267941772937775], [0.014018679969012737, 0.002980936551466584, 0.0012251707958057523, 0.003070020116865635, 0.012072538025677204, 0.11192471534013748, 0.03180665150284767, 0.11648521572351456, 0.12485145032405853, 0.07640864700078964, 0.01960974931716919, 0.03710455819964409, 0.02831263840198517, 0.09385960549116135, 0.06820748746395111, 0.02891392819583416, 0.2291480302810669], [0.004273127764463425, 0.0002602452877908945, 7.392426050500944e-05, 0.0011007841676473618, 0.0014528634492307901, 0.02683922089636326, 0.004407321568578482, 0.010651294142007828, 0.010374179109930992, 0.7186926603317261, 0.10431402176618576, 0.02597646415233612, 0.005334318615496159, 0.019569505006074905, 0.006564782466739416, 0.0049203247763216496, 0.0551949068903923], [0.012348685413599014, 0.0003315323556307703, 5.337392212823033e-05, 0.0006584448274224997, 0.0056983232498168945, 0.11354583501815796, 0.00526374951004982, 0.008690906688570976, 0.007551788352429867, 0.08868472278118134, 0.2673601508140564, 0.15295451879501343, 0.021575909107923508, 0.041842468082904816, 0.013035586103796959, 0.021906109526753426, 0.23849795758724213], [0.011466892436146736, 0.0007154044578783214, 2.8268375899642706e-05, 0.000547687232028693, 0.004791250452399254, 0.09515953063964844, 0.013738821260631084, 0.017673589289188385, 0.0008721679914742708, 0.002826421521604061, 0.004620818421244621, 0.30959460139274597, 0.08159030228853226, 0.1973135769367218, 0.0647592544555664, 0.029354166239500046, 0.1649472862482071], [0.0006707666907459497, 7.040103810140863e-05, 2.0656791093642823e-05, 0.00026258069556206465, 0.000205895776161924, 0.01663457602262497, 0.007809856906533241, 0.0031699934042990208, 0.0017602250445634127, 0.009558247402310371, 0.011305002495646477, 0.05440544709563255, 0.6434403657913208, 0.1877625286579132, 0.03427339717745781, 0.0039769443683326244, 0.02467317506670952], [0.0013727007899433374, 0.0008228248334489763, 9.254166070604697e-05, 0.00047811047988943756, 0.0003704484843183309, 0.04031042382121086, 0.0022535158786922693, 0.005137591622769833, 0.001009731786325574, 0.003224855288863182, 0.0008325522649101913, 0.01588313654065132, 0.07317420840263367, 0.5068409442901611, 0.26624107360839844, 0.012120026163756847, 0.06983529776334763], [0.008716636337339878, 0.0017853545723482966, 0.0016161662060767412, 0.003433765145018697, 0.0016346735646948218, 0.13639192283153534, 0.002339157974347472, 0.004461678210645914, 0.001684343907982111, 0.0067450315691530704, 0.0011079664109274745, 0.0070571936666965485, 0.044473957270383835, 0.07587456703186035, 0.36789703369140625, 0.07134087383747101, 0.26343968510627747], [0.03629195690155029, 0.00245522428303957, 0.0015393587527796626, 0.0017270996468141675, 0.009121891111135483, 0.0986005961894989, 0.004856136627495289, 0.008991147391498089, 0.0015357794472947717, 0.003008153522387147, 0.0016521761426702142, 0.011931486427783966, 0.011252088472247124, 0.016655687242746353, 0.03047342039644718, 0.5064504742622375, 0.25345730781555176], [0.11568381637334824, 0.00731974421069026, 0.0014667087234556675, 0.0057333786971867085, 0.004877214320003986, 0.1728309988975525, 0.01854667440056801, 0.013645730912685394, 0.0009700780501589179, 0.01257389597594738, 0.002192673273384571, 0.004227973986417055, 0.004633863922208548, 0.017549728974699974, 0.025164993479847908, 0.08616610616445541, 0.5064164400100708], [0.15066541731357574, 0.033348504453897476, 0.007980413734912872, 0.02388893999159336, 0.03644131124019623, 0.17045605182647705, 0.035565853118896484, 0.028213638812303543, 0.006972623523324728, 0.013329114764928818, 0.008805900812149048, 0.01712845452129841, 0.009016210213303566, 0.029238790273666382, 0.025422925129532814, 0.06052538380026817, 0.34300053119659424]], [[0.1401900053024292, 0.028113579377532005, 0.015647513791918755, 0.027940943837165833, 0.07883161306381226, 0.16676656901836395, 0.05915408208966255, 0.056243568658828735, 0.006478872150182724, 0.00890008732676506, 0.00564498221501708, 0.004460262134671211, 0.005652919877320528, 0.009031516499817371, 0.016585029661655426, 0.05820611119270325, 0.31215235590934753], [0.05983929708600044, 0.01987399347126484, 0.004870415199548006, 0.011512423865497112, 0.017558757215738297, 0.3452082574367523, 0.008106443099677563, 0.007582777179777622, 0.00039095862302929163, 0.0005975717213004827, 0.00029422587249428034, 0.00046280300011858344, 0.0013136877678334713, 0.0016783312894403934, 0.003228544956073165, 0.011549598537385464, 0.5059318542480469], [0.06327949464321136, 0.24431659281253815, 0.035684745758771896, 0.06591286510229111, 0.042913876473903656, 0.18250170350074768, 0.02628510259091854, 0.01127178966999054, 0.000738381699193269, 0.0016145415138453245, 0.0012491854140534997, 0.0007925564423203468, 0.006095913704484701, 0.012602375820279121, 0.008303116075694561, 0.01780800335109234, 0.27862969040870667], [0.043122902512550354, 0.099399134516716, 0.08293254673480988, 0.009888379834592342, 0.03895541653037071, 0.2437041997909546, 0.017262643203139305, 0.012762797996401787, 0.0012454090174287558, 0.0019190785242244601, 0.001160597545094788, 0.0006667557754553854, 0.0012468487257137895, 0.004924622364342213, 0.004552507307380438, 0.022440919652581215, 0.4138151705265045], [0.043932460248470306, 0.15543703734874725, 0.12311000376939774, 0.17269685864448547, 0.05046471208333969, 0.15910816192626953, 0.010188672691583633, 0.011399788782000542, 0.0013636777875944972, 0.001482657971791923, 0.0014044058043509722, 0.0010452191345393658, 0.0009397288085892797, 0.003427242860198021, 0.0033940011635422707, 0.005682741291821003, 0.25492265820503235], [0.054385196417570114, 0.013110375963151455, 0.007813626900315285, 0.009411541745066643, 0.0175066739320755, 0.2924765646457672, 0.015352481044828892, 0.015838272869586945, 0.0034517201129347086, 0.004771355073899031, 0.0031383417081087828, 0.004848658572882414, 0.005979365669190884, 0.0055879857391119, 0.004025738686323166, 0.0192168690264225, 0.5230851769447327], [0.1522325575351715, 0.0392732210457325, 0.004189175087958574, 0.08258581906557083, 0.19743098318576813, 0.18844737112522125, 0.02976786345243454, 0.025820305570960045, 0.0016187430592253804, 0.0023501215036958456, 0.0024883237201720476, 0.0008848988800309598, 0.0011700810864567757, 0.004171321168541908, 0.0047963401302695274, 0.009420989081263542, 0.2533518373966217], [0.13247407972812653, 0.022907884791493416, 0.0029724701307713985, 0.01873820833861828, 0.12811024487018585, 0.1341034173965454, 0.2723173499107361, 0.09185628592967987, 0.009976754896342754, 0.006009792909026146, 0.002401560777798295, 0.001374844927340746, 0.000997610273770988, 0.001964875962585211, 0.004327590111643076, 0.00836953241378069, 0.16109754145145416], [0.1181982234120369, 0.02914504148066044, 0.0011057726806029677, 0.007916825823485851, 0.07282356917858124, 0.09534642100334167, 0.29335445165634155, 0.17801035940647125, 0.025848763063549995, 0.01345974300056696, 0.013002016581594944, 0.00395544245839119, 0.0034101116470992565, 0.006267228163778782, 0.007205338682979345, 0.014383014291524887, 0.1165677160024643], [0.06620685011148453, 0.007468943018466234, 0.0009561091428622603, 0.00197137170471251, 0.034924525767564774, 0.11259371787309647, 0.1891031116247177, 0.2861321270465851, 0.08417737483978271, 0.01532285287976265, 0.011005536653101444, 0.007073312532156706, 0.005692370235919952, 0.007974729873239994, 0.0073600527830421925, 0.01922466792166233, 0.14281237125396729], [0.012253198772668839, 0.0011942153796553612, 0.0005605336627922952, 0.0012843506410717964, 0.009202368557453156, 0.014125197194516659, 0.20978151261806488, 0.10667110234498978, 0.4384540021419525, 0.160136878490448, 0.00478324806317687, 0.004690897185355425, 0.0016759367426857352, 0.0035957731306552887, 0.005051938816905022, 0.0069873034954071045, 0.01955154910683632], [0.03320518508553505, 0.004107944667339325, 0.0006745075806975365, 0.005015206523239613, 0.023073410615324974, 0.04623394459486008, 0.17908485233783722, 0.1236698180437088, 0.08372961729764938, 0.1666155457496643, 0.1207275241613388, 0.04215870425105095, 0.03510230779647827, 0.02547468990087509, 0.014676296152174473, 0.022731494158506393, 0.07371900975704193], [0.019371025264263153, 0.0025333594530820847, 0.0006729546585120261, 0.0029273596592247486, 0.014065791852772236, 0.06691975146532059, 0.08536545187234879, 0.05498379096388817, 0.05048707500100136, 0.189193457365036, 0.17335674166679382, 0.1352636069059372, 0.041427355259656906, 0.037606436759233475, 0.010935909114778042, 0.016723817214369774, 0.09816617518663406], [0.041043736040592194, 0.006951713468879461, 0.001135463360697031, 0.0022053460124880075, 0.023165440186858177, 0.12555012106895447, 0.08479582518339157, 0.06915120035409927, 0.02262333780527115, 0.07711441069841385, 0.04180590808391571, 0.09090447425842285, 0.11126773059368134, 0.03760271891951561, 0.01792389154434204, 0.04064730927348137, 0.20611129701137543], [0.012222692370414734, 0.0038915248587727547, 0.001387462834827602, 0.0011161412112414837, 0.011921308934688568, 0.025273172184824944, 0.07688242197036743, 0.14822231233119965, 0.03364647179841995, 0.038491521030664444, 0.0960070937871933, 0.17095935344696045, 0.23185427486896515, 0.0603300966322422, 0.01993490941822529, 0.026943393051624298, 0.040915850549936295], [0.06260522454977036, 0.016925688832998276, 0.0027843168936669827, 0.005787092261016369, 0.013218763284385204, 0.204588383436203, 0.01167080458253622, 0.03883005678653717, 0.006958593614399433, 0.017395740374922752, 0.025202542543411255, 0.031618066132068634, 0.039821870625019073, 0.07209596782922745, 0.06485216319561005, 0.05426434427499771, 0.3313803970813751], [0.06837667524814606, 0.015184596180915833, 0.008909791707992554, 0.009956056252121925, 0.019921785220503807, 0.27095597982406616, 0.02309945784509182, 0.023704499006271362, 0.0055786133743822575, 0.007294753100723028, 0.004511021077632904, 0.007085579447448254, 0.009487494826316833, 0.008870461024343967, 0.007077313028275967, 0.03062671795487404, 0.47935932874679565]], [[0.06570226699113846, 0.013404469937086105, 0.0010317463893443346, 0.0037525345105677843, 0.02520647458732128, 0.34878009557724, 0.0016726370668038726, 0.005946717225015163, 0.0010537565685808659, 0.0012786510633304715, 0.0005143113085068762, 0.0013222352135926485, 0.002291781594976783, 0.00745434919372201, 0.006352053955197334, 0.04039645195007324, 0.47383949160575867], [0.053694259375333786, 0.047311507165431976, 0.0002456077199894935, 9.43408886087127e-05, 0.009032156318426132, 0.3999272584915161, 0.01426733285188675, 0.02799800969660282, 0.0003710322198458016, 0.0015812097117304802, 9.487176430411637e-05, 0.0012390495976433158, 0.0006372751668095589, 0.005485310684889555, 0.003409816650673747, 0.021896550431847572, 0.4127143919467926], [0.024044213816523552, 0.0004130765446461737, 0.0966353639960289, 0.0014724996872246265, 0.0060294317081570625, 0.2514822483062744, 0.014601172879338264, 0.009746543131768703, 0.0019603066612035036, 0.002832145895808935, 0.0002915467484854162, 0.2388623058795929, 0.01167753990739584, 0.0013034830335527658, 0.0006156119634397328, 0.019184259697794914, 0.31884822249412537], [0.024280641227960587, 6.511964602395892e-05, 0.0011148948688060045, 0.05297445133328438, 0.01793387345969677, 0.33930477499961853, 0.0060739764012396336, 0.0007633985951542854, 9.186705574393272e-05, 0.00038976551149971783, 0.00014531397027894855, 0.003910662140697241, 0.0010686202440410852, 0.000318248727126047, 0.001665199059061706, 0.09551947563886642, 0.4543795883655548], [0.053389884531497955, 0.001136645209044218, 0.0006365918670780957, 0.0010870775440707803, 0.08938983827829361, 0.27214211225509644, 0.006751717533916235, 0.006494175177067518, 0.00025712899514473975, 0.0016391393728554249, 4.949928188580088e-05, 0.0010322091402485967, 0.0005670086829923093, 0.0020824915263801813, 0.004460904747247696, 0.17319369316101074, 0.3856898546218872], [0.045665327459573746, 0.00750511372461915, 0.0012352375779300928, 0.0017922535771504045, 0.007658358663320541, 0.37350088357925415, 0.006727366708219051, 0.013222869485616684, 0.0008905936265364289, 0.0028303819708526134, 0.0007003381615504622, 0.0024052222725003958, 0.003250986570492387, 0.005675951484590769, 0.005734232719987631, 0.022416645660996437, 0.4987882673740387], [0.04142669215798378, 0.005803171079605818, 0.013422605581581593, 0.010834252461791039, 0.05827654153108597, 0.3769848346710205, 0.017906486988067627, 0.001470280229113996, 0.0005378356436267495, 0.0002581725420895964, 8.275623986264691e-05, 0.001675425679422915, 0.001062852912582457, 0.0016211604233831167, 0.0012720780214294791, 0.018309079110622406, 0.4490557312965393], [0.05009599030017853, 0.01564614661037922, 0.0033492823131382465, 0.0012596832821145654, 0.034346286207437515, 0.2836068272590637, 0.0005846041603945196, 0.23371616005897522, 0.00027866175514645875, 0.00016857324226293713, 7.118852954590693e-05, 0.00027560730814002454, 8.323076326632872e-05, 0.00024075695546343923, 0.002733398461714387, 0.014707050286233425, 0.3588365316390991], [0.09040585160255432, 0.0013930265558883548, 0.040452130138874054, 0.013046897016465664, 0.023524651303887367, 0.35615718364715576, 0.002280870219692588, 0.0019798390567302704, 0.039209600538015366, 0.000598990183789283, 6.92625399096869e-05, 0.007492052856832743, 0.00038111789035610855, 0.0014361102366819978, 0.0014860020019114017, 0.014659230597317219, 0.40542715787887573], [0.10650663077831268, 0.003948159981518984, 0.02408776804804802, 0.0245578084141016, 0.04623785987496376, 0.3116132318973541, 0.0011653004912659526, 0.002677070675417781, 0.002715964335948229, 0.018764663487672806, 0.0004999885568395257, 0.0009353991481475532, 0.000173010237631388, 0.0016566201811656356, 0.010064538568258286, 0.024906301870942116, 0.4194898009300232], [0.09968402236700058, 0.00021540321176871657, 0.005297600291669369, 0.004712133668363094, 0.020949268713593483, 0.3424343764781952, 0.0014704528730362654, 0.0018096878193318844, 0.0009650461724959314, 0.002700075739994645, 0.02441536821424961, 0.001276038703508675, 0.0004480421484913677, 3.3635529689490795e-05, 5.336787580745295e-05, 0.013217881321907043, 0.4803175628185272], [0.03165177255868912, 0.0026100550312548876, 0.5045634508132935, 0.01429863553494215, 0.014885075390338898, 0.12133555859327316, 0.0020846317056566477, 0.0006799469119869173, 0.0025432342663407326, 0.000146442573168315, 0.0001085404001059942, 0.13168023526668549, 0.006755494978278875, 0.0025289691984653473, 0.00035374361323192716, 0.004741345066577196, 0.15903282165527344], [0.04796713963150978, 0.0027867844328284264, 0.02222169004380703, 0.004391808062791824, 0.01921819895505905, 0.30197715759277344, 0.0013361972523853183, 0.00020907960424665362, 0.00033465196611359715, 9.017864795168862e-05, 0.00010548855061642826, 0.009152410551905632, 0.16082501411437988, 0.0017686228966340423, 0.0005036082002334297, 0.008889799006283283, 0.41822224855422974], [0.041357047855854034, 0.0034673893824219704, 0.0009387538302689791, 0.0009413735242560506, 0.04258274286985397, 0.28404542803764343, 0.0006039298023097217, 0.00011000943777617067, 3.0859631806379184e-05, 3.536407893989235e-05, 2.155240281354054e-06, 0.00024535131524316967, 0.00013703174772672355, 0.2223626673221588, 0.016774998977780342, 0.01435803808271885, 0.372006893157959], [0.03458356857299805, 0.0016797103453427553, 0.0003266152343712747, 0.0010211282642558217, 0.022770900279283524, 0.21168583631515503, 0.00015335231728386134, 0.0003959585737902671, 2.772431071207393e-05, 3.728480078279972e-05, 1.3733465493714903e-06, 7.04475023667328e-05, 9.454359678784385e-05, 0.028682244941592216, 0.3826564848423004, 0.020169531926512718, 0.29564324021339417], [0.06466073542833328, 0.0023442318197339773, 0.001292256754823029, 0.006862551439553499, 0.11567161977291107, 0.32172736525535583, 0.0017938480013981462, 0.003336162306368351, 0.0002913714852184057, 0.0005706550437025726, 4.075264951097779e-05, 0.00043681534589268267, 0.0004929225542582572, 0.0017750391270965338, 0.005985098425298929, 0.04134365916252136, 0.4313748776912689], [0.04538986459374428, 0.00677186343818903, 0.0011203563772141933, 0.0018689405405893922, 0.008766681887209415, 0.3768336772918701, 0.005006261635571718, 0.01060221903026104, 0.0006627669790759683, 0.0021747141145169735, 0.0006284755072556436, 0.0018242899095639586, 0.002925712615251541, 0.005136676598340273, 0.005908265244215727, 0.020982516929507256, 0.50339674949646]], [[0.05208815261721611, 0.017580274492502213, 0.012287329882383347, 0.033215854316949844, 0.047535490244627, 0.11820408701896667, 0.03792410343885422, 0.06918510049581528, 0.010652332566678524, 0.0543842613697052, 0.0068865129724144936, 0.041267313063144684, 0.07284370809793472, 0.058874670416116714, 0.05899472162127495, 0.18293556571006775, 0.1251405030488968], [0.0479232482612133, 0.057220470160245895, 0.05963917076587677, 0.07159499078989029, 0.03968450427055359, 0.14415188133716583, 0.008814776316285133, 0.12050143629312515, 0.013438704423606396, 0.029827747493982315, 0.0058643086813390255, 0.03023342601954937, 0.0638999491930008, 0.03227095305919647, 0.05764109641313553, 0.044349219650030136, 0.1729440838098526], [0.07684830576181412, 0.11606902629137039, 0.0836779996752739, 0.07391451299190521, 0.03288302198052406, 0.08500505238771439, 0.005641262978315353, 0.12624214589595795, 0.011361116543412209, 0.07661863416433334, 0.011296546086668968, 0.034511253237724304, 0.06746894121170044, 0.01677570678293705, 0.033155154436826706, 0.03202498331665993, 0.11650636047124863], [0.156021386384964, 0.013051741756498814, 0.009633714333176613, 0.11331102252006531, 0.021981213241815567, 0.23763777315616608, 0.0013393934350460768, 0.012547309510409832, 0.0018770452588796616, 0.003993379417806864, 0.0015034243697300553, 0.003512242343276739, 0.03092331811785698, 0.002067649271339178, 0.0020391889847815037, 0.011808805167675018, 0.37675151228904724], [0.056127388030290604, 0.030337831005454063, 0.06295059621334076, 0.11194103956222534, 0.15698638558387756, 0.021518524736166, 0.004567071795463562, 0.10384882986545563, 0.013977992348372936, 0.06338205188512802, 0.002627940382808447, 0.024606937542557716, 0.043017446994781494, 0.020783288404345512, 0.0556599497795105, 0.2045217752456665, 0.023144906386733055], [0.02357194758951664, 0.01186568383127451, 0.005106527823954821, 0.015743879601359367, 0.008554891683161259, 0.34963807463645935, 0.009584025479853153, 0.01009287592023611, 0.0021059054415673018, 0.005264738574624062, 0.0027867176104336977, 0.005449934396892786, 0.012258512899279594, 0.015118051320314407, 0.004076636396348476, 0.013579714111983776, 0.5052019357681274], [0.05258013680577278, 0.012442373670637608, 0.02996491640806198, 0.00825582817196846, 0.010958386585116386, 0.106424979865551, 0.07357220351696014, 0.11620809137821198, 0.058995723724365234, 0.028885770589113235, 0.03238144889473915, 0.10124759376049042, 0.11136454343795776, 0.011914861388504505, 0.01984642632305622, 0.06847573816776276, 0.15648099780082703], [0.09837958216667175, 0.03612620756030083, 0.015913743525743484, 0.029234975576400757, 0.02597794309258461, 0.07353201508522034, 0.007258148863911629, 0.33192870020866394, 0.01764831878244877, 0.038325291126966476, 0.004015341401100159, 0.02791045792400837, 0.07996232062578201, 0.010049172677099705, 0.024112598970532417, 0.0877959281206131, 0.09182924777269363], [0.05486788600683212, 0.061171382665634155, 0.016811132431030273, 0.034584350883960724, 0.02974740043282509, 0.07285163551568985, 0.05576164647936821, 0.26135918498039246, 0.04982591047883034, 0.04918902367353439, 0.01497100479900837, 0.02649696171283722, 0.079750195145607, 0.0075650643557310104, 0.016863001510500908, 0.06633874773979187, 0.10184551030397415], [0.04181832820177078, 0.02449757046997547, 0.028457384556531906, 0.02324235439300537, 0.005731598939746618, 0.07968546450138092, 0.012101569212973118, 0.05014419928193092, 0.06005803123116493, 0.1692640334367752, 0.04457905888557434, 0.08138038963079453, 0.18214796483516693, 0.017337016761302948, 0.043959349393844604, 0.021009249612689018, 0.1145864799618721], [0.048040010035037994, 0.07459519058465958, 0.08194038271903992, 0.026056554168462753, 0.05652179941534996, 0.06231757998466492, 0.03580717369914055, 0.11649337410926819, 0.022182129323482513, 0.0592397041618824, 0.06902027130126953, 0.04818356782197952, 0.1210353821516037, 0.016946934163570404, 0.02218104526400566, 0.05658193305134773, 0.08285702764987946], [0.09735854715108871, 0.13872943818569183, 0.04147857055068016, 0.020244404673576355, 0.04260934889316559, 0.0770537257194519, 0.00829361006617546, 0.11890677362680435, 0.014627338387072086, 0.05665642023086548, 0.028286393731832504, 0.07663282006978989, 0.03710039332509041, 0.017372379079461098, 0.07137400656938553, 0.053756192326545715, 0.09951973706483841], [0.06139388680458069, 0.05208630859851837, 0.028882509097456932, 0.02748284861445427, 0.017532341182231903, 0.1169055849313736, 0.002783819567412138, 0.09570512175559998, 0.01561897061765194, 0.06904810667037964, 0.011906755156815052, 0.07167152315378189, 0.1380191296339035, 0.018260296434164047, 0.03760198503732681, 0.05451933667063713, 0.1805814653635025], [0.037574756890535355, 0.04221701622009277, 0.0834491103887558, 0.08325868844985962, 0.031644903123378754, 0.15039396286010742, 0.0022812203969806433, 0.06619957089424133, 0.0031612643506377935, 0.042175065726041794, 0.0017927169101312757, 0.01898762211203575, 0.06093049421906471, 0.03939639404416084, 0.01887166127562523, 0.07173221558332443, 0.2459334284067154], [0.047432586550712585, 0.012818827293813229, 0.03174414113163948, 0.057131197303533554, 0.04645457863807678, 0.1949448585510254, 0.0016869365936145186, 0.14344589412212372, 0.0018160792533308268, 0.008168235421180725, 0.0004119741206523031, 0.01055159792304039, 0.02913542278110981, 0.007100243587046862, 0.01502331905066967, 0.0894794836640358, 0.3026546537876129], [0.022036153823137283, 0.017980171367526054, 0.05808321386575699, 0.06565607339143753, 0.06438849866390228, 0.025406647473573685, 0.00637753214687109, 0.16708889603614807, 0.02316141687333584, 0.09074443578720093, 0.003843299811705947, 0.04951801896095276, 0.1018105298280716, 0.022243373095989227, 0.07480688393115997, 0.17444926500320435, 0.032405510544776917], [0.020678415894508362, 0.014905363321304321, 0.007168258540332317, 0.01997438445687294, 0.007600688841193914, 0.34409940242767334, 0.006761330645531416, 0.009293880313634872, 0.002202963922172785, 0.007669124286621809, 0.002429393120110035, 0.006108245346695185, 0.015162311494350433, 0.017164481803774834, 0.004851218778640032, 0.010834069922566414, 0.5030964612960815]], [[0.0890066921710968, 0.011220937594771385, 0.03193318471312523, 0.03633606433868408, 0.04450204223394394, 0.06455114483833313, 0.13605907559394836, 0.07147836685180664, 0.046247243881225586, 0.0894816666841507, 0.02957029826939106, 0.03527477756142616, 0.053058527410030365, 0.03637510538101196, 0.02822837047278881, 0.10672280192375183, 0.0899537056684494], [0.12684810161590576, 0.0718609169125557, 0.02232460118830204, 0.010219847783446312, 0.11247704178094864, 0.1058749109506607, 0.026559041813015938, 0.14864268898963928, 0.013168415054678917, 0.04629601165652275, 0.004205701407045126, 0.011758952401578426, 0.019318852573633194, 0.04018661007285118, 0.026858001947402954, 0.09767202287912369, 0.1157282143831253], [0.07344578206539154, 0.021174414083361626, 0.008171138353645802, 0.06672805547714233, 0.24461495876312256, 0.09443715959787369, 0.04674224928021431, 0.04852819815278053, 0.004477259237319231, 0.00544574111700058, 0.002036080928519368, 0.002509325509890914, 0.0026579201221466064, 0.006472613662481308, 0.014321580529212952, 0.2203720360994339, 0.1378655731678009], [0.0698671042919159, 0.02291816473007202, 0.006787440273910761, 0.016076115891337395, 0.16335804760456085, 0.09747812151908875, 0.16803738474845886, 0.04842459037899971, 0.020862307399511337, 0.05018981173634529, 0.01344000268727541, 0.0067831347696483135, 0.0047341641038656235, 0.01021320279687643, 0.0064616440795362, 0.18580089509487152, 0.10856782644987106], [0.08531231433153152, 0.06306179612874985, 0.014226701110601425, 0.03175815939903259, 0.12743280827999115, 0.12180161476135254, 0.07454251497983932, 0.04832976311445236, 0.005066269543021917, 0.011003050953149796, 0.0008911437471397221, 0.004443604964762926, 0.0033238870091736317, 0.009121350944042206, 0.008516418747603893, 0.21086485683918, 0.18030370771884918], [0.03656074404716492, 0.006394779775291681, 0.0009262075764127076, 0.002641878789290786, 0.0032517409417778254, 0.3139254152774811, 0.00829294789582491, 0.005651180166751146, 0.001720218569971621, 0.0039636497385799885, 0.001693632104434073, 0.0018839502008631825, 0.0020858978386968374, 0.005679875612258911, 0.003476342186331749, 0.0058256653137505054, 0.596025824546814], [0.054977089166641235, 0.020349761471152306, 0.010700646787881851, 0.04312029480934143, 0.07797302305698395, 0.25519391894340515, 0.05093793198466301, 0.003382111433893442, 0.007677164394408464, 0.002044442342594266, 0.0022352130617946386, 0.008232297375798225, 0.006045496091246605, 0.009467548690736294, 0.015042806975543499, 0.06857302039861679, 0.36404722929000854], [0.040277667343616486, 0.03723898157477379, 0.00920944008976221, 0.10310044884681702, 0.1950298398733139, 0.05831253528594971, 0.020818771794438362, 0.04657403752207756, 0.013085939921438694, 0.006999940145760775, 0.0007961458759382367, 0.003956893924623728, 0.003472393611446023, 0.017470598220825195, 0.0918714851140976, 0.26978811621665955, 0.0819968432188034], [0.06952259689569473, 0.009900962002575397, 0.011598870158195496, 0.0698859766125679, 0.11147987097501755, 0.14738011360168457, 0.05011570826172829, 0.022257886826992035, 0.006881361361593008, 0.01291750930249691, 0.004057748708873987, 0.008651881478726864, 0.0058438824489712715, 0.004505551420152187, 0.028254495933651924, 0.2115003764629364, 0.22524525225162506], [0.08760904520750046, 0.07530766725540161, 0.014250349253416061, 0.02582179568707943, 0.10034005343914032, 0.12565433979034424, 0.012464934028685093, 0.1117827296257019, 0.004531186074018478, 0.004508567973971367, 0.001256821327842772, 0.009439956396818161, 0.008358804509043694, 0.012543334625661373, 0.0364752858877182, 0.16987426578998566, 0.1997808963060379], [0.035449083894491196, 0.002892602002248168, 0.004833728540688753, 0.013442211784422398, 0.04026613011956215, 0.2931154668331146, 0.044273000210523605, 0.0022870367392897606, 0.002814290579408407, 0.0012596654705703259, 0.0005980492569506168, 0.003878980875015259, 0.0029597976244986057, 0.0015564186032861471, 0.0049823918379843235, 0.06717635691165924, 0.4782147705554962], [0.0760512426495552, 0.02244512178003788, 0.011333276517689228, 0.14430324733257294, 0.08951383084058762, 0.1605980098247528, 0.074344202876091, 0.005224473308771849, 0.007708125282078981, 0.0040098074823617935, 0.004377999342978001, 0.008898441679775715, 0.006613695528358221, 0.013898609206080437, 0.028161674737930298, 0.07592923939228058, 0.26658907532691956], [0.07706496864557266, 0.021484479308128357, 0.016020435839891434, 0.0993906557559967, 0.04105427488684654, 0.1531786173582077, 0.11030890792608261, 0.005784118082374334, 0.013745050877332687, 0.003323155455291271, 0.004533405415713787, 0.025723740458488464, 0.01383835356682539, 0.02593175508081913, 0.10873971879482269, 0.05247138440608978, 0.2274070382118225], [0.03259003534913063, 0.08096890151500702, 0.017818408086895943, 0.005806071683764458, 0.03345103934407234, 0.07150357961654663, 0.008251948282122612, 0.00436203321442008, 0.002976398915052414, 0.009222688153386116, 0.0034780476707965136, 0.03475837782025337, 0.024136774241924286, 0.27076256275177, 0.27392274141311646, 0.03299154341220856, 0.09299881756305695], [0.048438169062137604, 0.2232060432434082, 0.027400372549891472, 0.10914413630962372, 0.17108456790447235, 0.03639601171016693, 0.008067404851317406, 0.07195273786783218, 0.009229441173374653, 0.009972182102501392, 0.00420945230871439, 0.017182260751724243, 0.01198237482458353, 0.021905135363340378, 0.057137664407491684, 0.12687356770038605, 0.0458185188472271], [0.06730442494153976, 0.0691862404346466, 0.01508920919150114, 0.07840950042009354, 0.12842269241809845, 0.126926451921463, 0.047994621098041534, 0.04127613082528114, 0.006061125546693802, 0.0043702577240765095, 0.0009442776208743453, 0.006149107590317726, 0.0037854742258787155, 0.013952747918665409, 0.016057457774877548, 0.18594907224178314, 0.1881212443113327], [0.04940931126475334, 0.00791082065552473, 0.001504136947914958, 0.003302274737507105, 0.005103186704218388, 0.3081689178943634, 0.012174245901405811, 0.007639917079359293, 0.0028688113670796156, 0.004955245181918144, 0.00235524564050138, 0.003036473412066698, 0.00343532906845212, 0.008149228058755398, 0.005391087848693132, 0.009729037992656231, 0.5648667216300964]], [[0.0334879569709301, 0.0500732958316803, 0.0294929351657629, 0.07528666406869888, 0.0419907346367836, 0.32299691438674927, 0.005384373944252729, 0.008907054550945759, 0.007238701917231083, 0.003933004103600979, 0.0053870342671871185, 0.003917771857231855, 0.0038291672244668007, 0.01476918626576662, 0.010437590070068836, 0.017292166128754616, 0.36557549238204956], [0.06239599362015724, 0.002350099151954055, 0.0008674222626723349, 0.0013655835064128041, 0.0020196763798594475, 0.38465937972068787, 0.01625465601682663, 0.017529986798763275, 0.011150818318128586, 0.005434444639831781, 0.007319574244320393, 0.004021128639578819, 0.005788799375295639, 0.005084428936243057, 0.0020862126257270575, 0.006133667659014463, 0.4655380845069885], [0.057868439704179764, 0.0010380579624325037, 9.228676208294928e-05, 0.0006599263288080692, 0.0015686086844652891, 0.4983234107494354, 0.009935878217220306, 0.004428375046700239, 0.004343952517956495, 0.00434495322406292, 0.004088406916707754, 0.0005898525705561042, 0.000787283934187144, 0.0012345884460955858, 0.000874746183399111, 0.0023585273884236813, 0.40746262669563293], [0.041188355535268784, 0.0008406852139160037, 0.0009326112922281027, 0.00026141214766539633, 0.0024083382450044155, 0.43906599283218384, 0.0032646353356540203, 0.012881981208920479, 0.0006362170097418129, 0.0009002357837744057, 0.000708153413143009, 0.002141016535460949, 0.001479780301451683, 0.0004197789530735463, 0.0015182449715211987, 0.007506244815886021, 0.4838462471961975], [0.09705463796854019, 0.0030656566377729177, 0.0015919911675155163, 0.0006528494996018708, 0.002294640289619565, 0.49269944429397583, 0.004804143216460943, 0.003583039389923215, 0.00201588636264205, 0.002241396112367511, 0.0030791056342422962, 0.0012666051043197513, 0.0007127386052161455, 0.0008127916371449828, 0.0003539185272529721, 0.0018373725470155478, 0.38193389773368835], [0.03475601226091385, 0.03440103679895401, 0.014185594394803047, 0.046892546117305756, 0.043677181005477905, 0.22018061578273773, 0.03196752443909645, 0.026927391067147255, 0.004993440117686987, 0.005261764861643314, 0.0056190588511526585, 0.014848745428025723, 0.02181711606681347, 0.012567904777824879, 0.007778368424624205, 0.04319680109620094, 0.43092888593673706], [0.096239373087883, 0.008643447421491146, 0.002323672641068697, 0.015095299109816551, 0.020691169425845146, 0.4517982602119446, 0.00019731966312974691, 0.003251016605645418, 0.0002127585030393675, 0.00217937002889812, 0.0006562941707670689, 0.0007587866857647896, 0.0006773167406208813, 0.0025894520804286003, 0.0017192407976835966, 0.0053263637237250805, 0.38764074444770813], [0.13052032887935638, 0.009854733012616634, 0.001899153576232493, 0.0029137202072888613, 0.0070276870392262936, 0.4656504988670349, 0.0023167990148067474, 0.0007407134398818016, 0.0010751534719020128, 0.0019429979147389531, 0.002784008625894785, 0.0007604275597259402, 0.0007947885314933956, 0.0024718272034078836, 0.0003585041267797351, 0.0015205556992441416, 0.36736810207366943], [0.1404094696044922, 0.007771007716655731, 0.00420507974922657, 0.0064289504662156105, 0.021916337311267853, 0.3879842460155487, 0.00237037381157279, 0.007664681877940893, 5.285312363412231e-05, 0.0003082750190515071, 0.00024610498803667724, 0.0036455828230828047, 0.0025327594485133886, 0.005047565326094627, 0.004059745464473963, 0.0084241246804595, 0.39693284034729004], [0.06983952224254608, 0.007921572774648666, 0.0026933744084089994, 0.01289602741599083, 0.013720888644456863, 0.38138169050216675, 0.017227867618203163, 0.011447910219430923, 0.000552015844732523, 9.883431630441919e-05, 0.0004813491541426629, 0.00474092410877347, 0.01152776088565588, 0.009036754257977009, 0.012445744127035141, 0.010596957989037037, 0.433390736579895], [0.08205367624759674, 0.00819452479481697, 0.009862501174211502, 0.026804910972714424, 0.045636702328920364, 0.29732516407966614, 0.03682993724942207, 0.019876381382346153, 0.0012558420421555638, 0.0015709017170593143, 0.0006715300842188299, 0.006700094789266586, 0.0068345037288963795, 0.008136308752000332, 0.003496313700452447, 0.019670521840453148, 0.42508015036582947], [0.08200373500585556, 0.002624976448714733, 0.0005796732730232179, 0.0029230520594865084, 0.00258275237865746, 0.501730740070343, 0.005432517267763615, 0.002984696300700307, 0.0030703602824360132, 0.007338834460824728, 0.0024906303733587265, 0.0008473063353449106, 0.0017626460175961256, 0.003879265859723091, 0.0007714527891948819, 0.0014026648132130504, 0.37757471203804016], [0.027972375974059105, 0.0019200413953512907, 0.0008006885764189065, 0.005023660138249397, 0.000921388273127377, 0.49514296650886536, 0.002719731768593192, 0.0010747873457148671, 0.0015320070087909698, 0.0036897663958370686, 0.0013190092286095023, 0.0008647151989862323, 0.000349245936376974, 0.0030883769504725933, 0.00025774879031814635, 0.00041728210635483265, 0.4529062509536743], [0.053121984004974365, 0.004082352388650179, 0.0008382080704905093, 0.0038121992256492376, 0.0012517381692305207, 0.4592058062553406, 0.003019447671249509, 0.0023335053119808435, 0.0008906380971893668, 0.001580989919602871, 0.0005543253500945866, 0.002185143530368805, 0.004175244830548763, 0.00039503155858255923, 0.0002869167074095458, 0.0011882181279361248, 0.4610782563686371], [0.029602890834212303, 0.0021833525970578194, 0.0007312060333788395, 0.0018083410104736686, 0.0005363072850741446, 0.4583262801170349, 0.0013586622662842274, 0.0008261016919277608, 0.0005365668912418187, 0.0013875579461455345, 0.0008222268079407513, 0.0006893972749821842, 0.000594500859733671, 0.0004998273216187954, 6.449280772358179e-05, 0.0002378233621129766, 0.49979445338249207], [0.06529995799064636, 0.0027133431285619736, 0.0005964407464489341, 0.0012253589229658246, 0.0014197166310623288, 0.5137256383895874, 0.0008020225213840604, 0.0008915717480704188, 0.000332612544298172, 0.0012095739366486669, 0.0016456511802971363, 0.000360146164894104, 0.00022339154384098947, 0.0011120063718408346, 0.00014464456762652844, 0.00028711315826512873, 0.4080107510089874], [0.03567797318100929, 0.030216053128242493, 0.010475830174982548, 0.041790030896663666, 0.031587865203619, 0.24811424314975739, 0.023037627339363098, 0.02430175058543682, 0.00400086585432291, 0.004789393860846758, 0.005065888166427612, 0.011238161474466324, 0.01781543344259262, 0.0143202543258667, 0.008594377897679806, 0.03421162813901901, 0.4547624886035919]], [[0.08032708615064621, 0.22425547242164612, 0.007794482633471489, 0.022465895861387253, 0.21576569974422455, 0.15211772918701172, 0.004568515811115503, 0.014128798618912697, 0.0011811584699898958, 0.0023515336215496063, 0.001120750792324543, 0.0024638031609356403, 0.003688535653054714, 0.0026776741724461317, 0.003555726259946823, 0.07595318555831909, 0.1855839341878891], [0.07691558450460434, 0.09619896858930588, 0.0018777638906612992, 0.001920003560371697, 0.011197514832019806, 0.2507827877998352, 0.034314148128032684, 0.05614983290433884, 0.0028517725877463818, 0.008069606497883797, 0.0030079097487032413, 0.011643161997199059, 0.012933214195072651, 0.054219990968704224, 0.014559895731508732, 0.03155110403895378, 0.3318066895008087], [0.0487082377076149, 0.012236449867486954, 0.028110887855291367, 0.04680344834923744, 0.014848161488771439, 0.1648724526166916, 0.06705828756093979, 0.1236124262213707, 0.02339535392820835, 0.09321426600217819, 0.006140873301774263, 0.05042191967368126, 0.048586685210466385, 0.013184049166738987, 0.010768946260213852, 0.01600530371069908, 0.2320321947336197], [0.037395499646663666, 0.011049971915781498, 0.0549771785736084, 0.11238305270671844, 0.023852257058024406, 0.1693694293498993, 0.024055179208517075, 0.08260545134544373, 0.011416049674153328, 0.05476352199912071, 0.006340587977319956, 0.028583284467458725, 0.027077922597527504, 0.046339839696884155, 0.04550918936729431, 0.03216966241598129, 0.23211202025413513], [0.04628876969218254, 0.01355069875717163, 0.014435692690312862, 0.009407014586031437, 0.038472939282655716, 0.06452733278274536, 0.1575232446193695, 0.21168383955955505, 0.024463051930069923, 0.06199496611952782, 0.006055316422134638, 0.05453237146139145, 0.019316768273711205, 0.026459507644176483, 0.03873397782444954, 0.12156519293785095, 0.09098931401968002], [0.020587516948580742, 0.007187387440353632, 0.001132456585764885, 0.002475237473845482, 0.002411085180938244, 0.36579057574272156, 0.0032199302222579718, 0.004018680192530155, 0.0003718196239788085, 0.0013782817404717207, 0.000653805851470679, 0.0015878621488809586, 0.002481155563145876, 0.005122046452015638, 0.0014119230909273028, 0.003477992257103324, 0.5766923427581787], [0.04098612442612648, 0.07735295593738556, 0.03261325880885124, 0.060681261122226715, 0.05819828063249588, 0.30114278197288513, 0.01060013473033905, 0.008279543370008469, 0.0013964702375233173, 0.00304315029643476, 0.002103904727846384, 0.0037852071691304445, 0.0037723060231655836, 0.001952389837242663, 0.002886040834710002, 0.008270357735455036, 0.38293588161468506], [0.03935060650110245, 0.0610586442053318, 0.013460601679980755, 0.016360240057110786, 0.04056938737630844, 0.3299850523471832, 0.004257143009454012, 0.0756179615855217, 0.002469718223437667, 0.0046477108262479305, 0.003178038401529193, 0.003364908043295145, 0.0029964123386889696, 0.004200599156320095, 0.007554037030786276, 0.016188329085707664, 0.3747406005859375], [0.03376109525561333, 0.012479079887270927, 0.03239912539720535, 0.0891922116279602, 0.015856657177209854, 0.3159570097923279, 0.001716351485811174, 0.012161471880972385, 0.006398846860975027, 0.011114946566522121, 0.0025444820057600737, 0.007995868101716042, 0.00949633214622736, 0.00974329374730587, 0.005135938059538603, 0.006049571093171835, 0.4279977083206177], [0.03200259059667587, 0.014778265729546547, 0.016609663143754005, 0.089057058095932, 0.03151806816458702, 0.3135432004928589, 0.001812063972465694, 0.010757043026387691, 0.0023713817354291677, 0.00963552761822939, 0.0012740523088723421, 0.0034277429804205894, 0.003943844698369503, 0.008346165530383587, 0.005095123313367367, 0.011180930770933628, 0.44464728236198425], [0.020915161818265915, 0.0024113664403557777, 0.010157466866075993, 0.1412632018327713, 0.013448785059154034, 0.3147982954978943, 0.012298807501792908, 0.02103716880083084, 0.002394322073087096, 0.024089669808745384, 0.01548497099429369, 0.00743986526504159, 0.006853459402918816, 0.0069582099094986916, 0.005598751362413168, 0.005534054711461067, 0.38931646943092346], [0.02981250360608101, 0.016202107071876526, 0.008498483337461948, 0.05659431964159012, 0.020799236372113228, 0.4093884825706482, 0.0011866303393617272, 0.00427039060741663, 0.001305221812799573, 0.002891074400395155, 0.001167010748758912, 0.006366171408444643, 0.00357448379509151, 0.00205122004263103, 0.0014589143684133887, 0.0029268250800669193, 0.4315069019794464], [0.015757862478494644, 0.0120365796610713, 0.007196120917797089, 0.03738414868712425, 0.012389514595270157, 0.4168360233306885, 0.0036250343546271324, 0.007351917680352926, 0.0018580735195428133, 0.009951064363121986, 0.000982983154244721, 0.008677154779434204, 0.009091667830944061, 0.006555299740284681, 0.002599974162876606, 0.003728776006028056, 0.44397783279418945], [0.018734082579612732, 0.023879438638687134, 0.003109167329967022, 0.04858922213315964, 0.016669996082782745, 0.3743773400783539, 0.0007969364523887634, 0.002653467236086726, 0.0005097721004858613, 0.0015506553463637829, 0.00022401883325073868, 0.0007801573374308646, 0.0011513440404087305, 0.028136560693383217, 0.004913870245218277, 0.0075112804770469666, 0.4664127230644226], [0.024566974490880966, 0.019195184111595154, 0.00890283938497305, 0.06925869733095169, 0.03258289396762848, 0.35375431180000305, 0.0011987582547590137, 0.009977703914046288, 0.0009498150320723653, 0.003585022408515215, 0.0006006935145705938, 0.0015377959934994578, 0.002232160186395049, 0.009443695656955242, 0.01327548734843731, 0.010936710052192211, 0.4380013048648834], [0.05953958258032799, 0.03853470832109451, 0.015160846523940563, 0.04560504108667374, 0.07348273694515228, 0.24953721463680267, 0.021284347400069237, 0.0546068511903286, 0.004812306724488735, 0.017903931438922882, 0.002145258244127035, 0.014423469081521034, 0.012060157023370266, 0.008293792605400085, 0.013354522176086903, 0.03551812469959259, 0.33373701572418213], [0.021690277382731438, 0.008768011815845966, 0.0011366637190803885, 0.00265175336971879, 0.002917693927884102, 0.36612001061439514, 0.0028035114519298077, 0.004224672447890043, 0.00034051656257361174, 0.0013568595750257373, 0.0006003699381835759, 0.0013150800950825214, 0.002417756710201502, 0.005844953469932079, 0.0013474415754899383, 0.003699340159073472, 0.5727651119232178]]], [[[0.06477326154708862, 0.019108328968286514, 0.014626211486756802, 0.021900177001953125, 0.022086959332227707, 0.02975093573331833, 0.07804898917675018, 0.09909103810787201, 0.010806560516357422, 0.12648344039916992, 0.034663937985897064, 0.04033222794532776, 0.04824821650981903, 0.09788341075181961, 0.1154000386595726, 0.1335829794406891, 0.04321327805519104], [0.035855598747730255, 0.045678526163101196, 0.02058788388967514, 0.30336204171180725, 0.10034798830747604, 0.19522058963775635, 0.008629531599581242, 0.009664545767009258, 0.0048219277523458, 0.009911792352795601, 0.001227542874403298, 0.0025968016125261784, 0.0015625741798430681, 0.006240804214030504, 0.016402199864387512, 0.02319902367889881, 0.21469062566757202], [0.049319446086883545, 0.12593987584114075, 0.08063432574272156, 0.2382691651582718, 0.14895129203796387, 0.1059783324599266, 0.02035016007721424, 0.027193693444132805, 0.0019100873032584786, 0.007815773598849773, 0.0016554391477257013, 0.003007939551025629, 0.003271405352279544, 0.008452353067696095, 0.04220020771026611, 0.02106459252536297, 0.11398588120937347], [0.0408162958920002, 0.2670469582080841, 0.15046876668930054, 0.05533061549067497, 0.19978207349777222, 0.09934012591838837, 0.007631713058799505, 0.02213989943265915, 0.0008795639150775969, 0.001388311735354364, 0.00042056417441926897, 0.0014623714378103614, 0.0004926301771774888, 0.0006990086985751987, 0.007431503850966692, 0.026616228744387627, 0.1180533915758133], [0.038202229887247086, 0.36264264583587646, 0.0752076655626297, 0.130133256316185, 0.14859338104724884, 0.04422803595662117, 0.021988466382026672, 0.04124567285180092, 0.002029357012361288, 0.008799076080322266, 0.0020022052340209484, 0.003574441885575652, 0.008900103159248829, 0.015814559534192085, 0.017972415313124657, 0.026815345510840416, 0.051851190626621246], [0.0303135197609663, 0.021288780495524406, 0.003914440982043743, 0.009606091305613518, 0.016249818727374077, 0.37704870104789734, 0.004046428482979536, 0.004400381352752447, 0.0016282190335914493, 0.0018602771451696754, 0.0006790083716623485, 0.0014763756189495325, 0.0013793893158435822, 0.0038004559464752674, 0.005352886859327555, 0.008880706503987312, 0.5080744028091431], [0.1255650818347931, 0.04960238188505173, 0.01865100860595703, 0.043545305728912354, 0.04721580445766449, 0.21000798046588898, 0.03000331111252308, 0.03526231646537781, 0.0048047397285699844, 0.01569395512342453, 0.005939003080129623, 0.016835790127515793, 0.021211307495832443, 0.02030923031270504, 0.04935366287827492, 0.03661257028579712, 0.2693865895271301], [0.11983751505613327, 0.04590773582458496, 0.011789059266448021, 0.0900082215666771, 0.09757240861654282, 0.10215850174427032, 0.04745407775044441, 0.01957279071211815, 0.00829451996833086, 0.041880153119564056, 0.015362833626568317, 0.010108557529747486, 0.030972838401794434, 0.03108607977628708, 0.13700957596302032, 0.06487464904785156, 0.12611043453216553], [0.058627188205718994, 0.024875039234757423, 0.004058515187352896, 0.031582288444042206, 0.018819915130734444, 0.10745891183614731, 0.08340819180011749, 0.12430212646722794, 0.017341716215014458, 0.06717026233673096, 0.041245926171541214, 0.0254608653485775, 0.07485786080360413, 0.048705942928791046, 0.1390356421470642, 0.02084839716553688, 0.1122012659907341], [0.08555824309587479, 0.012860828079283237, 0.0013800828019157052, 0.01657065935432911, 0.036561738699674606, 0.2100527584552765, 0.0518215149641037, 0.1437351405620575, 0.01271758507937193, 0.03040546365082264, 0.010079551488161087, 0.013976512476801872, 0.014728200621902943, 0.010790214873850346, 0.07575465738773346, 0.028509216383099556, 0.2444976270198822], [0.038505762815475464, 0.005737186875194311, 0.0019367239437997341, 0.0032281719613820314, 0.017163604497909546, 0.23412014544010162, 0.03770480304956436, 0.11479192972183228, 0.05804351344704628, 0.10770250111818314, 0.007402497809380293, 0.017237452790141106, 0.014134797267615795, 0.01912730745971203, 0.05488064885139465, 0.015448628924787045, 0.2528343200683594], [0.05235985293984413, 0.0065042064525187016, 0.0023693712428212166, 0.003372223349288106, 0.011047071777284145, 0.05798058211803436, 0.13100649416446686, 0.1330486685037613, 0.04915914312005043, 0.12162300944328308, 0.0350341722369194, 0.03528175130486488, 0.05414518713951111, 0.05721709504723549, 0.15868909657001495, 0.027998967096209526, 0.0631631389260292], [0.054600466042757034, 0.0042073093354702, 0.0010935959871858358, 0.004768561106175184, 0.016121583059430122, 0.1682511419057846, 0.12185834348201752, 0.08186836540699005, 0.03577876091003418, 0.035834453999996185, 0.010712835006415844, 0.055441971868276596, 0.060392092913389206, 0.04379679262638092, 0.10808856040239334, 0.02368233911693096, 0.1735028773546219], [0.06748948991298676, 0.02536054141819477, 0.004566833842545748, 0.003683896269649267, 0.036538705229759216, 0.16897204518318176, 0.09747646749019623, 0.17401644587516785, 0.028503943234682083, 0.024921312928199768, 0.007320844102650881, 0.03670477494597435, 0.03769008442759514, 0.024842776358127594, 0.045264799147844315, 0.03233839198946953, 0.18430869281291962], [0.029171304777264595, 0.023127183318138123, 0.003436198690906167, 0.0011160725262016058, 0.018896102905273438, 0.0437023900449276, 0.12848632037639618, 0.2787154018878937, 0.02957233414053917, 0.03974200412631035, 0.036329176276922226, 0.10958384722471237, 0.13126938045024872, 0.038817718625068665, 0.018934199586510658, 0.019212616607546806, 0.04988770931959152], [0.09731915593147278, 0.04993699491024017, 0.007266861852258444, 0.035306528210639954, 0.05030687153339386, 0.09760463982820511, 0.11428655683994293, 0.1692209243774414, 0.009827964939177036, 0.05155433714389801, 0.016248159110546112, 0.018166782334446907, 0.02948835864663124, 0.037863314151763916, 0.04987846314907074, 0.03773609176278114, 0.12798795104026794], [0.03602571412920952, 0.022794993594288826, 0.004547761287540197, 0.011149361729621887, 0.017467966303229332, 0.36756208539009094, 0.0053981030359864235, 0.005767327267676592, 0.002126340987160802, 0.0026518446393311024, 0.001038157381117344, 0.0019868682138621807, 0.0017649037763476372, 0.004551583901047707, 0.007085232064127922, 0.011315561830997467, 0.4967661499977112]], [[0.027722345665097237, 0.002608699258416891, 0.0011931118788197637, 0.0065498026087880135, 0.006481471471488476, 0.024163970723748207, 0.2366887927055359, 0.13182199001312256, 0.020971694961190224, 0.05263034999370575, 0.03172558918595314, 0.037662237882614136, 0.02198898047208786, 0.049611896276474, 0.12398241460323334, 0.19101667404174805, 0.03317991644144058], [0.06920420378446579, 0.030698338523507118, 0.036162953823804855, 0.13847079873085022, 0.19565632939338684, 0.1528937667608261, 0.042436905205249786, 0.06309755146503448, 0.008057661354541779, 0.00889039970934391, 0.005059246905148029, 0.0064511410892009735, 0.005705934017896652, 0.007358954753726721, 0.012930335476994514, 0.0319221131503582, 0.18500323593616486], [0.09558229893445969, 0.05368341505527496, 0.060421597212553024, 0.0752883106470108, 0.20020723342895508, 0.1110636442899704, 0.13273866474628448, 0.04859970882534981, 0.013360877521336079, 0.008628440089523792, 0.004617278929799795, 0.013254575431346893, 0.006935986690223217, 0.009518344886600971, 0.008260669186711311, 0.032704226672649384, 0.12513475120067596], [0.12548407912254333, 0.06747536361217499, 0.049400217831134796, 0.03987430781126022, 0.12023648619651794, 0.18158374726772308, 0.07681632041931152, 0.04160238057374954, 0.010429485701024532, 0.00897940807044506, 0.0028077983297407627, 0.008570750243961811, 0.005976859480142593, 0.010952616110444069, 0.016364792361855507, 0.03267489746212959, 0.20077045261859894], [0.07942517101764679, 0.05682402849197388, 0.03284993767738342, 0.08029106259346008, 0.04863063246011734, 0.08422090858221054, 0.17565464973449707, 0.0727757066488266, 0.024036861956119537, 0.04110872745513916, 0.01191236637532711, 0.017407814040780067, 0.01990640163421631, 0.0422978438436985, 0.05057515203952789, 0.06053363159298897, 0.10154900699853897], [0.020776353776454926, 0.005085315555334091, 0.0024721466470509768, 0.005095910280942917, 0.009841572493314743, 0.43366721272468567, 0.00293844286352396, 0.003809408051893115, 0.001735644182190299, 0.0012314253253862262, 0.0007809773087501526, 0.0019122171215713024, 0.0012750551104545593, 0.0026484020054340363, 0.004538868088275194, 0.00713239936158061, 0.4950585663318634], [0.03821013122797012, 0.0032193264923989773, 0.0019693176727741957, 0.005304847378283739, 0.011456437408924103, 0.11761020123958588, 0.06812309473752975, 0.0940166786313057, 0.040978845208883286, 0.04712558165192604, 0.07071632146835327, 0.04312950000166893, 0.035776931792497635, 0.039929334074258804, 0.14718496799468994, 0.08316949754953384, 0.1520790010690689], [0.028970269486308098, 0.008372565731406212, 0.0020240095909684896, 0.003590142820030451, 0.01011162344366312, 0.09166055917739868, 0.025384141132235527, 0.10965269804000854, 0.022431660443544388, 0.04886121302843094, 0.05772148445248604, 0.05074558034539223, 0.0802084356546402, 0.048081230372190475, 0.19692333042621613, 0.10372154414653778, 0.11153945326805115], [0.018515069037675858, 0.0050613777711987495, 0.0011725513031706214, 0.002140927128493786, 0.0038790805265307426, 0.08675755560398102, 0.011514185927808285, 0.06979291141033173, 0.03192775323987007, 0.023653440177440643, 0.0820380449295044, 0.13148024678230286, 0.17928320169448853, 0.054806165397167206, 0.13132847845554352, 0.06219088286161423, 0.1044580414891243], [0.03192289173603058, 0.007876385003328323, 0.0012505524791777134, 0.003822879632934928, 0.005918263457715511, 0.1491129845380783, 0.01818835735321045, 0.06641101837158203, 0.019943390041589737, 0.011592362076044083, 0.04500223696231842, 0.059311773627996445, 0.12740783393383026, 0.04545854777097702, 0.17678438127040863, 0.05072435364127159, 0.17927180230617523], [0.02670205384492874, 0.007263219449669123, 0.0035157131496816874, 0.002552345860749483, 0.006217120215296745, 0.12444018572568893, 0.007972805760800838, 0.03694235160946846, 0.055799826979637146, 0.01933998428285122, 0.05596720054745674, 0.12818369269371033, 0.1144745871424675, 0.03546345606446266, 0.1844068169593811, 0.05455457791686058, 0.13620400428771973], [0.02630387432873249, 0.0053362371399998665, 0.0034246041905134916, 0.0020664758048951626, 0.0041642216965556145, 0.09990985691547394, 0.022815192118287086, 0.026452012360095978, 0.04375532269477844, 0.04256710410118103, 0.04027430713176727, 0.1042952761054039, 0.08565443009138107, 0.06584269553422928, 0.2180211991071701, 0.09561207890510559, 0.11350507289171219], [0.02836085669696331, 0.00505027174949646, 0.007600605022162199, 0.0034824497997760773, 0.004508791491389275, 0.24740152060985565, 0.01933136396110058, 0.00877578929066658, 0.020523840561509132, 0.02025737054646015, 0.020704779773950577, 0.10454870760440826, 0.057393722236156464, 0.046236757189035416, 0.08392968028783798, 0.05597618222236633, 0.26591727137565613], [0.05911236256361008, 0.010135146789252758, 0.005863134283572435, 0.01500307209789753, 0.011597918346524239, 0.28426408767700195, 0.01783248782157898, 0.015506954863667488, 0.010795955546200275, 0.015016334131360054, 0.01088663563132286, 0.022512640804052353, 0.020109940320253372, 0.029291674494743347, 0.042610060423612595, 0.08009511232376099, 0.3493664860725403], [0.09140419214963913, 0.023027721792459488, 0.010873368941247463, 0.02142084389925003, 0.013995018787682056, 0.2032656967639923, 0.045083317905664444, 0.06873741745948792, 0.02068495564162731, 0.020681975409388542, 0.020944766700267792, 0.02407619170844555, 0.02850938029587269, 0.03699304163455963, 0.06509353220462799, 0.05863220617175102, 0.2465764582157135], [0.06938353925943375, 0.02451932057738304, 0.016103388741612434, 0.017604833468794823, 0.018006162717938423, 0.30572637915611267, 0.02662801742553711, 0.019331978633999825, 0.0075568244792521, 0.009254107251763344, 0.0037041502073407173, 0.006272972095757723, 0.008994044736027718, 0.019839944317936897, 0.025495504960417747, 0.050445571541786194, 0.3711332082748413], [0.023564791306853294, 0.005679330322891474, 0.003266617888584733, 0.005758908111602068, 0.01084749773144722, 0.4280085563659668, 0.003697563661262393, 0.004531743470579386, 0.0021419497206807137, 0.0014764161314815283, 0.000958077609539032, 0.0025637811049818993, 0.0017013755859807134, 0.0034800798166543245, 0.005586019717156887, 0.008708234876394272, 0.4880290925502777]], [[0.008645211346447468, 0.04782893508672714, 0.08613535016775131, 0.48929792642593384, 0.19721592962741852, 0.05172480642795563, 0.0030072738882154226, 0.002452721120789647, 0.0015345048159360886, 0.002874932251870632, 0.0008704072679392993, 0.0006102505140006542, 0.001079111942090094, 0.01411605067551136, 0.02041601948440075, 0.013615654781460762, 0.058575015515089035], [0.02988838031888008, 0.0355505645275116, 0.0075247520580887794, 0.019634433090686798, 0.020389920100569725, 0.41529005765914917, 0.0033842287957668304, 0.004179829731583595, 0.0009643445955589414, 0.0021166775841265917, 0.0012617490720003843, 0.00238970248028636, 0.002568491268903017, 0.004627779591828585, 0.005205658730119467, 0.013453465886414051, 0.4315698444843292], [0.03334727883338928, 0.22097842395305634, 0.053220946341753006, 0.06711910665035248, 0.03719435632228851, 0.25318974256515503, 0.00800024438649416, 0.0035307772923260927, 0.0004929084680043161, 0.001206458080559969, 0.001045672339387238, 0.0021392833441495895, 0.0036161502357572317, 0.007040669675916433, 0.004904432687908411, 0.011786898598074913, 0.291186660528183], [0.027762915939092636, 0.20713505148887634, 0.10023646801710129, 0.09081380069255829, 0.06204201281070709, 0.2144792526960373, 0.008850817568600178, 0.002606244757771492, 0.000718346273060888, 0.0013048216933384538, 0.0009207537514157593, 0.0011506415903568268, 0.0020574138034135103, 0.00862132664769888, 0.0070547196082770824, 0.015913812443614006, 0.24833163619041443], [0.018486209213733673, 0.16721290349960327, 0.188447967171669, 0.3854222297668457, 0.059551943093538284, 0.059999655932188034, 0.008978190831840038, 0.0033489270135760307, 0.0007019254262559116, 0.0020999053958803415, 0.0012206623796373606, 0.0009047752828337252, 0.0019839874003082514, 0.009570549242198467, 0.010531497187912464, 0.009929793886840343, 0.07160893827676773], [0.025323014706373215, 0.016039131209254265, 0.0018541754689067602, 0.003004149766638875, 0.00774909695610404, 0.42632174491882324, 0.0026246989145874977, 0.00877316389232874, 0.0014519098913297057, 0.0014233604306355119, 0.000751917134039104, 0.0011724064825102687, 0.0011226758360862732, 0.002336113480851054, 0.003698789980262518, 0.008264378644526005, 0.4880892336368561], [0.05685785040259361, 0.03464340418577194, 0.012623701244592667, 0.13507196307182312, 0.049056269228458405, 0.3113221824169159, 0.018090669065713882, 0.0148750189691782, 0.001658424618653953, 0.005748277064412832, 0.0006297705695033073, 0.001495872507803142, 0.0035090558230876923, 0.008993914350867271, 0.009511906653642654, 0.005614614579826593, 0.3302970230579376], [0.16570590436458588, 0.0535641573369503, 0.004291354678571224, 0.029158560559153557, 0.07670307904481888, 0.2247588336467743, 0.07958808541297913, 0.07710469514131546, 0.005863775499165058, 0.009001906961202621, 0.0022193468175828457, 0.0014918922679498792, 0.002139253308996558, 0.0052993749268352985, 0.011927863582968712, 0.0149214593693614, 0.23626042902469635], [0.11030079424381256, 0.024026378989219666, 0.001170043251477182, 0.013728552497923374, 0.03516272082924843, 0.1823432296514511, 0.19341668486595154, 0.10472191870212555, 0.023587556555867195, 0.03400668501853943, 0.009288730099797249, 0.010871941223740578, 0.014820794574916363, 0.01472009252756834, 0.015443801879882812, 0.010710841044783592, 0.20167921483516693], [0.06509155035018921, 0.004609242081642151, 0.0002753945009317249, 0.0026937955990433693, 0.00920192338526249, 0.32937708497047424, 0.03801718354225159, 0.036527592688798904, 0.0510849766433239, 0.03202858194708824, 0.005508856847882271, 0.009671702049672604, 0.009895053692162037, 0.01381279993802309, 0.024561014026403427, 0.011860622093081474, 0.35578253865242004], [0.03334939479827881, 0.0006988302920944989, 0.00012132222764194012, 0.0016517729964107275, 0.0034102245699614286, 0.16604416072368622, 0.03245437145233154, 0.0305287204682827, 0.22815652191638947, 0.21109764277935028, 0.015421733260154724, 0.02324128895998001, 0.022190142422914505, 0.01826002448797226, 0.030105503275990486, 0.007553428877145052, 0.17571483552455902], [0.04776649549603462, 0.006314534693956375, 0.0009151394478976727, 0.004754307679831982, 0.012890697456896305, 0.11091911792755127, 0.08382141590118408, 0.11954990029335022, 0.09190652519464493, 0.21361194550991058, 0.047403350472450256, 0.03985222801566124, 0.03286759555339813, 0.03029564954340458, 0.020731531083583832, 0.011548593640327454, 0.12485098093748093], [0.047683220356702805, 0.002261563902720809, 0.00040778302354738116, 0.002552252495661378, 0.012449086643755436, 0.21811053156852722, 0.03418081998825073, 0.06197187677025795, 0.044288117438554764, 0.11112614721059799, 0.04662761464715004, 0.07175391167402267, 0.03156277909874916, 0.026848869398236275, 0.02953982725739479, 0.01553345751017332, 0.2431020885705948], [0.04629248008131981, 0.00480361795052886, 0.0007504948298446834, 0.004676584154367447, 0.0148331169039011, 0.222198948264122, 0.03400018811225891, 0.0471692718565464, 0.020021799951791763, 0.047079309821128845, 0.0584133118391037, 0.06743128597736359, 0.0595165491104126, 0.07646641880273819, 0.028487201780080795, 0.01734623685479164, 0.2505131661891937], [0.017541706562042236, 0.0028752528596669436, 0.0004503072705119848, 0.0019510999554768205, 0.003255285322666168, 0.04689054936170578, 0.02793695218861103, 0.09759888052940369, 0.029616758227348328, 0.056809201836586, 0.11852690577507019, 0.17171302437782288, 0.22803907096385956, 0.096123605966568, 0.03453417867422104, 0.010747283697128296, 0.05538995563983917], [0.06368274986743927, 0.01246542390435934, 0.0028323065489530563, 0.02110467292368412, 0.014252766035497189, 0.17456676065921783, 0.04049629718065262, 0.07070911675691605, 0.01799231953918934, 0.04805271700024605, 0.028660040348768234, 0.048338260501623154, 0.06091880425810814, 0.08236296474933624, 0.06385068595409393, 0.037610553205013275, 0.21210357546806335], [0.027144065126776695, 0.016545291990041733, 0.0023978655226528645, 0.0036987389903515577, 0.009165016934275627, 0.42235228419303894, 0.002971264999359846, 0.009424659423530102, 0.0016756865661591291, 0.0017641506856307387, 0.0008903141715563834, 0.0014674222329631448, 0.0014773256843909621, 0.002979898825287819, 0.004510100930929184, 0.009243830107152462, 0.4822922348976135]], [[0.05191999301314354, 0.014255331829190254, 0.0035874417517334223, 0.03139149025082588, 0.08180756121873856, 0.37349027395248413, 0.00033548130886629224, 0.0023680177982896566, 5.908963066758588e-05, 0.00039356909110210836, 0.00021059726714156568, 3.6778954381588846e-05, 0.0002796078915707767, 0.0011951514752581716, 0.0009101129835471511, 0.01202775351703167, 0.42573174834251404], [0.015549421310424805, 0.06168118119239807, 0.0011013116454705596, 0.002523562638089061, 0.021597890183329582, 0.35163265466690063, 0.00871447753161192, 0.02512802742421627, 0.001428153715096414, 0.022601909935474396, 0.0026177475228905678, 0.0013516085455194116, 0.0017262969631701708, 0.0028990611899644136, 0.010749733075499535, 0.023977559059858322, 0.44471946358680725], [0.004535372368991375, 0.0031185373663902283, 0.17204871773719788, 0.0017646197229623795, 0.0018606308149173856, 0.24083130061626434, 0.006176111754029989, 0.0214450154453516, 0.006081035360693932, 0.012790355831384659, 0.00940798781812191, 0.18770061433315277, 0.03343801200389862, 0.0014755306765437126, 0.0013561553787440062, 0.00770909246057272, 0.28826096653938293], [0.024112286046147346, 0.0007701275171712041, 0.00035039964132010937, 0.11639436334371567, 0.007864966988563538, 0.3666888475418091, 0.0025756957475095987, 0.0007488370756618679, 0.0011771982535719872, 0.0062758284620940685, 0.0002708795655053109, 0.000612010364420712, 0.00022934931621421129, 0.00021601551270578057, 0.02077621966600418, 0.038459111005067825, 0.412477970123291], [0.030768366530537605, 0.017599979415535927, 0.004344018176198006, 0.01740458980202675, 0.05898961052298546, 0.3385351896286011, 0.006641630083322525, 0.017107922583818436, 0.0012339253444224596, 0.01630072109401226, 0.0037556965835392475, 0.0032562478445470333, 0.003951870836317539, 0.007927974686026573, 0.018879102542996407, 0.061596326529979706, 0.39170676469802856], [0.014106005430221558, 0.004514920059591532, 0.0016692887293174863, 0.0017052266048267484, 0.0049047875218093395, 0.4425371587276459, 0.00799903366714716, 0.005928941071033478, 0.003396865213289857, 0.005228962283581495, 0.0010950412834063172, 0.0012453634990379214, 0.0013107541017234325, 0.003290631342679262, 0.002474931301549077, 0.010142022743821144, 0.4884501099586487], [0.005463538691401482, 0.002639015670865774, 0.000663106853608042, 0.0009406644967384636, 0.009307212196290493, 0.44044944643974304, 0.012048356235027313, 0.0017358817858621478, 0.0006803144933655858, 0.0008485452854074538, 0.0004985260893590748, 0.0002663476625457406, 0.00016584651893936098, 0.0005537021206691861, 0.0003871372027788311, 0.002084980020299554, 0.5212674140930176], [0.019435008987784386, 0.01791595108807087, 0.002980574732646346, 0.0010654041543602943, 0.011120808310806751, 0.3565709590911865, 0.004250059835612774, 0.1667121797800064, 0.0009375624358654022, 0.001287490944378078, 0.0006902505992911756, 0.0009206439717672765, 0.00022143422393128276, 0.0007146734278649092, 0.0008348779520019889, 0.005603932309895754, 0.4087381064891815], [0.008245502598583698, 0.0002631572133395821, 0.005814468953758478, 0.003377441316843033, 0.005895813461393118, 0.4235056936740875, 0.0009812196949496865, 0.0004054324817843735, 0.044997651129961014, 0.00110890984069556, 6.726561696268618e-05, 0.0008497710805386305, 9.243149543181062e-05, 0.00033141201129183173, 0.00033571329549886286, 0.0010592115577310324, 0.5026689171791077], [0.033323951065540314, 0.0065187872387468815, 0.0032458368223160505, 0.01566525362432003, 0.0843026414513588, 0.3787045478820801, 0.000782553746830672, 0.00017295608995482326, 0.0008915740181691945, 0.031756509095430374, 0.00013409004895947874, 3.247511631343514e-05, 9.966051038645674e-06, 7.36237780074589e-05, 0.0005503194406628609, 0.0030835154466331005, 0.44075149297714233], [0.021165408194065094, 0.0016060261987149715, 0.008765303529798985, 0.0012179170735180378, 0.028876373544335365, 0.38972029089927673, 0.004008492920547724, 0.001083330367691815, 0.0007665737648494542, 0.0014606387121602893, 0.024690721184015274, 0.001150496886111796, 0.00044855434680357575, 8.803277887636796e-05, 6.264321564231068e-05, 0.003336058696731925, 0.511553168296814], [0.009027846157550812, 0.0026001213118433952, 0.16567373275756836, 0.0020351852290332317, 0.006141344550997019, 0.205255925655365, 0.0036134826950728893, 0.0034916105214506388, 0.0037910854443907738, 0.0009795700898393989, 0.0027059942949563265, 0.3072371482849121, 0.0072919148951768875, 0.0016667203744873405, 0.0003867301275022328, 0.0019935593008995056, 0.2761080265045166], [0.010423285886645317, 0.0007667701574973762, 0.005594474729150534, 0.000575728714466095, 0.008748438209295273, 0.3793868124485016, 0.0009168271790258586, 0.0003720024542417377, 0.00015351938782259822, 0.00013916738680563867, 0.00033431677729822695, 0.0017945144791156054, 0.03204590454697609, 0.0014935032231733203, 0.00016295006207656115, 0.0022349499631673098, 0.5548567175865173], [0.010900147259235382, 0.0008977745310403407, 0.000748897495213896, 0.0005548822809942067, 0.007206144277006388, 0.3440284729003906, 0.0005306698731146753, 8.566595352021977e-05, 0.00031120565836317837, 3.065755299758166e-05, 4.014873411506414e-06, 0.0001820387551560998, 0.00024557544384151697, 0.14241556823253632, 0.0016902461647987366, 0.003920259885489941, 0.48624780774116516], [0.035971906036138535, 0.00959521159529686, 0.00038137787487357855, 0.002910920884460211, 0.015553577803075314, 0.39261114597320557, 0.0012642333749681711, 0.0009421565919183195, 0.0005561434081755579, 0.000710071122739464, 1.8390293917036615e-05, 8.746718231122941e-05, 0.00012226306716911495, 0.0023986108135432005, 0.04176166653633118, 0.012600825168192387, 0.4825139343738556], [0.03947310894727707, 0.006518223322927952, 0.002951619680970907, 0.009039818309247494, 0.05021350830793381, 0.40014445781707764, 0.0014636870473623276, 0.0019196401117369533, 0.0005032957415096462, 0.0015808693133294582, 0.00015136500587686896, 0.0003266984422225505, 0.0004305561014916748, 0.0017862111562862992, 0.0037079891189932823, 0.028571993112564087, 0.45121705532073975], [0.015843268483877182, 0.006004801485687494, 0.002095157979056239, 0.0023132706992328167, 0.00629804190248251, 0.43657729029655457, 0.007696131709963083, 0.006017404608428478, 0.0028867253568023443, 0.005069043021649122, 0.0012522004544734955, 0.0012091058306396008, 0.0016009474638849497, 0.004051181022077799, 0.0025391385424882174, 0.01007365807890892, 0.4884726405143738]], [[0.04012926295399666, 0.0625835582613945, 0.007591774221509695, 0.06549941003322601, 0.15970522165298462, 0.21919485926628113, 0.012750320136547089, 0.023709475994110107, 0.001000423333607614, 0.0038404185324907303, 0.0023164045996963978, 0.0015962122706696391, 0.0020872754976153374, 0.009448248893022537, 0.04568268731236458, 0.07916831225156784, 0.2636961340904236], [0.0377076081931591, 0.054996415972709656, 0.001860421267338097, 0.014137010090053082, 0.01233983039855957, 0.393696129322052, 0.0024536680430173874, 0.003907914273440838, 0.0002888082235585898, 0.0002776433830149472, 7.565948908450082e-05, 0.0005895976210013032, 0.0022658228408545256, 0.004766677040606737, 0.004681476391851902, 0.008333711884915829, 0.4576215147972107], [0.02350740320980549, 0.3547515571117401, 0.026527799665927887, 0.09480781853199005, 0.05057695135474205, 0.16447311639785767, 0.0057240561582148075, 0.012983843684196472, 0.00024267964181490242, 0.0006289551383815706, 3.744293644558638e-05, 0.00013619509991258383, 0.0009121514158323407, 0.012991889379918575, 0.04290191829204559, 0.016308225691318512, 0.19248799979686737], [0.03184793144464493, 0.07808099687099457, 0.02095477655529976, 0.029869139194488525, 0.12214790284633636, 0.312808096408844, 0.004581349901854992, 0.003076745430007577, 0.00039467273745685816, 0.00044760937453247607, 0.0001173545460915193, 0.00010598379594739527, 0.0004625602741725743, 0.0020175864920020103, 0.008411779068410397, 0.023264439776539803, 0.36141112446784973], [0.02637428417801857, 0.06162627413868904, 0.041012778878211975, 0.3154652714729309, 0.04300021007657051, 0.2139255404472351, 0.005172719247639179, 0.004200192634016275, 0.00037968726246617734, 0.0009385652374476194, 0.0002279382897540927, 0.0007027920801192522, 0.0014892217004671693, 0.007568393833935261, 0.026556288823485374, 0.00804030429571867, 0.24331951141357422], [0.04464123398065567, 0.00977512076497078, 0.003254235489293933, 0.0034214172046631575, 0.014485078863799572, 0.3988734185695648, 0.0027124553453177214, 0.004710639826953411, 0.0021521863527595997, 0.0012787291780114174, 0.00035609983024187386, 0.00242409436032176, 0.002208598190918565, 0.004015914164483547, 0.002906193258240819, 0.013317028991878033, 0.48946765065193176], [0.06945369392633438, 0.05172627791762352, 0.016521094366908073, 0.276468962430954, 0.039755165576934814, 0.18912504613399506, 0.027639908716082573, 0.0710172951221466, 0.0035759147722274065, 0.003282082499936223, 0.0007072772714309394, 0.003016309579834342, 0.005329236853867769, 0.006211283151060343, 0.015465566888451576, 0.003245745087042451, 0.21745915710926056], [0.07115773111581802, 0.04742471128702164, 0.0027664434164762497, 0.03342388570308685, 0.032722409814596176, 0.31098830699920654, 0.04856519401073456, 0.026563897728919983, 0.005424769129604101, 0.0036525363102555275, 0.0006695837364532053, 0.0033160632010549307, 0.01136943232268095, 0.01985359936952591, 0.03803249076008797, 0.00977515522390604, 0.3342938721179962], [0.02457723766565323, 0.03618861362338066, 0.0006892344099469483, 0.008819745853543282, 0.012080410495400429, 0.12211072444915771, 0.05740775913000107, 0.4106515049934387, 0.00921719428151846, 0.03591976687312126, 0.0037448301445692778, 0.007587548345327377, 0.023898491635918617, 0.04400986060500145, 0.059336107224226, 0.008576562628149986, 0.13518449664115906], [0.019048575311899185, 0.01007205992937088, 0.0011648653307929635, 0.00925432424992323, 0.00933525338768959, 0.25338029861450195, 0.017104508355259895, 0.0677204504609108, 0.06261308491230011, 0.1049933210015297, 0.002155286492779851, 0.010569268837571144, 0.020591383799910545, 0.04326753318309784, 0.0652947798371315, 0.0156876053661108, 0.28774741291999817], [0.0018327947473153472, 0.000495635555125773, 0.00015822317800484598, 0.0032250788062810898, 0.0006659876089543104, 0.025898773223161697, 0.0037400389555841684, 0.026626868173480034, 0.058951880782842636, 0.792058527469635, 0.006684870924800634, 0.014103013090789318, 0.005658924113959074, 0.013223288580775261, 0.01505964808166027, 0.00133261748123914, 0.03028394654393196], [0.014809058047831059, 0.004701316822320223, 0.0006862141308374703, 0.011010400950908661, 0.010077212005853653, 0.12369426339864731, 0.014606540091335773, 0.09463223814964294, 0.022648578509688377, 0.11246160417795181, 0.01630067080259323, 0.037770118564367294, 0.05066262558102608, 0.13698609173297882, 0.19301339983940125, 0.015935465693473816, 0.1400042474269867], [0.0024572110269218683, 0.0006032480741851032, 0.0003749581810552627, 0.004957485944032669, 0.0022179719526320696, 0.06223900616168976, 0.0014243967598304152, 0.008473986759781837, 0.008068840950727463, 0.06380912661552429, 0.008250881917774677, 0.14069022238254547, 0.05015256255865097, 0.4692787826061249, 0.10540144890546799, 0.0043213642202317715, 0.06727848201990128], [0.01089535839855671, 0.003285595215857029, 0.0005082603893242776, 0.0018164560897275805, 0.008617360144853592, 0.33047932386398315, 0.004251247737556696, 0.025561193004250526, 0.0139682088047266, 0.013085538521409035, 0.012163273058831692, 0.05098017305135727, 0.08389817178249359, 0.054987091571092606, 0.020171763375401497, 0.01851046271622181, 0.346820592880249], [0.006680815946310759, 0.0016694952500984073, 0.0004559082444757223, 0.0018594095017760992, 0.00216368748806417, 0.0822250247001648, 0.005736463703215122, 0.009113679639995098, 0.006241751369088888, 0.01583021692931652, 0.00747113861143589, 0.040249940007925034, 0.2219374030828476, 0.43727830052375793, 0.05628252774477005, 0.010220151394605637, 0.094584159553051], [0.03654547408223152, 0.012335815466940403, 0.0020026687998324633, 0.025427011772990227, 0.008904581889510155, 0.2842395603656769, 0.00425956305116415, 0.008019527420401573, 0.0016712567303329706, 0.005212876945734024, 0.001343442709185183, 0.008010130375623703, 0.019817695021629333, 0.04405208304524422, 0.15196844935417175, 0.03082386776804924, 0.3553660213947296], [0.04448375105857849, 0.010896026156842709, 0.004029369447380304, 0.0040903883054852486, 0.016114743426442146, 0.3940673768520355, 0.0030035870149731636, 0.005241914186626673, 0.0026686813216656446, 0.0017058642115443945, 0.00043277107761241496, 0.0029247046913951635, 0.0029099523089826107, 0.00515971053391695, 0.0038690485525876284, 0.015710266306996346, 0.48269185423851013]], [[0.011745928786695004, 0.0062329769134521484, 0.0010027594398707151, 0.005914890673011541, 0.0011800754582509398, 0.013179422356188297, 0.03167868033051491, 0.08151928335428238, 0.002928894478827715, 0.08667372912168503, 0.01892264187335968, 0.022633865475654602, 0.05012677609920502, 0.22344458103179932, 0.3924691379070282, 0.03125333413481712, 0.019093068316578865], [0.0701994001865387, 0.037097081542015076, 0.014195121824741364, 0.0786680281162262, 0.06663282960653305, 0.2862122058868408, 0.005684569012373686, 0.005245870444923639, 0.003238614648580551, 0.0068922569043934345, 0.0025749593041837215, 0.0018932876409962773, 0.007599738892167807, 0.01822536252439022, 0.024241870269179344, 0.03455154970288277, 0.33684730529785156], [0.03346171975135803, 0.07137329876422882, 0.015068628825247288, 0.4049472212791443, 0.060258716344833374, 0.05032085254788399, 0.029220987111330032, 0.016237014904618263, 0.002288706600666046, 0.02731616422533989, 0.0037741432897746563, 0.0034451396204531193, 0.02440538816154003, 0.12248725444078445, 0.04476483166217804, 0.02582969143986702, 0.06480032950639725], [0.044429413974285126, 0.05432059243321419, 0.025126906111836433, 0.09452318400144577, 0.08756448328495026, 0.2692755162715912, 0.007934557273983955, 0.008769693784415722, 0.001748312497511506, 0.007920578122138977, 0.0015911280643194914, 0.0024415566585958004, 0.00499425083398819, 0.016298804432153702, 0.0193299762904644, 0.02585052140057087, 0.32788053154945374], [0.03676027059555054, 0.12432157248258591, 0.013099239207804203, 0.3400425910949707, 0.11064024269580841, 0.03181346878409386, 0.003505702828988433, 0.02007620595395565, 0.0007105794502422214, 0.010992540046572685, 0.0021882192231714725, 0.001955413492396474, 0.007029307074844837, 0.10571878403425217, 0.101249098777771, 0.046254418790340424, 0.043642349541187286], [0.05319398641586304, 0.0023519513197243214, 0.0011821351945400238, 0.001853124238550663, 0.05526569485664368, 0.4031102657318115, 0.003353151259943843, 0.002373545430600643, 0.0013039893237873912, 0.00021416811796370894, 0.0003905228804796934, 0.0004932542215101421, 0.0005200651357881725, 0.0004931441508233547, 0.00041712913662195206, 0.023296602070331573, 0.4501872956752777], [0.05740540474653244, 0.028990739956498146, 0.0030851843766868114, 0.027415571734309196, 0.022122759371995926, 0.13600745797157288, 0.01333904080092907, 0.026594115421175957, 0.0037046829238533974, 0.06886157393455505, 0.0203512255102396, 0.010094146244227886, 0.034956127405166626, 0.11703400313854218, 0.20500023663043976, 0.05730103328824043, 0.1677367389202118], [0.03954058513045311, 0.03585774451494217, 0.002398305106908083, 0.019010888412594795, 0.022684913128614426, 0.07537836581468582, 0.013512923382222652, 0.01906421035528183, 0.005785489920526743, 0.13370230793952942, 0.010432407259941101, 0.010442331433296204, 0.0348869152367115, 0.253010094165802, 0.17767596244812012, 0.052249591797590256, 0.09436690807342529], [0.024345092475414276, 0.006480593699961901, 0.0007575515192002058, 0.01977401040494442, 0.0027428511530160904, 0.039289191365242004, 0.03799010440707207, 0.012622120790183544, 0.00886193010956049, 0.4471181035041809, 0.02045348845422268, 0.02260175347328186, 0.0901544839143753, 0.0745389312505722, 0.12768441438674927, 0.013893851079046726, 0.050691504031419754], [0.05518034100532532, 0.02234932966530323, 0.0019954999443143606, 0.011222252622246742, 0.014506284147500992, 0.08965545892715454, 0.04304124787449837, 0.0321977436542511, 0.008851118385791779, 0.08070135861635208, 0.007833704352378845, 0.02280564233660698, 0.04277501627802849, 0.16130827367305756, 0.20223118364810944, 0.08553429692983627, 0.11781121790409088], [0.05698253959417343, 0.007510640192776918, 0.0034210404846817255, 0.009123348630964756, 0.023947415873408318, 0.16215388476848602, 0.07667281478643417, 0.020434709265828133, 0.014038817025721073, 0.20988065004348755, 0.014508956111967564, 0.046308498829603195, 0.0485721193253994, 0.015636088326573372, 0.03489917889237404, 0.07674001902341843, 0.17916929721832275], [0.033410001546144485, 0.007801820524036884, 0.001961742527782917, 0.012269026599824429, 0.011085418984293938, 0.037616610527038574, 0.05996103212237358, 0.03398968279361725, 0.017606249079108238, 0.24342314898967743, 0.04929006099700928, 0.03247559815645218, 0.15859796106815338, 0.12103674560785294, 0.09386268258094788, 0.04208803549408913, 0.043524209409952164], [0.043718427419662476, 0.022076833993196487, 0.0024787692818790674, 0.016272472217679024, 0.01868523843586445, 0.1182624101638794, 0.04620588570833206, 0.021426822990179062, 0.015412796288728714, 0.09175955504179001, 0.015712235122919083, 0.031452108174562454, 0.05067882314324379, 0.1554744988679886, 0.17699143290519714, 0.032565418630838394, 0.14082634449005127], [0.048032067716121674, 0.05018284544348717, 0.005675525404512882, 0.015573854558169842, 0.03973454609513283, 0.2519073486328125, 0.015249481424689293, 0.01066484022885561, 0.008519903756678104, 0.03239189088344574, 0.004731472115963697, 0.0074173626489937305, 0.025456208735704422, 0.0357888862490654, 0.07625093311071396, 0.06997489184141159, 0.30244797468185425], [0.04763731360435486, 0.032941970974206924, 0.012169847264885902, 0.04466553404927254, 0.019067009910941124, 0.12387130409479141, 0.03320107236504555, 0.022036036476492882, 0.019197234883904457, 0.0957086831331253, 0.011409181170165539, 0.03618469089269638, 0.12101806700229645, 0.14751668274402618, 0.06552694737911224, 0.02024943009018898, 0.14759907126426697], [0.07443181425333023, 0.039984263479709625, 0.003416621359065175, 0.029496757313609123, 0.037923526018857956, 0.06088580936193466, 0.025935888290405273, 0.092855304479599, 0.002555832266807556, 0.0534265898168087, 0.00697892252355814, 0.01339070312678814, 0.018060356378555298, 0.20480607450008392, 0.1480686068534851, 0.10603268444538116, 0.08175020664930344], [0.06257263571023941, 0.002838176442310214, 0.0014556579990312457, 0.0022523461375385523, 0.053589727729558945, 0.39037251472473145, 0.004535827785730362, 0.003297677729278803, 0.001661572139710188, 0.0003358593676239252, 0.0005102029535919428, 0.000740567222237587, 0.0007953036692924798, 0.0008185196202248335, 0.0006488313083536923, 0.02910616621375084, 0.44446855783462524]], [[0.053250353783369064, 0.021428143605589867, 0.0051818955689668655, 0.03852960094809532, 0.05926515534520149, 0.35475075244903564, 0.02706008218228817, 0.010832552798092365, 0.001554525806568563, 0.0017375575844198465, 0.002158296760171652, 0.002263802569359541, 0.0015762622933834791, 0.012867536395788193, 0.017971865832805634, 0.015652909874916077, 0.3739188015460968], [0.02728887088596821, 0.019619356840848923, 0.0018268191488459706, 0.002478045644238591, 0.1122383177280426, 0.3963495194911957, 0.003447913099080324, 0.0002994124952238053, 3.96566501876805e-05, 2.9089422241668217e-05, 3.2073367037810385e-05, 6.888240750413388e-05, 0.00015664919919800013, 0.0014110432239249349, 0.0007509017596021295, 0.019278980791568756, 0.4146844148635864], [0.0025306076277047396, 0.8742099404335022, 0.0074773384258151054, 0.005336517933756113, 0.009488888084888458, 0.03830445930361748, 0.003361170180141926, 0.009635872207581997, 9.034978575073183e-05, 7.168793672462925e-05, 2.886229776777327e-05, 9.970178325602319e-06, 1.7221436792169698e-05, 0.0006350796320475638, 0.0006408249610103667, 0.0033748564310371876, 0.04478636011481285], [0.03913715109229088, 0.3518241345882416, 0.08090449869632721, 0.024909213185310364, 0.06495244801044464, 0.18606765568256378, 0.014269761741161346, 0.013612354174256325, 0.0012211980065330863, 0.0006023223977535963, 0.00035852738074027, 0.00021181580086704344, 0.001009089406579733, 0.002576107159256935, 0.0023510814644396305, 0.01063949428498745, 0.20535315573215485], [0.022622141987085342, 0.028696060180664062, 0.008487414568662643, 0.25713735818862915, 0.06655583530664444, 0.298642635345459, 0.005443311762064695, 0.00122064130846411, 0.00013210336328484118, 0.00014246763021219522, 0.0003483048640191555, 0.0003663350944407284, 0.00018647398974280804, 0.0013178433291614056, 0.016357755288481712, 0.006659823469817638, 0.28568339347839355], [0.04320772737264633, 0.01363128051161766, 0.003697984153404832, 0.00567106157541275, 0.02094758115708828, 0.3958369195461273, 0.007210877723991871, 0.00426508579403162, 0.003932990599423647, 0.0038640983402729034, 0.0010566951241344213, 0.0035510044544935226, 0.002011870266869664, 0.004863417241722345, 0.003153191413730383, 0.02494625933468342, 0.45815202593803406], [0.07683917135000229, 0.01164943352341652, 0.00069064786657691, 0.012122392654418945, 0.4605494439601898, 0.19931913912296295, 0.02240915596485138, 0.012339919805526733, 0.00010238853428745642, 9.928987128660083e-05, 0.00017886771820485592, 5.392646562540904e-05, 0.00014452349569182843, 0.0005670564714819193, 0.001960291061550379, 0.014046681113541126, 0.18692773580551147], [0.07459123432636261, 0.015138261951506138, 0.0004293913079891354, 0.0017556094098836184, 0.07147229462862015, 0.2680170238018036, 0.24318672716617584, 0.027971047908067703, 0.0040589296258986, 0.0016729008639231324, 0.0020964236464351416, 0.0009244972607120872, 0.0015229720156639814, 0.003077390603721142, 0.005454137921333313, 0.012955457903444767, 0.2656756639480591], [0.008695850148797035, 0.020575303584337234, 0.00021642967476509511, 0.0005405689589679241, 0.011086690239608288, 0.04562556743621826, 0.03793047368526459, 0.7878344655036926, 0.0047247689217329025, 0.0038913919124752283, 0.0046172477304935455, 0.001146626309491694, 0.00239961058832705, 0.006326477508991957, 0.004127529915422201, 0.005935367196798325, 0.054325591772794724], [0.014313812367618084, 0.0047895293682813644, 0.0016971968580037355, 0.002722910838201642, 0.001963056158274412, 0.13007432222366333, 0.01570127345621586, 0.04424270614981651, 0.4869479238986969, 0.0914095938205719, 0.005859155207872391, 0.007759270258247852, 0.007574169430881739, 0.015686560422182083, 0.013837725855410099, 0.008134693838655949, 0.1472860872745514], [0.0012179415207356215, 3.356791421538219e-05, 0.00010790451051434502, 0.00055761105613783, 9.645488898968324e-05, 0.018041454255580902, 0.002499051159247756, 0.005572240799665451, 0.07690712064504623, 0.8118375539779663, 0.024170363321900368, 0.030805222690105438, 0.0016265593003481627, 0.0010500367498025298, 0.0016980076907202601, 0.0006966270739212632, 0.02308223582804203], [0.005074055399745703, 0.0020129173062741756, 0.0003162375360261649, 0.0008397016208618879, 0.0033861089032143354, 0.04783887416124344, 0.02355002611875534, 0.10809100419282913, 0.033586226403713226, 0.08655618131160736, 0.5165081024169922, 0.0775294303894043, 0.017507176846265793, 0.006648204755038023, 0.007210851646959782, 0.009267927147448063, 0.05407700315117836], [0.0017570822965353727, 0.00037035386776551604, 0.00017048922018148005, 0.00025357099366374314, 0.0007364702178165317, 0.022307343780994415, 0.004825394134968519, 0.010129745118319988, 0.04569286108016968, 0.06786736845970154, 0.1217992976307869, 0.6129242181777954, 0.05887439846992493, 0.016472766175866127, 0.008898674510419369, 0.003173781093209982, 0.023746121674776077], [0.014867233112454414, 0.002547208685427904, 0.00033992898534052074, 0.0006434565293602645, 0.012972514145076275, 0.22387002408504486, 0.017361652106046677, 0.023820921778678894, 0.006810403428971767, 0.00828538741916418, 0.08322378247976303, 0.1116313487291336, 0.17318515479564667, 0.03735863417387009, 0.010601546615362167, 0.027754172682762146, 0.24472659826278687], [0.009065965190529823, 0.004850266966968775, 0.0005334914894774556, 0.001448568538762629, 0.002963123843073845, 0.11445589363574982, 0.011372286826372147, 0.01704123243689537, 0.012076790444552898, 0.00869410578161478, 0.0167878195643425, 0.03377215564250946, 0.18820235133171082, 0.38493385910987854, 0.04224519431591034, 0.0198602806776762, 0.13169671595096588], [0.013280371204018593, 0.0031844291370362043, 0.0007361332536675036, 0.005527934990823269, 0.0027400455437600613, 0.3039664626121521, 0.0014747424283996224, 0.002697115996852517, 0.0008635381236672401, 0.0005646578501909971, 0.0016510221175849438, 0.004215729422867298, 0.004911670461297035, 0.02618507109582424, 0.25625669956207275, 0.03284140303730965, 0.33890300989151], [0.043759070336818695, 0.013434484601020813, 0.0043453313410282135, 0.005763033404946327, 0.018428755924105644, 0.39525169134140015, 0.0075631290674209595, 0.0045519485138356686, 0.004435177892446518, 0.004297436680644751, 0.001225289306603372, 0.004223262891173363, 0.0025303366128355265, 0.0059415302239358425, 0.003771039191633463, 0.024257954210042953, 0.4562205374240875]], [[0.0926532968878746, 0.00046004040632396936, 0.00035326267243362963, 0.0008130265050567687, 0.8712214231491089, 0.00852342788130045, 0.0021018011029809713, 0.0002598184801172465, 6.747120551153785e-06, 5.662566309183603e-06, 7.795164856361225e-05, 0.00012265585246495903, 2.6095891371369362e-05, 2.2662537958240137e-05, 0.0003578004252631217, 0.013750048354268074, 0.009244274348020554], [0.11187947541475296, 0.0005643272888846695, 9.180670531350188e-06, 0.0003416717518121004, 0.21601684391498566, 0.0003150899719912559, 0.0022784743923693895, 7.986877790244762e-06, 5.574295300903032e-07, 2.3511347535531968e-07, 6.977211910452752e-07, 8.42257236399746e-07, 2.1446088794618845e-05, 2.8462138288887218e-05, 0.0003546938532963395, 0.6677358150482178, 0.00044425399391911924], [2.9367118258960545e-05, 0.9977153539657593, 5.016205250285566e-05, 3.817678225459531e-05, 9.885146027954761e-06, 3.567308885976672e-05, 3.578034738893621e-05, 0.001957656815648079, 2.4042893187470327e-07, 9.479920208832482e-07, 2.0074341477993585e-07, 2.3236528257086775e-09, 9.147204771409179e-09, 2.3062068521539913e-06, 2.3425656763720326e-05, 4.9472084356239066e-05, 5.1364197133807465e-05], [1.525736297480762e-05, 6.373680662363768e-05, 0.9995471835136414, 7.818854646757245e-05, 2.4227894755313173e-05, 1.0398165386504843e-06, 1.591152795299422e-05, 5.127908480062615e-06, 0.000204792944714427, 1.6492031136294827e-05, 5.962983351537332e-08, 1.0052843208541162e-05, 3.6153428482066374e-06, 6.267434400797356e-06, 4.360230718702951e-07, 6.231906354514649e-06, 1.3256073998491047e-06], [0.0024384588468819857, 0.000527155410964042, 8.584598981542513e-05, 0.9558300375938416, 0.03012588806450367, 1.528609027445782e-05, 0.0001675835665082559, 8.103293657768518e-05, 5.893506340726162e-07, 3.102894697804004e-05, 8.664417691761628e-06, 1.3743671161137172e-06, 2.95309575903957e-07, 5.590451110037975e-06, 0.010114614851772785, 0.0005485177389346063, 1.8113114492734894e-05], [0.20821800827980042, 0.034929778426885605, 0.022191420197486877, 0.04576757177710533, 0.05104828253388405, 0.20295770466327667, 0.02652614936232567, 0.011855359189212322, 0.012937454506754875, 0.010223855264484882, 0.011441131122410297, 0.01199814397841692, 0.013235358521342278, 0.01863105781376362, 0.024021657183766365, 0.08503022789955139, 0.2089868038892746], [0.6646676659584045, 0.00024785619461908937, 6.502024916699156e-05, 0.001330661354586482, 0.1993982046842575, 0.0015253720339387655, 0.12263227999210358, 0.0016074498416855931, 3.568038664525375e-05, 1.6978667190414853e-05, 0.00017049892630893737, 2.784970092761796e-05, 3.5125602153129876e-05, 6.796187335567083e-06, 3.4882115869550034e-05, 0.006356196478009224, 0.0018416342791169882], [0.013342893682420254, 0.0004165208956692368, 6.733258032909362e-06, 2.7855532607645728e-05, 0.0007168418960645795, 0.00024615839356556535, 0.9684208035469055, 0.011840205639600754, 0.00161682756152004, 0.00016146834241226315, 0.0017900815000757575, 0.000103018268418964, 0.0002168420032830909, 5.3672771173296496e-05, 8.22424262878485e-05, 0.0006699247751384974, 0.00028792174998670816], [1.221595721290214e-05, 0.00016476325981784612, 9.902208830681047e-07, 4.007224774227325e-08, 1.1838096725114156e-06, 4.005611117463559e-05, 0.0023877050261944532, 0.9961560368537903, 0.0001717061677481979, 5.38860731467139e-05, 0.0008643728797324002, 1.3129265425959602e-05, 5.034075729781762e-05, 4.392458777147112e-06, 4.807647655979963e-06, 1.3021689483139198e-05, 6.128435779828578e-05], [6.994079626565508e-08, 2.4331103798402864e-09, 3.6359870136948302e-06, 2.7158431059604027e-09, 2.601890092268633e-10, 6.617530345920386e-08, 2.181204308726592e-06, 9.041176781465765e-06, 0.9969887137413025, 0.0028977326583117247, 1.6686052504155668e-06, 9.410302300238982e-05, 1.2025748219457455e-06, 1.2526678574431571e-06, 8.384046878973095e-08, 1.1751871653586932e-07, 8.4954564272266e-08], [1.662549742320607e-08, 1.2530226856100057e-09, 4.445413281928268e-08, 2.8778120508832217e-07, 2.7811137837119304e-09, 4.701269418205811e-08, 2.5144640858343337e-07, 4.851415269513382e-06, 0.0012034160317853093, 0.9928107857704163, 0.00475648045539856, 0.0012188551481813192, 2.5204674329870613e-06, 5.307360879669432e-07, 1.6419695612057694e-06, 1.2201621757412795e-07, 7.879919650122247e-08], [8.603877176938113e-06, 4.2396681010359316e-07, 8.317471866803317e-08, 1.5444302334799431e-06, 1.8195197526438278e-06, 7.4950939961127006e-06, 0.00031271297484636307, 0.0007197466329671443, 5.653173866448924e-05, 0.000776937638875097, 0.9966487288475037, 0.0012562028132379055, 0.00016039007459767163, 6.2369595070776995e-06, 1.2854679880547337e-05, 1.824102218961343e-05, 1.1437376087997109e-05], [1.480459310698734e-08, 3.030797834924215e-10, 1.0351730850288732e-07, 1.7137667285282987e-08, 1.4538744652625724e-09, 6.049027234666937e-08, 3.0983972010290017e-07, 3.90326874821767e-07, 0.00016521768702659756, 3.5875429603038356e-05, 0.0017030034214258194, 0.9957210421562195, 0.002325708046555519, 4.7563135012751445e-05, 7.487642506021075e-07, 1.6044170436657623e-08, 7.959687309266883e-08], [8.825501936371438e-06, 1.914074232445273e-07, 3.3390674047950597e-07, 3.771733929625043e-07, 1.7470235889049945e-06, 7.0858586695976555e-06, 1.472561234550085e-05, 1.4171697330311872e-05, 6.6230763877683785e-06, 9.572127964929678e-06, 0.001587722566910088, 0.00520247733220458, 0.9925746917724609, 0.0004982539103366435, 3.141670458717272e-05, 3.07433947455138e-05, 1.0905764611379709e-05], [1.6073714732556255e-06, 1.825238655328576e-06, 1.804204543986998e-06, 4.303584773879265e-06, 9.368282860577892e-08, 1.1933590030821506e-05, 2.0312299966462888e-06, 1.2372740457067266e-05, 7.943532546050847e-05, 3.4486329241190106e-05, 9.586257874616422e-06, 0.0002011168107856065, 0.04136361554265022, 0.9513413906097412, 0.006898029241710901, 1.843728023231961e-05, 1.7921207472682e-05], [0.000147324099089019, 0.00012082717876182869, 1.3677829883818049e-05, 0.0027494330424815416, 5.0814887799788266e-05, 0.00010632579505909234, 2.2044445358915254e-05, 0.0005907799350097775, 2.9064140107948333e-05, 0.00020362800569273531, 2.0656885681091808e-05, 6.081096580601297e-05, 0.0003843613376375288, 0.000814493396319449, 0.9932843446731567, 0.0012573250569403172, 0.0001440986670786515], [0.21667754650115967, 0.03320940211415291, 0.03137752413749695, 0.038204025477170944, 0.06109166517853737, 0.18316058814525604, 0.025908105075359344, 0.011678146198391914, 0.016027702018618584, 0.00985539611428976, 0.010340763255953789, 0.013923415914177895, 0.01768583618104458, 0.02242647297680378, 0.029495317488908768, 0.09172210842370987, 0.1872159093618393]], [[0.09732333570718765, 0.04127632454037666, 0.023208238184452057, 0.057158298790454865, 0.05573540925979614, 0.30760130286216736, 0.01831478253006935, 0.014978364109992981, 0.0024387126322835684, 0.0043037645518779755, 0.0020844857208430767, 0.0017909802263602614, 0.004295842722058296, 0.02493487112224102, 0.005773591808974743, 0.026738278567790985, 0.3120434582233429], [0.09845854341983795, 0.04407496005296707, 0.007530024275183678, 0.015846848487854004, 0.021849453449249268, 0.32556861639022827, 0.042993854731321335, 0.026718026027083397, 0.005284250248223543, 0.005674863699823618, 0.00364727177657187, 0.006413675844669342, 0.010040884837508202, 0.011823214590549469, 0.010917755775153637, 0.03290623426437378, 0.3302515149116516], [0.06851168721914291, 0.018066341057419777, 0.059831686317920685, 0.006438723299652338, 0.01560160517692566, 0.3031734228134155, 0.03216887265443802, 0.05196017026901245, 0.03123168833553791, 0.01731545478105545, 0.01398786436766386, 0.023312000557780266, 0.01751467026770115, 0.005855483468621969, 0.007558520883321762, 0.02021077461540699, 0.3072609603404999], [0.08180458843708038, 0.014064254239201546, 0.012886791490018368, 0.007258912082761526, 0.012882008217275143, 0.30230075120925903, 0.1404019594192505, 0.035580698400735855, 0.018969450145959854, 0.011147393845021725, 0.009505057707428932, 0.009060709737241268, 0.007620598189532757, 0.004986701533198357, 0.007573735900223255, 0.026339448988437653, 0.2976168394088745], [0.07077880203723907, 0.028036227449774742, 0.014239185489714146, 0.012333907186985016, 0.012496501207351685, 0.319171667098999, 0.07732761651277542, 0.026361821219325066, 0.016643177717924118, 0.016547538340091705, 0.017972420901060104, 0.01163605134934187, 0.015623289160430431, 0.0081818588078022, 0.015706434845924377, 0.025780832394957542, 0.3111627399921417], [0.051859695464372635, 0.01831630989909172, 0.004769710823893547, 0.010963133536279202, 0.019116848707199097, 0.3681997060775757, 0.009081168100237846, 0.007036424707621336, 0.0076855262741446495, 0.006751721259206533, 0.002001506043598056, 0.004515001550316811, 0.005241168197244406, 0.011781174689531326, 0.008467965759336948, 0.016200561076402664, 0.44801244139671326], [0.0549548976123333, 0.011692343279719353, 0.003616464091464877, 0.003206152468919754, 0.007208489812910557, 0.38803720474243164, 0.027389254420995712, 0.012300672940909863, 0.0030642652418464422, 0.0014829651918262243, 0.006032878067344427, 0.009747900068759918, 0.0031847550999373198, 0.005036674905568361, 0.004296791739761829, 0.03251410275697708, 0.4262342154979706], [0.07178366184234619, 0.044384513050317764, 0.008137227036058903, 0.0016043140785768628, 0.014685566537082195, 0.34020307660102844, 0.025229524821043015, 0.05172078311443329, 0.011804723180830479, 0.0030743929091840982, 0.01102338545024395, 0.015400917269289494, 0.0076885707676410675, 0.00419873371720314, 0.006323227193206549, 0.03369784727692604, 0.3490394949913025], [0.056732580065727234, 0.015820061787962914, 0.00840391032397747, 0.003950423561036587, 0.02454390935599804, 0.38285884261131287, 0.012500878423452377, 0.024154962971806526, 0.00596994161605835, 0.005049371626228094, 0.00629060436040163, 0.014101812615990639, 0.00261095748282969, 0.006178299896419048, 0.003931492567062378, 0.040221069008111954, 0.3866809010505676], [0.022904135286808014, 0.005670115817338228, 0.001361885224469006, 0.001562978606671095, 0.00778204295784235, 0.4644013047218323, 0.011860947124660015, 0.005685209296643734, 0.0029658142011612654, 0.0015787059674039483, 0.005924267694354057, 0.0055916449055075645, 0.0034634883049875498, 0.002648472087457776, 0.002462671371176839, 0.023442110046744347, 0.43069419264793396], [0.040095649659633636, 0.006425333209335804, 0.003142740810289979, 0.0035530230961740017, 0.007168014533817768, 0.391705721616745, 0.00778802577406168, 0.006487422622740269, 0.008368288166821003, 0.004897934850305319, 0.011017621494829655, 0.016448643058538437, 0.0033594383858144283, 0.00477882893756032, 0.003701729467138648, 0.04286150261759758, 0.4382001757621765], [0.06030392646789551, 0.007553019095212221, 0.007140674628317356, 0.00279225897975266, 0.009096208028495312, 0.37079671025276184, 0.009127539582550526, 0.011710272170603275, 0.0070053632371127605, 0.0042723617516458035, 0.012757772579789162, 0.026721807196736336, 0.008693136274814606, 0.009204806759953499, 0.008133744820952415, 0.060704801231622696, 0.38398563861846924], [0.022360436618328094, 0.0048698182217776775, 0.010318665765225887, 0.00399829400703311, 0.0056510381400585175, 0.3615722954273224, 0.02059074491262436, 0.006513659842312336, 0.006111196707934141, 0.007258197758346796, 0.021024445071816444, 0.0340309664607048, 0.012791580520570278, 0.013004436157643795, 0.007146678399294615, 0.037213653326034546, 0.4255439341068268], [0.028450308367609978, 0.005516668315976858, 0.003376757726073265, 0.0008683850755915046, 0.004381790291517973, 0.40500736236572266, 0.03273956850171089, 0.003111417405307293, 0.002854679711163044, 0.002465152181684971, 0.0127633111551404, 0.018010159954428673, 0.011485375463962555, 0.007595574948936701, 0.0022994624450802803, 0.026669900864362717, 0.43240413069725037], [0.044305235147476196, 0.014054586179554462, 0.005724434275180101, 0.0019015277503058314, 0.006490947213023901, 0.3521500825881958, 0.033324822783470154, 0.016051923856139183, 0.01720915548503399, 0.0066710831597447395, 0.022578081116080284, 0.032569412142038345, 0.014521765522658825, 0.010573308914899826, 0.011057153344154358, 0.03270983695983887, 0.37810665369033813], [0.07964763045310974, 0.02863367274403572, 0.0025074949953705072, 0.0037267161533236504, 0.0063338554464280605, 0.36446404457092285, 0.0495673306286335, 0.018979158252477646, 0.0075148241594433784, 0.0035296776331961155, 0.007775275036692619, 0.009063326753675938, 0.005064904689788818, 0.005626440513879061, 0.00633964454755187, 0.03804650157690048, 0.3631795644760132], [0.049046412110328674, 0.016938339918851852, 0.005616047885268927, 0.010768730193376541, 0.016673898324370384, 0.37273696064949036, 0.008753039874136448, 0.006881519686430693, 0.007170061580836773, 0.0064485645852983, 0.002416576026007533, 0.0048516616225242615, 0.006557590328156948, 0.012424547225236893, 0.00803079642355442, 0.01757935620844364, 0.44710588455200195]], [[0.047602828592061996, 0.0199678223580122, 0.0024183657951653004, 0.007238134741783142, 0.008302741684019566, 0.1616302728652954, 0.39857152104377747, 0.0885252133011818, 0.006599934305995703, 0.009145625866949558, 0.0009747584699653089, 0.007490368559956551, 0.0035602992866188288, 0.004321693908423185, 0.004350475035607815, 0.026812784373760223, 0.20248718559741974], [0.052399907261133194, 0.04461914300918579, 0.09994984418153763, 0.09529820829629898, 0.155148446559906, 0.2263060361146927, 0.04181867465376854, 0.02087537571787834, 0.007228192873299122, 0.0011977177346125245, 6.962334737181664e-05, 0.0005064155557192862, 0.00023312572739087045, 0.0006550892721861601, 0.0016988498391583562, 0.018294641748070717, 0.23370061814785004], [0.016402827575802803, 0.012914055958390236, 0.015045600943267345, 0.518268346786499, 0.30574116110801697, 0.03377016633749008, 0.04442569613456726, 0.003332435851916671, 0.00045751480502076447, 0.0008537363028153777, 9.583941573509946e-05, 0.00023041384702082723, 0.00040749178151600063, 0.0010918948100879788, 0.0014389307470992208, 0.006973427254706621, 0.03855052590370178], [0.06295331567525864, 0.019003422930836678, 0.013840124942362309, 0.02939620241522789, 0.2989926040172577, 0.19676309823989868, 0.12494606524705887, 0.013042949140071869, 0.0008298691245727241, 0.0006281585665419698, 0.0002766202378552407, 0.0008899366948753595, 0.0002774452150333673, 0.0003216308250557631, 0.0006046342896297574, 0.028884468600153923, 0.20834942162036896], [0.06835059076547623, 0.02856764942407608, 0.003648783778771758, 0.03071078099310398, 0.03155376389622688, 0.17015156149864197, 0.3422110378742218, 0.08002364635467529, 0.0024484547320753336, 0.0017257013823837042, 0.00024222405045293272, 0.0025397855788469315, 0.0022458515595644712, 0.0026687283534556627, 0.002718802774325013, 0.019232530146837234, 0.21096013486385345], [0.028067540377378464, 0.011494298465549946, 0.0043521448969841, 0.009489002637565136, 0.017606325447559357, 0.4075601398944855, 0.008631573989987373, 0.005954613443464041, 0.0021810398902744055, 0.0029105795547366142, 0.002653521718457341, 0.004141334444284439, 0.004292548168450594, 0.004980138503015041, 0.007492429576814175, 0.02089586853981018, 0.45729687809944153], [0.0277186781167984, 0.0025289885234087706, 0.0005278593744151294, 0.0018871623324230313, 0.007594327908009291, 0.33387428522109985, 0.06495466083288193, 0.09816750884056091, 0.016729310154914856, 0.006049274932593107, 0.0017561205895617604, 0.010415248572826385, 0.005910058971494436, 0.0041720932349562645, 0.010194764472544193, 0.020102692767977715, 0.38741692900657654], [0.032179854810237885, 0.002381535479798913, 0.0004819239256903529, 0.002759405178949237, 0.00864389631897211, 0.22563692927360535, 0.04546903073787689, 0.04857683926820755, 0.07615591585636139, 0.027995778247714043, 0.007705626543611288, 0.04226510599255562, 0.02792964316904545, 0.014223371632397175, 0.07952652126550674, 0.10119368880987167, 0.2568749189376831], [0.0056479149498045444, 0.0005956473760306835, 4.8960315325530246e-05, 0.0007484665839001536, 0.0011954954825341702, 0.06453351676464081, 0.010428241454064846, 0.01001778244972229, 0.017559068277478218, 0.3961511254310608, 0.2155872881412506, 0.036064330488443375, 0.03145057335495949, 0.02819826267659664, 0.07630018144845963, 0.030766380950808525, 0.07470682263374329], [0.013078087940812111, 0.0008139823330566287, 9.254938049707562e-05, 0.0006881022127345204, 0.0035721587482839823, 0.34972304105758667, 0.010844727046787739, 0.015531066805124283, 0.0068396348506212234, 0.032920293509960175, 0.051260046660900116, 0.055830951780080795, 0.01204033475369215, 0.010953632183372974, 0.020814966410398483, 0.04592049494385719, 0.36907604336738586], [0.020949190482497215, 0.0020478868391364813, 0.00011266394722042605, 0.0010225161677226424, 0.0040842508897185326, 0.19513314962387085, 0.009259209036827087, 0.017741618677973747, 0.008797011338174343, 0.007122138515114784, 0.008414631709456444, 0.07579917460680008, 0.058115389198064804, 0.09523535519838333, 0.20746979117393494, 0.06065582111477852, 0.22804023325443268], [0.003144080052152276, 0.0014022300019860268, 6.137368472991511e-05, 0.0010502203367650509, 0.002057618461549282, 0.05516030639410019, 0.00555536849424243, 0.005047655198723078, 0.005147554911673069, 0.02332204394042492, 0.03512948751449585, 0.02181176282465458, 0.18294957280158997, 0.18022076785564423, 0.3549002707004547, 0.05932432785630226, 0.06371527910232544], [0.0030758450739085674, 0.0021165369544178247, 0.00016771584341768175, 0.0012786519946530461, 0.001364158815704286, 0.05550551787018776, 0.0021012190263718367, 0.005405099596828222, 0.009347639046609402, 0.009358868934214115, 0.0059926812537014484, 0.014753168448805809, 0.03747773543000221, 0.11804359406232834, 0.6249566674232483, 0.04243512824177742, 0.06661984324455261], [0.014904682524502277, 0.006639725994318724, 0.0013054056325927377, 0.0016129795694723725, 0.0034466523211449385, 0.17946164309978485, 0.00593178765848279, 0.01601613312959671, 0.00911157950758934, 0.016725828871130943, 0.008418903686106205, 0.0142781687900424, 0.04285509139299393, 0.04912608489394188, 0.29603350162506104, 0.11588522046804428, 0.21824656426906586], [0.03654736652970314, 0.0059004356153309345, 0.0021092717070132494, 0.0023582903668284416, 0.008891073055565357, 0.24386587738990784, 0.019767815247178078, 0.02065027505159378, 0.009092922322452068, 0.011706164106726646, 0.007394001819193363, 0.011802359484136105, 0.017120080068707466, 0.012643110007047653, 0.03407656401395798, 0.25102508068084717, 0.3050493001937866], [0.030241988599300385, 0.01045253872871399, 0.0009175126324407756, 0.0033576504793018103, 0.0034207734279334545, 0.36941537261009216, 0.019736142829060555, 0.009946406818926334, 0.0007368034566752613, 0.0012381967389956117, 0.0001609472674317658, 0.002123933518305421, 0.0022451982367783785, 0.0034882239997386932, 0.005784119479358196, 0.03990751504898071, 0.4968266487121582], [0.03065553866326809, 0.012756031937897205, 0.005240755621343851, 0.01038082130253315, 0.018673298880457878, 0.39993372559547424, 0.010076044127345085, 0.006655395496636629, 0.0023596978280693293, 0.0032124267891049385, 0.0028304087463766336, 0.004572637844830751, 0.004537693690508604, 0.005290676839649677, 0.008341234177350998, 0.024691378697752953, 0.4497922360897064]], [[0.016530795022845268, 0.04525337368249893, 0.0013726870529353619, 0.005484055262058973, 0.013397755101323128, 0.21023164689540863, 0.017902879044413567, 0.05713210254907608, 0.003272861707955599, 0.021658875048160553, 0.00813365075737238, 0.0334472581744194, 0.004478103946894407, 0.02901173010468483, 0.12531384825706482, 0.18595239520072937, 0.22142599523067474], [0.05378527566790581, 0.03567526116967201, 0.006902674678713083, 0.016162531450390816, 0.05893326178193092, 0.335713654756546, 0.007946164347231388, 0.03174161538481712, 0.0037069516256451607, 0.0068224528804421425, 0.0023767740931361914, 0.001986124785616994, 0.0007584089180454612, 0.004197533242404461, 0.007541579194366932, 0.04978729039430618, 0.37596243619918823], [0.04991404339671135, 0.012921680696308613, 0.05550321564078331, 0.023600047454237938, 0.04813205450773239, 0.3203135132789612, 0.009290304034948349, 0.015331842936575413, 0.007368067745119333, 0.006227897945791483, 0.005440182983875275, 0.010352836921811104, 0.0019635658245533705, 0.005843971855938435, 0.007883131504058838, 0.04908193647861481, 0.3708317279815674], [0.045234933495521545, 0.013627352192997932, 0.015078200027346611, 0.08233864605426788, 0.06528086960315704, 0.3196227550506592, 0.007423072122037411, 0.008661394938826561, 0.0017962352139875293, 0.004077059682458639, 0.002463584765791893, 0.003420162945985794, 0.004250515252351761, 0.004912383854389191, 0.008809680119156837, 0.03841989114880562, 0.37458330392837524], [0.07392562925815582, 0.03237948566675186, 0.002618682337924838, 0.005064924247562885, 0.028264250606298447, 0.393044650554657, 0.004930008668452501, 0.005808784160763025, 0.00199861079454422, 0.0028564883396029472, 0.0009032972157001495, 0.0023720155004411936, 0.0008529276819899678, 0.0022524134255945683, 0.006507226265966892, 0.030769286677241325, 0.4054514169692993], [0.03493747115135193, 0.012504897080361843, 0.010790678672492504, 0.023411355912685394, 0.019496263936161995, 0.34044286608695984, 0.016105396673083305, 0.007114864885807037, 0.006417371798306704, 0.021246522665023804, 0.005827418528497219, 0.006332996767014265, 0.007281651720404625, 0.006388430949300528, 0.0064338683150708675, 0.011280903592705727, 0.4639870822429657], [0.14293541014194489, 0.012488600797951221, 0.004704891238361597, 0.005391417536884546, 0.09117604047060013, 0.3065621554851532, 0.011515829712152481, 0.009135106578469276, 0.0012192066060379148, 0.003570097964257002, 0.0022523703519254923, 0.0023256586864590645, 0.0012819711118936539, 0.0036499344278126955, 0.007052213419228792, 0.06553768366575241, 0.329201340675354], [0.2197677344083786, 0.016743171960115433, 0.005847967695444822, 0.008037097752094269, 0.10674815624952316, 0.26341649889945984, 0.013474574312567711, 0.034171707928180695, 0.002391402143985033, 0.005054729524999857, 0.002618408063426614, 0.0011634217808023095, 0.0001397345622535795, 0.000639593112282455, 0.004492250736802816, 0.05315930023789406, 0.26213428378105164], [0.1964108943939209, 0.008627096191048622, 0.02391599491238594, 0.014605099335312843, 0.06397505849599838, 0.22141946852207184, 0.02608654275536537, 0.060828834772109985, 0.025664759799838066, 0.013194872066378593, 0.015947971493005753, 0.010941660962998867, 0.0008920817635953426, 0.004812635015696287, 0.009700853377580643, 0.05321202427148819, 0.24976415932178497], [0.18563203513622284, 0.008178602904081345, 0.01211610808968544, 0.009592805057764053, 0.0599830187857151, 0.2745717465877533, 0.024994760751724243, 0.03225596621632576, 0.00909616518765688, 0.009270552545785904, 0.020304039120674133, 0.010258245281875134, 0.001711973687633872, 0.003330373903736472, 0.004684444051235914, 0.03436568006873131, 0.2996535003185272], [0.18822120130062103, 0.005216168239712715, 0.05089213699102402, 0.01750890165567398, 0.05881175026297569, 0.20796272158622742, 0.03936447948217392, 0.03829551115632057, 0.014085061848163605, 0.011876643635332584, 0.07312940061092377, 0.018423382192850113, 0.007119789253920317, 0.0037966326344758272, 0.007225173059850931, 0.021391484886407852, 0.2366795539855957], [0.06383036077022552, 0.010537585243582726, 0.09341300278902054, 0.023191262036561966, 0.041771743446588516, 0.1792515218257904, 0.029088962823152542, 0.03258972987532616, 0.04892268031835556, 0.02244482934474945, 0.09484164416790009, 0.08432850241661072, 0.019050145521759987, 0.010981680825352669, 0.011534083634614944, 0.03751906752586365, 0.19670310616493225], [0.05016164109110832, 0.007896756753325462, 0.0464194193482399, 0.014678075909614563, 0.037474069744348526, 0.22611279785633087, 0.017491081729531288, 0.041372425854206085, 0.026383474469184875, 0.02066541090607643, 0.08206301927566528, 0.045972924679517746, 0.04841352626681328, 0.02036386728286743, 0.01705980859696865, 0.03760950267314911, 0.25986212491989136], [0.09877991676330566, 0.01578521728515625, 0.018379943445324898, 0.010750392451882362, 0.05832136422395706, 0.25479403138160706, 0.014249105006456375, 0.016966072842478752, 0.014571496285498142, 0.00809515081346035, 0.017694732174277306, 0.01523570716381073, 0.04679178446531296, 0.062085654586553574, 0.022476473823189735, 0.046659402549266815, 0.27836352586746216], [0.1899062544107437, 0.017922697588801384, 0.0041588423773646355, 0.011138231493532658, 0.07280229032039642, 0.23696281015872955, 0.013636091724038124, 0.04523855820298195, 0.009722007438540459, 0.014802285470068455, 0.007284044753760099, 0.0056777275167405605, 0.006478574592620134, 0.013235372491180897, 0.055625807493925095, 0.050993338227272034, 0.24441510438919067], [0.24519504606723785, 0.017328225076198578, 0.002085472922772169, 0.005114118568599224, 0.047369301319122314, 0.2899099290370941, 0.005869138054549694, 0.011198497377336025, 0.0031855469569563866, 0.006350397597998381, 0.0029422943480312824, 0.0026757516898214817, 0.0016013850690796971, 0.004753932356834412, 0.009970623068511486, 0.044480543583631516, 0.29996979236602783], [0.033528268337249756, 0.015174895524978638, 0.011802869848906994, 0.02203042432665825, 0.019549472257494926, 0.3368554711341858, 0.01688748225569725, 0.009179949760437012, 0.007275144569575787, 0.022528214380145073, 0.007012196350842714, 0.0075939716771245, 0.007712275721132755, 0.007965046912431717, 0.008383420296013355, 0.013813565485179424, 0.45270732045173645]], [[0.03902856260538101, 0.012353340163826942, 0.008067750371992588, 0.02612488716840744, 0.05052872747182846, 0.05739995837211609, 0.080766960978508, 0.07154131680727005, 0.007297065574675798, 0.018706394359469414, 0.011997305788099766, 0.02413061261177063, 0.026983745396137238, 0.04532281681895256, 0.09009118378162384, 0.36414217948913574, 0.06551718711853027], [0.06616959720849991, 0.011113354004919529, 0.017620045691728592, 0.03230896592140198, 0.04179016873240471, 0.3562430739402771, 0.009351878426969051, 0.0043995557352900505, 0.0018178793834522367, 0.004674478899687529, 0.0028478943277150393, 0.020648203790187836, 0.03174329549074173, 0.040056902915239334, 0.023866228759288788, 0.024521272629499435, 0.3108272850513458], [0.16417379677295685, 0.033448800444602966, 0.024737052619457245, 0.014613399282097816, 0.01273435726761818, 0.26598915457725525, 0.024227891117334366, 0.007974962703883648, 0.008267305791378021, 0.016416151076555252, 0.014251571148633957, 0.018765464425086975, 0.05130377784371376, 0.040966179221868515, 0.019696595147252083, 0.011854253709316254, 0.2705792784690857], [0.10497729480266571, 0.00920892134308815, 0.03263178467750549, 0.014262617565691471, 0.008450180292129517, 0.2284911870956421, 0.04805002734065056, 0.020361924543976784, 0.019724644720554352, 0.02225928008556366, 0.01313843671232462, 0.08432880789041519, 0.08355266600847244, 0.041333165019750595, 0.035540416836738586, 0.013702641241252422, 0.2199859321117401], [0.08806438744068146, 0.029508858919143677, 0.023211168125271797, 0.017013639211654663, 0.03885161131620407, 0.37730124592781067, 0.021007193252444267, 0.006201107986271381, 0.005444920156151056, 0.007285746745765209, 0.006350636947900057, 0.014769073575735092, 0.018229903653264046, 0.01750459522008896, 0.011186736635863781, 0.017433054745197296, 0.3006361126899719], [0.007870666682720184, 0.00337035721167922, 0.006918436381965876, 0.009250747039914131, 0.006689910311251879, 0.5438838005065918, 0.0015999746974557638, 0.0012842532014474273, 0.0029297559522092342, 0.002262171357870102, 0.0016952507430687547, 0.0032759904861450195, 0.004860737361013889, 0.005724475719034672, 0.007010126020759344, 0.0032002045772969723, 0.3881731331348419], [0.022989721968770027, 0.02251145988702774, 0.04696929454803467, 0.04938763007521629, 0.02891700342297554, 0.3742566704750061, 0.01058944407850504, 0.004956976976245642, 0.005685391835868359, 0.0037522229831665754, 0.0030445398297160864, 0.011844601482152939, 0.020133478567004204, 0.012538694776594639, 0.0058857896365225315, 0.013183272443711758, 0.36335378885269165], [0.044307563453912735, 0.025844650343060493, 0.023982642218470573, 0.03975486382842064, 0.03403787314891815, 0.39036551117897034, 0.012796720489859581, 0.008931144140660763, 0.004898487124592066, 0.008630839176476002, 0.004540032707154751, 0.010292300954461098, 0.013687187805771828, 0.012399931438267231, 0.009507769718766212, 0.020876241847872734, 0.3351462185382843], [0.05917210131883621, 0.015959203243255615, 0.029118230566382408, 0.012889309786260128, 0.008289167657494545, 0.30261194705963135, 0.03207869082689285, 0.013017046265304089, 0.016281234100461006, 0.01904977299273014, 0.027780158445239067, 0.048840928822755814, 0.03102218732237816, 0.011077599599957466, 0.00857636984437704, 0.018472889438271523, 0.3457631468772888], [0.007121877744793892, 0.020470967516303062, 0.010187339968979359, 0.014775511808693409, 0.00555788166821003, 0.47663402557373047, 0.0028066199738532305, 0.003104546805843711, 0.0014576357789337635, 0.0016860530013218522, 0.0019803389441221952, 0.0030856735538691282, 0.006383821368217468, 0.00562590966001153, 0.0023579741828143597, 0.004659012891352177, 0.4321048855781555], [0.014749811962246895, 0.011793386191129684, 0.012252098880708218, 0.011705758050084114, 0.009344732388854027, 0.4297594130039215, 0.006448186002671719, 0.004409717861562967, 0.004773399326950312, 0.00332088815048337, 0.006635040510445833, 0.02030804567039013, 0.016459261998534203, 0.01213015429675579, 0.009253076277673244, 0.012212645262479782, 0.41444435715675354], [0.022978033870458603, 0.02141779102385044, 0.03469834476709366, 0.011887623928487301, 0.008938622660934925, 0.3442479074001312, 0.01133657619357109, 0.011560989543795586, 0.007042416371405125, 0.005530775990337133, 0.02168409153819084, 0.03190372884273529, 0.06680448353290558, 0.031876325607299805, 0.006835408974438906, 0.019071275368332863, 0.3421856462955475], [0.019427338615059853, 0.011374717578291893, 0.019056400284171104, 0.009690647013485432, 0.0123243173584342, 0.4435129761695862, 0.004146405030041933, 0.004731675144284964, 0.003665381809696555, 0.002778717316687107, 0.009093315340578556, 0.01077476516366005, 0.02152094803750515, 0.007487479597330093, 0.0034599192440509796, 0.007491882890462875, 0.409463107585907], [0.013602357357740402, 0.017699243500828743, 0.01204387191683054, 0.01114657148718834, 0.011708714999258518, 0.4341638684272766, 0.005104632582515478, 0.011175128631293774, 0.0044754305854439735, 0.0051321531645953655, 0.00711806258186698, 0.01819673739373684, 0.029036883264780045, 0.022512946277856827, 0.01054355874657631, 0.025635305792093277, 0.3607043921947479], [0.015578137710690498, 0.01600710116326809, 0.015111906453967094, 0.01138861384242773, 0.012591436505317688, 0.43690112233161926, 0.005854576360434294, 0.009020195342600346, 0.004040938802063465, 0.005035726819187403, 0.008665109984576702, 0.01704920269548893, 0.027676299214363098, 0.01790444739162922, 0.012484932318329811, 0.020981555804610252, 0.3637087643146515], [0.01479338388890028, 0.024913106113672256, 0.03244296461343765, 0.040564876049757004, 0.17036879062652588, 0.35793206095695496, 0.004145581740885973, 0.006667504087090492, 0.0029980444815009832, 0.0029503453988581896, 0.0026780427433550358, 0.009157346561551094, 0.013552159070968628, 0.01802494376897812, 0.012389203533530235, 0.06346625834703445, 0.22295549511909485], [0.008757331408560276, 0.0031762735452502966, 0.007517780177295208, 0.008637906983494759, 0.006375944707542658, 0.5315690040588379, 0.0020179960411041975, 0.0018077748827636242, 0.003781295148655772, 0.002555238315835595, 0.0019373777322471142, 0.004720861557871103, 0.006681512109935284, 0.007692368235439062, 0.008125752210617065, 0.0041457777842879295, 0.39049988985061646]]], [[[0.11180595308542252, 0.014114515855908394, 0.007435491308569908, 0.007666383869946003, 0.03662494942545891, 0.3130195736885071, 0.025818752124905586, 0.030548464506864548, 0.007742311805486679, 0.010976684279739857, 0.008631303906440735, 0.009453895501792431, 0.0035582820419222116, 0.006694144569337368, 0.005631633568555117, 0.04899495095014572, 0.3512828052043915], [0.022282814607024193, 0.06506384164094925, 0.004720656201243401, 0.0010520583018660545, 0.011828170157968998, 0.29508087038993835, 0.15206918120384216, 0.07235323637723923, 0.0020479378290474415, 0.0028862887993454933, 0.0008758766343817115, 0.0022669804748147726, 0.0005004638223908842, 0.0015935300616547465, 0.0009286312852054834, 0.027352869510650635, 0.33709657192230225], [0.0031180446967482567, 0.0036734272725880146, 0.17144988477230072, 0.005478122271597385, 0.009726217947900295, 0.3548985421657562, 0.00209580035880208, 0.00624857610091567, 0.008242513984441757, 0.002931087976321578, 0.0004856555606238544, 0.0021543868351727724, 0.0005894016358070076, 0.0007528805290348828, 0.0005438930820673704, 0.005428598262369633, 0.42218297719955444], [0.005526375025510788, 0.0013655131915584207, 0.002467122860252857, 0.032551828771829605, 0.0071172527968883514, 0.4124743938446045, 0.004985381383448839, 0.0037830169312655926, 0.003504890250042081, 0.007996665313839912, 0.0004713141534011811, 0.0014050432946532965, 0.007379934191703796, 0.008659552782773972, 0.0043398733250796795, 0.009583578445017338, 0.48638826608657837], [0.021775472909212112, 0.0014683551853522658, 0.002155774040147662, 0.000869346724357456, 0.2011875957250595, 0.2973606586456299, 0.027540653944015503, 0.013519389554858208, 0.0011519207619130611, 0.0018503008177503943, 0.0005131415673531592, 0.0008809378487057984, 0.0003910265804734081, 0.0005615001427941024, 0.0022034349385648966, 0.08033842593431473, 0.3462320566177368], [0.00661865109577775, 0.0020998925901949406, 0.001485015032812953, 0.0020404462702572346, 0.0021522766910493374, 0.43928995728492737, 0.00262889894656837, 0.0022042233031243086, 0.0018612925196066499, 0.003340579569339752, 0.0018137049628421664, 0.0015509905060753226, 0.0017115972004830837, 0.0034425442572683096, 0.002186506986618042, 0.008432801812887192, 0.5171406269073486], [0.03030734695494175, 0.12109067291021347, 0.004326965659856796, 0.00707452604547143, 0.07038562744855881, 0.29723504185676575, 0.08755824714899063, 0.013912592083215714, 0.002026761882007122, 0.003186940448358655, 0.0008126107859425247, 0.0013998392969369888, 0.0008355017052963376, 0.0022808476351201534, 0.0007757145212963223, 0.009877239353954792, 0.34691357612609863], [0.015913914889097214, 0.022756794467568398, 0.02657422237098217, 0.005244249943643808, 0.014133714139461517, 0.3693476915359497, 0.01678694598376751, 0.06290639936923981, 0.006432035472244024, 0.00496216444298625, 0.0058231111615896225, 0.015146843157708645, 0.0021473297383636236, 0.0035841770004481077, 0.001210808171890676, 0.006422798149287701, 0.4206068515777588], [0.005075306631624699, 0.0019490764243528247, 0.019817572087049484, 0.011584760621190071, 0.004741634242236614, 0.39009255170822144, 0.0026030028238892555, 0.002184719778597355, 0.09270548075437546, 0.004638398066163063, 0.0022218080703169107, 0.00347732612863183, 0.001020205789245665, 0.001941109192557633, 0.00028394549735821784, 0.004181533120572567, 0.4514816105365753], [0.009264230728149414, 0.0013589092995971441, 0.0034949721302837133, 0.011877336539328098, 0.003031462896615267, 0.3652120530605316, 0.0027520027942955494, 0.0009958019945770502, 0.005440813023597002, 0.14737211167812347, 0.0014187681954354048, 0.0005085442680865526, 0.002374039264395833, 0.001379854278638959, 0.0006458245334215462, 0.003603604156523943, 0.4392696022987366], [0.003907973412424326, 0.0011712901759892702, 0.001957172993570566, 0.0011971468338742852, 0.002731344662606716, 0.4489440619945526, 0.0018086190102621913, 0.0008382651722058654, 0.0007397707086056471, 0.0029748971574008465, 0.013136060908436775, 0.0008602142916060984, 0.00010305460455128923, 0.0011335330782458186, 8.824080578051507e-05, 0.0019361143931746483, 0.5164722800254822], [0.009244817309081554, 0.0033722277730703354, 0.005205124616622925, 0.005414610728621483, 0.005510094575583935, 0.44078218936920166, 0.002659692894667387, 0.007242392282932997, 0.0028276625089347363, 0.0011335313320159912, 0.0014627899508923292, 0.017674289643764496, 0.0019772362429648638, 0.0029258073773235083, 0.00046131055569276214, 0.003916727378964424, 0.4881894886493683], [0.0026089423336088657, 0.00052115588914603, 0.001088924938812852, 0.028514480218291283, 0.003426954383030534, 0.4395987093448639, 0.0005119013949297369, 0.000508221099153161, 0.0003029491344932467, 0.002373137976974249, 7.103173993527889e-05, 0.0009696119232103229, 0.014973204582929611, 0.004770688246935606, 0.0004473443841561675, 0.0007482640212401748, 0.4985645115375519], [0.002708417596295476, 0.0004315636761020869, 0.0009253512253053486, 0.008225523866713047, 0.00663323188200593, 0.4229734241962433, 0.0005780315841548145, 0.0008251707185991108, 0.0005399129004217684, 0.0008124721352942288, 0.0009252505842596292, 0.0007779118022881448, 0.002172500593587756, 0.042582396417856216, 0.0016231562476605177, 0.0027851436752825975, 0.5044805407524109], [0.00271904980763793, 0.00026921997778117657, 0.0003937841975130141, 0.0028390937950462103, 0.002770809456706047, 0.452278733253479, 0.0003119752509519458, 0.0004668534093070775, 4.996652569388971e-05, 0.0003973038401454687, 8.370723662665114e-05, 0.0001341337338089943, 0.00026471592718735337, 0.0023942922707647085, 0.0113610178232193, 0.006258991081267595, 0.5170063972473145], [0.03196282312273979, 0.012690015137195587, 0.010341156274080276, 0.015285861678421497, 0.1496296226978302, 0.29912257194519043, 0.0039028918836265802, 0.002361906226724386, 0.0013953332090750337, 0.0011964148143306375, 0.0011388699058443308, 0.0013772659003734589, 0.0013341729063540697, 0.0032468268182128668, 0.006625726819038391, 0.1224851906299591, 0.3359033763408661], [0.006412169896066189, 0.00209377845749259, 0.0015686372062191367, 0.002169688930734992, 0.002123422920703888, 0.4397622048854828, 0.0024837928358465433, 0.002105396008118987, 0.001807866501621902, 0.0034004668705165386, 0.001807820750400424, 0.0014836573973298073, 0.0016583192627876997, 0.0033977795392274857, 0.002083772560581565, 0.00793131161481142, 0.5177098512649536]], [[0.02888069674372673, 0.006813147570937872, 0.006633823737502098, 0.0030666152015328407, 0.004503718111664057, 0.3807011544704437, 0.05708836764097214, 0.017359735444188118, 0.004172376822680235, 0.007534163072705269, 0.0036666071973741055, 0.007498201448470354, 0.0033081420697271824, 0.0039236037991940975, 0.004146044608205557, 0.019163554534316063, 0.4415399730205536], [0.04320494458079338, 0.017977949231863022, 0.2141379565000534, 0.04966772720217705, 0.034328024834394455, 0.21746180951595306, 0.019876930862665176, 0.09080970287322998, 0.01771537959575653, 0.011474715545773506, 0.001056623994372785, 0.0018888850463554263, 0.00047143088886514306, 0.00636510644108057, 0.0020494551863521338, 0.023995855823159218, 0.24751748144626617], [0.010287154465913773, 0.010430460795760155, 0.026429615914821625, 0.2867426574230194, 0.03276520222425461, 0.2487591803073883, 0.018400944769382477, 0.01644856482744217, 0.0066438294015824795, 0.006603782065212727, 0.0010014788713306189, 0.003585893427953124, 0.012796873226761818, 0.013730956241488457, 0.00232590246014297, 0.013030779547989368, 0.2900167405605316], [0.017094768583774567, 0.012916249223053455, 0.007668192032724619, 0.017498306930065155, 0.6459144353866577, 0.11216793209314346, 0.02171255275607109, 0.008605705574154854, 0.0004977266653440893, 0.0007241466664709151, 0.00022733421064913273, 0.002115791430696845, 0.0004194109933450818, 0.0021799039095640182, 0.0010883600916713476, 0.028123103082180023, 0.12104608863592148], [0.026769567281007767, 0.10190052539110184, 0.0034538579639047384, 0.011822251603007317, 0.060202211141586304, 0.24018648266792297, 0.2140364795923233, 0.021335041150450706, 0.0027197713498026133, 0.0032385385129600763, 0.0006479835719801486, 0.003742948407307267, 0.0027580605819821358, 0.00384367979131639, 0.001618997543118894, 0.029530102387070656, 0.2721935510635376], [0.007306995335966349, 0.008734559640288353, 0.0019560379441827536, 0.003837862517684698, 0.006916593294590712, 0.4270668923854828, 0.0026469645090401173, 0.006758954841643572, 0.002425707643851638, 0.007539505138993263, 0.005636175628751516, 0.00413156021386385, 0.0017672013491392136, 0.009236125275492668, 0.00823550671339035, 0.013500832952558994, 0.4823024272918701], [0.007122747600078583, 0.0121538657695055, 0.0029085332062095404, 0.003929913975298405, 0.01252403948456049, 0.3614879846572876, 0.07994432747364044, 0.07864811271429062, 0.0036751143634319305, 0.003429451724514365, 0.001498566591180861, 0.010100247338414192, 0.0030978734139353037, 0.005917040165513754, 0.0032510748133063316, 0.005708586890250444, 0.40460261702537537], [0.0053981030359864235, 0.0021416533272713423, 0.0015150425024330616, 0.006838170345872641, 0.0024923288729041815, 0.34940916299819946, 0.007969086989760399, 0.04526762291789055, 0.11527995765209198, 0.014095282182097435, 0.0032982274424284697, 0.007724008522927761, 0.005465623922646046, 0.018299629911780357, 0.0027598696760833263, 0.019347598776221275, 0.39269864559173584], [0.004207162652164698, 0.0005602808087132871, 0.0019487518584355712, 0.005172813776880503, 0.00313285063020885, 0.2914814054965973, 0.0022888316307216883, 0.011010611429810524, 0.027986178174614906, 0.22312696278095245, 0.02818065695464611, 0.01744934916496277, 0.014061863534152508, 0.017760490998625755, 0.005800037644803524, 0.012882103212177753, 0.332949697971344], [0.004871535114943981, 0.0013100497890263796, 0.0007934438181109726, 0.003643477102741599, 0.011728588491678238, 0.3772180676460266, 0.0021129704546183348, 0.026596590876579285, 0.004752781242132187, 0.01057213544845581, 0.030007677152752876, 0.04087681323289871, 0.002573252422735095, 0.019995838403701782, 0.004942520521581173, 0.036987122148275375, 0.4210170805454254], [0.003333248430863023, 0.0012297914363443851, 0.00012875015090685338, 0.0032408260740339756, 0.001858405419625342, 0.3863199055194855, 0.01075519435107708, 0.02468923293054104, 0.0019860428292304277, 0.001066866796463728, 0.002784374635666609, 0.06515929102897644, 0.016653969883918762, 0.05339508131146431, 0.004724705591797829, 0.007555960677564144, 0.41511839628219604], [0.000650112924631685, 0.0005974534433335066, 0.00020953973580617458, 0.005649523343890905, 0.0010439450852572918, 0.14126832783222198, 0.002309447852894664, 0.00437666242942214, 0.006155122071504593, 0.009396335110068321, 0.0023857704363763332, 0.021507389843463898, 0.5367333889007568, 0.09827873855829239, 0.004518631845712662, 0.0044776988215744495, 0.16044190526008606], [0.00040609066491015255, 0.0005625482881441712, 6.22150837443769e-05, 0.0014796867035329342, 0.0019539801869541407, 0.2788620591163635, 0.0004039390478283167, 0.00835023820400238, 0.00230730464681983, 0.0020504884887486696, 0.0009111526887863874, 0.009769999422132969, 0.026994027197360992, 0.3011077046394348, 0.029758363962173462, 0.015093149617314339, 0.31992706656455994], [0.0017944241408258677, 0.002109531546011567, 0.0008672014810144901, 0.004804972559213638, 0.005274573341012001, 0.3075590431690216, 0.001271363697014749, 0.013479523360729218, 0.0008402928942814469, 0.004907173104584217, 0.0005511994822882116, 0.003221015213057399, 0.005223499145358801, 0.026221681386232376, 0.2357819825410843, 0.026519251987338066, 0.35957327485084534], [0.006188142113387585, 0.007341613527387381, 0.00034680450335144997, 0.0022874183487147093, 0.013562150299549103, 0.3663836419582367, 0.004520074464380741, 0.007389015518128872, 0.0011091395281255245, 0.00434052525088191, 0.0014700102619826794, 0.0020047363359481096, 0.000807865581009537, 0.0053182924166321754, 0.005803832318633795, 0.1454356461763382, 0.4256911277770996], [0.015967940911650658, 0.09355229884386063, 0.0034329311456531286, 0.0049596079625189304, 0.017221206799149513, 0.276360422372818, 0.17237836122512817, 0.02245575189590454, 0.001975995022803545, 0.004558362066745758, 0.0018767924048006535, 0.005956239532679319, 0.0013516113394871354, 0.003152518766000867, 0.0018408886389806867, 0.040431246161460876, 0.3325277864933014], [0.007912474684417248, 0.008337456732988358, 0.0021109390072524548, 0.0040980614721775055, 0.007529671303927898, 0.4248385727405548, 0.0027160951867699623, 0.006892562378197908, 0.0024666259996593, 0.007464565336704254, 0.005903847981244326, 0.0044466727413237095, 0.0019952584989368916, 0.009980293922126293, 0.009132202714681625, 0.014391967095434666, 0.47978270053863525]], [[0.0086734713986516, 0.3211432099342346, 0.036097150295972824, 0.11602669209241867, 0.022773418575525284, 0.21508638560771942, 0.0011529516195878386, 0.011312822811305523, 0.0006414575036615133, 0.005086440127342939, 0.0016902170609682798, 0.00045798832434229553, 0.0012536990689113736, 0.011317835189402103, 0.00430721789598465, 0.006460228003561497, 0.23651887476444244], [0.011474967934191227, 0.1326718032360077, 0.07154788076877594, 0.08102317154407501, 0.045718975365161896, 0.18583591282367706, 0.011951430700719357, 0.1055818423628807, 0.020131638273596764, 0.017408622428774834, 0.010402049869298935, 0.00885416753590107, 0.0040083639323711395, 0.014663252048194408, 0.017785867676138878, 0.06457498669624329, 0.19636505842208862], [0.007472825702279806, 0.05288553982973099, 0.0685892403125763, 0.19114816188812256, 0.04113918915390968, 0.25592440366744995, 0.00706110754981637, 0.015070868656039238, 0.004006056115031242, 0.006466642953455448, 0.004736205097287893, 0.006018877029418945, 0.007693017367273569, 0.0066850814037024975, 0.012173091061413288, 0.03589493781328201, 0.2770347595214844], [0.014273910783231258, 0.046600084751844406, 0.02219029702246189, 0.15235678851604462, 0.058186840265989304, 0.2740708291530609, 0.01379422377794981, 0.013106943108141422, 0.004827842116355896, 0.010142462328076363, 0.005817878060042858, 0.003160858526825905, 0.007719938177615404, 0.006470203399658203, 0.018716175109148026, 0.04993981868028641, 0.29862475395202637], [0.013429490849375725, 0.04696616157889366, 0.0105905095115304, 0.024773580953478813, 0.009217662736773491, 0.2786625921726227, 0.02744811587035656, 0.04816269874572754, 0.015462352894246578, 0.028294293209910393, 0.005712765268981457, 0.017082426697015762, 0.01108250766992569, 0.016352083534002304, 0.05977243930101395, 0.08940882235765457, 0.29758158326148987], [0.00604435196146369, 0.003044951008632779, 0.0011001935927197337, 0.0015904884785413742, 0.0019814991392195225, 0.438127726316452, 0.0017973713111132383, 0.0021814070641994476, 0.00043549059773795307, 0.002586532849818468, 0.001364290714263916, 0.0007053578156046569, 0.0009025506442412734, 0.0022538313642144203, 0.0016402548644691706, 0.003618466667830944, 0.5306252241134644], [0.0438617467880249, 0.058503203094005585, 0.05124622583389282, 0.14907212555408478, 0.10768098384141922, 0.20533056557178497, 0.024444540962576866, 0.026710694655776024, 0.01215149275958538, 0.010845993645489216, 0.008855524472892284, 0.004823980387300253, 0.006925774272531271, 0.006357645150274038, 0.021393967792391777, 0.04182697832584381, 0.21996845304965973], [0.03607060760259628, 0.10361529886722565, 0.04417310282588005, 0.0570874959230423, 0.07006669789552689, 0.26126012206077576, 0.010840781964361668, 0.02683364972472191, 0.011953243985772133, 0.010508003644645214, 0.00753272557631135, 0.006700460333377123, 0.0023419661447405815, 0.01676715351641178, 0.011363217607140541, 0.04560223966836929, 0.27728328108787537], [0.014343210496008396, 0.019738703966140747, 0.016901696100831032, 0.03375721722841263, 0.02785935066640377, 0.3467388153076172, 0.015810344368219376, 0.018841179087758064, 0.02960674837231636, 0.02227845788002014, 0.01454633753746748, 0.016227582469582558, 0.006846343167126179, 0.009831271134316921, 0.011482994072139263, 0.030201654881238937, 0.3649880588054657], [0.03233784809708595, 0.04568100348114967, 0.016514252871274948, 0.03673847019672394, 0.038496438413858414, 0.298910915851593, 0.014194939285516739, 0.02277497574687004, 0.037866078317165375, 0.03870837390422821, 0.030340617522597313, 0.008614069782197475, 0.0035558328963816166, 0.0067810178734362125, 0.008586638607084751, 0.033296845853328705, 0.32660171389579773], [0.03743409737944603, 0.010696712881326675, 0.01393597386777401, 0.017118465155363083, 0.04603249579668045, 0.2942800223827362, 0.029524749144911766, 0.021409034729003906, 0.056371454149484634, 0.01758747547864914, 0.0324290469288826, 0.02757127769291401, 0.004598565399646759, 0.008408344350755215, 0.00834235455840826, 0.04774174094200134, 0.32651814818382263], [0.02707349881529808, 0.051069226115942, 0.03154194727540016, 0.10169072449207306, 0.048473384231328964, 0.23857426643371582, 0.0352209210395813, 0.029054906219244003, 0.0265201423317194, 0.016852062195539474, 0.017340699210762978, 0.02088858187198639, 0.033017098903656006, 0.018278414383530617, 0.008945511654019356, 0.03451994061470032, 0.2609385848045349], [0.03649405017495155, 0.03081170655786991, 0.015607270412147045, 0.09245756268501282, 0.04840387776494026, 0.23199370503425598, 0.05532379075884819, 0.04177214950323105, 0.01760208047926426, 0.03205810859799385, 0.020769108086824417, 0.009772649966180325, 0.02872440777719021, 0.02034904435276985, 0.022839704528450966, 0.032953958958387375, 0.2620667815208435], [0.0470050685107708, 0.0420074537396431, 0.00900084525346756, 0.04793832078576088, 0.05806881561875343, 0.27718186378479004, 0.02735929936170578, 0.02531707100570202, 0.008352335542440414, 0.024988923221826553, 0.004637314006686211, 0.005378750152885914, 0.008865738287568092, 0.03894945606589317, 0.02125031314790249, 0.040746551007032394, 0.31295186281204224], [0.05749176815152168, 0.030439186841249466, 0.004814877640455961, 0.06012553721666336, 0.0982264056801796, 0.26403090357780457, 0.052436839789152145, 0.036216408014297485, 0.009297322481870651, 0.01865377649664879, 0.008924164809286594, 0.0035484505351632833, 0.007688657380640507, 0.007479620631784201, 0.023968825116753578, 0.02890617400407791, 0.287751168012619], [0.04842215031385422, 0.0964021384716034, 0.009469770826399326, 0.06671608239412308, 0.025058424100279808, 0.2797546982765198, 0.019504224881529808, 0.02813147008419037, 0.010851120576262474, 0.028470011427998543, 0.006389289163053036, 0.005292215850204229, 0.004874376114457846, 0.01622224599123001, 0.016081606969237328, 0.03360609710216522, 0.30475401878356934], [0.006344496738165617, 0.0036128966603428125, 0.0012166270753368735, 0.0018927804194390774, 0.002200046554207802, 0.43738657236099243, 0.0017756473971530795, 0.0023167929612100124, 0.0004464415251277387, 0.0025583943352103233, 0.001355257467366755, 0.0006948513328097761, 0.000953620474319905, 0.0025438950397074223, 0.0017562236171215773, 0.0037167200352996588, 0.529228687286377]], [[0.0313992016017437, 0.04127791151404381, 0.11663998663425446, 0.10670389235019684, 0.18905556201934814, 0.19304987788200378, 0.009801455773413181, 0.007997897453606129, 0.003054363653063774, 0.004866741131991148, 0.005991353653371334, 0.00651905220001936, 0.00781112490221858, 0.051630549132823944, 0.008435470052063465, 0.006256383378058672, 0.20950914919376373], [0.05217510834336281, 0.025213468819856644, 0.020534852519631386, 0.010813802480697632, 0.02926800400018692, 0.32655900716781616, 0.02176765166223049, 0.01061280444264412, 0.01986815594136715, 0.0045037963427603245, 0.014250352047383785, 0.00967476051300764, 0.013433311134576797, 0.004428638145327568, 0.003963235300034285, 0.04578510671854019, 0.3871478736400604], [0.027993788942694664, 0.09222877025604248, 0.010260279290378094, 0.05181973800063133, 0.10582014918327332, 0.27196645736694336, 0.011019674129784107, 0.0036890944465994835, 0.007104003801941872, 0.007154481485486031, 0.010510429739952087, 0.007065169978886843, 0.008945229463279247, 0.01783456839621067, 0.013570605777204037, 0.03279832378029823, 0.32021912932395935], [0.02668161876499653, 0.08617578446865082, 0.0052340151742100716, 0.035968441516160965, 0.040401507169008255, 0.33579021692276, 0.0051386477425694466, 0.0037119933404028416, 0.003483318956568837, 0.005584597587585449, 0.011007973924279213, 0.005502375774085522, 0.008403354324400425, 0.009284588508307934, 0.0052266232669353485, 0.013016392476856709, 0.39938852190971375], [0.01830088533461094, 0.14240187406539917, 0.003213405841961503, 0.01107490062713623, 0.046463966369628906, 0.3263216018676758, 0.0026095097418874502, 0.006168853025883436, 0.0029056724160909653, 0.007662887219339609, 0.008139828220009804, 0.009799184277653694, 0.007990308105945587, 0.012978690676391125, 0.008622447960078716, 0.017074257135391235, 0.3682717978954315], [0.010727501474320889, 0.035232704132795334, 0.004867132753133774, 0.017648659646511078, 0.005721047054976225, 0.35837048292160034, 0.012689158320426941, 0.022210130468010902, 0.005490076262503862, 0.013302708975970745, 0.005878916941583157, 0.005392426159232855, 0.008011293597519398, 0.024578899145126343, 0.01562938652932644, 0.01381748542189598, 0.44043195247650146], [0.02014986425638199, 0.019915923476219177, 0.014345211908221245, 0.06281701475381851, 0.025248225778341293, 0.32411062717437744, 0.014584352262318134, 0.008785400539636612, 0.005584883503615856, 0.011809720657765865, 0.012410839088261127, 0.020904121920466423, 0.008031172677874565, 0.02920062653720379, 0.025056252256035805, 0.01581612601876259, 0.38122954964637756], [0.022686082869768143, 0.016381772235035896, 0.01646987348794937, 0.004839299712330103, 0.01904052495956421, 0.3767840564250946, 0.020362060517072678, 0.012659892439842224, 0.010009435936808586, 0.005179197061806917, 0.013622645288705826, 0.013738900423049927, 0.010305787436664104, 0.00626319320872426, 0.003982707858085632, 0.015164121985435486, 0.4325106143951416], [0.06929890811443329, 0.022919846698641777, 0.01570560224354267, 0.008444448933005333, 0.017400726675987244, 0.2903725206851959, 0.02459803782403469, 0.03093581087887287, 0.01924537494778633, 0.017160577699542046, 0.02646675705909729, 0.018467381596565247, 0.01144773606210947, 0.018125485628843307, 0.017904017120599747, 0.05700260028243065, 0.3345041871070862], [0.02123473770916462, 0.004033256787806749, 0.006214731372892857, 0.0023992187343537807, 0.004412653390318155, 0.38885509967803955, 0.007453219499439001, 0.010165965184569359, 0.0066809081472456455, 0.003788016038015485, 0.009008192457258701, 0.006037343759089708, 0.0034012519754469395, 0.005844499915838242, 0.007337629329413176, 0.038462068885564804, 0.47467127442359924], [0.016854597255587578, 0.017239950597286224, 0.01103689894080162, 0.01657579094171524, 0.014691679738461971, 0.3265393078327179, 0.010331086814403534, 0.016298210248351097, 0.00945388525724411, 0.008801311254501343, 0.013007980771362782, 0.014794697985053062, 0.006244721356779337, 0.028346236795186996, 0.03279281035065651, 0.05614032968878746, 0.4008506238460541], [0.04074631631374359, 0.01820710115134716, 0.012074541300535202, 0.00845924112945795, 0.011844271793961525, 0.3138953149318695, 0.026385167613625526, 0.034274160861968994, 0.012345212511718273, 0.010037228465080261, 0.015125775709748268, 0.012232311069965363, 0.004820776171982288, 0.030132677406072617, 0.027920128777623177, 0.06383445858955383, 0.3576652705669403], [0.01699378341436386, 0.004481353797018528, 0.003063096199184656, 0.0033335527405142784, 0.002045591128990054, 0.3948352038860321, 0.021335851401090622, 0.015007155947387218, 0.005099436268210411, 0.008258916437625885, 0.016258830204606056, 0.007567724213004112, 0.0035253805108368397, 0.017697613686323166, 0.02099190279841423, 0.012675478123128414, 0.4468291103839874], [0.014548920094966888, 0.005981468595564365, 0.006194691173732281, 0.001965502044185996, 0.004265266470611095, 0.4058707356452942, 0.011853187344968319, 0.01683139055967331, 0.0030801002867519855, 0.003644591197371483, 0.005604077130556107, 0.0033310228027403355, 0.0018223634688183665, 0.006768015678972006, 0.005101718939840794, 0.015734784305095673, 0.48740220069885254], [0.013490749523043633, 0.011217270977795124, 0.005594153888523579, 0.004021509550511837, 0.006921778433024883, 0.40627309679985046, 0.005086957011371851, 0.01216357946395874, 0.0019284357549622655, 0.004040542058646679, 0.006562946364283562, 0.004587603732943535, 0.0032497120555490255, 0.004964916501194239, 0.00957038626074791, 0.01728196069598198, 0.4830443561077118], [0.038348838686943054, 0.02181072160601616, 0.021423177793622017, 0.010598553344607353, 0.02792845480144024, 0.3113843500614166, 0.014878511428833008, 0.02403482049703598, 0.017821092158555984, 0.024515166878700256, 0.016629472374916077, 0.0226212777197361, 0.010451466776430607, 0.013118522241711617, 0.020387372002005577, 0.05649089813232422, 0.34755727648735046], [0.010295357555150986, 0.0344940647482872, 0.005072253756225109, 0.018667040392756462, 0.006140485871583223, 0.3641045391559601, 0.010661786422133446, 0.01976783573627472, 0.004681326914578676, 0.011337812058627605, 0.005162470508366823, 0.004667222965508699, 0.006815075408667326, 0.022082939743995667, 0.013940861448645592, 0.012498714961111546, 0.44961017370224]], [[0.0084765600040555, 0.0136650325730443, 0.003129539079964161, 0.009236106649041176, 0.01803673803806305, 0.3809669613838196, 0.024006590247154236, 0.017646100372076035, 0.0036038074176758528, 0.011402721516788006, 0.0027213371358811855, 0.00675358297303319, 0.0032058842480182648, 0.004489272832870483, 0.003775646910071373, 0.04273507744073868, 0.4461490511894226], [0.02221781387925148, 0.03298290818929672, 0.07073959708213806, 0.1432960480451584, 0.35421496629714966, 0.0762585997581482, 0.04262581095099449, 0.05269180238246918, 0.005990283098071814, 0.0063379365019500256, 0.0018287792336195707, 0.004261973313987255, 0.002731015207245946, 0.016578206792473793, 0.023197637870907784, 0.05827132612466812, 0.08577534556388855], [0.006044495385140181, 0.010023897513747215, 0.01982470415532589, 0.573982298374176, 0.19547788798809052, 0.05086158961057663, 0.042874276638031006, 0.023523185402154922, 0.0008611503290012479, 0.0015976188005879521, 0.00025062134955078363, 0.001221778686158359, 0.0005006130668334663, 0.0008118888363242149, 0.0017745853401720524, 0.015170447528362274, 0.05519896745681763], [0.011867951601743698, 0.04736120253801346, 0.022582948207855225, 0.07200354337692261, 0.12608562409877777, 0.206405371427536, 0.17588751018047333, 0.032311562448740005, 0.010981421917676926, 0.005841027945280075, 0.0005240037571638823, 0.0027073135133832693, 0.0009908770443871617, 0.0033217077143490314, 0.0020401827059686184, 0.05765685811638832, 0.22143082320690155], [0.020772693678736687, 0.06952901184558868, 0.03502266854047775, 0.15443581342697144, 0.12635301053524017, 0.07788395136594772, 0.17270253598690033, 0.10703226923942566, 0.010636323131620884, 0.025180047377943993, 0.004461394157260656, 0.005318275652825832, 0.004265946801751852, 0.014854731038212776, 0.0200728140771389, 0.06513097882270813, 0.08634752035140991], [0.010813653469085693, 0.010152311064302921, 0.00493446784093976, 0.007813741452991962, 0.019213398918509483, 0.4100152552127838, 0.0124941011890769, 0.010719383135437965, 0.002094472525641322, 0.002944546053186059, 0.001437985454685986, 0.001653709216043353, 0.0016338967252522707, 0.005828061141073704, 0.0037045408971607685, 0.00985999871045351, 0.4846864640712738], [0.0022675935178995132, 0.004346749279648066, 0.0014838489005342126, 0.02671341970562935, 0.02586851827800274, 0.12386965751647949, 0.07958400994539261, 0.059355512261390686, 0.010283241979777813, 0.03925356641411781, 0.059216707944869995, 0.04042345657944679, 0.026588458567857742, 0.023808661848306656, 0.14071615040302277, 0.18886849284172058, 0.14735186100006104], [0.007621753495186567, 0.013936178758740425, 0.0028495206497609615, 0.012970623560249805, 0.03297167271375656, 0.05452708154916763, 0.022342432290315628, 0.03907136619091034, 0.022829271852970123, 0.040332015603780746, 0.10723382979631424, 0.03459570184350014, 0.042328692972660065, 0.06444992125034332, 0.22697007656097412, 0.2120094746351242, 0.06296035647392273], [0.008258538320660591, 0.009513442404568195, 0.0013837548904120922, 0.020482460036873817, 0.020799467340111732, 0.07244278490543365, 0.026351122185587883, 0.02951779030263424, 0.011386372148990631, 0.045485273003578186, 0.20649965107440948, 0.04765678942203522, 0.033945150673389435, 0.06528608500957489, 0.2370363175868988, 0.08129100501537323, 0.08266407996416092], [0.011403203941881657, 0.009442728012800217, 0.004050238523632288, 0.01971837505698204, 0.04138333350419998, 0.22233600914478302, 0.03677867352962494, 0.010907098650932312, 0.013226553797721863, 0.024955766275525093, 0.08668158203363419, 0.050402697175741196, 0.013664713129401207, 0.027064083144068718, 0.056385014206171036, 0.11688478291034698, 0.2547152042388916], [0.013163934461772442, 0.008632929995656013, 0.0022449821699410677, 0.008780431002378464, 0.037906464189291, 0.1300717443227768, 0.0518663264811039, 0.014067579060792923, 0.01847381331026554, 0.011339292861521244, 0.08512130379676819, 0.09118236601352692, 0.05081203579902649, 0.039204634726047516, 0.09361808001995087, 0.1903793215751648, 0.15313471853733063], [0.003206830471754074, 0.004947054665535688, 0.0007304749451577663, 0.012668413110077381, 0.01372039970010519, 0.28335168957710266, 0.012659874744713306, 0.006098825950175524, 0.003672066144645214, 0.0061385431326925755, 0.007981909438967705, 0.019467508420348167, 0.05230139568448067, 0.051685087382793427, 0.12302432954311371, 0.06937741488218307, 0.32896825671195984], [0.0026902162935584784, 0.003427451942116022, 0.0003848462656605989, 0.0018898913403972983, 0.006833553779870272, 0.30226022005081177, 0.005360948853194714, 0.0036722691729664803, 0.005856277421116829, 0.002499526599422097, 0.002128214342519641, 0.009656718000769615, 0.025224925950169563, 0.043434638530015945, 0.18082135915756226, 0.062242500483989716, 0.3416164517402649], [0.0024390171747654676, 0.0023670345544815063, 0.00047672641812823713, 0.0006018337444402277, 0.00833008624613285, 0.3601240813732147, 0.0047499630600214005, 0.0070414794608950615, 0.006664571352303028, 0.0031067233067005873, 0.0016215045470744371, 0.006038229446858168, 0.011885697953402996, 0.044134266674518585, 0.05467481166124344, 0.08289267122745514, 0.40285125374794006], [0.004684513434767723, 0.009556366130709648, 0.0023924168199300766, 0.004612388089299202, 0.019000345841050148, 0.3417900502681732, 0.02648727409541607, 0.012854506261646748, 0.022488849237561226, 0.00992591679096222, 0.003584554884582758, 0.0143734747543931, 0.010366528294980526, 0.025901423767209053, 0.043082237243652344, 0.07902584969997406, 0.3698732852935791], [0.016769709065556526, 0.034820955246686935, 0.012139073573052883, 0.055223383009433746, 0.0434112511575222, 0.31443527340888977, 0.03898666054010391, 0.051806628704071045, 0.004894434008747339, 0.0069004748947918415, 0.001938067376613617, 0.0028169266879558563, 0.005874291993677616, 0.01526802871376276, 0.016296569257974625, 0.02844971790909767, 0.3499686121940613], [0.011109295301139355, 0.009648129343986511, 0.00509110139682889, 0.008025046437978745, 0.018914319574832916, 0.4106828272342682, 0.01198936253786087, 0.010297306813299656, 0.0019511254504323006, 0.0028382481541484594, 0.0014757228782400489, 0.0016445994842797518, 0.001588482758961618, 0.005543144419789314, 0.0035359642934054136, 0.009689509868621826, 0.48597586154937744]], [[0.0056648110039532185, 0.0031542337965220213, 0.001900354167446494, 0.001957627944648266, 0.00890817679464817, 0.17956650257110596, 0.05865481495857239, 0.05688151344656944, 0.00546076288446784, 0.050778262317180634, 0.015060584992170334, 0.023895304650068283, 0.008135725744068623, 0.015345633961260319, 0.02020944654941559, 0.32522860169410706, 0.219197615981102], [0.026364870369434357, 0.03063518926501274, 0.04950929060578346, 0.10652383416891098, 0.14653673768043518, 0.26059654355049133, 0.0199687909334898, 0.016760891303420067, 0.0021923917811363935, 0.005321944132447243, 0.00204277690500021, 0.001529799192212522, 0.002069162903353572, 0.003352808067575097, 0.007837172597646713, 0.0347292423248291, 0.28402847051620483], [0.035487327724695206, 0.04578317329287529, 0.05921776592731476, 0.10029792785644531, 0.24047845602035522, 0.22446930408477783, 0.0195474810898304, 0.007935755886137486, 0.0004291362129151821, 0.0009936409769579768, 0.0004605217545758933, 0.00023250312369782478, 0.000270078337052837, 0.0004710695066023618, 0.0009317632066085935, 0.017438696697354317, 0.24555529654026031], [0.03525598347187042, 0.18895773589611053, 0.153364360332489, 0.1202487051486969, 0.17345425486564636, 0.0988776832818985, 0.04561226814985275, 0.023602092638611794, 0.002579602412879467, 0.006128574721515179, 0.0023837783373892307, 0.0016365526244044304, 0.00324652181006968, 0.003422956448048353, 0.004595943260937929, 0.025197133421897888, 0.11143592745065689], [0.028102336451411247, 0.10465482622385025, 0.15767215192317963, 0.46947845816612244, 0.13121069967746735, 0.030072733759880066, 0.006605671253055334, 0.009921666234731674, 0.0006845618481747806, 0.0038264873437583447, 0.0009368048049509525, 0.0009671807638369501, 0.0023343958891928196, 0.0017452873289585114, 0.005165531300008297, 0.014395089820027351, 0.03222605958580971], [0.0019998836796730757, 0.0025594979524612427, 0.0004887170507572591, 0.0012076845159754157, 0.002254773862659931, 0.4490341544151306, 0.0003494815609883517, 0.0013194632483646274, 0.000626302498858422, 0.0010358436265960336, 0.0004188435268588364, 0.00032026940607465804, 0.0004376490833237767, 0.0008334989543072879, 0.0007061678334139287, 0.0015728974249213934, 0.5348348617553711], [0.011475177481770515, 0.006217768881469965, 0.008313556201756, 0.010965567082166672, 0.035162508487701416, 0.2523273825645447, 0.056513287127017975, 0.03055962361395359, 0.008620102889835835, 0.03317703679203987, 0.045270103961229324, 0.042330916970968246, 0.019665425643324852, 0.010164005681872368, 0.026247449219226837, 0.11999903619289398, 0.28299105167388916], [0.027736317366361618, 0.01719975471496582, 0.007456844672560692, 0.01812739670276642, 0.08131217956542969, 0.18889641761779785, 0.1380745768547058, 0.04322170838713646, 0.011483771726489067, 0.03080499731004238, 0.022876104339957237, 0.01618851348757744, 0.021020779386162758, 0.019245421513915062, 0.04044901207089424, 0.10834275186061859, 0.20756344497203827], [0.013712865300476551, 0.008669622242450714, 0.001618259702809155, 0.00741998478770256, 0.04674401134252548, 0.25670677423477173, 0.0783344954252243, 0.08118084073066711, 0.01650746911764145, 0.031167877838015556, 0.01633285917341709, 0.022319959476590157, 0.024417806416749954, 0.01993313431739807, 0.0398106686770916, 0.051930565387010574, 0.28319284319877625], [0.009814893826842308, 0.010966897010803223, 0.002534427447244525, 0.009713809005916119, 0.03602777421474457, 0.14941661059856415, 0.11197812855243683, 0.1684257835149765, 0.020852945744991302, 0.02026013471186161, 0.030422832816839218, 0.03497011959552765, 0.02697782963514328, 0.03682218864560127, 0.08048219978809357, 0.080020971596241, 0.17031243443489075], [0.005714434199035168, 0.012627811171114445, 0.002831768710166216, 0.0022477295715361834, 0.05237514153122902, 0.1885734349489212, 0.22099050879478455, 0.12465927749872208, 0.01495759654790163, 0.007664416916668415, 0.020410776138305664, 0.018131185322999954, 0.03306153416633606, 0.01507523376494646, 0.0444776825606823, 0.031865742057561874, 0.2043357491493225], [0.028385642915964127, 0.02445875108242035, 0.0041345213539898396, 0.02118934504687786, 0.0361180454492569, 0.1463320553302765, 0.19192492961883545, 0.08355940133333206, 0.036079540848731995, 0.04590807482600212, 0.06147495284676552, 0.023857025429606438, 0.032853059470653534, 0.026309240609407425, 0.03692140057682991, 0.04016640782356262, 0.16032762825489044], [0.01979951374232769, 0.015330440364778042, 0.0025604593101888895, 0.022946897894144058, 0.027564654126763344, 0.13889078795909882, 0.10488034039735794, 0.05237383395433426, 0.06142657995223999, 0.07560715824365616, 0.10927645862102509, 0.05274959281086922, 0.05703289434313774, 0.03240213170647621, 0.041843391954898834, 0.032511841505765915, 0.15280303359031677], [0.028486311435699463, 0.03280573710799217, 0.005441514775156975, 0.02540135756134987, 0.01886351965367794, 0.15497955679893494, 0.07365544885396957, 0.058509886264801025, 0.03247954696416855, 0.05370405688881874, 0.08511658757925034, 0.04438695311546326, 0.0631173625588417, 0.07234266400337219, 0.033699557185173035, 0.04377417266368866, 0.17323577404022217], [0.0376240611076355, 0.026926683261990547, 0.009695052169263363, 0.04852931201457977, 0.048223964869976044, 0.06440585106611252, 0.22394980490207672, 0.09844931215047836, 0.03691673278808594, 0.041401881724596024, 0.056385334581136703, 0.03901078179478645, 0.08308157324790955, 0.05385078117251396, 0.02946539595723152, 0.0289947260171175, 0.07308875769376755], [0.0578371100127697, 0.02458062209188938, 0.05524018406867981, 0.1763569712638855, 0.05810556188225746, 0.07624806463718414, 0.17443138360977173, 0.061472147703170776, 0.00824589841067791, 0.05308108404278755, 0.01454854104667902, 0.02610713429749012, 0.025817928835749626, 0.02125014178454876, 0.020795313641428947, 0.056936394423246384, 0.08894552290439606], [0.002066300017759204, 0.0025262441486120224, 0.0005217270227149129, 0.001192563446238637, 0.002209256635978818, 0.44884032011032104, 0.0004033568548038602, 0.0013638997916132212, 0.0006593348225578666, 0.0010889108525589108, 0.00047633188660256565, 0.00035318953450769186, 0.00045944281737320125, 0.0008957376121543348, 0.0007220281404443085, 0.001677205553278327, 0.534544050693512]], [[0.004188334569334984, 0.007133683189749718, 0.002255934989079833, 0.00367872160859406, 0.00739370658993721, 0.42482465505599976, 0.046003203839063644, 0.021216770634055138, 0.005400949157774448, 0.004183854907751083, 0.0006155548617243767, 0.00200402713380754, 0.0005638170405291021, 0.0021610616240650415, 0.0014077579835429788, 0.013045152649283409, 0.4539228677749634], [0.042315080761909485, 0.03620697185397148, 0.09689433127641678, 0.1401035487651825, 0.2607179880142212, 0.17639607191085815, 0.01541982963681221, 0.013832149095833302, 0.0023356201127171516, 0.001449362374842167, 0.00020138338732067496, 0.0006552930572070181, 0.00033352518221363425, 0.00261643691919744, 0.0024744535330682993, 0.012035604566335678, 0.19601234793663025], [0.008309096097946167, 0.024041447788476944, 0.03857972472906113, 0.07967700064182281, 0.3928961455821991, 0.20114199817180634, 0.021089497953653336, 0.0034242384135723114, 0.0001356136053800583, 0.00011471353354863822, 0.0002239649766124785, 0.0002819320361595601, 0.00012345192953944206, 0.00038171367486938834, 0.0005938534741289914, 0.006742387544363737, 0.2222432643175125], [0.019074048846960068, 0.04359908029437065, 0.018214218318462372, 0.08043204993009567, 0.2323787957429886, 0.22555887699127197, 0.09947431832551956, 0.011998637579381466, 0.0016122477827593684, 0.0008231392130255699, 0.0005960233393125236, 0.0014823791570961475, 0.0006127739325165749, 0.0010351808741688728, 0.0021903610322624445, 0.015595021657645702, 0.24532273411750793], [0.018854105845093727, 0.0607125349342823, 0.01801801472902298, 0.08351784944534302, 0.12313386052846909, 0.17992493510246277, 0.21040493249893188, 0.055491045117378235, 0.00852768775075674, 0.005140678957104683, 0.0021006197202950716, 0.003207239555194974, 0.0024408388417214155, 0.004610402509570122, 0.007915151305496693, 0.023972071707248688, 0.19202813506126404], [0.009726137854158878, 0.008658583275973797, 0.005348327569663525, 0.0036379049997776747, 0.019593603909015656, 0.42148515582084656, 0.002761242212727666, 0.008751537650823593, 0.0017329598776996136, 0.0018423069268465042, 0.0023161692079156637, 0.0025739376433193684, 0.001060024369508028, 0.002178811002522707, 0.00537658529356122, 0.020217495039105415, 0.48273923993110657], [0.005470804870128632, 0.0012375679798424244, 0.0012004447635263205, 0.0021518878638744354, 0.01788945309817791, 0.29543164372444153, 0.13532130420207977, 0.10881204158067703, 0.02294863760471344, 0.017659280449151993, 0.016767844557762146, 0.015749404206871986, 0.0030904917512089014, 0.005638785194605589, 0.008087560534477234, 0.023739051073789597, 0.3188038468360901], [0.0025695108342915773, 0.0013264776207506657, 0.0002037191588897258, 0.00035255245165899396, 0.00192298146430403, 0.318138986825943, 0.010375426150858402, 0.05118357017636299, 0.03129534795880318, 0.04405597597360611, 0.05977093055844307, 0.01688707061111927, 0.005205220077186823, 0.016820700839161873, 0.04562033340334892, 0.05905449390411377, 0.335216760635376], [0.0018554945709183812, 0.0004681009741034359, 6.545229553012177e-05, 0.000359601661330089, 0.0008542025461792946, 0.18623092770576477, 0.006062052212655544, 0.007689942140132189, 0.01257398072630167, 0.09830958396196365, 0.35832223296165466, 0.030397625640034676, 0.011958751827478409, 0.029234865680336952, 0.027231601998209953, 0.02607865445315838, 0.20230694115161896], [0.0020992031786590815, 0.0010525269899517298, 5.9625959693221375e-05, 0.0009962208569049835, 0.001865331083536148, 0.33537063002586365, 0.01945953629910946, 0.013114429078996181, 0.003995473496615887, 0.016729852184653282, 0.10241486132144928, 0.02057354710996151, 0.015425577759742737, 0.026669712737202644, 0.036807868629693985, 0.03656840696930885, 0.3667970597743988], [0.0005605418118648231, 0.0016279572155326605, 9.617940668249503e-05, 0.00025577069027349353, 0.0016097460174933076, 0.3857985734939575, 0.005171994213014841, 0.010014885105192661, 0.001459111925214529, 0.0040320660918951035, 0.02128465846180916, 0.014301283285021782, 0.02420620620250702, 0.01948489621281624, 0.052217088639736176, 0.028828753158450127, 0.42905035614967346], [0.0009177778265438974, 0.0020174849778413773, 0.0001600640534888953, 0.0006884312024340034, 0.002542647300288081, 0.2618713080883026, 0.003673566272482276, 0.010073209181427956, 0.003171514952555299, 0.010668303817510605, 0.04959910735487938, 0.015012258663773537, 0.03368154168128967, 0.08474739640951157, 0.1571851223707199, 0.06683295965194702, 0.297157347202301], [0.0009476901614107192, 0.0021396586671471596, 0.0005256434087641537, 0.0015726103447377682, 0.003164571477100253, 0.18710927665233612, 0.004270684439688921, 0.014662038534879684, 0.004982678219676018, 0.022168787196278572, 0.024342749267816544, 0.011398361064493656, 0.01609661988914013, 0.06333593279123306, 0.33231037855148315, 0.09132267534732819, 0.21964961290359497], [0.0025148154236376286, 0.004056510049849749, 0.0007603541598655283, 0.0063637844286859035, 0.004141639452427626, 0.16041047871112823, 0.0030329516157507896, 0.016645288094878197, 0.005086853634566069, 0.015093181282281876, 0.008217992261052132, 0.007805551402270794, 0.0122417863458395, 0.06775514781475067, 0.39363905787467957, 0.10360913723707199, 0.18862545490264893], [0.01111416146159172, 0.010163098573684692, 0.0012950801756232977, 0.02043714001774788, 0.012655578553676605, 0.3103998303413391, 0.015623996965587139, 0.020527182146906853, 0.009320110082626343, 0.031658634543418884, 0.013513845391571522, 0.009898391552269459, 0.009594922885298729, 0.016684869304299355, 0.04591407626867294, 0.09806475788354874, 0.3631344139575958], [0.015806427225470543, 0.02835725247859955, 0.0071237473748624325, 0.0389384962618351, 0.02222716435790062, 0.3227516710758209, 0.04514496028423309, 0.02011147327721119, 0.010231449268758297, 0.02464936301112175, 0.006605076137930155, 0.005150409881025553, 0.004178547766059637, 0.0113968625664711, 0.01687593385577202, 0.05558512359857559, 0.3648659586906433], [0.009854944422841072, 0.008724772371351719, 0.0055234916508197784, 0.003998120315372944, 0.020219851285219193, 0.4202844798564911, 0.00296954158693552, 0.008542217314243317, 0.0016003235941752791, 0.0017917373916134238, 0.002263573231175542, 0.002494567772373557, 0.001010014326311648, 0.002124918159097433, 0.005555675830692053, 0.020633304491639137, 0.48240843415260315]], [[0.018186552450060844, 0.1823132038116455, 0.024218477308750153, 0.11275806277990341, 0.14089669287204742, 0.1794857531785965, 0.020192673429846764, 0.028026582673192024, 0.004373583011329174, 0.009105173870921135, 0.0010647429153323174, 0.0013421261683106422, 0.002005667658522725, 0.013452323153614998, 0.03204953297972679, 0.019610757008194923, 0.21091806888580322], [0.005609873682260513, 0.02844351902604103, 0.012248458340764046, 0.040490806102752686, 0.06180007383227348, 0.38734033703804016, 0.006646975874900818, 0.008535830304026604, 0.002291326643899083, 0.0010459410259500146, 0.0017532827332615852, 0.0026835817843675613, 0.0036993594840168953, 0.0031258731614798307, 0.004474401008337736, 0.013957834802567959, 0.41585245728492737], [0.002691861242055893, 0.19998838007450104, 0.02071753703057766, 0.06890784204006195, 0.0853261724114418, 0.27387943863868713, 0.0025572364684194326, 0.004012655932456255, 0.0005462020053528249, 0.0004219186957925558, 7.440750778187066e-05, 0.00027020630659535527, 0.0006347518065012991, 0.002161855809390545, 0.0030355427879840136, 0.009133919142186642, 0.32564011216163635], [0.004510881379246712, 0.07208456844091415, 0.3211689591407776, 0.05328734591603279, 0.050793085247278214, 0.21320345997810364, 0.006751725450158119, 0.003848251886665821, 0.001749134506098926, 0.002026455709710717, 0.000745248980820179, 0.002329826122149825, 0.002325287787243724, 0.002415639581158757, 0.0030330016743391752, 0.011958577670156956, 0.24776864051818848], [0.0010120784863829613, 0.06773669272661209, 0.22581954300403595, 0.4231593608856201, 0.08283545076847076, 0.08342058956623077, 0.0066301701590418816, 0.0023824742529541254, 0.00034852910903282464, 0.0005207907524891198, 0.00015329680172726512, 0.0005019515519961715, 0.0004763328761328012, 0.0015558687737211585, 0.0030413810163736343, 0.002614064607769251, 0.09779147058725357], [0.005573457106947899, 0.01383672934025526, 0.0017656544223427773, 0.0023815203458070755, 0.006817927584052086, 0.4348298907279968, 0.0019979628268629313, 0.008725469931960106, 0.002532935468479991, 0.0027160905301570892, 0.001431912649422884, 0.0013266963651403785, 0.0009238217025995255, 0.0036334339529275894, 0.001954076113179326, 0.007166879717260599, 0.5023855566978455], [0.007654241286218166, 0.05936341732740402, 0.06624143570661545, 0.4381338655948639, 0.19064247608184814, 0.08347903937101364, 0.02870515175163746, 0.009970055893063545, 0.002499472349882126, 0.0019360263831913471, 0.0018484829925000668, 0.0017945471918210387, 0.003491402370855212, 0.003696377156302333, 0.009130757302045822, 0.003908255603164434, 0.08750505745410919], [0.007992465980350971, 0.12741415202617645, 0.007724827155470848, 0.07971340417861938, 0.14382916688919067, 0.23259486258029938, 0.024296021088957787, 0.05866388604044914, 0.010474557057023048, 0.0039685433730483055, 0.00042858938104473054, 0.0008956706151366234, 0.004043235909193754, 0.00981864519417286, 0.02893434651196003, 0.012760907411575317, 0.2464466691017151], [0.007613699417561293, 0.024103758856654167, 0.0004887630348093808, 0.005694406107068062, 0.014542028307914734, 0.3385777473449707, 0.01383659616112709, 0.10016417503356934, 0.02168077602982521, 0.012115869671106339, 0.0010157331125810742, 0.0027246223762631416, 0.005203557666391134, 0.021602081134915352, 0.03699857369065285, 0.0170406773686409, 0.3765968382358551], [0.003991507459431887, 0.009446964599192142, 0.0009863240411505103, 0.001922381343320012, 0.01393255963921547, 0.32130202651023865, 0.01270506251603365, 0.04850569739937782, 0.08340718597173691, 0.03835781291127205, 0.002187745412811637, 0.006774316541850567, 0.009342610836029053, 0.028772884979844093, 0.032556723803281784, 0.027432287111878395, 0.3583759367465973], [0.0014869195874780416, 0.0011420990340411663, 3.425547402002849e-05, 0.00039495641249231994, 0.0015302683459594846, 0.07459839433431625, 0.01324643287807703, 0.03190841153264046, 0.20809407532215118, 0.5316380262374878, 0.01347263716161251, 0.006063028238713741, 0.004502402152866125, 0.004494435619562864, 0.011880114674568176, 0.009101423434913158, 0.08641207218170166], [0.0029515172354876995, 0.0046341074630618095, 0.0003570991975720972, 0.0020722676999866962, 0.009502637200057507, 0.34545788168907166, 0.007572531700134277, 0.05725153908133507, 0.053158458322286606, 0.03892159461975098, 0.011991689912974834, 0.011687049642205238, 0.009453082457184792, 0.01837826520204544, 0.023837080225348473, 0.01363587100058794, 0.38913726806640625], [0.0009497370338067412, 0.0009595750598236918, 0.00018651399295777082, 0.0004489131097216159, 0.002576481783762574, 0.3548777997493744, 0.003959370777010918, 0.01415613666176796, 0.015842672437429428, 0.015910057350993156, 0.005732581950724125, 0.0516972653567791, 0.03859798237681389, 0.058410611003637314, 0.02525930292904377, 0.007416188716888428, 0.4030188024044037], [0.0014143710723146796, 0.0028231837786734104, 0.0006716718198731542, 0.0006097178556956351, 0.005581748206168413, 0.3150624632835388, 0.0038239278364926577, 0.027913305908441544, 0.019783733412623405, 0.017497468739748, 0.015855025500059128, 0.08162148296833038, 0.09731604158878326, 0.03693721443414688, 0.01100077759474516, 0.009539751335978508, 0.35254815220832825], [0.0008578316774219275, 0.00384965306147933, 0.0003430765646044165, 0.0008377742487937212, 0.0025053240824490786, 0.12367133796215057, 0.01884080097079277, 0.08323756605386734, 0.029918348416686058, 0.02936484105885029, 0.01863955520093441, 0.09094791114330292, 0.19476830959320068, 0.21546193957328796, 0.03947518393397331, 0.009455462917685509, 0.13782523572444916], [0.003448329633101821, 0.05371733382344246, 0.010829840786755085, 0.0676378682255745, 0.06487922370433807, 0.15381602942943573, 0.08987484127283096, 0.05630721524357796, 0.011521661654114723, 0.011936428025364876, 0.005307525862008333, 0.018324414268136024, 0.06778241693973541, 0.11114568263292313, 0.07755409181118011, 0.017365392297506332, 0.17855167388916016], [0.0054224575869739056, 0.013875997625291348, 0.0018316832138225436, 0.0023690680973231792, 0.006915634498000145, 0.43458524346351624, 0.0019351541996002197, 0.008719532750546932, 0.0026190250646322966, 0.00270450790412724, 0.0014321057824417949, 0.0013744182651862502, 0.0009785298025235534, 0.0036767995916306973, 0.0020182766020298004, 0.007230615243315697, 0.5023109912872314]], [[0.010265127755701542, 0.2232622653245926, 0.05678197368979454, 0.07689021527767181, 0.18020139634609222, 0.15690137445926666, 0.006618151441216469, 0.03365424647927284, 0.0014606311451643705, 0.006848826538771391, 0.0029160112608224154, 0.0040119122713804245, 0.002603476634249091, 0.002888269489631057, 0.012129584327340126, 0.04567653685808182, 0.17689000070095062], [0.02879398688673973, 0.05467435345053673, 0.016623828560113907, 0.021370425820350647, 0.051677629351615906, 0.24790184199810028, 0.011017652228474617, 0.20956213772296906, 0.010133158415555954, 0.01645810715854168, 0.0043173315934836864, 0.0025554397143423557, 0.0020684103947132826, 0.0035261756274849176, 0.010181444697082043, 0.04337063431739807, 0.2657674252986908], [0.031211769208312035, 0.024806369096040726, 0.018280962482094765, 0.07082919776439667, 0.09276816248893738, 0.12891539931297302, 0.032049331814050674, 0.2643558382987976, 0.01566830836236477, 0.030905310064554214, 0.002814750885590911, 0.006386816967278719, 0.004527093376964331, 0.007868634536862373, 0.030876100063323975, 0.09142207354307175, 0.1463138908147812], [0.01633545570075512, 0.03732959181070328, 0.02301092818379402, 0.12765556573867798, 0.16681067645549774, 0.17557907104492188, 0.03199303150177002, 0.10885646939277649, 0.007015097886323929, 0.008825917728245258, 0.0077860113233327866, 0.0036776065826416016, 0.002281520515680313, 0.0020606659818440676, 0.008347799070179462, 0.07775885611772537, 0.19467581808567047], [0.01945141889154911, 0.22356761991977692, 0.04016910865902901, 0.2519915997982025, 0.14827214181423187, 0.05129188671708107, 0.004936706740409136, 0.12043104320764542, 0.002083021914586425, 0.007104513235390186, 0.0007584961713291705, 0.0012526942882686853, 0.0020892091561108828, 0.002551470883190632, 0.005912725813686848, 0.05792907997965813, 0.0602073110640049], [0.0021346136927604675, 0.0010469233384355903, 0.0002160046569770202, 0.0003505503118503839, 0.001961757428944111, 0.4739588797092438, 0.0005399598740041256, 0.00038332625990733504, 0.0013989555882290006, 0.000637598626781255, 0.0008709132089279592, 0.0006562484195455909, 0.0009156459127552807, 0.0003736233920790255, 0.00029644175083376467, 0.002358180470764637, 0.5119002461433411], [0.029168296605348587, 0.058513835072517395, 0.041056569665670395, 0.11615211516618729, 0.10755036026239395, 0.20436106622219086, 0.03125567361712456, 0.023567531257867813, 0.014242010191082954, 0.028318265452980995, 0.0025854557752609253, 0.006905518006533384, 0.007259258069097996, 0.002910315291956067, 0.011264611966907978, 0.07889358699321747, 0.2359955757856369], [0.008760140277445316, 0.7217814922332764, 0.011277453973889351, 0.06434950977563858, 0.04183107241988182, 0.016620829701423645, 0.00375489448197186, 0.04841559752821922, 0.003151751821860671, 0.009589849039912224, 0.0011572868097573519, 0.0004126018029637635, 0.00043356846435926855, 0.0006370106129907072, 0.005776014178991318, 0.043467432260513306, 0.018583521246910095], [0.015919599682092667, 0.1384141445159912, 0.0027500593569129705, 0.060639020055532455, 0.04921140521764755, 0.10047032684087753, 0.013175947591662407, 0.06428591907024384, 0.009382463991641998, 0.10390728712081909, 0.0017704907804727554, 0.0032039545476436615, 0.007427481934428215, 0.013925074599683285, 0.20564021170139313, 0.09292779862880707, 0.11694878339767456], [0.016222631558775902, 0.25394201278686523, 0.004768054932355881, 0.09679404646158218, 0.11971274763345718, 0.058909084647893906, 0.0031051833648234606, 0.03400060907006264, 0.007896446622908115, 0.05215363949537277, 0.0019155171466991305, 0.001171921961940825, 0.000625861284788698, 0.005021657794713974, 0.026490172371268272, 0.25110262632369995, 0.06616776436567307], [0.03703060373663902, 0.07739081978797913, 0.005418005865067244, 0.036399491131305695, 0.10390383750200272, 0.1988244205713272, 0.015400655567646027, 0.05255616828799248, 0.012176823802292347, 0.04076771065592766, 0.009216740727424622, 0.0036406570579856634, 0.0008267203811556101, 0.0022283338475972414, 0.01072884164750576, 0.1884412169456482, 0.20504894852638245], [0.04563455656170845, 0.01594393700361252, 0.0073554725386202335, 0.06799016147851944, 0.04061184823513031, 0.25972431898117065, 0.006238131318241358, 0.018703341484069824, 0.030625758692622185, 0.03544196859002113, 0.00852174311876297, 0.017846981063485146, 0.013368632644414902, 0.020614949986338615, 0.034894056618213654, 0.0867638811469078, 0.2897203266620636], [0.014568242244422436, 0.005328716244548559, 0.0010997724020853639, 0.014150719158351421, 0.01055135764181614, 0.3555523157119751, 0.0029320018365979195, 0.004025968257337809, 0.006880276836454868, 0.010483568534255028, 0.001453457516618073, 0.0056562162935733795, 0.026500370353460312, 0.05622415244579315, 0.056392770260572433, 0.02697182074189186, 0.40122830867767334], [0.007318341173231602, 0.005305900704115629, 0.000792134553194046, 0.012331118807196617, 0.015722138807177544, 0.3926977217197418, 0.0006282264366745949, 0.0027503441087901592, 0.0034164239186793566, 0.007064077537506819, 0.0005821837112307549, 0.001860111835412681, 0.012103135697543621, 0.013428621925413609, 0.029875194653868675, 0.04587136209011078, 0.44825297594070435], [0.029859179630875587, 0.049556370824575424, 0.003082074923440814, 0.03929593041539192, 0.04183705896139145, 0.29988884925842285, 0.003909519873559475, 0.023515917360782623, 0.015205607749521732, 0.029256373643875122, 0.004078534431755543, 0.003898527240380645, 0.02255287766456604, 0.021046387031674385, 0.03534012287855148, 0.05855464190244675, 0.3191221058368683], [0.05087096616625786, 0.14277350902557373, 0.020318899303674698, 0.05531356856226921, 0.1030222550034523, 0.04572594165802002, 0.027357857674360275, 0.13612042367458344, 0.021364277228713036, 0.16175904870033264, 0.003227386623620987, 0.006122049875557423, 0.008792604319751263, 0.011813133955001831, 0.03921202942728996, 0.1143302321434021, 0.05187591165304184], [0.0023518898524343967, 0.00110493297688663, 0.00024215856683440506, 0.00037356821121647954, 0.0021288383286446333, 0.4736343026161194, 0.0005599730648100376, 0.00041239059646613896, 0.0014486706349998713, 0.0006302052643150091, 0.0009281612001359463, 0.0007071456057019532, 0.000880642153788358, 0.00036713495501317084, 0.0002842222747858614, 0.0025381557643413544, 0.511407732963562]], [[0.008257219567894936, 0.004893642850220203, 8.742692443775013e-05, 0.0004604661662597209, 0.0011276161530986428, 0.12468386441469193, 0.011071695946156979, 0.03026345558464527, 0.0009005650645121932, 0.21164079010486603, 0.003384918672963977, 0.008318377658724785, 0.008776056580245495, 0.3448408544063568, 0.03226902708411217, 0.05589490011334419, 0.1531292051076889], [0.01068151369690895, 0.1118510290980339, 0.033196352422237396, 0.015081765130162239, 0.05269603803753853, 0.20010313391685486, 0.03233983740210533, 0.22907482087612152, 0.003326513571664691, 0.013112522661685944, 0.0052414569072425365, 0.005675492808222771, 0.004343098029494286, 0.015076672658324242, 0.01089662965387106, 0.0293927863240242, 0.22791032493114471], [0.011088138446211815, 0.0403350293636322, 0.053592417389154434, 0.011016963049769402, 0.037595272064208984, 0.3447132408618927, 0.013916597701609135, 0.032274577766656876, 0.008088011294603348, 0.0069275908172130585, 0.0024391221813857555, 0.008102627471089363, 0.003841554746031761, 0.008192767389118671, 0.004099509213119745, 0.022170476615428925, 0.39160603284835815], [0.005647200625389814, 0.023429373279213905, 0.013827008195221424, 0.024682629853487015, 0.008244422264397144, 0.332151859998703, 0.011849045753479004, 0.024184802547097206, 0.006494515109807253, 0.013333173468708992, 0.00305345025844872, 0.012509648688137531, 0.015985170379281044, 0.09652780741453171, 0.014385666698217392, 0.009910388849675655, 0.38378390669822693], [0.014805599115788937, 0.27724504470825195, 0.03752792626619339, 0.01881391555070877, 0.06760449707508087, 0.16170665621757507, 0.006418578326702118, 0.0606168694794178, 0.001984716858714819, 0.008849586360156536, 0.0022502639330923557, 0.011699778959155083, 0.007266813423484564, 0.10840683430433273, 0.024708248674869537, 0.016955319792032242, 0.17313940823078156], [0.0034122380893677473, 0.00445818156003952, 0.0019394936971366405, 0.002149065723642707, 0.006814661901444197, 0.43780508637428284, 0.0031416008714586496, 0.003791274270042777, 0.0015809854958206415, 0.0022312900982797146, 0.002952396869659424, 0.0010447100503370166, 0.0006937501020729542, 0.0019261428387835622, 0.0013325806939974427, 0.00911635160446167, 0.5156100988388062], [0.013128633610904217, 0.054125621914863586, 0.0026552341878414154, 0.0024853821378201246, 0.01050017960369587, 0.24772115051746368, 0.03380419686436653, 0.08424610644578934, 0.0045247264206409454, 0.07893596589565277, 0.05008922144770622, 0.01777995005249977, 0.014046954922378063, 0.0485159233212471, 0.012506048195064068, 0.032122477889060974, 0.29281219840049744], [0.01303162518888712, 0.07973283529281616, 0.004567460156977177, 0.0019292011857032776, 0.010174212045967579, 0.1494891345500946, 0.02016182616353035, 0.0750681534409523, 0.012776673771440983, 0.12956547737121582, 0.06615664064884186, 0.03337272256612778, 0.021654536947607994, 0.09548152983188629, 0.08678989112377167, 0.036826930940151215, 0.1632211059331894], [0.007704000920057297, 0.007916847243905067, 0.003396571846678853, 0.0021418153773993254, 0.0030041695572435856, 0.3513297140598297, 0.002586089540272951, 0.01020289957523346, 0.039395421743392944, 0.055891457945108414, 0.04490537941455841, 0.019021574407815933, 0.011947663500905037, 0.02881046012043953, 0.009847951121628284, 0.015392406843602657, 0.3865056335926056], [0.015445230528712273, 0.018073460087180138, 0.0011081199627369642, 0.0025074996519833803, 0.006494317203760147, 0.2873903214931488, 0.00942162238061428, 0.030998989939689636, 0.02854325622320175, 0.10180513560771942, 0.01560528576374054, 0.017228001728653908, 0.02256528101861477, 0.0400036945939064, 0.024396797642111778, 0.06125336140394211, 0.3171595633029938], [0.014537700451910496, 0.014863836579024792, 0.0024775422643870115, 0.0006858667475171387, 0.006965064909309149, 0.3931906521320343, 0.005573492031544447, 0.004546377807855606, 0.021178994327783585, 0.019111724570393562, 0.03565484285354614, 0.0174759142100811, 0.0034818167332559824, 0.009509425610303879, 0.00457116961479187, 0.020692646503448486, 0.42548298835754395], [0.012703723274171352, 0.0054679629392921925, 0.006032486911863089, 0.00289106834679842, 0.004761080257594585, 0.3363911807537079, 0.004802789073437452, 0.006355115212500095, 0.033189717680215836, 0.027029143646359444, 0.031544726341962814, 0.04762855917215347, 0.02806723304092884, 0.025729099288582802, 0.016575660556554794, 0.0444786511361599, 0.366351842880249], [0.0055680545046925545, 0.001296712551265955, 0.0020161347929388285, 0.00851807463914156, 0.0037014521658420563, 0.362201064825058, 0.0052298749797046185, 0.002452065236866474, 0.026408245787024498, 0.02603040635585785, 0.007545111700892448, 0.02477366290986538, 0.06703043729066849, 0.027195211499929428, 0.012534881010651588, 0.01988750509917736, 0.397611141204834], [0.010165980085730553, 0.003975159488618374, 0.0010572937317192554, 0.0023133018985390663, 0.013636105693876743, 0.3278009295463562, 0.006804314441978931, 0.006080782040953636, 0.01368589885532856, 0.013352219015359879, 0.009636926464736462, 0.020090095698833466, 0.029375392943620682, 0.10656117647886276, 0.020595252513885498, 0.044070467352867126, 0.3707987070083618], [0.010866696946322918, 0.006787267047911882, 0.0014682484325021505, 0.002457280410453677, 0.020308634266257286, 0.34402626752853394, 0.005273439455777407, 0.017298532649874687, 0.008687775582075119, 0.016884302720427513, 0.004645138513296843, 0.012603851966559887, 0.01069951057434082, 0.04749172180891037, 0.04962023347616196, 0.04276479035615921, 0.3981162905693054], [0.049397315829992294, 0.05426033213734627, 0.004027979914098978, 0.004404637962579727, 0.031035268679261208, 0.10137810558080673, 0.036087825894355774, 0.17316536605358124, 0.006977003999054432, 0.10765694826841354, 0.006531053688377142, 0.03146718442440033, 0.01385226659476757, 0.134491965174675, 0.04509700834751129, 0.0840262621641159, 0.11614350229501724], [0.0035750947427004576, 0.004454511683434248, 0.0019751267973333597, 0.0021982635371387005, 0.0067324270494282246, 0.4368283450603485, 0.003283038502559066, 0.004010500852018595, 0.001697935746051371, 0.0025479362811893225, 0.003095107851549983, 0.0011476894142106175, 0.0007771088276058435, 0.002152083907276392, 0.0014796664472669363, 0.009435396641492844, 0.5146099328994751]], [[0.01408146321773529, 0.001574650057591498, 0.00034399094874970615, 0.017182335257530212, 0.004257685970515013, 0.4497431218624115, 0.004845339804887772, 0.000372610695194453, 0.0007309483480639756, 0.003913710359483957, 0.00022153349709697068, 0.0007323424215428531, 0.0015358866658061743, 0.003799161408096552, 0.00040599022759124637, 0.0005617482820525765, 0.49569740891456604], [0.0020613898523151875, 0.01743810810148716, 0.6423357129096985, 0.01567259430885315, 0.022248296067118645, 0.12978814542293549, 0.014053741469979286, 0.012185146100819111, 0.003936453256756067, 0.0001899230555864051, 5.444023190648295e-05, 0.00017854111501947045, 1.8796214135363698e-05, 0.0006384572479873896, 0.0004499627975746989, 0.008924039080739021, 0.1298261433839798], [0.004395355936139822, 0.002226634882390499, 0.008446075953543186, 0.8587096333503723, 0.012255243957042694, 0.04603106528520584, 0.0009396475506946445, 0.00036220764741301537, 0.00041308958316221833, 0.010045025497674942, 0.00013877484889235348, 4.722585072158836e-05, 0.0004337375867180526, 0.0007782169850543141, 0.00023864237300585955, 0.002626685192808509, 0.051912710070610046], [0.0071515548042953014, 0.004929795861244202, 0.003913418389856815, 0.009962242096662521, 0.8748357892036438, 0.045173317193984985, 0.003409020369872451, 0.0002870821044780314, 1.962881287909113e-05, 3.274782284279354e-05, 9.439574932912365e-05, 9.787506132852286e-05, 1.2160940059402492e-05, 0.0002432355104247108, 0.0004266382602509111, 0.003645355813205242, 0.04576573893427849], [0.055222418159246445, 0.3108732998371124, 0.0035990297328680754, 0.012483933009207249, 0.24609746038913727, 0.11218152940273285, 0.10708765685558319, 0.009563809260725975, 0.0006382389692589641, 5.9439738834043965e-05, 7.305407052626833e-05, 0.0014116897946223617, 0.00012700514344032854, 0.0008387345005758107, 0.000789254903793335, 0.007735870312899351, 0.13121755421161652], [0.0103993508964777, 0.02248504012823105, 0.005668136291205883, 0.02249225042760372, 0.050455957651138306, 0.3559737205505371, 0.008645015768706799, 0.006430633366107941, 0.005295170936733484, 0.009789758361876011, 0.0037623660173267126, 0.003986689727753401, 0.007335345726460218, 0.02300848998129368, 0.025969883427023888, 0.05108536034822464, 0.38721683621406555], [0.009819390252232552, 0.024214118719100952, 0.0010832223342731595, 0.00884968787431717, 0.048769935965538025, 0.2768266797065735, 0.06321939826011658, 0.2434345781803131, 0.003973012790083885, 0.002221109811216593, 0.0005925202276557684, 0.0030689630657434464, 0.000898835132829845, 0.002349564339965582, 0.004480126779526472, 0.0036102936137467623, 0.3025886118412018], [0.0012096705613657832, 0.0007986605050973594, 0.00033864693250507116, 0.004095091018825769, 0.0019745812751352787, 0.08016572147607803, 0.009815915487706661, 0.050553616136312485, 0.685996949672699, 0.0421324148774147, 0.0026321099139750004, 0.002702031983062625, 0.00222086813300848, 0.007866231724619865, 0.006555180065333843, 0.012131133116781712, 0.08881130814552307], [2.54418991971761e-05, 9.60042598308064e-07, 1.0126744882654748e-06, 8.375877951039001e-05, 5.35686876901309e-06, 0.0002333679294679314, 2.5142060621874407e-05, 6.0685910284519196e-05, 0.001536187599413097, 0.9943016767501831, 0.0022327026817947626, 3.477992504485883e-05, 0.0010042967041954398, 7.006266969256103e-05, 9.202172805089504e-05, 3.3319414797006175e-05, 0.00025938215549103916], [4.6100569306872785e-05, 3.347871597725316e-06, 2.549385953898309e-06, 0.00010449565888848156, 3.784679211094044e-05, 0.0017649501096457243, 0.00010963423119392246, 0.00019276211969554424, 0.000377871620003134, 0.11477901041507721, 0.8772613406181335, 0.0015086372150108218, 0.0005793901509605348, 0.00040520032052882016, 0.00042455640505068004, 0.0005225301720201969, 0.0018798487726598978], [0.0013344907201826572, 0.0002758883638307452, 1.1929361789952964e-05, 0.0006592972204089165, 0.001884762430563569, 0.24266071617603302, 0.003968945238739252, 0.03329095244407654, 0.0026307457592338324, 0.00179788947571069, 0.038194440305233, 0.1771521419286728, 0.017752699553966522, 0.18490572273731232, 0.007332176901400089, 0.01401127502322197, 0.2721359133720398], [0.00046451130765490234, 0.00011906915460713208, 4.451086169865448e-06, 0.0016196300275623798, 0.00012009611236862838, 0.018040824681520462, 0.00034077890450134873, 0.0021857134997844696, 0.004716335330158472, 0.07996460795402527, 0.0075972783379256725, 0.010074727237224579, 0.8231084942817688, 0.028060395270586014, 0.002300055930390954, 0.0012272234307602048, 0.02005571499466896], [6.656120967818424e-05, 0.00025115578318946064, 3.2701609598007053e-06, 0.00043487222865223885, 0.00014143879525363445, 0.020630188286304474, 0.00013165791460778564, 0.0009167424286715686, 0.00023775234876666218, 0.0003713516634888947, 0.0008491724147461355, 0.0019545776303857565, 0.010409840382635593, 0.9290471076965332, 0.007021206431090832, 0.004036462400108576, 0.023496676236391068], [0.0013182590482756495, 0.0006638254271820188, 0.00017158620175905526, 0.001623322139494121, 0.0014197247801348567, 0.06388121843338013, 0.00031302307615987957, 0.004345766268670559, 0.0008740058983676136, 0.020485972985625267, 0.008001362904906273, 0.0026210350915789604, 0.029038649052381516, 0.017767097800970078, 0.7516993880271912, 0.020434612408280373, 0.07534120976924896], [0.006286650896072388, 0.025819994509220123, 0.0009887989144772291, 0.0013101986842229962, 0.013374892063438892, 0.14875224232673645, 0.005388990510255098, 0.026751309633255005, 0.007309566251933575, 0.008584192022681236, 0.008866596966981888, 0.005496143829077482, 0.0007185834110714495, 0.006569966673851013, 0.04636684060096741, 0.5075952410697937, 0.1798197627067566], [0.050149597227573395, 0.30569788813591003, 0.008752528578042984, 0.03326259180903435, 0.053340643644332886, 0.17257598042488098, 0.033369291573762894, 0.013623017817735672, 0.005498291924595833, 0.0206012986600399, 0.004293531645089388, 0.004327096976339817, 0.0006333703058771789, 0.0021143995691090822, 0.017564252018928528, 0.05942404270172119, 0.21477213501930237], [0.01028570905327797, 0.021752601489424706, 0.006020726636052132, 0.02173515036702156, 0.049466442316770554, 0.3585376739501953, 0.008806771598756313, 0.0061854408122599125, 0.004957334604114294, 0.009440203197300434, 0.0041090515442192554, 0.004219769965857267, 0.006966304499655962, 0.0224921852350235, 0.02468484826385975, 0.049375686794519424, 0.39096400141716003]], [[0.011721757240593433, 0.007046922110021114, 0.015499955043196678, 0.051409900188446045, 0.13097745180130005, 0.32172781229019165, 0.004770840052515268, 0.014009694568812847, 0.0009056874550879002, 0.0005501421983353794, 0.0020572138018906116, 0.00027760775992646813, 0.002391071990132332, 0.07459204643964767, 0.011169451288878918, 0.01747933216392994, 0.33341315388679504], [0.00885069090873003, 0.04544084146618843, 0.01604078710079193, 0.012966599315404892, 0.05233452096581459, 0.3225391209125519, 0.013190428726375103, 0.0418412946164608, 0.010102935135364532, 0.004285761620849371, 0.002772104926407337, 0.0034894554410129786, 0.005400280002504587, 0.03643094375729561, 0.034059058874845505, 0.028532948344945908, 0.3617222309112549], [0.00455421581864357, 0.06610382348299026, 0.05903423950076103, 0.05043047294020653, 0.05740812420845032, 0.2913150489330292, 0.006456590257585049, 0.04512419551610947, 0.014806688763201237, 0.010592000558972359, 0.006378078367561102, 0.004725506994873285, 0.004361783619970083, 0.01239682361483574, 0.01955190859735012, 0.02532346174120903, 0.3214370012283325], [0.003647416364401579, 0.04467647522687912, 0.007149004843086004, 0.010480230674147606, 0.05409850552678108, 0.38623183965682983, 0.0058138431049883366, 0.00915644783526659, 0.0009816165547817945, 0.001275165588594973, 0.0010768126230686903, 0.0006005791947245598, 0.0009129037498496473, 0.004646778106689453, 0.01211613044142723, 0.017416995018720627, 0.4397193193435669], [0.0019476315937936306, 0.04978090152144432, 0.007916431874036789, 0.01704901084303856, 0.056832410395145416, 0.13275092840194702, 0.15445519983768463, 0.09568975120782852, 0.024426309391856194, 0.05542673543095589, 0.006322779227048159, 0.017253389582037926, 0.010407804511487484, 0.025139160454273224, 0.05549096688628197, 0.14533758163452148, 0.14377300441265106], [0.01328740268945694, 0.009116914123296738, 0.002928277710452676, 0.007765603717416525, 0.004659684374928474, 0.40239426493644714, 0.011865634471178055, 0.007094255648553371, 0.004250122234225273, 0.005594837944954634, 0.0025534643791615963, 0.006018457002937794, 0.004263646900653839, 0.00943384412676096, 0.006783852819353342, 0.007252140901982784, 0.49473750591278076], [0.1062094047665596, 0.022527193650603294, 0.007539268117398024, 0.009360559284687042, 0.02430119551718235, 0.23784923553466797, 0.019240936264395714, 0.08557629585266113, 0.025563564151525497, 0.017944904044270515, 0.044012024998664856, 0.009851524606347084, 0.009724471718072891, 0.01624513417482376, 0.011741029098629951, 0.07670438289642334, 0.27560895681381226], [0.01816686987876892, 0.028595443814992905, 0.00891269464045763, 0.0031857602298259735, 0.041015952825546265, 0.3416673243045807, 0.021197890862822533, 0.037000831216573715, 0.012120778672397137, 0.006097718607634306, 0.011292031034827232, 0.004889900796115398, 0.0070329406298696995, 0.029477104544639587, 0.026767922565340996, 0.022011995315551758, 0.3805668354034424], [0.05780412256717682, 0.010600382462143898, 0.004518390167504549, 0.005853764247149229, 0.027256513014435768, 0.3153594434261322, 0.011415298096835613, 0.06347476691007614, 0.024674689397215843, 0.0077991783618927, 0.009398122318089008, 0.010247057303786278, 0.00912571419030428, 0.027174444869160652, 0.020983880385756493, 0.03675534576177597, 0.35755887627601624], [0.047172632068395615, 0.019349655136466026, 0.0037693637423217297, 0.0027639165055006742, 0.03593737259507179, 0.36282145977020264, 0.008670296519994736, 0.03268292173743248, 0.0058566490188241005, 0.002221260219812393, 0.0024433606304228306, 0.0034438709262758493, 0.005746565293520689, 0.014489769004285336, 0.012698623351752758, 0.022212300449609756, 0.4177200496196747], [0.011229473166167736, 0.020581817254424095, 0.013863361440598965, 0.010032136924564838, 0.05429014563560486, 0.2420099824666977, 0.031671322882175446, 0.06903990358114243, 0.02086169831454754, 0.024723414331674576, 0.05764700844883919, 0.026265881955623627, 0.030915025621652603, 0.0362841822206974, 0.04389539733529091, 0.03290143609046936, 0.27378782629966736], [0.11236307770013809, 0.01446970459073782, 0.0054349638521671295, 0.00992583204060793, 0.011019826866686344, 0.2947739064693451, 0.006909534335136414, 0.04313119873404503, 0.021064545959234238, 0.01611168123781681, 0.05811484903097153, 0.010380059480667114, 0.011350695975124836, 0.02172929048538208, 0.006476261653006077, 0.026182183995842934, 0.33056241273880005], [0.04455120489001274, 0.007338186725974083, 0.0009178618201985955, 0.007283796090632677, 0.019055889919400215, 0.3551396429538727, 0.005402221344411373, 0.02569395676255226, 0.006255147513002157, 0.017190705984830856, 0.02743673324584961, 0.004633537493646145, 0.009084510616958141, 0.01816130243241787, 0.004230207297950983, 0.022411992773413658, 0.42521315813064575], [0.044442590326070786, 0.00971419457346201, 0.0006923770997673273, 0.002533711725845933, 0.025141334161162376, 0.367998868227005, 0.011294341646134853, 0.03181444853544235, 0.004296659026294947, 0.005480797961354256, 0.006810206454247236, 0.002447106409817934, 0.002957419026643038, 0.007110204081982374, 0.006232909392565489, 0.03230837732553482, 0.43872445821762085], [0.021863823756575584, 0.015739837661385536, 0.0020128716714680195, 0.003098546527326107, 0.03831372782588005, 0.3727547526359558, 0.011659132316708565, 0.026501843705773354, 0.0034776434767991304, 0.007701070047914982, 0.006890401244163513, 0.0018185413209721446, 0.0017652097158133984, 0.008977421559393406, 0.011417554691433907, 0.03919363394379616, 0.42681393027305603], [0.12257027626037598, 0.02016676589846611, 0.006522119045257568, 0.004189263563603163, 0.017190564423799515, 0.28708869218826294, 0.01523829810321331, 0.031580667942762375, 0.011953160166740417, 0.0060540735721588135, 0.006723586469888687, 0.00284628476947546, 0.0040832022204995155, 0.015117276459932327, 0.017963798716664314, 0.10842431336641312, 0.32228773832321167], [0.012997462414205074, 0.008569048717617989, 0.0026560714468359947, 0.0068712420761585236, 0.004779750481247902, 0.4068121016025543, 0.009962677955627441, 0.0065444596111774445, 0.0034512262791395187, 0.004746640101075172, 0.0024060423020273447, 0.004597364459186792, 0.003576250746846199, 0.008625650778412819, 0.00606136629357934, 0.0070505994372069836, 0.5002920031547546]]], [[[0.006571450736373663, 0.03231116011738777, 0.0060843718238174915, 0.010939499363303185, 0.029718413949012756, 0.3756438195705414, 0.016353540122509003, 0.03611200675368309, 0.010275124572217464, 0.014534635469317436, 0.013872158713638783, 0.0040468089282512665, 0.003946039825677872, 0.00824730098247528, 0.00675297062844038, 0.022778842598199844, 0.4018118381500244], [0.004669229034334421, 0.02604677341878414, 0.01596035435795784, 0.042996734380722046, 0.11408274620771408, 0.3425053656101227, 0.005179218016564846, 0.007646061480045319, 0.0017051061149686575, 0.0034700767137110233, 0.0010544791584834456, 0.0009811145719140768, 0.0008547144243493676, 0.0013090394204482436, 0.005255553405731916, 0.0600179061293602, 0.36626559495925903], [0.005626289173960686, 0.1111801415681839, 0.04647073894739151, 0.08236653357744217, 0.07928118109703064, 0.29784804582595825, 0.00611494854092598, 0.0029997960664331913, 0.0005157940904609859, 0.0027847609017044306, 0.0006708022556267679, 0.0004921290674246848, 0.00015063077444210649, 0.000541865243576467, 0.0026603550650179386, 0.032369986176490784, 0.3279259204864502], [0.010712155140936375, 0.3056299686431885, 0.15387332439422607, 0.06553152948617935, 0.08848340064287186, 0.15075187385082245, 0.009970422834157944, 0.007849017158150673, 0.001594838104210794, 0.0025056051090359688, 0.0017829311545938253, 0.0010181375546380877, 0.00043897409341298044, 0.0009042700403369963, 0.0032091934699565172, 0.030970167368650436, 0.16477416455745697], [0.009321191348135471, 0.2592308223247528, 0.0742013156414032, 0.1750539094209671, 0.08853522688150406, 0.17207342386245728, 0.004157948307693005, 0.00390601041726768, 0.0004833135171793401, 0.0018395466031506658, 0.0002492375497240573, 0.00030878509278409183, 8.195926056941971e-05, 0.0006246723351068795, 0.0032147145830094814, 0.015365242958068848, 0.1913527399301529], [0.0036372847389429808, 0.005417324136942625, 0.000582063221372664, 0.0010778418509289622, 0.003949346486479044, 0.44936153292655945, 0.001916583743877709, 0.006937703583389521, 0.0014880062080919743, 0.0021857949905097485, 0.0014847615966573358, 0.0018869327614083886, 0.0015653877053409815, 0.004136418923735619, 0.004093483090400696, 0.011670844629406929, 0.49860870838165283], [0.009966672398149967, 0.03945241868495941, 0.03587585687637329, 0.06984475255012512, 0.19421306252479553, 0.28031498193740845, 0.019376978278160095, 0.012134258635342121, 0.0018198523903265595, 0.004274806473404169, 0.003484386717900634, 0.000966412597335875, 0.0007152818143367767, 0.001483783358708024, 0.005875064060091972, 0.019391098991036415, 0.3008103668689728], [0.00916271936148405, 0.020380401983857155, 0.004020430613309145, 0.03993494436144829, 0.1802157759666443, 0.25431954860687256, 0.08051224797964096, 0.03675761818885803, 0.005962752737104893, 0.012112484313547611, 0.007687008008360863, 0.0013048837427049875, 0.0012917376589030027, 0.0029094673227518797, 0.03039085865020752, 0.0364728718996048, 0.27656418085098267], [0.003186228685081005, 0.004239910282194614, 0.00022294555674307048, 0.004766670521348715, 0.015422729775309563, 0.41804394125938416, 0.01347191073000431, 0.02567669376730919, 0.008912059478461742, 0.01602073386311531, 0.006087659392505884, 0.0009545390494167805, 0.0006097995792515576, 0.0015419530682265759, 0.012563951313495636, 0.015025430358946323, 0.45325279235839844], [0.0033368421718478203, 0.005816859658807516, 0.0002549643977545202, 0.002501118928194046, 0.015930699184536934, 0.3944280445575714, 0.018717488273978233, 0.03952006623148918, 0.020245689898729324, 0.02330552414059639, 0.008413683623075485, 0.0016763900639489293, 0.0011680694296956062, 0.0018452404765412211, 0.012448301538825035, 0.018651220947504044, 0.43173980712890625], [0.0037512085400521755, 0.0067479414865374565, 0.0003012923407368362, 0.003564730752259493, 0.02358764037489891, 0.16269159317016602, 0.06985650211572647, 0.22487600147724152, 0.09589719027280807, 0.10714767128229141, 0.05186496675014496, 0.005466029513627291, 0.0021582001354545355, 0.003553583985194564, 0.03954550251364708, 0.020535755902528763, 0.17845416069030762], [0.011860104277729988, 0.020146576687693596, 0.001395444036461413, 0.01220784056931734, 0.027183042839169502, 0.255216509103775, 0.056673724204301834, 0.10346011817455292, 0.028933679684996605, 0.06861232966184616, 0.04812535643577576, 0.009641727432608604, 0.003849110333248973, 0.009121028706431389, 0.03967716917395592, 0.02155587263405323, 0.282340407371521], [0.010573787614703178, 0.011640708893537521, 0.0013849403476342559, 0.005522306077182293, 0.012383108958601952, 0.2489493191242218, 0.04696689173579216, 0.09338436275720596, 0.03819954767823219, 0.07271764427423477, 0.04317425936460495, 0.025008967146277428, 0.021144118160009384, 0.024992551654577255, 0.04700125753879547, 0.016388023272156715, 0.28056830167770386], [0.007564245257526636, 0.017356006428599358, 0.0017715881112962961, 0.00457038264721632, 0.016619808971881866, 0.27710238099098206, 0.024042095988988876, 0.08666171133518219, 0.01877642422914505, 0.032951440662145615, 0.029151063412427902, 0.02299783006310463, 0.042821254581213, 0.01978006400167942, 0.05566839501261711, 0.03767986595630646, 0.30448535084724426], [0.008749565109610558, 0.018948590382933617, 0.0009006994077935815, 0.002355035860091448, 0.008147696033120155, 0.11859093606472015, 0.043210629373788834, 0.2907063663005829, 0.04115533456206322, 0.06710280478000641, 0.10248338431119919, 0.02490907534956932, 0.036847252398729324, 0.02169002778828144, 0.05685657635331154, 0.02524169161915779, 0.13210421800613403], [0.011363101191818714, 0.054327238351106644, 0.009213419631123543, 0.025076719000935555, 0.03891473636031151, 0.35073718428611755, 0.016379142180085182, 0.02554488368332386, 0.005443628877401352, 0.010187423788011074, 0.007032104767858982, 0.005376366898417473, 0.004335195291787386, 0.005221061408519745, 0.017070341855287552, 0.027394933626055717, 0.3863823711872101], [0.00384830916300416, 0.005657290108501911, 0.0006331037729978561, 0.0011373577872291207, 0.004133445210754871, 0.4487379789352417, 0.001978004351258278, 0.007065367419272661, 0.0015435249079018831, 0.002255941042676568, 0.0015081006567925215, 0.001979075139388442, 0.0016481444472447038, 0.00426762318238616, 0.004251431208103895, 0.011933159083127975, 0.4974220395088196]], [[0.016341622918844223, 0.02719985693693161, 0.01919861137866974, 0.018220270052552223, 0.08342975378036499, 0.38038548827171326, 0.0007754954276606441, 0.010455494746565819, 0.0015493003884330392, 0.0037128638941794634, 0.009791417047381401, 0.001986690564081073, 0.003984208684414625, 0.0061568315140903, 0.006735784001648426, 0.004753898363560438, 0.4053223729133606], [0.0029205167666077614, 0.032669033855199814, 0.05714166536927223, 0.13468608260154724, 0.15711523592472076, 0.26244887709617615, 0.02498544752597809, 0.01416677888482809, 0.0014435478951781988, 0.001529152155853808, 0.0006475313566625118, 0.0008438701624982059, 0.0004078491765540093, 0.0019118705531582236, 0.0024867276661098003, 0.01875673234462738, 0.28583914041519165], [0.001512204180471599, 0.022545544430613518, 0.02969730645418167, 0.11137425154447556, 0.21323086321353912, 0.25859370827674866, 0.05274759978055954, 0.003721971996128559, 0.00011048332817154005, 0.00029637973057106137, 0.00021420235862024128, 0.00018218158220406622, 0.00012084365880582482, 0.00045764053356833756, 0.0004781046009156853, 0.011358247138559818, 0.2933584749698639], [0.0018608454847708344, 0.028155451640486717, 0.010707927867770195, 0.021213434636592865, 0.10348837077617645, 0.33727502822875977, 0.09142838418483734, 0.011800822801887989, 0.00035712032695300877, 0.0004177347873337567, 0.00033772591268643737, 0.0005681808106601238, 0.0002803747192956507, 0.0005360277718864381, 0.0007419876055791974, 0.022731924429535866, 0.3680986762046814], [0.002096721436828375, 0.03408925607800484, 0.019108712673187256, 0.032213687896728516, 0.049833036959171295, 0.3895110487937927, 0.016271864995360374, 0.01475535798817873, 0.000620789360255003, 0.0006599643384106457, 0.0008403754327446222, 0.0006974482093937695, 0.0005440177046693861, 0.0012465653708204627, 0.0008354689925909042, 0.004521598573774099, 0.4321540594100952], [0.005291206296533346, 0.0035529746674001217, 0.0020762367639690638, 0.0044511849991977215, 0.012383286841213703, 0.45124033093452454, 0.0015817094827070832, 0.0021208336111158133, 0.0008660426246933639, 0.0011504130670800805, 0.0014065975556150079, 0.0012137778103351593, 0.0011981184361502528, 0.0026905143167823553, 0.0030237012542784214, 0.005381339229643345, 0.5003716945648193], [0.0017772559076547623, 0.0052090599201619625, 0.001150774653069675, 0.0019596631173044443, 0.004744472447782755, 0.34979328513145447, 0.039858732372522354, 0.09479936957359314, 0.00980838481336832, 0.010393369942903519, 0.0036699071060866117, 0.00764220766723156, 0.0022708396427333355, 0.004075774922966957, 0.014175781048834324, 0.0603383332490921, 0.3883328139781952], [0.0063247233629226685, 0.006200484931468964, 0.0020206933841109276, 0.005910214968025684, 0.009568393230438232, 0.2418573498725891, 0.05616576969623566, 0.05632157623767853, 0.030239636078476906, 0.0530196912586689, 0.09592807292938232, 0.024769453331828117, 0.009832805022597313, 0.014336253516376019, 0.05270225927233696, 0.07083994150161743, 0.26396265625953674], [0.004037868231534958, 0.0009641372016631067, 0.0002594602410681546, 0.001735799596644938, 0.002104038605466485, 0.17126679420471191, 0.010331844910979271, 0.011773094534873962, 0.01316381897777319, 0.1946587711572647, 0.29620838165283203, 0.01296317856758833, 0.013840937986969948, 0.017650851979851723, 0.04135093465447426, 0.01647258549928665, 0.19121740758419037], [0.0017765857046470046, 0.002209083642810583, 0.0005169670912437141, 0.0026875960174947977, 0.0023181906435638666, 0.33850449323654175, 0.015308466739952564, 0.012268167920410633, 0.009300594218075275, 0.03355606272816658, 0.05886610969901085, 0.026677843183279037, 0.01847892813384533, 0.027077680453658104, 0.043079257011413574, 0.03229975327849388, 0.3750741183757782], [0.0010730675421655178, 0.0011718455934897065, 0.0005433420883491635, 0.0027164758648723364, 0.0023684711195528507, 0.23142899572849274, 0.009563479572534561, 0.007144153583794832, 0.004058823920786381, 0.0130532868206501, 0.029555508866906166, 0.04958799108862877, 0.05207475274801254, 0.08075188845396042, 0.20515227317810059, 0.05519777163863182, 0.2545578181743622], [0.002224812749773264, 0.007461386267095804, 0.0007854655268602073, 0.005354833789169788, 0.0062718577682971954, 0.14576256275177002, 0.026937777176499367, 0.015695292502641678, 0.0039029945619404316, 0.030556539073586464, 0.0209672711789608, 0.013352709822356701, 0.04715227708220482, 0.11995958536863327, 0.32100337743759155, 0.06910090148448944, 0.16351044178009033], [0.002667998895049095, 0.010076879523694515, 0.0004876776074524969, 0.0022620868403464556, 0.002965739695355296, 0.2271018624305725, 0.01653064414858818, 0.02235334739089012, 0.00171704834792763, 0.01892070099711418, 0.00771109526976943, 0.0072537134401500225, 0.025134334340691566, 0.09312014281749725, 0.22052407264709473, 0.08318749815225601, 0.2579851448535919], [0.0032017333433032036, 0.007227545138448477, 0.0005752744036726654, 0.0008777984185144305, 0.0030036454554647207, 0.37760934233665466, 0.00928395427763462, 0.026304826140403748, 0.0022979562636464834, 0.005935438442975283, 0.0030455824453383684, 0.005526515189558268, 0.007295764982700348, 0.01229715347290039, 0.037231918424367905, 0.07991176843643188, 0.41837364435195923], [0.0022498341277241707, 0.01956709660589695, 0.0017280536703765392, 0.0038607821334153414, 0.007445657160133123, 0.3582489490509033, 0.020495392382144928, 0.0520317368209362, 0.003608846804127097, 0.0071327644400298595, 0.004837716463953257, 0.0068014333955943584, 0.005987899843603373, 0.012159791775047779, 0.026020968332886696, 0.06774523854255676, 0.4000779092311859], [0.0015251763397827744, 0.05081665515899658, 0.012903283350169659, 0.017427459359169006, 0.014158054254949093, 0.34188440442085266, 0.06978010386228561, 0.05271865800023079, 0.003504192689433694, 0.004156964831054211, 0.0009290194720961154, 0.002883228939026594, 0.0013040232006460428, 0.004094937350600958, 0.004686961881816387, 0.03855528682470322, 0.3786716163158417], [0.005161878652870655, 0.003584243357181549, 0.0020525213330984116, 0.004342056345194578, 0.012004921212792397, 0.45167428255081177, 0.0015994544373825192, 0.002151474356651306, 0.0008528910693712533, 0.0011238751467317343, 0.001351119950413704, 0.0012139402097091079, 0.001168507500551641, 0.0026230448856949806, 0.0029554772190749645, 0.005425856914371252, 0.5007146000862122]], [[0.03977227210998535, 0.007421145681291819, 0.0023518367670476437, 0.008504215627908707, 0.00018339676898904145, 0.009421526454389095, 0.06200069934129715, 0.17912426590919495, 0.0016040626214817166, 0.26860567927360535, 0.0006596980383619666, 0.008024330250918865, 0.010955912992358208, 0.02648373693227768, 0.3236154615879059, 0.04105432331562042, 0.010217367671430111], [0.004816192667931318, 0.011410130187869072, 0.011923141777515411, 0.0027992650866508484, 0.011315610259771347, 0.37672343850135803, 0.010881176218390465, 0.023009220138192177, 0.023496735841035843, 0.02223365753889084, 0.004269727505743504, 0.004018120467662811, 0.004583772737532854, 0.003942160401493311, 0.01128687895834446, 0.05238358676433563, 0.4209071397781372], [0.001271316665224731, 0.06450509279966354, 0.05040263384580612, 0.0117358872666955, 0.048671428114175797, 0.2919841408729553, 0.015290933661162853, 0.019235759973526, 0.012489551678299904, 0.006412081886082888, 0.005513415206223726, 0.005118173081427813, 0.0029226886108517647, 0.016374660655856133, 0.009581570513546467, 0.11251694709062576, 0.32597362995147705], [0.00188052945304662, 0.017156468704342842, 0.03862198442220688, 0.01205472368746996, 0.09277527779340744, 0.3080485165119171, 0.01293917279690504, 0.010912453755736351, 0.008016047067940235, 0.008459010161459446, 0.008402431383728981, 0.003000801894813776, 0.002972529735416174, 0.00794847123324871, 0.021720578894019127, 0.1052265539765358, 0.3398644030094147], [0.017691578716039658, 0.009203127585351467, 0.009721123613417149, 0.012800187803804874, 0.080718494951725, 0.19364486634731293, 0.08711777627468109, 0.04866427928209305, 0.00792727805674076, 0.014778216369450092, 0.009822559542953968, 0.00530974892899394, 0.00859890878200531, 0.017862830311059952, 0.08215629309415817, 0.17877866327762604, 0.21520406007766724], [0.0020056716166436672, 0.01291673257946968, 0.0028422572650015354, 0.002438918687403202, 0.0018828780157491565, 0.41330647468566895, 0.006914142053574324, 0.0075041926465928555, 0.001395969302393496, 0.0022729297634214163, 0.0044302865862846375, 0.003669781843200326, 0.004684313666075468, 0.015122033655643463, 0.008929327130317688, 0.03028741106390953, 0.4793965816497803], [0.008084574714303017, 0.12863563001155853, 0.009062865749001503, 0.0067621273919939995, 0.026765476912260056, 0.2965068221092224, 0.011591463349759579, 0.016715750098228455, 0.006562290713191032, 0.007319207768887281, 0.0021824261639267206, 0.003869728883728385, 0.0014639762230217457, 0.016040850430727005, 0.02098138816654682, 0.11278220266103745, 0.3246731460094452], [0.00783130619674921, 0.03512607887387276, 0.026380209252238274, 0.007102136500179768, 0.057968005537986755, 0.27139246463775635, 0.020080847665667534, 0.058689799159765244, 0.037908975034952164, 0.03308279812335968, 0.00873807817697525, 0.011098094284534454, 0.005930105224251747, 0.006694085896015167, 0.016453605145215988, 0.10124371200799942, 0.29427966475486755], [0.01170581765472889, 0.04288090020418167, 0.013425254262983799, 0.008071226067841053, 0.08156900852918625, 0.25961366295814514, 0.0063381739892065525, 0.033832989633083344, 0.020842932164669037, 0.021489406004548073, 0.006050300318747759, 0.010926206596195698, 0.0035362569615244865, 0.013220448978245258, 0.01966000720858574, 0.16404631733894348, 0.28279104828834534], [0.003039053175598383, 0.0070158676244318485, 0.00434153201058507, 0.0007746839546598494, 0.026394248008728027, 0.3952069878578186, 0.002818067092448473, 0.006116052158176899, 0.005194010678678751, 0.012035264633595943, 0.008555394597351551, 0.002828349359333515, 0.0019608319271355867, 0.002584305126219988, 0.0037254400085657835, 0.07045682519674301, 0.44695308804512024], [0.0018341856775805354, 0.05026697367429733, 0.006369220092892647, 0.0037145945243537426, 0.05643777176737785, 0.3419512212276459, 0.006814794614911079, 0.009009321220219135, 0.003728436306118965, 0.0020994716323912144, 0.025116395205259323, 0.004096571821719408, 0.0026193351950496435, 0.013529839925467968, 0.0038814847357571125, 0.08271672576665878, 0.3858136832714081], [0.002514295279979706, 0.058113791048526764, 0.02149585448205471, 0.012446046806871891, 0.026093602180480957, 0.26787737011909485, 0.020189419388771057, 0.031647127121686935, 0.010417113080620766, 0.0097267534583807, 0.012574687600135803, 0.024166055023670197, 0.00680637639015913, 0.0450437031686306, 0.026167765259742737, 0.12478601187467575, 0.2999340295791626], [0.0019250668119639158, 0.016474561765789986, 0.008295862935483456, 0.005320927128195763, 0.0103441858664155, 0.3495588004589081, 0.0067882295697927475, 0.014554907567799091, 0.006238983012735844, 0.004540208261460066, 0.012906164862215519, 0.016727622598409653, 0.012270319275557995, 0.038440607488155365, 0.03465043753385544, 0.06055230274796486, 0.40041089057922363], [0.012503697536885738, 0.001570604625158012, 0.0070843808352947235, 0.0033749931026250124, 0.014323930256068707, 0.2919022738933563, 0.027299655601382256, 0.015691382810473442, 0.017509538680315018, 0.007232319563627243, 0.01425120048224926, 0.023656364530324936, 0.02230626344680786, 0.024821940809488297, 0.041103873401880264, 0.13797123730182648, 0.3373963534832001], [0.006133626215159893, 0.005992963910102844, 0.005731905810534954, 0.0016291845822706819, 0.01968415267765522, 0.1579407900571823, 0.018861254677176476, 0.04832529276609421, 0.009953834116458893, 0.016283908858895302, 0.009612022899091244, 0.0168825164437294, 0.01392805390059948, 0.015742287039756775, 0.06270264089107513, 0.41219887137413025, 0.17839659750461578], [0.02351122908294201, 0.013471840880811214, 0.011775960214436054, 0.008610757067799568, 0.2026633769273758, 0.1669004261493683, 0.009738420136272907, 0.021964242681860924, 0.00677597988396883, 0.011204834096133709, 0.0021595777943730354, 0.005451116245239973, 0.002789439633488655, 0.010404136963188648, 0.03565514460206032, 0.28475046157836914, 0.18217304348945618], [0.0019722653087228537, 0.01237864326685667, 0.002740855561569333, 0.0022993150632828474, 0.0018680852372199297, 0.41494840383529663, 0.006597211584448814, 0.007193869445472956, 0.0013671420747414231, 0.0021406400483101606, 0.004230852704495192, 0.003508547320961952, 0.0043705846183001995, 0.014459701254963875, 0.008496071211993694, 0.029693949967622757, 0.48173385858535767]], [[0.0034857382997870445, 0.001073125982657075, 5.991301077301614e-05, 0.002749743638560176, 0.00014532353088725358, 0.0011705410433933139, 0.02969464100897312, 0.0876680240035057, 0.01232711598277092, 0.30689772963523865, 0.0034637099597603083, 0.007471045479178429, 0.008415314368903637, 0.029474640265107155, 0.3203085958957672, 0.18429243564605713, 0.0013022978091612458], [0.011940881609916687, 0.030847672373056412, 0.053600821644067764, 0.027828114107251167, 0.048116281628608704, 0.26432907581329346, 0.06874247640371323, 0.03247946500778198, 0.01975381001830101, 0.009269604459404945, 0.027161961421370506, 0.020175529643893242, 0.010748914442956448, 0.012733214534819126, 0.010009437799453735, 0.058287497609853745, 0.29397526383399963], [0.01312837190926075, 0.06969049572944641, 0.10750187188386917, 0.12324967980384827, 0.187277689576149, 0.13674122095108032, 0.04499031975865364, 0.04301311448216438, 0.014139048755168915, 0.008170885033905506, 0.012492867186665535, 0.012626981362700462, 0.008176034316420555, 0.01309499703347683, 0.019430100917816162, 0.03385750576853752, 0.1524188369512558], [0.007465899456292391, 0.039565734565258026, 0.037029847502708435, 0.03826941177248955, 0.060648150742053986, 0.21191342175006866, 0.06163501739501953, 0.11943377554416656, 0.015229492448270321, 0.018045062199234962, 0.018502581864595413, 0.017341259866952896, 0.015065514482557774, 0.014123242348432541, 0.023160383105278015, 0.060625653713941574, 0.2419455647468567], [0.023352637887001038, 0.009499715641140938, 0.002633030992001295, 0.022466367110610008, 0.016727741807699203, 0.12033350765705109, 0.027575679123401642, 0.08275126665830612, 0.027281008660793304, 0.07980318367481232, 0.018645644187927246, 0.016115212813019753, 0.019674774259328842, 0.08804759383201599, 0.12715007364749908, 0.18326804041862488, 0.13467445969581604], [0.00328277749940753, 0.005679896101355553, 0.003526862245053053, 0.004532482009381056, 0.0040018740110099316, 0.4194706380367279, 0.010602778755128384, 0.006226246245205402, 0.0034415796399116516, 0.003145033959299326, 0.0017281147884204984, 0.003339858725667, 0.004057620652019978, 0.004980362951755524, 0.006222815718501806, 0.018224826082587242, 0.49753621220588684], [0.0042731873691082, 0.0364549420773983, 0.04975600913167, 0.04152713343501091, 0.03968200460076332, 0.16250427067279816, 0.11272743344306946, 0.09325240552425385, 0.025539277121424675, 0.016056420281529427, 0.04417062923312187, 0.02693520113825798, 0.02445186674594879, 0.04523083567619324, 0.03440408036112785, 0.06105806306004524, 0.18197627365589142], [0.009878507815301418, 0.011491572484374046, 0.04820448160171509, 0.013396798633038998, 0.025492804124951363, 0.2601567506790161, 0.0583035834133625, 0.03919139876961708, 0.021262427791953087, 0.012874308973550797, 0.05235239118337631, 0.03453388065099716, 0.01984420418739319, 0.031861014664173126, 0.019749103114008904, 0.05896655470132828, 0.28244030475616455], [0.006629250477999449, 0.04353249818086624, 0.019350556656718254, 0.021019788458943367, 0.02889118902385235, 0.15994392335414886, 0.03479153662919998, 0.0752607062458992, 0.0381070151925087, 0.018731683492660522, 0.035021085292100906, 0.03459814935922623, 0.024840453639626503, 0.16084526479244232, 0.05233257636427879, 0.06742046028375626, 0.178683802485466], [0.0014396760379895568, 0.0073150754906237125, 0.03323246166110039, 0.006955915130674839, 0.01929936744272709, 0.34374481439590454, 0.023935098201036453, 0.033446379005908966, 0.00940023921430111, 0.00476973969489336, 0.025957126170396805, 0.02260703034698963, 0.018604476004838943, 0.02320057898759842, 0.01724184677004814, 0.022841917350888252, 0.38600826263427734], [0.0024810878094285727, 0.024837065488100052, 0.02507353015244007, 0.0035593858920037746, 0.02536015771329403, 0.30867865681648254, 0.01917998492717743, 0.024708341807127, 0.01166212372481823, 0.008270936086773872, 0.05614371970295906, 0.04052519425749779, 0.01407593209296465, 0.030314261093735695, 0.028712229803204536, 0.032069649547338486, 0.3443477153778076], [0.004732602275907993, 0.09689351171255112, 0.04342124983668327, 0.024004604667425156, 0.06859015673398972, 0.15688368678092957, 0.052311498671770096, 0.07762155681848526, 0.017293380573391914, 0.009936768561601639, 0.019803058356046677, 0.028570540249347687, 0.030626075342297554, 0.07574360817670822, 0.05444210767745972, 0.06474357843399048, 0.1743820458650589], [0.0013278461992740631, 0.011351189576089382, 0.014411239884793758, 0.002491716295480728, 0.008771908469498158, 0.28860029578208923, 0.03302289918065071, 0.06366103142499924, 0.015699312090873718, 0.008449813351035118, 0.017144741490483284, 0.03614560887217522, 0.030225543305277824, 0.05440365895628929, 0.026375385001301765, 0.05687900260090828, 0.3310387432575226], [0.0025102836079895496, 0.0039437562227249146, 0.015574281103909016, 0.0027845902368426323, 0.01121150329709053, 0.3401525616645813, 0.017105212435126305, 0.024598823860287666, 0.015850365161895752, 0.0051694451831281185, 0.027597103267908096, 0.03674578666687012, 0.03545040637254715, 0.03237290307879448, 0.02228352054953575, 0.024485956877470016, 0.3821634352207184], [0.002700488083064556, 0.0046656131744384766, 0.02060377039015293, 0.004115220624953508, 0.008752026595175266, 0.32044556736946106, 0.045141469687223434, 0.04189132899045944, 0.012688725255429745, 0.009295924566686153, 0.02212938666343689, 0.034217845648527145, 0.031050074845552444, 0.028201522305607796, 0.021166644990444183, 0.03262756019830704, 0.36030691862106323], [0.007689155172556639, 0.03030511364340782, 0.04155603051185608, 0.04666053503751755, 0.05603818595409393, 0.16106131672859192, 0.11315456032752991, 0.07349123060703278, 0.01312324870377779, 0.007818820886313915, 0.01816728338599205, 0.015600600279867649, 0.040980264544487, 0.09626325219869614, 0.031509511172771454, 0.07197576016187668, 0.174605131149292], [0.0031355805695056915, 0.005599671509116888, 0.0034482835326343775, 0.004314611200243235, 0.004006987903267145, 0.42089298367500305, 0.010133747011423111, 0.0059994119219481945, 0.003240991150960326, 0.0028961391653865576, 0.0016866291407495737, 0.003274246584624052, 0.003949384205043316, 0.004862749949097633, 0.005958770401775837, 0.017415644600987434, 0.4991842210292816]], [[0.016887297853827477, 0.07453306019306183, 0.5270455479621887, 0.0387762151658535, 0.019722336903214455, 0.009074505418539047, 0.10175413638353348, 0.043731752783060074, 0.042679596692323685, 0.014733674935996532, 0.01721758022904396, 0.012329811230301857, 0.0014394063036888838, 0.007112356834113598, 0.014832863584160805, 0.04861236736178398, 0.009517520666122437], [0.0009182601352222264, 0.010962128639221191, 0.27066054940223694, 0.0118385199457407, 0.005741646979004145, 0.21181020140647888, 0.02064516581594944, 0.04853282868862152, 0.12246744334697723, 0.005695205181837082, 0.0037801817525178194, 0.03262624517083168, 0.0010224158177152276, 0.0019137617200613022, 0.0005579153657890856, 0.018749073147773743, 0.2320784330368042], [0.0019062792416661978, 0.0035188263282179832, 0.02032744139432907, 0.6187322735786438, 0.004273565951734781, 0.1563563346862793, 0.0022425607312470675, 0.0014076674124225974, 0.0011944803409278393, 0.004853151738643646, 0.0008070593466982245, 0.0008581288275308907, 0.0015516293933615088, 0.0018642294453456998, 0.0005869410233572125, 0.004318419378250837, 0.17520099878311157], [0.0020715310238301754, 0.004070967901498079, 0.003883494297042489, 0.0036591466050595045, 0.4748710095882416, 0.12332583963871002, 0.0435672402381897, 0.002942122519016266, 0.0010859103640541434, 0.0023597562685608864, 0.0014606773620471358, 0.0005938953254371881, 0.00019353846437297761, 0.00025935060693882406, 0.0011019910452887416, 0.1999640017747879, 0.13458950817584991], [0.03927247226238251, 0.07710937410593033, 0.010201101191341877, 0.025328729301691055, 0.11299058049917221, 0.1753547638654709, 0.22764578461647034, 0.029919371008872986, 0.004536844789981842, 0.014086002483963966, 0.0021546995267271996, 0.003836086019873619, 0.002590932883322239, 0.006898142863065004, 0.0036861123517155647, 0.07280020415782928, 0.19158877432346344], [0.003514271229505539, 0.015145903453230858, 0.0025378973223268986, 0.006584004033356905, 0.0246095210313797, 0.42350706458091736, 0.007857699878513813, 0.009352716617286205, 0.0024406302254647017, 0.005054427310824394, 0.0031993240118026733, 0.002314938697963953, 0.003959733992815018, 0.003384210169315338, 0.0075936028733849525, 0.026580866426229477, 0.45236316323280334], [0.001770500442944467, 0.03561278432607651, 0.01979166455566883, 0.005021194461733103, 0.012177576310932636, 0.21658632159233093, 0.04844078794121742, 0.3317459225654602, 0.03182580694556236, 0.002561588305979967, 0.0020198733545839787, 0.026437735185027122, 0.003749030875042081, 0.014714893884956837, 0.005058839451521635, 0.00834539532661438, 0.23414000868797302], [0.0018331914907321334, 0.0029877196066081524, 0.043447982519865036, 0.0039332653395831585, 0.0033221840858459473, 0.13640959560871124, 0.005552501417696476, 0.039951276034116745, 0.482950359582901, 0.02929185889661312, 0.012022326700389385, 0.06624924391508102, 0.0015955313574522734, 0.006044748704880476, 0.001802929793484509, 0.015556384809315205, 0.14704900979995728], [9.565056825522333e-05, 0.00030618341406807303, 0.00023708355729468167, 0.0005669868551194668, 3.896072303177789e-05, 0.020590301603078842, 0.000734778877813369, 0.00023705553030595183, 0.003074156353250146, 0.9469141364097595, 0.0032990998588502407, 0.0001847183593781665, 0.00023858484928496182, 8.291764243040234e-05, 0.00013310639769770205, 0.00010004457726608962, 0.023166244849562645], [0.0006359126418828964, 0.0009059884469024837, 0.005907674320042133, 0.0009514269768260419, 0.0018245781539008021, 0.19573645293712616, 0.0038505923002958298, 0.005621122661978006, 0.015604428946971893, 0.0419718436896801, 0.4939635097980499, 0.005589972250163555, 0.0004217888927087188, 0.0004614800272975117, 0.0015334237832576036, 0.006756765767931938, 0.21826297044754028], [0.0036099941935390234, 0.0004968925495631993, 0.003772326512262225, 0.008141218684613705, 0.005280856043100357, 0.3747767210006714, 0.0021698158234357834, 0.014012685976922512, 0.026808859780430794, 0.0038950119633227587, 0.05462520197033882, 0.07777901738882065, 0.0016686999006196856, 0.00677552679553628, 0.001041376031935215, 0.0041864304803311825, 0.41095924377441406], [0.0018837378593161702, 0.0008533549262210727, 0.004156768787652254, 0.013461606577038765, 0.0009376024827361107, 0.3541499972343445, 0.0006306542782112956, 0.0005329998093657196, 0.0019665563013404608, 0.0031266966834664345, 0.0011163693852722645, 0.021379802376031876, 0.18163511157035828, 0.004039150197058916, 0.00046822443255223334, 0.001423395937308669, 0.4082380533218384], [0.00011637103307293728, 0.0005685702781192958, 0.00020229844085406512, 0.006050011143088341, 0.0008190728258341551, 0.18611253798007965, 0.0003484136250335723, 0.00033886366873048246, 0.0007434599683620036, 0.0002804305113386363, 0.0002155602996936068, 0.0005299120093695819, 0.0012218799674883485, 0.5640639662742615, 0.016562633216381073, 0.002113392809405923, 0.21971261501312256], [0.00022936744790058583, 0.0020126276649534702, 0.0008693713461980224, 0.003874231828376651, 0.003981504589319229, 0.3201264441013336, 0.001190785551443696, 0.0019383466569706798, 0.0008523695869371295, 0.001474830904044211, 9.669820428825915e-05, 0.0008785029640421271, 0.0036170610692352057, 0.016864266246557236, 0.26127222180366516, 0.014330408535897732, 0.36639097332954407], [0.0017021058592945337, 0.021014094352722168, 0.004690501838922501, 0.0034168721176683903, 0.1409687101840973, 0.18413124978542328, 0.011140158399939537, 0.018121540546417236, 0.0034075393341481686, 0.0016364339971914887, 0.0031851744279265404, 0.004352455027401447, 0.0007585656130686402, 0.0021935165859758854, 0.018659770488739014, 0.38630014657974243, 0.19432109594345093], [0.0031019148882478476, 0.12521879374980927, 0.0074949711561203, 0.016481885686516762, 0.0526643805205822, 0.2571607232093811, 0.09655258804559708, 0.045572325587272644, 0.004955659620463848, 0.004380909726023674, 0.0008213712135329843, 0.0051997629925608635, 0.001472262549214065, 0.008660992607474327, 0.005150974728167057, 0.0864049643278122, 0.27870550751686096], [0.003613709704950452, 0.014890032820403576, 0.002589176408946514, 0.00653419503942132, 0.024587200954556465, 0.42263782024383545, 0.00807299092411995, 0.009222346358001232, 0.002532386686652899, 0.004872581921517849, 0.0031506370287388563, 0.0024740942753851414, 0.004211193881928921, 0.003678442444652319, 0.007885890081524849, 0.026606619358062744, 0.45244064927101135]], [[0.004991566296666861, 0.0049356017261743546, 0.011522180400788784, 0.040503643453121185, 0.2357499897480011, 0.18529821932315826, 0.036609213799238205, 0.04691228270530701, 0.025473179295659065, 0.05260701850056648, 0.11760687828063965, 0.002992884488776326, 0.0010869238758459687, 0.0012537733418866992, 0.004687718115746975, 0.03130372241139412, 0.1964651197195053], [0.004635844845324755, 0.008528118021786213, 0.0009734176564961672, 0.0032561111729592085, 0.11536747217178345, 0.30264899134635925, 0.021073950454592705, 0.005784326698631048, 0.0012639239430427551, 0.0019822667818516493, 0.0020261439494788647, 0.00030083677847869694, 0.00013208728341851383, 0.00040822813753038645, 0.0034615471959114075, 0.1871732920408249, 0.34098348021507263], [0.0006548382807523012, 0.10350505262613297, 0.004596821032464504, 0.0024479615967720747, 0.007009575609117746, 0.4017286002635956, 0.0037384741008281708, 0.009827250614762306, 0.0010374765843153, 0.0010251686908304691, 0.00026921890093944967, 0.0002635651908349246, 0.00033454690128564835, 0.0007364521734416485, 0.0006480961455963552, 0.006294141057878733, 0.45588284730911255], [0.0009183362708427012, 0.013478630222380161, 0.13093744218349457, 0.015910401940345764, 0.01832004077732563, 0.3481948673725128, 0.013083902187645435, 0.011352501809597015, 0.011518251150846481, 0.00573828024789691, 0.0010327387135475874, 0.007656866684556007, 0.002930278889834881, 0.007392508909106255, 0.0012037360575050116, 0.017969798296689987, 0.39236119389533997], [0.00032487683347426355, 0.0011063951533287764, 0.001131655415520072, 0.06863588839769363, 0.048043143004179, 0.4062601625919342, 0.002235045889392495, 0.0004977911594323814, 0.0003745714493561536, 0.0022913608700037003, 0.00044110961607657373, 0.0002953820221591741, 0.00037704079295508564, 0.0005019557429477572, 0.002257823245599866, 0.009970784187316895, 0.45525500178337097], [0.0042042541317641735, 0.00460637966170907, 0.0012228655396029353, 0.0052454364486038685, 0.009554075077176094, 0.44540777802467346, 0.0044004651717841625, 0.0043676551431417465, 0.0017489849124103785, 0.0022502196952700615, 0.0009946493664756417, 0.002085444051772356, 0.00648534344509244, 0.005599749740213156, 0.0054164002649486065, 0.009615984745323658, 0.4867943227291107], [0.0009704098920337856, 0.0021253468003124, 0.0017334065632894635, 0.02815515734255314, 0.3101390302181244, 0.24590855836868286, 0.02320198155939579, 0.009024697355926037, 0.0012408619513735175, 0.0010409557726234198, 0.002575690159574151, 0.0015233538579195738, 0.000462029071059078, 0.0009109591483138502, 0.004563093651086092, 0.08990219235420227, 0.2765222489833832], [0.007550531532615423, 0.03385873883962631, 0.0012796891387552023, 0.003168631112203002, 0.07008635252714157, 0.28903937339782715, 0.1642882376909256, 0.030706141144037247, 0.00525639345869422, 0.004139219876378775, 0.006121319252997637, 0.0008733815047889948, 0.000620762468315661, 0.004433709662407637, 0.008713997900485992, 0.04396631568670273, 0.3258971571922302], [0.0004227175086271018, 0.01297078188508749, 0.0025791553780436516, 0.000200920389033854, 0.009077095426619053, 0.3991083800792694, 0.010367312468588352, 0.09443584829568863, 0.007217461708933115, 0.0011712700361385942, 0.0005714588914997876, 0.0005518239340744913, 0.0001189806207548827, 0.00013083200610708445, 0.0002531853679101914, 0.008403271436691284, 0.4524194300174713], [0.000750402919948101, 0.00203557126224041, 0.004338526166975498, 0.00043181347427889705, 0.005125510971993208, 0.28425562381744385, 0.0034531953278928995, 0.008875024504959583, 0.353859007358551, 0.011062408797442913, 0.0008567284094169736, 0.0016781064914539456, 0.00017130025662481785, 0.000940183992497623, 0.0007371809333562851, 0.005306305829435587, 0.31612297892570496], [0.00034886752837337554, 0.0009186448878608644, 0.0004453264700714499, 0.0006777332746423781, 0.0028406300116330385, 0.43199422955513, 0.0008152593509294093, 0.0015211026184260845, 0.021561112254858017, 0.060326382517814636, 0.01498207077383995, 0.0004699995624832809, 0.0003526697983033955, 7.195217767730355e-05, 0.0008984662126749754, 0.0019710443448275328, 0.45980459451675415], [0.001099355984479189, 0.01158134639263153, 0.0032674111425876617, 0.002164857229217887, 0.014262516051530838, 0.39565664529800415, 0.03307173773646355, 0.019218338653445244, 0.0021195057779550552, 0.0026616191025823355, 0.03909701108932495, 0.009291408583521843, 0.004593925550580025, 0.0015487880446016788, 0.0019512276630848646, 0.009733843617141247, 0.4486805498600006], [0.0003188763512298465, 0.0006482862518168986, 0.03592238202691078, 0.0024299784563481808, 0.0033871971536427736, 0.2539026141166687, 0.0036064470186829567, 0.00316385505720973, 0.005365937016904354, 0.0020419806241989136, 0.006465874146670103, 0.37322333455085754, 0.010663392953574657, 0.0057784211821854115, 0.00037147197872400284, 0.0029787386301904917, 0.2897311747074127], [0.0017979028634727001, 0.005776162259280682, 0.0024430439807474613, 0.0018308875150978565, 0.007909765467047691, 0.4067133963108063, 0.0088022006675601, 0.007366798352450132, 0.008109304122626781, 0.015447819605469704, 0.018797144293785095, 0.007656971458345652, 0.034030720591545105, 0.001710825483314693, 0.002024120884016156, 0.009266422130167484, 0.4603164792060852], [0.0008602349553257227, 0.001422042609192431, 0.0003501235041767359, 0.0017290939576923847, 0.0037263487465679646, 0.3903194069862366, 0.004076830111443996, 0.0005878772935830057, 0.002041835570707917, 0.003555908566340804, 0.0007420028559863567, 0.0009835464879870415, 0.009098052978515625, 0.11899040639400482, 0.016208834946155548, 0.005642758682370186, 0.439664751291275], [0.0009434872190468013, 0.004721757024526596, 0.0012990375980734825, 0.008422842249274254, 0.02890973538160324, 0.41325101256370544, 0.002559394109994173, 0.00484714237973094, 0.0010113388998433948, 0.003869883716106415, 0.0007158401422202587, 0.0005330370040610433, 0.0017462073592469096, 0.0018408691976219416, 0.03829048573970795, 0.026582995429635048, 0.460455060005188], [0.004354116972535849, 0.004725533537566662, 0.001266402774490416, 0.005103004164993763, 0.009742103517055511, 0.44460731744766235, 0.004524897783994675, 0.0046775490045547485, 0.0018298671348020434, 0.0022653290070593357, 0.0009797501843422651, 0.0021483057644218206, 0.0065329791978001595, 0.005601209122687578, 0.005468710791319609, 0.009866435080766678, 0.4863065481185913]], [[0.03354061394929886, 0.036546628922224045, 0.020028086379170418, 0.06273370236158371, 0.08954088389873505, 0.28640565276145935, 0.018786603584885597, 0.013588810339570045, 0.015361332334578037, 0.028991950675845146, 0.003517379052937031, 0.0061401184648275375, 0.005048149731010199, 0.006892459467053413, 0.009133128449320793, 0.04058646410703659, 0.32315802574157715], [0.0012207769323140383, 0.2386137694120407, 0.004923317115753889, 0.03135829418897629, 0.03311686962842941, 0.28681206703186035, 0.00621413579210639, 0.010645049624145031, 0.0007071614963933825, 0.006012382917106152, 0.0030166669748723507, 0.0008638384169898927, 0.0006249319994822145, 0.001730648335069418, 0.0036044211592525244, 0.03972260281443596, 0.33081310987472534], [0.0006485965568572283, 0.011603505350649357, 0.004824628587812185, 0.07442351430654526, 0.023138029500842094, 0.3886205852031708, 0.007124986033886671, 0.0013744650641456246, 0.00020983639115002006, 0.0012008127523586154, 0.0003733707999344915, 0.0003175510501023382, 0.0008439093362540007, 0.000517646549269557, 0.0006210384890437126, 0.012255060486495495, 0.4719025790691376], [0.000828367134090513, 0.0451924093067646, 0.00366321112960577, 0.10411512106657028, 0.027565721422433853, 0.3543318212032318, 0.0054466514848172665, 0.0016117645427584648, 0.0004172292537987232, 0.0011077896924689412, 0.00020636242697946727, 0.0007335000555031002, 0.0008197671850211918, 0.001278101117350161, 0.0027333302423357964, 0.022853145375847816, 0.4270957112312317], [0.0012118512531742454, 0.040424738079309464, 0.0033015236258506775, 0.1224566176533699, 0.04619430750608444, 0.3472755551338196, 0.0047020153142511845, 0.004573083948343992, 0.00033884934964589775, 0.0022144524846225977, 0.0008063974673859775, 0.0006122675840742886, 0.0014437779318541288, 0.0011204429902136326, 0.0017525850562378764, 0.017025714740157127, 0.4045458734035492], [0.00012304718256928027, 0.0009142312337644398, 0.0002043846616288647, 0.0014871824532747269, 0.0011782917426899076, 0.4678395986557007, 0.00030852126656100154, 0.00016034182044677436, 9.056367707671598e-05, 0.00037185288965702057, 0.00016036354645621032, 0.00018950682715512812, 0.0004555176419671625, 0.00035119184758514166, 0.00041456293547526, 0.0017558529507368803, 0.5239949822425842], [0.0013324907049536705, 0.034471556544303894, 0.004487169906497002, 0.04811990633606911, 0.042968474328517914, 0.36374133825302124, 0.027832381427288055, 0.005605192855000496, 0.0008967333124019206, 0.00263822334818542, 0.0032977305818349123, 0.001644515316002071, 0.0015557423466816545, 0.001460324740037322, 0.0024108889047056437, 0.03278857097029686, 0.42474883794784546], [0.003283838042989373, 0.1729709655046463, 0.0017946193693205714, 0.049957431852817535, 0.0279829241335392, 0.2929126024246216, 0.008676056750118732, 0.017117038369178772, 0.0011616696137934923, 0.02007831446826458, 0.011307014152407646, 0.0019594186451286077, 0.0044142198748886585, 0.0067613511346280575, 0.010947105474770069, 0.03629264980554581, 0.3323827385902405], [0.0018937319982796907, 0.008718986995518208, 0.0004691554931923747, 0.011207311414182186, 0.007506244815886021, 0.386824369430542, 0.006320000160485506, 0.0029884628020226955, 0.0026624754536896944, 0.06969994306564331, 0.012987349182367325, 0.0012804091675207019, 0.009259771555662155, 0.0031899255700409412, 0.008855585008859634, 0.012899136170744896, 0.45323723554611206], [0.0004325018380768597, 0.007398161571472883, 0.0008884607814252377, 0.01231873407959938, 0.006265450734645128, 0.39179837703704834, 0.008649006485939026, 0.002825862029567361, 0.00823664665222168, 0.059206295758485794, 0.004627130925655365, 0.0035112774930894375, 0.006227209698408842, 0.004926894325762987, 0.011925791390240192, 0.020009271800518036, 0.45075294375419617], [0.0018074957188218832, 0.0012975248973816633, 0.0014124803710728884, 0.01471701916307211, 0.003148663090541959, 0.2503879964351654, 0.022276150062680244, 0.013745293952524662, 0.024452397599816322, 0.24869084358215332, 0.05482543632388115, 0.014142246916890144, 0.028510112315416336, 0.004855050239712, 0.019676921889185905, 0.012195507064461708, 0.2838588356971741], [0.0003477107093203813, 0.0011482181726023555, 0.0005061561823822558, 0.011391806416213512, 0.0036437478847801685, 0.41396239399909973, 0.0033227677922695875, 0.001320284092798829, 0.0015677183400839567, 0.009539354592561722, 0.00749291991814971, 0.005114161409437656, 0.02867458015680313, 0.00432346248999238, 0.008334130048751831, 0.011951839551329613, 0.48735862970352173], [0.00016556143236812204, 0.0020551925990730524, 0.0003084753407165408, 0.011506902985274792, 0.0018144415225833654, 0.379891037940979, 0.0026168145705014467, 0.0015160472830757499, 0.0021179295144975185, 0.0059585715644061565, 0.002741497242823243, 0.014322894625365734, 0.03813719004392624, 0.022283101454377174, 0.0410185270011425, 0.020106518641114235, 0.4534393846988678], [0.0018020716961473227, 0.053242601454257965, 0.0004924543900415301, 0.017670748755335808, 0.004669290501624346, 0.39328259229660034, 0.0016227316809818149, 0.0026554802898317575, 0.000982404570095241, 0.005043122451752424, 0.0008326077368110418, 0.0021763374097645283, 0.004995796829462051, 0.009079515933990479, 0.008143643848598003, 0.017892010509967804, 0.47541654109954834], [0.0014416102785617113, 0.024738721549510956, 0.00040829050703905523, 0.03980890288949013, 0.006931872572749853, 0.3562738001346588, 0.005408498924225569, 0.00457193935289979, 0.0023314543068408966, 0.017850829288363457, 0.005012141074985266, 0.004706456791609526, 0.016349051147699356, 0.0285111702978611, 0.04075140878558159, 0.022546805441379547, 0.42235711216926575], [0.0010222067357972264, 0.029425859451293945, 0.0032610853668302298, 0.09234442561864853, 0.020083913579583168, 0.3769485056400299, 0.007886138744652271, 0.007537794765084982, 0.0009487615898251534, 0.00575308408588171, 0.0040764594450592995, 0.001047314377501607, 0.002889596624299884, 0.003779701190069318, 0.003074044594541192, 0.016589662060141563, 0.42333149909973145], [0.00012948129733558744, 0.0009526920039206743, 0.00021089591609779745, 0.0015745607670396566, 0.001215607626363635, 0.46750304102897644, 0.0003216609766241163, 0.0001701822766335681, 9.428458724869415e-05, 0.00038081759703345597, 0.00016354271792806685, 0.00019784431788139045, 0.00047011423157528043, 0.00037546511157415807, 0.0004448834515642375, 0.0018222120124846697, 0.5239726901054382]], [[0.005225453991442919, 0.13278362154960632, 0.015604914166033268, 0.05507849529385567, 0.07408538460731506, 0.3088340163230896, 0.0070516187697649, 0.009579096920788288, 0.0035280378069728613, 0.007592035457491875, 0.004598513711243868, 0.0026383581571280956, 0.0037200977094471455, 0.007204917259514332, 0.01891772635281086, 0.023771751672029495, 0.31978604197502136], [0.010202493518590927, 0.13363735377788544, 0.0249113030731678, 0.04578603059053421, 0.10993015021085739, 0.2616283893585205, 0.012343108654022217, 0.012487956322729588, 0.003963174298405647, 0.010087307542562485, 0.00780558492988348, 0.0034401521552354097, 0.0055135576985776424, 0.016463270410895348, 0.01744760200381279, 0.04325312376022339, 0.28109949827194214], [0.00916023924946785, 0.06819313019514084, 0.08949250727891922, 0.11232680827379227, 0.09463512897491455, 0.26647624373435974, 0.017329692840576172, 0.004898605402559042, 0.0016725676832720637, 0.0061371359042823315, 0.003242362989112735, 0.0024331004824489355, 0.0013940249336883426, 0.0023869003634899855, 0.0036267766263335943, 0.02718939818441868, 0.2894054055213928], [0.00839464645832777, 0.06244048848748207, 0.06707097589969635, 0.0778818279504776, 0.054635509848594666, 0.3131088614463806, 0.012562226504087448, 0.0042556654661893845, 0.0014205867191776633, 0.00870385579764843, 0.004809381905943155, 0.0036507751792669296, 0.0024386048316955566, 0.0033006593585014343, 0.006224437151104212, 0.021093353629112244, 0.34800809621810913], [0.00701939919963479, 0.44681212306022644, 0.04355858638882637, 0.08401420712471008, 0.06473547220230103, 0.1363699734210968, 0.004361109808087349, 0.010598227381706238, 0.0014540172414854169, 0.0075685554184019566, 0.003542965976521373, 0.000998159870505333, 0.0006322431727312505, 0.0064462763257324696, 0.016767755150794983, 0.01876283809542656, 0.14635804295539856], [0.002969052642583847, 0.006961180362850428, 0.001172954449430108, 0.0022457027807831764, 0.003544014412909746, 0.4528251588344574, 0.000941384700126946, 0.004839372355490923, 0.0011856225319206715, 0.0009690196602605283, 0.0014996909303590655, 0.0017587095499038696, 0.001345118973404169, 0.0024520198348909616, 0.0019077298929914832, 0.004581325687468052, 0.5088019967079163], [0.01426152978092432, 0.017740020528435707, 0.0058599128387868404, 0.032409824430942535, 0.026349447667598724, 0.2335154265165329, 0.05911435931921005, 0.06712190806865692, 0.010043510235846043, 0.04270460084080696, 0.03699781373143196, 0.011385057121515274, 0.018389401957392693, 0.03364400565624237, 0.10019490122795105, 0.03346801549196243, 0.25680023431777954], [0.007190949283540249, 0.01839095912873745, 0.002446479629725218, 0.003527152817696333, 0.017872359603643417, 0.18397966027259827, 0.06408525258302689, 0.03610590472817421, 0.0212892834097147, 0.03825853392481804, 0.08602652698755264, 0.030537135899066925, 0.03199892118573189, 0.10885652154684067, 0.10232537239789963, 0.040259718894958496, 0.20684926211833954], [0.002431201282888651, 0.0046455394476652145, 0.00041657357360236347, 0.0025613312609493732, 0.004418934695422649, 0.3187122344970703, 0.01325160264968872, 0.053576383739709854, 0.011004333384335041, 0.032538529485464096, 0.020703695714473724, 0.014605171047151089, 0.015006151981651783, 0.07837823033332825, 0.05551992356777191, 0.017747817561030388, 0.35448235273361206], [0.002819000743329525, 0.006866976153105497, 0.00037505218642763793, 0.001895034103654325, 0.0037889007944613695, 0.2931831479072571, 0.01060445699840784, 0.08695916831493378, 0.011204827576875687, 0.03882253170013428, 0.02659900113940239, 0.009106164798140526, 0.011858605779707432, 0.050479307770729065, 0.09205325692892075, 0.02218339778482914, 0.33120107650756836], [0.006585861090570688, 0.00847112387418747, 0.0009933351539075375, 0.004133992828428745, 0.009831409901380539, 0.13475008308887482, 0.09141010046005249, 0.0827268734574318, 0.029521459713578224, 0.22227902710437775, 0.07875487208366394, 0.032207779586315155, 0.04426193609833717, 0.04154753312468529, 0.04536442458629608, 0.019338497892022133, 0.14782172441482544], [0.016334716230630875, 0.006743403151631355, 0.0008912249468266964, 0.006220965180546045, 0.007283717393875122, 0.12404786050319672, 0.12278612703084946, 0.07874415069818497, 0.029059449210762978, 0.10781417042016983, 0.07854348421096802, 0.025525666773319244, 0.05357009917497635, 0.07485394179821014, 0.10560612380504608, 0.026072878390550613, 0.13590200245380402], [0.007360085844993591, 0.004792055115103722, 0.0002891373878810555, 0.001598987029865384, 0.004990969784557819, 0.28382256627082825, 0.0424920991063118, 0.03387744352221489, 0.01810668595135212, 0.0847415179014206, 0.05063400790095329, 0.023935092613101006, 0.03506258502602577, 0.035653430968523026, 0.03746429458260536, 0.024066537618637085, 0.3111124038696289], [0.01761351339519024, 0.01142715010792017, 0.0004200209805276245, 0.002220872789621353, 0.008383149281144142, 0.3179383873939514, 0.009481988847255707, 0.05300271511077881, 0.012401104904711246, 0.03577551245689392, 0.034362565726041794, 0.015121876262128353, 0.01953117921948433, 0.0449640266597271, 0.04005027562379837, 0.02570519782602787, 0.3516004681587219], [0.009375718422234058, 0.011361963115632534, 0.0010375106940045953, 0.0022944933734834194, 0.007236037869006395, 0.17163735628128052, 0.03162403032183647, 0.10060440003871918, 0.021156584843993187, 0.06936033070087433, 0.05480878800153732, 0.04459640383720398, 0.06556850671768188, 0.09775768965482712, 0.08509550988674164, 0.03398383408784866, 0.19250081479549408], [0.017826566472649574, 0.13342930376529694, 0.01297638937830925, 0.03187556192278862, 0.017881982028484344, 0.0888974517583847, 0.04056994989514351, 0.12195225059986115, 0.009910497814416885, 0.04726501181721687, 0.02552087791264057, 0.012257290072739124, 0.014230494387447834, 0.07588912546634674, 0.20231841504573822, 0.04803788289427757, 0.09916092455387115], [0.0032253246754407883, 0.007175246253609657, 0.0012366126757115126, 0.0023619348648935556, 0.003734902013093233, 0.45204994082450867, 0.001019321964122355, 0.005096371751278639, 0.001272275228984654, 0.0010698867263272405, 0.0016275907400995493, 0.0018699211068451405, 0.0014454066986218095, 0.002662474289536476, 0.002070474438369274, 0.004871051758527756, 0.5072113871574402]], [[0.31348419189453125, 0.03330084681510925, 0.029832830652594566, 0.010106411762535572, 0.07880597561597824, 0.21776168048381805, 0.008372432552278042, 0.014662574045360088, 0.005582291167229414, 0.012037524953484535, 0.005917920731008053, 0.011087644845247269, 0.00883878767490387, 0.0066285282373428345, 0.005355075933039188, 0.016823358833789825, 0.22140191495418549], [0.0079728988930583, 0.028365442529320717, 0.05325358361005783, 0.08646201342344284, 0.07736389338970184, 0.2854674160480499, 0.049522049725055695, 0.05988389253616333, 0.00277676316909492, 0.0035002792719751596, 0.001232578419148922, 0.0011418036883696914, 0.0010758251883089542, 0.004138840828090906, 0.005043361335992813, 0.02384295128285885, 0.30895647406578064], [0.0004504892567638308, 0.007783500477671623, 0.04084312915802002, 0.14877188205718994, 0.08950518071651459, 0.27829602360725403, 0.10025036334991455, 0.008953620679676533, 0.0005850932211615145, 0.001596938818693161, 0.0002936560194939375, 0.00029410276329144835, 0.00017094412760343403, 0.00015004533634055406, 0.0003749431052710861, 0.015928367152810097, 0.3057517409324646], [0.00047204739530570805, 0.013325163163244724, 0.028783274814486504, 0.03795022889971733, 0.10298430919647217, 0.35573798418045044, 0.05159134417772293, 0.005938608665019274, 0.0016976690385490656, 0.0011949161998927593, 0.0005192543612793088, 0.0005816338816657662, 0.0002817771164700389, 0.00017327489331364632, 0.00021501528681255877, 0.00903817918151617, 0.38951531052589417], [0.0025694051291793585, 0.032147668302059174, 0.01663358509540558, 0.04420579597353935, 0.04116367921233177, 0.37825286388397217, 0.04273945465683937, 0.01652396284043789, 0.0033070803619921207, 0.004054093733429909, 0.0011299938196316361, 0.000717018498107791, 0.00040795281529426575, 0.00046022984315641224, 0.000683038670103997, 0.009066822938621044, 0.4059373140335083], [0.006194618530571461, 0.005326359998434782, 0.002757200738415122, 0.005013035144656897, 0.006935070268809795, 0.4496716558933258, 0.0031023614574223757, 0.005074725486338139, 0.0025094032753258944, 0.0025939622428268194, 0.0007976836641319096, 0.004654230549931526, 0.002977962838485837, 0.0024620406329631805, 0.0028923682402819395, 0.008283333852887154, 0.488754004240036], [0.0017069678287953138, 0.0027630275581032038, 0.005089789163321257, 0.012183067388832569, 0.02047101780772209, 0.3356747329235077, 0.11182793974876404, 0.04789392277598381, 0.009128638543188572, 0.014880119822919369, 0.009802160784602165, 0.0042825429700315, 0.0031051039695739746, 0.004636202473193407, 0.012552108615636826, 0.03805314749479294, 0.3659495413303375], [0.004569163545966148, 0.0077609652653336525, 0.003158815670758486, 0.005574681330472231, 0.007169587071985006, 0.3458733856678009, 0.03273102268576622, 0.04836622253060341, 0.02407427690923214, 0.02318810485303402, 0.01628500409424305, 0.015131121501326561, 0.009938240051269531, 0.02059660106897354, 0.03946426510810852, 0.019201472401618958, 0.3769170343875885], [0.004709076602011919, 0.0020039291121065617, 0.0008044303976930678, 0.004049425013363361, 0.004057925660163164, 0.25959447026252747, 0.019152909517288208, 0.03680732101202011, 0.01779303513467312, 0.14763779938220978, 0.07710140198469162, 0.022447193041443825, 0.02237035520374775, 0.014737740159034729, 0.05804365500807762, 0.02581159956753254, 0.28287774324417114], [0.0016058107139542699, 0.0027911621145904064, 0.0005688040982931852, 0.004491415806114674, 0.004309725947678089, 0.3548728823661804, 0.011128588579595089, 0.020497921854257584, 0.010867848061025143, 0.028742428869009018, 0.020031176507472992, 0.016629569232463837, 0.032884322106838226, 0.022439857944846153, 0.04543016105890274, 0.024547241628170013, 0.3981611132621765], [0.0002842544054146856, 0.0013750346843153238, 0.0007133425679057837, 0.002001849701628089, 0.0054502603597939014, 0.3355615437030792, 0.01268080621957779, 0.016970207914710045, 0.005125659052282572, 0.01314573548734188, 0.03172338008880615, 0.05030015856027603, 0.050849560648202896, 0.015587597154080868, 0.02678869292140007, 0.048638224601745605, 0.3828035891056061], [0.0009670720901340246, 0.0015100857708603144, 0.0023126653395593166, 0.008780313655734062, 0.009800257161259651, 0.25977036356925964, 0.07959631830453873, 0.03774944692850113, 0.013958195224404335, 0.042522232979536057, 0.02506026066839695, 0.02676171064376831, 0.03469232842326164, 0.014727603644132614, 0.06355971097946167, 0.09034422785043716, 0.28788724541664124], [0.0010459324112161994, 0.0037237913347780704, 0.0008701183251105249, 0.0031374741811305285, 0.005392078775912523, 0.24497497081756592, 0.033577337861061096, 0.032204609364271164, 0.019481392577290535, 0.04001771658658981, 0.016758883371949196, 0.036579448729753494, 0.03202064335346222, 0.019995523616671562, 0.13294768333435059, 0.10123497992753983, 0.27603745460510254], [0.0014537537936121225, 0.012050416320562363, 0.0013989330036565661, 0.00864583719521761, 0.005253980867564678, 0.24932898581027985, 0.008166384883224964, 0.03607797622680664, 0.022728847339749336, 0.024315178394317627, 0.005380060523748398, 0.03932349756360054, 0.11341450363397598, 0.020825566723942757, 0.12270723283290863, 0.05178884416818619, 0.2771400213241577], [0.0005942753050476313, 0.0132222268730402, 0.004156948067247868, 0.021349389106035233, 0.02591695263981819, 0.2610316872596741, 0.03664552420377731, 0.058094289153814316, 0.04078312963247299, 0.03813428804278374, 0.01579289324581623, 0.029720038175582886, 0.041216202080249786, 0.025493668392300606, 0.04887331277132034, 0.0497569739818573, 0.2892181873321533], [0.001792527618817985, 0.02931695245206356, 0.010017281398177147, 0.09291703999042511, 0.016530591994524002, 0.22350850701332092, 0.1422826498746872, 0.08207007497549057, 0.02275678515434265, 0.04891049116849899, 0.0047688791528344154, 0.0038206102326512337, 0.005266980733722448, 0.010219511575996876, 0.020128393545746803, 0.04125628620386124, 0.24443641304969788], [0.006270617712289095, 0.00546306325122714, 0.002813740400597453, 0.005295136943459511, 0.007033090107142925, 0.4489315450191498, 0.0032559544779360294, 0.005215927958488464, 0.002493741689249873, 0.002627489622682333, 0.0007951167062856257, 0.004632426425814629, 0.0030210758559405804, 0.0025433555711060762, 0.003040399169549346, 0.008499864488840103, 0.48806753754615784]], [[0.00814394373446703, 0.050629038363695145, 0.007443604990839958, 0.339735209941864, 0.28823456168174744, 0.12525072693824768, 0.008244143798947334, 0.0024610464461147785, 0.005086870398372412, 0.0011521790875121951, 0.012114914134144783, 0.0009506157948635519, 0.00334725109860301, 0.000548910116776824, 0.0003863765159621835, 0.011222652159631252, 0.13504791259765625], [0.0005475026555359364, 0.29415932297706604, 0.001840192941017449, 0.0008766598766669631, 0.01445192750543356, 0.2887706160545349, 0.00419792253524065, 0.01756761036813259, 0.002156867878511548, 0.004809743724763393, 0.002674700925126672, 0.0003240705991629511, 0.0006651767762377858, 0.0009704299736768007, 0.0011064099380746484, 0.04580644145607948, 0.3190743625164032], [0.001329625491052866, 0.005599969532340765, 0.01583985798060894, 0.009588503278791904, 0.017040222883224487, 0.4025842249393463, 0.014459138736128807, 0.008968042209744453, 0.009241421706974506, 0.014722906053066254, 0.008384844288229942, 0.005586327984929085, 0.0036966041661798954, 0.0005831162561662495, 0.001558487070724368, 0.020099084824323654, 0.4607176184654236], [0.0006092067342251539, 0.005615589674562216, 0.0019683195278048515, 0.15200330317020416, 0.03420222923159599, 0.3616775572299957, 0.003460646141320467, 0.0009548823582008481, 0.0012565579963847995, 0.0012027259217575192, 0.0007903557270765305, 0.00040452549001201987, 0.001000169082544744, 0.000957324227783829, 0.0048240069299936295, 0.020004794001579285, 0.409067839384079], [0.0011089704930782318, 0.03984946757555008, 0.004657146520912647, 0.057957470417022705, 0.06195057928562164, 0.31812575459480286, 0.023533575236797333, 0.016821831464767456, 0.004250092897564173, 0.0110396146774292, 0.006955252960324287, 0.0013875106815248728, 0.001767055131494999, 0.0022509433329105377, 0.011678687296807766, 0.07433491945266724, 0.3623311221599579], [0.0001365785428788513, 0.0011218821164220572, 0.0004118712095078081, 0.003905681660398841, 0.00048238964518532157, 0.4497067630290985, 0.0014329166151583195, 0.00039417235529981554, 0.00037423663889057934, 0.0022443505004048347, 0.0012469601351767778, 0.00016384909395128489, 0.0006296955398283899, 0.0003678790235426277, 0.00019526433607097715, 0.0007208486786112189, 0.5364646315574646], [0.01681983284652233, 0.026016395539045334, 0.00634330790489912, 0.04466177523136139, 0.059767309576272964, 0.2207106053829193, 0.21305467188358307, 0.05042722821235657, 0.005336566362529993, 0.02307184785604477, 0.010125774890184402, 0.0030304458923637867, 0.004212199244648218, 0.0051506622694432735, 0.02451190911233425, 0.03397414833307266, 0.2527853548526764], [0.0009002091828733683, 0.08665070682764053, 0.0012194567825645208, 0.0016175558557733893, 0.02205009013414383, 0.38822656869888306, 0.00448690727353096, 0.02305956743657589, 0.001077571650967002, 0.0030158725567162037, 0.0016341853188350797, 0.00030986699857749045, 0.0007521507795900106, 0.0013916714815422893, 0.002107769949361682, 0.02087283506989479, 0.4406270682811737], [0.0013953916495665908, 0.01453556027263403, 0.004904402419924736, 0.008284272626042366, 0.02522912807762623, 0.4025590717792511, 0.005243021994829178, 0.005085201468318701, 0.014505919069051743, 0.020747333765029907, 0.008757641538977623, 0.003240772755816579, 0.0019280569395050406, 0.002008677227422595, 0.0022337406408041716, 0.019113540649414062, 0.46022820472717285], [0.0017151189967989922, 0.029554232954978943, 0.0009895529365167022, 0.019246883690357208, 0.026620179414749146, 0.391620010137558, 0.00231061945669353, 0.0032298173755407333, 0.0011863503605127335, 0.05211416259407997, 0.0038368054665625095, 0.0001682921138126403, 0.0007964593241922557, 0.0022416040301322937, 0.006053125020116568, 0.00755725521594286, 0.4507595896720886], [0.0028467292431741953, 0.02757129818201065, 0.016593284904956818, 0.06380432099103928, 0.04087642952799797, 0.2984573245048523, 0.013227567076683044, 0.01795879751443863, 0.019810238853096962, 0.04731438308954239, 0.07756554335355759, 0.004322423133999109, 0.00848512165248394, 0.0022041520569473505, 0.004736908245831728, 0.014302866533398628, 0.3399225175380707], [0.001249412540346384, 0.004255485720932484, 0.023134203627705574, 0.003799815196543932, 0.012455882504582405, 0.3433598577976227, 0.016352958977222443, 0.00858756061643362, 0.014827262610197067, 0.013991282321512699, 0.0171928983181715, 0.07850450277328491, 0.039689820259809494, 0.006158654112368822, 0.0036157071590423584, 0.018186457455158234, 0.39463815093040466], [0.0003042030439246446, 0.004839623346924782, 0.0032497518695890903, 0.004007961135357618, 0.005224590189754963, 0.363937109708786, 0.011529977433383465, 0.0013583158142864704, 0.003335948335006833, 0.013498319312930107, 0.006738518830388784, 0.007551304064691067, 0.11865432560443878, 0.011286352761089802, 0.006273910403251648, 0.016917094588279724, 0.42129281163215637], [0.0005081970011815429, 0.014223231002688408, 0.00025667762383818626, 0.001633877051062882, 0.014851105399429798, 0.38700640201568604, 0.0011771036079153419, 0.00031230796594172716, 0.0005195048288442194, 0.0008611414232291281, 0.00032221278524957597, 0.00017123839643318206, 0.0015194113366305828, 0.1147589236497879, 0.006571272853761911, 0.014603440649807453, 0.4407040774822235], [0.0007882410427555442, 0.01806337758898735, 0.00036010437179356813, 0.005706909578293562, 0.020332271233201027, 0.3374231159687042, 0.0028948793187737465, 0.0020996148232370615, 0.001096677384339273, 0.0034868442453444004, 0.0009128739475272596, 0.0003573071153368801, 0.002619863720610738, 0.03248610720038414, 0.1687232255935669, 0.01956307142972946, 0.38308554887771606], [0.016326233744621277, 0.04525411128997803, 0.003528792876750231, 0.04649915546178818, 0.06660020351409912, 0.23046176135540009, 0.03289118409156799, 0.032572709023952484, 0.0028051366098225117, 0.029856538400053978, 0.0054108197800815105, 0.0016708944458514452, 0.002228344790637493, 0.03762228041887283, 0.11688264459371567, 0.0657527893781662, 0.26363635063171387], [0.0001477461337344721, 0.001186820911243558, 0.0004157738876529038, 0.003894762834534049, 0.0005204161861911416, 0.4494522511959076, 0.0015007229521870613, 0.0004164933634456247, 0.0003712534671649337, 0.0022437984589487314, 0.0012585902586579323, 0.00016921915812417865, 0.0006614005542360246, 0.0004093470051884651, 0.0002078456018352881, 0.0007609970052726567, 0.5363824963569641]], [[5.182709514883754e-07, 0.0007918357732705772, 0.00266750855371356, 0.0016555594047531486, 0.9064989686012268, 0.014452059753239155, 0.00026796580641530454, 9.771611803444102e-05, 0.002269677584990859, 9.536708239465952e-05, 0.049513768404722214, 0.0001033967564580962, 3.7249534216243774e-05, 0.0010946942493319511, 6.589965050807223e-05, 0.005354606080800295, 0.015033168718218803], [0.03328867629170418, 0.24397894740104675, 0.033868297934532166, 0.01799839921295643, 0.025335559621453285, 0.2501417100429535, 0.029409080743789673, 0.023884087800979614, 0.009297945536673069, 0.013980057090520859, 0.006324138958007097, 0.002749726641923189, 0.0017119181575253606, 0.00757656479254365, 0.004966563079506159, 0.023079829290509224, 0.27240851521492004], [0.003390108933672309, 0.04014764353632927, 0.11461123824119568, 0.042902443557977676, 0.029998663812875748, 0.3216535151004791, 0.013267935253679752, 0.01782734878361225, 0.009940086863934994, 0.005918638315051794, 0.0035343996714800596, 0.014250963926315308, 0.006223616655915976, 0.006003312300890684, 0.005186194088310003, 0.009954293258488178, 0.35518962144851685], [0.008427123539149761, 0.035745397210121155, 0.04621991515159607, 0.10975539684295654, 0.04160467907786369, 0.27406707406044006, 0.04190247505903244, 0.047234825789928436, 0.007597209885716438, 0.016534751281142235, 0.004797480534762144, 0.008547860197722912, 0.008834607899188995, 0.007900306023657322, 0.02050122804939747, 0.016769295558333397, 0.30356037616729736], [0.004334247671067715, 0.055587057024240494, 0.01011045090854168, 0.015375137329101562, 0.0194522887468338, 0.25536131858825684, 0.06144610047340393, 0.13406968116760254, 0.017943140119314194, 0.02092491090297699, 0.01584765873849392, 0.010209314525127411, 0.005057055503129959, 0.015336669981479645, 0.03775348886847496, 0.04452244192361832, 0.2766690254211426], [0.003249326255172491, 0.019385674968361855, 0.004834496416151524, 0.007018655072897673, 0.008813135325908661, 0.4354492723941803, 0.0034556256141513586, 0.003097669454291463, 0.0018872717628255486, 0.0016819657757878304, 0.002435369649901986, 0.0017734080320224166, 0.0016811751993373036, 0.003303654259070754, 0.001364902243949473, 0.009941058233380318, 0.49062734842300415], [0.004413003101944923, 0.029019972309470177, 0.0025694870855659246, 0.005741381086409092, 0.004574887454509735, 0.1656462401151657, 0.10329975187778473, 0.09454368054866791, 0.05223359540104866, 0.11083856225013733, 0.06004724279046059, 0.030685756355524063, 0.026373032480478287, 0.02991679683327675, 0.06009940430521965, 0.03829327970743179, 0.18170391023159027], [0.007347446400672197, 0.1477622091770172, 0.005015436559915543, 0.0028196650091558695, 0.004127866588532925, 0.19232332706451416, 0.02620832249522209, 0.09532894939184189, 0.03575441613793373, 0.0713757872581482, 0.06881321221590042, 0.028191622346639633, 0.015135823749005795, 0.021014321595430374, 0.03756153956055641, 0.032529667019844055, 0.20869044959545135], [0.003121109213680029, 0.016274120658636093, 0.001451609656214714, 0.002078937366604805, 0.0048827482387423515, 0.30344823002815247, 0.007755194325000048, 0.0434899628162384, 0.047397714108228683, 0.07187098264694214, 0.039643507450819016, 0.053398676216602325, 0.014096648432314396, 0.019863348454236984, 0.024811899289488792, 0.017421536147594452, 0.3289937376976013], [0.00622611865401268, 0.016274593770503998, 0.002094022696837783, 0.007731395773589611, 0.0071057821623981, 0.2712479531764984, 0.016095347702503204, 0.032255467027425766, 0.02564518339931965, 0.11104171723127365, 0.03932259604334831, 0.03579578548669815, 0.03864482417702675, 0.029282476752996445, 0.03310154750943184, 0.03048022650182247, 0.2976548671722412], [0.001304424600675702, 0.00875906366854906, 0.003688827157020569, 0.0036144854966551065, 0.0018784458516165614, 0.22278960049152374, 0.019698427990078926, 0.039817456156015396, 0.011197403073310852, 0.05567018315196037, 0.07478947937488556, 0.13491606712341309, 0.0771782174706459, 0.029220005497336388, 0.037748705595731735, 0.026377690955996513, 0.2513515055179596], [0.0022329604253172874, 0.009267470799386501, 0.007743210066109896, 0.005616020876914263, 0.0035525804851204157, 0.22368109226226807, 0.005045042373239994, 0.033958550542593, 0.029716618359088898, 0.0333821177482605, 0.02499203383922577, 0.1940075159072876, 0.07617086172103882, 0.043117672204971313, 0.04558543115854263, 0.013424055650830269, 0.2485068142414093], [0.004059227183461189, 0.002981215715408325, 0.0032929652370512486, 0.011482873931527138, 0.002751880558207631, 0.26580169796943665, 0.0038605525624006987, 0.02194466069340706, 0.008257769979536533, 0.018807251006364822, 0.0167579036206007, 0.06610666960477829, 0.1698889434337616, 0.04344656690955162, 0.043822769075632095, 0.016551032662391663, 0.3001859784126282], [0.02121531032025814, 0.006479152478277683, 0.0011371843283995986, 0.00849240180104971, 0.012924756854772568, 0.3098805844783783, 0.0036641538608819246, 0.023239748552441597, 0.007959931157529354, 0.011341037228703499, 0.00592382438480854, 0.00959000363945961, 0.016811612993478775, 0.1400373876094818, 0.04712655395269394, 0.031932178884744644, 0.3422442376613617], [0.006848362274467945, 0.020613091066479683, 0.0023368741385638714, 0.019609538838267326, 0.012164656072854996, 0.24217185378074646, 0.03422744944691658, 0.04719820246100426, 0.013949869200587273, 0.04062749817967415, 0.011714239604771137, 0.01147499494254589, 0.023457476869225502, 0.06631440669298172, 0.14913195371627808, 0.033086638897657394, 0.26507291197776794], [0.007421222515404224, 0.1536867916584015, 0.009436036460101604, 0.042101334780454636, 0.016123926267027855, 0.12749068439006805, 0.11342205852270126, 0.09345583617687225, 0.018398653715848923, 0.04487430304288864, 0.013622074387967587, 0.022204402834177017, 0.0052075316198170185, 0.036353547126054764, 0.09767154604196548, 0.06114676967263222, 0.13738323748111725], [0.003417540341615677, 0.019556008279323578, 0.004817836452275515, 0.006970472168177366, 0.008579585701227188, 0.4351347088813782, 0.0035461115185171366, 0.0031962550710886717, 0.0018856395035982132, 0.0017011670861393213, 0.0024266368709504604, 0.0018244514940306544, 0.0017353466246277094, 0.0034565394744277, 0.0014112655771896243, 0.0100044384598732, 0.49033603072166443]], [[7.117319182725623e-05, 0.08006221801042557, 0.012524613179266453, 0.012420137412846088, 0.844393789768219, 0.023090440779924393, 0.00014091109915170819, 0.00010063665104098618, 6.465756450779736e-05, 1.5837931641726755e-05, 0.00011905281280633062, 0.00018606812227517366, 0.0007845158106647432, 0.0002883397100958973, 0.00010200359974987805, 0.0017905008280649781, 0.023845162242650986], [0.013457149267196655, 0.0357852466404438, 0.01379571482539177, 0.06817774474620819, 0.07993543148040771, 0.22316983342170715, 0.04184297099709511, 0.08558578789234161, 0.007771374192088842, 0.027423419058322906, 0.010564476251602173, 0.006952516734600067, 0.0068688225001096725, 0.025384148582816124, 0.041935309767723083, 0.06874865293502808, 0.24260136485099792], [0.006344517692923546, 0.02552461437880993, 0.012057078070938587, 0.10713005810976028, 0.062167905271053314, 0.2567042112350464, 0.060136828571558, 0.04345277324318886, 0.0016771405935287476, 0.013202040456235409, 0.003975332248955965, 0.005856635048985481, 0.012732370756566525, 0.013829032890498638, 0.0373600535094738, 0.05081840977072716, 0.28703099489212036], [0.010676342062652111, 0.1184416189789772, 0.035417161881923676, 0.07848614454269409, 0.10204708576202393, 0.17034319043159485, 0.03901127725839615, 0.040100377053022385, 0.005462796427309513, 0.01648564077913761, 0.007266136817634106, 0.018100624904036522, 0.03127139061689377, 0.04335915297269821, 0.061390724033117294, 0.03286072984337807, 0.18927960097789764], [0.0025561500806361437, 0.42451632022857666, 0.013190866447985172, 0.11200279742479324, 0.06923557817935944, 0.13212116062641144, 0.005722925066947937, 0.02777595818042755, 0.0008534158696420491, 0.006585963070392609, 0.003442466724663973, 0.002671608468517661, 0.0074600097723305225, 0.01813339628279209, 0.020190393552184105, 0.00631675636395812, 0.14722412824630737], [0.0008404373656958342, 0.01838488131761551, 0.002008028095588088, 0.0051690395921468735, 0.012873372063040733, 0.421865850687027, 0.0018935520201921463, 0.0031982078216969967, 0.0004890362615697086, 0.0007932658190838993, 0.0006129401153884828, 0.002352298703044653, 0.0023419794160872698, 0.007459078449755907, 0.004042188636958599, 0.018472440540790558, 0.49720340967178345], [0.03910854831337929, 0.06700325757265091, 0.010724730789661407, 0.06688687205314636, 0.023181181401014328, 0.09986617416143417, 0.04089304804801941, 0.09131184965372086, 0.010007784701883793, 0.10574706643819809, 0.04859134554862976, 0.023835111409425735, 0.018270740285515785, 0.06542164832353592, 0.12032267451286316, 0.05412229523062706, 0.11470571160316467], [0.02262083813548088, 0.052917059510946274, 0.002078278688713908, 0.03006710670888424, 0.033037327229976654, 0.30436211824417114, 0.01780189573764801, 0.021462656557559967, 0.006050117779523134, 0.02821621485054493, 0.0190142709761858, 0.007067458238452673, 0.011330223642289639, 0.018394922837615013, 0.06393956393003464, 0.025056196376681328, 0.3365837633609772], [0.004197309259325266, 0.014671478420495987, 0.0011642968747764826, 0.034070275723934174, 0.029523713514208794, 0.2808503210544586, 0.016096770763397217, 0.026570385321974754, 0.004347406327724457, 0.03673700988292694, 0.015810366719961166, 0.007231599651277065, 0.04408877342939377, 0.03575853630900383, 0.09252451360225677, 0.0336560420691967, 0.32270121574401855], [0.00505137350410223, 0.03961740806698799, 0.0029605701565742493, 0.04041459411382675, 0.06489108502864838, 0.18022577464580536, 0.022191764786839485, 0.038889359682798386, 0.006871272809803486, 0.020764503628015518, 0.009187175892293453, 0.013021326623857021, 0.0470593124628067, 0.0475769080221653, 0.16684891283512115, 0.08124001324176788, 0.21318860352039337], [0.0028325205203145742, 0.009897339157760143, 0.00352689903229475, 0.020498301833868027, 0.02111181616783142, 0.16895736753940582, 0.05593189224600792, 0.03528394550085068, 0.01362541038542986, 0.030286697670817375, 0.018756993114948273, 0.045787885785102844, 0.08161728084087372, 0.037797629833221436, 0.1906362771987915, 0.07253831624984741, 0.19091345369815826], [0.008626637049019337, 0.0065709687769412994, 0.00310188764706254, 0.07459469139575958, 0.04967472702264786, 0.11355835944414139, 0.04670358821749687, 0.054739996790885925, 0.008730822242796421, 0.04007641226053238, 0.030569007620215416, 0.01726970262825489, 0.07932183146476746, 0.06919774413108826, 0.22452297806739807, 0.04727625846862793, 0.12546434998512268], [0.010346474125981331, 0.011137865483760834, 0.0015593059360980988, 0.03242627531290054, 0.026193905621767044, 0.24318334460258484, 0.018444910645484924, 0.01999111846089363, 0.00830143690109253, 0.026350492611527443, 0.012180249206721783, 0.014446426182985306, 0.042310044169425964, 0.08421789854764938, 0.13889899849891663, 0.03935046121478081, 0.2706608474254608], [0.0349709689617157, 0.06389845907688141, 0.004240445327013731, 0.04438548535108566, 0.11450137197971344, 0.177937313914299, 0.01969144120812416, 0.04138534888625145, 0.010904012247920036, 0.022972341626882553, 0.013805127702653408, 0.013967537321150303, 0.0174744613468647, 0.027880296111106873, 0.05983808636665344, 0.13397376239299774, 0.19817353785037994], [0.012551232241094112, 0.08537637442350388, 0.0015356026124209166, 0.05437560752034187, 0.06228287145495415, 0.14381250739097595, 0.01198512688279152, 0.06519928574562073, 0.005521612241864204, 0.03371706232428551, 0.020162308588624, 0.012281745672225952, 0.05977732688188553, 0.09603852778673172, 0.11999557167291641, 0.05238010734319687, 0.16300708055496216], [0.03964490070939064, 0.04821242019534111, 0.0021176342852413654, 0.07997944951057434, 0.015490702353417873, 0.04868143051862717, 0.04223526269197464, 0.1397404819726944, 0.004866685252636671, 0.14456886053085327, 0.02664513885974884, 0.007056145928800106, 0.0181142445653677, 0.0839180126786232, 0.22203055024147034, 0.01972992718219757, 0.05696820095181465], [0.0009013257222250104, 0.01855313405394554, 0.0020604131277650595, 0.005341579671949148, 0.01329201739281416, 0.4199516773223877, 0.00199707830324769, 0.003390936180949211, 0.0005265101208351552, 0.0008674709242768586, 0.0006603084621019661, 0.0025245998986065388, 0.0024831260088831186, 0.007987916469573975, 0.004316417034715414, 0.020035479217767715, 0.49511006474494934]]], [[[0.00305598764680326, 0.0024946797639131546, 0.002111281268298626, 0.0010998313082382083, 8.725462976144627e-05, 0.47783681750297546, 0.0019616554491221905, 0.0017174789682030678, 0.0004330296069383621, 0.0015849892515689135, 0.0012568795355036855, 0.002180660841986537, 0.002044031396508217, 0.0007664142176508904, 0.0002914521610364318, 0.004872433841228485, 0.4962051510810852], [0.00016498303739354014, 0.2087773084640503, 0.002652397844940424, 0.02164381556212902, 0.003730859374627471, 0.31855618953704834, 0.009634067304432392, 0.020743533968925476, 0.0008775822934694588, 0.006594090256839991, 0.0011855532648041844, 0.0019265887094661593, 0.0020149629563093185, 0.03695323318243027, 0.00738115468993783, 0.025995781645178795, 0.3311678469181061], [0.00029912643367424607, 0.024702761322259903, 0.002601831452921033, 0.016428476199507713, 0.0041880072094500065, 0.44337159395217896, 0.005260796286165714, 0.0029795230366289616, 0.0008898882078938186, 0.0014816350303590298, 0.0013075139140710235, 0.0033122990280389786, 0.002502875169739127, 0.00975137297064066, 0.002779710106551647, 0.010209811851382256, 0.467932790517807], [0.00021391946938820183, 0.24425563216209412, 0.0026161405257880688, 0.19713813066482544, 0.01709960587322712, 0.17129650712013245, 0.00830630213022232, 0.01342203188687563, 0.0018888403428718448, 0.014903828501701355, 0.0023887634743005037, 0.0022638854570686817, 0.002717736642807722, 0.04764475300908089, 0.04617572948336601, 0.04743016138672829, 0.1802380383014679], [0.00043590704444795847, 0.08471620827913284, 0.013595730066299438, 0.22265079617500305, 0.02849874272942543, 0.01384926401078701, 0.11230392754077911, 0.03090902417898178, 0.004197695758193731, 0.028967276215553284, 0.010544105432927608, 0.007496904116123915, 0.003036301815882325, 0.01013533491641283, 0.043313004076480865, 0.3708200454711914, 0.014529766514897346], [0.00015101215103641152, 0.0021831714548170567, 0.0004501432413235307, 0.0002937937679234892, 9.768682502908632e-05, 0.4822514057159424, 0.0011712334817275405, 0.0004817576555069536, 0.00037646203418262303, 0.0003867712221108377, 0.0004119145742151886, 0.0010637107770889997, 0.0005776994512416422, 0.001043293857946992, 0.00020632914674934, 0.0015159206232056022, 0.5073376297950745], [7.905064194346778e-06, 0.020144030451774597, 0.00045355717884376645, 0.00392452348023653, 0.0002861063403543085, 0.4642609655857086, 0.0010913353180512786, 0.0017249559750780463, 0.00022314254601951689, 0.001139206811785698, 0.0008832388557493687, 0.0009438403649255633, 0.0013165937270969152, 0.0036677273456007242, 0.0018773891497403383, 0.0029016463086009026, 0.49515384435653687], [9.385291923535988e-05, 0.18753454089164734, 0.00034648936707526445, 0.004670873284339905, 0.000611265015322715, 0.32476040720939636, 0.0013085441896691918, 0.011652898043394089, 0.0003559276810847223, 0.0017269356176257133, 0.0007007776293903589, 0.0008063709829002619, 0.003059578128159046, 0.09813889861106873, 0.014013332314789295, 0.0073183090426027775, 0.3429010510444641], [6.969868263695389e-05, 0.0145994508638978, 0.0012618941254913807, 0.0027213592547923326, 0.0005091911880299449, 0.46428364515304565, 0.001851263688877225, 0.001186369452625513, 0.0012671170989051461, 0.0018512282986193895, 0.0016794211696833372, 0.0021012553479522467, 0.0019433381967246532, 0.0043299440294504166, 0.003245741128921509, 0.004571173805743456, 0.4925278425216675], [4.6131990529829636e-05, 0.11937309056520462, 0.00046926416689530015, 0.009203581139445305, 0.0007063905359245837, 0.3850710391998291, 0.0014979186234995723, 0.005844235420227051, 0.0005742309149354696, 0.00391245586797595, 0.0011219090083613992, 0.0007005712250247598, 0.0021868750918656588, 0.04007758945226669, 0.01047220267355442, 0.007943524979054928, 0.4107990264892578], [4.42371419921983e-05, 0.018973205238580704, 0.0004195880319457501, 0.00827112328261137, 0.0006656525656580925, 0.4515514373779297, 0.0018881355645135045, 0.0013620906975120306, 0.0006313174962997437, 0.0020774335134774446, 0.0018527815118432045, 0.0011611517984420061, 0.0028166319243609905, 0.0190805085003376, 0.006856593303382397, 0.004571578931063414, 0.4777764678001404], [5.5347067245747894e-05, 0.005595128517597914, 0.00040643863030709326, 0.0016367671778425574, 0.00039488711627200246, 0.4660564363002777, 0.0015665757237002254, 0.0008139628916978836, 0.0005515461671166122, 0.0010418014135211706, 0.0013732166262343526, 0.0032689468935132027, 0.004834353923797607, 0.012571143917739391, 0.002146112732589245, 0.00290644820779562, 0.49478086829185486], [4.568027361528948e-05, 0.011173081584274769, 0.00022737946710549295, 0.003193288343027234, 0.00020317219605203718, 0.4585338234901428, 0.0007520458311773837, 0.0008061947883106768, 0.00032424955861642957, 0.001638551359064877, 0.0009887742344290018, 0.0014453580370172858, 0.003928390797227621, 0.02176077663898468, 0.006997682154178619, 0.0031006736680865288, 0.48488083481788635], [4.0005030314205214e-05, 0.06791049987077713, 0.00022018616436980665, 0.0031000939197838306, 0.00033633553539402783, 0.4333825409412384, 0.0007185632130131125, 0.0014927348820492625, 0.0002863100089598447, 0.0028610273730009794, 0.0007337838178500533, 0.0007648919126950204, 0.002343948930501938, 0.017604632303118706, 0.007223514374345541, 0.004750362131744623, 0.456230491399765], [2.207541729148943e-05, 0.028619786724448204, 0.00012953697296325117, 0.003900179173797369, 0.00014772883150726557, 0.3807770311832428, 0.0005749393603764474, 0.002111955778673291, 0.00019608404545579106, 0.001460566301830113, 0.0005657440633513033, 0.0013317784760147333, 0.006155791226774454, 0.11906615644693375, 0.04066307470202446, 0.006799555383622646, 0.4074779748916626], [1.5555708159809e-05, 0.010057270526885986, 0.0002895993529818952, 0.001764582353644073, 0.0002594352117739618, 0.4628456234931946, 0.000994982081465423, 0.0013232158962637186, 0.00020711681281682104, 0.0016702086431905627, 0.0006155386217869818, 0.0018573268316686153, 0.0022753167431801558, 0.009097309783101082, 0.0016649471363052726, 0.0059539382345974445, 0.4991079866886139], [0.00015665469982195646, 0.0022166911512613297, 0.0004579983651638031, 0.0003007229242939502, 0.00010200327960774302, 0.48220041394233704, 0.0011801084037870169, 0.0004852929268963635, 0.00038140476681292057, 0.0003895260451827198, 0.00041712401434779167, 0.0010761694284155965, 0.0005833854083903134, 0.0010599569650366902, 0.00020888277504127473, 0.0015290093142539263, 0.5072547197341919]], [[7.222581189125776e-05, 0.00037517870077863336, 0.00013537357153836638, 7.140566594898701e-05, 1.8649216144694947e-05, 0.4880334436893463, 0.00010676807869458571, 0.00010973837197525427, 0.00024183066852856427, 3.671731610666029e-05, 5.2560782933142036e-05, 0.00014384050155058503, 0.00013876502634957433, 0.0005449159070849419, 7.793252734700218e-05, 5.46460687473882e-05, 0.509786069393158], [0.003029661485925317, 0.08919132500886917, 0.02733919769525528, 0.06201835721731186, 0.039955463260412216, 0.2781596779823303, 0.04012039303779602, 0.030925041064620018, 0.008472406305372715, 0.026538606733083725, 0.013420414179563522, 0.008948421105742455, 0.013227643445134163, 0.015548281371593475, 0.02537311054766178, 0.031104957684874535, 0.28662699460983276], [0.0029963133856654167, 0.06647272408008575, 0.00992140918970108, 0.06343724578619003, 0.0374145582318306, 0.3394675552845001, 0.019824551418423653, 0.020122306421399117, 0.002700887620449066, 0.02201317809522152, 0.0097261443734169, 0.0020387640688568354, 0.0033313154708594084, 0.009834502823650837, 0.017044246196746826, 0.018534792587161064, 0.3551194667816162], [0.0007884592050686479, 0.08929868787527084, 0.013654874637722969, 0.1049535945057869, 0.03679986298084259, 0.2743632197380066, 0.031107043847441673, 0.02383076213300228, 0.006350473966449499, 0.05065349116921425, 0.010461587458848953, 0.004208981059491634, 0.00838235579431057, 0.012881537899374962, 0.020071540027856827, 0.026572713628411293, 0.2856208086013794], [0.0013454145519062877, 0.009885892271995544, 0.002204624470323324, 0.006806781981140375, 0.007959095761179924, 0.46688932180404663, 0.0022025418002158403, 0.0006292921025305986, 0.0011626865016296506, 0.0018698407802730799, 0.001074348227120936, 0.0007828642264939845, 0.001048754551447928, 0.004825419280678034, 0.0021026001777499914, 0.0016054916195571423, 0.48760509490966797], [0.0011277699377387762, 0.001901822630316019, 3.4650009183678776e-05, 0.0003418286214582622, 0.00015662962687201798, 0.4855710566043854, 6.522958574350923e-05, 0.000520429399330169, 5.568543201661669e-05, 7.694702071603388e-05, 4.9519007006892934e-05, 2.262626549054403e-05, 8.944919682107866e-05, 0.0018769107991829515, 0.00023038219660520554, 0.0001417206512996927, 0.5077373385429382], [0.012697214260697365, 0.07749129831790924, 0.008154653012752533, 0.067148856818676, 0.29889848828315735, 0.19880838692188263, 0.01836187019944191, 0.01962701790034771, 0.0032308136578649282, 0.025497950613498688, 0.010903380811214447, 0.0015924270264804363, 0.005464931949973106, 0.011084812693297863, 0.021439651027321815, 0.012400411069393158, 0.20719777047634125], [0.002238375600427389, 0.05254901200532913, 0.005175681319087744, 0.036546528339385986, 0.0340530090034008, 0.3776576817035675, 0.011114871129393578, 0.021750569343566895, 0.002701479708775878, 0.009232576005160809, 0.006257064640522003, 0.0018260267097502947, 0.00612102122977376, 0.008576884865760803, 0.01830195263028145, 0.009351436048746109, 0.39654576778411865], [0.0019760907161980867, 0.015867576003074646, 0.003935588989406824, 0.01934015192091465, 0.02581571228802204, 0.424389123916626, 0.007425593212246895, 0.006166067905724049, 0.0030567438807338476, 0.014604616910219193, 0.005512351170182228, 0.002211326500400901, 0.00402613403275609, 0.005014462396502495, 0.005558492615818977, 0.007758344989269972, 0.447341650724411], [0.0016615500207990408, 0.04133385792374611, 0.013701976276934147, 0.059499844908714294, 0.06746853142976761, 0.3192451298236847, 0.02259671874344349, 0.017439963296055794, 0.004596627317368984, 0.05684831738471985, 0.008226142264902592, 0.005583405960351229, 0.006064516492187977, 0.004981109872460365, 0.01586836762726307, 0.01985902152955532, 0.33502498269081116], [0.0010736361145973206, 0.03036201000213623, 0.004878693260252476, 0.031151095405220985, 0.023068927228450775, 0.3937661051750183, 0.013069313019514084, 0.024983786046504974, 0.001719718100503087, 0.011918103322386742, 0.013279492035508156, 0.0021019550040364265, 0.004699168726801872, 0.005185707937926054, 0.01612897589802742, 0.008233710192143917, 0.4143795967102051], [0.004893111065030098, 0.04078719764947891, 0.006607234477996826, 0.03566856309771538, 0.04089151695370674, 0.3731358051300049, 0.007986337877810001, 0.01634579338133335, 0.002425005892291665, 0.019147299230098724, 0.009973128326237202, 0.0036393876653164625, 0.008543109521269798, 0.01311473734676838, 0.01803872361779213, 0.008467371575534344, 0.3903355896472931], [0.0014993472723290324, 0.05097734555602074, 0.004386712796986103, 0.03338378667831421, 0.014322031289339066, 0.3567340075969696, 0.0074327075853943825, 0.029162529855966568, 0.001950348261743784, 0.02390322834253311, 0.013678701594471931, 0.002641037805005908, 0.007959473878145218, 0.018733730539679527, 0.04164103418588638, 0.015533125959336758, 0.3760608732700348], [0.0018678338965401053, 0.13360652327537537, 0.005804813001304865, 0.04091794788837433, 0.04285372048616409, 0.28241199254989624, 0.009782182052731514, 0.03065682388842106, 0.004499492701143026, 0.03326546773314476, 0.008712366223335266, 0.004014298785477877, 0.010423402301967144, 0.03177671507000923, 0.029292471706867218, 0.035868946462869644, 0.2942449748516083], [0.0020892980974167585, 0.06700993329286575, 0.007753936108201742, 0.077008455991745, 0.021190473809838295, 0.27695468068122864, 0.00658646272495389, 0.046944987028837204, 0.005452786106616259, 0.034532580524683, 0.013656155206263065, 0.0042593637481331825, 0.01008691731840372, 0.021795133128762245, 0.08903602510690689, 0.02555307000875473, 0.29008981585502625], [0.007876444607973099, 0.027980640530586243, 0.00408808933570981, 0.036933742463588715, 0.5360808968544006, 0.16124875843524933, 0.005118642933666706, 0.004219674039632082, 0.0021120402961969376, 0.009052746929228306, 0.003853636095300317, 0.0009893927490338683, 0.003208599053323269, 0.007493280339986086, 0.017827343195676804, 0.003611151361837983, 0.16830499470233917], [0.0011756611056625843, 0.0019627613946795464, 3.545448635122739e-05, 0.0003532684058882296, 0.0001655051310081035, 0.48549938201904297, 6.70391382300295e-05, 0.0005335717578418553, 5.716073064832017e-05, 7.916984759503976e-05, 5.106448952574283e-05, 2.312071774213109e-05, 9.202107321470976e-05, 0.0019269103650003672, 0.00023616565158590674, 0.00014549570914823562, 0.5075963139533997]], [[0.016010386869311333, 0.006091316230595112, 0.0008487484301440418, 0.0021872720681130886, 0.002663716906681657, 0.46615660190582275, 0.001050187973305583, 0.0005590380169451237, 0.0015382764395326376, 0.0005909071769565344, 0.000389174121664837, 0.0008401904487982392, 0.00038689086795784533, 0.0028907135128974915, 0.000743406533729285, 0.007384113967418671, 0.4896690845489502], [0.0004407122905831784, 0.23399671912193298, 0.000718809082172811, 0.01661824621260166, 0.0022986209951341152, 0.34508973360061646, 0.0016692120116204023, 0.005011866334825754, 0.0005379935610108078, 0.004665978718549013, 0.0005336350295692682, 0.0003660256043076515, 0.0005182139575481415, 0.008497942239046097, 0.0025940502528101206, 0.012615961022675037, 0.36382633447647095], [0.0012371810153126717, 0.004439321346580982, 0.004534319508820772, 0.00873649399727583, 0.0043069906532764435, 0.44555407762527466, 0.004925429821014404, 0.0023803855292499065, 0.003762866836041212, 0.0030763184186071157, 0.0037090713158249855, 0.004000191111117601, 0.00267915241420269, 0.002641333732753992, 0.003104698145762086, 0.031031429767608643, 0.4698809087276459], [0.00025594254839234054, 0.00890002865344286, 0.0006101021426729858, 0.1312539130449295, 0.004642488434910774, 0.38923346996307373, 0.0023415726609528065, 0.0008651079842820764, 0.00044728495413437486, 0.0029256094712764025, 0.0010762715246528387, 0.000308003684040159, 0.001397353713400662, 0.011235207319259644, 0.010456477291882038, 0.0215540062636137, 0.41249722242355347], [0.002232869155704975, 0.00594757217913866, 0.002023949520662427, 0.014631807804107666, 0.027827860787510872, 0.4044027030467987, 0.006642539985477924, 0.0015867907786741853, 0.003309826832264662, 0.003437866922467947, 0.003668304532766342, 0.0006879694992676377, 0.0006171513814479113, 0.0017774663865566254, 0.0036937801633030176, 0.09159303456544876, 0.4259185492992401], [0.00043733653728850186, 0.0014607937773689628, 0.0016419189050793648, 0.0006636109901592135, 0.0016254843212664127, 0.47977569699287415, 0.001147228991612792, 0.0015787484589964151, 0.0019912973511964083, 0.0010698221158236265, 0.0014123112196102738, 0.0015283663524314761, 0.0015179939800873399, 0.0008022708934731781, 0.0006334814825095236, 0.0028095212765038013, 0.4999041259288788], [0.0004611304320860654, 0.0043322257697582245, 0.0007392701809294522, 0.0023808309342712164, 0.0010062193032354116, 0.4700138568878174, 0.0019932028371840715, 0.0005525078158825636, 0.0009747655712999403, 0.002008188283070922, 0.0015781560214236379, 0.0004355350974947214, 0.0008085592999123037, 0.0016558589413762093, 0.0007521583465859294, 0.010944700799882412, 0.4993627965450287], [0.0006665043183602393, 0.11281245946884155, 0.0007610887405462563, 0.021491676568984985, 0.002441206481307745, 0.3995841145515442, 0.0008903673151507974, 0.005109384190291166, 0.0007641571573913097, 0.002733156317844987, 0.000807124306447804, 0.0004607519367709756, 0.0010597390355542302, 0.007704359013587236, 0.006431563291698694, 0.013890732079744339, 0.4223916232585907], [0.00092631223378703, 0.0033345844130963087, 0.0017157424008473754, 0.0033019911497831345, 0.0018462247680872679, 0.4438186585903168, 0.0014638802967965603, 0.0012378577375784516, 0.037963103502988815, 0.007779768202453852, 0.0033471949864178896, 0.0027322799433022738, 0.0021563805639743805, 0.0019010355463251472, 0.0014421362429857254, 0.016953136771917343, 0.46807974576950073], [0.0004408314707688987, 0.0567755363881588, 0.0004919411148875952, 0.03020809218287468, 0.0012753972550854087, 0.41290727257728577, 0.0005914752837270498, 0.0020691792014986277, 0.0011231305543333292, 0.02545870840549469, 0.0019074227893725038, 0.0004227649769745767, 0.002400678815320134, 0.00996947381645441, 0.0072290534153580666, 0.01038526464253664, 0.4363437294960022], [0.00030983047327026725, 0.0040231188759207726, 0.0009240712388418615, 0.0123373344540596, 0.0022575196344405413, 0.4565354287624359, 0.0018839683616533875, 0.001329195685684681, 0.0017585420282557607, 0.005669696722179651, 0.012266110628843307, 0.001475313096307218, 0.003939170856028795, 0.0034421076998114586, 0.003972652833908796, 0.007608200889080763, 0.4802676737308502], [0.0008898398955352604, 0.002427054801955819, 0.002890343777835369, 0.004416672978550196, 0.0021065371111035347, 0.44534364342689514, 0.0025797775015234947, 0.0009456577827222645, 0.00430614547803998, 0.004666315391659737, 0.008380813524127007, 0.012208657339215279, 0.011386282742023468, 0.005280391778796911, 0.0022727397736161947, 0.0191931314766407, 0.4707060158252716], [0.0001318292779615149, 0.007049486506730318, 0.0007453773287124932, 0.01588715799152851, 0.0008610970107838511, 0.43861013650894165, 0.001046717050485313, 0.0005505785811692476, 0.0007428247481584549, 0.006219411268830299, 0.0031061475165188313, 0.002709551714360714, 0.02092060074210167, 0.014188840053975582, 0.013996012508869171, 0.006828362122178078, 0.46640586853027344], [0.00042361568193882704, 0.023101793602108955, 0.0007574164774268866, 0.04301227629184723, 0.0015778073575347662, 0.41284483671188354, 0.0011970106279477477, 0.0006218412308953702, 0.0003716528008226305, 0.004187942482531071, 0.0019015445141121745, 0.00159797805827111, 0.005729170050472021, 0.041567686945199966, 0.012207929976284504, 0.011094302870333195, 0.43780529499053955], [0.00011341287608956918, 0.008545301854610443, 0.0004320453735999763, 0.0340738520026207, 0.0016639941604807973, 0.38894662261009216, 0.0010610537137836218, 0.0016005245270207524, 0.0003063399053644389, 0.00308818556368351, 0.001008100458420813, 0.0006844943854957819, 0.004011392127722502, 0.011818766593933105, 0.11930470913648605, 0.010450849309563637, 0.41289037466049194], [0.0003383024304639548, 0.012103146873414516, 0.0008077548700384796, 0.01580100692808628, 0.003147766925394535, 0.4550243020057678, 0.001472552539780736, 0.0009537354344502091, 0.0006444132886826992, 0.002677997574210167, 0.001584362587891519, 0.00046051244135014713, 0.000905747467186302, 0.004564785864204168, 0.0033169311936944723, 0.014574732631444931, 0.4816218912601471], [0.00044636751408688724, 0.0014942423440515995, 0.0016746694454923272, 0.0006783038261346519, 0.0016532257432118058, 0.4796466827392578, 0.0011659760493785143, 0.0016059984918683767, 0.0020036480855196714, 0.0010868024546653032, 0.001429918804205954, 0.0015543649205937982, 0.0015451093204319477, 0.0008176696137525141, 0.0006441281293518841, 0.0028394919354468584, 0.4997134804725647]], [[0.0035900245420634747, 0.01216958649456501, 0.006880486849695444, 0.0058799549005925655, 0.006502002943307161, 0.4564931392669678, 0.007220793515443802, 0.005134181585162878, 0.0046211774460971355, 0.0014748831745237112, 0.0019218336092308164, 0.004927070811390877, 0.0037372312508523464, 0.002881917404010892, 0.0022421430330723524, 0.003322033677250147, 0.471001535654068], [0.0036113783717155457, 0.02903205156326294, 0.07581311464309692, 0.11621232330799103, 0.08009381592273712, 0.25197339057922363, 0.07081342488527298, 0.0212237611413002, 0.0036695420276373625, 0.011213189922273159, 0.004611437674611807, 0.004824592731893063, 0.0019601869862526655, 0.005160883069038391, 0.021282915025949478, 0.036365728825330734, 0.26213833689689636], [0.0012029046192765236, 0.030452406033873558, 0.04609818011522293, 0.07073606550693512, 0.05265383422374725, 0.36875924468040466, 0.020217280834913254, 0.003546153660863638, 0.00013965467223897576, 0.0005020989337936044, 0.0004190555482637137, 0.0005325648817233741, 0.0003001650038640946, 0.0006430274806916714, 0.0008938768296502531, 0.01152216549962759, 0.39138132333755493], [0.0015283954562619328, 0.05691039189696312, 0.0352368988096714, 0.028889106586575508, 0.04231726750731468, 0.37576553225517273, 0.026694925501942635, 0.012271806597709656, 0.0018270077416673303, 0.0028414747212082148, 0.001907718600705266, 0.0027500493451952934, 0.0012575361179187894, 0.0015001213178038597, 0.0011537676909938455, 0.01194612868130207, 0.39520183205604553], [0.0008105948800221086, 0.008961383253335953, 0.012137134559452534, 0.01670636422932148, 0.010000775568187237, 0.4503120481967926, 0.015073692426085472, 0.0017173259984701872, 0.0003909159859176725, 0.0005658332956954837, 0.0007005800725892186, 0.0012891908409073949, 0.0009625125676393509, 0.0009244465618394315, 0.0005965994787402451, 0.00230899709276855, 0.4765414595603943], [0.0017604741733521223, 0.0023067162837833166, 0.001759217120707035, 0.0019327320624142885, 0.002770084887742996, 0.47537365555763245, 0.0034083775244653225, 0.001694402890279889, 0.002509875688701868, 0.0013752871891483665, 0.001002977485768497, 0.0015496466076001525, 0.0008917315280996263, 0.0013746034819632769, 0.0013821283355355263, 0.003374457824975252, 0.4955335557460785], [0.0011897413060069084, 0.0056625730358064175, 0.005295667331665754, 0.008098882623016834, 0.0048470208421349525, 0.42616701126098633, 0.024437570944428444, 0.014726178720593452, 0.001734684337861836, 0.007581433281302452, 0.010545714758336544, 0.008274623192846775, 0.006307671777904034, 0.005721671972423792, 0.012554297223687172, 0.007474358659237623, 0.44938090443611145], [0.001712653087452054, 0.00406720582395792, 0.0024730199947953224, 0.008045732043683529, 0.003783486085012555, 0.4008016288280487, 0.017888706177473068, 0.015308943577110767, 0.0028339987620711327, 0.015134845860302448, 0.01711188070476055, 0.013646762818098068, 0.013949497602880001, 0.010912035591900349, 0.04148469865322113, 0.009261757135391235, 0.4215831756591797], [0.00047858760808594525, 0.0011772394645959139, 0.00016117087216116488, 0.0005365189863368869, 0.0006167726241983473, 0.45113253593444824, 0.0017979867989197373, 0.00460009416565299, 0.004717822186648846, 0.028252078220248222, 0.010461251251399517, 0.003945974633097649, 0.005015586037188768, 0.0019398553995415568, 0.005065116100013256, 0.0011075977236032486, 0.47899380326271057], [0.0010367532959207892, 0.01047910749912262, 0.0014196087140589952, 0.004430267494171858, 0.005514098331332207, 0.36516454815864563, 0.013937762938439846, 0.04534425586462021, 0.02260630950331688, 0.02151395194232464, 0.03305203840136528, 0.01595059037208557, 0.02025158330798149, 0.011033782735466957, 0.03216079995036125, 0.010983512736856937, 0.3851209282875061], [0.00026349921245127916, 0.001883374061435461, 0.0008799862116575241, 0.0015740515664219856, 0.002149356994777918, 0.4136521816253662, 0.010022112168371677, 0.010572390630841255, 0.004480067640542984, 0.005826769396662712, 0.04126446694135666, 0.014354370534420013, 0.01577674224972725, 0.005144776776432991, 0.024093395099043846, 0.009930020198225975, 0.4381323456764221], [0.0021618905011564493, 0.004637092351913452, 0.002605376299470663, 0.007319344207644463, 0.00722713116556406, 0.35681742429733276, 0.01706821098923683, 0.021556874737143517, 0.005929118953645229, 0.013076507486402988, 0.049803707748651505, 0.026762505993247032, 0.03200412541627884, 0.015568584203720093, 0.046128369867801666, 0.014738243073225021, 0.37659552693367004], [0.0009272153256461024, 0.0016419123858213425, 0.001032451749779284, 0.0022638302762061357, 0.004383502993732691, 0.406827449798584, 0.005483785644173622, 0.014068636111915112, 0.00530308298766613, 0.007745290175080299, 0.02918114885687828, 0.021555442363023758, 0.015460873953998089, 0.007403255440294743, 0.03519990295171738, 0.012456807307898998, 0.42906540632247925], [0.0020396162290126085, 0.006595653481781483, 0.002078932709991932, 0.006173979956656694, 0.005352513398975134, 0.41703692078590393, 0.0063353972509503365, 0.015402254648506641, 0.004706087522208691, 0.007611225824803114, 0.009871801361441612, 0.018442919477820396, 0.02866845205426216, 0.004313294775784016, 0.0151321180164814, 0.0127878962084651, 0.4374508261680603], [0.0010532229207456112, 0.013647079467773438, 0.0028137294575572014, 0.009286713786423206, 0.006865496747195721, 0.34787461161613464, 0.01679893024265766, 0.029145997017621994, 0.009598154574632645, 0.01645546965301037, 0.027847910299897194, 0.036252088844776154, 0.06399457901716232, 0.01341558899730444, 0.025392433628439903, 0.013416311703622341, 0.36614158749580383], [0.001274012727662921, 0.01131044328212738, 0.009358730167150497, 0.010626068338751793, 0.013090966269373894, 0.445933997631073, 0.01329649705439806, 0.004993366077542305, 0.0014204217586666346, 0.0020174349192529917, 0.002295845653861761, 0.0036107460036873817, 0.0027391372714191675, 0.0013449816033244133, 0.00224176119081676, 0.004966038279235363, 0.46947944164276123], [0.0017946624429896474, 0.002358986297622323, 0.0018057296983897686, 0.0019871117547154427, 0.0028573789168149233, 0.4750659167766571, 0.003499762387946248, 0.0017391238361597061, 0.002551268320530653, 0.0013960718642920256, 0.0010245381854474545, 0.0015803296118974686, 0.0009095136192627251, 0.00139928690623492, 0.0014123746659606695, 0.003447804367169738, 0.4951702654361725]], [[0.018687425181269646, 0.0167615357786417, 0.0021330316085368395, 0.0022060303017497063, 0.0019531003199517727, 0.4563862085342407, 0.0014661012683063745, 0.0016238812822848558, 0.0002753569569904357, 0.0011521149426698685, 0.003198871621862054, 0.001513423165306449, 0.0013286750763654709, 0.005334199406206608, 0.003332630032673478, 0.002431877190247178, 0.48021554946899414], [0.00036796717904508114, 0.3290698230266571, 0.002206440083682537, 0.004849342629313469, 0.0049147712998092175, 0.28434517979621887, 0.013413825072348118, 0.028341293334960938, 0.0005886641447432339, 0.0019204504787921906, 0.0011824513785541058, 0.002071558265015483, 0.00045951551874168217, 0.005085798446089029, 0.00151151604950428, 0.018229087814688683, 0.30144232511520386], [0.0002983541344292462, 0.004479093477129936, 0.015285385772585869, 0.002046152949333191, 0.003259318182244897, 0.46242377161979675, 0.003298390656709671, 0.0019089384004473686, 0.0004265537136234343, 0.0004997584619559348, 0.0006909850635565817, 0.003241382772102952, 0.0007681529968976974, 0.0012667776318266988, 0.0006276762578636408, 0.006567955017089844, 0.49291130900382996], [0.0006056616548448801, 0.014953275211155415, 0.0006983126513659954, 0.14354658126831055, 0.01744847185909748, 0.3655674159526825, 0.005889381747692823, 0.004058468155562878, 0.0005686079384759068, 0.0023472700268030167, 0.0010832555126398802, 0.0011095060035586357, 0.002750582527369261, 0.011721562594175339, 0.01649303361773491, 0.023071929812431335, 0.3880867660045624], [0.0002840041124727577, 0.011091669090092182, 0.0011926424922421575, 0.006733535323292017, 0.11513197422027588, 0.3445805013179779, 0.024004215374588966, 0.007166013121604919, 0.0010645996080711484, 0.00037079007597640157, 0.0006675373297184706, 0.0006643637316301465, 0.0004338769940659404, 0.002471035812050104, 0.005541650112718344, 0.11501630395650864, 0.3635852634906769], [4.0922375774243847e-05, 0.0009777828818187118, 0.0005116760730743408, 0.0005940560949966311, 0.0006007197080180049, 0.48272913694381714, 0.00026811775751411915, 0.0005827349377796054, 0.0004215749795548618, 0.0004816987784579396, 0.00046319348621182144, 0.0004038897168356925, 0.0008642731700092554, 0.00124819774646312, 0.0017784865340217948, 0.002619061851873994, 0.5054145455360413], [0.00032271657255478203, 0.011404312215745449, 0.0003148666291963309, 0.0036728985141962767, 0.005484209395945072, 0.4550701379776001, 0.01929120160639286, 0.0032927950378507376, 0.0002930259215645492, 0.000373698741896078, 0.0003549706016201526, 0.00030918538686819375, 0.001239283476024866, 0.0014262127224355936, 0.0007806126377545297, 0.00744042219594121, 0.48892953991889954], [0.00020995817612856627, 0.03523608297109604, 0.000585276517085731, 0.0034829226788133383, 0.005258850287646055, 0.42838841676712036, 0.008472939021885395, 0.02401200495660305, 0.00047873269068077207, 0.0010404593776911497, 0.0009058216237463057, 0.0010321122827008367, 0.0024686716496944427, 0.004478744696825743, 0.0041856057941913605, 0.02176756225526333, 0.45799580216407776], [0.00015317850920837373, 0.0017162731382995844, 0.00019223391427658498, 0.0010275414679199457, 0.0010023318463936448, 0.4452396035194397, 0.002295633079484105, 0.0021625913213938475, 0.06399888545274734, 0.002724918071180582, 0.0006410073838196695, 0.0007827365188859403, 0.001132375793531537, 0.0018958363216370344, 0.0013439762406051159, 0.003115509869530797, 0.47057539224624634], [0.000250600598519668, 0.027644257992506027, 0.00028024305356666446, 0.006101250182837248, 0.0009006234467960894, 0.435997873544693, 0.001275690970942378, 0.0033306756522506475, 0.0009711685124784708, 0.034224897623062134, 0.0047063278034329414, 0.00081017822958529, 0.007216488942503929, 0.004611840471625328, 0.0068110632710158825, 0.003105712588876486, 0.4617610573768616], [9.51871697907336e-05, 0.003381154965609312, 0.0003220249491278082, 0.0035046956036239862, 0.0013452352723106742, 0.46713948249816895, 0.001490722643211484, 0.0015612042043358088, 0.0002673495910130441, 0.002169156214222312, 0.005261705722659826, 0.0007175562786869705, 0.0072448053397238255, 0.001902455696836114, 0.004445722792297602, 0.0024660611525177956, 0.4966853857040405], [9.569563553668559e-05, 0.002606271067634225, 0.002744195517152548, 0.0025284788571298122, 0.001300936914049089, 0.4531266689300537, 0.001668841578066349, 0.0025508583057671785, 0.0009081168682314456, 0.0008982930448837578, 0.0010427887318655849, 0.027643805369734764, 0.004426092840731144, 0.00511461915448308, 0.002959104022011161, 0.008073003962635994, 0.4823122024536133], [0.00010169842425966635, 0.0024437028914690018, 0.00029387479298748076, 0.0055100033059716225, 0.0012436934048309922, 0.38991111516952515, 0.001442435896024108, 0.0027904342859983444, 0.00030164478812366724, 0.004555508494377136, 0.0017825360409915447, 0.002148821484297514, 0.13379709422588348, 0.014487361535429955, 0.016021404415369034, 0.00650269677862525, 0.41666603088378906], [0.0002811384620144963, 0.011887571774423122, 0.0004400784964673221, 0.007422806229442358, 0.0008720404584892094, 0.4316537082195282, 0.00105220265686512, 0.0038504311814904213, 0.00032148719765245914, 0.0016938188346102834, 0.0007248972542583942, 0.0019576370250433683, 0.013469009660184383, 0.05099630355834961, 0.008227258920669556, 0.00454621110111475, 0.46060341596603394], [8.94488621270284e-05, 0.007009284570813179, 9.571455302648246e-05, 0.012665132991969585, 0.0020679845474660397, 0.4227478504180908, 0.0012907824711874127, 0.0055910744704306126, 0.00014906487194821239, 0.001117244828492403, 0.000771805178374052, 0.0005631965468637645, 0.005540178157389164, 0.005964810494333506, 0.07477247714996338, 0.007522715721279383, 0.45204123854637146], [0.00048741759383119643, 0.011754171922802925, 0.0004342868342064321, 0.01762816309928894, 0.015415582805871964, 0.4330420196056366, 0.011869124136865139, 0.004235807806253433, 0.00037311899359337986, 0.0010298005072399974, 0.001149981515482068, 0.0005991078214719892, 0.0016730144852772355, 0.004191338550299406, 0.009199807420372963, 0.02818830870091915, 0.45872896909713745], [4.143610203755088e-05, 0.001002457458525896, 0.0005206650821492076, 0.0006037360872142017, 0.0006084141205064952, 0.48263463377952576, 0.0002740035706665367, 0.0005947627942077816, 0.00042828047298826277, 0.0004913308657705784, 0.00047240423737093806, 0.000412004126701504, 0.0008874781779013574, 0.0012710144510492682, 0.0018027927726507187, 0.0026365783996880054, 0.5053179860115051]], [[0.04561252146959305, 0.018460284918546677, 0.0059175132773816586, 0.0024086004123091698, 0.004740792326629162, 0.42705315351486206, 0.0034596368204802275, 0.004517668392509222, 0.004746435210108757, 0.005558692384511232, 0.007057453505694866, 0.005567722488194704, 0.000922444392926991, 0.008876685053110123, 0.000897359277587384, 0.007774872239679098, 0.44642823934555054], [0.00021958745492156595, 0.2205788642168045, 0.0020322545897215605, 0.012269624508917332, 0.010938899591565132, 0.31360164284706116, 0.052125170826911926, 0.03233858197927475, 0.0004855600418522954, 0.0056548104621469975, 0.0029168755281716585, 0.00047878650366328657, 0.00141222367528826, 0.004222440533339977, 0.002446467289701104, 0.0066741276532411575, 0.3316041827201843], [0.0002793255844153464, 0.002662035869434476, 0.007250702008605003, 0.0011164091993123293, 0.002031581709161401, 0.4662431478500366, 0.003759704763069749, 0.0043638632632792, 0.0012267351849004626, 0.0021301882807165384, 0.002647473243996501, 0.0014112801291048527, 0.0007355814450420439, 0.0011336312163621187, 0.0009807879105210304, 0.005832712631672621, 0.4961949288845062], [6.14318487350829e-05, 0.003834294620901346, 0.002255786908790469, 0.08884312212467194, 0.019617943093180656, 0.40404000878334045, 0.011305266059935093, 0.006345187779515982, 0.0004460709460545331, 0.0050573949702084064, 0.003533370792865753, 0.0014621333684772253, 0.0026650126092135906, 0.002779176691547036, 0.006685786414891481, 0.012275805696845055, 0.4287922978401184], [0.00019232004706282169, 0.004678590223193169, 0.0027889395132660866, 0.009916639886796474, 0.1148427277803421, 0.39261433482170105, 0.03346176818013191, 0.0033919985871762037, 0.0004817628359887749, 0.0015647069085389376, 0.0028509702533483505, 0.000787148775998503, 0.0005739171174354851, 0.0014429005095735192, 0.0012002912117168307, 0.01415758952498436, 0.4150533378124237], [0.00010842431947821751, 0.0003421311848796904, 0.0002881749242078513, 0.0009957354050129652, 0.00101807015016675, 0.48271751403808594, 0.0006738469237461686, 0.00015766244905535132, 0.0001979403750738129, 0.0009651214932091534, 0.00021984096383675933, 0.0006507323705591261, 0.000839297310449183, 0.001152558485046029, 0.0005339324125088751, 0.0023002438247203827, 0.5068387985229492], [0.00034113050787709653, 0.003639787435531616, 0.0015862250002101064, 0.004776161164045334, 0.015821021050214767, 0.34666600823402405, 0.19938932359218597, 0.009995922446250916, 0.0005661236355081201, 0.008511224761605263, 0.003677473170682788, 0.0007210384937934577, 0.0009667240083217621, 0.0010121557861566544, 0.0013836335856467485, 0.03462721407413483, 0.36631888151168823], [0.00017928059969563037, 0.013396657072007656, 0.001178975566290319, 0.007625240366905928, 0.006443332880735397, 0.3901331424713135, 0.012228189036250114, 0.10511422157287598, 0.0011183307506144047, 0.0067718601785600185, 0.005029875785112381, 0.0013970892177894711, 0.0018655508756637573, 0.005595054477453232, 0.016244933009147644, 0.008718880824744701, 0.41695937514305115], [0.0005722095957025886, 0.002837746636942029, 0.0034524870570749044, 0.0015290752053260803, 0.0016720725689083338, 0.36885929107666016, 0.0025914032012224197, 0.005017375573515892, 0.19067999720573425, 0.01371905766427517, 0.0019268585601821542, 0.006504612509161234, 0.0003709527663886547, 0.0018503011669963598, 0.001692173769697547, 0.008475910872220993, 0.3882485330104828], [0.0003044739714823663, 0.008952283300459385, 0.0014846967533230782, 0.017345163971185684, 0.002508319914340973, 0.27595099806785583, 0.003992226906120777, 0.005399494431912899, 0.013416348025202751, 0.3452576696872711, 0.006197819486260414, 0.001516304793767631, 0.0012234920868650079, 0.0024792177136987448, 0.011109456419944763, 0.012654818594455719, 0.29020729660987854], [0.00032206979813054204, 0.0018642885843291879, 0.0010954294120892882, 0.005359770730137825, 0.0032849330455064774, 0.43405723571777344, 0.0038872752338647842, 0.004813998471945524, 0.004381078295409679, 0.01603076234459877, 0.05262317880988121, 0.0014606582699343562, 0.001393122598528862, 0.0013599557569250464, 0.0016026701778173447, 0.006766015663743019, 0.459697425365448], [0.00025572028243914247, 0.0018362175906077027, 0.0015751743922010064, 0.0015521044842898846, 0.0014063698472455144, 0.4617844820022583, 0.00163375458214432, 0.005208019632846117, 0.002074752701446414, 0.002936170669272542, 0.0025975671596825123, 0.0071619837544858456, 0.004469189327210188, 0.003941789269447327, 0.00198430591262877, 0.0071220495738089085, 0.4924603998661041], [0.00010309807839803398, 0.0012381100095808506, 0.0015425046440213919, 0.006959727965295315, 0.0016932643484324217, 0.4183071553707123, 0.00298045645467937, 0.0022768396884202957, 0.00039701274363324046, 0.008299465291202068, 0.009530440904200077, 0.004085983615368605, 0.08467957377433777, 0.003841784317046404, 0.002557171043008566, 0.004185972735285759, 0.44732141494750977], [0.00020694501290563494, 0.007479389663785696, 0.0011270333779975772, 0.01672932878136635, 0.0027695964090526104, 0.43542417883872986, 0.003626270452514291, 0.008382124826312065, 0.0003206910623703152, 0.0041452920995652676, 0.004397739190608263, 0.0024686530232429504, 0.009146813303232193, 0.02566557377576828, 0.008346262387931347, 0.005984313786029816, 0.46377986669540405], [4.3128766264999285e-05, 0.0019822947215288877, 0.0006914043333381414, 0.02806020900607109, 0.005495643243193626, 0.36175474524497986, 0.002585425740107894, 0.00415302999317646, 0.0007282280712388456, 0.007811745163053274, 0.001954484498128295, 0.0011754714651033282, 0.004330812022089958, 0.004363913554698229, 0.17867505550384521, 0.010699152015149593, 0.38549524545669556], [0.000219600202399306, 0.005247925408184528, 0.001382597372867167, 0.01139132957905531, 0.01282823272049427, 0.42527905106544495, 0.01993275061249733, 0.005057929083704948, 0.0010675655212253332, 0.006377193611115217, 0.003504530992358923, 0.001470562070608139, 0.0016141417436301708, 0.0034416408743709326, 0.00884726457297802, 0.04367494583129883, 0.44866275787353516], [0.00011071372136939317, 0.00035034777829423547, 0.0002927544410340488, 0.0010162661783397198, 0.001038214541040361, 0.48263299465179443, 0.0006885387701913714, 0.00016174730262719095, 0.00019944290397688746, 0.000982426106929779, 0.0002254840946989134, 0.000656636490020901, 0.0008528504986315966, 0.0011731740087270737, 0.0005486113368533552, 0.002338676480576396, 0.5067312121391296]], [[0.0027014315128326416, 0.0025997168850153685, 0.0016365472692996264, 0.0006207306869328022, 0.0033317813649773598, 0.4676778316497803, 0.0009804152650758624, 0.00570668512955308, 0.00683080917224288, 0.004380485974252224, 0.003313452238216996, 0.004494787659496069, 0.0036959752906113863, 0.003249091561883688, 0.00132177141495049, 0.0008958905818872154, 0.48656266927719116], [0.0007426590309478343, 0.02516266703605652, 0.006033783312886953, 0.0055265240371227264, 0.005122517701238394, 0.43717047572135925, 0.008060622960329056, 0.015653343871235847, 0.006419383455067873, 0.011802415363490582, 0.006096439901739359, 0.0018310933373868465, 0.0020758367609232664, 0.0023638957645744085, 0.005775123368948698, 0.004577796906232834, 0.4555855393409729], [0.0004461438802536577, 0.015006795525550842, 0.013455123640596867, 0.07178854942321777, 0.02034885808825493, 0.39371633529663086, 0.017990097403526306, 0.004966971464455128, 0.0020079337991774082, 0.009212242439389229, 0.006261854898184538, 0.002326610032469034, 0.0035243951715528965, 0.0018905078759416938, 0.010596519336104393, 0.013377771712839603, 0.4130832552909851], [0.00018207565881311893, 0.024472763761878014, 0.0093770120292902, 0.05594583600759506, 0.07253716886043549, 0.3406054377555847, 0.023195406422019005, 0.01245623268187046, 0.002689550630748272, 0.015591799281537533, 0.009363710880279541, 0.0014976814854890108, 0.0011245983187109232, 0.0019559089560061693, 0.012115010991692543, 0.057801343500614166, 0.3590884506702423], [0.00010610017488943413, 0.002886776579543948, 0.001819187542423606, 0.022377243265509605, 0.016346648335456848, 0.44998496770858765, 0.003393994877114892, 0.0036253812722861767, 0.0010442635975778103, 0.004886376205831766, 0.003710597287863493, 0.0005596655537374318, 0.0006038727588020265, 0.0007846933440305293, 0.00595072703436017, 0.004895655903965235, 0.4770239293575287], [0.0013039866462349892, 0.0009491844684816897, 0.00034338634577579796, 0.000953168491832912, 0.0007424625218845904, 0.48186883330345154, 0.0002725014928728342, 0.0007444137008860707, 0.0018066056072711945, 0.0017580105923116207, 0.0007159298402257264, 0.00043612023000605404, 0.0004964135587215424, 0.0017104330472648144, 0.0008152240770868957, 0.0007663406431674957, 0.504317045211792], [0.0002414670743746683, 0.008448872715234756, 0.0054538496769964695, 0.05690860003232956, 0.03302204981446266, 0.3833864629268646, 0.02312895841896534, 0.014336369931697845, 0.00321450037881732, 0.016393069177865982, 0.012759638018906116, 0.002212794031947851, 0.003242218866944313, 0.0015158138703554869, 0.017379887402057648, 0.015723131597042084, 0.40263232588768005], [0.0001167687150882557, 0.013363229110836983, 0.0015824984293431044, 0.00898666400462389, 0.007093646097928286, 0.4063126742839813, 0.01317342184484005, 0.021998930722475052, 0.011093138717114925, 0.025456907227635384, 0.022847864776849747, 0.0019921865314245224, 0.0025108465924859047, 0.0024108607321977615, 0.025114981457591057, 0.009170321747660637, 0.42677512764930725], [9.439068526262417e-05, 0.001351997721940279, 0.0005519918631762266, 0.003909386694431305, 0.0012225685641169548, 0.44988808035850525, 0.0022354519460350275, 0.0026756401639431715, 0.012899770401418209, 0.022463511675596237, 0.00870110746473074, 0.0010604754788801074, 0.0013369368389248848, 0.0011479329550638795, 0.010898428037762642, 0.001644141972064972, 0.4779183268547058], [6.76093841320835e-05, 0.0036421348340809345, 0.0005340203642845154, 0.002065888838842511, 0.0018321673851460218, 0.4457152485847473, 0.003198524471372366, 0.0057075005024671555, 0.01500694639980793, 0.020765533670783043, 0.009027399122714996, 0.00167031679302454, 0.0012896046973764896, 0.0017928719753399491, 0.011844562366604805, 0.0027414739597588778, 0.4730982482433319], [9.055134432855994e-05, 0.0030583487823605537, 0.001264171558432281, 0.006556706503033638, 0.00610411586239934, 0.37835249304771423, 0.024097736924886703, 0.017611367627978325, 0.013171041384339333, 0.031547751277685165, 0.07134389877319336, 0.0049822269938886166, 0.0030225967057049274, 0.003861033823341131, 0.02658820152282715, 0.007315295282751322, 0.4010324776172638], [0.0005381566006690264, 0.0038298815488815308, 0.0034845273476094007, 0.019277093932032585, 0.007658825255930424, 0.3808801472187042, 0.015533536672592163, 0.008660631254315376, 0.0113668879494071, 0.03099258989095688, 0.0442536324262619, 0.014105258509516716, 0.021139182150363922, 0.0055665383115410805, 0.026392070576548576, 0.0060056415386497974, 0.40031540393829346], [0.00023647682974115014, 0.0010628182208165526, 0.0015447750920429826, 0.0062661683186888695, 0.0034418499562889338, 0.4190976917743683, 0.0072328755632042885, 0.00601023668423295, 0.006976609118282795, 0.01811167597770691, 0.020269138738512993, 0.012374245561659336, 0.023768704384565353, 0.011138483881950378, 0.015232046134769917, 0.003240018617361784, 0.44399604201316833], [0.00021015947277192026, 0.0018997982842847705, 0.0010471625719219446, 0.0045213960111141205, 0.003701677778735757, 0.43782082200050354, 0.0032547947484999895, 0.005512657109647989, 0.0025281854905188084, 0.007646110840141773, 0.008282307535409927, 0.006714074406772852, 0.01381716225296259, 0.02145307883620262, 0.01730988174676895, 0.0035307053476572037, 0.460750013589859], [0.00011305095540592447, 0.0034283422864973545, 0.001332602696493268, 0.007055305875837803, 0.0041626738384366035, 0.3956339657306671, 0.015609067864716053, 0.016358591616153717, 0.008819732815027237, 0.028249818831682205, 0.030921034514904022, 0.004380007740110159, 0.009204402565956116, 0.013914546929299831, 0.03280288353562355, 0.009009169414639473, 0.4190048575401306], [0.00037130239070393145, 0.006610088050365448, 0.0034762746654450893, 0.03291703760623932, 0.01785561442375183, 0.41187286376953125, 0.008138947188854218, 0.007320455741137266, 0.005187649745494127, 0.022591326385736465, 0.010682801716029644, 0.002380714286118746, 0.003944162745028734, 0.0038576493971049786, 0.02099914476275444, 0.008614905178546906, 0.4331790804862976], [0.0013342613819986582, 0.000976762967184186, 0.00035347696393728256, 0.0009886198677122593, 0.0007710709469392896, 0.48172736167907715, 0.00028156107873655856, 0.0007690034108236432, 0.00185225042514503, 0.0018020020797848701, 0.0007380538736470044, 0.00044889291166327894, 0.000513130915351212, 0.001753983204253018, 0.0008451348985545337, 0.000789892568718642, 0.5040545463562012]], [[0.03701421990990639, 0.010153098031878471, 0.0035267414059489965, 0.0014824436511844397, 0.00362804951146245, 0.41966596245765686, 0.0019439541501924396, 0.015755368396639824, 0.006347017828375101, 0.005714490078389645, 0.009788651019334793, 0.00515552144497633, 0.005599677097052336, 0.026968425139784813, 0.00338172004558146, 0.0029734186828136444, 0.44090136885643005], [0.00028327020118013024, 0.023287752643227577, 0.003108654171228409, 0.0040166643448174, 0.0020856948103755713, 0.43222352862358093, 0.007248287554830313, 0.04531906172633171, 0.006233641412109137, 0.006880492903292179, 0.003734596073627472, 0.004851772449910641, 0.0013159274822100997, 0.0016513103619217873, 0.0018265844555571675, 0.0032990933395922184, 0.45263364911079407], [0.00020366332319099456, 0.00426735682412982, 0.0080330278724432, 0.003321622498333454, 0.0012480163713917136, 0.47188490629196167, 0.0005640801973640919, 0.0016097902553156018, 0.00022788054775446653, 0.0002587877679616213, 0.0007334023248404264, 0.0007417778251692653, 0.0010526432888582349, 0.002324068918824196, 0.0016260934062302113, 0.0011600098805502057, 0.5007428526878357], [5.306247476255521e-05, 0.00045572311501018703, 0.0007813947158865631, 0.006233426742255688, 0.0015720273368060589, 0.47519469261169434, 0.0006666206754744053, 0.001831781817600131, 0.0004982455284334719, 0.001869194325990975, 0.0010293559171259403, 0.0006771726766601205, 0.0011306345695629716, 0.0026979208923876286, 0.003215538104996085, 0.0018812495982274413, 0.5002121329307556], [9.807366586755961e-05, 0.0015734345652163029, 0.0008728116517886519, 0.005819140933454037, 0.0037688619922846556, 0.4732426702976227, 0.0013942370424047112, 0.0014771579299122095, 0.000439287832705304, 0.0007061971118673682, 0.0005962426657788455, 0.0009047382045537233, 0.0007169262389652431, 0.0020769652910530567, 0.0012968610972166061, 0.001953047700226307, 0.5030632615089417], [2.01447637664387e-05, 9.43799241213128e-05, 3.629510320024565e-05, 0.0002684258215595037, 8.877713844412938e-05, 0.48493659496307373, 6.44292522338219e-05, 0.0005672876723110676, 8.433715265709907e-05, 0.00017142965225502849, 0.000100643839687109, 6.49469657219015e-05, 0.00027817662339657545, 0.0006747560692019761, 0.000256141007412225, 9.861469879979268e-05, 0.5121946334838867], [0.00012914642866235226, 0.0036915410310029984, 0.0005129267810843885, 0.0023218784481287003, 0.0016760403523221612, 0.46932369470596313, 0.006052115000784397, 0.007921517826616764, 0.0008693975978530943, 0.00193192926235497, 0.0006401811842806637, 0.0006627919501625001, 0.0012528235092759132, 0.0026262898463755846, 0.0009534015553072095, 0.0019039820181205869, 0.49753037095069885], [8.854058251017705e-05, 0.002319183899089694, 0.0001172117845271714, 0.0010659006657078862, 0.0005736882449127734, 0.4657270610332489, 0.0013344588223844767, 0.020985396578907967, 0.0015858745900914073, 0.003385735908523202, 0.002914366079494357, 0.0009041213197633624, 0.0010608290322124958, 0.002192745916545391, 0.0013825662899762392, 0.0016302859876304865, 0.49273213744163513], [0.0001625841250643134, 0.0007732406374998391, 7.550566078862175e-05, 0.00022081292991060764, 0.00016909661644604057, 0.4683074951171875, 0.00033623212948441505, 0.003445180132985115, 0.021506814286112785, 0.002946398453786969, 0.0004598063533194363, 0.0003411367360968143, 0.00011480871762614697, 0.0006930359522812068, 0.0005106721073389053, 0.0010829662205651402, 0.4988541007041931], [0.00020428041170816869, 0.0013236430240795016, 0.00011975619418080896, 0.00041582033736631274, 0.0002615793200675398, 0.45686838030815125, 0.0005080998525954783, 0.0119276512414217, 0.00266221072524786, 0.029969502240419388, 0.002810969017446041, 0.0005630281521007419, 0.0006398934056051075, 0.0017788164550438523, 0.0033858772367239, 0.001130270422436297, 0.4854302704334259], [0.00018050505605060607, 0.0009872876107692719, 0.0004520321381278336, 0.000913103052880615, 0.0007296973490156233, 0.4718988239765167, 0.0007101196679286659, 0.005070746410638094, 0.001649846788495779, 0.0024306955747306347, 0.00749341631308198, 0.0012738326331600547, 0.0013889273395761847, 0.0020290056709200144, 0.0021000870037823915, 0.001073796534910798, 0.4996180534362793], [0.00010364236368332058, 0.0006696943310089409, 0.0005262720515020192, 0.0008324662339873612, 0.0003317496448289603, 0.47452521324157715, 0.00025025196373462677, 0.0023668198846280575, 0.0004899307969026268, 0.0010621604742482305, 0.0017185671022161841, 0.0061918883584439754, 0.0025372058153152466, 0.0036098903510719538, 0.0015943129546940327, 0.0005386644043028355, 0.5026512742042542], [2.3827449695090763e-05, 7.7062715718057e-05, 0.00011772758443839848, 0.0004302464076317847, 0.0001238318654941395, 0.47330814599990845, 7.19920644769445e-05, 0.0008035214268602431, 9.536817378830165e-05, 0.0006240003276616335, 0.0006284611881710589, 0.00040919819730333984, 0.008987867273390293, 0.003975889645516872, 0.0014561357675120234, 0.0001904382515931502, 0.5086763501167297], [3.2573429052717984e-05, 0.00015081062156241387, 0.0002579500724095851, 0.0005736029706895351, 0.00025668187299743295, 0.47481876611709595, 0.00024967367062345147, 0.0018329932354390621, 0.0005420281086117029, 0.001137769897468388, 0.0012112583499401808, 0.0008076237863861024, 0.003104589646682143, 0.008029958233237267, 0.0021008788608014584, 0.0005516196833923459, 0.5043412446975708], [1.4905540410836693e-05, 0.00023560183763038367, 0.0001809952809708193, 0.0008254746207967401, 0.0003369830083101988, 0.4779052734375, 0.00031046682852320373, 0.0014163977466523647, 0.0002386925189057365, 0.00144189631100744, 0.001937472028657794, 0.0004958802601322532, 0.0009760229731909931, 0.002545690629631281, 0.003220750018954277, 0.0005432769539766014, 0.5073742866516113], [6.037436833139509e-05, 0.0017558152321726084, 0.0007506156107410789, 0.003970440477132797, 0.002083448227494955, 0.4741849899291992, 0.0014790925197303295, 0.0026372051797807217, 0.0005517172976396978, 0.0009257959900423884, 0.0009121636976487935, 0.0007856109295971692, 0.0009213027660734951, 0.0017654900439083576, 0.0020837662741541862, 0.003180862870067358, 0.5019513964653015], [2.0643801690312102e-05, 9.82285855570808e-05, 3.737792212632485e-05, 0.0002752720902208239, 9.1721405624412e-05, 0.48491597175598145, 6.63925675326027e-05, 0.000582174165174365, 8.665914356242865e-05, 0.00017564701556693763, 0.00010371118696639314, 6.686022243229672e-05, 0.00028917708550579846, 0.0006913027027621865, 0.0002612251846585423, 0.00010137704521184787, 0.5121362209320068]], [[0.0018339601811021566, 0.018899861723184586, 0.006327509880065918, 0.0030549264047294855, 0.007836793549358845, 0.4382213354110718, 0.007318783551454544, 0.009626693092286587, 0.004118545912206173, 0.008936850354075432, 0.0032182831782847643, 0.006049117539077997, 0.004488237202167511, 0.005975952837616205, 0.009573315270245075, 0.007789003662765026, 0.4567307233810425], [0.001839793287217617, 0.07718976587057114, 0.011018582619726658, 0.01772923767566681, 0.02854211814701557, 0.395879328250885, 0.00562889501452446, 0.007731173653155565, 0.0013533035526052117, 0.0038284442853182554, 0.0010392062831670046, 0.0020333353895694017, 0.0012126596411690116, 0.003717351472005248, 0.003883305937051773, 0.01958180032670498, 0.4177916944026947], [0.00032464959076605737, 0.07134220749139786, 0.013701485469937325, 0.00790735986083746, 0.009636010974645615, 0.4254339933395386, 0.0029686230700463057, 0.0029141143895685673, 0.00018846210150513798, 0.0010256440145894885, 0.00027128838701173663, 0.00041836852324195206, 0.00023680197773501277, 0.00040156676550395787, 0.0007329664076678455, 0.009931058622896671, 0.45256537199020386], [0.0011498689418658614, 0.16161924600601196, 0.04172910377383232, 0.017049090936779976, 0.031334031373262405, 0.34407147765159607, 0.0034864044282585382, 0.0050530512817204, 0.0005344949895516038, 0.0017725584330037236, 0.0007918180781416595, 0.00204259785823524, 0.0008282270864583552, 0.0032666123006492853, 0.002943789353594184, 0.016824055463075638, 0.36550360918045044], [0.0009809747571125627, 0.040267109870910645, 0.030209582298994064, 0.028653670102357864, 0.027789628133177757, 0.4121406376361847, 0.0036098421551287174, 0.0017336515011265874, 0.00023876001068856567, 0.0012581517221406102, 0.0006972408154979348, 0.0011482136324048042, 0.0007358265575021505, 0.0007574752671644092, 0.0012210983550176024, 0.011322882026433945, 0.4372352659702301], [0.0013597520301118493, 0.00954285729676485, 0.0016534345922991633, 0.0008982545114122331, 0.0036592327523976564, 0.46730542182922363, 0.002828672993928194, 0.005872098263353109, 0.0019199905218556523, 0.0013849162496626377, 0.0010586397256702185, 0.0025836359709501266, 0.0013681119307875633, 0.002964662853628397, 0.0014124319422990084, 0.004211630672216415, 0.4899761974811554], [0.00015918903227429837, 0.02260226011276245, 0.005875736474990845, 0.0044706640765070915, 0.011658765375614166, 0.4448092579841614, 0.008510611951351166, 0.012364176101982594, 0.0014342303620651364, 0.0036161027383059263, 0.0015862634172663093, 0.0014575888635590672, 0.0008206616039387882, 0.000831162033136934, 0.0023752881679683924, 0.005539566278457642, 0.47188833355903625], [0.0008056246442720294, 0.028160981833934784, 0.0016631475882604718, 0.001899220049381256, 0.010461832396686077, 0.4208311438560486, 0.010327089577913284, 0.027004098519682884, 0.0061482759192585945, 0.011502929963171482, 0.004147953353822231, 0.0043824203312397, 0.00269102375023067, 0.0049262819811701775, 0.005483252461999655, 0.012873382307589054, 0.4466913044452667], [0.00014445999113377184, 0.002497119829058647, 9.189960837829858e-05, 0.00027361465618014336, 0.001058557303622365, 0.46302273869514465, 0.0027463906444609165, 0.006464040372520685, 0.0035102509427815676, 0.012064929120242596, 0.0023332044947892427, 0.0012505988124758005, 0.0015906490152701735, 0.0019160531228408217, 0.0025615256745368242, 0.002456972375512123, 0.49601712822914124], [0.0001593280612723902, 0.00574876694008708, 0.00032340962206944823, 0.0004971754387952387, 0.001769631402567029, 0.409417062997818, 0.0070182280614972115, 0.02627316676080227, 0.027873406186699867, 0.03327886387705803, 0.006865511182695627, 0.008843569085001945, 0.006475812289863825, 0.009153918363153934, 0.010242159478366375, 0.007398639805614948, 0.43866145610809326], [0.0001727038761600852, 0.0065090893767774105, 0.00031787349143996835, 0.0008685848442837596, 0.0023312880657613277, 0.3691885471343994, 0.0090477941557765, 0.043056588619947433, 0.02191954478621483, 0.08135703206062317, 0.03169576823711395, 0.0062105548568069935, 0.0073615326546132565, 0.005216591060161591, 0.011494047939777374, 0.009101376868784428, 0.39415109157562256], [0.00034180781221948564, 0.008124655112624168, 0.0004696669930126518, 0.0007365670753642917, 0.0015455741668120027, 0.4219101667404175, 0.007146649062633514, 0.023441709578037262, 0.005146472714841366, 0.02107313647866249, 0.01731681637465954, 0.006210602819919586, 0.011091096326708794, 0.007172232493758202, 0.016036344692111015, 0.004520404152572155, 0.44771620631217957], [0.00023360089107882231, 0.0062441700138151646, 0.00021385792933870107, 0.00046248018043115735, 0.001791415037587285, 0.4194789230823517, 0.002995371352881193, 0.018301162868738174, 0.004014125559478998, 0.016451558098196983, 0.014146110974252224, 0.011124051176011562, 0.012728525325655937, 0.01839737594127655, 0.02144651487469673, 0.003996135201305151, 0.44797468185424805], [0.00044629626790992916, 0.005226652137935162, 0.00043571446440182626, 0.0007920687203295529, 0.0038318620063364506, 0.42809298634529114, 0.0038059058133512735, 0.014568745158612728, 0.0034463645424693823, 0.010627776384353638, 0.012489029206335545, 0.014225300401449203, 0.016430290415883064, 0.010717933997511864, 0.01225864328444004, 0.006047660950571299, 0.4565567374229431], [0.0006892525707371533, 0.008169866167008877, 0.0007257726392708719, 0.0008408005814999342, 0.0021317186765372753, 0.3385085463523865, 0.0033520511351525784, 0.04703269526362419, 0.0052854036912322044, 0.018284620717167854, 0.03078770823776722, 0.022470401600003242, 0.053926315158605576, 0.07454051077365875, 0.026035437360405922, 0.005900698248296976, 0.36131808161735535], [0.0009360439726151526, 0.03247488662600517, 0.006906818598508835, 0.0053560188971459866, 0.007829937152564526, 0.42234915494918823, 0.007101993542164564, 0.011296904645860195, 0.0012548679951578379, 0.009794887155294418, 0.004276325926184654, 0.006465433165431023, 0.008821283467113972, 0.0059324889443814754, 0.009843849577009678, 0.011243690736591816, 0.44811537861824036], [0.001375178573653102, 0.009692107327282429, 0.001689758151769638, 0.0009170257835648954, 0.003726306138560176, 0.4669685363769531, 0.002877413062378764, 0.00597055908292532, 0.0019500136841088533, 0.0014105982845649123, 0.0010758225107565522, 0.0026276763528585434, 0.001397759304381907, 0.003007943043485284, 0.0014420142397284508, 0.004301152192056179, 0.4895702004432678]], [[0.019248908385634422, 0.01480217557400465, 0.010205009020864964, 0.006696663796901703, 0.019485170021653175, 0.3743170201778412, 0.007149669341742992, 0.024365555495023727, 0.05163656175136566, 0.027699807658791542, 0.005293770227581263, 0.008998138830065727, 0.00480720866471529, 0.004600257147103548, 0.005969189573079348, 0.02984301559627056, 0.38488179445266724], [0.0007218239479698241, 0.04907909035682678, 0.05513348802924156, 0.03715800121426582, 0.3309376537799835, 0.17829632759094238, 0.02948438562452793, 0.006368480622768402, 0.00031842096359468997, 0.000551929755602032, 0.0004933672025799751, 0.0016821158351376653, 0.000582986744120717, 0.0016551206354051828, 0.016318047419190407, 0.10367254167795181, 0.18754616379737854], [0.00046789474436081946, 0.06111692264676094, 0.014793864451348782, 0.013795171864330769, 0.020956700667738914, 0.42010414600372314, 0.001077658380381763, 0.005513245239853859, 6.86904022586532e-05, 0.00012436990800779313, 0.0009751582983881235, 0.0007676906534470618, 0.000198492911295034, 0.0006717048236168921, 0.0037564397789537907, 0.013650902546942234, 0.4419609010219574], [0.0029989704489707947, 0.07449936866760254, 0.18271905183792114, 0.03370964527130127, 0.032184015959501266, 0.2994893789291382, 0.004527234937995672, 0.011256610043346882, 0.0007231579511426389, 0.0008858744986355305, 0.002933765994384885, 0.0056874980218708515, 0.0024203534703701735, 0.009112473577260971, 0.006138143595308065, 0.017204005271196365, 0.3135105073451996], [0.001048192149028182, 0.023281307891011238, 0.027808567509055138, 0.06843291968107224, 0.10155663639307022, 0.3434578478336334, 0.010328413918614388, 0.006703805644065142, 0.00020970322657376528, 0.000857948383782059, 0.001736100879497826, 0.0019191015744581819, 0.0012693332973867655, 0.00429074652493, 0.012820477597415447, 0.0349663607776165, 0.35931259393692017], [0.003874782705679536, 0.008100195787847042, 0.001210757065564394, 0.003948390018194914, 0.008430915884673595, 0.45574644207954407, 0.0024150002282112837, 0.006010955199599266, 0.0021049948409199715, 0.0020313826389610767, 0.0017984450096264482, 0.001442679320462048, 0.0015896618133410811, 0.006338395178318024, 0.005490052979439497, 0.012479618191719055, 0.4769872725009918], [0.00014520202239509672, 0.0031741198617964983, 0.0029172368813306093, 0.016918782144784927, 0.0885704830288887, 0.4043721556663513, 0.014288768172264099, 0.002237289445474744, 0.0004283092566765845, 0.0009445390896871686, 0.0011369100539013743, 0.0007017849129624665, 0.0004211982886772603, 0.0007090853177942336, 0.003090505488216877, 0.03380971401929855, 0.42613381147384644], [0.0006988083478063345, 0.02710699662566185, 0.0017969128675758839, 0.009211747907102108, 0.07952792942523956, 0.1728142946958542, 0.35926353931427, 0.05568072944879532, 0.001264282502233982, 0.0028024495113641024, 0.02755304053425789, 0.004943542648106813, 0.002883599139750004, 0.002797741675749421, 0.03510993719100952, 0.035934507846832275, 0.18060995638370514], [0.0004427331150509417, 0.0036390910390764475, 0.00035995853249914944, 0.0008677346049807966, 0.004260180052369833, 0.39635413885116577, 0.006640078965574503, 0.09696051478385925, 0.021311426535248756, 0.003703882684931159, 0.02011101320385933, 0.005933646112680435, 0.0009701956296339631, 0.0021453138906508684, 0.004606919828802347, 0.01217031478881836, 0.41952285170555115], [0.00035013610613532364, 0.0024520265869796276, 0.0007643235730938613, 0.0004951590672135353, 0.004411253612488508, 0.22101329267024994, 0.008761007338762283, 0.04247080534696579, 0.3952495753765106, 0.01668373867869377, 0.009528948925435543, 0.029447872191667557, 0.0029458235949277878, 0.007112286984920502, 0.0073491367511451244, 0.01911599189043045, 0.23184867203235626], [0.000361503625754267, 0.0006578044849447906, 0.00022495354642160237, 0.001086507341824472, 0.001844072830863297, 0.3678184449672699, 0.0035790433175861835, 0.015685543417930603, 0.07467830181121826, 0.07933691143989563, 0.02601599134504795, 0.014155295677483082, 0.008367893286049366, 0.005025434773415327, 0.005535174161195755, 0.008135083131492138, 0.3874920606613159], [0.002047212328761816, 0.009772772900760174, 0.001231967005878687, 0.003982083406299353, 0.008920907974243164, 0.31980374455451965, 0.011070160195231438, 0.06462246179580688, 0.0030965148471295834, 0.006445444654673338, 0.17471551895141602, 0.013853042386472225, 0.006051899865269661, 0.005970354191958904, 0.017997466027736664, 0.015285570174455643, 0.335132896900177], [0.00042326340917497873, 0.002009144052863121, 0.0006461897864937782, 0.0008182369056157768, 0.0028818068094551563, 0.3660890460014343, 0.002387285465374589, 0.009366865269839764, 0.004569265991449356, 0.006725737825036049, 0.029359353706240654, 0.12804019451141357, 0.027219634503126144, 0.01780633069574833, 0.007843540981411934, 0.008002432063221931, 0.38581177592277527], [0.0016445685178041458, 0.005504337605088949, 0.0014831050066277385, 0.001939463196322322, 0.008610568940639496, 0.384212851524353, 0.007940074428915977, 0.016638705506920815, 0.002344338223338127, 0.007571537978947163, 0.04121311381459236, 0.03433937951922417, 0.04377005994319916, 0.009835240431129932, 0.014829084277153015, 0.0159776471555233, 0.40214601159095764], [0.0010739865247160196, 0.0012005146127194166, 0.0007384679047390819, 0.001650925143621862, 0.0025752298533916473, 0.3946628272533417, 0.0026718652807176113, 0.006012276280671358, 0.0018381963018327951, 0.007710272911936045, 0.010943545028567314, 0.01331268809735775, 0.039312943816185, 0.07470961660146713, 0.018229767680168152, 0.007762956898659468, 0.4155938923358917], [0.0014196498086676002, 0.012338312342762947, 0.008271031081676483, 0.021274400874972343, 0.03055623732507229, 0.34258705377578735, 0.006988208275288343, 0.01682557724416256, 0.0009618202457204461, 0.004438998643308878, 0.008029961958527565, 0.007368366699665785, 0.009646422229707241, 0.012575509957969189, 0.09339086711406708, 0.06518536061048508, 0.35814225673675537], [0.003913010936230421, 0.008255818858742714, 0.0012411761563271284, 0.004018742591142654, 0.008581443689763546, 0.45516350865364075, 0.0024533921387046576, 0.006125037092715502, 0.0021402284037321806, 0.002061497652903199, 0.0018221937352791429, 0.001478428253903985, 0.001625432283617556, 0.006434766110032797, 0.005631700623780489, 0.01271708682179451, 0.4763365089893341]], [[0.02731984294950962, 0.005502458196133375, 0.05181949958205223, 0.022971315309405327, 0.04119244962930679, 0.3331863284111023, 0.010448422282934189, 0.01076094713062048, 0.006942944601178169, 0.02060864306986332, 0.02127819135785103, 0.02114257961511612, 0.018061162903904915, 0.020212439820170403, 0.01963547244668007, 0.023462504148483276, 0.3454548418521881], [0.0026080720126628876, 0.0225790087133646, 0.2070750892162323, 0.055886417627334595, 0.05099991708993912, 0.2549954354763031, 0.01573345810174942, 0.04035501182079315, 0.008334148675203323, 0.014549321494996548, 0.004905801732093096, 0.009907904081046581, 0.004519863519817591, 0.005193368531763554, 0.008212282322347164, 0.027507368475198746, 0.26663750410079956], [0.0010978949721902609, 0.005529374815523624, 0.009095960296690464, 0.1322556734085083, 0.03540791571140289, 0.38977864384651184, 0.0030418033711612225, 0.0006083052139729261, 4.4661857828032225e-05, 0.0004651964409276843, 0.00017785652016755193, 0.0004218104004394263, 0.0008500615367665887, 0.0006601897766813636, 0.0024769892916083336, 0.005139749031513929, 0.41294795274734497], [0.0016806734493002295, 0.015900280326604843, 0.011433690786361694, 0.016939479857683182, 0.1274772584438324, 0.37521106004714966, 0.007494168356060982, 0.0019585087429732084, 0.0002208391233580187, 0.0031611728481948376, 0.0011759180342778563, 0.00047322522732429206, 0.0003401257563382387, 0.00047583438572473824, 0.0019504389492794871, 0.03675047680735588, 0.397356778383255], [0.002864298177883029, 0.05274946987628937, 0.02587033435702324, 0.020457634702324867, 0.12923936545848846, 0.33194708824157715, 0.0255756638944149, 0.01225193589925766, 0.0017418452771380544, 0.00423798942938447, 0.0018057306297123432, 0.0031111284624785185, 0.0008640255546197295, 0.001754714990966022, 0.002786007709801197, 0.03462224453687668, 0.34812048077583313], [0.0021298264618963003, 0.0037204199470579624, 0.0036203714553266764, 0.0036823025438934565, 0.007283227983862162, 0.45613759756088257, 0.0032749376259744167, 0.006382207851856947, 0.0018130589742213488, 0.00484040891751647, 0.0036669655237346888, 0.00335898669436574, 0.0040728310123085976, 0.005567759741097689, 0.004574128892272711, 0.010519953444600105, 0.47535502910614014], [0.0010760410223156214, 0.021419668570160866, 0.008907132782042027, 0.0025153865572065115, 0.007161665707826614, 0.3680490553379059, 0.030073052272200584, 0.09188690781593323, 0.02580895833671093, 0.009577684104442596, 0.006179072428494692, 0.013502604328095913, 0.0041983784176409245, 0.004282137379050255, 0.002443688688799739, 0.017152203246951103, 0.3857663571834564], [0.001439534011296928, 0.004695995710790157, 0.00950940977782011, 0.0046338289976119995, 0.007427570875734091, 0.3621928095817566, 0.0047453162260353565, 0.04232824593782425, 0.032217882573604584, 0.045853059738874435, 0.015189668163657188, 0.02799750678241253, 0.016856832429766655, 0.011952201835811138, 0.015956509858369827, 0.019293297082185745, 0.3777102828025818], [0.0006983808125369251, 0.0008986812317743897, 9.616684837965295e-05, 0.0004067900590598583, 0.0005985717289149761, 0.2593602240085602, 0.0010505199898034334, 0.0022273173090070486, 0.00846103671938181, 0.40988442301750183, 0.03037100099027157, 0.0012708238791674376, 0.006333175115287304, 0.0009375499794259667, 0.0019266321323812008, 0.0012072273530066013, 0.27427148818969727], [0.0005660933675244451, 0.0007939239731058478, 0.00048513920046389103, 0.0014131780480965972, 0.0013935633469372988, 0.33178049325942993, 0.0031172751914709806, 0.006593754515051842, 0.003134919563308358, 0.06531379371881485, 0.1489846110343933, 0.0062284586019814014, 0.030378557741642, 0.013174088671803474, 0.025549771264195442, 0.007648133672773838, 0.35344433784484863], [0.0018088772194460034, 0.0014632405946031213, 0.0014724171487614512, 0.0051009273156523705, 0.004812456201761961, 0.36434683203697205, 0.00274017290212214, 0.014120204374194145, 0.003970498219132423, 0.02245422825217247, 0.05114912614226341, 0.024115005508065224, 0.032562680542469025, 0.033275581896305084, 0.034738726913928986, 0.017424844205379486, 0.3844441771507263], [0.001338712521828711, 0.0010153752518817782, 0.0012654282618314028, 0.003476791549474001, 0.0026113262865692377, 0.31004607677459717, 0.0035315549466758966, 0.0031078022439032793, 0.0009672759915702045, 0.014373080804944038, 0.008893021382391453, 0.01656406931579113, 0.25874221324920654, 0.02422620914876461, 0.018249904736876488, 0.004037749487906694, 0.3275534212589264], [0.00019327952759340405, 0.0005703889182768762, 0.0002612424723338336, 0.0013356697745621204, 0.0012309777084738016, 0.38133424520492554, 0.0011649634689092636, 0.0012688032584264874, 0.00029391361749731004, 0.002987302141264081, 0.005029281601309776, 0.004870954435318708, 0.047489460557699203, 0.04635341465473175, 0.09251371771097183, 0.008738788776099682, 0.40436357259750366], [0.0011898024240508676, 0.0015511150704696774, 0.001814279705286026, 0.0067792292684316635, 0.004282780457288027, 0.4103781580924988, 0.0017674955306574702, 0.0045425500720739365, 0.0011520858388394117, 0.008311009034514427, 0.0034799736458808184, 0.003045078134164214, 0.012066999450325966, 0.010301219299435616, 0.08125898241996765, 0.01455690898001194, 0.43352240324020386], [0.0012171114794909954, 0.007911792024970055, 0.0025075734592974186, 0.004724342375993729, 0.015099027194082737, 0.3963594436645508, 0.007496222387999296, 0.009749451652169228, 0.004042894579470158, 0.02008434198796749, 0.018467307090759277, 0.005717242136597633, 0.006148646119982004, 0.00564322154968977, 0.0240694098174572, 0.05258079990744591, 0.41818130016326904], [0.0038679966237396, 0.03355589881539345, 0.013527938164770603, 0.01721641607582569, 0.042482685297727585, 0.3891935348510742, 0.015766046941280365, 0.015042915940284729, 0.002578245010226965, 0.005366945639252663, 0.003416468622162938, 0.004180568736046553, 0.002235224237665534, 0.003050931030884385, 0.004814848303794861, 0.03726924583315849, 0.4064340591430664], [0.002172961365431547, 0.003794673830270767, 0.003692486323416233, 0.003735742997378111, 0.0073716663755476475, 0.4556419551372528, 0.003324884455651045, 0.006479989737272263, 0.001846130471676588, 0.0049010347574949265, 0.0037075357977300882, 0.003430887358263135, 0.004116034600883722, 0.0056518856436014175, 0.0046536121517419815, 0.010657905600965023, 0.4748205840587616]], [[0.0007983528776094317, 0.000356365111656487, 0.0005223937914706767, 0.0001823029015213251, 4.32020278822165e-05, 0.47928640246391296, 0.0009928415529429913, 0.001873213448561728, 0.00020997550745960325, 0.002154764486476779, 0.0003951006510760635, 0.0008316453895531595, 0.0006713386974297464, 0.0010820096358656883, 0.0005515326047316194, 0.0013627585722133517, 0.5086857676506042], [6.0973354266025126e-05, 0.032982923090457916, 0.003912065178155899, 0.0017772949067875743, 0.0010652034543454647, 0.3998650908470154, 0.08020780235528946, 0.03019523061811924, 0.0012337066000327468, 0.004056375008076429, 0.006516092456877232, 0.005187094211578369, 0.002419442171230912, 0.0016636663349345326, 0.0017607565969228745, 0.004879860207438469, 0.4222164452075958], [4.426383748068474e-05, 0.0004182596458122134, 0.016022939234972, 0.0027003984432667494, 0.000923154060728848, 0.46875911951065063, 0.0008363322704099119, 0.0012489988002926111, 0.0004493493470363319, 0.0009848783956840634, 0.0006501986063085496, 0.000895935925655067, 0.001623976626433432, 0.0008535019005648792, 0.0008282876806333661, 0.002058046404272318, 0.5007023215293884], [4.3313473724992946e-05, 0.000825983879622072, 0.003572487970814109, 0.037941958755254745, 0.004964129533618689, 0.4451315402984619, 0.004831845406442881, 0.0029100265819579363, 0.0006735857459716499, 0.006243755109608173, 0.0021111597307026386, 0.0012331173056736588, 0.002704038517549634, 0.0017147255130112171, 0.00791121181100607, 0.005586262326687574, 0.47160083055496216], [0.000130382293718867, 0.005794697906821966, 0.011438464745879173, 0.09044979512691498, 0.07253266125917435, 0.2820877134799957, 0.02549494057893753, 0.0297164898365736, 0.0057780989445745945, 0.039472274482250214, 0.015144214034080505, 0.005058072041720152, 0.008627925999462605, 0.00884686503559351, 0.023175489157438278, 0.0801512748003006, 0.29610052704811096], [1.0833701708179433e-05, 4.8527130275033414e-05, 0.00020229205256327987, 6.415693496819586e-05, 1.0133255273103714e-05, 0.47990694642066956, 0.00034408789360895753, 0.00036576599813997746, 3.1218638468999416e-05, 0.00014661795285064727, 6.53968018013984e-05, 0.00012746360152959824, 0.0003474682162050158, 0.0001653358485782519, 0.00023541244445368648, 0.0009599818149581552, 0.5169683694839478], [4.01069555664435e-05, 0.0016491853166371584, 0.0006844897288829088, 0.0032187821343541145, 0.0009189731208607554, 0.45648255944252014, 0.027952292934060097, 0.0032915391493588686, 0.0004854175203945488, 0.002315032295882702, 0.0018217868637293577, 0.0014080650871619582, 0.0017474923515692353, 0.0013672042405232787, 0.002427788218483329, 0.003640676848590374, 0.4905485510826111], [4.8055051593109965e-05, 0.0011438234942033887, 0.0009089639643207192, 0.0009651912841945887, 0.0012082542525604367, 0.4712352454662323, 0.0030777358915656805, 0.010147563181817532, 0.0005843393737450242, 0.0011126280296593904, 0.0025992158334702253, 0.0007314060349017382, 0.0008692850824445486, 0.001376997446641326, 0.002105594612658024, 0.001299712690524757, 0.5005859732627869], [4.535798143479042e-05, 0.00013328185013961047, 0.0007431908161379397, 0.0006322271656244993, 0.0003879281575791538, 0.4770902097225189, 0.00022101224749349058, 0.0007556045311503112, 0.0026776986196637154, 0.001895527821034193, 0.0002872054174076766, 0.0006425122264772654, 0.0004274571838323027, 0.0010208102175965905, 0.0005448093870654702, 0.0015869848430156708, 0.5109081864356995], [1.365685420751106e-05, 0.0002009750169236213, 0.00015987544611562043, 0.0003979032044298947, 0.00022418062144424766, 0.46851497888565063, 0.0005066486774012446, 0.0008620920707471669, 0.00044615159276872873, 0.016756579279899597, 0.0004335224803071469, 0.000415636197431013, 0.0011124719167128205, 0.0005677359877154231, 0.0008834875770844519, 0.0012040769215673208, 0.5073000192642212], [6.925030902493745e-05, 0.0004419378819875419, 0.0005144735332578421, 0.0012222217628732324, 0.002257048385217786, 0.46669891476631165, 0.0010002809576690197, 0.003769851289689541, 0.000654259929433465, 0.0015041056321933866, 0.012402045540511608, 0.0016921180067583919, 0.0015097908908501267, 0.0016984532121568918, 0.002505128039047122, 0.004129977896809578, 0.4979301393032074], [3.679060682770796e-05, 0.0001936942571774125, 0.00085845758439973, 0.0007010403205640614, 0.0003070622915402055, 0.47633299231529236, 0.0006133341230452061, 0.0006443115998990834, 0.000304496381431818, 0.000524620758369565, 0.0007244448061101139, 0.003975110128521919, 0.0011152157094329596, 0.0007399307796731591, 0.0008718860917724669, 0.0013425847282633185, 0.5107139945030212], [1.984150003409013e-05, 0.00010288850171491504, 0.0007408176898024976, 0.0007402117480523884, 0.00023418698401656002, 0.47099775075912476, 0.0007672572392039001, 0.001009681960567832, 0.00012816603702958673, 0.002417496172711253, 0.0007763921748846769, 0.0006887127528898418, 0.012515184469521046, 0.0018100365996360779, 0.001671629142947495, 0.0005776858306489885, 0.5048020482063293], [1.2977436199435033e-05, 0.00015046259795781225, 0.0006878940621390939, 0.0004532225721050054, 0.00018004511366598308, 0.47681739926338196, 0.0006876307306811213, 0.0008401342784054577, 0.00013688896433450282, 0.0004656724340748042, 0.0006240070797502995, 0.0009072290849871933, 0.001629907637834549, 0.0016444138018414378, 0.0009086161735467613, 0.001215155702084303, 0.512638509273529], [3.1014616979518905e-05, 0.0004441671189852059, 0.0005490462644957006, 0.003014432964846492, 0.001124926027841866, 0.4706578552722931, 0.0015102069592103362, 0.0011513590579852462, 0.00011033778719138354, 0.001064024050720036, 0.0008238152367994189, 0.0005799526115879416, 0.0012049977667629719, 0.0010225302539765835, 0.007858861237764359, 0.0051810247823596, 0.5036715269088745], [2.7040703571401536e-05, 0.0007751703960821033, 0.0006206338875927031, 0.0055013359524309635, 0.00514128478243947, 0.46254557371139526, 0.002053977455943823, 0.0015373857459053397, 0.00027553990366868675, 0.001145369722507894, 0.000885430199559778, 0.0005982904694974422, 0.0003940611786674708, 0.0006193484296090901, 0.004428650718182325, 0.015649542212486267, 0.4978012442588806], [1.0843044037756044e-05, 4.8994039389071986e-05, 0.0002011370233958587, 6.427413609344512e-05, 1.03017655419535e-05, 0.4798944890499115, 0.000346240121871233, 0.00036610790994018316, 3.129076139885001e-05, 0.00014638334687333554, 6.584631046280265e-05, 0.0001273469242732972, 0.0003473714168649167, 0.00016532791778445244, 0.00023470491578336805, 0.000960293342359364, 0.5169790983200073]]], [[[0.0037361152935773134, 0.01700936071574688, 0.007876680232584476, 0.005702730733901262, 0.0011862647952511907, 0.44345661997795105, 0.0050741820596158504, 0.003932533785700798, 0.0019157642964273691, 0.0012742180842906237, 0.0028318658005446196, 0.00851325411349535, 0.009575949981808662, 0.024156849831342697, 0.002584281377494335, 0.004417515359818935, 0.4567559063434601], [0.0006350124021992087, 0.09995114058256149, 0.015023126266896725, 0.037462811917066574, 0.009762896224856377, 0.27373358607292175, 0.05011264979839325, 0.0658363401889801, 0.0043493472039699554, 0.01898050867021084, 0.006971593480557203, 0.008153524249792099, 0.009999854490160942, 0.04603550583124161, 0.022301562130451202, 0.049213457852602005, 0.2814771234989166], [0.00040034964331425726, 0.021722638979554176, 0.005781750660389662, 0.011395109817385674, 0.009859727695584297, 0.43900132179260254, 0.006561574060469866, 0.00741583714261651, 0.0011706510558724403, 0.002449655905365944, 0.0017579529667273164, 0.0032607598695904016, 0.0047642323188483715, 0.006174800917506218, 0.0052336882799863815, 0.018527263775467873, 0.45452257990837097], [0.00022065489611122757, 0.015276175923645496, 0.009483518078923225, 0.09278103709220886, 0.01966066285967827, 0.32768332958221436, 0.025778843089938164, 0.009689338505268097, 0.0011246999492868781, 0.0052958894520998, 0.004418804310262203, 0.002766176126897335, 0.007004080340266228, 0.020755840465426445, 0.03968840837478638, 0.07765504717826843, 0.3407174348831177], [0.0019052260322496295, 0.04412013664841652, 0.01468773651868105, 0.08015180379152298, 0.07938508689403534, 0.27913418412208557, 0.03126426786184311, 0.01603589951992035, 0.0010815705172717571, 0.00721443397924304, 0.005617152433842421, 0.002927987603470683, 0.0056655253283679485, 0.029202530160546303, 0.023360414430499077, 0.08955748379230499, 0.2886885106563568], [0.05809209123253822, 0.09456519037485123, 0.029149843379855156, 0.048172902315855026, 0.008772948756814003, 0.060624778270721436, 0.03861435875296593, 0.09157029539346695, 0.029788702726364136, 0.03723738715052605, 0.018603602424263954, 0.024638526141643524, 0.04540807381272316, 0.24621936678886414, 0.0671720877289772, 0.04058307409286499, 0.06078677996993065], [0.00030884184525348246, 0.022208010777831078, 0.006097600795328617, 0.017670633271336555, 0.012344826012849808, 0.41556814312934875, 0.01943099871277809, 0.008085972629487514, 0.0012058877618983388, 0.0047271279618144035, 0.0022830606903880835, 0.003713407786563039, 0.005320228170603514, 0.01177260186523199, 0.009682953357696533, 0.027644136920571327, 0.43193545937538147], [0.00043524763896130025, 0.017406249418854713, 0.002125943312421441, 0.005650099366903305, 0.004978288896381855, 0.44895365834236145, 0.008016679435968399, 0.011705623008310795, 0.0013021565973758698, 0.004315070807933807, 0.0029066945426166058, 0.002079053083434701, 0.0031926881056278944, 0.009500267915427685, 0.003467460162937641, 0.008363364264369011, 0.46560144424438477], [7.074521272443235e-05, 0.00309582008048892, 0.0006553804269060493, 0.0004817094886675477, 0.0006076085846871138, 0.4830261170864105, 0.0004338783328421414, 0.001039208727888763, 0.0010264290031045675, 0.0012357692467048764, 0.0006764285499230027, 0.0011358953779563308, 0.0016245637089014053, 0.000568204210139811, 0.000284625100903213, 0.0011483350535854697, 0.5028893351554871], [3.824270606855862e-05, 0.0046024443581700325, 0.0005775767494924366, 0.0013509331038221717, 0.0005937083624303341, 0.47878485918045044, 0.0008094973163679242, 0.0012548003578558564, 0.0005185437039472163, 0.0014749804977327585, 0.0007131624734029174, 0.0009253411553800106, 0.002727096201851964, 0.0016537305200472474, 0.0012648588744923472, 0.0019929592963308096, 0.500717282295227], [9.545609646011144e-05, 0.013611036352813244, 0.0023778912145644426, 0.0060047185979783535, 0.004113687202334404, 0.4529918134212494, 0.003559765173122287, 0.004648369271308184, 0.0010762352030724287, 0.003309247549623251, 0.0034347602631896734, 0.003365211421623826, 0.004937705583870411, 0.007138233631849289, 0.00727927265688777, 0.009450619108974934, 0.47260600328445435], [0.0005699590547010303, 0.010713743045926094, 0.0026457272469997406, 0.005362655967473984, 0.003962715622037649, 0.4604926109313965, 0.002834063721820712, 0.004310342948883772, 0.00172241625841707, 0.0028781448490917683, 0.0016146799316629767, 0.0038718758150935173, 0.006643167231231928, 0.005694136023521423, 0.0036304998211562634, 0.006014565005898476, 0.4770386815071106], [0.00015387735038530082, 0.01782088913023472, 0.002457078779116273, 0.01052196603268385, 0.0009502198081463575, 0.4384726583957672, 0.002319004852324724, 0.006634366232901812, 0.00157739978749305, 0.00592459924519062, 0.0015053176321089268, 0.00441459845751524, 0.01754942163825035, 0.015461238101124763, 0.009185311384499073, 0.009573200717568398, 0.4554789662361145], [0.00016712056822143495, 0.012036770582199097, 0.00664690975099802, 0.01548302173614502, 0.0056618875823915005, 0.43381425738334656, 0.006001810543239117, 0.009928212501108646, 0.0024652001447975636, 0.00990559533238411, 0.004410272929817438, 0.005042301025241613, 0.016552863642573357, 0.006170425098389387, 0.0052628060802817345, 0.011319567449390888, 0.44913092255592346], [9.808626055018976e-05, 0.004942488390952349, 0.003183037741109729, 0.013448312878608704, 0.004593662917613983, 0.4528280198574066, 0.006050358526408672, 0.005436488427221775, 0.000913218769710511, 0.0032137224916368723, 0.0026843745727092028, 0.002596256323158741, 0.007482069544494152, 0.007090781349688768, 0.006335843354463577, 0.007879686541855335, 0.47122353315353394], [0.00035433340235613286, 0.02441437542438507, 0.004335001576691866, 0.02261817827820778, 0.03344037011265755, 0.4183763265609741, 0.012738159857690334, 0.005290136206895113, 0.000835438899230212, 0.0025035373400896788, 0.001990115037187934, 0.0019748895429074764, 0.0048286933451890945, 0.011768222786486149, 0.004616172052919865, 0.015138398855924606, 0.43477770686149597], [0.05823949724435806, 0.09503357857465744, 0.02917914092540741, 0.04857776686549187, 0.008869216777384281, 0.05908707529306412, 0.03883536159992218, 0.09200332313776016, 0.029831456020474434, 0.03753231465816498, 0.01869335025548935, 0.02456950768828392, 0.04532637074589729, 0.24649745225906372, 0.06760797649621964, 0.04087867587804794, 0.05923795700073242]], [[0.0010772671084851027, 0.01669488102197647, 0.008249938488006592, 0.011210673488676548, 3.4001594030996785e-05, 0.41457757353782654, 0.012223928235471249, 0.022316310554742813, 0.003798390505835414, 0.006217293441295624, 0.00981068518012762, 0.0048720040358603, 0.00629927683621645, 0.024431290104985237, 0.014056464657187462, 0.018624471500515938, 0.42550545930862427], [0.006530422251671553, 0.024365711957216263, 0.0306050144135952, 0.02197108045220375, 0.018984714522957802, 0.3519043028354645, 0.016748711466789246, 0.012747873552143574, 0.019943147897720337, 0.009870086796581745, 0.028788525611162186, 0.01771935261785984, 0.013153779320418835, 0.01598667912185192, 0.010840286500751972, 0.035127945244312286, 0.36471235752105713], [0.01397964358329773, 0.052659258246421814, 0.04804394766688347, 0.0703112781047821, 0.10798442363739014, 0.1543222814798355, 0.03943628817796707, 0.03732341527938843, 0.035866763442754745, 0.08868619799613953, 0.022472353652119637, 0.02383546158671379, 0.04159821569919586, 0.05725020542740822, 0.025516947731375694, 0.02245304547250271, 0.1582602560520172], [0.002406195504590869, 0.031530022621154785, 0.028009552508592606, 0.03910616412758827, 0.002178825670853257, 0.318745881319046, 0.020569851621985435, 0.02427111566066742, 0.0290872510522604, 0.03505324572324753, 0.026150135323405266, 0.018098443746566772, 0.03188756853342056, 0.033553190529346466, 0.008969186805188656, 0.019280098378658295, 0.3311033248901367], [0.011133047752082348, 0.09537576138973236, 0.0840563103556633, 0.05476289242506027, 0.024063117802143097, 0.15166622400283813, 0.028646981343626976, 0.02862233854830265, 0.05134938284754753, 0.0426291860640049, 0.053734999150037766, 0.04439987242221832, 0.07635077834129333, 0.06799609214067459, 0.016082366928458214, 0.014353807084262371, 0.15477675199508667], [0.01761511340737343, 0.04402463510632515, 0.05883042514324188, 0.036506298929452896, 0.009033780544996262, 0.1741763800382614, 0.042417120188474655, 0.06411512196063995, 0.03807149454951286, 0.047643471509218216, 0.03343712538480759, 0.04279479756951332, 0.02843291684985161, 0.050135448575019836, 0.06852762401103973, 0.06785888224840164, 0.17637933790683746], [0.004449722357094288, 0.02601415477693081, 0.03594636544585228, 0.01938536949455738, 0.005135484971106052, 0.2993934154510498, 0.04385123774409294, 0.04624427855014801, 0.01994551531970501, 0.02778843231499195, 0.034237757325172424, 0.026947852224111557, 0.021529126912355423, 0.027628548443317413, 0.015443731099367142, 0.035898368805646896, 0.3101605772972107], [0.008213997818529606, 0.040374577045440674, 0.03903034329414368, 0.037198506295681, 0.03375918045639992, 0.2272064983844757, 0.02193666808307171, 0.03734801337122917, 0.026520119979977608, 0.0571121908724308, 0.049358416348695755, 0.028050798922777176, 0.025998661294579506, 0.037094999104738235, 0.024364084005355835, 0.07095971703529358, 0.23547318577766418], [0.007839784026145935, 0.026667965576052666, 0.023749832063913345, 0.03826000913977623, 0.007708088494837284, 0.26328083872795105, 0.023648740723729134, 0.0389801524579525, 0.03073742240667343, 0.05378307029604912, 0.04108863323926926, 0.026220737025141716, 0.03392736613750458, 0.03286682069301605, 0.02996300533413887, 0.04824443906545639, 0.273033082485199], [0.00580038595944643, 0.025412261486053467, 0.024274766445159912, 0.04501662775874138, 0.0023130413610488176, 0.27489349246025085, 0.017487766221165657, 0.03202655911445618, 0.019111907109618187, 0.06201091408729553, 0.029391610994935036, 0.023167351260781288, 0.02252206951379776, 0.04179617390036583, 0.042516086250543594, 0.047132618725299835, 0.28512638807296753], [0.016327526420354843, 0.023455386981368065, 0.034935113042593, 0.03314615786075592, 0.013800734654068947, 0.23744431138038635, 0.01963476836681366, 0.04005449265241623, 0.03230461850762367, 0.06999702751636505, 0.062186382710933685, 0.03173130750656128, 0.04564414545893669, 0.034566137939691544, 0.02711872197687626, 0.03252188861370087, 0.2451312243938446], [0.021909216418862343, 0.03304796293377876, 0.04482084885239601, 0.044173963367938995, 0.050006087869405746, 0.17008651793003082, 0.02669200487434864, 0.02817676216363907, 0.04551292583346367, 0.10594233870506287, 0.03907107189297676, 0.04492008686065674, 0.05312061309814453, 0.04713945463299751, 0.03370761126279831, 0.03645859658718109, 0.1752139925956726], [0.009654641151428223, 0.014237807132303715, 0.029728353023529053, 0.02212313376367092, 0.007508967537432909, 0.2975044846534729, 0.023212162777781487, 0.030939213931560516, 0.027525564655661583, 0.051194820553064346, 0.03526412323117256, 0.02473287656903267, 0.02660767361521721, 0.029749197885394096, 0.02893664874136448, 0.03251513093709946, 0.3085651695728302], [0.003919222392141819, 0.020113900303840637, 0.03657948970794678, 0.037833116948604584, 0.011898510158061981, 0.23964662849903107, 0.017996320500969887, 0.02878177911043167, 0.028328927233815193, 0.04547226428985596, 0.03664310276508331, 0.03678952157497406, 0.041370488703250885, 0.05158938467502594, 0.07456707954406738, 0.0407109297811985, 0.24775931239128113], [0.0024526275228708982, 0.022924859076738358, 0.0444306842982769, 0.05406060442328453, 0.005107522010803223, 0.19269002974033356, 0.022685376927256584, 0.02995295077562332, 0.032054927200078964, 0.10942681133747101, 0.03345783054828644, 0.033632759004831314, 0.0498170368373394, 0.06178045645356178, 0.06828732043504715, 0.037637386471033096, 0.19960090517997742], [0.0063768536783754826, 0.060852184891700745, 0.04043475538492203, 0.0619373545050621, 0.025701774284243584, 0.20907235145568848, 0.032517772167921066, 0.04542966187000275, 0.02407226152718067, 0.06419378519058228, 0.027453510090708733, 0.030577706173062325, 0.03655925765633583, 0.037364888936281204, 0.03068498522043228, 0.05066245049238205, 0.21610842645168304], [0.017998892813920975, 0.04478790611028671, 0.059329308569431305, 0.03707195818424225, 0.00937819853425026, 0.17061421275138855, 0.04275156930088997, 0.0647507756948471, 0.038417547941207886, 0.048440832644701004, 0.03366370499134064, 0.04323389381170273, 0.02885165624320507, 0.05072980746626854, 0.06926645338535309, 0.06798111647367477, 0.17273223400115967]], [[0.0016059820773079991, 0.0062650577165186405, 0.009824243374168873, 0.0012028933269903064, 0.00011167612683493644, 0.44478461146354675, 0.0012391199124976993, 0.012525873258709908, 0.003960846923291683, 0.002028631279245019, 0.0013618131633847952, 0.009177119471132755, 0.01035177893936634, 0.019623158499598503, 0.004658335819840431, 0.009603741578757763, 0.4616751968860626], [0.007632837165147066, 0.06466235220432281, 0.14424213767051697, 0.04248343035578728, 0.07445677369832993, 0.20616038143634796, 0.012696710415184498, 0.10499189049005508, 0.011526700109243393, 0.010891451500356197, 0.011365270242094994, 0.01835581846535206, 0.022702017799019814, 0.016782747581601143, 0.017163634300231934, 0.02220027521252632, 0.21168561279773712], [0.001713970210403204, 0.011232347227633, 0.06469910591840744, 0.0455097034573555, 0.05861491337418556, 0.33007362484931946, 0.010071472264826298, 0.01614084094762802, 0.003147970186546445, 0.017353089526295662, 0.004442710429430008, 0.016370059922337532, 0.02316676266491413, 0.008580785244703293, 0.014182817190885544, 0.034431543201208115, 0.34026819467544556], [0.0008223493350669742, 0.006402633618563414, 0.030226081609725952, 0.03122517094016075, 0.04065188765525818, 0.3820211589336395, 0.0117086973041296, 0.013284129090607166, 0.0015986638609319925, 0.007413400337100029, 0.011549415066838264, 0.004916858859360218, 0.008695324882864952, 0.008562606759369373, 0.018193894997239113, 0.026900971308350563, 0.3958267271518707], [0.004587713163346052, 0.026676667854189873, 0.03457869589328766, 0.04352138563990593, 0.055424947291612625, 0.34766772389411926, 0.023461977019906044, 0.014279202558100224, 0.0017124461010098457, 0.004640220198780298, 0.005164254456758499, 0.009197420440614223, 0.015997450798749924, 0.012588424608111382, 0.013352075591683388, 0.029024170711636543, 0.3581252098083496], [0.038645435124635696, 0.035212721675634384, 0.12283337861299515, 0.12026069313287735, 0.025984972715377808, 0.07833023369312286, 0.026550373062491417, 0.0525798499584198, 0.01214374415576458, 0.04356779530644417, 0.05800160393118858, 0.022445963695645332, 0.07344275712966919, 0.06682708859443665, 0.10996878147125244, 0.03462011739611626, 0.07858456671237946], [0.0011281793704256415, 0.06088065728545189, 0.037156376987695694, 0.01252981647849083, 0.01402696967124939, 0.28365445137023926, 0.043788518756628036, 0.13738234341144562, 0.009817116893827915, 0.008430412039160728, 0.006958404555916786, 0.020726677030324936, 0.011650516651570797, 0.030079232528805733, 0.005573545582592487, 0.02270422875881195, 0.29351264238357544], [0.006121120881289244, 0.015155796892940998, 0.025260422378778458, 0.01308528333902359, 0.10161728411912918, 0.28017592430114746, 0.005185714922845364, 0.06781154870986938, 0.02650034800171852, 0.049755025655031204, 0.021389499306678772, 0.02563478983938694, 0.01334224734455347, 0.02266642265021801, 0.019533837214112282, 0.017037495970726013, 0.2897273600101471], [0.0021685699466615915, 0.0009488306823186576, 0.0041282945312559605, 0.0036110342480242252, 0.009944138117134571, 0.10473022609949112, 0.0026324065402150154, 0.0035416262689977884, 0.047741085290908813, 0.6454941034317017, 0.04567597433924675, 0.008372994139790535, 0.0037317986134439707, 0.0021604576613754034, 0.002834536135196686, 0.0037876733113080263, 0.10849615186452866], [0.0009414762025699019, 0.002415847033262253, 0.006631316617131233, 0.004080631770193577, 0.004405434709042311, 0.2852615416049957, 0.0027257369365543127, 0.02096295729279518, 0.01243389118462801, 0.19806721806526184, 0.10926717519760132, 0.007888289168477058, 0.008577450178563595, 0.015182847157120705, 0.0158391036093235, 0.008180652745068073, 0.29713839292526245], [0.002071577589958906, 0.004844940733164549, 0.013192503713071346, 0.018179140985012054, 0.04287876933813095, 0.3140469491481781, 0.0053712292574346066, 0.023486612364649773, 0.010556116700172424, 0.05289578065276146, 0.08771578222513199, 0.02140633575618267, 0.013348089531064034, 0.018242621794342995, 0.02728862687945366, 0.01891196146607399, 0.32556289434432983], [0.003312567714601755, 0.007833009585738182, 0.028767354786396027, 0.01876564510166645, 0.031517889350652695, 0.23079776763916016, 0.009912471286952496, 0.03340119123458862, 0.00942711066454649, 0.07190722972154617, 0.028902677819132805, 0.047975484281778336, 0.1501743346452713, 0.04319243133068085, 0.030662227421998978, 0.015385930426418781, 0.238064706325531], [0.0004494091554079205, 0.0011578041594475508, 0.01034923642873764, 0.009110440500080585, 0.010362404398620129, 0.33122414350509644, 0.0033661341294646263, 0.03157436102628708, 0.003567893523722887, 0.01818479783833027, 0.02716222032904625, 0.023536523804068565, 0.051557302474975586, 0.0652916356921196, 0.057205598801374435, 0.012305906042456627, 0.34359416365623474], [0.008837437257170677, 0.004411994945257902, 0.04309031739830971, 0.0233260840177536, 0.05259416624903679, 0.2115028202533722, 0.003679809859022498, 0.06567640602588654, 0.010024097748100758, 0.037955790758132935, 0.05625401809811592, 0.02933848276734352, 0.04681221768260002, 0.0405786894261837, 0.13200291991233826, 0.016877492889761925, 0.21703727543354034], [0.0024089706130325794, 0.007094787433743477, 0.020774032920598984, 0.01696576178073883, 0.029251985251903534, 0.36207452416419983, 0.010151381604373455, 0.02255850099027157, 0.00397214712575078, 0.0184295903891325, 0.04103245586156845, 0.008341711945831776, 0.013674664311110973, 0.01369511615484953, 0.03159405291080475, 0.023567581549286842, 0.37441274523735046], [0.005276049021631479, 0.027477825060486794, 0.027911297976970673, 0.017226064577698708, 0.035831160843372345, 0.36240461468696594, 0.031825169920921326, 0.022615930065512657, 0.006216070149093866, 0.011680909432470798, 0.006733251735568047, 0.01025216281414032, 0.011046179570257664, 0.013808244839310646, 0.00712225679308176, 0.02925039641559124, 0.37332242727279663], [0.039084505289793015, 0.03543638065457344, 0.1229260191321373, 0.1207740306854248, 0.026475418359041214, 0.07655509561300278, 0.026587095111608505, 0.052854686975479126, 0.012195585295557976, 0.04362374171614647, 0.05810108780860901, 0.022522050887346268, 0.07366081327199936, 0.06706303358078003, 0.11081480234861374, 0.034536153078079224, 0.07678952813148499]], [[0.006187991704791784, 0.0003568255342543125, 9.086394857149571e-05, 0.010508646257221699, 0.9773180484771729, 0.000943205610383302, 0.00018331459432374686, 0.0005030487664043903, 5.3213721002975944e-06, 5.702091220882721e-05, 0.0005188366048969328, 5.8614892623154446e-05, 8.476134098600596e-05, 2.6942568638332887e-06, 0.0017548835603520274, 0.00046763988211750984, 0.0009582070051692426], [0.012464841827750206, 0.0620601549744606, 0.013717511668801308, 0.023871485143899918, 0.18253515660762787, 0.08422316610813141, 0.08340241014957428, 0.011951434426009655, 0.0053121959790587425, 0.007596180308610201, 0.007928292267024517, 0.0037039401941001415, 0.003354917513206601, 0.004649871028959751, 0.010287800803780556, 0.39609426259994507, 0.08684642612934113], [0.007159403990954161, 0.4739425480365753, 0.024464450776576996, 0.04159407317638397, 0.055201973766088486, 0.09252564609050751, 0.03886175528168678, 0.044615134596824646, 0.009503799490630627, 0.026353446766734123, 0.014520503580570221, 0.01339181698858738, 0.016029037535190582, 0.018958162516355515, 0.013377947732806206, 0.015419991686940193, 0.09408032894134521], [0.0013985780533403158, 0.026027578860521317, 0.14831875264644623, 0.1571182906627655, 0.028120122849941254, 0.08426498621702194, 0.07483997941017151, 0.0406685397028923, 0.028738241642713547, 0.04312010109424591, 0.04136748984456062, 0.06195049360394478, 0.07203039526939392, 0.06307664513587952, 0.014240921474993229, 0.028175491839647293, 0.08654338866472244], [0.003555611241608858, 0.01876828446984291, 0.0182938352227211, 0.5056823492050171, 0.14394479990005493, 0.055190231651067734, 0.013693155720829964, 0.019491227343678474, 0.0032395226880908012, 0.027375826612114906, 0.023921478539705276, 0.00872955285012722, 0.014834239147603512, 0.018849153071641922, 0.05125153809785843, 0.017018353566527367, 0.05616086348891258], [0.10512138903141022, 0.07088592648506165, 0.07524073123931885, 0.08069272339344025, 0.016777563840150833, 0.09418074786663055, 0.07384324818849564, 0.0390021950006485, 0.03782433643937111, 0.020724784582853317, 0.01348249800503254, 0.06768838316202164, 0.06803563982248306, 0.04398726299405098, 0.024011312052607536, 0.07361271977424622, 0.09488853812217712], [0.0037044608034193516, 0.012685013934969902, 0.01033136434853077, 0.028825068846344948, 0.27853256464004517, 0.1591208577156067, 0.04106593877077103, 0.0046165077947080135, 0.009054737165570259, 0.014386043883860111, 0.0024931461084634066, 0.006164496764540672, 0.0027810947503894567, 0.006803461816161871, 0.013074025511741638, 0.24269656836986542, 0.16366459429264069], [0.0016985776601359248, 0.04045785218477249, 0.017954152077436447, 0.04758305475115776, 0.09018069505691528, 0.11836939305067062, 0.13004618883132935, 0.0814167857170105, 0.029598338529467583, 0.09119775891304016, 0.07981866598129272, 0.03231107443571091, 0.025988800451159477, 0.024962468072772026, 0.03551468625664711, 0.03122165985405445, 0.12167984247207642], [0.0010052837897092104, 0.03485294058918953, 0.01712751016020775, 0.007335319183766842, 0.13327261805534363, 0.2731854021549225, 0.03881285712122917, 0.06413516402244568, 0.03593826666474342, 0.02902812696993351, 0.024488788098096848, 0.02230129949748516, 0.007330221123993397, 0.00473032146692276, 0.010288771241903305, 0.013918394222855568, 0.2822486162185669], [0.00016218889504671097, 0.0032592234201729298, 0.04052003473043442, 0.003346323734149337, 0.020061474293470383, 0.03891531750559807, 0.006843366660177708, 0.0391538068652153, 0.6375337839126587, 0.05806710198521614, 0.00841717142611742, 0.07599245756864548, 0.007316327653825283, 0.006261879112571478, 0.005701614078134298, 0.008186095394194126, 0.04026181995868683], [0.001081131398677826, 0.005407160148024559, 0.011625098064541817, 0.008990935981273651, 0.028173226863145828, 0.051205914467573166, 0.008544073440134525, 0.019222797825932503, 0.0735478475689888, 0.5784700512886047, 0.06624390929937363, 0.03908608853816986, 0.01128272246569395, 0.0070644705556333065, 0.022146359086036682, 0.015454841777682304, 0.05245347321033478], [0.007303156424313784, 0.0500217005610466, 0.019937269389629364, 0.028772618621587753, 0.07622744143009186, 0.14022812247276306, 0.07521576434373856, 0.03902123495936394, 0.0193572286516428, 0.06616774946451187, 0.14880749583244324, 0.05552944168448448, 0.043456923216581345, 0.02230791375041008, 0.032089535146951675, 0.0319538414478302, 0.14360249042510986], [0.000862176704686135, 0.009422646835446358, 0.04926973953843117, 0.015617121942341328, 0.004559503402560949, 0.05309617519378662, 0.014508998021483421, 0.017281197011470795, 0.04912933334708214, 0.056419312953948975, 0.026260579004883766, 0.5089274048805237, 0.08142189681529999, 0.03621714934706688, 0.009424605406820774, 0.013134484179317951, 0.05444769188761711], [0.011306985281407833, 0.016087843105196953, 0.029502438381314278, 0.026234803721308708, 0.028520824387669563, 0.12465331703424454, 0.032435089349746704, 0.02526036836206913, 0.02679009549319744, 0.11052197962999344, 0.06815923005342484, 0.07648678869009018, 0.21615366637706757, 0.036591578274965286, 0.026468656957149506, 0.017081215977668762, 0.12774507701396942], [0.0010535644832998514, 0.008559945039451122, 0.01563405618071556, 0.051006294786930084, 0.007426570635288954, 0.0536453016102314, 0.00596762215718627, 0.015491881407797337, 0.020762480795383453, 0.08702125400304794, 0.020436255261301994, 0.025802990421652794, 0.0912303701043129, 0.45393627882003784, 0.06308721005916595, 0.023715272545814514, 0.055222783237695694], [0.002966084750369191, 0.04204538092017174, 0.023533310741186142, 0.13727635145187378, 0.15830634534358978, 0.10406048595905304, 0.04343279078602791, 0.03378653898835182, 0.0071930051781237125, 0.022722095251083374, 0.012591282837092876, 0.013112884014844894, 0.02340659499168396, 0.03308438882231712, 0.12434948980808258, 0.11134576052427292, 0.10678713023662567], [0.1062435582280159, 0.07168163359165192, 0.07540064305067062, 0.08128029108047485, 0.016940928995609283, 0.09165539592504501, 0.07395901530981064, 0.039476264268159866, 0.03827531635761261, 0.0208763275295496, 0.01356310211122036, 0.06802491098642349, 0.06833479553461075, 0.04409569129347801, 0.024163268506526947, 0.073698490858078, 0.09233037382364273]], [[6.026379196555354e-05, 0.0067036510445177555, 0.0017702272161841393, 0.0003696790663525462, 2.0075854990864173e-05, 0.47378143668174744, 0.0013052171561866999, 0.004937739111483097, 0.001499877660535276, 0.0015307647408917546, 0.0016994066536426544, 0.0018784991698339581, 0.0009704476105980575, 0.005120700225234032, 0.003973912913352251, 0.0025422479957342148, 0.4918358027935028], [0.0057748351246118546, 0.056561652570962906, 0.11656497418880463, 0.12383583933115005, 0.06991899013519287, 0.144246444106102, 0.06124958395957947, 0.03545273840427399, 0.009239548817276955, 0.02900312840938568, 0.02529652789235115, 0.01780351996421814, 0.012086533941328526, 0.015318833291530609, 0.029561391100287437, 0.09996703267097473, 0.14811848104000092], [0.002253243699669838, 0.017625071108341217, 0.017386965453624725, 0.010130763985216618, 0.02906917966902256, 0.4394603371620178, 0.005844302009791136, 0.0027806139551103115, 0.0003448394709266722, 0.0011931156041100621, 0.0009789636824280024, 0.0014394624158740044, 0.0010697732213884592, 0.002149509731680155, 0.0018878082046285272, 0.007464113179594278, 0.4589221179485321], [0.0005642628530040383, 0.01605062559247017, 0.009980570524930954, 0.004292525816708803, 0.0057779112830758095, 0.46221524477005005, 0.0024744279216974974, 0.003360130824148655, 0.0005210783565416932, 0.0013156221248209476, 0.0006793527281843126, 0.0010581286624073982, 0.00039137102430686355, 0.0024918594863265753, 0.0011591854272410274, 0.004767013248056173, 0.4829007089138031], [0.0019264727598056197, 0.03168381750583649, 0.011057861149311066, 0.005780818406492472, 0.00242335582152009, 0.44795167446136475, 0.003965341951698065, 0.00464504212141037, 0.0014053424820303917, 0.002517969813197851, 0.002300758147612214, 0.0013818073784932494, 0.0008218354196287692, 0.00719475606456399, 0.002824563765898347, 0.008028890937566757, 0.4640898108482361], [0.05263017117977142, 0.03950681909918785, 0.03378437086939812, 0.056078772991895676, 0.02552403323352337, 0.16184625029563904, 0.048907555639743805, 0.05039695277810097, 0.03562553972005844, 0.030108466744422913, 0.04095447063446045, 0.03424866497516632, 0.04595797508955002, 0.0645536407828331, 0.05967973917722702, 0.057022690773010254, 0.1631738543510437], [0.003119438886642456, 0.018113283440470695, 0.015442822128534317, 0.006279048975557089, 0.0203509833663702, 0.4123493432998657, 0.005858829710632563, 0.020349029451608658, 0.0021196764428168535, 0.008046546950936317, 0.010061887092888355, 0.009864650666713715, 0.006286802235990763, 0.011015688069164753, 0.009605895727872849, 0.011317167431116104, 0.4298190474510193], [0.004986603278666735, 0.021362802013754845, 0.01095663197338581, 0.008470294997096062, 0.026143288239836693, 0.38324278593063354, 0.010762859135866165, 0.02455470897257328, 0.006489030085504055, 0.015022787265479565, 0.015601113438606262, 0.011278053745627403, 0.009472144767642021, 0.018371080979704857, 0.015800558030605316, 0.019446415826678276, 0.3980388343334198], [0.0013038142351433635, 0.0022856860887259245, 0.0006278061773627996, 0.0003123161441180855, 0.002808909397572279, 0.47672948241233826, 0.0009434585808776319, 0.001769230468198657, 0.0006940153543837368, 0.0030994657427072525, 0.001180326915346086, 0.0012224355014041066, 0.0006199218332767487, 0.0029495148919522762, 0.0017054298659786582, 0.0018884959863498807, 0.49985983967781067], [0.0009652926819398999, 0.008198604919016361, 0.0010926041286438704, 0.0010146194836124778, 0.0011674345005303621, 0.4635809361934662, 0.0028108246624469757, 0.004728811327368021, 0.0015522307949140668, 0.00488270865753293, 0.0027940182480961084, 0.0019214553758502007, 0.0011543865548446774, 0.006254937965422869, 0.0057500503025949, 0.004918775521218777, 0.48721224069595337], [0.0012432184303179383, 0.011734227649867535, 0.0019273272482678294, 0.0019128941930830479, 0.0039035268127918243, 0.4237612187862396, 0.006342590786516666, 0.019753897562623024, 0.0020544358994811773, 0.006334726233035326, 0.013048012740910053, 0.005984748248010874, 0.005721098277717829, 0.019508948549628258, 0.024892626330256462, 0.008990476839244366, 0.44288599491119385], [0.004889367148280144, 0.01471570786088705, 0.0027582868933677673, 0.002281101420521736, 0.012052801437675953, 0.4376122057437897, 0.0044552977196872234, 0.01090418640524149, 0.0012357010273262858, 0.004375831689685583, 0.005265068728476763, 0.0051925452426075935, 0.006028333213180304, 0.016181020066142082, 0.01019645482301712, 0.005807266104966402, 0.4560489058494568], [0.000602843938395381, 0.012684080749750137, 0.0010431393748149276, 0.0006858843844383955, 0.001514865318313241, 0.452363520860672, 0.0017232963582500815, 0.016282321885228157, 0.0010943847009912133, 0.003618359100073576, 0.00365835870616138, 0.0034060587640851736, 0.0017191254300996661, 0.012949994765222073, 0.009332476183772087, 0.0041382270865142345, 0.4731830954551697], [0.0031727731693536043, 0.01341979205608368, 0.003162574488669634, 0.003063561161980033, 0.008399874903261662, 0.4440481960773468, 0.0038699277210980654, 0.010829261504113674, 0.002423804486170411, 0.0038951372262090445, 0.00509470421820879, 0.004605561960488558, 0.003174991812556982, 0.012403351254761219, 0.009291231632232666, 0.007735594175755978, 0.4614095687866211], [0.0009101140312850475, 0.011250769719481468, 0.0027540235314518213, 0.0010615494102239609, 0.0008734894799999893, 0.4498807191848755, 0.002539049368351698, 0.014060321263968945, 0.0017031040042638779, 0.0033554791007190943, 0.005856123752892017, 0.005707497708499432, 0.002710007829591632, 0.011000283062458038, 0.009151308797299862, 0.00538830179721117, 0.4717979431152344], [0.002735912799835205, 0.013371976092457771, 0.0057265134528279305, 0.00256176944822073, 0.008573356084525585, 0.45604395866394043, 0.0023309143725782633, 0.0043056439608335495, 0.0011862069368362427, 0.003410336561501026, 0.0020307672675698996, 0.002279849024489522, 0.002154671587049961, 0.007945219986140728, 0.0034085256047546864, 0.006996982730925083, 0.4749373197555542], [0.05323844403028488, 0.039814744144678116, 0.03426754102110863, 0.05713411048054695, 0.025956720113754272, 0.1577083319425583, 0.049578357487916946, 0.05100490152835846, 0.03600551560521126, 0.03044009581208229, 0.041715145111083984, 0.034661803394556046, 0.04652071371674538, 0.0648723617196083, 0.060557059943675995, 0.057549428194761276, 0.1589747816324234]], [[0.00415405398234725, 0.002833407837897539, 0.0022882784251123667, 0.0009175207815133035, 8.092842472251505e-05, 0.48025256395339966, 0.0010130936279892921, 0.0014856148045510054, 0.0007774279802106321, 0.0007909504929557443, 0.002399585908278823, 0.0017939360113814473, 0.002358336467295885, 0.0020157985854893923, 0.000825664377771318, 0.0009467173367738724, 0.49506616592407227], [0.0005244046915322542, 0.053637925535440445, 0.014417653903365135, 0.007080999203026295, 0.0286672692745924, 0.38758721947669983, 0.022804999724030495, 0.016078490763902664, 0.0018762790132313967, 0.0031810696236789227, 0.001760102342814207, 0.006494235247373581, 0.007915771566331387, 0.013270634226500988, 0.007604226004332304, 0.025129588320851326, 0.40196922421455383], [0.001167363952845335, 0.016938047483563423, 0.020666537806391716, 0.004638750571757555, 0.01867106929421425, 0.4300316274166107, 0.0045988429337739944, 0.00919420924037695, 0.002353416522964835, 0.0017219531582668424, 0.001243356615304947, 0.010014478117227554, 0.00486866245046258, 0.006568016484379768, 0.004616613499820232, 0.017210202291607857, 0.4454967677593231], [0.00011513779463712126, 0.009211458265781403, 0.002299494808539748, 0.002638451289385557, 0.001975532155483961, 0.4702375531196594, 0.0015564777422696352, 0.003175093326717615, 0.00046471631503663957, 0.0007894336595200002, 0.0006918971776030958, 0.0016250384505838156, 0.002122177043929696, 0.004267719108611345, 0.004758349619805813, 0.003947538789361715, 0.49012401700019836], [0.0024864827282726765, 0.02326790615916252, 0.003703959984704852, 0.004919169470667839, 0.0035264496691524982, 0.4469118118286133, 0.004398280289024115, 0.005656108725816011, 0.0009402295690961182, 0.0015401591081172228, 0.0012658328050747514, 0.003143388545140624, 0.004110012203454971, 0.009840098209679127, 0.00723055237904191, 0.01815541833639145, 0.4589041769504547], [0.01876899227499962, 0.10031139850616455, 0.05472763255238533, 0.030926330015063286, 0.0342743955552578, 0.18172593414783478, 0.031756311655044556, 0.07150211185216904, 0.03892343118786812, 0.021650169044733047, 0.03136510029435158, 0.03472655266523361, 0.0455121211707592, 0.05304093286395073, 0.042172037065029144, 0.02467096410691738, 0.18394553661346436], [0.0002650030655786395, 0.008916361257433891, 0.005481118801981211, 0.0026930775493383408, 0.013014555908739567, 0.44717249274253845, 0.010826585814356804, 0.008742567151784897, 0.0023208383936434984, 0.0014934419887140393, 0.001075027510523796, 0.003580912481993437, 0.005058096721768379, 0.004314419347792864, 0.004269450902938843, 0.015250524505972862, 0.465525358915329], [0.0005429658922366798, 0.010581156238913536, 0.004945630673319101, 0.002375006442889571, 0.03168889880180359, 0.4462611675262451, 0.0028789120260626078, 0.007850578986108303, 0.0011320961639285088, 0.0007985322154127061, 0.0013160579837858677, 0.002042415551841259, 0.0017425153637304902, 0.0038161673583090305, 0.0031147082336246967, 0.013794731348752975, 0.4651185870170593], [0.00040278283995576203, 0.003515886375680566, 0.005794986616820097, 0.001994328573346138, 0.005143600516021252, 0.46749529242515564, 0.0011753798462450504, 0.0037181067746132612, 0.003258051350712776, 0.0012578420573845506, 0.0009349597385153174, 0.0038829564582556486, 0.0018417650135233998, 0.0030904205050319433, 0.002143068006262183, 0.009320106357336044, 0.4850304126739502], [2.986770232382696e-05, 0.003988304641097784, 0.0026662626769393682, 0.001063319738022983, 0.0022315734531730413, 0.47492673993110657, 0.0007253506919369102, 0.002607341855764389, 0.0012200482888147235, 0.0021037072874605656, 0.0006392296636477113, 0.0017128377221524715, 0.0014069023309275508, 0.0019483629148453474, 0.0017497505759820342, 0.004471311345696449, 0.4965090751647949], [0.000249104225076735, 0.004859396256506443, 0.003993621561676264, 0.0016533380839973688, 0.007476010825484991, 0.4664028286933899, 0.002415398368611932, 0.005713383201509714, 0.001354763749986887, 0.001330806640908122, 0.0031946778763085604, 0.0025994712486863136, 0.0020524649880826473, 0.003093051491305232, 0.001683501759544015, 0.00843063648790121, 0.4834975004196167], [0.000603690801654011, 0.00956064835190773, 0.010512025095522404, 0.00395973352715373, 0.02496749348938465, 0.43887579441070557, 0.004697183612734079, 0.009642548859119415, 0.0021700519137084484, 0.001634359359741211, 0.0013270082417875528, 0.008158469572663307, 0.0035728784278035164, 0.004360043443739414, 0.003789518726989627, 0.016374066472053528, 0.4557945132255554], [0.00015288555005099624, 0.00941737461835146, 0.008301074616611004, 0.002817489206790924, 0.006276380270719528, 0.45499345660209656, 0.004114019218832254, 0.0070970188826322556, 0.0020429512951523066, 0.0022385024931281805, 0.0016929716803133488, 0.005705620627850294, 0.005960507784038782, 0.005159182008355856, 0.003529250156134367, 0.008508953265845776, 0.4719923734664917], [0.0001513519382569939, 0.00993896834552288, 0.004132029600441456, 0.0023689656518399715, 0.0023470090236514807, 0.46455538272857666, 0.0021604138892143965, 0.005018789321184158, 0.001969715813174844, 0.0016439183382317424, 0.0014343679649755359, 0.0031398513820022345, 0.003675177227705717, 0.007490071933716536, 0.0033639618195593357, 0.005437696352601051, 0.4811723828315735], [4.6209359425120056e-05, 0.005380389746278524, 0.0045694876462221146, 0.0015567566733807325, 0.0060910326428711414, 0.4713228940963745, 0.0016491011483594775, 0.0025454116985201836, 0.0007545427652075887, 0.0004435360024217516, 0.0006796933012083173, 0.002677749842405319, 0.002356259385123849, 0.002177754184231162, 0.00312797911465168, 0.004158027470111847, 0.4904631972312927], [0.00010836825822480023, 0.004973593633621931, 0.0038768716622143984, 0.0013488770928233862, 0.01181221567094326, 0.4658403992652893, 0.0022257003001868725, 0.003308834508061409, 0.0008064735447987914, 0.00036771842860616744, 0.0002824069233611226, 0.002118604490533471, 0.001103008515201509, 0.0017953282222151756, 0.0020369794219732285, 0.011116640642285347, 0.4868779480457306], [0.019023554399609566, 0.10106069594621658, 0.05496586859226227, 0.03114890120923519, 0.03472151979804039, 0.17948433756828308, 0.03214426338672638, 0.07187505066394806, 0.039097461849451065, 0.02180774323642254, 0.03150145709514618, 0.0348878912627697, 0.04570818692445755, 0.053505077958106995, 0.04242857173085213, 0.024978110566735268, 0.18166132271289825]], [[0.0004994634073227644, 0.0010435011936351657, 0.004557562991976738, 0.005276572424918413, 0.8083537220954895, 0.08080103248357773, 0.0021933268290013075, 0.0026851005386561155, 0.0025990931317210197, 0.0006285299314185977, 0.0006553033599629998, 0.00075313332490623, 0.0006662516389042139, 0.0009940312011167407, 0.0016448508249595761, 0.0033343001268804073, 0.08331426978111267], [0.0030356436036527157, 0.01749740168452263, 0.17459650337696075, 0.19228850305080414, 0.05699131265282631, 0.0742798000574112, 0.15809902548789978, 0.02730032615363598, 0.006356874480843544, 0.016605939716100693, 0.05634099617600441, 0.020428191870450974, 0.01578686572611332, 0.009712345898151398, 0.035152796655893326, 0.05911451578140259, 0.07641302794218063], [0.0005715140723623335, 0.020688779652118683, 0.027444319799542427, 0.02610994689166546, 0.032622329890728, 0.4112543761730194, 0.008126077242195606, 0.005416239611804485, 0.000619629689026624, 0.0031574047170579433, 0.0020036103669553995, 0.001622153096832335, 0.0012675204779952765, 0.0027166353538632393, 0.0020852121524512768, 0.025219792500138283, 0.4290744364261627], [0.0007312805391848087, 0.026604410260915756, 0.02655726671218872, 0.02186778374016285, 0.028521828353405, 0.4101411998271942, 0.014085067436099052, 0.007100661750882864, 0.0006251586601138115, 0.0025078661274164915, 0.0022428908850997686, 0.0025025266222655773, 0.0021217865869402885, 0.0035190486814826727, 0.0034507557284086943, 0.018656155094504356, 0.42876434326171875], [0.00270376936532557, 0.03655863180756569, 0.03806456923484802, 0.03459138423204422, 0.08923488110303879, 0.3456230163574219, 0.01488769892603159, 0.011439257301390171, 0.001265194034203887, 0.004561577457934618, 0.0037953322753310204, 0.00530583318322897, 0.0028204380068928003, 0.0058405702002346516, 0.005597114562988281, 0.03911422938108444, 0.35859644412994385], [0.031231693923473358, 0.026592079550027847, 0.036116328090429306, 0.03234368935227394, 0.009179345332086086, 0.2517361342906952, 0.04461037740111351, 0.02984650805592537, 0.03350377082824707, 0.022286593914031982, 0.050381213426589966, 0.03982386365532875, 0.04268442839384079, 0.03687688708305359, 0.033586226403713226, 0.024930087849497795, 0.2542707622051239], [0.0006035208352841437, 0.00572449853643775, 0.016994304955005646, 0.011917905882000923, 0.23231008648872375, 0.2899603545665741, 0.012225490994751453, 0.017682567238807678, 0.002684596460312605, 0.009965897537767887, 0.015326803550124168, 0.013258229941129684, 0.014120645821094513, 0.01730145514011383, 0.02597985602915287, 0.011757156811654568, 0.30218666791915894], [0.0017301328480243683, 0.005230106879025698, 0.008864469826221466, 0.007434172090142965, 0.08006387948989868, 0.3633981943130493, 0.011943387798964977, 0.010629113763570786, 0.005184425041079521, 0.01813478395342827, 0.03596621751785278, 0.0149007523432374, 0.011340402998030186, 0.015759913250803947, 0.021663343533873558, 0.010885574854910374, 0.37687113881111145], [0.00035368168028071523, 0.0010898022446781397, 0.0007720065768808126, 0.0009454321698285639, 0.1568889021873474, 0.3967500627040863, 0.001635293709114194, 0.0016119887586683035, 0.0024782102555036545, 0.003867675317451358, 0.0019517811015248299, 0.0014412490418180823, 0.0018866440514102578, 0.006615569349378347, 0.0034382580779492855, 0.0027272170409560204, 0.41554611921310425], [0.00016251674969680607, 0.0015148075763136148, 0.0006465999758802354, 0.000672204652801156, 0.030047103762626648, 0.4618891775608063, 0.0017434365581721067, 0.001347685931250453, 0.0014605711912736297, 0.0014643312897533178, 0.0008173243841156363, 0.0012715489137917757, 0.0013172359904274344, 0.003714722814038396, 0.0018753943732008338, 0.0026467989664524794, 0.4874085485935211], [0.00022574714967049658, 0.0023377358447760344, 0.0011492952471598983, 0.0012446610489860177, 0.12168766558170319, 0.39721009135246277, 0.003934401553124189, 0.0056556458584964275, 0.0033874802757054567, 0.005633830092847347, 0.014347082003951073, 0.005096517037600279, 0.005362571682780981, 0.005545539315789938, 0.006008625030517578, 0.004346593748778105, 0.4168265759944916], [0.00034931948175653815, 0.0037663790863007307, 0.002088492503389716, 0.0025509910192340612, 0.06007571890950203, 0.4178144633769989, 0.004290376789867878, 0.007881647907197475, 0.0027460232377052307, 0.006821244955062866, 0.01042330265045166, 0.006050060968846083, 0.008384189568459988, 0.013409167528152466, 0.010858798399567604, 0.007287754211574793, 0.435202032327652], [0.00021116762945894152, 0.003771975403651595, 0.002198791364207864, 0.002579823136329651, 0.011630847118794918, 0.43358156085014343, 0.0038903544191271067, 0.0066293166019022465, 0.0024068758357316256, 0.008257858455181122, 0.010659388266503811, 0.009168471209704876, 0.009198258630931377, 0.017278390005230904, 0.0187497828155756, 0.005567026790231466, 0.454220175743103], [0.0015511654783040285, 0.006871512159705162, 0.0026717891450971365, 0.0032216436229646206, 0.005594505462795496, 0.4242333769798279, 0.005908191669732332, 0.009947850368916988, 0.0057348208501935005, 0.013593786396086216, 0.013811187818646431, 0.012995664961636066, 0.014727098867297173, 0.017060479149222374, 0.01325168740004301, 0.008412742055952549, 0.4404124319553375], [0.00021744977857451886, 0.0035134735517203808, 0.0018225957173854113, 0.0021693073213100433, 0.008593730628490448, 0.4500732421875, 0.003623231779783964, 0.008518064394593239, 0.002363326493650675, 0.005363743752241135, 0.007021159399300814, 0.0060378327034413815, 0.008524389937520027, 0.010764307342469692, 0.0051601049490273, 0.004050133749842644, 0.4721839725971222], [0.0006333528435789049, 0.010979656130075455, 0.00826142355799675, 0.00794635433703661, 0.06333466619253159, 0.4178299903869629, 0.009029483422636986, 0.006961943581700325, 0.0016014270950108767, 0.003925922326743603, 0.0029632083605974913, 0.003888262901455164, 0.004362886771559715, 0.0076651014387607574, 0.0061233676970005035, 0.008241512812674046, 0.4362514615058899], [0.03163955733180046, 0.026966383680701256, 0.036717940121889114, 0.032862886786460876, 0.009202975779771805, 0.24741719663143158, 0.045577116310596466, 0.030416416004300117, 0.034124039113521576, 0.022665193304419518, 0.05164715275168419, 0.04057704284787178, 0.04351033270359039, 0.03729603439569473, 0.034251876175403595, 0.025255149230360985, 0.24987271428108215]], [[0.030048668384552002, 0.0024877518881112337, 0.0012608696706593037, 0.0017611873336136341, 0.0002767719270195812, 0.4559608995914459, 0.001798742450773716, 0.0025275067891925573, 0.00922231376171112, 0.002960342215374112, 0.0034626282285898924, 0.0014808509731665254, 0.0007421819027513266, 0.00280205812305212, 0.0002767468395177275, 0.00511871138587594, 0.477811723947525], [0.0057953838258981705, 0.100986048579216, 0.010533655993640423, 0.003726818598806858, 0.0035228657070547342, 0.3945578634738922, 0.006483670324087143, 0.03043273463845253, 0.004406224936246872, 0.0015834808582440019, 0.0021352418698370457, 0.0011697829468175769, 0.0011335432063788176, 0.004483009222894907, 0.0021294637117534876, 0.014682499691843987, 0.41223767399787903], [8.327965042553842e-05, 0.002309722825884819, 0.004315887112170458, 0.001669342746026814, 0.0001522309030406177, 0.4786614775657654, 0.00020504608983173966, 0.0008089352631941438, 0.0004956239135935903, 0.0001742110471241176, 0.00014094935613684356, 0.00033998253638856113, 0.00015659538621548563, 0.0006825486780144274, 0.0002882491680793464, 0.004114946816116571, 0.5054009556770325], [0.0001308359351241961, 0.0015851061325520277, 0.002463008975610137, 0.005982284899801016, 0.00023860068176873028, 0.4759533703327179, 0.0003333979984745383, 0.0008578659035265446, 0.00045044414582662284, 0.0001955136685865, 0.0003264091210439801, 0.000272568897344172, 0.0002981261641252786, 0.000996675225906074, 0.0003843401209451258, 0.003054158529266715, 0.5064772367477417], [0.0003091947583016008, 0.003753933822736144, 0.0026050421874970198, 0.002973312744870782, 0.00037381844595074654, 0.47535547614097595, 0.0005712572601623833, 0.002732439897954464, 0.001066842582076788, 0.0006499774171970785, 0.000976014940533787, 0.00046141137136146426, 0.0002600216830614954, 0.0011763829970732331, 0.0008935114601626992, 0.006424563936889172, 0.49941691756248474], [0.012292551808059216, 0.010998503305017948, 0.015579926781356335, 0.014066340401768684, 0.013699726201593876, 0.3469683527946472, 0.007598537486046553, 0.04282494634389877, 0.017493868246674538, 0.008313199505209923, 0.015531153418123722, 0.021595127880573273, 0.025942571461200714, 0.04549785703420639, 0.03169679641723633, 0.015439371578395367, 0.35446107387542725], [0.0006360327242873609, 0.00395905040204525, 0.0023163417354226112, 0.0008555912645533681, 0.00020071202015969902, 0.46377673745155334, 0.010687323287129402, 0.008617065846920013, 0.004086365923285484, 0.0009115559514611959, 0.0019316255347803235, 0.0013647980522364378, 0.0009891175432130694, 0.0024294427130371332, 0.0006037005805410445, 0.005178556777536869, 0.49145597219467163], [0.0007919495110400021, 0.004776235204190016, 0.0015622202772647142, 0.0005310687120072544, 0.0008337408653460443, 0.44898033142089844, 0.0019318984122946858, 0.03436794504523277, 0.0034494642168283463, 0.000847524031996727, 0.002304514404386282, 0.0020584347657859325, 0.0019908915273845196, 0.005552026443183422, 0.006032357458025217, 0.010273498483002186, 0.47371599078178406], [0.00012458476703613997, 0.0008120143902488053, 0.001707982155494392, 0.0004169603926129639, 0.00011478588567115366, 0.45997390151023865, 0.0010462802601978183, 0.007104674354195595, 0.020510783419013023, 0.0020785110536962748, 0.002918179612606764, 0.0027221289929002523, 0.0011342582292854786, 0.002173794899135828, 0.0012954933336004615, 0.006881057750433683, 0.48898449540138245], [0.00012027481716359034, 0.002811130601912737, 0.0009967591613531113, 0.001046075951308012, 0.0002547828480601311, 0.4612797796726227, 0.0010690758936107159, 0.005852365400642157, 0.0031890575774013996, 0.0038643868174403906, 0.004242381546646357, 0.001341898227110505, 0.0012413199292495847, 0.004546931479126215, 0.004491997882723808, 0.01170335803180933, 0.4919484853744507], [0.00023025042901281267, 0.0025530040729790926, 0.001524728024378419, 0.0010679967235773802, 0.0003074424166698009, 0.4495812654495239, 0.0016707099275663495, 0.009373314678668976, 0.0032607256434857845, 0.002851347206160426, 0.01574229635298252, 0.004519606474786997, 0.00519479950889945, 0.009211506694555283, 0.006288205273449421, 0.009452374652028084, 0.47717034816741943], [0.00010497944458620623, 0.000726523285266012, 0.0011162463342770934, 0.00043357210233807564, 0.00024388314341194928, 0.4760870635509491, 0.0007098541245795786, 0.002493623411282897, 0.0013016079319640994, 0.0004794404667336494, 0.001037607085891068, 0.001988619100302458, 0.001343661337159574, 0.001866512349806726, 0.001536238705739379, 0.005347326397895813, 0.5031832456588745], [7.387266668956727e-05, 0.0006567435921169817, 0.0006061063031665981, 0.00044161389814689755, 0.00011928227468160912, 0.473837286233902, 0.000331822840962559, 0.003047000849619508, 0.0008164631435647607, 0.00027716875774785876, 0.0012662687804549932, 0.0016507714753970504, 0.004426304716616869, 0.0026247494388371706, 0.0016805774066597223, 0.003436463186517358, 0.5047075152397156], [0.00015551892283838242, 0.0013196674408391118, 0.0009234666940756142, 0.000488990917801857, 0.00030503084417432547, 0.46879178285598755, 0.0005667287041433156, 0.0042366753332316875, 0.0011501702247187495, 0.00045959054841659963, 0.0014999390114098787, 0.0011722755152732134, 0.0023539282847195864, 0.010933272540569305, 0.003832645481452346, 0.00539987301453948, 0.49641039967536926], [5.731631244998425e-05, 0.0012038926361128688, 0.0005449049058370292, 0.0004564173868857324, 0.0001410644908901304, 0.4637811779975891, 0.00047678331611678004, 0.0038882517255842686, 0.0004497033078223467, 0.0004110280133318156, 0.0020325235091149807, 0.0009358148672617972, 0.002752354834228754, 0.005022698547691107, 0.020071137696504593, 0.003773996140807867, 0.49400097131729126], [0.00047469898709096014, 0.00673022773116827, 0.002594608813524246, 0.0014541283017024398, 0.0005066498415544629, 0.46923863887786865, 0.0015309893060475588, 0.005890001077204943, 0.0016982309753075242, 0.0006363806896843016, 0.0009043823229148984, 0.000789143203292042, 0.000677062664180994, 0.004645936656743288, 0.001314402325078845, 0.0072666979394853115, 0.4936477243900299], [0.012600336223840714, 0.011260409839451313, 0.015881584957242012, 0.014361578039824963, 0.013920237310230732, 0.3441026508808136, 0.007760573644191027, 0.04378535971045494, 0.017817361280322075, 0.008494887501001358, 0.015784310176968575, 0.021982824429869652, 0.026427142322063446, 0.04638919606804848, 0.03226320818066597, 0.01569807156920433, 0.35147035121917725]], [[0.00024122082686517388, 0.0041755931451916695, 0.0016273697838187218, 0.00039020428084768355, 2.7030550882045645e-06, 0.4834291636943817, 0.000696244474966079, 0.0008069644100032747, 0.0005135743413120508, 0.0005311251152306795, 0.0006866190233267844, 0.0018468323396518826, 0.0010771151864901185, 0.004013979807496071, 0.0005079202819615602, 0.0018274245085194707, 0.49762600660324097], [0.006344777066260576, 0.16785494983196259, 0.011881212703883648, 0.012100555002689362, 0.005060200579464436, 0.334680438041687, 0.010161318816244602, 0.03264975920319557, 0.0026085067074745893, 0.012454922311007977, 0.0033716093748807907, 0.004378470126539469, 0.005404946394264698, 0.0225836168974638, 0.0053872535936534405, 0.018834196031093597, 0.34424328804016113], [0.00334173534065485, 0.034456897526979446, 0.015521487221121788, 0.006738630123436451, 0.009809460490942001, 0.4217064082622528, 0.007816988043487072, 0.013279812410473824, 0.0038139582611620426, 0.005566832143813372, 0.0017366406973451376, 0.0065644970163702965, 0.0022505775559693575, 0.011269782669842243, 0.003607078455388546, 0.017953509464859962, 0.4345657229423523], [0.0006356092635542154, 0.02304847165942192, 0.0037605271209031343, 0.019091956317424774, 0.0025418128352612257, 0.42793136835098267, 0.0013230297481641173, 0.008717094548046589, 0.000861711916513741, 0.004028602968901396, 0.0010195894865319133, 0.0017932800110429525, 0.0021715634502470493, 0.04216747358441353, 0.007272237911820412, 0.010640187188982964, 0.442995548248291], [0.002923120278865099, 0.02299751155078411, 0.016919078305363655, 0.021754194051027298, 0.0015232362784445286, 0.4097056984901428, 0.006278342567384243, 0.014532997272908688, 0.0011654801201075315, 0.0049864016473293304, 0.002347160829231143, 0.005024791695177555, 0.003827259875833988, 0.03256240487098694, 0.008894377388060093, 0.024538060650229454, 0.42001989483833313], [0.07617279142141342, 0.07795913517475128, 0.03503090888261795, 0.049036212265491486, 0.016228949651122093, 0.16057470440864563, 0.03111070767045021, 0.042247068136930466, 0.04151887446641922, 0.034645676612854004, 0.0336640402674675, 0.031738344579935074, 0.05078244209289551, 0.077152319252491, 0.044325463473796844, 0.03649819642305374, 0.16131427884101868], [0.003047647187486291, 0.017091909423470497, 0.004692105110734701, 0.004105167929083109, 0.0030240456108003855, 0.4475594460964203, 0.0030258961487561464, 0.01082320511341095, 0.0019297391409054399, 0.006359045393764973, 0.0019391265232115984, 0.0028446409851312637, 0.0020360066555440426, 0.015400371514260769, 0.0025302062276750803, 0.010833252221345901, 0.4627581834793091], [0.0036838981322944164, 0.09991160780191422, 0.00822425540536642, 0.007835844531655312, 0.0222031120210886, 0.35380300879478455, 0.00701838219538331, 0.038426466286182404, 0.0024357347283512354, 0.011058442294597626, 0.002966861240565777, 0.005118748173117638, 0.004107875283807516, 0.02888144552707672, 0.008363570086658001, 0.03077125921845436, 0.3651895523071289], [0.0010571125894784927, 0.009986849501729012, 0.004546396434307098, 0.001594154629856348, 0.016387779265642166, 0.44901371002197266, 0.004113574977964163, 0.007463566027581692, 0.0031705289147794247, 0.004720210563391447, 0.0025037522427737713, 0.0074280546978116035, 0.0015469011850655079, 0.006048879586160183, 0.003589344210922718, 0.011931018903851509, 0.46489807963371277], [0.00016135220357682556, 0.02477494813501835, 0.0020672648679465055, 0.0013012816198170185, 0.0008259101305156946, 0.4510280191898346, 0.0016377064166590571, 0.011927323415875435, 0.004168046172708273, 0.005507149733603001, 0.0018864127341657877, 0.0030737409833818674, 0.0018973781261593103, 0.011885439045727253, 0.0016222737031057477, 0.008670371025800705, 0.4675654172897339], [0.0010792240500450134, 0.010214962996542454, 0.006006580777466297, 0.004859045147895813, 0.002961172955110669, 0.4135887622833252, 0.003928480204194784, 0.019339608028531075, 0.010359990410506725, 0.015372836031019688, 0.007973354309797287, 0.011644395999610424, 0.007506543770432472, 0.035109177231788635, 0.008116200566291809, 0.014666988514363766, 0.4272727370262146], [0.003472219919785857, 0.02338642254471779, 0.006701789330691099, 0.004029793664813042, 0.01108253002166748, 0.4164965748786926, 0.005603489000350237, 0.01625795103609562, 0.005738281179219484, 0.00886513851583004, 0.0039116269908845425, 0.01135172788053751, 0.0054019745439291, 0.027852440252900124, 0.006980614736676216, 0.014838401228189468, 0.42802903056144714], [0.0008205111953429878, 0.038076870143413544, 0.0038350140675902367, 0.004890442360192537, 0.0013280636630952358, 0.3985012173652649, 0.003408709540963173, 0.01917431317269802, 0.003912866581231356, 0.007608526851981878, 0.00408722460269928, 0.009988651610910892, 0.008917555212974548, 0.05875924602150917, 0.007801949046552181, 0.01740267314016819, 0.4114862084388733], [0.0030213105492293835, 0.03023276850581169, 0.004153192974627018, 0.004437243565917015, 0.002549462951719761, 0.42860841751098633, 0.003935673739761114, 0.010681882500648499, 0.002102726371958852, 0.007799946703016758, 0.0029054826591163874, 0.006881154607981443, 0.006404772400856018, 0.028477564454078674, 0.006554091349244118, 0.010395340621471405, 0.4408588707447052], [0.0011083751451224089, 0.01437816210091114, 0.0029203607700765133, 0.006045607849955559, 0.00056814169511199, 0.42514875531196594, 0.003962207585573196, 0.009712685830891132, 0.002198380883783102, 0.007044545840471983, 0.004108647350221872, 0.005083181895315647, 0.006811224389821291, 0.04154910147190094, 0.010838381946086884, 0.017674487084150314, 0.44084781408309937], [0.0021698607597500086, 0.0240564476698637, 0.004810225684195757, 0.005933362524956465, 0.0031878314912319183, 0.4379982352256775, 0.002625317545607686, 0.014016716741025448, 0.002111441222950816, 0.006281062960624695, 0.0015140624018386006, 0.002772582694888115, 0.0030366964638233185, 0.018903281539678574, 0.004540346562862396, 0.013787996023893356, 0.45225444436073303], [0.07721052318811417, 0.07834730297327042, 0.03523865342140198, 0.04959369823336601, 0.016454245895147324, 0.15783663094043732, 0.031260550022125244, 0.04258471354842186, 0.041857317090034485, 0.03498491644859314, 0.033944159746170044, 0.03194080665707588, 0.051200151443481445, 0.07771861553192139, 0.04468340426683426, 0.036605071276426315, 0.15853926539421082]], [[0.005831320304423571, 0.01177266240119934, 0.00434677442535758, 0.007693035528063774, 0.0020752931013703346, 0.4430723786354065, 0.003220920218154788, 0.005553597118705511, 0.001921060960739851, 0.009653241373598576, 0.0031950362026691437, 0.0047004385851323605, 0.01733250916004181, 0.016290610656142235, 0.0009530833340249956, 0.0029002258088439703, 0.45948782563209534], [0.0003245966217946261, 0.23319341242313385, 0.015076971612870693, 0.03400760889053345, 0.022869311273097992, 0.18727460503578186, 0.09975313395261765, 0.10346582531929016, 0.005378175526857376, 0.03362703695893288, 0.006363469175994396, 0.009295099414885044, 0.009060614742338657, 0.013776933774352074, 0.005516912788152695, 0.026426518335938454, 0.19458970427513123], [0.002654092852026224, 0.035178057849407196, 0.31765562295913696, 0.01972026191651821, 0.029924556612968445, 0.168646439909935, 0.04360334947705269, 0.02369031123816967, 0.02463795430958271, 0.03752652555704117, 0.01809990219771862, 0.033540137112140656, 0.02786613069474697, 0.013838606886565685, 0.004488723818212748, 0.025684921070933342, 0.1732443869113922], [9.204095113091171e-05, 0.012977209873497486, 0.006741984281688929, 0.21890780329704285, 0.06181371584534645, 0.26080846786499023, 0.02742384932935238, 0.014037508517503738, 0.002650769427418709, 0.02043241262435913, 0.006106800399720669, 0.0030072967056185007, 0.015176472254097462, 0.022113464772701263, 0.025320803746581078, 0.031882625073194504, 0.2705067992210388], [0.0006031574448570609, 0.03778867796063423, 0.022092368453741074, 0.07852448523044586, 0.27076947689056396, 0.19207417964935303, 0.06112397089600563, 0.02070661447942257, 0.0030436753295361996, 0.004968165885657072, 0.0036982381716370583, 0.0034512507263571024, 0.005451066419482231, 0.01766902022063732, 0.011470925062894821, 0.06837006658315659, 0.1981946974992752], [0.004088226240128279, 0.07967300713062286, 0.029852766543626785, 0.07637123763561249, 0.002512900857254863, 0.1602073758840561, 0.01712733507156372, 0.11242978274822235, 0.00845243688672781, 0.03200126066803932, 0.020538104698061943, 0.023642774671316147, 0.08808572590351105, 0.11124499887228012, 0.05831914022564888, 0.0115753673017025, 0.16387759149074554], [0.0003003059246111661, 0.03157700225710869, 0.008651879616081715, 0.01704981178045273, 0.04723678156733513, 0.13709500432014465, 0.48067283630371094, 0.02792474813759327, 0.0026137614622712135, 0.01134602352976799, 0.012199681252241135, 0.010581477545201778, 0.01701228879392147, 0.012101322412490845, 0.004801246337592602, 0.0372360497713089, 0.1415998488664627], [0.0012510159285739064, 0.05968744680285454, 0.012457656674087048, 0.023954836651682854, 0.0933033674955368, 0.23328377306461334, 0.038146428763866425, 0.10956336557865143, 0.019130771979689598, 0.040309399366378784, 0.017529990524053574, 0.01935768313705921, 0.012656865641474724, 0.02431550808250904, 0.014817817136645317, 0.0398135706782341, 0.24042047560214996], [0.00016671273624524474, 0.0038662434089928865, 0.003919951152056456, 0.0013331023510545492, 0.010191835463047028, 0.048735011368989944, 0.0011451373575255275, 0.005781473126262426, 0.8391794562339783, 0.023097801953554153, 0.002293685683980584, 0.0038806002121418715, 0.0019128161948174238, 0.0014490816975012422, 0.0004926783149130642, 0.0023780353367328644, 0.05017640441656113], [0.00041072527528740466, 0.005508243106305599, 0.0030747060663998127, 0.005580278113484383, 0.0012970947427675128, 0.1087382584810257, 0.0021671378053724766, 0.008749880827963352, 0.048073660582304, 0.6622543334960938, 0.016672657802700996, 0.003289890941232443, 0.010226262733340263, 0.0031431992538273335, 0.0037767700850963593, 0.004142649471759796, 0.11289432644844055], [0.0012204707600176334, 0.016790058463811874, 0.009093675762414932, 0.01637817732989788, 0.02417641691863537, 0.23000116646289825, 0.03270893543958664, 0.02527029998600483, 0.026653625071048737, 0.0768292173743248, 0.18514207005500793, 0.02562292292714119, 0.04070065915584564, 0.01414379570633173, 0.012759245000779629, 0.024803368374705315, 0.23770593106746674], [0.0019662119448184967, 0.01650949940085411, 0.02753237634897232, 0.007802025880664587, 0.014688005670905113, 0.2348063439130783, 0.026650192216038704, 0.0256191398948431, 0.039691612124443054, 0.03205813467502594, 0.030954943969845772, 0.1785167157649994, 0.05074504762887955, 0.04298452287912369, 0.008832957595586777, 0.018984511494636536, 0.24165788292884827], [0.00041849605622701347, 0.004063398577272892, 0.00704614445567131, 0.014434083364903927, 0.002436222741380334, 0.17812810838222504, 0.007557305973023176, 0.013747706077992916, 0.0059114377945661545, 0.08130192756652832, 0.02441258169710636, 0.021846847608685493, 0.3909624218940735, 0.046039506793022156, 0.011339789256453514, 0.005574003793299198, 0.18478001654148102], [0.0006194679881446064, 0.018317051231861115, 0.007914450950920582, 0.029451919719576836, 0.00751156359910965, 0.25125929713249207, 0.01519228145480156, 0.03992174193263054, 0.01043176744133234, 0.026790179312229156, 0.01644105277955532, 0.022474132478237152, 0.08471998572349548, 0.15881066024303436, 0.037675641477108, 0.012312451377511024, 0.26015642285346985], [0.00019025133224204183, 0.003956777509301901, 0.0030896749813109636, 0.025168059393763542, 0.01001733634620905, 0.29934951663017273, 0.00472840154543519, 0.018034599721431732, 0.0035799196921288967, 0.03296920284628868, 0.013493282720446587, 0.005203608889132738, 0.016057446599006653, 0.029770096763968468, 0.19661328196525574, 0.02736583910882473, 0.31041276454925537], [0.0006360780098475516, 0.07387086749076843, 0.009531293995678425, 0.043063584715127945, 0.06354290246963501, 0.2806938886642456, 0.041408587247133255, 0.0352645143866539, 0.004905599169433117, 0.009743313305079937, 0.0051108552142977715, 0.005372344050556421, 0.013156158849596977, 0.03526909649372101, 0.019911523908376694, 0.06827884167432785, 0.2902405560016632], [0.004144406411796808, 0.08055808395147324, 0.030144015327095985, 0.07706895470619202, 0.0025522306095808744, 0.157363623380661, 0.017380569130182266, 0.11364361643791199, 0.008510811254382133, 0.03221731260418892, 0.020727308467030525, 0.023826273158192635, 0.08892863988876343, 0.11162080615758896, 0.05871307849884033, 0.011652396991848946, 0.16094791889190674]], [[0.0019022258929908276, 0.0028518533799797297, 0.023877127096056938, 0.002818893175572157, 2.8957925678696483e-05, 0.41810137033462524, 0.005783493630588055, 0.010046356357634068, 0.02295095846056938, 0.012258436530828476, 0.02296709641814232, 0.017327917739748955, 0.00576773239299655, 0.002016407670453191, 0.002586920978501439, 0.015043526887893677, 0.43367066979408264], [0.001216525794006884, 0.09313598275184631, 0.03132186830043793, 0.009057292714715004, 0.11545923352241516, 0.31246423721313477, 0.018562141805887222, 0.020972223952412605, 0.01567009650170803, 0.010771157220005989, 0.012572611682116985, 0.008857020176947117, 0.002875644015148282, 0.003951703663915396, 0.005975358188152313, 0.013038826175034046, 0.3240981101989746], [0.0024681342765688896, 0.004996032454073429, 0.02663525566458702, 0.019920671358704567, 0.11852669715881348, 0.36220991611480713, 0.012977932579815388, 0.008488473482429981, 0.008891948498785496, 0.00610839668661356, 0.01048985030502081, 0.012336947955191135, 0.011766326613724232, 0.0027479107957333326, 0.003998419735580683, 0.013664686121046543, 0.37377238273620605], [0.0006503177573904395, 0.004740986507385969, 0.016093367710709572, 0.03929069638252258, 0.036912702023983, 0.4077463448047638, 0.0083429254591465, 0.005426348652690649, 0.012381486594676971, 0.006204079836606979, 0.009881153702735901, 0.005784002132713795, 0.006350136362016201, 0.0029678097926080227, 0.004570384975522757, 0.009530861862003803, 0.42312631011009216], [0.0010214517824351788, 0.027149803936481476, 0.043224602937698364, 0.04294352978467941, 0.013902762904763222, 0.36381515860557556, 0.016482103615999222, 0.014110058546066284, 0.03177379071712494, 0.008538416586816311, 0.016034452244639397, 0.015803853049874306, 0.004429541062563658, 0.002999021438881755, 0.00309337698854506, 0.019298551604151726, 0.3753794729709625], [0.013143510557711124, 0.03452545776963234, 0.029296696186065674, 0.01624143496155739, 0.0040252357721328735, 0.25596532225608826, 0.028565166518092155, 0.023865701630711555, 0.02440827526152134, 0.01673075184226036, 0.03549576178193092, 0.02963970974087715, 0.03463161736726761, 0.11361231654882431, 0.043143488466739655, 0.0359220951795578, 0.2607874274253845], [0.0005859640659764409, 0.00421966752037406, 0.0304410457611084, 0.012703359127044678, 0.06402577459812164, 0.36856701970100403, 0.01825401373207569, 0.016768882051110268, 0.016583941876888275, 0.009370322339236736, 0.01634148135781288, 0.023013344034552574, 0.01154485996812582, 0.0033107679337263107, 0.0061307004652917385, 0.016710249707102776, 0.38142848014831543], [0.0011901101097464561, 0.01384146697819233, 0.02261945605278015, 0.00713687390089035, 0.17730063199996948, 0.3048979640007019, 0.012252973392605782, 0.0357365719974041, 0.014828757382929325, 0.01066965889185667, 0.015467341057956219, 0.016321443021297455, 0.01213481742888689, 0.009721986949443817, 0.0156781654804945, 0.014146126806735992, 0.31605565547943115], [0.00048708581016398966, 0.0015397840179502964, 0.020487653091549873, 0.008557535707950592, 0.010052883997559547, 0.40871191024780273, 0.0075721037574112415, 0.0110563263297081, 0.02761998027563095, 0.016603579744696617, 0.023043643683195114, 0.014415320940315723, 0.0073043606244027615, 0.0027321111410856247, 0.0026046824641525745, 0.011422018520534039, 0.42578890919685364], [0.0003543811326380819, 0.004109828732907772, 0.023577461019158363, 0.007221638225018978, 0.010980814695358276, 0.3686993420124054, 0.008469087071716785, 0.020953770726919174, 0.022631168365478516, 0.04748958349227905, 0.03427116945385933, 0.017405811697244644, 0.010583546943962574, 0.006159454584121704, 0.010084313340485096, 0.022903243079781532, 0.3841054141521454], [0.0006075790734030306, 0.0038110725581645966, 0.025148576125502586, 0.017370514571666718, 0.02249809168279171, 0.35028645396232605, 0.015180419199168682, 0.019289089366793633, 0.027348851785063744, 0.024659382179379463, 0.056532878428697586, 0.01735147461295128, 0.01663198135793209, 0.007348248735070229, 0.014101103879511356, 0.018182000145316124, 0.3636523187160492], [0.001276108669117093, 0.0026143528521060944, 0.027368007227778435, 0.009514599107205868, 0.04243889078497887, 0.3722313344478607, 0.013800058513879776, 0.01333552598953247, 0.01215767115354538, 0.013874214142560959, 0.025489550083875656, 0.02792678400874138, 0.0219037514179945, 0.00402042968198657, 0.007385497447103262, 0.01944700814783573, 0.38521626591682434], [0.0002959351404570043, 0.0020505436696112156, 0.0178506001830101, 0.004280950408428907, 0.0035021300427615643, 0.38046979904174805, 0.009544748812913895, 0.0154102873057127, 0.015685053542256355, 0.011735287494957447, 0.03900917246937752, 0.022873826324939728, 0.04131555184721947, 0.009710383601486683, 0.016277698799967766, 0.014443300664424896, 0.39554470777511597], [0.0008328131516464055, 0.0035333798732608557, 0.010972613468766212, 0.0045646559447050095, 0.05841260030865669, 0.33175408840179443, 0.00652679055929184, 0.010772940702736378, 0.012339622713625431, 0.012212409637868404, 0.013103439472615719, 0.009248980320990086, 0.02296219952404499, 0.09514404833316803, 0.052700407803058624, 0.010692276060581207, 0.3442266285419464], [0.00046085071517154574, 0.0019143593963235617, 0.014879899099469185, 0.005335604771971703, 0.010660521686077118, 0.3114052414894104, 0.009831681847572327, 0.015383126214146614, 0.014872334897518158, 0.02657659538090229, 0.026061030104756355, 0.015878554433584213, 0.03705916553735733, 0.0381053201854229, 0.13035142421722412, 0.01748838648200035, 0.32373595237731934], [0.0006094921263866127, 0.006091001909226179, 0.022159233689308167, 0.013296100310981274, 0.019250784069299698, 0.39450937509536743, 0.013079353608191013, 0.01685570552945137, 0.015032617375254631, 0.010655424557626247, 0.014353615231812, 0.014095754362642765, 0.008823973126709461, 0.008039773441851139, 0.010948363691568375, 0.023108532652258873, 0.40909087657928467], [0.01341425534337759, 0.03519280254840851, 0.029303068295121193, 0.016470912843942642, 0.004177981987595558, 0.2539690434932709, 0.028686828911304474, 0.023955365642905235, 0.024363987147808075, 0.016812413930892944, 0.03537944704294205, 0.02974861115217209, 0.03482182323932648, 0.11550600081682205, 0.04347052052617073, 0.036010272800922394, 0.2587166428565979]], [[0.007389470934867859, 0.01829157955944538, 0.00845251139253378, 0.013051776215434074, 0.017004946246743202, 0.43078628182411194, 0.005508810747414827, 0.003723839530721307, 0.0026270251255482435, 0.002239653142169118, 0.0016685979207977653, 0.005715097766369581, 0.005864901002496481, 0.009299086406826973, 0.004129218868911266, 0.021531783044338226, 0.44271546602249146], [0.004789163824170828, 0.21338936686515808, 0.013958451338112354, 0.04122016206383705, 0.020148109644651413, 0.21852339804172516, 0.015935339033603668, 0.09450928121805191, 0.004145747981965542, 0.04075729474425316, 0.010015474632382393, 0.009052900597453117, 0.007581078913062811, 0.013277600519359112, 0.009992029517889023, 0.05867085978388786, 0.22403378784656525], [0.0040914262644946575, 0.05104576423764229, 0.019646286964416504, 0.03210711479187012, 0.01773713156580925, 0.370922714471817, 0.014878179877996445, 0.009834961034357548, 0.005241227336227894, 0.012684490531682968, 0.002648735884577036, 0.015206418931484222, 0.009653091430664062, 0.012623204849660397, 0.00997329130768776, 0.030581548810005188, 0.3811243772506714], [0.0009611447458155453, 0.033308323472738266, 0.0342724472284317, 0.09277479350566864, 0.02615957148373127, 0.27097901701927185, 0.014527857303619385, 0.014633425511419773, 0.005486134439706802, 0.03221901133656502, 0.0064330692403018475, 0.020369602367281914, 0.024121297523379326, 0.032885581254959106, 0.06195885315537453, 0.0493503212928772, 0.27955949306488037], [0.0017678893636912107, 0.049694374203681946, 0.01846885494887829, 0.04765691980719566, 0.03602023422718048, 0.3219151794910431, 0.013291195966303349, 0.038917139172554016, 0.004317349288612604, 0.021138550713658333, 0.006432921625673771, 0.00637804763391614, 0.005297844763845205, 0.012889263220131397, 0.019916506484150887, 0.06489411741495132, 0.33100372552871704], [0.036235976964235306, 0.19028089940547943, 0.02416452392935753, 0.06858456879854202, 0.03403222933411598, 0.1045173853635788, 0.0205293670296669, 0.047064173966646194, 0.008629909716546535, 0.01852097176015377, 0.013740534894168377, 0.018262971192598343, 0.05919438228011131, 0.1352081596851349, 0.0873369500041008, 0.02888587862253189, 0.10481107980012894], [0.0014928648015484214, 0.05016807094216347, 0.006042085122317076, 0.012665248475968838, 0.004569854587316513, 0.4031609892845154, 0.009498868137598038, 0.011989490129053593, 0.0030663982033729553, 0.016210895031690598, 0.001951287966221571, 0.008935458026826382, 0.006942552048712969, 0.012140193022787571, 0.010401125997304916, 0.025691550225019455, 0.415073037147522], [0.0035383175127208233, 0.11680669337511063, 0.009164322167634964, 0.03344154357910156, 0.010600870475172997, 0.3171765208244324, 0.009809310548007488, 0.039994943886995316, 0.003386025782674551, 0.021950284019112587, 0.0041715726256370544, 0.008025341667234898, 0.008206680417060852, 0.027053462341427803, 0.02701931819319725, 0.03434072807431221, 0.3253140151500702], [0.0006632587173953652, 0.010741904377937317, 0.006203365046530962, 0.006714809685945511, 0.0036519314162433147, 0.4373721182346344, 0.0037844055332243443, 0.002472192980349064, 0.012317026033997536, 0.02224021963775158, 0.0014940665569156408, 0.011379499919712543, 0.009332661516964436, 0.004507684614509344, 0.006196343339979649, 0.008340946398675442, 0.4525875449180603], [0.00038393604336306453, 0.046612706035375595, 0.009713984094560146, 0.03533177077770233, 0.007008887827396393, 0.33961647748947144, 0.0029100507963448763, 0.012486566789448261, 0.00879690796136856, 0.08765149116516113, 0.00300618470646441, 0.012695442885160446, 0.018511854112148285, 0.011330066248774529, 0.028972091153264046, 0.023272981867194176, 0.35169869661331177], [0.0002460178511682898, 0.015072574838995934, 0.007381409872323275, 0.020201807841658592, 0.005909177474677563, 0.40245094895362854, 0.002557218773290515, 0.005336532834917307, 0.005218052305281162, 0.037311021238565445, 0.006556379608809948, 0.00956442579627037, 0.010577062144875526, 0.012790646404027939, 0.023777257651090622, 0.01754939742386341, 0.4175001382827759], [0.0014701661420986056, 0.015442299656569958, 0.006827336270362139, 0.011002520099282265, 0.0038052706513553858, 0.4084694981575012, 0.004630680661648512, 0.004363355226814747, 0.004840238019824028, 0.010694161988794804, 0.0035577225498855114, 0.02847881056368351, 0.02916611358523369, 0.01957547850906849, 0.015987366437911987, 0.010356932878494263, 0.4213320314884186], [0.0003888678038492799, 0.013530793599784374, 0.0059682829305529594, 0.008791477419435978, 0.0018907168414443731, 0.38568565249443054, 0.001964295282959938, 0.0037467717193067074, 0.002661838661879301, 0.01328457985073328, 0.0025560499634593725, 0.025804661214351654, 0.042466387152671814, 0.035395167768001556, 0.04943682998418808, 0.007418293040245771, 0.3990093767642975], [0.003990862984210253, 0.01700129173696041, 0.007978437468409538, 0.013954945839941502, 0.0047778296284377575, 0.39596399664878845, 0.002993785310536623, 0.006727760657668114, 0.002855227328836918, 0.013028956018388271, 0.004195814020931721, 0.021579060703516006, 0.041043445467948914, 0.020061884075403214, 0.025666149333119392, 0.009758359752595425, 0.40842220187187195], [0.0003185365058016032, 0.011468544602394104, 0.007245360873639584, 0.013416090980172157, 0.0031921572517603636, 0.32317882776260376, 0.0029380100313574076, 0.012032217346131802, 0.001776980934664607, 0.011103610508143902, 0.004212576895952225, 0.01774551160633564, 0.04200638458132744, 0.04227885231375694, 0.1594015210866928, 0.013156195171177387, 0.33452868461608887], [0.0036993299145251513, 0.11480454355478287, 0.008078468963503838, 0.029468156397342682, 0.012394116260111332, 0.3358854055404663, 0.009418094530701637, 0.01668315753340721, 0.002604477107524872, 0.01212986744940281, 0.0027530898805707693, 0.00864039920270443, 0.012647895142436028, 0.028422106057405472, 0.02417171187698841, 0.03309774026274681, 0.34510135650634766], [0.03643961250782013, 0.19183850288391113, 0.024208668619394302, 0.0689311996102333, 0.03423827141523361, 0.10233719646930695, 0.020557403564453125, 0.047402188181877136, 0.008666301146149635, 0.018653254956007004, 0.013825536705553532, 0.018277935683727264, 0.059385593980550766, 0.13596506416797638, 0.08778192102909088, 0.028880709782242775, 0.10261073708534241]]]], \\\"left_text\\\": [\\\"[CLS]\\\", \\\"Kedi\\\", \\\"\\\\u00e7ok\\\", \\\"\\\\u00fczg\\\\u00fcn\\\", \\\".\\\", \\\"[SEP]\\\", \\\"\\\\u00c7\\\\u00fcnk\\\\u00fc\\\", \\\"o\\\", \\\"her\\\", \\\"zamanki\\\", \\\"gibi\\\", \\\"\\\\u00e7ok\\\", \\\"fazla\\\", \\\"yemek\\\", \\\"yedi\\\", \\\".\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"[CLS]\\\", \\\"Kedi\\\", \\\"\\\\u00e7ok\\\", \\\"\\\\u00fczg\\\\u00fcn\\\", \\\".\\\", \\\"[SEP]\\\", \\\"\\\\u00c7\\\\u00fcnk\\\\u00fc\\\", \\\"o\\\", \\\"her\\\", \\\"zamanki\\\", \\\"gibi\\\", \\\"\\\\u00e7ok\\\", \\\"fazla\\\", \\\"yemek\\\", \\\"yedi\\\", \\\".\\\", \\\"[SEP]\\\"]}], \\\"default_filter\\\": \\\"0\\\", \\\"root_div_id\\\": \\\"bertviz-cc7b8cf4d43a4e4eb6c485f2c5030b2a\\\", \\\"layer\\\": null, \\\"heads\\\": null} is a template marker that is replaced by actual params.\\n\",\"    const TEXT_SIZE = 15;\\n\",\"    const BOXWIDTH = 110;\\n\",\"    const BOXHEIGHT = 22.5;\\n\",\"    const MATRIX_WIDTH = 115;\\n\",\"    const CHECKBOX_SIZE = 20;\\n\",\"    const TEXT_TOP = 30;\\n\",\"\\n\",\"    console.log(\\\"d3 version\\\", d3.version)\\n\",\"    let headColors;\\n\",\"    try {\\n\",\"        headColors = d3.scaleOrdinal(d3.schemeCategory10);\\n\",\"    } catch (err) {\\n\",\"        console.log('Older d3 version')\\n\",\"        headColors = d3.scale.category10();\\n\",\"    }\\n\",\"    let config = {};\\n\",\"    initialize();\\n\",\"    renderVis();\\n\",\"\\n\",\"    function initialize() {\\n\",\"        config.attention = params['attention'];\\n\",\"        config.filter = params['default_filter'];\\n\",\"        config.rootDivId = params['root_div_id'];\\n\",\"        config.nLayers = config.attention[config.filter]['attn'].length;\\n\",\"        config.nHeads = config.attention[config.filter]['attn'][0].length;\\n\",\"        if (params['heads']) {\\n\",\"            config.headVis = new Array(config.nHeads).fill(false);\\n\",\"            params['heads'].forEach(x =\\u003e config.headVis[x] = true);\\n\",\"        } else {\\n\",\"            config.headVis = new Array(config.nHeads).fill(true);\\n\",\"        }\\n\",\"        config.initialTextLength = config.attention[config.filter].right_text.length;\\n\",\"        config.layer = (params['layer'] == null ? 0 : params['layer'])\\n\",\"\\n\",\"\\n\",\"        let layerEl = $(`#${config.rootDivId} #layer`);\\n\",\"        for (var i = 0; i \\u003c config.nLayers; i++) {\\n\",\"            layerEl.append($(\\\"\\u003coption /\\u003e\\\").val(i).text(i));\\n\",\"        }\\n\",\"        layerEl.val(config.layer).change();\\n\",\"        layerEl.on('change', function (e) {\\n\",\"            config.layer = +e.currentTarget.value;\\n\",\"            renderVis();\\n\",\"        });\\n\",\"\\n\",\"        $(`#${config.rootDivId} #filter`).on('change', function (e) {\\n\",\"            config.filter = e.currentTarget.value;\\n\",\"            renderVis();\\n\",\"        });\\n\",\"    }\\n\",\"\\n\",\"    function renderVis() {\\n\",\"\\n\",\"        // Load parameters\\n\",\"        const attnData = config.attention[config.filter];\\n\",\"        const leftText = attnData.left_text;\\n\",\"        const rightText = attnData.right_text;\\n\",\"\\n\",\"        // Select attention for given layer\\n\",\"        const layerAttention = attnData.attn[config.layer];\\n\",\"\\n\",\"        // Clear vis\\n\",\"        $(`#${config.rootDivId} #vis`).empty();\\n\",\"\\n\",\"        // Determine size of visualization\\n\",\"        const height = Math.max(leftText.length, rightText.length) * BOXHEIGHT + TEXT_TOP;\\n\",\"        const svg = d3.select(`#${config.rootDivId} #vis`)\\n\",\"            .append('svg')\\n\",\"            .attr(\\\"width\\\", \\\"100%\\\")\\n\",\"            .attr(\\\"height\\\", height + \\\"px\\\");\\n\",\"\\n\",\"        // Display tokens on left and right side of visualization\\n\",\"        renderText(svg, leftText, true, layerAttention, 0);\\n\",\"        renderText(svg, rightText, false, layerAttention, MATRIX_WIDTH + BOXWIDTH);\\n\",\"\\n\",\"        // Render attention arcs\\n\",\"        renderAttention(svg, layerAttention);\\n\",\"\\n\",\"        // Draw squares at top of visualization, one for each head\\n\",\"        drawCheckboxes(0, svg, layerAttention);\\n\",\"    }\\n\",\"\\n\",\"    function renderText(svg, text, isLeft, attention, leftPos) {\\n\",\"\\n\",\"        const textContainer = svg.append(\\\"svg:g\\\")\\n\",\"            .attr(\\\"id\\\", isLeft ? \\\"left\\\" : \\\"right\\\");\\n\",\"\\n\",\"        // Add attention highlights superimposed over words\\n\",\"        textContainer.append(\\\"g\\\")\\n\",\"            .classed(\\\"attentionBoxes\\\", true)\\n\",\"            .selectAll(\\\"g\\\")\\n\",\"            .data(attention)\\n\",\"            .enter()\\n\",\"            .append(\\\"g\\\")\\n\",\"            .attr(\\\"head-index\\\", (d, i) =\\u003e i)\\n\",\"            .selectAll(\\\"rect\\\")\\n\",\"            .data(d =\\u003e isLeft ? d : transpose(d)) // if right text, transpose attention to get right-to-left weights\\n\",\"            .enter()\\n\",\"            .append(\\\"rect\\\")\\n\",\"            .attr(\\\"x\\\", function () {\\n\",\"                var headIndex = +this.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                return leftPos + boxOffsets(headIndex);\\n\",\"            })\\n\",\"            .attr(\\\"y\\\", (+1) * BOXHEIGHT)\\n\",\"            .attr(\\\"width\\\", BOXWIDTH / activeHeads())\\n\",\"            .attr(\\\"height\\\", BOXHEIGHT)\\n\",\"            .attr(\\\"fill\\\", function () {\\n\",\"                return headColors(+this.parentNode.getAttribute(\\\"head-index\\\"))\\n\",\"            })\\n\",\"            .style(\\\"opacity\\\", 0.0);\\n\",\"\\n\",\"        const tokenContainer = textContainer.append(\\\"g\\\").selectAll(\\\"g\\\")\\n\",\"            .data(text)\\n\",\"            .enter()\\n\",\"            .append(\\\"g\\\");\\n\",\"\\n\",\"        // Add gray background that appears when hovering over text\\n\",\"        tokenContainer.append(\\\"rect\\\")\\n\",\"            .classed(\\\"background\\\", true)\\n\",\"            .style(\\\"opacity\\\", 0.0)\\n\",\"            .attr(\\\"fill\\\", \\\"lightgray\\\")\\n\",\"            .attr(\\\"x\\\", leftPos)\\n\",\"            .attr(\\\"y\\\", (d, i) =\\u003e TEXT_TOP + i * BOXHEIGHT)\\n\",\"            .attr(\\\"width\\\", BOXWIDTH)\\n\",\"            .attr(\\\"height\\\", BOXHEIGHT);\\n\",\"\\n\",\"        // Add token text\\n\",\"        const textEl = tokenContainer.append(\\\"text\\\")\\n\",\"            .text(d =\\u003e d)\\n\",\"            .attr(\\\"font-size\\\", TEXT_SIZE + \\\"px\\\")\\n\",\"            .style(\\\"cursor\\\", \\\"default\\\")\\n\",\"            .style(\\\"-webkit-user-select\\\", \\\"none\\\")\\n\",\"            .attr(\\\"x\\\", leftPos)\\n\",\"            .attr(\\\"y\\\", (d, i) =\\u003e TEXT_TOP + i * BOXHEIGHT);\\n\",\"\\n\",\"        if (isLeft) {\\n\",\"            textEl.style(\\\"text-anchor\\\", \\\"end\\\")\\n\",\"                .attr(\\\"dx\\\", BOXWIDTH - 0.5 * TEXT_SIZE)\\n\",\"                .attr(\\\"dy\\\", TEXT_SIZE);\\n\",\"        } else {\\n\",\"            textEl.style(\\\"text-anchor\\\", \\\"start\\\")\\n\",\"                .attr(\\\"dx\\\", +0.5 * TEXT_SIZE)\\n\",\"                .attr(\\\"dy\\\", TEXT_SIZE);\\n\",\"        }\\n\",\"\\n\",\"        tokenContainer.on(\\\"mouseover\\\", function (d, index) {\\n\",\"\\n\",\"            // Show gray background for moused-over token\\n\",\"            textContainer.selectAll(\\\".background\\\")\\n\",\"                .style(\\\"opacity\\\", (d, i) =\\u003e i === index ? 1.0 : 0.0)\\n\",\"\\n\",\"            // Reset visibility attribute for any previously highlighted attention arcs\\n\",\"            svg.select(\\\"#attention\\\")\\n\",\"                .selectAll(\\\"line[visibility='visible']\\\")\\n\",\"                .attr(\\\"visibility\\\", null)\\n\",\"\\n\",\"            // Hide group containing attention arcs\\n\",\"            svg.select(\\\"#attention\\\").attr(\\\"visibility\\\", \\\"hidden\\\");\\n\",\"\\n\",\"            // Set to visible appropriate attention arcs to be highlighted\\n\",\"            if (isLeft) {\\n\",\"                svg.select(\\\"#attention\\\").selectAll(\\\"line[left-token-index='\\\" + index + \\\"']\\\").attr(\\\"visibility\\\", \\\"visible\\\");\\n\",\"            } else {\\n\",\"                svg.select(\\\"#attention\\\").selectAll(\\\"line[right-token-index='\\\" + index + \\\"']\\\").attr(\\\"visibility\\\", \\\"visible\\\");\\n\",\"            }\\n\",\"\\n\",\"            // Update color boxes superimposed over tokens\\n\",\"            const id = isLeft ? \\\"right\\\" : \\\"left\\\";\\n\",\"            const leftPos = isLeft ? MATRIX_WIDTH + BOXWIDTH : 0;\\n\",\"            svg.select(\\\"#\\\" + id)\\n\",\"                .selectAll(\\\".attentionBoxes\\\")\\n\",\"                .selectAll(\\\"g\\\")\\n\",\"                .attr(\\\"head-index\\\", (d, i) =\\u003e i)\\n\",\"                .selectAll(\\\"rect\\\")\\n\",\"                .attr(\\\"x\\\", function () {\\n\",\"                    const headIndex = +this.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                    return leftPos + boxOffsets(headIndex);\\n\",\"                })\\n\",\"                .attr(\\\"y\\\", (d, i) =\\u003e TEXT_TOP + i * BOXHEIGHT)\\n\",\"                .attr(\\\"width\\\", BOXWIDTH / activeHeads())\\n\",\"                .attr(\\\"height\\\", BOXHEIGHT)\\n\",\"                .style(\\\"opacity\\\", function (d) {\\n\",\"                    const headIndex = +this.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                    if (config.headVis[headIndex])\\n\",\"                        if (d) {\\n\",\"                            return d[index];\\n\",\"                        } else {\\n\",\"                            return 0.0;\\n\",\"                        }\\n\",\"                    else\\n\",\"                        return 0.0;\\n\",\"                });\\n\",\"        });\\n\",\"\\n\",\"        textContainer.on(\\\"mouseleave\\\", function () {\\n\",\"\\n\",\"            // Unhighlight selected token\\n\",\"            d3.select(this).selectAll(\\\".background\\\")\\n\",\"                .style(\\\"opacity\\\", 0.0);\\n\",\"\\n\",\"            // Reset visibility attributes for previously selected lines\\n\",\"            svg.select(\\\"#attention\\\")\\n\",\"                .selectAll(\\\"line[visibility='visible']\\\")\\n\",\"                .attr(\\\"visibility\\\", null) ;\\n\",\"            svg.select(\\\"#attention\\\").attr(\\\"visibility\\\", \\\"visible\\\");\\n\",\"\\n\",\"            // Reset highlights superimposed over tokens\\n\",\"            svg.selectAll(\\\".attentionBoxes\\\")\\n\",\"                .selectAll(\\\"g\\\")\\n\",\"                .selectAll(\\\"rect\\\")\\n\",\"                .style(\\\"opacity\\\", 0.0);\\n\",\"        });\\n\",\"    }\\n\",\"\\n\",\"    function renderAttention(svg, attention) {\\n\",\"\\n\",\"        // Remove previous dom elements\\n\",\"        svg.select(\\\"#attention\\\").remove();\\n\",\"\\n\",\"        // Add new elements\\n\",\"        svg.append(\\\"g\\\")\\n\",\"            .attr(\\\"id\\\", \\\"attention\\\") // Container for all attention arcs\\n\",\"            .selectAll(\\\".headAttention\\\")\\n\",\"            .data(attention)\\n\",\"            .enter()\\n\",\"            .append(\\\"g\\\")\\n\",\"            .classed(\\\"headAttention\\\", true) // Group attention arcs by head\\n\",\"            .attr(\\\"head-index\\\", (d, i) =\\u003e i)\\n\",\"            .selectAll(\\\".tokenAttention\\\")\\n\",\"            .data(d =\\u003e d)\\n\",\"            .enter()\\n\",\"            .append(\\\"g\\\")\\n\",\"            .classed(\\\"tokenAttention\\\", true) // Group attention arcs by left token\\n\",\"            .attr(\\\"left-token-index\\\", (d, i) =\\u003e i)\\n\",\"            .selectAll(\\\"line\\\")\\n\",\"            .data(d =\\u003e d)\\n\",\"            .enter()\\n\",\"            .append(\\\"line\\\")\\n\",\"            .attr(\\\"x1\\\", BOXWIDTH)\\n\",\"            .attr(\\\"y1\\\", function () {\\n\",\"                const leftTokenIndex = +this.parentNode.getAttribute(\\\"left-token-index\\\")\\n\",\"                return TEXT_TOP + leftTokenIndex * BOXHEIGHT + (BOXHEIGHT / 2)\\n\",\"            })\\n\",\"            .attr(\\\"x2\\\", BOXWIDTH + MATRIX_WIDTH)\\n\",\"            .attr(\\\"y2\\\", (d, rightTokenIndex) =\\u003e TEXT_TOP + rightTokenIndex * BOXHEIGHT + (BOXHEIGHT / 2))\\n\",\"            .attr(\\\"stroke-width\\\", 2)\\n\",\"            .attr(\\\"stroke\\\", function () {\\n\",\"                const headIndex = +this.parentNode.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                return headColors(headIndex)\\n\",\"            })\\n\",\"            .attr(\\\"left-token-index\\\", function () {\\n\",\"                return +this.parentNode.getAttribute(\\\"left-token-index\\\")\\n\",\"            })\\n\",\"            .attr(\\\"right-token-index\\\", (d, i) =\\u003e i)\\n\",\"        ;\\n\",\"        updateAttention(svg)\\n\",\"    }\\n\",\"\\n\",\"    function updateAttention(svg) {\\n\",\"        svg.select(\\\"#attention\\\")\\n\",\"            .selectAll(\\\"line\\\")\\n\",\"            .attr(\\\"stroke-opacity\\\", function (d) {\\n\",\"                const headIndex = +this.parentNode.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                // If head is selected\\n\",\"                if (config.headVis[headIndex]) {\\n\",\"                    // Set opacity to attention weight divided by number of active heads\\n\",\"                    return d / activeHeads()\\n\",\"                } else {\\n\",\"                    return 0.0;\\n\",\"                }\\n\",\"            })\\n\",\"    }\\n\",\"\\n\",\"    function boxOffsets(i) {\\n\",\"        const numHeadsAbove = config.headVis.reduce(\\n\",\"            function (acc, val, cur) {\\n\",\"                return val \\u0026\\u0026 cur \\u003c i ? acc + 1 : acc;\\n\",\"            }, 0);\\n\",\"        return numHeadsAbove * (BOXWIDTH / activeHeads());\\n\",\"    }\\n\",\"\\n\",\"    function activeHeads() {\\n\",\"        return config.headVis.reduce(function (acc, val) {\\n\",\"            return val ? acc + 1 : acc;\\n\",\"        }, 0);\\n\",\"    }\\n\",\"\\n\",\"    function drawCheckboxes(top, svg) {\\n\",\"        const checkboxContainer = svg.append(\\\"g\\\");\\n\",\"        const checkbox = checkboxContainer.selectAll(\\\"rect\\\")\\n\",\"            .data(config.headVis)\\n\",\"            .enter()\\n\",\"            .append(\\\"rect\\\")\\n\",\"            .attr(\\\"fill\\\", (d, i) =\\u003e headColors(i))\\n\",\"            .attr(\\\"x\\\", (d, i) =\\u003e i * CHECKBOX_SIZE)\\n\",\"            .attr(\\\"y\\\", top)\\n\",\"            .attr(\\\"width\\\", CHECKBOX_SIZE)\\n\",\"            .attr(\\\"height\\\", CHECKBOX_SIZE);\\n\",\"\\n\",\"        function updateCheckboxes() {\\n\",\"            checkboxContainer.selectAll(\\\"rect\\\")\\n\",\"                .data(config.headVis)\\n\",\"                .attr(\\\"fill\\\", (d, i) =\\u003e d ? headColors(i): lighten(headColors(i)));\\n\",\"        }\\n\",\"\\n\",\"        updateCheckboxes();\\n\",\"\\n\",\"        checkbox.on(\\\"click\\\", function (d, i) {\\n\",\"            if (config.headVis[i] \\u0026\\u0026 activeHeads() === 1) return;\\n\",\"            config.headVis[i] = !config.headVis[i];\\n\",\"            updateCheckboxes();\\n\",\"            updateAttention(svg);\\n\",\"        });\\n\",\"\\n\",\"        checkbox.on(\\\"dblclick\\\", function (d, i) {\\n\",\"            // If we double click on the only active head then reset\\n\",\"            if (config.headVis[i] \\u0026\\u0026 activeHeads() === 1) {\\n\",\"                config.headVis = new Array(config.nHeads).fill(true);\\n\",\"            } else {\\n\",\"                config.headVis = new Array(config.nHeads).fill(false);\\n\",\"                config.headVis[i] = true;\\n\",\"            }\\n\",\"            updateCheckboxes();\\n\",\"            updateAttention(svg);\\n\",\"        });\\n\",\"    }\\n\",\"\\n\",\"    function lighten(color) {\\n\",\"        const c = d3.hsl(color);\\n\",\"        const increment = (1 - c.l) * 0.6;\\n\",\"        c.l += increment;\\n\",\"        c.s -= increment;\\n\",\"        return c;\\n\",\"    }\\n\",\"\\n\",\"    function transpose(mat) {\\n\",\"        return mat[0].map(function (col, i) {\\n\",\"            return mat.map(function (row) {\\n\",\"                return row[i];\\n\",\"            });\\n\",\"        });\\n\",\"    }\\n\",\"\\n\",\"});\"],\"text/plain\":[\"\\u003cIPython.core.display.Javascript object\\u003e\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"}],\"source\":[\"model_path = 'dbmdz/bert-base-turkish-cased'\\n\",\"\\n\",\"sentence_a = \\\"Kedi çok üzgün.\\\"\\n\",\"sentence_b = \\\"Çünkü o her zamanki gibi çok fazla yemek yedi.\\\"\\n\",\"\\n\",\"attention, tokens=get_bert_attentions(model_path, sentence_a, sentence_b)\\n\",\"head_view(attention, tokens)\\n\",\"# \\u003cLayer-8, Head-8\\u003e\"]},{\"cell_type\":\"code\",\"execution_count\":6,\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":776},\"executionInfo\":{\"elapsed\":20322,\"status\":\"ok\",\"timestamp\":1626168883159,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"},\"user_tz\":-180},\"id\":\"Un8XJGDbrwHH\",\"outputId\":\"52f7d3b3-d436-4ea7-fcf9-78349fde46b2\"},\"outputs\":[{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"1e852bb7ee454bc3bcd38bbbe7cbbfcb\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=433.0, style=ProgressStyle(description_…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"91779844ce284100a110a1847599505a\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=438869143.0, style=ProgressStyle(descri…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"name\":\"stderr\",\"output_type\":\"stream\",\"text\":[\"Some weights of the model checkpoint at bert-base-german-cased were not used when initializing BertModel: ['cls.seq_relationship.bias', 'cls.predictions.bias', 'cls.predictions.decoder.weight', 'cls.predictions.transform.LayerNorm.weight', 'cls.predictions.transform.dense.bias', 'cls.predictions.transform.LayerNorm.bias', 'cls.seq_relationship.weight', 'cls.predictions.transform.dense.weight']\\n\",\"- This IS expected if you are initializing BertModel from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing BertModel from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\"]},{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"ee1c2b60ca5a4a61b18ab912c9e24635\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=254728.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"f4a7a1268abc47b48864d99aebca735d\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=29.0, style=ProgressStyle(description_w…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"data\":{\"application/vnd.jupyter.widget-view+json\":{\"model_id\":\"6f64320911854ca3a47ffbde0f0d366d\",\"version_major\":2,\"version_minor\":0},\"text/plain\":[\"HBox(children=(FloatProgress(value=0.0, description='Downloading', max=485115.0, style=ProgressStyle(descripti…\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"name\":\"stdout\",\"output_type\":\"stream\",\"text\":[\"\\n\"]},{\"data\":{\"text/html\":[\"\\u003cscript src=\\\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js\\\"\\u003e\\u003c/script\\u003e\"],\"text/plain\":[\"\\u003cIPython.core.display.HTML object\\u003e\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"data\":{\"text/html\":[\"      \\n\",\"        \\u003cdiv id='bertviz-d1e6cdbcb61a42d4b37d005c21290a61'\\u003e\\n\",\"            \\u003cspan style=\\\"user-select:none\\\"\\u003e\\n\",\"                Layer: \\u003cselect id=\\\"layer\\\"\\u003e\\u003c/select\\u003e\\n\",\"                \\n\",\"            \\u003c/span\\u003e\\n\",\"            \\u003cdiv id='vis'\\u003e\\u003c/div\\u003e\\n\",\"        \\u003c/div\\u003e\\n\",\"    \"],\"text/plain\":[\"\\u003cIPython.core.display.HTML object\\u003e\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"data\":{\"application/javascript\":[\"/**\\n\",\" * @fileoverview Transformer Visualization D3 javascript code.\\n\",\" *\\n\",\" *\\n\",\" *  Based on: https://github.com/tensorflow/tensor2tensor/blob/master/tensor2tensor/visualization/attention.js\\n\",\" *\\n\",\" * Change log:\\n\",\" *\\n\",\" * 12/19/18  Jesse Vig   Assorted cleanup. Changed orientation of attention matrices.\\n\",\" * 12/29/20  Jesse Vig   Significant refactor.\\n\",\" * 12/31/20  Jesse Vig   Support multiple visualizations in single notebook.\\n\",\" * 02/06/21  Jesse Vig   Move require config from separate jupyter notebook step\\n\",\" * 05/03/21  Jesse Vig   Adjust height of visualization dynamically\\n\",\" **/\\n\",\"\\n\",\"require.config({\\n\",\"  paths: {\\n\",\"      d3: '//cdnjs.cloudflare.com/ajax/libs/d3/5.7.0/d3.min',\\n\",\"    jquery: '//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min',\\n\",\"  }\\n\",\"});\\n\",\"\\n\",\"requirejs(['jquery', 'd3'], function ($, d3) {\\n\",\"\\n\",\"    const params = {\\\"attention\\\": [{\\\"name\\\": null, \\\"attn\\\": [[[[0.004888075869530439, 0.007019796874374151, 0.0036452263593673706, 0.0029327375814318657, 0.0015320930397138, 0.004241756163537502, 0.004263122100383043, 0.008528415113687515, 0.1241171583533287, 0.011008302681148052, 0.007964405231177807, 0.012401134707033634, 0.012626986019313335, 0.01822158694267273, 0.03751054406166077, 0.032849520444869995, 0.7062491178512573], [0.014576531015336514, 0.010581646114587784, 0.11558718979358673, 0.029583653435111046, 0.1619575172662735, 0.1749114692211151, 0.0751379206776619, 0.21962450444698334, 0.012747607193887234, 0.05111600458621979, 0.01784636825323105, 0.016188524663448334, 0.034550972282886505, 0.04032806307077408, 0.008430905640125275, 0.014747894369065762, 0.002083284081891179], [0.0931827500462532, 0.030849847942590714, 0.21771998703479767, 0.008905305527150631, 0.01596658118069172, 0.10586155205965042, 0.014499418437480927, 0.15799841284751892, 0.1769568771123886, 0.011161367408931255, 0.007392543368041515, 0.02728419005870819, 0.011595254763960838, 0.06580255925655365, 0.029527466744184494, 0.0062408046796917915, 0.01905512809753418], [0.014329124242067337, 0.026282774284482002, 0.12526121735572815, 0.01783166266977787, 0.16241025924682617, 0.19412513077259064, 0.09234662353992462, 0.18385455012321472, 0.012565611861646175, 0.0387045256793499, 0.007175581995397806, 0.014191791415214539, 0.03388706594705582, 0.05341388285160065, 0.013310998678207397, 0.009375548921525478, 0.0009336062357760966], [0.041057515889406204, 0.05136800557374954, 0.11638717353343964, 0.04390865936875343, 0.204985111951828, 0.20272210240364075, 0.05150476470589638, 0.07285190373659134, 0.02087394706904888, 0.03042193129658699, 0.0036483488511294127, 0.01124507561326027, 0.052854206413030624, 0.055095743387937546, 0.018138518556952477, 0.021030552685260773, 0.0019064793596044183], [0.1666662096977234, 0.02896984852850437, 0.15163454413414001, 0.01802794449031353, 0.04654997959733009, 0.2804989814758301, 0.02848292514681816, 0.017328821122646332, 0.035481903702020645, 0.026137450709939003, 0.007835391908884048, 0.04781508445739746, 0.0928763672709465, 0.02130993641912937, 0.012126856483519077, 0.007968500256538391, 0.010289200581610203], [0.020301301032304764, 0.03030841425061226, 0.146507129073143, 0.03279529884457588, 0.1822977364063263, 0.14855298399925232, 0.04740176722407341, 0.11926399916410446, 0.0055979457683861256, 0.07653960585594177, 0.005564410705119371, 0.01443084329366684, 0.04294794425368309, 0.07773218303918839, 0.036374710500240326, 0.011816887184977531, 0.001566849066875875], [0.1180451288819313, 0.049101572483778, 0.06027330830693245, 0.006074968259781599, 0.10929204523563385, 0.04498586431145668, 0.00842977873980999, 0.3069465160369873, 0.06189660355448723, 0.039379481226205826, 0.007954319939017296, 0.10972070693969727, 0.026415210217237473, 0.023425700142979622, 0.014062038622796535, 0.0026519885286688805, 0.011344718746840954], [2.1634889435517834e-06, 2.7986959594272776e-07, 6.047267930853195e-08, 7.992905892706403e-08, 2.950351074559876e-09, 6.677720598702308e-09, 3.565340378486326e-08, 1.6712645489747047e-08, 0.0002647333894856274, 1.152576032836805e-06, 1.1555251148820389e-05, 5.2061750466236845e-06, 1.371363214275334e-05, 4.478007667785278e-06, 5.161368608241901e-05, 0.0001593561319168657, 0.9994856119155884], [0.05085143446922302, 0.022023271769285202, 0.07580538094043732, 0.0070717972703278065, 0.047512125223875046, 0.07071699947118759, 0.017782360315322876, 0.08009849488735199, 0.019474850967526436, 0.10870131105184555, 0.009214590303599834, 0.08462074398994446, 0.16989478468894958, 0.10135233402252197, 0.0493972972035408, 0.021988535299897194, 0.06349364668130875], [0.04322425276041031, 0.00701436772942543, 0.07438955456018448, 0.00349072995595634, 0.020300857722759247, 0.03028024546802044, 0.011668267659842968, 0.043274637311697006, 0.00980078149586916, 0.08645223826169968, 0.01271748449653387, 0.05253123864531517, 0.23775863647460938, 0.19187404215335846, 0.03741445392370224, 0.04090726003050804, 0.09690098464488983], [0.022267881780862808, 0.023952627554535866, 0.06272710859775543, 0.0059244283474981785, 0.09645921736955643, 0.04347274824976921, 0.027442241087555885, 0.05181506276130676, 0.018496809527277946, 0.12232493609189987, 0.03188175708055496, 0.029339047148823738, 0.258259117603302, 0.06193901225924492, 0.05281803756952286, 0.04957601800560951, 0.041303928941488266], [0.052432831376791, 0.02291150949895382, 0.04012122005224228, 0.004341240040957928, 0.02985801361501217, 0.01583763211965561, 0.015640828758478165, 0.02167329750955105, 0.05032937601208687, 0.11713917553424835, 0.02564113773405552, 0.09544307738542557, 0.08414534479379654, 0.06279367953538895, 0.09147869795560837, 0.0592023991048336, 0.21101054549217224], [0.06270148605108261, 0.018580680713057518, 0.15979012846946716, 0.015210376121103764, 0.02062022127211094, 0.02362925000488758, 0.038785237818956375, 0.01570395939052105, 0.0422176755964756, 0.042492810636758804, 0.032632045447826385, 0.07592606544494629, 0.03713872283697128, 0.09492141753435135, 0.13550794124603271, 0.0456867590546608, 0.13845527172088623], [0.0552029013633728, 0.03745970502495766, 0.08970589935779572, 0.007209817413240671, 0.010326535440981388, 0.014292473904788494, 0.015026808716356754, 0.041386928409338, 0.07573705166578293, 0.05720151960849762, 0.018984483554959297, 0.030409062281250954, 0.04165385663509369, 0.22854256629943848, 0.036919306963682175, 0.029538234695792198, 0.2104029804468155], [0.022899465635418892, 0.024759864434599876, 0.08564167469739914, 0.0077392589300870895, 0.038067229092121124, 0.03607000410556793, 0.01198351290076971, 0.04539123550057411, 0.033280134201049805, 0.0962849110364914, 0.023986605927348137, 0.16346056759357452, 0.16955357789993286, 0.08608866482973099, 0.01938687078654766, 0.017461832612752914, 0.11794460564851761], [5.39046709491231e-07, 1.2910049029812853e-08, 2.997915693470077e-09, 9.687985969009105e-10, 5.700149727227988e-11, 2.3968746432068144e-10, 2.120931874571852e-09, 2.0052830507211183e-09, 4.1204955778084695e-05, 1.0826789775819634e-06, 6.497870799648808e-06, 1.7855295482149813e-06, 8.23706250230316e-06, 8.747030619815632e-07, 1.802810402296018e-05, 4.153688496444374e-05, 0.999880313873291]], [[0.4522051513195038, 0.07623647898435593, 0.027919242158532143, 0.035999845713377, 0.08349619060754776, 0.019427096471190453, 0.05187578126788139, 0.027510447427630424, 0.01445896178483963, 0.027349503710865974, 0.013545246794819832, 0.06334026157855988, 0.030286243185400963, 0.02672632411122322, 0.03649211302399635, 0.00903548114001751, 0.004095627460628748], [0.22317545115947723, 0.06382100284099579, 0.05888044089078903, 0.049211613833904266, 0.13121356070041656, 0.06643986701965332, 0.0620323047041893, 0.10699689388275146, 0.0343746654689312, 0.04030245915055275, 0.05449175089597702, 0.015260525979101658, 0.01441941037774086, 0.051165707409381866, 0.012906704097986221, 0.009400923736393452, 0.005906717851758003], [0.06794585287570953, 0.1672438085079193, 0.22915023565292358, 0.024345679208636284, 0.16521067917346954, 0.09566453844308853, 0.03178289905190468, 0.049769431352615356, 0.015491669997572899, 0.03189234808087349, 0.005836388096213341, 0.015635255724191666, 0.02730834297835827, 0.03977164626121521, 0.02932717837393284, 0.002584383124485612, 0.0010396799771115184], [0.0019585308618843555, 0.7207427620887756, 0.07722131162881851, 0.004655138123780489, 0.03747379034757614, 0.05254172161221504, 0.008140715770423412, 0.016761539503932, 0.012247414328157902, 0.05264122784137726, 0.005919741000980139, 0.0015853171935305, 0.004358803387731314, 0.0019629127345979214, 0.0005766953690908849, 0.00020377084729261696, 0.001008533057756722], [0.025915242731571198, 0.026313217356801033, 0.1458832025527954, 0.2851893901824951, 0.23177862167358398, 0.12325704842805862, 0.053885672241449356, 0.04005128890275955, 0.008830639533698559, 0.0016609665472060442, 0.004477020353078842, 0.010466582141816616, 0.014143839478492737, 0.018876660615205765, 0.003539198776707053, 0.005014950409531593, 0.0007165209972299635], [0.06897823512554169, 0.03946160525083542, 0.40949440002441406, 0.02331404760479927, 0.20725378394126892, 0.07915252447128296, 0.06029766425490379, 0.046219512820243835, 0.007097764406353235, 0.01039657648652792, 0.004642943385988474, 0.007727229502052069, 0.008718782104551792, 0.01666164956986904, 0.008082425221800804, 0.0013291724026203156, 0.001171768526546657], [0.11204667389392853, 0.002064715139567852, 0.07884853333234787, 0.0231044702231884, 0.4335665702819824, 0.22349999845027924, 0.015278663486242294, 0.021423274651169777, 0.00486252224072814, 0.0015719160437583923, 0.0013278420083224773, 0.008107521571218967, 0.01719454489648342, 0.046971384435892105, 0.0064142923802137375, 0.003084664698690176, 0.0006322385743260384], [0.045064717531204224, 0.061848171055316925, 0.06443827599287033, 0.049729522317647934, 0.2260524332523346, 0.07010719925165176, 0.17648132145404816, 0.160780131816864, 0.032271843403577805, 0.03418389707803726, 0.007624479942023754, 0.03132493048906326, 0.007417135406285524, 0.01037380937486887, 0.016183815896511078, 0.004492961801588535, 0.0016253096982836723], [0.003729620948433876, 0.019178112968802452, 0.008320917375385761, 0.003610414220020175, 0.01731022074818611, 0.019468005746603012, 0.015363910235464573, 0.7111199498176575, 0.07527204602956772, 0.03925952687859535, 0.029104769229888916, 0.017176028341054916, 0.018435312435030937, 0.002877231454476714, 0.002948450157418847, 0.0017658548895269632, 0.015059570781886578], [0.1122286394238472, 0.005725213326513767, 0.007830118760466576, 0.018747668713331223, 0.046964243054389954, 0.02027987129986286, 0.04182044789195061, 0.060731735080480576, 0.14661774039268494, 0.11308518052101135, 0.12625354528427124, 0.13461105525493622, 0.031244609504938126, 0.04327597841620445, 0.02240343578159809, 0.02710208110511303, 0.041078414767980576], [0.0019868644885718822, 0.0029012442100793123, 0.03415127471089363, 0.003377157263457775, 0.021869391202926636, 0.016370456665754318, 0.01350669376552105, 0.13002537190914154, 0.08001197874546051, 0.47171226143836975, 0.06813553720712662, 0.018448758870363235, 0.08434359729290009, 0.014303343370556831, 0.0060247816145420074, 0.005617797840386629, 0.027213556692004204], [0.0012034880928695202, 0.003988053649663925, 0.01811078004539013, 0.03138766437768936, 0.02679568901658058, 0.01594444178044796, 0.028057347983121872, 0.08293617516756058, 0.23756594955921173, 0.05265144631266594, 0.2417776733636856, 0.045061975717544556, 0.0782533809542656, 0.02548084780573845, 0.006170281209051609, 0.04199046269059181, 0.06262443959712982], [0.011548996903002262, 0.002671988680958748, 0.013300352729856968, 0.00573762645944953, 0.02851112000644207, 0.011765186674892902, 0.01182110421359539, 0.034734729677438736, 0.06407833099365234, 0.06737424433231354, 0.14551088213920593, 0.2167421579360962, 0.19757318496704102, 0.0646800771355629, 0.01695670373737812, 0.057373709976673126, 0.049619704484939575], [0.026585998013615608, 0.0010515417670831084, 0.004557711537927389, 0.005754321347922087, 0.01731204427778721, 0.004033405799418688, 0.005897670052945614, 0.011935831047594547, 0.0362488329410553, 0.029862700030207634, 0.04841899126768112, 0.539275050163269, 0.09850410372018814, 0.06712836027145386, 0.02949517033994198, 0.03715115785598755, 0.036787163466215134], [0.041452087461948395, 0.000551372766494751, 0.012106509879231453, 0.0025557572953402996, 0.029549917206168175, 0.0024494952522218227, 0.004159799311310053, 0.009580275975167751, 0.01520668063312769, 0.023142937570810318, 0.025920597836375237, 0.27663901448249817, 0.18025699257850647, 0.2660350501537323, 0.0187570471316576, 0.030158380046486855, 0.06147802993655205], [0.0001405895600328222, 0.006572019308805466, 0.0031815404072403908, 0.0004570690798573196, 0.003964514471590519, 0.0015125961508601904, 0.001515182782895863, 0.0054846699349582195, 0.03184382990002632, 0.4382510483264923, 0.06007954105734825, 0.023391874507069588, 0.11213231086730957, 0.010536914691329002, 0.006349750328809023, 0.006076218094676733, 0.288510262966156], [2.382694583502598e-05, 1.6672100173309445e-05, 1.213609539263416e-05, 3.5883535929315258e-06, 2.2867236111778766e-05, 8.452716429019347e-06, 1.6258918549283408e-05, 0.000548299984075129, 0.0027398846577852964, 0.0031625269912183285, 0.0070969704538583755, 0.011805384419858456, 0.01725119724869728, 0.000560812943149358, 0.0009160325862467289, 0.006874747108668089, 0.9489404559135437]], [[0.07207582890987396, 0.030081165954470634, 0.0698365718126297, 0.05415603145956993, 0.040005918592214584, 0.04452523961663246, 0.05477667227387428, 0.07413895428180695, 0.020463814958930016, 0.04867997393012047, 0.09254953265190125, 0.07381545752286911, 0.09486182779073715, 0.082914799451828, 0.07271520793437958, 0.04404165968298912, 0.030361313372850418], [0.02388051338493824, 0.09712941199541092, 0.13507598638534546, 0.12161228060722351, 0.07565468549728394, 0.09102176129817963, 0.03974504768848419, 0.07507934421300888, 0.12584571540355682, 0.0545763336122036, 0.01604420691728592, 0.011612973175942898, 0.027364207431674004, 0.019178539514541626, 0.021193353459239006, 0.03272027149796486, 0.032265398651361465], [0.14521171152591705, 0.1255667805671692, 0.007684384007006884, 0.03585522249341011, 0.09271423518657684, 0.021124502643942833, 0.05305418372154236, 0.11939787119626999, 0.05426167696714401, 0.01743321679532528, 0.10690226405858994, 0.02871570736169815, 0.04158058017492294, 0.04895868897438049, 0.04626128450036049, 0.018562469631433487, 0.036715105175971985], [0.021534226834774017, 0.16972415149211884, 0.04721628129482269, 0.06455666571855545, 0.12413521111011505, 0.09946053475141525, 0.02451961673796177, 0.05252651125192642, 0.1565346121788025, 0.042592115700244904, 0.028904670849442482, 0.030724521726369858, 0.021228116005659103, 0.023331813514232635, 0.0168754905462265, 0.03380384296178818, 0.04233171045780182], [0.18212783336639404, 0.05782119929790497, 0.16624435782432556, 0.061060693114995956, 0.025745224207639694, 0.05096830800175667, 0.09386604279279709, 0.04790102317929268, 0.09353011846542358, 0.038641296327114105, 0.029350461438298225, 0.015338404104113579, 0.012258137576282024, 0.042409393936395645, 0.034138504415750504, 0.023105019703507423, 0.025494007393717766], [0.2883266806602478, 0.020761892199516296, 0.045150283724069595, 0.012247641570866108, 0.0693461000919342, 0.0051894644275307655, 0.08609198778867722, 0.08481674641370773, 0.08602578192949295, 0.01470259390771389, 0.04659475013613701, 0.024310611188411713, 0.018510956317186356, 0.055132340639829636, 0.08806735277175903, 0.010098050348460674, 0.04462667927145958], [0.07446767389774323, 0.1230199858546257, 0.10566249489784241, 0.06260287761688232, 0.041301827877759933, 0.0890895202755928, 0.05263271555304527, 0.08570503443479538, 0.0857565850019455, 0.05045425519347191, 0.055470049381256104, 0.04604503884911537, 0.018547367304563522, 0.02415427938103676, 0.025428179651498795, 0.029278477653861046, 0.03038364090025425], [0.14375796914100647, 0.12766575813293457, 0.07687808573246002, 0.06146235391497612, 0.025420017540454865, 0.09101464599370956, 0.08417452126741409, 0.05357314273715019, 0.01134533155709505, 0.07383982092142105, 0.054581303149461746, 0.062397975474596024, 0.03553818166255951, 0.02532547153532505, 0.025117862969636917, 0.03893119841814041, 0.008976396173238754], [0.040774792432785034, 0.13950109481811523, 0.02118922770023346, 0.0640266165137291, 0.044749144464731216, 0.03973620384931564, 0.061510711908340454, 0.08475141227245331, 0.014940092340111732, 0.0757886990904808, 0.09931029379367828, 0.08393636345863342, 0.05245032161474228, 0.059110067784786224, 0.027142135426402092, 0.07597208023071289, 0.015110681764781475], [0.4042286276817322, 0.02303842455148697, 0.04327826946973801, 0.02220737747848034, 0.024905072525143623, 0.017578905448317528, 0.031729016453027725, 0.05251544713973999, 0.04675205796957016, 0.00783507525920868, 0.09679113328456879, 0.024453289806842804, 0.02132745087146759, 0.07777412235736847, 0.033756352961063385, 0.03557467460632324, 0.036254674196243286], [0.02890595607459545, 0.0868535041809082, 0.03905981406569481, 0.07673788070678711, 0.06935548782348633, 0.017652153968811035, 0.039013754576444626, 0.04142361134290695, 0.11229785531759262, 0.04908713325858116, 0.0825323835015297, 0.050595663487911224, 0.042241185903549194, 0.030702881515026093, 0.06782406568527222, 0.041330575942993164, 0.12438603490591049], [0.051494911313056946, 0.05110412463545799, 0.07177115976810455, 0.03816363215446472, 0.06721803545951843, 0.055009134113788605, 0.05375649407505989, 0.038038868457078934, 0.041565731167793274, 0.04354572296142578, 0.07399876415729523, 0.08210265636444092, 0.07860209047794342, 0.07368873804807663, 0.0557437464594841, 0.08313024044036865, 0.04106597602367401], [0.30957141518592834, 0.026946723461151123, 0.030617903918027878, 0.00909468811005354, 0.012938322499394417, 0.005976587533950806, 0.0647820383310318, 0.042692121118307114, 0.03459575027227402, 0.016926975920796394, 0.16411443054676056, 0.05676984786987305, 0.009580451063811779, 0.07468540966510773, 0.05725482851266861, 0.030714837834239006, 0.05273762717843056], [0.17414706945419312, 0.02067970670759678, 0.10534961521625519, 0.03243619576096535, 0.03173006698489189, 0.03161533549427986, 0.05324887856841087, 0.03352835029363632, 0.04464622214436531, 0.02641052007675171, 0.12195944786071777, 0.10071049630641937, 0.024074766784906387, 0.030658595263957977, 0.06795603036880493, 0.03804737329483032, 0.06280133873224258], [0.14174634218215942, 0.07984764873981476, 0.05403934419155121, 0.018503038212656975, 0.043897174298763275, 0.04191182926297188, 0.05589395761489868, 0.0508967749774456, 0.03724489361047745, 0.01597260683774948, 0.17404040694236755, 0.07636553794145584, 0.05074698477983475, 0.05537647008895874, 0.02398299053311348, 0.03783499076962471, 0.04169907048344612], [0.0533464252948761, 0.04371226206421852, 0.019833769649267197, 0.02924042008817196, 0.06765838712453842, 0.03478259593248367, 0.037271589040756226, 0.03777080401778221, 0.03779437392950058, 0.05305246263742447, 0.17477799952030182, 0.09143199026584625, 0.07000453770160675, 0.08606479316949844, 0.054692089557647705, 0.04827326163649559, 0.06029229983687401], [0.06381995230913162, 0.03170640766620636, 0.004985055420547724, 0.016410794109106064, 0.010395670309662819, 0.00661464361473918, 0.03198925778269768, 0.03062201663851738, 0.0027444791048765182, 0.03453819453716278, 0.2534266412258148, 0.16793431341648102, 0.06967359781265259, 0.09238817542791367, 0.048972662538290024, 0.11378097534179688, 0.01999727636575699]], [[0.03515833616256714, 0.0798664465546608, 0.01630859263241291, 0.14789149165153503, 0.08934218436479568, 0.03217592090368271, 0.06830880045890808, 0.030619218945503235, 0.17491836845874786, 0.0416850820183754, 0.04187638685107231, 0.051688242703676224, 0.04284347966313362, 0.010884474031627178, 0.02676309645175934, 0.04683941602706909, 0.06283047050237656], [0.00906633771955967, 0.007233552634716034, 0.0071291569620370865, 0.0901627242565155, 0.08500444144010544, 0.03731818124651909, 0.017713570967316628, 0.04864385724067688, 0.6713555455207825, 0.0013698127586394548, 0.001527724089100957, 0.003079200629144907, 0.0036342886742204428, 0.002154689049348235, 0.0011569688795134425, 0.0025306325405836105, 0.010919292457401752], [0.02119581773877144, 0.013936267234385014, 0.18366488814353943, 0.04073388874530792, 0.14117489755153656, 0.29261794686317444, 0.022417636588215828, 0.19487611949443817, 0.05600067228078842, 0.0019989456050097942, 0.004539075773209333, 0.0021221840288490057, 0.0043496135622262955, 0.009173189289867878, 0.00819883868098259, 0.001727689290419221, 0.0012723386753350496], [0.019561290740966797, 0.030619964003562927, 0.024989742785692215, 0.007378019858151674, 0.15077579021453857, 0.031912967562675476, 0.0557866245508194, 0.06938115507364273, 0.5711490511894226, 0.024206284433603287, 0.0011899482924491167, 0.0009746656287461519, 0.0016707185423001647, 0.0010043636430054903, 0.001857830211520195, 0.0005939669790677726, 0.00694759888574481], [0.014949947595596313, 0.0364830456674099, 0.10173313319683075, 0.06478868424892426, 0.11181814223527908, 0.2349889725446701, 0.02512570470571518, 0.2544487416744232, 0.06896540522575378, 0.02933378890156746, 0.019377965480089188, 0.0010600468376651406, 0.009931511245667934, 0.011072607710957527, 0.010862203314900398, 0.0034645176492631435, 0.0015955098206177354], [0.07112161815166473, 0.09935048967599869, 0.17491373419761658, 0.10266263037919998, 0.2617430090904236, 0.09294117987155914, 0.03491080179810524, 0.07117832452058792, 0.04160849004983902, 0.022633247077465057, 0.004940207116305828, 0.0032543574925512075, 0.008275501430034637, 0.005043844226747751, 0.0024784624110907316, 0.0015372901689261198, 0.0014068287564441562], [0.006367841735482216, 0.021246016025543213, 0.08985381573438644, 0.3080625832080841, 0.2526113986968994, 0.11120738834142685, 0.028941325843334198, 0.09924904257059097, 0.06420885026454926, 0.0013314973330125213, 0.0024215762969106436, 0.00171946850605309, 0.004013487603515387, 0.004174456931650639, 0.0027731608133763075, 0.0011439566733315587, 0.0006740911048837006], [0.02697315625846386, 0.04311920329928398, 0.1649632751941681, 0.08712518215179443, 0.10151567310094833, 0.09761759638786316, 0.11727719753980637, 0.11513151228427887, 0.21653573215007782, 0.0010895318118855357, 0.004290437325835228, 0.0062949806451797485, 0.004447329323738813, 0.004242948722094297, 0.007139301858842373, 0.0003665502299554646, 0.0018705135444179177], [0.002932084957137704, 0.08548032492399216, 0.015188615769147873, 0.32496634125709534, 0.06970572471618652, 0.007528556976467371, 0.06105625256896019, 0.04819296672940254, 0.3530505299568176, 0.00633058650419116, 0.001208824454806745, 0.010793852619826794, 0.003044052980840206, 0.0009751369943842292, 0.002682421123608947, 0.003046723548322916, 0.0038170877378433943], [0.026182059198617935, 0.0026353721041232347, 0.014284180477261543, 0.0019502710783854127, 0.002652481198310852, 0.0106190862134099, 0.0039725396782159805, 0.01705651544034481, 0.0050896815955638885, 0.07474858313798904, 0.07118715345859528, 0.06656379997730255, 0.1229143962264061, 0.14376245439052582, 0.06306520104408264, 0.2047741562128067, 0.1685420423746109], [0.00655555771663785, 0.0012789893662557006, 0.0010506988037377596, 0.00044898202759213746, 0.0012205109233036637, 0.0004583994741551578, 0.0007158190128393471, 0.0017670101951807737, 0.00580983841791749, 0.5319936871528625, 0.012461146339774132, 0.05339212715625763, 0.05954696238040924, 0.008004698902368546, 0.004466962534934282, 0.02240138314664364, 0.2884272336959839], [0.019198056310415268, 0.001700622378848493, 0.0006798736867494881, 0.0012679336359724402, 0.0018198138568550348, 0.0021204801741987467, 0.0017914302879944444, 0.00396747887134552, 0.005293841939419508, 0.23742806911468506, 0.20335489511489868, 0.03166976571083069, 0.06257409602403641, 0.04587889090180397, 0.029524097219109535, 0.09712150692939758, 0.25460922718048096], [0.03541591390967369, 0.0010044040391221642, 0.009562980383634567, 0.0031110995914787054, 0.004129722248762846, 0.012886565178632736, 0.005492286290973425, 0.014601752161979675, 0.003477429738268256, 0.18211369216442108, 0.07259315997362137, 0.1317169964313507, 0.10589143633842468, 0.16349096596240997, 0.06330373883247375, 0.0840979814529419, 0.10710986703634262], [0.02291938289999962, 0.006745031103491783, 0.02585463784635067, 0.016562605276703835, 0.018693825230002403, 0.026624808087944984, 0.013393472880125046, 0.025357374921441078, 0.007036125287413597, 0.07818956673145294, 0.06174234300851822, 0.0683279037475586, 0.06935539096593857, 0.03648192062973976, 0.06454432755708694, 0.4329819679260254, 0.02518923580646515], [0.012972544878721237, 0.004065094515681267, 0.02714398130774498, 0.0024757881183177233, 0.008076858706772327, 0.02106679230928421, 0.010974295437335968, 0.03196815028786659, 0.0046197292394936085, 0.07364416122436523, 0.06945107132196426, 0.06775133311748505, 0.11162839829921722, 0.13545583188533783, 0.07084579020738602, 0.26834627985954285, 0.07951385527849197], [0.011609595268964767, 0.0008981616119854152, 0.00037887669168412685, 0.0001698910491541028, 0.0013160291127860546, 0.0010050254641100764, 0.0007526596309617162, 0.0023018934298306704, 0.007861015386879444, 0.3170816898345947, 0.023111121729016304, 0.028089255094528198, 0.06838614493608475, 0.013917909003794193, 0.007903464138507843, 0.006222649943083525, 0.5089946389198303], [0.0019937308970838785, 0.0008322559297084808, 0.00023586218594573438, 0.001045373734086752, 0.0003337216912768781, 0.0001086789125110954, 0.001255252631381154, 0.001599939540028572, 0.0025449173990637064, 0.26299434900283813, 0.023124611005187035, 0.26984673738479614, 0.04125869646668434, 0.009962305426597595, 0.014961829409003258, 0.06820107251405716, 0.29970061779022217]], [[0.008703794330358505, 0.028337936848402023, 0.036497388035058975, 0.3179890811443329, 0.0342254638671875, 0.014647513628005981, 0.15658988058567047, 0.07963840663433075, 0.0504162460565567, 0.007810052018612623, 0.02126569114625454, 0.04604148864746094, 0.014514554291963577, 0.025807274505496025, 0.04341826215386391, 0.08485356718301773, 0.029243331402540207], [0.003257530275732279, 0.014143377542495728, 0.030460435897111893, 0.5566112399101257, 0.0674440786242485, 0.02056693658232689, 0.02118591219186783, 0.08736512809991837, 0.12027458846569061, 0.003574702423065901, 0.004306348040699959, 0.00856547337025404, 0.005849181208759546, 0.006364749278873205, 0.02825976349413395, 0.014159289188683033, 0.007611260283738375], [0.019974956288933754, 0.011629141867160797, 0.07035370171070099, 0.02859698049724102, 0.08074373006820679, 0.13332095742225647, 0.06927911937236786, 0.46246176958084106, 0.04819855839014053, 0.009691307321190834, 0.0013374672271311283, 0.013957006856799126, 0.007881246507167816, 0.01621880754828453, 0.01895863004028797, 0.004472723230719566, 0.0029238893184810877], [0.014392857439815998, 0.6814941763877869, 0.024798402562737465, 0.00337932538241148, 0.053651124238967896, 0.0072357975877821445, 0.007232386618852615, 0.022842107340693474, 0.08711760491132736, 0.0298911165446043, 0.030503615736961365, 0.0018633375875651836, 0.026354365050792694, 0.004749304614961147, 0.0009832560317590833, 0.0005606042104773223, 0.0029506373684853315], [0.027468478307127953, 0.10789855569601059, 0.19367998838424683, 0.06358932703733444, 0.04233098775148392, 0.23926369845867157, 0.005481854546815157, 0.04740671068429947, 0.06732773035764694, 0.01831057108938694, 0.035194605588912964, 0.003690612269565463, 0.0874093770980835, 0.027725795283913612, 0.029748598113656044, 0.0012340922839939594, 0.002238919958472252], [0.02020617201924324, 0.02203536406159401, 0.033887434750795364, 0.050584208220243454, 0.5214219093322754, 0.0702914372086525, 0.042194753885269165, 0.10264209657907486, 0.07326971739530563, 0.01757563278079033, 0.002588002709671855, 0.0020996304228901863, 0.015356292948126793, 0.01379159465432167, 0.007605087012052536, 0.0010641419794410467, 0.0033865529112517834], [0.025835225358605385, 0.024546880275011063, 0.06501937657594681, 0.17729876935482025, 0.23874863982200623, 0.12987853586673737, 0.0258779339492321, 0.11599919945001602, 0.06498986482620239, 0.016615135595202446, 0.013382242992520332, 0.02174832671880722, 0.021303698420524597, 0.03887410834431648, 0.013686718419194221, 0.002741637174040079, 0.003453668439760804], [0.012444564141333103, 0.02419978938996792, 0.09062561392784119, 0.04456598684191704, 0.09836862236261368, 0.03768983855843544, 0.04686807841062546, 0.30903956294059753, 0.15584996342658997, 0.03142288699746132, 0.018415672704577446, 0.03722061589360237, 0.02271999791264534, 0.011616760864853859, 0.039878398180007935, 0.009723562747240067, 0.009350127540528774], [0.004296176601201296, 0.025899868458509445, 0.015311871655285358, 0.1919618397951126, 0.04361548274755478, 0.030678419396281242, 0.03896272927522659, 0.5280066132545471, 0.06130514666438103, 0.006227157078683376, 0.0064658611081540585, 0.019711071625351906, 0.003964062314480543, 0.0032162752468138933, 0.014402758330106735, 0.004201842471957207, 0.0017728424863889813], [0.024266233667731285, 0.01093385275453329, 0.016984064131975174, 0.004984752275049686, 0.007481112610548735, 0.03188614174723625, 0.00909456703811884, 0.2679964601993561, 0.022699784487485886, 0.04521472379565239, 0.17385147511959076, 0.033378779888153076, 0.1641552746295929, 0.09768208861351013, 0.034414567053318024, 0.025280149653553963, 0.029695887118577957], [0.015299608930945396, 0.015785014256834984, 0.008361319079995155, 0.0006249594152905047, 0.007860596291720867, 0.002455179812386632, 0.008047391660511494, 0.016079703345894814, 0.012717393226921558, 0.5432901978492737, 0.055639464408159256, 0.05342431366443634, 0.13850365579128265, 0.031961891800165176, 0.02108975686132908, 0.0324493832886219, 0.03641004487872124], [0.053870562463998795, 0.004424483515322208, 0.0043601482175290585, 0.001997340004891157, 0.01322959829121828, 0.014276626519858837, 0.0033141672611236572, 0.05482332780957222, 0.032131992280483246, 0.07546987384557724, 0.09363347291946411, 0.007881388999521732, 0.2760334312915802, 0.07278186082839966, 0.12219052761793137, 0.06377334892749786, 0.10580787062644958], [0.00925365462899208, 0.006607287097722292, 0.012390349991619587, 0.015145400539040565, 0.021609047427773476, 0.00757995992898941, 0.014946120791137218, 0.013473916798830032, 0.01051262766122818, 0.182551309466362, 0.07738935947418213, 0.14221714437007904, 0.0836256742477417, 0.08769398927688599, 0.13632802665233612, 0.13100314140319824, 0.04767309129238129], [0.04649527370929718, 0.007164914160966873, 0.005849217996001244, 0.0012236693874001503, 0.0437605120241642, 0.007520769722759724, 0.017299002036452293, 0.010521815158426762, 0.016591574996709824, 0.06772533059120178, 0.017187099903821945, 0.031427476555109024, 0.14749610424041748, 0.015205055475234985, 0.46340328454971313, 0.025704599916934967, 0.07542426139116287], [0.014624546281993389, 0.004884281195700169, 0.00985758937895298, 0.003012509550899267, 0.03382030501961708, 0.00245943502523005, 0.013505540788173676, 0.007328514941036701, 0.010887760668992996, 0.016765698790550232, 0.015321548096835613, 0.02908072993159294, 0.006833572406321764, 0.7107034921646118, 0.0033725458197295666, 0.04717245325446129, 0.07036957889795303], [0.01661417819559574, 0.016832664608955383, 0.004995496943593025, 0.0006262136739678681, 0.0031050376128405333, 0.0018032253719866276, 0.0009451500372961164, 0.003058635164052248, 0.005683426279574633, 0.10786101967096329, 0.1786084622144699, 0.014133759774267673, 0.3131258189678192, 0.08723433315753937, 0.022915994748473167, 0.01567789539694786, 0.20677857100963593], [0.011585846543312073, 0.0014485669089481235, 0.0012079791631549597, 0.010266603901982307, 0.003049129154533148, 0.0021340458188205957, 0.00614704005420208, 0.04010748863220215, 0.0025159502401947975, 0.0387464240193367, 0.02254108153283596, 0.14072473347187042, 0.04632231220602989, 0.027118079364299774, 0.2534995377063751, 0.23111724853515625, 0.16146792471408844]], [[0.3151586353778839, 0.1100153848528862, 0.013261418789625168, 0.007182653062045574, 0.006734122522175312, 0.015668433159589767, 0.026092085987329483, 0.012030692771077156, 0.05885550379753113, 0.04550478234887123, 0.053476933389902115, 0.01804729551076889, 0.024768279865384102, 0.012427376583218575, 0.021046994253993034, 0.025330809876322746, 0.23439855873584747], [0.12868036329746246, 0.05020623654127121, 0.04352681711316109, 0.044267669320106506, 0.06922342628240585, 0.0586404874920845, 0.11787914484739304, 0.21278542280197144, 0.011017017997801304, 0.025592343881726265, 0.0421178936958313, 0.05956674739718437, 0.0440940335392952, 0.03432290256023407, 0.030304770916700363, 0.02068067155778408, 0.007094115484505892], [0.014511588029563427, 0.03831863030791283, 0.3213781714439392, 0.057754017412662506, 0.041259948164224625, 0.18111389875411987, 0.022478805854916573, 0.035277530550956726, 0.02839508280158043, 0.06441372632980347, 0.04830627143383026, 0.023198122158646584, 0.01992473006248474, 0.03235041722655296, 0.04213673993945122, 0.019411567598581314, 0.0097707100212574], [0.09856840968132019, 0.03302838280797005, 0.05710271745920181, 0.07177997380495071, 0.08965713530778885, 0.07356850057840347, 0.059109900146722794, 0.1575271189212799, 0.041145049035549164, 0.019606277346611023, 0.012599573470652103, 0.02298656664788723, 0.05791425704956055, 0.07773377001285553, 0.03326566517353058, 0.0734192356467247, 0.020987525582313538], [0.13763386011123657, 0.023727694526314735, 0.04992688447237015, 0.0822889655828476, 0.04870613291859627, 0.03208567947149277, 0.21788309514522552, 0.10060948133468628, 0.04463799297809601, 0.025675037875771523, 0.02627575397491455, 0.09429445117712021, 0.013071255758404732, 0.024463418871164322, 0.030244100838899612, 0.03953491896390915, 0.00894131325185299], [0.06399432569742203, 0.09939510375261307, 0.04323585331439972, 0.23998641967773438, 0.039040617644786835, 0.031802985817193985, 0.07835780084133148, 0.03297166898846626, 0.05566003546118736, 0.0603729672729969, 0.026775527745485306, 0.04063938930630684, 0.013095780275762081, 0.023802625015378, 0.024258354678750038, 0.11301542073488235, 0.01359516754746437], [0.10354834794998169, 0.1194508746266365, 0.023394186049699783, 0.15901106595993042, 0.05579296872019768, 0.01770668849349022, 0.1913813352584839, 0.07892581075429916, 0.034141018986701965, 0.021089935675263405, 0.0282573401927948, 0.04269837960600853, 0.014099941588938236, 0.02838147059082985, 0.02851889468729496, 0.045091379433870316, 0.008510440587997437], [0.004442719276994467, 0.03570292517542839, 0.20076386630535126, 0.18386435508728027, 0.09603149443864822, 0.08761825412511826, 0.06705799698829651, 0.11942239105701447, 0.0375593900680542, 0.012371964752674103, 0.026716334745287895, 0.014715065248310566, 0.019626814872026443, 0.03156737610697746, 0.01938757486641407, 0.03194998577237129, 0.011201484128832817], [0.011864487081766129, 0.11439939588308334, 0.0051422445103526115, 0.014265062287449837, 0.02085231989622116, 0.0035430071875452995, 0.011535421945154667, 0.0012360550463199615, 0.7664823532104492, 0.001131283468566835, 0.0036152286920696497, 0.0008522254647687078, 0.00034796056570485234, 0.00024297041818499565, 0.00016062580107245594, 0.0008736010058782995, 0.043455757200717926], [0.062082190066576004, 0.05242917686700821, 0.02288883738219738, 0.06286608427762985, 0.021808043122291565, 0.0169636569917202, 0.12245861440896988, 0.028119267895817757, 0.01948828436434269, 0.08855277299880981, 0.05956091731786728, 0.09327330440282822, 0.04130667448043823, 0.04341350495815277, 0.027116846293210983, 0.16473986208438873, 0.07293197512626648], [0.21505969762802124, 0.01480448804795742, 0.024971431121230125, 0.02108367718756199, 0.008694419637322426, 0.020008806139230728, 0.0335586741566658, 0.15525440871715546, 0.028348395600914955, 0.038782838732004166, 0.03816986456513405, 0.07811594009399414, 0.03940173611044884, 0.05490882694721222, 0.07377290725708008, 0.07111425697803497, 0.08394961059093475], [0.0871221199631691, 0.034306786954402924, 0.016620954498648643, 0.040584951639175415, 0.01628957688808441, 0.011101530864834785, 0.13387727737426758, 0.08549814671278, 0.046284761279821396, 0.05391332507133484, 0.10950876027345657, 0.05121465027332306, 0.039336107671260834, 0.030011426657438278, 0.04578227922320366, 0.0755179226398468, 0.12302945554256439], [0.015155383385717869, 0.04207645356655121, 0.038503292948007584, 0.06510785967111588, 0.018866432830691338, 0.013820890337228775, 0.07301356643438339, 0.0866699293255806, 0.06137312203645706, 0.06311662495136261, 0.09550552070140839, 0.1489153504371643, 0.009929455816745758, 0.027894139289855957, 0.018275555223226547, 0.10901713371276855, 0.11275924742221832], [0.11631946265697479, 0.08591070771217346, 0.013996097259223461, 0.02553335763514042, 0.044912923127412796, 0.051308274269104004, 0.08520212769508362, 0.03852086141705513, 0.04989771172404289, 0.09932108223438263, 0.06320645660161972, 0.07227468490600586, 0.04815056174993515, 0.021891184151172638, 0.09003005176782608, 0.03844022750854492, 0.05508424714207649], [0.040084920823574066, 0.0794089138507843, 0.04568714648485184, 0.04725225269794464, 0.018014028668403625, 0.02296232245862484, 0.09286968410015106, 0.13630813360214233, 0.02106429450213909, 0.050591692328453064, 0.03648265078663826, 0.1787043809890747, 0.03039979189634323, 0.04410983622074127, 0.05463092029094696, 0.06780829280614853, 0.03362071514129639], [0.02700302191078663, 0.01747763529419899, 0.03070266917347908, 0.12967005372047424, 0.020561538636684418, 0.0304489117115736, 0.057144373655319214, 0.06352531909942627, 0.07827381044626236, 0.022231614217162132, 0.058685000985860825, 0.03210814297199249, 0.06691708415746689, 0.06509841978549957, 0.020255399867892265, 0.10095085948705673, 0.17894619703292847], [0.00249118753708899, 0.058819033205509186, 0.0013066079700365663, 0.004116188734769821, 0.0038019418716430664, 0.0012782010016962886, 0.00383367040194571, 0.0006938646547496319, 0.5325980186462402, 0.0034911194816231728, 0.01755925640463829, 0.0030430404003709555, 0.0007656373200006783, 0.0003766310110222548, 0.0003307466395199299, 0.0024407983291894197, 0.36305415630340576]], [[0.05366489663720131, 0.013326861895620823, 0.035705629736185074, 0.017725413665175438, 0.021139897406101227, 0.016126224771142006, 0.03905770927667618, 0.08667251467704773, 0.03724033012986183, 0.131747767329216, 0.07875160872936249, 0.02515810914337635, 0.06670679897069931, 0.022565120831131935, 0.06760559231042862, 0.047641776502132416, 0.23916368186473846], [0.10719181597232819, 0.06171116232872009, 0.3013807535171509, 0.03794829919934273, 0.05507837235927582, 0.07111842930316925, 0.06489422917366028, 0.2455788105726242, 0.010625060647726059, 0.011863687075674534, 0.015315487049520016, 0.003497633384540677, 0.004441088531166315, 0.005406490061432123, 0.003567544976249337, 0.00022161522065289319, 0.0001594703207956627], [0.2356697916984558, 0.10945609211921692, 0.3206360936164856, 0.03839602693915367, 0.03337891027331352, 0.06335017085075378, 0.05203716456890106, 0.12023136764764786, 0.007034218404442072, 0.00836984533816576, 0.003998216241598129, 0.0022902516648173332, 0.0016475931042805314, 0.0008114398224279284, 0.002471902407705784, 0.0002081232814816758, 1.2680451618507504e-05], [0.008345738984644413, 0.5164564251899719, 0.20191191136837006, 0.05351008102297783, 0.06803572177886963, 0.05143987759947777, 0.01573142223060131, 0.034689582884311676, 0.007977493107318878, 0.007897846400737762, 0.02351473830640316, 0.002882627537474036, 0.005294881761074066, 0.0012846369063481688, 0.0009333751513622701, 8.39518615975976e-05, 9.552006304147653e-06], [0.06676739454269409, 0.27349960803985596, 0.4561753273010254, 0.055715933442115784, 0.09682420641183853, 0.026370450854301453, 0.007020842283964157, 0.008348268456757069, 0.0007414669962599874, 0.0035285507328808308, 0.0013157157227396965, 0.00038352955016307533, 0.0023205154575407505, 0.000476876157335937, 0.0004446223028935492, 6.371040944941342e-05, 2.9752748105238425e-06], [0.1661752313375473, 0.0685761496424675, 0.4658031165599823, 0.07675064355134964, 0.13027821481227875, 0.03830696642398834, 0.014079157263040543, 0.02513439953327179, 0.0010443981736898422, 0.0031104814261198044, 0.001444032066501677, 0.0006676503107883036, 0.003515154356136918, 0.0036656686570495367, 0.001331364386714995, 9.938723815139383e-05, 1.809268542274367e-05], [0.01189227681607008, 0.03440048173069954, 0.12620249390602112, 0.06225048750638962, 0.5502164363861084, 0.17143751680850983, 0.016833234578371048, 0.008786951191723347, 0.001322822761721909, 0.0011419992661103606, 0.001093560946173966, 0.0009655383182689548, 0.006927405018359423, 0.005606699734926224, 0.0006572494748979807, 0.00020566907187458128, 5.9139758377568796e-05], [0.0033392421901226044, 0.014496413059532642, 0.030030017718672752, 0.1475164294242859, 0.3980634808540344, 0.047243718057870865, 0.04660404473543167, 0.26027533411979675, 0.009565036743879318, 0.0031682979315519333, 0.011523754335939884, 0.004697142168879509, 0.011235179379582405, 0.0065018306486308575, 0.003318639937788248, 0.002174386056140065, 0.00024708223645575345], [0.007030535489320755, 0.030325111001729965, 0.023130590096116066, 0.016618795692920685, 0.1984899491071701, 0.12919509410858154, 0.20506642758846283, 0.38063156604766846, 0.00394117645919323, 0.0008863060502335429, 0.0019725332967936993, 0.0002003176778089255, 0.0011080717667937279, 0.0011153894010931253, 0.00026514811906963587, 2.0453282559174113e-05, 2.6044726837426424e-06], [0.003567933337762952, 0.006447296589612961, 0.012742963619530201, 0.0049604326486587524, 0.031012924388051033, 0.023581689223647118, 0.07633425295352936, 0.7590482831001282, 0.04287115857005119, 0.016943028196692467, 0.011061662808060646, 0.0012298504589125514, 0.005625784397125244, 0.002090521389618516, 0.0013406253419816494, 0.0009446584153920412, 0.00019689225882757455], [0.002508379751816392, 0.008127317763864994, 0.006937735248357058, 0.003746312577277422, 0.012477690353989601, 0.01154171023517847, 0.029863722622394562, 0.6015902161598206, 0.2265121340751648, 0.059228263795375824, 0.02252165786921978, 0.0065796407870948315, 0.004541346337646246, 0.0007519465289078653, 0.0016162429237738252, 0.0010733185335993767, 0.0003823531442321837], [0.0013870190596207976, 0.02100195735692978, 0.00815045926719904, 0.02463262714445591, 0.007942592725157738, 0.011483998037874699, 0.012731208465993404, 0.44544947147369385, 0.263877809047699, 0.13180671632289886, 0.051571331918239594, 0.003083230461925268, 0.011088494211435318, 0.0018862361321225762, 0.0010846008080989122, 0.0023257946595549583, 0.0004966087872162461], [0.013663713820278645, 0.013034246861934662, 0.016080224886536598, 0.006316511891782284, 0.026983000338077545, 0.01072967704385519, 0.025954073294997215, 0.15858541429042816, 0.09496775269508362, 0.23595298826694489, 0.2675606906414032, 0.0608065202832222, 0.05850319191813469, 0.003931818064302206, 0.004518663976341486, 0.0020161629654467106, 0.000395295734051615], [0.011303563602268696, 0.008551310747861862, 0.017003187909722328, 0.014643363654613495, 0.014294256456196308, 0.006495532114058733, 0.008540479466319084, 0.054204944521188736, 0.047746505588293076, 0.1697213053703308, 0.24143975973129272, 0.15802733600139618, 0.2151937186717987, 0.014083472080528736, 0.01092943362891674, 0.0060703023336827755, 0.0017515834188088775], [0.0015166419325396419, 0.008756814524531364, 0.012863056734204292, 0.01837296597659588, 0.027307458221912384, 0.007392773870378733, 0.021870072931051254, 0.03886174038052559, 0.026515083387494087, 0.025678327307105064, 0.1431700438261032, 0.10860763490200043, 0.4547676742076874, 0.08180113136768341, 0.01281964872032404, 0.006552339531481266, 0.0031466681975871325], [0.0009545692591927946, 0.001522948150523007, 0.002078883582726121, 0.0015379617689177394, 0.002696308773010969, 0.001345092081464827, 0.003131213830783963, 0.012030623853206635, 0.009217243641614914, 0.011800726875662804, 0.3264195919036865, 0.08330187201499939, 0.3033777177333832, 0.18165475130081177, 0.04365663230419159, 0.01224252674728632, 0.003031285712495446], [0.005904765799641609, 0.004374198615550995, 0.006154804956167936, 0.0007268937770277262, 0.003546689171344042, 0.001545797218568623, 0.0059205312281847, 0.013320356607437134, 0.00551215372979641, 0.0072792391292750835, 0.1268681287765503, 0.05033908411860466, 0.2587333619594574, 0.24454623460769653, 0.17340511083602905, 0.07920872420072556, 0.012613956816494465]], [[0.022592751309275627, 0.041242972016334534, 0.06407269835472107, 0.041319869458675385, 0.06316812336444855, 0.12288127094507217, 0.03249724954366684, 0.01767602376639843, 0.03114771470427513, 0.1399928480386734, 0.03838957101106644, 0.06812949478626251, 0.04396490007638931, 0.08401870727539062, 0.056498318910598755, 0.07249383628368378, 0.05991361662745476], [0.0024522601161152124, 0.05789865553379059, 0.2315445989370346, 0.304757684469223, 0.18794825673103333, 0.05799189209938049, 0.048881154507398605, 0.034303195774555206, 0.052871618419885635, 0.0021386321168392897, 0.001978401793166995, 0.002313601551577449, 0.003174731507897377, 0.003533181268721819, 0.005604541394859552, 0.001970448298379779, 0.0006372025818563998], [0.07386548072099686, 0.07841330021619797, 0.05245635658502579, 0.0539100207388401, 0.2018413543701172, 0.19102394580841064, 0.0738258808851242, 0.1676979660987854, 0.03512115776538849, 0.025920525193214417, 0.001833446673117578, 0.0021894965320825577, 0.0048238663002848625, 0.0052408636547625065, 0.025936903432011604, 0.00504214596003294, 0.000857346341945231], [0.01166706345975399, 0.033831946551799774, 0.09444530308246613, 0.031177956610918045, 0.2863520681858063, 0.2343894988298416, 0.08405474573373795, 0.1434207260608673, 0.05359455198049545, 0.005088564939796925, 0.001422438770532608, 0.0007215141085907817, 0.007617046125233173, 0.0029152221977710724, 0.007982546463608742, 0.0010119563667103648, 0.0003069056256208569], [0.003358527086675167, 0.033571645617485046, 0.09078340977430344, 0.024664288386702538, 0.14903205633163452, 0.29403719305992126, 0.11627621948719025, 0.2077040821313858, 0.04962916672229767, 0.01149197481572628, 0.001370060839690268, 0.0011997469700872898, 0.005541961174458265, 0.004602860659360886, 0.005630850791931152, 0.0006087329820729792, 0.0004972346359863877], [0.10242671519517899, 0.01428561843931675, 0.27957308292388916, 0.02694641798734665, 0.02779257670044899, 0.04037510231137276, 0.05366629734635353, 0.37752828001976013, 0.03707906976342201, 0.022837096825242043, 0.0018641973147168756, 0.0008440730161964893, 0.0017874921904876828, 0.0046611069701612, 0.006668757647275925, 0.0012950439704582095, 0.00036907749017700553], [0.008889823220670223, 0.044925156980752945, 0.15463511645793915, 0.025073954835534096, 0.07735048979520798, 0.23808468878269196, 0.03327044099569321, 0.24279668927192688, 0.0773877203464508, 0.03436198830604553, 0.011761189438402653, 0.006235687993466854, 0.0059006488882005215, 0.02326914854347706, 0.013922258280217648, 0.0011311275884509087, 0.0010038753971457481], [0.00512270350009203, 0.02222408540546894, 0.013582033105194569, 0.056794486939907074, 0.018675442785024643, 0.021052811294794083, 0.03266278654336929, 0.5071450471878052, 0.25193968415260315, 0.009966454468667507, 0.026696957647800446, 0.01665411703288555, 0.004814067855477333, 0.0027057058177888393, 0.004738589283078909, 0.003753240453079343, 0.0014718392631039023], [0.0005366563564166427, 0.010071475990116596, 0.02656141296029091, 0.013414682820439339, 0.014030099846422672, 0.012698138132691383, 0.021791649982333183, 0.8589319586753845, 0.009669174440205097, 0.007888669148087502, 0.006772278342396021, 0.0049042715691030025, 0.00709201954305172, 0.0023182425647974014, 0.002772808773443103, 0.000488156802020967, 5.827374479849823e-05], [0.005822913721203804, 0.0067282626405358315, 0.008053707890212536, 0.004308303818106651, 0.011623624712228775, 0.00645578233525157, 0.0034779582638293505, 0.02257639169692993, 0.024457497522234917, 0.02696382813155651, 0.21083782613277435, 0.15946076810359955, 0.1944255530834198, 0.0941864550113678, 0.0901217982172966, 0.03318466991186142, 0.09731460362672806], [0.006752613931894302, 0.021546373143792152, 0.022713132202625275, 0.03949722275137901, 0.02330799028277397, 0.02343795821070671, 0.007825855165719986, 0.018903149291872978, 0.018383199349045753, 0.06708011776208878, 0.01935456693172455, 0.09393268078565598, 0.09119968116283417, 0.13621564209461212, 0.17743781208992004, 0.19761450588703156, 0.03479741886258125], [0.010231377556920052, 0.006993897724896669, 0.0035543779376894236, 0.006209128070622683, 0.008916785940527916, 0.0025827386416494846, 0.013614773750305176, 0.02752945013344288, 0.008013597689568996, 0.034138623625040054, 0.06695550680160522, 0.0347055122256279, 0.2647591233253479, 0.07598547637462616, 0.38272085785865784, 0.029523678123950958, 0.023565147072076797], [0.0017297770828008652, 0.0035777920857071877, 0.004379001911729574, 0.00348403537645936, 0.013788655400276184, 0.010207629762589931, 0.006903520785272121, 0.01639179140329361, 0.0050702570006251335, 0.06593973934650421, 0.017517302185297012, 0.05015934631228447, 0.1409766674041748, 0.14035001397132874, 0.21759778261184692, 0.18434959650039673, 0.11757706105709076], [0.02367863617837429, 0.014378308318555355, 0.019954072311520576, 0.01592298410832882, 0.017052380368113518, 0.014680364169180393, 0.031541772186756134, 0.1418466866016388, 0.016826948150992393, 0.06164643540978432, 0.04712852090597153, 0.023603985086083412, 0.07742704451084137, 0.03240324556827545, 0.11892727762460709, 0.23681142926216125, 0.1061699315905571], [0.0025931817945092916, 0.005052092485129833, 0.00449332082644105, 0.007472687866538763, 0.00824285950511694, 0.006850372534245253, 0.00588183430954814, 0.01014531310647726, 0.003920306917279959, 0.03335360810160637, 0.007960778661072254, 0.051070135086774826, 0.06304628401994705, 0.0462176539003849, 0.036121029406785965, 0.5187029242515564, 0.18887564539909363], [0.006727236323058605, 0.008314987644553185, 0.016345614567399025, 0.013904438354074955, 0.018732335418462753, 0.022339019924402237, 0.013412481173872948, 0.04597458615899086, 0.008343709632754326, 0.041254106909036636, 0.0301947221159935, 0.033651288598775864, 0.12942668795585632, 0.09611938893795013, 0.17631614208221436, 0.12154346704483032, 0.21739977598190308], [0.001379967201501131, 0.0031912035774439573, 0.004053221084177494, 0.002789696678519249, 0.00516172219067812, 0.0034302109852433205, 0.015421082265675068, 0.3257053792476654, 0.0012095352867618203, 0.05029366910457611, 0.04462410509586334, 0.048011474311351776, 0.18008168041706085, 0.028116412460803986, 0.07472699880599976, 0.13831168413162231, 0.0734918862581253]], [[0.025229431688785553, 0.1906249225139618, 0.018277404829859734, 0.011615282855927944, 0.029721707105636597, 0.008722244761884212, 0.07310659438371658, 0.10010955482721329, 0.05713200196623802, 0.05475836247205734, 0.04314306005835533, 0.1592230200767517, 0.036683451384305954, 0.021975398063659668, 0.07122796773910522, 0.018974140286445618, 0.07947549968957901], [0.012608767487108707, 0.12484779208898544, 0.026645516976714134, 0.03025100752711296, 0.09148713201284409, 0.022706059738993645, 0.049812521785497665, 0.09678985923528671, 0.2959100902080536, 0.0319729819893837, 0.02228666841983795, 0.0232565738260746, 0.02562052384018898, 0.021012352779507637, 0.027559524402022362, 0.020890893414616585, 0.07634176313877106], [0.1415875405073166, 0.03529421240091324, 0.22378429770469666, 0.06198011711239815, 0.1561271846294403, 0.12882360816001892, 0.0391521230340004, 0.0539872832596302, 0.0032149699982255697, 0.016723942011594772, 0.011417727917432785, 0.007595948409289122, 0.02660720981657505, 0.03540116921067238, 0.038540177047252655, 0.01873904839158058, 0.0010234653018414974], [0.017227372154593468, 0.10166235268115997, 0.03571029007434845, 0.03298285976052284, 0.12852007150650024, 0.04406985640525818, 0.09933997690677643, 0.07160454988479614, 0.2834462821483612, 0.013986077159643173, 0.012742975726723671, 0.013676805421710014, 0.022733399644494057, 0.020076457411050797, 0.02279636636376381, 0.023109592497348785, 0.056314706802368164], [0.028876036405563354, 0.09424487501382828, 0.04294281452894211, 0.041587136685848236, 0.10838973522186279, 0.17510558664798737, 0.08401867747306824, 0.14879046380519867, 0.08715034276247025, 0.029224565252661705, 0.009517844766378403, 0.010138439014554024, 0.05474145710468292, 0.034425996243953705, 0.017445022240281105, 0.015107192099094391, 0.01829385571181774], [0.07790114730596542, 0.037476781755685806, 0.04905135557055473, 0.00814921222627163, 0.26637306809425354, 0.12962016463279724, 0.09078303724527359, 0.05145665630698204, 0.0279252827167511, 0.0244514849036932, 0.018658295273780823, 0.005730919074267149, 0.11969494074583054, 0.023751411586999893, 0.05797486752271652, 0.003649243153631687, 0.007352083455771208], [0.08221862465143204, 0.11170019954442978, 0.04120054468512535, 0.045744847506284714, 0.09016142785549164, 0.04958293214440346, 0.11624215543270111, 0.05828208848834038, 0.16475266218185425, 0.04565241187810898, 0.018964026123285294, 0.028694765642285347, 0.027565328404307365, 0.03266844525933266, 0.037144891917705536, 0.016734721139073372, 0.03268992155790329], [0.13198214769363403, 0.08994144201278687, 0.22639891505241394, 0.11927301436662674, 0.11254222691059113, 0.1049356609582901, 0.0779351145029068, 0.043838679790496826, 0.0007090592989698052, 0.011589981615543365, 0.019597677513957024, 0.0017998183611780405, 0.012662512250244617, 0.008410376496613026, 0.021716704592108727, 0.016524679958820343, 0.0001418645988451317], [0.3768383860588074, 0.12330149859189987, 0.02853669784963131, 0.03096090629696846, 0.04759572446346283, 0.059986863285303116, 0.1724219024181366, 0.07827011495828629, 0.007937856018543243, 0.00919436477124691, 0.004470595624297857, 0.009378609247505665, 0.010524829849600792, 0.01043486874550581, 0.019735919311642647, 0.008899723179638386, 0.001511107780970633], [0.03135097771883011, 0.05269235000014305, 0.023349938914179802, 0.1323545277118683, 0.13828955590724945, 0.07383492588996887, 0.031481850892305374, 0.028434528037905693, 0.020914731547236443, 0.033943936228752136, 0.03359381482005119, 0.02261863648891449, 0.08283568173646927, 0.07018949091434479, 0.04248347505927086, 0.16127561032772064, 0.020356111228466034], [0.03490123152732849, 0.10801766067743301, 0.019449643790721893, 0.04172982648015022, 0.07739521563053131, 0.03016926348209381, 0.13350681960582733, 0.048867661505937576, 0.03307081386446953, 0.06607325375080109, 0.08509712666273117, 0.045208368450403214, 0.056096915155649185, 0.04158082604408264, 0.04673530161380768, 0.08800392597913742, 0.04409627243876457], [0.05154607072472572, 0.13161619007587433, 0.015470139682292938, 0.037308115512132645, 0.09358541667461395, 0.045323196798563004, 0.08748354762792587, 0.04389321058988571, 0.0751238763332367, 0.03394602984189987, 0.06617578864097595, 0.039348721504211426, 0.0755181759595871, 0.04657603055238724, 0.05110987275838852, 0.03752486780285835, 0.06845078617334366], [0.045170001685619354, 0.023220911622047424, 0.05770496651530266, 0.02595735527575016, 0.2384619265794754, 0.22330813109874725, 0.06707781553268433, 0.04752959683537483, 0.005720003042370081, 0.029135147109627724, 0.029502270743250847, 0.004957693628966808, 0.06609918177127838, 0.0657583475112915, 0.04484422132372856, 0.01947348192334175, 0.00607894454151392], [0.05315763130784035, 0.06410051882266998, 0.020315688103437424, 0.015302143059670925, 0.1043320894241333, 0.2639279365539551, 0.030412442982196808, 0.023462509736418724, 0.02145475521683693, 0.029132265597581863, 0.09598658233880997, 0.03790988028049469, 0.07511664181947708, 0.06056159734725952, 0.04498083144426346, 0.03499474376440048, 0.0248517207801342], [0.16818305850028992, 0.06326840817928314, 0.05614742264151573, 0.07093902677297592, 0.04383542761206627, 0.11131663620471954, 0.023724956437945366, 0.034650057554244995, 0.01285067480057478, 0.03518915921449661, 0.024192672222852707, 0.04659947007894516, 0.024818921461701393, 0.07859275490045547, 0.04899810999631882, 0.14249159395694733, 0.014201649464666843], [0.018804555758833885, 0.1452721804380417, 0.015372946858406067, 0.046491123735904694, 0.06757894158363342, 0.04078845679759979, 0.0687142089009285, 0.02868746407330036, 0.07122844457626343, 0.043288882821798325, 0.06034913659095764, 0.04891715571284294, 0.024664482101798058, 0.039178308099508286, 0.0678272470831871, 0.11166568100452423, 0.10117077082395554], [0.6231653690338135, 0.04444140940904617, 0.015488763339817524, 0.014099380932748318, 0.023624960333108902, 0.06599694490432739, 0.04869147017598152, 0.02038084715604782, 0.0009414941305294633, 0.014225088059902191, 0.01238776370882988, 0.018895264714956284, 0.01611875183880329, 0.028241945430636406, 0.03211964666843414, 0.019706713035702705, 0.0014741843333467841]], [[0.5297853946685791, 0.028465336188673973, 0.02506268583238125, 0.029630254954099655, 0.04766254499554634, 0.01360179390758276, 0.03147514909505844, 0.02458438090980053, 0.04230737313628197, 0.023439422249794006, 0.04026693105697632, 0.026047907769680023, 0.023394061252474785, 0.05324985086917877, 0.01479105744510889, 0.019583487883210182, 0.02665235474705696], [0.17063994705677032, 0.05888991057872772, 0.5528180599212646, 0.05428105592727661, 0.025899801403284073, 0.001957215601578355, 0.04174285754561424, 0.010018263012170792, 0.037448253482580185, 0.003583453129976988, 0.019389398396015167, 0.005982087459415197, 0.004441962111741304, 0.004561947658658028, 0.0007211402407847345, 0.007333206012845039, 0.0002913186326622963], [0.8909273147583008, 0.08032894879579544, 0.0025539323687553406, 0.010308152996003628, 0.0017845286056399345, 0.00020814086019527167, 0.00026543892454355955, 0.001113833743147552, 0.004582714289426804, 0.0019126191036775708, 0.004298180341720581, 0.00032235425896942616, 9.852810035226867e-05, 0.0006160056218504906, 0.00030618280288763344, 0.00010265781747875735, 0.00027038660482503474], [0.10857869684696198, 0.01627052016556263, 0.17978540062904358, 0.015306293964385986, 0.5894787311553955, 0.0069667198695242405, 0.01477954350411892, 0.0030409551691263914, 0.026412608101963997, 0.0021361846011132, 0.016677897423505783, 0.014800668694078922, 0.0028928909450769424, 0.0005878520314581692, 0.001204014988616109, 0.00043835901306010783, 0.0006426859763450921], [0.33767518401145935, 0.04650860279798508, 0.041055794805288315, 0.17031604051589966, 0.07923808693885803, 0.15906578302383423, 0.03530227020382881, 0.04126405343413353, 0.004364499822258949, 0.0019668610766530037, 0.0009451291407458484, 0.012885362841188908, 0.056752391159534454, 0.004813986364752054, 0.0029920327942818403, 0.0012678267667070031, 0.003586124163120985], [0.5636687278747559, 0.0009270262089557946, 0.021299337968230247, 0.0045332107692956924, 0.07245277613401413, 0.00034146313555538654, 0.3119720220565796, 0.003071835031732917, 0.006842904724180698, 0.000274136895313859, 0.0015084922779351473, 0.00021697493502870202, 0.006742208264768124, 0.003178044455125928, 0.002103708451613784, 0.00017256222781725228, 0.0006945595378056169], [0.0034285683650523424, 0.0004321909218560904, 1.4425149856833741e-05, 0.0006366359302774072, 0.0007624393911100924, 0.9838820695877075, 7.799694139976054e-05, 0.0074768359772861, 0.0011207726784050465, 0.0019184118136763573, 1.1265839930274524e-05, 5.301832061377354e-05, 2.1885936803300865e-05, 7.566863473584817e-07, 0.00012025000614812598, 1.2447904737200588e-05, 3.0048226108192466e-05], [0.029951950535178185, 0.0008752135909162462, 0.0002883475390262902, 0.0006025819457136095, 0.008834654465317726, 0.0030747363343834877, 0.06330305337905884, 0.5941256284713745, 0.28267496824264526, 0.00859396904706955, 0.005169601645320654, 0.00016499900084454566, 0.00032435308094136417, 0.00011302684288239107, 0.0012292881729081273, 0.00026034965412691236, 0.00041327576036565006], [0.7789714932441711, 0.00022499822080135345, 0.00016182770195882767, 0.0001228098408319056, 5.0754322728607804e-05, 0.00016056757885962725, 0.001908572157844901, 0.16523577272891998, 0.03237298130989075, 0.01315589714795351, 0.003399125300347805, 0.003103874158114195, 0.0008009437005966902, 0.00011767839168896899, 0.00014725646178703755, 4.433339199749753e-05, 2.0980391127523035e-05], [0.12921631336212158, 0.0027394054923206568, 0.0015853192890062928, 0.00033284889650531113, 0.0005371670704334974, 2.662128463271074e-05, 0.004090360831469297, 0.05729591101408005, 0.5213974714279175, 0.0060508777387440205, 0.2624721825122833, 0.0013905806699767709, 0.009184601716697216, 0.0010160582605749369, 0.0011505259899422526, 0.0001983383990591392, 0.0013153988402336836], [0.14676052331924438, 0.009243791922926903, 0.004999727010726929, 0.009514186531305313, 0.0008303028298541903, 0.0013667411403730512, 0.0007688934565521777, 0.07283740490674973, 0.09306642413139343, 0.2315906435251236, 0.05676010996103287, 0.3287101089954376, 0.0124549875035882, 0.007957584224641323, 0.006199636030942202, 0.015734124928712845, 0.0012047147611156106], [0.008004061877727509, 0.002158306771889329, 0.0015265600522980094, 0.0005280429031699896, 0.0004625661240424961, 2.4361703253816813e-05, 0.0011331778950989246, 0.0005862020188942552, 0.01661285199224949, 0.0009265700937248766, 0.05330977961421013, 0.006060315296053886, 0.904312014579773, 0.0032233658712357283, 0.0004049489216413349, 0.00010776261478895321, 0.0006190987187437713], [0.0762576013803482, 0.001045120763592422, 0.003688471857458353, 0.0010932286968454719, 0.00449006212875247, 0.002644736785441637, 0.00073879404226318, 0.0010261982679367065, 0.0015050700167194009, 0.001638186746276915, 0.006756780203431845, 0.8357359170913696, 0.039099596440792084, 0.010943735018372536, 0.005432555451989174, 0.007262994069606066, 0.0006409725174307823], [0.2574582099914551, 0.0006624235538765788, 0.0005549232009798288, 0.0007254296215251088, 0.0025924642104655504, 5.587463601841591e-05, 7.177134830271825e-05, 7.798853766871616e-05, 0.0012320630485191941, 0.0028394758701324463, 0.0052256714552640915, 0.0048163277097046375, 0.017115430906414986, 0.004212055820971727, 0.6857254505157471, 0.0031236365903168917, 0.01351089496165514], [0.010709894821047783, 0.0007484433590434492, 8.900796819943935e-05, 0.0016312870429828763, 0.003602010430768132, 0.00010779048170661554, 0.000447740574600175, 0.0009123242925852537, 0.0005111492937430739, 0.00017394138558302075, 0.0009958456503227353, 0.0077655017375946045, 0.0036991583183407784, 0.9275467991828918, 0.0008852282771840692, 0.034538235515356064, 0.005635612644255161], [0.08550012111663818, 0.0001672657672315836, 0.0005095266969874501, 7.990856829565018e-05, 0.0007041409844532609, 1.4359509805217385e-05, 0.0009417919791303575, 0.00023594428785145283, 0.0007948753773234785, 0.00013249741459731013, 0.0024288392160087824, 0.00199946784414351, 0.44115275144577026, 0.009732081554830074, 0.08865057677030563, 0.004404876381158829, 0.3625509738922119], [0.8495730757713318, 3.872965862683486e-06, 3.082321200054139e-05, 7.923857992864214e-06, 1.9904187865904532e-05, 5.858074018760817e-06, 4.14150272263214e-05, 0.00016338461136911064, 3.6585079215001315e-05, 8.851963502820581e-05, 6.038512583472766e-05, 0.0003887961502186954, 0.0007887074025347829, 0.0009766381699591875, 0.005481830332428217, 0.05996217578649521, 0.08237022906541824]], [[0.0028138835914433002, 0.14595000445842743, 0.004342307336628437, 0.007798220496624708, 0.47588446736335754, 0.005292847286909819, 0.01191490888595581, 0.0007258609985001385, 0.012314080260694027, 0.0026334223803132772, 0.07959385216236115, 0.005817516706883907, 0.1497550904750824, 0.031208788976073265, 0.019496599212288857, 0.010442382656037807, 0.03401554748415947], [0.30839553475379944, 0.02442958578467369, 0.04210550710558891, 0.12423135340213776, 0.024058213457465172, 0.13344943523406982, 0.07468478381633759, 0.07993800938129425, 0.07432860136032104, 0.02326391264796257, 0.02260420098900795, 0.01761590875685215, 0.006955130957067013, 0.010127308778464794, 0.008846303448081017, 0.017809618264436722, 0.007156712934374809], [0.007676139939576387, 0.0639035552740097, 0.09770851582288742, 0.025784390047192574, 0.015926800668239594, 0.19102120399475098, 0.023956621065735817, 0.22462424635887146, 0.08848381042480469, 0.026195261627435684, 0.0027917984407395124, 0.0498599074780941, 0.026894720271229744, 0.10260621458292007, 0.0195894967764616, 0.003518287790939212, 0.02945900708436966], [0.562584638595581, 0.03440006449818611, 0.055883146822452545, 0.012190770357847214, 0.04682030528783798, 0.06307457387447357, 0.012469426728785038, 0.07332248985767365, 0.07798133790493011, 0.005355661269277334, 0.008300283923745155, 0.006190975196659565, 0.007199685089290142, 0.004158606752753258, 0.015873489901423454, 0.010205147787928581, 0.003989442251622677], [0.18359829485416412, 0.038653552532196045, 0.15460149943828583, 0.011411380022764206, 0.013630617409944534, 0.18495121598243713, 0.02157178893685341, 0.12013169378042221, 0.1598767638206482, 0.014547049067914486, 0.006147957872599363, 0.009481131099164486, 0.011048650369048119, 0.009451921097934246, 0.03990714251995087, 0.008042896166443825, 0.012946530245244503], [0.13900348544120789, 0.08148740977048874, 0.23679934442043304, 0.02080403082072735, 0.015821468085050583, 0.09797590970993042, 0.07375107705593109, 0.011617355048656464, 0.10100888460874557, 0.02710365317761898, 0.017612215131521225, 0.04142763838171959, 0.016874289140105247, 0.04132341593503952, 0.02388180047273636, 0.010554374195635319, 0.04295368120074272], [0.09020019322633743, 0.03774154558777809, 0.1005101203918457, 0.03667706623673439, 0.024326425045728683, 0.4774423837661743, 0.001731462893076241, 0.028049172833561897, 0.09966190904378891, 0.01091250404715538, 0.012680169194936752, 0.019383061677217484, 0.007540566381067038, 0.01482369378209114, 0.009787033312022686, 0.009432034566998482, 0.019100753590464592], [0.030797069892287254, 0.07728295028209686, 0.06687948852777481, 0.12017962336540222, 0.02633104845881462, 0.07644528150558472, 0.138240247964859, 0.02326146326959133, 0.14521564543247223, 0.04453102499246597, 0.029573574662208557, 0.04475005716085434, 0.019740616902709007, 0.02711784467101097, 0.04582895338535309, 0.03775162249803543, 0.04607353359460831], [0.8316414952278137, 0.049767155200242996, 0.0029625813476741314, 0.014293511398136616, 0.016213009133934975, 0.005573486443608999, 0.009432957507669926, 0.0010794304544106126, 0.04657946154475212, 0.0003252702590543777, 0.01323314942419529, 0.0011480662506073713, 0.0008952190401032567, 0.0003345238510519266, 0.0024672735016793013, 0.0018658393528312445, 0.00218773540109396], [0.020670412108302116, 0.029202111065387726, 0.04855913668870926, 0.016554342582821846, 0.021941810846328735, 0.09035651385784149, 0.026405109092593193, 0.03387559577822685, 0.087388776242733, 0.072963185608387, 0.06884146481752396, 0.05169367417693138, 0.08162571489810944, 0.047629643231630325, 0.038143742829561234, 0.05487896502017975, 0.20926976203918457], [0.08915013074874878, 0.029178563505411148, 0.03518853709101677, 0.015873081982135773, 0.025689249858260155, 0.05005418136715889, 0.0025903002824634314, 0.042547184973955154, 0.025278348475694656, 0.15273098647594452, 0.029039854183793068, 0.04898164048790932, 0.14647991955280304, 0.07680763304233551, 0.027846911922097206, 0.08949966728687286, 0.1130637377500534], [0.7777273058891296, 0.0037733472418040037, 0.001478124177083373, 0.0043999142944812775, 0.006701088044792414, 0.01302959956228733, 0.002849529730156064, 0.008094757795333862, 0.016851214691996574, 0.008304131217300892, 0.01879454404115677, 0.0023173950612545013, 0.023950031027197838, 0.003929700702428818, 0.018228409811854362, 0.050126682966947556, 0.0394442118704319], [0.014837793074548244, 0.008079626597464085, 0.04585641622543335, 0.015075299888849258, 0.11292103677988052, 0.09782068431377411, 0.013583811931312084, 0.052380986511707306, 0.009831427596509457, 0.05812854692339897, 0.030269967392086983, 0.04681221395730972, 0.150766521692276, 0.045657843351364136, 0.12843143939971924, 0.1375322937965393, 0.032014138996601105], [0.04893508553504944, 0.026316823437809944, 0.008845926262438297, 0.00985388457775116, 0.026612350717186928, 0.01817840337753296, 0.06177006661891937, 0.006831398233771324, 0.052024707198143005, 0.11510051786899567, 0.07717482000589371, 0.04640994593501091, 0.04570171236991882, 0.004313973244279623, 0.24344190955162048, 0.06968999654054642, 0.1387985348701477], [0.0260305292904377, 0.01183387916535139, 0.015168212354183197, 0.0069733876734972, 0.038386184722185135, 0.030776556581258774, 0.03352782130241394, 0.027250410988926888, 0.07035466283559799, 0.02562684379518032, 0.0072885556146502495, 0.013761120848357677, 0.05872292444109917, 0.36833906173706055, 0.042586952447891235, 0.02496686764061451, 0.19840611517429352], [0.135867178440094, 0.011997750960290432, 0.029999757185578346, 0.024606216698884964, 0.025782689452171326, 0.03336285427212715, 0.0061295004561543465, 0.02897804230451584, 0.029729513451457024, 0.1426798403263092, 0.04920092225074768, 0.03859607130289078, 0.099080890417099, 0.11154460906982422, 0.023387273773550987, 0.08972253650426865, 0.11933432519435883], [0.7758133411407471, 0.007774508558213711, 0.0009717227076180279, 0.002736188704147935, 0.004408706910908222, 0.001264071324840188, 0.0030430478509515524, 0.00028356979601085186, 0.009030964225530624, 0.0019602940883487463, 0.10288668423891068, 0.007128584198653698, 0.008011512458324432, 0.0010378558654338121, 0.009276295080780983, 0.022623008117079735, 0.04174961894750595]], [[4.6997854951769114e-05, 0.0006311151664704084, 6.937955186003819e-05, 0.0009768882300704718, 0.00014576448302250355, 9.334934293292463e-05, 0.000660013291053474, 2.3489619707106613e-05, 0.29161715507507324, 2.4740964363445528e-05, 0.0006135533330962062, 0.0031444982159882784, 0.0003683871473185718, 0.00017555931117385626, 7.470789569197223e-05, 0.0013607771834358573, 0.6999736428260803], [0.03953053429722786, 0.04480615258216858, 0.17624598741531372, 0.3320455849170685, 0.18302905559539795, 0.11669808626174927, 0.0127596789970994, 0.03359492868185043, 0.015715327113866806, 0.0036370456218719482, 0.010267579928040504, 0.00218258542008698, 0.005212061107158661, 0.012401428073644638, 0.002899571554735303, 0.008493664674460888, 0.0004806677170563489], [0.056025855243206024, 0.017212849110364914, 0.3687164783477783, 0.01077384501695633, 0.07087904214859009, 0.3237742483615875, 0.03511696681380272, 0.08068202435970306, 0.008143906481564045, 0.0030751919839531183, 0.0030450355261564255, 0.0010525588877499104, 0.003112898673862219, 0.007238247897475958, 0.009245934896171093, 0.0015897175762802362, 0.00031523313373327255], [0.015551937744021416, 0.03036537393927574, 0.06994624435901642, 0.05071200802922249, 0.2754291594028473, 0.4450528025627136, 0.016826530918478966, 0.026995129883289337, 0.006157469004392624, 0.007323973346501589, 0.004209441598504782, 0.0030876509845256805, 0.0154345678165555, 0.023224053904414177, 0.0007701454451307654, 0.008718673139810562, 0.00019485618395265192], [0.048887137323617935, 0.07722077518701553, 0.09643282741308212, 0.04219973459839821, 0.23919518291950226, 0.318155974149704, 0.059559255838394165, 0.07164259999990463, 0.0015539806336164474, 0.015555096790194511, 0.003240046324208379, 0.002364320680499077, 0.009810944087803364, 0.009992782957851887, 0.0017093762289732695, 0.0024366870056837797, 4.321666347095743e-05], [0.010238614864647388, 0.02784811519086361, 0.3302167057991028, 0.011526755057275295, 0.11658567935228348, 0.39849233627319336, 0.032393720000982285, 0.03154754638671875, 0.0013876929879188538, 0.009461781941354275, 0.0010100621730089188, 0.0009106516372412443, 0.013249075971543789, 0.01028874795883894, 0.00420496566221118, 0.0005801247316412628, 5.738190156989731e-05], [0.01862824521958828, 0.07213407754898071, 0.1532040387392044, 0.01613878458738327, 0.2503899931907654, 0.2708008289337158, 0.061421703547239304, 0.028818242251873016, 0.001575593021698296, 0.01956940069794655, 0.0040082307532429695, 0.009477389045059681, 0.018582522869110107, 0.05924008786678314, 0.012405281886458397, 0.0034569555427879095, 0.000148552397149615], [0.0953814759850502, 0.12914900481700897, 0.015792902559041977, 0.06117771565914154, 0.03243299946188927, 0.022912047803401947, 0.10839948058128357, 0.437074214220047, 0.019374022260308266, 0.02425185963511467, 0.01198923122137785, 0.011240901425480843, 0.0031097654718905687, 0.0028721927665174007, 0.01974177360534668, 0.004250083584338427, 0.0008503730059601367], [0.046842750161886215, 0.11623495817184448, 0.063980333507061, 0.04431002587080002, 0.1427324116230011, 0.0582481324672699, 0.0772114247083664, 0.0188564732670784, 0.011267701163887978, 0.04962540045380592, 0.01674911007285118, 0.15991328656673431, 0.04218771681189537, 0.05088194087147713, 0.06612319499254227, 0.030405566096305847, 0.004429609049111605], [0.017834164202213287, 0.002756795845925808, 0.05350993201136589, 0.0021620094776153564, 0.023222211748361588, 0.13789162039756775, 0.009836714714765549, 0.051396630704402924, 0.0002801534137688577, 0.13006038963794708, 0.02957182563841343, 0.027847765013575554, 0.14845290780067444, 0.21169456839561462, 0.11597933620214462, 0.034082334488630295, 0.003420712659135461], [0.009180780500173569, 0.0043208966962993145, 0.013429312966763973, 0.01852136105298996, 0.020653001964092255, 0.06049400940537453, 0.0036788966972380877, 0.013552435673773289, 0.000791482103522867, 0.1717328578233719, 0.03971748799085617, 0.036973729729652405, 0.07784470915794373, 0.2781842350959778, 0.021035902202129364, 0.22194860875606537, 0.00794034544378519], [0.007877924479544163, 0.002594415098428726, 0.051812794059515, 0.010642011649906635, 0.036495789885520935, 0.022167861461639404, 0.0056761750020086765, 0.014539164490997791, 0.0003590921696741134, 0.18966199457645416, 0.1029757410287857, 0.030085669830441475, 0.18181461095809937, 0.2510167956352234, 0.027508048340678215, 0.06017230078577995, 0.004599723499268293], [0.019241195172071457, 0.005438725929707289, 0.003354135202243924, 0.0021407820750027895, 0.024612626060843468, 0.031923312693834305, 0.008155552670359612, 0.025547876954078674, 0.001017207046970725, 0.24112504720687866, 0.029882803559303284, 0.18160457909107208, 0.15794700384140015, 0.17487336695194244, 0.043853409588336945, 0.035820309072732925, 0.013462136499583721], [0.07355764508247375, 0.014865903183817863, 0.15413416922092438, 0.005740889813750982, 0.05969779193401337, 0.05063951388001442, 0.05190437659621239, 0.010656776838004589, 0.0029035040643066168, 0.17980147898197174, 0.06359933316707611, 0.0506933331489563, 0.10207530111074448, 0.04617089033126831, 0.07591244578361511, 0.044013675302267075, 0.013633019290864468], [0.01094046887010336, 0.0014406978152692318, 0.07255426049232483, 0.002811927581205964, 0.01564006134867668, 0.011477588675916195, 0.01629479043185711, 0.017017584294080734, 0.003313269931823015, 0.04445313289761543, 0.05322292819619179, 0.07571274787187576, 0.1090952679514885, 0.4110276699066162, 0.054814714938402176, 0.05832207575440407, 0.041860874742269516], [0.008660070598125458, 0.001521358615718782, 0.017713433131575584, 0.0025126044638454914, 0.019752124324440956, 0.0498618483543396, 0.004999701865017414, 0.010655038990080357, 0.00021393646602518857, 0.20005092024803162, 0.03075449913740158, 0.040954459458589554, 0.27685803174972534, 0.30435314774513245, 0.014973180368542671, 0.01312843058258295, 0.003037217538803816], [0.005447723437100649, 0.0013296524994075298, 0.0012926749186590314, 0.00039578264113515615, 0.0017018918879330158, 0.0008921298431232572, 0.0018021955620497465, 0.0005336333997547626, 0.00013476944877766073, 0.16598767042160034, 0.03899261727929115, 0.3594083786010742, 0.07863102853298187, 0.10893061012029648, 0.13735926151275635, 0.06446316838264465, 0.03269682079553604]]], [[[0.6799723505973816, 0.02714240550994873, 0.00449505215510726, 0.009819257073104382, 0.001969903474673629, 0.0013555795885622501, 0.004159142728894949, 0.025402676314115524, 0.10693111270666122, 0.012828328646719456, 0.006657484918832779, 0.0055929021909832954, 0.007443425711244345, 0.003951537888497114, 0.0024434442166239023, 0.0033005631994456053, 0.09653487801551819], [0.23385626077651978, 0.1443607360124588, 0.034189365804195404, 0.007658595219254494, 0.0007355501875281334, 0.0038644634187221527, 0.0035510926973074675, 0.019739340990781784, 0.43852442502975464, 0.006758406292647123, 0.0011488659074530005, 0.0007718694978393614, 0.001132420264184475, 0.0007442851783707738, 0.00030478578992187977, 0.0005385232507251203, 0.1021210327744484], [0.6984356045722961, 0.16992157697677612, 0.02908949740231037, 0.007290296722203493, 0.0009568631066940725, 0.0018246949184685946, 0.004464342724531889, 0.05042754486203194, 0.014225407503545284, 0.006289962213486433, 0.0059830788522958755, 0.004073913209140301, 0.002104290062561631, 0.0010259129339829087, 0.0005240275640971959, 0.0002769042912404984, 0.003086149226874113], [0.25565215945243835, 0.15518487989902496, 0.03777023404836655, 0.024677015841007233, 0.013732791878283024, 0.011438226327300072, 0.02491465024650097, 0.23803526163101196, 0.0382743664085865, 0.14787907898426056, 0.02151949517428875, 0.0031485676299780607, 0.0046502891927957535, 0.008991790004074574, 0.007363536395132542, 0.002457389375194907, 0.004310287069529295], [0.06467265635728836, 0.466308057308197, 0.023762144148349762, 0.038105469197034836, 0.030488623306155205, 0.007472719997167587, 0.04738154262304306, 0.19471128284931183, 0.03719029948115349, 0.0477716326713562, 0.012031198479235172, 0.007923559285700321, 0.014606311917304993, 0.0023776490706950426, 0.002137018134817481, 0.0008437778451479971, 0.0022160594817250967], [0.3908434212207794, 0.24928702414035797, 0.0104661975055933, 0.07785845547914505, 0.019612586125731468, 0.002427377039566636, 0.06945327669382095, 0.07400713860988617, 0.046541303396224976, 0.020975718274712563, 0.014098751358687878, 0.006800937000662088, 0.00822970550507307, 0.0018139125313609838, 0.0017884612316265702, 0.001977817388251424, 0.0038180428091436625], [0.24660643935203552, 0.07539991289377213, 0.028458595275878906, 0.043353334069252014, 0.0176022257655859, 0.007150956429541111, 0.021256957203149796, 0.2747271656990051, 0.12031912803649902, 0.09786100685596466, 0.010012742131948471, 0.01042100414633751, 0.020670607686042786, 0.005555460229516029, 0.005415540188550949, 0.0021889323834329844, 0.01299986056983471], [0.11268492043018341, 0.13597719371318817, 0.004825045820325613, 0.1361781507730484, 0.01413441076874733, 0.017867518588900566, 0.024349015206098557, 0.15218032896518707, 0.20350806415081024, 0.07395793497562408, 0.018989522010087967, 0.01504137646406889, 0.02558129094541073, 0.0068090385757386684, 0.004267056472599506, 0.013145030476152897, 0.04050413891673088], [0.8579596877098083, 0.05068559572100639, 0.0011143614538013935, 0.017629515379667282, 0.0016797656426206231, 0.0018244433449581265, 0.003344691824167967, 0.03524310514330864, 0.012730668298900127, 0.010830081067979336, 0.0018767962465062737, 0.001406803959980607, 0.001417699153535068, 0.0010427485685795546, 0.0002791360893752426, 0.00020951115584466606, 0.0007252647774294019], [0.46295905113220215, 0.13443738222122192, 0.004037299659103155, 0.018081648275256157, 0.0010580584639683366, 0.005880589596927166, 0.00943515170365572, 0.03630466014146805, 0.10564146190881729, 0.06858116388320923, 0.030163217335939407, 0.008098444901406765, 0.014598812907934189, 0.015145520679652691, 0.0024334462359547615, 0.0048456997610628605, 0.07829834520816803], [0.04682144895195961, 0.6307578682899475, 0.017838003113865852, 0.01651613786816597, 0.0009469649521633983, 0.003794413059949875, 0.013334283605217934, 0.018501348793506622, 0.044094476848840714, 0.029435262084007263, 0.10852064937353134, 0.011918683536350727, 0.011145036667585373, 0.006393955554813147, 0.005007254425436258, 0.004316031467169523, 0.030658049508929253], [0.1607009619474411, 0.05023277550935745, 0.006000313442200422, 0.029496043920516968, 0.006779431365430355, 0.002788977697491646, 0.014734962023794651, 0.07584323734045029, 0.07187895476818085, 0.07236018776893616, 0.163868710398674, 0.1402699053287506, 0.05105699226260185, 0.03790202736854553, 0.026137081906199455, 0.015344827435910702, 0.07460454851388931], [0.1354241818189621, 0.08385733515024185, 0.0069400290958583355, 0.023752328008413315, 0.014441447332501411, 0.001654807711020112, 0.02139156311750412, 0.18527966737747192, 0.06950785964727402, 0.1337895691394806, 0.0899280458688736, 0.055529944598674774, 0.04304825887084007, 0.01235974207520485, 0.00789712555706501, 0.032111991196870804, 0.0830860584974289], [0.22548837959766388, 0.02763162925839424, 0.020267117768526077, 0.0464756041765213, 0.0020414525642991066, 0.0037675665225833654, 0.006938498001545668, 0.04487454518675804, 0.10998658090829849, 0.12003193795681, 0.10299677401781082, 0.033140961080789566, 0.023945540189743042, 0.00817831326276064, 0.011400172486901283, 0.03788136690855026, 0.17495357990264893], [0.21357214450836182, 0.05379948392510414, 0.0038793820422142744, 0.029647590592503548, 0.005487753544002771, 0.004448940046131611, 0.06838462501764297, 0.12135495245456696, 0.09188488125801086, 0.05469454079866409, 0.03985161334276199, 0.07988829165697098, 0.08394772559404373, 0.030257239937782288, 0.008133869618177414, 0.023840950801968575, 0.08692600578069687], [0.06259501725435257, 0.0189773328602314, 0.001851109554991126, 0.015108867548406124, 0.0012967042857781053, 0.003537708893418312, 0.008021938614547253, 0.057718198746442795, 0.04869207739830017, 0.3029101490974426, 0.1314173936843872, 0.01983928494155407, 0.07148057222366333, 0.08766323328018188, 0.047424785792827606, 0.013654801994562149, 0.10781078040599823], [0.8161494135856628, 0.013028709217905998, 0.0003173933073412627, 0.005968824494630098, 0.0003629127750173211, 0.00032984092831611633, 0.0013746650656685233, 0.02198980748653412, 0.02877907268702984, 0.025799982249736786, 0.008624272421002388, 0.006171585526317358, 0.008236420340836048, 0.007794405333697796, 0.0012655055616050959, 0.003933065105229616, 0.04987429827451706]], [[0.7820881605148315, 0.04792488366365433, 0.014661292545497417, 0.016982680186629295, 0.00801462959498167, 0.01270146295428276, 0.0072418879717588425, 0.0037491123657673597, 0.05504460260272026, 0.003660280955955386, 0.0010702796280384064, 0.00267069973051548, 0.0035881618969142437, 0.005693497601896524, 0.0035346068907529116, 0.0018381420522928238, 0.029535597190260887], [0.9579739570617676, 0.0325721837580204, 0.004223098047077656, 0.0007561913807876408, 0.0002811573795042932, 0.0010076769394800067, 0.0004763439064845443, 0.00012394772784318775, 0.0019999793730676174, 0.00036444494617171586, 3.25585606333334e-05, 2.79550895356806e-05, 2.9101092877681367e-05, 3.9847553125582635e-05, 5.077746027382091e-05, 3.528599108904018e-06, 3.730615571839735e-05], [0.25807806849479675, 0.7257601618766785, 0.0036532790400087833, 0.002803741255775094, 0.000127884850371629, 0.0001944909308804199, 0.00010639076208462939, 9.574835712555796e-05, 0.007093087304383516, 0.0016282694414258003, 0.00010966626723529771, 3.3055210224119946e-05, 8.349178096977994e-05, 1.1528873073984869e-05, 5.186936687096022e-05, 3.2471805752720684e-05, 0.0001368197990814224], [0.5073351263999939, 0.37685626745224, 0.09392479062080383, 0.005651452578604221, 0.0036995012778788805, 0.0016434623394161463, 4.996777352062054e-05, 2.4235627279267646e-05, 0.006225328426808119, 0.002448765793815255, 0.00015015737153589725, 0.001129818963818252, 0.00010489134001545608, 7.976889901328832e-05, 0.00013148282596375793, 3.22655905620195e-05, 0.0005127229378558695], [0.7279987931251526, 0.03613729029893875, 0.030276218429207802, 0.16253936290740967, 0.023364052176475525, 0.009557483717799187, 0.000169901002664119, 9.23241168493405e-06, 0.0019033962162211537, 0.000315505254548043, 1.8634178559295833e-05, 0.004917223937809467, 0.00012365241127554327, 4.237943721818738e-05, 0.00017242750618606806, 0.00014038177323527634, 0.0023138895630836487], [0.8503820896148682, 0.004731119144707918, 0.0057678669691085815, 0.05592240020632744, 0.06056181341409683, 0.017557615414261818, 0.0017805345123633742, 5.563851664192043e-05, 0.0012225237442180514, 7.857527816668153e-05, 6.276907242863672e-06, 6.2852877817931585e-06, 0.00010676040983526036, 5.278475146042183e-05, 3.7783367588417605e-05, 9.50717439991422e-05, 0.001634836895391345], [0.033895328640937805, 0.0010555146727710962, 0.0030241620261222124, 0.062069300562143326, 0.20510265231132507, 0.6801595091819763, 0.004191290121525526, 0.000631717499345541, 0.0039703440852463245, 2.7234320441493765e-05, 8.475791219098028e-06, 0.00015581303159706295, 0.00015729408187326044, 0.0011690135579556227, 5.669281381415203e-05, 0.00016572343884035945, 0.004159883130341768], [0.05470624938607216, 0.0019496014574542642, 0.0010779440635815263, 0.012869438156485558, 0.06390991806983948, 0.5245635509490967, 0.24727720022201538, 0.009119056165218353, 0.06429312378168106, 0.0023305239155888557, 0.0003047142818104476, 0.0001762459723977372, 0.0015969412634149194, 0.004433896392583847, 0.001325238379649818, 0.0010602757101878524, 0.009006074629724026], [0.8222008943557739, 0.0036109539214521646, 0.00017287030641455203, 0.0003112527774646878, 0.0014039340894669294, 0.0442749559879303, 0.07270245999097824, 0.00214636349119246, 0.05206447094678879, 0.0009648748091422021, 1.688771226326935e-05, 3.3469716527179116e-06, 1.0593680599413346e-05, 2.3963213607203215e-05, 1.704150599834975e-05, 2.8868830668216106e-06, 7.236194505821913e-05], [0.08589247614145279, 0.002521045971661806, 9.903813770506531e-05, 2.902046253439039e-05, 5.1632541726576164e-05, 0.001955093815922737, 0.013761550188064575, 0.007914502173662186, 0.8375268578529358, 0.044680897146463394, 0.004804521799087524, 6.054230107110925e-05, 8.418549987254664e-05, 7.166342402342707e-05, 2.625500928843394e-05, 6.972919891268248e-06, 0.0005136543768458068], [0.04499068856239319, 0.0022313909139484167, 5.856103962287307e-05, 8.88756949279923e-06, 5.031471573602175e-06, 7.308822387130931e-05, 0.0003000217257067561, 0.0006080602179281414, 0.30511003732681274, 0.6376030445098877, 0.007936270907521248, 0.0007638441165909171, 3.6301262298366055e-05, 1.1749708392017055e-05, 9.331100045528729e-06, 1.4653620610260987e-06, 0.00025222208932973444], [0.0602448396384716, 0.005734770558774471, 0.001047954079695046, 0.0003169375122524798, 1.9530880308593623e-05, 4.236752647557296e-05, 4.507845369516872e-05, 0.00014290698163677007, 0.11691242456436157, 0.6769182682037354, 0.12250786274671555, 0.004498713184148073, 0.010668106377124786, 0.0001167189548141323, 6.0324575315462425e-05, 1.2160943697381299e-05, 0.0007110754959285259], [0.13928642868995667, 0.0018911127699539065, 0.00031404936453327537, 0.0010929979616776109, 0.00011156240361742675, 8.815286128083244e-05, 1.8082988390233368e-05, 4.896871905657463e-05, 0.019383331760764122, 0.11752672493457794, 0.08858245611190796, 0.603805422782898, 0.026070117950439453, 0.0011725848307833076, 4.2478350223973393e-05, 5.8079381233255845e-06, 0.0005597656709142029], [0.8591821789741516, 0.0004334145924076438, 0.0007691459613852203, 0.004641552921384573, 0.00032690729130990803, 0.0001838502794271335, 6.091551313147647e-06, 5.274484010442393e-06, 0.0008562818984501064, 0.0011093392968177795, 0.0018167162779718637, 0.03265281021595001, 0.08163183182477951, 0.014997439458966255, 0.0003966383810620755, 3.467359783826396e-05, 0.0009558561723679304], [0.07389561831951141, 0.00020063506963197142, 0.00036372541217133403, 0.0016754217213019729, 0.00023393449373543262, 0.0005504963919520378, 0.00013764100731350482, 4.866508606937714e-05, 0.002255277009680867, 0.00013179796223994344, 0.0009575420408509672, 0.024181334301829338, 0.5397708415985107, 0.3449937105178833, 0.006616031285375357, 0.0003300385142210871, 0.003657291177660227], [0.2204533964395523, 0.0014500131364911795, 0.0001964420371223241, 0.00010653816570993513, 6.076391218812205e-05, 0.00023710961977485567, 3.652758459793404e-05, 2.269806464028079e-05, 0.0007382851326838136, 0.00014259836461860687, 2.0684687115135603e-05, 0.00023706506181042641, 0.019701587036252022, 0.6781007051467896, 0.060226570814847946, 0.002976943738758564, 0.015292058698832989], [0.9199901223182678, 0.008011292666196823, 0.0006773861241526902, 0.0002690139808692038, 0.0001248049666173756, 0.0004705950850620866, 0.00030268330010585487, 0.00012253946624696255, 0.0017638558056205511, 0.000359797035343945, 2.0281862816773355e-05, 2.8241032850928605e-05, 0.0002823210961651057, 0.007347555831074715, 0.015699291601777077, 0.008378030732274055, 0.036152441054582596]], [[0.9978406429290771, 0.00011925151920877397, 0.0016092193545773625, 0.00013301437138579786, 2.2027106751920655e-05, 5.232667535892688e-05, 2.5703395294840448e-05, 4.942137820762582e-05, 8.158062883012462e-06, 1.35425289045088e-05, 1.1349892474754597e-06, 2.4876499082893133e-05, 5.181487267691409e-06, 4.688846820499748e-05, 1.3019774087297264e-05, 3.3104165595432278e-06, 3.225059845135547e-05], [8.979030098998919e-06, 3.896623912424957e-09, 5.4202651256218815e-09, 2.543145442770057e-14, 1.101031903995818e-13, 2.0076509085840272e-13, 2.3550812341954774e-11, 2.934307657964652e-11, 0.9934830069541931, 4.8199296116824275e-12, 7.507496957003673e-14, 1.364648682684183e-13, 1.21502970445303e-12, 9.09517686858985e-12, 4.394645758409865e-11, 8.093931747705715e-14, 0.0065079620108008385], [4.1906554315573885e-07, 0.9999994039535522, 7.34803551338814e-09, 1.1345141714969031e-08, 3.385365035304334e-17, 6.2080984409716884e-15, 3.1602278138272037e-18, 3.0666432934700616e-12, 1.1275758105000477e-09, 1.3559458977852046e-07, 7.147400726825737e-11, 3.397338562815405e-13, 6.513183191430216e-15, 5.192420492765228e-17, 3.594293265796189e-12, 3.731144896084587e-14, 3.875924026175426e-10], [5.224077312959707e-07, 9.750529272878339e-09, 0.9999995231628418, 1.1000453881138128e-08, 2.6140032360899568e-09, 2.9892975907752455e-16, 2.1034500204575069e-16, 2.1213622526628732e-17, 1.2590438414061822e-10, 1.475635585945767e-12, 4.228627725755274e-10, 1.2593409821903823e-11, 5.000276722625513e-14, 1.238122140924359e-15, 6.925083878735194e-14, 9.1514862636706e-15, 2.93911339710462e-10], [4.6030545490793884e-05, 2.293247462148429e-06, 0.00037161048385314643, 0.9995773434638977, 2.250132183689857e-06, 4.6300823441924877e-07, 5.316659579699345e-16, 2.3741115478159887e-14, 7.435826428842053e-16, 1.0979859599649644e-12, 1.7454149375952877e-15, 3.145248950175983e-09, 1.821642100672486e-14, 1.6304959769494753e-12, 1.5849924030994804e-15, 5.612808259619281e-14, 3.4754887856536243e-09], [0.018579285591840744, 4.151894539977663e-12, 6.140186451375484e-05, 9.829395821725484e-06, 0.9812160134315491, 2.487194251443725e-05, 0.0001041195064317435, 5.1184369243006955e-11, 3.86299880972274e-09, 2.127676949459103e-17, 5.345292893206566e-15, 5.917247486268706e-13, 2.375515062436051e-10, 5.136434055863504e-10, 2.9389792682854576e-11, 8.277491647841473e-13, 4.442789759195875e-06], [0.00012907169002573937, 3.5032698245704257e-15, 1.1614941322103667e-13, 3.358269751174703e-08, 1.654805998896336e-07, 0.9998706579208374, 5.506277744871113e-08, 4.730205205305538e-08, 2.6334917728987465e-17, 2.3540642062779234e-17, 7.126719301338613e-25, 2.448989567402712e-16, 1.5626280863140067e-16, 1.6481727094230791e-10, 7.419276463843888e-16, 2.4820565094362135e-17, 5.739518544001189e-16], [7.92926311987685e-06, 4.2648854283247606e-15, 3.9308125846090544e-14, 1.0462367158335564e-14, 2.5681021753598543e-08, 6.90549359205761e-06, 0.999983549118042, 9.731803629620117e-07, 5.952467745373724e-07, 3.804324392265917e-15, 6.027423586935047e-17, 1.3984100368862222e-18, 1.7570112031961571e-12, 2.003625130392317e-12, 2.1574479702746174e-10, 7.453508771011579e-15, 4.912495323722288e-12], [0.0004670645284932107, 3.789615732330276e-09, 3.1329287580005027e-13, 4.771542929109425e-14, 2.4122488251012873e-15, 1.0435915100970306e-05, 8.471471664961427e-05, 0.9993988275527954, 3.6443841509026242e-06, 3.527200533426367e-05, 9.416418952511754e-17, 4.360459967411726e-15, 1.809690391671345e-16, 1.2652847519722954e-12, 1.009537180414466e-12, 1.8396963368926683e-13, 5.700012927341248e-15], [4.028221312069036e-09, 1.202604639136129e-12, 5.910990199777455e-15, 7.949550923721157e-24, 2.0833208137356815e-22, 2.415849996843477e-19, 1.5831309874148047e-10, 1.0074910683499638e-08, 0.9999998807907104, 1.615383666830894e-07, 1.190192722155814e-09, 1.7299311210874502e-20, 6.997273829999383e-18, 5.581980270214859e-22, 7.324843619290703e-15, 3.2802178063035334e-19, 9.522662606370469e-13], [9.274425671890185e-11, 9.278203205731472e-13, 1.9859090500534693e-12, 5.480665447994227e-20, 2.703900293551721e-27, 1.5144368390267484e-21, 1.143353135113929e-21, 1.096773886988256e-11, 9.49169276509565e-09, 1.0, 2.2638714514133795e-10, 3.048254981763421e-10, 1.5336042657574464e-21, 5.671920510829641e-21, 6.195612070538979e-22, 3.577947121378247e-20, 3.6804470777357844e-18], [4.601445198204601e-07, 1.4353030985958526e-09, 3.6727996644003724e-07, 1.6840390843972375e-12, 2.4918963191308993e-17, 1.0714103736119974e-20, 2.0580576757746107e-19, 9.888555117311301e-17, 5.2989868493114045e-08, 4.423784957907628e-06, 0.9999934434890747, 1.3396468148130225e-06, 8.184388278209553e-09, 9.511902892160588e-18, 8.20213173638798e-15, 6.785533817008679e-21, 2.9895818893371784e-12], [1.781740266437737e-08, 3.1141718994802435e-15, 3.094352329924277e-09, 9.614233020815988e-11, 1.4511063520499662e-14, 7.01376949886214e-16, 5.623298527462219e-20, 2.6621659888328972e-17, 6.566792991922904e-17, 2.1402211114462943e-09, 2.3257107351071227e-09, 0.9999998807907104, 1.085264216271753e-07, 1.4982251883566278e-08, 1.3446764504692265e-16, 2.0569484782719654e-19, 5.4941092267491395e-18], [1.9992752640973777e-05, 2.909532424016925e-13, 5.3876687833298575e-11, 2.260905240802913e-08, 2.989041902878853e-09, 7.952740896377541e-12, 4.779488436967849e-14, 5.2451502789652784e-17, 7.312851009186121e-16, 1.1709769921625633e-16, 1.7135370899978852e-10, 2.909276417994988e-06, 0.9999676942825317, 8.07928154245019e-06, 1.2562693427753402e-06, 8.65050026256669e-16, 1.073124054895569e-11], [1.1599305253184866e-05, 1.2786926262297639e-14, 2.75421300349743e-11, 1.9026799450219678e-13, 1.1895821784221883e-12, 6.454959483592759e-11, 4.586023401309536e-12, 9.211971463418678e-12, 5.12880831842643e-16, 1.4757607706391077e-14, 2.3657686051503956e-18, 1.2648217584398935e-08, 1.933645080498536e-06, 0.9999861717224121, 2.531755569634697e-07, 4.590228197542956e-10, 2.0696248873215174e-14], [6.81937308399938e-05, 2.973534266037525e-11, 1.0895241143744211e-13, 2.5913077785025837e-15, 1.2421710642913529e-15, 2.205678565139757e-12, 1.773802354998466e-10, 1.0491045532301513e-10, 1.1577308122595609e-12, 4.1619739427882377e-16, 7.44212949547887e-19, 2.283783632712968e-18, 3.6335732200853954e-09, 1.1618001281021861e-06, 0.9999302625656128, 3.769626744087873e-07, 2.6891315840771313e-08], [0.0007783960900269449, 3.822862026936491e-09, 3.6788537727261428e-06, 1.6344290504344272e-11, 5.106468091257976e-13, 1.0013295054234206e-10, 4.988924551252438e-11, 1.547768420095963e-07, 1.083850897920513e-09, 5.798336815132643e-07, 1.8211692868813287e-14, 9.820046685538042e-12, 9.017669965784292e-13, 2.7481069082568865e-06, 0.00014535938680637628, 0.9988910555839539, 0.00017812862643040717]], [[0.6867114305496216, 0.03072221577167511, 0.02288508228957653, 0.03828873857855797, 0.010716172866523266, 0.01141773909330368, 0.004283017944544554, 0.03079269640147686, 0.038320280611515045, 0.013301149010658264, 0.0077605461701750755, 0.013062524609267712, 0.012182185426354408, 0.021070564165711403, 0.007635727524757385, 0.010611308738589287, 0.04023851454257965], [0.9179489612579346, 0.01180310919880867, 0.010726666077971458, 0.020051773637533188, 0.0016027606325224042, 0.004612643271684647, 0.0002809829020407051, 0.0002525901945773512, 0.024664320051670074, 0.00020162669534329325, 0.0012812917120754719, 0.0029853179585188627, 0.0005285842344164848, 0.00023236988636199385, 0.0008858073852024972, 0.00021149087115190923, 0.0017296596197411418], [0.8211691379547119, 0.1309223175048828, 0.024959741160273552, 0.006833124440163374, 0.00022249194444157183, 0.001361209899187088, 6.993339047767222e-05, 0.0012610647827386856, 0.006858004257082939, 3.9932550862431526e-05, 3.187872425769456e-05, 7.340813317568973e-05, 7.717863627476618e-05, 2.593474528111983e-05, 0.002406905870884657, 2.8805574402213097e-05, 0.003658830188214779], [0.6250025033950806, 0.025590239092707634, 0.02464127726852894, 0.032638270407915115, 0.12564685940742493, 0.0638093426823616, 0.004042367916554213, 0.0011176529806107283, 0.07262792438268661, 0.0007836133008822799, 0.0019296242389827967, 0.0032756892032921314, 0.002491659950464964, 0.0004455614252947271, 0.00024836932425387204, 0.0004241968272253871, 0.015284932218492031], [0.10142362862825394, 0.015944037586450577, 0.0013855933211743832, 0.7803941369056702, 0.006138871423900127, 0.06482014805078506, 0.005172446835786104, 0.0024370690807700157, 0.011203977279365063, 0.0002616133715491742, 4.450437336345203e-05, 0.0017202859744429588, 0.0003087419318035245, 0.00047019548946991563, 0.00026256879209540784, 0.0014795943861827254, 0.006532443221658468], [0.6328158974647522, 0.002295407000929117, 0.008679562248289585, 0.006556634325534105, 0.06341486424207687, 0.001312406500801444, 0.11151009052991867, 0.013993396423757076, 0.1289055198431015, 0.00012364305439405143, 0.00030478736152872443, 8.412752504227683e-05, 0.00044975971104577184, 0.00020423531532287598, 0.0006169237312860787, 0.0003424381138756871, 0.028390269726514816], [0.030852865427732468, 0.00012281769886612892, 9.478269930696115e-05, 0.006045677233487368, 2.0646064513130113e-05, 0.9589614272117615, 3.609429040807299e-05, 0.0012943459441885352, 0.002023724839091301, 9.979544847737998e-05, 1.600839095772244e-05, 3.708043368533254e-05, 1.3899812074669171e-06, 1.0249133083561901e-05, 1.7678674339549616e-05, 1.8422400898998603e-05, 0.00034701148979365826], [0.13162577152252197, 0.0018182883504778147, 0.0007394116837531328, 0.0040082866325974464, 0.0031610361766070127, 0.033398039638996124, 0.031590502709150314, 0.022854074835777283, 0.7127038836479187, 0.029326019808650017, 0.006909247953444719, 0.0010558917419984937, 0.001110812765546143, 0.0002692130801733583, 0.0013846646761521697, 0.0005927095771767199, 0.017452197149395943], [0.8541693687438965, 0.0031623607501387596, 0.00033561396412551403, 0.0018735644407570362, 8.419633377343416e-05, 0.0016818540170788765, 0.000544621201697737, 0.025828152894973755, 0.10088209807872772, 0.00603360403329134, 0.002171572297811508, 0.0023209508508443832, 0.00017480627866461873, 3.198076956323348e-05, 1.4696759535581805e-05, 1.0519379429752007e-05, 0.0006798626272939146], [0.5440881252288818, 0.002226114273071289, 0.0004809642268810421, 0.0008448027074337006, 0.0015203584916889668, 3.912287138518877e-05, 0.016177812591195107, 0.003808376146480441, 0.2657618224620819, 0.008333654142916203, 0.1362420916557312, 0.010320399887859821, 0.007747404742985964, 0.0007216338999569416, 3.8542049878742546e-05, 2.5408138753846288e-05, 0.0016234160866588354], [0.45468011498451233, 0.001125458860769868, 9.822353604249656e-05, 0.0008718791068531573, 7.856896445446182e-06, 8.684596832608804e-05, 6.943345215404406e-05, 0.0007444634102284908, 0.07735700160264969, 0.36891835927963257, 0.0070504918694496155, 0.08684717118740082, 0.0007881558267399669, 0.0004438000323716551, 0.0002631079696584493, 8.639064617455006e-05, 0.0005612584645859897], [0.054494284093379974, 0.00015698189963586628, 0.0003893310495186597, 4.77485591545701e-05, 3.832458605756983e-05, 3.2978691706375685e-06, 3.5208902318117907e-06, 0.0001223939034389332, 0.005355996545404196, 0.0006238847854547203, 0.012749784626066685, 0.0008052944904193282, 0.9209931492805481, 0.0007772065000608563, 0.002841440960764885, 1.2346135008556303e-05, 0.0005850294837728143], [0.1705039143562317, 0.001200605765916407, 0.00021320053201634437, 0.00028567147091962397, 0.00032327102962881327, 0.00017610772920306772, 9.03454129002057e-05, 0.00015771057223901153, 0.002141034696251154, 0.0010794708505272865, 0.001194193260744214, 0.7603306770324707, 0.0014369402779266238, 0.05168207362294197, 0.004313220269978046, 0.003552077105268836, 0.0013194206403568387], [0.04980429634451866, 2.7052323275711387e-05, 0.00019509704725351185, 5.3726187616121024e-05, 6.828049663454294e-06, 1.8254033420816995e-05, 2.514758762117708e-06, 1.1881355021614581e-05, 0.00025059940526261926, 0.00022432715923059732, 5.080715345684439e-05, 0.00113384157884866, 0.0008250142564065754, 0.0022441083565354347, 0.9214968681335449, 0.00994529202580452, 0.013709497638046741], [0.09360872954130173, 9.496775419393089e-06, 0.00033224793151021004, 7.093108433764428e-05, 0.00012873514788225293, 6.449621287174523e-05, 9.584928920958191e-05, 3.930669481633231e-05, 7.742291199974716e-05, 3.6834146612818586e-06, 1.5239354979712516e-05, 0.0010560369119048119, 0.00017052976181730628, 0.8894801139831543, 0.0011918795062229037, 0.006346599198877811, 0.007308706175535917], [0.4327191412448883, 0.00019548767886590213, 0.00016073616279754788, 0.0006966596120037138, 0.001061582355760038, 0.0007304280297830701, 0.00014839984942227602, 5.163986133993603e-05, 0.001229947665706277, 2.6323972633690573e-05, 2.657203731359914e-05, 0.0001833403221098706, 0.002696598181501031, 0.003388036508113146, 0.004975316114723682, 0.005887418519705534, 0.5458222031593323], [0.8934411406517029, 0.00021064466272946447, 0.0003912361862603575, 0.0004131930763833225, 0.0001941204973263666, 0.00041724773473106325, 0.00017503774142824113, 0.0018019293202087283, 0.0008540275157429278, 3.493497206363827e-05, 1.9186065401299857e-05, 0.0002491232589818537, 0.00016850190877448767, 0.001038654358126223, 0.0015139169991016388, 0.00833853054791689, 0.09073840081691742]], [[0.9886454343795776, 0.0011779565829783678, 0.00030400737887248397, 0.00012165625230409205, 2.9719922167714685e-05, 0.000114607231807895, 0.00015266070840880275, 0.0002697186137083918, 0.002555631333962083, 5.1056675147265196e-05, 5.5865521062514745e-06, 4.5394292101264e-05, 5.57652092538774e-05, 0.00024598665186204016, 0.00025159225333482027, 6.50939327897504e-05, 0.0059081739746034145], [0.00012312506441958249, 2.2491219624498626e-06, 0.9998682737350464, 3.7476127090485534e-06, 1.1516051472426625e-06, 1.6988759010683196e-10, 4.189681934718692e-11, 5.6954840149670005e-11, 2.943820334166958e-07, 6.281051412315719e-08, 3.7893823900958523e-07, 6.439719868467364e-07, 2.0168966496925123e-09, 1.6085531795440033e-09, 1.2656582726311427e-10, 3.04882030732756e-09, 7.335481910786257e-08], [0.0019646044820547104, 1.8304528566659428e-05, 3.488785978333908e-06, 0.9979130625724792, 5.8246841945219785e-05, 2.2545918909600005e-05, 2.2775170638311693e-10, 6.466739643773423e-11, 2.0568549641275524e-10, 3.695548311810626e-10, 3.671797088600215e-08, 6.804237273172475e-06, 7.631212611158844e-06, 3.785282842727611e-08, 1.2182895581247521e-08, 4.082504299895984e-12, 5.236968718236312e-06], [0.0014229671796783805, 3.69457173188259e-11, 3.710270539158955e-05, 2.158892311854288e-05, 0.9980875849723816, 0.0003797092940658331, 2.448420309519861e-05, 1.357150086755965e-10, 1.4164611705780317e-09, 3.958717322726695e-15, 1.1113107829807678e-11, 8.269280016293123e-08, 1.0931212273135316e-05, 1.5374325812445022e-05, 1.5234522976470544e-08, 7.316957803538138e-12, 1.6359697596612932e-08], [0.00010283046867698431, 5.913301098781076e-11, 1.2800245238753227e-11, 9.958495866158046e-06, 1.0289192687196191e-05, 0.9997897744178772, 8.527067984687164e-05, 9.051705092133489e-07, 1.158867793393803e-11, 1.2823685798142581e-14, 1.2882969117960207e-17, 4.103716498560228e-12, 1.4342118603849485e-09, 9.564984111420927e-07, 1.5141912168559202e-09, 1.2919617632667357e-12, 1.3474682480918432e-10], [3.761385960387997e-05, 1.7626241178431146e-12, 5.928518960474083e-12, 1.2972305521441463e-12, 1.1677327194092868e-07, 1.5900121070444584e-05, 0.9999305009841919, 3.7730426356574753e-06, 1.2042067282891367e-05, 1.27425210682576e-13, 6.690619229704573e-15, 5.625537026058322e-16, 6.16997728949964e-12, 2.721539105188242e-10, 1.069576649470605e-09, 7.119462137883392e-12, 2.1790073911898133e-10], [5.474664067151025e-05, 3.172784701632736e-08, 4.725575399738835e-13, 4.002094228933162e-12, 4.103583792214316e-13, 0.0003697780193760991, 1.7827973351813853e-05, 0.9990984201431274, 0.0004525601107161492, 6.681837930955226e-06, 8.784787066079373e-15, 7.419378425434914e-15, 5.240268600450147e-14, 5.104410227829703e-10, 2.7146327408189563e-09, 1.6195658147921677e-09, 1.612212030543958e-09], [6.210646461113356e-06, 2.05234627514983e-07, 1.123528505786453e-07, 4.893497065894259e-12, 1.1849732306501437e-10, 2.0365622077633816e-08, 5.126334508531727e-05, 0.009265629574656487, 0.9870928525924683, 0.0035647419281303883, 1.7849451978690922e-05, 3.0845964671399884e-11, 6.780086908575456e-11, 2.4968964396077098e-11, 7.69648238474474e-08, 4.4828155409959436e-08, 1.0285099278917187e-06], [0.9257515668869019, 2.1175487745495047e-06, 1.5206325088001904e-06, 4.09737950235467e-08, 1.8180952349091534e-14, 1.0640440750719904e-09, 9.174758175412023e-12, 5.0516191549832e-06, 0.0008269921527244151, 0.07340732961893082, 6.836831971668289e-07, 4.149583219259512e-06, 1.4148986886633463e-12, 7.536693491516644e-12, 4.740169194661359e-12, 1.550774092473617e-11, 3.890842492637603e-07], [1.8508901575842174e-06, 2.19125206868398e-09, 1.6795565898064524e-05, 4.536809150579302e-09, 2.7801302926455662e-11, 3.343717616427922e-15, 1.422884271344571e-12, 3.5772039085231466e-13, 9.085576493816916e-06, 8.683572332301992e-07, 0.9999451637268066, 2.6155770683544688e-05, 1.4885438304190757e-07, 9.907500438544742e-14, 3.834627927690182e-12, 1.0071887510750173e-14, 1.7108680694377654e-08], [2.8517765713331755e-06, 4.181531856883858e-11, 3.278168207998533e-07, 1.257287465250556e-07, 6.659325868518806e-13, 1.7481118549239616e-12, 3.512389619863998e-18, 1.8118530764263396e-13, 2.7467795832986086e-12, 1.58328248289763e-06, 7.254570277837047e-07, 0.9999924898147583, 1.8362860600973363e-06, 7.260941004005872e-08, 8.790926022067894e-14, 4.011585095887809e-16, 1.305729070873174e-12], [1.3433592357614543e-05, 9.030181658854775e-13, 7.340586472004418e-10, 2.924488873290443e-09, 2.183284486534376e-08, 3.50359606778039e-12, 2.0744859823007555e-12, 5.561343892996826e-15, 7.704284259169025e-12, 5.834889371664339e-15, 9.12531206154199e-08, 4.6762429519731086e-06, 0.9999698400497437, 1.1746075870178174e-05, 1.2869058707565273e-07, 8.500858128148824e-16, 5.203892872174265e-11], [7.652844033145811e-06, 6.385651989820884e-12, 1.0935914673826375e-10, 1.7228612980701996e-10, 7.213994158983272e-12, 3.6203240405541237e-09, 6.669143969711966e-12, 4.3078252076611534e-10, 1.1984286176283665e-12, 3.90581664233558e-12, 7.16956723346594e-15, 5.807954721603892e-07, 1.4438900507229846e-05, 0.9999547004699707, 2.269754077133257e-05, 3.352676358758799e-08, 3.5850558632866125e-11], [0.001580658252350986, 1.1428853696759944e-10, 1.6795747084796808e-11, 2.48450513634646e-11, 2.938254917150829e-10, 2.7266062740949337e-09, 9.963819991298806e-08, 3.9182912470181464e-10, 2.169834312226726e-09, 2.3822000348359094e-14, 1.8689402510405767e-14, 1.1611832372374065e-12, 8.90751471160911e-06, 0.00099822913762182, 0.9974008798599243, 3.966835265600821e-06, 7.24479059499572e-06], [0.01810457557439804, 6.616645720214365e-08, 5.0183452913188376e-06, 2.132491339068565e-08, 8.615103075371167e-10, 1.1104132369155195e-07, 1.575727104352609e-08, 8.059056426645839e-07, 8.521518424231544e-08, 5.861375029780902e-08, 5.377814079471355e-13, 4.49807391333934e-09, 5.026326910240186e-09, 0.02058822102844715, 0.005779499653726816, 0.9524587392807007, 0.0030627641826868057], [0.0002292962744832039, 3.981947827025323e-10, 8.661012884658703e-08, 7.519721734183804e-09, 1.5828169885878651e-09, 2.20777884862855e-09, 1.6159351634570385e-10, 5.391893043160678e-10, 2.5385523017007472e-08, 1.093281645769828e-10, 2.876014704167318e-11, 6.462725862278751e-13, 1.7219453293804143e-11, 8.177224453120857e-10, 3.931522951461375e-05, 2.5519990231259726e-05, 0.9997057318687439], [0.9933745265007019, 2.431813431180707e-11, 3.42266503139399e-06, 7.352741135946417e-07, 1.4506482237663931e-08, 4.0371310205955524e-07, 3.690414085433247e-10, 2.0913482057238753e-09, 7.683404468217248e-10, 5.55042789507354e-10, 1.2906146420674225e-12, 1.5136542685922905e-07, 1.1890407929093794e-11, 6.337234736975006e-08, 1.3905949725057098e-09, 1.3694237566141965e-07, 0.006620652042329311]], [[0.8630772829055786, 0.009417934343218803, 0.023290077224373817, 0.011665173806250095, 0.004272020887583494, 0.008473897352814674, 0.006163272075355053, 0.024672338739037514, 0.007038861978799105, 0.0032842769287526608, 0.004253109451383352, 0.006838890723884106, 0.002599535509943962, 0.011256331577897072, 0.008555570617318153, 0.002235301537439227, 0.0029058922082185745], [0.3920648992061615, 0.052510641515254974, 0.09347162395715714, 0.05435951054096222, 0.012896507047116756, 0.029805241152644157, 0.029427027329802513, 0.1072259396314621, 0.07465437799692154, 0.04705985635519028, 0.043424081057310104, 0.0070302775129675865, 0.010759469121694565, 0.009716746397316456, 0.0157957524061203, 0.008702083490788937, 0.011095934547483921], [0.549708902835846, 0.020483342930674553, 0.001213102601468563, 0.0254861731082201, 0.023106595501303673, 0.08964689075946808, 0.02495274506509304, 0.05637064576148987, 0.08471304178237915, 0.006005365401506424, 0.002833570120856166, 0.021683407947421074, 0.007548775989562273, 0.04268113523721695, 0.018044063821434975, 0.006976840551942587, 0.018545404076576233], [0.5503023266792297, 0.030575549229979515, 0.026888040825724602, 0.019520802423357964, 0.013726988807320595, 0.035793207585811615, 0.032544586807489395, 0.14805740118026733, 0.07116218656301498, 0.012592713348567486, 0.0042679328471422195, 0.0068765124306082726, 0.005832963157445192, 0.01444137655198574, 0.01589852198958397, 0.004487735219299793, 0.007031257729977369], [0.45880764722824097, 0.030589710921049118, 0.02685512602329254, 0.014284702017903328, 0.009987078607082367, 0.16840608417987823, 0.05472039803862572, 0.08392486721277237, 0.0615713894367218, 0.025903776288032532, 0.0033701432403177023, 0.0076616848818957806, 0.010998652316629887, 0.012767758220434189, 0.02170509472489357, 0.0039957123808562756, 0.004450083244591951], [0.5898685455322266, 0.01875513419508934, 0.012980069033801556, 0.025802338495850563, 0.021997399628162384, 0.0052882228046655655, 0.037984080612659454, 0.1341247409582138, 0.09574691206216812, 0.0033742880914360285, 0.0042791469022631645, 0.004489787854254246, 0.004475981462746859, 0.0124308867380023, 0.018316278234124184, 0.003949243109673262, 0.0061368742026388645], [0.810656726360321, 0.011328445747494698, 0.006232826504856348, 0.006166239269077778, 0.005784434266388416, 0.017217343673110008, 0.0182981938123703, 0.04530853405594826, 0.03496453911066055, 0.01318723801523447, 0.0025726647581905127, 0.0038032219745218754, 0.0030547098722308874, 0.008291657082736492, 0.008166318759322166, 0.0016105305403470993, 0.0033563056495040655], [0.3907400667667389, 0.04912613704800606, 0.023248184472322464, 0.06526510417461395, 0.011706170625984669, 0.044962625950574875, 0.016534950584173203, 0.085541270673275, 0.12448907643556595, 0.02289278246462345, 0.019575482234358788, 0.030194755643606186, 0.012327072210609913, 0.025540387257933617, 0.027823053300380707, 0.018777035176753998, 0.03125588595867157], [0.8035562634468079, 0.012781054712831974, 0.024935845285654068, 0.01797124184668064, 0.007260740268975496, 0.030758274719119072, 0.014644631184637547, 0.04623901844024658, 0.018935518339276314, 0.0028259160462766886, 0.002181886462494731, 0.0034745356533676386, 0.002745936391875148, 0.004514575935900211, 0.004851344507187605, 0.001148574985563755, 0.001174572971649468], [0.2772272825241089, 0.018499623984098434, 0.006594883743673563, 0.005694271996617317, 0.004406025167554617, 0.00955114234238863, 0.00837589893490076, 0.20061449706554413, 0.04854036495089531, 0.012919547036290169, 0.03929435461759567, 0.05826476588845253, 0.024818187579512596, 0.01629597134888172, 0.05150747671723366, 0.06774308532476425, 0.1496526598930359], [0.11926595121622086, 0.009793884120881557, 0.01636076159775257, 0.03312721848487854, 0.0016426455695182085, 0.00883167702704668, 0.007008750922977924, 0.07547267526388168, 0.04695062339305878, 0.0369415283203125, 0.10659143328666687, 0.041053466498851776, 0.02049694024026394, 0.02732241153717041, 0.023360444232821465, 0.2281906008720398, 0.1975889503955841], [0.25112053751945496, 0.0043646590784192085, 0.007442587986588478, 0.01092055719345808, 0.0013913180446252227, 0.006583517417311668, 0.007620566058903933, 0.05494378134608269, 0.011677935719490051, 0.05883876234292984, 0.07948844134807587, 0.08321394771337509, 0.03127668797969818, 0.08211177587509155, 0.14281412959098816, 0.10061800479888916, 0.06557272374629974], [0.5414526462554932, 0.01744280755519867, 0.00881566945463419, 0.002870401134714484, 0.0020797024480998516, 0.013437996618449688, 0.018094586208462715, 0.08082153648138046, 0.03871343284845352, 0.024520857259631157, 0.03407527133822441, 0.04352911189198494, 0.00524491909891367, 0.016903532668948174, 0.04117078706622124, 0.021592337638139725, 0.08923429995775223], [0.5520836114883423, 0.009979329071938992, 0.03555531054735184, 0.01862558163702488, 0.004722306504845619, 0.006640487350523472, 0.011093690991401672, 0.04547552019357681, 0.015431882813572884, 0.0323222391307354, 0.0627950131893158, 0.029029030352830887, 0.024998832494020462, 0.015789857134222984, 0.041054617613554, 0.02850533463060856, 0.0658973753452301], [0.8022099733352661, 0.004681755322962999, 0.0013911783462390304, 0.004345548804849386, 0.0005341732176020741, 0.0030271909199655056, 0.0032198047265410423, 0.018615253269672394, 0.01314855832606554, 0.01037565153092146, 0.010216180235147476, 0.035438038408756256, 0.004374670330435038, 0.021702168509364128, 0.008919978514313698, 0.012024350464344025, 0.04577553644776344], [0.4718855321407318, 0.004046672489494085, 0.00351886753924191, 0.002074547577649355, 0.0004978472134098411, 0.001010275911539793, 0.0022205645218491554, 0.08876756578683853, 0.01454891636967659, 0.021205205470323563, 0.046378012746572495, 0.045198991894721985, 0.015986425802111626, 0.02271859720349312, 0.06791386753320694, 0.03636806085705757, 0.15566006302833557], [0.6865681409835815, 0.003424773458391428, 0.00630495510995388, 0.003833218477666378, 0.0011550461640581489, 0.0033491929061710835, 0.0034860004670917988, 0.03877848759293556, 0.004662151448428631, 0.018234021961688995, 0.023170528933405876, 0.03786152973771095, 0.02380889467895031, 0.030500659719109535, 0.05944862216711044, 0.0246978010982275, 0.030715957283973694]], [[0.5741932392120361, 0.012504521757364273, 0.0032251307275146246, 0.008242546580731869, 0.0012622808571904898, 0.001786747365258634, 0.003126392839476466, 0.053322870284318924, 0.026428010314702988, 0.008219636976718903, 0.023518644273281097, 0.04498233273625374, 0.010571406222879887, 0.016603585332632065, 0.026691682636737823, 0.050330497324466705, 0.13499043881893158], [0.20268955826759338, 0.08628605306148529, 0.05451688915491104, 0.09015201032161713, 0.045336656272411346, 0.02782316878437996, 0.0411144495010376, 0.10645437240600586, 0.19452407956123352, 0.008587893098592758, 0.033243097364902496, 0.016469962894916534, 0.005892107263207436, 0.008873704820871353, 0.014095144346356392, 0.02834934927523136, 0.03559156134724617], [0.3195413649082184, 0.051214396953582764, 0.014866630546748638, 0.0767570286989212, 0.025990968570113182, 0.028270505368709564, 0.025723908096551895, 0.11174130439758301, 0.15366213023662567, 0.007536351680755615, 0.01829458400607109, 0.04470610246062279, 0.017729828134179115, 0.02007473260164261, 0.02074720710515976, 0.017658770084381104, 0.04548421874642372], [0.3675423264503479, 0.0774235650897026, 0.03533709794282913, 0.014811630360782146, 0.035400137305259705, 0.09095746278762817, 0.049049243330955505, 0.03926897421479225, 0.15405672788619995, 0.006111237220466137, 0.015658603981137276, 0.01747303269803524, 0.01916801743209362, 0.023795347660779953, 0.022851433604955673, 0.0030534700490534306, 0.02804175205528736], [0.6945473551750183, 0.0503956563770771, 0.010528292506933212, 0.022740384563803673, 0.007032043766230345, 0.020692061632871628, 0.012314744293689728, 0.019432220607995987, 0.11901033669710159, 0.002985910512506962, 0.003830861998721957, 0.005278422962874174, 0.006301358807832003, 0.0023673754185438156, 0.007373325526714325, 0.0015319056110456586, 0.013637778349220753], [0.3998269736766815, 0.12892471253871918, 0.011652396060526371, 0.16042250394821167, 0.03744393214583397, 0.010028867051005363, 0.021646952256560326, 0.04304993897676468, 0.11173513531684875, 0.01357713621109724, 0.00540901068598032, 0.015569718554615974, 0.005956452339887619, 0.0009468344505876303, 0.0038878561463207006, 0.015587719157338142, 0.01433385070413351], [0.7311561107635498, 0.05060664191842079, 0.002645167987793684, 0.01531821396201849, 0.002850837307050824, 0.005628698039799929, 0.0022328824270516634, 0.06881626695394516, 0.08304977416992188, 0.002250721212476492, 0.00232191220857203, 0.008067918010056019, 0.000833215017337352, 0.0005995264509692788, 0.004286202136427164, 0.0019492965657263994, 0.01738661341369152], [0.8169430494308472, 0.020087622106075287, 0.0022841242607682943, 0.011465916410088539, 0.0016324989264830947, 0.001390981487929821, 0.004851995967328548, 0.03758576884865761, 0.06289665400981903, 0.0023080070968717337, 0.0048829419538378716, 0.007877598516643047, 0.0034686748404055834, 0.0005604965263046324, 0.003596033900976181, 0.003210047259926796, 0.014957590959966183], [0.6632129549980164, 0.05847909674048424, 0.002494317013770342, 0.009768658317625523, 0.002031132346019149, 0.002338845981284976, 0.010559553280472755, 0.17106842994689941, 0.04927026852965355, 0.0006172613357193768, 0.0017056178767234087, 0.007440407760441303, 0.0018978295847773552, 0.0005519973929040134, 0.005243014544248581, 0.0032876520417630672, 0.01003282330930233], [0.16094478964805603, 0.00748651335015893, 0.007378927897661924, 0.008781597949564457, 0.0065528214909136295, 0.0027143454644829035, 0.007923530414700508, 0.01616482064127922, 0.04190852865576744, 0.010545618832111359, 0.11055044084787369, 0.11459872871637344, 0.09084811806678772, 0.011741390451788902, 0.06833772361278534, 0.05536438152194023, 0.2781578004360199], [0.026192594319581985, 0.013724654912948608, 0.022249190136790276, 0.0027842477429658175, 0.0033832727931439877, 0.02037051133811474, 0.008052701130509377, 0.01027065608650446, 0.032563187181949615, 0.017691710963845253, 0.2830744683742523, 0.047081612050533295, 0.008216802962124348, 0.07539959251880646, 0.09133248776197433, 0.09005158394575119, 0.24756070971488953], [0.4662875533103943, 0.008070702664554119, 0.0023745433427393436, 0.0030211512930691242, 0.0015193852595984936, 0.003101447131484747, 0.003250443609431386, 0.01653403602540493, 0.01975741982460022, 0.018577340990304947, 0.057349395006895065, 0.04241904988884926, 0.04069127142429352, 0.03419868275523186, 0.04333440959453583, 0.03803611919283867, 0.2014770358800888], [0.3830494284629822, 0.021092059090733528, 0.006160008255392313, 0.01472031231969595, 0.005040530581027269, 0.014023304916918278, 0.004884559661149979, 0.023080378770828247, 0.03539381921291351, 0.04051860421895981, 0.024517381563782692, 0.07320301979780197, 0.01678163930773735, 0.037979718297719955, 0.07490969449281693, 0.05666041374206543, 0.16798508167266846], [0.5306687355041504, 0.010774489492177963, 0.002410204615443945, 0.006903544533997774, 0.0037025348283350468, 0.006171224173158407, 0.0035918622743338346, 0.031854502856731415, 0.029176101088523865, 0.01521233655512333, 0.05001373961567879, 0.05131158605217934, 0.026519812643527985, 0.004878588952124119, 0.03188614174723625, 0.018365615978837013, 0.17655903100967407], [0.6199820041656494, 0.013295439071953297, 0.004271314013749361, 0.005349303130060434, 0.0022974428720772266, 0.002429089741781354, 0.006736415904015303, 0.05976027995347977, 0.018455782905220985, 0.013699924573302269, 0.03175954893231392, 0.08787105232477188, 0.03301326557993889, 0.015318159013986588, 0.013956508599221706, 0.005432327277958393, 0.06637221574783325], [0.15816448628902435, 0.013517145998775959, 0.006362810265272856, 0.0011450161691755056, 0.0023240549489855766, 0.01284533180296421, 0.008271090686321259, 0.011708036996424198, 0.01966729760169983, 0.020595623180270195, 0.1772778034210205, 0.12107231467962265, 0.0669911801815033, 0.10927382856607437, 0.12395750731229782, 0.005718687083572149, 0.14110778272151947], [0.6879887580871582, 0.006788651458919048, 0.00042258354369550943, 0.0009651940781623125, 0.00018285839178133756, 0.00029145751614123583, 0.0017378886695951223, 0.05891162157058716, 0.011072656139731407, 0.0024355612695217133, 0.009591028094291687, 0.055832333862781525, 0.00789013970643282, 0.003163659945130348, 0.024065982550382614, 0.01920158974826336, 0.10945805162191391]], [[0.8776012659072876, 0.00662739435210824, 0.010952865704894066, 0.018764959648251534, 0.0007523531094193459, 0.0034415407571941614, 0.003725002519786358, 0.02912301942706108, 0.02777864597737789, 0.001914686756208539, 0.0032124517019838095, 0.0017763579962775111, 0.000871374795679003, 0.002051367424428463, 0.0025103408843278885, 0.0015429703053086996, 0.007353329565376043], [0.25119268894195557, 0.0333518423140049, 0.02163023129105568, 0.16566267609596252, 0.01169008668512106, 0.015552700497210026, 0.008446073159575462, 0.2172682136297226, 0.10930515825748444, 0.01435747742652893, 0.05421922728419304, 0.02296730875968933, 0.02153152972459793, 0.0068146781995892525, 0.010145852342247963, 0.009537152014672756, 0.026327045634388924], [0.6220285296440125, 0.02608654648065567, 0.01771676167845726, 0.08517983555793762, 0.024062316864728928, 0.01849222742021084, 0.013419565744698048, 0.03866398707032204, 0.05563565716147423, 0.0010692670475691557, 0.008543822914361954, 0.03143540397286415, 0.005866530351340771, 0.008571469224989414, 0.020987262949347496, 0.007115433923900127, 0.015125509351491928], [0.07823210954666138, 0.04072333127260208, 0.004590645432472229, 0.1454194188117981, 0.007617459166795015, 0.019016485661268234, 0.008790089748799801, 0.09965246170759201, 0.1428917795419693, 0.0385059155523777, 0.19105876982212067, 0.02594279870390892, 0.006845252588391304, 0.007760895416140556, 0.007776272017508745, 0.1252707540988922, 0.04990566149353981], [0.2561625838279724, 0.07746205478906631, 0.00812583975493908, 0.03874392807483673, 0.0030905823223292828, 0.012665940448641777, 0.00525591941550374, 0.17169280350208282, 0.30743277072906494, 0.008990831673145294, 0.04920628294348717, 0.007357138209044933, 0.0024497273843735456, 0.0008408415596932173, 0.002509200247004628, 0.0045184604823589325, 0.04349511116743088], [0.3294699192047119, 0.06063373386859894, 0.019198186695575714, 0.06185320392251015, 0.010971380397677422, 0.00912288948893547, 0.011579442769289017, 0.08766274899244308, 0.2896593511104584, 0.0032091380562633276, 0.0656164288520813, 0.00411161407828331, 0.003682821523398161, 0.0010671907803043723, 0.0027477291878312826, 0.0019078386249020696, 0.03750643879175186], [0.4176972508430481, 0.0192489642649889, 0.009520499967038631, 0.030035965144634247, 0.004126968793570995, 0.00760663254186511, 0.003234869334846735, 0.13726726174354553, 0.20067276060581207, 0.003377969842404127, 0.05162574723362923, 0.022239336743950844, 0.003773950506001711, 0.0024406807497143745, 0.005954192019999027, 0.004451571963727474, 0.07672533392906189], [0.16225913166999817, 0.05023084953427315, 0.009315179660916328, 0.09372425824403763, 0.035310257226228714, 0.017323270440101624, 0.0196775421500206, 0.26553502678871155, 0.08117852360010147, 0.04301990941166878, 0.036015741527080536, 0.024799132719635963, 0.05605807527899742, 0.01838778145611286, 0.03537435829639435, 0.019140124320983887, 0.032650768756866455], [0.7915427088737488, 0.006852870341390371, 0.003815377363935113, 0.020265713334083557, 0.0007379118469543755, 0.002701258985325694, 0.0016143325483426452, 0.11479590088129044, 0.030341999605298042, 0.0035393075086176395, 0.00794365257024765, 0.0013714618980884552, 0.0011070661712437868, 0.001627924619242549, 0.00333821726962924, 0.0017490566242486238, 0.00665521202608943], [0.18424901366233826, 0.032660216093063354, 0.001610534847714007, 0.037450630217790604, 0.005117237102240324, 0.007694576401263475, 0.0043250881135463715, 0.18914370238780975, 0.08759146183729172, 0.018523186445236206, 0.2292221188545227, 0.024372251704335213, 0.019012661650776863, 0.010590841993689537, 0.008312288671731949, 0.040300317108631134, 0.0998239517211914], [0.27753785252571106, 0.011008027009665966, 0.006587690208107233, 0.07437366247177124, 0.004310634918510914, 0.001986040035262704, 0.003545790910720825, 0.13499712944030762, 0.07163666188716888, 0.05909854546189308, 0.053116004914045334, 0.05388970673084259, 0.017586898058652878, 0.005337381269782782, 0.01151321828365326, 0.06378660351037979, 0.14968818426132202], [0.34596556425094604, 0.013450653292238712, 0.0028331198263913393, 0.008632787503302097, 0.0009093458065763116, 0.002470043720677495, 0.0037378643173724413, 0.05057791993021965, 0.07203326374292374, 0.010891157202422619, 0.11645850539207458, 0.05118606239557266, 0.009040330536663532, 0.013287249021232128, 0.00977716688066721, 0.02126220427453518, 0.2674867808818817], [0.49361008405685425, 0.014012736268341541, 0.002963628154247999, 0.002339404309168458, 0.0002618416037876159, 0.0020891716703772545, 0.0004461451608221978, 0.048211365938186646, 0.09939205646514893, 0.007201544474810362, 0.049710649996995926, 0.012938178144395351, 0.0016245770966634154, 0.00184776505921036, 0.00574436504393816, 0.006187069229781628, 0.2514195144176483], [0.6466578841209412, 0.022861506789922714, 0.0025711418129503727, 0.005744633264839649, 0.0004050146380905062, 0.0008056352380663157, 0.0021389066241681576, 0.01559662725776434, 0.0623030923306942, 0.002340165199711919, 0.048181820660829544, 0.01722092181444168, 0.002311774529516697, 0.0007722843438386917, 0.006738431751728058, 0.0065169264562428, 0.15683335065841675], [0.9146207571029663, 0.004662979394197464, 0.0035277309361845255, 0.0004554034094326198, 3.6263110814616084e-05, 0.000576634774915874, 0.00046026718337088823, 0.01739397458732128, 0.011538085527718067, 0.0004840571782551706, 0.011648942716419697, 0.003326687728986144, 0.0012034180108457804, 0.0019723689183592796, 0.0024822023697197437, 0.00037819697172380984, 0.025231916457414627], [0.06585510075092316, 0.003417092375457287, 0.000556586601305753, 0.03965763747692108, 0.0020394448656588793, 0.001654840656556189, 0.0034783778246492147, 0.10150887817144394, 0.0511421374976635, 0.049500998109579086, 0.2559291422367096, 0.09452560544013977, 0.037460122257471085, 0.024754220619797707, 0.018473124131560326, 0.057586729526519775, 0.19246000051498413], [0.7843999862670898, 0.002134111011400819, 0.0014758622273802757, 0.005656109191477299, 0.000305965164443478, 0.000720208918210119, 0.0008353911689482629, 0.06391479074954987, 0.016644706949591637, 0.014945917762815952, 0.02131113037467003, 0.005655888468027115, 0.0034914505667984486, 0.0072882394306361675, 0.01481031533330679, 0.008134969510138035, 0.04827490448951721]], [[0.8576313257217407, 0.0035589467734098434, 0.0023343702778220177, 0.011643779464066029, 0.0023435167968273163, 0.0009843561565503478, 0.004606286529451609, 0.0310975369066, 0.014209676533937454, 0.0026605057064443827, 0.009000306017696857, 0.01042757648974657, 0.005360001232475042, 0.010293062776327133, 0.0031872615218162537, 0.008197681978344917, 0.02246376872062683], [0.8489042520523071, 0.004750748630613089, 0.0015615337761119008, 0.07200687378644943, 0.006777613889425993, 0.001286262646317482, 0.003625889541581273, 0.033543311059474945, 0.012470915913581848, 0.000747190264519304, 0.002796000335365534, 0.002933111973106861, 0.0009169327677227557, 0.0008911656332202256, 0.00020687858341261744, 0.004317204933613539, 0.002263969974592328], [0.7480865716934204, 0.032843753695487976, 0.010309809818863869, 0.004586915951222181, 0.011372610926628113, 0.002150770276784897, 0.00414713378995657, 0.054756972938776016, 0.07125963270664215, 0.005582462530583143, 0.002373775467276573, 0.0020448798313736916, 0.0013284224551171064, 0.01117971446365118, 0.014428600668907166, 0.001823707134462893, 0.021724402904510498], [0.7276181578636169, 0.016752418130636215, 0.003972754348069429, 0.0015012893127277493, 0.03757693991065025, 0.038614653050899506, 0.019139813259243965, 0.05786258727312088, 0.040642306208610535, 0.0009828616166487336, 0.007196398451924324, 0.019254416227340698, 0.010812829248607159, 0.005125744733959436, 0.004715250805020332, 0.0012710698647424579, 0.0069603631272912025], [0.6681697368621826, 0.007104968652129173, 0.007620250806212425, 0.10908336192369461, 0.0011078156530857086, 0.1432497352361679, 0.0020194146782159805, 0.020140277221798897, 0.019400393590331078, 0.0006289963494054973, 0.0005470628966577351, 0.0010945165995508432, 0.001985864946618676, 0.001582885510288179, 0.0023982792627066374, 0.011197861284017563, 0.0026686417404562235], [0.6687548756599426, 0.005474054720252752, 0.0038148353341966867, 0.016389863565564156, 0.004948354326188564, 0.0005677415756508708, 0.23476062715053558, 0.03413522616028786, 0.0206003375351429, 0.001731404336169362, 0.0013607572764158249, 0.0005741699715144932, 0.0009447954944334924, 0.002901238389313221, 0.0007564186817035079, 0.00022216420620679855, 0.002063155872747302], [0.7011111974716187, 0.004106187727302313, 0.0019048100803047419, 0.006826437544077635, 0.00035246365587227046, 0.18927736580371857, 0.000133782290504314, 0.01854376681149006, 0.05831955000758171, 0.0016027692472562194, 0.00048173958202823997, 0.00042119232239201665, 0.0005566726322285831, 0.0034372766967862844, 0.0009736423962749541, 0.0003709353331942111, 0.011580321937799454], [0.7954146265983582, 0.009297670796513557, 0.0054098195396363735, 0.01658659242093563, 0.006253013852983713, 0.0019941539503633976, 0.030341122299432755, 0.04850636422634125, 0.0278739295899868, 0.0051125953905284405, 0.0073864213190972805, 0.009928753599524498, 0.015728585422039032, 0.007736681029200554, 0.002530696103349328, 0.004698095843195915, 0.005200940649956465], [0.9561313390731812, 0.0008841339149512351, 0.0004002015630248934, 0.002304780762642622, 0.00020183758169878274, 9.033607057062909e-05, 0.0011839112266898155, 0.019468409940600395, 0.011608057655394077, 0.00035967526491731405, 0.001262657344341278, 0.0012706874404102564, 0.0008979036938399076, 0.0009642917430028319, 0.00011343483492964879, 0.00038954554474912584, 0.0024687419645488262], [0.8086466193199158, 0.0018076999112963676, 0.0026719255838543177, 0.005714831408113241, 0.004672871436923742, 0.008148260414600372, 0.002197334775701165, 0.04261137917637825, 0.019266145303845406, 0.000403700047172606, 0.02434423379600048, 0.007482303772121668, 0.008064993657171726, 0.017821308225393295, 0.004434784408658743, 0.0186977069824934, 0.02301398105919361], [0.6064297556877136, 0.0015887290937826037, 0.000828389311209321, 0.05019272863864899, 0.0010525919497013092, 0.0038572647608816624, 0.0011728303506970406, 0.04813549295067787, 0.0318947434425354, 0.014875762164592743, 0.0029208455234766006, 0.01893950253725052, 0.0057894461788237095, 0.005113658029586077, 0.01368883065879345, 0.13799335062503815, 0.05552607774734497], [0.3405577838420868, 0.004098796751350164, 0.004238568712025881, 0.03632776439189911, 0.002307007322087884, 0.014611685648560524, 0.007300506345927715, 0.05870509892702103, 0.02840389870107174, 0.0657443106174469, 0.02394588105380535, 0.0008405373664572835, 0.09982885420322418, 0.025732532143592834, 0.013917254284024239, 0.20898152887821198, 0.0644579753279686], [0.2727213203907013, 0.0013750094221904874, 0.000548491021618247, 0.0075427331030368805, 0.011776926927268505, 0.017849700525403023, 0.005563509184867144, 0.016161516308784485, 0.017250923439860344, 0.007373419124633074, 0.0034782993607223034, 0.05577393248677254, 0.007277036085724831, 0.010300948284566402, 0.07283075153827667, 0.461722731590271, 0.03045269474387169], [0.017791414633393288, 6.897769344504923e-05, 0.00028609062428586185, 1.345938380836742e-05, 4.6272616600617766e-05, 4.5617958676302806e-05, 0.0002721014025155455, 0.0011928243329748511, 0.0016312560765072703, 0.00018967319920193404, 0.000623972387984395, 0.0014647259376943111, 0.0023989758919924498, 2.5030429242178798e-05, 0.9709601402282715, 8.178821735782549e-05, 0.0029077206272631884], [0.043708283454179764, 6.214966560946777e-05, 0.00013578722428064793, 0.0006393397343344986, 3.555925650289282e-05, 3.491224197205156e-05, 9.225129178958014e-05, 0.002938215620815754, 0.0009116427390836179, 0.00023621173750143498, 0.00020486157154664397, 0.0003908589715138078, 7.04294943716377e-05, 0.9395917057991028, 1.505894852016354e-05, 0.008266828954219818, 0.00266584986820817], [0.4000444710254669, 0.0009383959113620222, 0.0004060991923324764, 0.0021434330847114325, 0.005039292387664318, 0.001639435300603509, 0.0036752354353666306, 0.04843703657388687, 0.015555567108094692, 0.002455744193866849, 0.023927772417664528, 0.03450984135270119, 0.150416299700737, 0.00659153051674366, 0.23078298568725586, 0.0025820424780249596, 0.07085484266281128], [0.9490056037902832, 0.00023433785827364773, 0.00012116568541387096, 0.0005305696395225823, 5.323494042386301e-05, 2.215595122834202e-05, 0.0002171236847061664, 0.009182914160192013, 0.004246760159730911, 0.0007433689315803349, 0.0029321876354515553, 0.00365649932064116, 0.0028904969803988934, 0.0029285966884344816, 0.0006135914591141045, 0.002952106297016144, 0.0196691881865263]], [[0.3735335171222687, 0.038137149065732956, 0.03146331384778023, 0.028175292536616325, 0.0326337032020092, 0.05052849277853966, 0.013374547474086285, 0.04622263461351395, 0.13894814252853394, 0.0477592758834362, 0.024808010086417198, 0.029793299734592438, 0.01637670025229454, 0.013817003928124905, 0.0061633531004190445, 0.012795994058251381, 0.09546954929828644], [0.22967460751533508, 0.034670423716306686, 0.041244275867938995, 0.04330058395862579, 0.04595201462507248, 0.022269340232014656, 0.02730032242834568, 0.0400838665664196, 0.1635829210281372, 0.01997598260641098, 0.019254615530371666, 0.02283354476094246, 0.015857456251978874, 0.02877051569521427, 0.024520542472600937, 0.029684290289878845, 0.19102467596530914], [0.45324236154556274, 0.03315805271267891, 0.006221025716513395, 0.02173622138798237, 0.00608855253085494, 0.00733786029741168, 0.012667971663177013, 0.06111518666148186, 0.08922546356916428, 0.005172321107238531, 0.05202239379286766, 0.0599580779671669, 0.0017671817913651466, 0.01614348217844963, 0.014242874458432198, 0.018999941647052765, 0.14090104401111603], [0.16107189655303955, 0.020354239270091057, 0.039148855954408646, 0.04595628380775452, 0.07263963669538498, 0.034465864300727844, 0.040672462433576584, 0.017364749684929848, 0.2517130970954895, 0.013882714323699474, 0.03836634010076523, 0.032069891691207886, 0.004672692157328129, 0.010478120297193527, 0.0032568827737122774, 0.022733552381396294, 0.19115287065505981], [0.2829039990901947, 0.05327393114566803, 0.014372805133461952, 0.026191797107458115, 0.023442428559064865, 0.013819298706948757, 0.015427010133862495, 0.04461078345775604, 0.2218894064426422, 0.00625128298997879, 0.026458971202373505, 0.023577969521284103, 0.008739727549254894, 0.01095854677259922, 0.020010443404316902, 0.011110113933682442, 0.19696158170700073], [0.2120259702205658, 0.02644788846373558, 0.021377813071012497, 0.02652422897517681, 0.017786791548132896, 0.0036319836508482695, 0.0227498859167099, 0.07672607898712158, 0.1642524152994156, 0.004436826799064875, 0.03852701932191849, 0.08026958256959915, 0.005283876322209835, 0.03645509108901024, 0.040931928902864456, 0.01553935743868351, 0.20703327655792236], [0.5835537314414978, 0.014582430012524128, 0.0017409727443009615, 0.0056937201879918575, 0.0018474537646397948, 0.0006850791978649795, 0.001000245800241828, 0.024731658399105072, 0.16851060092449188, 0.0003048207436222583, 0.006129890214651823, 0.003425778355449438, 0.001119274995289743, 0.004436238668859005, 0.0029371757991611958, 0.00416212622076273, 0.17513884603977203], [0.3185100555419922, 0.022960592061281204, 0.012767384760081768, 0.020211584866046906, 0.00849288422614336, 0.008760292083024979, 0.009923161938786507, 0.1465807855129242, 0.11985625326633453, 0.03225841745734215, 0.013813583180308342, 0.02071741595864296, 0.01739857718348503, 0.024038037285208702, 0.04033084586262703, 0.029226355254650116, 0.15415368974208832], [0.20566314458847046, 0.024741927161812782, 0.06761927902698517, 0.028798935934901237, 0.04770471900701523, 0.05940704420208931, 0.048026882112026215, 0.08339041471481323, 0.08626167476177216, 0.052099354565143585, 0.025296296924352646, 0.040977224707603455, 0.03595142066478729, 0.044560398906469345, 0.024285128340125084, 0.019443849101662636, 0.10577233135700226], [0.2313961684703827, 0.01849144510924816, 0.001922601368278265, 0.0031502151396125555, 0.008005749434232712, 0.0010638654930517077, 0.0037781281862407923, 0.008075609803199768, 0.40555480122566223, 5.1496841479092836e-05, 0.007824732922017574, 0.005259424448013306, 0.00016169581795111299, 0.0013910997658967972, 0.0010987307177856565, 0.001134963589720428, 0.30163922905921936], [0.2717990279197693, 0.033821798861026764, 0.006114346440881491, 0.024118369445204735, 0.04741643741726875, 0.014171111397445202, 0.028722183778882027, 0.024612363427877426, 0.24613437056541443, 0.003626033430919051, 0.020228257402777672, 0.0609300434589386, 0.0023989735636860132, 0.005765880458056927, 0.0017772174905985594, 0.008502776734530926, 0.19986100494861603], [0.5097821950912476, 0.04205074533820152, 0.006268296390771866, 0.004365711472928524, 0.007546967826783657, 0.0015135875437408686, 0.009226033464074135, 0.041420575231313705, 0.14671842753887177, 0.0005887121078558266, 0.016627438366413116, 0.017559845000505447, 0.0018705057445913553, 0.00572785921394825, 0.005324434954673052, 0.004192609805613756, 0.17921604216098785], [0.39675262570381165, 0.03287053853273392, 0.004070722032338381, 0.006185806356370449, 0.00849553756415844, 0.0018438195111230016, 0.006622432731091976, 0.01594984158873558, 0.22853876650333405, 0.00048001937102526426, 0.016649842262268066, 0.0107956537976861, 0.001416697516106069, 0.0062671834602952, 0.007340200245380402, 0.004741515498608351, 0.25097888708114624], [0.6560561656951904, 0.05533412843942642, 0.009237045422196388, 0.0037865994963794947, 0.0016252470668405294, 0.001150193391367793, 0.009355983696877956, 0.11712469905614853, 0.0406353659927845, 0.00027285455144010484, 0.010511644184589386, 0.015787869691848755, 0.0010111783631145954, 0.005062878597527742, 0.01514750998467207, 0.004822652321308851, 0.05307795852422714], [0.7575200796127319, 0.042246654629707336, 0.004704935010522604, 0.0019006738439202309, 0.0017903491389006376, 0.0011083963327109814, 0.0017711218679323792, 0.024275122210383415, 0.0655762329697609, 5.6375069107161835e-05, 0.007412794977426529, 0.003333469619974494, 0.0002909736940637231, 0.002818548120558262, 0.0018469386268407106, 0.001622440293431282, 0.08172480762004852], [0.3511054217815399, 0.04247633367776871, 0.020423196256160736, 0.026353580877184868, 0.040917955338954926, 0.014872226864099503, 0.021964456886053085, 0.016227558255195618, 0.2207026481628418, 0.0009688992868177593, 0.033865757286548615, 0.021851586177945137, 0.0020046941936016083, 0.007328392472118139, 0.0027511417865753174, 0.010170768946409225, 0.1660153567790985], [0.25313547253608704, 0.03037654422223568, 0.05789206176996231, 0.021365966647863388, 0.028907455503940582, 0.027612630277872086, 0.03802206739783287, 0.11806131154298782, 0.06643538922071457, 0.02784380130469799, 0.03212764859199524, 0.06105039641261101, 0.022889504209160805, 0.05149906128644943, 0.03397819399833679, 0.02152746357023716, 0.10727506130933762]], [[0.07105383276939392, 0.012199198827147484, 0.0025606751441955566, 0.014098068699240685, 0.008684908971190453, 0.006134395487606525, 0.0025567002594470978, 0.02494713105261326, 0.2922031283378601, 0.018601419404149055, 0.01195479929447174, 0.017571862787008286, 0.03227439522743225, 0.014315432868897915, 0.009152935817837715, 0.019747136160731316, 0.44194403290748596], [0.08587107807397842, 0.12017085403203964, 0.016761885955929756, 0.04377687722444534, 0.07643292844295502, 0.09050150215625763, 0.012779103592038155, 0.08882007002830505, 0.2766035795211792, 0.06306277960538864, 0.009938867762684822, 0.027706030756235123, 0.014983905479311943, 0.010762662626802921, 0.00418244069442153, 0.005504508037120104, 0.052140891551971436], [0.2587868571281433, 0.04579025134444237, 0.08576206117868423, 0.021298151463270187, 0.09947577118873596, 0.12108191102743149, 0.05031105875968933, 0.04778400808572769, 0.0487239807844162, 0.04223991930484772, 0.008862549439072609, 0.034561045467853546, 0.04788665845990181, 0.03858169913291931, 0.030462663620710373, 0.004667768720537424, 0.013723610900342464], [0.12059859931468964, 0.1198631227016449, 0.05578691139817238, 0.04377533495426178, 0.08134181797504425, 0.07904281467199326, 0.04682939872145653, 0.1108696460723877, 0.17096678912639618, 0.01799362152814865, 0.03737979754805565, 0.02985372766852379, 0.017130425199866295, 0.02200266160070896, 0.01299415621906519, 0.006473066285252571, 0.02709820866584778], [0.5149787068367004, 0.05842049419879913, 0.008388128131628036, 0.02404666878283024, 0.019166626036167145, 0.015623842366039753, 0.026531415060162544, 0.11565623432397842, 0.15655408799648285, 0.010565543547272682, 0.00266649154946208, 0.006114508491009474, 0.007601200602948666, 0.007083969656378031, 0.0029878446366637945, 0.002527581760659814, 0.02108660526573658], [0.3521033525466919, 0.056938089430332184, 0.03832908347249031, 0.04835940897464752, 0.04904603585600853, 0.0739038959145546, 0.019523030146956444, 0.0829160213470459, 0.15739896893501282, 0.03231349214911461, 0.004474566783756018, 0.00917704775929451, 0.014867352321743965, 0.022781047970056534, 0.007837261073291302, 0.004463817458599806, 0.025567548349499702], [0.7653680443763733, 0.030797362327575684, 0.007287879008799791, 0.018698200583457947, 0.011425950564444065, 0.00856215599924326, 0.009349917992949486, 0.03901175409555435, 0.06177561730146408, 0.003178230719640851, 0.0034053113777190447, 0.0029300337191671133, 0.004756912123411894, 0.007815472781658173, 0.008469609543681145, 0.0030167042277753353, 0.014150852337479591], [0.11037973314523697, 0.060056522488594055, 0.03372233361005783, 0.01978255808353424, 0.048144903033971786, 0.04038994386792183, 0.03741992637515068, 0.30095505714416504, 0.09967333823442459, 0.07136626541614532, 0.03025778755545616, 0.0460725836455822, 0.024612154811620712, 0.01792958751320839, 0.013087261468172073, 0.007668165490031242, 0.03848179802298546], [0.05031547322869301, 0.03718769922852516, 0.0047621093690395355, 0.027348151430487633, 0.02537132240831852, 0.021788131445646286, 0.006878376938402653, 0.11521006375551224, 0.5184921622276306, 0.030065657570958138, 0.0035236235707998276, 0.007906991988420486, 0.006021547131240368, 0.007876724936068058, 0.003299053991213441, 0.005652575753629208, 0.12830035388469696], [0.05373314023017883, 0.12956614792346954, 0.01833966374397278, 0.04342518746852875, 0.026944400742650032, 0.019927769899368286, 0.008102282881736755, 0.08040305227041245, 0.0348784513771534, 0.11208333820104599, 0.15393389761447906, 0.07611002773046494, 0.062354959547519684, 0.05040214955806732, 0.0070692203007638454, 0.04670001193881035, 0.07602640241384506], [0.11677586287260056, 0.018950417637825012, 0.01927580125629902, 0.03196021914482117, 0.015552995726466179, 0.01696234568953514, 0.01217556744813919, 0.05748158320784569, 0.028038235381245613, 0.013849584385752678, 0.038224197924137115, 0.20729359984397888, 0.08527719229459763, 0.1308830976486206, 0.014936280436813831, 0.07443074882030487, 0.11793221533298492], [0.5650006532669067, 0.017072495073080063, 0.006416097283363342, 0.011153541505336761, 0.007141956593841314, 0.005084770265966654, 0.007194835226982832, 0.051024436950683594, 0.022067274898290634, 0.02353779785335064, 0.023769183084368706, 0.04172907769680023, 0.044813789427280426, 0.05069916322827339, 0.015975650399923325, 0.0264284685254097, 0.08089090138673782], [0.4541967511177063, 0.02689855918288231, 0.00857709813863039, 0.012632212601602077, 0.007487334311008453, 0.01462599541991949, 0.011586816050112247, 0.07194138318300247, 0.028957685455679893, 0.09007612615823746, 0.010899905115365982, 0.07838040590286255, 0.019270729273557663, 0.05440118908882141, 0.025514716282486916, 0.01896488294005394, 0.0655881017446518], [0.8418929576873779, 0.005041684024035931, 0.007445808965712786, 0.006985174026340246, 0.0038929677102714777, 0.005131320562213659, 0.002545701339840889, 0.006035570055246353, 0.00789889506995678, 0.0086777713149786, 0.0031826156191527843, 0.020852331072092056, 0.020300066098570824, 0.01988161914050579, 0.013894321396946907, 0.00928952544927597, 0.017051778733730316], [0.9161903858184814, 0.001196592696942389, 0.0031136570032685995, 0.002729585627093911, 0.0028279514517635107, 0.002311522141098976, 0.0031989377457648516, 0.006149820052087307, 0.0023341660853475332, 0.004117388743907213, 0.0006532202241942286, 0.010346027091145515, 0.016925079748034477, 0.012516843155026436, 0.005383260548114777, 0.0031019896268844604, 0.006903583183884621], [0.2593376338481903, 0.03832323104143143, 0.017367225140333176, 0.02358234114944935, 0.026675889268517494, 0.02338641881942749, 0.012839704751968384, 0.06736445426940918, 0.03166091442108154, 0.05768147110939026, 0.049425240606069565, 0.07149685174226761, 0.05951106548309326, 0.10963805764913559, 0.0229447390884161, 0.03814031183719635, 0.09062444418668747], [0.07423175871372223, 0.012813451699912548, 0.0010853252606466413, 0.00595083087682724, 0.003418268635869026, 0.002421505516394973, 0.0014076873194426298, 0.0592389851808548, 0.10726946592330933, 0.08401983976364136, 0.011291115544736385, 0.023983735591173172, 0.01690945029258728, 0.024086609482765198, 0.00714537687599659, 0.020114701241254807, 0.5446118116378784]], [[0.13619019091129303, 0.07917975634336472, 0.03191395476460457, 0.04470569267868996, 0.02777736820280552, 0.04517613351345062, 0.0329587385058403, 0.12386400252580643, 0.05149879306554794, 0.07249888777732849, 0.04246753454208374, 0.058487556874752045, 0.056250590831041336, 0.05078359320759773, 0.049788471311330795, 0.0382404625415802, 0.05821827054023743], [0.21094262599945068, 0.06072332337498665, 0.03154246509075165, 0.039620619267225266, 0.05296778678894043, 0.05292663723230362, 0.05951029062271118, 0.11615844815969467, 0.14391648769378662, 0.03390298783779144, 0.01596452109515667, 0.0435335636138916, 0.01744716987013817, 0.021830270066857338, 0.027046184986829758, 0.0157967247068882, 0.05616976320743561], [0.34229591488838196, 0.05349472165107727, 0.00044914547470398247, 0.04652364179491997, 0.01909130997955799, 0.0064160870388150215, 0.05236538127064705, 0.037946734577417374, 0.21899962425231934, 0.010216470807790756, 0.006880542263388634, 0.015377227216959, 0.02915443666279316, 0.02698325365781784, 0.03277679905295372, 0.02056245319545269, 0.08046623319387436], [0.1226445883512497, 0.040392011404037476, 0.02360180765390396, 0.03356942534446716, 0.0331718809902668, 0.14128978550434113, 0.034561868757009506, 0.1505764275789261, 0.0805952250957489, 0.09598302841186523, 0.010058676823973656, 0.04970911145210266, 0.03134823217988014, 0.03427494689822197, 0.053327612578868866, 0.03709784522652626, 0.0277975145727396], [0.1335122436285019, 0.046422168612480164, 0.045643869787454605, 0.06108638271689415, 0.003401512047275901, 0.1501297801733017, 0.1097494512796402, 0.054603055119514465, 0.17308315634727478, 0.04177732393145561, 0.008323014713823795, 0.08298651874065399, 0.008997861295938492, 0.017226438969373703, 0.009730478748679161, 0.0076748076826334, 0.04565189406275749], [0.13850677013397217, 0.0639893040060997, 0.00850216206163168, 0.09153279662132263, 0.03693598508834839, 0.0058687045238912106, 0.05740666389465332, 0.10620807111263275, 0.19798418879508972, 0.06629233807325363, 0.021415511146187782, 0.041560862213373184, 0.0216192826628685, 0.04996025562286377, 0.0258440300822258, 0.011483612470328808, 0.0548895038664341], [0.2302083969116211, 0.05530844256281853, 0.05514807254076004, 0.050639744848012924, 0.013585008680820465, 0.08023469895124435, 0.05732687935233116, 0.05652659386396408, 0.18080158531665802, 0.03227950260043144, 0.0084602115675807, 0.0704965889453888, 0.016363631933927536, 0.008549617603421211, 0.013112160377204418, 0.0107195395976305, 0.060239389538764954], [0.25972920656204224, 0.06390157341957092, 0.019162608310580254, 0.04985982924699783, 0.041011158376932144, 0.045371364802122116, 0.034367289394140244, 0.15957415103912354, 0.06398110091686249, 0.028466304764151573, 0.013219913467764854, 0.03698974847793579, 0.026138199493288994, 0.053603410720825195, 0.021687759086489677, 0.0411180704832077, 0.04181830585002899], [0.09034276008605957, 0.07754916697740555, 0.03454980626702309, 0.06535446643829346, 0.03883584216237068, 0.10664921253919601, 0.03620612248778343, 0.20718428492546082, 0.0517723374068737, 0.05870107188820839, 0.028977826237678528, 0.037805333733558655, 0.054174941033124924, 0.033762793987989426, 0.02283877320587635, 0.026870692148804665, 0.028424501419067383], [0.21625906229019165, 0.04045278951525688, 0.012858305126428604, 0.10989797860383987, 0.020503783598542213, 0.04206298291683197, 0.05962509289383888, 0.10306674987077713, 0.11533786356449127, 0.0013563567772507668, 0.0038155068177729845, 0.08406057208776474, 0.011772611178457737, 0.014186138287186623, 0.0073732552118599415, 0.04508255794644356, 0.11228843033313751], [0.09747344255447388, 0.01777718774974346, 0.004821004346013069, 0.04646192863583565, 0.017839256674051285, 0.01810486800968647, 0.03567995876073837, 0.0609109029173851, 0.08252067863941193, 0.01140142884105444, 0.005305478814989328, 0.1423553228378296, 0.09637564420700073, 0.03626321256160736, 0.07755101472139359, 0.08356667309999466, 0.16559194028377533], [0.11249347031116486, 0.023766499012708664, 0.023114655166864395, 0.042992446571588516, 0.032619692385196686, 0.05845371633768082, 0.07248760759830475, 0.036161720752716064, 0.07719957083463669, 0.022553693503141403, 0.01761680096387863, 0.07407406717538834, 0.09231282770633698, 0.020714614540338516, 0.04424132779240608, 0.09275511652231216, 0.15644221007823944], [0.2892049551010132, 0.024716205894947052, 0.010256482288241386, 0.017953963950276375, 0.0005146929761394858, 0.015512811951339245, 0.014164227060973644, 0.05134362354874611, 0.13534921407699585, 0.01808399148285389, 0.013838488608598709, 0.0692896619439125, 0.005127372685819864, 0.04375274479389191, 0.022679675370454788, 0.015939589589834213, 0.252272367477417], [0.18097321689128876, 0.03645959869027138, 0.04169938340783119, 0.03479447960853577, 0.001791298040188849, 0.136783629655838, 0.02464781142771244, 0.026010729372501373, 0.11617446690797806, 0.010181463323533535, 0.02268487960100174, 0.06266524642705917, 0.012716144323348999, 0.001053516985848546, 0.0036807595752179623, 0.05368969589471817, 0.23399367928504944], [0.16878485679626465, 0.041048578917980194, 0.03248143196105957, 0.049241114407777786, 0.008485502563416958, 0.054425302892923355, 0.029646243900060654, 0.029012341052293777, 0.1390765905380249, 0.006958476267755032, 0.027609024196863174, 0.06530915200710297, 0.01951870508491993, 0.006199215073138475, 0.0032057338394224644, 0.030796699225902557, 0.28820106387138367], [0.22168339788913727, 0.01970122568309307, 0.017759354785084724, 0.021183690056204796, 0.003852823516353965, 0.04136800393462181, 0.01090035866945982, 0.0650753527879715, 0.054872192442417145, 0.024630671367049217, 0.011827384121716022, 0.09941930323839188, 0.026330361142754555, 0.06422965973615646, 0.08038948476314545, 0.08413398265838623, 0.15264277160167694], [0.10022874921560287, 0.02577802538871765, 0.011863223277032375, 0.017911396920681, 0.005067610181868076, 0.018355203792452812, 0.009556182660162449, 0.09161453694105148, 0.01999814249575138, 0.08449877798557281, 0.06590288877487183, 0.07416608184576035, 0.12163711339235306, 0.08837532997131348, 0.052650175988674164, 0.09376457333564758, 0.118632011115551]]], [[[0.6822956204414368, 0.035260070115327835, 0.00263024540618062, 0.013483773916959763, 0.010092920623719692, 0.00952314306050539, 0.0016194175696000457, 0.03664538636803627, 0.019463056698441505, 0.022302372381091118, 0.043861303478479385, 0.011156735941767693, 0.0245597492903471, 0.004603949375450611, 0.0038147231098264456, 0.02780424803495407, 0.05088333785533905], [0.3195177912712097, 0.09742715954780579, 0.01119675301015377, 0.12037629634141922, 0.04995123669505119, 0.044034916907548904, 0.011735173873603344, 0.14329250156879425, 0.08690748363733292, 0.013612714596092701, 0.04531298950314522, 0.013159109279513359, 0.01894041895866394, 0.0022922256030142307, 0.0018899071728810668, 0.005071460269391537, 0.015281840227544308], [0.52382892370224, 0.02846101112663746, 0.018757235258817673, 0.03017124906182289, 0.030158022418618202, 0.09563451260328293, 0.007803021930158138, 0.02280348353087902, 0.1261315643787384, 0.011107896454632282, 0.006723277736455202, 0.0013152105966582894, 0.018898582085967064, 0.003657741704955697, 0.013297272846102715, 0.0014744699001312256, 0.05977644398808479], [0.3216986656188965, 0.23807315528392792, 0.0008802164811640978, 0.06642764061689377, 0.04236074537038803, 0.02113865502178669, 0.01180385984480381, 0.1970285326242447, 0.016916584223508835, 0.005837828852236271, 0.026597993448376656, 0.03644804656505585, 0.00785502977669239, 0.0005335125606507063, 0.00025057175662368536, 0.004023133777081966, 0.002125779166817665], [0.45321059226989746, 0.06610734760761261, 0.00047098653158172965, 0.16192032396793365, 0.04743068665266037, 0.01764250174164772, 0.06689406931400299, 0.11394446343183517, 0.011730327270925045, 0.012875119224190712, 0.008049319498240948, 0.015101907774806023, 0.012054195627570152, 0.0011627222411334515, 0.000563008536119014, 0.008045155555009842, 0.002797310473397374], [0.48540663719177246, 0.0315280556678772, 0.0009604609222151339, 0.09195850789546967, 0.06993946433067322, 0.024767903611063957, 0.06700718402862549, 0.14951883256435394, 0.016719719395041466, 0.0143564622849226, 0.007434335071593523, 0.009912626817822456, 0.011083364486694336, 0.003885942278429866, 0.00208507152274251, 0.008306787349283695, 0.005128646735101938], [0.4349879026412964, 0.07053473591804504, 0.0001326032797805965, 0.23243191838264465, 0.08468427509069443, 0.010827518999576569, 0.009237083606421947, 0.095780149102211, 0.0049951933324337006, 0.010793130844831467, 0.007235290016978979, 0.011028170585632324, 0.0046798549592494965, 0.0009857806144282222, 0.00011326972162351012, 0.02063368633389473, 0.00091942009748891], [0.43343231081962585, 0.07787344604730606, 0.0031263334676623344, 0.069603331387043, 0.052730485796928406, 0.015508756041526794, 0.006747057661414146, 0.21662920713424683, 0.024357153102755547, 0.025131117552518845, 0.024896914139389992, 0.014240911230444908, 0.00902417954057455, 0.003260604804381728, 0.0013814592966809869, 0.015226085670292377, 0.006830764468759298], [0.7126644253730774, 0.05738997459411621, 0.0017661815509200096, 0.011781885288655758, 0.02944267727434635, 0.012645489536225796, 0.005664742551743984, 0.11641773581504822, 0.01747857965528965, 0.010960976593196392, 0.004601067863404751, 0.004442916251718998, 0.005712913349270821, 0.0007291765650734305, 0.0007241361308842897, 0.0036139606963843107, 0.0039633456617593765], [0.35545724630355835, 0.015700388699769974, 0.00022701396665070206, 0.047394681721925735, 0.01047397032380104, 0.003791484050452709, 0.0034794039092957973, 0.11609276384115219, 0.017329897731542587, 0.06030169874429703, 0.12431337684392929, 0.11013025045394897, 0.05419253930449486, 0.0029536793008446693, 0.0008693889831192791, 0.04836363345384598, 0.028928592801094055], [0.18819394707679749, 0.031523726880550385, 0.0019991977605968714, 0.03090377151966095, 0.002986564300954342, 0.007773544639348984, 0.0009980795439332724, 0.12662644684314728, 0.07078582048416138, 0.05949152633547783, 0.0713064894080162, 0.06256473064422607, 0.0397312305867672, 0.013424444012343884, 0.0121604660525918, 0.08287225663661957, 0.19665774703025818], [0.44700315594673157, 0.008147265762090683, 0.00018987641669809818, 0.026380542665719986, 0.006153915077447891, 0.0037664221599698067, 0.0018434333615005016, 0.07596214860677719, 0.01489653717726469, 0.03840700909495354, 0.03325706720352173, 0.046473968774080276, 0.060095787048339844, 0.017903203144669533, 0.008452055975794792, 0.1373477578163147, 0.0737197995185852], [0.34166258573532104, 0.014866519719362259, 0.0006122334743849933, 0.017381759360432625, 0.0047426060773432255, 0.005879465024918318, 0.0038198272231966257, 0.03887733817100525, 0.01415393128991127, 0.06591495871543884, 0.029482051730155945, 0.04742943122982979, 0.09581159055233002, 0.05360044166445732, 0.042785268276929855, 0.12945809960365295, 0.093521848320961], [0.3062163293361664, 0.0043711792677640915, 0.0016276920214295387, 0.016264447942376137, 0.0015441137365996838, 0.008248157799243927, 0.001241195946931839, 0.026808761060237885, 0.030627401545643806, 0.010589483194053173, 0.008681464940309525, 0.020977210253477097, 0.028243962675333023, 0.03647366538643837, 0.0943315178155899, 0.21241238713264465, 0.19134104251861572], [0.1210237517952919, 0.002162128919735551, 0.0034830737859010696, 0.008340361528098583, 0.001517640077508986, 0.004227576311677694, 0.0005055739893577993, 0.011009505949914455, 0.03782225772738457, 0.017331713810563087, 0.009642845019698143, 0.021944144740700722, 0.030234074220061302, 0.10904727131128311, 0.11775970458984375, 0.16735392808914185, 0.3365943729877472], [0.5429201126098633, 0.009856241755187511, 8.317088213516399e-05, 0.015544903464615345, 0.0009551475523039699, 0.001194678246974945, 0.0003980295732617378, 0.10956937819719315, 0.007213618606328964, 0.03117157705128193, 0.0459539033472538, 0.05523526668548584, 0.019978677853941917, 0.0040847123600542545, 0.0009635523310862482, 0.10833918303251266, 0.046537794172763824], [0.806210458278656, 0.008082743734121323, 0.000343059393344447, 0.0011954146903008223, 0.002624648390337825, 0.0014450001763179898, 0.0006635795580223203, 0.03913620859384537, 0.005478864535689354, 0.020178085193037987, 0.010771473869681358, 0.009192985482513905, 0.01983797550201416, 0.003090026555582881, 0.005178037099540234, 0.020579298958182335, 0.045992035418748856]], [[0.26030296087265015, 0.024937255308032036, 0.0119309788569808, 0.03835250809788704, 0.007886629551649094, 0.022854356095194817, 0.018406454473733902, 0.02492615021765232, 0.08671466261148453, 0.019164158031344414, 0.034623999148607254, 0.040964607149362564, 0.010998984798789024, 0.07520788908004761, 0.03389676660299301, 0.08578357100486755, 0.2030480057001114], [0.5228820443153381, 0.2498551905155182, 0.0047102575190365314, 0.02850227989256382, 0.001522764447145164, 0.0018293781904503703, 0.007469263859093189, 0.015240908600389957, 0.08303587883710861, 0.005514114163815975, 0.01869751326739788, 0.0015216560568660498, 0.0007400493486784399, 0.0031062287744134665, 0.0019343933090567589, 0.011887768283486366, 0.04155036062002182], [0.5664864778518677, 0.008889389224350452, 0.09324275702238083, 0.004385432228446007, 0.0002986930776387453, 0.0038385335355997086, 0.0002485603035893291, 0.02305116504430771, 0.18619360029697418, 0.004172870423644781, 0.0018810393521562219, 0.000216798041947186, 0.00030662701465189457, 0.0030485582537949085, 0.0008845346746966243, 0.004338380414992571, 0.0985165685415268], [0.2929644286632538, 0.0634969100356102, 0.003967739641666412, 0.3829934597015381, 0.005042236298322678, 0.0014616843545809388, 0.01442265696823597, 0.015202870592474937, 0.07655645906925201, 0.014224136248230934, 0.024202097207307816, 0.0031307926401495934, 0.0019311335636302829, 0.03346136584877968, 0.001373190782032907, 0.03842684626579285, 0.027141958475112915], [0.23808839917182922, 0.010087027214467525, 0.0003861273289658129, 0.014740384183824062, 0.5390181541442871, 0.008710535243153572, 0.03599068522453308, 0.010943606495857239, 0.04784562438726425, 0.006522782146930695, 0.0011998129775747657, 0.0017976046074181795, 0.02926289290189743, 0.0070022395811975, 0.001948303310200572, 0.0015431599458679557, 0.04491274058818817], [0.11473768949508667, 0.000960657955147326, 0.0009823553264141083, 0.0009865137981250882, 0.0003537834854796529, 0.7655156254768372, 0.0008234000415541232, 0.010097494348883629, 0.05844496935606003, 0.0011152173392474651, 0.00046246341662481427, 0.0007048386614769697, 0.00024133393890224397, 0.004020757973194122, 0.0014535851078107953, 0.003951926715672016, 0.035147469490766525], [0.5163162350654602, 0.00897502526640892, 0.0004555540217552334, 0.012591302394866943, 0.011259350925683975, 0.002138142241165042, 0.29595574736595154, 0.01212291605770588, 0.09115639328956604, 0.0022656195797026157, 0.006693446077406406, 0.001294752350077033, 0.002201332012191415, 0.0014744959771633148, 0.0006546106887981296, 0.0012760474346578121, 0.03316907584667206], [0.21852906048297882, 0.08968650549650192, 0.05212351679801941, 0.10586758702993393, 0.0189121775329113, 0.03629008308053017, 0.023462336510419846, 0.093361496925354, 0.1368219405412674, 0.0327131561934948, 0.04305531829595566, 0.01102403923869133, 0.013256549835205078, 0.024074526503682137, 0.00987568125128746, 0.031168457120656967, 0.05977753922343254], [0.6237765550613403, 0.07191742956638336, 0.005616202484816313, 0.04252871498465538, 0.002756607485935092, 0.010773872956633568, 0.004928263369947672, 0.06351715326309204, 0.09769699722528458, 0.003188671311363578, 0.004592030309140682, 0.001247798791155219, 0.0004021433705929667, 0.008964680135250092, 0.0014624991454184055, 0.012995840050280094, 0.043634504079818726], [0.41960352659225464, 0.01913681998848915, 0.0015677883056923747, 0.007768760900944471, 0.003421276342123747, 0.0009994249558076262, 0.0008573529776185751, 0.01781180500984192, 0.22060412168502808, 0.16235463321208954, 0.014189998619258404, 0.0033870653714984655, 0.005030840635299683, 0.000790201302152127, 0.001405485556460917, 0.004889284260571003, 0.11618164926767349], [0.21278835833072662, 0.1617441177368164, 0.002280773827806115, 0.06295441091060638, 0.0023916931822896004, 0.0028469108510762453, 0.0061056348495185375, 0.03518082946538925, 0.02114127017557621, 0.015012288466095924, 0.428611159324646, 0.00602854834869504, 0.0027886908501386642, 0.008689564652740955, 0.0013605465646833181, 0.014249610714614391, 0.015825416892766953], [0.1087644025683403, 0.007666837889701128, 0.0009514890844002366, 0.011494861915707588, 0.008100277744233608, 0.011865037493407726, 0.010352912358939648, 0.014303864911198616, 0.13765114545822144, 0.004660285077989101, 0.011767576448619366, 0.5612844228744507, 0.00652401614934206, 0.008163641206920147, 0.003781902836635709, 0.007013797294348478, 0.08565358817577362], [0.19253849983215332, 0.015032432973384857, 0.0015187135431915522, 0.015387236140668392, 0.10257664322853088, 0.012829083018004894, 0.011811327189207077, 0.03713827580213547, 0.05944398045539856, 0.013319967314600945, 0.007715099025517702, 0.011939016170799732, 0.44796672463417053, 0.011809742078185081, 0.004552720580250025, 0.002404824597761035, 0.0520157590508461], [0.35856541991233826, 0.0008786483085714281, 0.0012833033688366413, 0.004999963100999594, 0.0008144171442836523, 0.0038151931948959827, 0.0007613565539941192, 0.010301255621016026, 0.06564703583717346, 0.0004498498747125268, 0.0006767010781913996, 0.0009487619390711188, 0.0008650294621475041, 0.5057371854782104, 0.002964746905490756, 0.011714909225702286, 0.02957627736032009], [0.16855739057064056, 0.0035048709250986576, 0.0025944223161786795, 0.0023684853222221136, 0.0034197778441011906, 0.007350698113441467, 0.002209746977314353, 0.018640436232089996, 0.055680349469184875, 0.008621187880635262, 0.003783331485465169, 0.004712854977697134, 0.005618084222078323, 0.040853600949048996, 0.5851300954818726, 0.029646925628185272, 0.057307615876197815], [0.4214586317539215, 0.01272890530526638, 0.0037388994824141264, 0.034625470638275146, 0.0009176275343634188, 0.007532259449362755, 0.002153666689991951, 0.031964510679244995, 0.13898687064647675, 0.0074130212888121605, 0.008008171804249287, 0.0033505852334201336, 0.0006066468777135015, 0.04832366108894348, 0.009480200707912445, 0.18003545701503754, 0.08867539465427399], [0.35087811946868896, 0.039255011826753616, 0.019050082191824913, 0.032050490379333496, 0.00489999633282423, 0.01617913320660591, 0.006983624771237373, 0.0962814912199974, 0.23207370936870575, 0.00944092869758606, 0.008303634822368622, 0.002870802767574787, 0.0010940341744571924, 0.021532583981752396, 0.004500772804021835, 0.033830802887678146, 0.12077486515045166]], [[0.22436125576496124, 0.03122175857424736, 0.021436095237731934, 0.014033504761755466, 0.019719915464520454, 0.0338527113199234, 0.012618753127753735, 0.039174940437078476, 0.03941758722066879, 0.3097091019153595, 0.0364307276904583, 0.02144465781748295, 0.03611835464835167, 0.04168879985809326, 0.018086425960063934, 0.03709793463349342, 0.06358738988637924], [0.2595123052597046, 0.13314905762672424, 0.029556741937994957, 0.0541284941136837, 0.02760419435799122, 0.02228226512670517, 0.09031977504491806, 0.16102033853530884, 0.07728604972362518, 0.0170094296336174, 0.03624677658081055, 0.019100148230791092, 0.01108310092240572, 0.026370098814368248, 0.022499585524201393, 0.004521022085100412, 0.008310568518936634], [0.594242513179779, 0.15180082619190216, 0.013355364091694355, 0.013014501892030239, 0.0018408140167593956, 0.0003923088952433318, 0.0116496616974473, 0.16529680788516998, 0.0057604662142694, 0.0007728811469860375, 0.01601817086338997, 0.010109257884323597, 0.001657823333516717, 0.0016253077192232013, 0.009594626724720001, 0.0018021098803728819, 0.0010666298912838101], [0.27030667662620544, 0.13621576130390167, 0.028462644666433334, 0.0646762028336525, 0.02358029969036579, 0.02551363967359066, 0.09418133646249771, 0.11567646265029907, 0.023073725402355194, 0.018290143460035324, 0.07670951634645462, 0.027966663241386414, 0.01960626430809498, 0.028858521953225136, 0.035123687237501144, 0.00953949149698019, 0.002219011075794697], [0.5074316263198853, 0.07996106147766113, 0.002697526477277279, 0.011143394745886326, 0.00106679683085531, 0.0004081881488673389, 0.0045843543484807014, 0.3531482517719269, 0.012267665937542915, 0.0007239445112645626, 0.0043886261992156506, 0.008659426122903824, 0.000407509010983631, 0.0028253772761672735, 0.008663775399327278, 0.0006861094734631479, 0.0009364447323605418], [0.5707200765609741, 0.13657622039318085, 0.01322108879685402, 0.00804736465215683, 0.0021786789875477552, 0.0002577733830548823, 0.00417737290263176, 0.2190672606229782, 0.009484305046498775, 0.0007010713452473283, 0.010957865975797176, 0.006696528289467096, 0.001869760686531663, 0.0015118465526029468, 0.01242093462496996, 0.0005763688823208213, 0.0015355368377640843], [0.4644774794578552, 0.06806331127882004, 0.011435909196734428, 0.03586268797516823, 0.005579446908086538, 0.002100869081914425, 0.008821384981274605, 0.23808692395687103, 0.08800483494997025, 0.0008978701662272215, 0.009406577795743942, 0.03075648471713066, 0.001903757220134139, 0.005021379794925451, 0.01724247634410858, 0.0021622073836624622, 0.010176380164921284], [0.3335186541080475, 0.03827006742358208, 0.013124575838446617, 0.041150301694869995, 0.03460875526070595, 0.015999259427189827, 0.034882307052612305, 0.22065448760986328, 0.106643445789814, 0.017461303621530533, 0.019272973760962486, 0.0266261026263237, 0.015617902390658855, 0.022518768906593323, 0.0036819051019847393, 0.017316684126853943, 0.03865256905555725], [0.48089906573295593, 0.05632786452770233, 0.006751597858965397, 0.02877786196768284, 0.020115992054343224, 0.007723397575318813, 0.02941860258579254, 0.31117892265319824, 0.012199708260595798, 0.004238551948219538, 0.00707376841455698, 0.015346447005867958, 0.003231395734474063, 0.00975171197205782, 0.0037738943938165903, 0.0019818206783384085, 0.0012094136327505112], [0.35051918029785156, 0.0277424193918705, 0.0026206346228718758, 0.00862390361726284, 0.0007308940985240042, 0.0006053828983567655, 0.002039568731561303, 0.18621663749217987, 0.02659977413713932, 0.04654679819941521, 0.0565185509622097, 0.08150777220726013, 0.011012209579348564, 0.01555384136736393, 0.03829077258706093, 0.06883057206869125, 0.07604116201400757], [0.29989585280418396, 0.21211478114128113, 0.012097137980163097, 0.03750472888350487, 0.006688349414616823, 0.004164774902164936, 0.006009112577885389, 0.038700759410858154, 0.012774821370840073, 0.0584508515894413, 0.12515515089035034, 0.05331069603562355, 0.012712017633020878, 0.028217719867825508, 0.027167880907654762, 0.0398469939827919, 0.02518841065466404], [0.8537232875823975, 0.008102361112833023, 0.000321030558552593, 0.0008533833315595984, 6.255933840293437e-05, 9.349741594633088e-05, 0.00017812031728681177, 0.08712994307279587, 0.0029953145422041416, 0.0018041590228676796, 0.00544142909348011, 0.012984873726963997, 0.0007626242586411536, 0.0030534672550857067, 0.004994462709873915, 0.006727222353219986, 0.010772330686450005], [0.7217544913291931, 0.019425155594944954, 0.0007242090068757534, 0.0011370280990377069, 8.95856210263446e-05, 0.00022010953398421407, 0.00036339106736704707, 0.20532137155532837, 0.0035484805703163147, 0.004185807891190052, 0.005644181277602911, 0.015357761643826962, 0.0004456062160898, 0.0018210476264357567, 0.00569745060056448, 0.004917515441775322, 0.009346977807581425], [0.6803311109542847, 0.04388759285211563, 0.010201721452176571, 0.004490840248763561, 0.00011520295083755627, 0.000227678261580877, 0.0004739072173833847, 0.12748093903064728, 0.0055168732069432735, 0.0039052702486515045, 0.005486944690346718, 0.07031803578138351, 0.0003826988395303488, 0.0032799742184579372, 0.01451216172426939, 0.019167032092809677, 0.010222065262496471], [0.7427048087120056, 0.0446072518825531, 0.002733102533966303, 0.0013373729307204485, 0.00011133380030514672, 0.00011317487224005163, 0.0005121941212564707, 0.13273939490318298, 0.004510131198912859, 0.0014771270798519254, 0.004741154611110687, 0.04112107679247856, 0.0005231461836956441, 0.004035986494272947, 0.005976933520287275, 0.003571887733414769, 0.009184031747281551], [0.1489006131887436, 0.013011327013373375, 0.001975643215700984, 0.01670215092599392, 0.003309930209070444, 0.004668704699724913, 0.004907403606921434, 0.0430835522711277, 0.014747639186680317, 0.058971405029296875, 0.04376852512359619, 0.09500115364789963, 0.04765741154551506, 0.17318540811538696, 0.15286332368850708, 0.12580904364585876, 0.051436807960271835], [0.6095574498176575, 0.027133753523230553, 0.0025640218518674374, 0.005627874750643969, 0.002388184890151024, 0.0022122778464108706, 0.004465707577764988, 0.13545842468738556, 0.004957517609000206, 0.020288845524191856, 0.03069455549120903, 0.06566030532121658, 0.012075920589268208, 0.03674916923046112, 0.012515691109001637, 0.015901319682598114, 0.011748884804546833]], [[0.7269570827484131, 0.01789163611829281, 0.00799620058387518, 0.006585173774510622, 0.003356094704940915, 0.005447388626635075, 0.004194266628473997, 0.020981440320611, 0.04622857645153999, 0.005640462040901184, 0.0043085734359920025, 0.004060355946421623, 0.008057504892349243, 0.009216810576617718, 0.006843645591288805, 0.013159217312932014, 0.10907569527626038], [0.006191821303218603, 0.019481344148516655, 0.7337139248847961, 0.20860829949378967, 0.015124008990824223, 0.0032596897799521685, 0.0004418274329509586, 0.0014926388394087553, 0.004156946670264006, 0.0009886649204418063, 0.0014647089410573244, 0.0021933538373559713, 0.0005162816378287971, 0.00037877087015658617, 0.00017860450316220522, 0.0008612748351879418, 0.0009478495921939611], [0.8142242431640625, 0.014280052855610847, 0.03292576223611832, 0.05281565710902214, 0.03126922622323036, 0.022389255464076996, 0.0006104055210016668, 0.004441654775291681, 0.008216227404773235, 0.00015931884991005063, 0.00016934095765464008, 0.00022205487766768783, 0.0016439077444374561, 0.001120731234550476, 0.0002189180813729763, 0.0011454833438619971, 0.014147806912660599], [0.08254825323820114, 0.007273707073181868, 0.007603869307786226, 0.02100532129406929, 0.453010618686676, 0.3249257802963257, 0.024505997076630592, 0.023346200585365295, 0.015324040316045284, 0.00020244077313691378, 8.737038297113031e-05, 0.0003801225684583187, 0.003071874612942338, 0.017686055973172188, 0.0035992234479635954, 0.0017139840638265014, 0.013715008273720741], [0.054695867002010345, 0.0005519826081581414, 0.00016194878844544291, 0.0021179390605539083, 0.01695120520889759, 0.2183791697025299, 0.6605658531188965, 0.037342529743909836, 0.0054132589139044285, 2.2825843188911676e-05, 1.4719857972522732e-05, 5.231525847193552e-06, 0.0014829125721007586, 0.0001251043431693688, 0.00023160403361544013, 0.00025381791056133807, 0.0016839680029079318], [0.4551451802253723, 0.0027073537930846214, 0.0006436753319576383, 0.0011482848785817623, 0.011742557398974895, 0.05413889139890671, 0.09749658405780792, 0.2391180545091629, 0.1270204335451126, 0.0009941611206158996, 0.00025643015396781266, 3.041134732484352e-05, 0.0021528557408601046, 0.0004836696607526392, 0.001114178798161447, 0.0004480742500163615, 0.0053592342883348465], [0.20939292013645172, 0.002777647925540805, 0.00017728346574585885, 7.00855816830881e-05, 0.0017265296773985028, 0.014145530760288239, 0.0033955376129597425, 0.06417017430067062, 0.6963275671005249, 0.0028625503182411194, 0.0006282955291680992, 1.543108191981446e-05, 0.00041611684719100595, 4.507028279476799e-05, 0.00018130823445972055, 0.00011334386363159865, 0.003554614493623376], [0.2170998603105545, 0.012498983182013035, 0.004142874386161566, 0.0018711151788011193, 0.0015724966069683433, 0.008559465408325195, 0.016058972105383873, 0.06742995232343674, 0.5090731978416443, 0.11453909426927567, 0.031752388924360275, 0.0026793505530804396, 0.0011193726677447557, 0.0008053377969190478, 0.001154088880866766, 0.0009438367560505867, 0.008699722588062286], [0.9664286971092224, 0.001338437432423234, 0.00028009433299303055, 0.0003492311807349324, 6.550805119331926e-05, 0.00017494872736278921, 7.833373820176348e-05, 0.001981660258024931, 0.020104890689253807, 0.005200414452701807, 0.0019855231512337923, 0.0007284999010153115, 0.00019032112322747707, 5.707058880943805e-05, 2.724666046560742e-05, 8.845505362842232e-05, 0.0009204759262502193], [0.5758452415466309, 0.0030951141379773617, 0.004761130083352327, 0.002336776116862893, 0.0002411947789369151, 9.37568984227255e-05, 5.521527418750338e-05, 0.0003310434112790972, 0.004556070547550917, 0.028866425156593323, 0.10900643467903137, 0.23613987863063812, 0.024846957996487617, 0.004491351079195738, 0.0010350859956815839, 0.0006556663429364562, 0.0036426254082471132], [0.575535237789154, 0.0008558345143683255, 0.005822916515171528, 0.0034926305525004864, 0.00010607944568619132, 3.480555460555479e-05, 7.737130545137916e-06, 0.0005968101904727519, 0.00543591845780611, 0.017514795064926147, 0.03259458392858505, 0.1252136379480362, 0.13784223794937134, 0.08326109498739243, 0.0021554052364081144, 0.005088401027023792, 0.004441919270902872], [0.011750069446861744, 0.0001563738042023033, 0.00010440481128171086, 0.00020337167370598763, 9.635693277232349e-05, 7.71645427448675e-05, 3.69607332686428e-05, 0.00012413262447807938, 0.00033067449112422764, 0.00012616872845683247, 0.000515155668836087, 0.0005893527995795012, 0.966963529586792, 0.008206074126064777, 0.008268392644822598, 0.0005751883727498353, 0.0018765617860481143], [0.43296104669570923, 0.0005168191273696721, 0.0007069097482599318, 0.0005931710475124419, 0.001529261120595038, 0.0021718121133744717, 0.0006062213215045631, 0.0011525223962962627, 0.0015182701172307134, 0.00044179102405905724, 0.0016879516188055277, 0.00476248050108552, 0.20452313125133514, 0.15664899349212646, 0.11206435412168503, 0.046345844864845276, 0.031769465655088425], [0.44735753536224365, 0.0005971206119284034, 0.00020121039415244013, 0.00035224054590798914, 0.0010305430041626096, 0.0007352453540079296, 0.001396332634612918, 0.000719264498911798, 0.002508622594177723, 6.437341653509066e-05, 7.428012759191915e-05, 0.0008355104364454746, 0.04698832333087921, 0.016309339553117752, 0.3386057913303375, 0.06282110512256622, 0.07940312474966049], [0.9219660758972168, 0.0001357470900984481, 6.967592344153672e-05, 3.8046367990318686e-05, 4.9331447371514514e-05, 9.716444765217602e-05, 2.9237058697617613e-05, 0.0002664979256223887, 0.0004996331408619881, 1.3988978025736287e-05, 5.258775217953371e-06, 2.4656586901983246e-05, 0.0005134257371537387, 0.0003939476446248591, 0.003402730682864785, 0.008656292222440243, 0.06383830308914185], [0.6382927298545837, 0.00030877284007146955, 0.0003692670143209398, 0.00024581330944783986, 0.0006497515714727342, 0.0005276494193822145, 0.00027332419995218515, 0.000819970213342458, 0.001459851278923452, 0.00013651080371346325, 4.496298060985282e-05, 0.00017771369311958551, 0.0005697915330529213, 0.005081457085907459, 0.023721717298030853, 0.009262540377676487, 0.31805816292762756], [0.9699109196662903, 4.7778554289834574e-05, 3.577940151444636e-05, 7.615400681970641e-05, 6.269367440836504e-05, 0.00016595187480561435, 4.878999607171863e-05, 0.0004922030493617058, 0.0008326738607138395, 6.561361806234345e-05, 2.183180913561955e-05, 5.4876891226740554e-05, 4.194868597551249e-05, 5.985422103549354e-05, 8.497643284499645e-05, 0.0012499121949076653, 0.026748038828372955]], [[0.8424743413925171, 0.020767195150256157, 0.017066778615117073, 0.030537346377968788, 0.006614766549319029, 0.005440154112875462, 0.0016326821641996503, 0.013458272442221642, 0.03050542250275612, 0.0014763184590265155, 0.0013993160100653768, 0.0013031117850914598, 0.0026500681415200233, 0.002508195349946618, 0.0011464474955573678, 0.0027528086211532354, 0.018266746774315834], [0.9286220669746399, 0.02002856880426407, 0.003596397815272212, 0.022788656875491142, 7.081696821842343e-05, 0.00013932306319475174, 3.967220618505962e-05, 0.004535026848316193, 0.015291046351194382, 0.0037771102506667376, 0.0004201025585643947, 1.952280945261009e-05, 3.7738984246971086e-05, 1.6232061170740053e-05, 2.1951214876025915e-05, 0.00020372123981360346, 0.00039198403828777373], [0.8238195776939392, 0.11171792447566986, 0.009885051287710667, 0.013269836083054543, 0.00012634409358724952, 5.4048166930442676e-05, 4.074934167874744e-06, 0.0011064414866268635, 0.02488909661769867, 0.009586002677679062, 0.0005006412975490093, 0.00014171192015055567, 0.00028805973124690354, 6.761758413631469e-05, 0.00013069888518657535, 0.000522487738635391, 0.0038903942331671715], [0.5379607677459717, 0.2255418598651886, 0.17621786892414093, 0.021368632093071938, 0.004112194292247295, 0.0008770033018663526, 1.3368659892876167e-05, 0.001554579590447247, 0.021221648901700974, 0.0011821899097412825, 0.001655652653425932, 0.00015697117487434298, 0.0012310550082474947, 0.0004780261078849435, 0.0008851875318214297, 0.0004430878907442093, 0.005100049078464508], [0.31428298354148865, 0.04264606535434723, 0.15583379566669464, 0.44417861104011536, 0.026532310992479324, 0.0041827731765806675, 4.7395064029842615e-05, 0.0005624418263323605, 0.003462761640548706, 7.51363841118291e-05, 5.014517228119075e-05, 0.0004029714036732912, 0.00018296969938091934, 0.0011074799112975597, 0.00011250215902691707, 0.00046336802188307047, 0.005876149982213974], [0.6452857255935669, 0.009519824758172035, 0.03558145463466644, 0.2224140167236328, 0.04735264554619789, 0.0073654139414429665, 0.0004941757651977241, 0.004128024913370609, 0.012794092297554016, 2.5512426873319782e-05, 1.954131221282296e-05, 6.062111788196489e-05, 0.0001494393654866144, 0.00040767790051177144, 6.688174471491948e-05, 0.0002183979086112231, 0.014116551727056503], [0.0703856572508812, 0.009479045867919922, 0.008982180617749691, 0.32753419876098633, 0.3548038899898529, 0.19466352462768555, 0.0014312994899228215, 0.014763517305254936, 0.011699704453349113, 2.3687292923568748e-05, 9.652789231040515e-06, 0.00014789635315537453, 8.100362174445763e-05, 0.0005806274130009115, 7.68949612393044e-05, 0.00022560838260687888, 0.005111573729664087], [0.03372747078537941, 0.008814230561256409, 0.001266675884835422, 0.035009779036045074, 0.03177085146307945, 0.2526962459087372, 0.5360028147697449, 0.0579359233379364, 0.03556671366095543, 0.00020314754510764033, 0.00010977837519021705, 4.61096569779329e-05, 0.0004139691009186208, 0.0008369717979803681, 0.00028542723157443106, 0.0007192555349320173, 0.0045946016907691956], [0.9428878426551819, 0.004099049139767885, 8.053931378526613e-05, 0.0006541602779179811, 0.00027153469272889197, 0.0020265269558876753, 0.0007708747871220112, 0.013570916838943958, 0.034691255539655685, 0.00017296920123044401, 1.1985094715782907e-05, 2.2545780211657984e-06, 9.408482583239675e-06, 9.158355169347487e-06, 3.9623714656045195e-06, 2.531175960029941e-05, 0.0007122426759451628], [0.7517618536949158, 0.006795246619731188, 2.971233152493369e-05, 6.851771468063816e-05, 9.587786735210102e-06, 8.76799676916562e-05, 0.00025413092225790024, 0.0253902617841959, 0.18396513164043427, 0.028572531417012215, 0.002274320228025317, 1.8463553715264425e-05, 4.518455534707755e-05, 6.70935696689412e-06, 1.0686344467103481e-05, 8.808149868855253e-05, 0.0006218262715265155], [0.1123083084821701, 0.0032189374323934317, 0.0001560904347570613, 0.00016692676581442356, 4.609536517818924e-06, 2.86362374026794e-05, 2.0452031094464473e-05, 0.008180824108421803, 0.13005411624908447, 0.7239992618560791, 0.02072248049080372, 0.0002314968587597832, 4.522140807239339e-05, 8.987371074908879e-06, 1.3283981388667598e-05, 2.272340680065099e-05, 0.0008177353302016854], [0.3030427098274231, 0.0024056655820459127, 0.0015615628799423575, 0.0003351920749992132, 2.1301857486832887e-05, 2.2717051251675002e-05, 9.577292075846344e-06, 0.0015301295788958669, 0.0851929783821106, 0.26926982402801514, 0.31648850440979004, 0.00241987407207489, 0.007648175582289696, 0.000723672506865114, 0.00018739915685728192, 0.00048627742216922343, 0.008654369041323662], [0.3067166805267334, 0.006327567156404257, 0.0058981324546039104, 0.008593618869781494, 0.0007845971849747002, 0.00015954340051393956, 6.4059922806336544e-06, 0.0009639994241297245, 0.022805364802479744, 0.07659099251031876, 0.14643481373786926, 0.38026589155197144, 0.02378164604306221, 0.013440320268273354, 0.000335381249897182, 0.0003095087013207376, 0.006585441529750824], [0.5674072504043579, 0.0014256652211770415, 0.004462930839508772, 0.005321774631738663, 0.0003587827377486974, 0.00034828728530555964, 1.542511563457083e-05, 0.0006432884256355464, 0.010195896029472351, 0.006155412178486586, 0.1079195886850357, 0.021320685744285583, 0.24467571079730988, 0.016517268493771553, 0.002540757181122899, 0.001054976717568934, 0.009636360220611095], [0.32655876874923706, 0.0029003547970205545, 0.0011188285425305367, 0.003442995483055711, 0.0005175312981009483, 0.0004534115141723305, 0.00023586452880408615, 0.001353472820483148, 0.013619557954370975, 0.002292442601174116, 0.0030651502311229706, 0.05615299195051193, 0.2469804733991623, 0.2729044556617737, 0.013038264587521553, 0.017613399773836136, 0.03775198757648468], [0.5315298438072205, 0.008303933776915073, 0.0026485719718039036, 0.0008984821615740657, 0.0003258080396335572, 0.0002836764615494758, 2.667535409273114e-05, 0.007615853566676378, 0.014708596281707287, 0.000818938366137445, 0.0032937233336269855, 0.0010027901735156775, 0.06035952642560005, 0.05003620311617851, 0.19541166722774506, 0.008891361765563488, 0.1138443797826767], [0.9526456594467163, 0.001157578662969172, 0.00025960744824260473, 0.00025637258659116924, 3.754347926587798e-05, 2.9654478566953912e-05, 6.0121774367871694e-06, 0.00033280765637755394, 0.0017185610486194491, 6.486845086328685e-05, 1.2421493011061102e-05, 1.1812937373179011e-05, 0.00011375109170330688, 0.00034109450643882155, 0.00035989226307719946, 0.0027593132108449936, 0.039893049746751785]], [[0.13585063815116882, 0.03866572305560112, 0.04863022640347481, 0.057078033685684204, 0.013443577103316784, 0.03305221349000931, 0.023145761340856552, 0.06955958902835846, 0.05880245193839073, 0.05664479732513428, 0.026932552456855774, 0.05179768428206444, 0.027190882712602615, 0.06470070034265518, 0.07086866348981857, 0.11984605342149734, 0.10379039496183395], [0.5049821734428406, 0.009588302113115788, 0.028704777359962463, 0.02410416305065155, 0.027530856430530548, 0.03328945115208626, 0.018587250262498856, 0.03651125356554985, 0.08305874466896057, 0.01266869343817234, 0.011085844598710537, 0.027623886242508888, 0.03671414777636528, 0.029543912038207054, 0.023825420066714287, 0.028190666809678078, 0.06399066746234894], [0.413239449262619, 0.012525207363069057, 0.00013884906366001815, 0.006962826009839773, 0.0015833210200071335, 0.0064878398552536964, 0.008617706596851349, 0.02073638327419758, 0.2738681137561798, 0.005007362458854914, 0.005136431660503149, 0.0035143813583999872, 0.004742327146232128, 0.04365547373890877, 0.01293324213474989, 0.004330870695412159, 0.17652028799057007], [0.4644061326980591, 0.02647235244512558, 0.015102909877896309, 0.01899535208940506, 0.020528098568320274, 0.021546365693211555, 0.01763543114066124, 0.057087041437625885, 0.10842602699995041, 0.042855385690927505, 0.01931384764611721, 0.013597359880805016, 0.015839267522096634, 0.05947119742631912, 0.009244520217180252, 0.021759919822216034, 0.0677187591791153], [0.4537603259086609, 0.054237838834524155, 0.025721164420247078, 0.013679997995495796, 0.003925945609807968, 0.010583984665572643, 0.012050645425915718, 0.0709696039557457, 0.0841531902551651, 0.031178399920463562, 0.0366213321685791, 0.00939774326980114, 0.013918706215918064, 0.06000952422618866, 0.03888501226902008, 0.015090123750269413, 0.06581655889749527], [0.3236851096153259, 0.02184567041695118, 0.030767865478992462, 0.009230084717273712, 0.004454542882740498, 0.0008581345900893211, 0.006186081562191248, 0.045718878507614136, 0.1715051233768463, 0.026558367535471916, 0.005739764776080847, 0.013840556144714355, 0.022642487660050392, 0.12898200750350952, 0.04955184459686279, 0.00797287654131651, 0.1304604709148407], [0.3586571514606476, 0.052442245185375214, 0.012864110060036182, 0.031898707151412964, 0.02906748093664646, 0.014049002900719643, 0.009729764424264431, 0.04979103431105614, 0.08141439408063889, 0.05634895712137222, 0.03208122029900551, 0.0504123829305172, 0.0416836217045784, 0.0623234398663044, 0.03486863896250725, 0.023609913885593414, 0.05875788629055023], [0.3849962651729584, 0.050567422062158585, 0.008055496029555798, 0.043122902512550354, 0.05336153879761696, 0.06670928746461868, 0.050491299480199814, 0.06062683090567589, 0.06767594814300537, 0.017989609390497208, 0.02545297145843506, 0.02230505831539631, 0.022549761459231377, 0.032941050827503204, 0.015017562545835972, 0.034142062067985535, 0.04399494454264641], [0.20832321047782898, 0.06806044280529022, 0.10066117346286774, 0.04903802275657654, 0.03328399732708931, 0.06784899532794952, 0.028927646577358246, 0.0522085539996624, 0.0665426179766655, 0.029269542545080185, 0.026736853644251823, 0.04613800719380379, 0.03177730739116669, 0.04003340005874634, 0.05294112116098404, 0.03267202526330948, 0.06553708016872406], [0.3789955973625183, 0.037152182310819626, 0.010874755680561066, 0.03396500647068024, 0.10259268432855606, 0.026040831580758095, 0.03895583748817444, 0.03963545337319374, 0.04879161715507507, 0.019487779587507248, 0.022791527211666107, 0.05048074573278427, 0.030267665162682533, 0.04473079741001129, 0.026651374995708466, 0.025211097672581673, 0.06337516009807587], [0.45390698313713074, 0.01578161120414734, 0.002659309422597289, 0.015172489918768406, 0.008991020731627941, 0.008198995143175125, 0.006894359830766916, 0.04144832864403725, 0.13062527775764465, 0.012979862280189991, 0.002545648254454136, 0.03083221986889839, 0.009862876497209072, 0.02961386740207672, 0.004422659054398537, 0.012797143310308456, 0.2132674902677536], [0.3126511573791504, 0.013460461981594563, 0.014526115730404854, 0.020325785502791405, 0.005681121721863747, 0.022071555256843567, 0.010904147289693356, 0.05966683477163315, 0.05669712275266647, 0.04932266101241112, 0.02883564680814743, 0.026826994493603706, 0.030788468196988106, 0.03354378789663315, 0.03812219202518463, 0.11195720732212067, 0.16461871564388275], [0.34673619270324707, 0.03479833900928497, 0.015622708946466446, 0.01585078053176403, 0.014937733300030231, 0.02222646400332451, 0.011489885859191418, 0.07666979730129242, 0.09202596545219421, 0.03509227931499481, 0.016312679275870323, 0.03991025313735008, 0.017345959320664406, 0.02898719720542431, 0.02318376488983631, 0.01810690388083458, 0.19070300459861755], [0.265542209148407, 0.01587287336587906, 0.04491280019283295, 0.02040855772793293, 0.005464802961796522, 0.02757847122848034, 0.00884027499705553, 0.04960956797003746, 0.11078210920095444, 0.04792089760303497, 0.01392710953950882, 0.0453949049115181, 0.04636179283261299, 0.004614024423062801, 0.014951920136809349, 0.03140776604413986, 0.24640989303588867], [0.20571383833885193, 0.007481779437512159, 0.025770504027605057, 0.005372941493988037, 0.002211174229159951, 0.005438560154289007, 0.0038994650822132826, 0.021414373070001602, 0.15559138357639313, 0.025036422535777092, 0.008694164454936981, 0.04175138100981712, 0.030951853841543198, 0.008862405084073544, 0.002793996362015605, 0.014308354817330837, 0.4347074031829834], [0.4156606197357178, 0.02930484153330326, 0.026763107627630234, 0.013759997673332691, 0.005073423497378826, 0.013990295119583607, 0.004897473379969597, 0.07260565459728241, 0.04072757810354233, 0.08586188405752182, 0.029238102957606316, 0.03297354653477669, 0.014953672885894775, 0.03236499801278114, 0.01676643267273903, 0.028713183477520943, 0.13634516298770905], [0.1410287767648697, 0.02858312800526619, 0.04393218085169792, 0.014255604706704617, 0.010514345951378345, 0.03033391572535038, 0.009186592884361744, 0.045470479875802994, 0.03081608936190605, 0.0738605409860611, 0.07141443341970444, 0.09754382073879242, 0.07313172519207001, 0.05476999282836914, 0.09293323010206223, 0.05512390658259392, 0.12710124254226685]], [[0.6305399537086487, 0.013836522586643696, 0.0045390864834189415, 0.032936010509729385, 0.007649693172425032, 0.0670883059501648, 0.03395257517695427, 0.1258867084980011, 0.02737734094262123, 0.0010132133029401302, 0.0018573992419987917, 0.0021541041787713766, 0.0021136924624443054, 0.007822198793292046, 0.0014996201498433948, 0.008735890500247478, 0.030997510999441147], [3.2544471650908235e-07, 8.826628800306935e-06, 0.9999598264694214, 9.92667719401652e-06, 2.072483221127186e-05, 8.55941928445958e-10, 2.8486098896385315e-11, 3.9725792100320234e-11, 9.391175836981347e-08, 4.833690336880636e-09, 8.114652416679746e-08, 3.9294722142813043e-08, 7.899159548685475e-09, 3.377479629307345e-09, 5.181800301345962e-12, 4.137807457782472e-11, 1.1337122352017559e-08], [2.529266112105688e-06, 1.9670103768021363e-08, 8.621441338618752e-08, 0.999936580657959, 6.0605616454267874e-05, 5.344023890074823e-08, 4.222052937298548e-13, 4.923435791004405e-12, 2.970525908585486e-11, 1.2886797376009552e-14, 7.766647741602739e-11, 2.4854626801129598e-08, 1.0230869484928462e-08, 5.4494329049248336e-09, 5.6081311469724504e-12, 1.7548589534635561e-12, 8.678625107449989e-08], [6.528964036078833e-08, 8.423086880759989e-12, 1.1022739698773876e-07, 1.9075298496318283e-06, 0.9999896287918091, 8.229199920606334e-06, 7.930240286668777e-08, 2.148528577272657e-11, 5.028918947935779e-11, 8.539821432791466e-19, 2.2222681865264465e-14, 1.9242945778485954e-11, 2.643016472347881e-08, 4.6661735808584126e-08, 3.351308217481447e-13, 4.0474795823947085e-13, 4.61706922694205e-10], [1.5617771964571148e-08, 6.323242575162133e-14, 3.3915491942648757e-13, 8.867329626127685e-08, 2.841474997694604e-05, 0.9999475479125977, 2.3323991626966745e-05, 3.7015877296653343e-07, 2.314658339129527e-13, 2.1867818424894936e-20, 2.5121741775112543e-20, 2.0662504774662457e-15, 6.958709303228616e-11, 1.9743777102121385e-07, 7.65698615623478e-12, 5.523978559188007e-14, 3.5566189750257937e-13], [1.6909840194756498e-09, 2.017942917934912e-15, 2.488679191382532e-14, 1.3938886835398751e-14, 2.899916751175624e-09, 6.724070544805727e-08, 0.9999951124191284, 4.743439149024198e-06, 3.368182532881292e-08, 2.253982350882471e-20, 3.780881693350748e-18, 8.838211587627427e-21, 7.180966391111851e-16, 1.1499171061158612e-14, 8.49888031045215e-13, 1.0084179314067548e-13, 1.2828998930888846e-12], [8.437435212726996e-07, 8.693154160931138e-13, 1.5337625931350092e-17, 1.3982279486253642e-14, 4.0529874310748885e-15, 2.1671358751973457e-07, 2.492410544618906e-07, 0.9999982118606567, 4.201515366730746e-07, 6.335293990529078e-15, 1.1928601007625873e-18, 6.8868317765386e-19, 5.350111557764377e-17, 9.068647796681845e-14, 3.39397319927201e-13, 8.036672022315727e-11, 1.1925148368785443e-10], [5.5076153415711815e-08, 2.177206326337e-08, 9.0482942319281e-12, 3.8809450444987625e-14, 1.2180908408668256e-13, 4.118511087725096e-12, 8.705407950060362e-09, 3.216765253455378e-05, 0.9999666213989258, 1.0836401997948997e-06, 8.793723083044824e-09, 2.01036849521068e-14, 8.753855116911541e-14, 4.725474839987337e-15, 2.1649178283400516e-10, 3.1397637267893685e-10, 1.7409753638730763e-07], [0.5838304758071899, 8.245188837463502e-06, 5.752878173836962e-09, 4.666404151976167e-07, 1.2834948381890143e-11, 1.9467684353458026e-07, 6.317766865215901e-10, 0.3820224106311798, 0.03408528119325638, 3.852992449537851e-05, 5.320953277987428e-07, 3.422514538442556e-08, 1.5867980540651416e-11, 2.715362101834984e-10, 7.599941726291193e-13, 4.6943437581603575e-08, 1.3796115126751829e-05], [5.7256761831769865e-11, 1.8177569172106445e-10, 2.320407865852303e-08, 1.9377555116051326e-13, 7.127991637689499e-14, 1.1056474761007952e-19, 3.0347051741929764e-16, 1.8008803490473938e-15, 2.052946079800222e-08, 1.1948851863508025e-07, 0.9999997615814209, 6.417320719265263e-08, 3.2937383931397335e-09, 1.0746659579279603e-15, 2.168013227507614e-15, 1.2004500329578687e-16, 7.927677264651933e-11], [5.323220086950187e-09, 6.389700990538927e-10, 1.1875632921487522e-08, 6.567087496023305e-08, 7.4326997464777e-13, 1.0223632107998065e-13, 1.396551258652239e-18, 4.96227841803587e-13, 5.323364579007395e-12, 1.3880400729249232e-05, 1.3954622772871517e-05, 0.9999696016311646, 1.5996496358638979e-06, 8.27448502604966e-07, 8.824906781626073e-15, 9.99509177680713e-14, 3.980321714586177e-12], [1.0771421976585316e-08, 2.2003044189162352e-13, 4.632805944426721e-11, 3.28119337256183e-11, 1.0404080263981541e-08, 1.0850452751998835e-13, 2.6929064159104217e-15, 1.3330198795106444e-14, 3.765587668069781e-12, 1.8014880951870487e-15, 1.2126700532633095e-08, 4.563944457913749e-07, 0.9999938011169434, 5.748093826696277e-06, 1.5238370565384685e-08, 5.5693774922817643e-14, 3.1981927522961584e-11], [2.493611077625246e-07, 5.299155211857531e-13, 1.1903275587421547e-10, 1.0880147893743697e-09, 2.4969566345123262e-11, 1.0324902710578954e-08, 9.77908119065285e-12, 2.6851383339021595e-09, 1.4394319341071854e-13, 8.082797499614058e-15, 8.797089711418474e-14, 8.566816518396081e-07, 2.876574217225425e-05, 0.9999667406082153, 3.191944188074558e-06, 7.299175308617123e-08, 1.6584279088904808e-11], [1.8986388568009716e-06, 4.610718404296499e-11, 8.233835835369518e-11, 6.760743007094838e-12, 2.851810787518616e-09, 3.964778783061007e-10, 5.249689394304369e-08, 7.894102260763702e-09, 4.00809740952468e-09, 7.450815735634902e-16, 1.330946854463666e-12, 1.93652090890728e-11, 4.107371933059767e-05, 2.728472463786602e-05, 0.9999278783798218, 8.492663710057968e-07, 1.0446374290040694e-06], [4.469578414045827e-07, 1.1075131263471594e-11, 1.7032422694462923e-10, 3.0387373173290655e-11, 2.393469808199128e-13, 4.0017472842379664e-12, 3.5182193963700925e-11, 6.130878205112822e-07, 5.783045708973589e-10, 4.425728175865701e-13, 3.0584430607815414e-15, 1.8709970638769446e-12, 2.0804634057181026e-12, 1.3181132771933335e-06, 9.937001595972106e-05, 0.9998906850814819, 7.522501164203277e-06], [1.853988942457363e-05, 4.939836912853934e-07, 2.486839179027811e-08, 1.2427006090831583e-08, 2.9399421563880423e-08, 2.0895420116406882e-10, 9.624123720186617e-11, 2.476693907738081e-07, 2.7553328436624724e-06, 1.415863315479271e-09, 1.935891624782471e-08, 2.0340838735588562e-10, 1.3260680331583785e-09, 2.5515767276829138e-09, 1.687538497208152e-05, 0.0003194334567524493, 0.9996415376663208], [0.9719346761703491, 5.504319777749345e-10, 1.4860255248549947e-08, 3.1344953299594636e-07, 2.6074937764519746e-08, 5.130862632540811e-07, 7.049874017894808e-10, 0.0012406272580847144, 1.2392702046781778e-06, 5.849731289642168e-12, 4.020725592746022e-12, 2.213971894704514e-09, 3.5863485792209104e-11, 9.381442822586905e-08, 4.217634574921192e-11, 7.109285797923803e-05, 0.02675137110054493]], [[0.5532012581825256, 0.056342318654060364, 0.03966352343559265, 0.03867947682738304, 0.03004496358335018, 0.01268330030143261, 0.010136581026017666, 0.07777208089828491, 0.03803224116563797, 0.03220519796013832, 0.017286520451307297, 0.020977260544896126, 0.018596161156892776, 0.005839972291141748, 0.007870838046073914, 0.004911614581942558, 0.035756729543209076], [0.5323253870010376, 0.1547735184431076, 0.06920365989208221, 0.07850660383701324, 0.027272718027234077, 0.02668316662311554, 0.011791568249464035, 0.06699660420417786, 0.0019511543214321136, 0.004935264587402344, 0.0031958685722202063, 0.010602833703160286, 0.003001566743478179, 0.0025491933338344097, 0.00433856388553977, 0.0014863472897559404, 0.00038601586129516363], [0.8686466217041016, 0.019428841769695282, 0.038878124207258224, 0.015753012150526047, 0.004335517063736916, 0.005629232153296471, 0.0017180751310661435, 0.029525702819228172, 0.0025612516328692436, 0.0016666437732055783, 0.0005319021875038743, 0.003815141972154379, 0.0020704681519418955, 0.000967944273725152, 0.003187979105859995, 0.0005086196470074356, 0.0007750251097604632], [0.5975949168205261, 0.19521313905715942, 0.053961459547281265, 0.045708246529102325, 0.011879975907504559, 0.00916756596416235, 0.006334370467811823, 0.04775369539856911, 0.007359594572335482, 0.011753327213227749, 0.002259613713249564, 0.005855126306414604, 0.001898201066069305, 0.0008690456161275506, 0.00139363924972713, 0.00034822712768800557, 0.0006498877773992717], [0.5984036326408386, 0.16447636485099792, 0.07010787725448608, 0.0465536043047905, 0.01334342174232006, 0.028260599821805954, 0.0049822828732430935, 0.035501059144735336, 0.006532648112624884, 0.011454530991613865, 0.0021471695508807898, 0.009114529006183147, 0.002691093599423766, 0.0015645851381123066, 0.003315793350338936, 0.00044704400352202356, 0.0011036875657737255], [0.45495522022247314, 0.16411268711090088, 0.19026070833206177, 0.06585612148046494, 0.012993479147553444, 0.029177438467741013, 0.004995911847800016, 0.0324215330183506, 0.006586913485080004, 0.01298792939633131, 0.004090048372745514, 0.006424514576792717, 0.004632594529539347, 0.0026550579350441694, 0.006023467984050512, 0.0009622133802622557, 0.0008641633321531117], [0.28162336349487305, 0.3457529544830322, 0.05234357714653015, 0.16156591475009918, 0.017905384302139282, 0.01776779815554619, 0.0077798920683562756, 0.05413322150707245, 0.016239142045378685, 0.01777135580778122, 0.009227383881807327, 0.009185978211462498, 0.003163370070978999, 0.0014642621390521526, 0.0018090787343680859, 0.0009410274215042591, 0.0013262118445709348], [0.07252369821071625, 0.33544278144836426, 0.0365300178527832, 0.37979522347450256, 0.042211804538965225, 0.016170253977179527, 0.013714698143303394, 0.02604314312338829, 0.023853445425629616, 0.020088205114006996, 0.014628589153289795, 0.006271610502153635, 0.0045039597898721695, 0.0015506271738559008, 0.0010628878371790051, 0.0034001225139945745, 0.002208855701610446], [0.6320256590843201, 0.08633964508771896, 0.008443334139883518, 0.07852686196565628, 0.01582266390323639, 0.00956010352820158, 0.004057909362018108, 0.07843121141195297, 0.06210179254412651, 0.006691532675176859, 0.001426843460649252, 0.00310129695571959, 0.0020541688427329063, 0.0004347480717115104, 0.0006546744261868298, 0.0006432244554162025, 0.00968436524271965], [0.23085694015026093, 0.07901652902364731, 0.0645921379327774, 0.0934542715549469, 0.04598722606897354, 0.1489679217338562, 0.04005139693617821, 0.12916989624500275, 0.02290383353829384, 0.022896751761436462, 0.011736011132597923, 0.030091075226664543, 0.03087509050965309, 0.00888113770633936, 0.024554667994379997, 0.008588316850364208, 0.007376732304692268], [0.1282517910003662, 0.11970190703868866, 0.27546557784080505, 0.09645581245422363, 0.04303727671504021, 0.0486985482275486, 0.022267837077379227, 0.05544966831803322, 0.07754463702440262, 0.05268087610602379, 0.023234298452734947, 0.011116155423223972, 0.008284005336463451, 0.0012907807249575853, 0.0025822781026363373, 0.0030365316197276115, 0.030902013182640076], [0.33594632148742676, 0.05082051455974579, 0.034456152468919754, 0.041202712804079056, 0.02625332958996296, 0.050550829619169235, 0.03423580154776573, 0.11713456362485886, 0.04542499780654907, 0.0589926615357399, 0.03870860114693642, 0.05600952357053757, 0.024603791534900665, 0.011302357539534569, 0.03366320580244064, 0.011313531547784805, 0.02938108891248703], [0.20553381741046906, 0.04091273993253708, 0.05387537181377411, 0.025915907695889473, 0.01745276339352131, 0.1117686778306961, 0.026041816920042038, 0.07533708959817886, 0.06065702438354492, 0.1711287945508957, 0.05339708924293518, 0.02752782590687275, 0.04059211164712906, 0.007898414507508278, 0.042110152542591095, 0.011627224273979664, 0.028223125264048576], [0.29132547974586487, 0.0369611531496048, 0.05475737527012825, 0.03387456014752388, 0.011047767475247383, 0.07499942183494568, 0.01242034137248993, 0.10257245600223541, 0.07453318685293198, 0.09770908206701279, 0.06522975862026215, 0.03083605132997036, 0.022121315822005272, 0.010094229131937027, 0.03254052624106407, 0.023675458505749702, 0.025301793590188026], [0.2768704295158386, 0.02269923686981201, 0.03997763991355896, 0.03999859094619751, 0.006118018180131912, 0.03502439334988594, 0.006715311668813229, 0.04550514370203018, 0.08470675349235535, 0.13390134274959564, 0.10613492131233215, 0.03660736605525017, 0.04226221516728401, 0.01067965105175972, 0.045506808906793594, 0.035594116896390915, 0.03169797360897064], [0.09087251871824265, 0.07790589332580566, 0.008259941823780537, 0.050263792276382446, 0.0015010599745437503, 0.0023647723719477654, 0.0071073430590331554, 0.0640711635351181, 0.09053955972194672, 0.2986242473125458, 0.10834836214780807, 0.060008931905031204, 0.013476907275617123, 0.005045268218964338, 0.005938520189374685, 0.08591532707214355, 0.02975630760192871], [0.4310072064399719, 0.017707297578454018, 0.0019878328312188387, 0.007371167652308941, 0.0017849261639639735, 0.0016633382765576243, 0.0014728197129443288, 0.08371250331401825, 0.11660407483577728, 0.04978698492050171, 0.010989846661686897, 0.02566334418952465, 0.018260207027196884, 0.0032570993062108755, 0.005942781921476126, 0.008940869010984898, 0.21384775638580322]], [[0.4138449430465698, 0.015741320326924324, 0.03365154564380646, 0.022843606770038605, 0.015682043507695198, 0.010899519547820091, 0.0066413069143891335, 0.19493958353996277, 0.09664005041122437, 0.006038829684257507, 0.014062641188502312, 0.005369545891880989, 0.007208073511719704, 0.014250769279897213, 0.013415188528597355, 0.016677482053637505, 0.11209353059530258], [0.38431495428085327, 0.053014714270830154, 0.0372779555618763, 0.012496811337769032, 0.005788793321698904, 0.0037077544257044792, 0.0134745417162776, 0.07773943990468979, 0.1278482973575592, 0.009027216583490372, 0.0709308311343193, 0.01932387799024582, 0.0035592385102063417, 0.012192214839160442, 0.02046065591275692, 0.006793126463890076, 0.14204955101013184], [0.34350141882896423, 0.13274376094341278, 0.002483364660292864, 0.014857056550681591, 0.000526853313203901, 0.0014163340674713254, 0.002856469713151455, 0.020499447360634804, 0.2057843953371048, 0.005792947486042976, 0.03025529906153679, 0.012564677745103836, 0.0027609115932136774, 0.009033207781612873, 0.03158942982554436, 0.0019602493848651648, 0.18137414753437042], [0.42395320534706116, 0.02319582924246788, 0.01924785226583481, 0.0210964847356081, 0.005129100289195776, 0.00829885434359312, 0.008690069429576397, 0.12591443955898285, 0.1475519984960556, 0.003959733992815018, 0.02188599668443203, 0.0051724594086408615, 0.0031703878194093704, 0.01515312772244215, 0.010491645894944668, 0.0176838431507349, 0.1394050270318985], [0.38901641964912415, 0.02602742798626423, 0.008820665068924427, 0.006004012189805508, 0.0006900631124153733, 0.004542734939604998, 0.008454530499875546, 0.14808832108974457, 0.12141386419534683, 0.01639496348798275, 0.0512174554169178, 0.013398749753832817, 0.0035529788583517075, 0.00910888146609068, 0.0059879012405872345, 0.016754763200879097, 0.17052622139453888], [0.2766445279121399, 0.020056121051311493, 0.006883652415126562, 0.015231121331453323, 0.006841578520834446, 0.005508384667336941, 0.007430134806782007, 0.13110877573490143, 0.17385096848011017, 0.0381644070148468, 0.012454668059945107, 0.023148326203227043, 0.0053474814631044865, 0.006028864532709122, 0.006741642020642757, 0.02624371461570263, 0.238315612077713], [0.4422587454319, 0.01684163697063923, 0.023267410695552826, 0.016402849927544594, 0.009863986633718014, 0.02482590824365616, 0.004770989995449781, 0.09477363526821136, 0.13843879103660583, 0.01664751023054123, 0.011707759462296963, 0.005985583644360304, 0.008532466366887093, 0.013245580717921257, 0.0024772812612354755, 0.0345623753964901, 0.1353975534439087], [0.30784881114959717, 0.026232510805130005, 0.02758960612118244, 0.023647038266062737, 0.023645328357815742, 0.03204881772398949, 0.010660781525075436, 0.1672738492488861, 0.11527412384748459, 0.03180953115224838, 0.02256588079035282, 0.018395451828837395, 0.010827098973095417, 0.019151100888848305, 0.010898242704570293, 0.03597255423665047, 0.11615926027297974], [0.26737070083618164, 0.034848008304834366, 0.049771130084991455, 0.020302241668105125, 0.02331160381436348, 0.02999437041580677, 0.017250830307602882, 0.13247382640838623, 0.10412835329771042, 0.02380506694316864, 0.03607712313532829, 0.028966717422008514, 0.012602908536791801, 0.0405997633934021, 0.03566276282072067, 0.023394886404275894, 0.11943970620632172], [0.5043638348579407, 0.016932670027017593, 0.008245646022260189, 0.006345541216433048, 0.0009906567865982652, 0.03009425848722458, 0.0033600369933992624, 0.12765026092529297, 0.10511456429958344, 0.00573089299723506, 0.007566092070192099, 0.005431079771369696, 0.0039748540148139, 0.009804329834878445, 0.002913386793807149, 0.025998499244451523, 0.13548336923122406], [0.35094520449638367, 0.07002949714660645, 0.12524306774139404, 0.012268456630408764, 0.001154200523160398, 0.0026767258532345295, 0.00676990021020174, 0.04833091422915459, 0.13776424527168274, 0.006380574777722359, 0.020968908444046974, 0.01368224062025547, 0.0021789059974253178, 0.008229621686041355, 0.019149748608469963, 0.00503916060552001, 0.1691886931657791], [0.4991609752178192, 0.021227175369858742, 0.00974359828978777, 0.010730346664786339, 0.0035101138055324554, 0.009130558930337429, 0.0062627410516142845, 0.10980536043643951, 0.08349296450614929, 0.010036390274763107, 0.013500472530722618, 0.013146622106432915, 0.00506865419447422, 0.015606503002345562, 0.01366911455988884, 0.03025282733142376, 0.14565566182136536], [0.39485251903533936, 0.023475006222724915, 0.01934136636555195, 0.008097521960735321, 0.007284289691597223, 0.017216060310602188, 0.00793531071394682, 0.10830052942037582, 0.10288619995117188, 0.025159185752272606, 0.027027929201722145, 0.027973327785730362, 0.0016620683018118143, 0.009480061940848827, 0.0039490219205617905, 0.03490174189209938, 0.18045787513256073], [0.427371084690094, 0.03612156957387924, 0.04242260754108429, 0.010294396430253983, 0.0015864993911236525, 0.003012707456946373, 0.0020101952832192183, 0.133174329996109, 0.1150854080915451, 0.004156491719186306, 0.004465759266167879, 0.012106796726584435, 0.004197671543806791, 0.0010049620177596807, 0.004214158747345209, 0.009791282936930656, 0.18898402154445648], [0.47293442487716675, 0.03314460813999176, 0.11235389858484268, 0.006988054141402245, 0.0012328291777521372, 0.00203191046603024, 0.001444853376597166, 0.057328660041093826, 0.0915064886212349, 0.0036947508342564106, 0.028842154890298843, 0.010896248742938042, 0.0035786530934274197, 0.005213903728872538, 0.003508517052978277, 0.006610180716961622, 0.15868982672691345], [0.5206713676452637, 0.010389503091573715, 0.00975318904966116, 0.007274043280631304, 0.0034937274176627398, 0.008816676214337349, 0.0031152693554759026, 0.13774576783180237, 0.08495666086673737, 0.008318630047142506, 0.0063333227299153805, 0.005276515148580074, 0.004300032742321491, 0.01400899887084961, 0.005900728050619364, 0.03782959282398224, 0.13181596994400024], [0.21432632207870483, 0.02852623723447323, 0.04401789605617523, 0.012210087850689888, 0.021547358483076096, 0.033439669758081436, 0.0158374086022377, 0.11682895570993423, 0.0819961205124855, 0.04150250554084778, 0.03269922733306885, 0.04594351723790169, 0.01914278231561184, 0.06390050798654556, 0.05484634265303612, 0.03425178676843643, 0.138983353972435]], [[0.286782443523407, 0.11950644850730896, 0.07631204277276993, 0.04265960678458214, 0.03633423149585724, 0.10302546620368958, 0.024834631010890007, 0.05489618703722954, 0.23462238907814026, 0.0021968164946883917, 0.002057985169813037, 0.0007947196718305349, 0.002507756231352687, 0.00151840690523386, 0.0021910627838224173, 0.0011357461335137486, 0.008624030277132988], [0.03478582948446274, 0.03113018162548542, 0.017365338280797005, 0.15052133798599243, 0.08781075477600098, 0.14323875308036804, 0.130378857254982, 0.10430116951465607, 0.2626897394657135, 0.007864793762564659, 0.006434972397983074, 0.0027722869999706745, 0.003984807059168816, 0.002128488151356578, 0.0019014875870198011, 0.0064744604751467705, 0.006216733250766993], [0.3390771150588989, 0.08934470266103745, 0.024043571203947067, 0.016423728317022324, 0.04631766676902771, 0.1507132202386856, 0.04646822065114975, 0.08614522218704224, 0.15007032454013824, 0.012368574738502502, 0.0034732106141746044, 0.00234759203158319, 0.006303110159933567, 0.0037920058239251375, 0.004264255985617638, 0.0030035923700779676, 0.015843791887164116], [0.052080072462558746, 0.05866844579577446, 0.010263591073453426, 0.028599200770258904, 0.01862446218729019, 0.06299461424350739, 0.12307022511959076, 0.16749276220798492, 0.4332520067691803, 0.019116826355457306, 0.008781783282756805, 0.0007888870895840228, 0.002466844627633691, 0.002778966212645173, 0.0029416296165436506, 0.004267221782356501, 0.0038125175051391125], [0.22408659756183624, 0.08363652229309082, 0.014496050775051117, 0.010944507084786892, 0.013982304371893406, 0.08459407091140747, 0.05463037267327309, 0.15326762199401855, 0.29476168751716614, 0.03884619101881981, 0.007844607345759869, 0.001682354835793376, 0.0062625776045024395, 0.0018393936334177852, 0.003886400256305933, 0.0013151189778000116, 0.0039236280135810375], [0.19019478559494019, 0.15248160064220428, 0.056798193603754044, 0.02988666109740734, 0.05498085170984268, 0.11691134423017502, 0.04486076161265373, 0.10599389672279358, 0.12796634435653687, 0.0610201470553875, 0.017916876822710037, 0.008008237928152084, 0.01611694134771824, 0.004397506359964609, 0.007689605467021465, 0.002148750936612487, 0.0026276055723428726], [0.25588855147361755, 0.08099603652954102, 0.021259302273392677, 0.03044278733432293, 0.024179581552743912, 0.03296676650643349, 0.021636776626110077, 0.10443328320980072, 0.33520951867103577, 0.033265646547079086, 0.021807251498103142, 0.005573037546128035, 0.016317183151841164, 0.002520807785913348, 0.004758956376463175, 0.003464784473180771, 0.005279782693833113], [0.37115785479545593, 0.047299884259700775, 0.03770899400115013, 0.06030043587088585, 0.01998249441385269, 0.024084556847810745, 0.014646393246948719, 0.07542679458856583, 0.2001403570175171, 0.020905308425426483, 0.024684112519025803, 0.015228666365146637, 0.02734709344804287, 0.008885354734957218, 0.008785221725702286, 0.01299190055578947, 0.0304245725274086], [0.7695024609565735, 0.07120281457901001, 0.015925290063023567, 0.022137219086289406, 0.014115013182163239, 0.023239165544509888, 0.004949232563376427, 0.026149947196245193, 0.047435663640499115, 0.0007462466601282358, 0.0007108491845428944, 0.0004665984015446156, 0.0011221858439967036, 0.0004872485587839037, 0.0009618697222322226, 0.00016233728092629462, 0.0006858899141661823], [0.040177635848522186, 0.011777853593230247, 0.00882011465728283, 0.00946364738047123, 0.0060194083489477634, 0.010014758445322514, 0.004903868306428194, 0.018616097047924995, 0.007628618273884058, 0.10744603723287582, 0.039328381419181824, 0.1349569708108902, 0.16136221587657928, 0.17022734880447388, 0.13179045915603638, 0.07792867720127106, 0.0595378540456295], [0.01629234105348587, 0.003257130505517125, 0.0015530172968283296, 0.0035128684248775244, 0.0011220216983929276, 0.0021341063547879457, 0.00177157879807055, 0.007710831239819527, 0.01232178881764412, 0.06596345454454422, 0.03152703121304512, 0.040847454220056534, 0.15142947435379028, 0.07753805816173553, 0.0822928249835968, 0.3578556478023529, 0.14287038147449493], [0.013855875469744205, 0.0011795697500929236, 0.00026888184947893023, 0.0020687340293079615, 0.0010019063483923674, 0.00087642582366243, 0.0027233404107391834, 0.011062778532505035, 0.01919359713792801, 0.024951240047812462, 0.015221133828163147, 0.020050378516316414, 0.090317003428936, 0.02660798653960228, 0.06543386727571487, 0.3014267683029175, 0.4037605822086334], [0.054893068969249725, 0.0035071270540356636, 0.0021123187616467476, 0.0021527493372559547, 0.004635155200958252, 0.0074526164680719376, 0.006016239989548922, 0.021458428353071213, 0.02080330066382885, 0.09324057400226593, 0.01634977012872696, 0.028369002044200897, 0.08609074354171753, 0.027643563225865364, 0.1378137469291687, 0.15092359483242035, 0.3365379869937897], [0.1645633727312088, 0.008548017591238022, 0.006314827129244804, 0.0009620448108762503, 0.007869841530919075, 0.016559472307562828, 0.005200117826461792, 0.028820451349020004, 0.014559376053512096, 0.04273388907313347, 0.013541302643716335, 0.02769191935658455, 0.08493060618638992, 0.04111301898956299, 0.19647634029388428, 0.03953726217150688, 0.30057811737060547], [0.0799129530787468, 0.003807197557762265, 0.0013913738075643778, 0.000612870731856674, 0.0028853504918515682, 0.004616248421370983, 0.0018951261881738901, 0.01443276647478342, 0.01165806595236063, 0.03810675069689751, 0.010126357898116112, 0.053033169358968735, 0.1087128072977066, 0.02350315824151039, 0.06834524869918823, 0.036916334182024, 0.5400442481040955], [0.39095842838287354, 0.009962277486920357, 0.005361276213079691, 0.0020259995944797993, 0.004664258565753698, 0.007697983644902706, 0.005258324556052685, 0.060813479125499725, 0.019274108111858368, 0.044102929532527924, 0.013267609290778637, 0.036611706018447876, 0.06056676059961319, 0.047042496502399445, 0.06756952404975891, 0.010702383704483509, 0.2141205221414566], [0.7488322257995605, 0.019327891990542412, 0.007191813085228205, 0.004411950241774321, 0.0054576643742620945, 0.010101336985826492, 0.0029121648985892534, 0.03804980590939522, 0.015733148902654648, 0.012820535339415073, 0.009147114120423794, 0.010628257878124714, 0.024415597319602966, 0.01105279941111803, 0.01260040607303381, 0.007642004173249006, 0.05967523902654648]], [[0.4112699329853058, 0.006541939917951822, 0.02332466095685959, 0.02276770770549774, 0.02225331962108612, 0.03796745464205742, 0.004989867564290762, 0.009168654680252075, 0.00970390159636736, 0.03240775316953659, 0.04215411841869354, 0.0317578949034214, 0.09039811044931412, 0.02919706143438816, 0.07500243186950684, 0.06916675716638565, 0.08192838728427887], [0.22945763170719147, 0.020674921572208405, 0.0797308161854744, 0.10179751366376877, 0.11564330756664276, 0.29135334491729736, 0.016323914751410484, 0.028985261917114258, 0.05532391369342804, 0.007606500294059515, 0.004138293210417032, 0.0018948618089780211, 0.01900690607726574, 0.002498459303751588, 0.005057576112449169, 0.0066720847971737385, 0.013834607787430286], [0.7307668328285217, 0.027968106791377068, 0.0050850496627390385, 0.01716719940304756, 0.015816666185855865, 0.011446071788668633, 0.004138565622270107, 0.02189067378640175, 0.08811809122562408, 0.0034374678507447243, 0.001880038995295763, 0.003780041355639696, 0.005703059025108814, 0.006435824558138847, 0.0048405989073216915, 0.005694309249520302, 0.04583141952753067], [0.09374886006116867, 0.011991279199719429, 0.07913437485694885, 0.01592109352350235, 0.1669420301914215, 0.3696483075618744, 0.05733688920736313, 0.012812071479856968, 0.024349208921194077, 0.027165934443473816, 0.0037199168000370264, 0.0040178969502449036, 0.08545336872339249, 0.006317549850791693, 0.03306496515870094, 0.002056002151221037, 0.006320246960967779], [0.06328000128269196, 0.02153896540403366, 0.0394800640642643, 0.09025799483060837, 0.052132051438093185, 0.3809486925601959, 0.15937446057796478, 0.017447615042328835, 0.0526924803853035, 0.009289161302149296, 0.0017756182933226228, 0.00933381263166666, 0.03767690435051918, 0.006524651311337948, 0.037689078599214554, 0.011168084107339382, 0.009390389546751976], [0.07619411498308182, 0.04668833687901497, 0.06802711635828018, 0.13332922756671906, 0.13175615668296814, 0.07951398938894272, 0.10803163051605225, 0.01928500086069107, 0.1472310870885849, 0.023561041802167892, 0.002295850310474634, 0.006923544220626354, 0.049914032220840454, 0.010081931948661804, 0.062146540731191635, 0.012490381486713886, 0.02252999134361744], [0.016898347064852715, 0.015739023685455322, 0.017490092664957047, 0.1362493485212326, 0.25357428193092346, 0.41659215092658997, 0.012602162547409534, 0.007041164208203554, 0.025470763444900513, 0.006369700189679861, 0.002861456712707877, 0.012836974114179611, 0.03677951917052269, 0.020078064873814583, 0.012934664264321327, 0.0032085878774523735, 0.0032736302819103003], [0.5225013494491577, 0.07134781777858734, 0.005588449537754059, 0.059401046484708786, 0.040952008217573166, 0.015175732783973217, 0.0037966424133628607, 0.09752402454614639, 0.07115839421749115, 0.0077368044294416904, 0.03836851567029953, 0.010419495403766632, 0.009051177650690079, 0.011220301501452923, 0.001824891776777804, 0.009759859181940556, 0.024173462763428688], [0.7201520800590515, 0.043823327869176865, 0.003056393237784505, 0.013115474954247475, 0.0053733098320662975, 0.008851438760757446, 0.0026200308930128813, 0.09460372477769852, 0.03894883021712303, 0.004689762368798256, 0.014173009432852268, 0.00405072420835495, 0.0035712451208382845, 0.004917531739920378, 0.001998207764700055, 0.0056523410603404045, 0.030402589589357376], [0.03382587060332298, 0.005434365943074226, 0.007368527818471193, 0.023056980222463608, 0.07135003805160522, 0.055074676871299744, 0.028218988329172134, 0.024087920784950256, 0.024329189211130142, 0.020504456013441086, 0.051856253296136856, 0.02893981710076332, 0.3946288824081421, 0.09154099971055984, 0.06204678490757942, 0.038077302277088165, 0.039658959954977036], [0.038030121475458145, 0.0018306365236639977, 0.013132622465491295, 0.00721894484013319, 0.030249886214733124, 0.030445067211985588, 0.012572926469147205, 0.00420461967587471, 0.011860285885632038, 0.0769314393401146, 0.019943565130233765, 0.02215023897588253, 0.5025283694267273, 0.046040091663599014, 0.13195335865020752, 0.024824930354952812, 0.026082901284098625], [0.005298695061355829, 0.0002978661796078086, 0.0008504229481332004, 0.001166683272458613, 0.005232213530689478, 0.006284206174314022, 0.010548950172960758, 0.0008126021130010486, 0.0016021537594497204, 0.004913864657282829, 0.00233283918350935, 0.0013138775248080492, 0.7574101090431213, 0.07086969912052155, 0.11138981580734253, 0.0130922207608819, 0.006583706475794315], [0.019848834723234177, 0.002248481148853898, 0.0037914998829364777, 0.009388803504407406, 0.0028502782806754112, 0.02107577584683895, 0.004424565471708775, 0.0009037400595843792, 0.015565553680062294, 0.008854358457028866, 0.009282254613935947, 0.03747599571943283, 0.14675316214561462, 0.13725405931472778, 0.46554484963417053, 0.07357750833034515, 0.04116031900048256], [0.04542720690369606, 0.0028814810793846846, 0.00680811470374465, 0.0019958368502557278, 0.00218284223228693, 0.001577401184476912, 0.01439460925757885, 0.0017413819441571832, 0.016353832557797432, 0.01609358936548233, 0.01310602854937315, 0.02185835689306259, 0.10493607819080353, 0.025696326047182083, 0.6175658106803894, 0.028523258864879608, 0.07885778695344925], [0.18546532094478607, 0.002832588739693165, 0.0023552849888801575, 0.0015924728941172361, 0.0019927071407437325, 0.007191985845565796, 0.0030983237084001303, 0.0014784990344196558, 0.025159573182463646, 0.008007493801414967, 0.005296161863952875, 0.009536121971905231, 0.16916759312152863, 0.2546636462211609, 0.0654492974281311, 0.02887144312262535, 0.22784152626991272], [0.05343467369675636, 0.0038337851874530315, 0.008542964234948158, 0.0019821568857878447, 0.017770718783140182, 0.01338198035955429, 0.00743396021425724, 0.006312246900051832, 0.0167104322463274, 0.046326179057359695, 0.09114386141300201, 0.03134696185588837, 0.37953370809555054, 0.08949685096740723, 0.10434731841087341, 0.008043899200856686, 0.12035825848579407], [0.6858828663825989, 0.005098638124763966, 0.0004517739580478519, 0.0009559339960105717, 0.00030007469467818737, 0.0008140559657476842, 0.00018304097466170788, 0.03445791080594063, 0.009159702807664871, 0.003716467646881938, 0.016210664063692093, 0.005639155860990286, 0.0035289255902171135, 0.008525787852704525, 0.0034673099871724844, 0.01348100509494543, 0.2081267386674881]], [[0.7454310059547424, 0.023761693388223648, 0.003255219431594014, 0.022921547293663025, 0.01218433491885662, 0.0024156144354492426, 0.013529102317988873, 0.026090769097208977, 0.06894727796316147, 0.018017960712313652, 0.0027146367356181145, 0.00639007706195116, 0.0030325057450681925, 0.0018426241585984826, 0.003650534898042679, 0.015466910786926746, 0.030348103493452072], [0.7644087076187134, 0.10793653875589371, 0.0046956646256148815, 0.006380660459399223, 0.0054332055151462555, 0.00211281212978065, 0.0014909531455487013, 0.012437206692993641, 0.06100831925868988, 0.007382468320429325, 0.0016343558672815561, 0.0013618385419249535, 0.0012899088906124234, 0.0003206930705346167, 0.0010767277562990785, 0.0010599680244922638, 0.019969919696450233], [0.6263486742973328, 0.04645629972219467, 0.23294302821159363, 0.005369207821786404, 0.0010211096378043294, 0.0009457694832235575, 0.0003134069265797734, 0.007978001609444618, 0.04452388733625412, 0.0031423652544617653, 0.0018346847500652075, 0.0006665418623015285, 0.0002872981713153422, 0.00023165806487668306, 0.0016010282561182976, 0.001039514783769846, 0.025297556072473526], [0.6000315546989441, 0.03173704817891121, 0.0017599010607227683, 0.20251692831516266, 0.0069443294778466225, 0.0005679914029315114, 0.003230038098990917, 0.011964483186602592, 0.06734354048967361, 0.016813602298498154, 0.01274928916245699, 0.0047269416972994804, 0.0009576157317496836, 0.00033305323449894786, 0.0006615793099626899, 0.014093714766204357, 0.02356833405792713], [0.6242268085479736, 0.019113929942250252, 0.0005189512157812715, 0.007207277696579695, 0.2535454034805298, 0.003649613820016384, 0.010663324035704136, 0.0037125758826732635, 0.03419102728366852, 0.009160098619759083, 0.0008684711065143347, 0.003681628266349435, 0.004689417779445648, 0.0008745684172026813, 0.0012711231829598546, 0.0012352277990430593, 0.021390443667769432], [0.611883282661438, 0.023905223235487938, 0.005256030708551407, 0.0039953733794391155, 0.021683868020772934, 0.20945993065834045, 0.005543800536543131, 0.011983480304479599, 0.04765421897172928, 0.024897560477256775, 0.0017804787494242191, 0.001103617250919342, 0.0053433929570019245, 0.002078966936096549, 0.0012750972528010607, 0.0021715799812227488, 0.019984012469649315], [0.3935457170009613, 0.008486141450703144, 0.0004028867988381535, 0.0174289271235466, 0.021901069208979607, 0.0023701621685177088, 0.4826660752296448, 0.004353047348558903, 0.02093913033604622, 0.010180255398154259, 0.0016431808471679688, 0.010159194469451904, 0.006031869910657406, 0.0005958513356745243, 0.0017177504487335682, 0.004697853699326515, 0.0128809604793787], [0.6028467416763306, 0.03769001364707947, 0.028475457802414894, 0.03120230883359909, 0.018437113612890244, 0.013266599737107754, 0.01148221269249916, 0.06290264427661896, 0.0769723653793335, 0.04021906480193138, 0.010503670200705528, 0.003980573732405901, 0.006058174651116133, 0.0021799185778945684, 0.006940903607755899, 0.016928203403949738, 0.029913997277617455], [0.7800852656364441, 0.043357085436582565, 0.0025201698299497366, 0.010703466832637787, 0.0059421188198029995, 0.0017845203401520848, 0.0047697341069579124, 0.033111076802015305, 0.02892328053712845, 0.026653597131371498, 0.002037797588855028, 0.003502677194774151, 0.000982927274890244, 0.0011341494973748922, 0.00118966493755579, 0.0248012263327837, 0.028501315042376518], [0.42324426770210266, 0.011288616806268692, 0.0005467518931254745, 0.012041036039590836, 0.0031406290363520384, 0.0019263856811448932, 0.0028645633719861507, 0.0030061996076256037, 0.0512206144630909, 0.42651844024658203, 0.0034862100146710873, 0.002433923538774252, 0.0016345763579010963, 0.0006170259439386427, 0.0008696880540810525, 0.005298980511724949, 0.04986213147640228], [0.708649218082428, 0.01720842905342579, 0.003170452546328306, 0.02616560459136963, 0.0013683292781934142, 0.0005194649565964937, 0.001235231407918036, 0.005676588974893093, 0.08711107075214386, 0.017274361103773117, 0.042885322123765945, 0.004727077204734087, 0.0017113384092226624, 0.0012923299800604582, 0.001020115683786571, 0.011617828160524368, 0.06836728751659393], [0.506205677986145, 0.012991094961762428, 0.0009140609763562679, 0.017971117049455643, 0.021719137206673622, 0.0009883606107905507, 0.02845015563070774, 0.002093513961881399, 0.07095304131507874, 0.01536199264228344, 0.009218545630574226, 0.23167045414447784, 0.005852721631526947, 0.0015546750510111451, 0.0017423976678401232, 0.0047386703081429005, 0.06757446378469467], [0.40194886922836304, 0.013738472014665604, 0.002673707203939557, 0.009845610707998276, 0.016884448006749153, 0.006612048018723726, 0.018642190843820572, 0.0026986070442944765, 0.053096529096364975, 0.020563539117574692, 0.006348449736833572, 0.008549364283680916, 0.37792837619781494, 0.0022796918638050556, 0.004963651765137911, 0.004051701631397009, 0.049174707382917404], [0.5849642753601074, 0.003050753381103277, 0.0007497180486097932, 0.0035835898015648127, 0.002282927744090557, 0.005114688538014889, 0.0020319900941103697, 0.003994002938270569, 0.04248917102813721, 0.004139237105846405, 0.004156331066042185, 0.0024963708128780127, 0.004159219563007355, 0.2444210946559906, 0.0026620111893862486, 0.012758541852235794, 0.07694604992866516], [0.5436418056488037, 0.00809877086430788, 0.004244583658874035, 0.0030467489268630743, 0.0022126876283437014, 0.0009749404853209853, 0.005800488404929638, 0.006387328263372183, 0.06143166869878769, 0.009172621183097363, 0.0028124956879764795, 0.004438498988747597, 0.0037392915692180395, 0.0033911976497620344, 0.2738668620586395, 0.011096665635704994, 0.055643387138843536], [0.4284780025482178, 0.009500157088041306, 0.0005963937728665769, 0.05988456681370735, 0.0026090119499713182, 0.0007354257395491004, 0.005806018132716417, 0.014910107478499413, 0.04579974338412285, 0.03587152436375618, 0.006663530133664608, 0.004383022431284189, 0.0011924285208806396, 0.00426810747012496, 0.00205721496604383, 0.33695927262306213, 0.0402853861451149], [0.7174838781356812, 0.0321839265525341, 0.002324790693819523, 0.009250638075172901, 0.004423764534294605, 0.0015458747511729598, 0.0035497453063726425, 0.016795845702290535, 0.035515401512384415, 0.03925681859254837, 0.0029360095504671335, 0.005206204019486904, 0.0013880283804610372, 0.0014951186021789908, 0.0010882355272769928, 0.04603511467576027, 0.07952046394348145]]], [[[0.20538556575775146, 0.006783756893128157, 0.0063742040656507015, 0.030155163258314133, 0.0012839731061831117, 0.004238997120410204, 0.0025502729695290327, 0.030539020895957947, 0.12862206995487213, 0.05158519744873047, 0.01424491498619318, 0.002449838677421212, 0.0007737547275610268, 0.005300894379615784, 0.0035220577847212553, 0.18150652945041656, 0.32468387484550476], [0.5357323288917542, 0.06808635592460632, 0.026822850108146667, 0.05122525990009308, 0.0031411380041390657, 0.01969270035624504, 0.009553084149956703, 0.16382397711277008, 0.0852455124258995, 0.00542669091373682, 0.0006860120338387787, 0.00022843776969239116, 9.289468289352953e-05, 0.0003136755258310586, 0.0005599651485681534, 0.005443323403596878, 0.02392583154141903], [0.7164422273635864, 0.07096374034881592, 0.017240209504961967, 0.03909487649798393, 0.003829126711934805, 0.01916281320154667, 0.0075177038088440895, 0.05583331733942032, 0.014150304719805717, 0.011224712245166302, 0.004090744070708752, 0.0018387379823252559, 0.004050412680953741, 0.005808195099234581, 0.00576509814709425, 0.01397284958511591, 0.009014918468892574], [0.304108589887619, 0.20673112571239471, 0.06677430123090744, 0.049756307154893875, 0.008345875889062881, 0.022099127992987633, 0.017671670764684677, 0.12516650557518005, 0.11123248934745789, 0.019249949604272842, 0.005199807230383158, 0.0004899651976302266, 0.0027296992484480143, 0.0018834671936929226, 0.00445215031504631, 0.00792655535042286, 0.04618237540125847], [0.5903051495552063, 0.03608828783035278, 0.03995300456881523, 0.12305960804224014, 0.012417576275765896, 0.030747177079319954, 0.00961415097117424, 0.05638304352760315, 0.051010169088840485, 0.006114650052040815, 0.0008630385273136199, 0.0009219199419021606, 0.001853808993473649, 0.002416937379166484, 0.002234123181551695, 0.004057653248310089, 0.031959712505340576], [0.18413367867469788, 0.023990681394934654, 0.32321006059646606, 0.1411694586277008, 0.04371248185634613, 0.06313467770814896, 0.03103500045835972, 0.04628429189324379, 0.04610616713762283, 0.009255306795239449, 0.0028513886500149965, 0.0014766352251172066, 0.002761548850685358, 0.006424938794225454, 0.014643428847193718, 0.016654688864946365, 0.043155573308467865], [0.16810491681098938, 0.11710225045681, 0.17226579785346985, 0.09263493865728378, 0.02276747301220894, 0.029245691373944283, 0.015072470530867577, 0.10670068114995956, 0.15321768820285797, 0.02762390486896038, 0.006497877184301615, 0.00043262660619802773, 0.0012848024489358068, 0.0010005588410422206, 0.003142428584396839, 0.003068478312343359, 0.07983730733394623], [0.14960162341594696, 0.09268868714570999, 0.06603402644395828, 0.10647189617156982, 0.02834557555615902, 0.08273094147443771, 0.04079456627368927, 0.1163577139377594, 0.14658527076244354, 0.019199004396796227, 0.010957010090351105, 0.008268793113529682, 0.006910491269081831, 0.005952821578830481, 0.015182022005319595, 0.014812256209552288, 0.08910740911960602], [0.7728886604309082, 0.018508274108171463, 0.008784030564129353, 0.01565266214311123, 0.0026726776268333197, 0.016554074361920357, 0.005139840301126242, 0.07173344492912292, 0.03822699934244156, 0.003393480321392417, 0.0026131565682590008, 0.0015260158106684685, 0.00123747403267771, 0.0019421495962888002, 0.004238874185830355, 0.009388281963765621, 0.02550000511109829], [0.5108107328414917, 0.007227804511785507, 0.002299201674759388, 0.03300045058131218, 0.0021519185975193977, 0.021485470235347748, 0.004803324583917856, 0.0941925197839737, 0.07161345332860947, 0.04658203572034836, 0.005555460695177317, 0.0018022536532953382, 0.001148938899859786, 0.0014217772986739874, 0.0023775380104780197, 0.09815413504838943, 0.09537312388420105], [0.1152479350566864, 0.024364836513996124, 0.015423289500176907, 0.049664273858070374, 0.0035009263083338737, 0.033191319555044174, 0.023714696988463402, 0.10429858416318893, 0.1172340139746666, 0.29953938722610474, 0.012838444672524929, 0.0031419596634805202, 0.001825255574658513, 0.0013889739057049155, 0.004799085669219494, 0.10339698195457458, 0.08642999827861786], [0.09932304918766022, 0.010893166065216064, 0.011732902377843857, 0.014895597472786903, 0.00198561092838645, 0.012738666497170925, 0.004271339159458876, 0.03948477655649185, 0.05469103530049324, 0.6029919385910034, 0.06314750760793686, 0.002943486673757434, 0.01201237365603447, 0.004603798966854811, 0.004015857353806496, 0.013789675198495388, 0.046479154378175735], [0.20694038271903992, 0.004846381489187479, 0.031077606603503227, 0.01639833115041256, 0.006237424910068512, 0.022460181266069412, 0.007951758801937103, 0.028792904689908028, 0.033693451434373856, 0.37686920166015625, 0.11408039927482605, 0.04137282818555832, 0.020017584785819054, 0.02006438374519348, 0.02714480459690094, 0.014484409242868423, 0.027567988261580467], [0.41953518986701965, 0.014850947074592113, 0.05826641619205475, 0.01622067019343376, 0.0008975358214229345, 0.012132195755839348, 0.002710985252633691, 0.0375923328101635, 0.02597341313958168, 0.1961711347103119, 0.13032746315002441, 0.00784977525472641, 0.02046329714357853, 0.01249148603528738, 0.01430736854672432, 0.013182936236262321, 0.017026925459504128], [0.06252007931470871, 0.007303342223167419, 0.14199785888195038, 0.012512799352407455, 0.0017748326063156128, 0.01714741438627243, 0.0023939183447510004, 0.011096566915512085, 0.03954024612903595, 0.35226666927337646, 0.18160906434059143, 0.010979590006172657, 0.05944208428263664, 0.02467181161046028, 0.022586803883314133, 0.012922752648591995, 0.039234187453985214], [0.08404769003391266, 0.013540185987949371, 0.01109942514449358, 0.006828024052083492, 0.0010163389379158616, 0.005699891597032547, 0.002567519899457693, 0.029865993186831474, 0.11711191385984421, 0.2543063163757324, 0.10178137570619583, 0.006320924498140812, 0.04567937180399895, 0.019466541707515717, 0.04118887335062027, 0.05052950978279114, 0.20895008742809296], [0.7906316518783569, 0.009794555604457855, 0.006181848701089621, 0.006262470968067646, 0.0012316128704696894, 0.005284451879560947, 0.0013676556991413236, 0.0385441780090332, 0.0322149358689785, 0.006826807279139757, 0.005321907345205545, 0.003384564071893692, 0.0030748024582862854, 0.0062591517344117165, 0.008381938561797142, 0.027219180017709732, 0.04801825433969498]], [[0.030539169907569885, 0.02875026874244213, 0.06822026520967484, 0.023251529783010483, 0.013749457895755768, 0.01913834735751152, 0.0069595989771187305, 0.010247768834233284, 0.05387391522526741, 0.2077091932296753, 0.05816683918237686, 0.038307610899209976, 0.0837378203868866, 0.10971680283546448, 0.08714146912097931, 0.0647803470492363, 0.09570956230163574], [0.052944429218769073, 0.09264461696147919, 0.19800376892089844, 0.09800095856189728, 0.07139851152896881, 0.1356605738401413, 0.052425216883420944, 0.03596577048301697, 0.027081986889243126, 0.024452807381749153, 0.03851117193698883, 0.030895743519067764, 0.04019801691174507, 0.02991340309381485, 0.03225291520357132, 0.019992874935269356, 0.019657159224152565], [0.08105944097042084, 0.08162585645914078, 0.09906909614801407, 0.18268047273159027, 0.056270454078912735, 0.10172320902347565, 0.03685358911752701, 0.042729396373033524, 0.01830418035387993, 0.03293030336499214, 0.029222840443253517, 0.05593830719590187, 0.02558274380862713, 0.037739019840955734, 0.02928260713815689, 0.0731109157204628, 0.01587757281959057], [0.08996124565601349, 0.05384872108697891, 0.056726980954408646, 0.09951606392860413, 0.027063090354204178, 0.07598155736923218, 0.020372234284877777, 0.102356918156147, 0.13701073825359344, 0.017944281920790672, 0.010511543601751328, 0.027916213497519493, 0.028221946209669113, 0.019278112798929214, 0.01726611517369747, 0.09487924724817276, 0.12114499509334564], [0.05538564920425415, 0.034674808382987976, 0.05091593414545059, 0.04707299917936325, 0.013468349352478981, 0.031550176441669464, 0.018559744581580162, 0.30694717168807983, 0.17568787932395935, 0.02435414306819439, 0.00538075203076005, 0.010141677223145962, 0.027629045769572258, 0.005349986720830202, 0.009835605509579182, 0.046852823346853256, 0.13619326055049896], [0.0379943773150444, 0.05438225716352463, 0.06459691375494003, 0.13985489308834076, 0.06155803054571152, 0.07143308222293854, 0.025858715176582336, 0.1815710961818695, 0.04422144591808319, 0.025690626353025436, 0.015467372722923756, 0.0621224045753479, 0.03957696259021759, 0.011829550378024578, 0.02686525508761406, 0.09962642192840576, 0.0373506173491478], [0.03593188151717186, 0.0802558958530426, 0.11214897036552429, 0.14159120619297028, 0.05939282104372978, 0.12235785275697708, 0.031530119478702545, 0.13292339444160461, 0.03320692107081413, 0.02018766663968563, 0.016067024320364, 0.02131885290145874, 0.059587642550468445, 0.01853979006409645, 0.021389342844486237, 0.06646954268217087, 0.02710116095840931], [0.08188726752996445, 0.079721599817276, 0.08180434256792068, 0.1742558628320694, 0.121385857462883, 0.08700862526893616, 0.058161478489637375, 0.09384908527135849, 0.039518803358078, 0.02565612457692623, 0.0212326068431139, 0.030950915068387985, 0.022575564682483673, 0.011437599547207355, 0.010341361165046692, 0.03413999453186989, 0.026072870939970016], [0.10896807163953781, 0.025675645098090172, 0.022387707605957985, 0.016805820167064667, 0.003379481378942728, 0.007485288195312023, 0.003515147138386965, 0.36154910922050476, 0.17249315977096558, 0.009293747134506702, 0.01320483349263668, 0.019396182149648666, 0.007216122001409531, 0.012266108766198158, 0.01598326861858368, 0.030703043565154076, 0.16967728734016418], [0.11400028318166733, 0.05146404728293419, 0.033425137400627136, 0.13680297136306763, 0.021484075114130974, 0.015804370865225792, 0.008894810453057289, 0.20390522480010986, 0.09093347936868668, 0.046962905675172806, 0.012200532481074333, 0.04605535417795181, 0.015315336175262928, 0.024291306734085083, 0.006338980980217457, 0.07237901538610458, 0.09974216669797897], [0.04377024248242378, 0.08784858137369156, 0.24843871593475342, 0.08310889452695847, 0.01720166765153408, 0.07554163038730621, 0.01523678470402956, 0.013416796922683716, 0.03536954149603844, 0.038841504603624344, 0.04249999299645424, 0.026115793734788895, 0.07263584434986115, 0.07276958227157593, 0.057558510452508926, 0.0299290269613266, 0.0397169291973114], [0.06728500872850418, 0.029726272448897362, 0.031129619106650352, 0.01139065157622099, 0.006314235273748636, 0.023750007152557373, 0.008108539506793022, 0.11866075545549393, 0.19700491428375244, 0.025408895686268806, 0.02302015759050846, 0.013246193528175354, 0.037312932312488556, 0.04975418001413345, 0.05689382553100586, 0.053714487701654434, 0.24727939069271088], [0.029100202023983, 0.025020482018589973, 0.029811451211571693, 0.023501498624682426, 0.00899732019752264, 0.028097914531826973, 0.022307489067316055, 0.12569154798984528, 0.10320097208023071, 0.02622462809085846, 0.014257804490625858, 0.049101997166872025, 0.08531162142753601, 0.07768764346837997, 0.1793392449617386, 0.03849849849939346, 0.13384966552257538], [0.030792584642767906, 0.040409255772829056, 0.03531654179096222, 0.021777180954813957, 0.005455194041132927, 0.013928764499723911, 0.008388255722820759, 0.3305415213108063, 0.059313658624887466, 0.015162641182541847, 0.02188735455274582, 0.06858666241168976, 0.04566754028201103, 0.04204744100570679, 0.13483184576034546, 0.043787337839603424, 0.08210629224777222], [0.02783389389514923, 0.02994486689567566, 0.036308784037828445, 0.0445474311709404, 0.008001427166163921, 0.01849203184247017, 0.013227750547230244, 0.28607210516929626, 0.04233448579907417, 0.015235984697937965, 0.024972660467028618, 0.08610875904560089, 0.05378352850675583, 0.07134295254945755, 0.08312346786260605, 0.10290849953889847, 0.05576132982969284], [0.06782539933919907, 0.02991335093975067, 0.034766748547554016, 0.03465987741947174, 0.00479066651314497, 0.02222803793847561, 0.005951298866420984, 0.11263708770275116, 0.125095933675766, 0.022906925529241562, 0.02040037140250206, 0.04685918614268303, 0.04015630483627319, 0.049280162900686264, 0.05461256578564644, 0.12767784297466278, 0.2002382129430771], [0.10290864109992981, 0.015531357377767563, 0.010912599973380566, 0.008136613294482231, 0.001369072706438601, 0.002825130708515644, 0.0014492975315079093, 0.2821357548236847, 0.21065914630889893, 0.01181227620691061, 0.011630960740149021, 0.017311351373791695, 0.006233724299818277, 0.01320717204362154, 0.016567962244153023, 0.03157003968954086, 0.2557390332221985]], [[0.11574086546897888, 0.03910510987043381, 0.07187940180301666, 0.06111738830804825, 0.013943717814981937, 0.07700829952955246, 0.021459145471453667, 0.07959326356649399, 0.1575775444507599, 0.029751181602478027, 0.08388756960630417, 0.01684390939772129, 0.010905494913458824, 0.008169524371623993, 0.019547272473573685, 0.039992909878492355, 0.15347738564014435], [0.17140600085258484, 0.024477750062942505, 0.04528594762086868, 0.021172508597373962, 0.004341131076216698, 0.0551883764564991, 0.008823134005069733, 0.14520800113677979, 0.21773682534694672, 0.012238367460668087, 0.02793825790286064, 0.018263230100274086, 0.006248244550079107, 0.0026568167377263308, 0.024396497756242752, 0.017701826989650726, 0.1969171166419983], [0.10825788974761963, 0.0362422838807106, 0.07992580533027649, 0.032638467848300934, 0.01952669583261013, 0.3589767813682556, 0.013312151655554771, 0.0045678336173295975, 0.08004390448331833, 0.028185870498418808, 0.011232460848987103, 0.008648686110973358, 0.02792302519083023, 0.01824497990310192, 0.07378576695919037, 0.021478137001395226, 0.07700925320386887], [0.12401217967271805, 0.01814933307468891, 0.021389776840806007, 0.006738147232681513, 0.003697388805449009, 0.04121708869934082, 0.002729542087763548, 0.10315649956464767, 0.33265554904937744, 0.007812796160578728, 0.019281914457678795, 0.006965617649257183, 0.002313739387318492, 0.0015214583836495876, 0.015322021208703518, 0.004228692036122084, 0.28880825638771057], [0.07825490087270737, 0.009201773442327976, 0.006448546424508095, 0.0014714559074491262, 0.0003126643714495003, 0.004056004341691732, 0.00034153382875956595, 0.22924011945724487, 0.36345067620277405, 0.002567756688222289, 0.005057985428720713, 0.0019221982220187783, 0.0001178562015411444, 0.0001304157340200618, 0.0007722618756815791, 0.0007931552827358246, 0.29586073756217957], [0.1532689779996872, 0.034383002668619156, 0.02343110926449299, 0.014916395768523216, 0.009058364666998386, 0.04522303491830826, 0.001690057571977377, 0.05718221515417099, 0.3356769382953644, 0.009877835400402546, 0.016316941007971764, 0.00472671864554286, 0.003640758339315653, 0.0012654875172302127, 0.011775690130889416, 0.009773808531463146, 0.2677927315235138], [0.11485268920660019, 0.010244856588542461, 0.0029909468721598387, 0.0029443015810102224, 0.002445399295538664, 0.008238011039793491, 0.00015095675189513713, 0.1396235078573227, 0.3869325816631317, 0.00320964097045362, 0.00555385509505868, 0.0017245071940124035, 0.0003018413844984025, 0.0001602540141902864, 0.0019474123837426305, 0.0013394136913120747, 0.31733977794647217], [0.19137787818908691, 0.01847575604915619, 0.017389247193932533, 0.012108166702091694, 0.0026623427402228117, 0.012141812592744827, 0.004095043987035751, 0.2350376546382904, 0.25106942653656006, 0.005480817519128323, 0.005988531745970249, 0.003865043167024851, 0.0008568412740714848, 0.001411333796568215, 0.006003897171467543, 0.00617101090028882, 0.22586509585380554], [0.1774381846189499, 0.018427303060889244, 0.01918407343327999, 0.009497717022895813, 0.001488909823819995, 0.01567409560084343, 0.00342578929848969, 0.2394871860742569, 0.24724702537059784, 0.003189969342201948, 0.010203894227743149, 0.005848280619829893, 0.001435308950021863, 0.0023856020998209715, 0.008146295323967934, 0.008177339099347591, 0.22874300181865692], [0.13920240104198456, 0.012078697793185711, 0.006467532366514206, 0.004354296252131462, 0.002679905155673623, 0.006293513812124729, 0.0027548607904464006, 0.22717343270778656, 0.22857098281383514, 0.006915548350661993, 0.023446639999747276, 0.02167346328496933, 0.002064015716314316, 0.0018096218118444085, 0.01284692995250225, 0.017827831208705902, 0.2838403582572937], [0.1956690400838852, 0.025164686143398285, 0.04622100666165352, 0.02009396255016327, 0.0035865241661667824, 0.04055054858326912, 0.0053816260769963264, 0.04801809787750244, 0.20525597035884857, 0.04236423224210739, 0.009922388009727001, 0.021295171231031418, 0.030363192781805992, 0.010341254062950611, 0.05385838821530342, 0.015181980095803738, 0.22673195600509644], [0.08670563995838165, 0.006010875105857849, 0.00453865947201848, 0.002072048606351018, 0.00047739542787894607, 0.00574501371011138, 0.0005594416870735586, 0.13307473063468933, 0.35764697194099426, 0.0027202002238482237, 0.0034526768140494823, 0.0010986845009028912, 0.0016637862427160144, 0.001018412527628243, 0.0048525771126151085, 0.0030614861752837896, 0.3853014409542084], [0.09733188897371292, 0.01038606557995081, 0.009335525333881378, 0.003838004544377327, 0.0010971539886668324, 0.029846031218767166, 0.0009417555993422866, 0.03684823587536812, 0.3127937316894531, 0.009352106600999832, 0.00640526320785284, 0.010342676192522049, 0.009683347307145596, 0.01485812570899725, 0.08279159665107727, 0.006566026248037815, 0.35758259892463684], [0.19090856611728668, 0.031167497858405113, 0.025069117546081543, 0.017045386135578156, 0.00999945867806673, 0.02456376701593399, 0.002984082093462348, 0.03783676400780678, 0.252787709236145, 0.01684284582734108, 0.004527321085333824, 0.017688432708382607, 0.015695394948124886, 0.004822377115488052, 0.0427832193672657, 0.019392818212509155, 0.2858852446079254], [0.08572062104940414, 0.019358234480023384, 0.01523648202419281, 0.019156483933329582, 0.021120797842741013, 0.05896209180355072, 0.005831508431583643, 0.021511366590857506, 0.1863667517900467, 0.07127447426319122, 0.021105661988258362, 0.01765519566833973, 0.10097376257181168, 0.06024850532412529, 0.020846011117100716, 0.02582688070833683, 0.24880509078502655], [0.2162291705608368, 0.012456967495381832, 0.0039858282543718815, 0.006637371610850096, 0.0018097938736900687, 0.010658439248800278, 0.0012663427041843534, 0.0989227294921875, 0.23571692407131195, 0.03422432020306587, 0.021881040185689926, 0.01574474386870861, 0.007600976619869471, 0.0021915428806096315, 0.017080625519156456, 0.012712590396404266, 0.3008806109428406], [0.18929561972618103, 0.013770287856459618, 0.010449860244989395, 0.00614132359623909, 0.000933479459490627, 0.008514552377164364, 0.0022178860381245613, 0.2171238213777542, 0.24369879066944122, 0.0048760720528662205, 0.012409237213432789, 0.0070931739173829556, 0.002000832697376609, 0.0036244706716388464, 0.010943829081952572, 0.009887771680951118, 0.2570191025733948]], [[0.3063393533229828, 0.016823729500174522, 0.02133076824247837, 0.014787032268941402, 0.004586333874613047, 0.008930913172662258, 0.0046145180240273476, 0.02900872379541397, 0.10513562709093094, 0.059194471687078476, 0.05338602513074875, 0.007604668382555246, 0.010456654243171215, 0.020206967368721962, 0.017974289134144783, 0.057149775326251984, 0.26247018575668335], [0.028736766427755356, 0.017690913751721382, 0.21235576272010803, 0.45701807737350464, 0.05954978987574577, 0.047599636018276215, 0.02696293033659458, 0.030378146097064018, 0.04113154113292694, 0.0038790039252489805, 0.016541559249162674, 0.006355626508593559, 0.0022419635206460953, 0.0024337326176464558, 0.0030229424592107534, 0.01285422220826149, 0.031247351318597794], [0.3970986008644104, 0.014471332542598248, 0.009949607774615288, 0.041678477078676224, 0.019086839631199837, 0.08480267226696014, 0.014518244192004204, 0.09341216087341309, 0.1397390514612198, 0.00176615035161376, 0.0017886348068714142, 0.0007569961016997695, 0.003783921245485544, 0.006175217218697071, 0.0034074848517775536, 0.012553250417113304, 0.1550113558769226], [0.04054252430796623, 0.0030526411719620228, 0.003028194885700941, 0.0067199477925896645, 0.02198825217783451, 0.18767423927783966, 0.23067983984947205, 0.31219494342803955, 0.0907425507903099, 0.005593448411673307, 0.002628719201311469, 0.0002680444740690291, 0.0023900410160422325, 0.007873853668570518, 0.025948332622647285, 0.012335292994976044, 0.04633917286992073], [0.14558541774749756, 0.003993839956820011, 0.001597037073224783, 0.0047955890186131, 0.015098282136023045, 0.10384045541286469, 0.1618817001581192, 0.2784561216831207, 0.19429436326026917, 0.00319237494841218, 0.0028353265952318907, 0.00036850603646598756, 0.0020457764621824026, 0.002072820905596018, 0.0030148939695209265, 0.0033264944795519114, 0.07360094785690308], [0.2417854368686676, 0.012175928801298141, 0.005689199548214674, 0.004064121749252081, 0.008398755453526974, 0.04072807356715202, 0.036037832498550415, 0.20900744199752808, 0.2611490786075592, 0.02339606173336506, 0.01484100054949522, 0.003204947104677558, 0.006629234179854393, 0.006790592335164547, 0.006227175239473581, 0.006845137104392052, 0.11302994936704636], [0.2627291977405548, 0.012396474368870258, 0.0016125416150316596, 0.004647783935070038, 0.007459305692464113, 0.03738383576273918, 0.01006923709064722, 0.20709355175495148, 0.3122168183326721, 0.027805477380752563, 0.012193344533443451, 0.0014383170055225492, 0.004923100583255291, 0.003706008195877075, 0.0033784869592636824, 0.008767195045948029, 0.08217921108007431], [0.10630419850349426, 0.016108835116028786, 0.015444967895746231, 0.02033955417573452, 0.007889826782047749, 0.014650100842118263, 0.008080512285232544, 0.06066301465034485, 0.1440199315547943, 0.13078199326992035, 0.21670503914356232, 0.0280098095536232, 0.012757403776049614, 0.022060109302401543, 0.016466859728097916, 0.03797439858317375, 0.14174333214759827], [0.6476292014122009, 0.016348058357834816, 0.0040677934885025024, 0.014692348428070545, 0.0018367322627454996, 0.00444315280765295, 0.001242246595211327, 0.008662236854434013, 0.11497929692268372, 0.01123941782861948, 0.008930525742471218, 0.003104404080659151, 0.003805150045081973, 0.004457211121916771, 0.0035507732536643744, 0.010409817099571228, 0.14060157537460327], [0.033121827989816666, 0.0012563845375552773, 0.007179287262260914, 0.06860857456922531, 0.0006718960939906538, 0.0009903188329190016, 0.0012938766740262508, 0.014231693930923939, 0.05561680719256401, 0.013927343301475048, 0.06827523559331894, 0.11747953295707703, 0.09750840067863464, 0.04995199292898178, 0.08169525861740112, 0.26087087392807007, 0.12732067704200745], [0.03574460744857788, 0.0010141897946596146, 0.005059435963630676, 0.03129911422729492, 0.0002695823204703629, 0.0014458884252235293, 0.0009555217111483216, 0.020558476448059082, 0.058217234909534454, 0.0037514795549213886, 0.01196987833827734, 0.03494424372911453, 0.03082987852394581, 0.09665343910455704, 0.07179718464612961, 0.49876922369003296, 0.09672056138515472], [0.1278427541255951, 0.0007718975539319217, 0.0008515733061358333, 0.008008218370378017, 0.0006004553870297968, 0.005536243785172701, 0.005610785912722349, 0.04997546970844269, 0.09017884731292725, 0.001485280692577362, 0.0027171156834810972, 0.0016808612272143364, 0.04382693022489548, 0.03675924241542816, 0.16926313936710358, 0.25449761748313904, 0.20039351284503937], [0.21982243657112122, 0.0017051800386980176, 0.0019056284800171852, 0.0019899189937859774, 0.0013626805739477277, 0.005361906718462706, 0.0017031363677233458, 0.03321647644042969, 0.14011715352535248, 0.006171513814479113, 0.004213098436594009, 0.007689651567488909, 0.035497721284627914, 0.05699235945940018, 0.08599193394184113, 0.03939202055335045, 0.35686710476875305], [0.3612912595272064, 0.0023381037171930075, 0.0008506671874783933, 0.0014513884671032429, 0.0011168806813657284, 0.0033325699623674154, 0.00043653769535012543, 0.021657373756170273, 0.11613117903470993, 0.0020864217076450586, 0.0012140811886638403, 0.00038299651350826025, 0.00644735898822546, 0.007998848333954811, 0.03876952454447746, 0.03144445642828941, 0.4030504822731018], [0.5138987898826599, 0.0022618251387029886, 0.0007979305228218436, 0.0020120753906667233, 0.0005921304691582918, 0.004058465827256441, 0.00022889605315867811, 0.017564691603183746, 0.12219111621379852, 0.0023522975388914347, 0.0005863909027539194, 0.00032853358425199986, 0.003553203074261546, 0.003251932095736265, 0.0077364821918308735, 0.021639319136738777, 0.2969459295272827], [0.4063866138458252, 0.001210736227221787, 0.0009560450562275946, 0.002112641232088208, 0.000904428365174681, 0.004357117228209972, 0.0011757173342630267, 0.012563016265630722, 0.06393489241600037, 0.030697297304868698, 0.025672459974884987, 0.002026200294494629, 0.004858278203755617, 0.016958247870206833, 0.03626614063978195, 0.05675263702869415, 0.33316755294799805], [0.7013733386993408, 0.0073241801001131535, 0.0022500320337712765, 0.009310482069849968, 0.00120065629016608, 0.0036680949851870537, 0.0010160686215385795, 0.006998822558671236, 0.06656818836927414, 0.009200379252433777, 0.004334858153015375, 0.0014812416629865766, 0.0024717114865779877, 0.003434327896684408, 0.0037332160864025354, 0.014813580550253391, 0.160820871591568]], [[0.09979113936424255, 0.03883330523967743, 0.024698302149772644, 0.04483076557517052, 0.01476182322949171, 0.024045243859291077, 0.02374119870364666, 0.045566145330667496, 0.2279992550611496, 0.05573498457670212, 0.042020007967948914, 0.02091025374829769, 0.005749198608100414, 0.008787647821009159, 0.009675520472228527, 0.025539932772517204, 0.287315309047699], [0.09115432947874069, 0.023153360933065414, 0.11604630202054977, 0.20041850209236145, 0.013324467465281487, 0.05764161795377731, 0.03696964681148529, 0.04960782825946808, 0.18983232975006104, 0.009514346718788147, 0.008521253243088722, 0.004084935877472162, 0.005067496560513973, 0.00562170147895813, 0.010833547450602055, 0.07247931510210037, 0.10572897642850876], [0.07463133335113525, 0.04899638146162033, 0.07019500434398651, 0.028235049918293953, 0.006032094359397888, 0.0024028075858950615, 0.0014688250375911593, 0.03557515889406204, 0.3454008102416992, 0.004062136169523001, 0.0056605031713843346, 0.0023208227939903736, 0.0015505142509937286, 0.002558220410719514, 0.004020435269922018, 0.010499661788344383, 0.3563901484012604], [0.025600118562579155, 0.0034379849676042795, 0.0003415506216697395, 0.0005461337277665734, 0.0020815925672650337, 0.4802185893058777, 0.42890799045562744, 0.03081451915204525, 0.008687668479979038, 0.00042085308814421296, 0.0010776181006804109, 0.002147944876924157, 0.001498684985563159, 0.0013826601207256317, 0.006192204542458057, 0.00028337270487099886, 0.006360561121255159], [0.03598932921886444, 0.007123661693185568, 0.00096351612592116, 0.06700829416513443, 0.005794658791273832, 0.6877670288085938, 0.050140462815761566, 0.04110276699066162, 0.05055509880185127, 0.0022147917188704014, 0.0018843431025743484, 0.0007442908827215433, 0.0013113131280988455, 0.0008725986699573696, 0.004595724865794182, 0.0025140070356428623, 0.03941816836595535], [0.05010809004306793, 0.03691926226019859, 0.009549910202622414, 0.10618976503610611, 0.009127706289291382, 0.003283189609646797, 0.036792412400245667, 0.04685065895318985, 0.35068732500076294, 0.003924740944057703, 0.005799079779535532, 0.0002189219812862575, 0.0018596570007503033, 0.0005153012461960316, 0.00283996993675828, 0.006714740768074989, 0.32861921191215515], [0.017171761021018028, 0.005655510351061821, 0.0009492615354247391, 0.10877551883459091, 0.02639276161789894, 0.7780289053916931, 0.0014328344259411097, 0.008183993399143219, 0.02630131132900715, 0.0010964705143123865, 0.0007076399633660913, 0.0006622506771236658, 0.00045109467464499176, 0.0028128265403211117, 0.0014420216903090477, 0.00017094130453187972, 0.01976483315229416], [0.056040696799755096, 0.0481586717069149, 0.0392625592648983, 0.1332060545682907, 0.03988102450966835, 0.06426862627267838, 0.07791052758693695, 0.033656325191259384, 0.22239747643470764, 0.03070741333067417, 0.04692991450428963, 0.01760638877749443, 0.00650670425966382, 0.005804271437227726, 0.00998917780816555, 0.01178609486669302, 0.15588806569576263], [0.06940141320228577, 0.033307887613773346, 0.019474318251013756, 0.012008906342089176, 0.0012323374394327402, 0.0044489032588899136, 0.006613615900278091, 0.04443608224391937, 0.4192591607570648, 0.012425372377038002, 0.021549394354224205, 0.00817781500518322, 0.0012089208466932178, 0.002642097882926464, 0.007863999344408512, 0.012665115296840668, 0.3232845664024353], [0.011722260154783726, 0.0018850011983886361, 0.0012728053843602538, 0.012121759355068207, 0.0004469156265258789, 0.006978520192205906, 0.0011283374624326825, 0.007707122713327408, 0.0610102079808712, 0.003247203305363655, 0.016734765842556953, 0.005816273856908083, 0.02339010126888752, 0.13839447498321533, 0.0783526673913002, 0.5656047463417053, 0.06418689340353012], [0.0442114919424057, 0.004757745657116175, 0.009087950922548771, 0.039119478315114975, 0.003207913599908352, 0.012476588599383831, 0.006762477569282055, 0.019034622237086296, 0.12511411309242249, 0.017783576622605324, 0.01628032885491848, 0.07789083570241928, 0.01078982837498188, 0.04307781532406807, 0.11294005811214447, 0.3558245599269867, 0.10164058953523636], [0.004011786077171564, 0.0001014742738334462, 5.817809869768098e-05, 0.0003955201245844364, 0.00034679105738177896, 1.3518204468709882e-05, 0.00017554446822032332, 0.0015848720213398337, 0.005109278950840235, 9.902526653604582e-05, 0.004073916934430599, 3.7136174796614796e-05, 0.9544261693954468, 0.01065280195325613, 0.00236969580873847, 0.010051416233181953, 0.006492914166301489], [0.043656863272190094, 0.0019583157263696194, 0.0007192094344645739, 0.0038125738501548767, 3.6382869438966736e-05, 0.004563064314424992, 0.0001681829453445971, 0.011236460879445076, 0.07154230028390884, 0.005422523710876703, 0.020473744720220566, 0.3826789855957031, 0.008451919071376324, 0.08547884225845337, 0.24268482625484467, 0.019992487505078316, 0.09712338447570801], [0.1314173936843872, 0.012020898051559925, 0.007338241674005985, 0.004280397202819586, 0.0006550037651322782, 0.0005949820042587817, 4.262571019353345e-05, 0.026250002905726433, 0.06329888105392456, 0.0006792040658183396, 0.009112020954489708, 0.0662970095872879, 0.046854693442583084, 0.008737390860915184, 0.43581074476242065, 0.07052099704742432, 0.11608953028917313], [0.03955933824181557, 0.018778996542096138, 0.027329443022608757, 0.07223028689622879, 0.0019802565220743418, 0.001056011882610619, 0.00018029168131761253, 0.020361371338367462, 0.21713539958000183, 0.00586598040536046, 0.009586179628968239, 0.0005024527781642973, 0.018520750105381012, 0.1304548680782318, 0.0009591386769898236, 0.07688599079847336, 0.3586132228374481], [0.038896504789590836, 0.002310445299372077, 0.0018187969690188766, 0.0009306020801886916, 0.00023278601292986423, 0.0005830102600157261, 0.0005678428569808602, 0.012368783354759216, 0.013434451073408127, 0.005887024104595184, 0.004573711659759283, 0.04550807178020477, 0.0049680983647704124, 0.3276149034500122, 0.5107601881027222, 0.005239696707576513, 0.02430511824786663], [0.07556984573602676, 0.02032707817852497, 0.012514768168330193, 0.006844404619187117, 0.0007995591149665415, 0.002468045800924301, 0.003937508910894394, 0.03575125336647034, 0.3136250078678131, 0.015457957983016968, 0.01945636048913002, 0.008300923742353916, 0.00160056387539953, 0.005112434737384319, 0.011716611683368683, 0.019896110519766808, 0.4466214179992676]], [[0.07720981538295746, 0.005479374434798956, 0.009653094224631786, 0.004942193161696196, 0.006296050269156694, 0.01879698596894741, 0.0029290001839399338, 0.009101291187107563, 0.10884293913841248, 0.255292683839798, 0.08275441825389862, 0.009947802871465683, 0.021497810259461403, 0.005891737062484026, 0.010315139777958393, 0.0595274493098259, 0.3115222156047821], [0.10081841051578522, 0.025208599865436554, 0.10823255777359009, 0.13100038468837738, 0.08873111009597778, 0.19428133964538574, 0.03402477875351906, 0.06430313736200333, 0.09153364598751068, 0.02266654558479786, 0.02930597960948944, 0.011637458577752113, 0.004248590208590031, 0.004983082879334688, 0.00925781112164259, 0.024000205099582672, 0.055766358971595764], [0.14288413524627686, 0.06653030216693878, 0.0826490968465805, 0.13423201441764832, 0.05755477026104927, 0.24242113530635834, 0.05778031051158905, 0.035578690469264984, 0.022000988945364952, 0.04424966126680374, 0.016666648909449577, 0.005481308326125145, 0.0052717761136591434, 0.005180803593248129, 0.011721171438694, 0.05326942726969719, 0.016527727246284485], [0.2095443457365036, 0.03183833882212639, 0.10361836105585098, 0.013735993765294552, 0.03363284468650818, 0.29154878854751587, 0.027082743123173714, 0.046949706971645355, 0.08824890106916428, 0.07446525245904922, 0.005305198021233082, 0.0028499134350568056, 0.002666997956112027, 0.002208211924880743, 0.0036699718330055475, 0.0063538155518472195, 0.05628063157200813], [0.6052699089050293, 0.04618102312088013, 0.041307274252176285, 0.00972806941717863, 0.008821822702884674, 0.06025583669543266, 0.020914316177368164, 0.10611087083816528, 0.054035525768995285, 0.01358695887029171, 0.00205828039906919, 0.0011157057015225291, 0.0007620607502758503, 0.0011756200110539794, 0.0014770982088521123, 0.0027024950832128525, 0.024497119709849358], [0.14543011784553528, 0.06284019351005554, 0.1127016618847847, 0.042584896087646484, 0.024357737973332405, 0.23440591990947723, 0.06719357520341873, 0.041610680520534515, 0.044048063457012177, 0.12064123898744583, 0.01496205385774374, 0.004802182782441378, 0.005745191127061844, 0.007228384725749493, 0.008618212305009365, 0.03251977637410164, 0.03031005710363388], [0.2758655548095703, 0.0684211477637291, 0.0871393010020256, 0.07007474452257156, 0.039556119590997696, 0.17759110033512115, 0.02543524280190468, 0.07229757308959961, 0.07552193105220795, 0.032701559364795685, 0.013232419267296791, 0.004794727545231581, 0.0017865468980744481, 0.002480826573446393, 0.001856140443123877, 0.014901673421263695, 0.03634342551231384], [0.20471413433551788, 0.16547903418540955, 0.053886789828538895, 0.03470611199736595, 0.01586093008518219, 0.05950860306620598, 0.014329487457871437, 0.17287319898605347, 0.1188010722398758, 0.020981701090931892, 0.020500166341662407, 0.004532428923994303, 0.0035689889919012785, 0.003243064507842064, 0.004292394034564495, 0.02733711712062359, 0.07538477331399918], [0.3850259482860565, 0.042620699852705, 0.018977511674165726, 0.01876058056950569, 0.0035124258138239384, 0.015309530310332775, 0.008836154825985432, 0.284096360206604, 0.08778875321149826, 0.0037358247209340334, 0.010208687745034695, 0.013469942845404148, 0.0023829557467252016, 0.008806977421045303, 0.011539126746356487, 0.017326166853308678, 0.06760238856077194], [0.40637195110321045, 0.005644735414534807, 0.011581013910472393, 0.007326821330934763, 0.005657300353050232, 0.04194243252277374, 0.007262458559125662, 0.04291181266307831, 0.10112234205007553, 0.06649059802293777, 0.05439984053373337, 0.0223244521766901, 0.011947850696742535, 0.00748045276850462, 0.007863557897508144, 0.025249430909752846, 0.17442286014556885], [0.03554505482316017, 0.1258942037820816, 0.036509331315755844, 0.05995108187198639, 0.02699664793908596, 0.0375521183013916, 0.018652284517884254, 0.005674660671502352, 0.07097121328115463, 0.1465049535036087, 0.0661725252866745, 0.014102384448051453, 0.009331862442195415, 0.03154764696955681, 0.16420786082744598, 0.06238081678748131, 0.0880052000284195], [0.6659138798713684, 0.018083393573760986, 0.011816686950623989, 0.00923013687133789, 0.0016744232270866632, 0.017004702240228653, 0.00671832449734211, 0.05825703591108322, 0.018215656280517578, 0.07125592976808548, 0.037845902144908905, 0.011587291024625301, 0.0036953638773411512, 0.005372975952923298, 0.024161657318472862, 0.017375433817505836, 0.02179119549691677], [0.40163323283195496, 0.014721721410751343, 0.013423760421574116, 0.016551053151488304, 0.026905778795480728, 0.06019182503223419, 0.01458576787263155, 0.11016889661550522, 0.02927340939640999, 0.13569903373718262, 0.01877519302070141, 0.041450969874858856, 0.008395720273256302, 0.010868458077311516, 0.021202370524406433, 0.04074788838624954, 0.03540491312742233], [0.8464874029159546, 0.007125409785658121, 0.011116609908640385, 0.006413394585251808, 0.0010565321426838636, 0.010183493606746197, 0.007261425722390413, 0.06178567558526993, 0.005885311868041754, 0.013668421655893326, 0.0023411950096488, 0.0041036056354641914, 0.00033969542710110545, 0.0006532130064442754, 0.005911857821047306, 0.010446146130561829, 0.005220680497586727], [0.5370393991470337, 0.024095334112644196, 0.019729357212781906, 0.04203464463353157, 0.0067970119416713715, 0.05341538041830063, 0.020838703960180283, 0.09264549612998962, 0.02320600487291813, 0.0616401843726635, 0.022456318140029907, 0.020219188183546066, 0.002763928845524788, 0.003370145568624139, 0.013628877699375153, 0.030209604650735855, 0.025910403579473495], [0.4284515380859375, 0.026992104947566986, 0.009285747073590755, 0.01861882582306862, 0.007447022013366222, 0.04384639114141464, 0.006369845476001501, 0.06425353139638901, 0.0615478977560997, 0.14307032525539398, 0.029112787917256355, 0.019062435254454613, 0.0055292933247983456, 0.0032664563041180372, 0.008978256024420261, 0.04075730964541435, 0.08341030776500702], [0.4351096749305725, 0.020514443516731262, 0.008449352346360683, 0.009301923215389252, 0.001221774611622095, 0.005948420614004135, 0.0037798364646732807, 0.2338775247335434, 0.08136442303657532, 0.005654643755406141, 0.014292689971625805, 0.019577741622924805, 0.0033030002377927303, 0.012694094330072403, 0.018401412293314934, 0.02777300588786602, 0.09873601794242859]], [[0.28848257660865784, 0.01257616002112627, 0.03430843725800514, 0.01477912999689579, 0.0012256235349923372, 0.011869112029671669, 0.0016546170227229595, 0.014108515344560146, 0.052278775721788406, 0.07397178560495377, 0.04786080867052078, 0.01626724749803543, 0.027599243447184563, 0.03239141032099724, 0.059635698795318604, 0.18240614235401154, 0.12858480215072632], [0.33222827315330505, 0.08015219122171402, 0.1915275603532791, 0.026452526450157166, 0.009152380749583244, 0.0619947649538517, 0.008375460281968117, 0.0412161648273468, 0.10321027785539627, 0.004507344216108322, 0.009573579765856266, 0.008091576397418976, 0.010833711363375187, 0.006890119519084692, 0.017782362177968025, 0.011639094911515713, 0.07637260109186172], [0.35098302364349365, 0.08266192674636841, 0.1004398837685585, 0.017580751329660416, 0.004722627345472574, 0.02698211371898651, 0.0024964134208858013, 0.04608785733580589, 0.17449690401554108, 0.008553984574973583, 0.009689396247267723, 0.0028808119241148233, 0.005259563680738211, 0.004764842800796032, 0.011774441227316856, 0.01401494350284338, 0.13661053776741028], [0.0868002325296402, 0.08214076608419418, 0.44636648893356323, 0.029118763282895088, 0.024936877191066742, 0.09903780370950699, 0.013524153269827366, 0.006854426581412554, 0.028886616230010986, 0.011359469033777714, 0.025728275999426842, 0.02881213091313839, 0.012763477861881256, 0.02961600013077259, 0.03945455700159073, 0.013702438212931156, 0.020897559821605682], [0.20907022058963776, 0.07866306602954865, 0.1263018548488617, 0.11595798283815384, 0.008618229068815708, 0.12594379484653473, 0.018959959968924522, 0.0438644140958786, 0.11279072612524033, 0.008140233345329762, 0.006522328592836857, 0.03023660182952881, 0.0016097958432510495, 0.010630470700562, 0.012144387699663639, 0.022322824224829674, 0.06822306662797928], [0.10368841886520386, 0.1136193498969078, 0.3677966892719269, 0.09205619990825653, 0.020554449409246445, 0.0713471844792366, 0.015230441465973854, 0.010558288544416428, 0.046624623239040375, 0.015065798535943031, 0.022050680592656136, 0.012994340620934963, 0.009115414693951607, 0.01933613047003746, 0.025137923657894135, 0.022907650098204613, 0.031916506588459015], [0.17326810956001282, 0.13135133683681488, 0.242970809340477, 0.10898085683584213, 0.02750818431377411, 0.0680653303861618, 0.003113165497779846, 0.00896274484694004, 0.09048771858215332, 0.006018065381795168, 0.015656571835279465, 0.035565536469221115, 0.0020494465716183186, 0.006103125866502523, 0.01167663186788559, 0.009029789827764034, 0.05919254943728447], [0.2926902174949646, 0.13678932189941406, 0.04789775237441063, 0.026008330285549164, 0.007970488630235195, 0.02025541663169861, 0.007859368808567524, 0.12335386872291565, 0.15670572221279144, 0.005855523515492678, 0.027749791741371155, 0.008959303610026836, 0.003706427989527583, 0.003476644167676568, 0.0034832917153835297, 0.007415648549795151, 0.11982285976409912], [0.21157123148441315, 0.019517263397574425, 0.005391857586801052, 0.006420148070901632, 0.0008940987754613161, 0.0031574838794767857, 0.0011618149001151323, 0.2074192315340042, 0.26527830958366394, 0.0016312404768541455, 0.0029793318826705217, 0.0016579229850322008, 0.0010355523554608226, 0.0007651904015801847, 0.0016296723624691367, 0.0065324921160936356, 0.2629570960998535], [0.10086333006620407, 0.04043850302696228, 0.06336106359958649, 0.06956925988197327, 0.014053556136786938, 0.04208793118596077, 0.010049941949546337, 0.023839600384235382, 0.043660201132297516, 0.022071635350584984, 0.04092884808778763, 0.0585818774998188, 0.08269033581018448, 0.0855441763997078, 0.07963062077760696, 0.1571822166442871, 0.06544698029756546], [0.12707668542861938, 0.0523548349738121, 0.26883453130722046, 0.040691524744033813, 0.010961726307868958, 0.1296394318342209, 0.01433053333312273, 0.014453519135713577, 0.034860480576753616, 0.019024686887860298, 0.024176517501473427, 0.027583064511418343, 0.037872590124607086, 0.02919812686741352, 0.06729917228221893, 0.05900665372610092, 0.04263603314757347], [0.24688754975795746, 0.030769459903240204, 0.047778595238924026, 0.010946054011583328, 0.0031167911365628242, 0.029011135920882225, 0.0037711665499955416, 0.01944924332201481, 0.11189188808202744, 0.03106481395661831, 0.044395435601472855, 0.0172080360352993, 0.06188589334487915, 0.05043267086148262, 0.08090803027153015, 0.06390834599733353, 0.1465749889612198], [0.0705142617225647, 0.022703805938363075, 0.058183036744594574, 0.009261778555810452, 0.004325672518461943, 0.012400595471262932, 0.0015944127226248384, 0.007076756563037634, 0.026688102632761, 0.026559725403785706, 0.050885822623968124, 0.21843144297599792, 0.04302094131708145, 0.16049493849277496, 0.19344812631607056, 0.057423289865255356, 0.03698739409446716], [0.07891872525215149, 0.014068239368498325, 0.0841895118355751, 0.007075081579387188, 0.0031340019777417183, 0.009126100689172745, 0.003642712952569127, 0.021879103034734726, 0.05461389571428299, 0.011178506538271904, 0.04127843677997589, 0.04643681272864342, 0.1468726247549057, 0.061722252517938614, 0.3135157823562622, 0.020892739295959473, 0.0814552828669548], [0.044050343334674835, 0.015222175046801567, 0.19471687078475952, 0.007659707218408585, 0.0031954178120940924, 0.015198113396763802, 0.0015721445670351386, 0.004193637054413557, 0.02555701695382595, 0.004130168817937374, 0.01765613816678524, 0.020457418635487556, 0.06887971609830856, 0.30653172731399536, 0.22313055396080017, 0.015358373522758484, 0.03249046206474304], [0.0655519887804985, 0.026019321754574776, 0.1586287021636963, 0.03197231888771057, 0.009207548573613167, 0.034353431314229965, 0.004972562193870544, 0.005005646031349897, 0.027446508407592773, 0.04562034457921982, 0.12475969642400742, 0.08526258915662766, 0.0796908289194107, 0.06958846002817154, 0.12920702993869781, 0.05237547308206558, 0.05033749341964722], [0.20587339997291565, 0.010222149081528187, 0.0022830842062830925, 0.002935391617938876, 0.000358555291313678, 0.0013521627988666296, 0.0005329405539669096, 0.18011945486068726, 0.24020645022392273, 0.0021221372298896313, 0.0032666781917214394, 0.0015231661964207888, 0.0011074128560721874, 0.0008529155747964978, 0.001629339880309999, 0.007295794319361448, 0.3383190631866455]], [[0.05956319347023964, 0.00179675268009305, 0.017128366976976395, 0.0016953638987615705, 0.0006857583066448569, 0.0016695238882675767, 0.0007776255952194333, 0.024795446544885635, 0.0002714041620492935, 0.04412422329187393, 0.13379958271980286, 0.09820152819156647, 0.1267201006412506, 0.07335173338651657, 0.19282320141792297, 0.22087225317955017, 0.0017239977605640888], [0.23613636195659637, 0.14318731427192688, 0.05672837048768997, 0.07801620662212372, 0.027653949335217476, 0.05892806127667427, 0.014872346073389053, 0.016281506046652794, 0.2645290493965149, 0.0012800769181922078, 0.006285484414547682, 0.0018658335320651531, 0.005999637767672539, 0.000898213591426611, 0.0020877092611044645, 0.008333098143339157, 0.0769166573882103], [0.21454371511936188, 0.1391931027173996, 0.040841612964868546, 0.0954454243183136, 0.08106456696987152, 0.0962277501821518, 0.046839989721775055, 0.02815232053399086, 0.09633154422044754, 0.017318041995167732, 0.02717973105609417, 0.010474808514118195, 0.02076856605708599, 0.0034293895587325096, 0.009962289594113827, 0.028956621885299683, 0.043270375579595566], [0.20170310139656067, 0.1908068209886551, 0.06540999561548233, 0.045815546065568924, 0.042473193258047104, 0.08222468197345734, 0.016856539994478226, 0.011652784422039986, 0.2298145741224289, 0.004043226130306721, 0.008136386051774025, 0.0031762518920004368, 0.011258060112595558, 0.0014403003733605146, 0.0037828453350812197, 0.006951686926186085, 0.07445399463176727], [0.19613812863826752, 0.1202336922287941, 0.011509637348353863, 0.011758795939385891, 0.006277972832322121, 0.013663249090313911, 0.005513791926205158, 0.008629501797258854, 0.47911304235458374, 0.000780194706749171, 0.0014525118749588728, 0.0008472095360048115, 0.0028031363617628813, 0.00034791469806805253, 0.0009374889195896685, 0.0015715241897851229, 0.1384221911430359], [0.2702300548553467, 0.1306772381067276, 0.02260442264378071, 0.03576706349849701, 0.021464085206389427, 0.014047701843082905, 0.016266534104943275, 0.02396782673895359, 0.3145864009857178, 0.001972568454220891, 0.005951384082436562, 0.003608008148148656, 0.00783790647983551, 0.0014839855721220374, 0.00308221485465765, 0.005734744947403669, 0.12071798741817474], [0.3473818302154541, 0.19484259188175201, 0.05956964194774628, 0.03729168325662613, 0.017642799764871597, 0.03212764486670494, 0.005095197819173336, 0.009113706648349762, 0.18504053354263306, 0.0014740314800292253, 0.009163438342511654, 0.002339687431231141, 0.015544865280389786, 0.0010590697638690472, 0.0033047597389668226, 0.006495994981378317, 0.07251261919736862], [0.14215287566184998, 0.10905203223228455, 0.13271881639957428, 0.06678072363138199, 0.055062223225831985, 0.20480968058109283, 0.02073928527534008, 0.00976736843585968, 0.10605435073375702, 0.008199530653655529, 0.0198756642639637, 0.006681375205516815, 0.020344208925962448, 0.007610614411532879, 0.019918302074074745, 0.01168823055922985, 0.05854463577270508], [0.11422670632600784, 0.03828209638595581, 0.00507381884381175, 0.004419131204485893, 0.009561950340867043, 0.01285400427877903, 0.002909034490585327, 0.01814098097383976, 0.3899940252304077, 0.0029826404061168432, 0.004728056490421295, 0.005474678706377745, 0.005925028584897518, 0.0015272676246240735, 0.005571904592216015, 0.006338297855108976, 0.37199029326438904], [0.011238610371947289, 0.00045380022493191063, 0.004181951750069857, 0.0003760939580388367, 0.00017070409376174212, 0.0002088031469611451, 0.00023954050266183913, 0.010314065031707287, 1.3955426766187884e-05, 0.14375847578048706, 0.1389721781015396, 0.15650571882724762, 0.18927054107189178, 0.039405226707458496, 0.14734160900115967, 0.15737663209438324, 0.00017208002100232989], [0.031784750521183014, 0.0015507922507822514, 0.013885190710425377, 0.0018220108468085527, 0.0005439352826215327, 0.0008825199911370873, 0.00027660062187351286, 0.0069628870114684105, 4.4935241021448746e-05, 0.0813266858458519, 0.05959245562553406, 0.13896241784095764, 0.26633715629577637, 0.03404557704925537, 0.1678851842880249, 0.19371803104877472, 0.0003788716858252883], [0.08621974289417267, 0.003574413014575839, 0.007178200408816338, 0.0013829863164573908, 0.0004100213118363172, 0.0005498532555066049, 0.0007883554790169001, 0.037121593952178955, 0.00038770571700297296, 0.10483808070421219, 0.19522158801555634, 0.046983249485492706, 0.1087883785367012, 0.05557802692055702, 0.13681387901306152, 0.21160779893398285, 0.0025560909416526556], [0.022168036550283432, 0.0011089545441791415, 0.00752820260822773, 0.0009223827510140836, 0.00025024719070643187, 0.0004022939538117498, 0.0004331802192609757, 0.01542576216161251, 8.430749585386366e-05, 0.2691948413848877, 0.20285631716251373, 0.07688498497009277, 0.07929836958646774, 0.06059287488460541, 0.12732230126857758, 0.13470827043056488, 0.0008186959894374013], [0.038268525153398514, 0.002309854608029127, 0.0049010575748980045, 0.0006654354510828853, 0.00024545693304389715, 0.0005895740468986332, 0.0006904510082677007, 0.03247307613492012, 0.0001754794648149982, 0.11549419909715652, 0.17119476199150085, 0.09577608853578568, 0.1899692863225937, 0.024540485814213753, 0.10692265629768372, 0.21435683965682983, 0.0014267897931858897], [0.04470892250537872, 0.00579972704872489, 0.014608947560191154, 0.00284426542930305, 0.0014223706675693393, 0.0019662072882056236, 0.0019196448847651482, 0.03656250983476639, 0.0006488657672889531, 0.08809281885623932, 0.16689829528331757, 0.06508523225784302, 0.2711290419101715, 0.05329497531056404, 0.08856726437807083, 0.15377938747406006, 0.0026714380364865065], [0.0324103944003582, 0.002985625062137842, 0.019528495147824287, 0.0015649838605895638, 0.0010861161863431334, 0.004385427106171846, 0.0005067905294708908, 0.012419597245752811, 0.00014126817404758185, 0.1578301042318344, 0.1078701913356781, 0.11344996094703674, 0.17818157374858856, 0.050234604626894, 0.19941255450248718, 0.11708803474903107, 0.0009043181780725718], [0.14372624456882477, 0.018153995275497437, 0.008819352835416794, 0.0026029872242361307, 0.005939857102930546, 0.0091972341760993, 0.0020077270455658436, 0.06999135762453079, 0.058347154408693314, 0.0631398931145668, 0.054393865168094635, 0.08901600539684296, 0.07086573541164398, 0.022017978131771088, 0.0889204666018486, 0.0838044062256813, 0.20905570685863495]], [[0.06590607762336731, 0.08417094498872757, 0.030377818271517754, 0.04855623096227646, 0.030268382281064987, 0.04047302156686783, 0.09107440710067749, 0.05338447913527489, 0.06584428995847702, 0.20143471658229828, 0.04430174082517624, 0.00801195576786995, 0.022194521501660347, 0.023148616775870323, 0.03382888436317444, 0.09049656242132187, 0.06652738153934479], [0.06757715344429016, 0.0675671249628067, 0.09888757020235062, 0.2440209537744522, 0.024376049637794495, 0.06080688163638115, 0.02390352077782154, 0.03119654394686222, 0.06538015604019165, 0.028339162468910217, 0.06321700662374496, 0.015988469123840332, 0.005243256688117981, 0.01828606240451336, 0.020151490345597267, 0.11210758984088898, 0.05295104905962944], [0.07708651572465897, 0.0774746686220169, 0.21630482375621796, 0.11478409171104431, 0.0349455252289772, 0.1190795749425888, 0.005108577664941549, 0.07545206695795059, 0.08367180824279785, 0.008812044747173786, 0.02605229988694191, 0.005950480699539185, 0.003843178739771247, 0.018045805394649506, 0.03252892568707466, 0.03702116757631302, 0.06383847445249557], [0.07453086972236633, 0.08956724405288696, 0.037647850811481476, 0.034554578363895416, 0.20350435376167297, 0.15637822449207306, 0.10547322779893875, 0.04996996000409126, 0.04764339700341225, 0.058809179812669754, 0.022429628297686577, 0.025113781914114952, 0.021163804456591606, 0.004183787386864424, 0.01920655556023121, 0.01042927335947752, 0.039394330233335495], [0.0946265459060669, 0.07392112910747528, 0.008441055193543434, 0.11359913647174835, 0.16658742725849152, 0.16855019330978394, 0.051401760429143906, 0.04358818382024765, 0.07750405371189117, 0.018604621291160583, 0.015648480504751205, 0.03786034137010574, 0.012400555424392223, 0.01631971262395382, 0.01638578251004219, 0.020027238875627518, 0.0645337924361229], [0.03593434393405914, 0.05929824337363243, 0.07843022793531418, 0.11796325445175171, 0.3195796310901642, 0.1901479810476303, 0.028238395228981972, 0.016250809654593468, 0.026243215426802635, 0.02494652383029461, 0.005341187585145235, 0.01654711924493313, 0.04616314545273781, 0.00026560816331766546, 0.0020785636734217405, 0.012440221384167671, 0.020131448283791542], [0.19025366008281708, 0.07703237235546112, 0.0106458505615592, 0.15518680214881897, 0.057999636977910995, 0.06947861611843109, 0.010456075891852379, 0.05313672497868538, 0.13994288444519043, 0.022877782583236694, 0.01409536600112915, 0.04498327150940895, 0.006965731270611286, 0.005847529973834753, 0.007901111617684364, 0.02862342819571495, 0.104573093354702], [0.09631843119859695, 0.10552708804607391, 0.06001431122422218, 0.16572625935077667, 0.053799256682395935, 0.03079824335873127, 0.02580343745648861, 0.043431080877780914, 0.07854826003313065, 0.10692145675420761, 0.04204757884144783, 0.021169226616621017, 0.013394113630056381, 0.020619424059987068, 0.018860729411244392, 0.03934461623430252, 0.07767646759748459], [0.058672234416007996, 0.0571172721683979, 0.037414152175188065, 0.08807271718978882, 0.0670572891831398, 0.0643443614244461, 0.07295747101306915, 0.05352793261408806, 0.03435320034623146, 0.07669932395219803, 0.09463126957416534, 0.07032759487628937, 0.05824226513504982, 0.043223559856414795, 0.026333792135119438, 0.06254377216100693, 0.03448179364204407], [0.027944881469011307, 0.0242831539362669, 0.012918280437588692, 0.16402386128902435, 0.03439036011695862, 0.015647124499082565, 0.010424001142382622, 0.030613740906119347, 0.025048082694411278, 0.048907581716775894, 0.06153663620352745, 0.05295651778578758, 0.03979042172431946, 0.01695133186876774, 0.01767057552933693, 0.38970163464546204, 0.02719184383749962], [0.03677641227841377, 0.023587673902511597, 0.14763346314430237, 0.042520828545093536, 0.008023045025765896, 0.006664303131401539, 0.006648252718150616, 0.01626436971127987, 0.03899155184626579, 0.03634963557124138, 0.06613592058420181, 0.011808985844254494, 0.00661960244178772, 0.019977176561951637, 0.034024834632873535, 0.46260493993759155, 0.035368964076042175], [0.053710758686065674, 0.01573863998055458, 0.000860692816786468, 0.08311107754707336, 0.23616304993629456, 0.029673194512724876, 0.04085135459899902, 0.019149426370859146, 0.052326127886772156, 0.11464853584766388, 0.02945755422115326, 0.021228795871138573, 0.09886714816093445, 0.018007831647992134, 0.016416052356362343, 0.11243856698274612, 0.057351112365722656], [0.07678169757127762, 0.03138824552297592, 0.0069891014136374, 0.024354055523872375, 0.030870748683810234, 0.020590312778949738, 0.011850254610180855, 0.03463532775640488, 0.08088368922472, 0.0854516327381134, 0.015365722589194775, 0.13927532732486725, 0.0662253275513649, 0.10883750021457672, 0.08844134211540222, 0.10394864529371262, 0.07411099970340729], [0.04260123893618584, 0.013429353944957256, 0.08451063185930252, 0.005342602264136076, 0.006419896148145199, 0.00040298490785062313, 0.011343014426529408, 0.009916880168020725, 0.04078890383243561, 0.030210701748728752, 0.028912976384162903, 0.05181695520877838, 0.020043091848492622, 0.20750917494297028, 0.39034661650657654, 0.016455737873911858, 0.03994926065206528], [0.09958776086568832, 0.024511493742465973, 0.12924376130104065, 0.020699242129921913, 0.004476725589483976, 0.002866498427465558, 0.012254253029823303, 0.022414108738303185, 0.08055975288152695, 0.018432436510920525, 0.03394339606165886, 0.055974170565605164, 0.02398219332098961, 0.24533863365650177, 0.12275483459234238, 0.032687053084373474, 0.07027378678321838], [0.04026741534471512, 0.060288798063993454, 0.033687297254800797, 0.022989923134446144, 0.02891065925359726, 0.03710899502038956, 0.014900666661560535, 0.018785668537020683, 0.04191936179995537, 0.41869840025901794, 0.06691352277994156, 0.039353806525468826, 0.08412089943885803, 0.016768695786595345, 0.02231862023472786, 0.010441322810947895, 0.042525846511125565], [0.046111952513456345, 0.045371007174253464, 0.025911172851920128, 0.06766625493764877, 0.04622233286499977, 0.04765365645289421, 0.07085514813661575, 0.04710721969604492, 0.03205384686589241, 0.10139051079750061, 0.1182694137096405, 0.09717908501625061, 0.0740463063120842, 0.04925260320305824, 0.029989754781126976, 0.06561510264873505, 0.03530462458729744]], [[0.2920938730239868, 0.03843783959746361, 0.00454994710162282, 0.016129150986671448, 0.01057481486350298, 0.007902449928224087, 0.006613697856664658, 0.04029064252972603, 0.2139209657907486, 0.01930788718163967, 0.07602439820766449, 0.009178251959383488, 0.015704216435551643, 0.0034215927589684725, 0.0053702462464571, 0.04171208292245865, 0.19876797497272491], [0.23590433597564697, 0.09341491013765335, 0.0005686991498805583, 0.0005786936380900443, 0.00023391096328850836, 0.00042569151264615357, 0.0003405431052669883, 0.043897975236177444, 0.287322074174881, 0.0001553949696244672, 0.0351424366235733, 0.00034968854743056, 0.0008663987391628325, 0.00017870480951387435, 0.0009610105189494789, 0.0028025154024362564, 0.29685696959495544], [0.18811707198619843, 0.0016972137382254004, 0.18767330050468445, 0.00016323788440786302, 5.168560892343521e-05, 0.0009534471901133657, 8.584388706367463e-05, 0.1018204540014267, 0.25854259729385376, 0.0017019759397953749, 0.004170809872448444, 1.5877159967203625e-05, 0.00018002472643274814, 0.0009695717017166317, 0.009097996167838573, 0.0026784855872392654, 0.24208037555217743], [0.28926950693130493, 0.0015674886526539922, 9.536379366181791e-05, 0.07221740484237671, 0.0005470728501677513, 0.0002228240336989984, 0.0010531652951613069, 0.019259821623563766, 0.3193008303642273, 0.002631148789077997, 0.0011153884697705507, 0.00145718886051327, 0.00030278589110821486, 0.0006343895802274346, 0.0008347824914380908, 0.05843406915664673, 0.231056809425354], [0.20780760049819946, 0.0005846386193297803, 1.0100829967996106e-05, 0.0006643246742896736, 0.17330071330070496, 5.8346362493466586e-05, 0.00034883408807218075, 0.005748165771365166, 0.3434559404850006, 0.002203787211328745, 0.0006029244395904243, 0.0016555625479668379, 0.0005708352546207607, 4.940937287756242e-05, 1.6163879990926944e-05, 0.0005727290408685803, 0.2623499035835266], [0.3277789354324341, 0.001324411015957594, 0.00033646103111095726, 0.000353420851752162, 0.00025029273820109665, 0.03000376746058464, 4.544815055851359e-06, 0.007027946412563324, 0.3152473270893097, 0.0009667730773799121, 0.00019890819385182112, 4.651370181818493e-05, 7.607298175571486e-05, 0.0006661259103566408, 0.00017799067427404225, 0.0018292013555765152, 0.3137113153934479], [0.2296553999185562, 0.0009228094131685793, 3.078273221035488e-05, 0.0019436333095654845, 0.0003447277413215488, 2.3380230231850874e-06, 0.13296885788440704, 0.0057099550031125546, 0.3332619071006775, 0.012380699627101421, 0.0022470541298389435, 0.0030546793714165688, 0.001296443399041891, 0.00011021554382750764, 2.0596973627107218e-05, 0.0009140309994108975, 0.2751358449459076], [0.3935525417327881, 0.10131669789552689, 0.0077517409808933735, 0.01885724999010563, 0.005897756200283766, 0.0032082691323012114, 0.0014689310919493437, 0.019251234829425812, 0.1920815259218216, 0.003723181551322341, 0.015901226550340652, 0.0061441585421562195, 0.005703573115170002, 0.0019398258300498128, 0.0024472379591315985, 0.017573729157447815, 0.2031809538602829], [0.3139020502567291, 0.04612087458372116, 0.034567691385746, 0.018136130645871162, 0.014624722301959991, 0.03642646223306656, 0.0028493322897702456, 0.06824260950088501, 0.15243707597255707, 0.011110741645097733, 0.01596137136220932, 0.005699531175196171, 0.0139088723808527, 0.00915519054979086, 0.017806829884648323, 0.028394008055329323, 0.21065641939640045], [0.3952358067035675, 0.0018169309478253126, 0.0006401372374966741, 0.0022998496424406767, 0.00395448412746191, 0.0013010089751332998, 0.006638898979872465, 0.010611708275973797, 0.17060349881649017, 0.22119642794132233, 0.00010934696911135688, 0.0006643557571806014, 3.328196544316597e-05, 9.428051271243021e-05, 0.0008516028174199164, 0.0016511741559952497, 0.18229711055755615], [0.32721415162086487, 0.09639663249254227, 0.0016054569277912378, 0.0004703406593762338, 0.0002142055018339306, 0.00013674484216608107, 0.0007460075430572033, 0.013670305721461773, 0.14843612909317017, 0.00010933079465758055, 0.24741867184638977, 5.6484659580746666e-05, 0.0003197313053533435, 6.398563982656924e-06, 9.052497625816613e-05, 0.0010705945314839482, 0.16203829646110535], [0.30754250288009644, 0.0009476087288931012, 3.085290927629103e-06, 0.001100786030292511, 0.000625999120529741, 5.30617508047726e-05, 0.0006682449020445347, 0.004559790715575218, 0.23483937978744507, 0.00020654189574997872, 3.1595060136169195e-05, 0.28347548842430115, 1.4062512491364032e-05, 6.494088665931486e-06, 2.4871154892025515e-05, 0.000385942286811769, 0.1655144989490509], [0.22668159008026123, 0.0026423290837556124, 2.5871360776363872e-05, 0.0003170525305904448, 0.0018173913704231381, 0.00018161829211749136, 0.0013966673286631703, 0.010686048306524754, 0.2911210060119629, 0.00011430634185671806, 0.0010190752800554037, 0.00011227899085497484, 0.22408342361450195, 0.00010809279046952724, 9.568055247655138e-05, 0.0019795112311840057, 0.23761805891990662], [0.22935882210731506, 0.001239060889929533, 0.0002068211615551263, 0.0007138069486245513, 0.00012699555372819304, 0.0002493307401891798, 3.352266867295839e-05, 0.004078928846865892, 0.21864815056324005, 2.8114787710364908e-05, 9.27734981814865e-06, 1.0227522579953074e-05, 4.4142485421616584e-05, 0.38679930567741394, 0.0003356502566020936, 0.0004880965279880911, 0.15762969851493835], [0.4362337291240692, 0.0049179838970303535, 0.003379747038707137, 0.000696059491019696, 5.3383315389510244e-05, 0.0001347169018117711, 4.089279173058458e-05, 0.017139635980129242, 0.27210748195648193, 0.0005381380906328559, 0.00010418159945402294, 3.7957102904329076e-05, 6.06112735113129e-05, 0.0007822462357580662, 0.0652136504650116, 0.0005113249644637108, 0.19804832339286804], [0.33256620168685913, 0.0036038111429661512, 0.0003811477217823267, 0.008409728296101093, 0.00041850630077533424, 0.00026936628273688257, 0.00011917229858227074, 0.010657011531293392, 0.31702518463134766, 0.0003735825594048947, 0.00045285469968803227, 0.00014789750275667757, 0.00029891918529756367, 0.00028292369097471237, 9.962243348127231e-05, 0.0935000404715538, 0.2313941866159439], [0.327828586101532, 0.039426300674676895, 0.018262511119246483, 0.011622877791523933, 0.011556536890566349, 0.03138080611824989, 0.002868588315322995, 0.0779644176363945, 0.22032298147678375, 0.011494921520352364, 0.01386911328881979, 0.0033865408040583134, 0.008826795034110546, 0.006341163069009781, 0.011007431894540787, 0.020613398402929306, 0.18322715163230896]], [[0.22404423356056213, 0.009187303483486176, 0.030839409679174423, 0.003122019814327359, 0.00626831641420722, 0.0075899092480540276, 0.001497644349001348, 0.016502829268574715, 0.11780377477407455, 0.1815018355846405, 0.010765873827040195, 0.024326590821146965, 0.016497954726219177, 0.010893646627664566, 0.015117834322154522, 0.018350284546613693, 0.3056905269622803], [0.2127855122089386, 0.028610223904252052, 0.011633998714387417, 0.022930029779672623, 0.0068074800074100494, 0.01159227266907692, 0.006404152140021324, 0.16352684795856476, 0.30165189504623413, 0.00226025958545506, 0.004792015999555588, 0.004492836073040962, 0.0010328976204618812, 0.0008022096590138972, 0.002699598204344511, 0.005397929809987545, 0.2125798463821411], [0.24353277683258057, 0.04662283882498741, 0.05093754455447197, 0.016677314415574074, 0.006513838656246662, 0.010542158037424088, 0.005945499986410141, 0.07141199707984924, 0.26227810978889465, 0.0038042343221604824, 0.004336316138505936, 0.005305994302034378, 0.0013808937510475516, 0.00198767171241343, 0.007124859374016523, 0.004154199734330177, 0.2574436068534851], [0.2752525210380554, 0.04256882891058922, 0.008304232731461525, 0.04304187372326851, 0.0323055200278759, 0.014715862460434437, 0.006687971297651529, 0.2134365737438202, 0.19429191946983337, 0.0024805362336337566, 0.005857239011675119, 0.01179262064397335, 0.002238689921796322, 0.0008794603636488318, 0.005074869375675917, 0.004582161549478769, 0.13648924231529236], [0.32165247201919556, 0.0450129359960556, 0.011882772669196129, 0.09307406097650528, 0.04269018396735191, 0.03969000279903412, 0.01161148026585579, 0.1484362930059433, 0.1635918766260147, 0.001413102843798697, 0.0033588726073503494, 0.00589297479018569, 0.002967578824609518, 0.0005604822654277086, 0.0030677730683237314, 0.006309079471975565, 0.09878811985254288], [0.18568414449691772, 0.09832528978586197, 0.03872985765337944, 0.13517391681671143, 0.11998328566551208, 0.03997296094894409, 0.031380970031023026, 0.12693044543266296, 0.09478933364152908, 0.0026213431265205145, 0.013192687183618546, 0.018202470615506172, 0.007382223382592201, 0.0019618868827819824, 0.013418799266219139, 0.005354241002351046, 0.06689624488353729], [0.16496127843856812, 0.047331273555755615, 0.009102138690650463, 0.06733017414808273, 0.035812873393297195, 0.030542360618710518, 0.006878948770463467, 0.31680160760879517, 0.17043671011924744, 0.003096112282946706, 0.006595946848392487, 0.012208394706249237, 0.0016734598902985454, 0.00037642274401150644, 0.0032162696588784456, 0.008693660609424114, 0.11494236439466476], [0.19085519015789032, 0.06018442288041115, 0.011834525503218174, 0.08649411052465439, 0.019225798547267914, 0.011613625101745129, 0.012696342542767525, 0.19684702157974243, 0.20097532868385315, 0.006559760309755802, 0.019277941435575485, 0.008613570593297482, 0.004053181037306786, 0.00227136118337512, 0.006634105462580919, 0.024815760552883148, 0.13704797625541687], [0.30690258741378784, 0.02679472230374813, 0.011255483143031597, 0.02604091912508011, 0.012265798635780811, 0.00618348503485322, 0.004539648536592722, 0.09630091488361359, 0.2539031207561493, 0.006021426524966955, 0.011271647177636623, 0.007742289453744888, 0.0027321702800691128, 0.0017309455433860421, 0.0032706332858651876, 0.013799375854432583, 0.20924486219882965], [0.20987045764923096, 0.005762506276369095, 0.0012960791354998946, 0.009004318155348301, 0.001947010401636362, 0.0025654539931565523, 0.0050395093858242035, 0.21396028995513916, 0.17319928109645844, 0.005859806668013334, 0.017655963078141212, 0.013937211595475674, 0.012490552850067616, 0.003946955315768719, 0.007475710939615965, 0.0757952332496643, 0.24019363522529602], [0.29504281282424927, 0.011301913298666477, 0.007198079489171505, 0.010319914668798447, 0.005185090471059084, 0.004785916768014431, 0.002487111371010542, 0.11605797708034515, 0.18971474468708038, 0.011346149258315563, 0.006001610308885574, 0.013856709003448486, 0.003458983963355422, 0.001941423979587853, 0.006526427809149027, 0.03637920320034027, 0.27839601039886475], [0.3753051161766052, 0.017154471948742867, 0.0019981185905635357, 0.036559104919433594, 0.005707910284399986, 0.003839462297037244, 0.003966993652284145, 0.15112626552581787, 0.11763722449541092, 0.004961076658219099, 0.029356716200709343, 0.015592940151691437, 0.009380440227687359, 0.0031562307849526405, 0.010151279158890247, 0.07818426191806793, 0.1359224170446396], [0.26478636264801025, 0.021863367408514023, 0.002591127762570977, 0.013034133240580559, 0.004433171823620796, 0.0015097843715921044, 0.0042487927712500095, 0.30276185274124146, 0.15307000279426575, 0.002136186696588993, 0.014849446713924408, 0.016725076362490654, 0.0025098377373069525, 0.0032316420692950487, 0.004887160379439592, 0.013315770775079727, 0.1740463227033615], [0.3923172056674957, 0.0379229411482811, 0.004498607944697142, 0.01900322549045086, 0.009744742885231972, 0.0049546645022928715, 0.006934881675988436, 0.18183450400829315, 0.07574349641799927, 0.002829605480656028, 0.03242478519678116, 0.03320515528321266, 0.021991034969687462, 0.0008035348728299141, 0.059604462236166, 0.019003497436642647, 0.0971836969256401], [0.32964029908180237, 0.02343744784593582, 0.004301612265408039, 0.014635363593697548, 0.0034210134763270617, 0.005026042461395264, 0.007740766741335392, 0.174477681517601, 0.1553230732679367, 0.0029629396740347147, 0.033561501652002335, 0.008458543568849564, 0.004247010685503483, 0.00549670634791255, 0.008897955529391766, 0.029893584549427032, 0.1884784996509552], [0.3046429753303528, 0.02137015387415886, 0.005005453247576952, 0.015783295035362244, 0.009150386787950993, 0.003989753313362598, 0.0032189199700951576, 0.13954909145832062, 0.14953553676605225, 0.011478420346975327, 0.02154521830379963, 0.03223951533436775, 0.007771638687700033, 0.0027041954454034567, 0.019880862906575203, 0.019679173827171326, 0.23245543241500854], [0.2823575437068939, 0.016558093950152397, 0.007606648374348879, 0.01545813400298357, 0.005638604983687401, 0.0032766794320195913, 0.0029583959840238094, 0.09284613281488419, 0.22527742385864258, 0.011906598694622517, 0.015356337651610374, 0.012299875728785992, 0.00417743343859911, 0.0033858788665384054, 0.00439974432811141, 0.026879584416747093, 0.26961687207221985]], [[0.09703102707862854, 0.03220197558403015, 0.005146260838955641, 0.019691308960318565, 0.0015193107537925243, 0.013793233782052994, 0.002776895882561803, 0.06201622262597084, 0.3223714232444763, 0.02474409155547619, 0.00466509722173214, 0.004022928886115551, 0.002097614575177431, 0.0042184083722531796, 0.0014336570166051388, 0.030124951153993607, 0.37214547395706177], [0.17076697945594788, 0.0997667908668518, 0.02683289907872677, 0.015133483335375786, 0.01018153689801693, 0.01725509762763977, 0.011523970402777195, 0.07351073622703552, 0.16353842616081238, 0.043221037834882736, 0.14786438643932343, 0.009291380643844604, 0.0054242853075265884, 0.003237460507079959, 0.003805671352893114, 0.026077480986714363, 0.17256835103034973], [0.2783249318599701, 0.02409948594868183, 0.03177265450358391, 0.0024664346128702164, 0.0008172832312993705, 0.0029011291917413473, 0.001166883739642799, 0.09870889782905579, 0.19315457344055176, 0.0034173615276813507, 0.02178138494491577, 0.0017446019919589162, 0.0021276427432894707, 0.045160967856645584, 0.03221365436911583, 0.012858804315328598, 0.24728335440158844], [0.26640909910202026, 0.009586221538484097, 0.005568946711719036, 0.049182627350091934, 0.002268919488415122, 0.02529790624976158, 0.005396824795752764, 0.04639700427651405, 0.21966488659381866, 0.016346022486686707, 0.0019607350695878267, 0.0046170842833817005, 0.0024304187390953302, 0.005317733157426119, 0.004196048714220524, 0.09821679443120956, 0.2371426671743393], [0.25860005617141724, 0.014897421933710575, 0.0019000177271664143, 0.00768154626712203, 0.00138087198138237, 0.01306932047009468, 0.004856158513575792, 0.10667171329259872, 0.2330295592546463, 0.0030923134181648493, 0.0032360360492020845, 0.008482899516820908, 0.0058883060701191425, 0.006939415819942951, 0.005025846417993307, 0.036787211894989014, 0.2884610891342163], [0.299007385969162, 0.013951770961284637, 0.008937290869653225, 0.01354428380727768, 0.0009622995858080685, 0.006932614836841822, 0.002046124078333378, 0.12154050916433334, 0.20369122922420502, 0.004640206228941679, 0.006814151536673307, 0.00821527186781168, 0.0071725440211594105, 0.009322093799710274, 0.006301621440798044, 0.0319623239338398, 0.2549581825733185], [0.26717832684516907, 0.021424047648906708, 0.005397978704422712, 0.007558157667517662, 0.0014462074032053351, 0.013391975313425064, 0.003012719564139843, 0.055652618408203125, 0.2632453143596649, 0.005558896344155073, 0.004034125711768866, 0.002607528818771243, 0.002253395738080144, 0.0027265259996056557, 0.0017540052067488432, 0.017231985926628113, 0.3255261182785034], [0.0903635323047638, 0.04783948138356209, 0.021035343408584595, 0.03132093325257301, 0.03722129389643669, 0.05907224491238594, 0.013983873650431633, 0.11372509598731995, 0.0825207456946373, 0.13152764737606049, 0.011705374345183372, 0.021000642329454422, 0.05724185332655907, 0.046011146157979965, 0.02264517918229103, 0.0858134999871254, 0.12697207927703857], [0.10567986965179443, 0.029719671234488487, 0.016413334757089615, 0.011662883684039116, 0.02987338788807392, 0.047923047095537186, 0.01618053950369358, 0.16713537275791168, 0.12307479977607727, 0.023399515077471733, 0.015143640339374542, 0.02448997274041176, 0.03629350662231445, 0.06455422192811966, 0.018759675323963165, 0.0634353831410408, 0.2062610685825348], [0.31985634565353394, 0.03799072653055191, 0.0038136872462928295, 0.043138500303030014, 0.0222634207457304, 0.05659031867980957, 0.021846959367394447, 0.16525664925575256, 0.09792320430278778, 0.004200590308755636, 0.008484791032969952, 0.01640312373638153, 0.006441842298954725, 0.010949919931590557, 0.000888711423613131, 0.03805716708302498, 0.14589402079582214], [0.23613311350345612, 0.22397688031196594, 0.05252093821763992, 0.023578016087412834, 0.0063842060044407845, 0.007359006442129612, 0.006432905327528715, 0.07066486775875092, 0.07237928360700607, 0.016607576981186867, 0.17710672318935394, 0.00237080454826355, 0.0007672299980185926, 0.002227987162768841, 0.001268949476070702, 0.016797464340925217, 0.08342400193214417], [0.4162965714931488, 0.023703033104538918, 0.005078424233943224, 0.00811045989394188, 0.00425873976200819, 0.021713633090257645, 0.004882904700934887, 0.09108726680278778, 0.16075964272022247, 0.0061604930087924, 0.0031443138141185045, 0.002245415234938264, 0.005060181953012943, 0.005507911089807749, 0.002887589391320944, 0.021300330758094788, 0.21780315041542053], [0.27463674545288086, 0.017799386754631996, 0.03629354387521744, 0.00939211342483759, 0.00317370449192822, 0.01879732683300972, 0.005804486107081175, 0.11809951812028885, 0.19079633057117462, 0.003336308291181922, 0.0040556928142905235, 0.008462403900921345, 0.002116583986207843, 0.004215013701468706, 0.00417370954528451, 0.04174119606614113, 0.2571059763431549], [0.3024560511112213, 0.032547786831855774, 0.040002916008234024, 0.012277884408831596, 0.0030880861449986696, 0.01899184100329876, 0.004788948222994804, 0.15415412187576294, 0.14186060428619385, 0.0017129492480307817, 0.005325031466782093, 0.00914151594042778, 0.006560756359249353, 0.0046642497181892395, 0.010934620164334774, 0.057021237909793854, 0.19447149336338043], [0.30245688557624817, 0.021099543198943138, 0.030815938487648964, 0.003993559628725052, 0.0021287144627422094, 0.026269113644957542, 0.0024147252552211285, 0.1673903614282608, 0.17521771788597107, 0.0005891172331757843, 0.004202599171549082, 0.002888341899961233, 0.0014854454202577472, 0.006945270113646984, 0.000805056479293853, 0.011658421717584133, 0.23963919281959534], [0.2843210697174072, 0.03152967616915703, 0.003723833477124572, 0.06585222482681274, 0.003251809859648347, 0.011879992671310902, 0.003824991174042225, 0.06839574873447418, 0.17949014902114868, 0.027393124997615814, 0.003633933374658227, 0.0034882931504398584, 0.0015915933763608336, 0.014812763780355453, 0.009673142805695534, 0.08029397577047348, 0.20684362947940826], [0.10668598115444183, 0.02907514199614525, 0.021513856947422028, 0.012126919813454151, 0.03529800474643707, 0.049412794411182404, 0.01754113845527172, 0.17067867517471313, 0.11266523599624634, 0.02353556454181671, 0.015040814876556396, 0.024802949279546738, 0.04028703272342682, 0.07297728210687637, 0.02032008022069931, 0.0635015144944191, 0.18453703820705414]]], [[[0.010973572731018066, 0.014845030382275581, 0.022055495530366898, 0.0026220425497740507, 0.007935742847621441, 0.01486633438616991, 0.009585713967680931, 0.02672129124403, 0.5104263424873352, 0.0002145023172488436, 0.0013254826189950109, 0.00035148864844813943, 0.0007792221149429679, 0.0006743393023498356, 0.000960935780312866, 0.0017869849689304829, 0.3738754391670227], [0.016189008951187134, 0.01502901315689087, 0.40647879242897034, 0.005121450871229172, 0.11581943929195404, 0.14942428469657898, 0.13546043634414673, 0.015917088836431503, 0.04806835576891899, 0.0008404847467318177, 0.0022975471802055836, 0.0048073758371174335, 0.010099419392645359, 0.00848411675542593, 0.023126358166337013, 0.005578957032412291, 0.03725787252187729], [0.02789466083049774, 0.028451690450310707, 0.027696767821907997, 0.000520958739798516, 0.01085966918617487, 0.03831902891397476, 0.030618218705058098, 0.01882346160709858, 0.42063966393470764, 0.0006749082240276039, 0.0015658607007935643, 0.0037833349779248238, 0.0038365276996046305, 0.005655630957335234, 0.011002609506249428, 0.0018818125827237964, 0.3677752614021301], [0.014665553346276283, 0.4109187424182892, 0.1008564829826355, 0.0032074612099677324, 0.0436251126229763, 0.1706613004207611, 0.06259061396121979, 0.012122035957872868, 0.08356226235628128, 0.008915208280086517, 0.0058303349651396275, 0.007323183119297028, 0.006034854333847761, 0.0032316127326339483, 0.002881755819544196, 0.0003940360329579562, 0.0631793811917305], [0.01300919521600008, 0.2089272290468216, 0.06511922180652618, 0.023526335135102272, 0.029193414375185966, 0.25744959712028503, 0.1908273845911026, 0.022318068891763687, 0.0692194476723671, 0.0011302514467388391, 0.0022162070963531733, 0.00935986079275608, 0.0033115744590759277, 0.008103566244244576, 0.03962770849466324, 0.0007054639863781631, 0.055955443531274796], [0.047366488724946976, 0.07275886833667755, 0.14623956382274628, 0.16915209591388702, 0.051790446043014526, 0.02008923329412937, 0.06735452264547348, 0.09909037500619888, 0.11704691499471664, 0.0017620933940634131, 0.0060837347991764545, 0.004070416558533907, 0.014515632763504982, 0.006130069959908724, 0.06684812158346176, 0.005031967535614967, 0.10466952621936798], [0.018365757539868355, 0.05502869933843613, 0.031771980226039886, 0.7670526504516602, 0.034072138369083405, 0.04932161048054695, 0.0013193270424380898, 0.018009938299655914, 0.008231310173869133, 0.0006400452693924308, 0.001183435320854187, 0.0021507628262043, 0.0015978373121470213, 0.0008830464212223887, 0.003773536765947938, 0.0003717515792232007, 0.00622624671086669], [0.04401952400803566, 0.03226006031036377, 0.14829698204994202, 0.02315174601972103, 0.06532474607229233, 0.12351652979850769, 0.01807529293000698, 0.051587626338005066, 0.23651264607906342, 0.008278613910079002, 0.012150119058787823, 0.008223667740821838, 0.006942181382328272, 0.00701279379427433, 0.018046025186777115, 0.004645165055990219, 0.19195625185966492], [0.008014025166630745, 0.002453271532431245, 0.002284110290929675, 0.0005950079066678882, 0.0009291530004702508, 0.0014843737008050084, 0.0009571752743795514, 0.009511671029031277, 0.512028157711029, 0.00048043765127658844, 0.0004840755427721888, 0.0005090604536235332, 0.000877571408636868, 0.000561970635317266, 0.0005855957278981805, 0.002642277395352721, 0.45560210943222046], [0.05893915519118309, 0.004959069192409515, 0.09357424080371857, 0.00190543953794986, 0.009960702620446682, 0.04426253214478493, 0.015621045604348183, 0.00938519649207592, 0.19872264564037323, 0.0016963587841019034, 0.04343685135245323, 0.023814281448721886, 0.02632875181734562, 0.036393698304891586, 0.1093456894159317, 0.04231872782111168, 0.2793356478214264], [0.01992052234709263, 0.006161093711853027, 0.007589926477521658, 0.00046238701906986535, 0.005520354025065899, 0.024907352402806282, 0.012775149196386337, 0.005661738570779562, 0.32653382420539856, 0.0020882582757622004, 0.0021655098535120487, 0.015465816482901573, 0.03194478154182434, 0.030286500230431557, 0.07281152158975601, 0.01618834026157856, 0.4195168912410736], [0.036059796810150146, 0.010527840815484524, 0.004981519654393196, 0.0029798285104334354, 0.0007715271203778684, 0.006110026966780424, 0.0034477165900170803, 0.010959194973111153, 0.20585474371910095, 0.00044907856499776244, 0.010765604674816132, 0.0028897759038954973, 0.1274241805076599, 0.15617790818214417, 0.0760139673948288, 0.041925206780433655, 0.3026621341705322], [0.016502052545547485, 0.003211716189980507, 0.004133071284741163, 0.0006781511474400759, 0.002640243386849761, 0.01132307667285204, 0.003016370115801692, 0.008973664604127407, 0.13929511606693268, 0.00045586933265440166, 0.004585266578942537, 0.009204753674566746, 0.04407932609319687, 0.3028356432914734, 0.2534273862838745, 0.0154296038672328, 0.1802086979150772], [0.028918199241161346, 0.004348126705735922, 0.004228840582072735, 0.002513051498681307, 0.0009302482358179986, 0.0009891161462292075, 0.0013943141093477607, 0.0123847471550107, 0.05579974129796028, 0.010748859494924545, 0.011472832411527634, 0.006188303232192993, 0.015000557526946068, 0.006573528982698917, 0.013217327184975147, 0.7583897113800049, 0.06690241396427155], [0.03434761241078377, 0.004570739809423685, 0.009555219672620296, 0.0029089529998600483, 0.0013298295671120286, 0.002127466257661581, 0.0007698537083342671, 0.03190582990646362, 0.03863202780485153, 0.005823454353958368, 0.01081096287816763, 0.004527913872152567, 0.016536278650164604, 0.012182661332190037, 0.011118763126432896, 0.7706246376037598, 0.04222780838608742], [0.03200674429535866, 0.009288210421800613, 0.029990360140800476, 0.000543253670912236, 0.007822990417480469, 0.017453720793128014, 0.0022451900877058506, 0.011948894709348679, 0.023673368617892265, 0.6120604276657104, 0.1465435028076172, 0.014453024603426456, 0.028639061376452446, 0.009268267080187798, 0.01893697865307331, 0.00406336085870862, 0.031062575057148933], [0.00889130961149931, 0.001662836642935872, 0.0015882020816206932, 0.0004541071830317378, 0.0006766048027202487, 0.0011294177966192365, 0.000691256660502404, 0.007943513803184032, 0.48110243678092957, 0.000716417795047164, 0.0006372368079610169, 0.0007312323432415724, 0.0012041775044053793, 0.0008390186703763902, 0.0008140855352394283, 0.003646201454102993, 0.48727190494537354]], [[0.12759742140769958, 0.002641474362462759, 0.018322398886084557, 0.0009617983014322817, 0.0003980716865044087, 0.0021033675875514746, 0.0011466017458587885, 0.005177818238735199, 0.2399589568376541, 0.029403721913695335, 0.04501628875732422, 0.013487356714904308, 0.05238167569041252, 0.03203549608588219, 0.01721315085887909, 0.05518418923020363, 0.35697028040885925], [0.05798911675810814, 0.01655115932226181, 0.21509882807731628, 0.0039933170191943645, 0.0006378262769430876, 0.009745080024003983, 0.0018475927645340562, 0.030218685045838356, 0.33957552909851074, 0.0006990835536271334, 0.0030042503494769335, 0.0016487378161400557, 0.0037539382465183735, 0.0025319443084299564, 0.004574748687446117, 0.005559454206377268, 0.30257076025009155], [0.011131302453577518, 0.0037082000635564327, 0.3892751932144165, 0.004684797488152981, 0.0028307328466326, 0.013075975701212883, 0.005537704098969698, 0.007429618388414383, 0.2873665988445282, 0.0012595867738127708, 0.001423293026164174, 0.0009203414665535092, 0.0012776433723047376, 0.001001540687866509, 0.0014781435020267963, 0.003450704738497734, 0.2641487717628479], [0.07821319252252579, 0.034390296787023544, 0.08508602529764175, 0.0049172090366482735, 0.0010389633243903518, 0.023218179121613503, 0.00403863238170743, 0.03876839578151703, 0.3807511329650879, 0.0012927333591505885, 0.004972738213837147, 0.003812238108366728, 0.001470681163482368, 0.00024343901895917952, 0.0005249351379461586, 0.005401398986577988, 0.3318597376346588], [0.04820982366800308, 0.026434097439050674, 0.04411632567644119, 0.00512579595670104, 0.0006215384928509593, 0.018394887447357178, 0.005331367254257202, 0.11766041815280914, 0.3907431364059448, 0.0009903975296765566, 0.0023226693738251925, 0.002586232963949442, 0.0006157384486868978, 6.950420356588438e-05, 0.00017569551710039377, 0.003024033736437559, 0.3335783779621124], [0.09430507570505142, 0.026930296793580055, 0.039912737905979156, 0.005324020516127348, 0.0009463638998568058, 0.017952777445316315, 0.0044166757725179195, 0.03244282305240631, 0.4042772650718689, 0.0015575711149722338, 0.011453396640717983, 0.0009170050616376102, 0.0017110316548496485, 9.99456096906215e-05, 0.0005563996382988989, 0.007068190723657608, 0.35012832283973694], [0.014356883242726326, 0.013352934271097183, 0.011027355678379536, 0.002892084186896682, 0.00046779081458225846, 0.0040612113662064075, 0.0005426998832263052, 0.03641800582408905, 0.4880227744579315, 0.0008454924100078642, 0.00048002315452322364, 0.0008909572497941554, 0.0009645803365856409, 0.00021340344392228872, 0.0007506029214709997, 0.004851281177252531, 0.4198618233203888], [0.08017683774232864, 0.031582266092300415, 0.1411472111940384, 0.00836728885769844, 0.0022520816419273615, 0.014069038443267345, 0.005743908695876598, 0.04028191789984703, 0.33867013454437256, 0.0017679514130577445, 0.0040212357416749, 0.003211193485185504, 0.004232272505760193, 0.0037808921188116074, 0.003924116957932711, 0.006890976335853338, 0.30988073348999023], [0.09928568452596664, 0.01973758265376091, 0.03508320450782776, 0.00711445277556777, 0.0009905463084578514, 0.0034138828050345182, 0.002053978154435754, 0.11052355915307999, 0.325686514377594, 0.0039240955375134945, 0.006915200036019087, 0.004005827009677887, 0.0034744315780699253, 0.0010585907148197293, 0.0023890682496130466, 0.012573249638080597, 0.36177003383636475], [0.14523206651210785, 0.004370057489722967, 0.00713363429531455, 0.000566799018997699, 0.0002683750935830176, 0.002279791748151183, 0.0010023448849096894, 0.01880032569169998, 0.33974114060401917, 0.0034246111754328012, 0.011534811928868294, 0.0038573420606553555, 0.00985016580671072, 0.0008040035027079284, 0.0012686030240729451, 0.014856799505650997, 0.43500906229019165], [0.10187390446662903, 0.008110197260975838, 0.4530135989189148, 0.0032188883051276207, 0.0011650349479168653, 0.01108372863382101, 0.0020951619371771812, 0.008180157281458378, 0.1476217806339264, 0.0054847379215061665, 0.010686046443879604, 0.011580334044992924, 0.029445620253682137, 0.010921631939709187, 0.01596014015376568, 0.012294610030949116, 0.16726449131965637], [0.07199853658676147, 0.005378678906708956, 0.001824289676733315, 0.0007286925683729351, 5.777660044259392e-05, 0.0007411994156427681, 0.0003564495127648115, 0.00934547744691372, 0.3786395192146301, 0.0059769367799162865, 0.011746933683753014, 0.0029733304399996996, 0.012123722583055496, 0.002662101062014699, 0.014138547703623772, 0.016141939908266068, 0.4651659429073334], [0.04819687083363533, 0.007004470564424992, 0.002005811780691147, 0.0011418426875025034, 0.00014645527699030936, 0.0006488825310952961, 0.00036462140269577503, 0.01453134510666132, 0.38899460434913635, 0.00808185338973999, 0.002570420503616333, 0.01464450266212225, 0.00245995563454926, 0.0044882227666676044, 0.007807701360434294, 0.015765361487865448, 0.48114702105522156], [0.0028171250596642494, 0.0002581830194685608, 0.010321768000721931, 0.0002449669409543276, 7.836687473172788e-06, 1.269724452868104e-05, 2.6008741770056076e-05, 0.0007407551165670156, 0.10632429271936417, 0.0020097922533750534, 0.00014643576287198812, 0.0008298148750327528, 0.005793146789073944, 0.09056054055690765, 0.6389860510826111, 0.0015513580292463303, 0.13936926424503326], [0.022478634491562843, 0.0018809805624186993, 0.03874971345067024, 0.0013490472920238972, 0.00017873753677122295, 0.00021559018932748586, 0.0003060683375224471, 0.006406242027878761, 0.3428303301334381, 0.004524475894868374, 0.0020458821672946215, 0.002325686626136303, 0.011292899027466774, 0.0387813001871109, 0.08969075232744217, 0.009814504534006119, 0.4271290600299835], [0.1784118115901947, 0.013392035849392414, 0.031874459236860275, 0.001495323027484119, 0.00045151100493967533, 0.007161801680922508, 0.0009671953157521784, 0.015159158036112785, 0.3048873245716095, 0.00976563896983862, 0.01224400382488966, 0.00756114674732089, 0.017550110816955566, 0.006095872260630131, 0.005096809938549995, 0.02016581781208515, 0.3677200376987457], [0.10374398529529572, 0.016477977856993675, 0.02411801367998123, 0.005720147863030434, 0.0007447206880897284, 0.00245878123678267, 0.0017309562535956502, 0.09839294850826263, 0.32528623938560486, 0.005455663427710533, 0.008655020967125893, 0.004578886087983847, 0.00449566962197423, 0.0012366364244371653, 0.0026502416003495455, 0.015306497924029827, 0.37894758582115173]], [[0.03353704512119293, 0.004694098141044378, 0.025402426719665527, 0.006758269853889942, 0.009840640239417553, 0.024118728935718536, 0.012706905603408813, 0.03391854465007782, 0.3314789831638336, 0.021580014377832413, 0.011276914738118649, 0.009882969781756401, 0.00516238808631897, 0.0021049596834927797, 0.007396898698061705, 0.01761094108223915, 0.4425293207168579], [0.013683877885341644, 0.027670934796333313, 0.03765421733260155, 0.021852822974324226, 0.005495890974998474, 0.02996671013534069, 0.08865571767091751, 0.03588790073990822, 0.39578983187675476, 0.007235392462462187, 0.0030585213098675013, 0.0010365747148171067, 0.0016964009264484048, 0.000606441986747086, 0.009456994011998177, 0.006040855310857296, 0.31421080231666565], [0.025705086067318916, 0.04889628291130066, 0.07281841337680817, 0.0016010240651667118, 0.0006987453089095652, 0.006124191917479038, 0.01375453919172287, 0.02647683396935463, 0.3953234851360321, 0.004304227419197559, 0.0031535611487925053, 0.0004450964042916894, 0.0011390179861336946, 0.0006755361100658774, 0.024200377985835075, 0.004302963148802519, 0.3703804612159729], [0.01923833042383194, 0.09826676547527313, 0.06297760456800461, 0.015220953151583672, 0.006857878994196653, 0.007348500192165375, 0.012302327901124954, 0.028309660032391548, 0.3820899724960327, 0.0483933724462986, 0.0027331318706274033, 0.0028866578359156847, 0.0007129637524485588, 0.0004307494964450598, 0.0022417716681957245, 0.0015804794384166598, 0.3084089159965515], [0.007056498900055885, 0.04310993477702141, 0.05480656027793884, 0.43375951051712036, 0.013916335999965668, 0.0050793858245015144, 0.013597850687801838, 0.023951562121510506, 0.20993900299072266, 0.005971364211291075, 0.0009546459186822176, 0.0027351337485015392, 4.728916610474698e-05, 0.000718635565135628, 0.0022134140599519014, 0.0011169197969138622, 0.18102595210075378], [0.003572630463168025, 0.017683137208223343, 0.07362271100282669, 0.7128459811210632, 0.05613403767347336, 0.0027720273938030005, 0.014338690787553787, 0.008431363850831985, 0.053321585059165955, 0.0013619221281260252, 0.0001982022513402626, 0.00039412450860254467, 5.013330883230083e-05, 5.638580478262156e-05, 0.0007312584784813225, 0.0002478231326676905, 0.05423804000020027], [0.0020653174724429846, 0.01215394027531147, 0.006761945318430662, 0.9123800992965698, 0.020709101110696793, 0.0011311762500554323, 0.00029579075635410845, 0.0023370953276753426, 0.020108764991164207, 0.0026155223604291677, 0.00025410830858163536, 0.0005855978233739734, 1.1566933608264662e-05, 8.825767872622237e-05, 0.00012408426846377552, 9.855776443146169e-05, 0.018279030919075012], [0.04648226499557495, 0.02777552604675293, 0.03084980510175228, 0.05609253793954849, 0.039116088300943375, 0.27781447768211365, 0.022532960399985313, 0.05209442600607872, 0.21780811250209808, 0.009599275887012482, 0.0040978435426950455, 0.003034740686416626, 0.0017333821160718799, 0.0013580142986029387, 0.004341691732406616, 0.0055438741110265255, 0.1997249573469162], [0.021380115300416946, 0.007451274432241917, 0.02679167129099369, 0.009715354070067406, 0.01041471492499113, 0.02453741803765297, 0.022088997066020966, 0.0370662659406662, 0.36317312717437744, 0.01284188125282526, 0.010637428611516953, 0.01088764052838087, 0.006658137310296297, 0.0060299355536699295, 0.0230949018150568, 0.01575629413127899, 0.3914748430252075], [0.008759306743741035, 0.0017021362436935306, 0.0030789608135819435, 0.0022681960836052895, 0.0004023327201139182, 0.019204553216695786, 0.009455198422074318, 0.03205280378460884, 0.39825835824012756, 0.02105966955423355, 0.005749039817601442, 0.002790131140500307, 0.00196623126976192, 0.001175210578367114, 0.0037712149787694216, 0.0052514155395329, 0.48305514454841614], [0.013387811370193958, 0.004353857599198818, 0.009090623818337917, 0.0037649269215762615, 0.0017662190366536379, 0.01526618655771017, 0.012045747600495815, 0.0251274686306715, 0.3874477446079254, 0.08490371704101562, 0.002081465907394886, 0.0017140712589025497, 0.000830847246106714, 0.0007690382190048695, 0.00365238799713552, 0.00841774232685566, 0.4253802001476288], [0.016170823946595192, 0.00860834401100874, 0.0013970256550237536, 0.030484246090054512, 0.002820461755618453, 0.00030802551191300154, 0.004427966196089983, 0.013040955178439617, 0.1426769196987152, 0.08620618283748627, 0.011666359379887581, 0.032822202891111374, 0.23797467350959778, 0.06326288729906082, 0.0210683923214674, 0.1790618747472763, 0.1480027139186859], [0.013409675098955631, 0.0016358235152438283, 0.000607586232945323, 0.0022632814943790436, 0.00014700574683956802, 0.002604493172839284, 0.0004976140917278826, 0.007984621450304985, 0.13281553983688354, 0.045495904982089996, 0.009842057712376118, 0.05439065396785736, 0.042849864810705185, 0.3019333779811859, 0.07328135520219803, 0.16856414079666138, 0.14167706668376923], [0.02218128740787506, 0.021137135103344917, 0.003321901196613908, 0.015765530988574028, 0.0027436725795269012, 0.0002585668698884547, 0.005819383542984724, 0.012072925455868244, 0.2434394657611847, 0.07781201601028442, 0.12173343449831009, 0.01955941878259182, 0.03972085937857628, 0.0325206033885479, 0.027027705684304237, 0.0850103497505188, 0.269875705242157], [0.04302673786878586, 0.01941583678126335, 0.006394318770617247, 0.009697443805634975, 0.0006676638731732965, 0.00038252034573815763, 0.0006676221964880824, 0.008733977563679218, 0.15230520069599152, 0.05339881032705307, 0.09822818636894226, 0.04369979351758957, 0.03310321271419525, 0.1294233649969101, 0.0293069276958704, 0.205490380525589, 0.16605804860591888], [0.03028547763824463, 0.004970422480255365, 0.0024086711928248405, 0.0006666664266958833, 0.00012095970305381343, 0.0019201028626412153, 0.00012939599400851876, 0.004376744385808706, 0.04789287596940994, 0.6670366525650024, 0.14895570278167725, 0.010437785647809505, 0.005437977612018585, 0.0013922702055424452, 0.0025613312609493732, 0.005723379552364349, 0.06568364053964615], [0.021704891696572304, 0.006437145639210939, 0.024342045187950134, 0.00929927546530962, 0.010311801917850971, 0.020022470504045486, 0.018554266542196274, 0.03209354728460312, 0.3309526741504669, 0.017253145575523376, 0.01439250260591507, 0.018619323149323463, 0.011425826698541641, 0.010454332455992699, 0.036537181586027145, 0.02314048819243908, 0.39445915818214417]], [[0.015340819023549557, 0.039972566068172455, 0.173325315117836, 0.08965891599655151, 0.20859722793102264, 0.19164416193962097, 0.1145470142364502, 0.04613492265343666, 0.0662824958562851, 0.0008031209581531584, 0.0031141480430960655, 0.001587149454280734, 0.0017294768476858735, 0.0008746676030568779, 0.003912828397005796, 0.001216887729242444, 0.0412583164870739], [0.10709633678197861, 0.07283935695886612, 0.15425942838191986, 0.04153507202863693, 0.017221730202436447, 0.05370108783245087, 0.03696885332465172, 0.12750950455665588, 0.2103251814842224, 0.004115224815905094, 0.0036073909141123295, 0.0016724473098292947, 0.0033570046070963144, 0.0027165482752025127, 0.004280829336494207, 0.006954418495297432, 0.15183955430984497], [0.14431950449943542, 0.07073533535003662, 0.01710463874042034, 0.015207719057798386, 0.03428482264280319, 0.05912376940250397, 0.010197699069976807, 0.05737580731511116, 0.28605106472969055, 0.010608941316604614, 0.00594597402960062, 0.0006583124632015824, 0.010156827978789806, 0.003376911161467433, 0.006534238811582327, 0.004466262646019459, 0.26385220885276794], [0.08174649626016617, 0.057545844465494156, 0.07483689486980438, 0.007350401487201452, 0.003945960663259029, 0.03843236342072487, 0.018390337005257607, 0.0839841365814209, 0.334446519613266, 0.0011158331762999296, 0.0026339907199144363, 0.0006781599950045347, 0.0012645306997001171, 0.0019380846060812473, 0.003171138698235154, 0.01854158751666546, 0.26997771859169006], [0.06425239145755768, 0.035323187708854675, 0.09783182293176651, 0.03267088904976845, 0.01850711926817894, 0.15324881672859192, 0.030414724722504616, 0.06134774535894394, 0.2496424913406372, 0.0014450299786403775, 0.0016293092630803585, 0.0008701831102371216, 0.001944629242643714, 0.0036254243459552526, 0.006345509551465511, 0.007463006302714348, 0.23343759775161743], [0.04493410140275955, 0.07069997489452362, 0.075708769261837, 0.012936316430568695, 0.06519918888807297, 0.06192650645971298, 0.072085902094841, 0.1528291553258896, 0.18797913193702698, 0.0017491821199655533, 0.003069923259317875, 0.0013769040815532207, 0.008406654000282288, 0.013589076697826385, 0.018448323011398315, 0.03519933298230171, 0.173861563205719], [0.08976485580205917, 0.06796978414058685, 0.043668922036886215, 0.02196810208261013, 0.028072841465473175, 0.08977725356817245, 0.025965522974729538, 0.11346259713172913, 0.2186966836452484, 0.0037033664993941784, 0.002970197005197406, 0.001287805032916367, 0.002708122134208679, 0.00792046170681715, 0.021867603063583374, 0.08752845227718353, 0.17266739904880524], [0.09163565188646317, 0.029838059097528458, 0.06207060441374779, 0.034162405878305435, 0.011816048063337803, 0.04278750717639923, 0.03643510490655899, 0.07961342483758926, 0.31168997287750244, 0.011864416301250458, 0.006808191072195768, 0.001561734126880765, 0.0042076497338712215, 0.0066185323521494865, 0.010175579227507114, 0.0249174814671278, 0.23379768431186676], [0.055009081959724426, 0.016647810116410255, 0.032131969928741455, 0.022200580686330795, 0.023030877113342285, 0.0218951478600502, 0.022324176505208015, 0.06163572892546654, 0.310249388217926, 0.012168697081506252, 0.011409128084778786, 0.019892089068889618, 0.014376652427017689, 0.021667052060365677, 0.023300351575016975, 0.04172728583216667, 0.29033398628234863], [0.1711912453174591, 0.010623871348798275, 0.011231782846152782, 0.003477185033261776, 0.0017342083156108856, 0.005840560887008905, 0.009801999665796757, 0.06413424015045166, 0.276796817779541, 0.019873522222042084, 0.060984332114458084, 0.025610795244574547, 0.010124742984771729, 0.005425992421805859, 0.010943528264760971, 0.005278751719743013, 0.3069263696670532], [0.26481521129608154, 0.009488977491855621, 0.015699239447712898, 0.0005160804721526802, 0.00034936791053041816, 0.0016722793225198984, 0.0015524107730016112, 0.0413542240858078, 0.26811230182647705, 0.030595878139138222, 0.023074021562933922, 0.005258235614746809, 0.016411537304520607, 0.005732754245400429, 0.006106399931013584, 0.018263444304466248, 0.2909976840019226], [0.12795551121234894, 0.013441663235425949, 0.004942802712321281, 0.002160585718229413, 0.0010796907590702176, 0.0038911595474928617, 0.0012969158124178648, 0.017203569412231445, 0.2819002866744995, 0.06505705416202545, 0.06328089535236359, 0.007845091633498669, 0.040057312697172165, 0.017944490537047386, 0.018586907535791397, 0.022392813116312027, 0.3109632730484009], [0.13007551431655884, 0.015273413620889187, 0.012284835800528526, 0.0038090432062745094, 0.0016354549443349242, 0.005744705442339182, 0.0016458057798445225, 0.03220919519662857, 0.24617919325828552, 0.024126902222633362, 0.09028711915016174, 0.043389659374952316, 0.013567181304097176, 0.0170480664819479, 0.05928710475564003, 0.025768481194972992, 0.277668297290802], [0.15170516073703766, 0.01491902582347393, 0.02569616213440895, 0.025702238082885742, 0.006355874240398407, 0.025803154334425926, 0.004133834969252348, 0.02999289706349373, 0.19618767499923706, 0.020703846588730812, 0.06998427957296371, 0.017897240817546844, 0.029291734099388123, 0.023805996403098106, 0.06463689357042313, 0.018756501376628876, 0.2744275629520416], [0.15583063662052155, 0.01573105715215206, 0.022779693827033043, 0.014888818375766277, 0.003644403303042054, 0.017298415303230286, 0.004269361961632967, 0.02750309184193611, 0.16951683163642883, 0.031332943588495255, 0.05508267506957054, 0.007559443823993206, 0.08190315961837769, 0.07170398533344269, 0.03221050649881363, 0.032327037304639816, 0.25641801953315735], [0.18699736893177032, 0.002329472219571471, 0.021755244582891464, 0.01376196090131998, 0.000809724791906774, 0.010529701597988605, 0.0045575243420898914, 0.06504624336957932, 0.21019411087036133, 0.010116730816662312, 0.028706198558211327, 0.011727341450750828, 0.009715944528579712, 0.02404075674712658, 0.04453139379620552, 0.03886324167251587, 0.31631720066070557], [0.06448955088853836, 0.013963649980723858, 0.02917107380926609, 0.018412627279758453, 0.019564948976039886, 0.017242856323719025, 0.01677178405225277, 0.05014842748641968, 0.26806533336639404, 0.015491144731640816, 0.01348561979830265, 0.02619824931025505, 0.019132710993289948, 0.03409269452095032, 0.0333671048283577, 0.06559543311595917, 0.2948067784309387]], [[0.08785546571016312, 0.023154892027378082, 0.06429734826087952, 0.031786054372787476, 0.01862933672964573, 0.005499887280166149, 0.014141811057925224, 0.016133353114128113, 0.13085180521011353, 0.04257943853735924, 0.11620363593101501, 0.018868422135710716, 0.10987429320812225, 0.060715850442647934, 0.052005037665367126, 0.059579454362392426, 0.14782392978668213], [0.050355229526758194, 0.029105104506015778, 0.1870446503162384, 0.00807579793035984, 0.007529054768383503, 0.006330855656415224, 0.01622489094734192, 0.019295884296298027, 0.06541924923658371, 0.023559704422950745, 0.37408357858657837, 0.01484439056366682, 0.02336292155086994, 0.013132275082170963, 0.031180664896965027, 0.05434305593371391, 0.07611273229122162], [0.022724397480487823, 0.04422933980822563, 0.5426883697509766, 0.0024908646009862423, 0.0013878637691959739, 0.00812041386961937, 0.000753621687181294, 0.03339673578739166, 0.13236024975776672, 0.009963495656847954, 0.0060404203832149506, 0.0012752666370943189, 0.003757701488211751, 0.0022014561109244823, 0.0043153315782547, 0.014550285413861275, 0.16974428296089172], [0.09590562433004379, 0.03011862188577652, 0.019929463043808937, 0.016256431117653847, 0.03461933881044388, 0.12509606778621674, 0.048083506524562836, 0.029528716579079628, 0.13458402454853058, 0.022195324301719666, 0.1285013109445572, 0.01789618656039238, 0.03151247650384903, 0.015516906976699829, 0.02850770764052868, 0.0776928961277008, 0.1440553516149521], [0.07536934316158295, 0.009664124809205532, 0.0061071328818798065, 0.040697697550058365, 0.12455844134092331, 0.27005907893180847, 0.022782867774367332, 0.02231401391327381, 0.11287368088960648, 0.02343214675784111, 0.02277006208896637, 0.028779348358511925, 0.06950505077838898, 0.005047628190368414, 0.00668099382892251, 0.04103831946849823, 0.1183200478553772], [0.09464231878519058, 0.017008045688271523, 0.08113357424736023, 0.009828610345721245, 0.011414406821131706, 0.3514114320278168, 0.0028048157691955566, 0.022607969120144844, 0.1563003808259964, 0.017244970425963402, 0.0035932743921875954, 0.009811855852603912, 0.012112116441130638, 0.00018629043188411742, 0.0028494782745838165, 0.03587246686220169, 0.17117799818515778], [0.09787283092737198, 0.025256548076868057, 0.018364306539297104, 0.012211504392325878, 0.011416743509471416, 0.043396636843681335, 0.009356028400361538, 0.008607021532952785, 0.3004753589630127, 0.011029512621462345, 0.04762692749500275, 0.020061636343598366, 0.021751176565885544, 0.0032079427037388086, 0.0028403415344655514, 0.013647926971316338, 0.3528776168823242], [0.1900794953107834, 0.04235231876373291, 0.05770864710211754, 0.04342237114906311, 0.016603482887148857, 0.015736976638436317, 0.010431384667754173, 0.048416830599308014, 0.23508548736572266, 0.02296815626323223, 0.019949723035097122, 0.007292553782463074, 0.0045737349428236485, 0.004969010595232248, 0.002545671770349145, 0.04959002509713173, 0.2282741814851761], [0.11443354189395905, 0.026537958532571793, 0.04224732518196106, 0.02834514155983925, 0.01429543737322092, 0.01624898612499237, 0.016276659443974495, 0.03218364715576172, 0.21034273505210876, 0.03435136005282402, 0.023371227085590363, 0.024535851553082466, 0.05385018140077591, 0.02015874534845352, 0.03759355470538139, 0.07628673315048218, 0.22894097864627838], [0.10238467901945114, 0.009599142707884312, 0.051687631756067276, 0.021734952926635742, 0.030580295249819756, 0.13926364481449127, 0.019718030467629433, 0.013973359018564224, 0.13918884098529816, 0.050414979457855225, 0.008590475656092167, 0.02460332028567791, 0.10249323397874832, 0.02212272584438324, 0.055966947227716446, 0.05752737447619438, 0.15015044808387756], [0.01155109703540802, 0.3665461838245392, 0.4071566164493561, 0.0012388606555759907, 0.0016497502801939845, 0.00016208062879741192, 0.0007624436402693391, 0.02213725820183754, 0.024681735783815384, 0.0011338567128404975, 0.13830946385860443, 4.9935082643060014e-05, 5.2626295655500144e-05, 4.983631515642628e-05, 0.00015292532043531537, 0.0019380685407668352, 0.022427253425121307], [0.0988735631108284, 0.00810533668845892, 0.003693265374749899, 0.02403714507818222, 0.01930871233344078, 0.09083115309476852, 0.045186009258031845, 0.018657997250556946, 0.1284719854593277, 0.03536965325474739, 0.006351954769343138, 0.12163133919239044, 0.16789932548999786, 0.021654589101672173, 0.04068566858768463, 0.02959786169230938, 0.13964448869228363], [0.04811043664813042, 0.02305556833744049, 0.015595187433063984, 0.024432215839624405, 0.029340848326683044, 0.06254052370786667, 0.015492081642150879, 0.008921829983592033, 0.141980841755867, 0.05552118271589279, 0.0060678510926663876, 0.08895387500524521, 0.2157292515039444, 0.042491886764764786, 0.0706239864230156, 0.01184166967868805, 0.13930077850818634], [0.01191096380352974, 0.024347836151719093, 0.025750786066055298, 0.004004873801022768, 0.0018154301214963198, 0.00015546784561593086, 0.0013384380144998431, 0.008701673708856106, 0.11745009571313858, 0.0010557923233136535, 0.006696704309433699, 0.006256043445318937, 0.010908727534115314, 0.24774286150932312, 0.3984084129333496, 0.004950797185301781, 0.12850512564182281], [0.013543233275413513, 0.04978056252002716, 0.020450223237276077, 0.0015240791253745556, 0.0006331190816126764, 0.00042383544496260583, 0.0011867423309013247, 0.0089890006929636, 0.06815314292907715, 0.001464169123210013, 0.004446992184966803, 0.0030188108794391155, 0.004341593943536282, 0.4266420006752014, 0.32678458094596863, 0.003989062737673521, 0.06462882459163666], [0.15897759795188904, 0.03445937857031822, 0.04916132614016533, 0.020893627777695656, 0.04645692557096481, 0.11105263978242874, 0.049921754747629166, 0.021978070959448814, 0.14342592656612396, 0.026382392272353172, 0.01543849240988493, 0.026979804039001465, 0.02332753874361515, 0.056262921541929245, 0.056463100016117096, 0.024026915431022644, 0.13479170203208923], [0.12157228589057922, 0.027919812127947807, 0.03722265735268593, 0.029451880604028702, 0.015367691405117512, 0.016029197722673416, 0.01955902948975563, 0.03163148835301399, 0.20774368941783905, 0.03366883099079132, 0.022494222968816757, 0.026550494134426117, 0.05728454887866974, 0.02301979809999466, 0.03992536664009094, 0.0698113664984703, 0.22074756026268005]], [[0.1809348315000534, 0.033141739666461945, 0.06134340167045593, 0.02586374059319496, 0.05698597431182861, 0.04101647809147835, 0.004441611468791962, 0.10319960862398148, 0.1605917066335678, 0.04244471713900566, 0.020551731809973717, 0.019739849492907524, 0.008925075642764568, 0.006484847515821457, 0.007126779295504093, 0.05254935845732689, 0.17465852200984955], [0.15892164409160614, 0.028050478547811508, 0.07106715440750122, 0.013302326202392578, 0.007649114355444908, 0.02539973519742489, 0.010387849994003773, 0.07051824033260345, 0.2318175733089447, 0.014579078182578087, 0.03858432546257973, 0.018992438912391663, 0.011108368635177612, 0.010106214322149754, 0.011578834615647793, 0.03644125536084175, 0.24149538576602936], [0.22064755856990814, 0.020712655037641525, 0.012760325334966183, 0.001798607292585075, 0.0005470352480188012, 0.0029742869082838297, 0.0014105021255090833, 0.09252924472093582, 0.17975394427776337, 0.001134228310547769, 0.004774211905896664, 0.0027527494821697474, 0.007298382464796305, 0.03465916961431503, 0.21013043820858002, 0.016613628715276718, 0.18950308859348297], [0.12044814229011536, 0.025374386459589005, 0.04100681468844414, 0.01499580591917038, 0.006589438766241074, 0.029443036764860153, 0.0057571809738874435, 0.11901312321424484, 0.24544933438301086, 0.06079712137579918, 0.01924690417945385, 0.005409372039139271, 0.009470430202782154, 0.017526349052786827, 0.011250662617385387, 0.03778046742081642, 0.23044143617153168], [0.1839444488286972, 0.0174009520560503, 0.010004132054746151, 0.00861404836177826, 0.0006338510429486632, 0.002299963729456067, 0.0011391380103304982, 0.08039058744907379, 0.28471216559410095, 0.05869899317622185, 0.007503848988562822, 0.005337894428521395, 0.0030761451926082373, 0.0035611954517662525, 0.0022600397933274508, 0.049320802092552185, 0.281101793050766], [0.11486341059207916, 0.03624719753861427, 0.0134811382740736, 0.006569850258529186, 0.00294834328815341, 0.0005973271909169853, 0.003312266431748867, 0.12410323321819305, 0.26272472739219666, 0.05011356621980667, 0.006143853068351746, 0.0098728584125638, 0.007070998195558786, 0.04073260352015495, 0.0284722950309515, 0.03521924838423729, 0.25752702355384827], [0.08492541313171387, 0.02624005638062954, 0.027497906237840652, 0.01105910912156105, 0.0075006973929703236, 0.013003512285649776, 0.0016043659998103976, 0.0713658258318901, 0.360696405172348, 0.013685980811715126, 0.005241834092885256, 0.006291364319622517, 0.00592017499729991, 0.0056682005524635315, 0.0033997027203440666, 0.014159874059259892, 0.34173962473869324], [0.1624777913093567, 0.027494650334119797, 0.05821574851870537, 0.02999340370297432, 0.01853119768202305, 0.04037367179989815, 0.014206945896148682, 0.062569260597229, 0.2407609075307846, 0.029244987294077873, 0.01688460074365139, 0.01490802876651287, 0.006585956551134586, 0.004975704476237297, 0.005934206303209066, 0.03907892480492592, 0.22776396572589874], [0.13489772379398346, 0.025231139734387398, 0.04954930394887924, 0.018095532432198524, 0.01167614571750164, 0.024128669872879982, 0.012124291621148586, 0.04891978204250336, 0.2794085443019867, 0.014172542840242386, 0.009827866218984127, 0.01847536861896515, 0.01294876541942358, 0.020608723163604736, 0.024335220456123352, 0.019276799634099007, 0.2763236463069916], [0.1724925935268402, 0.013374142348766327, 0.003666842123493552, 0.02063440904021263, 0.03976757079362869, 0.0736643373966217, 0.0071897911839187145, 0.11219438165426254, 0.2592865824699402, 0.0073627387173473835, 0.00533401221036911, 0.005864250939339399, 0.0012766201980412006, 0.0010713671799749136, 0.0009084046469070017, 0.018872259184718132, 0.2570396363735199], [0.11329855769872665, 0.03443470597267151, 0.09738736599683762, 0.008637523278594017, 0.0037678724620491266, 0.015234452672302723, 0.004287968389689922, 0.1155705526471138, 0.29987820982933044, 0.0015607213135808706, 0.006748128216713667, 0.00410108920186758, 0.0005886416765861213, 0.001930480357259512, 0.004860387649387121, 0.00995497964322567, 0.2777583599090576], [0.13941368460655212, 0.02250714972615242, 0.017218532040715218, 0.011797267943620682, 0.006751397158950567, 0.035133786499500275, 0.008534512482583523, 0.08598820120096207, 0.2856442332267761, 0.020737716928124428, 0.00598968006670475, 0.0036782382521778345, 0.010901479981839657, 0.01046878844499588, 0.01310956384986639, 0.025129426270723343, 0.2969963252544403], [0.08463839441537857, 0.01270969957113266, 0.023268088698387146, 0.004411982372403145, 0.001581456046551466, 0.006553984247148037, 0.004063136409968138, 0.05127799138426781, 0.3887098729610443, 0.0012958789011463523, 0.0017608033958822489, 0.0032158505637198687, 0.0009611584828235209, 0.0022709595505148172, 0.0041665975004434586, 0.00840948149561882, 0.40070468187332153], [0.06317650526762009, 0.013546490110456944, 0.10369697213172913, 0.030292870476841927, 0.00045389420120045543, 0.025506222620606422, 0.0028651126194745302, 0.03794132545590401, 0.33888500928878784, 0.0013778435532003641, 0.003737699007615447, 0.006553072016686201, 0.003292630659416318, 0.00012181791680632159, 0.0015007142210379243, 0.029383007436990738, 0.337668776512146], [0.07858254015445709, 0.011650007218122482, 0.21158108115196228, 0.012160727754235268, 0.00045634384150616825, 0.016058901324868202, 0.0010243725264444947, 0.038150858134031296, 0.3007851243019104, 0.0011858895886689425, 0.0044764927588403225, 0.006565919145941734, 0.003261185484007001, 0.00033813808113336563, 0.0010404461063444614, 0.013363399542868137, 0.2993186116218567], [0.10067831724882126, 0.020996958017349243, 0.034526724368333817, 0.03736231103539467, 0.03129003942012787, 0.11438058316707611, 0.014055054634809494, 0.08983927965164185, 0.23418547213077545, 0.030118338763713837, 0.009555677883327007, 0.010188327170908451, 0.007669522427022457, 0.012831166386604309, 0.010416695848107338, 0.014109778217971325, 0.22779570519924164], [0.13072115182876587, 0.02590269036591053, 0.04422006383538246, 0.017026377841830254, 0.011821772903203964, 0.0222614798694849, 0.012583104893565178, 0.04756303131580353, 0.2808963358402252, 0.014840812422335148, 0.010037073865532875, 0.019958045333623886, 0.014719882979989052, 0.02412145584821701, 0.026685211807489395, 0.018039382994174957, 0.2786022424697876]], [[0.04505026340484619, 0.07827166467905045, 0.09604855626821518, 0.06703030318021774, 0.23643259704113007, 0.1305006593465805, 0.06686779856681824, 0.039583705365657806, 0.1435745507478714, 0.002423245459794998, 0.0014698203885927796, 0.0011046931613236666, 0.003745581489056349, 0.0023948117159307003, 0.0036148782819509506, 0.00675620511174202, 0.07513055205345154], [0.04302670806646347, 0.18307147920131683, 0.3858429193496704, 0.060169100761413574, 0.05653582885861397, 0.13165165483951569, 0.040114887058734894, 0.022694824263453484, 0.04527638107538223, 0.00038254389073699713, 0.001413798308931291, 0.0010469304397702217, 0.0012960820458829403, 0.0010233710054308176, 0.0024334387853741646, 0.0021251090802252293, 0.021894987672567368], [0.06647341698408127, 0.21464712917804718, 0.18111227452754974, 0.08106967806816101, 0.06356227397918701, 0.1531333029270172, 0.05150916799902916, 0.050863295793533325, 0.07258130609989166, 0.0009953025728464127, 0.0026850062422454357, 0.000850749434903264, 0.0038717202842235565, 0.002551537938416004, 0.007051249500364065, 0.004439063370227814, 0.042603474110364914], [0.03321882709860802, 0.04381920024752617, 0.4958009421825409, 0.03320477902889252, 0.04940241202712059, 0.2221946120262146, 0.0426170788705349, 0.016729939728975296, 0.028828183189034462, 0.0012910990044474602, 0.0011490392498672009, 0.0015459242276847363, 0.00342154991813004, 0.0014116587117314339, 0.002275099977850914, 0.005997054744511843, 0.017092492431402206], [0.02683352120220661, 0.04418424516916275, 0.2801573574542999, 0.02494996041059494, 0.09292231500148773, 0.3552698493003845, 0.09073033183813095, 0.01957930251955986, 0.029605014249682426, 0.0006485586054623127, 0.0009613399161025882, 0.002391634276136756, 0.005179325118660927, 0.0023970857728272676, 0.0023357386235147715, 0.003988428041338921, 0.017865970730781555], [0.037976719439029694, 0.10211415588855743, 0.4872848689556122, 0.02763751707971096, 0.0563923642039299, 0.12361831218004227, 0.043926745653152466, 0.03664442524313927, 0.03746054694056511, 0.0007798185106366873, 0.001410683966241777, 0.00242099491879344, 0.004327442497014999, 0.003006360959261656, 0.008761141449213028, 0.003939846530556679, 0.022298071533441544], [0.03187292441725731, 0.06969163566827774, 0.4894663393497467, 0.028749506920576096, 0.06464357674121857, 0.1943855881690979, 0.03190024942159653, 0.011887723580002785, 0.03328375518321991, 0.0006100916070863605, 0.0018650642596185207, 0.004422290716320276, 0.0026663593016564846, 0.002076885662972927, 0.003569720545783639, 0.007828420959413052, 0.02107987180352211], [0.099598728120327, 0.09981101751327515, 0.214353546500206, 0.07058857381343842, 0.0767793208360672, 0.14559821784496307, 0.0343535877764225, 0.06324350088834763, 0.09045762568712234, 0.003538709133863449, 0.005591178312897682, 0.0018577519804239273, 0.0047202627174556255, 0.005867878906428814, 0.008315022103488445, 0.012773307040333748, 0.06255174428224564], [0.07443418353796005, 0.061020322144031525, 0.0679527148604393, 0.043880853801965714, 0.07231029868125916, 0.09181582927703857, 0.06746522337198257, 0.026687515899538994, 0.13615556061267853, 0.020495878532528877, 0.013478260487318039, 0.030687518417835236, 0.035392433404922485, 0.04490387812256813, 0.04307127371430397, 0.05194752663373947, 0.11830070614814758], [0.006707136984914541, 0.0007751249358989298, 0.007154405117034912, 0.0008747496176511049, 0.008713368326425552, 0.017659800127148628, 0.004443692974746227, 0.0018326325807720423, 0.025456467643380165, 0.09875830262899399, 0.03879382088780403, 0.07041935622692108, 0.28564220666885376, 0.13473956286907196, 0.13820098340511322, 0.10802347958087921, 0.051804907619953156], [0.024382352828979492, 0.003080841153860092, 0.040075045078992844, 0.0006564279901795089, 0.00021732829918619245, 0.0028629901353269815, 0.0002489363250788301, 0.0104325320571661, 0.12660911679267883, 0.05459648743271828, 0.09873225539922714, 0.018078718334436417, 0.03541871905326843, 0.06448638439178467, 0.0915878489613533, 0.1710057109594345, 0.25752824544906616], [0.012275690212845802, 0.003109223674982786, 0.0065096900798380375, 0.0005955808446742594, 0.001726871239952743, 0.009039400145411491, 0.0035349258687347174, 0.0028183315880596638, 0.06100746616721153, 0.052785977721214294, 0.03861907869577408, 0.08222334086894989, 0.21188823878765106, 0.10806860774755478, 0.13078716397285461, 0.1616954505443573, 0.11331494897603989], [0.0070958007127046585, 0.0034747279714792967, 0.004522380884736776, 0.000441201264038682, 0.00252297380939126, 0.006314962636679411, 0.0031839117873460054, 0.0033157130237668753, 0.11163052171468735, 0.03220897167921066, 0.0360710509121418, 0.09017270058393478, 0.08811293542385101, 0.12983353435993195, 0.17740115523338318, 0.10423349589109421, 0.19946399331092834], [0.005360518582165241, 0.005920092575252056, 0.014196990989148617, 0.0020526512525975704, 0.0008544014417566359, 0.005424348171800375, 0.0019387701759114861, 0.0030925904866307974, 0.03941353037953377, 0.024063458666205406, 0.15672419965267181, 0.10631737858057022, 0.08241540938615799, 0.08744386583566666, 0.28911709785461426, 0.09944497048854828, 0.07621962577104568], [0.01063152588903904, 0.016026420518755913, 0.018201762810349464, 0.003788732923567295, 0.0016653469065204263, 0.013417461887001991, 0.006933057680726051, 0.009814702905714512, 0.0650595873594284, 0.023370452225208282, 0.08838334679603577, 0.1972845047712326, 0.07574187219142914, 0.11305368691682816, 0.15217573940753937, 0.09690532833337784, 0.10754647850990295], [0.007105095777660608, 0.002463369630277157, 0.0072436402551829815, 0.0020677070133388042, 0.0015495030675083399, 0.003229381749406457, 0.0027688222471624613, 0.0027251846622675657, 0.03658017888665199, 0.06451127678155899, 0.08186668902635574, 0.067957803606987, 0.13537313044071198, 0.15637332201004028, 0.17356529831886292, 0.1803516447544098, 0.0742679312825203], [0.05321567878127098, 0.030045511201024055, 0.03301960974931717, 0.02075480856001377, 0.03829619660973549, 0.047166064381599426, 0.03833368420600891, 0.016778869554400444, 0.1183844655752182, 0.04861001297831535, 0.02656489983201027, 0.05943974480032921, 0.0734231024980545, 0.08971790224313736, 0.07722220569849014, 0.09786650538444519, 0.13116073608398438]], [[0.10569038987159729, 0.004502948839217424, 0.024079453200101852, 0.0019498660694807768, 0.008209453895688057, 0.006098884157836437, 0.0007605664432048798, 0.00700840400531888, 0.1101892814040184, 0.17376708984375, 0.10775065422058105, 0.019746115431189537, 0.05785134434700012, 0.05345810577273369, 0.044767215847969055, 0.05876631289720535, 0.21540383994579315], [0.01661662384867668, 0.017693854868412018, 0.04413176700472832, 0.1434410661458969, 0.28888261318206787, 0.08839625120162964, 0.04850517585873604, 0.07484479993581772, 0.06788218021392822, 0.03543712571263313, 0.03158872574567795, 0.0029554632492363453, 0.013113525696098804, 0.00742218317463994, 0.014024225063621998, 0.04835288226604462, 0.056711506098508835], [0.04257485270500183, 0.021575259044766426, 0.05844569578766823, 0.06782323122024536, 0.2267894148826599, 0.2655283212661743, 0.047566529363393784, 0.03137277439236641, 0.025749782100319862, 0.03299620747566223, 0.02162506803870201, 0.008805074729025364, 0.017934827134013176, 0.01813795417547226, 0.04305272549390793, 0.04526890441775322, 0.02475348301231861], [0.007998867891728878, 0.04369574412703514, 0.04430621117353439, 0.013546271249651909, 0.516044020652771, 0.09230825304985046, 0.03511795401573181, 0.06353548169136047, 0.06222856417298317, 0.02697116695344448, 0.009595518000423908, 0.00516967847943306, 0.011450495570898056, 0.0069977170787751675, 0.007154654245823622, 0.004084578715264797, 0.04979473352432251], [0.013206902891397476, 0.06892095506191254, 0.06805934756994247, 0.022713949903845787, 0.18156558275222778, 0.06249779462814331, 0.019695373252034187, 0.07547712326049805, 0.24700523912906647, 0.031917136162519455, 0.005660418886691332, 0.001695773913525045, 0.002396519063040614, 0.0019424454076215625, 0.005785044748336077, 0.00648921076208353, 0.1849711686372757], [0.019461866468191147, 0.14723049104213715, 0.17949983477592468, 0.02210823819041252, 0.23121105134487152, 0.1149429976940155, 0.03185036778450012, 0.040695395320653915, 0.05639510601758957, 0.030490176752209663, 0.020482834428548813, 0.00451718270778656, 0.009721650741994381, 0.00874168612062931, 0.0168386772274971, 0.01832413487136364, 0.04748835042119026], [0.005909941624850035, 0.06017109751701355, 0.10025863349437714, 0.019689301028847694, 0.3750649094581604, 0.05171928182244301, 0.015745749697089195, 0.023602813482284546, 0.14339686930179596, 0.04924909770488739, 0.005327262915670872, 0.006825949065387249, 0.005076147615909576, 0.003422738751396537, 0.007243771106004715, 0.00904164370149374, 0.11825481802225113], [0.046112217009067535, 0.02968369424343109, 0.046950262039899826, 0.015041546896100044, 0.013082603923976421, 0.03571481630206108, 0.004960290621966124, 0.03936168923974037, 0.38922595977783203, 0.006581715773791075, 0.011494644917547703, 0.001759480801410973, 0.0034061535261571407, 0.0029946977738291025, 0.006316558923572302, 0.006861736532300711, 0.34045201539993286], [0.017157990485429764, 0.002983150305226445, 0.006804634816944599, 0.0027990450616925955, 0.0011747486423701048, 0.003979094792157412, 0.0017815124010667205, 0.010740444995462894, 0.4637400805950165, 0.0015114792622625828, 0.0017473289044573903, 0.002514385851100087, 0.0017765829106792808, 0.00416995445266366, 0.003151937620714307, 0.0027523667085915804, 0.47121521830558777], [0.031144404783844948, 0.0032304986380040646, 0.006225212477147579, 0.014562491327524185, 0.015543151646852493, 0.004616913851350546, 0.0017246290808543563, 0.07387255877256393, 0.1507762372493744, 0.07482866942882538, 0.04317133501172066, 0.0014033750630915165, 0.00862090103328228, 0.01879740133881569, 0.026756908744573593, 0.3351838290691376, 0.1895415335893631], [0.1371629387140274, 0.013908891938626766, 0.03474659100174904, 0.013529245741665363, 0.06299293786287308, 0.01617298647761345, 0.0051455372013151646, 0.027681633830070496, 0.07041380554437637, 0.20757271349430084, 0.011723799630999565, 0.0056944540701806545, 0.049169961363077164, 0.028415462002158165, 0.048320647329092026, 0.1753106266260147, 0.09203783422708511], [0.011123097501695156, 0.016143186017870903, 0.03923587501049042, 0.016816284507513046, 0.05433144420385361, 0.036057546734809875, 0.009735497646033764, 0.018259618431329727, 0.10486350208520889, 0.2065984308719635, 0.014990677125751972, 0.019538192078471184, 0.041061121970415115, 0.03878272697329521, 0.15423835813999176, 0.09221134334802628, 0.1260131448507309], [0.032573673874139786, 0.023952007293701172, 0.02631581947207451, 0.005479880608618259, 0.02787521481513977, 0.01638283208012581, 0.011507261544466019, 0.01969759911298752, 0.12929528951644897, 0.24302281439304352, 0.03511276841163635, 0.02504032291471958, 0.035602059215307236, 0.03311051428318024, 0.06870516389608383, 0.094892717897892, 0.17143408954143524], [0.0434468537569046, 0.019525857642292976, 0.06137891858816147, 0.005524791311472654, 0.009263289161026478, 0.013640828430652618, 0.009624834172427654, 0.00796736590564251, 0.10646946728229523, 0.0520395003259182, 0.027188673615455627, 0.08735772967338562, 0.23192018270492554, 0.041828349232673645, 0.0877753272652626, 0.05010579526424408, 0.14494216442108154], [0.023922940716147423, 0.02784579247236252, 0.07768482714891434, 0.00692017050459981, 0.029780805110931396, 0.04136477783322334, 0.02691960334777832, 0.007027658633887768, 0.07401113212108612, 0.049552347511053085, 0.020506612956523895, 0.07132012397050858, 0.21688765287399292, 0.10370450466871262, 0.060287248343229294, 0.06902183592319489, 0.09324201941490173], [0.06322718411684036, 0.008076313883066177, 0.011662594974040985, 0.0019380158046260476, 0.016504110768437386, 0.009529545903205872, 0.0029026938136667013, 0.009493683464825153, 0.18853189051151276, 0.11785640567541122, 0.03102685883641243, 0.0644078478217125, 0.1667085587978363, 0.012799013406038284, 0.018863562494516373, 0.009424970485270023, 0.26704680919647217], [0.019857307896018028, 0.0021450708154588938, 0.005012816749513149, 0.0019166666315868497, 0.0008360852370969951, 0.002760122297331691, 0.001324470853433013, 0.008984644897282124, 0.4432066082954407, 0.001812909496948123, 0.002007707953453064, 0.002680248348042369, 0.001971592428162694, 0.004784559365361929, 0.0035575549118220806, 0.003198385937139392, 0.4939432740211487]], [[0.027814464643597603, 0.00443950155749917, 0.001397183514200151, 0.0002083857252728194, 3.7494246498681605e-05, 2.5386454581166618e-05, 6.328503513941541e-05, 0.10604330897331238, 0.3530377149581909, 0.0015361392870545387, 0.000549941323697567, 0.0003939366724807769, 0.00014264264609664679, 0.0002210988022852689, 0.0005989435594528913, 0.005523563362658024, 0.4979669749736786], [0.017247455194592476, 0.0635785162448883, 0.0003088406811002642, 0.00918903760612011, 0.003995424136519432, 0.00029191700741648674, 0.0030890253838151693, 0.4550129473209381, 0.22965870797634125, 0.014839536510407925, 0.006614107172936201, 0.002536348532885313, 0.000974986469373107, 0.0009327701991423965, 0.0007736937841400504, 0.01048242673277855, 0.18047435581684113], [0.08090569823980331, 0.023964224383234978, 0.0034951448906213045, 0.004027833696454763, 0.00045044918078929186, 0.001151670003309846, 0.0013968851417303085, 0.35301870107650757, 0.2309027761220932, 0.00646870955824852, 0.010096047073602676, 0.0033250567503273487, 0.00207547377794981, 0.0032129844184964895, 0.007026944775134325, 0.03532453626394272, 0.23315687477588654], [0.03885795176029205, 0.030222663655877113, 0.0004996481584385037, 0.027570238336920738, 0.004759231582283974, 0.0008631166419945657, 0.0041338312439620495, 0.38542884588241577, 0.2475583255290985, 0.015973379835486412, 0.0023566600866615772, 0.002513837767764926, 0.00024826283333823085, 0.0009304859559051692, 0.0008309604017995298, 0.03279617428779602, 0.2044564187526703], [0.040752727538347244, 0.011801348067820072, 0.0002076939563266933, 0.0039470805786550045, 0.00039983310853131115, 0.0002750149287749082, 0.003061619820073247, 0.22722549736499786, 0.3695653975009918, 0.009168006479740143, 0.001248056534677744, 0.006091943476349115, 0.0007017600582912564, 0.00036267092218622565, 0.0005559092969633639, 0.006718838587403297, 0.3179166615009308], [0.05699879676103592, 0.012757841497659683, 0.0006037218845449388, 0.01760265603661537, 0.0016631146427243948, 0.0009390802006237209, 0.010467324405908585, 0.26976048946380615, 0.31057092547416687, 0.019301215186715126, 0.0016216158401221037, 0.008648935705423355, 0.0006879732245579362, 0.0003138946776743978, 0.000982358935289085, 0.023781467229127884, 0.26329851150512695], [0.048304278403520584, 0.056071698665618896, 0.0005962568102404475, 0.08050277084112167, 0.014024152420461178, 0.0012392849894240499, 0.07517539709806442, 0.21622328460216522, 0.21104072034358978, 0.020118094980716705, 0.0024908718187361956, 0.05518972501158714, 0.005171902012079954, 0.005346690304577351, 0.0053170290775597095, 0.029711619019508362, 0.1734762191772461], [0.02489214763045311, 0.025456756353378296, 0.002090893452987075, 0.006484267767518759, 0.0018003651639446616, 0.0015537601429969072, 0.008195525966584682, 0.5817081928253174, 0.16377954185009003, 0.009337611496448517, 0.005237726029008627, 0.0020785066299140453, 0.00268166814930737, 0.0040418654680252075, 0.0039846268482506275, 0.01747014932334423, 0.1392063945531845], [0.0938885509967804, 0.021537013351917267, 0.05297676846385002, 0.025926677510142326, 0.017236994579434395, 0.029053302481770515, 0.021106939762830734, 0.06421677023172379, 0.227000892162323, 0.0179744902998209, 0.018984228372573853, 0.028367090970277786, 0.040342655032873154, 0.03271690383553505, 0.0286756232380867, 0.05104014277458191, 0.22895486652851105], [0.04202964901924133, 0.00486003328114748, 0.00018054810061585158, 0.0016183494590222836, 7.086772529873997e-05, 6.904594920342788e-05, 0.00011169896606588736, 0.28318533301353455, 0.2987756133079529, 0.002084612613543868, 0.0005561957368627191, 0.0014683007029816508, 0.00016111831064336002, 0.0003762694541364908, 0.00042524022865109146, 0.00769030163064599, 0.3563368618488312], [0.046645548194646835, 0.10536626726388931, 0.0009154075523838401, 0.003514043753966689, 0.002029123017564416, 0.00010816318535944447, 0.0006653069285675883, 0.25556281208992004, 0.2609725296497345, 0.00598579877987504, 0.009157853201031685, 0.00217249384149909, 0.0008990955539047718, 0.0006298123043961823, 0.0006132062408141792, 0.007449880242347717, 0.2973126769065857], [0.06982585787773132, 0.05903950333595276, 0.004062683787196875, 0.05056963488459587, 0.002836712170392275, 0.0019816828425973654, 0.006462590768933296, 0.036660369485616684, 0.26363062858581543, 0.021319732069969177, 0.0076040467247366905, 0.1512872874736786, 0.0054129790514707565, 0.003192170290276408, 0.003939376212656498, 0.024088596925139427, 0.2880862057209015], [0.07513340562582016, 0.057168882340192795, 0.0011279579484835267, 0.04974115639925003, 0.008180253207683563, 0.0014728647656738758, 0.03360914811491966, 0.06232035532593727, 0.2810038924217224, 0.01645847037434578, 0.006773149129003286, 0.07859909534454346, 0.004702894017100334, 0.0042662410996854305, 0.0034575853496789932, 0.01548469066619873, 0.30049994587898254], [0.10604767501354218, 0.051608357578516006, 0.00986412912607193, 0.011918673291802406, 0.001169662456959486, 0.0010736732510849833, 0.009574701078236103, 0.07572280615568161, 0.22588378190994263, 0.014179660007357597, 0.025713196024298668, 0.018001293763518333, 0.013654589653015137, 0.04025905206799507, 0.0721614733338356, 0.05696943774819374, 0.2661978304386139], [0.10818764567375183, 0.05237952619791031, 0.016990026459097862, 0.02309701032936573, 0.0035215073730796576, 0.0037350791972130537, 0.0116533562541008, 0.06520050764083862, 0.26326754689216614, 0.011539528146386147, 0.02251790463924408, 0.01865800842642784, 0.011011118069291115, 0.016380244866013527, 0.0061696115881204605, 0.061180420219898224, 0.3045109510421753], [0.0737457424402237, 0.03129909932613373, 0.0011655950220301747, 0.010209014639258385, 0.0011789450654760003, 0.0006923654000274837, 0.002082490362226963, 0.2401101440191269, 0.282698392868042, 0.011561906896531582, 0.002791990991681814, 0.0034200961235910654, 0.0004263815062586218, 0.0023454977199435234, 0.003957652021199465, 0.026300577446818352, 0.3060140311717987], [0.103140689432621, 0.02037252113223076, 0.05589817836880684, 0.023949595168232918, 0.016545400023460388, 0.028015537187457085, 0.020148610696196556, 0.04926019534468651, 0.20932021737098694, 0.01920214109122753, 0.02016107551753521, 0.03421986103057861, 0.04606100171804428, 0.033302128314971924, 0.03154625743627548, 0.06052703782916069, 0.22832956910133362]], [[0.043620459735393524, 0.013688149861991405, 0.02132270112633705, 0.012352613732218742, 0.013686364516615868, 0.010911471210420132, 0.007792664226144552, 0.017630450427532196, 0.351685106754303, 0.02977720834314823, 0.005177556071430445, 0.009762643836438656, 0.0030171831604093313, 0.0018830967601388693, 0.004594854079186916, 0.022134874016046524, 0.43096256256103516], [0.14627765119075775, 0.05319944769144058, 0.056452568620443344, 0.03184007480740547, 0.012775368057191372, 0.0455734021961689, 0.01638052612543106, 0.05094487592577934, 0.24672669172286987, 0.012834310531616211, 0.019451498985290527, 0.004437034949660301, 0.007515087723731995, 0.0034487678203731775, 0.009209208190441132, 0.04539408162236214, 0.23753930628299713], [0.08936890959739685, 0.02511894516646862, 0.05725555121898651, 0.04902644455432892, 0.009916485287249088, 0.03211624547839165, 0.0037467998918145895, 0.07195933163166046, 0.2864566743373871, 0.008879095315933228, 0.013574939221143723, 0.017336087301373482, 0.0005076868110336363, 0.007889396511018276, 0.017351971939206123, 0.03887229412794113, 0.2706230878829956], [0.13999269902706146, 0.018951119855046272, 0.02788049355149269, 0.04758515581488609, 0.02192053012549877, 0.02668548934161663, 0.022239435464143753, 0.054796379059553146, 0.2883114814758301, 0.023426327854394913, 0.0016758095007389784, 0.006482351571321487, 0.004349341616034508, 0.0005028051673434675, 0.0020733249839395285, 0.06412021070718765, 0.24900710582733154], [0.08490943163633347, 0.002907664980739355, 0.003745162859559059, 0.013621503487229347, 0.05931868031620979, 0.025828076526522636, 0.015385743230581284, 0.020315563306212425, 0.37028348445892334, 0.010643023066222668, 0.00015088298823684454, 0.014465692453086376, 0.004985420498996973, 0.00021327633294276893, 0.0012386942980811, 0.015547817572951317, 0.3564397692680359], [0.10593833774328232, 0.012201346457004547, 0.04250318929553032, 0.026644155383110046, 0.05352950096130371, 0.04255330562591553, 0.013822122476994991, 0.03099014423787594, 0.32150712609291077, 0.010104465298354626, 0.0013246407033875585, 0.003202910767868161, 0.005515319295227528, 0.0004237081448081881, 0.0006285412819124758, 0.01919510029256344, 0.3099161684513092], [0.09868654608726501, 0.00935771781951189, 0.005823832005262375, 0.04432849958539009, 0.041400305926799774, 0.02160206437110901, 0.027517473325133324, 0.010422823019325733, 0.3399529755115509, 0.011831432580947876, 0.0005017879302613437, 0.015323443338274956, 0.02791789546608925, 0.0007802250911481678, 0.0022050116676837206, 0.01141795888543129, 0.33093005418777466], [0.11371080577373505, 0.02888372540473938, 0.04148754104971886, 0.027976270765066147, 0.01440836489200592, 0.05102725699543953, 0.01490216888487339, 0.03502277284860611, 0.3206639587879181, 0.009918124414980412, 0.009726091288030148, 0.006231365259736776, 0.0035987982992082834, 0.0019569459836930037, 0.006074149627238512, 0.010550345294177532, 0.3038613200187683], [0.07055298238992691, 0.02385905012488365, 0.032811734825372696, 0.01843986101448536, 0.010287412442266941, 0.020103586837649345, 0.015521356835961342, 0.028571221977472305, 0.30834975838661194, 0.016047365963459015, 0.01946934498846531, 0.0215065348893404, 0.01539499219506979, 0.01761496439576149, 0.026005560532212257, 0.024989552795886993, 0.33047476410865784], [0.15714114904403687, 0.009798171930015087, 0.02089603990316391, 0.01564641483128071, 0.005992190912365913, 0.12401308864355087, 0.006861633621156216, 0.024027202278375626, 0.24999937415122986, 0.05765307694673538, 0.001901008072309196, 0.007536872755736113, 0.0068319919519126415, 0.0029761791229248047, 0.005918752867728472, 0.05871230363845825, 0.24409452080726624], [0.09845472872257233, 0.07467485219240189, 0.05771476402878761, 0.03462075814604759, 0.00692892586812377, 0.02235138788819313, 0.011726402677595615, 0.03543424606323242, 0.2828075587749481, 0.007841966114938259, 0.026970697566866875, 0.0008492899942211807, 0.0020911977626383305, 0.0008162970771081746, 0.0027118290308862925, 0.05476989969611168, 0.27923518419265747], [0.09306015819311142, 0.007648893631994724, 0.006741845048964024, 0.04537758603692055, 0.02837543934583664, 0.052839599549770355, 0.03980449587106705, 0.019246159121394157, 0.21360930800437927, 0.0711301937699318, 0.001075957901775837, 0.09662097692489624, 0.06912503391504288, 0.004651287570595741, 0.006799530237913132, 0.019379233941435814, 0.22451423108577728], [0.10565908253192902, 0.0031379745341837406, 0.003920247312635183, 0.00873290840536356, 0.018205827102065086, 0.015193847008049488, 0.0060600885190069675, 0.013183402828872204, 0.12697561085224152, 0.037867020815610886, 0.0001516553747933358, 0.06356188654899597, 0.3673805594444275, 0.014160789549350739, 0.03530566766858101, 0.043977443128824234, 0.136525958776474], [0.07040902972221375, 0.002897935453802347, 0.0054587675258517265, 0.004833593033254147, 0.0002890506584662944, 0.00026882809470407665, 0.0007286523468792439, 0.03519909083843231, 0.15436917543411255, 0.014571050181984901, 0.00028408842626959085, 0.002398516982793808, 0.0037565536331385374, 0.2799164950847626, 0.1964329183101654, 0.06977500021457672, 0.15841124951839447], [0.12903918325901031, 0.0063051204197108746, 0.011549129150807858, 0.00694222841411829, 0.0018741313833743334, 0.003904499113559723, 0.0017282579792663455, 0.02414611168205738, 0.19700074195861816, 0.009427032433450222, 0.0019615599885582924, 0.005817327182739973, 0.0024116404820233583, 0.161089688539505, 0.18992066383361816, 0.04791185259819031, 0.19897080957889557], [0.12828588485717773, 0.04131525382399559, 0.0772983506321907, 0.11770670115947723, 0.015339246019721031, 0.10573671758174896, 0.03334542363882065, 0.05332576110959053, 0.1318526566028595, 0.0581563301384449, 0.01648130640387535, 0.006586473900824785, 0.006086861714720726, 0.0025096586905419827, 0.005156507715582848, 0.07773507386445999, 0.1230817586183548], [0.06652477383613586, 0.024116864427924156, 0.029861483722925186, 0.017497330904006958, 0.009013619273900986, 0.018054788932204247, 0.015801459550857544, 0.028136834502220154, 0.3079308569431305, 0.018371254205703735, 0.023927001282572746, 0.02474764734506607, 0.015799906104803085, 0.01705416664481163, 0.026087237522006035, 0.0261379387229681, 0.33093684911727905]], [[0.3714202344417572, 0.0008082580752670765, 0.004921107552945614, 0.0023124022409319878, 0.008429822511970997, 0.0027803501579910517, 0.0009329549502581358, 0.01018022932112217, 0.09070379287004471, 0.21554602682590485, 0.002360730664804578, 0.016385933384299278, 0.01642371155321598, 0.027331558987498283, 0.006902058608829975, 0.07383128255605698, 0.1487296223640442], [0.08675972372293472, 0.14067769050598145, 0.04812515527009964, 0.020088035613298416, 0.009617242030799389, 0.010450584813952446, 0.012499835342168808, 0.1748732030391693, 0.21748565137386322, 0.015658969059586525, 0.03144469112157822, 0.011955327354371548, 0.010668694041669369, 0.010807548649609089, 0.002061850856989622, 0.020632987841963768, 0.17619282007217407], [0.0725293755531311, 0.20923903584480286, 0.021027274429798126, 0.0720900148153305, 0.00836713332682848, 0.007222120650112629, 0.027240678668022156, 0.06309737265110016, 0.23385873436927795, 0.011242820881307125, 0.0373801663517952, 0.004680091980844736, 0.00672272639349103, 0.010328604839742184, 0.00721212662756443, 0.025662265717983246, 0.18209949135780334], [0.09022903442382812, 0.08880352228879929, 0.045566968619823456, 0.055039409548044205, 0.024568656459450722, 0.01271827332675457, 0.02863866277039051, 0.07884790748357773, 0.14280861616134644, 0.07419943064451218, 0.006527827586978674, 0.014664901420474052, 0.01115918718278408, 0.01978146657347679, 0.015055215917527676, 0.18148881196975708, 0.1099020391702652], [0.04574602097272873, 0.029647450894117355, 0.0055162603966891766, 0.11889509111642838, 0.007876790128648281, 0.005999610759317875, 0.04275389015674591, 0.04547538980841637, 0.33794835209846497, 0.05158661678433418, 0.003940480295568705, 0.012446975335478783, 0.005569761618971825, 0.0023762446362525225, 0.0019765596371144056, 0.02169104851782322, 0.2605535686016083], [0.10450854152441025, 0.11485996097326279, 0.01758735440671444, 0.08051685243844986, 0.012055641040205956, 0.005192741751670837, 0.030473876744508743, 0.05221586301922798, 0.2058601975440979, 0.05085112899541855, 0.013264506123960018, 0.016112718731164932, 0.029474318027496338, 0.01283396128565073, 0.019872985780239105, 0.06324204057455063, 0.17107723653316498], [0.02574041299521923, 0.02472294680774212, 0.0030025034211575985, 0.006111004389822483, 0.0012865137541666627, 0.0005421321257017553, 0.0017117687966674566, 0.051031507551670074, 0.4672141671180725, 0.010684902779757977, 0.001257814234122634, 0.0037198862992227077, 0.0013480400666594505, 0.0007414429564960301, 0.00024303501413669437, 0.006634723395109177, 0.3940071165561676], [0.058831315487623215, 0.0640510842204094, 0.038923509418964386, 0.08385838568210602, 0.05578083544969559, 0.036258772015571594, 0.024347303435206413, 0.14084777235984802, 0.21024928987026215, 0.05507132038474083, 0.007009382359683514, 0.007629613392055035, 0.006788703612983227, 0.008066006936132908, 0.0065047889947891235, 0.025228748098015785, 0.17055316269397736], [0.03716424107551575, 0.007060617674142122, 0.005000311881303787, 0.0021905212197452784, 0.0008960714330896735, 0.0014025680720806122, 0.0009846178581938148, 0.027591759338974953, 0.4532669186592102, 0.00410153204575181, 0.0014610773650929332, 0.0021570920944213867, 0.0011750677367672324, 0.0019096920732408762, 0.0030085877515375614, 0.0029159565456211567, 0.4477134943008423], [0.13584277033805847, 0.011695018969476223, 0.007748823147267103, 0.023095708340406418, 0.008667781949043274, 0.00662047928199172, 0.002217898378148675, 0.08604885637760162, 0.10866381973028183, 0.04227710887789726, 0.0028156449552625418, 0.008320897817611694, 0.02313046343624592, 0.030756695196032524, 0.041054826229810715, 0.32157638669013977, 0.1394667774438858], [0.22214257717132568, 0.397006630897522, 0.07799965888261795, 0.001591327483765781, 0.006439052522182465, 0.002981884405016899, 0.002046444686129689, 0.02057032100856304, 0.06509295105934143, 0.04864628240466118, 0.04549003764986992, 0.0032323230989277363, 0.0028355130925774574, 0.01112421415746212, 0.0009374177898280323, 0.01727222464978695, 0.07459127902984619], [0.03297732397913933, 0.007451741956174374, 0.0017498956294730306, 0.005414881277829409, 0.0005161985754966736, 0.0001763166073942557, 0.0017734040739014745, 0.011331173591315746, 0.38425061106681824, 0.011605875566601753, 0.003044986166059971, 0.031440362334251404, 0.007231414783746004, 0.01078992523252964, 0.010247860103845596, 0.014358142390847206, 0.46563994884490967], [0.06273996084928513, 0.0025111923459917307, 0.0016772485105320811, 0.0006500279414467514, 0.0005342610529623926, 0.0004249734338372946, 0.0008769634878262877, 0.0132936155423522, 0.38306766748428345, 0.009664541110396385, 0.0015835778322070837, 0.03590034320950508, 0.004795196000486612, 0.0029460359364748, 0.007573799695819616, 0.004010479431599379, 0.46775022149086], [0.08816497772932053, 0.009677629917860031, 0.015690773725509644, 0.004526781849563122, 0.00128223467618227, 0.0014866326237097383, 0.0031792079098522663, 0.034714143723249435, 0.2948341369628906, 0.01420605182647705, 0.009741378016769886, 0.051131006330251694, 0.011161072179675102, 0.03492269665002823, 0.055801570415496826, 0.02263258397579193, 0.3468469977378845], [0.07929017394781113, 0.008097521960735321, 0.02662476897239685, 0.004608360584825277, 0.0015260765794664621, 0.002503037452697754, 0.0043432870879769325, 0.023972520604729652, 0.34708476066589355, 0.013382026925683022, 0.006154095754027367, 0.03458422049880028, 0.01632077246904373, 0.022901706397533417, 0.020368412137031555, 0.012024697847664356, 0.37621352076530457], [0.09227947145700455, 0.022185293957591057, 0.013095438480377197, 0.11232389509677887, 0.011276493780314922, 0.00845241267234087, 0.00967930257320404, 0.0183134563267231, 0.10783451050519943, 0.08224445581436157, 0.04308618977665901, 0.11947230249643326, 0.028381820768117905, 0.053372155874967575, 0.013050739653408527, 0.13208967447280884, 0.1328624188899994], [0.04053887724876404, 0.005695616826415062, 0.004130534827709198, 0.001643113442696631, 0.0006864396273158491, 0.0010371835669502616, 0.0007898491458036005, 0.024652527645230293, 0.4360586702823639, 0.004592256620526314, 0.001775078009814024, 0.0027528100181370974, 0.0013917480828240514, 0.0020696839783340693, 0.0032685284968465567, 0.003168020863085985, 0.4657491147518158]], [[0.15393738448619843, 0.01451246626675129, 0.006779943127185106, 0.015984809026122093, 0.045987557619810104, 0.002752251224592328, 0.013063582591712475, 0.0060724602080881596, 0.12599165737628937, 0.257351815700531, 0.013315869495272636, 0.00793194305151701, 0.04584855958819389, 0.042014382779598236, 0.046460140496492386, 0.049255404621362686, 0.15273985266685486], [0.034783586859703064, 0.3728260397911072, 0.009114244021475315, 0.014268873259425163, 0.18110573291778564, 0.014605076983571053, 0.012200742959976196, 0.002340237610042095, 0.06465550512075424, 0.012748518027365208, 0.18899331986904144, 0.003487184876576066, 0.013940425589680672, 0.005007883068174124, 0.0038091898895800114, 0.0031012161634862423, 0.06301233172416687], [0.012023315764963627, 0.08860528469085693, 0.006199287716299295, 0.08796359598636627, 0.19533425569534302, 0.00969691015779972, 0.06508167833089828, 0.007929005660116673, 0.15826885402202606, 0.024426762014627457, 0.0939503088593483, 0.014294161461293697, 0.020569145679473877, 0.010646339505910873, 0.01675662212073803, 0.023205654695630074, 0.165048748254776], [0.04062730073928833, 0.027490030974149704, 0.00611188355833292, 0.1476425677537918, 0.5342229008674622, 0.011233964003622532, 0.02660192735493183, 0.004702100995928049, 0.06623287498950958, 0.005448800045996904, 0.009692905470728874, 0.020316582173109055, 0.017874833196401596, 0.005440391134470701, 0.004325408488512039, 0.016885949298739433, 0.05514964088797569], [0.011914280243217945, 0.015027663670480251, 0.006231158040463924, 0.0649731382727623, 0.43866267800331116, 0.004818764049559832, 0.02903776802122593, 0.0004989375593140721, 0.12065409868955612, 0.016685139387845993, 0.005857492797076702, 0.0959925651550293, 0.04475284740328789, 0.013124281540513039, 0.007821118459105492, 0.006436625029891729, 0.1175113320350647], [0.0030737738125026226, 0.020720308646559715, 0.002378624863922596, 0.0500325933098793, 0.6631656289100647, 0.0025604998227208853, 0.020892580971121788, 0.0023408210836350918, 0.05305691435933113, 0.02775217592716217, 0.018833626061677933, 0.03517640009522438, 0.018477145582437515, 0.005924113094806671, 0.011634751223027706, 0.010158419609069824, 0.0538216158747673], [0.03150756284594536, 0.018566293641924858, 0.00775852520018816, 0.09674064069986343, 0.2249096930027008, 0.00307087623514235, 0.01168697327375412, 0.0054312776774168015, 0.18694360554218292, 0.013946693390607834, 0.011964329518377781, 0.15759669244289398, 0.022865835577249527, 0.00760678993538022, 0.012257061898708344, 0.011732331477105618, 0.17541486024856567], [0.20167523622512817, 0.0012210005661472678, 0.009347226470708847, 0.0005275291041471064, 0.002158051822334528, 0.022112125530838966, 0.00027390773175284266, 0.7498869895935059, 0.003161301137879491, 0.0013955492759123445, 0.0005838156212121248, 6.107669469201937e-05, 0.0014142494183033705, 0.001286953454837203, 0.0014639680739492178, 0.0008529202896170318, 0.002578112529590726], [0.3392258882522583, 0.0003474419645499438, 0.017697548493742943, 0.00034864433109760284, 0.00013859718455933034, 0.011854150332510471, 9.607461834093556e-05, 0.5260440707206726, 0.04609724506735802, 0.0010699480772018433, 0.0005360493087209761, 0.00021951552480459213, 0.0007843192433938384, 0.002987075597047806, 0.003980542067438364, 0.003309902735054493, 0.045262932777404785], [0.14181214570999146, 0.002162131480872631, 0.0052556986920535564, 0.014523785561323166, 0.07398169487714767, 0.0019744380842894316, 0.007618424016982317, 0.01032099686563015, 0.22103512287139893, 0.06524402648210526, 0.007268873509019613, 0.02393418923020363, 0.07452501356601715, 0.03132077306509018, 0.026117483153939247, 0.02592371590435505, 0.2669815123081207], [0.04754903167486191, 0.055569376796483994, 0.001979036722332239, 0.0171392560005188, 0.19845329225063324, 0.0021873374935239553, 0.014013304375112057, 0.0008090201299637556, 0.13742053508758545, 0.2197365015745163, 0.04419075325131416, 0.007974792271852493, 0.06039087474346161, 0.012480903416872025, 0.011993058025836945, 0.00827112141996622, 0.15984182059764862], [0.015173112973570824, 0.0007959223003126681, 0.0003134974685963243, 0.006277746055275202, 0.07463832199573517, 0.0015087107894942164, 0.0013125193072482944, 0.0007432755082845688, 0.037144601345062256, 0.00182385987136513, 0.0015877608675509691, 0.7842802405357361, 0.008985773660242558, 0.0073459092527627945, 0.007578442804515362, 0.006970295216888189, 0.043520063161849976], [0.03597979247570038, 0.0019340186845511198, 0.0023743619676679373, 0.01472576055675745, 0.028376227244734764, 0.0008248861995525658, 0.0027777627110481262, 0.0034397589042782784, 0.30702465772628784, 0.01790892519056797, 0.003995273727923632, 0.10294529050588608, 0.04357773810625076, 0.01807667873799801, 0.03907795995473862, 0.02212400548160076, 0.3548368513584137], [0.014890733174979687, 0.020436201244592667, 0.0018043856834992766, 0.053086258471012115, 0.046342119574546814, 0.0017069646855816245, 0.020459666848182678, 0.0006417477852664888, 0.29479536414146423, 0.018787145614624023, 0.017174435779452324, 0.027899598702788353, 0.055454764515161514, 0.021909315139055252, 0.04137881472706795, 0.042646750807762146, 0.3205856382846832], [0.024464592337608337, 0.013698003254830837, 0.001383753726258874, 0.018582692369818687, 0.05824772268533707, 0.0020962106063961983, 0.008711977861821651, 0.002350544324144721, 0.33351701498031616, 0.02267107181251049, 0.009135224856436253, 0.01663285307586193, 0.04211343452334404, 0.009826556779444218, 0.016638237982988358, 0.014036930166184902, 0.4058931767940521], [0.09143819659948349, 0.025717345997691154, 0.006066449452191591, 0.059783030301332474, 0.06158558279275894, 0.004037764389067888, 0.023459356278181076, 0.010942014865577221, 0.13878405094146729, 0.06463637948036194, 0.025132765993475914, 0.021056028082966805, 0.06254459917545319, 0.03878892585635185, 0.08722954243421555, 0.13370639085769653, 0.14509160816669464], [0.36221015453338623, 0.0003070094098802656, 0.015256155282258987, 0.000311047479044646, 0.00012637523468583822, 0.011189128272235394, 8.444055129075423e-05, 0.5028384923934937, 0.04528357833623886, 0.0013326802290976048, 0.0006204037927091122, 0.0002672361151780933, 0.0009621839853934944, 0.0038990553002804518, 0.005101409275084734, 0.004158728290349245, 0.046051986515522]]], [[[0.18927259743213654, 0.010431046597659588, 0.12248282879590988, 0.044441480189561844, 0.1381075382232666, 0.18259955942630768, 0.0030434122309088707, 0.05265072360634804, 0.09715093672275543, 0.02211337722837925, 0.003408635500818491, 0.0007928932318463922, 0.0008180654840543866, 0.000782747520133853, 0.001088500488549471, 0.0325465127825737, 0.09826906025409698], [0.4576168954372406, 0.01333136297762394, 0.008512655273079872, 0.016376031562685966, 0.011698503978550434, 0.0038609658367931843, 0.002805528463795781, 0.03832927718758583, 0.16091957688331604, 0.04863307625055313, 0.026661721989512444, 0.004605063237249851, 0.004788256715983152, 0.0057881856337189674, 0.006243500858545303, 0.029359055683016777, 0.1604703664779663], [0.16821084916591644, 0.022766562178730965, 0.006992377806454897, 0.02717471495270729, 0.0031743382569402456, 0.0053077805787324905, 0.0024549546651542187, 0.10692514479160309, 0.24381498992443085, 0.020913150161504745, 0.039907149970531464, 0.008940433152019978, 0.009190364740788937, 0.009803677909076214, 0.06298371404409409, 0.01827634871006012, 0.24316340684890747], [0.29126155376434326, 0.010545321740210056, 0.019259599968791008, 0.01185180339962244, 0.009268714115023613, 0.01224701851606369, 0.002227277494966984, 0.04898959398269653, 0.23437990248203278, 0.05102422088384628, 0.04153236374258995, 0.0037946479860693216, 0.0010742247104644775, 0.00441014626994729, 0.005907652899622917, 0.0218978188931942, 0.23032817244529724], [0.33959028124809265, 0.004307648167014122, 0.007359442766755819, 0.006935570389032364, 0.002156347967684269, 0.006591904908418655, 0.0018830867484211922, 0.10025899112224579, 0.22600360214710236, 0.027474336326122284, 0.021335480734705925, 0.00456642359495163, 0.003787908237427473, 0.002601271728053689, 0.004669032525271177, 0.01605743169784546, 0.22442112863063812], [0.18910112977027893, 0.025402596220374107, 0.010071770288050175, 0.020809605717658997, 0.005389074329286814, 0.003959559835493565, 0.005513504613190889, 0.14725041389465332, 0.22948172688484192, 0.026723649352788925, 0.048146072775125504, 0.008850248530507088, 0.0074641769751906395, 0.013482389971613884, 0.011285046115517616, 0.021328939124941826, 0.22574016451835632], [0.18233320116996765, 0.010200539603829384, 0.009599958546459675, 0.01268526166677475, 0.0052976966835558414, 0.004495667759329081, 0.0024324727710336447, 0.06085687503218651, 0.31485700607299805, 0.0334327295422554, 0.01947925053536892, 0.004640441853553057, 0.0029081767424941063, 0.005523401312530041, 0.0034206847194582224, 0.019205650314688683, 0.30863088369369507], [0.6423034071922302, 0.005870582535862923, 0.01827112026512623, 0.021719224750995636, 0.041319411247968674, 0.01613541692495346, 0.0011786763789132237, 0.02372727170586586, 0.0688328742980957, 0.040762823075056076, 0.008561402559280396, 0.0004558821674436331, 0.001096932333894074, 0.0024400101974606514, 0.002004890004172921, 0.03827059268951416, 0.06704949587583542], [0.026845688000321388, 0.0043416875414550304, 0.011359176598489285, 0.003751387819647789, 0.002859462983906269, 0.0083563681691885, 0.0028680728282779455, 0.05268212780356407, 0.41785967350006104, 0.005655355751514435, 0.002984269754961133, 0.0027323425747454166, 0.002257852116599679, 0.0015629775589331985, 0.0030274735763669014, 0.011712834239006042, 0.4391431510448456], [0.2955872714519501, 0.03647439554333687, 0.03516606241464615, 0.05229403078556061, 0.04541053622961044, 0.038197215646505356, 0.01131829246878624, 0.04804878681898117, 0.2062891721725464, 0.0037680347450077534, 0.01011739019304514, 0.0020574380178004503, 0.0007088994607329369, 0.0012839497067034245, 0.0013907249085605145, 0.006108436733484268, 0.2057793289422989], [0.39648935198783875, 0.07168390601873398, 0.04072282090783119, 0.06400157511234283, 0.05617072433233261, 0.006503338925540447, 0.002926240209490061, 0.02677137218415737, 0.15194599330425262, 0.012600972317159176, 0.006800358649343252, 0.001529003493487835, 0.0008148597553372383, 0.0013255276717245579, 0.00173011957667768, 0.009520416148006916, 0.14846351742744446], [0.022976044565439224, 0.01136298943310976, 0.022971469908952713, 0.006778225302696228, 0.006943941116333008, 0.006844544783234596, 0.004990750923752785, 0.02489999495446682, 0.43060266971588135, 0.006087103392928839, 0.004580381792038679, 0.0027555355336517096, 0.001001044875010848, 0.0013686222955584526, 0.004359197802841663, 0.003597324714064598, 0.4378802180290222], [0.038779858499765396, 0.028326446190476418, 0.03964635357260704, 0.01673860475420952, 0.006986437831073999, 0.005188890267163515, 0.004770874977111816, 0.0352882444858551, 0.40507155656814575, 0.0027869499754160643, 0.00370847899466753, 0.001895884983241558, 0.0003599210758693516, 0.001882963697426021, 0.003024386242032051, 0.0034445396158844233, 0.4020995497703552], [0.030265744775533676, 0.033081598579883575, 0.016941331326961517, 0.0068838875740766525, 0.0014196623815223575, 0.0006329893949441612, 0.0014345220988616347, 0.008779450319707394, 0.434416264295578, 0.0019730671774595976, 0.003757168771699071, 0.001814311370253563, 0.0011841977247968316, 0.0007055472815409303, 0.002085272455587983, 0.0026086634024977684, 0.4520166516304016], [0.03977159038186073, 0.05664397031068802, 0.1319253295660019, 0.0070150080136954784, 0.0012772117042914033, 0.0012800352415069938, 0.0008774331072345376, 0.018531909212470055, 0.35738229751586914, 0.0012780457036569715, 0.005804226268082857, 0.0014257780276238918, 0.0008848903235048056, 0.0017981536220759153, 0.00331663666293025, 0.0024215076118707657, 0.3683658540248871], [0.35176828503608704, 0.016164936125278473, 0.01636815257370472, 0.05804995074868202, 0.039208583533763885, 0.03616916388273239, 0.006622049026191235, 0.049356747418642044, 0.1859654039144516, 0.01782640442252159, 0.017638415098190308, 0.0031769585330039263, 0.0014164091553539038, 0.0016962096560746431, 0.0017007789574563503, 0.011082235723733902, 0.18578936159610748], [0.02784043364226818, 0.004453934263437986, 0.011656972579658031, 0.003910311032086611, 0.00298675405792892, 0.008510884828865528, 0.0029135136865079403, 0.05326022952795029, 0.4165485203266144, 0.005664305295795202, 0.0030453111976385117, 0.0027993745170533657, 0.0022439612075686455, 0.0015768746379762888, 0.0030868847388774157, 0.011895126663148403, 0.4376065731048584]], [[0.0174055527895689, 0.0008041482651606202, 0.005415774881839752, 0.005430548917502165, 0.007022784557193518, 0.011655040085315704, 0.004077734425663948, 0.0031429261434823275, 0.20425714552402496, 0.2788724899291992, 0.012756521813571453, 0.0859110876917839, 0.05452902987599373, 0.0031133699230849743, 0.01023023296147585, 0.06431077420711517, 0.23106485605239868], [0.03756609559059143, 0.006432707887142897, 0.10978108644485474, 0.049905404448509216, 0.05798760801553726, 0.47537466883659363, 0.11170471459627151, 0.00948326289653778, 0.032491523772478104, 0.015356071293354034, 0.010734397917985916, 0.011889010667800903, 0.014589817263185978, 0.0035612403880804777, 0.00891591515392065, 0.014044330455362797, 0.030182091519236565], [0.14121782779693604, 0.025699904188513756, 0.10492323338985443, 0.06693383306264877, 0.062403906136751175, 0.15459267795085907, 0.013577568344771862, 0.03130374103784561, 0.12446609884500504, 0.04866069182753563, 0.007124198600649834, 0.026473749428987503, 0.03693388029932976, 0.006729588843882084, 0.017443014308810234, 0.019684500992298126, 0.1118316501379013], [0.018767958506941795, 0.007196382619440556, 0.12685152888298035, 0.0076694912277162075, 0.08767466992139816, 0.29656198620796204, 0.10521198809146881, 0.022935686632990837, 0.1381455808877945, 0.04354340210556984, 0.002713648835197091, 0.008753422647714615, 0.0028425983618944883, 0.00037776576937176287, 0.0005821179947815835, 0.0027566179633140564, 0.12741507589817047], [0.012743240222334862, 0.006293843500316143, 0.03677865490317345, 0.045493800193071365, 0.01767962984740734, 0.09241805225610733, 0.021722158417105675, 0.01710713841021061, 0.3714589774608612, 0.028512604534626007, 0.0009588159155100584, 0.00434930669143796, 0.0015234311576932669, 2.6777799575938843e-05, 0.0001277343835681677, 0.0012791450135409832, 0.34152671694755554], [0.009583891369402409, 0.011033361777663231, 0.04552806541323662, 0.05745559558272362, 0.03182575851678848, 0.020797912031412125, 0.018088068813085556, 0.05869559571146965, 0.36804962158203125, 0.026127096265554428, 0.0014398206258192658, 0.008589284494519234, 0.0009079747833311558, 0.00012609167606569827, 0.0003513997362460941, 0.0027684273663908243, 0.3386319577693939], [0.005887715145945549, 0.0017569750780239701, 0.03319530934095383, 0.03500526398420334, 0.047948453575372696, 0.11323526501655579, 0.019043460488319397, 0.012303123250603676, 0.35033300518989563, 0.03527313470840454, 0.00020056427456438541, 0.018717598170042038, 0.0024984527844935656, 9.920956654241309e-05, 0.00026256285491399467, 0.00157392886467278, 0.3226660192012787], [0.03928348422050476, 0.010921375826001167, 0.12296735495328903, 0.05201724171638489, 0.06250567734241486, 0.18986988067626953, 0.04174082726240158, 0.045394670218229294, 0.19477318227291107, 0.030004872009158134, 0.004432680085301399, 0.009594363160431385, 0.006146155763417482, 0.001040601753629744, 0.0028530617710202932, 0.009806586429476738, 0.17664802074432373], [0.008005880750715733, 0.0028870662208646536, 0.0030952156521379948, 0.0021079606376588345, 0.0017723506316542625, 0.004175329115241766, 0.0015474167885258794, 0.01918380707502365, 0.47835928201675415, 0.0031132446601986885, 0.002474838634952903, 0.0019334484823048115, 0.001392505131661892, 0.0008520058472640812, 0.0016742658335715532, 0.002512388164177537, 0.46491312980651855], [0.01473692711442709, 0.0007284142775461078, 0.0030098571442067623, 0.0050953528843820095, 0.034985266625881195, 0.0816836953163147, 0.01492468360811472, 0.007333504036068916, 0.3747553825378418, 0.014840122312307358, 0.0013085606042295694, 0.039486441761255264, 0.0026478422805666924, 0.0005709935212507844, 0.0010041547939181328, 0.01806369423866272, 0.38482511043548584], [0.03308449313044548, 0.005363058298826218, 0.07295247167348862, 0.02461327239871025, 0.07506665587425232, 0.10252267122268677, 0.026483017951250076, 0.002392088295891881, 0.02609376795589924, 0.1274683177471161, 0.01506918016821146, 0.23681846261024475, 0.05273933708667755, 0.029125070199370384, 0.0955008938908577, 0.04775208234786987, 0.026955148205161095], [0.02203182689845562, 0.0014520460972562432, 0.019051892682909966, 0.012256080284714699, 0.003868603380396962, 0.04836718738079071, 0.015189481899142265, 0.010207864455878735, 0.38660791516304016, 0.02431645430624485, 0.0017582984874024987, 0.010459288954734802, 0.03339405357837677, 0.007945789024233818, 0.0036622625775635242, 0.014522621408104897, 0.3849082887172699], [0.035299353301525116, 0.0019236616790294647, 0.01111103966832161, 0.010909855365753174, 0.007746526040136814, 0.09966705739498138, 0.020622698590159416, 0.008716409094631672, 0.12993064522743225, 0.04700079932808876, 0.001978689106181264, 0.22726276516914368, 0.04526595026254654, 0.04508696496486664, 0.14352884888648987, 0.03737841919064522, 0.12657026946544647], [0.019359715282917023, 0.0013941325014457107, 0.0012283913092687726, 0.005196215119212866, 0.00448927516117692, 0.002475927583873272, 0.0018629872938618064, 0.008321234956383705, 0.432026743888855, 0.04344695433974266, 0.0030722073279321194, 0.013888254761695862, 0.019411059096455574, 0.003676072461530566, 0.004668432287871838, 0.008724630810320377, 0.4267577826976776], [0.014869939535856247, 0.002363689010962844, 0.0009491543751209974, 0.002382102655246854, 0.0068388828076422215, 0.0032602129504084587, 0.00202627363614738, 0.007454190868884325, 0.4293583333492279, 0.032771483063697815, 0.0011923447018489242, 0.012779499404132366, 0.031087882816791534, 0.011963548138737679, 0.0036647554952651262, 0.01164622139185667, 0.42539161443710327], [0.023424305021762848, 0.004161475226283073, 0.053437765687704086, 0.0041063521057367325, 0.04978364706039429, 0.17035581171512604, 0.020288191735744476, 0.013689602725207806, 0.10812962055206299, 0.20115990936756134, 0.008319775573909283, 0.15714073181152344, 0.036948319524526596, 0.007364704739302397, 0.008542901836335659, 0.02468431554734707, 0.10846249014139175], [0.007420300506055355, 0.0025558052584528923, 0.0026494849007576704, 0.0017724173376336694, 0.0015149289974942803, 0.0034541103523224592, 0.0013401638716459274, 0.01764225959777832, 0.47893622517585754, 0.0031514132861047983, 0.0024319614749401808, 0.0019019941100850701, 0.0013559728395193815, 0.0007875753799453378, 0.0015469209756702185, 0.0023786742240190506, 0.4691597521305084]], [[0.05782919004559517, 0.004385638516396284, 0.007083403877913952, 0.004566224291920662, 0.00531862722709775, 0.0044893985614180565, 0.0014594682725146413, 0.0009645286481827497, 0.05730512738227844, 0.11441614478826523, 0.1662038266658783, 0.09033162891864777, 0.08029140532016754, 0.07159007340669632, 0.143330380320549, 0.12362919002771378, 0.06680573523044586], [0.08099692314863205, 0.04769745096564293, 0.08576824516057968, 0.08670607954263687, 0.08900582790374756, 0.12557728588581085, 0.046022556722164154, 0.019154828041791916, 0.19895946979522705, 0.0032632132060825825, 0.0036226403899490833, 0.0145344827324152, 0.0036901698913425207, 0.0025103853549808264, 0.006361159961670637, 0.007396908942610025, 0.17873236536979675], [0.11970715969800949, 0.03750305250287056, 0.05213442072272301, 0.08544757962226868, 0.06184489652514458, 0.048627447336912155, 0.04167449474334717, 0.013329438865184784, 0.25854194164276123, 0.006002457346767187, 0.011579615995287895, 0.009816060774028301, 0.0038635546807199717, 0.0017745092045515776, 0.006404664367437363, 0.01339015830308199, 0.22835849225521088], [0.058117642998695374, 0.06061365082859993, 0.28099334239959717, 0.046413976699113846, 0.09239953011274338, 0.16530562937259674, 0.02536696009337902, 0.005575292278081179, 0.11852320283651352, 0.0027486945036798716, 0.0048959581181406975, 0.005631591659039259, 0.0038956105709075928, 0.006491313222795725, 0.012672956101596355, 0.004923818167299032, 0.10543090850114822], [0.05503857508301735, 0.06344094127416611, 0.2773861587047577, 0.04516499117016792, 0.02277582325041294, 0.08959808200597763, 0.0358562171459198, 0.004877686966210604, 0.20451001822948456, 0.0029536979272961617, 0.003572909627109766, 0.0038970487657934427, 0.002326544839888811, 0.0029529291205108166, 0.007510020863264799, 0.0033560956362634897, 0.17478232085704803], [0.09637878090143204, 0.03728623688220978, 0.15503662824630737, 0.060819681733846664, 0.09520745277404785, 0.049415506422519684, 0.024210099130868912, 0.005593512672930956, 0.23579616844654083, 0.004846211988478899, 0.006965687498450279, 0.005287887994199991, 0.002022122498601675, 0.0026859708596020937, 0.00616758968681097, 0.006483485456556082, 0.20579688251018524], [0.03324959799647331, 0.07174746692180634, 0.11341799795627594, 0.04136042669415474, 0.026665732264518738, 0.10508661717176437, 0.017370909452438354, 0.010711060836911201, 0.28765395283699036, 0.0044604092836380005, 0.00794435665011406, 0.004573209676891565, 0.0019038983155041933, 0.0018391372868791223, 0.005927726160734892, 0.008415620774030685, 0.2576717734336853], [0.14671023190021515, 0.05794450268149376, 0.2770603597164154, 0.0366293340921402, 0.11070644855499268, 0.18868589401245117, 0.023222271353006363, 0.03035949543118477, 0.05243919417262077, 0.0033074491657316685, 0.00523516396060586, 0.0018959123408421874, 0.0032697939313948154, 0.0026890975423157215, 0.00789870135486126, 0.005680619273334742, 0.04626549035310745], [0.01790616102516651, 0.005568797700107098, 0.009265738539397717, 0.005200357176363468, 0.003629591315984726, 0.003195792669430375, 0.0022376838605850935, 0.08739952743053436, 0.4125373959541321, 0.006553320679813623, 0.008278394117951393, 0.0029775891453027725, 0.0016037097666412592, 0.0006179727497510612, 0.0021072537638247013, 0.011295883916318417, 0.41962477564811707], [0.029063992202281952, 0.0047799828462302685, 0.002818971872329712, 0.0034663034602999687, 0.001379151362925768, 0.0031255220528692007, 0.0012173574650660157, 0.0008229855448007584, 0.26591530442237854, 0.02438487485051155, 0.056342821568250656, 0.10847561061382294, 0.028441699221730232, 0.016355125233530998, 0.07422536611557007, 0.08082561194896698, 0.29835930466651917], [0.042893294245004654, 0.007728861179202795, 0.006665055640041828, 0.028495654463768005, 0.012110443785786629, 0.011421522125601768, 0.0060052587650716305, 0.0015260545769706368, 0.08183512091636658, 0.07674339413642883, 0.06005560979247093, 0.2807020843029022, 0.05430763587355614, 0.026237284764647484, 0.07856515794992447, 0.13309387862682343, 0.09161370247602463], [0.0271441787481308, 0.01470328588038683, 0.02288920059800148, 0.008312780410051346, 0.003094565123319626, 0.008655658923089504, 0.003037445480003953, 0.003105797106400132, 0.36296480894088745, 0.028500575572252274, 0.03270089998841286, 0.019113661721348763, 0.013181978836655617, 0.008487225510179996, 0.03910672664642334, 0.02765830047428608, 0.3773428797721863], [0.0169081911444664, 0.008299125358462334, 0.006622029468417168, 0.006994720082730055, 0.0016013933345675468, 0.0057757250033319, 0.0012783496640622616, 0.0015351736219599843, 0.3329033851623535, 0.039313022047281265, 0.043547533452510834, 0.09648048132658005, 0.006568219978362322, 0.008414344862103462, 0.02256062626838684, 0.04230526089668274, 0.35889238119125366], [0.023301851004362106, 0.002987081650644541, 0.004921111278235912, 0.0027839583344757557, 0.0005198765429668128, 0.0010687484173104167, 0.0013127231504768133, 0.003465663641691208, 0.4530599117279053, 0.005097770132124424, 0.009009651839733124, 0.0104592964053154, 0.005795119795948267, 0.0011189539218321443, 0.0024994288105517626, 0.005162742454558611, 0.4674362540245056], [0.04272375628352165, 0.002688746899366379, 0.005862189922481775, 0.0036073564551770687, 0.001545575330965221, 0.0015120545867830515, 0.0011338251642882824, 0.0015430613420903683, 0.41709572076797485, 0.009303785860538483, 0.014094715937972069, 0.02185630425810814, 0.009364325553178787, 0.004373994190245867, 0.004859173204749823, 0.019144974648952484, 0.43929022550582886], [0.136650949716568, 0.04313594102859497, 0.0302302036434412, 0.045243680477142334, 0.021728767082095146, 0.027933435514569283, 0.016294781118631363, 0.008790555410087109, 0.1291041225194931, 0.03983159363269806, 0.07692816108465195, 0.08455802500247955, 0.06422775983810425, 0.0204963106662035, 0.04479874670505524, 0.07839468121528625, 0.13165226578712463], [0.017510393634438515, 0.0051260823383927345, 0.007864479906857014, 0.004709544125944376, 0.003131305333226919, 0.0027298007626086473, 0.0020060879178345203, 0.07903189957141876, 0.41496965289115906, 0.007312878035008907, 0.009336182847619057, 0.0032839528284966946, 0.0017670848174020648, 0.0006519770831800997, 0.002209938131272793, 0.012409497983753681, 0.4259493052959442]], [[0.18975551426410675, 0.28629159927368164, 0.2007616013288498, 0.03271638602018356, 0.1258750855922699, 0.07203998416662216, 0.033064503222703934, 0.0237827580422163, 0.007570752874016762, 0.0018961087334901094, 0.0010089421411976218, 0.0010489406995475292, 0.0015997670125216246, 0.010862092487514019, 0.005378192290663719, 0.00022643024567514658, 0.00612123915925622], [0.12268954515457153, 0.29665079712867737, 0.20158503949642181, 0.13312841951847076, 0.06263607740402222, 0.029887787997722626, 0.09609538316726685, 0.04585343971848488, 0.002560230204835534, 0.0002643875777721405, 0.0021009996999055147, 0.0007170123280957341, 0.0005761652137152851, 0.0006644680979661644, 0.0006472732056863606, 0.0018781002145260572, 0.0020647963974624872], [0.09834279865026474, 0.0444544292986393, 0.294821172952652, 0.09888062626123428, 0.06472521275281906, 0.10571271181106567, 0.2087022364139557, 0.07377003878355026, 0.0036772144958376884, 0.00013159157242625952, 0.000514889950864017, 0.0007261170540004969, 0.0008958310354501009, 0.0005146915791556239, 0.0007717930129729211, 0.00042006841977126896, 0.0029386773239821196], [0.20053023099899292, 0.1995178759098053, 0.08394993841648102, 0.039753057062625885, 0.1017308458685875, 0.11949076503515244, 0.0353693850338459, 0.20238079130649567, 0.0037203552201390266, 0.0006184024969115853, 0.0009388746693730354, 0.0008904053829610348, 0.00036710224230773747, 0.002347832778468728, 0.001980625092983246, 0.003532483009621501, 0.0028810175135731697], [0.24109521508216858, 0.06905506551265717, 0.18498580157756805, 0.05258743464946747, 0.03267315402626991, 0.14198490977287292, 0.14849670231342316, 0.08981669694185257, 0.013725503347814083, 0.0014184127794578671, 0.0014362510992214084, 0.0026061460375785828, 0.002922236453741789, 0.0011852694442495704, 0.001491206930950284, 0.003344242461025715, 0.011175778694450855], [0.08579378575086594, 0.0538950189948082, 0.2694253623485565, 0.0670529305934906, 0.11867348104715347, 0.24133417010307312, 0.12008015066385269, 0.0385066457092762, 0.0015596980229020119, 4.522140079643577e-05, 0.00046963433851487935, 0.0004218488174956292, 0.00036008335882797837, 0.0004574651538860053, 0.00038533101906068623, 0.00027632914134301245, 0.0012629734119400382], [0.22816912829875946, 0.11075137555599213, 0.18351751565933228, 0.0603143647313118, 0.10824733227491379, 0.09826086461544037, 0.12833592295646667, 0.06259866803884506, 0.007371312938630581, 0.00022838734730612487, 0.0008989123743958771, 0.0012016290565952659, 0.0014324270887300372, 0.0007669661426916718, 0.0007746859337203205, 0.001289324020035565, 0.005841198842972517], [0.07802582532167435, 0.12547588348388672, 0.317453533411026, 0.06928490102291107, 0.16141177713871002, 0.0838765949010849, 0.09871988743543625, 0.03093957155942917, 0.005233691539615393, 0.001622765907086432, 0.004642815794795752, 0.002525020856410265, 0.0018603933276608586, 0.006656398065388203, 0.005491246934980154, 0.0022683138959109783, 0.004511373583227396], [0.06502555310726166, 7.126542186597362e-05, 0.020700860768556595, 0.0038387258537113667, 0.007685459218919277, 0.04076838865876198, 0.045081835240125656, 0.23812291026115417, 0.23148119449615479, 0.030816929414868355, 0.0006987892556935549, 0.0012259158538654447, 0.007048981264233589, 0.006049943156540394, 0.011828115209937096, 0.06896744668483734, 0.22058765590190887], [0.0008491140324622393, 0.0005212611868046224, 2.5599083528504707e-05, 0.0006783573189750314, 0.0001678473490756005, 9.31520844460465e-06, 0.00012656275066547096, 0.0001950762962223962, 0.09756988286972046, 0.26556169986724854, 0.28196024894714355, 0.04583445563912392, 0.09193549305200577, 0.013926739804446697, 0.029472045600414276, 0.0394529290497303, 0.1317133754491806], [0.0007177837542258203, 0.0008252694387920201, 0.00010313571692677215, 0.00040920067112892866, 0.00012154570868005976, 7.2462034950149246e-06, 0.00013535514881368726, 0.0004142120305914432, 0.05946400389075279, 0.32566601037979126, 0.20180393755435944, 0.030266478657722473, 0.08240750432014465, 0.038651201874017715, 0.05873998999595642, 0.11753781139850616, 0.08272930979728699], [0.0011240089079365134, 0.0004871144483331591, 2.9071303288219497e-05, 0.0002849288284778595, 0.00012817826063837856, 1.4750094123883173e-05, 0.00013278725964482874, 0.0005761770298704505, 0.09627234935760498, 0.1750241369009018, 0.23541271686553955, 0.031787142157554626, 0.15129630267620087, 0.019971439614892006, 0.03018873557448387, 0.12603642046451569, 0.131233811378479], [0.0005903768469579518, 0.0002158536808565259, 5.251400943961926e-05, 0.00026627047918736935, 6.02041109232232e-05, 1.2042210073559545e-05, 0.00013055406452622265, 0.00020666791533585638, 0.12170957773923874, 0.1829490214586258, 0.06646079570055008, 0.09687380492687225, 0.19819007813930511, 0.02818789705634117, 0.06094944477081299, 0.07096985727548599, 0.17217500507831573], [0.022938458248972893, 0.002456842688843608, 0.0009184491937048733, 0.004386201500892639, 0.0005793674499727786, 0.00019684068684000522, 0.0007839884492568672, 0.006411590147763491, 0.07629384845495224, 0.21221914887428284, 0.057410579174757004, 0.05714748799800873, 0.0629132017493248, 0.051415786147117615, 0.07971934974193573, 0.2734029293060303, 0.09080594033002853], [0.005536186043173075, 0.0004560565866995603, 0.0003791222407016903, 0.0013831116957589984, 0.0002366519474890083, 4.778942093253136e-05, 0.0003254574548918754, 0.00259949523024261, 0.14263667166233063, 0.11927974224090576, 0.08668158203363419, 0.04186565801501274, 0.08596266061067581, 0.10303383320569992, 0.09668242186307907, 0.12849071621894836, 0.18440285325050354], [0.004912117961794138, 0.001683229231275618, 0.00017866981215775013, 0.0006479433504864573, 0.0012386339949443936, 0.00021685042884200811, 0.0004188133461866528, 0.00474077183753252, 0.12158916890621185, 0.19421376287937164, 0.15419024229049683, 0.018400857225060463, 0.0642792135477066, 0.051191214472055435, 0.11149299889802933, 0.11672280728816986, 0.15388274192810059], [0.046810876578092575, 5.01327303936705e-05, 0.013078054413199425, 0.0025798736605793238, 0.005134680774062872, 0.024470267817378044, 0.02899685688316822, 0.1702173352241516, 0.2758837938308716, 0.044141292572021484, 0.000980180804617703, 0.0015524347545579076, 0.009378008544445038, 0.007391740567982197, 0.014959284104406834, 0.08218418806791306, 0.27219095826148987]], [[0.10778369009494781, 0.0232497937977314, 0.03110782615840435, 0.013731193728744984, 0.015079586766660213, 0.023576319217681885, 0.007709394674748182, 0.05609725043177605, 0.22407540678977966, 0.07210586220026016, 0.039677854627370834, 0.01689349114894867, 0.050142090767621994, 0.024312153458595276, 0.022013520821928978, 0.04806755110621452, 0.22437705099582672], [0.05314109846949577, 0.05907800793647766, 0.13679544627666473, 0.07387401163578033, 0.03131458908319473, 0.07529086619615555, 0.0689331516623497, 0.06880965083837509, 0.14657367765903473, 0.02871098183095455, 0.016123805195093155, 0.013743139803409576, 0.02172785997390747, 0.011980073526501656, 0.007454304024577141, 0.0484759546816349, 0.1379733830690384], [0.07213469594717026, 0.08035585284233093, 0.004166534636169672, 0.09203176200389862, 0.11806591600179672, 0.0749470666050911, 0.1191972866654396, 0.08482915908098221, 0.13209310173988342, 0.0020194791723042727, 0.01606658659875393, 0.00722781615331769, 0.02062395215034485, 0.0070595694705843925, 0.04329958185553551, 0.004986653104424477, 0.12089500576257706], [0.07898479700088501, 0.0479356087744236, 0.12577833235263824, 0.04626356437802315, 0.009973617270588875, 0.027034349739551544, 0.008731257170438766, 0.09568220376968384, 0.20882639288902283, 0.04436706006526947, 0.00855690985918045, 0.00463868910446763, 0.005511523690074682, 0.011984333395957947, 0.004928638692945242, 0.07905110716819763, 0.1917516142129898], [0.10369876027107239, 0.018532918766140938, 0.1902623176574707, 0.011236610822379589, 0.002089608693495393, 0.06078362837433815, 0.021155675873160362, 0.10914039611816406, 0.1801401972770691, 0.12007852643728256, 0.0021061464212834835, 0.007819721475243568, 0.003933988977223635, 0.0005202434258535504, 0.00022912738495506346, 0.005621068179607391, 0.16265098750591278], [0.07788316905498505, 0.05426955595612526, 0.12573187053203583, 0.019936494529247284, 0.03333894908428192, 0.004992308560758829, 0.05528872832655907, 0.08208587765693665, 0.1532691866159439, 0.02836434170603752, 0.00813301745802164, 0.048644959926605225, 0.050609294325113297, 0.08343028277158737, 0.027831746265292168, 0.006678480189293623, 0.13951171934604645], [0.06192693114280701, 0.03334799036383629, 0.17852658033370972, 0.012649052776396275, 0.056498933583498, 0.29842373728752136, 0.040331047028303146, 0.047012243419885635, 0.08710748702287674, 0.0652073547244072, 0.002463636454194784, 0.012166906148195267, 0.003558964701369405, 0.004711803514510393, 0.0029960169922560453, 0.013195016421377659, 0.07987632602453232], [0.06327886134386063, 0.0836036205291748, 0.10124838352203369, 0.05750996991991997, 0.09481742233037949, 0.08069600909948349, 0.05007690191268921, 0.09224551171064377, 0.15248338878154755, 0.023098070174455643, 0.021547719836235046, 0.011252366006374359, 0.007711201440542936, 0.004103386774659157, 0.0045389411970973015, 0.013189360499382019, 0.13859893381595612], [0.08977363258600235, 0.044923633337020874, 0.05061790347099304, 0.034864556044340134, 0.025146840140223503, 0.03320112079381943, 0.026888906955718994, 0.08315443247556686, 0.16213496029376984, 0.03551569953560829, 0.050996165722608566, 0.025959772989153862, 0.0315140075981617, 0.03536566346883774, 0.044262442737817764, 0.06387795507907867, 0.16180233657360077], [0.15068624913692474, 0.020011581480503082, 0.0038030114956200123, 0.03688008710741997, 0.07749611884355545, 0.031045880168676376, 0.044385720044374466, 0.02682865969836712, 0.15471012890338898, 0.0838741883635521, 0.049962118268013, 0.044467613101005554, 0.009598050266504288, 0.008946756832301617, 0.01274880301207304, 0.07569101452827454, 0.1688639223575592], [0.04740447923541069, 0.021780475974082947, 0.012858090922236443, 0.011991053819656372, 0.004323021043092012, 0.01407338585704565, 0.02045566774904728, 0.04039063677191734, 0.14332930743694305, 0.1817731112241745, 0.007597863208502531, 0.033480092883110046, 0.06982488930225372, 0.05618320405483246, 0.060275815427303314, 0.12317872047424316, 0.1510801762342453], [0.08884214609861374, 0.010657667182385921, 0.017407242208719254, 0.0036999410949647427, 0.014290076680481434, 0.05406496673822403, 0.00889695156365633, 0.023020818829536438, 0.12325640767812729, 0.19782155752182007, 0.062119461596012115, 0.024056755006313324, 0.0280571598559618, 0.037816375494003296, 0.04873092845082283, 0.12775467336177826, 0.12950685620307922], [0.08212973922491074, 0.0251918938010931, 0.0556969977915287, 0.005964886862784624, 0.013916494324803352, 0.09266016632318497, 0.011911566369235516, 0.04747019335627556, 0.17447666823863983, 0.07294398546218872, 0.08815183490514755, 0.0590052492916584, 0.011987412348389626, 0.008345074020326138, 0.024434493854641914, 0.044371023774147034, 0.1813422292470932], [0.06182695925235748, 0.032713308930397034, 0.07611880451440811, 0.028053686022758484, 0.0016748742200434208, 0.06534861773252487, 0.01005744282156229, 0.03510230779647827, 0.1235855296254158, 0.03601160645484924, 0.1817115843296051, 0.023733709007501602, 0.01251690462231636, 0.000523271388374269, 0.003131855046376586, 0.1747126579284668, 0.13317681849002838], [0.07456973195075989, 0.010289469733834267, 0.08816496282815933, 0.014516211114823818, 0.0009223271044902503, 0.02099846862256527, 0.00566053343936801, 0.024335535243153572, 0.12653867900371552, 0.04160265251994133, 0.17082461714744568, 0.0653349757194519, 0.09466809779405594, 0.015321015380322933, 0.015078390017151833, 0.09486056864261627, 0.13631370663642883], [0.05467785522341728, 0.016035791486501694, 0.012110044248402119, 0.033462610095739365, 0.0113012520596385, 0.01578878052532673, 0.015721647068858147, 0.02180643379688263, 0.12207046896219254, 0.09398935735225677, 0.08839790523052216, 0.10018263012170792, 0.01845436729490757, 0.0587228462100029, 0.043921519070863724, 0.16277523338794708, 0.13058136403560638], [0.0883234366774559, 0.04295876994729042, 0.046672359108924866, 0.03217342123389244, 0.02339833416044712, 0.03022189438343048, 0.024998480454087257, 0.07673180103302002, 0.15765050053596497, 0.040973346680402756, 0.056740548461675644, 0.028102349489927292, 0.03387371078133583, 0.03862035647034645, 0.048412393778562546, 0.07143495231866837, 0.15871340036392212]], [[0.07757756114006042, 0.024966368451714516, 0.006401863880455494, 0.022908572107553482, 0.013603247702121735, 0.018894625827670097, 0.014709298498928547, 0.02499750629067421, 0.3588676154613495, 0.015176106244325638, 0.01228202972561121, 0.008453314192593098, 0.00876674521714449, 0.008219013921916485, 0.008951781317591667, 0.02460065297782421, 0.3506237268447876], [0.1237139105796814, 0.053817301988601685, 0.11610157042741776, 0.012742266058921814, 0.0050428323447704315, 0.010134079493582249, 0.005440496373921633, 0.05104897916316986, 0.22674532234668732, 0.012964395806193352, 0.10031000524759293, 0.004582129884511232, 0.004866207949817181, 0.010016756132245064, 0.009577146731317043, 0.0319075845181942, 0.22098898887634277], [0.05845242366194725, 0.06696770340204239, 0.12722915410995483, 0.042245831340551376, 0.01069670170545578, 0.037848278880119324, 0.00223350222222507, 0.041564010083675385, 0.2396683394908905, 0.03153937682509422, 0.03421894088387489, 0.011553503572940826, 0.004738937132060528, 0.0008204185287468135, 0.004141980782151222, 0.0346074253320694, 0.25147339701652527], [0.056034788489341736, 0.06195364147424698, 0.06846596300601959, 0.03857123479247093, 0.010405567474663258, 0.01627117395401001, 0.013158216141164303, 0.02642313577234745, 0.2858181893825531, 0.008688432164490223, 0.05229492858052254, 0.011172953993082047, 0.00723689328879118, 0.0049502053298056126, 0.00789103377610445, 0.047324102371931076, 0.28333956003189087], [0.03916003555059433, 0.10130125284194946, 0.09455464780330658, 0.04280954599380493, 0.00639269407838583, 0.05185806378722191, 0.008054295554757118, 0.04308240860700607, 0.22189150750637054, 0.013388561084866524, 0.06549188494682312, 0.012005145661532879, 0.026264170184731483, 0.003614023793488741, 0.009567645378410816, 0.03260597214102745, 0.22795799374580383], [0.033841926604509354, 0.0349695049226284, 0.043661605566740036, 0.026684299111366272, 0.02233916148543358, 0.07484976947307587, 0.009794989600777626, 0.012129310518503189, 0.09662404656410217, 0.1375279724597931, 0.06735406816005707, 0.1248278096318245, 0.16557638347148895, 0.0012647965922951698, 0.014842272736132145, 0.03692548722028732, 0.09678657352924347], [0.051326751708984375, 0.03745132312178612, 0.030030163004994392, 0.03308398649096489, 0.0028164966497570276, 0.014546118676662445, 0.007192975375801325, 0.03424512594938278, 0.28664684295654297, 0.019697923213243484, 0.06117156893014908, 0.03609964996576309, 0.025255894288420677, 0.018068278208374977, 0.020205562934279442, 0.03162519633769989, 0.29053616523742676], [0.17185695469379425, 0.028961503878235817, 0.030272506177425385, 0.055181682109832764, 0.012850516475737095, 0.008090578950941563, 0.0055708191357553005, 0.02476285584270954, 0.24465125799179077, 0.04835999757051468, 0.03369203209877014, 0.013921026140451431, 0.008021002635359764, 0.005248946603387594, 0.010638822801411152, 0.05581967160105705, 0.242099791765213], [0.0477965883910656, 0.008591419085860252, 0.012560238130390644, 0.007843993604183197, 0.0036647343076765537, 0.009707380086183548, 0.004676171112805605, 0.017591839656233788, 0.4134973883628845, 0.014071790501475334, 0.006980078294873238, 0.008953343145549297, 0.008050679229199886, 0.004276555962860584, 0.005813945084810257, 0.010995090939104557, 0.41492876410484314], [0.04742226377129555, 0.030504191294312477, 0.022241177037358284, 0.04673941433429718, 0.019967779517173767, 0.008044990710914135, 0.012378828600049019, 0.02360449731349945, 0.19647781550884247, 0.04152660816907883, 0.026114612817764282, 0.04644668102264404, 0.11197292804718018, 0.03548828139901161, 0.02690413035452366, 0.10786480456590652, 0.19630101323127747], [0.08561167865991592, 0.26710274815559387, 0.15554147958755493, 0.006184375379234552, 0.0011585064930841327, 0.0028048576787114143, 0.0010972751770168543, 0.026849156245589256, 0.12017999589443207, 0.002236614702269435, 0.18039251863956451, 0.0007021683268249035, 0.0005380944930948317, 0.0013695275411009789, 0.0014217051211744547, 0.02658555656671524, 0.12022377550601959], [0.0411747582256794, 0.01335297804325819, 0.012766428291797638, 0.009585987776517868, 0.0031099379993975163, 0.0018097193678840995, 0.008015465922653675, 0.02464604191482067, 0.29103532433509827, 0.0032987233716994524, 0.005305584520101547, 0.03740245848894119, 0.15607498586177826, 0.0388929508626461, 0.043887872248888016, 0.007889741100370884, 0.30175110697746277], [0.054878272116184235, 0.016822323203086853, 0.009820486418902874, 0.00941557064652443, 0.009204561822116375, 0.003976711072027683, 0.00810614600777626, 0.02501188963651657, 0.2995590567588806, 0.003688205499202013, 0.00458797812461853, 0.013329659588634968, 0.09101948887109756, 0.12248995155096054, 0.021962657570838928, 0.01028417982161045, 0.2958429455757141], [0.018716024234890938, 0.009983398020267487, 0.011888500303030014, 0.0010097380727529526, 0.0002665521460585296, 6.889200449222699e-05, 0.00045605850755237043, 0.016255822032690048, 0.18820303678512573, 0.0025607829447835684, 0.0010256258537992835, 0.0012142137857154012, 0.0905708447098732, 0.2220073789358139, 0.24546314775943756, 0.0022201782558113337, 0.18808981776237488], [0.014399190433323383, 0.010208037681877613, 0.013844252564013004, 0.0006443368620239198, 9.486025373917073e-05, 3.585176818887703e-05, 0.0002541632275097072, 0.013982491567730904, 0.21761368215084076, 0.002050001872703433, 0.00045076539390720427, 0.0005245659849606454, 0.03005126491189003, 0.3267979025840759, 0.15003377199172974, 0.001569760381244123, 0.21744513511657715], [0.09393034130334854, 0.04503176733851433, 0.040884219110012054, 0.04297155514359474, 0.009656489826738834, 0.005742409732192755, 0.006128746550530195, 0.027677081525325775, 0.16846899688243866, 0.03622182458639145, 0.07857640832662582, 0.014126379042863846, 0.07771772146224976, 0.03430793434381485, 0.08873587846755981, 0.057713620364665985, 0.17210865020751953], [0.04696759581565857, 0.008279483765363693, 0.012381640262901783, 0.0076857213862240314, 0.0036634134594351053, 0.0095828827470541, 0.0046584513038396835, 0.016844969242811203, 0.4153643548488617, 0.013680282048881054, 0.006776736583560705, 0.008982094004750252, 0.00785152055323124, 0.0042439838871359825, 0.005718466360121965, 0.01076946035027504, 0.4165489673614502]], [[0.0047764405608177185, 0.014465292915701866, 0.050096191465854645, 0.05621565878391266, 0.029116248711943626, 0.09146157652139664, 0.012836563400924206, 0.5525392293930054, 0.0017905436689034104, 0.00014533997455146164, 0.00040994182927533984, 7.546547567471862e-05, 0.00042966019827872515, 0.0004822840273845941, 0.0005600082804448903, 0.18318414688110352, 0.0014153847005218267], [0.16168992221355438, 0.10332753509283066, 0.05339629203081131, 0.039670344442129135, 0.012893757782876492, 0.004433847963809967, 0.007579755503684282, 0.039914097636938095, 0.2549296021461487, 0.027747051790356636, 0.025680754333734512, 0.005039595067501068, 0.007310409098863602, 0.005721874535083771, 0.005866417661309242, 0.006263407412916422, 0.23853540420532227], [0.017180610448122025, 0.025060182437300682, 0.011769026517868042, 0.010031694546341896, 0.004610319156199694, 0.0018299936782568693, 0.0023333444260060787, 0.03782020881772041, 0.4099421799182892, 0.01139602530747652, 0.04021399840712547, 0.004097555298358202, 0.00659250607714057, 0.009781518951058388, 0.004275632556527853, 0.005514323245733976, 0.39755094051361084], [0.24205714464187622, 0.07515685260295868, 0.03261974826455116, 0.04049297422170639, 0.005498139653354883, 0.003589578904211521, 0.0038170493207871914, 0.02172235958278179, 0.2570441663265228, 0.010600860230624676, 0.03823235630989075, 0.002528026234358549, 0.002313795732334256, 0.006031970959156752, 0.004720599856227636, 0.011787116527557373, 0.24178721010684967], [0.08660157769918442, 0.0267828069627285, 0.015222783200442791, 0.006579977925866842, 0.012355274520814419, 0.0026335930451750755, 0.007058777380734682, 0.013183685019612312, 0.38458919525146484, 0.009724101983010769, 0.026512259617447853, 0.004221614450216293, 0.00862379465252161, 0.005914922337979078, 0.0035414511803537607, 0.004453083034604788, 0.38200119137763977], [0.0565742589533329, 0.022741135209798813, 0.01431846059858799, 0.006974519230425358, 0.01511232927441597, 0.013416020199656487, 0.01251869648694992, 0.04558227211236954, 0.3821878433227539, 0.011998691596090794, 0.00927774142473936, 0.0034956405870616436, 0.009231055155396461, 0.015898576006293297, 0.008460788987576962, 0.0031572398729622364, 0.36905476450920105], [0.145956888794899, 0.024433912709355354, 0.01110045239329338, 0.005589690059423447, 0.00852137804031372, 0.003935094457119703, 0.010604383423924446, 0.028988389298319817, 0.35665518045425415, 0.008224984630942345, 0.010671083815395832, 0.0015613113064318895, 0.015236658044159412, 0.011912493035197258, 0.007133821025490761, 0.010544104501605034, 0.33893024921417236], [0.20003503561019897, 0.03513435274362564, 0.01350048091262579, 0.01155111938714981, 0.005778894294053316, 0.006176818162202835, 0.007779107894748449, 0.07323987036943436, 0.3146964907646179, 0.004583782982081175, 0.01674829237163067, 0.00132132472936064, 0.0052017453126609325, 0.0061356485821306705, 0.003765933448448777, 0.006274424958974123, 0.2880767285823822], [0.01134582795202732, 0.0027886468451470137, 0.004393760114908218, 0.0012013252126052976, 0.0007892410503700376, 0.0006909978692419827, 0.00010258705879095942, 0.01349521055817604, 0.46758270263671875, 0.00317165139131248, 0.003815830685198307, 0.0014670805539935827, 0.0012084972113370895, 0.0014251519460231066, 0.002050597919151187, 0.0063584051094949245, 0.47811266779899597], [0.10397167503833771, 0.01670692302286625, 0.0042348396964371204, 0.002936998615041375, 0.0022281575947999954, 0.001219852943904698, 0.0021744510158896446, 0.02554144524037838, 0.30206283926963806, 0.08706522732973099, 0.005857251584529877, 0.007412291131913662, 0.06019121780991554, 0.03752140700817108, 0.0341554693877697, 0.00837808009237051, 0.2983419597148895], [0.11106002330780029, 0.05798957869410515, 0.009175832383334637, 0.006006509065628052, 0.0009313564514741302, 0.000524171395227313, 0.000814763130620122, 0.01001639012247324, 0.283229798078537, 0.03666605427861214, 0.06804057955741882, 0.00826227106153965, 0.0231171865016222, 0.020987797528505325, 0.024092931300401688, 0.054810263216495514, 0.2842743992805481], [0.21004676818847656, 0.0076301442459225655, 0.0025925468653440475, 0.0025854678824543953, 0.007142297923564911, 0.0010936055332422256, 0.003085079835727811, 0.007417768705636263, 0.22301018238067627, 0.09762229025363922, 0.01705210469663143, 0.016025260090827942, 0.07783763855695724, 0.06277673691511154, 0.028893250972032547, 0.011506946757435799, 0.22368192672729492], [0.16493965685367584, 0.016754286363720894, 0.010389899834990501, 0.005919300951063633, 0.004618823062628508, 0.0022923992946743965, 0.004112088121473789, 0.014372020028531551, 0.3123747706413269, 0.015304689295589924, 0.045718900859355927, 0.008876322768628597, 0.01618959754705429, 0.013929045759141445, 0.010676085948944092, 0.031918950378894806, 0.3216131329536438], [0.17038936913013458, 0.010884520597755909, 0.015259306877851486, 0.013368110172450542, 0.007837566547095776, 0.0039718723855912685, 0.010968479327857494, 0.010812520980834961, 0.20886962115764618, 0.027151932939887047, 0.11788447201251984, 0.01176005881279707, 0.03727806359529495, 0.04098964482545853, 0.04142532870173454, 0.05369703471660614, 0.21745195984840393], [0.13964858651161194, 0.006773388013243675, 0.0038053616881370544, 0.006036474369466305, 0.004589551594108343, 0.001276884926483035, 0.0057591600343585014, 0.01186785101890564, 0.29027774930000305, 0.014422743581235409, 0.0760827511548996, 0.01532750390470028, 0.03502415493130684, 0.0332510881125927, 0.021763911470770836, 0.031127475202083588, 0.3029654622077942], [0.2634395360946655, 0.01273544691503048, 0.005775334779173136, 0.013247941620647907, 0.0012775955256074667, 0.000984705751761794, 0.001921196817420423, 0.0161697156727314, 0.24089935421943665, 0.010158421471714973, 0.04824785143136978, 0.006508584134280682, 0.020357416942715645, 0.02361544407904148, 0.01762244664132595, 0.07775110751390457, 0.23928780853748322], [0.011516982689499855, 0.0026077942457050085, 0.003780677216127515, 0.0010428187670186162, 0.0006774596986360848, 0.0005879882955923676, 9.023277380038053e-05, 0.011555921286344528, 0.4670446217060089, 0.003327441867440939, 0.0041311620734632015, 0.0015518590807914734, 0.001283178455196321, 0.0014886875869706273, 0.0021921079605817795, 0.006300783716142178, 0.4808203876018524]], [[0.1623072475194931, 0.0012633251026272774, 6.962366751395166e-05, 0.00026393134612590075, 0.00012457440607249737, 0.0002578133135102689, 0.00023851668811403215, 0.013526447117328644, 0.25617942214012146, 0.139570415019989, 0.048960089683532715, 0.010567664168775082, 0.029556963592767715, 0.0061595244333148, 0.02951035648584366, 0.03424634039402008, 0.26719775795936584], [0.3390536904335022, 0.0889921486377716, 0.0001930597791215405, 7.445942901540548e-05, 9.19035210245056e-06, 1.4767938409931958e-05, 1.3521007531380747e-05, 0.014010481536388397, 0.16752415895462036, 0.0010525814723223448, 0.21573597192764282, 5.22137779626064e-05, 0.0007142201066017151, 0.00036420393735170364, 0.0010480753844603896, 0.0008295660954900086, 0.1703176498413086], [0.022874783724546432, 5.438602966023609e-05, 0.0037000118754804134, 7.93799881648738e-06, 3.052967940675444e-07, 1.4427190535570844e-06, 6.431093879655236e-07, 0.0016408545197919011, 0.3248033821582794, 0.07067390531301498, 0.17147256433963776, 0.00010828213999047875, 0.0022368491627275944, 0.007475680205971003, 0.01340938825160265, 0.015593297779560089, 0.36594629287719727], [0.07694058865308762, 0.0005037760711275041, 1.0563108844507951e-05, 0.21397846937179565, 0.0007803369080647826, 0.00026854363386519253, 0.0028669836465269327, 0.007937896996736526, 0.22375938296318054, 0.015676237642765045, 0.026943713426589966, 0.023994797840714455, 0.009724375791847706, 0.0024407189339399338, 0.003673345549032092, 0.14758728444576263, 0.24291294813156128], [0.0968499556183815, 4.014170917798765e-05, 1.4629287079515052e-06, 0.0002983074518851936, 0.10172491520643234, 0.0011016654316335917, 0.0001373549021081999, 0.002587493509054184, 0.3251079022884369, 0.004826262127608061, 0.0038076189812272787, 0.03343833610415459, 0.07753121852874756, 0.0012479076394811273, 0.0014325695810839534, 0.0008384762331843376, 0.34902843832969666], [0.058163005858659744, 8.544711818103679e-06, 1.0932297982435557e-06, 7.041184289846569e-05, 0.00019960934878326952, 0.05167846381664276, 2.9497832656488754e-05, 0.0013207800220698118, 0.338161438703537, 0.08370334655046463, 0.0014820311916992068, 0.018722429871559143, 0.07246594876050949, 0.0005756586324423552, 0.001453503267839551, 0.00210462580434978, 0.3698594570159912], [0.07716254144906998, 4.816689761355519e-05, 8.286838237836491e-07, 0.0006725772982463241, 7.168556476244703e-05, 9.905304614221677e-05, 0.12262681126594543, 0.004233615472912788, 0.31639158725738525, 0.03923267871141434, 0.003790271934121847, 0.06171872466802597, 0.021258851513266563, 0.0006978320889174938, 0.0019097381737083197, 0.012133904732763767, 0.3379511833190918], [0.1980915069580078, 0.0031299081165343523, 0.0031548039987683296, 0.001146852970123291, 0.004612255375832319, 0.005859014578163624, 0.001204004161991179, 0.053975775837898254, 0.2188843935728073, 0.13828830420970917, 0.04127419367432594, 0.0035133615601807833, 0.02101023495197296, 0.006222013849765062, 0.03766386955976486, 0.04638373479247093, 0.21558576822280884], [0.2045547366142273, 0.017288926988840103, 0.005911713931709528, 0.004890249576419592, 0.0024099410511553288, 0.0055905357003211975, 0.004014029633253813, 0.06379641592502594, 0.239961639046669, 0.07319413870573044, 0.02846449799835682, 0.009935220703482628, 0.020917033776640892, 0.010961675085127354, 0.026058079674839973, 0.041317325085401535, 0.24073384702205658], [0.3412293493747711, 0.0425233319401741, 0.02530532144010067, 0.010399009101092815, 0.000824531598482281, 0.015127566643059254, 0.008493355475366116, 0.15153510868549347, 0.003197578014805913, 0.3981427848339081, 0.0001430990669177845, 1.0313862730981782e-05, 1.5928937500575557e-05, 2.43582599068759e-06, 1.9739929484785534e-05, 0.00017232833488378674, 0.002858119085431099], [0.08824986964464188, 0.6997199654579163, 0.011842271313071251, 0.0011897149961441755, 2.6869691282627173e-05, 9.908813080983236e-05, 7.700332935201004e-05, 0.010119310580193996, 0.0006344643770717084, 4.224324129609158e-06, 0.1874210089445114, 6.41541078039154e-08, 3.8901990251360985e-07, 1.5369962511613267e-06, 2.8495185233623488e-06, 2.452236003591679e-05, 0.0005868630832992494], [0.3592156767845154, 0.003131461562588811, 0.00036553211975842714, 0.006802729796618223, 0.011866609565913677, 0.017082614824175835, 0.007123382296413183, 0.019259361550211906, 0.003832812188193202, 1.1280466424068436e-05, 2.5483777790213935e-06, 0.5673357844352722, 0.0001800861646188423, 2.9578353860415518e-05, 2.65734543063445e-05, 2.604628389235586e-05, 0.0037079621106386185], [0.5955706238746643, 0.031002193689346313, 0.0059892116114497185, 0.0078062317334115505, 0.015972916036844254, 0.13028669357299805, 0.008188439533114433, 0.1265796273946762, 0.004255733918398619, 4.628387978300452e-05, 4.282952068024315e-05, 0.000389767752494663, 0.06887504458427429, 0.000504101684782654, 0.00041015748865902424, 6.764943100279197e-05, 0.004012505989521742], [0.2370082139968872, 0.013091888278722763, 0.014713992364704609, 0.0027313160244375467, 0.00020957450033165514, 0.0007991665042936802, 0.000574834703002125, 0.1142205223441124, 0.003886783728376031, 4.559553417493589e-06, 5.656806752085686e-05, 1.345186319667846e-05, 0.00010998273501172662, 0.557847261428833, 0.050550296902656555, 0.0006638870690949261, 0.0035178351681679487], [0.09647241979837418, 0.007483694702386856, 0.009100493043661118, 0.0021675468888133764, 5.778981721960008e-05, 0.0003691861347761005, 0.00038284496986307204, 0.06353677809238434, 0.0017389238346368074, 7.33960132492939e-06, 2.791397855617106e-05, 4.250570782460272e-06, 2.4608452804386616e-05, 0.033816851675510406, 0.7830237746238708, 0.0002724375226534903, 0.001513192430138588], [0.26882848143577576, 0.023450184613466263, 0.005285943858325481, 0.12752436101436615, 0.0004531803715508431, 0.0017976476810872555, 0.0029235482215881348, 0.10919898003339767, 0.008442096412181854, 5.5021519074216485e-05, 0.00016640385729260743, 1.107062962546479e-05, 1.499476820754353e-05, 8.318276377394795e-05, 0.00012007253826595843, 0.4437243938446045, 0.007920338772237301], [0.22886542975902557, 0.023172790184617043, 0.008197464980185032, 0.006507922429591417, 0.0031450276728719473, 0.007757019717246294, 0.005424468778073788, 0.07678276300430298, 0.22266785800457, 0.065454863011837, 0.027140682563185692, 0.009864493273198605, 0.019179660826921463, 0.010259775444865227, 0.022666333243250847, 0.040682610124349594, 0.22223085165023804]], [[0.09246888011693954, 0.06194363906979561, 0.11018208414316177, 0.0610809363424778, 0.20336997509002686, 0.10996213555335999, 0.01868795044720173, 0.04144829511642456, 0.05479266121983528, 0.10289625823497772, 0.018722767010331154, 0.0013742772862315178, 0.01276630163192749, 0.004419051576405764, 0.004897411447018385, 0.04978408291935921, 0.051203250885009766], [0.08506936579942703, 0.049196187406778336, 0.12829461693763733, 0.04550391063094139, 0.14054259657859802, 0.0526413656771183, 0.029778851196169853, 0.045694414526224136, 0.05757182836532593, 0.11799205839633942, 0.12959042191505432, 0.00145761389285326, 0.004579771310091019, 0.0026518211234360933, 0.0022720787674188614, 0.052544161677360535, 0.05461887642741203], [0.09991312772035599, 0.02390151284635067, 0.17408640682697296, 0.014207236468791962, 0.011501027271151543, 0.03187821805477142, 0.012340192683041096, 0.03705303743481636, 0.21625526249408722, 0.03588656708598137, 0.07371551543474197, 0.004669873043894768, 0.011105416342616081, 0.009820433333516121, 0.007865686900913715, 0.022701747715473175, 0.21309876441955566], [0.08387314528226852, 0.011907560750842094, 0.0862431600689888, 0.0826898068189621, 0.11915934085845947, 0.04959939047694206, 0.013076802715659142, 0.01409516204148531, 0.047607846558094025, 0.0564408004283905, 0.01073156762868166, 0.0014565858291462064, 0.004775232635438442, 0.007413520477712154, 0.006316609680652618, 0.3586348295211792, 0.0459785982966423], [0.0606183297932148, 0.013322938233613968, 0.10909030586481094, 0.014323634095489979, 0.11583612114191055, 0.04240940883755684, 0.01285891979932785, 0.06441843509674072, 0.2113136649131775, 0.10709409415721893, 0.008821564726531506, 0.0008644995978102088, 0.0015205212403088808, 0.0006168255931697786, 0.0008936897502280772, 0.029101520776748657, 0.20689548552036285], [0.0518786758184433, 0.012471107766032219, 0.1649257242679596, 0.006757655646651983, 0.036428455263376236, 0.015883615240454674, 0.008681015111505985, 0.023485753685235977, 0.28365588188171387, 0.09019187092781067, 0.009715721011161804, 0.0006356050143949687, 0.0018064918695017695, 0.002422560937702656, 0.0015673176385462284, 0.013480921275913715, 0.27601158618927], [0.016165167093276978, 0.011963787488639355, 0.09751909971237183, 0.0057828170247375965, 0.021685222163796425, 0.0210827998816967, 0.005414087790995836, 0.01337400171905756, 0.35972151160240173, 0.06218336895108223, 0.020896082744002342, 0.002786192111670971, 0.0016405622009187937, 0.001782930688932538, 0.002505082171410322, 0.010956077836453915, 0.3445413410663605], [0.08164932578802109, 0.03990740329027176, 0.08788231760263443, 0.05205972492694855, 0.16068410873413086, 0.05053249001502991, 0.009451997466385365, 0.09337428212165833, 0.09370559453964233, 0.15410488843917847, 0.02712096832692623, 0.001029302948154509, 0.005088322330266237, 0.002205743221566081, 0.0021048653870821, 0.05023520812392235, 0.08886346966028214], [0.004474562592804432, 0.0011820620857179165, 0.007393202744424343, 0.001520694000646472, 0.001425054739229381, 0.0027973284013569355, 0.0004933666787110269, 0.010234818793833256, 0.47769516706466675, 0.002372149610891938, 0.001906862948089838, 0.0007091793813742697, 0.0006218882626853883, 0.0008513749344274402, 0.0007196696242317557, 0.0016267203027382493, 0.48397573828697205], [0.10300230979919434, 0.012551168911159039, 0.03135497868061066, 0.013058312237262726, 0.08720850199460983, 0.03815891966223717, 0.004374713636934757, 0.015692712739109993, 0.07346475124359131, 0.44246822595596313, 0.02071460522711277, 0.0010239272378385067, 0.008562631905078888, 0.01139331515878439, 0.014961163513362408, 0.04564831033349037, 0.07636153697967529], [0.1521003097295761, 0.020120013505220413, 0.08223660290241241, 0.0221259742975235, 0.058031730353832245, 0.03446701169013977, 0.013106283731758595, 0.017250314354896545, 0.059794191271066666, 0.21883663535118103, 0.13909012079238892, 0.003814751747995615, 0.006077473517507315, 0.012380351312458515, 0.00395074812695384, 0.09228211641311646, 0.06433528661727905], [0.023298460990190506, 0.007727380841970444, 0.059849195182323456, 0.003751971060410142, 0.007221390958875418, 0.014949124306440353, 0.005415600258857012, 0.005057912785559893, 0.3309497535228729, 0.1234544888138771, 0.023582691326737404, 0.003017864190042019, 0.0017162382137030363, 0.009371913969516754, 0.016971569508314133, 0.02475302293896675, 0.33891159296035767], [0.01758722774684429, 0.013618450611829758, 0.07672133296728134, 0.000871562457177788, 0.0018003752920776606, 0.007232997566461563, 0.004678796511143446, 0.003702498273923993, 0.39411067962646484, 0.06546493619680405, 0.007070925552397966, 0.003873503766953945, 0.005213557276874781, 0.0038225280586630106, 0.006586284842342138, 0.001729118637740612, 0.3859153389930725], [0.050994254648685455, 0.039802730083465576, 0.12303764373064041, 0.014415951445698738, 0.014315569773316383, 0.03778175264596939, 0.019377561286091805, 0.009150020778179169, 0.254240483045578, 0.07567020505666733, 0.023418530821800232, 0.008936692960560322, 0.01541205495595932, 0.01106566283851862, 0.031168535351753235, 0.029420187696814537, 0.24179214239120483], [0.031442221254110336, 0.01501182559877634, 0.03548745810985565, 0.009461838752031326, 0.004510349128395319, 0.012757851742208004, 0.010247272439301014, 0.010063671506941319, 0.3640801012516022, 0.03410377725958824, 0.01032322645187378, 0.008739592507481575, 0.018789246678352356, 0.020711369812488556, 0.03466292843222618, 0.01791529357433319, 0.361691951751709], [0.07557731866836548, 0.015311889350414276, 0.01394333690404892, 0.04659917578101158, 0.07440418004989624, 0.03132397308945656, 0.014012784697115421, 0.012508862651884556, 0.046278029680252075, 0.4481610655784607, 0.024148615077137947, 0.0030854649376124144, 0.008612181060016155, 0.023680653423070908, 0.026031577959656715, 0.08909101039171219, 0.047229815274477005], [0.004537979140877724, 0.0010722988517954946, 0.006664913147687912, 0.0013428947422653437, 0.0012812219792976975, 0.002524411305785179, 0.0004473469452932477, 0.009245374239981174, 0.4765443205833435, 0.002610776573419571, 0.002038220874965191, 0.0007411545375362039, 0.0006175400922074914, 0.0008927881135605276, 0.0007382421754300594, 0.0017119499389082193, 0.4869885742664337]], [[0.017373783513903618, 0.010760200209915638, 0.004052707459777594, 0.002160601783543825, 0.004703983198851347, 0.000394698727177456, 0.0004772089596372098, 0.008218641392886639, 0.08138436079025269, 0.07528041303157806, 0.5505829453468323, 0.007514370139688253, 0.0081545514985919, 0.012097654864192009, 0.06066875904798508, 0.06331667304039001, 0.09285833686590195], [0.011449586600065231, 0.006356136407703161, 0.8754265904426575, 0.008639363572001457, 0.003794182790443301, 0.004211607854813337, 0.0020771094132214785, 0.007402998860925436, 0.028407972306013107, 0.0015781077090650797, 0.01243663765490055, 0.000761339208111167, 0.0011568123009055853, 0.0005532116629183292, 0.007559823337942362, 0.001159479608759284, 0.027029061689972878], [0.03195991739630699, 0.2568446695804596, 0.12623031437397003, 0.008409995585680008, 0.004986082203686237, 0.007851914502680302, 0.004397053271532059, 0.04552983492612839, 0.21597664058208466, 0.000780573463998735, 0.017395876348018646, 0.005138861481100321, 0.002892897929996252, 0.007520338054746389, 0.024654734879732132, 0.02250443957746029, 0.21692578494548798], [0.04044754430651665, 0.015792282298207283, 0.0023268135264515877, 0.00258962856605649, 0.04314747080206871, 0.2793048620223999, 0.30927082896232605, 0.061317089945077896, 0.11304378509521484, 0.0016480220947414637, 0.0016632579499855638, 0.005961955059319735, 0.0024919621646404266, 0.0017828393029049039, 0.004487823229283094, 0.00265551102347672, 0.11206835508346558], [0.01992252841591835, 0.015503552742302418, 0.010178887285292149, 0.037280816584825516, 0.0024466016329824924, 0.6000202894210815, 0.1180553212761879, 0.04667108133435249, 0.06691066920757294, 0.004596197512000799, 0.0009887930937111378, 0.007241436745971441, 0.00015203337534330785, 0.00032288688817061484, 0.0035447953268885612, 0.0008390126167796552, 0.0653250515460968], [0.03467075899243355, 0.06156986579298973, 0.04821975156664848, 0.1019117683172226, 0.16641081869602203, 0.0029154496733099222, 0.3086279034614563, 0.04037686064839363, 0.1068916767835617, 0.004694036673754454, 0.006833398714661598, 0.0009412026265636086, 0.005467477720230818, 0.00034866968053393066, 0.003190305782482028, 0.004664421547204256, 0.10226564854383469], [0.0012558179441839457, 6.563087663380429e-05, 4.949299545842223e-05, 0.0015380426775664091, 0.00023054353368934244, 0.9875051975250244, 0.0004441349592525512, 0.0025152326561510563, 0.003047464182600379, 0.0002783294767141342, 6.7850196501240134e-06, 5.451321339933202e-05, 1.8367582015343942e-06, 3.508809459162876e-05, 0.00010729442874435335, 2.2561776859220117e-05, 0.002842082642018795], [0.053099703043699265, 0.0543893501162529, 0.03896797075867653, 0.06328529864549637, 0.060940925031900406, 0.016793664544820786, 0.042788613587617874, 0.06915182620286942, 0.21027907729148865, 0.0890103131532669, 0.07785212248563766, 0.005868659820407629, 0.003588279942050576, 0.004618037957698107, 0.0057329339906573296, 0.011873433366417885, 0.19175979495048523], [0.06063633784651756, 0.06326667219400406, 0.034328192472457886, 0.022750509902834892, 0.010062981396913528, 0.0041212965734303, 0.01725657843053341, 0.0666080117225647, 0.2555081844329834, 0.04517829790711403, 0.05627714470028877, 0.017643898725509644, 0.015165286138653755, 0.011751209385693073, 0.020329898223280907, 0.04869578778743744, 0.2504197061061859], [0.042590171098709106, 0.007069586776196957, 0.0012985594803467393, 0.014135523699223995, 0.00020970412879250944, 0.0025508131366223097, 0.0003640716022346169, 0.02199370414018631, 0.13977669179439545, 0.007103921379894018, 0.2491903156042099, 0.008471415378153324, 0.013476744294166565, 0.015292834490537643, 0.24435527622699738, 0.08526758849620819, 0.14685308933258057], [0.025622189044952393, 0.005079266615211964, 0.0159971471875906, 0.0022866185754537582, 0.0003106805379502475, 0.0007034053560346365, 0.0006128181703388691, 0.015516459941864014, 0.0847368910908699, 0.6358482241630554, 0.04185083135962486, 0.0064671714790165424, 0.007325771264731884, 0.012678802944719791, 0.021403003484010696, 0.03589853271842003, 0.08766209334135056], [0.01034579984843731, 0.0010164995910599828, 0.0007042950601316988, 0.0005764112574979663, 0.0001418629544787109, 7.555496267741546e-05, 6.739431410096586e-05, 0.0010716611286625266, 0.011676725931465626, 0.002192141953855753, 0.002111768117174506, 0.00011826671834569424, 0.9365773797035217, 0.004679031670093536, 0.014322083443403244, 0.0025440813042223454, 0.011778962798416615], [0.00584240211173892, 0.0006241857772693038, 0.0002169349609175697, 0.0004340888699516654, 9.15642740437761e-05, 0.00011733853898476809, 8.395465556532145e-05, 0.0064913625828921795, 0.03131890669465065, 0.00014143298903945833, 0.0012957515427842736, 0.9128997921943665, 0.00019785920449066907, 0.0010000524343922734, 0.006657343823462725, 0.001121798879466951, 0.031465109437704086], [0.011719241738319397, 0.001982304034754634, 0.0029356570448726416, 0.00029034720500931144, 0.0014887249562889338, 8.823991083772853e-05, 0.0013051838614046574, 0.0023637183476239443, 0.023899512365460396, 7.243487925734371e-05, 0.0020801685750484467, 0.002515074796974659, 0.013138941489160061, 0.013515998609364033, 0.8798472285270691, 0.017791997641324997, 0.024965189397335052], [0.014468244276940823, 0.002123360289260745, 0.0009089037775993347, 0.00027280973154120147, 0.0009915506234392524, 3.583553188946098e-05, 0.0006245332187972963, 0.003266494255512953, 0.03394186869263649, 0.0014993351651355624, 0.0031883211340755224, 0.005818007048219442, 0.009238418191671371, 0.8628991842269897, 0.0052667162381112576, 0.019341936334967613, 0.03611455112695694], [0.02876167744398117, 0.004317948129028082, 0.0021643307991325855, 0.002739173825830221, 0.0013453061692416668, 0.013219424523413181, 0.0009473168174736202, 0.008477412164211273, 0.05804387480020523, 0.027571791782975197, 0.058400530368089676, 0.059598151594400406, 0.030119767412543297, 0.1764165610074997, 0.40899723768234253, 0.054463885724544525, 0.06441550701856613], [0.06170149892568588, 0.05879565700888634, 0.030704542994499207, 0.021936966106295586, 0.010049635544419289, 0.004163258709013462, 0.01647026464343071, 0.06377705186605453, 0.2525229752063751, 0.050131164491176605, 0.05698935687541962, 0.017769869416952133, 0.015925999730825424, 0.012618206441402435, 0.02194317989051342, 0.0541968047618866, 0.2503035366535187]], [[0.005758460145443678, 0.0021250469144433737, 0.004918077029287815, 0.0015783997951075435, 0.0031314161606132984, 0.0012560640461742878, 0.0003333171480335295, 0.005877758841961622, 0.42379939556121826, 0.03887219354510307, 0.027776392176747322, 0.000757195521146059, 0.006674075033515692, 0.005416585598140955, 0.004057684447616339, 0.00699286675080657, 0.46067506074905396], [0.017574958503246307, 0.06447048485279083, 0.051008909940719604, 0.0031163066159933805, 0.001023966120555997, 0.004448094870895147, 0.001327427802607417, 0.01151659432798624, 0.4472600817680359, 0.000724693585652858, 0.002181157236918807, 3.543791171978228e-05, 0.0003073539410252124, 0.00014391100557986647, 0.00037076984881423414, 0.0008658475708216429, 0.3936239778995514], [0.002968674525618553, 0.005619123578071594, 0.028435001149773598, 0.0002892887860070914, 3.1841998861636966e-05, 0.00029665420879609883, 6.943188782315701e-05, 0.0044031897559762, 0.5065798759460449, 0.0004636448866222054, 0.0008735298179090023, 1.942684866662603e-05, 5.949027763563208e-05, 0.00013078321353532374, 0.0006501429015770555, 0.00033773420727811754, 0.4487721621990204], [0.01788296550512314, 0.24235442280769348, 0.11464615911245346, 0.024721350520849228, 0.004135359078645706, 0.005985644645988941, 0.011329052969813347, 0.015966244041919708, 0.28977298736572266, 0.009694698266685009, 0.00605228915810585, 0.002183745615184307, 0.00193732138723135, 0.000617838348262012, 0.0010090431896969676, 0.0023053723853081465, 0.24940550327301025], [0.004345357418060303, 0.053547076880931854, 0.02130398340523243, 0.007296844385564327, 0.011325634084641933, 0.003009550739079714, 0.00919779110699892, 0.008209788240492344, 0.45820072293281555, 0.00025447012740187347, 0.001014708774164319, 0.0012865019962191582, 0.0014641362940892577, 0.0001525093975942582, 0.0003483017208054662, 0.0002487985184416175, 0.41879361867904663], [0.006185310892760754, 0.052064698189496994, 0.05677692964673042, 0.006097305100411177, 0.007340249139815569, 0.023725558072328568, 0.011273540556430817, 0.008761817589402199, 0.4159131348133087, 0.0032796317245811224, 0.0023197925183922052, 0.001466546906158328, 0.001557107549160719, 0.0006841841386631131, 0.0010070785647258162, 0.0012539854506030679, 0.4002930521965027], [0.009984118863940239, 0.2552521824836731, 0.08297386020421982, 0.01195122767239809, 0.004918457940220833, 0.010436220094561577, 0.04108359292149544, 0.0127377575263381, 0.29193446040153503, 0.0002466780715622008, 0.0017972913337871432, 0.0028018862940371037, 0.0010170921450480819, 0.0002896444930229336, 0.0003109632816631347, 0.0011466684518381953, 0.27111801505088806], [0.016285758465528488, 0.12385275214910507, 0.11852085590362549, 0.2824400067329407, 0.16928309202194214, 0.07208912819623947, 0.03803791105747223, 0.0434800423681736, 0.04765653610229492, 0.02233661711215973, 0.008134892210364342, 0.0026699446607381105, 0.002235323190689087, 0.0026772483251988888, 0.001221737009473145, 0.005273064598441124, 0.043805088847875595], [0.003703151596710086, 0.0030523992609232664, 0.007243176456540823, 0.0023688124492764473, 0.004038053099066019, 0.0021750314626842737, 0.0012231331784278154, 0.00723686907440424, 0.47688260674476624, 0.0032990286126732826, 0.00206870399415493, 0.0008751602726988494, 0.0030658964533358812, 0.0014470196329057217, 0.002316804137080908, 0.0015734852058812976, 0.4774307310581207], [0.028774790465831757, 0.002642599167302251, 0.002106707077473402, 0.00568531034514308, 0.004500947892665863, 0.0288652665913105, 0.005638797301799059, 0.014731933362782001, 0.3937789797782898, 0.02373965084552765, 0.01259586215019226, 0.002859694417566061, 0.006989844609051943, 0.005218239035457373, 0.00419235322624445, 0.010987569577991962, 0.4466913938522339], [0.05040007829666138, 0.40499311685562134, 0.1488456279039383, 0.00640207901597023, 0.0005312006105668843, 0.0021755725611001253, 0.0006728880689479411, 0.005858015734702349, 0.0635240226984024, 0.0029547137673944235, 0.23792485892772675, 0.0003149133117403835, 0.0002752009895630181, 0.0005135594983585179, 0.0002646218636073172, 0.0051895552314817905, 0.06916012614965439], [0.008348342031240463, 0.004867127165198326, 0.0013254539808258414, 0.0005954488879069686, 0.0015938024735078216, 0.0030688317492604256, 0.008740752004086971, 0.008971484377980232, 0.4144304096698761, 0.0013387096114456654, 0.012678942643105984, 0.07251113653182983, 0.021529830992221832, 0.0016468254616484046, 0.0026867168489843607, 0.0015883127925917506, 0.43407773971557617], [0.01259857602417469, 0.011510941199958324, 0.006271845661103725, 0.0004519037320278585, 0.0005010212771594524, 0.0017907355213537812, 0.0021989252418279648, 0.01928710751235485, 0.4178101420402527, 0.0008950172923505306, 0.003501642495393753, 0.008178569376468658, 0.07352893799543381, 0.0016593364998698235, 0.0033335292246192694, 0.0014292368432506919, 0.4350525140762329], [0.026836425065994263, 0.01943366229534149, 0.03158280998468399, 0.006877897307276726, 0.0013161987299099565, 0.005196307320147753, 0.0027716970071196556, 0.027549246326088905, 0.22064585983753204, 0.09490353614091873, 0.11428601294755936, 0.018736863508820534, 0.022037819027900696, 0.06502929329872131, 0.10713031888008118, 0.007348590064793825, 0.22831745445728302], [0.023632125928997993, 0.007872000336647034, 0.017207829281687737, 0.0025761686265468597, 0.0006747061852365732, 0.0023692105896770954, 0.0013521189102903008, 0.02210311032831669, 0.3481515049934387, 0.028256116434931755, 0.0492672324180603, 0.01164205651730299, 0.026400674134492874, 0.030927538871765137, 0.0554853193461895, 0.008229000493884087, 0.3638533353805542], [0.03483754023909569, 0.05955659598112106, 0.03354164958000183, 0.0251525416970253, 0.004316721111536026, 0.005708860699087381, 0.002586419228464365, 0.02293725684285164, 0.03824807330965996, 0.2152269333600998, 0.37943756580352783, 0.03995276242494583, 0.028697805479168892, 0.017712391912937164, 0.012051386758685112, 0.041439756751060486, 0.03859568387269974], [0.00356517662294209, 0.0029283235780894756, 0.006426373030990362, 0.002057009842246771, 0.0034274396020919085, 0.001882188837043941, 0.001106921350583434, 0.006688086315989494, 0.47607871890068054, 0.003981856629252434, 0.0023538446985185146, 0.0009857633849605918, 0.0034294750075787306, 0.0015889498172327876, 0.0025830105878412724, 0.001771243056282401, 0.47914549708366394]], [[0.057300034910440445, 0.00101943698246032, 0.0021415636874735355, 0.0008546136086806655, 0.0054085771553218365, 0.002029214520007372, 0.0008198036812245846, 0.009260308928787708, 0.03953936696052551, 0.37982413172721863, 0.11117511987686157, 0.023168686777353287, 0.06998268514871597, 0.007911001332104206, 0.02765064686536789, 0.2104039192199707, 0.05151091516017914], [0.050369054079055786, 0.04385271668434143, 0.03822799772024155, 0.02151563949882984, 0.018855562433600426, 0.01827183924615383, 0.006778425071388483, 0.22453130781650543, 0.1340239942073822, 0.07135462760925293, 0.12506183981895447, 0.006461805198341608, 0.06561027467250824, 0.006908669136464596, 0.009605640545487404, 0.02335977740585804, 0.135210782289505], [0.11721554398536682, 0.041641246527433395, 0.00972040556371212, 0.014014014042913914, 0.0024876361712813377, 0.013287719339132309, 0.0128793865442276, 0.0887947529554367, 0.27240633964538574, 0.005507349967956543, 0.0697098821401596, 0.004777554888278246, 0.018232645466923714, 0.018764374777674675, 0.03664420172572136, 0.009778556413948536, 0.26413843035697937], [0.045295413583517075, 0.027806073427200317, 0.009272068738937378, 0.03675176575779915, 0.007415296975523233, 0.006798502057790756, 0.004238978959619999, 0.2488250732421875, 0.21867583692073822, 0.03023870475590229, 0.05722988769412041, 0.00428718002513051, 0.00888246763497591, 0.004540345631539822, 0.004844400100409985, 0.07130539417266846, 0.21359269320964813], [0.035432640463113785, 0.02858577109873295, 0.00421521719545126, 0.026622828096151352, 0.01288614422082901, 0.010608547367155552, 0.006954746320843697, 0.11331315338611603, 0.3651497960090637, 0.018921684473752975, 0.008791389875113964, 0.0070966617204248905, 0.0026162010617554188, 0.0007993182516656816, 0.0005278706084936857, 0.0074110026471316814, 0.35006698966026306], [0.06639274209737778, 0.019437698647379875, 0.005019697826355696, 0.011193592101335526, 0.007175098173320293, 0.004456063732504845, 0.01689990609884262, 0.0620136484503746, 0.34760984778404236, 0.020261550322175026, 0.02027243748307228, 0.0403585322201252, 0.006405416410416365, 0.010466115549206734, 0.00706848967820406, 0.008198833093047142, 0.346770316362381], [0.04457259550690651, 0.016032623127102852, 0.016786210238933563, 0.01425451971590519, 0.05170614272356033, 0.04014769569039345, 0.02640923112630844, 0.06022537499666214, 0.33386293053627014, 0.03130337968468666, 0.008061649277806282, 0.007199801970273256, 0.018669651821255684, 0.0010074260644614697, 0.0015692927408963442, 0.00830166693776846, 0.31988975405693054], [0.05643227696418762, 0.013646628707647324, 0.0317501500248909, 0.011067698709666729, 0.014415115118026733, 0.015359370037913322, 0.005356915760785341, 0.10379167646169662, 0.2578006684780121, 0.0454564169049263, 0.04180770367383957, 0.008032647892832756, 0.026290351524949074, 0.01669144816696644, 0.017197489738464355, 0.0743250846862793, 0.26057830452919006], [0.02858106605708599, 0.0043085659854114056, 0.007958337664604187, 0.003052199026569724, 0.0018483898602426052, 0.005658274050801992, 0.001412619836628437, 0.010081819258630276, 0.44751182198524475, 0.006560749374330044, 0.004632902331650257, 0.0027243869844824076, 0.0037464250344783068, 0.010423772037029266, 0.007968236692249775, 0.005649067461490631, 0.4478813409805298], [0.01825212873518467, 0.011661571450531483, 0.0027983144391328096, 0.009320065379142761, 0.003965599928051233, 0.0022205798886716366, 0.0019291775533929467, 0.06871742010116577, 0.3039730489253998, 0.04260949417948723, 0.015275034122169018, 0.03099219501018524, 0.007589003536850214, 0.004136906936764717, 0.003975234925746918, 0.1305551528930664, 0.3420291244983673], [0.08748237788677216, 0.02557387948036194, 0.018112313002347946, 0.0049604433588683605, 0.0014782048529013991, 0.0022030407562851906, 0.0009602387435734272, 0.05315152183175087, 0.20510943233966827, 0.05159322917461395, 0.0959496796131134, 0.01279450487345457, 0.10031656175851822, 0.008924460038542747, 0.030730612576007843, 0.07733865827322006, 0.2233208864927292], [0.0498603954911232, 0.007433606311678886, 0.0016537772025913, 0.005322957877069712, 0.0039930944330990314, 0.0035380616318434477, 0.004288866184651852, 0.0305508840829134, 0.35446223616600037, 0.04660920053720474, 0.007483022287487984, 0.01469020638614893, 0.013795307837426662, 0.006084782537072897, 0.008098689839243889, 0.06909304112195969, 0.3730418384075165], [0.07243383675813675, 0.007740843575447798, 0.012108874507248402, 0.004148117266595364, 0.002742878394201398, 0.0028195148333907127, 0.0024749175645411015, 0.013945343904197216, 0.3822646141052246, 0.011517291888594627, 0.014738879166543484, 0.01524115726351738, 0.0059837885200977325, 0.006411973387002945, 0.011587921530008316, 0.02359296754002571, 0.41024717688560486], [0.07854430377483368, 0.010273326188325882, 0.012068699114024639, 0.006702507380396128, 0.0009893893729895353, 0.004420892801135778, 0.0008018749067559838, 0.03200588747859001, 0.34090402722358704, 0.040411461144685745, 0.032732728868722916, 0.009501599706709385, 0.007069308776408434, 0.001155844540335238, 0.0020612222142517567, 0.051742397248744965, 0.3686145544052124], [0.05737154930830002, 0.005662776064127684, 0.017658615484833717, 0.0023623763117939234, 0.0003382973372936249, 0.00366365653462708, 0.0006075557903386652, 0.01110900565981865, 0.40067917108535767, 0.015711462125182152, 0.011430365033447742, 0.009247093461453915, 0.009218628518283367, 0.0039481609128415585, 0.002190220169723034, 0.01950480043888092, 0.4292961359024048], [0.08930555731058121, 0.008811046369373798, 0.003925340250134468, 0.0061110337264835835, 0.0007046632235869765, 0.0012062698369845748, 0.002200786955654621, 0.04369465634226799, 0.2070087343454361, 0.052017226815223694, 0.10487690567970276, 0.01837259903550148, 0.01100108027458191, 0.041804101318120956, 0.03691233694553375, 0.13987357914447784, 0.23217403888702393], [0.028904935345053673, 0.003862805664539337, 0.0069825011305511, 0.0027303777169436216, 0.0016403237823396921, 0.005138302221894264, 0.0012722150422632694, 0.009086940437555313, 0.4471859633922577, 0.006697922945022583, 0.004753866232931614, 0.0028129389975219965, 0.0038341365288943052, 0.010505229234695435, 0.008085634559392929, 0.005789699032902718, 0.4507160782814026]]], [[[0.0012268522987142205, 0.001193615491501987, 0.0008361958898603916, 0.0006956990691833198, 0.0005406527197919786, 0.0006869614589959383, 0.0001046524994308129, 0.00037079612957313657, 0.497846394777298, 0.00019136350601911545, 0.0009103208431042731, 0.0003853342786896974, 0.0001866445818450302, 0.00035458983620628715, 0.0005960086127743125, 0.001435288693755865, 0.49243876338005066], [0.0026062126271426678, 0.05955971032381058, 0.00483003119006753, 0.005125260911881924, 0.0005440955865196884, 6.521259638248011e-05, 1.5452906154678203e-05, 0.0016047164099290967, 0.48359861969947815, 0.00040745188016444445, 0.0005516891833394766, 8.585672912886366e-05, 4.36004156654235e-05, 9.114493877859786e-06, 1.6389247321058065e-05, 0.00013914727605879307, 0.440797358751297], [0.0012028494384139776, 0.016091173514723778, 0.003556471085175872, 0.0013756597181782126, 0.001338676200248301, 6.803135329391807e-05, 2.319568011444062e-06, 9.375611989526078e-05, 0.4932926893234253, 2.1794699932797812e-05, 6.046155613148585e-05, 0.00022290619381237775, 8.975849050329998e-05, 7.32401676941663e-05, 2.691619738470763e-05, 4.034143057651818e-05, 0.4824428856372833], [0.001231819624081254, 0.026759592816233635, 0.08602309226989746, 0.012478143908083439, 0.01793690025806427, 0.006892875302582979, 0.00045659096213057637, 0.00020609903731383383, 0.4271720051765442, 6.295902949204901e-06, 0.0001687098847469315, 1.4306229786598124e-05, 0.001585383783094585, 0.0010070924181491137, 0.0005593216046690941, 1.904971395561006e-05, 0.41748276352882385], [0.001968498807400465, 0.005546071566641331, 0.05872735381126404, 0.19377446174621582, 0.025837019085884094, 0.0069153644144535065, 0.00015923671890050173, 0.0002369584544794634, 0.3460055887699127, 4.942282430420164e-06, 0.00010580255184322596, 3.394395753275603e-05, 1.1801466826000251e-05, 0.00019035862351302058, 0.0002730124397203326, 0.0008204026380553842, 0.35938921570777893], [0.0006208086269907653, 0.0017168422928079963, 0.0010606016730889678, 0.009086660109460354, 0.031358879059553146, 0.0035127843730151653, 8.70905423653312e-05, 0.00016364851035177708, 0.4641072452068329, 9.295687277699471e-07, 5.042512384534348e-06, 2.548368229327025e-06, 3.4707863960647956e-07, 8.447937943856232e-06, 1.3873927855456714e-05, 0.00017733579443302006, 0.4880768954753876], [0.00010141226812265813, 0.00017872703028842807, 0.00048087057075463235, 0.0018851286731660366, 0.0323953777551651, 0.9014703631401062, 0.0012603531358763576, 0.0006397413089871407, 0.030593007802963257, 2.1202245079621207e-06, 1.9603039618232287e-06, 1.9454557786957594e-07, 4.4716239244735334e-07, 1.3283220141602214e-06, 5.0499393182690255e-06, 2.0365290765766986e-05, 0.030963612720370293], [0.002887450158596039, 0.0005018715164624155, 0.0007899686461314559, 0.0022305496968328953, 0.00206627044826746, 0.04613981768488884, 0.41361093521118164, 0.00941880140453577, 0.2649163007736206, 3.681482849060558e-05, 0.00017398048657923937, 5.955187134532025e-06, 1.1472105143184308e-05, 1.3377554751059506e-05, 0.00038810836849734187, 0.0006162631325423717, 0.25619208812713623], [0.020558619871735573, 0.015892986208200455, 0.011825784109532833, 0.009166625328361988, 0.007707756478339434, 0.005215456243604422, 0.002697019837796688, 0.019493063911795616, 0.4218929409980774, 0.007586413994431496, 0.011317050084471703, 0.007993200793862343, 0.004722606856375933, 0.00699605792760849, 0.005569026339799166, 0.023229949176311493, 0.4181354343891144], [0.0013022085186094046, 5.9417747252155095e-05, 9.618737749406137e-06, 3.1320553262048634e-06, 9.828867177930078e-07, 6.095452135923551e-06, 5.499676262843423e-06, 0.0038343945052474737, 0.5037134289741516, 0.01935252547264099, 0.006374059244990349, 0.0004613842465914786, 6.5750164139899425e-06, 5.526042059500469e-06, 0.00011230498785153031, 0.0007515779579989612, 0.46400120854377747], [0.0014909309102222323, 0.00021644899970851839, 9.499776206212118e-05, 4.059539423906244e-05, 6.020482032909058e-06, 5.000700548407622e-05, 4.731058652396314e-06, 0.00040831719525158405, 0.06021977216005325, 0.8638006448745728, 0.00991840846836567, 0.0027865043375641108, 0.0007232613861560822, 0.00013436703011393547, 0.00023054922348819673, 0.0007160796667449176, 0.05915839597582817], [0.0002811781596392393, 0.0001679945271462202, 0.0010434634750708938, 1.0034946171799675e-05, 1.377331614094146e-06, 6.784912898183393e-07, 2.9217943620096776e-07, 8.49154093884863e-05, 0.4209435284137726, 0.010656886734068394, 0.13909605145454407, 0.010132971219718456, 0.022762980312108994, 0.0021747977007180452, 0.00034168214187957346, 9.013150702230632e-05, 0.3922111988067627], [3.402019865461625e-05, 4.9337726522935554e-05, 8.313170110341161e-05, 2.2319716663332656e-05, 5.39800566912163e-07, 4.11734895067184e-08, 3.3303881874502395e-09, 1.2204695849504787e-06, 0.06548122316598892, 0.0004900486092083156, 0.013175411149859428, 0.8559287190437317, 0.0009163409704342484, 0.0008550789207220078, 8.614702528575435e-05, 1.536821582703851e-05, 0.06286101788282394], [0.00035689142532646656, 0.00030578699079342186, 0.004799241665750742, 0.0001143141562351957, 2.7493884772411548e-05, 1.7332099560007919e-06, 5.367700239844453e-08, 2.3701875306869624e-06, 0.42885276675224304, 0.00018278085917700082, 0.007353080902248621, 0.02059979736804962, 0.08663886040449142, 0.021290861070156097, 0.01294338796287775, 0.0006382240680977702, 0.41589227318763733], [0.00035609223414212465, 0.0005162984598428011, 0.0014577305410057306, 0.00018065032782033086, 0.0002686360676307231, 1.0376428690506145e-05, 2.878275324746937e-07, 2.868041701731272e-05, 0.40768325328826904, 9.130642865784466e-05, 0.005906779319047928, 0.012902558781206608, 0.034313399344682693, 0.11630579084157944, 0.010384070686995983, 0.001335323671810329, 0.4082588851451874], [0.0006982879713177681, 4.500218346947804e-05, 0.001986839808523655, 0.00023020044318400323, 6.763750570826232e-05, 0.00026030655135400593, 0.00014494087372440845, 4.463098957785405e-05, 0.09784181416034698, 0.0001967396237887442, 0.00044995578355155885, 0.0003799397964030504, 0.005566427018493414, 0.1335822492837906, 0.6433798670768738, 0.013692405074834824, 0.10143276304006577], [0.02094348333775997, 0.016241909936070442, 0.011949323117733002, 0.009936582297086716, 0.008415109477937222, 0.0055074081756174564, 0.002825394505634904, 0.017137518152594566, 0.4179816246032715, 0.007598317228257656, 0.01184071134775877, 0.00819436740130186, 0.0051026432774960995, 0.008000517264008522, 0.0063572959043085575, 0.02648719772696495, 0.4154805541038513]], [[0.0038423731457442045, 0.0979103371500969, 0.006096473429352045, 0.009875924326479435, 0.008829496800899506, 0.00291089853271842, 0.00470890523865819, 0.21763639152050018, 0.3291061520576477, 0.0002714426664169878, 0.009124048985540867, 0.00036560409353114665, 0.0002964880259241909, 0.00016312215302605182, 0.00011988421465503052, 4.996878851670772e-05, 0.3086925745010376], [0.007899913005530834, 0.11704446375370026, 0.015460697934031487, 0.051603641360998154, 0.02448287047445774, 0.018248176202178, 0.006813539192080498, 0.04040774703025818, 0.3675488531589508, 0.002186807570978999, 0.00276686972938478, 0.0002940267149824649, 0.00015135544526856393, 9.212002623826265e-05, 5.921020056121051e-05, 0.0002555855899117887, 0.34468403458595276], [0.025731662288308144, 0.208003968000412, 0.0133800795301795, 0.033890265971422195, 0.02012753300368786, 0.02156728319823742, 0.020578458905220032, 0.07638607919216156, 0.27651548385620117, 0.007654054090380669, 0.02330482006072998, 0.00032096198992803693, 0.0017971759662032127, 0.0005989883211441338, 0.0024323780089616776, 0.0035198742989450693, 0.26419106125831604], [0.01676766946911812, 0.3595621585845947, 0.016705617308616638, 0.056803129613399506, 0.049385491758584976, 0.023534834384918213, 0.013142966665327549, 0.053659047931432724, 0.20421680808067322, 0.012541486881673336, 0.001466069370508194, 0.000197612214833498, 0.00021747058781329542, 8.428033470408991e-05, 7.821858889656141e-05, 0.0004215656954329461, 0.19121558964252472], [0.016914812847971916, 0.10681729018688202, 0.03576813265681267, 0.18344727158546448, 0.06506672501564026, 0.026374896988272667, 0.06274399161338806, 0.04797997325658798, 0.22855304181575775, 0.001385140116326511, 0.0012575380969792604, 0.0026216129772365093, 0.0004486197722144425, 0.0007807505899108946, 0.0009508355869911611, 0.001133957994170487, 0.21775534749031067], [0.025768442079424858, 0.03815072774887085, 0.03208613023161888, 0.11320128291845322, 0.09737738966941833, 0.05092741549015045, 0.11139798909425735, 0.05256582796573639, 0.23593246936798096, 0.0017827348783612251, 0.0013278929982334375, 0.0028817562852054834, 0.0018652592552825809, 0.002160343574360013, 0.002896508201956749, 0.0024851509369909763, 0.2271927297115326], [0.030600255355238914, 0.03992250934243202, 0.03523583710193634, 0.27605047821998596, 0.13545475900173187, 0.07433675974607468, 0.051648277789354324, 0.04537327215075493, 0.15507520735263824, 0.0034015460405498743, 0.0008114134543575346, 0.0004506103286985308, 0.0003584881778806448, 0.0004759130533784628, 0.0011438089422881603, 0.0016666320152580738, 0.1479942500591278], [0.011768552474677563, 0.1284898817539215, 0.05738763138651848, 0.16645966470241547, 0.15865668654441833, 0.12594562768936157, 0.03153849020600319, 0.11341845989227295, 0.10127582401037216, 0.003067975165322423, 0.0018515866249799728, 0.000811909674666822, 0.00079435232328251, 0.0003807050234172493, 0.000823809124995023, 0.0011845029657706618, 0.09614430367946625], [0.006472982931882143, 0.022074781358242035, 0.006032588891685009, 0.008875316008925438, 0.004342956934124231, 0.0038167426828294992, 0.0030285187531262636, 0.012726720422506332, 0.4365517497062683, 0.011765614151954651, 0.02310115285217762, 0.003569986904039979, 0.004852436948567629, 0.0020988862961530685, 0.004189661238342524, 0.011541095562279224, 0.43495887517929077], [0.01010880060493946, 0.00956813246011734, 0.0025345291942358017, 0.010100681334733963, 0.004937953315675259, 0.0056816148571670055, 0.0026845817919820547, 0.018983561545610428, 0.39188602566719055, 0.11719891428947449, 0.011757936328649521, 0.006067921407520771, 0.004328660201281309, 0.0011421196395531297, 0.0036594390403479338, 0.013909421861171722, 0.3854497969150543], [0.011299828998744488, 0.06264476478099823, 0.00280944025143981, 0.03150974586606026, 0.019483143463730812, 0.02926880307495594, 0.014397852122783661, 0.038409505039453506, 0.3181813359260559, 0.08464206010103226, 0.044704537838697433, 0.005826888605952263, 0.0024582785554230213, 0.0012011387152597308, 0.0038834293372929096, 0.015836486592888832, 0.3134428560733795], [0.01150188036262989, 0.0044487714767456055, 0.003086444456130266, 0.005620704032480717, 0.005225773900747299, 0.005101312417536974, 0.0033509477507323027, 0.012873990461230278, 0.05570987984538078, 0.6618878245353699, 0.04546627029776573, 0.003613860346376896, 0.012015326879918575, 0.009610079228878021, 0.022729383781552315, 0.08204647153615952, 0.055710915476083755], [0.023843204602599144, 0.007940849289298058, 0.006602409295737743, 0.018516946583986282, 0.005194849334657192, 0.018354322761297226, 0.011972201056778431, 0.020020194351673126, 0.12768268585205078, 0.36009350419044495, 0.05813515931367874, 0.02671346440911293, 0.016857435926795006, 0.023078473284840584, 0.02597385086119175, 0.12283898144960403, 0.12618137896060944], [0.017453981563448906, 0.006566982716321945, 0.006437224335968494, 0.010258943773806095, 0.007524041924625635, 0.007805170025676489, 0.003535826923325658, 0.022132975980639458, 0.0758049488067627, 0.27864304184913635, 0.07962139695882797, 0.08276437222957611, 0.09034915268421173, 0.058843646198511124, 0.04596675559878349, 0.1311248540878296, 0.075166717171669], [0.009776161052286625, 0.005764814559370279, 0.002830076962709427, 0.008658399805426598, 0.004898515529930592, 0.008362919092178345, 0.005278115626424551, 0.016466772183775902, 0.0846642255783081, 0.36173009872436523, 0.06562229990959167, 0.029381074011325836, 0.0829448252916336, 0.04596933349967003, 0.01576196774840355, 0.16803304851055145, 0.08385728299617767], [0.0147054148837924, 0.020168650895357132, 0.007537460420280695, 0.004244955722242594, 0.006553541868925095, 0.0066261375322937965, 0.0021409504115581512, 0.028843004256486893, 0.05934390798211098, 0.4644696116447449, 0.15407297015190125, 0.045852839946746826, 0.03271123021841049, 0.015708668157458305, 0.015105503611266613, 0.06326187402009964, 0.05865337327122688], [0.006397331599146128, 0.021570011973381042, 0.00579069321975112, 0.008682731539011002, 0.004288266878575087, 0.0036858643870800734, 0.002901490079239011, 0.012283897958695889, 0.4360095262527466, 0.012330247089266777, 0.02403009869158268, 0.0037268218584358692, 0.004980555735528469, 0.0021687231492251158, 0.004302582237869501, 0.012045906856656075, 0.43480512499809265]], [[0.009063911624252796, 0.0008625846239738166, 0.0033756839111447334, 0.001652573118917644, 0.009214906021952629, 0.010952332057058811, 0.0025385506451129913, 0.001659492845647037, 0.05112340301275253, 0.4380345046520233, 0.1822289228439331, 0.08894407749176025, 0.02986772544682026, 0.027813255786895752, 0.016022173687815666, 0.0747062936425209, 0.05193968489766121], [0.030323171988129616, 0.011549224145710468, 0.02178393304347992, 0.12024854123592377, 0.1289067268371582, 0.1871342957019806, 0.35925328731536865, 0.029256725683808327, 0.0321379229426384, 0.009199031628668308, 0.004667792934924364, 0.009137160144746304, 0.012683101929724216, 0.0035537932999432087, 0.0030310810543596745, 0.006271325517445803, 0.030862925574183464], [0.06644298136234283, 0.07353031635284424, 0.08068853616714478, 0.08615818619728088, 0.05244072154164314, 0.0946999117732048, 0.10104087740182877, 0.07332208007574081, 0.09360750019550323, 0.010609259828925133, 0.11760304123163223, 0.008927362971007824, 0.019986722618341446, 0.005015614442527294, 0.006804815027862787, 0.017998838797211647, 0.09112320095300674], [0.01714845560491085, 0.010454491712152958, 0.03376057371497154, 0.01652185246348381, 0.35368624329566956, 0.07130531966686249, 0.04183783009648323, 0.021007705479860306, 0.206453338265419, 0.024041080847382545, 0.0005371371516957879, 0.003641566028818488, 0.0024012846406549215, 0.0004044374800287187, 0.00027393706841394305, 0.0006514793494716287, 0.1958731710910797], [0.024712054058909416, 0.028879081830382347, 0.025591792538762093, 0.0830875039100647, 0.22685730457305908, 0.012127013877034187, 0.013243654742836952, 0.019917773082852364, 0.2849058508872986, 0.006959776859730482, 0.0003480169107206166, 0.0022449621465057135, 0.00022857473231852055, 0.0001925065735122189, 5.834653347847052e-05, 0.0008453947957605124, 0.2698003053665161], [0.017363451421260834, 0.03167405724525452, 0.058454278856515884, 0.07243829220533371, 0.06682407855987549, 0.0028190664015710354, 0.019437329843640327, 0.024486254900693893, 0.35692834854125977, 0.007929218001663685, 0.0008091423660516739, 0.0017295961733907461, 0.003142121247947216, 0.0001985627895919606, 0.00018417609680909663, 0.0004582138790283352, 0.3351239562034607], [0.03096614219248295, 0.01818840764462948, 0.018256308510899544, 0.08340602368116379, 0.46653053164482117, 0.011320777237415314, 0.012873721309006214, 0.02072528377175331, 0.15964293479919434, 0.012586020864546299, 0.0008307071402668953, 0.0037708906456828117, 0.009140275418758392, 0.00019693837384693325, 9.386949386680499e-05, 0.0002821652451530099, 0.15118898451328278], [0.021320726722478867, 0.0069495257921516895, 0.03907027840614319, 0.017465760931372643, 0.15855297446250916, 0.17425209283828735, 0.014796898700296879, 0.012508236803114414, 0.2606799304485321, 0.014482776634395123, 0.0017777791945263743, 0.015015839599072933, 0.004568885546177626, 0.0017355424351990223, 0.0022575752809643745, 0.001487387577071786, 0.25307780504226685], [0.008644532412290573, 0.0057877833023667336, 0.009599537588655949, 0.0044794511049985886, 0.006598783656954765, 0.004999629221856594, 0.003857773495838046, 0.00496251042932272, 0.45481136441230774, 0.011323085054755211, 0.00651855394244194, 0.01277847122400999, 0.006761050317436457, 0.002228126395493746, 0.002959158271551132, 0.008155886083841324, 0.4455343186855316], [0.016474297270178795, 0.0007862914353609085, 0.005609103478491306, 0.0013036939781159163, 0.013178386725485325, 0.031232384964823723, 0.003996184095740318, 0.0027088404167443514, 0.19672152400016785, 0.15460164844989777, 0.011832552962005138, 0.28343135118484497, 0.018459884449839592, 0.011896039359271526, 0.03203675523400307, 0.017319830134510994, 0.19841118156909943], [0.011102980002760887, 0.002027091570198536, 0.007352579850703478, 0.003563682083040476, 0.0034767219331115484, 0.009599216282367706, 0.006617088336497545, 0.002679733093827963, 0.05418064817786217, 0.08351188153028488, 0.020119065418839455, 0.09925579279661179, 0.05405725538730621, 0.05946948006749153, 0.07493478059768677, 0.45395129919052124, 0.054100628942251205], [0.026370501145720482, 0.00532302912324667, 0.009548664093017578, 0.016433287411928177, 0.010021233931183815, 0.001343895448371768, 0.005150559823960066, 0.018646899610757828, 0.11135309934616089, 0.32311341166496277, 0.007008376065641642, 0.02277667261660099, 0.020729457959532738, 0.06919568032026291, 0.02322600781917572, 0.2209407538175583, 0.10881854593753815], [0.00976437795907259, 0.0032595740631222725, 0.0021889826748520136, 0.003149980679154396, 0.0028265949804335833, 0.0058457511477172375, 0.0012064318871125579, 0.011398770846426487, 0.059283848851919174, 0.1415555477142334, 0.004987755790352821, 0.05386420339345932, 0.017745163291692734, 0.13775202631950378, 0.2205449342727661, 0.2650304436683655, 0.059595633298158646], [0.008760376833379269, 0.002713883528485894, 0.0039603495970368385, 0.0016811072127893567, 0.0034731728956103325, 0.001324359094724059, 0.00037808556226082146, 0.0028924550861120224, 0.1261860430240631, 0.09943632781505585, 0.01668786071240902, 0.12166517972946167, 0.20644888281822205, 0.05490894243121147, 0.05007820576429367, 0.17126207053661346, 0.12814268469810486], [0.003855594666674733, 0.0010279123671352863, 0.0015991622349247336, 0.001383748254738748, 0.004134461749345064, 0.001294485991820693, 0.0006854782695882022, 0.0012635185848921537, 0.06345689296722412, 0.05816950649023056, 0.006413677707314491, 0.2604367733001709, 0.24804487824440002, 0.05097700655460358, 0.021885981783270836, 0.2107435017824173, 0.06462740898132324], [0.004982471000403166, 0.0006992732523940504, 0.0017675221897661686, 0.0004335168923716992, 0.009008869528770447, 0.0020184493623673916, 0.0007313895621336997, 0.0014360100030899048, 0.07364760339260101, 0.1780526489019394, 0.009435616433620453, 0.35736867785453796, 0.2140316516160965, 0.027324117720127106, 0.01903369463980198, 0.025390230119228363, 0.07463827729225159], [0.008594616316258907, 0.0056075723841786385, 0.009349030442535877, 0.004368793219327927, 0.006372013129293919, 0.004783434793353081, 0.0037150168791413307, 0.0048795295879244804, 0.45506751537323, 0.011634405702352524, 0.00648960517719388, 0.012840671464800835, 0.006777993403375149, 0.0022574723698198795, 0.003014270681887865, 0.008313097059726715, 0.445934921503067]], [[0.04591652378439903, 0.06300190091133118, 0.16419069468975067, 0.06137210130691528, 0.03333040326833725, 0.11815725266933441, 0.02318153716623783, 0.12986509501934052, 0.11233090609312057, 0.05288806930184364, 0.00782070867717266, 0.007269850000739098, 0.0032817272003740072, 0.008160431869328022, 0.01143732201308012, 0.044403888285160065, 0.1133914515376091], [0.05948485806584358, 0.030614571645855904, 0.04631494730710983, 0.04725201427936554, 0.024686913937330246, 0.07342551648616791, 0.01190608087927103, 0.1029941663146019, 0.19130326807498932, 0.05489321053028107, 0.0618562214076519, 0.010713323019444942, 0.008033191785216331, 0.015370874665677547, 0.019974352791905403, 0.0536336675286293, 0.1875428408384323], [0.008375815115869045, 0.08590077608823776, 0.11599132418632507, 0.03065883368253708, 0.02831793576478958, 0.17639218270778656, 0.030109606683254242, 0.07108864188194275, 0.08749613910913467, 0.06038052588701248, 0.13203848898410797, 0.01169673167169094, 0.016224045306444168, 0.022964222356677055, 0.012506515718996525, 0.02547159045934677, 0.08438663184642792], [0.014101564884185791, 0.009941528551280499, 0.012831049971282482, 0.04680471494793892, 0.0229649655520916, 0.03828982263803482, 0.007251002360135317, 0.06968002021312714, 0.28135332465171814, 0.07196445018053055, 0.021891625598073006, 0.010489667765796185, 0.0037817968986928463, 0.009669381193816662, 0.014900454320013523, 0.08749127388000488, 0.27659332752227783], [0.023000601679086685, 0.014771489426493645, 0.017490161582827568, 0.079710453748703, 0.028272580355405807, 0.027533959597349167, 0.005006590858101845, 0.07247548550367355, 0.2600434422492981, 0.040930040180683136, 0.039835136383771896, 0.003263308899477124, 0.0016803618054836988, 0.009910948574543, 0.0272970050573349, 0.0922524631023407, 0.2565259337425232], [0.007276624441146851, 0.015737686306238174, 0.044347167015075684, 0.0654127299785614, 0.06074805557727814, 0.2576485574245453, 0.01003256905823946, 0.029188068583607674, 0.16256673634052277, 0.03380874544382095, 0.028989844024181366, 0.016662636771798134, 0.014031721279025078, 0.012928691692650318, 0.028152860701084137, 0.05670379474759102, 0.1557634472846985], [0.046840086579322815, 0.005050460807979107, 0.008912740275263786, 0.04096522554755211, 0.0037268521264195442, 0.02124677784740925, 0.0024555400013923645, 0.030869917944073677, 0.3147437572479248, 0.05737714841961861, 0.025457613170146942, 0.019202768802642822, 0.012414413504302502, 0.012507575564086437, 0.03809475526213646, 0.05198213458061218, 0.3081522285938263], [0.04578913748264313, 0.015169307589530945, 0.05198633670806885, 0.04619758948683739, 0.017973976209759712, 0.03155815973877907, 0.006569531746208668, 0.05196365341544151, 0.295901358127594, 0.039483342319726944, 0.014930213801562786, 0.01637307181954384, 0.005796234123408794, 0.019513661041855812, 0.016688790172338486, 0.03114703670144081, 0.2929585576057434], [0.036378540098667145, 0.006205890327692032, 0.016910836100578308, 0.00830363854765892, 0.00342999747954309, 0.00617930619046092, 0.001616147463209927, 0.01737803965806961, 0.41895776987075806, 0.012113629840314388, 0.006057837046682835, 0.007107787765562534, 0.00616078544408083, 0.0055975657887756824, 0.012781639583408833, 0.016707587987184525, 0.41811296343803406], [0.05884114280343056, 0.009341621771454811, 0.07733424752950668, 0.04282677546143532, 0.004803631454706192, 0.009805548936128616, 0.004415364004671574, 0.042979758232831955, 0.3523355722427368, 0.009957455098628998, 0.0038648745976388454, 0.0032010285649448633, 0.001637027831748128, 0.0014145619934424758, 0.0028786929324269295, 0.014316998422145844, 0.3600457012653351], [0.1566653698682785, 0.04843460023403168, 0.07605812698602676, 0.09281890094280243, 0.02433890849351883, 0.037761494517326355, 0.009676758199930191, 0.11950207501649857, 0.1123947724699974, 0.030063573271036148, 0.1210775226354599, 0.0033524015452712774, 0.0035345377400517464, 0.0009526506764814258, 0.0023503759875893593, 0.046079669147729874, 0.11493832617998123], [0.09321621060371399, 0.022234490141272545, 0.051143743097782135, 0.057122860103845596, 0.009956824593245983, 0.05840011686086655, 0.006564661394804716, 0.09109149128198624, 0.26993706822395325, 0.008527032099664211, 0.014413979835808277, 0.011482027359306812, 0.002143146703019738, 0.0029713260009884834, 0.016046395525336266, 0.015013432130217552, 0.26973533630371094], [0.042803239077329636, 0.014748111367225647, 0.051076192408800125, 0.020201250910758972, 0.004679969511926174, 0.023354481905698776, 0.004600305110216141, 0.0502362921833992, 0.3526424765586853, 0.009942014701664448, 0.013681070879101753, 0.0074101281352341175, 0.005489821545779705, 0.008449274115264416, 0.020850056782364845, 0.013680189847946167, 0.3561550974845886], [0.018149415031075478, 0.0329611599445343, 0.06975128501653671, 0.013419806957244873, 0.0017656076233834028, 0.037007421255111694, 0.001938949222676456, 0.08108069747686386, 0.3140479624271393, 0.004590584896504879, 0.01664614863693714, 0.0005911394255235791, 0.0026736888103187084, 0.02962396666407585, 0.056544847786426544, 0.003622097196057439, 0.3155851364135742], [0.01956355944275856, 0.027016250416636467, 0.13853345811367035, 0.008343035355210304, 0.0012429470662027597, 0.03948315605521202, 0.002260174136608839, 0.0677444115281105, 0.2722562253475189, 0.0036843710113316774, 0.01055007055401802, 0.0005664242198690772, 0.0028834156692028046, 0.06952077150344849, 0.061710719019174576, 0.0033693057484924793, 0.271271675825119], [0.06428898125886917, 0.02880546823143959, 0.09898865967988968, 0.1424073874950409, 0.05490938201546669, 0.0940185934305191, 0.018556715920567513, 0.12920494377613068, 0.12412295490503311, 0.02156408131122589, 0.009758148342370987, 0.0064997440204024315, 0.0009732784237712622, 0.003025449812412262, 0.002336277160793543, 0.07398392260074615, 0.12655596435070038], [0.036315545439720154, 0.006136774085462093, 0.016873344779014587, 0.008397938683629036, 0.0034421177115291357, 0.00616659689694643, 0.0016272537177428603, 0.01722121238708496, 0.41913989186286926, 0.012165863066911697, 0.005988001823425293, 0.007207722403109074, 0.006098099984228611, 0.00557590089738369, 0.012698270380496979, 0.01672135479748249, 0.41822412610054016]], [[0.017480259761214256, 0.20148500800132751, 0.03903725743293762, 0.06706959754228592, 0.012287254445254803, 0.013176810927689075, 0.002272723475471139, 0.27102038264274597, 0.18708552420139313, 0.0020295148715376854, 0.0004082861414644867, 9.248564310837537e-05, 0.00010379328887211159, 0.00010172392649110407, 0.0001489232381572947, 0.0038650024216622114, 0.18233542144298553], [0.016926229000091553, 0.06871692836284637, 0.014908969402313232, 0.02210349775850773, 0.003666487755253911, 0.0023261106107383966, 0.0011758703039959073, 0.05407288670539856, 0.41736021637916565, 0.002624241868034005, 0.0006797122769057751, 0.00010801738972077146, 0.00018314596673008054, 0.00021032973018009216, 0.0007358366274274886, 0.001531356479972601, 0.39267027378082275], [0.13162341713905334, 0.5688703060150146, 0.0772111639380455, 0.005058556329458952, 6.459522410295904e-05, 0.00017680223390925676, 0.0001300355070270598, 0.0010197939118370414, 0.11028080433607101, 0.00010029523400589824, 0.0009325147839263082, 2.193685941165313e-05, 0.00010872191342059523, 6.0461050452431664e-05, 0.00017671070236247033, 0.0003205718530807644, 0.10384334623813629], [0.014943387359380722, 0.15152794122695923, 0.03337767720222473, 0.04420100152492523, 0.04978689178824425, 0.0066736130975186825, 0.002962433034554124, 0.025334719568490982, 0.3377862870693207, 0.0003827627224382013, 0.00021558078879024833, 0.0004318539286032319, 0.0004898869665339589, 0.0017401190707460046, 0.000680110533721745, 0.0005245347274467349, 0.32894113659858704], [0.013496278785169125, 0.06256356090307236, 0.09802360087633133, 0.35747820138931274, 0.0443490669131279, 0.018599987030029297, 0.0035999685060232878, 0.011299500241875648, 0.1924462467432022, 7.386571087408811e-05, 0.00017820157518144697, 0.0004630174080375582, 6.960820610402152e-05, 0.0018604402430355549, 0.0007925601094029844, 0.0009891301160678267, 0.19371670484542847], [0.012661732733249664, 0.01475112047046423, 0.03170580789446831, 0.12517398595809937, 0.20579063892364502, 0.029060887172818184, 0.00819248054176569, 0.01069746632128954, 0.2803666591644287, 9.427111217519268e-05, 7.925676618469879e-05, 0.0001329022488789633, 4.380678365123458e-05, 0.000238862368860282, 0.0002338258782401681, 0.0006765327998436987, 0.2800998091697693], [0.005842386279255152, 0.0017539823893457651, 0.005652809515595436, 0.14941003918647766, 0.5916652083396912, 0.1219407394528389, 0.0037342447321861982, 0.004851237405091524, 0.05674576759338379, 2.914754622906912e-05, 5.7750745327211916e-05, 0.00016429985407739878, 3.022764076376916e-06, 0.00011887985601788387, 4.649962647818029e-05, 0.00031188392313197255, 0.05767207220196724], [0.019650772213935852, 0.040749937295913696, 0.017664263024926186, 0.08067885786294937, 0.021262740716338158, 0.03944716602563858, 0.04182502254843712, 0.1251455843448639, 0.3070489168167114, 0.0010175948264077306, 0.0017584979068487883, 6.12578442087397e-05, 0.00023389598936773837, 0.0003069673548452556, 0.0003227578417863697, 0.0037570991553366184, 0.2990686893463135], [0.013733944855630398, 0.026839664205908775, 0.01571626588702202, 0.012752034701406956, 0.005264668259769678, 0.006642777938395739, 0.0037175819743424654, 0.08288726955652237, 0.35747939348220825, 0.027546469122171402, 0.011358617804944515, 0.003480267710983753, 0.008092930540442467, 0.0069106868468225, 0.007899426855146885, 0.05221763253211975, 0.35746023058891296], [0.010016730055212975, 0.0008128750487230718, 0.00013660082186106592, 0.001132918638177216, 0.0006749625317752361, 0.0002507451572455466, 0.00022765566245652735, 0.12235474586486816, 0.36872923374176025, 0.06490994989871979, 0.040692925453186035, 0.0004655596276279539, 0.0004783187177963555, 0.0004585811693686992, 0.0009283209801651537, 0.026849865913391113, 0.36087992787361145], [0.016589360311627388, 0.0012915093684569001, 0.0010521794902160764, 0.000551754143089056, 0.00017932747141458094, 0.0004100268997717649, 0.0002537450345698744, 0.060603126883506775, 0.23340116441249847, 0.357169508934021, 0.0604865588247776, 0.0024894257076084614, 0.0031617896165698767, 0.002296684542670846, 0.006000869441777468, 0.026059865951538086, 0.2280031442642212], [0.012261469848453999, 0.001130763441324234, 0.0007099805516190827, 0.00047054074821062386, 0.0001816151780076325, 4.707575135398656e-05, 2.783210038614925e-05, 0.004106875974684954, 0.3882300555706024, 0.07577414065599442, 0.08262647688388824, 0.003469713730737567, 0.022445926442742348, 0.00809937808662653, 0.009913328103721142, 0.00890932697802782, 0.38159558176994324], [0.006444597151130438, 9.139658504864201e-05, 0.0005467387964017689, 0.0005172885139472783, 0.00024158574524335563, 8.468495070701465e-05, 2.1504802134586498e-05, 0.0009999327594414353, 0.18081440031528473, 0.021489791572093964, 0.015058313496410847, 0.560596227645874, 0.0035930301528424025, 0.02342190593481064, 0.0031429133377969265, 0.004967023618519306, 0.17796869575977325], [0.010958514176309109, 0.0015925709158182144, 0.0017796818865463138, 0.0014066712465137243, 0.00047277554403990507, 0.0001338341971859336, 7.649955659871921e-05, 0.0011293202405795455, 0.38668951392173767, 0.019182046875357628, 0.04777476191520691, 0.035996802151203156, 0.05052071809768677, 0.019790317863225937, 0.01855073869228363, 0.018881184980273247, 0.3850640654563904], [0.02273857221007347, 0.000298291037324816, 0.0024406120646744967, 0.0008683144696988165, 0.0009576916927471757, 0.00039632045081816614, 8.98492507985793e-05, 0.001589466817677021, 0.25167495012283325, 0.016077794134616852, 0.011704719625413418, 0.16532965004444122, 0.032487887889146805, 0.20103679597377777, 0.009229163639247417, 0.023146359249949455, 0.2599335312843323], [0.016290074214339256, 0.002957190154120326, 0.002680645789951086, 0.0015214915620163083, 0.0009634462767280638, 0.0008814203320071101, 0.00016314278764184564, 0.0032475993502885103, 0.26095134019851685, 0.018887383863329887, 0.0353982113301754, 0.012096144258975983, 0.06347209960222244, 0.1776033192873001, 0.08369502425193787, 0.05194621533155441, 0.26724523305892944], [0.013944759033620358, 0.026672909036278725, 0.015988383442163467, 0.012970458716154099, 0.005408325232565403, 0.006646183785051107, 0.0036593861877918243, 0.07993745803833008, 0.35463467240333557, 0.02831931598484516, 0.012103920802474022, 0.0036694647278636694, 0.008654714561998844, 0.0076136114075779915, 0.008814017288386822, 0.055927813053131104, 0.35503455996513367]], [[0.014837761409580708, 0.085702084004879, 0.18005020916461945, 0.06088872253894806, 0.035098619759082794, 0.3227255940437317, 0.025438392534852028, 0.057057935744524, 0.10069388151168823, 0.0037763488944619894, 0.0025825605262070894, 0.0024706560652703047, 0.0010416223667562008, 0.0025366521440446377, 0.00286444672383368, 0.003513069124892354, 0.09872142225503922], [0.0681460052728653, 0.0618312768638134, 0.008035487495362759, 0.01888233795762062, 0.002018442377448082, 0.0022372847888618708, 0.0008813529275357723, 0.035775840282440186, 0.3668569326400757, 0.006882202345877886, 0.044318173080682755, 0.001700531574897468, 0.0014839189825579524, 0.0019607634749263525, 0.004078064113855362, 0.015904247760772705, 0.3590069115161896], [0.03437953442335129, 0.026006393134593964, 0.004117678385227919, 0.004914199933409691, 0.0011157924309372902, 0.0014436618657782674, 0.000660546706058085, 0.04258754476904869, 0.4291918873786926, 0.003527373308315873, 0.009808585979044437, 0.0009844688465818763, 0.001145608490332961, 0.006327305920422077, 0.01049965899437666, 0.0077958861365914345, 0.41549381613731384], [0.03358268365263939, 0.01694011315703392, 0.0019685649313032627, 0.06609854847192764, 0.008756306022405624, 0.003526550717651844, 0.013533340767025948, 0.03698752075433731, 0.30237850546836853, 0.03498884290456772, 0.024515783414244652, 0.01361811999231577, 0.008705361746251583, 0.0022068338003009558, 0.011655578389763832, 0.12867657840251923, 0.2918608784675598], [0.01708546094596386, 0.011726808734238148, 0.0009878892451524734, 0.025934971868991852, 0.015839044004678726, 0.00646226666867733, 0.01318965945392847, 0.045935969799757004, 0.377254456281662, 0.034937478601932526, 0.02187684178352356, 0.0233621746301651, 0.01020959485322237, 0.0018312670290470123, 0.005703664384782314, 0.01857880689203739, 0.36908382177352905], [0.01989579387009144, 0.012307309545576572, 0.0018611198756843805, 0.01515846699476242, 0.021920310333371162, 0.008366244845092297, 0.006554576102644205, 0.088648721575737, 0.38216903805732727, 0.011448659002780914, 0.012523503974080086, 0.008944014087319374, 0.0034896284341812134, 0.004712685476988554, 0.009374471381306648, 0.018231382593512535, 0.37439408898353577], [0.012342882342636585, 0.015963461250066757, 0.0012975179124623537, 0.02431870810687542, 0.004630825947970152, 0.004724858794361353, 0.07893224060535431, 0.05416902154684067, 0.3657701313495636, 0.009526040405035019, 0.007649900391697884, 0.0056343767791986465, 0.0025639834348112345, 0.0005148480995558202, 0.005586004815995693, 0.048142801970243454, 0.35823243856430054], [0.03718230500817299, 0.010838188230991364, 0.006511701736599207, 0.009800695814192295, 0.0037312728818506002, 0.013592066243290901, 0.004582089837640524, 0.13572309911251068, 0.3581139147281647, 0.01870672218501568, 0.009837617166340351, 0.002930890303105116, 0.0020904738921672106, 0.0014542025746777654, 0.0065223355777561665, 0.032493725419044495, 0.34588873386383057], [0.02295801229774952, 0.005564752034842968, 0.008349373936653137, 0.0025019673630595207, 0.00110938074067235, 0.002276431769132614, 0.0017111244378611445, 0.01407159399241209, 0.43465757369995117, 0.010574308224022388, 0.008400256745517254, 0.009340275079011917, 0.005001489073038101, 0.005060956813395023, 0.013823838904500008, 0.028126081451773643, 0.426472544670105], [0.12645843625068665, 0.0052221729420125484, 0.0017872448079288006, 0.002644107211381197, 0.0003394242958165705, 0.0011288061505183578, 0.0002770152350421995, 0.03130936622619629, 0.39704394340515137, 0.011428967118263245, 0.006546787917613983, 0.0014884433476254344, 0.0020279143936932087, 0.002331080846488476, 0.006528398022055626, 0.010533617809414864, 0.3929043114185333], [0.3588545322418213, 0.031942736357450485, 0.004985657054930925, 0.00601204065605998, 0.0005203136242926121, 0.001135090715251863, 0.0003818913537543267, 0.014780141413211823, 0.2593924403190613, 0.011473086662590504, 0.027547687292099, 0.002986195031553507, 0.001712881843559444, 0.0010780958691611886, 0.005659767892211676, 0.015391579829156399, 0.256145715713501], [0.05141183361411095, 0.005684043746441603, 0.00038814410800114274, 0.0077974433079361916, 0.0033770787995308638, 0.0014042012626305223, 0.005024472251534462, 0.014184202067553997, 0.3518980145454407, 0.03468139097094536, 0.01638837531208992, 0.033687639981508255, 0.010603289119899273, 0.0037281420081853867, 0.010846403427422047, 0.0954248234629631, 0.35347044467926025], [0.06809087097644806, 0.0062261177226901054, 0.0013949081767350435, 0.008195164613425732, 0.003362770890817046, 0.003521934151649475, 0.012097174301743507, 0.01836719922721386, 0.36344847083091736, 0.02230188064277172, 0.010080968961119652, 0.018977761268615723, 0.01645754650235176, 0.005641183815896511, 0.011253847740590572, 0.06706871092319489, 0.3635134696960449], [0.10310215502977371, 0.0021119043231010437, 0.0040933191776275635, 0.002918021287769079, 0.0005248342058621347, 0.004524966701865196, 0.00134479277767241, 0.03162737190723419, 0.3795033097267151, 0.00479470007121563, 0.0064110723324120045, 0.0035229807253926992, 0.004907379858195782, 0.008322231471538544, 0.02414313517510891, 0.04080833122134209, 0.37733960151672363], [0.07745686173439026, 0.0014652019599452615, 0.0025874872226268053, 0.001946733333170414, 0.0003650042926892638, 0.0019092512084171176, 0.0019662012346088886, 0.037861742079257965, 0.40340253710746765, 0.005483775865286589, 0.003932313993573189, 0.002706279279664159, 0.00404629111289978, 0.007473548408597708, 0.014809651300311089, 0.032824985682964325, 0.3997621536254883], [0.12622614204883575, 0.006608657538890839, 0.0010806312784552574, 0.011813311837613583, 0.0006925358902662992, 0.0016104583628475666, 0.0064596678130328655, 0.04805987700819969, 0.2834981381893158, 0.01862853765487671, 0.022012902423739433, 0.006029351614415646, 0.004989866632968187, 0.0017491532489657402, 0.009248408488929272, 0.17184071242809296, 0.2794516682624817], [0.023507000878453255, 0.005494833458214998, 0.008005945943295956, 0.002449345076456666, 0.0011147186160087585, 0.0022155079059302807, 0.001679563894867897, 0.013942761346697807, 0.43389892578125, 0.010842311196029186, 0.008559994399547577, 0.00946419220417738, 0.005121259950101376, 0.0051180520094931126, 0.014033717103302479, 0.02873361110687256, 0.4258183240890503]], [[0.00848997849971056, 0.006697371136397123, 0.02224407158792019, 0.001738460618071258, 0.002630590694025159, 0.002615903038531542, 0.001488794689066708, 0.0017919568344950676, 0.2413429468870163, 0.05421631783246994, 0.138983815908432, 0.0561932697892189, 0.029965845867991447, 0.044409897178411484, 0.03141683340072632, 0.11605864018201828, 0.2397153377532959], [0.01825099252164364, 0.026805464178323746, 0.6148292422294617, 0.021728163585066795, 0.025519391521811485, 0.009578576311469078, 0.0033244453370571136, 0.008989238180220127, 0.1351548582315445, 0.000681057688780129, 0.001357431523501873, 0.00125163106713444, 0.0006632592412643135, 0.0010806823847815394, 0.0005186382331885397, 0.0012796970549970865, 0.12898722290992737], [0.011718683876097202, 0.012128150090575218, 0.01166569720953703, 0.009619781747460365, 0.01844712719321251, 0.0011218040017411113, 0.00028493141871877015, 0.0038101940881460905, 0.47031742334365845, 0.0001600809337105602, 0.0009218375198543072, 0.0006701533566229045, 0.0005535040982067585, 0.00033883846481330693, 0.0001901230134535581, 0.0057203322649002075, 0.4523313343524933], [0.00890746247023344, 0.23083403706550598, 0.39969971776008606, 0.004340294282883406, 0.0382809117436409, 0.0687628984451294, 0.0036950879730284214, 0.0031205194536596537, 0.11283029615879059, 0.013321366161108017, 0.002082439372316003, 0.0019242085982114077, 0.0015758576337248087, 0.001667595119215548, 0.0017008399590849876, 0.000729957246221602, 0.10652660578489304], [0.017912723124027252, 0.03370494395494461, 0.0476127490401268, 0.01868375390768051, 0.01692894846200943, 0.14335624873638153, 0.010662405751645565, 0.005335233639925718, 0.35275617241859436, 0.0044158524833619595, 0.0009084834018722177, 0.0009169220575131476, 0.0004780502640642226, 0.0017170432256534696, 0.0029020707588642836, 0.0047433460131287575, 0.33696505427360535], [0.005911227315664291, 0.012780345045030117, 0.010394775308668613, 0.004120598081499338, 0.007990815676748753, 0.003416532650589943, 0.0010815758723765612, 0.0013590577291324735, 0.48404502868652344, 0.00047257557162083685, 0.0013362827012315392, 0.00021733573521487415, 0.00030632695415988564, 0.0001164312707260251, 0.00024130770179908723, 0.0010701542487367988, 0.4651394486427307], [0.002640643622726202, 0.014562993310391903, 0.04752848297357559, 0.0038568938616663218, 0.027922293171286583, 0.839131236076355, 0.0009474137332290411, 0.002863657893612981, 0.029102692380547523, 0.0010849495884031057, 0.0001799976162146777, 0.0002541248104535043, 0.00014488214219454676, 0.0005791639559902251, 0.0006234379834495485, 0.00016335118561983109, 0.02841385081410408], [0.00906453188508749, 0.07517070323228836, 0.08855453878641129, 0.07748658955097198, 0.2896617650985718, 0.20755931735038757, 0.11318142712116241, 0.00893726572394371, 0.057658545672893524, 0.003579361829906702, 0.002044499618932605, 0.0036599847953766584, 0.003470990341156721, 0.0014864244731143117, 0.0013644316932186484, 0.0017540830885991454, 0.05536544695496559], [0.01159619353711605, 0.006290688645094633, 0.0052373409271240234, 0.002823084592819214, 0.0034340755082666874, 0.0026102978736162186, 0.001451929216273129, 0.0034936140291392803, 0.4648189842700958, 0.005440441891551018, 0.013607610948383808, 0.005401376634836197, 0.003911169711500406, 0.002514511113986373, 0.0027889576740562916, 0.009571418166160583, 0.4550081491470337], [0.028502266854047775, 0.00529392808675766, 0.004700710065662861, 0.011198698543012142, 0.012513823807239532, 0.004401367623358965, 0.0038434339221566916, 0.004696730989962816, 0.3300166726112366, 0.042416349053382874, 0.05656822398304939, 0.05021902173757553, 0.016728203743696213, 0.006905470043420792, 0.005496591329574585, 0.09490811824798584, 0.32159021496772766], [0.013376740738749504, 0.014142080210149288, 0.5393674373626709, 0.003383554518222809, 0.0016243438003584743, 0.001295609399676323, 0.0007454454316757619, 0.004174111410975456, 0.14934442937374115, 0.036283187568187714, 0.020287038758397102, 0.012836650013923645, 0.012336392886936665, 0.0054787821136415005, 0.007587513420730829, 0.030229957774281502, 0.1475067138671875], [0.005271125119179487, 0.0014437813078984618, 0.0037885287310928106, 0.00029790872940793633, 0.00033237607567571104, 0.0008875897619873285, 0.00027595151914283633, 0.0013433991698548198, 0.3374556005001068, 0.05397535115480423, 0.0461876317858696, 0.022840747609734535, 0.03349493443965912, 0.031100351363420486, 0.09129539132118225, 0.041359156370162964, 0.3286501467227936], [0.004411994479596615, 0.0007231537019833922, 0.005045815836638212, 0.002173850778490305, 0.0011977687245234847, 0.0027966168709099293, 0.002041046740487218, 0.0029724594205617905, 0.3489231467247009, 0.018506208434700966, 0.01627606712281704, 0.11237353086471558, 0.009774484671652317, 0.036311376839876175, 0.07095467299222946, 0.022027291357517242, 0.34349051117897034], [0.0036374840419739485, 0.0020712895784527063, 0.0020758684258908033, 0.000495396030601114, 0.0013039959594607353, 0.0002867391740437597, 7.446991367032751e-05, 0.0009140112670138478, 0.3891040086746216, 0.013963821344077587, 0.017246467992663383, 0.029554596170783043, 0.04664463549852371, 0.02377084083855152, 0.06745195388793945, 0.02254267781972885, 0.37886160612106323], [0.004389666952192783, 0.002140594646334648, 0.004794787149876356, 0.000491518818307668, 0.0021103057079017162, 0.00046957869199104607, 9.536885045235977e-05, 0.0011313948780298233, 0.2867840826511383, 0.019110489636659622, 0.07317928224802017, 0.1593218594789505, 0.05956564098596573, 0.08013103157281876, 0.01315735187381506, 0.010142222978174686, 0.2829848527908325], [0.009459279477596283, 0.009328803047537804, 0.0075727771036326885, 0.0006119813187979162, 0.0044566732831299305, 0.0007778770523145795, 0.0005679743480868638, 0.0017246439820155501, 0.12649807333946228, 0.08036120235919952, 0.17118582129478455, 0.19206595420837402, 0.07721170783042908, 0.10635712742805481, 0.05623708665370941, 0.030059166252613068, 0.12552385032176971], [0.011580069549381733, 0.006209952756762505, 0.0051584127359092236, 0.0027650215197354555, 0.003446427173912525, 0.002645504428073764, 0.001426133094355464, 0.003419037675485015, 0.4641340672969818, 0.005521963816136122, 0.013870655559003353, 0.005608419422060251, 0.0040552932769060135, 0.002646612236276269, 0.002938727615401149, 0.009850203059613705, 0.4547234773635864]], [[0.010057734325528145, 0.005002036225050688, 0.018494021147489548, 0.006920263636857271, 0.002388333436101675, 0.015272107906639576, 0.0014022223185747862, 0.010757633484899998, 0.44486743211746216, 0.00209295772947371, 0.0028060325421392918, 0.001693354337476194, 0.0025312923826277256, 0.00465938588604331, 0.008705212734639645, 0.02339906431734562, 0.43895095586776733], [0.00963846780359745, 0.029775895178318024, 0.011451346799731255, 0.008635523729026318, 0.008830179460346699, 0.005798475816845894, 0.0024684283416718245, 0.014253785833716393, 0.4656665623188019, 0.0004441560886334628, 0.0004839450994040817, 0.00022090444690547884, 0.0005268919048830867, 0.00014262841432355344, 0.0002728021936491132, 0.0010000448673963547, 0.44038984179496765], [0.029812926426529884, 0.0069160801358520985, 0.04169391840696335, 0.004743122961372137, 0.00613489979878068, 0.002656891942024231, 0.0006393708754330873, 0.0062254429794847965, 0.4592188596725464, 0.00046337631647475064, 0.0006490237428806722, 0.00024718104396015406, 0.0008758771582506597, 0.0007043457590043545, 0.0015771863982081413, 0.0012329698074609041, 0.436208575963974], [0.0022449996322393417, 0.02982807531952858, 0.006583040114492178, 0.00875064730644226, 0.014338579960167408, 0.03789481148123741, 0.009276355616748333, 0.01559943612664938, 0.4464631974697113, 0.0002598173450678587, 0.00013225982547737658, 0.0003473749093245715, 0.00016772405069787055, 0.00035238757845945656, 0.00042191363172605634, 0.00045209721429273486, 0.42688727378845215], [0.005365240853279829, 0.027452701702713966, 0.004356576129794121, 0.0726325660943985, 0.03444398567080498, 0.008861816488206387, 0.002771044382825494, 0.007664002478122711, 0.42534491419792175, 0.0003084332274738699, 0.00010986230336129665, 0.0005706094088964164, 0.000599258579313755, 0.0008192628738470376, 0.0006414668750949204, 0.0006772656342945993, 0.4073808789253235], [0.005453033372759819, 0.007485215086489916, 0.0016480284975841641, 0.01411443017423153, 0.02747797593474388, 0.009071814827620983, 0.0012492149835452437, 0.006488464307039976, 0.4698760509490967, 8.669096132507548e-05, 7.803433254593983e-05, 6.598359323106706e-05, 0.000368508422980085, 0.00031111689168028533, 0.0005133171798661351, 0.0005181719898246229, 0.4551939070224762], [0.0024155965074896812, 0.0036317617632448673, 0.001894674962386489, 0.007689658552408218, 0.13301603496074677, 0.2738424241542816, 0.003468499518930912, 0.009353997185826302, 0.2843243479728699, 6.778785609640181e-05, 5.096849781693891e-05, 0.0001579010277055204, 0.00047663316945545375, 0.00027328458963893354, 0.00018050920334644616, 0.00019660960242617875, 0.278959184885025], [0.007348518818616867, 0.011435589753091335, 0.019765570759773254, 0.07790988683700562, 0.07319408655166626, 0.43297529220581055, 0.04791959375143051, 0.043603118509054184, 0.14156070351600647, 0.000703852332662791, 0.0008035501814447343, 0.00033292590524069965, 0.000763967982493341, 0.0007253350340761244, 0.000616567675024271, 0.001542552257888019, 0.1387988030910492], [0.02268170565366745, 0.007042753044515848, 0.007176578976213932, 0.009017842821776867, 0.005312832072377205, 0.011243489570915699, 0.0037274998612701893, 0.02601756528019905, 0.42067641019821167, 0.009934372268617153, 0.010637120343744755, 0.005114453379064798, 0.006524781696498394, 0.0051660798490047455, 0.008624675683677197, 0.023224569857120514, 0.41787734627723694], [0.0016385697526857257, 0.001389342942275107, 0.0001360930473310873, 0.0016519591445103288, 0.0012623327784240246, 0.021749958395957947, 0.006197582930326462, 0.003028265666216612, 0.44024842977523804, 0.022182554006576538, 0.013732722960412502, 0.006271897349506617, 0.003500771475955844, 0.001067954464815557, 0.004510459024459124, 0.03708958998322487, 0.4343414008617401], [0.00313055538572371, 0.0014671973185613751, 0.00024487977498210967, 0.0007982774404808879, 0.001500700949691236, 0.002637650351971388, 0.0010448562679812312, 0.010068203322589397, 0.35006165504455566, 0.18227675557136536, 0.008268915116786957, 0.016725212335586548, 0.024091625586152077, 0.0025451574474573135, 0.009003991261124611, 0.03464454039931297, 0.35148975253105164], [0.0025075431913137436, 0.00043374294182285666, 0.00016046622477006167, 0.0002566356852184981, 0.0001102826718124561, 0.0001722670713206753, 2.693122223718092e-05, 0.008127672597765923, 0.45517560839653015, 0.03911096602678299, 0.014971334487199783, 0.012246373109519482, 0.008071092888712883, 0.003136136569082737, 0.0019348402274772525, 0.013914392329752445, 0.4396437704563141], [0.003943914547562599, 0.0013398902956396341, 0.00024014421796891838, 0.0005823546671308577, 0.0004198958049528301, 0.0008421209640800953, 0.00043195197940804064, 0.005074279848486185, 0.4111682176589966, 0.05455898120999336, 0.005699012894183397, 0.026465043425559998, 0.03013758733868599, 0.017765892669558525, 0.028048092499375343, 0.015839852392673492, 0.39744284749031067], [0.0018290388397872448, 0.000856737548019737, 0.0008140807040035725, 0.0003104869101662189, 0.00011284205538686365, 0.000292467069812119, 8.136712131090462e-05, 0.0038466425612568855, 0.44877469539642334, 0.01942555606365204, 0.004931693430989981, 0.00954618863761425, 0.010857670567929745, 0.01430565770715475, 0.018236681818962097, 0.026817047968506813, 0.4389609694480896], [0.006906155962496996, 0.0024820035323500633, 0.001469908864237368, 0.0006967110675759614, 0.00025552441366016865, 0.00014752382412552834, 7.985904085217044e-05, 0.005151177756488323, 0.3610455393791199, 0.026672488078475, 0.030713923275470734, 0.013119624927639961, 0.04527655616402626, 0.1075688898563385, 0.020399028435349464, 0.02217903360724449, 0.35583603382110596], [0.004034522455185652, 0.00046107714297249913, 0.0007041665958240628, 0.000661600730381906, 0.0006499440059997141, 0.0005654105334542692, 0.00021424367150757462, 0.004850264173001051, 0.25375962257385254, 0.05407317355275154, 0.008293156512081623, 0.06778424978256226, 0.031225314363837242, 0.17754624783992767, 0.09328951686620712, 0.04399356245994568, 0.25789394974708557], [0.022871652618050575, 0.007005993742495775, 0.007196023594588041, 0.009020509198307991, 0.005459469277411699, 0.011229055002331734, 0.0036002236884087324, 0.025591367855668068, 0.4187258183956146, 0.010436697863042355, 0.01091319415718317, 0.0054810200817883015, 0.006836700718849897, 0.005600787233561277, 0.009205058217048645, 0.024293290451169014, 0.4165331721305847]], [[0.006108490750193596, 0.00048298592446371913, 0.009644691832363605, 0.0010901641799136996, 0.0012856327230110765, 0.0035513541661202908, 0.0003678583016153425, 0.0006273784092627466, 0.017687829211354256, 0.15350079536437988, 0.21495573222637177, 0.017333583906292915, 0.06902571022510529, 0.11868312209844589, 0.1206250712275505, 0.24720345437526703, 0.017826182767748833], [0.03721974790096283, 0.04095926880836487, 0.14490556716918945, 0.06568209081888199, 0.11905517429113388, 0.22005000710487366, 0.07183218002319336, 0.01965632103383541, 0.11881532520055771, 0.004190849605947733, 0.0034088639076799154, 0.006869701202958822, 0.010367468930780888, 0.005993550177663565, 0.006495932582765818, 0.010392483323812485, 0.1141054555773735], [0.07519026100635529, 0.029349684715270996, 0.03602093458175659, 0.051357872784137726, 0.03302657604217529, 0.1732197403907776, 0.020981866866350174, 0.03328615427017212, 0.2525395452976227, 0.004731690511107445, 0.0031023784540593624, 0.007860047742724419, 0.007952983491122723, 0.005466417409479618, 0.008948655799031258, 0.014622583985328674, 0.24234260618686676], [0.050438426434993744, 0.04054679721593857, 0.33494460582733154, 0.02331814356148243, 0.027969859540462494, 0.2162870466709137, 0.03173430636525154, 0.015952864661812782, 0.11285558342933655, 0.003259655088186264, 0.0034685134887695312, 0.0042036669328808784, 0.006843035575002432, 0.004207336809486151, 0.003274918533861637, 0.012310788035392761, 0.10838446021080017], [0.05691436678171158, 0.044992052018642426, 0.39046740531921387, 0.02600630186498165, 0.011247477494180202, 0.1982293426990509, 0.025162890553474426, 0.01811601221561432, 0.08739137649536133, 0.007450995966792107, 0.004557818174362183, 0.0058028195053339005, 0.011403405107557774, 0.0068854414857923985, 0.007046618033200502, 0.014744245447218418, 0.08358140289783478], [0.09177535772323608, 0.033661339432001114, 0.19003207981586456, 0.01771298237144947, 0.009519659914076328, 0.04854452610015869, 0.012874523177742958, 0.020067719742655754, 0.2533319294452667, 0.006392565555870533, 0.004831385798752308, 0.015062008053064346, 0.019236113876104355, 0.007355678826570511, 0.012718730606138706, 0.014451921917498112, 0.24243146181106567], [0.03723860904574394, 0.0865321084856987, 0.26005181670188904, 0.04593465104699135, 0.02298891544342041, 0.18341778218746185, 0.01862463168799877, 0.011491465382277966, 0.1470467895269394, 0.005789309274405241, 0.004849296994507313, 0.00945041049271822, 0.006580303888767958, 0.005731581244617701, 0.007881954312324524, 0.00651024142280221, 0.13988018035888672], [0.02528735063970089, 0.07338886708021164, 0.3010205030441284, 0.09665419161319733, 0.07813757658004761, 0.24917075037956238, 0.04880642890930176, 0.008978785015642643, 0.029446927830576897, 0.004549788311123848, 0.006467815954238176, 0.00832538865506649, 0.012921258807182312, 0.00652841804549098, 0.005633087828755379, 0.01602678745985031, 0.028656112030148506], [0.005942951887845993, 0.0033881994895637035, 0.007797200232744217, 0.002649979665875435, 0.001656738226301968, 0.005419855006039143, 0.001296873320825398, 0.0036795062478631735, 0.4749843180179596, 0.005580626893788576, 0.005660484079271555, 0.003878110321238637, 0.0022622316610068083, 0.0034939160104840994, 0.005023148376494646, 0.004064449109137058, 0.4632215201854706], [0.006474870257079601, 0.0006117824814282358, 0.009809962473809719, 0.0015060602454468608, 0.002500672359019518, 0.0017212096136063337, 0.0006272914470173419, 0.00044546491699293256, 0.020383097231388092, 0.05131588131189346, 0.09697055071592331, 0.08580992370843887, 0.17250189185142517, 0.15189795196056366, 0.14122340083122253, 0.23551951348781586, 0.020680420100688934], [0.01393016055226326, 0.0013729787897318602, 0.009511454030871391, 0.001822108868509531, 0.0023439188953489065, 0.003921179566532373, 0.0011712448904290795, 0.001270924462005496, 0.0745932012796402, 0.06104925274848938, 0.03216121718287468, 0.04262640327215195, 0.10333573073148727, 0.16931265592575073, 0.2219616025686264, 0.1854526549577713, 0.07416332513093948], [0.01863090693950653, 0.004460332449525595, 0.014619794674217701, 0.0020859555806964636, 0.0007908749976195395, 0.0025836671702563763, 0.001338754897005856, 0.002101004356518388, 0.15120112895965576, 0.0440375916659832, 0.09921767562627792, 0.019260209053754807, 0.061059679836034775, 0.10695835202932358, 0.23787152767181396, 0.08528541773557663, 0.14849716424942017], [0.013786058872938156, 0.006823251023888588, 0.017722666263580322, 0.0032359580509364605, 0.0011598821729421616, 0.0031366825569421053, 0.0009321234538219869, 0.0023410385474562645, 0.1785549819469452, 0.05204802379012108, 0.08926312625408173, 0.03960205614566803, 0.0287737138569355, 0.12901489436626434, 0.17477378249168396, 0.08269420266151428, 0.17613764107227325], [0.010521615855395794, 0.0044441260397434235, 0.009941776283085346, 0.0028532410506159067, 0.003599172458052635, 0.008467171341180801, 0.0005294167785905302, 0.0025389876682311296, 0.33173704147338867, 0.04066403582692146, 0.09391944855451584, 0.05924486741423607, 0.05047112703323364, 0.007072144653648138, 0.01549836341291666, 0.03072803094983101, 0.3277694284915924], [0.005421232897788286, 0.0011851878371089697, 0.006782172713428736, 0.0005525992601178586, 0.0009180335327982903, 0.0028074176516383886, 0.00029931095195934176, 0.0015592406271025538, 0.3599278926849365, 0.04040796682238579, 0.09281772375106812, 0.038084808737039566, 0.03996624797582626, 0.01620369590818882, 0.019190222024917603, 0.01750001683831215, 0.3563762903213501], [0.018650809302926064, 0.0021492750383913517, 0.01273356843739748, 0.0012515883427113295, 0.0017890360904857516, 0.006261963862925768, 0.0009159680921584368, 0.001294730114750564, 0.07636277377605438, 0.058753978461027145, 0.10870809108018875, 0.0813615545630455, 0.14224953949451447, 0.15841716527938843, 0.14703968167304993, 0.10503080487251282, 0.07702938467264175], [0.00585370184853673, 0.0032456815242767334, 0.0074389330111444, 0.0025247905869036913, 0.0015582502819597721, 0.005153819918632507, 0.0012307422002777457, 0.003569426015019417, 0.47526243329048157, 0.005695832893252373, 0.005758575163781643, 0.003869175212457776, 0.0022632593754678965, 0.003518057521432638, 0.005080585367977619, 0.004129423294216394, 0.46384739875793457]], [[0.004491069354116917, 0.0027351307217031717, 0.0033803677652031183, 0.005743349902331829, 0.0022395208943635225, 0.0008278143359348178, 0.00034106202656403184, 0.013580447062849998, 0.18483808636665344, 0.11249332129955292, 0.13519611954689026, 0.005843060091137886, 0.0030350645538419485, 0.04950470104813576, 0.023332413285970688, 0.26362738013267517, 0.1887912154197693], [0.00804812740534544, 0.01932227984070778, 0.026770418509840965, 0.6470544338226318, 0.020555930212140083, 0.011104513891041279, 0.012925602495670319, 0.08041491359472275, 0.0513184480369091, 0.004597698338329792, 0.03217235952615738, 0.0010082327062264085, 0.001800397876650095, 0.0059030381962656975, 0.0019013967830687761, 0.025208251550793648, 0.04989396780729294], [0.019066080451011658, 0.044097863137722015, 0.0526462122797966, 0.05110037699341774, 0.0031227064318954945, 0.008649613708257675, 0.004430604167282581, 0.03587121143937111, 0.3683486878871918, 0.001988824922591448, 0.027555108070373535, 0.0006233253516256809, 0.0019463642966002226, 0.008852565661072731, 0.006860843859612942, 0.008148842491209507, 0.3566909432411194], [0.01181622315198183, 0.01627986691892147, 0.014005794189870358, 0.06803689897060394, 0.04136352241039276, 0.060439012944698334, 0.13425949215888977, 0.10341010987758636, 0.2644912004470825, 0.00419637793675065, 0.008456779643893242, 0.002130867913365364, 0.0008287517121061683, 0.004039273597300053, 0.0017279366729781032, 0.009923389181494713, 0.2545944154262543], [0.03295176103711128, 0.00981871783733368, 0.011098244227468967, 0.04524724930524826, 0.031882502138614655, 0.08037003129720688, 0.0789155438542366, 0.13111072778701782, 0.280385285615921, 0.007552378345280886, 0.005483344197273254, 0.002191618550568819, 0.0008577117114327848, 0.001828051288612187, 0.0018603377975523472, 0.011331876739859581, 0.26711463928222656], [0.01984240673482418, 0.003054012544453144, 0.0021687326952815056, 0.005747318267822266, 0.001473750569857657, 0.006713476497679949, 0.0026262446772307158, 0.04381173104047775, 0.4587130844593048, 0.008910521864891052, 0.0016071475110948086, 0.000905586639419198, 0.0007425961666740477, 0.0008714159484952688, 0.0015417730901390314, 0.004404224921017885, 0.4368661344051361], [0.018868526443839073, 0.0023677500430494547, 0.002823382383212447, 0.008436670526862144, 0.007943402975797653, 0.009686744771897793, 0.009699057787656784, 0.043270520865917206, 0.4554607570171356, 0.0033076212275773287, 0.0012700386578217149, 0.0010856080334633589, 0.0010807514190673828, 0.002286955015733838, 0.0016150734154507518, 0.0016566591802984476, 0.4291403591632843], [0.013559774495661259, 0.026531832292675972, 0.015721190720796585, 0.05076306685805321, 0.030098246410489082, 0.01254494022578001, 0.007677183486521244, 0.08505788445472717, 0.3477552533149719, 0.008530913852155209, 0.010583840310573578, 0.0018345118733122945, 0.0012463959865272045, 0.011005932465195656, 0.005545108579099178, 0.029818521812558174, 0.34172528982162476], [0.0128476582467556, 0.0070405807346105576, 0.0043700747191905975, 0.01533160824328661, 0.0027420285623520613, 0.0017848021816462278, 0.0012670168653130531, 0.011103778146207333, 0.4413999915122986, 0.009417522698640823, 0.013258809223771095, 0.005044627469033003, 0.004234619904309511, 0.011044901795685291, 0.005227820947766304, 0.010213804431259632, 0.4436703324317932], [0.013963457196950912, 0.0004852685087826103, 0.00031514567672275007, 0.0010715775424614549, 0.000465469405753538, 0.00011994507076451555, 9.289264562539756e-05, 0.0066409423016011715, 0.10461071133613586, 0.01795988157391548, 0.009873723611235619, 0.005708467215299606, 0.011519615538418293, 0.05709651857614517, 0.060107432305812836, 0.6019048094749451, 0.10806416720151901], [0.009923316538333893, 0.001042229006998241, 0.0028097371105104685, 0.003893047571182251, 0.0002943800063803792, 0.00021249905694276094, 0.00012919773871544749, 0.00298856059089303, 0.10818257927894592, 0.015430368483066559, 0.03214710205793381, 0.008477655239403248, 0.006266812793910503, 0.10698418319225311, 0.06688863039016724, 0.5240752100944519, 0.11025447398424149], [0.017295323312282562, 0.00030550482915714383, 0.00011151922080898657, 0.0005560052231885493, 0.0003936477587558329, 0.0002033496566582471, 8.925401198212057e-05, 0.002276224782690406, 0.2864246070384979, 0.015821443870663643, 0.0031072362326085567, 0.003026719903573394, 0.021945657208561897, 0.10184614360332489, 0.08656800538301468, 0.1685444712638855, 0.29148489236831665], [0.02513893134891987, 0.00035986705916002393, 0.0003152923018205911, 0.0015269137220457196, 0.0006833409424871206, 0.0007534757605753839, 0.0004035881720483303, 0.003052610205486417, 0.3965087831020355, 0.01016230508685112, 0.001222248189151287, 0.015222378075122833, 0.02500336244702339, 0.02272692508995533, 0.04186059907078743, 0.06124873831868172, 0.3938107192516327], [0.018043674528598785, 0.0005647705402225256, 0.00013937160838395357, 0.0004187797021586448, 0.00029265141347423196, 0.00011341588833602145, 6.516977009596303e-05, 0.003693226957693696, 0.40424126386642456, 0.0065319109708070755, 0.003817638847976923, 0.0015745162963867188, 0.01423345785588026, 0.032373636960983276, 0.06914874166250229, 0.03475236892700195, 0.40999534726142883], [0.008435001596808434, 0.0004022587963845581, 0.0004470115527510643, 0.0009707273566164076, 0.000670029257889837, 0.00029795794398523867, 0.0002571486111264676, 0.002384831430390477, 0.42509859800338745, 0.013429762795567513, 0.00517049478366971, 0.0032699573785066605, 0.0110192084684968, 0.023920413106679916, 0.03501049801707268, 0.03921378776431084, 0.43000227212905884], [0.006235255394130945, 0.0008490421460010111, 0.0007377707515843213, 0.0014265619684010744, 0.0005125260213389993, 0.00031963468063622713, 0.000337122764904052, 0.003331746906042099, 0.31864526867866516, 0.019486485049128532, 0.032194584608078, 0.011964375153183937, 0.010498319752514362, 0.08868256956338882, 0.04845643416047096, 0.13580313324928284, 0.32051917910575867], [0.01278546079993248, 0.006674907170236111, 0.004197892267256975, 0.014472641050815582, 0.002629952970892191, 0.0017473259940743446, 0.0012211804278194904, 0.010640420950949192, 0.4423478841781616, 0.009551836177706718, 0.013386709615588188, 0.005114047788083553, 0.004195861052721739, 0.0107945641502738, 0.005213086027652025, 0.010380597785115242, 0.4446457624435425]], [[0.023240748792886734, 0.07953847944736481, 0.16248755156993866, 0.12789462506771088, 0.06906704604625702, 0.27402371168136597, 0.032486360520124435, 0.10435017198324203, 0.05908270180225372, 0.003025195561349392, 0.000730594270862639, 0.000296466751024127, 0.0008506119484081864, 0.0008684821659699082, 0.0012133477721363306, 0.004668611567467451, 0.05617520585656166], [0.06305493414402008, 0.16579696536064148, 0.16351580619812012, 0.11282528191804886, 0.05173748731613159, 0.06269607692956924, 0.03162235766649246, 0.13088737428188324, 0.09096205234527588, 0.005293190944939852, 0.006355307064950466, 0.002758533926680684, 0.005849230568856001, 0.005586117040365934, 0.004126057494431734, 0.010644329711794853, 0.08628882467746735], [0.0837809145450592, 0.08363284170627594, 0.06468788534402847, 0.12506923079490662, 0.007336738519370556, 0.01852007582783699, 0.020320747047662735, 0.2166077196598053, 0.1771128624677658, 0.002309236442670226, 0.0019026253139600158, 0.001240355777554214, 0.001552533358335495, 0.0011545817833393812, 0.003917337395250797, 0.02118201181292534, 0.16967229545116425], [0.023773569613695145, 0.044085659086704254, 0.02132377028465271, 0.08987373858690262, 0.02066689357161522, 0.050990670919418335, 0.05786581337451935, 0.290880411863327, 0.1991594284772873, 0.0029574118088930845, 0.0007944938261061907, 0.0014390898868441582, 0.0016552872257307172, 0.0007095510372892022, 0.0009399499394930899, 0.003165513277053833, 0.1897188276052475], [0.010321545414626598, 0.06656690686941147, 0.005372785963118076, 0.0869201123714447, 0.007539425976574421, 0.019194528460502625, 0.046659961342811584, 0.3537028133869171, 0.20210368931293488, 0.0024764856789261103, 0.0008285234798677266, 0.0009028236963786185, 0.0011658631265163422, 0.0003240696096327156, 0.0003809835761785507, 0.0014742979547008872, 0.19406522810459137], [0.01850607432425022, 0.022093243896961212, 0.005990950856357813, 0.07804959267377853, 0.013770654797554016, 0.019559694454073906, 0.028089921921491623, 0.29072460532188416, 0.2574850618839264, 0.00461789732798934, 0.0008781043579801917, 0.0026221054140478373, 0.0015305732376873493, 0.000263807422015816, 0.0005275693256407976, 0.0028601663652807474, 0.25242987275123596], [0.010967651382088661, 0.02457348257303238, 0.010869220830500126, 0.038812778890132904, 0.009671305306255817, 0.0210882555693388, 0.0425233393907547, 0.22441640496253967, 0.31072431802749634, 0.0015137724112719297, 0.0008567758486606181, 0.0009829149348661304, 0.000794274965301156, 0.00040636619087308645, 0.0005918711540289223, 0.0012872687075287104, 0.299919992685318], [0.08603475987911224, 0.07631687819957733, 0.19062742590904236, 0.04701632633805275, 0.05650255084037781, 0.08549165725708008, 0.01968248188495636, 0.2152814269065857, 0.08952372521162033, 0.014798171818256378, 0.006798931863158941, 0.0013256615493446589, 0.00314573897048831, 0.002213665982708335, 0.006497263442724943, 0.0140540087595582, 0.08468930423259735], [0.008603562600910664, 0.002590964548289776, 0.004649112932384014, 0.00249645602889359, 0.0009996596490964293, 0.00149826449342072, 0.000688537722453475, 0.006989079527556896, 0.4781118333339691, 0.001995021477341652, 0.002414325950667262, 0.0019218079978600144, 0.002220926573500037, 0.0029377357568591833, 0.003877513576298952, 0.007813812233507633, 0.4701915383338928], [0.007183087058365345, 0.006589315831661224, 0.00023044638510327786, 0.005280859302729368, 0.001204530242830515, 0.0007620027172379196, 0.0018218496115878224, 0.02877768501639366, 0.29163217544555664, 0.11342033743858337, 0.03470993787050247, 0.012133374810218811, 0.007591197732836008, 0.012843171134591103, 0.01481074932962656, 0.15937325358390808, 0.3016361594200134], [0.033366575837135315, 0.023267026990652084, 0.012330911122262478, 0.008179254829883575, 0.001280084135942161, 0.0062731290236115456, 0.005200493149459362, 0.027896197512745857, 0.14378948509693146, 0.062079593539237976, 0.09295963495969772, 0.03584771230816841, 0.02228175662457943, 0.04181826859712601, 0.03472179174423218, 0.30199241638183594, 0.14671552181243896], [0.010625152848660946, 0.005256202537566423, 0.0009470693184994161, 0.004724381025880575, 0.0012652622535824776, 0.0022165272384881973, 0.002361852675676346, 0.023172251880168915, 0.32786795496940613, 0.09001118689775467, 0.03241894394159317, 0.023855891078710556, 0.028070909902453423, 0.013477046974003315, 0.02820405922830105, 0.06700853258371353, 0.33851683139801025], [0.008823768235743046, 0.007817736826837063, 0.002042504260316491, 0.007765134330838919, 0.0010390295647084713, 0.002331737894564867, 0.0037329283077269793, 0.03326355293393135, 0.3777431845664978, 0.03730939328670502, 0.017716044560074806, 0.021334825083613396, 0.0055310423485934734, 0.009275105781853199, 0.02409231849014759, 0.055510055273771286, 0.384671688079834], [0.027654128149151802, 0.00817696750164032, 0.004897586070001125, 0.005371118430048227, 0.0011204412439838052, 0.0036508420016616583, 0.005585335195064545, 0.019509349018335342, 0.22746598720550537, 0.07751960307359695, 0.06560271233320236, 0.05746680870652199, 0.06440310925245285, 0.016676539555191994, 0.06264568120241165, 0.12247893214225769, 0.22977489233016968], [0.0202791690826416, 0.005424231290817261, 0.0020729340612888336, 0.004089755471795797, 0.0003064309130422771, 0.0012946876231580973, 0.0028918322641402483, 0.022143656387925148, 0.29434025287628174, 0.021033572033047676, 0.02933582291007042, 0.035342998802661896, 0.03934631496667862, 0.031098520383238792, 0.06976334750652313, 0.12475145608186722, 0.296485036611557], [0.028809547424316406, 0.011441226117312908, 0.002548227086663246, 0.005870056804269552, 0.0010272151557728648, 0.0027636445593088865, 0.0021110731177031994, 0.03761543333530426, 0.19905677437782288, 0.12257896363735199, 0.1416686326265335, 0.022098811343312263, 0.031208565458655357, 0.024952851235866547, 0.023615265265107155, 0.13706472516059875, 0.20556896924972534], [0.008588515222072601, 0.00250594737008214, 0.004519786685705185, 0.002356642158702016, 0.0009649667190387845, 0.001457498176023364, 0.0006640133797191083, 0.006693936884403229, 0.47765469551086426, 0.002148671308532357, 0.0025937519967556, 0.0020521855913102627, 0.002333240583539009, 0.003032693872228265, 0.003999465610831976, 0.008252416737377644, 0.4701816439628601]], [[0.000982114695943892, 0.004091165028512478, 0.004939687438309193, 0.0011691843392327428, 0.0004179372626822442, 0.00024837313685566187, 0.00017504821880720556, 0.003871886059641838, 0.3642014265060425, 0.07570024579763412, 0.11817161738872528, 0.0011959581170231104, 0.0028538990300148726, 0.0026068768929690123, 0.006106139626353979, 0.054107941687107086, 0.35916051268577576], [0.006770129781216383, 0.040091175585985184, 0.5720412135124207, 0.05853549391031265, 0.015804467722773552, 0.00623184023424983, 0.000941671896725893, 0.0031304596923291683, 0.1481103152036667, 0.00018110869859810919, 0.0006976760923862457, 0.00011162082228111103, 0.00012310886813793331, 0.0004759879957418889, 0.0004055437457282096, 0.0005344916135072708, 0.1458137184381485], [0.01749485358595848, 0.02916434407234192, 0.02090737409889698, 0.07360083609819412, 0.019484400749206543, 0.008984182961285114, 0.004194698296487331, 0.012607067823410034, 0.4014410078525543, 0.00032298368751071393, 0.0004531797021627426, 0.00012644869275391102, 0.00033590340171940625, 0.001052728621289134, 0.0009646816179156303, 0.004289843607693911, 0.4045754671096802], [0.0065080225467681885, 0.01719985343515873, 0.020139502361416817, 0.021763848140835762, 0.12448582798242569, 0.10734974592924118, 0.01601879484951496, 0.018105080351233482, 0.3265039026737213, 7.600667595397681e-05, 0.000768825993873179, 8.489628089591861e-05, 0.0001785384665708989, 0.00040724262362346053, 0.00041737905121408403, 0.0008389552822336555, 0.33915355801582336], [0.005324306432157755, 0.0034710955806076527, 0.006156086456030607, 0.04033822566270828, 0.05107131227850914, 0.2590765058994293, 0.08856496214866638, 0.04075836390256882, 0.2466021478176117, 0.0002618652652017772, 0.0005048560560680926, 5.357438567443751e-05, 0.0004163106787018478, 0.0003822004946414381, 0.0024052902590483427, 0.004948529880493879, 0.24966426193714142], [0.008354321122169495, 0.00320628029294312, 0.004300081171095371, 0.014493655413389206, 0.014988232403993607, 0.02075227163732052, 0.05375239998102188, 0.15388235449790955, 0.3635590374469757, 0.0005612139939330518, 0.0017769794212654233, 2.2496307792607695e-05, 2.2088916011853144e-05, 6.533411215059459e-05, 0.00019873524433933198, 0.0019323339220136404, 0.35813212394714355], [0.005989552941173315, 0.000805228017270565, 0.0006162141798995435, 0.006485061254352331, 0.006694117095321417, 0.01136291865259409, 0.0027206800878047943, 0.19496288895606995, 0.3921332359313965, 0.0001232411159435287, 0.00018664235540200025, 1.6475127267767675e-05, 1.0163040315092076e-05, 8.045938557188492e-06, 2.573806887085084e-05, 0.0002803881361614913, 0.37757956981658936], [0.0021146731451153755, 0.00940559059381485, 0.00040572191937826574, 0.002102120313793421, 0.00087406812235713, 0.0010750140063464642, 0.001744489069096744, 0.021776355803012848, 0.47649356722831726, 0.03664303570985794, 0.006693859584629536, 0.000755955115891993, 0.0003247038403060287, 7.903648656792939e-05, 0.00012029314530082047, 0.0013174255145713687, 0.438073992729187], [0.02279108576476574, 0.023942915722727776, 0.01632073149085045, 0.008830530568957329, 0.003411548212170601, 0.0035038383211940527, 0.0020042245741933584, 0.025177041068673134, 0.40080955624580383, 0.03297889977693558, 0.02413228526711464, 0.005460791289806366, 0.005110255908221006, 0.003336946479976177, 0.005129239056259394, 0.026923280209302902, 0.3901367783546448], [0.0020170698408037424, 0.0008203468169085681, 0.0009687605779618025, 0.00016548443818464875, 1.966808304132428e-05, 2.170368497900199e-05, 1.7034979464369826e-05, 0.0006240619695745409, 0.2446744292974472, 0.12617836892604828, 0.2800847589969635, 0.0474822111427784, 0.01788557693362236, 0.010361931286752224, 0.0063131884671747684, 0.016214484348893166, 0.2461508959531784], [0.003918275237083435, 0.00034542419598437846, 0.00067752948962152, 0.0005303944344632328, 0.00014931897749193013, 6.736755312886089e-05, 5.1306968089193106e-05, 0.0017923499690368772, 0.3823898732662201, 0.022699471563100815, 0.02205655351281166, 0.06332850456237793, 0.02990773320198059, 0.030130116268992424, 0.017780542373657227, 0.03620373085141182, 0.3879714608192444], [0.0018869866617023945, 0.00017940874386113137, 0.0012492379173636436, 0.0003119969042018056, 9.89115287666209e-05, 3.0359014999703504e-05, 1.6386160496040247e-05, 0.00038734349072910845, 0.17270058393478394, 0.006391515955328941, 0.027016859501600266, 0.01094605028629303, 0.459575355052948, 0.03604191169142723, 0.059415191411972046, 0.04751691222190857, 0.1762349158525467], [0.0027314627077430487, 0.00019612615869846195, 0.0008190465741790831, 0.0019603949040174484, 0.0001202166240545921, 0.00015853694640100002, 4.0470415115123615e-05, 0.001131771132349968, 0.2684919238090515, 0.005442818161100149, 0.012507056817412376, 0.02179448865354061, 0.0248956810683012, 0.09579593688249588, 0.15712997317314148, 0.132270947098732, 0.27451324462890625], [0.004733952693641186, 0.00029556226218119264, 0.0008470766479149461, 0.0033797835931181908, 0.0016139313811436296, 0.00024948103236965835, 0.00015229708515107632, 0.002880000276491046, 0.24154411256313324, 0.0020931996405124664, 0.005377753172069788, 0.005055051762610674, 0.010699550621211529, 0.026457147672772408, 0.07186821103096008, 0.36919134855270386, 0.25356152653694153], [0.008436399511992931, 0.0003944433992728591, 0.0006710233283229172, 0.0019352240487933159, 0.0013254010118544102, 0.00017852858582045883, 0.0001184404463856481, 0.004959569778293371, 0.32671627402305603, 0.003515776712447405, 0.005910769104957581, 0.0023301499895751476, 0.0009229655261151493, 0.006790416315197945, 0.005160048604011536, 0.2907657325267792, 0.3398687541484833], [0.0015784422867000103, 0.0002764534729067236, 6.207280966918916e-05, 0.00012852295185439289, 0.00013409389066509902, 6.685530388494954e-05, 1.4973677934904117e-05, 0.00055623275693506, 0.47241654992103577, 0.0062804329209029675, 0.0037998200859874487, 0.0007399527239613235, 0.00010288133489666507, 0.0009065078338608146, 0.0009333392954431474, 0.00892754178494215, 0.5030752420425415], [0.02283552475273609, 0.02228902280330658, 0.016071077436208725, 0.008608848787844181, 0.003482910804450512, 0.003652083920314908, 0.002056853612884879, 0.024583343416452408, 0.4017147123813629, 0.032261256128549576, 0.02376566268503666, 0.00534425862133503, 0.005090110935270786, 0.003414693521335721, 0.005372276995331049, 0.027864601463079453, 0.39159271121025085]]], [[[3.7261415286593547e-07, 3.222988380002789e-05, 2.1976880816509947e-05, 7.972150797286304e-07, 3.978600915388597e-08, 6.765957095922204e-06, 1.1826134738157634e-08, 0.00016382770263589919, 0.49526330828666687, 3.740987253308958e-08, 3.211378327705461e-07, 6.937708185716929e-09, 1.113583010525776e-11, 3.039694718154351e-09, 7.562473980371465e-10, 7.514056221680221e-08, 0.5045101642608643], [2.4386691777067426e-08, 0.0011898259399458766, 0.9977213740348816, 6.672040035482496e-05, 2.0240988760633627e-06, 1.00907727755839e-05, 1.5420846821712075e-09, 1.8474871410489868e-08, 0.0005069724866189063, 6.589774559362382e-11, 5.7181419599317e-09, 1.4601390097013223e-09, 4.4432074020051004e-08, 2.2959119050369736e-09, 6.537946850571075e-10, 1.0630875069139734e-09, 0.0005028883460909128], [1.4852690810585045e-07, 1.246831288881367e-05, 4.1484221583232284e-05, 0.9986849427223206, 7.25875406715204e-06, 2.363831299589947e-06, 2.3903021784121847e-08, 5.352884500098298e-07, 0.0006439454737119377, 3.0372256359240124e-12, 7.303600085828421e-11, 2.5988408647315e-10, 4.88320772706885e-11, 5.637434696836863e-08, 5.461978247467414e-08, 1.4145443856250495e-06, 0.0006053330725990236], [5.53762424804205e-10, 1.0791179647640092e-06, 1.1149166994073312e-06, 1.9628765585366637e-05, 0.9962438344955444, 0.0037225347477942705, 6.1436082887667e-08, 2.9457176253799844e-08, 5.630980467685731e-06, 4.7451619185606003e-14, 1.9717025321469572e-12, 1.235864383920815e-12, 3.0372889533308856e-12, 2.6449308021536666e-11, 2.049460427755445e-12, 1.1233368679697264e-09, 6.0491220210678875e-06], [2.1145132519939658e-11, 1.3640261142811028e-09, 2.100065103149973e-06, 2.3976385818968993e-06, 0.001124573522247374, 0.9988652467727661, 1.8541946644745622e-07, 2.5892024080320653e-09, 2.6765630991576472e-06, 1.0314777596507133e-14, 2.467993969184224e-15, 4.917058446063209e-14, 6.861952846215491e-12, 1.0769500569107748e-10, 5.7983628315438906e-11, 3.320865457623334e-11, 2.7329479053150862e-06], [6.539127746230111e-12, 3.2532457630574108e-12, 2.8948669850148434e-11, 1.1665697297047473e-09, 2.4565700168510674e-11, 1.9457364430763846e-07, 0.9999946355819702, 4.988308319298085e-06, 9.613298601607312e-08, 2.918147494479495e-13, 1.3918184503134909e-14, 2.525621775514151e-19, 1.1193925036950416e-18, 1.6104017040686598e-17, 4.490480456551503e-14, 5.975308789429867e-12, 9.181178484141128e-08], [3.490912073300656e-11, 2.038438168261436e-11, 1.072288004916322e-11, 7.56949347646696e-09, 4.0809530234275915e-12, 1.068536107595719e-06, 0.00015022858860902488, 0.9998425245285034, 3.1012702947919024e-06, 3.3899256015115786e-13, 2.76252754785616e-16, 8.467104760623754e-20, 1.786232878675188e-20, 6.642720231221392e-18, 3.124306860452378e-15, 1.8195808193510743e-09, 2.999131083925022e-06], [3.9280561026089345e-09, 4.40032672486268e-05, 4.387047614073936e-09, 2.585681224687164e-09, 3.2712735298368045e-11, 2.2498031881923453e-08, 4.915975959640662e-10, 0.00041482673259451985, 0.5418294668197632, 0.002193771069869399, 1.8509306087821642e-08, 4.306588505947895e-12, 6.141861046831553e-17, 3.121117887285084e-16, 8.327319817860376e-15, 5.5383850283696745e-11, 0.4555179178714752], [0.0018904717871919274, 0.0026074456982314587, 0.0023896945640444756, 0.0009480819571763277, 0.00010249244223814458, 0.0004825378127861768, 3.3532203815411776e-05, 0.0020040026865899563, 0.49977996945381165, 0.0020556191448122263, 0.0033260819036513567, 0.0006128359236754477, 1.9764953322010115e-05, 0.0003356840752530843, 0.00031012206454761326, 0.0011823587119579315, 0.4819193184375763], [5.5900110929041347e-11, 5.489450671802842e-09, 4.5048097196964676e-11, 7.679462263581599e-14, 5.003851794585989e-15, 3.4032084333772417e-13, 1.7472556672446134e-14, 6.379510201354188e-12, 9.338275958725717e-06, 4.860562512476463e-06, 0.9999747276306152, 1.3033870800427394e-06, 2.6354447513199375e-09, 3.655958313864005e-10, 1.089804288478824e-11, 2.0741530021295418e-11, 9.709798177937046e-06], [3.0310332022054354e-07, 4.0704941284275264e-07, 2.063020758669154e-07, 1.2044509389852465e-08, 2.7207588959576867e-10, 2.9160379666492986e-10, 5.283444919090309e-14, 1.134775118316611e-08, 0.00834314152598381, 8.059894753387198e-05, 0.005084274336695671, 0.927973210811615, 0.048550404608249664, 0.0013918058248236775, 2.7358555598766543e-06, 3.4393863757031795e-07, 0.008572385646402836], [1.8136387574044233e-12, 4.380151623351036e-12, 2.2198569371578714e-10, 9.926656935679845e-15, 1.4419840104959447e-13, 9.505274985079776e-15, 1.7461437641582615e-19, 8.140769135973301e-18, 2.9086921315979453e-08, 1.5901915201288475e-11, 9.64218713761511e-08, 3.8658194512208865e-07, 0.9999967813491821, 2.142684934369754e-06, 5.351345748749736e-07, 2.2377740285794978e-11, 2.9111786759017377e-08], [1.7336019286773308e-09, 2.91932877871659e-09, 9.984889857150847e-07, 4.1409612094867043e-07, 3.302599946991558e-12, 4.7198887159760616e-11, 5.369033871465388e-14, 1.08984356261832e-10, 0.00017371562717016786, 1.8614059182908704e-09, 5.438069479168917e-07, 0.0009472542442381382, 1.4865820958220866e-05, 0.973537802696228, 0.024571465328335762, 0.0005725330556742847, 0.00018050771905109286], [1.9958056540758662e-08, 3.4345565280702317e-10, 4.64573872704932e-07, 3.787027225143902e-08, 2.4788260333252765e-09, 1.061526333501206e-08, 4.363850947264325e-11, 9.337582790314158e-11, 0.0031896645668894053, 1.1463789917343092e-08, 2.4626398698046614e-08, 2.8149049740022747e-06, 0.0001039750495692715, 0.00037147573311813176, 0.991554319858551, 0.0016060750931501389, 0.0031711491756141186], [8.44365430907601e-08, 2.1463577581926074e-09, 8.311811683370252e-08, 4.572948739678395e-07, 6.729678481143253e-10, 6.209824321423696e-10, 3.065240727906371e-09, 3.0237828241297393e-07, 0.005005085840821266, 2.0744550965900999e-07, 7.683606639830032e-08, 2.945804988829792e-10, 1.979439012700368e-08, 4.18948802689556e-05, 0.0003109700046479702, 0.989566445350647, 0.005074354819953442], [3.063812759052098e-09, 1.3592878644885786e-07, 1.2898936141425565e-08, 2.1179507037061285e-09, 4.562449973377625e-08, 2.579345803610522e-08, 8.326400007842294e-13, 4.925895495944133e-07, 0.4880203604698181, 1.9707320007000817e-06, 7.449017402905156e-09, 1.3098072973449781e-11, 1.2642247105675974e-14, 5.824303817014709e-10, 2.3212118893667366e-09, 0.0003028100181836635, 0.511674165725708], [0.0018656085012480617, 0.0025325578171759844, 0.002368832705542445, 0.0009074422414414585, 0.0001072189916158095, 0.0004995720810256898, 3.179698614985682e-05, 0.0018877851543948054, 0.4999793767929077, 0.002010409953072667, 0.0032622325234115124, 0.0006183038931339979, 2.003933332161978e-05, 0.00034324248554185033, 0.0003153206780552864, 0.0011667012004181743, 0.4820835590362549]], [[0.0031687787268310785, 0.0021072241943329573, 0.0009463902679271996, 0.00277671217918396, 0.0005172099336050451, 0.002292200457304716, 0.0003313654160592705, 0.0021580031607300043, 0.06574764847755432, 0.6438615322113037, 0.04106004908680916, 0.0467059351503849, 0.016375252977013588, 0.04054352268576622, 0.010232903994619846, 0.05405689403414726, 0.06711835414171219], [0.007784616202116013, 0.03844992816448212, 0.3426261246204376, 0.0698457658290863, 0.028900451958179474, 0.030795125290751457, 0.004827134311199188, 0.020057201385498047, 0.22330595552921295, 0.002653072588145733, 0.0019380440935492516, 0.0010743284365162253, 0.0005326402024365962, 0.0011532068019732833, 0.0005938852555118501, 0.003066868055611849, 0.222395658493042], [0.0031111501157283783, 0.004433536436408758, 0.006661070045083761, 0.005048063118010759, 0.002987812040373683, 0.0036905640736222267, 0.001532705151475966, 0.008228489197790623, 0.48094525933265686, 0.001087543903850019, 0.0008998917764984071, 0.0006031688535586, 0.0004564943665172905, 0.0007406265358440578, 0.0006603269721381366, 0.0021899729035794735, 0.476723313331604], [0.009134180843830109, 0.023849118500947952, 0.01980331540107727, 0.00792919285595417, 0.08268915861845016, 0.3063957691192627, 0.1324813961982727, 0.033980075269937515, 0.17825734615325928, 0.008773121051490307, 0.002051224699243903, 0.0028216890059411526, 0.004565601237118244, 0.004844783805310726, 0.002173337386921048, 0.0015979105373844504, 0.1786527931690216], [0.0033792974427342415, 0.003261215751990676, 0.001668277196586132, 0.005956524051725864, 0.025913964956998825, 0.2673491835594177, 0.24290718138217926, 0.008580110035836697, 0.21558590233325958, 0.003495622193440795, 0.001015661284327507, 0.0008783711236901581, 0.0019982093945145607, 0.0005529147456400096, 0.0004996185889467597, 0.0006683977553620934, 0.216289684176445], [0.006898961961269379, 0.002756655914708972, 0.002344513079151511, 0.001128703006543219, 0.002137027448043227, 0.006188714411109686, 0.004916543606668711, 0.013192027807235718, 0.47812193632125854, 0.0020387747790664434, 0.0024558338336646557, 0.0003375773085281253, 0.000317808473482728, 0.0004023729416076094, 0.00030882220016792417, 0.0007135040941648185, 0.4757401943206787], [0.011171341873705387, 0.003672228893265128, 0.0013586024288088083, 0.0016394970007240772, 0.009315996430814266, 0.05581178143620491, 0.0144527992233634, 0.01816549152135849, 0.4430449604988098, 0.0007274269592016935, 0.001332490355707705, 0.0002902174019254744, 0.0003721984685398638, 0.00020304735517129302, 0.00010823544289451092, 0.0001696606632322073, 0.4381638467311859], [0.0615169033408165, 0.020606184378266335, 0.003415802726522088, 0.02264251932501793, 0.014627281576395035, 0.011750688776373863, 0.003223121864721179, 0.07565398514270782, 0.338276743888855, 0.06219317764043808, 0.01544131338596344, 0.010523424483835697, 0.004260147921741009, 0.0021767974831163883, 0.002337446203455329, 0.01583000086247921, 0.33552438020706177], [0.013904713094234467, 0.006687380839139223, 0.01368147972971201, 0.006337393075227737, 0.0022896481677889824, 0.004136144183576107, 0.0010569773148745298, 0.008383078500628471, 0.4509871006011963, 0.012893562205135822, 0.007830215618014336, 0.003152543446049094, 0.0021458270493894815, 0.004008903633803129, 0.003495629411190748, 0.010987005196511745, 0.4480225741863251], [0.009342015720903873, 0.0005970665370114148, 0.0016270920168608427, 0.0008652874385006726, 0.00021021503198426217, 0.0008255654247477651, 5.688759847544134e-05, 0.0006628589471802115, 0.2532263994216919, 0.06279492378234863, 0.04000402241945267, 0.10017304122447968, 0.03889627754688263, 0.10627750307321548, 0.06585460156202316, 0.060199279338121414, 0.25838688015937805], [0.00470384256914258, 0.00025547738187015057, 0.001014219131320715, 0.0006298162043094635, 0.00017429704894311726, 0.00048186612548306584, 3.7683381378883496e-05, 0.0008605144685134292, 0.4193834662437439, 0.019610490649938583, 0.014176217839121819, 0.020950602367520332, 0.016732197254896164, 0.021587757393717766, 0.020667394623160362, 0.03181454911828041, 0.426919549703598], [0.005506251938641071, 0.00016714820230845362, 0.0006694486946798861, 5.820449223392643e-05, 6.0141283029224724e-05, 0.0006462655728682876, 5.355328903533518e-05, 0.00023431392037309706, 0.43320852518081665, 0.0037796704564243555, 0.005220563150942326, 0.005452694837003946, 0.02280672825872898, 0.031833767890930176, 0.04400983080267906, 0.009591441601514816, 0.43670135736465454], [0.0028302576392889023, 0.00018466179608367383, 0.00043115936568938196, 6.672646850347519e-05, 6.347324961097911e-05, 0.0007406906806863844, 0.00013406721700448543, 0.0007323641330003738, 0.4349660575389862, 0.005022261757403612, 0.012043071910738945, 0.004549701232463121, 0.006130059715360403, 0.022899653762578964, 0.06324814260005951, 0.006689904723316431, 0.4392678737640381], [0.0034591418225318193, 0.0001908911654027179, 0.0007750068325549364, 0.00028781365836039186, 6.777868838980794e-05, 0.0008258150774054229, 9.748530283104628e-05, 0.0006033903337083757, 0.4620514512062073, 0.011492528952658176, 0.005856774281710386, 0.0018466287292540073, 0.0012969066156074405, 0.007690042722970247, 0.017925282940268517, 0.019632447510957718, 0.46590057015419006], [0.00377830071374774, 0.00018883163284044713, 0.00120546855032444, 0.0001869543775683269, 4.318389983382076e-05, 0.0004842808411922306, 6.236963963601738e-05, 0.0004986025160178542, 0.47327324748039246, 0.005997870117425919, 0.003884568577632308, 0.0007923234952613711, 0.000982806202955544, 0.005837774369865656, 0.008305312134325504, 0.014881394803524017, 0.4795967638492584], [0.005138145759701729, 0.0006547124939970672, 0.00031399898580275476, 0.001303725061006844, 0.0004753138346131891, 0.001763355452567339, 0.00027513381792232394, 0.0016112664015963674, 0.4652751088142395, 0.009864411316812038, 0.009711635299026966, 0.002187425969168544, 0.0009307116852141917, 0.006786013953387737, 0.010836858302354813, 0.011738604865968227, 0.4711337387561798], [0.013840503990650177, 0.006591174751520157, 0.013618766330182552, 0.006268083117902279, 0.002270481549203396, 0.004129382781684399, 0.0010570719605311751, 0.008326280862092972, 0.45110708475112915, 0.012794177047908306, 0.007879385724663734, 0.003156723454594612, 0.0021648616530001163, 0.004040877800434828, 0.0035543092526495457, 0.011032868176698685, 0.4481678307056427]], [[0.004646711051464081, 0.02769767865538597, 0.018233714625239372, 0.0135768111795187, 0.013318194076418877, 0.053658414632081985, 0.011534101329743862, 0.03239040821790695, 0.39864856004714966, 0.009872550144791603, 0.0030370792374014854, 0.004227162338793278, 0.0005076945526525378, 0.0012006046017631888, 0.0015230132266879082, 0.005872041452676058, 0.4000552296638489], [0.0030200525652617216, 0.015542035922408104, 0.03529181331396103, 0.24123111367225647, 0.004646776709705591, 0.008606866002082825, 0.0007329742657020688, 0.003434254787862301, 0.33983224630355835, 0.0016027145320549607, 0.00038751622196286917, 0.0007601724937558174, 0.0010024802759289742, 0.00017135724192485213, 0.0004500047070905566, 0.008400284685194492, 0.3348873257637024], [0.00117931526619941, 0.009039977565407753, 0.006407999433577061, 0.0024088541977107525, 0.0008406472043134272, 0.0003036821726709604, 0.00010241178824799135, 0.0008063734858296812, 0.4865339696407318, 0.0006006041658110917, 0.0006850181962363422, 0.0003370451449882239, 0.0001005050289677456, 0.00025179461226798594, 0.0005235635908320546, 0.001439388026483357, 0.4884389042854309], [0.0006322811241261661, 0.013885417953133583, 0.03904265537858009, 0.02093936875462532, 0.016451114788651466, 0.10240742564201355, 0.0029610719066113234, 0.008978908881545067, 0.39699795842170715, 0.0006929365335963666, 9.564725769450888e-05, 0.00032427359838038683, 0.0003493450058158487, 0.00019777752459049225, 0.0002632479299791157, 0.0052959490567445755, 0.39048466086387634], [0.0005937740206718445, 0.0065855649299919605, 0.0012340358225628734, 0.02115865796804428, 0.0045451815240085125, 0.10851363837718964, 0.002723093843087554, 0.004589584190398455, 0.4261760413646698, 0.00048638577573001385, 3.7827634514542297e-05, 7.17494694981724e-05, 0.00011375904432497919, 8.189241634681821e-05, 0.0002782107039820403, 0.002025419380515814, 0.42078515887260437], [0.0014794886810705066, 0.004135075956583023, 0.0005052487249486148, 0.004656696692109108, 0.00471864826977253, 0.011638039723038673, 0.05843871086835861, 0.006999869365245104, 0.45093467831611633, 0.002576622413471341, 0.0004004511865787208, 0.0001797809381969273, 4.0434664697386324e-05, 0.0001752369716996327, 0.00027377723017707467, 0.0037011492531746626, 0.44914600253105164], [0.00045148268691264093, 0.006556532345712185, 0.002436431823298335, 0.013392260298132896, 0.013839494436979294, 0.5427978038787842, 0.009187949821352959, 0.02432774379849434, 0.1913284957408905, 0.0029970393516123295, 1.4134778211882804e-05, 3.397305044927634e-05, 4.923252708977088e-05, 7.818665471859276e-05, 0.00011753539001801983, 0.0027835711371153593, 0.1896081417798996], [0.004975053481757641, 0.005287251900881529, 0.0010606514988467097, 0.008493514731526375, 0.009217924438416958, 0.023655859753489494, 0.004463125951588154, 0.06002442538738251, 0.44074684381484985, 0.005570522975176573, 0.003539224388077855, 0.0005595625261776149, 2.568858144513797e-05, 3.507287328829989e-05, 3.211749572074041e-05, 0.0020424367394298315, 0.4302707612514496], [0.01662576012313366, 0.013676837086677551, 0.011885679326951504, 0.009910515509545803, 0.004302979912608862, 0.007309566717594862, 0.002795423846691847, 0.014664201065897942, 0.43024855852127075, 0.009110670536756516, 0.016728438436985016, 0.008570024743676186, 0.0020402141381055117, 0.00516263535246253, 0.005033999681472778, 0.01326029933989048, 0.42867419123649597], [0.00031312531791627407, 0.0001334080589003861, 4.8179990699281916e-05, 2.344835775147658e-05, 1.4353172446135432e-05, 8.410756709054112e-05, 1.7194215615745634e-05, 0.00043542252387851477, 0.48370641469955444, 0.016668910160660744, 0.00570331746712327, 0.004899709019809961, 8.922466076910496e-05, 0.00045920515549369156, 0.00039906823076307774, 0.003689597360789776, 0.4833153784275055], [0.0025753150694072247, 0.0007899104384705424, 0.0023585858289152384, 0.0030938785057514906, 5.673373743775301e-05, 0.00017418582865502685, 1.5397719835164025e-05, 0.0018498236313462257, 0.3883779048919678, 0.056232329457998276, 0.00946682970970869, 0.01435126457363367, 0.04634745046496391, 0.0021499686408787966, 0.004345921333879232, 0.07809703052043915, 0.3897174894809723], [0.0004876543825957924, 0.0002595835248939693, 0.0008621607557870448, 0.00016694313671905547, 4.679569246945903e-05, 5.4062729759607464e-05, 2.260996780023561e-06, 0.00020927352306898683, 0.38169941306114197, 0.0023388175759464502, 0.0013290435308590531, 0.016598215326666832, 0.1351580023765564, 0.026289353147149086, 0.04276518523693085, 0.014793241396546364, 0.37693995237350464], [0.0007472332799807191, 0.000532722391653806, 0.00033791776513680816, 0.0002527469478081912, 1.695405262580607e-05, 3.529287641867995e-05, 1.6808779719212907e-06, 0.00019044746295548975, 0.48241952061653137, 0.005815370008349419, 0.0012918816646561027, 0.01268912572413683, 0.0014524844009429216, 0.0027702704537659883, 0.0037103029899299145, 0.004510845988988876, 0.4832253158092499], [0.00044030402204953134, 0.0002678841119632125, 0.0002080110862152651, 0.0004459947522263974, 1.5997904483811e-05, 0.00011288871610304341, 1.1075761904066894e-05, 0.0001167506561614573, 0.2984003722667694, 0.0015657480107620358, 0.0008177456329576671, 0.027135416865348816, 0.007639724295586348, 0.03391946479678154, 0.14812976121902466, 0.17753243446350098, 0.3032402992248535], [0.001518476172350347, 0.0006707650027237833, 0.0003037183778360486, 0.0008619431755505502, 0.00010589713929221034, 0.0001338131696684286, 1.626178163860459e-05, 7.222404383355752e-05, 0.43262436985969543, 0.0012514317641034722, 0.007958325557410717, 0.011023764498531818, 0.0045568253844976425, 0.028736360371112823, 0.01900426484644413, 0.053583186119794846, 0.43757835030555725], [0.0007229795446619391, 0.0002856792707461864, 0.00018265539256390184, 0.0010278918780386448, 0.0002493975916877389, 0.00036922309664078057, 1.304705256188754e-05, 0.00017484095587860793, 0.4723462164402008, 0.0015171103877946734, 0.0034793203230947256, 0.000799223140347749, 0.0002524151641409844, 0.0015764248091727495, 0.0018667629919946194, 0.03574001044034958, 0.4793967604637146], [0.016689607873558998, 0.013602039776742458, 0.011726605705916882, 0.009826768189668655, 0.004278423264622688, 0.007250617258250713, 0.002754163695499301, 0.014515035785734653, 0.4299820363521576, 0.009232072159647942, 0.01706676557660103, 0.008602065965533257, 0.0020937330555170774, 0.005293664988130331, 0.005194936413317919, 0.01352635957300663, 0.42836514115333557]], [[0.0009357659728266299, 0.0009855087846517563, 0.006272437982261181, 0.0006815640954300761, 0.00017691338143777102, 0.000455359899206087, 6.815097731305286e-05, 0.00486785639077425, 0.48824578523635864, 0.0011436513159424067, 0.0012370236217975616, 0.0004392194387037307, 0.0001492508890805766, 0.0002657849108800292, 0.00023867652635090053, 0.0030885462183505297, 0.49074864387512207], [0.011824224144220352, 0.031619418412446976, 0.013066585175693035, 0.0033593676052987576, 0.000999400275759399, 0.0004325775080360472, 0.00030561830499209464, 0.010319091379642487, 0.4673183262348175, 0.00011453475599410012, 0.0018660679925233126, 7.23780831322074e-05, 0.00010274900705553591, 0.00011686662037391216, 0.0002201199094997719, 0.00024283005041070282, 0.45801982283592224], [0.002653721487149596, 0.007376522291451693, 0.012308141216635704, 0.0012607760727405548, 0.0008716582669876516, 0.00048471501213498414, 2.9569455364253372e-05, 0.0008004661649465561, 0.4883043169975281, 7.588630978716537e-05, 0.0005660575698129833, 9.463145397603512e-05, 3.113040293101221e-05, 3.555275179678574e-05, 0.0001165039575425908, 0.0004999481607228518, 0.48449042439460754], [0.0019072330323979259, 0.06150224432349205, 0.01568525843322277, 0.018371695652604103, 0.049505941569805145, 0.011806926690042019, 0.005584845319390297, 0.011089038103818893, 0.41280829906463623, 0.00034343224251642823, 0.001627131481654942, 0.0004034104058519006, 0.000142949735163711, 0.00019744868041016161, 0.0003961980401072651, 0.0011452591279521585, 0.40748274326324463], [0.0007226336747407913, 0.010250167921185493, 0.0017117736861109734, 0.004440348129719496, 0.0017453273758292198, 0.007101535797119141, 0.0011321828933432698, 0.005288560409098864, 0.4838944375514984, 3.477352220215835e-05, 0.0001616227236809209, 4.713012822321616e-05, 3.613242370192893e-06, 2.7937687264056876e-05, 0.00018145858484786004, 0.0010602050460875034, 0.4821964204311371], [0.0009220391511917114, 0.00203683041036129, 0.0016831494867801666, 0.0017126871971413493, 0.004069022834300995, 0.0038726930506527424, 0.00122427090536803, 0.003867652965709567, 0.4925641119480133, 0.00023894365585874766, 0.00020664882322307676, 1.2736146345559973e-05, 6.886805749672931e-06, 2.509949990781024e-05, 0.0002232462866231799, 0.0014253894332796335, 0.48590853810310364], [0.0005435695638880134, 0.004219656344503164, 0.004036516882479191, 0.007169567979872227, 0.02241043746471405, 0.671183705329895, 0.035876043140888214, 0.005130477715283632, 0.12443186342716217, 0.00025697500677779317, 5.910365507588722e-05, 2.2748319679521956e-05, 3.77723372366745e-05, 0.0001121274835895747, 6.217126065166667e-05, 0.00010925692913588136, 0.12433809041976929], [0.0059726727195084095, 0.0064332024194300175, 0.005674977786839008, 0.012177813798189163, 0.029017139226198196, 0.07363323122262955, 0.02635008841753006, 0.06776728481054306, 0.3844427764415741, 0.002214405918493867, 0.004718646872788668, 0.00012510159285739064, 0.00030144883203320205, 9.775700891623273e-05, 0.00012138995225541294, 0.0007765593472868204, 0.38017556071281433], [0.01789006032049656, 0.011232955381274223, 0.013579105027019978, 0.006586464587599039, 0.0031376779079437256, 0.005298648029565811, 0.0014133123913779855, 0.019931431859731674, 0.43546125292778015, 0.007066912483423948, 0.014798990450799465, 0.0063568647019565105, 0.003019228344783187, 0.0030720492359250784, 0.003858806099742651, 0.012525654397904873, 0.43477076292037964], [0.002307293238118291, 0.0005252473638392985, 8.809447899693623e-05, 0.0001066939948941581, 5.142863665241748e-05, 0.00013020240294281393, 2.280935223097913e-05, 0.0030361642129719257, 0.4866974949836731, 0.003110808553174138, 0.017023121938109398, 0.0004895227611996233, 0.00017146248137578368, 4.922522930428386e-05, 8.410107693634927e-05, 0.0006245755939744413, 0.48548176884651184], [0.003925621509552002, 0.0012905444018542767, 0.00038357198354788125, 0.00019414257258176804, 6.96040442562662e-05, 7.445819937856868e-05, 1.7682017642073333e-05, 0.002358929254114628, 0.47390303015708923, 0.010795599780976772, 0.021730123087763786, 0.004094819072633982, 0.0009392796782776713, 0.0022257231175899506, 0.0014261604519560933, 0.002192050451412797, 0.4743787348270416], [0.008202116936445236, 0.0015130232786759734, 0.0008207476348616183, 0.00011114784865640104, 3.075272616115399e-05, 5.873592454008758e-05, 3.500822640489787e-05, 0.0019902423955500126, 0.4695906341075897, 0.0009293457260355353, 0.02703288197517395, 0.0015253170859068632, 0.005303015001118183, 0.001179198152385652, 0.006391364149749279, 0.0037080796901136637, 0.47157853841781616], [0.0007976963534019887, 0.0008520035771653056, 0.00030975311528891325, 0.00020254332048352808, 1.3558767932408955e-05, 7.497619662899524e-05, 2.2740589429304237e-06, 0.00027519604191184044, 0.4260416328907013, 0.0004453066794667393, 0.010177896358072758, 0.1344641149044037, 0.000603098887950182, 0.00024383763957303017, 0.0008044102578423917, 0.0010347836650907993, 0.4236568212509155], [0.0019524323288351297, 0.0002637382713146508, 0.0003940958995372057, 0.0001262571895495057, 2.7685424356604926e-05, 7.109082798706368e-05, 1.3022981875110418e-05, 0.00043486119830049574, 0.46897876262664795, 0.0009151546400971711, 0.002930409973487258, 0.0016912224236875772, 0.0021614073775708675, 0.005406985059380531, 0.039821773767471313, 0.006688544526696205, 0.46812260150909424], [0.002520602662116289, 0.0002614275144878775, 0.0005641995812766254, 0.00016588994185440242, 0.00012261020310688764, 0.00019193170010112226, 3.556019510142505e-05, 0.0006151711568236351, 0.37359359860420227, 0.004681902006268501, 0.01112336665391922, 0.00816743541508913, 0.01294596679508686, 0.1693142205476761, 0.035054560750722885, 0.007097503636032343, 0.3735440671443939], [0.0023108343593776226, 0.0009366289596073329, 0.0003248245920985937, 0.000675665563903749, 0.00039208782254718244, 0.000510399870108813, 5.507854075403884e-05, 0.0022336547262966633, 0.47829505801200867, 0.0012756776995956898, 0.012313233688473701, 0.0016621029935777187, 0.001625137054361403, 0.004917402286082506, 0.004686739295721054, 0.008417991921305656, 0.4793674945831299], [0.017968175932765007, 0.01134131196886301, 0.013261078856885433, 0.006517610512673855, 0.0031680434476584196, 0.005264427978545427, 0.0013994675828143954, 0.019656673073768616, 0.4352993667125702, 0.007122380658984184, 0.015048257075250149, 0.006418908480554819, 0.0030963211320340633, 0.0031262042466551065, 0.003989494405686855, 0.012708148919045925, 0.4346141219139099]], [[0.0030689863488078117, 0.0033166492357850075, 0.00242445501498878, 0.0004114684124942869, 0.0001578721567057073, 0.0005789128481410444, 3.8072739698691294e-05, 0.0015109134837985039, 0.17528407275676727, 0.07361219078302383, 0.44687125086784363, 0.06202247738838196, 0.02273287996649742, 0.012525404803454876, 0.008559582754969597, 0.007263770792633295, 0.17962102591991425], [0.003965090494602919, 0.03982608765363693, 0.010935517959296703, 0.030606640502810478, 0.006151079200208187, 0.005054636858403683, 0.000700213888194412, 0.0068400949239730835, 0.44721174240112305, 0.001304612960666418, 0.0008193199173547328, 0.0011320802150294185, 0.0003346427693031728, 5.79663974349387e-05, 0.00015036006516311318, 0.0004494161403272301, 0.44446060061454773], [0.010818920098245144, 0.1957474648952484, 0.05118459090590477, 0.017250701785087585, 0.00452144630253315, 0.007591108791530132, 0.0002662086335476488, 0.002007861156016588, 0.3479042053222656, 0.0017605797620490193, 0.0048415581695735455, 0.0035292701795697212, 0.0038675395771861076, 0.00046889681834727526, 0.0007459585322067142, 0.0008902664994820952, 0.3466032147407532], [0.0012930310331285, 0.018686266615986824, 0.022953161969780922, 0.019466092810034752, 0.05568217858672142, 0.009044455364346504, 0.001302405260503292, 0.0017953389324247837, 0.43391719460487366, 0.00026276911376044154, 0.00012244898243807256, 0.0022720429114997387, 0.0011389699066057801, 0.0008332174038514495, 0.00018899368296843022, 0.0005446358700282872, 0.4304966926574707], [0.000962406222242862, 0.005701298825442791, 0.010019714944064617, 0.01962333731353283, 0.012387268245220184, 0.010740355588495731, 0.0003362670831847936, 0.001200356986373663, 0.4691201150417328, 6.658733036601916e-05, 1.943446659424808e-05, 0.00012924168549943715, 0.00012002202129224315, 0.00015755764616187662, 0.00019995974435005337, 0.0015169369289651513, 0.4676991403102875], [0.0022300526034086943, 0.0040331617929041386, 0.008002933114767075, 0.016305968165397644, 0.051353368908166885, 0.02401667647063732, 0.0011861160164698958, 0.003552023321390152, 0.44315075874328613, 0.00011782488581957296, 8.638935105409473e-05, 4.946976332576014e-05, 0.00012513506226241589, 7.789777737343684e-05, 0.00013485958334058523, 0.001111936173401773, 0.44446536898612976], [0.001013406552374363, 0.004529082681983709, 0.005132297053933144, 0.013445733115077019, 0.3318427503108978, 0.0748477652668953, 0.004088751971721649, 0.013508574105799198, 0.27495595812797546, 0.00016681548731867224, 2.5551471480866894e-05, 9.630837303120643e-05, 2.7533063985174522e-05, 4.698890552390367e-05, 2.442480945319403e-05, 0.0005585831822827458, 0.27568942308425903], [0.002854519058018923, 0.00703628733754158, 0.022958945482969284, 0.039655089378356934, 0.02283470332622528, 0.39655572175979614, 0.028923355042934418, 0.01945863850414753, 0.2272329330444336, 0.0009313879418186843, 0.0003862079174723476, 0.00021691610163543373, 0.0002444096899125725, 0.000510828394908458, 0.0006298835505731404, 0.0011067036539316177, 0.22846335172653198], [0.012420429848134518, 0.012259387411177158, 0.009217140264809132, 0.0065152873285114765, 0.005099431611597538, 0.01140523049980402, 0.002370786387473345, 0.011538098566234112, 0.43145236372947693, 0.009270879440009594, 0.01656862534582615, 0.00722168292850256, 0.006101866718381643, 0.00454137334600091, 0.0070095788687467575, 0.014235121197998524, 0.43277260661125183], [0.001373848645016551, 0.0002727459941525012, 0.0002512687351554632, 0.0011196366976946592, 0.0005515392404049635, 0.0022668209858238697, 0.0001824704377213493, 0.004791573155671358, 0.47241953015327454, 0.0212840735912323, 0.004951787181198597, 0.0022337117698043585, 0.0027306077536195517, 0.0016563142416998744, 0.0032291095703840256, 0.007374764885753393, 0.4733101725578308], [0.0019508089171722531, 0.0007906017708592117, 0.00024089193902909756, 0.0009003594750538468, 0.00032274119439534843, 0.0012441696599125862, 9.48059605434537e-05, 0.005818368401378393, 0.4264468848705292, 0.088047556579113, 0.017698992043733597, 0.010936638340353966, 0.004577295854687691, 0.001366672688163817, 0.0033455106895416975, 0.004470459185540676, 0.4317472279071808], [0.0014399546198546886, 0.0002332631847821176, 0.00045224191853776574, 4.9699898227117956e-05, 4.512643499765545e-05, 0.00029908542637713253, 1.8228014596388675e-05, 0.0016688129398971796, 0.4541323482990265, 0.020317096263170242, 0.020485615357756615, 0.01391658652573824, 0.024454424157738686, 0.0032055145129561424, 0.0021444011945277452, 0.0020901234820485115, 0.45504751801490784], [0.0014782125363126397, 0.0002664446656126529, 0.0013442249037325382, 4.679729318013415e-05, 1.4051792277314235e-05, 0.00012693411554209888, 2.119349574059015e-06, 0.0004978053621016443, 0.4407687187194824, 0.007875530049204826, 0.03794340789318085, 0.05507757142186165, 0.010426072403788567, 0.0008189357467927039, 0.0007481228676624596, 0.0004371738468762487, 0.44212791323661804], [0.0006987267988733947, 0.00017011218005791306, 0.000965818646363914, 0.00015281251398846507, 0.00017269969976041466, 0.0001944021787494421, 2.558222377047059e-06, 0.0001631873456062749, 0.4350961744785309, 0.010776503942906857, 0.010097411461174488, 0.04584597423672676, 0.046717602759599686, 0.0036445041187107563, 0.0031968147959560156, 0.0014907451113685966, 0.44061407446861267], [0.001102504669688642, 0.00012474732648115605, 0.0011422350071370602, 0.00010096780169988051, 0.0003126534866169095, 0.0003701750247273594, 8.78143691807054e-06, 0.00029479534714482725, 0.3615906536579132, 0.005539360921829939, 0.014459156431257725, 0.09316504746675491, 0.12162618339061737, 0.025408687070012093, 0.006769154686480761, 0.0020449822768568993, 0.36594003438949585], [0.0011829630238935351, 0.00034895879798568785, 0.007119147107005119, 0.0005344920791685581, 0.0006515107816085219, 0.0011389878345653415, 5.693728235200979e-05, 0.0009211533470079303, 0.39618223905563354, 0.004883582703769207, 0.003575598355382681, 0.01229837816208601, 0.021678829565644264, 0.10629958659410477, 0.032782260328531265, 0.006704023573547602, 0.4036415219306946], [0.01229869294911623, 0.01221025362610817, 0.009197334758937359, 0.0065560005605220795, 0.005198092665523291, 0.01150069572031498, 0.0023622915614396334, 0.011489861644804478, 0.4307621121406555, 0.009498207829892635, 0.016651909798383713, 0.007432642858475447, 0.006250835955142975, 0.004672306589782238, 0.007284434977918863, 0.014476056210696697, 0.43215832114219666]], [[0.0062873754650354385, 0.0033066386822611094, 0.005725296214222908, 0.002122096484526992, 0.0035054287873208523, 0.0018759208032861352, 0.0005465082940645516, 0.001364398980513215, 0.05486242100596428, 0.35307127237319946, 0.23264960944652557, 0.02684188447892666, 0.0388680100440979, 0.05338788777589798, 0.03981413692235947, 0.11988216638565063, 0.055888831615448], [0.010374179109930992, 0.017863847315311432, 0.08150981366634369, 0.08140186965465546, 0.07214724272489548, 0.23391591012477875, 0.11223496496677399, 0.049508534371852875, 0.13656170666217804, 0.011416579596698284, 0.0028409415390342474, 0.006919450126588345, 0.01042439229786396, 0.012274496257305145, 0.014705237932503223, 0.009614546783268452, 0.13628630340099335], [0.010608501732349396, 0.056547943502664566, 0.10995253175497055, 0.05565983057022095, 0.02825392782688141, 0.10524681210517883, 0.03965795785188675, 0.03382706269621849, 0.22549866139888763, 0.013226945884525776, 0.008492005057632923, 0.00804069358855486, 0.014080305583775043, 0.02046997658908367, 0.015657076612114906, 0.0300438292324543, 0.22473597526550293], [0.006527698133140802, 0.026134004816412926, 0.028784804046154022, 0.007164767477661371, 0.048842236399650574, 0.2568477392196655, 0.09427621960639954, 0.04196718707680702, 0.2316848188638687, 0.004028959199786186, 0.0033744387328624725, 0.005043047945946455, 0.004795629531145096, 0.0038917637430131435, 0.0017948336899280548, 0.0023471941240131855, 0.23249463737010956], [0.004678796045482159, 0.024227414280176163, 0.013375849463045597, 0.007306893356144428, 0.00541008310392499, 0.050092827528715134, 0.014733346179127693, 0.02605808526277542, 0.4214590787887573, 0.004866642411798239, 0.0017015838529914618, 0.0014875386841595173, 0.0014615926193073392, 0.003057771362364292, 0.0016313837841153145, 0.0021541989408433437, 0.41629675030708313], [0.01700776256620884, 0.042182184755802155, 0.02710765227675438, 0.021281739696860313, 0.020639576017856598, 0.006023309659212828, 0.006013905163854361, 0.02144630067050457, 0.3957773745059967, 0.01614018715918064, 0.005501651670783758, 0.009397325105965137, 0.007013344205915928, 0.0009224042296409607, 0.0011493106139823794, 0.011740141548216343, 0.39065587520599365], [0.008481322787702084, 0.021922994405031204, 0.015934770926833153, 0.009804973378777504, 0.02632986009120941, 0.06028136610984802, 0.009073665365576744, 0.013704154640436172, 0.4135402739048004, 0.0026396058965474367, 0.0011057837400585413, 0.0028944816440343857, 0.0034464530181139708, 0.000897968013305217, 0.000930494861677289, 0.0006320380489341915, 0.4083799123764038], [0.0426543653011322, 0.08419543504714966, 0.055145513266325, 0.051335304975509644, 0.14563463628292084, 0.027572128921747208, 0.016870353370904922, 0.02830444648861885, 0.24439531564712524, 0.01853090524673462, 0.012018369510769844, 0.006147198844701052, 0.004490226972848177, 0.002438419032841921, 0.001913479994982481, 0.015327800996601582, 0.24302606284618378], [0.003631844650954008, 0.00630282424390316, 0.010843838565051556, 0.004429279826581478, 0.002837232779711485, 0.005300014279782772, 0.0013003009371459484, 0.004197238944470882, 0.46347904205322266, 0.009454664774239063, 0.005623483564704657, 0.0024919926654547453, 0.0020668606739491224, 0.005056238267570734, 0.0030409570317715406, 0.0068252673372626305, 0.46311894059181213], [0.0039664702489972115, 0.0012100026942789555, 0.0013490068959072232, 0.0006717348005622625, 0.0013324781320989132, 0.0015365842264145613, 0.0005181505111977458, 0.0015928630018606782, 0.1233307421207428, 0.05346051976084709, 0.11342038214206696, 0.048529189079999924, 0.055899109691381454, 0.058765824884176254, 0.0325225405395031, 0.3756310045719147, 0.12626351416110992], [0.0014559559058398008, 0.0006339389947243035, 0.0026479223743081093, 0.00024594212300144136, 0.0001765353954397142, 0.0012350594624876976, 0.00013495075108949095, 0.00048230780521407723, 0.03289053589105606, 0.014156127348542213, 0.020841257646679878, 0.03300347179174423, 0.08467552065849304, 0.15145649015903473, 0.290687620639801, 0.3314812183380127, 0.03379521891474724], [0.0013450953410938382, 0.0007356879650615156, 0.0012934557162225246, 6.655571633018553e-05, 1.4959769941924606e-05, 0.00044271780643612146, 2.703746395127382e-05, 0.000240898531046696, 0.26482874155044556, 0.006245264783501625, 0.015628715977072716, 0.0026149589102715254, 0.009740754030644894, 0.1631568819284439, 0.1779329776763916, 0.0849837064743042, 0.2707015573978424], [0.002606040332466364, 0.0008344699162989855, 0.001209732610732317, 0.00025253143394365907, 0.00014520798868034035, 0.003140548476949334, 0.0001529784349258989, 0.0006057526916265488, 0.23604238033294678, 0.01167572196573019, 0.01795845851302147, 0.018712041899561882, 0.010940677486360073, 0.1811027228832245, 0.2549971342086792, 0.021172286942601204, 0.2384513020515442], [0.007668177597224712, 0.0030669323168694973, 0.0029126242734491825, 0.00011586756590986624, 0.0005006211576983333, 0.0002777589252218604, 6.353022035909817e-05, 0.001750412629917264, 0.3026740252971649, 0.02043387107551098, 0.053980227559804916, 0.02085098624229431, 0.14328381419181824, 0.05951334536075592, 0.044559378176927567, 0.03185036778450012, 0.30649808049201965], [0.0033411842305213213, 0.001311374711804092, 0.004674109630286694, 7.558760262327269e-05, 0.00026961808907799423, 0.0003397368418518454, 4.8722569772507995e-05, 0.0004819100140593946, 0.29047515988349915, 0.016495339572429657, 0.027204833924770355, 0.040732186287641525, 0.1415494680404663, 0.1156366840004921, 0.04778257757425308, 0.014617674052715302, 0.2949638068675995], [0.0054697091691195965, 0.0031442921608686447, 0.004017741419374943, 0.0006543616182170808, 0.0008626212948001921, 0.0014927604934200644, 0.0003636724140960723, 0.003298906609416008, 0.21456480026245117, 0.025571072474122047, 0.03551124036312103, 0.08946865797042847, 0.08170028775930405, 0.204983189702034, 0.0748935267329216, 0.03519828990101814, 0.2188047468662262], [0.0036279424093663692, 0.0062494720332324505, 0.010767522267997265, 0.004385904408991337, 0.00277776294387877, 0.005273555871099234, 0.001287155319005251, 0.0041479985229671, 0.4634871184825897, 0.0094976257532835, 0.005646751262247562, 0.002510426100343466, 0.0020773070864379406, 0.005139967426657677, 0.003092461032792926, 0.006879243068397045, 0.463151752948761]], [[0.0434751994907856, 0.07624716311693192, 0.06747912615537643, 0.02035519666969776, 0.010015725158154964, 0.0414426289498806, 0.03631532937288284, 0.06742885708808899, 0.18269914388656616, 0.029585689306259155, 0.12529835104942322, 0.0237087644636631, 0.01956157386302948, 0.019489718601107597, 0.020061686635017395, 0.03287490829825401, 0.1839608997106552], [0.035312458872795105, 0.04287431761622429, 0.3870684802532196, 0.01889089122414589, 0.0047857556492090225, 0.04934628680348396, 0.006713453214615583, 0.04850570484995842, 0.07312250137329102, 0.014558428898453712, 0.16590696573257446, 0.013183402828872204, 0.005659425165504217, 0.011663048528134823, 0.02039843611419201, 0.028879214078187943, 0.07313109189271927], [0.009067765437066555, 0.009693324565887451, 0.4875434935092926, 0.0014388547278940678, 0.00021393502538558096, 0.002667471067979932, 0.0006254262407310307, 0.027370432391762733, 0.13182732462882996, 0.0034815259277820587, 0.07815778255462646, 0.01245742104947567, 0.0028002781327813864, 0.031081482768058777, 0.061160601675510406, 0.008647194132208824, 0.13176578283309937], [0.043251343071460724, 0.05432870611548424, 0.2003648281097412, 0.07239138334989548, 0.02954348549246788, 0.13457031548023224, 0.008119238540530205, 0.06903116405010223, 0.08606088161468506, 0.021389802917838097, 0.1455184370279312, 0.005577497184276581, 0.004663320258259773, 0.002817539032548666, 0.004073464777320623, 0.03237688168883324, 0.08592164516448975], [0.01956501044332981, 0.04456562176346779, 0.10031446814537048, 0.050040360540151596, 0.2813097834587097, 0.12771634757518768, 0.012727844528853893, 0.046444378793239594, 0.03654434531927109, 0.01234675943851471, 0.190189391374588, 0.0016115154139697552, 0.0036612707190215588, 0.0013930225977674127, 0.0009064333862625062, 0.03406453877687454, 0.03659893944859505], [0.026218045502901077, 0.06079234927892685, 0.05672372877597809, 0.01798201911151409, 0.001952760387212038, 0.07390354573726654, 0.004739114083349705, 0.025562353432178497, 0.1153319776058197, 0.05080939084291458, 0.22117052972316742, 0.03781986981630325, 0.10344535112380981, 0.0023226733319461346, 0.005497083067893982, 0.08170291781425476, 0.11402627825737], [0.04773871228098869, 0.06627925485372543, 0.06205539405345917, 0.05496828258037567, 0.008842677809298038, 0.19613268971443176, 0.03337875381112099, 0.015735918655991554, 0.04694003611803055, 0.048762496560811996, 0.19610688090324402, 0.05871521309018135, 0.027684371918439865, 0.0031071281991899014, 0.0023632668890058994, 0.08435871452093124, 0.046830177307128906], [0.05267766863107681, 0.027090558782219887, 0.1338524967432022, 0.02360408753156662, 0.02441701479256153, 0.053336866199970245, 0.012728002853691578, 0.07358848303556442, 0.09732522070407867, 0.06038691848516464, 0.126238152384758, 0.027520151808857918, 0.019312327727675438, 0.024947965517640114, 0.03392765671014786, 0.11163274198770523, 0.09741368144750595], [0.0540308952331543, 0.04522665590047836, 0.10037654638290405, 0.03302600607275963, 0.020069647580385208, 0.039606042206287384, 0.01987120322883129, 0.043555453419685364, 0.20935256779193878, 0.030169669538736343, 0.035692472010850906, 0.027965085580945015, 0.02780071459710598, 0.016334030777215958, 0.023821622133255005, 0.06318362057209015, 0.2099178582429886], [0.14883196353912354, 0.0561506524682045, 0.018512427806854248, 0.0523001067340374, 0.022837985306978226, 0.06639589369297028, 0.06069033592939377, 0.03026256337761879, 0.03474833071231842, 0.20979785919189453, 0.060308873653411865, 0.06341985613107681, 0.024848708882927895, 0.008243841119110584, 0.004993164911866188, 0.1026022806763649, 0.03505522385239601], [0.07569590955972672, 0.06826606392860413, 0.14791373908519745, 0.006353020668029785, 0.001287593855522573, 0.025356687605381012, 0.006612796802073717, 0.016611628234386444, 0.09665815532207489, 0.009839272126555443, 0.4156748950481415, 0.009369410574436188, 0.0035524782724678516, 0.004436532035470009, 0.008466809056699276, 0.006887361407279968, 0.09701766073703766], [0.08131925016641617, 0.04038386791944504, 0.2807130515575409, 0.022350987419486046, 0.005161680281162262, 0.03141096979379654, 0.01706489361822605, 0.027880989015102386, 0.0755089595913887, 0.03333592787384987, 0.06743645668029785, 0.13742727041244507, 0.027865950018167496, 0.0034239927772432566, 0.010055961087346077, 0.06323617696762085, 0.07542363554239273], [0.07594527304172516, 0.05045931413769722, 0.17923316359519958, 0.019263068214058876, 0.007309482432901859, 0.08978694677352905, 0.03064342401921749, 0.040266070514917374, 0.06838121265172958, 0.007705403957515955, 0.05947738140821457, 0.01489026565104723, 0.07422855496406555, 0.07840986549854279, 0.11332403868436813, 0.022269994020462036, 0.06840652227401733], [0.016269274055957794, 0.07428978383541107, 0.06399387121200562, 0.02427583374083042, 0.00984142441302538, 0.04934109374880791, 0.01772794872522354, 0.08082874119281769, 0.17281591892242432, 0.001805666135624051, 0.014381326735019684, 0.004945421125739813, 0.029646364971995354, 0.17308469116687775, 0.0766250491142273, 0.017474712803959846, 0.17265284061431885], [0.015886226668953896, 0.04134271293878555, 0.058663565665483475, 0.027810800820589066, 0.005924344528466463, 0.03066580556333065, 0.01090441644191742, 0.05550302937626839, 0.14484284818172455, 0.0012009674683213234, 0.008928833529353142, 0.001456223544664681, 0.011961211450397968, 0.2594308853149414, 0.16970132291316986, 0.010675432160496712, 0.145101398229599], [0.10890478640794754, 0.06156468018889427, 0.0492355041205883, 0.05090511962771416, 0.031639374792575836, 0.042668417096138, 0.03171618655323982, 0.03961167111992836, 0.10332640260457993, 0.04986456036567688, 0.13834761083126068, 0.020664377138018608, 0.01220464613288641, 0.004305260255932808, 0.006431234069168568, 0.1449912041425705, 0.10361898690462112], [0.05445354804396629, 0.04526779055595398, 0.09894164651632309, 0.03292705863714218, 0.019971294328570366, 0.03926083445549011, 0.01988603174686432, 0.043445706367492676, 0.20997031033039093, 0.030376648530364037, 0.03586333245038986, 0.027953563258051872, 0.027930643409490585, 0.01642383076250553, 0.023868519812822342, 0.0629306435585022, 0.2105286866426468]], [[0.0031840449664741755, 0.21571789681911469, 0.04524892568588257, 0.04099930077791214, 0.009694595821201801, 0.12895631790161133, 0.004357876721769571, 0.1127181351184845, 0.21609258651733398, 0.002785061253234744, 0.002087533473968506, 0.0006042739260010421, 0.0006000974681228399, 0.0016227583400905132, 0.0010247959289699793, 0.0016243925783783197, 0.21268151700496674], [0.004006592091172934, 0.05269387364387512, 0.044160183519124985, 0.03270796686410904, 0.006540026981383562, 0.00946151651442051, 0.002772148232907057, 0.0238027460873127, 0.4141005873680115, 0.001061401329934597, 0.0009192836005240679, 0.0003084810741711408, 0.00016421879990957677, 0.00022142102534417063, 0.00021352406474761665, 0.002067337976768613, 0.4047985374927521], [0.011967779137194157, 0.20360039174556732, 0.0273871012032032, 0.0805215984582901, 0.009617360308766365, 0.029085135087370872, 0.004362944047898054, 0.029789013788104057, 0.29455703496932983, 0.004561576992273331, 0.002771953819319606, 0.0015155079308897257, 0.002506677992641926, 0.0017421378288418055, 0.0030295392498373985, 0.0037372498773038387, 0.28924694657325745], [0.0028203059919178486, 0.22022941708564758, 0.08479999005794525, 0.02473951317369938, 0.01705314591526985, 0.008756676688790321, 0.0037036833819001913, 0.0203179232776165, 0.30852213501930237, 0.0025849565863609314, 0.0006831066566519439, 0.0003921120660379529, 0.0005833411123603582, 0.000631358998361975, 0.000379806209821254, 0.0033486245665699244, 0.30045390129089355], [0.002009183866903186, 0.023240454494953156, 0.0190526582300663, 0.024731798097491264, 0.012375425547361374, 0.00394817627966404, 0.001384460018016398, 0.004934764001518488, 0.4578995406627655, 0.00037308729952201247, 0.00019942536891903728, 0.00023946145665831864, 0.00027265807148069143, 0.00013639855023939162, 0.00018612276471685618, 0.000731980602722615, 0.4482843279838562], [0.0076033552177250385, 0.09425722807645798, 0.04865274950861931, 0.11354836821556091, 0.09413701295852661, 0.023365287110209465, 0.006663545034825802, 0.023783979937434196, 0.28648820519447327, 0.002370882546529174, 0.000904439075384289, 0.0008742004865780473, 0.0045267329551279545, 0.001869221101514995, 0.0023903290275484324, 0.0036986833438277245, 0.28486594557762146], [0.0033919215202331543, 0.05983782932162285, 0.06063438579440117, 0.23119010031223297, 0.268436998128891, 0.022264478728175163, 0.006140152458101511, 0.014200322329998016, 0.1666257083415985, 0.00040535267908126116, 0.00037407761556096375, 6.247432611417025e-05, 0.0003031328087672591, 0.00015827975585125387, 0.00024232060241047293, 0.0010296277469024062, 0.16470283269882202], [0.006729861255735159, 0.08788341283798218, 0.10373534262180328, 0.1857779622077942, 0.12147389352321625, 0.1733231246471405, 0.03104526922106743, 0.04033413156867027, 0.1204276904463768, 0.0014714953722432256, 0.0014245584607124329, 0.0005047697923146188, 0.0016643000999465585, 0.001192077761515975, 0.0012797699309885502, 0.0020482675172388554, 0.11968409270048141], [0.00839389767497778, 0.013293436728417873, 0.005461883265525103, 0.01169236283749342, 0.006590526085346937, 0.008103218860924244, 0.0015514168189838529, 0.018558092415332794, 0.43971800804138184, 0.012590828351676464, 0.008479714393615723, 0.00353297870606184, 0.003901928197592497, 0.003213356714695692, 0.00506718410179019, 0.010710257105529308, 0.4391407370567322], [0.015712054446339607, 0.003016943810507655, 0.002891476498916745, 0.016477731987833977, 0.003098049433901906, 0.0032609866466373205, 0.0005190958618186414, 0.009564626030623913, 0.39708998799324036, 0.06891121715307236, 0.02599017135798931, 0.009533909149467945, 0.007644720375537872, 0.004496948327869177, 0.0111601073294878, 0.021410614252090454, 0.3992213010787964], [0.011905212886631489, 0.011302993632853031, 0.008778983727097511, 0.011205737479031086, 0.003432678757235408, 0.005752991884946823, 0.0009213303565047681, 0.03804676979780197, 0.2708134949207306, 0.09715063124895096, 0.12197071313858032, 0.03721364587545395, 0.021103635430336, 0.015403433702886105, 0.014941551722586155, 0.057241275906562805, 0.27281486988067627], [0.00725163659080863, 0.0015573929995298386, 0.0022282341960817575, 0.002828036667779088, 0.0013643758138641715, 0.00209349999204278, 0.00027652716380544007, 0.00869971513748169, 0.3416977822780609, 0.11482184380292892, 0.09516112506389618, 0.02310303784906864, 0.01358744315803051, 0.0075135184451937675, 0.011674463748931885, 0.02350008115172386, 0.3426411747932434], [0.014523872174322605, 0.0013822511537000537, 0.006334054749459028, 0.0019307088805362582, 0.0005568930064328015, 0.002475097542628646, 0.00025742192519828677, 0.01586259715259075, 0.21639077365398407, 0.1816307157278061, 0.25600665807724, 0.020945927128195763, 0.004577548708766699, 0.007972564548254013, 0.01322969514876604, 0.03920188173651695, 0.2167213261127472], [0.007418851833790541, 0.0014681847533211112, 0.00305807963013649, 0.002265361836180091, 0.000882843101862818, 0.001318708760663867, 0.0001229055633302778, 0.006177906412631273, 0.14417621493339539, 0.3530433177947998, 0.16043543815612793, 0.07088933885097504, 0.0468129888176918, 0.013300761580467224, 0.018453426659107208, 0.025853820145130157, 0.14432188868522644], [0.008744224905967712, 0.0017883465625345707, 0.00599333643913269, 0.0017488505691289902, 0.0006991210393607616, 0.0016012750566005707, 9.292181493947282e-05, 0.004622788168489933, 0.11953023821115494, 0.2536883056163788, 0.21079561114311218, 0.09379047900438309, 0.08386283367872238, 0.043063048273324966, 0.026585450395941734, 0.02345716953277588, 0.11993610858917236], [0.012803398072719574, 0.003155008191242814, 0.00859522819519043, 0.002518855966627598, 0.0006019544089213014, 0.0018383092246949673, 0.00011044396524084732, 0.004515702370554209, 0.13633836805820465, 0.1949165165424347, 0.20429983735084534, 0.04728134721517563, 0.03588426858186722, 0.08325108885765076, 0.068187415599823, 0.057584844529628754, 0.13811741769313812], [0.008475459180772305, 0.013212391175329685, 0.0054257274605333805, 0.011654380708932877, 0.006628814153373241, 0.008029801771044731, 0.001531823887489736, 0.018491938710212708, 0.4390735924243927, 0.01301492564380169, 0.008726131170988083, 0.0036282483488321304, 0.003982252441346645, 0.003302351338788867, 0.005225836299359798, 0.011017310433089733, 0.43857893347740173]], [[5.714677172363736e-06, 7.531060873589013e-06, 0.0001237595861312002, 0.0001824203645810485, 3.015415131812915e-06, 1.3844623026670888e-05, 1.2050754172321376e-08, 2.479518798281788e-06, 0.49366670846939087, 3.699452122418734e-07, 1.6712405340513214e-05, 1.120707722179759e-07, 3.456006680835344e-08, 2.8061722900929453e-07, 8.784086702462446e-08, 1.2627372143469984e-06, 0.5059755444526672], [8.525857424501737e-07, 0.0007749959477223456, 5.146398689248599e-05, 0.0002799722133204341, 1.0684244244885122e-07, 1.7900667614867416e-08, 5.984887030408004e-10, 3.9815680793253705e-05, 0.5097732543945312, 8.042762544846482e-08, 2.402672549806084e-08, 8.599534417896848e-10, 2.2099409108244927e-11, 9.186663582627652e-12, 2.1641358843860203e-11, 7.705302351723731e-08, 0.4890795052051544], [3.231378684631636e-07, 0.9981132745742798, 6.831890641478822e-05, 4.638550672098063e-05, 9.831397619564086e-06, 1.1858296034006344e-07, 4.995786076489317e-11, 4.471216730195238e-09, 0.0008773634908720851, 9.659983229992619e-11, 2.8497537662985906e-09, 5.718871154414273e-09, 3.743075538409357e-08, 3.439669438165538e-09, 2.8593399870047165e-10, 5.8693498949935474e-09, 0.0008843277464620769], [1.397115201307031e-09, 2.6192303721472854e-06, 0.9998918771743774, 9.90204862318933e-05, 5.5761820050292954e-08, 6.497455729004287e-08, 1.194159793271865e-08, 1.2937077797925411e-10, 3.2282780466630356e-06, 6.1323071186975e-14, 5.4551321793105956e-11, 1.3483410961638749e-14, 1.5693267518823717e-10, 5.848529993635054e-11, 3.640321821762882e-09, 2.840805646275868e-10, 3.1068761927599553e-06], [3.388044012009317e-11, 2.95115332171747e-09, 2.278439069414162e-06, 0.9984825253486633, 0.0015151363331824541, 2.0659163268987868e-08, 1.890719386610229e-10, 2.8548736725336754e-12, 2.5246126966749216e-08, 1.9433179123834894e-17, 2.295780753003296e-12, 1.081282704026203e-14, 9.676696295335239e-17, 1.0416897582694006e-14, 8.799661303446338e-14, 4.3361708668143706e-10, 2.6403824904264184e-08], [8.36674826643069e-11, 8.532065054467353e-10, 8.29904944765758e-09, 0.0002776994660962373, 0.9997115731239319, 1.0491678949620109e-05, 9.19305165325568e-08, 1.2629202371383652e-11, 1.6365794053285754e-08, 8.82434212828761e-16, 2.0271460156101248e-14, 1.1976214723096314e-15, 1.2829752248110816e-14, 1.2851795433530162e-14, 9.152966030229453e-16, 1.875364273595803e-11, 1.7220303405451887e-08], [1.1440866367143169e-18, 6.24125504855641e-19, 1.2712827481258654e-13, 3.7660291009843083e-13, 9.704320680370415e-10, 0.999998927116394, 1.0640302434694604e-06, 5.443953213025048e-17, 1.223048236715903e-15, 2.366011807559596e-21, 8.412004063327965e-24, 5.461388176484554e-23, 8.682448995029395e-22, 1.3391050747150491e-17, 2.5769241002670217e-16, 1.576629201788069e-18, 1.2523003077910934e-15], [1.1910175623519592e-10, 9.76662218980795e-13, 1.8872206020148496e-09, 6.939735008870684e-09, 6.119305617779958e-10, 0.00016604574921075255, 0.9998329877853394, 3.1072784167918144e-07, 2.9101207132953277e-07, 3.312937963784006e-14, 1.6418243717689074e-12, 3.2812739091506104e-18, 2.402679258621445e-14, 1.694799425040923e-14, 4.061255498566396e-11, 1.0015156481912868e-09, 2.931317339971429e-07], [0.027686618268489838, 0.010151353664696217, 0.024794626981019974, 0.02103099413216114, 0.0042915563099086285, 0.005246133543550968, 0.0006153103895485401, 0.02844744548201561, 0.40133506059646606, 0.006595885846763849, 0.03245443478226662, 0.0029201246798038483, 0.00209422898478806, 0.006193780340254307, 0.002613560762256384, 0.019782450050115585, 0.4037465751171112], [5.707126504717053e-08, 5.305807182498512e-11, 2.0431093882694595e-12, 1.0814625968835409e-13, 5.413075857777644e-15, 5.9568240097507275e-12, 3.8739598009519816e-13, 0.0006395395612344146, 0.5075867176055908, 2.1058724087197334e-05, 4.714403075922746e-06, 8.419962643779755e-11, 4.491483573954014e-12, 7.734564724803938e-12, 4.4801684584427903e-10, 8.460733056381287e-07, 0.491747111082077], [1.0530384564333417e-08, 1.3827381462050425e-09, 9.907910603068615e-11, 5.2415769641322996e-11, 1.614435988324045e-14, 1.9644556814579772e-11, 3.965761502825946e-14, 1.0437122277551225e-08, 0.00021847887546755373, 0.9983766078948975, 0.0011704300995916128, 9.414298801857512e-06, 1.973577212766031e-08, 7.474723062728117e-10, 1.1261970245257658e-09, 1.9410425267096798e-08, 0.00022511338465847075], [5.330696772887222e-09, 1.046445499697235e-10, 3.5324796421321025e-09, 3.2595062066098635e-11, 7.034046197069987e-14, 2.89433910933873e-16, 1.9071030187236317e-16, 1.9350456566952223e-12, 8.921795597416349e-06, 1.2232409972057212e-05, 0.9990942478179932, 2.6550827897153795e-05, 0.0008491174085065722, 5.2074426548642805e-08, 7.691279835242426e-10, 9.100802056405399e-11, 8.92963453225093e-06], [1.413380012799028e-14, 7.718452884209609e-14, 2.3376149309978743e-14, 4.0959548713902574e-15, 9.176170497819484e-15, 4.1570871582526214e-18, 4.6975032386115635e-23, 8.399624658721385e-19, 2.358336581576026e-10, 5.2525837845873724e-11, 1.6559253523951156e-08, 1.0, 3.5066620718282593e-09, 9.532768352471521e-09, 4.848402061774504e-12, 1.2009822872860996e-15, 2.4536295217814086e-10], [5.705686945134403e-08, 2.833989265482728e-09, 8.928861461754423e-06, 9.822356616950856e-08, 7.62967733436426e-09, 8.257136700729958e-14, 1.318182318670296e-15, 5.828378144695501e-14, 0.00011490472388686612, 5.522657886558591e-08, 0.008896159939467907, 0.0012328594457358122, 0.9895163178443909, 8.931191405281425e-05, 2.0326888261479326e-05, 1.5145957377171726e-06, 0.00011949613690376282], [3.950031413069155e-10, 2.8524934150842007e-12, 5.75962459947732e-08, 1.0115307202962498e-10, 1.6422271875704553e-10, 2.968542078818359e-11, 1.3658625656008932e-14, 1.1810138031919347e-15, 8.804174285614863e-06, 8.615912670817405e-12, 1.2587244668793574e-07, 1.0687680514820386e-05, 0.02868564985692501, 0.970523476600647, 0.0007618709933012724, 2.2159838408697397e-07, 9.148032404482365e-06], [7.083077679936878e-09, 1.2497617524198645e-11, 5.511309154826449e-06, 3.08378140800869e-08, 2.9887561175945265e-11, 7.224776776837416e-09, 1.1986701053956494e-07, 9.327864002039998e-12, 8.805703146208543e-06, 1.0804734711100661e-11, 2.158739142998911e-08, 5.426098806382562e-11, 5.5660048019490205e-06, 0.0001696567633189261, 0.9940999150276184, 0.005701203364878893, 9.169450095214415e-06], [0.028319815173745155, 0.010333376005291939, 0.025473307818174362, 0.02507404237985611, 0.004830158315598965, 0.005717465654015541, 0.000718376599252224, 0.025225600227713585, 0.3933270275592804, 0.007089710328727961, 0.03807156905531883, 0.0031177906785160303, 0.0023958347737789154, 0.006642082706093788, 0.0030525866895914078, 0.024333421140909195, 0.3962777554988861]], [[0.005391542799770832, 0.007001600693911314, 0.01654086448252201, 0.007268095389008522, 0.005217065569013357, 0.012687058188021183, 0.0018780648242682219, 0.025507211685180664, 0.44259437918663025, 0.00456001702696085, 0.012514159083366394, 0.0018214149167761207, 0.0014852266758680344, 0.0016768246423453093, 0.0020546717569231987, 0.01041596382856369, 0.4413858950138092], [0.006576152052730322, 0.10240702331066132, 0.018728697672486305, 0.14323820173740387, 0.049986474215984344, 0.03025483712553978, 0.012050971388816833, 0.049884919077157974, 0.2808198630809784, 0.00031938732718117535, 0.01515895128250122, 0.0010267799952998757, 0.003328900085762143, 0.0009151598787866533, 0.0006995670846663415, 0.0026942254044115543, 0.2819098234176636], [0.012973690405488014, 0.06871321052312851, 0.031490497291088104, 0.10958608984947205, 0.04596468806266785, 0.04817672818899155, 0.011864996515214443, 0.0465908944606781, 0.2963188588619232, 0.0024943770840764046, 0.010976185090839863, 0.0007986612617969513, 0.003831664100289345, 0.002208451274782419, 0.0031803790479898453, 0.007687777280807495, 0.29714277386665344], [0.004054914694279432, 0.03101220168173313, 0.014836825430393219, 0.08251379430294037, 0.025474147871136665, 0.0367685928940773, 0.019961180165410042, 0.1350509375333786, 0.3203428089618683, 0.000971910310909152, 0.0038676627445966005, 0.0001037776964949444, 0.0001480377250118181, 0.0003008987696375698, 0.0002856427454389632, 0.0034889793023467064, 0.32081761956214905], [0.003940700553357601, 0.004999156575649977, 0.0032750770915299654, 0.07968626916408539, 0.02742406167089939, 0.06991948932409286, 0.09462787955999374, 0.12835530936717987, 0.2933743894100189, 0.000949179579038173, 0.0018484863685443997, 0.00013900731573812664, 0.00010231795749859884, 6.0651109379250556e-05, 0.00011319718760205433, 0.0014628792414441705, 0.28972193598747253], [0.00998516846448183, 0.003294517984613776, 0.0027820756658911705, 0.019927389919757843, 0.027486037462949753, 0.021844541653990746, 0.02705955132842064, 0.16139407455921173, 0.356993168592453, 0.005335778463631868, 0.005052140913903713, 0.0007035201997496188, 0.00046640902291983366, 0.0002491034974809736, 0.0004917875048704445, 0.0010880891932174563, 0.35584667325019836], [0.004408373963087797, 0.00316426414065063, 0.0014020120725035667, 0.023342369124293327, 0.025323715060949326, 0.025710592046380043, 0.03184136748313904, 0.12601809203624725, 0.38134074211120605, 0.0007688571349717677, 0.0006233482854440808, 0.00017133104847744107, 0.0001142708642873913, 1.1815919606306124e-05, 4.521145092439838e-05, 0.0003314129717182368, 0.3753822445869446], [0.002143165795132518, 0.006253203842788935, 0.0013561963569372892, 0.0030949197243899107, 0.0021872781217098236, 0.002259022556245327, 0.0016221548430621624, 0.017215300351381302, 0.4804159998893738, 0.003592889290302992, 0.003877464681863785, 0.0007696565007790923, 0.00047792476834729314, 0.00012241075455676764, 0.00021420551638584584, 0.0019411430694162846, 0.47245708107948303], [0.01601012982428074, 0.012033963575959206, 0.01078930776566267, 0.011333223432302475, 0.004751932807266712, 0.008196607232093811, 0.005289657507091761, 0.02050664834678173, 0.41423702239990234, 0.012046046555042267, 0.01618734933435917, 0.008055870421230793, 0.007911546155810356, 0.007270640227943659, 0.009202688001096249, 0.023804429918527603, 0.4123729467391968], [0.004570821300148964, 0.0006219990318641067, 0.0008660269086249173, 0.0007282443693839014, 0.00011756434105336666, 0.0001524199906270951, 9.679755748948082e-06, 0.00121091038454324, 0.43794164061546326, 0.01100597158074379, 0.05880236253142357, 0.010513713583350182, 0.003600803669542074, 0.005937621463090181, 0.0041281781159341335, 0.01480777096003294, 0.4449843764305115], [0.003852137131616473, 0.001867673359811306, 0.002219864632934332, 0.0004865672090090811, 0.00015351915499195457, 0.0003103021008428186, 3.419929635128938e-05, 0.002339719096198678, 0.24926511943340302, 0.023571200668811798, 0.18127913773059845, 0.06604747474193573, 0.0900469720363617, 0.054545655846595764, 0.02487427555024624, 0.04440683126449585, 0.25469937920570374], [0.0023099894169718027, 0.0006187451654113829, 0.0017197662964463234, 0.0009706380660645664, 0.0003896088746841997, 0.0001397169689880684, 1.049382353812689e-05, 0.0013366942293941975, 0.38504689931869507, 0.007943826727569103, 0.04948156327009201, 0.037139248102903366, 0.03286372497677803, 0.021734939888119698, 0.023877650499343872, 0.043642472475767136, 0.3907740116119385], [0.005205004010349512, 0.0004466577956918627, 0.0012418323894962668, 0.0009301879908889532, 0.0027220447082072496, 0.0021583547350019217, 0.00024887837935239077, 0.0021135604474693537, 0.3151141405105591, 0.013325474224984646, 0.007533856201916933, 0.05050894618034363, 0.024504736065864563, 0.04204701632261276, 0.19397099316120148, 0.018031859770417213, 0.3198965787887573], [0.0035345754586160183, 0.00020995068189222366, 0.002809529658406973, 0.0004845350340474397, 0.0007872952264733613, 0.002412022091448307, 7.994176121428609e-05, 0.0012910199584439397, 0.3895937502384186, 0.002214687177911401, 0.016438975930213928, 0.01857096515595913, 0.007398077752441168, 0.019597051665186882, 0.04473528638482094, 0.08896366506814957, 0.4008787274360657], [0.0032323135528713465, 0.0002426189457764849, 0.0010305322939530015, 0.00041538651566952467, 0.0005048421444371343, 0.0018313778564333916, 5.4521082347491756e-05, 0.0021139876917004585, 0.408632755279541, 0.002944200299680233, 0.010133915580809116, 0.004700675141066313, 0.0037719127722084522, 0.0186750628054142, 0.034819480031728745, 0.08516407757997513, 0.42173242568969727], [0.0018415561644360423, 0.0002441449323669076, 0.00016823195619508624, 0.00023019398213364184, 0.0001538503129268065, 0.00042028201278299093, 7.054630987113342e-05, 0.00042174546979367733, 0.4848628342151642, 0.0014554180670529604, 0.004560873843729496, 0.0007168111042119563, 0.0002870234311558306, 0.0017560055712237954, 0.005887182429432869, 0.006457427516579628, 0.4904659688472748], [0.01604890450835228, 0.011827213689684868, 0.010717342607676983, 0.01119537279009819, 0.004707286600023508, 0.008161387406289577, 0.005274169147014618, 0.02044428512454033, 0.4137292206287384, 0.012168054468929768, 0.01641322299838066, 0.008189268410205841, 0.008064016699790955, 0.00740379374474287, 0.009403572417795658, 0.02437535673379898, 0.41187745332717896]], [[0.011896337382495403, 0.04553978517651558, 0.2977008819580078, 0.016144176945090294, 0.014812009409070015, 0.05180941894650459, 0.006068960297852755, 0.018725192174315453, 0.06805863231420517, 0.08364249765872955, 0.09200550615787506, 0.06783529371023178, 0.02006317488849163, 0.02658402919769287, 0.032708488404750824, 0.07826431840658188, 0.06814133375883102], [0.07108449190855026, 0.10104425251483917, 0.047358378767967224, 0.01654794067144394, 0.008046175353229046, 0.009992127306759357, 0.009700554423034191, 0.06148039177060127, 0.17401942610740662, 0.11008325219154358, 0.1427319049835205, 0.013201718218624592, 0.015427488833665848, 0.003291880711913109, 0.005101888906210661, 0.04001959040760994, 0.17086847126483917], [0.06808757036924362, 0.046941373497247696, 0.018322275951504707, 0.011204362846910954, 0.004199360962957144, 0.011305831372737885, 0.009801087900996208, 0.04053309187293053, 0.266318142414093, 0.05707777664065361, 0.08191963285207748, 0.011768994852900505, 0.035173192620277405, 0.005533100105822086, 0.01537717878818512, 0.05184144154191017, 0.26459556818008423], [0.07591699808835983, 0.05357486382126808, 0.024092543870210648, 0.025861689820885658, 0.008523015305399895, 0.022105766460299492, 0.015525205992162228, 0.0807480439543724, 0.2269948124885559, 0.10711406916379929, 0.06361471861600876, 0.019678829237818718, 0.008481882512569427, 0.004295858088880777, 0.0053276256658136845, 0.03433699905872345, 0.2238069623708725], [0.058995891362428665, 0.03078671172261238, 0.013344567269086838, 0.025047797709703445, 0.01611863449215889, 0.026517633348703384, 0.021701818332076073, 0.07825782150030136, 0.33156299591064453, 0.028799893334507942, 0.015614050440490246, 0.014394245110452175, 0.0024725585244596004, 0.002137289149686694, 0.0018767892615869641, 0.007450197357684374, 0.3249210715293884], [0.030031220987439156, 0.011588482186198235, 0.009314131923019886, 0.013186336494982243, 0.012996258214116096, 0.0043689189478755, 0.007965936325490475, 0.058860596269369125, 0.31455063819885254, 0.08418512344360352, 0.037953004240989685, 0.03637489676475525, 0.009662586264312267, 0.0030015516094863415, 0.004162016790360212, 0.04946955293416977, 0.31232884526252747], [0.027438925579190254, 0.034748516976833344, 0.008749268017709255, 0.022606780752539635, 0.02249724417924881, 0.02475479245185852, 0.026207972317934036, 0.06713223457336426, 0.3269135355949402, 0.046424880623817444, 0.020834898576140404, 0.011768336407840252, 0.006369994953274727, 0.0026754827704280615, 0.005533265881240368, 0.024527231231331825, 0.32081660628318787], [0.04745704308152199, 0.04258449748158455, 0.03822675719857216, 0.02935813181102276, 0.013506618328392506, 0.05341669172048569, 0.018804382532835007, 0.19889415800571442, 0.16479218006134033, 0.055756378918886185, 0.019973155111074448, 0.008547870442271233, 0.004493501503020525, 0.004714685026556253, 0.010971049778163433, 0.12483490258455276, 0.1636679768562317], [0.004619167651981115, 0.003336237743496895, 0.005120809189975262, 0.002401411999017, 0.0011635300470516086, 0.001786738052032888, 0.0006125796353444457, 0.013043121434748173, 0.47580668330192566, 0.005447726231068373, 0.0029154850635677576, 0.0012503197649493814, 0.0006939501035958529, 0.0011493226047605276, 0.001484293956309557, 0.00751108955591917, 0.47165751457214355], [0.006681482307612896, 0.01350687351077795, 0.0010673771612346172, 0.010909723117947578, 0.0029024267569184303, 0.0034648317378014326, 0.002712294226512313, 0.030649906024336815, 0.4172075688838959, 0.024898499250411987, 0.013032658025622368, 0.013816745951771736, 0.0016599389491602778, 0.001979984575882554, 0.0033442906569689512, 0.03448781371116638, 0.41767752170562744], [0.021973080933094025, 0.11463961005210876, 0.008249381557106972, 0.008443331345915794, 0.0016807846259325743, 0.00857829861342907, 0.004734683781862259, 0.01720252074301243, 0.20377548038959503, 0.08148840069770813, 0.12394528090953827, 0.037925396114587784, 0.039062853902578354, 0.014924994669854641, 0.03167993575334549, 0.07768147438764572, 0.2040143609046936], [0.015987304970622063, 0.029722819104790688, 0.0038740970194339752, 0.010076967999339104, 0.030323894694447517, 0.0322301872074604, 0.016984013840556145, 0.014620089903473854, 0.3000859320163727, 0.03443753346800804, 0.02070557326078415, 0.03901701420545578, 0.050995927304029465, 0.020987316966056824, 0.035207320004701614, 0.04655110090970993, 0.29819294810295105], [0.009800056926906109, 0.022414375096559525, 0.011662283912301064, 0.013969166204333305, 0.005651111714541912, 0.013361428864300251, 0.006015367805957794, 0.020908601582050323, 0.3546835780143738, 0.03504370525479317, 0.014956529252231121, 0.06282033771276474, 0.00644267862662673, 0.006425785832107067, 0.02936325967311859, 0.0329553484916687, 0.35352644324302673], [0.045693472027778625, 0.028873935341835022, 0.007569416426122189, 0.02534460462629795, 0.00850349199026823, 0.013826144859194756, 0.016999240964651108, 0.043204594403505325, 0.2920227348804474, 0.04142223298549652, 0.04287896677851677, 0.04896218702197075, 0.009458008222281933, 0.0074393004179000854, 0.025354625657200813, 0.04927218705415726, 0.29317477345466614], [0.026541445404291153, 0.022693820297718048, 0.01782643422484398, 0.01720244064927101, 0.004403784405440092, 0.012205874547362328, 0.011370832100510597, 0.032343506813049316, 0.24245671927928925, 0.0388604998588562, 0.04566324129700661, 0.08541925251483917, 0.026139279827475548, 0.014914426021277905, 0.05854498967528343, 0.09926380217075348, 0.24414974451065063], [0.015273853205144405, 0.012693632394075394, 0.0030219326727092266, 0.008167976513504982, 0.0026210134383291006, 0.018482642248272896, 0.0122247114777565, 0.043228983879089355, 0.27787095308303833, 0.045327331870794296, 0.026973629370331764, 0.043306175619363785, 0.010407078079879284, 0.018379922956228256, 0.06542158126831055, 0.11675029993057251, 0.2798483371734619], [0.004644386470317841, 0.003321829717606306, 0.0050865886732935905, 0.002393309725448489, 0.0011556813260540366, 0.0017870698357000947, 0.0006104191415943205, 0.012987826950848103, 0.4755563735961914, 0.0055827489122748375, 0.0029940621461719275, 0.0012819472467526793, 0.0007164013222791255, 0.001179285580292344, 0.0015245575923472643, 0.00768388994038105, 0.4714936912059784]], [[0.017892248928546906, 0.09621790051460266, 0.27972814440727234, 0.04248691350221634, 0.036734793335199356, 0.08579163253307343, 0.047321733087301254, 0.16168665885925293, 0.10481302440166473, 0.0026634098030626774, 0.0029089536983519793, 0.002742952201515436, 0.005386663135141134, 0.001968739554286003, 0.0016956259496510029, 0.006729320622980595, 0.10323139280080795], [0.006097771693021059, 0.034571822732686996, 0.02834142930805683, 0.01489602867513895, 0.011280916631221771, 0.005926548037678003, 0.006407484412193298, 0.07840634882450104, 0.3984966576099396, 0.001380393048748374, 0.011279840022325516, 0.003508141962811351, 0.0010208252351731062, 0.001003950834274292, 0.0005153188249096274, 0.003190564224496484, 0.3936760425567627], [0.008414425887167454, 0.020426031202077866, 0.029306910932064056, 0.008140305057168007, 0.003373718587681651, 0.00570417195558548, 0.0032661971636116505, 0.042032670229673386, 0.42415526509284973, 0.0014886913122609258, 0.01338985562324524, 0.0024499224964529276, 0.001518317381851375, 0.005368678364902735, 0.005018692463636398, 0.006877680774778128, 0.41906851530075073], [0.0040637715719640255, 0.023357607424259186, 0.011164208874106407, 0.0061511932872235775, 0.005613989662379026, 0.0051599349826574326, 0.004296521190553904, 0.05728956684470177, 0.43970683217048645, 0.0021394025534391403, 0.0022374673280864954, 0.0016334035899490118, 0.0006734568160027266, 0.0006394304218702018, 0.0002148713101632893, 0.0014955428196117282, 0.43416279554367065], [0.00246781250461936, 0.005526396445930004, 0.003295141039416194, 0.001365789445117116, 0.004704872611910105, 0.002192872576415539, 0.002819143468514085, 0.034813810139894485, 0.47196128964424133, 0.0003973311686422676, 0.0007331280503422022, 0.0010172321926802397, 0.0003610823769122362, 0.00042566232150420547, 0.00015019436250440776, 0.000298165250569582, 0.46747010946273804], [0.012753617018461227, 0.026578955352306366, 0.03122747875750065, 0.007042259443551302, 0.019207507371902466, 0.015565520152449608, 0.019687412306666374, 0.08892396092414856, 0.3711673617362976, 0.004803582560271025, 0.0061154658906161785, 0.007158601190894842, 0.002716852119192481, 0.006478235591202974, 0.005087439436465502, 0.00709317484870553, 0.36839255690574646], [0.006345175672322512, 0.02158680185675621, 0.021593932062387466, 0.0076037319377064705, 0.008861963637173176, 0.004473880399018526, 0.01908325031399727, 0.09513793140649796, 0.4066341817378998, 0.0011972530046477914, 0.0007016954477876425, 0.0008068008464761078, 0.0003328810853417963, 0.00038028485141694546, 0.0003336805966682732, 0.002802535891532898, 0.4021241068840027], [0.009660806506872177, 0.10523632913827896, 0.054255932569503784, 0.10370367020368576, 0.09922593832015991, 0.019991405308246613, 0.03873194381594658, 0.16783082485198975, 0.1915450245141983, 0.011329763568937778, 0.0027545730117708445, 0.0011474986094981432, 0.0011327818501740694, 0.001007491140626371, 0.0003843840677291155, 0.0028942839708179235, 0.189167320728302], [0.015019276179373264, 0.010747543536126614, 0.014063682407140732, 0.004853293765336275, 0.004904619883745909, 0.007413987535983324, 0.002837849548086524, 0.0210548248142004, 0.42789772152900696, 0.011836061254143715, 0.015538095496594906, 0.009615554474294186, 0.005789626389741898, 0.007745843380689621, 0.005369522608816624, 0.008734038099646568, 0.4265786111354828], [0.006379035767167807, 0.0045412154868245125, 0.0032286308705806732, 0.0015580117469653487, 0.0008801146177574992, 0.003727972973138094, 0.0008744430961087346, 0.017086487263441086, 0.43658846616744995, 0.004015125334262848, 0.01637202501296997, 0.01082569919526577, 0.005043269135057926, 0.018027866259217262, 0.01666681468486786, 0.015894470736384392, 0.4382903277873993], [0.005039175506681204, 0.007503471802920103, 0.0037879012525081635, 0.0014426256529986858, 0.0004411647969391197, 0.0009918047580868006, 0.0003513083793222904, 0.01078211609274149, 0.42976224422454834, 0.003343496471643448, 0.03389886021614075, 0.028243690729141235, 0.0034834370017051697, 0.011447899974882603, 0.007948198355734348, 0.02151968702673912, 0.43001294136047363], [0.004690959118306637, 0.004124640021473169, 0.0030791957397013903, 0.0008392746676690876, 0.0004405039653647691, 0.0031554396264255047, 0.0007373033440671861, 0.017180629074573517, 0.4306209683418274, 0.0011428790166974068, 0.017727700993418694, 0.01323712058365345, 0.004286666866391897, 0.01373759564012289, 0.023414989933371544, 0.027665292844176292, 0.43391892313957214], [0.00862114317715168, 0.01135148387402296, 0.012981223873794079, 0.000691631983499974, 0.0003235400072298944, 0.0020609041675925255, 0.000785970943979919, 0.018089689314365387, 0.4154861271381378, 0.002915895078331232, 0.0375804640352726, 0.01098239328712225, 0.004822440445423126, 0.01784657873213291, 0.024782152846455574, 0.011576290242373943, 0.4191019833087921], [0.025518914684653282, 0.006133803632110357, 0.009012063033878803, 0.0025384153705090284, 0.0013000465696677566, 0.012946446426212788, 0.005756751634180546, 0.04848466068506241, 0.2682812213897705, 0.04943094402551651, 0.018901454284787178, 0.024830572307109833, 0.01123689766973257, 0.0640338659286499, 0.09055264294147491, 0.09320801496505737, 0.26783332228660583], [0.014500671997666359, 0.005180492997169495, 0.005493436940014362, 0.0009324002894572914, 0.0002000768727157265, 0.0024098618887364864, 0.0017877763602882624, 0.0339442640542984, 0.33759304881095886, 0.02328888699412346, 0.013789908029139042, 0.01204779651015997, 0.007757064886391163, 0.03551098331809044, 0.0496433861553669, 0.11847839504480362, 0.33744144439697266], [0.01168446708470583, 0.009222637861967087, 0.002364739775657654, 0.004237509332597256, 0.0008104023872874677, 0.0016773530514910817, 0.002601410960778594, 0.031581830233335495, 0.34230467677116394, 0.061746738851070404, 0.025163564831018448, 0.013345015235245228, 0.0035660546272993088, 0.029116347432136536, 0.023395469412207603, 0.09069269895553589, 0.34648916125297546], [0.014953400939702988, 0.010602684691548347, 0.013698993250727654, 0.004751116503030062, 0.004801769275218248, 0.007260110694915056, 0.002760824980214238, 0.02062361314892769, 0.4283122718334198, 0.011955776251852512, 0.015642190352082253, 0.009747856296598911, 0.005809553898870945, 0.007841427810490131, 0.005396663676947355, 0.00879810843616724, 0.427043616771698]]], [[[0.009784198366105556, 0.06344977021217346, 0.06350541859865189, 0.10532840341329575, 0.019043484702706337, 0.060828521847724915, 0.04589780792593956, 0.10801858454942703, 0.24758686125278473, 0.007371070794761181, 0.0020562754943966866, 0.003068702993914485, 0.001770065282471478, 0.0032568874303251505, 0.004766311030834913, 0.006450070068240166, 0.2478174865245819], [0.012747925706207752, 0.037697337567806244, 0.035048969089984894, 0.050928063690662384, 0.032982971519231796, 0.06089800223708153, 0.06137798726558685, 0.06971123814582825, 0.3180164098739624, 0.0015730548184365034, 0.0006176151218824089, 0.0009819604456424713, 0.0004689690831582993, 0.0003200812789145857, 0.0003572754212655127, 0.0007954053580760956, 0.31547674536705017], [0.020289044827222824, 0.03581579029560089, 0.03444864973425865, 0.020815229043364525, 0.01792898029088974, 0.029115784913301468, 0.020787101238965988, 0.040959130972623825, 0.38620296120643616, 0.0024387615267187357, 0.000964595761615783, 0.0016872045816853642, 0.0008631363161839545, 0.0010445145890116692, 0.0018621800700202584, 0.001427622977644205, 0.3833491802215576], [0.006655355915427208, 0.1915997862815857, 0.03431512787938118, 0.01052369736135006, 0.02027483657002449, 0.015129264444112778, 0.035484883934259415, 0.04475521668791771, 0.3216469883918762, 0.0025473006535321474, 0.0003266029816586524, 0.00013894002768211067, 0.00029300845926627517, 8.91031013452448e-05, 7.486743561457843e-05, 0.00041374441934749484, 0.3157312572002411], [0.004118661396205425, 0.08324164897203445, 0.04330205172300339, 0.06619128584861755, 0.031995534896850586, 0.014395874924957752, 0.03820759430527687, 0.024274663999676704, 0.34801867604255676, 0.0015811186749488115, 0.00024411195772700012, 0.0001614234206499532, 0.00010920059139607474, 0.00013633447815664113, 0.00019805652846116573, 0.0014219180447980762, 0.3424018323421478], [0.007169913500547409, 0.14041462540626526, 0.044219449162483215, 0.1257401555776596, 0.11478133499622345, 0.02485238015651703, 0.04211713746190071, 0.03533770889043808, 0.22608068585395813, 0.005142113659530878, 0.0007632905035279691, 0.000770245329476893, 0.0016080166678875685, 0.0005241295439191163, 0.0006482986500486732, 0.005554784554988146, 0.22427575290203094], [0.005102440714836121, 0.08522544801235199, 0.014583348296582699, 0.21162785589694977, 0.12515853345394135, 0.051443375647068024, 0.042615070939064026, 0.020999761298298836, 0.22143219411373138, 0.0012102406471967697, 0.00025780353462323546, 0.00016080736531876028, 0.00023815226450096816, 4.795687345904298e-05, 7.890781853348017e-05, 0.0008461686666123569, 0.218971848487854], [0.006187396124005318, 0.0747554674744606, 0.06622717529535294, 0.07507996261119843, 0.03612075373530388, 0.23256315290927887, 0.09893076121807098, 0.01960683986544609, 0.19426439702510834, 0.001043264172039926, 0.0001706254406599328, 0.0006140281329862773, 0.0008297772728838027, 0.00045525419409386814, 0.0004455914895515889, 0.0003260369994677603, 0.19237954914569855], [0.024467743933200836, 0.018417391926050186, 0.022621972486376762, 0.009935016743838787, 0.006936731282621622, 0.015614781528711319, 0.005365448538213968, 0.0148396585136652, 0.41056859493255615, 0.013656741008162498, 0.007858437485992908, 0.009717412292957306, 0.007288186810910702, 0.0059538655914366245, 0.005341776646673679, 0.01094656903296709, 0.41046974062919617], [0.03759179264307022, 0.005974110681563616, 0.0015596693847328424, 0.01028980128467083, 0.002490728860720992, 0.006004712078720331, 0.000806200027000159, 0.012712272815406322, 0.3938857913017273, 0.06413222849369049, 0.022870821878314018, 0.023894766345620155, 0.004525987897068262, 0.003469267161563039, 0.005853339098393917, 0.011140190064907074, 0.3927983045578003], [0.022916166111826897, 0.007795052137225866, 0.002382806269451976, 0.002217048779129982, 0.00043463564361445606, 0.0021345033310353756, 0.0009567904635332525, 0.017230048775672913, 0.2991914451122284, 0.16911499202251434, 0.026645198464393616, 0.02374105341732502, 0.0214175283908844, 0.024717751890420914, 0.04131259769201279, 0.03836309164762497, 0.29942935705184937], [0.0071457442827522755, 0.002279195236042142, 0.0003260670346207917, 0.0004371095565147698, 0.0001423008943675086, 0.00013660390686709434, 0.00023541183327324688, 0.004492998588830233, 0.1667223870754242, 0.22635170817375183, 0.06139340251684189, 0.03372678533196449, 0.03635207191109657, 0.08549913763999939, 0.03999122604727745, 0.16856907308101654, 0.16619867086410522], [0.011841129511594772, 0.005342570599168539, 0.0016491134883835912, 0.002306309062987566, 0.00027519321884028614, 0.0018119483720511198, 0.0004261615686118603, 0.006615588907152414, 0.15364013612270355, 0.09385194629430771, 0.22153621912002563, 0.06602104008197784, 0.035056423395872116, 0.061841849237680435, 0.13494563102722168, 0.04923003539443016, 0.1536087840795517], [0.007978757843375206, 0.0026990456972271204, 0.001542517333291471, 0.0008321352070197463, 0.00015852856449782848, 0.0003729863674379885, 0.00016807820065878332, 0.0006434714305214584, 0.14921028912067413, 0.10562007874250412, 0.08513916283845901, 0.15670670568943024, 0.2225346863269806, 0.04266449064016342, 0.04016302153468132, 0.03378509730100632, 0.14978085458278656], [0.008475298061966896, 0.0015436670510098338, 0.0007279440178535879, 0.0005443510599434376, 8.443139086011797e-05, 0.00047076420742087066, 9.88888496067375e-05, 0.0005164956673979759, 0.13775314390659332, 0.07110677659511566, 0.08375905454158783, 0.1144537702202797, 0.2723900377750397, 0.10427999496459961, 0.040895577520132065, 0.024877039715647697, 0.138022780418396], [0.023352667689323425, 0.007963527925312519, 0.0033872213680297136, 0.0018478332785889506, 0.0005030385800637305, 0.0026986205484718084, 0.0011642086319625378, 0.006802186369895935, 0.2550806701183319, 0.20330046117305756, 0.0661063939332962, 0.041094306856393814, 0.05341745540499687, 0.024447940289974213, 0.022258510813117027, 0.03148074075579643, 0.25509417057037354], [0.02454359456896782, 0.01837095245718956, 0.02251279354095459, 0.009905047714710236, 0.006903310772031546, 0.015575935132801533, 0.0053365156054496765, 0.01471058651804924, 0.41022977232933044, 0.01393903512507677, 0.007943134754896164, 0.009865550324320793, 0.007454370614141226, 0.006049365736544132, 0.005452387034893036, 0.011086850427091122, 0.4101208448410034]], [[0.023426394909620285, 0.09086892008781433, 0.05412374064326286, 0.04057744890451431, 0.0296955406665802, 0.3290298581123352, 0.06603242456912994, 0.025668540969491005, 0.1050044372677803, 0.07524964958429337, 0.024704841896891594, 0.006263480521738529, 0.0042268699035048485, 0.0026561543345451355, 0.006586187519133091, 0.011579404585063457, 0.10430606454610825], [0.024621548131108284, 0.038398053497076035, 0.1436786949634552, 0.003269249340519309, 0.0029172715730965137, 0.017160942777991295, 0.002876817248761654, 0.006300558336079121, 0.29066383838653564, 0.012737920507788658, 0.12349595874547958, 0.01720115914940834, 0.003269166685640812, 0.005530004855245352, 0.007470955140888691, 0.013863109983503819, 0.28654488921165466], [0.005516650155186653, 0.0022310451604425907, 0.6447200775146484, 0.0015197627944871783, 0.00022418788284994662, 0.0013377133291214705, 0.00021752827160526067, 0.0014123632572591305, 0.11988424509763718, 0.0025745059829205275, 0.049204569309949875, 0.0015075196279212832, 0.0005030538886785507, 0.007739703170955181, 0.016909180209040642, 0.025284694507718086, 0.11921317875385284], [0.013424402102828026, 0.003142555011436343, 0.08069439977407455, 0.049036744982004166, 0.018610630184412003, 0.03919357806444168, 0.011662953533232212, 0.0015985965728759766, 0.2843291461467743, 0.013888023793697357, 0.012861283496022224, 0.01952863298356533, 0.0065907444804906845, 0.026999998837709427, 0.025237450376152992, 0.11269043385982513, 0.28051042556762695], [0.003420221619307995, 0.00025893712881952524, 0.007037052419036627, 0.012030331417918205, 0.21710552275180817, 0.011932444758713245, 0.0025048949755728245, 0.00029943991103209555, 0.33892133831977844, 0.0020031831227242947, 0.0014148547779768705, 0.01591162383556366, 0.01427283976227045, 0.01989276334643364, 0.006487254519015551, 0.009423681534826756, 0.3370836675167084], [0.02035590261220932, 0.0015163960633799434, 0.023009400814771652, 0.01885882019996643, 0.022646859288215637, 0.1507120132446289, 0.005922086536884308, 0.003945509437471628, 0.2660212516784668, 0.06442612409591675, 0.008216682821512222, 0.016198374330997467, 0.019237861037254333, 0.019144710153341293, 0.01865171454846859, 0.07782933861017227, 0.2633069157600403], [0.015694277361035347, 0.002930335234850645, 0.04194282367825508, 0.012919040396809578, 0.00666051497682929, 0.040622636675834656, 0.0610898919403553, 0.0027305837720632553, 0.35911235213279724, 0.024171948432922363, 0.00694342190399766, 0.013802092522382736, 0.006761043332517147, 0.014705506153404713, 0.015210062265396118, 0.021005921065807343, 0.35369759798049927], [0.023699460551142693, 0.005310104228556156, 0.3213992416858673, 0.01682310737669468, 0.022914046421647072, 0.0522843562066555, 0.0055830152705311775, 0.02809286303818226, 0.23498646914958954, 0.01337648369371891, 0.0028448880184441805, 0.0040090568363666534, 0.0026992689818143845, 0.0044503165408968925, 0.006275787949562073, 0.023720959201455116, 0.23153062164783478], [0.008026348426938057, 0.004190546460449696, 0.015968410298228264, 0.002014709636569023, 0.003019441617652774, 0.011358496733009815, 0.002573121339082718, 0.007406445685774088, 0.4667324125766754, 0.0031410264782607555, 0.002090931637212634, 0.001405903953127563, 0.001393108512274921, 0.0014646362978965044, 0.00241012847982347, 0.0036539460998028517, 0.46315041184425354], [0.06173773109912872, 0.005219586193561554, 0.010637922212481499, 0.0069235581904649734, 0.006184763740748167, 0.05883077159523964, 0.011992666870355606, 0.008501331321895123, 0.28056904673576355, 0.254031777381897, 0.0026666794437915087, 0.005549427587538958, 0.0019293546210974455, 0.0005735139711759984, 0.0008336604223586619, 0.004465118981897831, 0.27935317158699036], [0.01389636006206274, 0.2612924575805664, 0.1891685575246811, 0.013017017394304276, 0.00388146610930562, 0.01795179955661297, 0.007501694839447737, 0.006427280139178038, 0.13973206281661987, 0.006873636040836573, 0.18422868847846985, 0.002623241161927581, 0.0009048343636095524, 0.002248573349788785, 0.004248838406056166, 0.006088587921112776, 0.13991506397724152], [0.008264562115073204, 0.0020955554209649563, 0.004778152797371149, 0.005036917049437761, 0.0038053111638873816, 0.01529700681567192, 0.005853740964084864, 0.002864048583433032, 0.39063626527786255, 0.0020188239868730307, 0.001178789883852005, 0.13836894929409027, 0.015611344948410988, 0.004985304549336433, 0.0058033945970237255, 0.007987669669091702, 0.3854142129421234], [0.008076338097453117, 0.003289994318038225, 0.012813783250749111, 0.0028527146205306053, 0.0031428243964910507, 0.040546756237745285, 0.0036880800034850836, 0.0013141152448952198, 0.39437147974967957, 0.0022148294374346733, 0.0009569390676915646, 0.006357843987643719, 0.05777463689446449, 0.03549087792634964, 0.031814076006412506, 0.0022707595489919186, 0.3930239677429199], [0.0015492504462599754, 0.0022451216354966164, 0.027323711663484573, 0.0018424221780151129, 0.0004783851618412882, 0.0038252221420407295, 0.0009323082631453872, 0.0019342771265655756, 0.38407397270202637, 0.0003855380055028945, 0.00018764693231787533, 0.0006471810047514737, 0.0022911105770617723, 0.11484184861183167, 0.07481786608695984, 0.0015381876146420836, 0.38108599185943604], [0.00311397947371006, 0.003953402396291494, 0.10373593121767044, 0.002683662809431553, 0.00041021895594894886, 0.011511394754052162, 0.0017577899852767587, 0.0016149088041856885, 0.3797663152217865, 0.0005000595701858401, 0.0001689191412879154, 0.00025194440968334675, 0.0020486365538090467, 0.04753920063376427, 0.06122308969497681, 0.00229973578825593, 0.37742090225219727], [0.008566826581954956, 0.004820035304874182, 0.10270403325557709, 0.027614807710051537, 0.010357152670621872, 0.04785694554448128, 0.007361290510743856, 0.004244815558195114, 0.3579777777194977, 0.007107240613549948, 0.001643623225390911, 0.002469724975526333, 0.002502693561837077, 0.008207248523831367, 0.01291501335799694, 0.03789015859365463, 0.3557606637477875], [0.00800420343875885, 0.004144016187638044, 0.015761403366923332, 0.001992602366954088, 0.002974899485707283, 0.011284622363746166, 0.0025480231270194054, 0.007330615539103746, 0.46702513098716736, 0.0031201334204524755, 0.0020701319444924593, 0.0013982948148623109, 0.001391572062857449, 0.0014604085590690374, 0.0024074267130345106, 0.003639474743977189, 0.46344706416130066]], [[0.0007928471313789487, 0.0010190174216404557, 0.0001585514983162284, 5.1434584747767076e-05, 7.742998423054814e-05, 5.713174687116407e-05, 1.3919206139689777e-05, 0.00010720450518419966, 0.008091758005321026, 0.4729365408420563, 0.48991313576698303, 0.001260687131434679, 0.0012585459044203162, 0.002653754549100995, 0.0013919114135205746, 0.012034980580210686, 0.00818114634603262], [0.0010029723634943366, 0.04209662228822708, 0.7135932445526123, 0.002554489765316248, 0.004366864915937185, 0.007230494171380997, 0.0012529529631137848, 0.0035684374161064625, 0.11116693913936615, 0.0003105650539509952, 0.0009245284018106759, 8.303656068164855e-05, 4.5787444832967594e-05, 0.0002466466976329684, 0.00010257070243824273, 0.00023893841716926545, 0.11121497303247452], [0.0036516403779387474, 0.0472995862364769, 0.10641839355230331, 0.004822524264454842, 0.0033394680358469486, 0.005479796323925257, 0.0005949529586359859, 0.0038098131772130728, 0.40914592146873474, 0.0005327476537786424, 0.0022035958245396614, 9.65610597631894e-05, 2.3932583644636907e-05, 0.00047764237388037145, 0.00025047536473721266, 0.0006909643416292965, 0.4111621379852295], [0.00224355049431324, 0.20634308457374573, 0.15376883745193481, 0.02267998643219471, 0.05664416030049324, 0.17337311804294586, 0.052645668387413025, 0.016855567693710327, 0.1496681421995163, 0.006643256638199091, 0.004730977118015289, 0.00032622195431031287, 0.0007639311370439827, 0.0015364665305241942, 0.0013437119778245687, 0.0009342811536043882, 0.14949901401996613], [0.00036538299173116684, 0.005143022630363703, 0.002708811778575182, 0.015038595534861088, 0.010681343264877796, 0.2885156273841858, 0.08330053091049194, 0.0021479318384081125, 0.2943871021270752, 0.00024521484738215804, 0.00019054162839893252, 0.0002420800010440871, 0.0010319185676053166, 0.00015022132720332593, 0.0004866015224251896, 0.0011610363144427538, 0.2942039668560028], [0.0019862966146320105, 0.008307765237987041, 0.007513422053307295, 0.005484171211719513, 0.0022039590403437614, 0.010158870369195938, 0.020145241171121597, 0.008998398669064045, 0.46509525179862976, 0.0007951314910314977, 0.0014751587295904756, 4.8424044507555664e-05, 0.00012909101496916264, 0.00014812868903391063, 0.0004014586447738111, 0.0013958034105598927, 0.4657135307788849], [0.0011545439483597875, 0.011793678626418114, 0.03125939145684242, 0.019059352576732635, 0.0045966277830302715, 0.5868287086486816, 0.015473531559109688, 0.009756382554769516, 0.15759997069835663, 0.0004776150162797421, 0.0008431479800492525, 0.0001769419468473643, 0.0003066942736040801, 0.00048201929894275963, 0.0004719459975603968, 0.0007038738112896681, 0.15901556611061096], [0.007597621995955706, 0.02762264385819435, 0.0015580342151224613, 0.003504459047690034, 0.0018398012034595013, 0.0010083654196932912, 0.0016443085623905063, 0.022401709109544754, 0.4108135998249054, 0.05752861872315407, 0.045575715601444244, 0.002179911360144615, 0.0007118297507986426, 0.0003898569557350129, 0.0004101578379049897, 0.010229206643998623, 0.40498408675193787], [0.015399283729493618, 0.018684647977352142, 0.014629903249442577, 0.00660094665363431, 0.004707104992121458, 0.0048784250393509865, 0.0035417857579886913, 0.009543202817440033, 0.4163462817668915, 0.031936950981616974, 0.026409320533275604, 0.004559976980090141, 0.004625579807907343, 0.004424510058015585, 0.004790178965777159, 0.012767665088176727, 0.4161543548107147], [0.0012899106368422508, 0.0014286903897300363, 0.00028151809237897396, 0.0002843741967808455, 2.6972358682542108e-05, 0.00013084612146485597, 4.491140498430468e-05, 0.0002051533228950575, 0.27967092394828796, 0.08779480308294296, 0.17805759608745575, 0.04674695059657097, 0.020709386095404625, 0.01918979547917843, 0.018726643174886703, 0.06531854718923569, 0.28009292483329773], [0.0007588337175548077, 0.0010279363486915827, 0.0025828767102211714, 8.240942406700924e-05, 1.8693173842621036e-05, 9.753202175488696e-05, 6.6001052800857e-06, 0.00011051636829506606, 0.4346608519554138, 0.005069286562502384, 0.07423696666955948, 0.015227903611958027, 0.003092620987445116, 0.010285470634698868, 0.005573331378400326, 0.0116641940549016, 0.4355039894580841], [0.0009207585244439542, 0.00025215683854185045, 0.00014215118426363915, 7.439858018187806e-05, 2.3911999960546382e-05, 0.0001456388272345066, 8.773212175583467e-05, 4.157734292675741e-05, 0.041626106947660446, 0.004591154400259256, 0.013006534427404404, 0.03127625957131386, 0.7725826501846313, 0.02847745455801487, 0.04133325815200806, 0.023614436388015747, 0.04180379584431648], [0.0006537518347613513, 0.00027108658105134964, 0.00011661239841487259, 0.00017735996516421437, 1.6529331333003938e-05, 0.0005820655496791005, 2.5977740733651444e-05, 8.661939500598237e-05, 0.07484365999698639, 0.007562749087810516, 0.005310478154569864, 0.00762539729475975, 0.057572752237319946, 0.37981534004211426, 0.3452264070510864, 0.04433475434780121, 0.07577834278345108], [0.0011331927962601185, 0.0008856852073222399, 0.0003775305231101811, 0.00017986708553507924, 2.373816641920712e-05, 0.000122232420835644, 0.00010523421224206686, 0.0001699059794191271, 0.34300947189331055, 0.004500371403992176, 0.025135058909654617, 0.01057968009263277, 0.02187531068921089, 0.015773041173815727, 0.11920908838510513, 0.11226807534694672, 0.34465259313583374], [0.001784972962923348, 0.0010175504721701145, 0.0019429970998317003, 0.0005001031677238643, 6.0668273363262415e-05, 0.0004930826253257692, 9.65116560109891e-05, 0.00031560324714519083, 0.37393417954444885, 0.005092592444270849, 0.030623409897089005, 0.011288324370980263, 0.010929844342172146, 0.03941577672958374, 0.068989597260952, 0.0736636146903038, 0.37985122203826904], [0.0009639525087550282, 0.006386091932654381, 0.0012288535945117474, 0.0006315894424915314, 0.00011385047400835901, 0.0006355810328386724, 0.0001658378168940544, 0.0002279883046867326, 0.39411845803260803, 0.0013962500961497426, 0.11110951751470566, 0.011784755624830723, 0.0014553541550412774, 0.008263815194368362, 0.014601712115108967, 0.04610944539308548, 0.4008070230484009], [0.015386379323899746, 0.01851164735853672, 0.014620572328567505, 0.006580662913620472, 0.00470785703510046, 0.004902621731162071, 0.003557579591870308, 0.009431354701519012, 0.4165700674057007, 0.03163239359855652, 0.026281578466296196, 0.004576405510306358, 0.00468110479414463, 0.004471130669116974, 0.00486260000616312, 0.012844269163906574, 0.4163818061351776]], [[0.008268628269433975, 0.03745492175221443, 0.09149684011936188, 0.02669140137732029, 0.02633247897028923, 0.011395346373319626, 0.007168611511588097, 0.03556559234857559, 0.26884135603904724, 0.025360368192195892, 0.027727726846933365, 0.03671010956168175, 0.014761500991880894, 0.03874959051609039, 0.0320102758705616, 0.04242224991321564, 0.2690429985523224], [0.016845375299453735, 0.0218306016176939, 0.036527182906866074, 0.011158578097820282, 0.009073068387806416, 0.014578185975551605, 0.0058029755018651485, 0.030473915860056877, 0.35241812467575073, 0.0281349066644907, 0.021122025325894356, 0.020940164104104042, 0.01173543743789196, 0.007091095671057701, 0.01605815440416336, 0.04283600673079491, 0.35337433218955994], [0.02414902113378048, 0.008548571728169918, 0.0028651379980146885, 0.003636774141341448, 0.0033346032723784447, 0.0073812128975987434, 0.005321365315467119, 0.012973500415682793, 0.34287354350090027, 0.00543315289542079, 0.004977128002792597, 0.0048849876038730145, 0.025981323793530464, 0.05213598906993866, 0.12927523255348206, 0.02463546395301819, 0.3415929079055786], [0.03723059967160225, 0.02151254005730152, 0.01725471392273903, 0.005822973325848579, 0.006301756948232651, 0.024294724687933922, 0.007894588634371758, 0.04295893386006355, 0.3110547661781311, 0.107973113656044, 0.004542628303170204, 0.022724678739905357, 0.0069719417952001095, 0.008445045910775661, 0.017451029270887375, 0.04614988714456558, 0.31141600012779236], [0.031034693121910095, 0.010611320845782757, 0.008594815619289875, 0.002274045255035162, 0.0001026106983772479, 0.004529307130724192, 0.0015667160041630268, 0.07144632935523987, 0.32413357496261597, 0.11960802227258682, 0.0012866504257544875, 0.06574541330337524, 0.0027275211177766323, 0.0015447484329342842, 0.005019684322178364, 0.024004632607102394, 0.32576993107795715], [0.01629139482975006, 0.006612601689994335, 0.013118643313646317, 0.005902975331991911, 0.0012208023108541965, 0.0009645412210375071, 0.0028060423210263252, 0.020595334470272064, 0.30390551686286926, 0.06789546459913254, 0.0035564410500228405, 0.12111339718103409, 0.014632150530815125, 0.009795651771128178, 0.03575066849589348, 0.0714687928557396, 0.3043694496154785], [0.01867850311100483, 0.014446166343986988, 0.02077842876315117, 0.008636676706373692, 0.002688441891223192, 0.012393290176987648, 0.0021478869020938873, 0.03494225814938545, 0.3763873875141144, 0.032709840685129166, 0.005623155739158392, 0.039324406534433365, 0.006350561510771513, 0.0029939881060272455, 0.006746789440512657, 0.03811773657798767, 0.37703457474708557], [0.02582516334950924, 0.01827569305896759, 0.010876113548874855, 0.012015820480883121, 0.014953626319766045, 0.013011423870921135, 0.007065214682370424, 0.054383695125579834, 0.3805626630783081, 0.02532600425183773, 0.0035393217112869024, 0.007039695978164673, 0.003352570114657283, 0.0032674113754183054, 0.005297438241541386, 0.03360140323638916, 0.38160696625709534], [0.05303102731704712, 0.03728470951318741, 0.048727720975875854, 0.025673650205135345, 0.021410545334219933, 0.030488714575767517, 0.020884282886981964, 0.06786485761404037, 0.23328326642513275, 0.03891906514763832, 0.039990827441215515, 0.018312886357307434, 0.020030900835990906, 0.020705249160528183, 0.033295806497335434, 0.05638739839196205, 0.23370924592018127], [0.0017501875991001725, 0.008840775117278099, 0.028043758124113083, 0.031723182648420334, 0.009798775427043438, 0.013512959703803062, 0.003650103695690632, 0.010985199362039566, 0.41752153635025024, 0.0004744687466882169, 0.0041789342649281025, 0.010179707780480385, 0.009091350249946117, 0.0059426273219287395, 0.01243901439011097, 0.01269543170928955, 0.419172078371048], [0.00284730177372694, 0.013878148049116135, 0.17281247675418854, 0.00869311485439539, 0.00299784354865551, 0.010952113196253777, 0.0032772806007415056, 0.006277928594499826, 0.33355259895324707, 0.0016168219735845923, 0.0172574482858181, 0.014700569212436676, 0.010268103331327438, 0.0166130643337965, 0.03358970955014229, 0.01717262528836727, 0.33349278569221497], [0.014402853325009346, 0.0066318204626441, 0.06104583293199539, 0.007202048320323229, 0.012211530469357967, 0.07296831160783768, 0.00637474050745368, 0.006198493298143148, 0.3520578444004059, 0.008541238494217396, 0.006529742851853371, 0.0017727972008287907, 0.009005926549434662, 0.01664128340780735, 0.03240308538079262, 0.03185691311955452, 0.35415562987327576], [0.017481131479144096, 0.011335554532706738, 0.20226339995861053, 0.005008322186768055, 0.004057300742715597, 0.04900494962930679, 0.007772776763886213, 0.0037359201814979315, 0.2660984694957733, 0.011456032283604145, 0.030969975516200066, 0.023719724267721176, 0.015175752341747284, 0.02228698693215847, 0.040218982845544815, 0.021382706239819527, 0.2680320143699646], [0.013568823225796223, 0.006216733250766993, 0.11433801800012589, 0.0025357038248330355, 0.0010122503153979778, 0.013036418706178665, 0.0015781839611008763, 0.003966239280998707, 0.35356152057647705, 0.006130673922598362, 0.019616687670350075, 0.044375985860824585, 0.028211383149027824, 0.006961803417652845, 0.014315254986286163, 0.015410322695970535, 0.35516390204429626], [0.01631595566868782, 0.0045090303756296635, 0.19948728382587433, 0.005116892978549004, 0.0019825510680675507, 0.0364498496055603, 0.002869738033041358, 0.0038624706212431192, 0.2989121377468109, 0.006110471207648516, 0.017513882368803024, 0.0305311381816864, 0.028081119060516357, 0.010026843287050724, 0.008271484635770321, 0.028830019757151604, 0.30112913250923157], [0.014537427574396133, 0.035470303148031235, 0.06111142784357071, 0.022311337292194366, 0.010467912070453167, 0.056074269115924835, 0.011992115527391434, 0.053276047110557556, 0.31310322880744934, 0.007786608301103115, 0.009195945225656033, 0.024453556165099144, 0.011921915225684643, 0.017283309251070023, 0.023421403020620346, 0.013317687436938286, 0.31427547335624695], [0.05304360017180443, 0.03713420405983925, 0.048477653414011, 0.02553393691778183, 0.02128525823354721, 0.030364230275154114, 0.020786810666322708, 0.06785456091165543, 0.23367692530155182, 0.038843583315610886, 0.039974577724933624, 0.018305344507098198, 0.020090973004698753, 0.020757785066962242, 0.03350004181265831, 0.05627121776342392, 0.2340993881225586]], [[0.015332890674471855, 0.08737398684024811, 0.13119736313819885, 0.11513181775808334, 0.08929683268070221, 0.14574450254440308, 0.015729151666164398, 0.06846041232347488, 0.1487916111946106, 0.003590339794754982, 0.002598183462396264, 0.00648346496745944, 0.005243256688117981, 0.007748070172965527, 0.004428984597325325, 0.004524675197899342, 0.1483244001865387], [0.00045611002133227885, 0.0272374264895916, 0.7365787029266357, 0.011382960714399815, 0.008532898500561714, 0.007291649002581835, 0.0002838654909282923, 0.0006219688220880926, 0.10372467339038849, 4.369181260699406e-05, 0.00014400701911654323, 9.360193507745862e-05, 0.001165196648798883, 0.0002982378355227411, 0.00020724395290017128, 0.0004113147151656449, 0.10152650624513626], [0.0010970134753733873, 0.008627325296401978, 0.0011478657834231853, 0.06937770545482635, 0.0007389226811937988, 0.001014365116134286, 0.00018403785361442715, 0.0004872368590440601, 0.46219727396965027, 2.8902964913868345e-05, 1.1730639016604982e-05, 2.594712350401096e-05, 8.167533087544143e-05, 0.0005488924216479063, 0.0003741225809790194, 0.0003166523529216647, 0.4537402093410492], [0.0013795864069834352, 0.004270108882337809, 0.004544945899397135, 0.009267534129321575, 0.508529007434845, 0.10408904403448105, 0.0029551649931818247, 0.005478258710354567, 0.1773230880498886, 0.00015470014477614313, 0.00013584447151515633, 0.00015626999083906412, 0.00012891901133116335, 0.0003881491138599813, 4.326139242039062e-05, 0.0004734944086521864, 0.18068256974220276], [0.00012416482786647975, 0.0003148867399431765, 0.010896027088165283, 0.0013689488405361772, 0.03405134752392769, 0.8216419816017151, 0.0025357746053487062, 0.0009020163561217487, 0.06360246986150742, 0.00012422488362062722, 1.7076361018553143e-06, 1.3382806173467543e-05, 0.00031805282924324274, 7.130322774173692e-05, 3.7954763683956116e-05, 0.0001722505403449759, 0.06382343173027039], [0.0034128748811781406, 0.004842598456889391, 0.006920861080288887, 0.010850788094103336, 0.008168933913111687, 0.06358261406421661, 0.2975803017616272, 0.29324543476104736, 0.15307745337486267, 0.0023303343914449215, 0.00014334356819745153, 4.2055185076605994e-06, 4.670958514907397e-05, 3.832589936791919e-05, 0.00026926500140689313, 0.0022524523083120584, 0.15323345363140106], [0.0007266945322044194, 0.0031308603938668966, 0.00010069265408674255, 0.0021271025761961937, 0.0002731928543653339, 0.0007131104357540607, 9.368578321300447e-05, 0.44086721539497375, 0.274982750415802, 0.00010711299546528608, 9.076368769456167e-06, 7.243413051583047e-07, 1.4265960999182425e-06, 7.108249064913252e-06, 2.8156011467217468e-05, 0.0014256952563300729, 0.27540552616119385], [0.00011903046106453985, 0.013572759926319122, 0.0006089909002184868, 0.00011892664042534307, 9.199198393616825e-05, 0.00032549016759730875, 0.00010943587403744459, 0.009040736593306065, 0.47148117423057556, 0.05361013859510422, 8.289861580124125e-05, 8.080041880020872e-06, 1.4870154245727463e-06, 1.324291474702477e-06, 4.2500773815845605e-06, 1.946221527759917e-05, 0.4508037865161896], [0.005189702846109867, 0.012265386991202831, 0.006382113788276911, 0.004765898920595646, 0.001068382989615202, 0.0024016504175961018, 0.0008469437016174197, 0.00228643836453557, 0.4743560254573822, 0.006803077179938555, 0.0033591068349778652, 0.002013253979384899, 0.0036491057835519314, 0.004276950843632221, 0.0035748400259763002, 0.003063627751544118, 0.4636973738670349], [0.0003162229841109365, 0.0005452186451293528, 0.00018235394963994622, 2.0276085706427693e-05, 1.4840428775642067e-05, 6.071090410841862e-06, 4.924350378132658e-06, 9.694212167232763e-06, 0.23698459565639496, 0.0097284484654665, 0.4996904134750366, 0.0031426376663148403, 0.002990666078403592, 0.0032123925630003214, 0.0007807569345459342, 0.0018054945394396782, 0.2405649721622467], [0.002815808169543743, 0.00027634910657070577, 8.259742753580213e-05, 4.025722955702804e-05, 5.677327408193378e-06, 9.242954547517002e-06, 1.3219652146290173e-06, 3.0146355129545555e-05, 0.2824788987636566, 0.003929779399186373, 0.016445059329271317, 0.25540682673454285, 0.04932299256324768, 0.08758853375911713, 0.014621732756495476, 0.0021700274664908648, 0.2847747802734375], [0.0001613196509424597, 0.00015652301954105496, 0.00022793607786297798, 9.761581168277189e-06, 1.6123145542223938e-05, 1.0778161595226265e-05, 2.1070418654289824e-07, 3.25007476931205e-06, 0.034072209149599075, 0.0010804982157424092, 0.003334064967930317, 0.001677484717220068, 0.8715766668319702, 0.03627843037247658, 0.014506389386951923, 0.0024912741500884295, 0.03439714387059212], [0.0011209776857867837, 7.069364073686302e-05, 2.443575249344576e-05, 4.715206887340173e-05, 1.1577607210710994e-06, 1.985137350857258e-05, 7.195953344307782e-08, 2.5476107111899182e-05, 0.03079245053231716, 0.003739392152056098, 0.0004390341055113822, 0.03862687945365906, 0.0012236925540491939, 0.8444976806640625, 0.021412890404462814, 0.02663004770874977, 0.031328171491622925], [0.0028630648739635944, 0.0003615134337451309, 0.0005932210478931665, 7.836609438527375e-05, 1.48615808939212e-05, 5.582963422057219e-05, 5.609221261693165e-05, 0.00017876076162792742, 0.12457794696092606, 0.0032715334091335535, 0.0009346397127956152, 0.011404628865420818, 0.010117012076079845, 0.010504492558538914, 0.4387831389904022, 0.27237674593925476, 0.1238282173871994], [0.0020121426787227392, 0.0004418434400577098, 0.0004007595998700708, 7.266362081281841e-05, 1.1482536137918942e-05, 3.289573942311108e-05, 7.671415914956015e-06, 0.00011622636520769447, 0.27430617809295654, 0.01101713627576828, 0.0035365212243050337, 0.0018025655299425125, 0.0013382205506786704, 0.04214424267411232, 0.025255758315324783, 0.36160311102867126, 0.2759005129337311], [6.147086241981015e-05, 7.92171704233624e-05, 6.8173344516253565e-06, 3.0592286748287734e-06, 1.7755475028025103e-06, 4.146075411881611e-07, 2.066401449951627e-08, 3.991208359366283e-06, 0.4962970018386841, 0.0004623720597010106, 5.322854485712014e-05, 6.72201258566929e-06, 1.5004201259216643e-06, 4.483361408347264e-05, 9.870579378912225e-05, 0.0017888223519548774, 0.5010899901390076], [0.005202671512961388, 0.012121658772230148, 0.006360610015690327, 0.004695909563452005, 0.0010616891086101532, 0.0023953637573868036, 0.0008446436258964241, 0.00224735913798213, 0.47433656454086304, 0.006857879459857941, 0.0033710896968841553, 0.002047613961622119, 0.003722872119396925, 0.0043522813357412815, 0.0036460082046687603, 0.003080519149079919, 0.46365535259246826]], [[0.0034775647800415754, 0.03159920871257782, 0.05590981990098953, 0.09823749214410782, 0.10339411348104477, 0.07069417834281921, 0.005476534832268953, 0.06776495277881622, 0.2793913185596466, 0.00024863501312211156, 0.0002154050162062049, 0.0005617032875306904, 0.0003246032865718007, 0.000404341088142246, 0.0003020506410393864, 0.002176842885091901, 0.27982115745544434], [0.008573872037231922, 0.05241953954100609, 0.07574405521154404, 0.13590601086616516, 0.09709564596414566, 0.0661124438047409, 0.021933045238256454, 0.2839035391807556, 0.107901930809021, 0.008241520263254642, 0.012359398417174816, 0.0014585974859073758, 0.0010023469803854823, 0.0014763358049094677, 0.0011748215183615685, 0.01733115129172802, 0.1073656752705574], [0.019055355340242386, 0.07649022340774536, 0.01817990653216839, 0.13498955965042114, 0.05024317279458046, 0.019877104088664055, 0.011236602440476418, 0.19218626618385315, 0.21583965420722961, 0.003534552874043584, 0.02421685680747032, 0.0010112921008840203, 0.0005394059116952121, 0.0008861830574460328, 0.0012040042784065008, 0.014476785436272621, 0.21603302657604218], [0.004294311162084341, 0.013928457163274288, 0.01173633337020874, 0.005180185195058584, 0.06110323593020439, 0.04316576197743416, 0.07968101650476456, 0.4290054440498352, 0.16713520884513855, 0.010588867589831352, 0.00045926665188744664, 0.0007760879234410822, 0.0027186928782612085, 0.0006557187880389392, 0.0006137004820629954, 0.00283538899384439, 0.16612239181995392], [0.0016497024334967136, 0.022838836535811424, 0.006187095306813717, 0.00518178241327405, 0.009203464724123478, 0.03367726132273674, 0.02489609085023403, 0.27488264441490173, 0.3074115514755249, 0.005414559505879879, 0.00029026262927800417, 0.0002940870472230017, 0.0005888287560082972, 0.0002710361732169986, 0.0003273374168202281, 0.001962077571079135, 0.3049234449863434], [0.0061516608111560345, 0.020987696945667267, 0.007116274442523718, 0.011045906692743301, 0.01160528976470232, 0.017344776540994644, 0.01732688955962658, 0.30683523416519165, 0.2953673005104065, 0.007297547068446875, 0.0008926233276724815, 0.00045485360897146165, 0.000581452390179038, 0.00028437949367798865, 0.0002766584511846304, 0.0019043647916987538, 0.2945271134376526], [0.002840831410139799, 0.015938006341457367, 0.001819100696593523, 0.009596051648259163, 0.019610881805419922, 0.023622745648026466, 0.025773910805583, 0.2889944612979889, 0.3031492233276367, 0.004943017847836018, 0.0006686780252493918, 0.00047086767153814435, 0.0004358016885817051, 0.0003125704824924469, 0.0002133495727321133, 0.0013570489827543497, 0.30025342106819153], [0.00299728661775589, 0.016334213316440582, 0.006849631667137146, 0.007513015065342188, 0.01134041603654623, 0.008366581052541733, 0.0017930356552824378, 0.020179539918899536, 0.45790374279022217, 0.001626592711545527, 0.0017355451127514243, 0.0035774908028542995, 0.0018636470194905996, 0.0008732988499104977, 0.0007912074215710163, 0.0026463426183909178, 0.4536086320877075], [0.010281422175467014, 0.013918614946305752, 0.008130177855491638, 0.009474700316786766, 0.006027864292263985, 0.00677644694224, 0.005115867126733065, 0.023688988760113716, 0.4229169189929962, 0.009497158229351044, 0.009117139503359795, 0.007020134013146162, 0.007555877789855003, 0.0046909274533391, 0.00682138791307807, 0.028370724990963936, 0.4205957353115082], [0.0042145587503910065, 0.0010441363556310534, 0.0006377632962539792, 0.0011667822254821658, 0.0010258278343826532, 0.0005677206791006029, 3.2791085686767474e-05, 0.0011144705349579453, 0.2470298409461975, 0.03610122203826904, 0.04339418560266495, 0.09156223386526108, 0.041395701467990875, 0.0786336362361908, 0.06773170083761215, 0.13311634957790375, 0.25123104453086853], [0.0034249979071319103, 0.000506819284055382, 0.00038873654557392, 0.00021361271501518786, 0.00014307523088064045, 0.00011555873788893223, 1.228543624165468e-05, 0.001233634422533214, 0.24699576199054718, 0.026036961004137993, 0.06679626554250717, 0.04954139515757561, 0.030739396810531616, 0.0409163236618042, 0.04544500634074211, 0.2383892685174942, 0.24910098314285278], [0.0035930986050516367, 0.000839382701087743, 0.00038004014641046524, 0.00031339217093773186, 0.0003435770922806114, 0.0002344125387025997, 4.8426983994431794e-05, 0.0013733734376728535, 0.28140950202941895, 0.059839677065610886, 0.007820780389010906, 0.017975620925426483, 0.03606802225112915, 0.10146521776914597, 0.05773484706878662, 0.1469259262084961, 0.283634752035141], [0.008248011581599712, 0.001164585235528648, 0.000787003489676863, 0.0013185007264837623, 0.0005290344706736505, 0.0005944612203165889, 0.00019232532940804958, 0.003563093952834606, 0.21334154903888702, 0.055123236030340195, 0.0065027326345443726, 0.014273758046329021, 0.027189431712031364, 0.13482527434825897, 0.1495932787656784, 0.1668870896100998, 0.21586664021015167], [0.008838209323585033, 0.0009578358149155974, 0.0006026042974554002, 0.0005058144452050328, 0.0003895729314535856, 0.00021828866738360375, 9.7125448519364e-05, 0.0036123190075159073, 0.31504592299461365, 0.03376302495598793, 0.014995087869465351, 0.013953003101050854, 0.02050885744392872, 0.025464463979005814, 0.05557874217629433, 0.1891227662563324, 0.3163464069366455], [0.009858655743300915, 0.0006366753368638456, 0.0008422978571616113, 0.0005318766343407333, 0.00026757846353575587, 0.00014633627142757177, 4.972214446752332e-05, 0.0026745321229100227, 0.3385658860206604, 0.04986807703971863, 0.011264432221651077, 0.008093265816569328, 0.011924004182219505, 0.02401355840265751, 0.032612886279821396, 0.16846559941768646, 0.34018462896347046], [0.001805409207008779, 0.0008551637874916196, 0.0003144161310046911, 0.00035307041252963245, 0.0002351838193135336, 0.0002557503175921738, 6.508798833237961e-05, 0.0007884406368248165, 0.44601312279701233, 0.017261018976569176, 0.00692727928981185, 0.007832877337932587, 0.0062919314950704575, 0.009370478801429272, 0.010679401457309723, 0.043872933834791183, 0.4470784068107605], [0.010171118192374706, 0.013675413094460964, 0.007990268059074879, 0.009264682419598103, 0.005918261595070362, 0.006664508022367954, 0.005044593475759029, 0.02332248166203499, 0.4234662353992462, 0.009536954574286938, 0.009077874012291431, 0.0070459372363984585, 0.007624299731105566, 0.0047212266363203526, 0.006855986081063747, 0.028470631688833237, 0.42114946246147156]], [[0.004887207876890898, 0.09218461811542511, 0.15319420397281647, 0.07867231220006943, 0.058687757700681686, 0.04031192138791084, 0.02903556078672409, 0.0410614088177681, 0.23716753721237183, 0.007121799048036337, 0.008981598541140556, 0.002165687968954444, 0.0014122417196631432, 0.002105581806972623, 0.0015918848803266883, 0.0053741117008030415, 0.23604467511177063], [0.009231239557266235, 0.1236560270190239, 0.022629527375102043, 0.05002673715353012, 0.037872832268476486, 0.03985787183046341, 0.02874763123691082, 0.28249600529670715, 0.18674787878990173, 0.0075362492352724075, 0.016184628009796143, 0.0008745047962293029, 0.0021673243027180433, 0.0008553347433917224, 0.0008103384752757847, 0.003815885866060853, 0.18649008870124817], [0.01404890138655901, 0.10284174233675003, 0.08528555184602737, 0.04372251406311989, 0.03245510160923004, 0.040445420891046524, 0.02477218210697174, 0.06268306076526642, 0.2827574908733368, 0.0035818982869386673, 0.011300148442387581, 0.0008870619931258261, 0.0033040109556168318, 0.0023080918472260237, 0.0026857848279178143, 0.005545157007873058, 0.2813759744167328], [0.006038513965904713, 0.03949063643813133, 0.005797176621854305, 0.09925459325313568, 0.02386895939707756, 0.032976455986499786, 0.017759665846824646, 0.18907178938388824, 0.2833767831325531, 0.006219392642378807, 0.006231232546269894, 0.0006101291510276496, 0.00012717396020889282, 0.0005338769406080246, 0.0003746833826880902, 0.0062690912745893, 0.2819998562335968], [0.002521602204069495, 0.016350949183106422, 0.0033416952937841415, 0.03995287045836449, 0.07000948488712311, 0.02433883026242256, 0.01780638098716736, 0.044615235179662704, 0.38533449172973633, 0.0032739436719566584, 0.0008054864592850208, 0.006840225774794817, 0.00040076259756460786, 8.500029071001336e-05, 4.2904430301859975e-05, 0.0009749686578288674, 0.38330528140068054], [0.005210545379668474, 0.01654096134006977, 0.018878497183322906, 0.03578563034534454, 0.07948151230812073, 0.04479643702507019, 0.030459219589829445, 0.03408002853393555, 0.35390305519104004, 0.0031239681411534548, 0.0012768832966685295, 0.01191434171050787, 0.004412607755511999, 0.0024894692469388247, 0.0011454205960035324, 0.0024682427756488323, 0.3540332019329071], [0.0027643081266433, 0.014556143432855606, 0.008377637714147568, 0.02064206823706627, 0.033564548939466476, 0.03545372560620308, 0.05153476819396019, 0.06944683939218521, 0.3785746693611145, 0.002259686589241028, 0.0011002124520018697, 0.0008007656433619559, 0.0007070419378578663, 0.00016003272321540862, 0.00033185811480507255, 0.004071988631039858, 0.3756536543369293], [0.009665495716035366, 0.02650030516088009, 0.018499763682484627, 0.02206851914525032, 0.015454926528036594, 0.00791473314166069, 0.010234802030026913, 0.039958685636520386, 0.4194757342338562, 0.00378127908334136, 0.0016167000867426395, 0.0009473819518461823, 0.0005677852896042168, 0.0003473362885415554, 0.0007301612640731037, 0.007014446426182985, 0.41522181034088135], [0.024570448324084282, 0.019677545875310898, 0.017218880355358124, 0.013285048305988312, 0.008420281112194061, 0.01549629494547844, 0.005629510153084993, 0.01922103762626648, 0.39717188477516174, 0.013577992096543312, 0.016583584249019623, 0.007222366519272327, 0.005691088270395994, 0.010249377228319645, 0.007742955815047026, 0.020735086873173714, 0.3975064754486084], [0.04220651835203171, 0.002967719454318285, 0.0013663778081536293, 0.012281054630875587, 0.0016574827022850513, 0.004034803248941898, 0.0004788103105966002, 0.009097910486161709, 0.3218281865119934, 0.09642675518989563, 0.019853629171848297, 0.017431534826755524, 0.003854323411360383, 0.01840837113559246, 0.03803499415516853, 0.08679964393377304, 0.3232719302177429], [0.07389518618583679, 0.02702295035123825, 0.00906301662325859, 0.006894672755151987, 0.0012193075381219387, 0.0018576144939288497, 0.0005177877028472722, 0.004382263869047165, 0.20492593944072723, 0.04272201657295227, 0.2199498564004898, 0.01852991059422493, 0.03315722197294235, 0.047228626906871796, 0.04824305325746536, 0.05503121763467789, 0.20535928010940552], [0.036650121212005615, 0.0035245295148342848, 0.0021447516046464443, 0.005979917943477631, 0.007065457291901112, 0.006401651073247194, 0.0012935495469719172, 0.0033250292763113976, 0.2875789999961853, 0.06084888055920601, 0.03639991581439972, 0.08477707207202911, 0.042717210948467255, 0.05288488045334816, 0.03312809392809868, 0.046427514404058456, 0.28885242342948914], [0.023842820897698402, 0.0061490521766245365, 0.005258009769022465, 0.0035124272108078003, 0.0053131962195038795, 0.018536686897277832, 0.0030191775877028704, 0.005316915921866894, 0.2628737986087799, 0.07341355830430984, 0.07603912800550461, 0.07556675374507904, 0.044206514954566956, 0.0389987975358963, 0.050193026661872864, 0.04326396808028221, 0.2644961476325989], [0.034894365817308426, 0.002716735005378723, 0.0049328734166920185, 0.004232902079820633, 0.0011289374670013785, 0.007285014260560274, 0.001031046500429511, 0.002013083314523101, 0.3236958384513855, 0.03377455845475197, 0.049055930227041245, 0.03724876791238785, 0.029088081791996956, 0.03194654360413551, 0.057522960007190704, 0.05186576768755913, 0.32756659388542175], [0.03478550165891647, 0.002006437862291932, 0.003205270040780306, 0.001726489164866507, 0.00032062374521046877, 0.0034780981950461864, 0.0008909434545785189, 0.0019548924174159765, 0.33229196071624756, 0.020736699923872948, 0.05146470293402672, 0.014043686911463737, 0.01939854770898819, 0.05233379080891609, 0.06514052301645279, 0.061929140239953995, 0.3342926800251007], [0.01941808871924877, 0.003352021798491478, 0.001101992791518569, 0.007002298254519701, 0.0003007906780112535, 0.0019097430631518364, 0.001869277679361403, 0.006612168624997139, 0.3788433372974396, 0.014932313933968544, 0.02211517095565796, 0.004549604374915361, 0.001707464107312262, 0.003550103632733226, 0.025039352476596832, 0.12980656325817108, 0.37788963317871094], [0.02468899078667164, 0.019475648179650307, 0.01713993400335312, 0.013175126165151596, 0.008375738747417927, 0.015332572162151337, 0.005559501703828573, 0.01896260306239128, 0.3974204659461975, 0.013591830618679523, 0.016566835343837738, 0.007298782467842102, 0.00572617631405592, 0.010327349416911602, 0.007790754083544016, 0.020805934444069862, 0.397761732339859]], [[0.002128626685589552, 0.0001650748454267159, 4.5277676690602675e-05, 0.00023853186576161534, 3.4295742807444185e-05, 4.8937235987978056e-05, 2.1546569769270718e-05, 0.00044212714419700205, 0.01773514598608017, 0.9070485234260559, 0.012381895445287228, 0.0010898754699155688, 0.0020974017679691315, 0.003340748604387045, 0.0028547111432999372, 0.03231913223862648, 0.018008200451731682], [0.017532993108034134, 0.02404000796377659, 0.022591181099414825, 0.17755717039108276, 0.1322290599346161, 0.11881161481142044, 0.025408482179045677, 0.0972733125090599, 0.16660676896572113, 0.0031857462599873543, 0.012833202257752419, 0.008590567857027054, 0.007573004812002182, 0.0054169874638319016, 0.0023101670667529106, 0.01047569327056408, 0.16756410896778107], [0.015672365203499794, 0.01221366785466671, 0.024227742105722427, 0.010929143987596035, 0.010850447230041027, 0.03210141137242317, 0.0034414620604366064, 0.01649285852909088, 0.4273480772972107, 0.0016216645017266273, 0.0023261969909071922, 0.0015799971297383308, 0.0031087459065020084, 0.003981929738074541, 0.002801507944241166, 0.005657135043293238, 0.42564547061920166], [0.004369066096842289, 0.009990341030061245, 0.0031546952668577433, 0.01742328144609928, 0.13566173613071442, 0.11935246735811234, 0.0863148421049118, 0.0766659528017044, 0.25982850790023804, 0.01487801130861044, 0.002321388339623809, 0.0018796907970681787, 0.002045274944975972, 0.002377577591687441, 0.0010308694327250123, 0.002976121613755822, 0.25973016023635864], [0.001658593537285924, 0.010550912469625473, 0.004066081717610359, 0.016361169517040253, 0.06585894525051117, 0.08938878774642944, 0.04111625254154205, 0.029496224597096443, 0.36590638756752014, 0.002836958970874548, 0.0027977772988379, 0.0005122866132296622, 0.0007054119487293065, 0.0004253517254255712, 0.0004300023429095745, 0.0018425952875986695, 0.3660461902618408], [0.009245432913303375, 0.02254329062998295, 0.007270926143974066, 0.009432904422283173, 0.014281123876571655, 0.028561009094119072, 0.008832152932882309, 0.04768485203385353, 0.4108608365058899, 0.00856798980385065, 0.006119867321103811, 0.002005388494580984, 0.005063846707344055, 0.0014947752933949232, 0.001158251310698688, 0.003853730857372284, 0.4130237102508545], [0.0066557084210217, 0.03205523267388344, 0.009396317414939404, 0.035940494388341904, 0.13497395813465118, 0.1119065061211586, 0.04104582965373993, 0.06691551953554153, 0.26584550738334656, 0.013496950268745422, 0.0051397597417235374, 0.003169870935380459, 0.0027979668229818344, 0.0006697298958897591, 0.0006810688646510243, 0.0035471816081553698, 0.2657623589038849], [0.04367454722523689, 0.030709803104400635, 0.016729312017560005, 0.01720341108739376, 0.00866479892283678, 0.008728940039873123, 0.005692319944500923, 0.03621846064925194, 0.2991501986980438, 0.1713738888502121, 0.02975728176534176, 0.011335433460772038, 0.005311070941388607, 0.0026588791515678167, 0.0025084898807108402, 0.010416730307042599, 0.2998664081096649], [0.018770838156342506, 0.01709742099046707, 0.015042035840451717, 0.0079502509906888, 0.004236956592649221, 0.00667175417765975, 0.003529805690050125, 0.009282759390771389, 0.38503390550613403, 0.048978179693222046, 0.012677504681050777, 0.012153059244155884, 0.012410905212163925, 0.018826885148882866, 0.012641770765185356, 0.029373768717050552, 0.38532206416130066], [0.007248852401971817, 0.0006536538130603731, 0.00027366416179575026, 0.0010001006303355098, 0.0004254161030985415, 0.0003303191333543509, 6.740252138115466e-05, 0.0005658965674228966, 0.20623686909675598, 0.07669994980096817, 0.036322467029094696, 0.17617207765579224, 0.06659115850925446, 0.08317657560110092, 0.029041403904557228, 0.10588031262159348, 0.20931388437747955], [0.007227039895951748, 0.0008173251408152282, 0.0006482942844741046, 0.00023533531930297613, 0.00015515927225351334, 0.00033517213887535036, 5.904723366256803e-05, 0.0008556207176297903, 0.23546801507472992, 0.029780752956867218, 0.04066469147801399, 0.06829444319009781, 0.1393667608499527, 0.11184526979923248, 0.05083135515451431, 0.07527793943881989, 0.23813778162002563], [0.0020861823577433825, 0.0005855682538822293, 0.0002817694912664592, 0.0002902026171796024, 0.0008734660805203021, 0.0004221069975756109, 0.00010047149407910183, 0.0005499849794432521, 0.1790439933538437, 0.012791124172508717, 0.031504470854997635, 0.04601998254656792, 0.1111421138048172, 0.18906612694263458, 0.0766419917345047, 0.16815905272960663, 0.18044136464595795], [0.002612813375890255, 0.0009280943777412176, 0.0006409710622392595, 0.0012536129215732217, 0.0016723297303542495, 0.001090942183509469, 0.00018335638742428273, 0.0005617794231511652, 0.07714205980300903, 0.01918867975473404, 0.023990241810679436, 0.1229245737195015, 0.09795556217432022, 0.3478703498840332, 0.1517382562160492, 0.07199549674987793, 0.07825086265802383], [0.018478814512491226, 0.0011746564414352179, 0.0015585775254294276, 0.000332654919475317, 0.0003404796589165926, 0.0008957167738117278, 0.00015863262524362653, 0.0010032805148512125, 0.2193526327610016, 0.008870132267475128, 0.021755710244178772, 0.053611453622579575, 0.13596691191196442, 0.09854352474212646, 0.1066683828830719, 0.10902105271816254, 0.22226744890213013], [0.01483730599284172, 0.0006593500729650259, 0.0008523913566023111, 0.00026163633447140455, 0.0007682826835662127, 0.0011232589604333043, 0.00022558816999662668, 0.0007851230911910534, 0.24282337725162506, 0.012469442561268806, 0.013273941352963448, 0.0535944402217865, 0.15776245296001434, 0.1544434130191803, 0.04526647925376892, 0.054500918835401535, 0.24635261297225952], [0.008819248527288437, 0.0011423503747209907, 0.0020832931622862816, 0.0010823191842064261, 0.0007126519922167063, 0.0011981941061094403, 0.0009082540054805577, 0.0005889273015782237, 0.336907297372818, 0.03445626050233841, 0.02366233803331852, 0.06282828748226166, 0.055039532482624054, 0.03904608264565468, 0.057980407029390335, 0.03356192633509636, 0.3399827480316162], [0.0186923835426569, 0.01690245233476162, 0.014929926954209805, 0.007862180471420288, 0.0042130774818360806, 0.006667010486125946, 0.003520797472447157, 0.009226231835782528, 0.38489478826522827, 0.049256760627031326, 0.012612680904567242, 0.012188095599412918, 0.012523261830210686, 0.0189913772046566, 0.012764660641551018, 0.029581010341644287, 0.38517332077026367]], [[0.0010247679892927408, 0.005229088943451643, 0.0010495471069589257, 0.0010058552725240588, 0.001038134447298944, 0.0009390295017510653, 0.0005392783787101507, 0.5504570007324219, 0.21954546868801117, 0.00029976683435961604, 0.00021563368500210345, 0.00016625561693217605, 5.6110340665327385e-05, 7.001328776823357e-05, 3.409140117582865e-05, 0.00012891496589872986, 0.21820102632045746], [0.0012778689851984382, 0.009162486530840397, 0.0328250452876091, 0.003567345906049013, 0.002338143065571785, 0.0036760936491191387, 0.000227054872084409, 0.0017234844854101539, 0.4731438159942627, 0.00040190800791606307, 0.0002828743017744273, 0.00043458875734359026, 0.00016116838378366083, 0.0001923443196574226, 0.00015386042650789022, 0.0013821901520714164, 0.4690496325492859], [0.0022763442248106003, 0.00740745710209012, 0.0025567414704710245, 0.011181683279573917, 0.000770330720115453, 0.001676621614024043, 0.0004511750303208828, 0.00041692942613735795, 0.48413601517677307, 9.840984421316534e-05, 0.00027428523753769696, 0.00015854492085054517, 4.828941746382043e-05, 0.001816609757952392, 0.0006966443615965545, 0.0008187078638002276, 0.48521530628204346], [0.0011705560609698296, 0.008067402988672256, 0.0026227105408906937, 0.0049263667315244675, 0.09535650908946991, 0.021231994032859802, 0.0010216492228209972, 0.003180760657414794, 0.4285867214202881, 8.057921513682231e-05, 0.0004226982709951699, 0.00014216330600902438, 0.00010825470963027328, 0.0002754598972387612, 0.00010117785859620199, 0.0005521111306734383, 0.43215274810791016], [0.0003494688426144421, 0.0019008400849997997, 0.0022555068135261536, 0.001176475896500051, 0.06195712462067604, 0.22238466143608093, 0.00451246602460742, 0.0016097957268357277, 0.35109052062034607, 0.00011170908692292869, 6.849321653135121e-05, 0.0002079346013488248, 0.0006750866887159646, 0.00030630803667008877, 0.0001665297313593328, 0.00023527316807303578, 0.35099175572395325], [0.0017486204160377383, 0.002781594404950738, 0.0014616771368309855, 0.0038021630607545376, 0.0022196206264197826, 0.032525621354579926, 0.21113842725753784, 0.027756614610552788, 0.35746777057647705, 0.000316612800816074, 0.00024039334675762802, 6.83173057041131e-05, 4.879559492110275e-05, 9.615962335374206e-05, 0.000509117788169533, 0.001208844012580812, 0.3566097021102905], [0.0004453497240319848, 0.001446605776436627, 5.3005853260401636e-05, 0.000581208209041506, 0.000476109329611063, 0.00357592711225152, 0.0007324761827476323, 0.04861157760024071, 0.4700387120246887, 8.546111348550767e-05, 1.569770938658621e-05, 1.3062812286079861e-05, 4.503134732658509e-06, 8.778869414527435e-06, 2.3977501768968068e-05, 0.000676079245749861, 0.473211407661438], [0.0003688672441057861, 0.005001384764909744, 0.0007465973030775785, 0.00025294339866377413, 9.366084850626066e-05, 0.0004360731691122055, 0.0001310702064074576, 0.017705680802464485, 0.4902704060077667, 0.01108487043529749, 0.0012696747435256839, 1.6961041183094494e-05, 1.606821024324745e-05, 2.6223893655696884e-05, 4.410685141920112e-05, 0.0007321340963244438, 0.47180330753326416], [0.01662318967282772, 0.02117673121392727, 0.006367746740579605, 0.007473534904420376, 0.002645942848175764, 0.004686752799898386, 0.0022847596555948257, 0.008850357495248318, 0.4445846974849701, 0.012698285281658173, 0.007260583806782961, 0.004748089704662561, 0.002695214468985796, 0.004964962601661682, 0.0060354857705533504, 0.007824470289051533, 0.439079225063324], [0.001039639231748879, 0.00066462840186432, 0.0003141103661619127, 0.0003110688121523708, 5.037196024204604e-05, 5.567113112192601e-05, 6.031482917023823e-05, 0.00020879422663711011, 0.4536387622356415, 0.008490917272865772, 0.06578566879034042, 0.004481554962694645, 0.0007164674461819232, 0.002962316619232297, 0.0015529401134699583, 0.0031631551682949066, 0.4565037190914154], [0.005417697597295046, 0.001244330545887351, 0.00045445087016560137, 0.00025911355623975396, 7.74667933001183e-05, 7.100872608134523e-05, 3.109538965873071e-06, 0.0002748302067629993, 0.45596230030059814, 0.001998456194996834, 0.02770964428782463, 0.024129144847393036, 0.001417644089087844, 0.013193752616643906, 0.0018762232502922416, 0.0027496733237057924, 0.4631612002849579], [0.0005341338110156357, 0.0005509090260602534, 0.00014135749370325357, 6.147487147245556e-05, 0.000654037925414741, 0.0001497407502029091, 9.764014976099133e-06, 5.7867619034368545e-05, 0.15545834600925446, 0.000894496391993016, 0.002201249124482274, 0.042716607451438904, 0.6323442459106445, 0.006296771578490734, 0.0034781070426106453, 0.0004351684474386275, 0.15401571989059448], [0.00589332077652216, 0.001838227966800332, 0.00035328068770468235, 0.0008550429483875632, 0.00031401694286614656, 0.0009424583404324949, 2.2615948182647116e-05, 0.0007348060607910156, 0.3383333086967468, 0.0018929222133010626, 0.004326787311583757, 0.028116373345255852, 0.0023997006937861443, 0.2180381417274475, 0.012924258597195148, 0.035915032029151917, 0.3470996618270874], [0.003046461148187518, 0.0006254838081076741, 0.00031666524591855705, 0.0002944391162600368, 7.619494863320142e-05, 0.00042745916289277375, 0.0008550071506761014, 0.00016449196846224368, 0.434641033411026, 0.0009253900498151779, 0.000537925458047539, 0.007318825460970402, 0.0019181403331458569, 0.011391165666282177, 0.08509541302919388, 0.01205976027995348, 0.44030600786209106], [0.004372192081063986, 0.0008403134997934103, 0.00048056451487354934, 0.0006669890717603266, 0.00011491409532027319, 0.00020409106218721718, 0.0002397648204350844, 0.0005446789436973631, 0.44790083169937134, 0.0025964793749153614, 0.0016089759301394224, 0.0016555238980799913, 0.0009669976425357163, 0.006223927717655897, 0.011356275528669357, 0.06944501399993896, 0.45078244805336], [0.0005076297675259411, 0.0003180759958922863, 0.00014328464749269187, 4.1302351746708155e-05, 6.657034828094766e-05, 7.083241507643834e-05, 3.6509957226371625e-06, 0.00012765530846081674, 0.48913514614105225, 0.0006058869184926152, 0.0013564061373472214, 9.543503983877599e-05, 1.8725990230450407e-05, 0.0002683386264834553, 0.0001432435237802565, 0.009009743109345436, 0.498088002204895], [0.016727419570088387, 0.021148066967725754, 0.006418176926672459, 0.00743089010939002, 0.002662388375028968, 0.004726768005639315, 0.0022881985642015934, 0.00873578991740942, 0.4442789554595947, 0.012830240651965141, 0.007379855029284954, 0.004797589965164661, 0.0027426090091466904, 0.00507731456309557, 0.006111932452768087, 0.007871641777455807, 0.4387722313404083]], [[0.004602161236107349, 0.0025023785419762135, 0.0013971495209261775, 0.001910419319756329, 0.0006659245700575411, 0.0016302717849612236, 0.00043538844329304993, 0.0019634782802313566, 0.46796220541000366, 0.0066135600209236145, 0.009582077153027058, 0.007155739236623049, 0.0041506486013531685, 0.006435934454202652, 0.00901520624756813, 0.005004014819860458, 0.46897345781326294], [0.017191050574183464, 0.016913849860429764, 0.0344238206744194, 0.02109345607459545, 0.008878347463905811, 0.006207023281604052, 0.006159850396215916, 0.015799345448613167, 0.4227338135242462, 0.0017972465138882399, 0.004773606080561876, 0.001033432548865676, 0.0009794686920940876, 0.001003576209768653, 0.004898270592093468, 0.011695140972733498, 0.42441868782043457], [0.008392194285988808, 0.08104880154132843, 0.01639089733362198, 0.006375494878739119, 0.013459350913763046, 0.0038444167003035545, 0.0007482392829842865, 0.003799224039539695, 0.42443859577178955, 0.0011884078849107027, 0.002815657528117299, 0.004419669043272734, 0.0014225720660760999, 0.0013864398933947086, 0.0025226864963769913, 0.0023590491618961096, 0.42538824677467346], [0.001486602588556707, 0.0023683635517954826, 0.011529610492289066, 0.007295703049749136, 0.0021177884191274643, 0.0013771061785519123, 0.0008855614578351378, 0.0035826507955789566, 0.48522916436195374, 0.00017089073662646115, 0.00014168610505294055, 4.951690061716363e-05, 0.00018147750233765692, 0.00024248930276371539, 0.0006021489971317351, 9.054239490069449e-05, 0.4826485812664032], [0.0012847722973674536, 0.00261834729462862, 0.010125018656253815, 0.056709691882133484, 0.005156891420483589, 0.005446788854897022, 0.001008740160614252, 0.002050968585535884, 0.45814934372901917, 0.00010242780990665779, 0.00015250947035383433, 6.70484805596061e-05, 7.06777791492641e-05, 5.0836366426665336e-05, 0.00021239288616925478, 0.0011829208815470338, 0.4556106626987457], [0.002733484609052539, 0.006255648098886013, 0.008446780033409595, 0.010157633572816849, 0.03459753096103668, 0.005892027635127306, 0.0007083110976964235, 0.0033653967548161745, 0.4613305628299713, 0.00016709024203009903, 0.0002751776482909918, 0.00021413154900074005, 0.0001541209639981389, 0.00013619572564493865, 0.00023766029335092753, 0.0018110321834683418, 0.46351704001426697], [0.0028857793658971786, 0.007232632488012314, 0.007882855832576752, 0.05577976256608963, 0.04952952638268471, 0.02531002089381218, 0.0037053029518574476, 0.01959269307553768, 0.4113808870315552, 0.0001758130529196933, 0.00022426406212616712, 4.656359305954538e-05, 0.00011739401088561863, 0.0002498358371667564, 0.00044342526234686375, 0.0034575778990983963, 0.41198569536209106], [0.0034128515981137753, 0.003939729183912277, 0.003936275839805603, 0.010643941350281239, 0.0017725180368870497, 0.01996697299182415, 0.04185958579182625, 0.09607525169849396, 0.4100092351436615, 0.0002560635039117187, 0.00019517939654178917, 5.081154085928574e-05, 0.0004636063240468502, 0.00022052621352486312, 0.0014667102368548512, 0.001228218898177147, 0.4045025408267975], [0.024587204679846764, 0.010375452227890491, 0.012562116608023643, 0.008037853054702282, 0.005945245269685984, 0.009264680556952953, 0.007508115377277136, 0.011149978265166283, 0.41665399074554443, 0.007268840912729502, 0.013528822921216488, 0.006114609073847532, 0.009252402931451797, 0.010822935961186886, 0.016326000913977623, 0.011976811103522778, 0.4186249375343323], [0.0050188470631837845, 0.0002915015793405473, 0.00023480033269152045, 0.0006145444931462407, 0.00025124227977357805, 0.00018362949776928872, 0.00015460331633221358, 0.005477811209857464, 0.4828645884990692, 0.003675277577713132, 0.001866189413703978, 0.001357611850835383, 0.00043765248847194016, 0.0006097626173868775, 0.0014317381428554654, 0.011709474958479404, 0.4838205873966217], [0.006460617296397686, 0.0012748385779559612, 0.00016554942703805864, 0.00031482777558267117, 0.00018507674394641072, 0.0002885719295591116, 4.4775377318728715e-05, 0.0008923065033741295, 0.42102834582328796, 0.08835764229297638, 0.028642477467656136, 0.010229963809251785, 0.001758950063958764, 0.0018499108264222741, 0.009059443138539791, 0.005212091840803623, 0.4242345988750458], [0.0026999281253665686, 0.00026880137738771737, 0.00017479014059063047, 0.00014111267228145152, 9.407080506207421e-05, 3.429561184020713e-05, 5.40986047781189e-06, 0.0005949672777205706, 0.4694885015487671, 0.00799261499196291, 0.014231435023248196, 0.021989963948726654, 0.002557610860094428, 0.0010916937608271837, 0.002367876237258315, 0.004309205338358879, 0.4719575345516205], [0.0034246710129082203, 0.0005615180125460029, 0.000610478047747165, 0.0011244489578530192, 0.00014604648458771408, 5.383366806199774e-05, 2.5323708541691303e-05, 0.0017176289111375809, 0.4572793245315552, 0.008899073116481304, 0.012763104401528835, 0.03410309553146362, 0.002338482765480876, 0.0012693756725639105, 0.0030886861495673656, 0.01198536902666092, 0.46060964465141296], [0.002563945949077606, 0.00047227853792719543, 0.0012528554070740938, 0.00033863491262309253, 0.00013920357741881162, 6.576144369319081e-05, 1.2760151548718568e-05, 0.00013825444329995662, 0.4418810307979584, 0.008696864359080791, 0.0223518256098032, 0.033775683492422104, 0.02944188192486763, 0.004639053251594305, 0.0071303569711744785, 0.0016632245387881994, 0.44543638825416565], [0.002857710001990199, 0.0004494079330470413, 0.0005151801742613316, 0.0002472929481882602, 9.285211126552895e-05, 6.0330894484650344e-05, 4.444272053660825e-05, 0.0004616081132553518, 0.42209476232528687, 0.004248170182108879, 0.013329898938536644, 0.02593597210943699, 0.03146273270249367, 0.03693414479494095, 0.028025370091199875, 0.008159694261848927, 0.42508044838905334], [0.0024459820706397295, 0.0003664670221041888, 0.00022018687741365284, 0.00020101053814869374, 7.080255454638973e-05, 0.00013722095172852278, 8.841782255331054e-05, 0.0007888933760114014, 0.4634504020214081, 0.0008423767285421491, 0.004170592408627272, 0.0013360264711081982, 0.0037458320148289204, 0.014925336465239525, 0.0375409871339798, 0.003994698636233807, 0.4656746983528137], [0.02457481063902378, 0.010203752666711807, 0.012434737756848335, 0.008004684001207352, 0.005903394427150488, 0.00911440048366785, 0.007329131942242384, 0.010916314087808132, 0.4171464145183563, 0.00732713658362627, 0.013628934510052204, 0.0061233569867908955, 0.009307322092354298, 0.01072712242603302, 0.016225721687078476, 0.011902778409421444, 0.4191300868988037]], [[0.00048719378537498415, 0.0016921494388952851, 0.00040300501859746873, 0.00021417596144601703, 8.935183723224327e-05, 0.0030993835534900427, 0.0007810798706486821, 0.9193664193153381, 0.023055903613567352, 1.4859769180475269e-05, 1.6625217540422454e-06, 8.735669894122111e-07, 6.831931841588812e-06, 8.76136346050771e-06, 8.568998964619823e-06, 0.027730019763112068, 0.0230398029088974], [0.0027713614981621504, 0.08397112786769867, 0.05193910375237465, 0.016939187422394753, 0.0022041278425604105, 0.0029977767262607813, 0.003563196863979101, 0.00877379346638918, 0.41430044174194336, 0.0010869173565879464, 0.00045260091428644955, 7.394230487989262e-05, 0.0004003988578915596, 0.0001496725744800642, 0.0003172729047946632, 0.0010901883943006396, 0.40896889567375183], [0.0010921587236225605, 0.42779940366744995, 0.006578531581908464, 0.0014727141242474318, 0.0017975274240598083, 0.0010941035579890013, 6.023854439263232e-05, 5.6039738410618156e-05, 0.27791574597358704, 0.00023584242444485426, 0.0006934786215424538, 0.0015141678741201758, 0.0006554787396453321, 0.0012277252972126007, 0.00031151380972005427, 0.00026277234428562224, 0.2772325277328491], [0.0006737246876582503, 0.008373060263693333, 0.12172280251979828, 0.004986476618796587, 0.0007816603174433112, 0.004545122850686312, 0.007766250520944595, 0.0001776995341060683, 0.42826735973358154, 1.9760309442062862e-05, 0.0001840673794504255, 1.2046632946294267e-05, 0.0007476943428628147, 0.00014097412349656224, 0.0002640757884364575, 5.718844477087259e-05, 0.4212802052497864], [0.0004160635871812701, 0.002634591655805707, 0.016594745218753815, 0.27470913529396057, 0.021080875769257545, 0.0028178137727081776, 0.0011507784947752953, 4.058673221152276e-05, 0.34122875332832336, 4.665302549256012e-05, 0.0003152368008159101, 0.0002806786505971104, 4.328700015321374e-05, 5.6680775742279366e-05, 4.936538971378468e-05, 0.00026608278858475387, 0.33826860785484314], [0.002481795847415924, 0.007451680954545736, 0.0084501001983881, 0.04968898370862007, 0.423367977142334, 0.009024492464959621, 0.0009456521947868168, 0.00020793182193301618, 0.24719859659671783, 0.00025041832122951746, 0.0007307803025469184, 0.00017736315203364938, 0.0007285236497409642, 0.00012039943976560608, 3.8593112549278885e-05, 0.00025225148419849575, 0.24888446927070618], [0.0002650237292982638, 0.0014228214276954532, 0.005571195390075445, 0.017781691625714302, 0.04897824674844742, 0.3531229496002197, 0.0011916421353816986, 0.00011059032840421423, 0.2850455939769745, 0.0004459808988031, 4.851774065173231e-05, 3.70494817616418e-05, 7.732710218988359e-05, 0.0001507394335931167, 4.627926682587713e-05, 4.071185321663506e-05, 0.2856636345386505], [0.0011373042361810803, 0.002236234489828348, 0.005291897803544998, 0.00887035671621561, 0.0009603105136193335, 0.14108602702617645, 0.305453360080719, 0.022427262738347054, 0.2565997242927551, 7.286720210686326e-05, 3.5261724406154826e-05, 5.444881026051007e-06, 8.468711166642606e-05, 7.878318865550682e-05, 0.00033633114071562886, 0.0020188838243484497, 0.2533053159713745], [0.012357382103800774, 0.011543367058038712, 0.006351469550281763, 0.003990822937339544, 0.0031228475272655487, 0.008493022993206978, 0.002075342694297433, 0.014676825143396854, 0.44728443026542664, 0.005217724945396185, 0.004288507625460625, 0.0017007944406941533, 0.004521556664258242, 0.002942086895927787, 0.0026725721545517445, 0.019184140488505363, 0.44957709312438965], [0.003252732567489147, 0.001031869906000793, 0.00011463941336842254, 0.0001942763919942081, 0.0002165366749977693, 0.0007036080351099372, 0.0007079083006829023, 0.4053356647491455, 0.2332354336977005, 0.005686624441295862, 0.0012051259400323033, 0.0001960455410880968, 0.00021020985150244087, 0.00020092290651518852, 0.000660199613776058, 0.11466763913631439, 0.23238053917884827], [0.0006034534890204668, 0.0018712034216150641, 0.00013304398453328758, 0.0002786715922411531, 2.8423986805137247e-05, 0.00024064678291324526, 5.6940584727271926e-06, 0.0010354567784816027, 0.05986001342535019, 0.8489680290222168, 0.019986065104603767, 0.0007610179018229246, 0.0002992941881529987, 0.00024667492834851146, 0.000490342266857624, 0.004653351381421089, 0.06053868308663368], [0.0059765977784991264, 0.000524194270838052, 0.0002881841210182756, 0.0003286635037511587, 4.3188923882553354e-05, 6.399136964319041e-06, 2.1653295334544964e-06, 0.0001395211584167555, 0.2144690901041031, 0.023702329024672508, 0.3933728337287903, 0.014213722199201584, 0.10905706882476807, 0.016671810299158096, 0.0012892454396933317, 0.004276878200471401, 0.21563810110092163], [0.0015593486605212092, 0.0005676263244822621, 0.0001093849350581877, 0.0004160494136158377, 6.473961548181251e-05, 1.101725865737535e-05, 3.079825603435893e-07, 0.00017149228369817138, 0.08103245496749878, 0.022821588441729546, 0.0220235213637352, 0.7777501940727234, 0.00701160030439496, 0.0026483137626200914, 0.000208628160180524, 0.001501770573668182, 0.08210194855928421], [0.001838727155700326, 0.0003195495519321412, 0.0004254066734574735, 0.0001387432566843927, 0.00031990231946110725, 1.268110099772457e-05, 2.8119807211623993e-06, 5.5413551308447495e-05, 0.051038116216659546, 0.006010955665260553, 0.08126302808523178, 0.02901894599199295, 0.7542858719825745, 0.01028755959123373, 0.0037121635396033525, 0.009578914381563663, 0.05169110372662544], [0.003990883473306894, 0.0007089286809787154, 0.001718937768600881, 0.00024039673735387623, 0.0001616957742953673, 0.00010392876720288768, 1.709900243440643e-05, 0.000396753748646006, 0.1947663128376007, 0.0028357200790196657, 0.01638449728488922, 0.020234866067767143, 0.43291497230529785, 0.1071450337767601, 0.008218012750148773, 0.013646451756358147, 0.19651556015014648], [0.0023730352986603975, 0.001130700926296413, 0.004566582851111889, 0.000842994952108711, 9.885642793960869e-05, 0.0027004461735486984, 0.0012006893521174788, 0.0014957990497350693, 0.16556678712368011, 0.006459176540374756, 0.006770133972167969, 0.005367286037653685, 0.028224142268300056, 0.10047725588083267, 0.3277108371257782, 0.178965762257576, 0.16604936122894287], [0.01220922265201807, 0.011317525990307331, 0.006292174104601145, 0.003991291858255863, 0.003126810770481825, 0.008478366769850254, 0.0020465741399675608, 0.013959069736301899, 0.4476650059223175, 0.005234155338257551, 0.004362147767096758, 0.0017368204426020384, 0.004593800287693739, 0.002976416377350688, 0.002690965309739113, 0.019312363117933273, 0.45000725984573364]], [[0.005989899858832359, 0.09139303117990494, 0.026810016483068466, 0.0487980991601944, 0.019986731931567192, 0.16587631404399872, 0.04014173522591591, 0.1424010545015335, 0.15417440235614777, 0.06021136790513992, 0.016384968534111977, 0.003913346212357283, 0.01495314110070467, 0.004269339144229889, 0.01245495118200779, 0.03743751719594002, 0.1548040509223938], [0.00306897284463048, 0.01342796441167593, 0.021265119314193726, 0.004360045772045851, 0.0008838544599711895, 0.004062327556312084, 0.003115238156169653, 0.007174549158662558, 0.007799121551215649, 0.01093027088791132, 0.9070063829421997, 0.001290512620471418, 0.0006622169748879969, 0.0004304322646930814, 0.0002703519130591303, 0.006418721284717321, 0.007833967916667461], [0.009499392472207546, 0.019101914018392563, 0.0457623191177845, 0.012029091827571392, 0.0009536636061966419, 0.0019731668289750814, 0.002190505852922797, 0.004658089019358158, 0.01986420340836048, 0.004015312995761633, 0.8174616098403931, 0.0017430142033845186, 0.0016311665531247854, 0.0014775906456634402, 0.004162629600614309, 0.03352399542927742, 0.01995236426591873], [0.008867834694683552, 0.01500577200204134, 0.007340576499700546, 0.02920330874621868, 0.023288758471608162, 0.05022633820772171, 0.05796845257282257, 0.26596730947494507, 0.15862727165222168, 0.04648205637931824, 0.05273868516087532, 0.03601903095841408, 0.010650807991623878, 0.0013882775092497468, 0.0015978427836671472, 0.07621385157108307, 0.15841388702392578], [0.0036607510410249233, 0.006391186732798815, 0.0024480626452714205, 0.027321306988596916, 0.040052711963653564, 0.07521122694015503, 0.03156106919050217, 0.23935608565807343, 0.23948360979557037, 0.022186512127518654, 0.015814848244190216, 0.0037308423779904842, 0.017118770629167557, 0.0014685160713270307, 0.001379501074552536, 0.034448184072971344, 0.23836688697338104], [0.01754981093108654, 0.00525283720344305, 0.002489976119250059, 0.04242882505059242, 0.03509701415896416, 0.049582283943891525, 0.05015264078974724, 0.13408371806144714, 0.20574714243412018, 0.10756000131368637, 0.022729581221938133, 0.01845385693013668, 0.03551193326711655, 0.0006498933071270585, 0.0025396374985575676, 0.06564154475927353, 0.20452941954135895], [0.008984477259218693, 0.013667243532836437, 0.0026346510276198387, 0.03665647283196449, 0.01680963672697544, 0.024209333583712578, 0.03122330643236637, 0.2037796527147293, 0.19723962247371674, 0.11971084773540497, 0.043877311050891876, 0.045669861137866974, 0.015251833945512772, 0.0007043184596113861, 0.0010175270726904273, 0.04241645708680153, 0.19614742696285248], [0.01112351194024086, 0.01963193342089653, 0.0034421244636178017, 0.04310804605484009, 0.011914917267858982, 0.020744027569890022, 0.019482852891087532, 0.2168053239583969, 0.2290947139263153, 0.08332706987857819, 0.015509034506976604, 0.044853806495666504, 0.004712630528956652, 0.00038340501487255096, 0.000517758191563189, 0.04627804830670357, 0.22907079756259918], [0.055878978222608566, 0.03644617646932602, 0.05720988288521767, 0.03407743200659752, 0.025291848927736282, 0.03501643240451813, 0.03312542662024498, 0.06352921575307846, 0.22881262004375458, 0.04139076545834541, 0.03536530211567879, 0.025959070771932602, 0.0290086530148983, 0.010200546123087406, 0.014316685497760773, 0.045015912503004074, 0.2293550819158554], [0.020283760502934456, 0.008238658308982849, 0.00964807253330946, 0.010557932779192924, 0.005391087848693132, 0.24193178117275238, 0.014401191845536232, 0.03575732931494713, 0.15041330456733704, 0.2862628996372223, 0.0012126839719712734, 0.007830708287656307, 0.004214932676404715, 0.0025427164509892464, 0.00570731982588768, 0.0444498248398304, 0.15115581452846527], [0.004184054210782051, 0.3481873869895935, 0.42574769258499146, 0.005593194160610437, 0.00118062028195709, 0.002844767179340124, 0.0020074776839464903, 0.002557175699621439, 0.018180372193455696, 0.003460957668721676, 0.1550169289112091, 0.0005566927138715982, 0.0003957227454520762, 0.00041422987123951316, 0.0002905112341977656, 0.011004360392689705, 0.018377842381596565], [0.010354574769735336, 0.006637608632445335, 0.010179916396737099, 0.011776612140238285, 0.009650168009102345, 0.08078241348266602, 0.034377872943878174, 0.03934403136372566, 0.2453005462884903, 0.1109478771686554, 0.0027653821744024754, 0.12711076438426971, 0.02045830897986889, 0.0023299572058022022, 0.0015487141208723187, 0.040169768035411835, 0.24626556038856506], [0.03475775942206383, 0.003283452009782195, 0.0074998075142502785, 0.0038045400287956, 0.007586288265883923, 0.05190139263868332, 0.010764279402792454, 0.010243196971714497, 0.13020431995391846, 0.05889685079455376, 0.003898381255567074, 0.03150215372443199, 0.2923051714897156, 0.0839773640036583, 0.06827591359615326, 0.07029414921998978, 0.13080503046512604], [0.01877177134156227, 0.003274571383371949, 0.004848450887948275, 0.002747440943494439, 0.003594530513510108, 0.015208389610052109, 0.003513134317472577, 0.012410419061779976, 0.14927075803279877, 0.011832121759653091, 0.006414338946342468, 0.005159125197678804, 0.09488371759653091, 0.18686027824878693, 0.273154616355896, 0.05748378485441208, 0.15057261288166046], [0.021789737045764923, 0.003158853854984045, 0.007846553809940815, 0.0029973729979246855, 0.004203712567687035, 0.02625352330505848, 0.0038595679216086864, 0.01715152896940708, 0.14619556069374084, 0.01832089200615883, 0.006865106523036957, 0.007780106738209724, 0.14834704995155334, 0.1852159947156906, 0.20343685150146484, 0.049172524362802505, 0.14740507304668427], [0.034868333488702774, 0.014031435362994671, 0.006361465901136398, 0.010672181844711304, 0.015724845230579376, 0.0812961533665657, 0.013889340683817863, 0.1020364910364151, 0.1819848120212555, 0.09930936992168427, 0.008308115415275097, 0.07921653240919113, 0.03570425882935524, 0.005831372924149036, 0.004057868849486113, 0.12305734306573868, 0.18365009129047394], [0.05576321855187416, 0.03638318553566933, 0.057337719947099686, 0.033809397369623184, 0.02530876360833645, 0.03488156199455261, 0.0330699197947979, 0.06335695087909698, 0.22903399169445038, 0.04144205525517464, 0.03539574518799782, 0.025934269651770592, 0.02917262725532055, 0.010211492888629436, 0.014317767694592476, 0.04499416425824165, 0.2295871078968048]]], [[[0.005297467112541199, 0.16783204674720764, 0.3675132393836975, 0.04940835013985634, 0.022031916305422783, 0.028231138363480568, 0.008519068360328674, 0.07967200875282288, 0.11491129547357559, 0.003222285071387887, 0.028030067682266235, 0.0010792185785248876, 0.000500990659929812, 0.0007302633603103459, 0.000869597599375993, 0.007325959857553244, 0.11482513695955276], [0.004766474943608046, 0.12688788771629333, 0.12460390478372574, 0.02893034555017948, 0.013653712347149849, 0.017232440412044525, 0.009274342097342014, 0.08878704905509949, 0.28614553809165955, 0.0028164705727249384, 0.007499368861317635, 0.00021854243823327124, 0.0007668511243537068, 0.00013776372361462563, 0.00018941382586490363, 0.002091463888064027, 0.2859983444213867], [0.002550829667598009, 0.033975888043642044, 0.04040086641907692, 0.018888572230935097, 0.01103578507900238, 0.004325386602431536, 0.006601816974580288, 0.030958233401179314, 0.42200005054473877, 0.0005571680376306176, 0.0044917212799191475, 0.00038567467709071934, 0.0002042024425463751, 0.00023301954206544906, 0.0002402973041171208, 0.0012122293701395392, 0.4219382703304291], [0.004832226317375898, 0.06285307556390762, 0.040567006915807724, 0.07684948295354843, 0.03633752837777138, 0.04217629134654999, 0.022437050938606262, 0.10074576735496521, 0.3018655776977539, 0.003207303350791335, 0.0017004829132929444, 0.00041987671284005046, 0.00022912098211236298, 0.00010279820708092302, 0.0002585861657280475, 0.003697959240525961, 0.30171987414360046], [0.0035615579690784216, 0.023039570078253746, 0.03205538168549538, 0.027895918115973473, 0.045681148767471313, 0.01721591129899025, 0.010281956754624844, 0.059282220900058746, 0.38620585203170776, 0.002207000507041812, 0.0005496328230947256, 0.00047149305464699864, 0.00023021025117486715, 8.827996498439461e-05, 0.00021609636314678937, 0.0052264113910496235, 0.3857913613319397], [0.008434980176389217, 0.04755670204758644, 0.054221782833337784, 0.02550545334815979, 0.04541904479265213, 0.017660027369856834, 0.021139560267329216, 0.06945955008268356, 0.3433700501918793, 0.007943536154925823, 0.002520049223676324, 0.001113853882998228, 0.001180359860882163, 0.0013389542000368237, 0.002726425416767597, 0.007442825473845005, 0.342966765165329], [0.00492860097438097, 0.07522725313901901, 0.037394050508737564, 0.040790509432554245, 0.05941012501716614, 0.014410487376153469, 0.01341920904815197, 0.06265387684106827, 0.33901768922805786, 0.0030511284712702036, 0.0013138599460944533, 0.00019944993255194277, 0.0003325746220070869, 5.539594349102117e-05, 0.0001470465649617836, 0.008935135789215565, 0.3387135863304138], [0.005471080541610718, 0.1889464408159256, 0.07867632806301117, 0.06225866824388504, 0.021826161071658134, 0.023536572232842445, 0.027204491198062897, 0.04511084780097008, 0.2683037221431732, 0.0040791709907352924, 0.0031182393431663513, 0.0005477099330164492, 0.0007156832725740969, 0.000564315530937165, 0.0008533255313523114, 0.0010418876772746444, 0.2677452862262726], [0.01980801671743393, 0.008580448105931282, 0.014234697446227074, 0.00992380827665329, 0.01028298120945692, 0.0091600576415658, 0.005750687327235937, 0.018989911302924156, 0.420198917388916, 0.005519409663975239, 0.009300841018557549, 0.006858759094029665, 0.004189517814666033, 0.010243996046483517, 0.010956753976643085, 0.015462791547179222, 0.4205385744571686], [0.026824219152331352, 0.024535151198506355, 0.032377954572439194, 0.06428729742765427, 0.05188821628689766, 0.06091118976473808, 0.005562410224229097, 0.07729799300432205, 0.2642455995082855, 0.03744874894618988, 0.026658358052372932, 0.01375736203044653, 0.00215017213486135, 0.0019419833552092314, 0.0023957695811986923, 0.04324641451239586, 0.264471173286438], [0.02811388112604618, 0.1908879280090332, 0.10133616626262665, 0.06870381534099579, 0.01579757034778595, 0.02287447638809681, 0.0036996754352003336, 0.04725593701004982, 0.13034150004386902, 0.031646616756916046, 0.11990267783403397, 0.010809540748596191, 0.01338377594947815, 0.006467808969318867, 0.00892630871385336, 0.06948082149028778, 0.13037154078483582], [0.03820781409740448, 0.013281067833304405, 0.012624234892427921, 0.020400894805788994, 0.030536005273461342, 0.09677345305681229, 0.009445511735975742, 0.027323702350258827, 0.13141368329524994, 0.22022569179534912, 0.05348948761820793, 0.03902488946914673, 0.007149926386773586, 0.008481760509312153, 0.027124639600515366, 0.13289502263069153, 0.13160213828086853], [0.07273712754249573, 0.024743838235735893, 0.03470733389258385, 0.0245047640055418, 0.01619902066886425, 0.07490096241235733, 0.009171618148684502, 0.03618757054209709, 0.07154164463281631, 0.04914092645049095, 0.16088786721229553, 0.1108478307723999, 0.03542714565992355, 0.022601546719670296, 0.039940010756254196, 0.14479517936706543, 0.07166562229394913], [0.0283042024821043, 0.011317034251987934, 0.02489718608558178, 0.015414466150105, 0.0015972380060702562, 0.028210356831550598, 0.0049884323962032795, 0.02013750746846199, 0.14350950717926025, 0.013215675950050354, 0.0776049941778183, 0.08741527050733566, 0.05300682783126831, 0.08616761863231659, 0.1291641891002655, 0.13118891417980194, 0.1438606083393097], [0.03766375407576561, 0.021850580349564552, 0.04736213758587837, 0.02441374585032463, 0.001717879087664187, 0.020973367616534233, 0.006252184975892305, 0.018372710794210434, 0.1686561405658722, 0.013071833178400993, 0.15169283747673035, 0.05590406060218811, 0.04113074764609337, 0.04716875031590462, 0.0711827203631401, 0.10357741266489029, 0.16900914907455444], [0.04237581044435501, 0.034525468945503235, 0.01796027459204197, 0.07954207062721252, 0.005555150099098682, 0.011201413348317146, 0.004228738136589527, 0.03591584041714668, 0.23428994417190552, 0.08004027605056763, 0.08197487890720367, 0.0256463922560215, 0.011752222664654255, 0.011631840839982033, 0.028098609298467636, 0.06081730127334595, 0.2344437688589096], [0.019834494218230247, 0.008578206412494183, 0.014228561893105507, 0.009924551472067833, 0.010270298458635807, 0.009148378856480122, 0.005743163637816906, 0.018999049440026283, 0.4201512038707733, 0.005528767127543688, 0.009308217093348503, 0.006860585417598486, 0.004192777909338474, 0.010260799899697304, 0.010981878265738487, 0.015497867949306965, 0.42049112915992737]], [[0.004420050885528326, 0.1266983151435852, 0.16905458271503448, 0.07324151694774628, 0.0168790090829134, 0.06080598756670952, 0.015546832233667374, 0.1149018406867981, 0.20513631403446198, 0.000623668369371444, 0.0006565509829670191, 0.00024722624220885336, 0.0002423793775960803, 0.001202116720378399, 0.0012709980364888906, 0.004020807798951864, 0.20505185425281525], [0.003970958758145571, 0.1215076893568039, 0.07590468972921371, 0.04486093670129776, 0.004666517488658428, 0.009503792971372604, 0.005105611868202686, 0.0201373640447855, 0.3544002175331116, 0.0024523886386305094, 0.0003674894105643034, 0.0003268657310400158, 0.00043549813563004136, 0.00032785756047815084, 0.0006079814629629254, 0.0015747409779578447, 0.3538493812084198], [0.004103243350982666, 0.24471741914749146, 0.05287128686904907, 0.030641809105873108, 0.0027440302073955536, 0.00585038959980011, 0.0046775764785707, 0.008326535113155842, 0.31769245862960815, 0.002939981408417225, 0.0014126028399914503, 0.0005398806533776224, 0.0011916563380509615, 0.0009985454380512238, 0.0014705669600516558, 0.002631161827594042, 0.31719082593917847], [0.004044024273753166, 0.23380111157894135, 0.15574638545513153, 0.019537171348929405, 0.015819698572158813, 0.03960483521223068, 0.08028294146060944, 0.03317998722195625, 0.2058725506067276, 0.002567046321928501, 0.0007795484270900488, 0.00016869918908923864, 0.0008866242715157568, 0.0004209131875541061, 0.0006938352016732097, 0.0010381081374362111, 0.20555660128593445], [0.002462410368025303, 0.04369528964161873, 0.07162564992904663, 0.09851499646902084, 0.038973867893218994, 0.017387233674526215, 0.004132942762225866, 0.00568706588819623, 0.3570542633533478, 0.00098380574490875, 0.0005859395023435354, 0.0004364593478385359, 0.0003401575959287584, 0.00041530063026584685, 0.0003914370317943394, 0.0004994593327865005, 0.35681360960006714], [0.0027360650710761547, 0.024508515372872353, 0.030636055395007133, 0.06254623830318451, 0.05546869710087776, 0.019308557733893394, 0.009677473455667496, 0.005218904465436935, 0.39305683970451355, 0.0012013415107503533, 0.00033970651566050947, 0.00018978756270371377, 0.0004091697046533227, 0.00045075680827721953, 0.00039951736107468605, 0.0009409427875652909, 0.392911434173584], [0.0016681656707078218, 0.010791630484163761, 0.032815542072057724, 0.07728085666894913, 0.23383007943630219, 0.0634358674287796, 0.0039275032468140125, 0.0025694130454212427, 0.286190390586853, 0.00036607604124583304, 9.939416486304253e-05, 0.00023683186736889184, 0.00016975868493318558, 0.00015493850514758378, 6.693822069792077e-05, 0.0003024028264917433, 0.2860943377017975], [0.00348345167003572, 0.023145731538534164, 0.029527956619858742, 0.08934146165847778, 0.08331946283578873, 0.08211545646190643, 0.06002994626760483, 0.018208447843790054, 0.3024033308029175, 0.000712734879925847, 0.0003517790464684367, 0.00036900214035995305, 0.0004219951806589961, 0.0006284616538323462, 0.0008821941446512938, 0.002642233157530427, 0.30241644382476807], [0.011426216922700405, 0.009049708023667336, 0.012192009948194027, 0.015569650568068027, 0.008999671787023544, 0.011024982668459415, 0.0033921634312719107, 0.012049413286149502, 0.43733328580856323, 0.008446041494607925, 0.009078006260097027, 0.006193111650645733, 0.002964327810332179, 0.002092530718073249, 0.0037298286333680153, 0.00897007156163454, 0.4374888837337494], [0.030517419800162315, 0.0017176135443150997, 0.004947955720126629, 0.0203742366284132, 0.002899325918406248, 0.0026137458626180887, 0.0012104575289413333, 0.03256400674581528, 0.40427279472351074, 0.022246314212679863, 0.008757486008107662, 0.008829270489513874, 0.0024329901207238436, 0.002917352830991149, 0.0050587886944413185, 0.04412335902452469, 0.40451690554618835], [0.00934809073805809, 0.011453364044427872, 0.0036958991549909115, 0.0031375307589769363, 0.0008310616249218583, 0.00158501707483083, 0.00016332736413460225, 0.01181812584400177, 0.295293927192688, 0.2820739150047302, 0.020782075822353363, 0.010273581370711327, 0.0029598919209092855, 0.00500992638990283, 0.011379297822713852, 0.034435030072927475, 0.2957599461078644], [0.009084653109312057, 0.0006854653474874794, 0.0005500874249264598, 0.0018192435381934047, 0.0005331854335963726, 0.0003550722321961075, 0.0001159801977337338, 0.0018130653770640492, 0.34873291850090027, 0.14139458537101746, 0.04208522289991379, 0.045032303780317307, 0.025682520121335983, 0.006735603790730238, 0.007984030060470104, 0.018208835273981094, 0.3491871953010559], [0.0053117056377232075, 0.00025196128990501165, 0.00045175079139880836, 0.001449344796128571, 0.0004991032183170319, 0.0003659848007373512, 3.623289376264438e-05, 0.0008738187607377768, 0.3923167288303375, 0.06722195446491241, 0.02436753734946251, 0.07532060146331787, 0.0110842389985919, 0.005339708644896746, 0.007177589926868677, 0.015029292553663254, 0.3929024934768677], [0.0014845877885818481, 0.00020282679179217666, 0.0004995363997295499, 0.00012627163960132748, 7.107922283466905e-05, 0.0002511218190193176, 3.331775587867014e-05, 0.00013318117999006063, 0.38176634907722473, 0.06554548442363739, 0.0251153577119112, 0.02480188012123108, 0.08795204013586044, 0.011713107116520405, 0.014296168461441994, 0.0037748883478343487, 0.382232666015625], [0.0025338674895465374, 0.00031027416116558015, 0.0005934437504038215, 0.00026551485643722117, 0.0002827864373102784, 0.0005936676752753556, 7.575721974717453e-05, 0.00022718444233760238, 0.3242541551589966, 0.07145193219184875, 0.03864063322544098, 0.032356005162000656, 0.1333603858947754, 0.04058241844177246, 0.021624408662319183, 0.007989378646016121, 0.3248581886291504], [0.008402728475630283, 0.0018791983602568507, 0.002023938577622175, 0.0016244550934061408, 0.000734977365937084, 0.0017260321183130145, 0.00037761463318020105, 0.005386863369494677, 0.23020325601100922, 0.1504465788602829, 0.09307001531124115, 0.041518714278936386, 0.03147316351532936, 0.05656770244240761, 0.09995003789663315, 0.04387686029076576, 0.23073779046535492], [0.011424877680838108, 0.009034248068928719, 0.01216176524758339, 0.015556448139250278, 0.008996876887977123, 0.011022094637155533, 0.003387703327462077, 0.012043501250445843, 0.4373071491718292, 0.008479166775941849, 0.009105510078370571, 0.006214453838765621, 0.0029697800055146217, 0.002097861375659704, 0.0037407982163131237, 0.008994069881737232, 0.43746358156204224]], [[0.005105744581669569, 0.0911070853471756, 0.020794546231627464, 0.06420891731977463, 0.009805277921259403, 0.04237595573067665, 0.013696841895580292, 0.03515808284282684, 0.1733161062002182, 0.12482968717813492, 0.050272002816200256, 0.011151405051350594, 0.0037445160560309887, 0.0075047630816698074, 0.020641835406422615, 0.15274009108543396, 0.17354722321033478], [0.006423650309443474, 0.05394363030791283, 0.17512978613376617, 0.43607503175735474, 0.030811473727226257, 0.07436548173427582, 0.019245577976107597, 0.08345205336809158, 0.05096716433763504, 0.003018262330442667, 0.0037483456544578075, 0.0004999149823561311, 0.00013760202273260802, 0.00021285071852616966, 0.0005034448695369065, 0.010472883470356464, 0.050992876291275024], [0.018413737416267395, 0.1352156549692154, 0.15041641891002655, 0.17828987538814545, 0.06867485493421555, 0.09728401154279709, 0.035086825489997864, 0.11978700011968613, 0.08465901762247086, 0.0027507860213518143, 0.01060415804386139, 0.0007669285405427217, 0.0008080457337200642, 0.0005498760147020221, 0.0008260412723757327, 0.011163183487951756, 0.08470353484153748], [0.003984613344073296, 0.11092612147331238, 0.14696677029132843, 0.06717951595783234, 0.026056475937366486, 0.06739041954278946, 0.029580779373645782, 0.05975344777107239, 0.2299407422542572, 0.00662103109061718, 0.005812695249915123, 0.0020389158744364977, 0.00023032139870338142, 0.0004292786761652678, 0.001284569501876831, 0.011850080452859402, 0.22995422780513763], [0.002610620576888323, 0.05329253897070885, 0.07848281413316727, 0.03147653117775917, 0.02376451902091503, 0.05199495702981949, 0.015109510160982609, 0.030399631708860397, 0.3475860059261322, 0.006430253852158785, 0.0017697770381346345, 0.0037355064414441586, 0.000640927697531879, 0.00023232429521158338, 0.00042635094723664224, 0.004968475550413132, 0.3470793664455414], [0.005790722090750933, 0.05595386400818825, 0.07701115310192108, 0.11726585030555725, 0.03268156573176384, 0.04541349038481712, 0.046410590410232544, 0.049196332693099976, 0.26831933856010437, 0.006442303769290447, 0.004564326256513596, 0.0011788730043917894, 0.0008824720280244946, 0.0004101727972738445, 0.0012996913865208626, 0.019185950979590416, 0.2679932713508606], [0.0011707909870892763, 0.018569553270936012, 0.02420329675078392, 0.03415117412805557, 0.0223215464502573, 0.0692625343799591, 0.01225161924958229, 0.020756829530000687, 0.39523300528526306, 0.002469658385962248, 0.0005711872945539653, 0.0008048827294260263, 6.381727143889293e-05, 2.9046395866316743e-05, 8.3308776083868e-05, 0.0032584371510893106, 0.39479920268058777], [0.004729016218334436, 0.11458010226488113, 0.08157681673765182, 0.26571789383888245, 0.038655489683151245, 0.12337535619735718, 0.05719822645187378, 0.030496535822749138, 0.13191869854927063, 0.0026473761536180973, 0.004670982714742422, 0.0005967780598439276, 0.00017445682897232473, 0.0006383605650626123, 0.0015284724067896605, 0.009621094912290573, 0.13187429308891296], [0.0020520559046417475, 0.0018406618619337678, 0.006071656476706266, 0.0019317823462188244, 0.001352562103420496, 0.006889020558446646, 0.0007401554612442851, 0.002467881189659238, 0.48450881242752075, 0.00202777236700058, 0.0012497866991907358, 0.0006144680082798004, 0.0003891513333655894, 0.0005871561588719487, 0.0005445200949907303, 0.0020153741352260113, 0.4847172498703003], [0.013733774423599243, 0.009574252180755138, 0.008746680803596973, 0.008951568976044655, 0.0027222868520766497, 0.024615788832306862, 0.002326545538380742, 0.0062681217677891254, 0.21995943784713745, 0.07933208346366882, 0.07519316673278809, 0.04829152300953865, 0.009177383035421371, 0.02306598238646984, 0.034876879304647446, 0.2128230631351471, 0.22034139931201935], [0.004843204747885466, 0.0336439311504364, 0.06470245867967606, 0.06942503899335861, 0.005320457741618156, 0.030456779524683952, 0.0027195822913199663, 0.01646280847489834, 0.09513810276985168, 0.0799405500292778, 0.049472659826278687, 0.03985505923628807, 0.0036948134656995535, 0.01668129302561283, 0.025873491540551186, 0.3663578927516937, 0.09541188925504684], [0.0061147394590079784, 0.009982898831367493, 0.008776696398854256, 0.006483661476522684, 0.01151349488645792, 0.19783256947994232, 0.003573478665202856, 0.006222090683877468, 0.09631194919347763, 0.1189933642745018, 0.011652293615043163, 0.30500897765159607, 0.05492006987333298, 0.0038331488613039255, 0.003744743065908551, 0.05868811532855034, 0.09634772688150406], [0.0029577920213341713, 0.006268859375268221, 0.020655956119298935, 0.0010027632815763354, 0.003831166308373213, 0.12467428296804428, 0.0014100599801167846, 0.0011361995711922646, 0.2098654806613922, 0.091877780854702, 0.009355146437883377, 0.23754984140396118, 0.05319197475910187, 0.0069496240466833115, 0.005284553859382868, 0.014030836522579193, 0.20995762944221497], [0.006022319663316011, 0.010365533642470837, 0.022541331127285957, 0.0010288951452821493, 0.0013846724759787321, 0.03282004967331886, 0.0010796115966513753, 0.0019692357163876295, 0.4094730019569397, 0.02030200883746147, 0.026183828711509705, 0.023900650441646576, 0.016958018764853477, 0.004261720925569534, 0.003201414132490754, 0.0085412273183465, 0.40996649861335754], [0.005099293310195208, 0.006434600334614515, 0.014146889559924603, 0.0011425132397562265, 0.0007825923967175186, 0.022038228809833527, 0.0009783431887626648, 0.0014403992099687457, 0.4417753219604492, 0.013710400089621544, 0.01806250773370266, 0.00962051097303629, 0.008859865367412567, 0.003519561141729355, 0.0021580432076007128, 0.007934906519949436, 0.4422961473464966], [0.00424864050000906, 0.018053347244858742, 0.014590892009437084, 0.006673718336969614, 0.006026660092175007, 0.07573217898607254, 0.010383738204836845, 0.005573029164224863, 0.28597158193588257, 0.05072358250617981, 0.048723578453063965, 0.09867778420448303, 0.007499033119529486, 0.029175635427236557, 0.02901400998234749, 0.022380990907549858, 0.2865515649318695], [0.0020503560081124306, 0.0018381867557764053, 0.006066328380256891, 0.0019284342415630817, 0.0013502700021490455, 0.006877555977553129, 0.0007384041091427207, 0.0024629896506667137, 0.4845215678215027, 0.0020299579482525587, 0.0012505349004641175, 0.0006148909451439977, 0.00038951373426243663, 0.0005877254297956824, 0.0005448164301924407, 0.002017260529100895, 0.48473113775253296]], [[0.004559527616947889, 0.000788952864240855, 0.0025498527102172375, 0.00043330114567652345, 0.00045689012040384114, 0.0006891385419294238, 6.610320997424424e-05, 0.004297088366001844, 0.32817378640174866, 0.09726065397262573, 0.042058736085891724, 0.016970792785286903, 0.007064131088554859, 0.009209049865603447, 0.0269177109003067, 0.1292913854122162, 0.3292129337787628], [0.0119582274928689, 0.028980802744627, 0.0328555703163147, 0.2566097378730774, 0.02039879374206066, 0.040396884083747864, 0.01524291280657053, 0.05649041384458542, 0.25364869832992554, 0.0063878498040139675, 0.004316553007811308, 0.0011726761003956199, 0.001430540345609188, 0.0015171411214396358, 0.0008085212903097272, 0.014190485700964928, 0.25359416007995605], [0.005526285618543625, 0.014378851279616356, 0.061596766114234924, 0.00858283694833517, 0.0023474351037293673, 0.0147481644526124, 0.0024471022188663483, 0.01132805272936821, 0.43023717403411865, 0.0010106076952069998, 0.0031537143513560295, 0.0008174902759492397, 0.0006932400865480304, 0.00444023497402668, 0.0027562291361391544, 0.004864922259002924, 0.4310709238052368], [0.0059042214415967464, 0.03491642326116562, 0.005537510383874178, 0.04781602323055267, 0.037210576236248016, 0.15455812215805054, 0.038282498717308044, 0.01857975497841835, 0.32544761896133423, 0.0013055438175797462, 0.0003880287695210427, 0.0004887021495960653, 0.0006392252980731428, 0.0004481000651139766, 0.00046945796930231154, 0.002928073052316904, 0.32508018612861633], [0.006990362424403429, 0.02298472821712494, 0.004950795788317919, 0.09477657079696655, 0.03258771449327469, 0.13215355575084686, 0.020249199122190475, 0.016518551856279373, 0.3308350741863251, 0.002744380384683609, 0.00039450314943678677, 0.00027286590193398297, 0.0005930708721280098, 0.0011334207374602556, 0.0003167016548104584, 0.0018019923008978367, 0.3306964337825775], [0.013341106474399567, 0.029822537675499916, 0.00875923316925764, 0.10356228053569794, 0.0186845101416111, 0.0708804503083229, 0.28577691316604614, 0.01769726350903511, 0.20928701758384705, 0.006457692477852106, 0.0008896054932847619, 0.0006834467058070004, 0.0022377928253263235, 0.0029984142165631056, 0.004237498622387648, 0.015372789464890957, 0.20931147038936615], [0.006526425946503878, 0.010434571653604507, 0.0012898542918264866, 0.12139632552862167, 0.012297768145799637, 0.06764482706785202, 0.007496734149754047, 0.023653080686926842, 0.37102803587913513, 0.0018435518722981215, 0.00016437556769233197, 5.465562207973562e-05, 3.5044467949774116e-05, 7.795871351845562e-05, 3.9380931411869824e-05, 0.005023255944252014, 0.3709942400455475], [0.0038711640518158674, 0.003608987433835864, 0.007837025448679924, 0.014432350173592567, 0.0029854201711714268, 0.016951048746705055, 0.0020319868344813585, 0.005767277907580137, 0.46739304065704346, 0.00128552142996341, 0.002121981466189027, 0.0013270488707348704, 0.00030418383539654315, 0.0006217916961759329, 0.0005152271478436887, 0.001263331389054656, 0.4676826596260071], [0.005330605898052454, 0.003307645907625556, 0.010106753557920456, 0.006291170604526997, 0.005423597060143948, 0.00964100006967783, 0.001972002675756812, 0.0021975080017000437, 0.456297367811203, 0.0037741262931376696, 0.003716695122420788, 0.006658582016825676, 0.0034265785943716764, 0.014179150573909283, 0.007708790712058544, 0.003593786619603634, 0.4563746154308319], [0.003284159814938903, 0.001018995768390596, 0.001203836058266461, 0.0016154367476701736, 0.0017419243231415749, 0.003985143266618252, 0.0003202772350050509, 0.0009198729530908167, 0.4503265917301178, 0.011200111359357834, 0.018842868506908417, 0.03046409785747528, 0.002788781886920333, 0.007832895033061504, 0.006276383996009827, 0.0074068219400942326, 0.4507717490196228], [0.002434982219710946, 0.0002808681165333837, 0.0006167256506159902, 0.0015070175286382437, 0.00026110096951015294, 0.00045292111462913454, 0.0001414354337612167, 0.0028285107109695673, 0.122406966984272, 0.00938814040273428, 0.007447195239365101, 0.018445292487740517, 0.00810359138995409, 0.02039041556417942, 0.021811190992593765, 0.660796582698822, 0.12268698215484619], [0.0013778489083051682, 0.00036587839713320136, 0.00036740044015459716, 0.0003835103998426348, 0.0004604478308465332, 0.0003604190133046359, 0.00010386012581875548, 0.0005261037149466574, 0.4114050567150116, 0.008736945688724518, 0.003853559959679842, 0.00979110598564148, 0.07607895135879517, 0.027503682300448418, 0.006908680312335491, 0.03988710790872574, 0.4118894934654236], [0.002003398025408387, 0.0005276554729789495, 0.0002911758201662451, 0.0014142632717266679, 6.888956704642624e-05, 0.0006521879695355892, 1.5909998182905838e-05, 0.0005114514497108757, 0.3222295939922333, 0.0038738083094358444, 0.006736425217241049, 0.009132626466453075, 0.012696393765509129, 0.1576133519411087, 0.04806869477033615, 0.11098641902208328, 0.3231777846813202], [0.002857973799109459, 0.0010368343209847808, 0.0007925468380562961, 0.000811257166787982, 0.00016788629000075161, 0.0005031348555348814, 0.0003956520522478968, 0.000386344559956342, 0.21825887262821198, 0.004878087900578976, 0.014012823812663555, 0.017162933945655823, 0.09953681379556656, 0.06072201579809189, 0.30620676279067993, 0.05378515273332596, 0.21848493814468384], [0.0033068566117435694, 0.0004578383232001215, 0.00046508637024089694, 0.000969412038102746, 0.00020914622291456908, 0.0002484262513462454, 0.00012482100282795727, 0.0009671279112808406, 0.3901226222515106, 0.005459696985781193, 0.019207900390028954, 0.015136857517063618, 0.024081578478217125, 0.07690244913101196, 0.02174494042992592, 0.04950181767344475, 0.391093373298645], [0.0011034932686015964, 0.00041215107194148004, 0.0003774958022404462, 0.0010573997860774398, 0.00021009071497246623, 0.0011409358121454716, 0.00012127727677579969, 0.0006731980829499662, 0.4345414340496063, 0.001520061632618308, 0.0063075111247599125, 0.017148710787296295, 0.013547779992222786, 0.03630455210804939, 0.027358246967196465, 0.02274540811777115, 0.43543022871017456], [0.005336220841854811, 0.0033057851251214743, 0.010103982873260975, 0.006290243938565254, 0.0054209367372095585, 0.009648711420595646, 0.001973511418327689, 0.0021955694537609816, 0.45624688267707825, 0.003775506978854537, 0.0037189340218901634, 0.0066702477633953094, 0.0034362846054136753, 0.014226618222892284, 0.007730051409453154, 0.003597069764509797, 0.4563234746456146]], [[0.003370942547917366, 0.04881782457232475, 0.03230999782681465, 0.0675431564450264, 0.03540462628006935, 0.3920157849788666, 0.10692373663187027, 0.1143830195069313, 0.08525600284337997, 0.00179760018363595, 0.0013329824432730675, 0.01075056754052639, 0.005185674410313368, 0.0023407794069498777, 0.0021522543393075466, 0.005133139435201883, 0.08528196066617966], [0.006229700054973364, 0.03315015882253647, 0.01571987196803093, 0.07278934866189957, 0.02622600458562374, 0.07043248414993286, 0.1663273721933365, 0.07251719385385513, 0.2675327956676483, 0.00032645263127051294, 0.0003248643479309976, 0.0002673377748578787, 0.00011943218851229176, 0.00021623271459247917, 0.00013916415628045797, 0.00014406828267965466, 0.26753750443458557], [0.007965737022459507, 0.047513965517282486, 0.037971071898937225, 0.018080836161971092, 0.03044014796614647, 0.07502014189958572, 0.06291737407445908, 0.031013887375593185, 0.33791661262512207, 0.0017014400800690055, 0.001945211784914136, 0.002674452029168606, 0.0023524488788098097, 0.0017909761518239975, 0.0013948706910014153, 0.001281709992326796, 0.3380189538002014], [0.003741672495380044, 0.0804874524474144, 0.012497924268245697, 0.008312543854117393, 0.08569295704364777, 0.028727207332849503, 0.02198808826506138, 0.029839633032679558, 0.3631247878074646, 0.001788897323422134, 0.0006236655754037201, 0.00042825372656807303, 0.00010942654625978321, 7.633345376234502e-06, 1.2319670531724114e-05, 0.00011274260032223538, 0.36250489950180054], [0.015540530905127525, 0.04487740620970726, 0.007292138412594795, 0.2619316875934601, 0.021228685975074768, 0.011393985711038113, 0.025789447128772736, 0.03199133276939392, 0.2898111343383789, 0.0005804746760986745, 0.00011200936569366604, 0.00011535434168763459, 3.435305552557111e-05, 8.08266759122489e-06, 1.885876372398343e-05, 0.00021526942146010697, 0.28905925154685974], [0.023224031552672386, 0.16655676066875458, 0.018678585067391396, 0.36063358187675476, 0.030334828421473503, 0.011313293129205704, 0.04599607363343239, 0.02245994284749031, 0.15696081519126892, 0.004470486659556627, 0.0013387985527515411, 0.00039366536657325923, 0.00011838461796287447, 5.950408012722619e-05, 0.00010068350093206391, 0.0006687200511805713, 0.15669189393520355], [0.04010115936398506, 0.08965997397899628, 0.003936432301998138, 0.46130096912384033, 0.0445362813770771, 0.010296289809048176, 0.016315732151269913, 0.04378350451588631, 0.14492268860340118, 0.0003446432820055634, 0.0001834815484471619, 1.958394750545267e-05, 4.12821646023076e-06, 3.717936181146797e-07, 1.5065513707668288e-06, 3.8350674003595486e-05, 0.14455482363700867], [0.008242328651249409, 0.02511579543352127, 0.016535207629203796, 0.057554397732019424, 0.03570202365517616, 0.17274735867977142, 0.10733512789011002, 0.024890093132853508, 0.27348363399505615, 0.0018323649419471622, 0.0009202899527736008, 0.000946124317124486, 0.000476937711937353, 9.822175343288109e-05, 0.00014358140469994396, 0.000658158038277179, 0.27331820130348206], [0.014842351898550987, 0.01327650435268879, 0.016149787232279778, 0.011800777167081833, 0.005971558857709169, 0.008221070282161236, 0.004974676296114922, 0.0046539511531591415, 0.4087497591972351, 0.018472520634531975, 0.02015983685851097, 0.021893126890063286, 0.009429410099983215, 0.0056530870497226715, 0.006247894838452339, 0.020583558827638626, 0.40892016887664795], [0.011694489046931267, 0.0035602026619017124, 0.0014882980613037944, 0.001248420448973775, 0.008290162310004234, 0.05803222954273224, 0.00529091339558363, 0.004606747999787331, 0.40420520305633545, 0.018067996948957443, 0.005787001922726631, 0.06573593616485596, 0.0035199448466300964, 0.0014263902558013797, 0.001586321392096579, 0.0006910592783242464, 0.40476879477500916], [0.0017565799644216895, 0.0016134293982759118, 0.0027119028382003307, 0.000956268107984215, 0.0012822869466617703, 0.009463975206017494, 0.0012486862251535058, 0.0025284753646701574, 0.45313942432403564, 0.007141444366425276, 0.005156685598194599, 0.02251514233648777, 0.00954648107290268, 0.015542554669082165, 0.006399105302989483, 0.005228354129940271, 0.4537692964076996], [0.011386871337890625, 0.002111377427354455, 0.000706756953150034, 0.0013555969344452024, 0.0011755507439374924, 0.0006833676598034799, 0.0002750402200035751, 0.002838957356289029, 0.325282484292984, 0.08476478606462479, 0.025457805022597313, 0.06521104276180267, 0.011414819397032261, 0.004828022792935371, 0.004017669707536697, 0.13297070562839508, 0.3255191147327423], [0.006476139649748802, 0.0008783658850006759, 0.0005277867894619703, 0.00039031635969877243, 0.0004664714797399938, 0.0007430788828060031, 8.506329322699457e-05, 0.0007464757072739303, 0.16273601353168488, 0.04920459911227226, 0.012257130816578865, 0.06546778976917267, 0.02271001785993576, 0.20734331011772156, 0.2077716588973999, 0.09920534491539001, 0.16299042105674744], [0.008416908793151379, 0.0013125152327120304, 0.0007978067151270807, 0.0002654278068803251, 0.0002587765920907259, 0.0005732472636736929, 0.0001422864879714325, 0.0010867429664358497, 0.18285620212554932, 0.025519372895359993, 0.02488243579864502, 0.040679220110177994, 0.0383002944290638, 0.008951788768172264, 0.013566715642809868, 0.4692017138004303, 0.1831885278224945], [0.005189163610339165, 0.0006860109278932214, 0.0006969798705540597, 0.0001929131685756147, 0.00023091590264812112, 0.0004794131964445114, 6.954477430554107e-05, 0.001333426684141159, 0.11603162437677383, 0.03667369484901428, 0.019567517563700676, 0.035262979567050934, 0.05337856709957123, 0.011384841986000538, 0.014427675865590572, 0.5881808996200562, 0.1162138506770134], [0.006338529754430056, 0.00722100492566824, 0.001404008362442255, 0.0005628236103802919, 0.002245223382487893, 0.0029457947239279747, 8.703795174369588e-05, 0.003137916326522827, 0.1470586508512497, 0.4715854525566101, 0.13366767764091492, 0.040407732129096985, 0.01296455878764391, 0.00249129137955606, 0.0028746367897838354, 0.01769717037677765, 0.14731045067310333], [0.014840803109109402, 0.013255669735372066, 0.01613742485642433, 0.011793873272836208, 0.005963553674519062, 0.008214526809751987, 0.00497058080509305, 0.0046472446992993355, 0.4087449610233307, 0.018484093248844147, 0.02016022428870201, 0.02191845513880253, 0.009438002482056618, 0.00566423824056983, 0.006259399000555277, 0.02059193141758442, 0.40891486406326294]], [[0.003993752412497997, 0.0013385460479184985, 0.0047914679162204266, 0.003591368906199932, 0.005904020741581917, 0.02256336808204651, 0.0030767114367336035, 0.0019530488643795252, 0.1198609247803688, 0.283425897359848, 0.03495556488633156, 0.20913217961788177, 0.06221076101064682, 0.018787436187267303, 0.027225757017731667, 0.07696833461523056, 0.12022089958190918], [0.008261207491159439, 0.027138326317071915, 0.15395762026309967, 0.012650390155613422, 0.06177956238389015, 0.28440341353416443, 0.034142471849918365, 0.023110302165150642, 0.171820729970932, 0.009930008091032505, 0.0017126131569966674, 0.017165325582027435, 0.012370679527521133, 0.0027852668426930904, 0.004340345039963722, 0.0025703483261168003, 0.17186138033866882], [0.004771775100380182, 0.007082073949277401, 0.0314272902905941, 0.0036075180396437645, 0.004755150992423296, 0.023166656494140625, 0.0028421124443411827, 0.005856794770807028, 0.43119698762893677, 0.002630728529766202, 0.001089355326257646, 0.003610256128013134, 0.011623641476035118, 0.01512613333761692, 0.016638105735182762, 0.003055887995287776, 0.4315195083618164], [0.007425465155392885, 0.0703849047422409, 0.1774425506591797, 0.010957038961350918, 0.021544698625802994, 0.3787921965122223, 0.044837888330221176, 0.02039637416601181, 0.1019025593996048, 0.012729426845908165, 0.0011528690811246634, 0.03222086280584335, 0.010329254902899265, 0.0010545023251324892, 0.0016127856215462089, 0.005335953086614609, 0.10188055783510208], [0.0029996430967003107, 0.026763509958982468, 0.11934029310941696, 0.008635981939733028, 0.010709026828408241, 0.36904826760292053, 0.009430112317204475, 0.010960892774164677, 0.19858476519584656, 0.003216436365619302, 0.00029846461256965995, 0.03673403337597847, 0.0030582044273614883, 0.00015367318701464683, 0.0003008657367900014, 0.0014007758582010865, 0.1983650177717209], [0.005889039020985365, 0.019350072368979454, 0.046852149069309235, 0.0023042012471705675, 0.002209374448284507, 0.11938966810703278, 0.004886500537395477, 0.009063913486897945, 0.3805636167526245, 0.006478199269622564, 0.0003868359490297735, 0.005807084031403065, 0.007590980269014835, 0.0018962349276989698, 0.0044573531486094, 0.0025140647776424885, 0.38036060333251953], [0.003942021634429693, 0.033246442675590515, 0.04661192744970322, 0.01026337593793869, 0.006899035535752773, 0.3677421510219574, 0.010542401112616062, 0.009582511149346828, 0.24771469831466675, 0.006913176272064447, 0.00033522487501613796, 0.005386059638112783, 0.0015197106404229999, 0.00020825258980039507, 0.00041800516191869974, 0.0013687267201021314, 0.2473062127828598], [0.01034742034971714, 0.061718616634607315, 0.1919936239719391, 0.04037828743457794, 0.08423028886318207, 0.3948482275009155, 0.02267433889210224, 0.008270499296486378, 0.07766542583703995, 0.007564121391624212, 0.0011984413722530007, 0.013658230192959309, 0.004363464191555977, 0.0009361953125335276, 0.001155634643509984, 0.0013657136587426066, 0.07763147354125977], [0.0008756560855545104, 0.0006081643514335155, 0.0023821000941097736, 0.00030475048697553575, 0.0004171414184384048, 0.0029615648090839386, 0.000215228705201298, 0.0004806671931874007, 0.4894660711288452, 0.0014607614139094949, 0.0008804139215499163, 0.00390710961073637, 0.002176470123231411, 0.0010624444112181664, 0.001183721236884594, 0.0016297680558636785, 0.48998796939849854], [0.00045986881013959646, 0.00023576388775836676, 0.0013989780563861132, 0.00010590633610263467, 0.0004886252572759986, 0.016101066023111343, 0.00040648257709108293, 0.0001501672377344221, 0.10604394972324371, 0.015456512570381165, 0.0019657572265714407, 0.6424494385719299, 0.08990637212991714, 0.003565523074939847, 0.005717775318771601, 0.009308787994086742, 0.10623905807733536], [0.0004179886309430003, 0.0002866630384232849, 0.007188134361058474, 4.7599485696991906e-05, 0.0002682063786778599, 0.002377929165959358, 0.00022887489467393607, 0.0003644666576292366, 0.2808360755443573, 0.021073203533887863, 0.017181675881147385, 0.10318883508443832, 0.12473752349615097, 0.06642117351293564, 0.07715761661529541, 0.01649664156138897, 0.2817273437976837], [0.002286522416397929, 0.0004298420390114188, 0.004341352265328169, 1.834712384152226e-05, 3.2181233109440655e-05, 0.0025266497395932674, 5.141443034517579e-05, 0.00014303512580227107, 0.2495524287223816, 0.04128806293010712, 0.012103419750928879, 0.22171904146671295, 0.11481130123138428, 0.03248943015933037, 0.0337817519903183, 0.03457116335630417, 0.24985402822494507], [0.00038123567355796695, 9.707362187327817e-05, 0.0037924812640994787, 6.3657971622888e-06, 7.5434822974784765e-06, 0.001650141435675323, 9.586333362676669e-06, 3.309451130917296e-05, 0.25731226801872253, 0.0029601987916976213, 0.0020629994105547667, 0.018755417317152023, 0.0825469046831131, 0.22304780781269073, 0.1476300209760666, 0.0020913563203066587, 0.25761550664901733], [0.00010912123980233446, 1.460025850974489e-05, 0.0005517355748452246, 7.672455240026466e-07, 6.79503386891156e-07, 6.506004137918353e-05, 3.4186251696155523e-07, 9.851538379734848e-06, 0.4753793478012085, 0.00047420631744898856, 0.0013176656793802977, 0.001310355612076819, 0.012645707465708256, 0.015349369496107101, 0.016213014721870422, 0.0004618706298060715, 0.47609618306159973], [0.00048527796752750874, 4.1633076762082055e-05, 0.0012162142666056752, 4.105159405298764e-06, 2.70862892648438e-06, 0.00017066102009266615, 2.098478944390081e-06, 3.438854037085548e-05, 0.4711749851703644, 0.001355909276753664, 0.0020190614741295576, 0.0013871805276721716, 0.012695368379354477, 0.01855277456343174, 0.01767147146165371, 0.001271175337024033, 0.47191494703292847], [0.0006318666273728013, 0.00035305492929182947, 0.005681788083165884, 3.624396049417555e-05, 9.087371290661395e-05, 0.00661341892555356, 0.00013336549454834312, 0.00014994664525147527, 0.31037285923957825, 0.011156744323670864, 0.003724417183548212, 0.11595451831817627, 0.117418572306633, 0.05031771957874298, 0.05532537028193474, 0.011041784659028053, 0.3109974265098572], [0.0008743352955207229, 0.0006069379160180688, 0.0023802067153155804, 0.00030366468126885593, 0.00041568270535208285, 0.00295811053365469, 0.00021453610679600388, 0.00047938781790435314, 0.48947224020957947, 0.0014585658209398389, 0.0008794754976406693, 0.003908841405063868, 0.002178118098527193, 0.001063348725438118, 0.001184888300485909, 0.0016276933019980788, 0.4899939298629761]], [[0.017378585413098335, 0.016709530726075172, 0.02192264050245285, 0.006534617859870195, 0.007567672058939934, 0.010273301042616367, 0.001278425334021449, 0.007229949347674847, 0.2549307644367218, 0.31588026881217957, 0.015049525536596775, 0.007510794326663017, 0.012872375547885895, 0.013264773413538933, 0.008210907690227032, 0.028310120105743408, 0.25507572293281555], [0.004910493269562721, 0.044622451066970825, 0.5181931853294373, 0.034329064190387726, 0.005756134167313576, 0.00505676819011569, 0.0009837147081270814, 0.00718067679554224, 0.18384355306625366, 0.0012999624013900757, 0.002331748139113188, 0.00013568071881309152, 0.00017605161701794714, 0.00041269147186540067, 0.0006365765002556145, 0.006179030053317547, 0.183952197432518], [0.004916549194604158, 0.004587911535054445, 0.006970101036131382, 0.00858533289283514, 0.002715707290917635, 0.0028984439559280872, 0.0006683073006570339, 0.004440039861947298, 0.4792018234729767, 0.000495097425300628, 0.00048353467718698084, 0.0002778747002594173, 0.00023284953203983605, 0.0007232891512103379, 0.0008334909798577428, 0.002175401896238327, 0.4797942340373993], [0.004823579452931881, 0.08613643795251846, 0.046431463211774826, 0.01404997706413269, 0.06901515275239944, 0.186106875538826, 0.1479484587907791, 0.04693770781159401, 0.1904032975435257, 0.003807324916124344, 0.0029984903521835804, 0.0006426495965570211, 0.006278607994318008, 0.0008054818026721478, 0.0009979152819141746, 0.0019089989364147186, 0.19070765376091003], [0.0015614632284268737, 0.013726693578064442, 0.010440804995596409, 0.015902111306786537, 0.025265377014875412, 0.14347372949123383, 0.15251313149929047, 0.018069107085466385, 0.3025244176387787, 0.005606281571090221, 0.001221132348291576, 0.0007744447211734951, 0.0025148848071694374, 0.00040608234121464193, 0.0010330518707633018, 0.0020804970990866423, 0.3028867244720459], [0.016508065164089203, 0.02882392331957817, 0.017055852338671684, 0.014521168544888496, 0.002405213424935937, 0.010217517614364624, 0.006835163105279207, 0.030444404110312462, 0.4195799231529236, 0.006856197956949472, 0.01098709274083376, 0.00044689461356028914, 0.002688364125788212, 0.0013488751137629151, 0.0011925341095775366, 0.010072179138660431, 0.42001670598983765], [0.004602294880896807, 0.035371385514736176, 0.014008241705596447, 0.009971531108021736, 0.009580656886100769, 0.06832344830036163, 0.009846439585089684, 0.039506785571575165, 0.3995838761329651, 0.0028326997999101877, 0.002592699835076928, 0.0005638798465952277, 0.0008217107388190925, 0.0004992752801626921, 0.00022885753423906863, 0.0019354952964931726, 0.3997306227684021], [0.03437762334942818, 0.04071313515305519, 0.005630429834127426, 0.007909218780696392, 0.0022738506086170673, 0.0037646866403520107, 0.0008697047014720738, 0.01726190373301506, 0.3828907608985901, 0.09313038736581802, 0.01115424931049347, 0.0016766426851972938, 0.001661903690546751, 0.0006327586015686393, 0.0005437562358565629, 0.012841450050473213, 0.3826677203178406], [0.0118757588788867, 0.010547298938035965, 0.015713268890976906, 0.004203309305012226, 0.002388142514973879, 0.005080929026007652, 0.0007666688761673868, 0.007001087535172701, 0.4492567479610443, 0.008105170913040638, 0.010031886398792267, 0.003984170034527779, 0.0040039196610450745, 0.0033216525334864855, 0.004154632333666086, 0.010170423425734043, 0.44939473271369934], [0.00242200237698853, 0.0006884213071316481, 0.0010571640450507402, 0.0002763421507552266, 0.00018616033776197582, 0.0003920215822290629, 1.3083158592053223e-05, 0.0003109037643298507, 0.40929940342903137, 0.009260457940399647, 0.019178481772542, 0.02430614084005356, 0.016871890053153038, 0.0205436609685421, 0.009651831351220608, 0.07537394762039185, 0.41016823053359985], [0.004388017579913139, 0.002366981701925397, 0.03622645512223244, 0.0009531985269859433, 0.0002512405626475811, 0.0004244873416610062, 4.269340570317581e-05, 0.0003534597344696522, 0.37502631545066833, 0.007312152534723282, 0.030159318819642067, 0.009330742061138153, 0.011044470593333244, 0.02573368512094021, 0.034838516265153885, 0.08544372022151947, 0.37610459327697754], [0.0009547278750687838, 0.0002353080635657534, 0.0006676624761894345, 6.409281195374206e-05, 0.00014516402734443545, 0.0009299312951043248, 6.701538222841918e-05, 0.00026237909332849085, 0.35412874817848206, 0.00664070388302207, 0.007738995831459761, 0.034573283046483994, 0.0982760339975357, 0.044279731810092926, 0.0750938430428505, 0.020250245928764343, 0.3556921184062958], [0.002919350517913699, 0.00014477870718110353, 0.0002495268709026277, 9.211659198626876e-05, 8.105031156446785e-05, 0.00046425312757492065, 3.639682472567074e-05, 0.0002960775454994291, 0.266645222902298, 0.0034487799275666475, 0.007037733681499958, 0.03626633808016777, 0.07264333218336105, 0.16536551713943481, 0.14654715359210968, 0.030192406848073006, 0.267569899559021], [0.0057327416725456715, 0.00039516514516435564, 0.0010263306321576238, 9.072724787984043e-05, 9.439009591005743e-05, 8.05477102403529e-05, 2.011364631471224e-05, 0.0004609979805536568, 0.3992825448513031, 0.0013898939359933138, 0.010485448874533176, 0.00984457228332758, 0.07212023437023163, 0.02815556339919567, 0.05751651152968407, 0.012880034744739532, 0.400424063205719], [0.009527510963380337, 0.0007869577966630459, 0.002823961665853858, 0.00030767550924792886, 0.00032794426078908145, 0.00022554697352461517, 4.873703437624499e-05, 0.0006668545538559556, 0.36844947934150696, 0.0012574668508023024, 0.021574070677161217, 0.022150013595819473, 0.11362261325120926, 0.04010310024023056, 0.026650484651327133, 0.021952174603939056, 0.36952540278434753], [0.0030902656726539135, 0.0009195098537020385, 0.002098046476021409, 0.00016877925372682512, 0.0001234145020134747, 0.00043374343658797443, 4.0177517803385854e-05, 0.0005335178575478494, 0.40975987911224365, 0.003098654095083475, 0.0851627066731453, 0.007376433815807104, 0.024546731263399124, 0.015984579920768738, 0.014852664433419704, 0.020247885957360268, 0.41156280040740967], [0.011872228235006332, 0.01052071899175644, 0.015665380284190178, 0.004193538334220648, 0.002381826750934124, 0.005071197170764208, 0.0007656891830265522, 0.006987031549215317, 0.44931381940841675, 0.008105535060167313, 0.010029582306742668, 0.00398656539618969, 0.004004540853202343, 0.0033217878080904484, 0.004157494753599167, 0.010170815512537956, 0.4494522511959076]], [[0.008913540281355381, 0.0006829314515925944, 0.0031281630508601665, 0.00030009192414581776, 0.00035089219454675913, 0.001759113627485931, 0.00012913417594972998, 0.002070555230602622, 0.12233410030603409, 0.13772368431091309, 0.20343159139156342, 0.055641625076532364, 0.0701574981212616, 0.09910611808300018, 0.10137367993593216, 0.07043067365884781, 0.12246666848659515], [0.02751176618039608, 0.024159034714102745, 0.023592820391058922, 0.1445832997560501, 0.09750015288591385, 0.202224999666214, 0.07653571665287018, 0.25673431158065796, 0.0577586367726326, 0.009779456071555614, 0.003952621482312679, 0.0024773424956947565, 0.005470562726259232, 0.0023116853553801775, 0.0025955087039619684, 0.0050215646624565125, 0.05779048427939415], [0.024475907906889915, 0.04074174165725708, 0.0396224707365036, 0.03859742730855942, 0.03222135081887245, 0.028866969048976898, 0.018479159101843834, 0.07570339739322662, 0.32481980323791504, 0.004880881868302822, 0.024638567119836807, 0.0037614803295582533, 0.007175808772444725, 0.0018003600416705012, 0.00440263282507658, 0.004995821043848991, 0.3248162269592285], [0.008884324692189693, 0.022125890478491783, 0.009825317189097404, 0.0071654715575277805, 0.09772569686174393, 0.27357006072998047, 0.15740445256233215, 0.07360731810331345, 0.17294158041477203, 0.0015457518165931106, 0.0008029846358112991, 0.0005358491907827556, 0.00021044538880232722, 0.0002988128107972443, 0.0002829236618708819, 0.00037414743565022945, 0.1726989895105362], [0.018512140959501266, 0.017526833340525627, 0.024002408608794212, 0.008231657557189465, 0.023621628060936928, 0.05641362816095352, 0.013824665918946266, 0.046111639589071274, 0.3905484080314636, 0.006062052678316832, 0.0015031128423288465, 0.0006979292957112193, 0.000531914469320327, 0.0007963349926285446, 0.0006721874815411866, 0.0009894188260659575, 0.3899540305137634], [0.01988168992102146, 0.011795835569500923, 0.01707560196518898, 0.01203068532049656, 0.014804729260504246, 0.021116729825735092, 0.008912310935556889, 0.042481083422899246, 0.4177875220775604, 0.008459176868200302, 0.001814587158150971, 0.0017486230935901403, 0.0016087424010038376, 0.0004658525576815009, 0.00046563157229684293, 0.0017203915631398559, 0.41783076524734497], [0.018928244709968567, 0.030062800273299217, 0.009632110595703125, 0.012683519162237644, 0.03175576776266098, 0.050014324486255646, 0.02692190743982792, 0.14257201552391052, 0.3364681899547577, 0.002494734711945057, 0.0014001242816448212, 0.00022686805459670722, 0.00018708065908867866, 6.835155363660306e-05, 0.0001292120141442865, 0.0005419838707894087, 0.3359127342700958], [0.020654411986470222, 0.009708467870950699, 0.01484447717666626, 0.005635581444948912, 0.005327051039785147, 0.0017440877854824066, 0.0007545474800281227, 0.0054176882840693, 0.4599474370479584, 0.0015233741141855717, 0.004458594601601362, 0.002075082855299115, 0.001972536789253354, 0.0014049700694158673, 0.0015179242473095655, 0.002926965244114399, 0.46008673310279846], [0.011228637769818306, 0.005883045960217714, 0.016290275380015373, 0.006677302066236734, 0.0024471115320920944, 0.00513409823179245, 0.0019039304461330175, 0.005942048039287329, 0.43917980790138245, 0.008366926573216915, 0.014395671896636486, 0.00581879448145628, 0.008429646492004395, 0.007404949050396681, 0.006506940815597773, 0.014795057475566864, 0.43959569931030273], [0.00846025999635458, 0.0019214152125641704, 0.0017327957320958376, 0.00046790350461378694, 0.00016445685469079763, 0.0004813381237909198, 1.4800290955463424e-05, 0.001295703579671681, 0.27926596999168396, 0.05723419040441513, 0.05265139788389206, 0.012116220779716969, 0.03297659382224083, 0.03268353268504143, 0.052441976964473724, 0.18608899414539337, 0.28000253438949585], [0.005607645493000746, 0.000500095309689641, 0.0006661454099230468, 0.00041022986988537014, 0.00019211370090488344, 0.0011753732105717063, 0.00010459329496370628, 0.0005150376819074154, 0.10101576894521713, 0.03585054352879524, 0.04353448003530502, 0.060530513525009155, 0.20973624289035797, 0.07495477050542831, 0.1386769711971283, 0.22527427971363068, 0.10125516355037689], [0.0031953253783285618, 0.0001699210552033037, 0.0005718045867979527, 5.319255433278158e-05, 0.00010029536497313529, 0.00025709191686473787, 1.1546352652658243e-05, 0.0005885058199055493, 0.29203155636787415, 0.03565583750605583, 0.014455920085310936, 0.015718411654233932, 0.0232790969312191, 0.07432617247104645, 0.10934000462293625, 0.13751719892024994, 0.292728066444397], [0.006303438451141119, 0.0004736166447401047, 0.0006107649533078074, 0.000232794918701984, 0.00021594610007014126, 0.0007799601880833507, 3.803833169513382e-05, 0.0018736189231276512, 0.26635947823524475, 0.054509490728378296, 0.024582084268331528, 0.00883593037724495, 0.06305274367332458, 0.08420052379369736, 0.14148066937923431, 0.07952277362346649, 0.2669280767440796], [0.0038487864658236504, 0.00015592215640936047, 0.00042468926403671503, 3.970479156123474e-05, 8.894040365703404e-05, 0.00016048956604208797, 8.422052815149073e-06, 0.00034785515163093805, 0.2874422073364258, 0.024063101038336754, 0.010985521599650383, 0.014809911139309406, 0.27835899591445923, 0.03128990903496742, 0.04255788028240204, 0.017614761367440224, 0.28780290484428406], [0.004141564015299082, 0.00011860784434247762, 0.0004029510309919715, 4.821887705475092e-05, 0.00014665107300970703, 0.0002101055288221687, 1.4009598999109585e-05, 0.00042269821278750896, 0.3891921639442444, 0.020305251702666283, 0.006058109924197197, 0.01306024007499218, 0.13343219459056854, 0.014593067578971386, 0.014638426713645458, 0.013438066467642784, 0.3897777497768402], [0.0035496836062520742, 0.00017536882660351694, 0.00031609530560672283, 0.00013904485967941582, 0.0001091164376703091, 0.00018140740576200187, 2.416700590401888e-05, 0.0004794143605977297, 0.2794491946697235, 0.011725141666829586, 0.026393679901957512, 0.05920784920454025, 0.07417434453964233, 0.09884730726480484, 0.14340732991695404, 0.021796440705657005, 0.2800244987010956], [0.011221363209187984, 0.0058611370623111725, 0.016246208921074867, 0.0066537074744701385, 0.0024400674737989902, 0.005121526774019003, 0.0018985304050147533, 0.005926494486629963, 0.4392649233341217, 0.008359838277101517, 0.014372322708368301, 0.005819439422339201, 0.0084309671074152, 0.007405674550682306, 0.006508531514555216, 0.014788822270929813, 0.439680278301239]], [[0.0306701622903347, 0.1292310506105423, 0.10861409455537796, 0.08514351397752762, 0.10937508940696716, 0.0569685660302639, 0.05747164413332939, 0.021217547357082367, 0.11061517149209976, 0.016052134335041046, 0.06287457793951035, 0.025008130818605423, 0.004577512387186289, 0.007040305994451046, 0.005467359907925129, 0.05901488661766052, 0.11065822094678879], [0.03356469050049782, 0.21835041046142578, 0.02970985881984234, 0.03822793439030647, 0.02221178635954857, 0.018977049738168716, 0.010037008672952652, 0.08172161877155304, 0.17314298450946808, 0.019709866493940353, 0.09214501082897186, 0.004933816846460104, 0.0051571037620306015, 0.003140565473586321, 0.0043029142543673515, 0.07132761925458908, 0.17333978414535522], [0.0723181962966919, 0.036544524133205414, 0.02399425394833088, 0.01596604473888874, 0.016080062836408615, 0.01109517365694046, 0.007149949669837952, 0.08885099738836288, 0.3059309720993042, 0.004997994750738144, 0.035782746970653534, 0.005109894089400768, 0.010521999560296535, 0.009112564846873283, 0.013246867805719376, 0.03709539398550987, 0.30620241165161133], [0.01740470714867115, 0.059176620095968246, 0.021376149728894234, 0.03125555440783501, 0.014173476956784725, 0.05698207765817642, 0.009542708285152912, 0.02592284232378006, 0.2579106390476227, 0.014003976248204708, 0.08979861438274384, 0.031223073601722717, 0.006575165782123804, 0.0029036386404186487, 0.006337929517030716, 0.0970286875963211, 0.25838419795036316], [0.02452060393989086, 0.01349394116550684, 0.007710483390837908, 0.0056761871092021465, 0.01003273669630289, 0.013025617226958275, 0.004285040311515331, 0.01440286822617054, 0.42611417174339294, 0.004331996664404869, 0.02761840634047985, 0.006583582144230604, 0.002759317634627223, 0.000283123372355476, 0.0004700732242781669, 0.012028670869767666, 0.426663339138031], [0.011455507948994637, 0.007416325155645609, 0.006022854708135128, 0.008872303180396557, 0.013097690418362617, 0.012978608720004559, 0.006898950319737196, 0.014621845446527004, 0.43546822667121887, 0.0021214657463133335, 0.012420115992426872, 0.011270076967775822, 0.003285323502495885, 0.0017255217535421252, 0.0019435553112998605, 0.014284607954323292, 0.4361169636249542], [0.018834713846445084, 0.027964124456048012, 0.005101025104522705, 0.010365412570536137, 0.02215101383626461, 0.009694105945527554, 0.01132423896342516, 0.015313981100916862, 0.40941616892814636, 0.003711278084665537, 0.020651908591389656, 0.0056063514202833176, 0.0012981811305508018, 0.0004608895687852055, 0.0007714182720519602, 0.02760343626141548, 0.40973177552223206], [0.030829759314656258, 0.0648462176322937, 0.023091088980436325, 0.04657803475856781, 0.0401473343372345, 0.024723216891288757, 0.01378705631941557, 0.2512493431568146, 0.08023130148649216, 0.0229116789996624, 0.031449105590581894, 0.010500955395400524, 0.004389235749840736, 0.0022131619043648243, 0.0034238931257277727, 0.2693057060241699, 0.08032295852899551], [0.005665841978043318, 0.0019548346754163504, 0.003917010501027107, 0.0008303453214466572, 0.0008599025895819068, 0.0011831223964691162, 0.00021934133837930858, 0.004241488873958588, 0.48433801531791687, 0.0005546637694351375, 0.005041162483394146, 0.0005469773896038532, 0.00041578782838769257, 0.0009226111578755081, 0.0005357841146178544, 0.004128101281821728, 0.4846450686454773], [0.007197539787739515, 0.23467621207237244, 0.013682407326996326, 0.015267045237123966, 0.003186084097251296, 0.021842489019036293, 0.012569568119943142, 0.027540503069758415, 0.3220365345478058, 0.0021230594720691442, 0.0018589351093396544, 0.0028974744491279125, 0.000833368394523859, 0.0013429964892566204, 0.0028887407388538122, 0.007370350416749716, 0.32268673181533813], [0.0019134434405714273, 0.8684930205345154, 0.013678018003702164, 0.008373302407562733, 0.000564310816116631, 0.001247801585122943, 0.00232503330335021, 0.015443975105881691, 0.040955789387226105, 0.0006007515476085246, 0.0022852441761642694, 9.639908967074007e-05, 5.9586280258372426e-05, 0.00016088646952994168, 0.0003261975944042206, 0.0024946739431470633, 0.04098157584667206], [0.013910728506743908, 0.042021580040454865, 0.016952531412243843, 0.03136570006608963, 0.014598763547837734, 0.1592356562614441, 0.015181680209934711, 0.022869009524583817, 0.31176286935806274, 0.004690026864409447, 0.005013104062527418, 0.012045932933688164, 0.007709654048085213, 0.0047163693234324455, 0.005965595133602619, 0.019548481330275536, 0.31241244077682495], [0.01881362870335579, 0.11324555426836014, 0.04581518471240997, 0.006511281244456768, 0.0021469241473823786, 0.018125640228390694, 0.004843913950026035, 0.032868269830942154, 0.3230080008506775, 0.0020155785605311394, 0.010078292340040207, 0.002984242979437113, 0.009081819094717503, 0.03491366282105446, 0.04017724469304085, 0.011806333437561989, 0.323564350605011], [0.022907566279172897, 0.06779477745294571, 0.029140233993530273, 0.003092866623774171, 0.0005785891553387046, 0.005700143054127693, 0.0015060430159792304, 0.031208284199237823, 0.3441377282142639, 0.0019301283173263073, 0.007523950655013323, 0.00226850644685328, 0.005685861688107252, 0.051253870129585266, 0.06688147783279419, 0.013709302060306072, 0.34468066692352295], [0.03022623248398304, 0.06777824461460114, 0.04176308959722519, 0.008315070532262325, 0.0011556034442037344, 0.014348349533975124, 0.004499042872339487, 0.04966636374592781, 0.33269402384757996, 0.0022566067054867744, 0.006280732341110706, 0.0025585852563381195, 0.005187130067497492, 0.03270724043250084, 0.04982475936412811, 0.017508534714579582, 0.3332303464412689], [0.006955794524401426, 0.17732207477092743, 0.01780001074075699, 0.0211767740547657, 0.0011854704935103655, 0.02470485307276249, 0.004915482830256224, 0.06268854439258575, 0.2819146513938904, 0.005918231792747974, 0.011893280781805515, 0.010618392378091812, 0.0022999285720288754, 0.008420434780418873, 0.015374165959656239, 0.06433295458555222, 0.28247886896133423], [0.005663195159286261, 0.00195591920055449, 0.0039177704602479935, 0.0008304807706736028, 0.0008589510107412934, 0.0011833644239231944, 0.00021922329324297607, 0.004245697520673275, 0.4843338429927826, 0.0005552212824113667, 0.005040270276367664, 0.00054716388694942, 0.0004161388787906617, 0.0009227770497091115, 0.0005362536758184433, 0.004131972789764404, 0.48464182019233704]], [[0.014101995155215263, 0.0031319938134402037, 0.013989981263875961, 0.0014078596141189337, 0.0012245603138580918, 0.0025030383840203285, 0.0005961312563158572, 0.006321529857814312, 0.42616912722587585, 0.03948110714554787, 0.016117794439196587, 0.00408739922568202, 0.0059061478823423386, 0.00850494671612978, 0.009124873206019402, 0.0209654588252306, 0.42636609077453613], [0.00667915353551507, 0.07592984288930893, 0.13586674630641937, 0.016810910776257515, 0.005916202906519175, 0.020199300721287727, 0.005483024753630161, 0.0344231016933918, 0.3477858603000641, 0.001067489036358893, 0.0010366725036874413, 0.0001745819899952039, 0.00017410116561222821, 0.00014942655980121344, 0.00018256505427416414, 0.0005827136337757111, 0.3475383520126343], [0.0013855311553925276, 0.008228878490626812, 0.01238162536174059, 0.0027839727699756622, 0.0006923131295479834, 0.0024311773013323545, 0.0007201561238616705, 0.02193097025156021, 0.47435352206230164, 0.00041124087874777615, 0.00019700895063579082, 4.164076381130144e-05, 4.4116928620496765e-05, 4.400230318424292e-05, 8.783100929576904e-05, 0.0006969596142880619, 0.4735690653324127], [0.002417391398921609, 0.3900287449359894, 0.36608269810676575, 0.010427892208099365, 0.003142738016322255, 0.007896148599684238, 0.006289131008088589, 0.018262505531311035, 0.0960964635014534, 0.0015240313950926065, 0.0008374750032089651, 7.17956354492344e-05, 8.443900151178241e-05, 0.00012302333198022097, 0.00021348362497519702, 0.0005965592572465539, 0.09590543806552887], [0.0015184064395725727, 0.22997330129146576, 0.18070445954799652, 0.10410165041685104, 0.008204692974686623, 0.010274489410221577, 0.006799566559493542, 0.014073384925723076, 0.22097383439540863, 0.0013285573804751039, 0.0005724547663703561, 0.00010126011329703033, 9.585007501300424e-05, 0.00011687017831718549, 0.00019451510161161423, 0.0004434861766640097, 0.22052322328090668], [0.005328285042196512, 0.2500512897968292, 0.19683198630809784, 0.07495176047086716, 0.00790240429341793, 0.016132958233356476, 0.007773575372993946, 0.019797131419181824, 0.20896711945533752, 0.0012602112255990505, 0.0013638047967106104, 7.213281787699088e-05, 0.00010111636220244691, 7.543480751337484e-05, 0.00015952668036334217, 0.0006899815052747726, 0.20854128897190094], [0.002569479402154684, 0.36234259605407715, 0.21984915435314178, 0.14997535943984985, 0.026156507432460785, 0.019880864769220352, 0.01249348558485508, 0.00593593530356884, 0.1001373901963234, 0.0001871999556897208, 0.0003869208157993853, 2.979900273203384e-05, 1.823881575546693e-05, 1.1048969099647366e-05, 2.4806040528346784e-05, 0.00010531870066188276, 0.09989587962627411], [0.004533677361905575, 0.22503994405269623, 0.26184529066085815, 0.10608796030282974, 0.0166179146617651, 0.04023632034659386, 0.020721064880490303, 0.02675922028720379, 0.14761383831501007, 0.0014124589506536722, 0.00039877681410871446, 7.560791709693149e-05, 0.00023732869885861874, 0.00015420631098095328, 0.00017564419249538332, 0.0006804355653002858, 0.1474103033542633], [0.007221407722681761, 0.006796389352530241, 0.010733025148510933, 0.007969130761921406, 0.007599503733217716, 0.014522723853588104, 0.002767052734270692, 0.00809000339359045, 0.4498912990093231, 0.006547246593981981, 0.004517809022217989, 0.0035991850309073925, 0.003991721197962761, 0.0026475691702216864, 0.0033872632775455713, 0.009543891996145248, 0.4501747786998749], [0.3512765169143677, 0.014916264452040195, 0.021187733858823776, 0.0066393110901117325, 0.0036652141716331244, 0.011030099354684353, 0.0008259069290943444, 0.0042607784271240234, 0.23751099407672882, 0.039788030087947845, 0.02307143807411194, 0.011269490234553814, 0.014527969062328339, 0.007612792309373617, 0.007331886328756809, 0.00760337058454752, 0.23748233914375305], [0.39027178287506104, 0.05514398217201233, 0.09285689145326614, 0.0015682718949392438, 0.0006360787665471435, 0.0021107911597937346, 0.00022214429918676615, 0.005069678649306297, 0.19254492223262787, 0.015209605917334557, 0.0291146170347929, 0.00305691035464406, 0.001490374794229865, 0.002215137705206871, 0.0020979573018848896, 0.01397025492042303, 0.19242073595523834], [0.04371083527803421, 0.004963824525475502, 0.00699589354917407, 0.0007851978880353272, 0.00011472513142507523, 0.0006069503724575043, 9.038080315804109e-05, 0.007394604850560427, 0.33151960372924805, 0.04085860401391983, 0.1715882122516632, 0.0026457186322659254, 0.0058319298550486565, 0.007919266819953918, 0.015167702920734882, 0.02824433520436287, 0.3315621316432953], [0.046981312334537506, 0.004018538165837526, 0.009274945594370365, 0.0004495770263019949, 0.00029229841311462224, 0.0009502055472694337, 8.165868348442018e-05, 0.002550405915826559, 0.27733877301216125, 0.03745574131608009, 0.17546671628952026, 0.016825569793581963, 0.05789818987250328, 0.015623614192008972, 0.020805571228265762, 0.056364353746175766, 0.2776225805282593], [0.04903415963053703, 0.0016058763721957803, 0.002727618906646967, 0.00013428492820821702, 8.316965977428481e-05, 0.00015778667875565588, 2.465477882651612e-05, 0.0011611670488491654, 0.31936269998550415, 0.030109889805316925, 0.12831424176692963, 0.009387314319610596, 0.07172176986932755, 0.010500491596758366, 0.01019746158272028, 0.04580685868859291, 0.3196706175804138], [0.04805561155080795, 0.001573901972733438, 0.00275638815946877, 0.00014177306729834527, 8.820529910735786e-05, 0.00014219914737623185, 2.893396776926238e-05, 0.0013406769139692187, 0.2199636995792389, 0.053565435111522675, 0.2178190052509308, 0.014501224271953106, 0.13189467787742615, 0.0197797492146492, 0.01715659350156784, 0.05102687329053879, 0.22016507387161255], [0.02694329060614109, 0.0038517338689416647, 0.005755877587944269, 0.0005134200328029692, 0.00020089467579964548, 0.0008437603246420622, 7.693852967349812e-05, 0.0016048187389969826, 0.05389372631907463, 0.1562335342168808, 0.5041548609733582, 0.0427958220243454, 0.0445295125246048, 0.0338008739054203, 0.04015284404158592, 0.03066342882812023, 0.05398472398519516], [0.0072292122058570385, 0.006797793321311474, 0.010727515444159508, 0.007966537028551102, 0.0075949616730213165, 0.014515780843794346, 0.002764822682365775, 0.008085415698587894, 0.449893057346344, 0.006554997526109219, 0.00451909564435482, 0.003602497512474656, 0.003991097677499056, 0.00264632236212492, 0.0033866448793560266, 0.009547917172312737, 0.45017632842063904]], [[0.008094942197203636, 0.05347401648759842, 0.06868884712457657, 0.022479234263300896, 0.007062177639454603, 0.07778959721326828, 0.02728486992418766, 0.31556832790374756, 0.18579818308353424, 0.003284105332568288, 0.005533246323466301, 0.000588096387218684, 0.002263931091874838, 0.0011695821303874254, 0.007385763805359602, 0.027563799172639847, 0.18597130477428436], [0.032820768654346466, 0.015053312294185162, 0.006902780849486589, 0.12183355540037155, 0.0030391982290893793, 0.009068361483514309, 0.004252078011631966, 0.09053013473749161, 0.3315392732620239, 0.008241813629865646, 0.005077504087239504, 0.0014919729437679052, 0.0005980879068374634, 0.0005341222858987749, 0.002417521784082055, 0.035039082169532776, 0.3315604627132416], [0.016076579689979553, 0.17232777178287506, 0.026452945545315742, 0.014585222117602825, 0.00563916377723217, 0.016264697536826134, 0.0018672752194106579, 0.013093174435198307, 0.35499516129493713, 0.0045522586442530155, 0.010172532871365547, 0.0009862747974693775, 0.0018992063123732805, 0.0012225777609273791, 0.001290588523261249, 0.0036098496057093143, 0.3549647033214569], [0.02365567535161972, 0.027602864429354668, 0.04038480296730995, 0.02793971821665764, 0.015309684909880161, 0.04333667829632759, 0.17577026784420013, 0.01426380779594183, 0.2972904443740845, 0.003046703524887562, 0.008387365378439426, 0.0007170605240389705, 0.0073933349922299385, 0.0005713555146940053, 0.004207481164485216, 0.012904184870421886, 0.29721856117248535], [0.00926718395203352, 0.0078605767339468, 0.0025192447938024998, 0.12503410875797272, 0.03325778618454933, 0.003977193962782621, 0.00436778087168932, 0.003456494305282831, 0.4004097282886505, 0.0009426865144632757, 0.002076572272926569, 0.0046088807284832, 0.00018185916997026652, 6.9033162617415655e-06, 9.313737973570824e-05, 0.0015832779463380575, 0.400356650352478], [0.011854424141347408, 0.010262026451528072, 0.0023927909787744284, 0.01831168681383133, 0.06493142992258072, 0.02948126196861267, 0.0030606219079345465, 0.006773980334401131, 0.41928762197494507, 0.001949335797689855, 0.0026379567570984364, 0.003050676081329584, 0.0023753070272505283, 0.0002932828792836517, 0.00032652748632244766, 0.0028833970427513123, 0.4201277792453766], [0.0006215369794517756, 0.0013187429867684841, 0.0010648934403434396, 0.001685951603576541, 0.0028078299947082996, 0.329177588224411, 0.002374198054894805, 0.0010156488278880715, 0.328119158744812, 0.0006956520956009626, 0.00028857923462055624, 0.0004372325201984495, 0.0003889017680194229, 0.0004590452299453318, 0.0007199443061836064, 0.00028731179190799594, 0.32853779196739197], [0.010330775752663612, 0.003101440379396081, 0.003557569347321987, 0.003753412514925003, 0.0019682685378938913, 0.03873402625322342, 0.032005567103624344, 0.012639900669455528, 0.43935567140579224, 0.0008920336258597672, 0.0014183634193614125, 0.00034004414919763803, 0.001212591421790421, 0.0005576686235144734, 0.006215730682015419, 0.004421238787472248, 0.43949562311172485], [0.003451764350757003, 0.004260295536369085, 0.011713149026036263, 0.001808184664696455, 0.0011895919451490045, 0.019062334671616554, 0.0011603202437981963, 0.007481859065592289, 0.4696280062198639, 0.00047569835442118347, 0.001369165489450097, 0.0004413688729982823, 0.0009748844895511866, 0.001188384834676981, 0.0030356338247656822, 0.0022334882523864508, 0.47052595019340515], [0.02605816349387169, 0.003016142174601555, 0.002690139226615429, 0.007562269456684589, 0.002303873421624303, 0.0036895438097417355, 0.0018773652845993638, 0.07105898857116699, 0.40488743782043457, 0.0035810673143714666, 0.009799979627132416, 0.0013905256055295467, 0.0010200737742707133, 0.0007637428352609277, 0.002712862566113472, 0.05201295018196106, 0.4055749475955963], [0.0035913274623453617, 0.0010720061836764216, 0.0010018488392233849, 0.0033355047926306725, 0.0001323146279901266, 0.003134104423224926, 0.0002547465555835515, 0.0032371242996305227, 0.3600497543811798, 0.03255592659115791, 0.00844657327979803, 0.0013226051814854145, 0.0013993188040331006, 0.0025083678774535656, 0.028355672955513, 0.18871331214904785, 0.3608894348144531], [0.0070548816584050655, 0.0023712152615189552, 0.001550803193822503, 0.003921508323401213, 0.006832292303442955, 0.0034315071534365416, 0.00039159043808467686, 0.002478585345670581, 0.44345492124557495, 0.0061225262470543385, 0.01490763295441866, 0.023628395050764084, 0.01964668557047844, 0.0012203985825181007, 0.003153120167553425, 0.015161688439548016, 0.44467225670814514], [0.0007552026654593647, 0.0005630005616694689, 0.0010447625536471605, 0.0016857271548360586, 0.0006955614662729204, 0.0016771393129602075, 2.3739517928333953e-05, 0.0006778514361940324, 0.43621811270713806, 0.0028379284776747227, 0.00440567173063755, 0.10615360736846924, 0.0010189628228545189, 0.002470681443810463, 0.0014177076518535614, 0.0011358860647305846, 0.4372183084487915], [0.0048145423643291, 0.0006659235223196447, 0.002118205651640892, 0.0002564437163528055, 0.0005792009178549051, 0.0019248262979090214, 7.794657722115517e-05, 0.001564805512316525, 0.42184388637542725, 0.002308264374732971, 0.003088922705501318, 0.0025350600481033325, 0.09524479508399963, 0.012615809217095375, 0.02285119704902172, 0.004467251244932413, 0.42304283380508423], [0.0017860936932265759, 0.0003986872034147382, 0.0010466970270499587, 0.00010602938709780574, 0.00027892348589375615, 0.004014311823993921, 6.816748646087945e-05, 0.001171948853880167, 0.37222161889076233, 0.0019134641624987125, 0.0028039757162332535, 0.0013835164718329906, 0.051162686198949814, 0.15810172259807587, 0.028686050325632095, 0.0017096925294026732, 0.3731464147567749], [0.0012392906937748194, 0.000447441911092028, 0.0004849039833061397, 0.0001046251054503955, 2.6767898816615343e-05, 0.002990967594087124, 0.0007074871100485325, 0.0026994289364665747, 0.33472374081611633, 0.0013471560087054968, 0.0016055441228672862, 7.17670627636835e-05, 0.010808278806507587, 0.0245121531188488, 0.25391072034835815, 0.02891133353114128, 0.33540835976600647], [0.0034567664843052626, 0.004264825955033302, 0.011721509508788586, 0.0018094680272042751, 0.0011919555254280567, 0.01906663365662098, 0.001162043772637844, 0.007479685824364424, 0.4695979952812195, 0.0004765710618812591, 0.0013745477190241218, 0.00044156648800708354, 0.0009788194438442588, 0.00119111523963511, 0.003048097714781761, 0.0022417947184294462, 0.4704965353012085]], [[0.011494450271129608, 0.1056753396987915, 0.14259448647499084, 0.01466490887105465, 0.003258237149566412, 0.01550604309886694, 0.003145223017781973, 0.02096683345735073, 0.13297244906425476, 0.05743110552430153, 0.03015841916203499, 0.0389116033911705, 0.1059289276599884, 0.09665253758430481, 0.0629948079586029, 0.024561140686273575, 0.1330835223197937], [0.2518675923347473, 0.12611256539821625, 0.0707661584019661, 0.025797918438911438, 0.011234050616621971, 0.016703082248568535, 0.0018467145273461938, 0.036212287843227386, 0.19849352538585663, 0.00791910570114851, 0.026128726080060005, 0.00259676412679255, 0.008003918454051018, 0.004369635134935379, 0.0027292920276522636, 0.010857478715479374, 0.1983613520860672], [0.14094854891300201, 0.020768947899341583, 0.08483533561229706, 0.015197689644992352, 0.011387383565306664, 0.015814412385225296, 0.0017038810765370727, 0.01713261753320694, 0.3235255181789398, 0.004637308418750763, 0.0087659303098917, 0.004394723568111658, 0.0051969848573207855, 0.007367085199803114, 0.00740556325763464, 0.007463669404387474, 0.32345446944236755], [0.14042551815509796, 0.05451280623674393, 0.04517815262079239, 0.11608359962701797, 0.017070801928639412, 0.03402253985404968, 0.00793897733092308, 0.040031250566244125, 0.23015020787715912, 0.013535000383853912, 0.022532662376761436, 0.010652712546288967, 0.0040230113081634045, 0.007804324850440025, 0.0044662002474069595, 0.021488994359970093, 0.230083167552948], [0.10517188906669617, 0.02593086287379265, 0.01791229471564293, 0.016029169782996178, 0.026955334469676018, 0.025387370958924294, 0.0053213778883218765, 0.02726718597114086, 0.35265544056892395, 0.003775682533159852, 0.01254457887262106, 0.014647881500422955, 0.005954829044640064, 0.0022444489877671003, 0.001237290445715189, 0.00422986876219511, 0.3527345657348633], [0.09310118108987808, 0.019886154681444168, 0.026790637522935867, 0.036002833396196365, 0.052248764783144, 0.0403936430811882, 0.010142670944333076, 0.03901827707886696, 0.28439417481422424, 0.009205828420817852, 0.022906597703695297, 0.037429023534059525, 0.01118883490562439, 0.012235239148139954, 0.009026508778333664, 0.011575348675251007, 0.2844543159008026], [0.17094743251800537, 0.03463995084166527, 0.022731846198439598, 0.03674470633268356, 0.030596012249588966, 0.05025780200958252, 0.028098659589886665, 0.087189219892025, 0.24808280169963837, 0.005561640486121178, 0.004467607941478491, 0.008465217426419258, 0.0059404075145721436, 0.0010698680998757482, 0.003112250939011574, 0.014009238220751286, 0.24808534979820251], [0.45542004704475403, 0.060510557144880295, 0.04547007009387016, 0.032123271375894547, 0.01229883637279272, 0.009476783685386181, 0.004891568794846535, 0.05004727095365524, 0.09917984902858734, 0.0872807651758194, 0.009856261312961578, 0.005068885162472725, 0.002886431524530053, 0.004178632982075214, 0.0037750352639704943, 0.01835758425295353, 0.09917805343866348], [0.01808297075331211, 0.016369227319955826, 0.022413259372115135, 0.009024355560541153, 0.0037517249584198, 0.012545007281005383, 0.0015387294115498662, 0.007615323644131422, 0.42495277523994446, 0.008896546438336372, 0.012218263000249863, 0.007445402443408966, 0.004232125822454691, 0.010823560878634453, 0.009586363099515438, 0.005522599443793297, 0.42498186230659485], [0.030904555693268776, 0.005233855452388525, 0.005232740193605423, 0.006245039869099855, 0.002885732799768448, 0.0033345373813062906, 0.00021746174024883658, 0.007539806887507439, 0.320516973733902, 0.03267636522650719, 0.06684144586324692, 0.041735198348760605, 0.044929832220077515, 0.04556313529610634, 0.030500568449497223, 0.03500097617506981, 0.32064172625541687], [0.16324588656425476, 0.0377468541264534, 0.02225053496658802, 0.006403243634849787, 0.0011054535862058401, 0.001307761762291193, 0.0001230977795785293, 0.004360295366495848, 0.19181936979293823, 0.043603502213954926, 0.18681085109710693, 0.01281976979225874, 0.04040856286883354, 0.039505716413259506, 0.027644475921988487, 0.029005667194724083, 0.1918388158082962], [0.012014487758278847, 0.000724561745300889, 0.0014692392433062196, 0.001263819052837789, 0.0007874579168856144, 0.001040360308252275, 6.0711492551490664e-05, 0.0021830452606081963, 0.35230132937431335, 0.008910754695534706, 0.06052950769662857, 0.04283847659826279, 0.04604322835803032, 0.06615665555000305, 0.03554577752947807, 0.015453685075044632, 0.3526768088340759], [0.017622312530875206, 0.00336457509547472, 0.0030180918984115124, 0.0009081779280677438, 0.0008655793499201536, 0.0021538741420954466, 0.00027592063997872174, 0.0033041350543498993, 0.3011479079723358, 0.012592162936925888, 0.06187283992767334, 0.05160209536552429, 0.05003559961915016, 0.1102721244096756, 0.0592404305934906, 0.020149582996964455, 0.30157455801963806], [0.010676038451492786, 0.0018604862270876765, 0.00298200617544353, 0.0008635569247417152, 0.0008081691339612007, 0.0021948975045233965, 0.00016103209054563195, 0.003594336798414588, 0.2945776879787445, 0.01586633361876011, 0.039214838296175, 0.06276243925094604, 0.028571534901857376, 0.1381729394197464, 0.07774385064840317, 0.02470300905406475, 0.29524677991867065], [0.009150904603302479, 0.0011663652257993817, 0.004386876709759235, 0.0006134104332886636, 0.00037297443486750126, 0.0016677802195772529, 0.00034677787334658206, 0.004496353212743998, 0.26944512128829956, 0.009201380424201488, 0.026962686330080032, 0.04254379868507385, 0.03161583095788956, 0.1555890291929245, 0.13962318003177643, 0.03272422403097153, 0.2700932025909424], [0.037863388657569885, 0.006062420085072517, 0.007003359496593475, 0.011017350479960442, 0.0006147028179839253, 0.0012180289486423135, 0.0007586687570437789, 0.008524162694811821, 0.19980841875076294, 0.032465577125549316, 0.06660166382789612, 0.022771429270505905, 0.023665955290198326, 0.10512524098157883, 0.12625247240066528, 0.15012992918491364, 0.20011721551418304], [0.01809459738433361, 0.01634572632610798, 0.022411169484257698, 0.009017257951200008, 0.0037496103905141354, 0.01253217738121748, 0.0015377674717456102, 0.007608179003000259, 0.4249314069747925, 0.008907167240977287, 0.012235441245138645, 0.007458020932972431, 0.004240697715431452, 0.010841863229870796, 0.00960106123238802, 0.0055270423181355, 0.4249608814716339]]], [[[0.004501211456954479, 0.004373828414827585, 0.009144347161054611, 0.0027684099040925503, 0.0025746675673872232, 0.0037479326128959656, 0.0016625919379293919, 0.05154859274625778, 0.4297069311141968, 0.0048317089676856995, 0.013595408760011196, 0.006370397750288248, 0.0018691695295274258, 0.0030129116494208574, 0.013100193813443184, 0.017499612644314766, 0.42969197034835815], [0.005753401201218367, 0.01831168681383133, 0.02107814885675907, 0.004837893880903721, 0.0012881109723821282, 0.0030228637624531984, 0.0010686108144000173, 0.006525450851768255, 0.4655260443687439, 0.0009159205364994705, 0.004144875332713127, 0.0001511790615040809, 0.000310602190438658, 0.00045612110989168286, 0.0008489047759212554, 0.00035496437340043485, 0.46540531516075134], [0.011743827722966671, 0.03520679846405983, 0.10114102065563202, 0.006715947296470404, 0.0017529180040583014, 0.0069766356609761715, 0.004334402736276388, 0.003187409369274974, 0.36732563376426697, 0.002418787917122245, 0.0691961944103241, 0.0013466948876157403, 0.0027232251595705748, 0.0070961844176054, 0.00970343966037035, 0.001868013758212328, 0.36726292967796326], [0.009491744451224804, 0.034993384033441544, 0.006564239040017128, 0.014083215035498142, 0.02153053693473339, 0.01987009309232235, 0.009973045438528061, 0.02964828535914421, 0.42288005352020264, 0.002428583335131407, 0.002552286721765995, 0.000801368267275393, 0.00041510656592436135, 0.0004253717779647559, 0.0005719332257285714, 0.000939021585509181, 0.422831654548645], [0.005613191518932581, 0.011162448674440384, 0.0057660117745399475, 0.0162003505975008, 0.02793758362531662, 0.019466856494545937, 0.007780468091368675, 0.0032483902759850025, 0.4482859969139099, 0.0031867031939327717, 0.0006914493860676885, 0.0012891717487946153, 0.0005928617902100086, 8.706475637154654e-05, 0.00014216042472980917, 0.00036609344533644617, 0.44818317890167236], [0.0017418719362467527, 0.0061788493767380714, 0.0014878829242661595, 0.012656177394092083, 0.035600848495960236, 0.022403134033083916, 0.3129439949989319, 0.005552809685468674, 0.2972131371498108, 0.0012754567433148623, 0.0007351312087848783, 0.001718595391139388, 0.0012440882856026292, 0.00026829823036678135, 0.000921970116905868, 0.000867162540089339, 0.2971906065940857], [0.0008726202067919075, 0.006295676808804274, 0.0007531626033596694, 0.010366065427660942, 0.08210226148366928, 0.008303712122142315, 0.022033119574189186, 0.003135386621579528, 0.4322756826877594, 0.00041073214379139245, 0.0003198066842742264, 0.0004931416478939354, 0.00017012680473271757, 3.870506043313071e-05, 3.4888595109805465e-05, 0.00021492960513569415, 0.4321800470352173], [0.0022380982991307974, 0.00966330710798502, 0.008955548517405987, 0.009663127362728119, 0.047767650336027145, 0.0670449361205101, 0.04050540551543236, 0.01018594391644001, 0.39040666818618774, 0.003840586170554161, 0.0027971358504146338, 0.0054350970312952995, 0.002211071318015456, 0.002032962627708912, 0.003516688710078597, 0.0033688440453261137, 0.3903668224811554], [0.007743512745946646, 0.009111804887652397, 0.012172924354672432, 0.007813864387571812, 0.005727047566324472, 0.007207770366221666, 0.002514919266104698, 0.012152468785643578, 0.4359882175922394, 0.009005377069115639, 0.011797516606748104, 0.006628283765166998, 0.011358375661075115, 0.005317809525877237, 0.008896240964531898, 0.010583445429801941, 0.43598031997680664], [0.012588928453624249, 0.0013544835383072495, 0.0015553359407931566, 0.0020706872455775738, 0.002199663547798991, 0.002492997096851468, 0.0010217223316431046, 0.05034833028912544, 0.44348299503326416, 0.015470292419195175, 0.0027092820964753628, 0.003907528705894947, 0.0012801098637282848, 0.0003190620627719909, 0.0016870779218152165, 0.014010925777256489, 0.4435005486011505], [0.007804046850651503, 0.004072785377502441, 0.008133047260344028, 0.0004669491318054497, 0.0002093572256853804, 0.002058142563328147, 0.0003444065514486283, 0.004300117492675781, 0.4514681100845337, 0.0065030502155423164, 0.03084670566022396, 0.0024440872948616743, 0.0018245814135298133, 0.010384547524154186, 0.012381423264741898, 0.005348686594516039, 0.4514099955558777], [0.003393959952518344, 0.0005457264487631619, 0.0009249283466488123, 0.00021497557463590056, 0.0008176355040632188, 0.001818253193050623, 0.0004902033833786845, 0.0032263316679745913, 0.4439389407634735, 0.03419370576739311, 0.005556849297136068, 0.007802516687661409, 0.036292534321546555, 0.0034274854697287083, 0.004506535362452269, 0.008955223485827446, 0.44389426708221436], [0.0018320564413443208, 0.0003716461651492864, 0.000324055552482605, 0.00014362945512402803, 0.00016216984658967704, 0.000514940416906029, 4.355606506578624e-05, 0.005368218291550875, 0.46559807658195496, 0.0025404260959476233, 0.004732829984277487, 0.003940280061215162, 0.011875110678374767, 0.010931579396128654, 0.012412017211318016, 0.01364436186850071, 0.4655649960041046], [0.0014850726583972573, 0.00011802715744124725, 0.0008217638824135065, 0.00012065221380908042, 4.093854659004137e-05, 0.0005166061455383897, 0.00015953266120050102, 0.0008084694272838533, 0.37677836418151855, 0.0021748675499111414, 0.0051635028794407845, 0.002537112683057785, 0.026357294991612434, 0.028110623359680176, 0.169892355799675, 0.008167466148734093, 0.3767472803592682], [0.003294230904430151, 0.00033279674244113266, 0.0007408987148664892, 0.000442603079136461, 0.00019620837701950222, 0.0004491563013289124, 0.0001495390315540135, 0.0019639015663415194, 0.41839131712913513, 0.003579656360670924, 0.010000142268836498, 0.008302449248731136, 0.023938611149787903, 0.03047921136021614, 0.046471431851387024, 0.032934267073869705, 0.4183334708213806], [0.006158680655062199, 0.00310391653329134, 0.0015586575027555227, 0.0006172744906507432, 0.0008120969287119806, 0.0013164085103198886, 0.0003573308349587023, 0.00891830213367939, 0.45797470211982727, 0.011699290946125984, 0.016948793083429337, 0.004730531945824623, 0.004524250514805317, 0.007554435636848211, 0.008959400467574596, 0.0068288021720945835, 0.4579371511936188], [0.007743419613689184, 0.009110390208661556, 0.012174246832728386, 0.007811848074197769, 0.005725608207285404, 0.007207364309579134, 0.0025142175145447254, 0.012147991918027401, 0.4359967112541199, 0.009005923755466938, 0.011797298677265644, 0.0066274902783334255, 0.011356879957020283, 0.005317707546055317, 0.008894514292478561, 0.010579385794699192, 0.43598902225494385]], [[0.05500565841794014, 0.07907280325889587, 0.14519888162612915, 0.05313940346240997, 0.027378901839256287, 0.06464529037475586, 0.023832106962800026, 0.11844321340322495, 0.04383838176727295, 0.1628100425004959, 0.030247002840042114, 0.02467288076877594, 0.005937832407653332, 0.016153080388903618, 0.02845032513141632, 0.07733137160539627, 0.043842751532793045], [0.023144584149122238, 0.15949459373950958, 0.07547881454229355, 0.05163402855396271, 0.0034584200475364923, 0.01709667220711708, 0.0022526525426656008, 0.07899746298789978, 0.04438091069459915, 0.017276925966143608, 0.417903333902359, 0.002382363425567746, 0.0012518300209194422, 0.0021544185001403093, 0.0052099977619946, 0.05349516496062279, 0.044387832283973694], [0.03018958494067192, 0.013904554769396782, 0.10633675754070282, 0.004693527240306139, 0.0010161870159208775, 0.008086013607680798, 0.0009161251364275813, 0.013961795717477798, 0.17537234723567963, 0.0134042426943779, 0.294309139251709, 0.002574810292571783, 0.010791764594614506, 0.05678164213895798, 0.057391054928302765, 0.034848328679800034, 0.17542219161987305], [0.0322427973151207, 0.03888971731066704, 0.019525598734617233, 0.08670300990343094, 0.024935364723205566, 0.03739354386925697, 0.008489496074616909, 0.05931416153907776, 0.0636199340224266, 0.012645446695387363, 0.48845574259757996, 0.0131989112123847, 0.0008399324724450707, 0.003099683206528425, 0.002868443727493286, 0.04414999857544899, 0.06362830847501755], [0.013958035036921501, 0.009518736973404884, 0.013694201596081257, 0.021240878850221634, 0.3290359377861023, 0.015161389485001564, 0.002235882682725787, 0.01667523942887783, 0.1552753448486328, 0.00930524617433548, 0.15459536015987396, 0.06258784234523773, 0.003043663688004017, 0.003170684212818742, 0.000922352191992104, 0.03426472470164299, 0.15531444549560547], [0.09022142738103867, 0.008172409608960152, 0.013705871067941189, 0.016927240416407585, 0.006855400279164314, 0.18984641134738922, 0.00844250526279211, 0.04138652980327606, 0.08040346950292587, 0.1566128432750702, 0.15791141986846924, 0.03608215972781181, 0.0034717756789177656, 0.008231736719608307, 0.006995255593210459, 0.0943189263343811, 0.08041474223136902], [0.022063646465539932, 0.020291585475206375, 0.011164980009198189, 0.03502907603979111, 0.041304126381874084, 0.07303271442651749, 0.12347570061683655, 0.05339911952614784, 0.16995121538639069, 0.060373611748218536, 0.13012462854385376, 0.0345107801258564, 0.001532015623524785, 0.003784201806411147, 0.002534886123612523, 0.047472503036260605, 0.1699550300836563], [0.030267830938100815, 0.042354077100753784, 0.013915269635617733, 0.03567072004079819, 0.020955514162778854, 0.0346904918551445, 0.030345195904374123, 0.14292708039283752, 0.12766218185424805, 0.22668428719043732, 0.02831847593188286, 0.035298217087984085, 0.0016911088023334742, 0.005833702627569437, 0.0081093218177557, 0.08762441575527191, 0.1276521533727646], [0.0001718346611596644, 0.00021719918004237115, 0.0034541180357337, 0.00024095996923279017, 0.00011667813669191673, 0.000967999454587698, 0.00010302486771252006, 0.0017862790264189243, 0.4941920042037964, 0.0005170623189769685, 0.0001244523300556466, 0.00015349021123256534, 0.00014720424951519817, 0.0007089170394465327, 0.0013552111340686679, 0.0015393394278362393, 0.49420425295829773], [0.01588812656700611, 0.0010315702529624104, 0.008586847223341465, 0.0009884057799354196, 0.0003435119579080492, 0.002630555536597967, 0.00039102384471334517, 0.003894477616995573, 0.2348274141550064, 0.4309026598930359, 0.0009672751766629517, 0.005064318422228098, 0.0011017322540283203, 0.000966705207247287, 0.002340958919376135, 0.05520881712436676, 0.23486560583114624], [0.009342451579868793, 0.05607994645833969, 0.510791003704071, 0.006808256730437279, 0.001141824177466333, 0.004852733574807644, 0.0011920402757823467, 0.01898159086704254, 0.143728569149971, 0.0025913240388035774, 0.07708827406167984, 0.0005765605601482093, 0.0006768029415979981, 0.002820103894919157, 0.00777112552896142, 0.011798436753451824, 0.14375892281532288], [0.0028723059222102165, 0.0014120596460998058, 0.009227815084159374, 0.003988068085163832, 0.02966693788766861, 0.011397862806916237, 0.0005270162364467978, 0.006430366076529026, 0.38929644227027893, 0.0022136883344501257, 0.0019798101857304573, 0.13533657789230347, 0.002485048258677125, 0.0021746326237916946, 0.0007012259447947145, 0.01097901351749897, 0.38931092619895935], [0.0012272599851712584, 7.144422852434218e-05, 0.010025410912930965, 0.00013270610361360013, 0.0004065584216732532, 0.0015950807137414813, 0.00019645580323413014, 0.00124370155390352, 0.4234521985054016, 0.0009382801363244653, 0.0005369192222133279, 0.0023743321653455496, 0.04441436752676964, 0.051388707011938095, 0.027517491951584816, 0.01092185452580452, 0.42355719208717346], [0.0008392810705117881, 5.2232524467399344e-05, 0.02096264623105526, 1.680667446635198e-05, 3.6571407690644264e-05, 0.00014054466737434268, 9.94121000985615e-06, 0.0002865015994757414, 0.35948604345321655, 0.0001519509678473696, 0.0004473890585359186, 0.00013214154751040041, 0.0017960927216336131, 0.2205939143896103, 0.034240104258060455, 0.0012268349528312683, 0.35958102345466614], [0.0017474531196057796, 0.00022035287111066282, 0.02963101491332054, 0.00011886267748195678, 7.718217239016667e-05, 0.0004676202079281211, 8.743834041524678e-05, 0.0010765993501991034, 0.3383174538612366, 0.001049364684149623, 0.0012820132542401552, 0.00035466099507175386, 0.0019908971153199673, 0.13292162120342255, 0.1451721340417862, 0.007109761703759432, 0.3383755385875702], [0.021908197551965714, 0.00498328497633338, 0.019608203321695328, 0.004583290778100491, 0.001847091712988913, 0.004265143536031246, 0.0009079720475710928, 0.011341296136379242, 0.2740553319454193, 0.08672411739826202, 0.01579955592751503, 0.05184173956513405, 0.005202573724091053, 0.015828149393200874, 0.01651645638048649, 0.19051915407180786, 0.2740684151649475], [0.00017185213800985366, 0.00021722384553868324, 0.0034548414405435324, 0.00024097792629618198, 0.00011669990635709837, 0.0009680627845227718, 0.00010301864676875994, 0.0017863840330392122, 0.49419182538986206, 0.0005171222728677094, 0.00012446963228285313, 0.00015348604938481003, 0.00014722903142683208, 0.000708930310793221, 0.0013551667798310518, 0.0015390710905194283, 0.4942035973072052]], [[0.009983888827264309, 0.012479771859943867, 0.0379372164607048, 0.018908319994807243, 0.04736575111746788, 0.05656116455793381, 0.006177559960633516, 0.01817246899008751, 0.253245085477829, 0.11088255047798157, 0.009979486465454102, 0.13842372596263885, 0.005928863771259785, 0.0024945370387285948, 0.005972075741738081, 0.012237956747412682, 0.25324955582618713], [0.0010962304659187794, 0.005900590680539608, 0.05890846997499466, 0.002672501839697361, 0.015961067751049995, 0.031188447028398514, 0.001254487899132073, 0.004985729698091745, 0.4210337996482849, 0.007219382096081972, 0.0030119181610643864, 0.0217897966504097, 0.0009453329257667065, 0.00029282699688337743, 0.0011047397274523973, 0.0015492497477680445, 0.4210852086544037], [0.0026565995067358017, 0.006091269664466381, 0.29472246766090393, 0.004774508532136679, 0.011862169951200485, 0.06338194757699966, 0.00385458767414093, 0.011962421238422394, 0.27261829376220703, 0.006758219096809626, 0.005464981775730848, 0.017780551686882973, 0.004257873632013798, 0.003060202347114682, 0.014453092589974403, 0.003659906331449747, 0.2726409435272217], [0.002068099332973361, 0.0012092689285054803, 0.018525023013353348, 0.005870106630027294, 0.05795413628220558, 0.2288891077041626, 0.007025697268545628, 0.007116485852748156, 0.3098927438259125, 0.017222190275788307, 0.0010942252120003104, 0.029528802260756493, 0.0008049707394093275, 0.00016539113130420446, 0.0010713819647207856, 0.0016853123670443892, 0.30987706780433655], [0.009873364120721817, 0.0037150296848267317, 0.013257404789328575, 0.004095037933439016, 0.2319595366716385, 0.2108556181192398, 0.006140767131000757, 0.01784897781908512, 0.228399395942688, 0.016163554042577744, 0.001412366284057498, 0.025659902021288872, 0.0008126451866701245, 5.702931230189279e-05, 0.00026056068600155413, 0.0011112093925476074, 0.22837737202644348], [0.0036283480003476143, 0.0041855149902403355, 0.009509332478046417, 0.005139931570738554, 0.05514099821448326, 0.19311267137527466, 0.017713511362671852, 0.013732376508414745, 0.3297848701477051, 0.012830095365643501, 0.000998817733488977, 0.018047822639346123, 0.003052294021472335, 0.00040483244811184704, 0.0017198577988892794, 0.0012585220392793417, 0.3297401964664459], [0.0017280016327276826, 0.0013096170732751489, 0.009638432413339615, 0.002139687305316329, 0.07050427794456482, 0.5646119713783264, 0.014436493627727032, 0.0034729260951280594, 0.16168776154518127, 0.005289510358124971, 0.00022451739641837776, 0.002790948608890176, 0.0001560000964673236, 7.321799785131589e-05, 0.0001176289952127263, 0.00014549212937708944, 0.16167351603507996], [0.0029530408792197704, 0.0016580215888097882, 0.036084700375795364, 0.0054904380813241005, 0.02332261949777603, 0.22864317893981934, 0.00553099624812603, 0.013828903436660767, 0.3274851441383362, 0.007748475763946772, 0.0014988093171268702, 0.007949343882501125, 0.001540480530820787, 0.0014903619885444641, 0.004578712861984968, 0.002753122244030237, 0.32744359970092773], [3.902724711224437e-05, 0.00020014696929138154, 0.006746484898030758, 0.00017261934408452362, 0.0008057331433519721, 0.004272001329809427, 0.00014293991262093186, 0.000420522439526394, 0.49143433570861816, 0.000612407922744751, 0.00011897298827534541, 0.0014546907041221857, 0.0009421492577530444, 0.0003291982284281403, 0.0005824245163239539, 0.00030612730188295245, 0.49142026901245117], [0.0008159451535902917, 0.0019716641400009394, 0.0015863175503909588, 0.0014490805333480239, 0.01784668304026127, 0.015122092328965664, 0.002642808947712183, 0.0014867791905999184, 0.3657147288322449, 0.07436860352754593, 0.0007625097059644759, 0.14331616461277008, 0.0037979348562657833, 0.00026234154938720167, 0.0007955819019116461, 0.002419836353510618, 0.3656409680843353], [0.0002842471585609019, 0.0003834663948509842, 0.030082153156399727, 0.0004621845728252083, 0.0024098469875752926, 0.0069940234534442425, 0.00021518887660931796, 0.0013230638578534126, 0.45084455609321594, 0.0017722854390740395, 0.0018699874635785818, 0.042331140488386154, 0.0027967356145381927, 0.001432573888450861, 0.003567560575902462, 0.0023831757716834545, 0.4508477747440338], [0.00039180953172035515, 0.0003424776077736169, 0.0009246414410881698, 0.0003522321640048176, 0.0026745947543531656, 0.007486753631383181, 0.00020531416521407664, 0.0007922695949673653, 0.2351929247379303, 0.0056252493523061275, 0.0012809357140213251, 0.49343544244766235, 0.007410246878862381, 0.0010397847509011626, 0.0028285905718803406, 0.004843174014240503, 0.23517364263534546], [0.00026364991208538413, 8.898486703401431e-05, 0.0053575304336845875, 9.771686745807528e-05, 0.00042288913391530514, 0.01138501800596714, 6.368692993419245e-05, 0.0005012238980270922, 0.389102578163147, 0.0029816459864377975, 0.001325044664554298, 0.06445591151714325, 0.03266829624772072, 0.04981726035475731, 0.05062754824757576, 0.001787409302778542, 0.3890535831451416], [0.0003404819581191987, 5.4740292398491874e-05, 0.008900810964405537, 0.00010428200766909868, 0.00029593889485113323, 0.005408338736742735, 5.199187216931023e-05, 0.0005899358657188714, 0.4575193524360657, 0.0009523829212412238, 0.0004792267282027751, 0.006858252454549074, 0.005225388333201408, 0.009324923157691956, 0.0457257404923439, 0.0006928796065039933, 0.4574752748012543], [0.0004817889421246946, 4.532076491159387e-05, 0.0042493995279073715, 0.0002934910880867392, 0.0006679616053588688, 0.016728131100535393, 0.00012264867837075144, 0.0008263042545877397, 0.43796640634536743, 0.00406191311776638, 0.00047287490451708436, 0.016646642237901688, 0.009893788024783134, 0.021815525367856026, 0.04536492004990578, 0.0024478782434016466, 0.43791502714157104], [0.0009492544340901077, 0.00017433894390705973, 0.002477735746651888, 0.0005932174972258508, 0.0038767859805375338, 0.012750811874866486, 0.0003385962045285851, 0.002436733106151223, 0.40985995531082153, 0.007026831619441509, 0.001425848575308919, 0.12117136269807816, 0.004300972446799278, 0.0023057821672409773, 0.010606086812913418, 0.009920543059706688, 0.40978530049324036], [3.902604294125922e-05, 0.00020014384062960744, 0.00674806535243988, 0.00017257820582017303, 0.0008056421647779644, 0.004272097256034613, 0.00014288480451796204, 0.00042047977331094444, 0.49143368005752563, 0.0006123405182734132, 0.00011897396325366572, 0.001454747631214559, 0.0009421166032552719, 0.00032916056807152927, 0.0005823957035318017, 0.0003060749440919608, 0.49141961336135864]], [[0.032056502997875214, 0.010396290570497513, 0.015295733697712421, 0.03466075658798218, 0.006166001781821251, 0.04971836879849434, 0.012483939528465271, 0.13631999492645264, 0.15887533128261566, 0.04347488656640053, 0.10472960025072098, 0.028351252898573875, 0.014055064879357815, 0.03376052528619766, 0.10987947136163712, 0.050930436700582504, 0.15884585678577423], [0.008995823562145233, 0.00992346927523613, 0.007500631734728813, 0.046528611332178116, 0.04820972681045532, 0.18998265266418457, 0.11824003607034683, 0.0372595377266407, 0.2562979757785797, 0.007199322339147329, 0.00538942264392972, 0.004069355316460133, 0.0004276138497516513, 0.0016412222757935524, 0.0010410601971670985, 0.00106534524820745, 0.2562282085418701], [0.021411150693893433, 0.047703538089990616, 0.10232898592948914, 0.03733992949128151, 0.03766040876507759, 0.11897614598274231, 0.0506802462041378, 0.031268585473299026, 0.19380474090576172, 0.02286101132631302, 0.062114544212818146, 0.018452299758791924, 0.0095830662176013, 0.022546708583831787, 0.023739181458950043, 0.0057471501640975475, 0.1937822848558426], [0.00624337000772357, 0.02810903638601303, 0.002788703888654709, 0.058533985167741776, 0.05198986083269119, 0.27157357335090637, 0.06384073197841644, 0.10072252154350281, 0.2027946263551712, 0.0033327797427773476, 0.00393783301115036, 0.001168720773421228, 0.0001587439328432083, 0.0002526993921492249, 0.00019798599532805383, 0.0016236546216532588, 0.2027311772108078], [0.005281516350805759, 0.02992180362343788, 0.0028618823271244764, 0.14439712464809418, 0.03131960332393646, 0.2857397794723511, 0.11261887103319168, 0.09503091871738434, 0.14438088238239288, 0.0012080990709364414, 0.0008347250986844301, 0.00047063728561624885, 0.00010091638978337869, 0.00017698350711725652, 0.00038561035762540996, 0.0009233275195583701, 0.14434728026390076], [0.003834928385913372, 0.10124709457159042, 0.005146465729922056, 0.15266816318035126, 0.06025151163339615, 0.12032583355903625, 0.2511679530143738, 0.04756077378988266, 0.12202106416225433, 0.005186551716178656, 0.0035664166789501905, 0.0012715347111225128, 0.00020305767247918993, 0.00035754733835346997, 0.0007406423101201653, 0.002453552559018135, 0.12199698388576508], [0.0033996826969087124, 0.03380386531352997, 0.0007758723222650588, 0.12973277270793915, 0.017714232206344604, 0.16954386234283447, 0.08114208281040192, 0.0858435332775116, 0.23676303029060364, 0.0027009497862309217, 0.0010039940243586898, 0.0002459725656080991, 8.721144695300609e-06, 2.6344872821937315e-05, 4.151917528361082e-05, 0.0005614097462967038, 0.2366921454668045], [0.008400858379900455, 0.02070557326078415, 0.015996700152754784, 0.06361551582813263, 0.017598766833543777, 0.13456398248672485, 0.050780609250068665, 0.040891122072935104, 0.2709446847438812, 0.04782627522945404, 0.01911432482302189, 0.014265851117670536, 0.002070075599476695, 0.003564816899597645, 0.007148840464651585, 0.011631689965724945, 0.2708803415298462], [0.009515166282653809, 0.0057467930018901825, 0.020698145031929016, 0.006951060611754656, 0.0016171589959412813, 0.005546164233237505, 0.0018599111353978515, 0.012142998166382313, 0.4494422674179077, 0.006894415244460106, 0.009952890686690807, 0.002874460071325302, 0.0024511839728802443, 0.0039934152737259865, 0.005317137576639652, 0.005563290789723396, 0.44943347573280334], [0.010265350341796875, 0.0007271991344168782, 0.0020748984534293413, 0.006470965221524239, 0.004647182300686836, 0.02495316043496132, 0.004376586992293596, 0.019086726009845734, 0.39907562732696533, 0.01336431223899126, 0.0035965440329164267, 0.05161060392856598, 0.012056192383170128, 0.022006116807460785, 0.016485655680298805, 0.010210510343313217, 0.39899247884750366], [0.0035913074389100075, 0.0002924537402577698, 0.0014126746682450175, 0.0005315051530487835, 0.00045797027996741235, 0.0024736823979765177, 0.0007246494642458856, 0.0014117991086095572, 0.34815284609794617, 0.00928526185452938, 0.0326879546046257, 0.1453167200088501, 0.03693412244319916, 0.03979038447141647, 0.024780292063951492, 0.004088966641575098, 0.34806737303733826], [0.0017830331344157457, 0.0006095629651099443, 0.001498137484304607, 0.0011462521506473422, 0.00012160695769125596, 0.0019455889705568552, 0.00025656327488832176, 0.003645409597083926, 0.34520167112350464, 0.01398733165115118, 0.014827712439000607, 0.02972370944917202, 0.031245725229382515, 0.057907432317733765, 0.06627213954925537, 0.0846913680434227, 0.345136821269989], [0.0010460170451551676, 0.00042093763477168977, 0.00102064514067024, 0.00017245141498278826, 2.50552075158339e-05, 0.0006248498684726655, 2.0519792087725364e-05, 0.0007345680496655405, 0.21919678151607513, 0.0035739270970225334, 0.006113364826887846, 0.016842838376760483, 0.054038155823946, 0.11411003023386002, 0.2806050479412079, 0.08233063668012619, 0.21912424266338348], [0.0027897641994059086, 0.00032222093432210386, 0.0009469204233027995, 0.0003079338348470628, 3.647866833489388e-05, 0.0001821361802285537, 2.9321527108550072e-05, 0.0012315426720306277, 0.39664387702941895, 0.004479799885302782, 0.013538465835154057, 0.012492658570408821, 0.018693499267101288, 0.02576184645295143, 0.04336852207779884, 0.08259730786085129, 0.3965776860713959], [0.00315264449454844, 0.0006893305107951164, 0.0012596087763085961, 0.0010785312624648213, 0.00011652849207166582, 0.00047276317491196096, 0.0001240053679794073, 0.0013188425218686461, 0.34483689069747925, 0.01911953091621399, 0.02735181339085102, 0.021236585453152657, 0.02602602168917656, 0.04578559100627899, 0.05585281550884247, 0.10683567821979523, 0.34474286437034607], [0.004238822963088751, 0.0010416173608973622, 0.0011608782224357128, 0.001929256715811789, 0.0007014150614850223, 0.002099083038046956, 0.0003314564819447696, 0.0030433230567723513, 0.3350204527378082, 0.1508602350950241, 0.06984193623065948, 0.035625044256448746, 0.018946995958685875, 0.007210142444819212, 0.008949807845056057, 0.02401505969464779, 0.33498451113700867], [0.009513512253761292, 0.005746804177761078, 0.020702652633190155, 0.006949977483600378, 0.0016167706344276667, 0.005546154920011759, 0.0018596745794638991, 0.012139549478888512, 0.4494446814060211, 0.006893577985465527, 0.009953784756362438, 0.0028741711284965277, 0.002450744854286313, 0.00399274006485939, 0.005316801369190216, 0.005561901722103357, 0.4494365453720093]], [[0.02201945334672928, 0.009027697145938873, 0.032331161201000214, 0.004459274001419544, 0.0021900285501033068, 0.02506580762565136, 0.005229596048593521, 0.6000418066978455, 0.05712622404098511, 0.047318875789642334, 0.04208676144480705, 0.01878889836370945, 0.01100761629641056, 0.014472916722297668, 0.028678569942712784, 0.02303166873753071, 0.05712360888719559], [0.007737127598375082, 0.030812488868832588, 0.031892113387584686, 0.08731178194284439, 0.005368366371840239, 0.05073761194944382, 0.014418342150747776, 0.036519549787044525, 0.3461238741874695, 0.010027594864368439, 0.026250414550304413, 0.00016817255527712405, 0.00015765403804834932, 0.0010028915712609887, 0.001455741818062961, 0.003909650258719921, 0.34610655903816223], [0.02537836693227291, 0.31254807114601135, 0.04768180102109909, 0.06509914249181747, 0.01019293162971735, 0.015864742919802666, 0.01885341852903366, 0.021906644105911255, 0.10669095069169998, 0.014680557884275913, 0.23162738978862762, 0.0005949627957306802, 0.001334000495262444, 0.006100136786699295, 0.0038041158113628626, 0.010946354828774929, 0.10669633746147156], [0.006006432697176933, 0.03231984004378319, 0.038529787212610245, 0.028598928824067116, 0.006937342695891857, 0.030993791297078133, 0.00580917252227664, 0.008805856108665466, 0.41546109318733215, 0.0033303960226476192, 0.0036240648478269577, 0.00010415743599878624, 6.836989632574841e-05, 0.0004043545632157475, 0.0009410078637301922, 0.00268644280731678, 0.4153790771961212], [0.004309828858822584, 0.008982242085039616, 0.015822498127818108, 0.08436593413352966, 0.02391568012535572, 0.019350839778780937, 0.011883500963449478, 0.009931501932442188, 0.4088864326477051, 0.001352126244455576, 0.00044505909318104386, 0.00015005332534201443, 7.851625559851527e-05, 0.000251096673309803, 0.0004647541791200638, 0.0010720709105953574, 0.4087378978729248], [0.004350624978542328, 0.022907787933945656, 0.016605200245976448, 0.13308945298194885, 0.09927629679441452, 0.06143169105052948, 0.06401731818914413, 0.009242607280611992, 0.2913244962692261, 0.0013278208207339048, 0.0016432307893410325, 0.0006061104359105229, 0.00024091789964586496, 0.0003382884315215051, 0.0005019005620852113, 0.001827525207772851, 0.29126864671707153], [0.0017430573934689164, 0.0021533863618969917, 0.004625838715583086, 0.04571322724223137, 0.07076537609100342, 0.017948703840374947, 0.010505865328013897, 0.004608344752341509, 0.420003741979599, 0.00041284612962044775, 0.00029996121884323657, 0.00018194009317085147, 2.7954380129813217e-05, 2.7285574105917476e-05, 8.197926945285872e-05, 0.0009955595014616847, 0.41990479826927185], [0.0021737252827733755, 0.006099942605942488, 0.024855613708496094, 0.017203547060489655, 0.019096961244940758, 0.13573649525642395, 0.03677177056670189, 0.01638028770685196, 0.35558435320854187, 0.0013476863969117403, 0.0009757888619787991, 0.005145919043570757, 0.002242211252450943, 0.00546660041436553, 0.01270740944892168, 0.002665742067620158, 0.35554587841033936], [0.003539199708029628, 0.002544875955209136, 0.007256964221596718, 0.004046475049108267, 0.0044435495510697365, 0.0037248609587550163, 0.0018972872057929635, 0.004992651753127575, 0.470051109790802, 0.0043053762055933475, 0.005080239847302437, 0.003791006049141288, 0.0025038542225956917, 0.003738861531019211, 0.0043176887556910515, 0.003739487612619996, 0.4700266718864441], [0.027007190510630608, 0.001144341309554875, 0.004571306053549051, 0.009942305274307728, 0.004773323889821768, 0.015492538921535015, 0.004386585205793381, 0.18447452783584595, 0.34689250588417053, 0.044540755450725555, 0.0014445970300585032, 0.0027259483467787504, 0.0011709938989952207, 0.0009229084243997931, 0.0011893725022673607, 0.002547580748796463, 0.34677326679229736], [0.01035662554204464, 0.36357831954956055, 0.030606241896748543, 0.010603401809930801, 0.002265665913000703, 0.014132695272564888, 0.003270332934334874, 0.015869682654738426, 0.16809943318367004, 0.0554884634912014, 0.06190205737948418, 0.007307892199605703, 0.0063376291655004025, 0.016986148431897163, 0.02671973966062069, 0.03841036558151245, 0.16806529462337494], [0.012368589639663696, 0.0005988056655041873, 0.0055748699232935905, 0.0011514169164001942, 0.0003573269641492516, 0.0017117818351835012, 0.0004942324012517929, 0.014243056066334248, 0.33247968554496765, 0.10244113951921463, 0.022647444158792496, 0.014821763150393963, 0.04102979972958565, 0.027110502123832703, 0.03695995733141899, 0.05362994223833084, 0.33237966895103455], [0.007134624756872654, 9.11016104510054e-05, 0.0019429543754085898, 0.0007092615705914795, 7.831214315956458e-05, 0.0006194607703946531, 0.00010128509165951982, 0.00848400965332985, 0.31726089119911194, 0.03739418089389801, 0.018090492114424706, 0.007450600620359182, 0.026212206110358238, 0.1153101697564125, 0.07408571988344193, 0.06789854168891907, 0.3171362578868866], [0.005280784796923399, 0.00010671798372641206, 0.0022685693111270666, 0.0003289356245659292, 9.638527262723073e-05, 0.0003200808132532984, 5.77688442717772e-05, 0.0019909897819161415, 0.3979056775569916, 0.026777086779475212, 0.04193045198917389, 0.01477155089378357, 0.03404515981674194, 0.026092752814292908, 0.018333883956074715, 0.03187673166394234, 0.3978165090084076], [0.00884844921529293, 0.0002136916300514713, 0.0027677733451128006, 0.0008039968088269234, 0.00036250983248464763, 0.0010101236402988434, 0.0002644643245730549, 0.007317489944398403, 0.3504657745361328, 0.03324560448527336, 0.027514945715665817, 0.01531909592449665, 0.05001102387905121, 0.07604879885911942, 0.03302668780088425, 0.042410850524902344, 0.3503687083721161], [0.003965915646404028, 0.00034100053017027676, 0.0024970900267362595, 0.00020173723169136792, 0.00027977459831163287, 0.0016938039334490895, 0.0002447431907057762, 0.006611271761357784, 0.4386836886405945, 0.03347305953502655, 0.01927226595580578, 0.00544659374281764, 0.007328846957534552, 0.008015447296202183, 0.0159282423555851, 0.01738661713898182, 0.4386299252510071], [0.0035383636131882668, 0.0025446955114603043, 0.00725580332800746, 0.0040457542054355145, 0.004442990757524967, 0.0037245384883135557, 0.0018970160745084286, 0.004990899004042149, 0.470054566860199, 0.004304471891373396, 0.005079758819192648, 0.0037909853272140026, 0.0025038346648216248, 0.003739033592864871, 0.00431768549606204, 0.0037392727099359035, 0.47003036737442017]], [[0.034211575984954834, 0.01681220531463623, 0.009847846813499928, 0.009349208325147629, 0.0041638887487351894, 0.005393133033066988, 0.0010565099073573947, 0.017047423869371414, 0.0670618861913681, 0.295781672000885, 0.09655699133872986, 0.04122977703809738, 0.011680122464895248, 0.023682251572608948, 0.03944287821650505, 0.2596244513988495, 0.0670582577586174], [0.02383306808769703, 0.055035825818777084, 0.016329841688275337, 0.32319092750549316, 0.14824272692203522, 0.14989987015724182, 0.04199032858014107, 0.061328768730163574, 0.04090506210923195, 0.044618159532547, 0.011934743262827396, 0.006733455695211887, 0.003417801344767213, 0.0020054092165082693, 0.003505244618281722, 0.02612491138279438, 0.040903929620981216], [0.04003510624170303, 0.058568406850099564, 0.05922171100974083, 0.09497296810150146, 0.09406023472547531, 0.10919816046953201, 0.03708501160144806, 0.03633036091923714, 0.13635589182376862, 0.03626762703061104, 0.020786143839359283, 0.03476434573531151, 0.01393949519842863, 0.01633043959736824, 0.030041249468922615, 0.045669056475162506, 0.136373832821846], [0.013670033775269985, 0.046428851783275604, 0.01472416426986456, 0.10707675665616989, 0.13724064826965332, 0.2865857481956482, 0.09979114681482315, 0.07673534750938416, 0.08371677249670029, 0.028196999803185463, 0.004327837377786636, 0.003999743144959211, 0.0011839843355119228, 0.00289732264354825, 0.002057417295873165, 0.007659147493541241, 0.08370807021856308], [0.009469017386436462, 0.02597261592745781, 0.008779006078839302, 0.021283557638525963, 0.02966986410319805, 0.040575433522462845, 0.009046480059623718, 0.01946263574063778, 0.41349610686302185, 0.004062858875840902, 0.0015230657299980521, 0.0006315033533610404, 0.00037841216544620693, 0.0003693833714351058, 0.00041127012809738517, 0.0014291186816990376, 0.41343972086906433], [0.012364711612462997, 0.042831432074308395, 0.009253389202058315, 0.021675603464245796, 0.06050897762179375, 0.06864707916975021, 0.015883387997746468, 0.031479611992836, 0.3503115177154541, 0.020495956763625145, 0.0037178273778408766, 0.005999482702463865, 0.00213565188460052, 0.0006266881828196347, 0.0012144312495365739, 0.00257364334538579, 0.35028061270713806], [0.013573982752859592, 0.034206684678792953, 0.007922335527837276, 0.014327924698591232, 0.042687542736530304, 0.05377575382590294, 0.007645609322935343, 0.025050124153494835, 0.3941844701766968, 0.008470116183161736, 0.0014952346682548523, 0.0008349107229150832, 0.00035855252644978464, 0.00019745880854316056, 0.0003096552682109177, 0.0008380338549613953, 0.3941214978694916], [0.027498319745063782, 0.029279883950948715, 0.0084079559892416, 0.029261551797389984, 0.029109962284564972, 0.05856119468808174, 0.011591793037950993, 0.03410026803612709, 0.16831956803798676, 0.24784566462039948, 0.021695904433727264, 0.027697384357452393, 0.012594706378877163, 0.01625233329832554, 0.01723012514412403, 0.09224571287631989, 0.16830769181251526], [0.007430814206600189, 0.0014702703338116407, 0.004582446999847889, 0.0035377428866922855, 0.0019018020248040557, 0.0042159054428339005, 0.0006589196273125708, 0.0028507858514785767, 0.4762049913406372, 0.0026564847212284803, 0.0015937137650325894, 0.0021955850534141064, 0.0013482471695169806, 0.0035036050248891115, 0.0030389942694455385, 0.006620925385504961, 0.47618862986564636], [0.01929418556392193, 0.0017930505564436316, 0.0027071412187069654, 0.0029387830290943384, 0.0016958864871412516, 0.00361742009408772, 0.00030662037897855043, 0.0037588845007121563, 0.3377045691013336, 0.0389956533908844, 0.03704278916120529, 0.05408988893032074, 0.019846929237246513, 0.017108717933297157, 0.022621285170316696, 0.09877514094114304, 0.3377031087875366], [0.011113089509308338, 0.0023214544635266066, 0.0038044159300625324, 0.0016115517355501652, 0.00017502247646916658, 0.0007494862074963748, 0.00010430567635921761, 0.0005412192549556494, 0.051977988332509995, 0.03481358662247658, 0.03960137814283371, 0.084522545337677, 0.09750930219888687, 0.06195175647735596, 0.18594969809055328, 0.3712804615497589, 0.05197278782725334], [0.006063234992325306, 0.000846399343572557, 0.0011745269875973463, 0.00033833799534477293, 0.00016545945254620165, 0.0009734552586451173, 6.123600178398192e-05, 0.0014926505973562598, 0.31551551818847656, 0.024892011657357216, 0.05996222048997879, 0.07134450972080231, 0.049014415591955185, 0.028017137199640274, 0.04636963829398155, 0.07827495038509369, 0.3154942989349365], [0.00262807821854949, 0.0005650873645208776, 0.003037067363038659, 0.00021142713376320899, 5.9324316680431366e-05, 0.0003725021379068494, 1.7115278751589358e-05, 0.0003473295655567199, 0.4170318841934204, 0.0072318799793720245, 0.03499625250697136, 0.01587594673037529, 0.03145710006356239, 0.014190719462931156, 0.021859483793377876, 0.03311891481280327, 0.416999876499176], [0.004415043164044619, 0.00022474485740531236, 0.002269104588776827, 0.00010095648030983284, 8.960922423284501e-05, 0.000361275568138808, 1.312790482188575e-05, 0.00043595919851213694, 0.4322253465652466, 0.004399092867970467, 0.01436392217874527, 0.023750100284814835, 0.0405680388212204, 0.013014176860451698, 0.02123536914587021, 0.010338425636291504, 0.43219566345214844], [0.004892313852906227, 0.00023919758677948266, 0.0023272621911019087, 0.00013567914720624685, 0.00016173708718270063, 0.000793195329606533, 3.282621401012875e-05, 0.0005918071838095784, 0.354447603225708, 0.011797952465713024, 0.02755153365433216, 0.07371135801076889, 0.07054832577705383, 0.036510664969682693, 0.04366889223456383, 0.018182838335633278, 0.35440686345100403], [0.0039558326825499535, 0.0007501658983528614, 0.00278658140450716, 0.0005297908210195601, 0.00022008243831805885, 0.0020868489518761635, 0.0001640199770918116, 0.0008718154858797789, 0.1485101282596588, 0.049807239323854446, 0.046874646097421646, 0.10570333153009415, 0.10788444429636002, 0.15616106986999512, 0.12706676125526428, 0.0981421172618866, 0.14848512411117554], [0.007429203949868679, 0.0014697505393996835, 0.0045815566554665565, 0.003535981522873044, 0.001900902483612299, 0.004214308690279722, 0.0006586132803931832, 0.002850001212209463, 0.47621262073516846, 0.002655469812452793, 0.0015931368106976151, 0.002194697270169854, 0.001347757875919342, 0.0035028476268053055, 0.0030383591074496508, 0.006618522107601166, 0.4761962592601776]], [[0.007342258933931589, 0.005289183929562569, 0.057965364307165146, 0.01359894871711731, 0.016347892582416534, 0.024260323494672775, 0.01266200840473175, 0.0067443023435771465, 0.2716454863548279, 0.01971416547894478, 0.012520871125161648, 0.014196696691215038, 0.04266674444079399, 0.06630115956068039, 0.13645882904529572, 0.020663229748606682, 0.27162256836891174], [0.004718608222901821, 0.004804551135748625, 0.03644603490829468, 0.0021660723723471165, 0.00405998807400465, 0.009271413087844849, 0.0009630289860069752, 0.002065699314698577, 0.408748060464859, 0.011775637045502663, 0.021446844562888145, 0.008897126652300358, 0.006316294893622398, 0.003781345207244158, 0.004298872780054808, 0.06142734736204147, 0.4088129699230194], [0.017590979114174843, 0.012374886311590672, 0.0575079619884491, 0.005325912963598967, 0.004765295423567295, 0.029956623911857605, 0.0030257082544267178, 0.006685345899313688, 0.23306594789028168, 0.024049175903201103, 0.04038354009389877, 0.009856132790446281, 0.042130276560783386, 0.09189905971288681, 0.13149170577526093, 0.05680578202009201, 0.23308561742305756], [0.007738214917480946, 0.020861180499196053, 0.04431042820215225, 0.01072751171886921, 0.00828919280320406, 0.054776716977357864, 0.009719755500555038, 0.011707751080393791, 0.3009161055088043, 0.0277887973934412, 0.028559036552906036, 0.04810072481632233, 0.002099274890497327, 0.0015611655544489622, 0.002469548024237156, 0.11942794919013977, 0.30094653367996216], [0.009736539795994759, 0.0378955714404583, 0.07339980453252792, 0.008573864586651325, 0.0188324935734272, 0.043614309281110764, 0.010713892057538033, 0.018319837749004364, 0.32341569662094116, 0.02491355687379837, 0.026236336678266525, 0.032557472586631775, 0.004630800802260637, 0.0009867883054539561, 0.0012890314683318138, 0.041428811848163605, 0.32345518469810486], [0.009431334212422371, 0.01969774253666401, 0.045395780354738235, 0.004923742730170488, 0.005302988458424807, 0.021677237004041672, 0.004910940304398537, 0.010395796038210392, 0.355645090341568, 0.04134989529848099, 0.03338254243135452, 0.01068473793566227, 0.0164481233805418, 0.007780981250107288, 0.00869892630726099, 0.0486072413623333, 0.35566696524620056], [0.0025329156778752804, 0.008143888786435127, 0.025551708415150642, 0.0038154004141688347, 0.011496835388243198, 0.03676953911781311, 0.010166124440729618, 0.004093665163964033, 0.42380449175834656, 0.010812873020768166, 0.004187391605228186, 0.01433098129928112, 0.0008310636621899903, 0.00033202828490175307, 0.0005916719092056155, 0.01870124228298664, 0.42383822798728943], [0.003795252414420247, 0.006939374841749668, 0.016827022656798363, 0.003939308691769838, 0.007899114862084389, 0.009253655560314655, 0.003670887090265751, 0.008351124823093414, 0.4310227334499359, 0.01016200426965952, 0.011044018901884556, 0.0020499739330261946, 0.003955901600420475, 0.007320732809603214, 0.009769922122359276, 0.03294747695326805, 0.4310513138771057], [0.00024200878397095948, 0.0002893012424465269, 0.001712887198664248, 0.00018770343740470707, 0.00026283087208867073, 0.0012016755063086748, 0.00010922306682914495, 0.0004782282921951264, 0.4944605827331543, 0.0015525927301496267, 0.0007399389869533479, 0.0003649100835900754, 0.0012989139650017023, 0.0005600829608738422, 0.0007393680280074477, 0.001344136893749237, 0.49445563554763794], [0.0013866130029782653, 0.005871532950550318, 0.023850541561841965, 0.006831673439592123, 0.01076328195631504, 0.027858398854732513, 0.00746561773121357, 0.0033177388831973076, 0.4308522641658783, 0.0086296908557415, 0.0031608473509550095, 0.016628323122859, 0.006861709523946047, 0.0010324710747227073, 0.0020657717250287533, 0.012614213861525059, 0.4308093190193176], [0.0009324098937213421, 0.009005698375403881, 0.12817418575286865, 0.005110134836286306, 0.004926423542201519, 0.017032776027917862, 0.0016021302435547113, 0.003961032256484032, 0.3813273012638092, 0.004088959656655788, 0.01034250296652317, 0.0032591482158750296, 0.008266283199191093, 0.007278989069163799, 0.013533996418118477, 0.01982678845524788, 0.38133111596107483], [0.0014086292358115315, 0.01973111554980278, 0.03312067314982414, 0.0136190727353096, 0.007451701909303665, 0.0669705793261528, 0.004936018958687782, 0.005385294556617737, 0.3732222318649292, 0.019086068496108055, 0.00604903744533658, 0.030388230457901955, 0.020120464265346527, 0.0037113020662218332, 0.005693543236702681, 0.01595265418291092, 0.37315335869789124], [0.0008046383736655116, 0.0021469006314873695, 0.08405700325965881, 0.0008114477968774736, 0.0005295602022670209, 0.019747097045183182, 0.0003779945254791528, 0.0023352308198809624, 0.38533809781074524, 0.006498157046735287, 0.0035718500148504972, 0.010609368793666363, 0.03272995725274086, 0.0163689237087965, 0.029737919569015503, 0.01900268718600273, 0.3853331506252289], [0.0004162238328717649, 0.0031301509588956833, 0.37210801243782043, 0.0004689492052420974, 0.0003051193489227444, 0.004983124788850546, 0.00019488473481032997, 0.003192055271938443, 0.28785377740859985, 0.0006544249481521547, 0.0034931583795696497, 0.0006911834352649748, 0.004751863889396191, 0.009870128706097603, 0.01829581707715988, 0.0016989682335406542, 0.2878921926021576], [0.0011663216864690185, 0.0043210797011852264, 0.23192588984966278, 0.0010645224247127771, 0.0011210808297619224, 0.013649830594658852, 0.0007274510571733117, 0.004436183255165815, 0.34652113914489746, 0.0019121508812531829, 0.004305894486606121, 0.004267499316483736, 0.006691674701869488, 0.00914900191128254, 0.018012328073382378, 0.004173153080046177, 0.346554696559906], [0.0012923432514071465, 0.005745100788772106, 0.0410291850566864, 0.0061951130628585815, 0.004716198891401291, 0.05092328414320946, 0.0034200085792690516, 0.005871372297406197, 0.3981214165687561, 0.007784734945744276, 0.003887999104335904, 0.01815454103052616, 0.008322193287312984, 0.004131244961172342, 0.008158727549016476, 0.0341779999434948, 0.39806845784187317], [0.00024203262000810355, 0.0002893440832849592, 0.0017130045453086495, 0.00018771323084365577, 0.0002628451038617641, 0.001201755367219448, 0.00010921725333901122, 0.00047829069080762565, 0.49446070194244385, 0.0015524531481787562, 0.0007399208843708038, 0.00036488217301666737, 0.0012988195521757007, 0.0005600320873782039, 0.0007393269333988428, 0.0013441115152090788, 0.4944555163383484]], [[0.011225278489291668, 0.08637942373752594, 0.3434559106826782, 0.016438249498605728, 0.008100219070911407, 0.07892300188541412, 0.01237565465271473, 0.008576193824410439, 0.19029225409030914, 0.014559449627995491, 0.008128352463245392, 0.0023905187845230103, 0.0035392807330936193, 0.004680223297327757, 0.011737367138266563, 0.008919155225157738, 0.19027940928936005], [0.010478172451257706, 0.02222963236272335, 0.2032272219657898, 0.02222554199397564, 0.004256505519151688, 0.027198852971196175, 0.0010530843865126371, 0.01999310776591301, 0.2806755304336548, 0.004849882796406746, 0.10028526186943054, 0.0008345918613485992, 0.00013025582302361727, 0.0004532651510089636, 0.0009005948668345809, 0.0204936433583498, 0.28071486949920654], [0.006719703786075115, 0.017140096053481102, 0.036309871822595596, 0.008806989528238773, 0.0024871204514056444, 0.013140728697180748, 0.0009257051278837025, 0.012525665573775768, 0.40423715114593506, 0.03412898629903793, 0.0356706902384758, 0.006613811943680048, 0.0016629870515316725, 0.0022627764847129583, 0.0041103120893239975, 0.008976761251688004, 0.40428072214126587], [0.006439415737986565, 0.15789085626602173, 0.2814522385597229, 0.015390543267130852, 0.009777168743312359, 0.1501360535621643, 0.009111810475587845, 0.01897352747619152, 0.1511683613061905, 0.005062689073383808, 0.034249525517225266, 0.0017478674417361617, 0.0005563477170653641, 0.0013296814868226647, 0.0022447407245635986, 0.0033061415888369083, 0.1511630266904831], [0.005585191771388054, 0.02367774397134781, 0.03565746918320656, 0.014873327687382698, 0.005642132367938757, 0.1677893102169037, 0.015058684162795544, 0.017713716253638268, 0.3489764928817749, 0.0030811151955276728, 0.008572879247367382, 0.0008401154191233218, 0.0004128070722799748, 0.0004435096343513578, 0.0012179847108200192, 0.0015483907191082835, 0.3489091098308563], [0.005259981378912926, 0.013628759421408176, 0.017593633383512497, 0.012642270885407925, 0.006528645753860474, 0.06890452653169632, 0.004953328520059586, 0.018367042765021324, 0.415364533662796, 0.007657022215425968, 0.006642375141382217, 0.0016416418366134167, 0.0008575631072744727, 0.0007466812967322767, 0.0015570770483464003, 0.0023182244040071964, 0.4153369963169098], [0.0042573800310492516, 0.053442616015672684, 0.06325071305036545, 0.008720970712602139, 0.005359509028494358, 0.1580357402563095, 0.0036830517929047346, 0.012660630978643894, 0.32914820313453674, 0.004504846874624491, 0.025017024949193, 0.0009471885277889669, 0.00015033608360681683, 0.0002836589119397104, 0.0006481963791884482, 0.000803065428044647, 0.3290868401527405], [0.029304970055818558, 0.003726552939042449, 0.008575376123189926, 0.007524827029556036, 0.0017882914980873466, 0.0252279881387949, 0.0022730655036866665, 0.003500640392303467, 0.38705939054489136, 0.04550926387310028, 0.014229928143322468, 0.0025907002855092287, 0.00118525349535048, 0.015766041353344917, 0.031047776341438293, 0.0337134450674057, 0.3869765102863312], [0.0016340221045538783, 0.0016920161433517933, 0.0028635046910494566, 0.001346999080851674, 0.0004376067372504622, 0.002504469593986869, 0.0003215808537788689, 0.0013427583035081625, 0.4913976490497589, 0.001826461055316031, 0.0011392956366762519, 0.0003445375186856836, 0.00018468966300133616, 0.00030858046375215054, 0.00044085789704695344, 0.0009231326985172927, 0.49129173159599304], [0.002939850790426135, 0.0005531003698706627, 0.0016929705161601305, 0.00045350485015660524, 0.0005009350716136396, 0.0037033669650554657, 0.0001537794159958139, 0.0003302709956187755, 0.4657132625579834, 0.011632434092462063, 0.001419806038029492, 0.012236066162586212, 0.006117582321166992, 0.0035453762393444777, 0.008101333864033222, 0.015246381983160973, 0.4656599760055542], [0.0008697846787981689, 0.03876110538840294, 0.8116664886474609, 0.0028138107154518366, 0.0003176196478307247, 0.0020559115801006556, 0.00010808309889398515, 0.0012973751872777939, 0.06517297774553299, 0.0005107528995722532, 0.005497978534549475, 0.00040624092798680067, 0.00025715981610119343, 0.0008760042837820947, 0.0013726482866331935, 0.0028307323809713125, 0.0651855319738388], [0.002932384144514799, 0.001202060142531991, 0.004318029619753361, 0.000601722567807883, 0.0003402053262107074, 0.0024965633638203144, 0.0001309834624407813, 0.0004605480935424566, 0.43529924750328064, 0.008781759068369865, 0.006061234045773745, 0.018651865422725677, 0.018963588401675224, 0.017608607187867165, 0.03521234542131424, 0.011660086922347546, 0.43527868390083313], [0.0002947629545815289, 8.013160550035536e-05, 0.0008749440312385559, 2.2814278054283932e-05, 1.1411410014261492e-05, 0.0003599145566113293, 5.216239514993504e-06, 7.26806465536356e-05, 0.46771079301834106, 0.0006527308723889291, 0.0014285106444731355, 0.004529457539319992, 0.008153524249792099, 0.01995600201189518, 0.02669931761920452, 0.0015057934215292335, 0.4676418900489807], [0.00038839029730297625, 0.0002121735451510176, 0.0016546635888516903, 1.7177873814944178e-05, 1.6769132344052196e-05, 7.291803922271356e-05, 3.3862354484881507e-06, 3.388873301446438e-05, 0.49221375584602356, 0.0004887273535132408, 0.0023083367850631475, 0.001150878262706101, 0.0029770766850560904, 0.002056026365607977, 0.0038805746007710695, 0.0003996133746113628, 0.4921257495880127], [0.0005696721491403878, 0.00016754624084569514, 0.0013661098200827837, 3.0145627533784136e-05, 2.614959521451965e-05, 0.00011952449131058529, 3.174215180479223e-06, 5.1975275709992275e-05, 0.486555278301239, 0.0006732653127983212, 0.0027948033530265093, 0.0031715119257569313, 0.007096114102751017, 0.0033131868112832308, 0.0068524060770869255, 0.0006988043896853924, 0.4865102767944336], [0.001554980524815619, 0.0010073400335386395, 0.010658119805157185, 0.00022103890660218894, 0.00018469037604518235, 0.002465177094563842, 4.299525244277902e-05, 0.00028053944697603583, 0.43429407477378845, 0.00404906552284956, 0.007025830913335085, 0.013269378803670406, 0.006431270856410265, 0.028431324288249016, 0.04766011983156204, 0.008167565800249577, 0.434256374835968], [0.0016335126711055636, 0.001691757352091372, 0.0028633354231715202, 0.0013467242242768407, 0.0004374742857180536, 0.00250390381552279, 0.0003214747703168541, 0.0013426014920696616, 0.4913995563983917, 0.001825762796215713, 0.0011391544248908758, 0.00034441237221471965, 0.00018459916464053094, 0.00030850368784740567, 0.00044070681906305254, 0.0009227529517374933, 0.49129363894462585]], [[0.004802422598004341, 0.04327290505170822, 0.4406757652759552, 0.01974538527429104, 0.03706861659884453, 0.12726028263568878, 0.01102712657302618, 0.060926999896764755, 0.09759535640478134, 0.0010732098016887903, 0.00477633997797966, 0.004354223143309355, 0.0075611998327076435, 0.021549830213189125, 0.01947927288711071, 0.0012218202464282513, 0.09760917723178864], [0.024918969720602036, 0.0366438664495945, 0.03995693847537041, 0.01301480084657669, 0.013736829161643982, 0.06795073300600052, 0.008111495524644852, 0.02620220184326172, 0.37319836020469666, 0.015649547800421715, 0.0015865013701841235, 0.0014273712877184153, 0.0011091805063188076, 0.0005717066815122962, 0.0005742243374697864, 0.002128882333636284, 0.37321847677230835], [0.019929062575101852, 0.013913124799728394, 0.07033034414052963, 0.00717996247112751, 0.005102917551994324, 0.014738578349351883, 0.0020695424173027277, 0.008932841941714287, 0.41734403371810913, 0.006230517290532589, 0.0032804086804389954, 0.001566218095831573, 0.002244587754830718, 0.0028147208504378796, 0.003891450585797429, 0.003037906251847744, 0.41739359498023987], [0.0049225445836782455, 0.03331628441810608, 0.029413171112537384, 0.016821231693029404, 0.031009098514914513, 0.576980471611023, 0.021983487531542778, 0.014413699507713318, 0.13102410733699799, 0.007210178766399622, 0.0002836399944499135, 0.0005375956534408033, 0.00020388355187606066, 0.00026844724197871983, 0.00024708264390937984, 0.0003567923849914223, 0.1310083568096161], [0.004226659424602985, 0.023975584656000137, 0.010864896699786186, 0.012158861383795738, 0.021514398977160454, 0.3112958073616028, 0.008783627301454544, 0.00891265831887722, 0.29474860429763794, 0.007526637054979801, 0.0002445836435072124, 0.0005103609873913229, 9.466143819736317e-05, 9.674780449131504e-05, 0.00011283303319942206, 0.00024979287991300225, 0.2946832776069641], [0.004654037766158581, 0.02252720482647419, 0.0074753486551344395, 0.011750046163797379, 0.02255662903189659, 0.13071687519550323, 0.009193984791636467, 0.009196486324071884, 0.38766252994537354, 0.004856901243329048, 0.0003617899492383003, 0.00041130336467176676, 0.0001566927821841091, 0.0002147807099390775, 0.00016747067274991423, 0.0004744065518025309, 0.38762351870536804], [0.004152404144406319, 0.014231369830667973, 0.009062220342457294, 0.008333803154528141, 0.026055270805954933, 0.3651374280452728, 0.01039719209074974, 0.004701258148998022, 0.2770838141441345, 0.0032267882488667965, 8.66769187268801e-05, 0.0002767474506981671, 4.3074851419078186e-05, 6.098686935729347e-05, 2.6956120564136654e-05, 8.592664380557835e-05, 0.2770380973815918], [0.021857190877199173, 0.02221902832388878, 0.022329362109303474, 0.025610214099287987, 0.04088062420487404, 0.5305039286613464, 0.034370992332696915, 0.012073270976543427, 0.1182389184832573, 0.017350083217024803, 0.002472481457516551, 0.007692005019634962, 0.004206728655844927, 0.006269238889217377, 0.007918941788375378, 0.0077732219360768795, 0.11823378503322601], [0.0017337921308353543, 0.0030861664563417435, 0.01025660801678896, 0.005325845908373594, 0.004743407946079969, 0.0043726046569645405, 0.0013555297628045082, 0.005132235586643219, 0.476494699716568, 0.001839584787376225, 0.0014997259713709354, 0.0012099746381863952, 0.0005585922044701874, 0.0013055087765678763, 0.0020755177829414606, 0.00253225932829082, 0.47647789120674133], [0.005156632512807846, 0.0037536039017140865, 0.0009086272912099957, 0.0023667102213948965, 0.0039019936230033636, 0.007949050515890121, 0.0007064175442792475, 0.0060774642042815685, 0.4031248390674591, 0.010361080057919025, 0.01743444800376892, 0.06903760135173798, 0.014082523994147778, 0.005928965285420418, 0.00888635590672493, 0.0372118204832077, 0.4031117558479309], [0.020703626796603203, 0.0038349353708326817, 0.008022149093449116, 0.0007702941074967384, 0.0006618727929890156, 0.0029190373606979847, 0.0002220144378952682, 0.004296736791729927, 0.3731485903263092, 0.04218515753746033, 0.08228074014186859, 0.031110359355807304, 0.015590585768222809, 0.014183164574205875, 0.014379311352968216, 0.012546231038868427, 0.3731452226638794], [0.02043827436864376, 0.00297157047316432, 0.002060101367533207, 0.0020266524516046047, 0.0015315841883420944, 0.007308500818908215, 0.0005509117036126554, 0.005090559367090464, 0.3903138339519501, 0.055433426052331924, 0.03458389639854431, 0.03879685699939728, 0.010790652595460415, 0.011912178248167038, 0.013224744237959385, 0.0127617958933115, 0.39020442962646484], [0.007665707264095545, 0.0008497973321937025, 0.000939651858061552, 0.0006695283809676766, 0.0005491375923156738, 0.003032625885680318, 0.00022678243112750351, 0.0044931089505553246, 0.38759922981262207, 0.013476496562361717, 0.018534790724515915, 0.051197607070207596, 0.04886180907487869, 0.022453969344496727, 0.03069416806101799, 0.02120506763458252, 0.3875504434108734], [0.003972369711846113, 0.0003475842531770468, 0.004646051209419966, 0.000189351529115811, 0.00012068887008354068, 0.00042042802670039237, 5.229484668234363e-05, 0.0005960733979009092, 0.31577935814857483, 0.009224594570696354, 0.02860410325229168, 0.021281154826283455, 0.06747666001319885, 0.06687156111001968, 0.15383942425251007, 0.010832159779965878, 0.3157462179660797], [0.006405148655176163, 0.0004619395767804235, 0.0032182387076318264, 0.0002953801886178553, 0.00019719215924851596, 0.0009006281034089625, 8.601732406532392e-05, 0.000995539128780365, 0.2914329469203949, 0.016873087733983994, 0.026423050090670586, 0.06542758643627167, 0.09191963076591492, 0.10732707381248474, 0.07904724776744843, 0.017607389017939568, 0.2913818061351776], [0.011955956928431988, 0.0012952210381627083, 0.003121613524854183, 0.0007634687353856862, 0.0012090912787243724, 0.011508745141327381, 0.000755888526327908, 0.0029435663018375635, 0.2396102249622345, 0.016590097919106483, 0.03856492042541504, 0.2682875096797943, 0.06995374709367752, 0.027016276493668556, 0.04017585888504982, 0.026673370972275734, 0.23957446217536926], [0.001733526703901589, 0.003085970412939787, 0.010256913490593433, 0.005324626807123423, 0.0047429935075342655, 0.00437204772606492, 0.001355079934000969, 0.005131586920469999, 0.4764973819255829, 0.0018392452038824558, 0.0014995927922427654, 0.001209583948366344, 0.0005584249156527221, 0.001305189449340105, 0.002075109863653779, 0.0025315717794001102, 0.47648102045059204]], [[0.013117813505232334, 0.008098403923213482, 0.010422585532069206, 0.010187382809817791, 0.004713926464319229, 0.006223341450095177, 0.0013900540070608258, 0.0031612920574843884, 0.278816282749176, 0.1533406674861908, 0.018616637215018272, 0.05333128944039345, 0.03856160119175911, 0.043811071664094925, 0.05566154792904854, 0.02177065797150135, 0.2787754535675049], [0.01857866160571575, 0.0334869883954525, 0.19755996763706207, 0.061560168862342834, 0.013692032545804977, 0.007148916833102703, 0.0007388664525933564, 0.006307287607342005, 0.3185655176639557, 0.004810902290046215, 0.010067527182400227, 0.0016736246179789305, 0.001253933529369533, 0.0005668008816428483, 0.0003800280101131648, 0.004981522914022207, 0.3186272084712982], [0.029682936146855354, 0.029349101707339287, 0.07013234496116638, 0.059802062809467316, 0.008564185351133347, 0.02735242433845997, 0.003952173516154289, 0.012651151977479458, 0.3595016896724701, 0.007054249756038189, 0.008204019628465176, 0.0027342899702489376, 0.002221735892817378, 0.004332819953560829, 0.0047174980863928795, 0.010111250914633274, 0.35963594913482666], [0.0077959210611879826, 0.028146687895059586, 0.01009969413280487, 0.04137321561574936, 0.023168833926320076, 0.024428246542811394, 0.004944842774420977, 0.016011575236916542, 0.4117893576622009, 0.008584678173065186, 0.004332812502980232, 0.0017546509625390172, 0.001383823691867292, 0.0005015212227590382, 0.0006448395433835685, 0.003256439231336117, 0.4117828905582428], [0.0023616384714841843, 0.0025101813953369856, 0.001981954788789153, 0.017642617225646973, 0.016993114724755287, 0.0628584772348404, 0.026610571891069412, 0.010981774888932705, 0.42253628373146057, 0.004521613474935293, 0.0005874623311683536, 0.003300200682133436, 0.001077298424206674, 0.0007348316721618176, 0.0009223945089615881, 0.0018239575438201427, 0.4225556254386902], [0.014427495189011097, 0.010286967270076275, 0.006035214755684137, 0.027604013681411743, 0.008493300527334213, 0.041072405874729156, 0.06672386825084686, 0.022101007401943207, 0.3874407708644867, 0.007566208951175213, 0.004074813332408667, 0.0014341933419927955, 0.0010749190114438534, 0.0015067352214828134, 0.0025543291121721268, 0.010188916698098183, 0.38741472363471985], [0.026588501408696175, 0.0037885294295847416, 0.0010902700014412403, 0.015293297357857227, 0.00928205344825983, 0.021101998165249825, 0.00847663078457117, 0.06032055616378784, 0.4168863594532013, 0.014265535399317741, 0.0007915281457826495, 0.00041516582132317126, 0.00019905800581909716, 0.00034425067133270204, 0.00028463194030337036, 0.0039726607501506805, 0.4168988764286041], [0.045723702758550644, 0.033884722739458084, 0.003029413754120469, 0.012300671078264713, 0.0076831188052892685, 0.0032175045926123857, 0.00438816100358963, 0.01879998855292797, 0.20053091645240784, 0.3998010456562042, 0.03413761034607887, 0.0030063919257372618, 0.005374548956751823, 0.0021507670171558857, 0.0029345527291297913, 0.02259133756160736, 0.2004455327987671], [0.00950670801103115, 0.006360482424497604, 0.006913545075803995, 0.006201249547302723, 0.002522949827834964, 0.001999116037040949, 0.001546689891256392, 0.0027654708828777075, 0.4664774537086487, 0.002863365225493908, 0.008714480325579643, 0.0023594358935952187, 0.002408387837931514, 0.0029252413660287857, 0.00513874227181077, 0.00484278192743659, 0.46645388007164], [0.008629594929516315, 0.001708197989501059, 0.002025236841291189, 0.0023719894234091043, 0.0008510857005603611, 0.0009804141009226441, 0.00013176919310353696, 0.0010573595063760877, 0.348469078540802, 0.038811374455690384, 0.05650472268462181, 0.06714165955781937, 0.017051519826054573, 0.037102315574884415, 0.02756950445473194, 0.04113469645380974, 0.3484596014022827], [0.0036961748264729977, 0.0006609916454181075, 0.006478509400039911, 0.0003824311716016382, 0.00019235412764828652, 0.0003311468753963709, 2.688347376533784e-05, 0.0003698018554132432, 0.4551027715206146, 0.001121414010412991, 0.024338943883776665, 0.02962563931941986, 0.009845007210969925, 0.0036482997238636017, 0.0026537631638348103, 0.006296379026025534, 0.4552295207977295], [0.0037085015792399645, 0.00023839814821258187, 0.00044611498015001416, 0.00015975686255842447, 0.00022645543504040688, 0.0004211831546854228, 0.0001540853118058294, 0.001110937213525176, 0.423181414604187, 0.00908377580344677, 0.007291960529983044, 0.04109862819314003, 0.021270181983709335, 0.03761274367570877, 0.022875383496284485, 0.00790230929851532, 0.42321833968162537], [0.0017346509266644716, 0.00027703019441105425, 0.00022470187104772776, 0.0008069750037975609, 0.00013695089728571475, 0.0004563125839922577, 6.025877155479975e-05, 0.0016847483348101377, 0.43454083800315857, 0.005768592935055494, 0.002900096820667386, 0.010208350606262684, 0.012509077787399292, 0.04577448591589928, 0.024502741172909737, 0.023809567093849182, 0.434604674577713], [0.0038286782801151276, 0.0004189589526504278, 0.0016265838639810681, 0.0004575164057314396, 0.0003479748556856066, 0.0005466233124025166, 0.0006431098445318639, 0.0009765605791471899, 0.3458881676197052, 0.00152682070620358, 0.01032771822065115, 0.007440901827067137, 0.029312364757061005, 0.034641120582818985, 0.18826401233673096, 0.027860963717103004, 0.34589195251464844], [0.009709269739687443, 0.0014678140869364142, 0.0013686555903404951, 0.0012886165641248226, 0.0003045746707357466, 0.0002003006375161931, 0.00017352910072077066, 0.0022574313916265965, 0.4187323749065399, 0.0013383610639721155, 0.0184189360588789, 0.002249507699161768, 0.0072153047658503056, 0.007377192378044128, 0.013753866776823997, 0.09537209570407867, 0.4187721014022827], [0.004442513920366764, 0.0018429121701046824, 0.0008071271586231887, 0.0004041954525746405, 0.00020296951697673649, 0.00022633881599176675, 6.789335748180747e-05, 0.0018520749872550368, 0.42731305956840515, 0.006970832124352455, 0.029111023992300034, 0.014330967329442501, 0.01756431721150875, 0.013669525273144245, 0.018036406487226486, 0.03582446649670601, 0.4273332357406616], [0.009503469802439213, 0.006356164813041687, 0.0069097778759896755, 0.006198044866323471, 0.002521409187465906, 0.0019983239471912384, 0.0015461619477719069, 0.0027641630731523037, 0.46649280190467834, 0.002862069755792618, 0.008709602989256382, 0.0023584114387631416, 0.0024072949308902025, 0.002924242988228798, 0.005137558560818434, 0.004841338377445936, 0.4664692282676697]], [[0.0014217473799362779, 0.4327671527862549, 0.12439285218715668, 0.15220020711421967, 0.029902581125497818, 0.11447388678789139, 0.046448271721601486, 0.07468608766794205, 0.007738347630947828, 0.0039823842234909534, 0.003657964523881674, 0.0002105834282701835, 6.279854278545827e-05, 4.7327528591267765e-05, 6.027510607964359e-05, 0.00020931052858941257, 0.007738148327916861], [0.0025363736785948277, 0.03541402518749237, 0.052925657480955124, 0.014418115839362144, 0.01893611252307892, 0.054413557052612305, 0.01979811303317547, 0.035387106239795685, 0.3818458914756775, 0.0013298604171723127, 0.0004945113323628902, 0.00016952953592408448, 7.105655095074326e-05, 6.787781603634357e-05, 7.845473010092974e-05, 0.00032202654983848333, 0.3817918002605438], [0.0027015546802431345, 0.006700333673506975, 0.043405238538980484, 0.003792858449742198, 0.0036352125462144613, 0.036592476069927216, 0.005310469307005405, 0.012500829994678497, 0.43899205327033997, 0.0013350893277674913, 0.0009313570917584002, 0.000807685952167958, 0.0005065089208073914, 0.0011528858449310064, 0.0018404115689918399, 0.0008356950711458921, 0.43895938992500305], [0.00540897436439991, 0.10127042233943939, 0.05591277405619621, 0.033410366624593735, 0.020175721496343613, 0.06627439707517624, 0.016734622418880463, 0.03981173783540726, 0.327175110578537, 0.004323293454945087, 0.001152380253188312, 0.00032795529114082456, 4.296662882552482e-05, 3.927437501261011e-05, 7.340604497585446e-05, 0.000773404142819345, 0.3270932137966156], [0.004826727323234081, 0.04516058787703514, 0.04640071094036102, 0.013324998319149017, 0.01076861098408699, 0.040280282497406006, 0.010642425157129765, 0.01808926649391651, 0.40218549966812134, 0.002842686837539077, 0.0008875089697539806, 0.0013959720963612199, 9.383770520798862e-05, 5.161189619684592e-05, 9.606620733393356e-05, 0.0009053338435478508, 0.4020480215549469], [0.0008109406917355955, 0.013139616698026657, 0.015460602939128876, 0.009605919010937214, 0.011555064469575882, 0.028167374432086945, 0.006068364717066288, 0.0039143855683505535, 0.45500457286834717, 0.0004680295241996646, 0.00021170727268327028, 0.0003027835919056088, 2.6208121198578738e-05, 1.822735612222459e-05, 3.400551213417202e-05, 0.00025985995307564735, 0.45495229959487915], [0.0017788712866604328, 0.02897207997739315, 0.02017119899392128, 0.01585901714861393, 0.01995980739593506, 0.02352507971227169, 0.007356503512710333, 0.004465160891413689, 0.4384469985961914, 0.0004845038056373596, 0.0003701139648910612, 0.00011911632464034483, 8.199156582122669e-06, 4.208972313790582e-06, 7.020726116024889e-06, 0.00013428495731204748, 0.43833789229393005], [0.006350433919578791, 0.11474436521530151, 0.027969256043434143, 0.15098193287849426, 0.11883902549743652, 0.1403542459011078, 0.1263056844472885, 0.009755566716194153, 0.14019428193569183, 0.01710766926407814, 0.002535186242312193, 0.0011205796618014574, 0.0005596016999334097, 0.0004692888760473579, 0.0008872764883562922, 0.0016481770435348153, 0.1401773989200592], [0.0005767003167420626, 0.007012310437858105, 0.009128198958933353, 0.0030264779925346375, 0.00312613183632493, 0.0033963299356400967, 0.0015526911010965705, 0.003860238939523697, 0.4834290146827698, 0.00020796949684154242, 0.0005166163900867105, 0.0001183771455544047, 0.0001405861257808283, 0.00010265725723002106, 0.00017407634004484862, 0.00023290878743864596, 0.48339858651161194], [0.009943000040948391, 0.08666341006755829, 0.05113058537244797, 0.15121519565582275, 0.04337833821773529, 0.19687271118164062, 0.04700572043657303, 0.24347195029258728, 0.041926655918359756, 0.03751019388437271, 0.010983506217598915, 0.019836317747831345, 0.0022527913097292185, 0.0011509857140481472, 0.0011464903363958001, 0.013586047105491161, 0.041926056146621704], [0.0014119517290964723, 0.7438477277755737, 0.18238483369350433, 0.007836255244910717, 0.0014915303327143192, 0.017385834828019142, 0.0015342158731073141, 0.013741030357778072, 0.009541365318000317, 0.002130868611857295, 0.007135801017284393, 0.00048347958363592625, 0.0005797253106720746, 0.00017572475189808756, 0.0002793150197248906, 0.000499148853123188, 0.00954129733145237], [0.0125378193333745, 0.026334155350923538, 0.03486799821257591, 0.008456194773316383, 0.00423596752807498, 0.08268411457538605, 0.005967812146991491, 0.07549329847097397, 0.14900922775268555, 0.2121109962463379, 0.05890762433409691, 0.07907682657241821, 0.004554620012640953, 0.0018162972992286086, 0.002661042381078005, 0.09230703860521317, 0.14897891879081726], [0.010746347717940807, 0.03254609927535057, 0.05686062201857567, 0.01049854513257742, 0.0016719589475542307, 0.013465404510498047, 0.00181117607280612, 0.023636385798454285, 0.18136626482009888, 0.10759623348712921, 0.07695320248603821, 0.02583392709493637, 0.025831174105405807, 0.005419582594186068, 0.009587625041604042, 0.23482336103916168, 0.18135206401348114], [0.008182276971638203, 0.0268693994730711, 0.061490096151828766, 0.0035834158770740032, 0.0014096557861194015, 0.01323088351637125, 0.0008793769520707428, 0.021163199096918106, 0.33670350909233093, 0.02327154017984867, 0.07586771249771118, 0.00998992845416069, 0.013206991367042065, 0.004559640306979418, 0.008705583401024342, 0.05418507754802704, 0.33670157194137573], [0.009336317889392376, 0.022399883717298508, 0.0800076499581337, 0.005171736236661673, 0.002033066237345338, 0.024112407118082047, 0.0014970602933317423, 0.028743445873260498, 0.22898197174072266, 0.07501322031021118, 0.08667917549610138, 0.03702550753951073, 0.02168935351073742, 0.011824038811028004, 0.016242511570453644, 0.12028791010379791, 0.22895477712154388], [0.014653075486421585, 0.09359308332204819, 0.06696392595767975, 0.030087772756814957, 0.008392314426600933, 0.04794955998659134, 0.00445424672216177, 0.0848001018166542, 0.13116835057735443, 0.08989185094833374, 0.2309030294418335, 0.01841660402715206, 0.006168010178953409, 0.0034973679576069117, 0.004369367379695177, 0.03351617977023125, 0.131175234913826], [0.0005765205714851618, 0.007011388894170523, 0.009128485806286335, 0.003025729674845934, 0.0031256552319973707, 0.0033960165455937386, 0.0015523354522883892, 0.00385962869040668, 0.483430951833725, 0.00020788029360119253, 0.0005164339672774076, 0.00011835042823804542, 0.0001405497023370117, 0.00010263162403134629, 0.00017403013771399856, 0.00023278914159163833, 0.48340076208114624]], [[0.0054621268063783646, 0.010775531642138958, 0.010822338983416557, 0.0013390656094998121, 0.00243496079929173, 0.00045186441275291145, 0.0019211984472349286, 0.002204312477260828, 0.39071816205978394, 0.026501759886741638, 0.10900821536779404, 0.005289906170219183, 0.011000261642038822, 0.004237881861627102, 0.007327502127736807, 0.01974298804998398, 0.39076194167137146], [0.005540849175304174, 0.007657076232135296, 0.005999905988574028, 0.0009645955287851393, 0.0008379403734579682, 0.0003889902727678418, 0.00033875813824124634, 0.004134131595492363, 0.4738336503505707, 0.002655788091942668, 0.012576981447637081, 0.001038345624692738, 0.0007706217584200203, 0.0007471159915439785, 0.0014480231329798698, 0.007153247948735952, 0.47391408681869507], [0.015541911125183105, 0.0068945568054914474, 0.02948879264295101, 0.002800110261887312, 0.0017331276321783662, 0.0015955963172018528, 0.0009080298477783799, 0.003400082467123866, 0.4429281949996948, 0.004179005045443773, 0.028227677568793297, 0.004841392394155264, 0.0027231143321841955, 0.0038517233915627003, 0.0034703370183706284, 0.004359300248324871, 0.44305703043937683], [0.004030806943774223, 0.0023721149191260338, 0.004427744075655937, 0.004131880588829517, 0.0042313700541853905, 0.0003483241889625788, 0.0005506584420800209, 0.0012992547126486897, 0.46475949883461, 0.0011937768431380391, 0.03412598744034767, 0.004045457113534212, 0.00038871620199643075, 0.0008475618669763207, 0.0017787367105484009, 0.006578113883733749, 0.4648900330066681], [0.0045615751296281815, 0.000625844462774694, 0.0009384976583532989, 0.001587355276569724, 0.052836935967206955, 0.0010898241307586432, 0.0009035097900778055, 0.0004805387288797647, 0.4556460380554199, 0.0008434260380454361, 0.007327162194997072, 0.014572212472558022, 0.000952302769292146, 0.0009939376031979918, 0.0002982941805385053, 0.0005160043947398663, 0.45582640171051025], [0.003065963974222541, 0.00030861934646964073, 0.00260927714407444, 0.0003185052773915231, 0.0013434437569230795, 0.011038393713533878, 0.0030781454406678677, 0.0016100298380479217, 0.47997310757637024, 0.000791336118709296, 0.0029782289639115334, 0.002553225727751851, 0.002838377607986331, 0.004467496648430824, 0.0021496093831956387, 0.0007641137926839292, 0.4801120460033417], [0.003937758971005678, 0.0009687698911875486, 0.0025841405149549246, 0.00105827406514436, 0.0017189363716170192, 0.0025435893330723047, 0.04865572601556778, 0.0019228439778089523, 0.45894601941108704, 0.0011991563951596618, 0.01051073893904686, 0.0014299608301371336, 0.0003771988849621266, 0.0006182062206789851, 0.0015479909488931298, 0.002920611761510372, 0.4590602517127991], [0.0012521537719294429, 0.00136866036336869, 0.0011505135335028172, 0.00061587686650455, 0.0010837919544428587, 0.00032870942959561944, 0.0015233196318149567, 0.009442169219255447, 0.4743685722351074, 0.0032608904875814915, 0.0023852873127907515, 0.0005035788635723293, 0.0003850368957500905, 0.001196642522700131, 0.0020421657245606184, 0.024681614711880684, 0.47441110014915466], [0.0008236513822339475, 0.000444251811131835, 0.0021578792948275805, 0.0002792058512568474, 0.0002449047169648111, 0.00033739025820977986, 0.0001881759671960026, 0.0008484295685775578, 0.495647668838501, 0.0004577460349537432, 0.0006627468392252922, 0.00020130944903939962, 0.0002016120561165735, 0.0006469369982369244, 0.0004911141586489975, 0.0006841516005806625, 0.49568289518356323], [0.013037633150815964, 0.018690086901187897, 0.004026381298899651, 0.004426171537488699, 0.0033282272052019835, 0.005436718929558992, 0.0027315388433635235, 0.01824168488383293, 0.42915579676628113, 0.05087289959192276, 0.0041920156218111515, 0.002957636956125498, 0.0007176595972850919, 0.0025587647687643766, 0.0038630410563200712, 0.006566693540662527, 0.42919713258743286], [0.025324296206235886, 0.147345632314682, 0.057872604578733444, 0.017510246485471725, 0.007632342632859945, 0.00196324591524899, 0.0030827131122350693, 0.005808958318084478, 0.33767402172088623, 0.00392056442797184, 0.043076906353235245, 0.0011429940350353718, 0.0013255821540951729, 0.0011679292656481266, 0.0032028909772634506, 0.004219250753521919, 0.33772990107536316], [0.00488286791369319, 0.0014228641521185637, 0.0014186428161337972, 0.0016192320035770535, 0.006347362417727709, 0.003868976142257452, 0.0008083171560429037, 0.0023226921912282705, 0.37939590215682983, 0.0016564402030780911, 0.003364108968526125, 0.20521804690361023, 0.002826505806297064, 0.0033466373570263386, 0.0011116265086457133, 0.000903092441149056, 0.37948673963546753], [0.008429301902651787, 0.0014230565866455436, 0.0018184679793193936, 0.0005790888681076467, 0.0005666679935529828, 0.002539448207244277, 0.0003403763403184712, 0.0008198717259801924, 0.4670635461807251, 0.0010416965233162045, 0.003266405314207077, 0.0022578921634703875, 0.03571547195315361, 0.003969886340200901, 0.0025147718843072653, 0.0004118141660001129, 0.46724221110343933], [0.00721557205542922, 0.0016549703432247043, 0.0027384429704397917, 0.0007532829768024385, 0.00025981050566770136, 0.0031068362295627594, 0.00020074972417205572, 0.0029467649292200804, 0.47148194909095764, 0.0014773086877539754, 0.0010916618630290031, 0.0017898738151416183, 0.0017837052000686526, 0.026358338072896004, 0.004297489766031504, 0.0012102590408176184, 0.47163283824920654], [0.005021656863391399, 0.001859129755757749, 0.004142876714468002, 0.0022685411386191845, 0.00035529042361304164, 0.00232604518532753, 0.0007750412332825363, 0.004323585424572229, 0.4724622666835785, 0.0017799192573875189, 0.001966010080650449, 0.0009916526032611728, 0.0009251998271793127, 0.005796909797936678, 0.01794496551156044, 0.004505910910665989, 0.47255510091781616], [0.008154839277267456, 0.02595994435250759, 0.006805789656937122, 0.003566473489627242, 0.0012965814676135778, 0.0010429797694087029, 0.0018441297579556704, 0.023445017635822296, 0.4350196421146393, 0.005314759910106659, 0.00759453559294343, 0.0008125887834466994, 0.0007174907950684428, 0.0035929169971495867, 0.005824682302772999, 0.033950477838516235, 0.43505698442459106], [0.0008235423010773957, 0.00044418280594982207, 0.002157955663278699, 0.0002792046871036291, 0.0002449402236379683, 0.00033743807580322027, 0.00018814951181411743, 0.0008484559948556125, 0.49564844369888306, 0.00045763739035464823, 0.0006625339738093317, 0.00020129949552938342, 0.0002016184153035283, 0.0006469786749221385, 0.0004910673596896231, 0.0006840649293735623, 0.4956824779510498]]], [[[0.005732377991080284, 0.3514588177204132, 0.2964673340320587, 0.06345114856958389, 0.012595510110259056, 0.025448625907301903, 0.0077896867878735065, 0.04899793863296509, 0.039190519601106644, 0.015181167051196098, 0.037044424563646317, 0.007308067753911018, 0.008211001753807068, 0.001809056499041617, 0.00350956036709249, 0.03661438822746277, 0.0391903892159462], [0.0005831412854604423, 0.005897948984056711, 0.005931115243583918, 0.002548228483647108, 0.00184024462942034, 0.0020030317828059196, 0.0011322355130687356, 0.00522688589990139, 0.485613614320755, 0.0005153777310624719, 0.0016568899154663086, 0.00028812288655899465, 7.073071174090728e-05, 0.00011156703840242699, 7.928682316560298e-05, 0.0008843469549901783, 0.4856173098087311], [0.006051767151802778, 0.025484049692749977, 0.014306224882602692, 0.018225982785224915, 0.022202614694833755, 0.018330147489905357, 0.02057119645178318, 0.05229593440890312, 0.3860950767993927, 0.004677866119891405, 0.013790030032396317, 0.003182276152074337, 0.0027174786664545536, 0.0023203850723803043, 0.0023720802273601294, 0.021273797377943993, 0.386103093624115], [0.0022077858448028564, 0.006235931068658829, 0.008990605361759663, 0.0028674642089754343, 0.0013845654902979732, 0.0013887172099202871, 0.0011729495599865913, 0.0041052792221307755, 0.483561247587204, 0.0006579301552847028, 0.00221068924292922, 0.0003203283413313329, 0.00013618030061479658, 5.894057539990172e-05, 7.135565829230472e-05, 0.0010692396899685264, 0.48356056213378906], [0.0005427972064353526, 0.002994760638102889, 0.002723918529227376, 0.0009661453659646213, 0.001360641443170607, 0.0007815246935933828, 0.0007203997811302543, 0.0019217494409531355, 0.4933844804763794, 0.00012822668941225857, 0.0005460653337650001, 0.00011933306814171374, 4.748602441395633e-05, 2.402633435849566e-05, 2.608287650218699e-05, 0.0003296727081760764, 0.49338260293006897], [0.0010129687143489718, 0.007765775080770254, 0.004310577176511288, 0.0019061594503000379, 0.0028310746420174837, 0.003936925902962685, 0.0023409686982631683, 0.007053268142044544, 0.48249849677085876, 0.00044314799015410244, 0.001351499930024147, 0.00033148686634376645, 0.00018409447511658072, 0.00011737001477740705, 0.00011431476013967767, 0.0013041032943874598, 0.48249757289886475], [0.0002752021246124059, 0.0020299421157687902, 0.0017969366163015366, 0.000838438339997083, 0.00126757996622473, 0.0009055556729435921, 0.001063876785337925, 0.0012842414434999228, 0.4949764311313629, 0.00012654908641707152, 0.0002103675651596859, 7.829531386960298e-05, 9.834147931542248e-06, 3.648479150797357e-06, 7.4688073254947085e-06, 0.00015460114809684455, 0.49497124552726746], [0.006205603946000338, 0.02894463762640953, 0.03254945948719978, 0.006254755426198244, 0.008885656483471394, 0.01554496306926012, 0.010654150508344173, 0.019698526710271835, 0.4201321303844452, 0.005831683054566383, 0.005642343312501907, 0.0041975583881139755, 0.0032122544944286346, 0.0011955649824813008, 0.003001833101734519, 0.007913363166153431, 0.4201355278491974], [0.01651868410408497, 0.201225146651268, 0.10876559466123581, 0.07697559893131256, 0.0358927920460701, 0.05594801902770996, 0.053777437657117844, 0.042877811938524246, 0.08794908225536346, 0.043479740619659424, 0.06669101864099503, 0.018756907433271408, 0.02486284449696541, 0.01193234696984291, 0.01986880972981453, 0.046529270708560944, 0.08794885128736496], [0.005237212870270014, 0.008204932324588299, 0.006721633020788431, 0.003457236336544156, 0.0009096243302337825, 0.0022951653227210045, 0.0014071743935346603, 0.004623871762305498, 0.45259833335876465, 0.016047505661845207, 0.005976941902190447, 0.01417023129761219, 0.005539620760828257, 0.0032766296062618494, 0.005577230826020241, 0.011365116573870182, 0.4525914192199707], [0.0015229549026116729, 0.0012927246280014515, 0.006463420111685991, 0.0007905112579464912, 0.0005120253772474825, 0.0020386299584060907, 0.00032930023735389113, 0.0038861543871462345, 0.48021435737609863, 0.003572792513296008, 0.0025588429998606443, 0.004928890150040388, 0.0022167316637933254, 0.0035262969322502613, 0.002239897148683667, 0.0036948949564248323, 0.48021137714385986], [0.003779294667765498, 0.0022959159687161446, 0.003394491970539093, 0.0005672530387528241, 0.00046678452054038644, 0.0006091655814088881, 0.00021471164654940367, 0.0035200235433876514, 0.45558834075927734, 0.005751579534262419, 0.012999902479350567, 0.02065327949821949, 0.009368163533508778, 0.0033462520223110914, 0.0043659815564751625, 0.01749434880912304, 0.45558443665504456], [0.001026890822686255, 0.0014788956614211202, 0.001881602220237255, 0.00029091897886246443, 0.0003161149797961116, 0.0003643568779807538, 7.497551996493712e-05, 0.002344898646697402, 0.4841398000717163, 0.0013726098695769906, 0.0038558829110115767, 0.0041435458697378635, 0.004675861448049545, 0.0021155723370611668, 0.0016229794127866626, 0.006166336592286825, 0.4841287136077881], [0.0005873802583664656, 0.001616647350601852, 0.0024820810649544, 0.00015130001702345908, 0.00011801149958046153, 0.00048023794079199433, 4.3296000512782484e-05, 0.0012299279915168881, 0.4861294627189636, 0.001728222006931901, 0.006255460437387228, 0.0021400803234428167, 0.0025567286647856236, 0.004833409562706947, 0.00113230652641505, 0.002396430354565382, 0.48611903190612793], [0.001079473178833723, 0.002940128790214658, 0.006113069597631693, 0.0005145452450960875, 0.00025237377849407494, 0.0008021829416975379, 0.00014207401545718312, 0.002515962580218911, 0.4718865752220154, 0.0041077290661633015, 0.011648755520582199, 0.005741051398217678, 0.005975864361971617, 0.003786431858316064, 0.002050690818578005, 0.00856279768049717, 0.4718802869319916], [0.006499884184449911, 0.006831463426351547, 0.027302555739879608, 0.0019565920811146498, 0.0003006450133398175, 0.0008454597555100918, 0.0002922608400695026, 0.005557238589972258, 0.41151976585388184, 0.0067992680706083775, 0.040100276470184326, 0.008731737732887268, 0.007158646825700998, 0.007498839404433966, 0.007007658015936613, 0.05007214844226837, 0.4115254580974579], [0.016518589109182358, 0.2012253850698471, 0.10876526683568954, 0.07697532325983047, 0.0358927883207798, 0.05594798922538757, 0.053777195513248444, 0.04287824034690857, 0.08795088529586792, 0.04347857087850571, 0.06669024378061295, 0.018756138160824776, 0.02486267313361168, 0.011932287365198135, 0.019868843257427216, 0.04652900993824005, 0.08795066177845001]], [[0.012525881640613079, 0.04398968070745468, 0.02303292043507099, 0.028735680505633354, 0.05447067320346832, 0.02095254696905613, 0.013736053369939327, 0.014820651151239872, 0.2374809831380844, 0.03010939247906208, 0.06556187570095062, 0.049282003194093704, 0.05331811308860779, 0.01583646610379219, 0.024575941264629364, 0.07409147918224335, 0.2374797910451889], [0.0024372937623411417, 0.134346604347229, 0.07361678034067154, 0.02018393948674202, 0.02191765606403351, 0.012914825230836868, 0.012561282142996788, 0.010130390524864197, 0.32136479020118713, 0.012248959392309189, 0.01814456470310688, 0.006313006859272718, 0.010171320289373398, 0.0025753118097782135, 0.005846621468663216, 0.01385420747101307, 0.32137244939804077], [0.0022742741275578737, 0.01674554869532585, 0.1313985139131546, 0.0064729610458016396, 0.009539332240819931, 0.04080741107463837, 0.0053956652991473675, 0.0058334264904260635, 0.3513639271259308, 0.004868340212851763, 0.01493094302713871, 0.0028643771074712276, 0.008764074184000492, 0.016498828306794167, 0.020793871954083443, 0.010085796006023884, 0.35136276483535767], [0.004033764358609915, 0.0934067890048027, 0.017098961398005486, 0.23926609754562378, 0.025055259466171265, 0.02209092676639557, 0.017848674207925797, 0.02969762496650219, 0.2323877215385437, 0.010440210811793804, 0.016172656789422035, 0.019009361043572426, 0.0034970883280038834, 0.0017230180092155933, 0.0068774898536503315, 0.029006443917751312, 0.23238806426525116], [0.0027077263221144676, 0.02353522926568985, 0.010064241476356983, 0.014403527602553368, 0.46600544452667236, 0.029868287965655327, 0.027744952589273453, 0.0025174468755722046, 0.18897020816802979, 0.002408346626907587, 0.004377763718366623, 0.027403753250837326, 0.006692078895866871, 0.0008054658537730575, 0.0019218800589442253, 0.0015989654930308461, 0.18897461891174316], [0.0008461983525194228, 0.012745287269353867, 0.012791633605957031, 0.010122657753527164, 0.020089758560061455, 0.3043075501918793, 0.02599339187145233, 0.002321284031495452, 0.2897864878177643, 0.0013545018155127764, 0.0016651070909574628, 0.00969926081597805, 0.007144162431359291, 0.003859245916828513, 0.005632257089018822, 0.001859018811956048, 0.2897820770740509], [0.0022274802904576063, 0.024129878729581833, 0.018129782751202583, 0.01143691223114729, 0.02954508364200592, 0.059192776679992676, 0.5413843989372253, 0.005082998424768448, 0.1447935700416565, 0.0016921827336773276, 0.0028813534881919622, 0.004716459661722183, 0.0023062152322381735, 0.0013718843692913651, 0.004138705786317587, 0.00217791018076241, 0.14479246735572815], [0.0007924042292870581, 0.004342886619269848, 0.0147187989205122, 0.001271353685297072, 0.005935266613960266, 0.0057135592214763165, 0.0023225632030516863, 0.008487299084663391, 0.44882526993751526, 0.009427139535546303, 0.003554626600816846, 0.008465141989290714, 0.003829637309536338, 0.00869431346654892, 0.006292673293501139, 0.018498538061976433, 0.44882848858833313], [0.017075542360544205, 0.04165670648217201, 0.09032362699508667, 0.04640958830714226, 0.05838962271809578, 0.12241877615451813, 0.04562798887491226, 0.03744145482778549, 0.06261170655488968, 0.041652701795101166, 0.042466986924409866, 0.041372764855623245, 0.054647766053676605, 0.12319710105657578, 0.07539340108633041, 0.03670293837785721, 0.06261132657527924], [0.003205417888239026, 0.011904819868505001, 0.012091731652617455, 0.006897874176502228, 0.006012268364429474, 0.008998489007353783, 0.007844949141144753, 0.004762975033372641, 0.3378387689590454, 0.15228553116321564, 0.01657586544752121, 0.016285276040434837, 0.024118781089782715, 0.003952993080019951, 0.005927578080445528, 0.04346243292093277, 0.3378344178199768], [0.002724470105022192, 0.010024412535130978, 0.020794983953237534, 0.0012117858277633786, 0.004923355299979448, 0.002882680157199502, 0.0018071690574288368, 0.0013564227847382426, 0.44120553135871887, 0.008368640206754208, 0.012222128920257092, 0.01048631314188242, 0.010790479369461536, 0.00938624981790781, 0.015173789113759995, 0.005441887769848108, 0.4411996304988861], [0.0008884118869900703, 0.004966572392731905, 0.002345796674489975, 0.0038140511605888605, 0.029633598402142525, 0.016497116535902023, 0.003562374971807003, 0.002009723801165819, 0.274200439453125, 0.0027811340987682343, 0.0029459157958626747, 0.3134748041629791, 0.04021326079964638, 0.012165484018623829, 0.011341501027345657, 0.0049714939668774605, 0.27418839931488037], [0.0013292423682287335, 0.0031741235870867968, 0.004420950077474117, 0.0005869693122804165, 0.004190822131931782, 0.004853463731706142, 0.0027528819628059864, 0.0005065901787020266, 0.18304698169231415, 0.0037007001228630543, 0.00225565442815423, 0.02467900700867176, 0.5225248336791992, 0.023075195029377937, 0.029583530500531197, 0.006277815438807011, 0.1830413043498993], [0.0011934485519304872, 0.0011972703505307436, 0.008055170997977257, 0.000421518343500793, 0.0007108537829481065, 0.006399841513484716, 0.0005738665931858122, 0.0006422411534003913, 0.3648245334625244, 0.0005503998836502433, 0.001250285655260086, 0.0036745623219758272, 0.011885044164955616, 0.18483692407608032, 0.04650628939270973, 0.002467802260071039, 0.36480993032455444], [0.0035652942024171352, 0.002929875161498785, 0.00750355701893568, 0.003339452436193824, 0.0029645191971212626, 0.018696559593081474, 0.007979441434144974, 0.002393589820712805, 0.3285079300403595, 0.002056811936199665, 0.0036669259425252676, 0.01678227074444294, 0.019413670524954796, 0.07943206280469894, 0.16439281404018402, 0.00788420531898737, 0.3284910023212433], [0.007000735029578209, 0.01993590034544468, 0.005948950070887804, 0.009566698223352432, 0.003581451019272208, 0.0037530423142015934, 0.003943718038499355, 0.014704895205795765, 0.16458885371685028, 0.06221707910299301, 0.014026223681867123, 0.05116696655750275, 0.05257246643304825, 0.016880260780453682, 0.025000395253300667, 0.3805259168148041, 0.16458648443222046], [0.017075348645448685, 0.041656214743852615, 0.09032460302114487, 0.04640873521566391, 0.058390405029058456, 0.1224188581109047, 0.04562682658433914, 0.03744121640920639, 0.06261271983385086, 0.041652072221040726, 0.042466502636671066, 0.04137236252427101, 0.05464804917573929, 0.12319736182689667, 0.0753936842083931, 0.03670267015695572, 0.06261233985424042]], [[0.02255246601998806, 0.016537176445126534, 0.19021019339561462, 0.05639459565281868, 0.010413448326289654, 0.009903442114591599, 0.01795833371579647, 0.03141360729932785, 0.014352582395076752, 0.0074180252850055695, 0.4516300857067108, 0.018311072140932083, 0.014141831547021866, 0.010655286721885204, 0.046470582485198975, 0.06728436797857285, 0.014353012666106224], [0.0051886700093746185, 0.05415106564760208, 0.015387012623250484, 0.007505962625145912, 0.0021845127921551466, 0.023573867976665497, 0.005414517596364021, 0.08547712862491608, 0.38570675253868103, 0.004522663541138172, 0.005325814243406057, 0.0003068078658543527, 0.0006961135077290237, 0.003771910211071372, 0.004824344534426928, 0.010274983011186123, 0.38568779826164246], [0.006280183792114258, 0.457738995552063, 0.07577209174633026, 0.026058992370963097, 0.014405171386897564, 0.016351960599422455, 0.0043957652524113655, 0.007036853581666946, 0.15638478100299835, 0.004735412076115608, 0.04083384573459625, 0.003947857301682234, 0.003733963705599308, 0.010412978008389473, 0.006634787190705538, 0.008894695900380611, 0.15638169646263123], [0.011539377272129059, 0.09949619323015213, 0.1040518581867218, 0.05344853177666664, 0.009582693688571453, 0.2608286142349243, 0.050707630813121796, 0.0085514010861516, 0.16759783029556274, 0.0026775398291647434, 0.021397093310952187, 0.0012701137457042933, 0.004175036679953337, 0.010991677641868591, 0.023143569007515907, 0.002945619635283947, 0.16759516298770905], [0.02973167598247528, 0.07690531015396118, 0.047165174037218094, 0.2296413630247116, 0.0742604061961174, 0.10394757241010666, 0.019687842577695847, 0.0037941480986773968, 0.18572740256786346, 0.011022750288248062, 0.006715601310133934, 0.0030377975199371576, 0.0033546590711921453, 0.0038184982258826494, 0.00878156628459692, 0.0066856760531663895, 0.18572252988815308], [0.003935239743441343, 0.032638661563396454, 0.013407550752162933, 0.024493277072906494, 0.05912860110402107, 0.15248402953147888, 0.022822679951786995, 0.00414193095639348, 0.3344057500362396, 0.0027189224492758512, 0.002054766984656453, 0.0016770398942753673, 0.0033895059023052454, 0.005474029574543238, 0.0016631443286314607, 0.001165649970062077, 0.3343992233276367], [0.00023041841632220894, 0.0014078803360462189, 0.0013588329311460257, 0.0012348921736702323, 0.0034998420160263777, 0.9151123762130737, 0.006135380361229181, 0.0001292256492888555, 0.03173745423555374, 0.0007335039554163814, 0.0001920120557770133, 0.00022399597219191492, 0.00024870727793313563, 0.004835208412259817, 0.0011713503627106547, 1.2268412319826894e-05, 0.03173675015568733], [0.004210618790239096, 0.010797660797834396, 0.03953735530376434, 0.031317777931690216, 0.012942219153046608, 0.18070651590824127, 0.22081008553504944, 0.0014434935292229056, 0.2072792649269104, 0.0025198671501129866, 0.024099325761198997, 0.006713059265166521, 0.016088169068098068, 0.003081422531977296, 0.02703266777098179, 0.00414266949519515, 0.2072777897119522], [0.03075684793293476, 0.050250958651304245, 0.10121431946754456, 0.05514764413237572, 0.044641293585300446, 0.047108590602874756, 0.030974021181464195, 0.08693362772464752, 0.03872528299689293, 0.026210786774754524, 0.10376135259866714, 0.03895127400755882, 0.034228626638650894, 0.04499056562781334, 0.05360503867268562, 0.17377375066280365, 0.03872605040669441], [0.03641815111041069, 0.008052133023738861, 0.0018064351752400398, 0.0030028284527361393, 0.0008273310377262533, 0.0025297130923718214, 0.002727655228227377, 0.5159849524497986, 0.1005997285246849, 0.0241503044962883, 0.0033834988716989756, 0.0022061350755393505, 0.003551473841071129, 0.013575058430433273, 0.011995721608400345, 0.16859211027622223, 0.10059676319360733], [0.018927721306681633, 0.010604850016534328, 0.010019751265645027, 0.005446989554911852, 0.0017387995030730963, 0.015060827136039734, 0.002329367445781827, 0.027639588341116905, 0.3296438157558441, 0.09403447806835175, 0.01991122029721737, 0.013736003078520298, 0.008927475661039352, 0.029324132949113846, 0.04000852629542351, 0.04301200062036514, 0.3296343982219696], [0.027998588979244232, 0.010734878480434418, 0.013445778749883175, 0.008256393484771252, 0.007886757142841816, 0.016468830406665802, 0.005183707922697067, 0.021891770884394646, 0.2058113068342209, 0.053535327315330505, 0.035523660480976105, 0.08833994716405869, 0.0796736627817154, 0.058038126677274704, 0.05007735639810562, 0.1113213524222374, 0.20581258833408356], [0.024024153128266335, 0.0024413098581135273, 0.007671091705560684, 0.002746078185737133, 0.005442376714199781, 0.009366065263748169, 0.0014803579542785883, 0.007753412704914808, 0.18916790187358856, 0.058506570756435394, 0.01770136132836342, 0.1720457524061203, 0.04430493712425232, 0.2029067575931549, 0.050709571689367294, 0.014567193575203419, 0.18916507065296173], [0.002812630496919155, 0.0019144911784678698, 0.0052632298320531845, 0.000284150562947616, 0.0019059226615354419, 0.0025077250320464373, 0.0006264394032768905, 0.0011376042384654284, 0.4189135432243347, 0.009348278865218163, 0.005259343422949314, 0.02028665691614151, 0.03277909755706787, 0.058848679065704346, 0.012434656731784344, 0.006771378219127655, 0.41890615224838257], [0.00345527078025043, 0.0012366781011223793, 0.002847040770575404, 0.00020404857059475034, 0.0014283418422564864, 0.01842554472386837, 0.0013994519831612706, 0.0015247557312250137, 0.12187078595161438, 0.009246139787137508, 0.0021591787226498127, 0.03268887475132942, 0.02692278102040291, 0.5951436161994934, 0.05675017833709717, 0.0028317251708358526, 0.12186546623706818], [0.0061354744248092175, 0.003449586918577552, 0.008863916620612144, 0.0025198073126375675, 0.0005928147002123296, 0.02298600971698761, 0.00788487121462822, 0.0038011176511645317, 0.2517220675945282, 0.009041408076882362, 0.011061213910579681, 0.010346817784011364, 0.029818782582879066, 0.08406944572925568, 0.27485084533691406, 0.021141648292541504, 0.25171419978141785], [0.030755406245589256, 0.050251420587301254, 0.10121684521436691, 0.05514812469482422, 0.044641029089689255, 0.04710926488041878, 0.03097490780055523, 0.08692710101604462, 0.0387251079082489, 0.026210878044366837, 0.10376205295324326, 0.038951434195041656, 0.03423009440302849, 0.04498929902911186, 0.05360664427280426, 0.17377449572086334, 0.03872588276863098]], [[0.04554121941328049, 0.009199986234307289, 0.0063534872606396675, 0.010801888071000576, 0.001969326054677367, 0.01824416220188141, 0.027314908802509308, 0.008589928038418293, 0.3695932626724243, 0.012321523390710354, 0.0057823676615953445, 0.010587123222649097, 0.005133056081831455, 0.038473568856716156, 0.03444083780050278, 0.026070941239595413, 0.36958232522010803], [0.006388530135154724, 0.011096514761447906, 0.015440454706549644, 0.010007442906498909, 0.00395668251439929, 0.029812294989824295, 0.010998351499438286, 0.005796106997877359, 0.44774049520492554, 0.002114752307534218, 0.000970024848356843, 0.000916947377845645, 0.0004213794891256839, 0.0017221391899511218, 0.0034923176281154156, 0.0013794493861496449, 0.44774603843688965], [0.009414441883563995, 0.026494426652789116, 0.06022033840417862, 0.017888369038701057, 0.014413007535040379, 0.018028074875473976, 0.01071783434599638, 0.015700355172157288, 0.3943559229373932, 0.0030113717075437307, 0.0059552849270403385, 0.00252044596709311, 0.003164339577779174, 0.00593807315453887, 0.006492985878139734, 0.01132645271718502, 0.3943582773208618], [0.0088624507188797, 0.016770992428064346, 0.008489384315907955, 0.0279600378125906, 0.010298780165612698, 0.1716640442609787, 0.12188942730426788, 0.007638775743544102, 0.3034001886844635, 0.005140735302120447, 0.001223384984768927, 0.0018318829825147986, 0.00040970585541799664, 0.003559007542207837, 0.004720765631645918, 0.0027475282549858093, 0.30339279770851135], [0.006954554468393326, 0.007336656097322702, 0.0025394682306796312, 0.005201582331210375, 0.005734742619097233, 0.03356388956308365, 0.00523295346647501, 0.00269103329628706, 0.4635368585586548, 0.0014110163319855928, 0.00015829451149329543, 0.0005777047481387854, 0.00011080861440859735, 0.0005434292834252119, 0.0007688202895224094, 0.00011086231097579002, 0.4635273516178131], [0.0073263514786958694, 0.01873069256544113, 0.0031164493411779404, 0.008841820992529392, 0.11086704581975937, 0.11712416261434555, 0.029057204723358154, 0.004409668035805225, 0.3437116742134094, 0.0014607772463932633, 0.00045140658039599657, 0.007177236024290323, 0.0012704264372587204, 0.0014691947726532817, 0.0009623391670174897, 0.00031864267657510936, 0.3437049686908722], [0.002099486766383052, 0.0037424040492624044, 0.001077237888239324, 0.0023204409517347813, 0.01250382699072361, 0.7251942157745361, 0.022480551153421402, 0.0012375111691653728, 0.11314277350902557, 0.0013801399618387222, 6.686729466309771e-05, 0.00027393829077482224, 4.0218885260401294e-05, 0.0008534585358574986, 0.0003895273548550904, 5.673698251484893e-05, 0.11314071714878082], [0.014805400744080544, 0.005912791937589645, 0.009252442978322506, 0.011960674077272415, 0.014281476847827435, 0.07294703274965286, 0.09243258833885193, 0.01328662782907486, 0.35832977294921875, 0.009634271264076233, 0.0018515965202823281, 0.002754193963482976, 0.002813354367390275, 0.0015979899326339364, 0.016356630250811577, 0.013453013263642788, 0.3583301901817322], [0.06075502187013626, 0.04756705090403557, 0.024505222216248512, 0.041119206696748734, 0.055909715592861176, 0.04023066163063049, 0.08756592869758606, 0.047822505235672, 0.10716397315263748, 0.0730045735836029, 0.043590791523456573, 0.07098162174224854, 0.05784333497285843, 0.013427472673356533, 0.033653624355793, 0.08769694715738297, 0.10716239362955093], [0.05291523039340973, 0.001984847243875265, 0.001994884107261896, 0.0008217752911150455, 0.0010112912859767675, 0.004462121520191431, 0.002114827511832118, 0.01088201068341732, 0.42574578523635864, 0.008098365738987923, 0.004711825400590897, 0.00586341880261898, 0.0011751024285331368, 0.0256133284419775, 0.017413906753063202, 0.009441502392292023, 0.42574962973594666], [0.009042135439813137, 0.0015484930481761694, 0.0107125174254179, 0.000604674220085144, 8.401161176152527e-05, 0.0026000775396823883, 0.0005113151855766773, 0.0016089691780507565, 0.43598538637161255, 0.0035414290614426136, 0.00770805636420846, 0.002135239774361253, 0.0014354768209159374, 0.04802033677697182, 0.02825295552611351, 0.01022831816226244, 0.4359806180000305], [0.04007783904671669, 0.001881256466731429, 0.0024513639509677887, 0.0006194608868099749, 0.0020508689340204, 0.008939762599766254, 0.0008169619832187891, 0.005018626339733601, 0.3767133951187134, 0.015994325280189514, 0.014044477604329586, 0.04408397525548935, 0.014529246836900711, 0.05312582477927208, 0.03202439844608307, 0.010926838032901287, 0.37670135498046875], [0.013736987486481667, 0.0011371597647666931, 0.004555847495794296, 0.0003044239419978112, 0.0003189755661878735, 0.010978755541145802, 0.00034805815084837377, 0.0018808480817824602, 0.2441849410533905, 0.005386872682720423, 0.005235855933278799, 0.01776091754436493, 0.006309798918664455, 0.3805254101753235, 0.05955587327480316, 0.0035995652433484793, 0.24417981505393982], [0.009031491354107857, 0.0023163161240518093, 0.013704449869692326, 0.0006354933721013367, 0.0006238433998078108, 0.00426264014095068, 0.0003713623736985028, 0.0014617580454796553, 0.22843414545059204, 0.005722798407077789, 0.007863953709602356, 0.014869583770632744, 0.03801451250910759, 0.21501068770885468, 0.22400610148906708, 0.005238768644630909, 0.22843213379383087], [0.008795831352472305, 0.0017278454033657908, 0.007302428595721722, 0.0005352278240025043, 0.0016677632229402661, 0.01279748696833849, 0.0014263754710555077, 0.0007649898761883378, 0.1651044487953186, 0.007080018520355225, 0.008906455710530281, 0.011133446358144283, 0.014726677909493446, 0.5179486870765686, 0.07256244868040085, 0.0024222692009061575, 0.16509759426116943], [0.02172226458787918, 0.0026696454733610153, 0.006795316468924284, 0.0023306121584028006, 0.00031043755006976426, 0.013657729141414165, 0.0035940948873758316, 0.003131263656541705, 0.306375116109848, 0.019295470789074898, 0.0281047485768795, 0.019133297726511955, 0.005344226956367493, 0.07714380323886871, 0.13694310188293457, 0.047081828117370605, 0.30636706948280334], [0.06075282767415047, 0.04756716638803482, 0.024505963549017906, 0.04111969843506813, 0.0559094063937664, 0.0402311272919178, 0.08756700903177261, 0.04782210290431976, 0.1071636900305748, 0.07300541549921036, 0.04359082877635956, 0.07098083198070526, 0.057844895869493484, 0.013427520170807838, 0.033653680235147476, 0.08769567310810089, 0.10716213285923004]], [[0.008072351105511189, 0.0970616415143013, 0.0479985736310482, 0.08865855634212494, 0.0073208580724895, 0.09594166278839111, 0.012942367233335972, 0.09502130001783371, 0.0848035141825676, 0.14559076726436615, 0.018215667456388474, 0.03304503858089447, 0.00839836522936821, 0.005301028955727816, 0.016955891624093056, 0.14986765384674072, 0.08480477333068848], [0.00029199241544120014, 0.002026236616075039, 0.009927725419402122, 0.0008937967359088361, 0.0009448904893361032, 0.002929836278781295, 0.0007016254239715636, 0.0032919365912675858, 0.48573508858680725, 0.0006974827847443521, 0.0005899725365452468, 0.0008616857812739909, 0.0009893173119053245, 0.00039425274007953703, 0.0009596660383976996, 0.0030321709346026182, 0.4857323169708252], [0.02352430857717991, 0.01939789205789566, 0.026672454550862312, 0.014020427130162716, 0.02560737356543541, 0.023188726976513863, 0.01013965718448162, 0.026953069493174553, 0.3564034402370453, 0.012372939847409725, 0.01160029973834753, 0.013721444644033909, 0.014973224140703678, 0.011269966140389442, 0.031242715194821358, 0.022506842389702797, 0.35640522837638855], [0.0004150836612097919, 0.0019953183364123106, 0.0048773144371807575, 0.0008740141638554633, 0.0006392838549800217, 0.0035667086485773325, 0.0012115498539060354, 0.0022593247704207897, 0.4888775646686554, 0.0007568212458863854, 0.0005134233506396413, 0.001029378385283053, 0.0007043932564556599, 0.00032219517743214965, 0.0010616589570418, 0.0020265160128474236, 0.48886939883232117], [0.0003148639516439289, 0.001826586900278926, 0.00446000462397933, 0.0005542636499740183, 0.0010195644572377205, 0.003765629604458809, 0.0013322030426934361, 0.0013798534637317061, 0.4904574155807495, 0.00042579194996505976, 0.0008980543352663517, 0.000635086209513247, 0.00027596595464274287, 0.00016428271192125976, 0.00040110538247972727, 0.0016371335368603468, 0.49045225977897644], [0.0014843936078250408, 0.008924184367060661, 0.02247716300189495, 0.003506989683955908, 0.0028947722166776657, 0.010724671185016632, 0.0046979463659226894, 0.005851625464856625, 0.45741426944732666, 0.0028790198266506195, 0.0022173512261360884, 0.0026488876901566982, 0.0033455409575253725, 0.0025797525886446238, 0.005034410394728184, 0.005907638464123011, 0.4574113190174103], [2.7402362320572138e-05, 0.0003943797782994807, 0.001930851023644209, 0.00012959442392457277, 0.00015123074990697205, 0.0006607579416595399, 0.0002049604954663664, 0.00030978998984210193, 0.4977753162384033, 6.23662126599811e-05, 6.033935278537683e-05, 9.53183916863054e-05, 6.083087282604538e-05, 3.3789641747716814e-05, 0.00011050031753256917, 0.00022006798826623708, 0.4977724552154541], [0.004204594995826483, 0.007253636140376329, 0.031624481081962585, 0.003278732532635331, 0.002680302830412984, 0.025581251829862595, 0.003637828165665269, 0.01038562972098589, 0.415348082780838, 0.006600002758204937, 0.0032698549330234528, 0.003010248066857457, 0.004509266000241041, 0.013244258239865303, 0.037509091198444366, 0.012514753267168999, 0.415348082780838], [0.02602558396756649, 0.11502430588006973, 0.13907042145729065, 0.08255820721387863, 0.03488663583993912, 0.05803551897406578, 0.033057402819395065, 0.10341104865074158, 0.02057592198252678, 0.06378481537103653, 0.05510827153921127, 0.02587272599339485, 0.033313728868961334, 0.06530474871397018, 0.07745680212974548, 0.04593774676322937, 0.020576084032654762], [5.040438554715365e-05, 0.0021397005766630173, 0.00895668100565672, 0.000232657344895415, 0.00023611639335285872, 0.002490076469257474, 0.00017552664212416857, 0.0028803490567952394, 0.48868849873542786, 0.0007212411146610975, 0.0007951589650474489, 0.00033781962702050805, 0.0006165526574477553, 0.0002109793567797169, 0.0007292263326235116, 0.00205221027135849, 0.48868685960769653], [0.0003890593652613461, 0.000693493231665343, 0.0018270111177116632, 0.0003544257197063416, 0.0003338260285090655, 0.0014996877871453762, 0.0002062274288618937, 0.0028919950127601624, 0.4902200996875763, 0.0007828455418348312, 0.00048663292545825243, 0.002222022507339716, 0.001564528327435255, 0.0006616450264118612, 0.0019176488276571035, 0.00373026542365551, 0.4902186989784241], [0.000591022486332804, 0.005605257581919432, 0.013088002800941467, 0.0014561369316652417, 0.0010515452595427632, 0.006971160415560007, 0.0012339871609583497, 0.007519707549363375, 0.46225234866142273, 0.0006260748486965895, 0.003564959391951561, 0.004405129235237837, 0.006562281399965286, 0.007454396691173315, 0.009721138514578342, 0.0056509170681238174, 0.46224597096443176], [6.160011980682611e-05, 0.0006976075819693506, 0.004922997672110796, 0.00011092484783148393, 0.00012217674520798028, 0.0016010383842512965, 8.087490277830511e-05, 0.0013516803737729788, 0.4888431429862976, 0.00014752670540474355, 0.0003647179401014, 0.0003796535893343389, 0.0030504059977829456, 0.0029147095046937466, 0.005478133447468281, 0.0010295744286850095, 0.4888433814048767], [0.000166792786330916, 0.0015397928655147552, 0.007944038137793541, 0.00013711916108150035, 0.00011599745630519465, 0.0006569723482243717, 0.00010692119394661859, 0.0019003862980753183, 0.4794031083583832, 7.980596274137497e-05, 0.0012594269355759025, 0.000490149948745966, 0.007886458188295364, 0.006780900061130524, 0.010846252553164959, 0.001284137717448175, 0.47940173745155334], [0.0002697754534892738, 0.003752934280782938, 0.008374127559363842, 0.00041484954999759793, 0.00019416961004026234, 0.0014724100474268198, 0.0003446594637352973, 0.0032207488548010588, 0.4782703220844269, 0.0001742991735227406, 0.0021611363627016544, 0.0009780267719179392, 0.005905776284635067, 0.005196746438741684, 0.0085239103063941, 0.0024807851295918226, 0.47826531529426575], [0.0003798682300839573, 0.0012959493324160576, 0.0038639199919998646, 0.0003593916189856827, 0.00022305548191070557, 0.002155375201255083, 0.0004883090150542557, 0.0025148089043796062, 0.48420318961143494, 0.0015796689549461007, 0.001260863384231925, 0.0017355747986584902, 0.0030727966222912073, 0.0015600246842950583, 0.005307079292833805, 0.005799435079097748, 0.4842008948326111], [0.026025498285889626, 0.11502338945865631, 0.13907143473625183, 0.08255776762962341, 0.03488677367568016, 0.058035679161548615, 0.033057257533073425, 0.10341017693281174, 0.020576415583491325, 0.06378437578678131, 0.055108219385147095, 0.025872791185975075, 0.033314116299152374, 0.06530431658029556, 0.07745753973722458, 0.04593765735626221, 0.02057657577097416]], [[0.04480824992060661, 0.03297186642885208, 0.03367864340543747, 0.025074781849980354, 0.022815730422735214, 0.061785053461790085, 0.016387585550546646, 0.06054631993174553, 0.16260534524917603, 0.1300194412469864, 0.06651037186384201, 0.0332353413105011, 0.012909423559904099, 0.01947220414876938, 0.036484528332948685, 0.07809310406446457, 0.16260197758674622], [0.0010800542077049613, 0.0026196117978543043, 0.00236563035286963, 0.002990636508911848, 0.003610211657360196, 0.008666242472827435, 0.0030203580390661955, 0.0036620297469198704, 0.48523062467575073, 0.00047510152217000723, 0.0004351798561401665, 0.00017731636762619019, 5.776186299044639e-05, 7.527276466134936e-05, 6.850382487755269e-05, 0.00023697895812802017, 0.4852283000946045], [0.0028387606143951416, 0.010509196668863297, 0.014097252860665321, 0.011465372517704964, 0.009642244316637516, 0.017164289951324463, 0.018239587545394897, 0.009173719212412834, 0.4459141194820404, 0.0013492201687768102, 0.004466199316084385, 0.001956002553924918, 0.0017063363920897245, 0.0011636473936960101, 0.0012486072955653071, 0.003153716679662466, 0.4459116756916046], [0.006845681928098202, 0.024603400379419327, 0.023730771616101265, 0.008230338804423809, 0.011099331080913544, 0.034567300230264664, 0.006372840143740177, 0.023801378905773163, 0.42740878462791443, 0.0034354578237980604, 0.001242276281118393, 0.00020345202938187867, 9.469996439293027e-05, 0.00032897398341447115, 0.00036875149817205966, 0.0002733061264734715, 0.4273930788040161], [0.002326486399397254, 0.014244666323065758, 0.007843371480703354, 0.006786344572901726, 0.001599332899786532, 0.01107979565858841, 0.0037854891270399094, 0.004203256219625473, 0.4735513925552368, 0.00065084348898381, 0.0002197490684920922, 2.4478951672790572e-05, 5.385138592828298e-06, 2.81820884993067e-05, 3.485134584479965e-05, 9.33391202124767e-05, 0.47352316975593567], [0.001679741544649005, 0.021424351260066032, 0.017392024397850037, 0.006670094095170498, 0.003000916913151741, 0.011584553867578506, 0.0038224360905587673, 0.007737676613032818, 0.4624473452568054, 0.000476703280583024, 0.0005946724559180439, 9.42141778068617e-05, 4.75219203508459e-05, 7.814638229319826e-05, 8.306042582262307e-05, 0.00042882596608251333, 0.46243762969970703], [0.0007834460702724755, 0.008080177940428257, 0.007475530728697777, 0.0026598579715937376, 0.002991017885506153, 0.00956282950937748, 0.0011644703336060047, 0.002033824101090431, 0.4824669659137726, 0.00015426297613885254, 0.0001202375497086905, 1.7891805327963084e-05, 4.126811290916521e-06, 9.059407602762803e-06, 8.434074516117107e-06, 2.0615409084712155e-05, 0.48244717717170715], [0.014767533168196678, 0.052761223167181015, 0.044683732092380524, 0.0628630742430687, 0.07557976245880127, 0.22296178340911865, 0.054364241659641266, 0.011514107696712017, 0.18531815707683563, 0.009669188410043716, 0.0156327486038208, 0.01374389324337244, 0.0038618582766503096, 0.0127576794475317, 0.02555658668279648, 0.008647947572171688, 0.18531642854213715], [0.0330275297164917, 0.08639538288116455, 0.0546003133058548, 0.0877411738038063, 0.06216031312942505, 0.0857500210404396, 0.0941241979598999, 0.05902399495244026, 0.052815992385149, 0.07450896501541138, 0.07156369090080261, 0.045038677752017975, 0.01917661540210247, 0.023329945281147957, 0.03058750182390213, 0.06733981519937515, 0.052815914154052734], [0.0019794555846601725, 0.0003886910271830857, 0.0012518479488790035, 0.000655899231787771, 0.00027334477636031806, 0.0012694813776761293, 0.00015124864876270294, 0.0007694882224313915, 0.4904400408267975, 0.0012937705032527447, 0.0046974350698292255, 0.002628656104207039, 0.000338042969815433, 0.0007595503702759743, 0.0009430511854588985, 0.0017310597468167543, 0.4904288053512573], [0.0024472924415022135, 0.00020496420620474964, 0.0007056475151330233, 0.00013834694982506335, 6.45154868834652e-05, 0.00045146237243898213, 7.685282616876066e-05, 0.0004525057156570256, 0.4852296710014343, 0.002709990134462714, 0.006238013505935669, 0.006091473624110222, 0.0009261975064873695, 0.0021920346189290285, 0.0018912581726908684, 0.004965838044881821, 0.4852139353752136], [0.005546792410314083, 0.0005828047287650406, 0.0036694954615086317, 0.0003416200925130397, 6.882456364110112e-05, 0.00035175622906535864, 6.822581781307235e-05, 0.0007095675682649016, 0.4506056010723114, 0.00519830035045743, 0.01881220005452633, 0.0057239956222474575, 0.0035084798000752926, 0.015229422599077225, 0.02350020594894886, 0.01549785677343607, 0.4505849778652191], [0.0010218201205134392, 0.00012966724170837551, 0.0016478016041219234, 6.639950152020901e-05, 3.411811121623032e-05, 0.00024926173500716686, 1.4227876818040386e-05, 0.00019059350597672164, 0.4902417063713074, 0.0006493504042737186, 0.005307517014443874, 0.0040329815819859505, 0.0012620934285223484, 0.001588954241015017, 0.002162833232432604, 0.0011746532982215285, 0.49022603034973145], [0.003501582657918334, 0.0002870450261980295, 0.0022576579358428717, 9.947834041668102e-05, 9.544621570967138e-05, 0.0002486974117346108, 5.0738548452500254e-05, 0.00028689997270703316, 0.4697716534137726, 0.0010977355996146798, 0.011452978476881981, 0.007928447797894478, 0.008680086582899094, 0.008618864230811596, 0.01085326261818409, 0.005007029976695776, 0.4697624742984772], [0.004642265383154154, 0.00047803219058550894, 0.005091956816613674, 0.0001775922137312591, 0.0001717896229820326, 0.00044829200487583876, 6.620610656682402e-05, 0.0005473966593854129, 0.4605410099029541, 0.001668676151894033, 0.02111070789396763, 0.0099417082965374, 0.007544473744928837, 0.007995713502168655, 0.012053235433995724, 0.006989119108766317, 0.4605318009853363], [0.003942297305911779, 0.0007076837355270982, 0.008048424497246742, 0.0001359309972031042, 0.0003430764772929251, 0.003192560514435172, 0.00015848218754399568, 0.0003523774794302881, 0.3234092891216278, 0.007097167428582907, 0.17125971615314484, 0.05100984871387482, 0.019227804616093636, 0.03558855503797531, 0.04701126366853714, 0.00511261448264122, 0.3234029710292816], [0.03302721306681633, 0.08639654517173767, 0.054601170122623444, 0.08774027228355408, 0.06215977296233177, 0.08575105667114258, 0.09412454068660736, 0.05902286618947983, 0.05281829461455345, 0.07450903952121735, 0.07156340032815933, 0.04503767564892769, 0.019176090136170387, 0.023329636082053185, 0.030587175861001015, 0.0673370286822319, 0.05281822755932808]], [[0.011812104843556881, 0.0302154291421175, 0.018373887985944748, 0.018068216741085052, 0.08424177020788193, 0.013353501446545124, 0.0195289496332407, 0.03867679834365845, 0.3335633873939514, 0.01228831335902214, 0.015609201975166798, 0.032111670821905136, 0.012758095748722553, 0.0061138225719332695, 0.004474921151995659, 0.015248680487275124, 0.3335612416267395], [0.006903189234435558, 0.6584064364433289, 0.016305482015013695, 0.03119552694261074, 0.004088892601430416, 0.0051860446110367775, 0.00527097936719656, 0.008094911463558674, 0.10295216739177704, 0.011894120834767818, 0.027632376179099083, 0.0011993215885013342, 0.0015239602653309703, 0.0035313968546688557, 0.005179283674806356, 0.007686154451221228, 0.10294996201992035], [0.0017404663376510143, 0.013024003244936466, 0.0638813003897667, 0.003166348207741976, 0.0034793063532561064, 0.007856602780520916, 0.0028877202421426773, 0.0008187157800421119, 0.4356599450111389, 0.0032003161031752825, 0.013003394939005375, 0.0014218718279153109, 0.0023714208509773016, 0.0047865635715425014, 0.004659844562411308, 0.0023978373501449823, 0.43564435839653015], [0.006643806584179401, 0.06759169697761536, 0.02867521345615387, 0.2508712410926819, 0.024001769721508026, 0.008677888661623001, 0.013167690485715866, 0.004075413569808006, 0.2602134346961975, 0.017179351300001144, 0.013721817173063755, 0.0033908530604094267, 0.0012215559836477041, 0.0019341274164617062, 0.01065319124609232, 0.02777142822742462, 0.26020947098731995], [0.00528071029111743, 0.012586739845573902, 0.012856184504926205, 0.02790392003953457, 0.26394325494766235, 0.010174043476581573, 0.013306442648172379, 0.001976189436390996, 0.288747102022171, 0.01774829439818859, 0.02144251950085163, 0.018231764435768127, 0.0022519645281136036, 0.0029482017271220684, 0.0046544428914785385, 0.007204971741884947, 0.288743257522583], [0.00331202638335526, 0.005231511313468218, 0.019232284277677536, 0.004627323243767023, 0.0071184998378157616, 0.17192494869232178, 0.03073861449956894, 0.008179274387657642, 0.3352595865726471, 0.003848151070997119, 0.0038266179617494345, 0.00354035128839314, 0.006275768391788006, 0.03807111084461212, 0.020371876657009125, 0.0031910173129290342, 0.33525094389915466], [0.004287909250706434, 0.007329930085688829, 0.007054599467664957, 0.013850883580744267, 0.017220720648765564, 0.01657622680068016, 0.3182325065135956, 0.014877156354486942, 0.27220070362091064, 0.010209450498223305, 0.004915465135127306, 0.004503487143665552, 0.0014725106302648783, 0.003366798395290971, 0.024533716961741447, 0.007173631340265274, 0.2721942663192749], [0.0003735290083568543, 0.003015767550095916, 0.0038555413484573364, 0.000892238283995539, 0.0009258562931790948, 0.0008289494435302913, 0.0013859763275831938, 0.015143233351409435, 0.4687168598175049, 0.006721692159771919, 0.0010464602382853627, 0.0018745623528957367, 0.0017630831571295857, 0.003176035126671195, 0.010428940877318382, 0.011136632412672043, 0.4687146246433258], [0.00581139512360096, 0.07754470407962799, 0.0825522243976593, 0.05138538032770157, 0.13005641102790833, 0.15425322949886322, 0.08939588069915771, 0.04182581230998039, 0.04756972938776016, 0.04192528501152992, 0.034860797226428986, 0.04306088015437126, 0.05358944088220596, 0.04296611621975899, 0.03213052451610565, 0.023502783849835396, 0.04756931960582733], [0.002896580845117569, 0.014758261851966381, 0.002491266932338476, 0.004866006784141064, 0.030563633888959885, 0.005324942991137505, 0.005761244799941778, 0.00210519228130579, 0.09599211812019348, 0.6503998637199402, 0.024209290742874146, 0.012130741961300373, 0.026340357959270477, 0.0034807685296982527, 0.006608541589230299, 0.016079507768154144, 0.0959915742278099], [0.016279008239507675, 0.04880198463797569, 0.014401706866919994, 0.011640900745987892, 0.01635190285742283, 0.005985967814922333, 0.0052584814839065075, 0.003336048685014248, 0.2932893931865692, 0.02742045558989048, 0.21441768109798431, 0.011885302141308784, 0.011931284330785275, 0.007051394321024418, 0.008538610301911831, 0.010119940154254436, 0.29329007863998413], [0.0018675478640943766, 0.002484744181856513, 0.002930452348664403, 0.0023932955227792263, 0.03036515973508358, 0.006949533708393574, 0.0023170437198132277, 0.0013139477232471108, 0.22744709253311157, 0.016735607758164406, 0.007536791265010834, 0.3523162603378296, 0.08877135813236237, 0.011215425096452236, 0.0065015750005841255, 0.011413875967264175, 0.2274402678012848], [0.0028463867492973804, 0.006073690019547939, 0.005173449870198965, 0.0015207557007670403, 0.004376476164907217, 0.010370762087404728, 0.0016389323864132166, 0.0016645870637148619, 0.25066664814949036, 0.011171055026352406, 0.013316246680915356, 0.0318145677447319, 0.34112435579299927, 0.027619145810604095, 0.03056422248482704, 0.009395316243171692, 0.2506634294986725], [0.0011369027197360992, 0.0021319715306162834, 0.004433348774909973, 0.0006461366428993642, 0.0007294805254787207, 0.0038345232605934143, 0.0003027234924957156, 0.0010619123931974173, 0.2531304359436035, 0.0012920188019052148, 0.00338237383402884, 0.01653657853603363, 0.010879944078624249, 0.4128892719745636, 0.03201054409146309, 0.0024761981330811977, 0.25312548875808716], [0.0036597352009266615, 0.004679576028138399, 0.009837104938924313, 0.0026691535022109747, 0.0023126774467527866, 0.004960954189300537, 0.003464070614427328, 0.007896728813648224, 0.29014158248901367, 0.009089658968150616, 0.008716607466340065, 0.016759952530264854, 0.0276813842356205, 0.07457028329372406, 0.22423134744167328, 0.01918860711157322, 0.2901404798030853], [0.008345572277903557, 0.017568746581673622, 0.008071848191320896, 0.025688832625746727, 0.010864408686757088, 0.002627164125442505, 0.0021679294295608997, 0.008575713261961937, 0.14276736974716187, 0.06415924429893494, 0.02072158455848694, 0.026198796927928925, 0.0295125599950552, 0.0070204283110797405, 0.024105645716190338, 0.4588351547718048, 0.142768993973732], [0.005811500363051891, 0.07754436135292053, 0.08255141228437424, 0.0513850562274456, 0.13005733489990234, 0.1542530506849289, 0.08939344435930252, 0.04182568937540054, 0.04757062718272209, 0.04192609712481499, 0.03486085683107376, 0.043061356991529465, 0.05358906835317612, 0.04296655207872391, 0.03213036432862282, 0.023502981290221214, 0.04757021740078926]], [[0.0019849087111651897, 0.08855611830949783, 0.2910389006137848, 0.04698808118700981, 0.009876053780317307, 0.05755433812737465, 0.012332109734416008, 0.1292228102684021, 0.10991544276475906, 0.027511289343237877, 0.00549459271132946, 0.005734039004892111, 0.012193862348794937, 0.02143184095621109, 0.04460465535521507, 0.02564733475446701, 0.1099136546254158], [0.0006276286439970136, 0.007423233240842819, 0.013901297003030777, 0.016408072784543037, 0.0030015490483492613, 0.006943728309124708, 0.0038856177125126123, 0.018543429672718048, 0.46218937635421753, 0.00046874547842890024, 0.0005420306697487831, 0.00021973784896545112, 0.00012679400970228016, 0.00028480769833549857, 0.0003197281330358237, 0.002932084258645773, 0.46218210458755493], [0.00610472122207284, 0.00838943850249052, 0.042543087154626846, 0.010234312154352665, 0.007001273334026337, 0.014032558538019657, 0.008933191187679768, 0.04775406792759895, 0.4150524437427521, 0.0044616395607590675, 0.003059007693082094, 0.0023303984198719263, 0.0019287529867142439, 0.0028897172305732965, 0.0021838685497641563, 0.008044886402785778, 0.4150567054748535], [0.0012368588941171765, 0.011893616989254951, 0.02590339630842209, 0.00960689689964056, 0.008803652599453926, 0.01800016686320305, 0.015136396512389183, 0.024688607081770897, 0.4402122497558594, 0.0007514867465943098, 0.0005996265099383891, 0.0002394503098912537, 8.770742715569213e-05, 0.00026368172257207334, 0.0004236908571328968, 0.0019566179253160954, 0.44019609689712524], [0.0011976668611168861, 0.010508932173252106, 0.010565870441496372, 0.0056952061131596565, 0.0018003394361585379, 0.006022824440151453, 0.0022222239058464766, 0.003512006951496005, 0.4780665636062622, 0.0003465223126113415, 0.0005982271977700293, 0.000129126594401896, 5.479178071254864e-05, 0.00016803036851342767, 0.00024263568047899753, 0.0008168180356733501, 0.47805219888687134], [0.003102764254435897, 0.005295590963214636, 0.02131984569132328, 0.0018823794089257717, 0.0015874860109761357, 0.006617260631173849, 0.0009350915206596255, 0.0032096952199935913, 0.47591397166252136, 0.0014818526105955243, 0.0007619521929882467, 0.00015171317500062287, 0.00034284955472685397, 0.000257182284258306, 0.00030193428392522037, 0.0009315503411926329, 0.47590693831443787], [0.0005954334046691656, 0.0034797864500433207, 0.006197834853082895, 0.0016791351372376084, 0.003445325419306755, 0.004933944437652826, 0.0012294044718146324, 0.001167881884612143, 0.4882079064846039, 0.0002100910642184317, 0.0004091616428922862, 3.307452061562799e-05, 1.6781505109975114e-05, 4.9918708100449294e-05, 3.62369573849719e-05, 0.00010921825014520437, 0.48819881677627563], [0.013242204673588276, 0.036340516060590744, 0.05910816788673401, 0.03873424232006073, 0.04125585779547691, 0.05659734085202217, 0.023972276598215103, 0.034682974219322205, 0.3300987184047699, 0.006830625701695681, 0.006497418042272329, 0.0014774419832974672, 0.001694126520305872, 0.00455170962959528, 0.006821697577834129, 0.007999786175787449, 0.3300948739051819], [0.01587531715631485, 0.08117248117923737, 0.15265178680419922, 0.11273135244846344, 0.06255227327346802, 0.06127280369400978, 0.09383638203144073, 0.06239417940378189, 0.034661296755075455, 0.061965107917785645, 0.026844659820199013, 0.028733020648360252, 0.050168730318546295, 0.043751060962677, 0.047621648758649826, 0.029106590896844864, 0.0346611812710762], [0.0007625267608091235, 0.0007473639561794698, 0.002661657752469182, 0.0004905101377516985, 0.00019620751845650375, 0.0008391743176616728, 0.00020052216132171452, 0.0018509100191295147, 0.4909779727458954, 0.0012319288216531277, 0.000976788462139666, 0.0006127048982307315, 0.0002627545618452132, 0.0007706846226938069, 0.001420506159774959, 0.005029009189456701, 0.49096885323524475], [0.00043426849879324436, 0.002019111532717943, 0.0071866740472614765, 0.0008678800077177584, 0.00010529885184951127, 0.00035610012128017843, 0.00010900545748881996, 0.008771699853241444, 0.47931337356567383, 0.0009992095874622464, 0.0029752247501164675, 0.0005808927235193551, 0.0008009190205484629, 0.004420299082994461, 0.004240072797983885, 0.0075162677094340324, 0.479303777217865], [0.0015254586469382048, 0.0017632500967010856, 0.00968964397907257, 0.000147362778079696, 3.1503583159064874e-05, 0.0003131706907879561, 2.6138917746720836e-05, 0.0011554609518498182, 0.48007282614707947, 0.0005642945761792362, 0.005718571599572897, 0.0006580896442756057, 0.00476815877482295, 0.003074191976338625, 0.006273750215768814, 0.00415963726118207, 0.4800584018230438], [0.0004753679677378386, 0.0005127072799950838, 0.0028559572529047728, 5.456441795104183e-05, 3.32090312440414e-05, 0.00012077058636350557, 1.2964500456291717e-05, 0.0005332885775715113, 0.49256739020347595, 0.00035157211823388934, 0.0035839087795466185, 0.00028851311071775854, 0.000575128651689738, 0.002278165426105261, 0.0021125096827745438, 0.0010798713192343712, 0.4925641119480133], [0.0009278013603761792, 0.0002872979093808681, 0.004842829424887896, 2.2579160940949805e-05, 1.3637698430102319e-05, 0.00013281195424497128, 2.1045088942628354e-05, 0.00023501082614529878, 0.49199047684669495, 0.00047653273213654757, 0.0031366932671517134, 0.00021838283282704651, 0.0015071578091010451, 0.0019947593100368977, 0.0017317443853244185, 0.00047306291526183486, 0.4919881224632263], [0.0015131620457395911, 0.0007497292244806886, 0.006425360217690468, 9.67730738921091e-05, 3.854112947010435e-05, 0.00026940027601085603, 5.812298695673235e-05, 0.0005062506534159184, 0.4816824197769165, 0.0012696698540821671, 0.006251254118978977, 0.0009212627774104476, 0.002716516610234976, 0.01004814077168703, 0.005060023628175259, 0.0007168963784351945, 0.48167645931243896], [0.0018249948043376207, 0.002975980518385768, 0.025478724390268326, 0.0014519713586196303, 0.000921664759516716, 0.002535453299060464, 0.0004907372058369219, 0.004317663609981537, 0.44556838274002075, 0.004286850802600384, 0.009634511545300484, 0.0046390448696911335, 0.0037978794425725937, 0.018636900931596756, 0.02111905999481678, 0.00675989082083106, 0.4455603063106537], [0.015875382348895073, 0.08117321878671646, 0.15265372395515442, 0.11273261159658432, 0.06255240738391876, 0.061273347586393356, 0.0938355028629303, 0.0623948834836483, 0.03466196730732918, 0.06196365877985954, 0.02684403769671917, 0.02873244509100914, 0.05016680806875229, 0.04375050216913223, 0.0476214624941349, 0.029106171801686287, 0.034661851823329926]], [[0.023521874099969864, 0.13887333869934082, 0.020319197326898575, 0.08378175646066666, 0.023465899750590324, 0.07573378086090088, 0.057652510702610016, 0.4154953360557556, 0.027856072410941124, 0.03151163086295128, 0.04038861021399498, 0.004716391675174236, 0.0022513114381581545, 0.004074785392731428, 0.004794635809957981, 0.0177069753408432, 0.02785603143274784], [0.0007662298157811165, 0.018135299906134605, 0.011443358846008778, 0.009041102603077888, 0.002577859442681074, 0.018399721011519432, 0.0027045251335948706, 0.009740771725773811, 0.4632851481437683, 9.92259883787483e-05, 0.00035741852479986846, 1.979589978873264e-05, 1.205618173116818e-05, 2.6383597287349403e-05, 6.090150782256387e-05, 5.580222205026075e-05, 0.4632743299007416], [0.002366321859881282, 0.10162416845560074, 0.031625375151634216, 0.0313563346862793, 0.010172008536756039, 0.04109764099121094, 0.009599265642464161, 0.024887461215257645, 0.36734747886657715, 0.0021581666078418493, 0.0033202350605279207, 0.0003368133620824665, 0.000686759885866195, 0.0017312692943960428, 0.0029334593564271927, 0.0014132607029750943, 0.3673441410064697], [0.0004695113457273692, 0.06625770032405853, 0.026233257725834846, 0.024390406906604767, 0.0022858772426843643, 0.012010159902274609, 0.003493283875286579, 0.009133169427514076, 0.4276075065135956, 9.602065983926877e-05, 0.000298014230793342, 8.248635822383221e-06, 6.328611561912112e-06, 2.4179114916478284e-05, 3.294492489658296e-05, 6.319790554698557e-05, 0.42759016156196594], [0.0003092829720117152, 0.0526396781206131, 0.013272004202008247, 0.01004702877253294, 0.006345823872834444, 0.01564851403236389, 0.006943189539015293, 0.009577170945703983, 0.4424114525318146, 0.00014846559497527778, 0.00011577551777008921, 1.6292860891553573e-05, 1.394977152813226e-05, 4.444810838322155e-05, 5.568798223976046e-05, 1.6206218788283877e-05, 0.44239500164985657], [0.0005457582883536816, 0.010768098756670952, 0.008021951653063297, 0.006373038049787283, 0.011970696970820427, 0.017858441919088364, 0.012966259382665157, 0.0038098637014627457, 0.4635918438434601, 0.0001516962656751275, 7.444067887263373e-05, 6.174557347549126e-05, 4.51018349849619e-05, 4.19144744228106e-05, 4.8041616537375376e-05, 9.0475965407677e-05, 0.46358057856559753], [0.00016606459394097328, 0.00496461009606719, 0.002816763473674655, 0.004834216553717852, 0.008082536049187183, 0.0035655887331813574, 0.0043146051466465, 0.0007516908226534724, 0.4852212071418762, 2.134717578883283e-05, 2.520662201277446e-05, 7.673579602851532e-06, 2.4434507395199034e-06, 3.6411822748050326e-06, 5.242377937975107e-06, 8.29257805889938e-06, 0.4852089583873749], [0.009132195264101028, 0.0876205638051033, 0.03505895659327507, 0.1058327928185463, 0.03761347383260727, 0.24760237336158752, 0.08190281689167023, 0.044790688902139664, 0.15226894617080688, 0.01582510583102703, 0.012782753445208073, 0.0029895156621932983, 0.0023663993924856186, 0.003747776383534074, 0.006415943615138531, 0.0017819269560277462, 0.15226785838603973], [0.024940278381109238, 0.11619962751865387, 0.0494433231651783, 0.1186584085226059, 0.037716783583164215, 0.08430974185466766, 0.06299067288637161, 0.14452670514583588, 0.03058304637670517, 0.07242625951766968, 0.06421176344156265, 0.02264004945755005, 0.022385884076356888, 0.02793087065219879, 0.0417201966047287, 0.04873313754796982, 0.03058326616883278], [0.0033791474997997284, 0.004582847468554974, 0.003426425391808152, 0.004246036987751722, 0.00424323370680213, 0.0056143151596188545, 0.003030066844075918, 0.016488224267959595, 0.47164738178253174, 0.004719053860753775, 0.0038119915407150984, 0.0009640498901717365, 0.00029877875931560993, 0.00018914479005616158, 0.0005421480163931847, 0.0011769999982789159, 0.4716401994228363], [0.006413278169929981, 0.003272519214078784, 0.003110843012109399, 0.0008817933849059045, 0.0004821987240575254, 0.001507546054199338, 0.0002947902830783278, 0.008211481384932995, 0.4588344991207123, 0.022323373705148697, 0.020337840542197227, 0.002382119884714484, 0.0005742342909798026, 0.0010874224826693535, 0.0016048356192186475, 0.009861364960670471, 0.45881983637809753], [0.010251188650727272, 0.0025566192343831062, 0.004620653111487627, 0.001298433286137879, 0.0008595691761001945, 0.0018477147677913308, 0.0008575071697123349, 0.020378297194838524, 0.3563784062862396, 0.1091570034623146, 0.03954612463712692, 0.014599290676414967, 0.006599105428904295, 0.0049652280285954475, 0.0075399610213935375, 0.06217719614505768, 0.35636770725250244], [0.00885496474802494, 0.0013921349309384823, 0.0040003652684390545, 0.0003038168651983142, 0.0003060829476453364, 0.0005859033553861082, 0.00016064838564489037, 0.006968801375478506, 0.37125954031944275, 0.03355438634753227, 0.0159759521484375, 0.017153006047010422, 0.039842359721660614, 0.02561977691948414, 0.03359735384583473, 0.06917178630828857, 0.3712531626224518], [0.0016649097669869661, 0.0002731268177740276, 0.000957038311753422, 0.00015346088912338018, 0.00010003867646446452, 0.0004095886251889169, 7.774698315188289e-05, 0.0005874835187569261, 0.4576214849948883, 0.004385953303426504, 0.004524656105786562, 0.0075546796433627605, 0.016576867550611496, 0.0069027249701321125, 0.01310378685593605, 0.02749699354171753, 0.45760926604270935], [0.0031203110702335835, 0.0004939856007695198, 0.001712761353701353, 0.0003070902603212744, 0.00013497289910446852, 0.0002767530095297843, 0.00015221690409816802, 0.0014088372699916363, 0.45046287775039673, 0.01996263675391674, 0.012735324911773205, 0.00896986573934555, 0.010660086758434772, 0.009114466607570648, 0.014385048300027847, 0.01565508171916008, 0.4504474103450775], [0.008723906241357327, 0.0023722914047539234, 0.005307583138346672, 0.0014423956163227558, 0.00028802952147088945, 0.0011578716803342104, 0.0002818116918206215, 0.006803450174629688, 0.37336069345474243, 0.04519135132431984, 0.055846381932497025, 0.008100657723844051, 0.00407094182446599, 0.0025663163978606462, 0.0038833587896078825, 0.10725120455026627, 0.3733517825603485], [0.02493949420750141, 0.11620031297206879, 0.04944377392530441, 0.11865917593240738, 0.03771592304110527, 0.08430953323841095, 0.06298968940973282, 0.1445235311985016, 0.030583694577217102, 0.07242827862501144, 0.06421227008104324, 0.02263951674103737, 0.022385504096746445, 0.027931073680520058, 0.04172063618898392, 0.04873381555080414, 0.030583910644054413]], [[0.15641790628433228, 0.019472215324640274, 0.015247542411088943, 0.013404838740825653, 0.01967945322394371, 0.016380392014980316, 0.0046415734104812145, 0.023537883535027504, 0.1628110259771347, 0.06615925580263138, 0.1434141844511032, 0.022935261949896812, 0.04915748909115791, 0.015306605957448483, 0.04002919793128967, 0.06859113276004791, 0.16281402111053467], [0.017557820305228233, 0.007604199927300215, 0.059121958911418915, 0.0214568879455328, 0.009003871120512486, 0.022746462374925613, 0.003168415045365691, 0.0034808821510523558, 0.4249211549758911, 0.0005404543480835855, 0.0032355240546166897, 0.0004610133182723075, 0.0004868287069257349, 0.00017495555221103132, 0.0003916494606528431, 0.0007276583346538246, 0.42492014169692993], [0.039214447140693665, 0.03568170592188835, 0.03868825361132622, 0.13644924759864807, 0.035623498260974884, 0.03159964829683304, 0.016966361552476883, 0.049791209399700165, 0.28974586725234985, 0.006439655087888241, 0.004995717667043209, 0.0036415448412299156, 0.005137015599757433, 0.00295317848213017, 0.004329044371843338, 0.008989431895315647, 0.28975409269332886], [0.004575551021844149, 0.016080105677247047, 0.005927844904363155, 0.010002032853662968, 0.024588558822870255, 0.036488890647888184, 0.011798032559454441, 0.018629098311066628, 0.43407586216926575, 0.0009250261937268078, 0.0013515491737052798, 0.00027101539308205247, 0.0005121860303916037, 0.00016572978347539902, 0.00026561651611700654, 0.0002657518198247999, 0.43407711386680603], [0.001959542278200388, 0.0025327231269329786, 0.0030955239199101925, 0.0028464850038290024, 0.016441889107227325, 0.06613459438085556, 0.03430316969752312, 0.00459279352799058, 0.4327998161315918, 0.0007739319116808474, 0.0002040095132542774, 0.00039185595232993364, 0.00025424480554647744, 0.00020460222731344402, 0.0004650890768971294, 0.00019668148888740689, 0.4328029155731201], [0.037771280854940414, 0.005310892593115568, 0.007604767568409443, 0.010762638412415981, 0.0161296259611845, 0.05960553511977196, 0.06713485717773438, 0.025119103491306305, 0.3785499632358551, 0.0012296921340748668, 0.0014666297938674688, 0.0009050819207914174, 0.0007641538977622986, 0.0007323913159780204, 0.006183965131640434, 0.002177775138989091, 0.3785516023635864], [0.007608044892549515, 0.0012920108856633306, 0.0018191651906818151, 0.004531044512987137, 0.0038887360133230686, 0.011789485812187195, 0.00818362832069397, 0.01839609630405903, 0.47020336985588074, 0.0009354655048809946, 0.0003364763979334384, 0.00011879779049195349, 3.82945072487928e-05, 6.553070852532983e-05, 0.00014574828674085438, 0.00043933792039752007, 0.4702087640762329], [0.027132174000144005, 0.025193430483341217, 0.011770728044211864, 0.014639303088188171, 0.002379937097430229, 0.02090044878423214, 0.00795811414718628, 0.006066437810659409, 0.4164263904094696, 0.0202657300978899, 0.007372016087174416, 0.0011321034980937839, 0.002829032251611352, 0.004533847793936729, 0.0069343033246695995, 0.008051430806517601, 0.41641467809677124], [0.10680033266544342, 0.06203277036547661, 0.03412771224975586, 0.05610813945531845, 0.07080619037151337, 0.0797877162694931, 0.08210408687591553, 0.06484805792570114, 0.07475332170724869, 0.04809525981545448, 0.03827739134430885, 0.048354387283325195, 0.06098698452115059, 0.021728895604610443, 0.03311336413025856, 0.04332215338945389, 0.07475318759679794], [0.019269606098532677, 0.00725571857765317, 0.0066689965315163136, 0.00751078687608242, 0.0048647779040038586, 0.002715942682698369, 0.0013545786496251822, 0.0009377734386362135, 0.4067264497280121, 0.0065541947260499, 0.05163077265024185, 0.02010190673172474, 0.01942593976855278, 0.008450549095869064, 0.01945435255765915, 0.01034926250576973, 0.4067283868789673], [0.014850589446723461, 0.0007954047177918255, 0.002272674348205328, 0.001676072715781629, 0.0007673733052797616, 0.0008293810533359647, 0.0003126039227936417, 0.004069962073117495, 0.4549323618412018, 0.0011458296794444323, 0.012946616858243942, 0.013650696724653244, 0.016378093510866165, 0.005186373833566904, 0.008234103210270405, 0.007014406844973564, 0.4549373388290405], [0.007937241345643997, 0.0007685436285100877, 0.0012934806291013956, 0.0003093542472925037, 0.0010962937958538532, 0.0011660130694508553, 0.0010253441287204623, 0.0008749557309783995, 0.4423920810222626, 0.003065013326704502, 0.0037059795577079058, 0.012568687088787556, 0.01972794532775879, 0.02009713090956211, 0.03529074788093567, 0.006283702794462442, 0.4423975646495819], [0.002921934938058257, 0.0001419578184140846, 0.0004929805872961879, 0.00016105009126476943, 2.8721247872454114e-05, 0.0002528908080421388, 0.00011184791219420731, 0.0009949568193405867, 0.4591265022754669, 0.0005495003424584866, 0.0005930094048380852, 0.0014745795633643866, 0.005237529519945383, 0.017662763595581055, 0.04676802456378937, 0.0043440028093755245, 0.4591376781463623], [0.032425396144390106, 0.0006863664602860808, 0.002291613258421421, 0.0006443239981308579, 0.00025190733140334487, 0.0004435233131516725, 0.0010602165712043643, 0.0007373038679361343, 0.1700630933046341, 0.001335600041784346, 0.00491587957367301, 0.002912278752774, 0.017438678070902824, 0.02692965231835842, 0.5491586327552795, 0.018639331683516502, 0.1700662523508072], [0.022167976945638657, 0.0005000227829441428, 0.000897312187589705, 0.000802194292191416, 0.00028129349811933935, 0.0001393986021867022, 0.0002552941150497645, 0.0026496597565710545, 0.4467669725418091, 0.001127135707065463, 0.003938448615372181, 0.00238685286603868, 0.006141508463770151, 0.006979458965361118, 0.04369859769940376, 0.01449078693985939, 0.44677698612213135], [0.014680979773402214, 0.0009328353917226195, 0.0022696952801197767, 0.0008816945482976735, 0.00023396973847411573, 0.0007060410571284592, 0.00020840123761445284, 0.001735792844556272, 0.4654737114906311, 0.0012439667480066419, 0.012691715732216835, 0.002031312556937337, 0.007129490841180086, 0.006993147544562817, 0.0094226049259305, 0.007895111106336117, 0.46546947956085205], [0.10679879784584045, 0.06203247979283333, 0.034127745777368546, 0.05610756203532219, 0.07080429047346115, 0.07978823781013489, 0.08210393041372299, 0.06484825909137726, 0.07475675642490387, 0.04809548705816269, 0.03827643394470215, 0.048353563994169235, 0.060985006392002106, 0.021729055792093277, 0.03311335667967796, 0.04332233592867851, 0.07475663721561432]], [[0.013176705688238144, 0.005161315202713013, 0.016505764797329903, 0.007590837310999632, 0.0016054105944931507, 0.005887800361961126, 0.003234897507354617, 0.006028172094374895, 0.12390077859163284, 0.18407712876796722, 0.13811609148979187, 0.045445073395967484, 0.04202461987733841, 0.017699168995022774, 0.09280543029308319, 0.17283934354782104, 0.12390147894620895], [0.021443398669362068, 0.028819488361477852, 0.026590051129460335, 0.044059544801712036, 0.015567255206406116, 0.03343338891863823, 0.005174342542886734, 0.04697897657752037, 0.36972150206565857, 0.004567495547235012, 0.011032997630536556, 0.0014533872017636895, 0.0011132156942039728, 0.002293672412633896, 0.0022270982153713703, 0.01580410823225975, 0.3697202801704407], [0.05235188826918602, 0.07659924030303955, 0.020960111171007156, 0.10546980053186417, 0.034934885799884796, 0.08055611699819565, 0.039510879665613174, 0.052212055772542953, 0.20576702058315277, 0.011551078408956528, 0.06883895397186279, 0.005183523986488581, 0.0058635990135371685, 0.004531262908130884, 0.005609424784779549, 0.024288151413202286, 0.2057720273733139], [0.012753496877849102, 0.0335836187005043, 0.004521586932241917, 0.02164275012910366, 0.013727124780416489, 0.051030516624450684, 0.0207216776907444, 0.039971765130758286, 0.39101681113243103, 0.006261177361011505, 0.00848576333373785, 0.0009272063034586608, 0.00020743250206578523, 0.0008275808650068939, 0.0011753778671845794, 0.002123234560713172, 0.3910229504108429], [0.005798910744488239, 0.010359423235058784, 0.005070396699011326, 0.007865171879529953, 0.016487397253513336, 0.0580795481801033, 0.0337136834859848, 0.013551490381360054, 0.41953566670417786, 0.003788940142840147, 0.003466266207396984, 0.0008004122064448893, 0.000282483350019902, 0.0002160463045584038, 0.000699541880749166, 0.0007460000924766064, 0.4195384681224823], [0.00393800251185894, 0.0039023335557430983, 0.0009665403049439192, 0.001600784482434392, 0.00348343956284225, 0.009006298147141933, 0.0024692006409168243, 0.014226838015019894, 0.4755876958370209, 0.005188953597098589, 0.0017260070890188217, 0.0007557006902061403, 0.0004662904539145529, 0.0001499742502346635, 0.00020037752983625978, 0.0007393888081423938, 0.4755922257900238], [0.0021674446761608124, 0.0010239852126687765, 0.0005559400306083262, 0.0006442322046495974, 0.0038170935586094856, 0.0078084697015583515, 0.001562552759423852, 0.006016518454998732, 0.48701512813568115, 0.0013564227847382426, 0.0003556346637196839, 0.0002704523503780365, 6.861519068479538e-05, 6.115328142186627e-05, 6.001251676934771e-05, 0.00019832341058645397, 0.4870179295539856], [0.4883216917514801, 0.013175233267247677, 0.0066181062720716, 0.016256779432296753, 0.010362658649682999, 0.023859072476625443, 0.004718733951449394, 0.009193960577249527, 0.13308556377887726, 0.08767428249120712, 0.01155879721045494, 0.006227867677807808, 0.003182590240612626, 0.010955565609037876, 0.010828515514731407, 0.030895376577973366, 0.1330852210521698], [0.037800997495651245, 0.040572162717580795, 0.05631931871175766, 0.049554742872714996, 0.01427275687456131, 0.03410729393362999, 0.025968428701162338, 0.03067152015864849, 0.06917910277843475, 0.16030406951904297, 0.08772019296884537, 0.02232789620757103, 0.07457009702920914, 0.028874531388282776, 0.07092004269361496, 0.1276581585407257, 0.06917877495288849], [0.0008673241245560348, 0.00025335082318633795, 0.0011092043714597821, 0.00029223907040432096, 8.393027383135632e-05, 0.0003506191133055836, 8.632068056613207e-05, 0.0009567261440679431, 0.480203777551651, 0.000651464972179383, 0.00099703180603683, 0.004229824990034103, 0.003330813255161047, 0.0042216358706355095, 0.012175913900136948, 0.009986993856728077, 0.48020264506340027], [0.00031348250922746956, 0.0002760564675554633, 0.0007404544157907367, 0.00025952429859898984, 0.00011853656178573146, 0.0003784389409702271, 0.00012961360334884375, 0.00038633306394331157, 0.47311708331108093, 0.0011230229865759611, 0.003838638309389353, 0.008371005766093731, 0.0037728906609117985, 0.006408975925296545, 0.009095384739339352, 0.018555408343672752, 0.4731152653694153], [0.0015080039156600833, 0.00011031392932636663, 0.00035811110865324736, 5.836683340021409e-05, 9.118313755607232e-05, 0.0004463361983653158, 5.205834531807341e-05, 0.0008099426631815732, 0.469679594039917, 0.0034400050062686205, 0.0009291977621614933, 0.008965149521827698, 0.007681253831833601, 0.008524042554199696, 0.02079007774591446, 0.0068803709000349045, 0.46967601776123047], [0.00014411115262191743, 1.797882214304991e-05, 5.547910768655129e-05, 8.314833394251764e-06, 8.024654562177602e-06, 9.283597319154069e-05, 7.963246389408596e-06, 0.00011805116810137406, 0.4926674962043762, 0.000634836673270911, 0.00017357290198560804, 0.002435597823932767, 0.0035501786042004824, 0.002023017033934593, 0.003990857861936092, 0.0014111888594925404, 0.4926604628562927], [0.0002528421755414456, 8.991628419607878e-05, 0.00015268342394847423, 2.1105477571836673e-05, 3.551561894710176e-05, 0.0003127124800812453, 3.562685378710739e-05, 0.0001280292053706944, 0.4921146035194397, 0.0008119418052956462, 0.0004944773390889168, 0.0021628658287227154, 0.004797687754034996, 0.0020084420684725046, 0.0033324521500617266, 0.0011478214291855693, 0.4921012222766876], [0.000621431099716574, 0.00014864774129819125, 0.00023478243383578956, 4.270831777830608e-05, 5.6734777899691835e-05, 0.00041610802873037755, 4.376408105599694e-05, 0.00043217334314249456, 0.4898018538951874, 0.002745814388617873, 0.001155576785095036, 0.004421143792569637, 0.003324240678921342, 0.002318187616765499, 0.0024319584481418133, 0.0020098050590604544, 0.48979508876800537], [0.002523797797039151, 0.0001109023141907528, 0.00031307057361118495, 0.00011027910659322515, 9.871073416434228e-05, 0.001450195093639195, 0.00010195697541348636, 0.00030163241899572313, 0.4784378111362457, 0.0023756709415465593, 0.0007601972320117056, 0.005252471659332514, 0.0028385103214532137, 0.008432993665337563, 0.012459885329008102, 0.0060107228346168995, 0.478421151638031], [0.037801533937454224, 0.04057252034544945, 0.056319110095500946, 0.04955459013581276, 0.014272769913077354, 0.03410734981298447, 0.02596845105290413, 0.03067133203148842, 0.0691823959350586, 0.16030064225196838, 0.08772062510251999, 0.02232799492776394, 0.07456885278224945, 0.028874382376670837, 0.07091954350471497, 0.12765587866306305, 0.06918206810951233]], [[0.02594617009162903, 0.01230535376816988, 0.04566877335309982, 0.014121030457317829, 0.0072386907413601875, 0.005428669974207878, 0.0038478251080960035, 0.010239314287900925, 0.23248372972011566, 0.11886419355869293, 0.07697320729494095, 0.037396643310785294, 0.04120451584458351, 0.01877675950527191, 0.027979085221886635, 0.08904127776622772, 0.23248472809791565], [0.011459922417998314, 0.05789390951395035, 0.01801096275448799, 0.04013005644083023, 0.02041839435696602, 0.01897086761891842, 0.021832888945937157, 0.024326378479599953, 0.38134026527404785, 0.008276933804154396, 0.005633383523672819, 0.002469992032274604, 0.0014278696617111564, 0.0008420258527621627, 0.0006289502489380538, 0.004989249631762505, 0.38134798407554626], [0.018261579796671867, 0.09114214777946472, 0.16401386260986328, 0.0360700897872448, 0.012661230750381947, 0.016071118414402008, 0.017078490927815437, 0.04107184335589409, 0.2622493505477905, 0.023134000599384308, 0.023985888808965683, 0.0041265543550252914, 0.005320061929523945, 0.004773941356688738, 0.005675092339515686, 0.01211258489638567, 0.26225224137306213], [0.026431027799844742, 0.07835447788238525, 0.051074057817459106, 0.050566960126161575, 0.009912065230309963, 0.015570848248898983, 0.012985849753022194, 0.028361964970827103, 0.34938952326774597, 0.006874042097479105, 0.00850733183324337, 0.0013631429756060243, 0.0005309132393449545, 0.001485362066887319, 0.0011285279178991914, 0.008078392595052719, 0.349385529756546], [0.005289734341204166, 0.015012618154287338, 0.016920097172260284, 0.010304713621735573, 0.009516424499452114, 0.015370819717645645, 0.008242348209023476, 0.00926060788333416, 0.4524623155593872, 0.002068092580884695, 0.0010510390857234597, 0.0007059122435748577, 0.0002391476446064189, 0.00038428109837695956, 0.00021039703278802335, 0.0005056892987340689, 0.45245563983917236], [0.0011316104792058468, 0.003120411653071642, 0.007049898616969585, 0.001835630158893764, 0.00404246523976326, 0.011740568093955517, 0.0031257460359483957, 0.0027404569555073977, 0.4807789921760559, 0.001110286801122129, 0.0004653401265386492, 0.00046777038369327784, 0.0001648969337111339, 0.0007357471622526646, 0.00046614118036814034, 0.00025472865672782063, 0.4807691276073456], [0.0010782276513054967, 0.0035341789480298758, 0.003947503864765167, 0.0023307425435632467, 0.003992586396634579, 0.0067064277827739716, 0.0033561058808118105, 0.0038338955491781235, 0.48468706011772156, 0.0007214153883978724, 0.00022754530073143542, 0.00034482477349229157, 3.258667857153341e-05, 0.00019096818869002163, 0.00017288138042204082, 0.00016022541967686266, 0.4846828877925873], [0.0256809014827013, 0.054203908890485764, 0.0433545745909214, 0.039166368544101715, 0.02749815210700035, 0.025256246328353882, 0.029343988746404648, 0.10214278101921082, 0.284392774105072, 0.03327256813645363, 0.01417594775557518, 0.005234787706285715, 0.002139626070857048, 0.003898981725797057, 0.005336273927241564, 0.020508065819740295, 0.2843939960002899], [0.06152637302875519, 0.08685845136642456, 0.07395375519990921, 0.10133867710828781, 0.05650842934846878, 0.07045254856348038, 0.05788238346576691, 0.08833659440279007, 0.036645665764808655, 0.06538642942905426, 0.0700591653585434, 0.033106256276369095, 0.03278014063835144, 0.02277837134897709, 0.035660289227962494, 0.0700807124376297, 0.03664569929242134], [0.004676518030464649, 0.0031360462307929993, 0.00363340275362134, 0.003114111255854368, 0.0012234658934175968, 0.0020019891671836376, 0.0012811042834073305, 0.001659985980950296, 0.46609458327293396, 0.017725354060530663, 0.01013166457414627, 0.003987094387412071, 0.0026930836029350758, 0.004663575440645218, 0.0029930698219686747, 0.0048863692209124565, 0.4660985767841339], [0.01576705276966095, 0.008137473836541176, 0.00823168084025383, 0.002878444269299507, 0.001097788685001433, 0.0012301240349188447, 0.0005687138182111084, 0.002053564880043268, 0.4531867504119873, 0.009104028344154358, 0.021802496165037155, 0.007647151127457619, 0.004888709168881178, 0.003563282545655966, 0.0020407040137797594, 0.004628247581422329, 0.45317378640174866], [0.00821777805685997, 0.0020071391481906176, 0.003210144117474556, 0.0022897415328770876, 0.0020597458351403475, 0.0018156185979023576, 0.0007164882845245302, 0.0025200650561600924, 0.4308318793773651, 0.016442222520709038, 0.029273027554154396, 0.02130606211721897, 0.013162292540073395, 0.012006673961877823, 0.014473862946033478, 0.008844751864671707, 0.4308224320411682], [0.003607742488384247, 0.002082864986732602, 0.002438334282487631, 0.0006609036354348063, 0.00048501777928322554, 0.0006028188508935273, 0.00021439116972032934, 0.0012559863971546292, 0.4611201286315918, 0.024737287312746048, 0.011383121833205223, 0.009255729615688324, 0.007210845127701759, 0.005084443371742964, 0.0037273671478033066, 0.005014441441744566, 0.4611183702945709], [0.0006512915715575218, 0.0003765949804801494, 0.001882007229141891, 0.00011552838259376585, 7.678028487134725e-05, 0.00023868531570769846, 4.377133154775947e-05, 0.00032607774483039975, 0.4857759475708008, 0.0016089871060103178, 0.004354927688837051, 0.0013350502122193575, 0.001293679466471076, 0.009053926914930344, 0.0057799434289336205, 0.0013069482520222664, 0.48577964305877686], [0.001743889064528048, 0.0008932267082855105, 0.0020098548848181963, 0.0003422063891775906, 0.00016670221521053463, 0.0004903741646558046, 0.00020190900249872357, 0.0013927064137533307, 0.47526586055755615, 0.006756106857210398, 0.005365082528442144, 0.004125990439206362, 0.0025008816737681627, 0.009753044694662094, 0.010474382899701595, 0.0032557386439293623, 0.47526201605796814], [0.006617892999202013, 0.012943742796778679, 0.010595467872917652, 0.00929759070277214, 0.0028671440668404102, 0.0015740265371277928, 0.0010232983622699976, 0.0028833618853241205, 0.40054240822792053, 0.04197985678911209, 0.05761570855975151, 0.012360600754618645, 0.005970218684524298, 0.008420190773904324, 0.010422347113490105, 0.014354380778968334, 0.40053170919418335], [0.06152573227882385, 0.08685911446809769, 0.07395310699939728, 0.1013396754860878, 0.056508619338274, 0.07045254111289978, 0.05788153409957886, 0.08833646029233932, 0.036645811051130295, 0.06538806855678558, 0.07005905359983444, 0.03310585767030716, 0.03277968615293503, 0.022778529673814774, 0.03566054627299309, 0.07007981836795807, 0.03664584457874298]]]], \\\"left_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\", \\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\", \\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"]}], \\\"default_filter\\\": \\\"0\\\", \\\"root_div_id\\\": \\\"bertviz-d1e6cdbcb61a42d4b37d005c21290a61\\\", \\\"layer\\\": null, \\\"heads\\\": null}; // HACK: {\\\"attention\\\": [{\\\"name\\\": null, \\\"attn\\\": [[[[0.004888075869530439, 0.007019796874374151, 0.0036452263593673706, 0.0029327375814318657, 0.0015320930397138, 0.004241756163537502, 0.004263122100383043, 0.008528415113687515, 0.1241171583533287, 0.011008302681148052, 0.007964405231177807, 0.012401134707033634, 0.012626986019313335, 0.01822158694267273, 0.03751054406166077, 0.032849520444869995, 0.7062491178512573], [0.014576531015336514, 0.010581646114587784, 0.11558718979358673, 0.029583653435111046, 0.1619575172662735, 0.1749114692211151, 0.0751379206776619, 0.21962450444698334, 0.012747607193887234, 0.05111600458621979, 0.01784636825323105, 0.016188524663448334, 0.034550972282886505, 0.04032806307077408, 0.008430905640125275, 0.014747894369065762, 0.002083284081891179], [0.0931827500462532, 0.030849847942590714, 0.21771998703479767, 0.008905305527150631, 0.01596658118069172, 0.10586155205965042, 0.014499418437480927, 0.15799841284751892, 0.1769568771123886, 0.011161367408931255, 0.007392543368041515, 0.02728419005870819, 0.011595254763960838, 0.06580255925655365, 0.029527466744184494, 0.0062408046796917915, 0.01905512809753418], [0.014329124242067337, 0.026282774284482002, 0.12526121735572815, 0.01783166266977787, 0.16241025924682617, 0.19412513077259064, 0.09234662353992462, 0.18385455012321472, 0.012565611861646175, 0.0387045256793499, 0.007175581995397806, 0.014191791415214539, 0.03388706594705582, 0.05341388285160065, 0.013310998678207397, 0.009375548921525478, 0.0009336062357760966], [0.041057515889406204, 0.05136800557374954, 0.11638717353343964, 0.04390865936875343, 0.204985111951828, 0.20272210240364075, 0.05150476470589638, 0.07285190373659134, 0.02087394706904888, 0.03042193129658699, 0.0036483488511294127, 0.01124507561326027, 0.052854206413030624, 0.055095743387937546, 0.018138518556952477, 0.021030552685260773, 0.0019064793596044183], [0.1666662096977234, 0.02896984852850437, 0.15163454413414001, 0.01802794449031353, 0.04654997959733009, 0.2804989814758301, 0.02848292514681816, 0.017328821122646332, 0.035481903702020645, 0.026137450709939003, 0.007835391908884048, 0.04781508445739746, 0.0928763672709465, 0.02130993641912937, 0.012126856483519077, 0.007968500256538391, 0.010289200581610203], [0.020301301032304764, 0.03030841425061226, 0.146507129073143, 0.03279529884457588, 0.1822977364063263, 0.14855298399925232, 0.04740176722407341, 0.11926399916410446, 0.0055979457683861256, 0.07653960585594177, 0.005564410705119371, 0.01443084329366684, 0.04294794425368309, 0.07773218303918839, 0.036374710500240326, 0.011816887184977531, 0.001566849066875875], [0.1180451288819313, 0.049101572483778, 0.06027330830693245, 0.006074968259781599, 0.10929204523563385, 0.04498586431145668, 0.00842977873980999, 0.3069465160369873, 0.06189660355448723, 0.039379481226205826, 0.007954319939017296, 0.10972070693969727, 0.026415210217237473, 0.023425700142979622, 0.014062038622796535, 0.0026519885286688805, 0.011344718746840954], [2.1634889435517834e-06, 2.7986959594272776e-07, 6.047267930853195e-08, 7.992905892706403e-08, 2.950351074559876e-09, 6.677720598702308e-09, 3.565340378486326e-08, 1.6712645489747047e-08, 0.0002647333894856274, 1.152576032836805e-06, 1.1555251148820389e-05, 5.2061750466236845e-06, 1.371363214275334e-05, 4.478007667785278e-06, 5.161368608241901e-05, 0.0001593561319168657, 0.9994856119155884], [0.05085143446922302, 0.022023271769285202, 0.07580538094043732, 0.0070717972703278065, 0.047512125223875046, 0.07071699947118759, 0.017782360315322876, 0.08009849488735199, 0.019474850967526436, 0.10870131105184555, 0.009214590303599834, 0.08462074398994446, 0.16989478468894958, 0.10135233402252197, 0.0493972972035408, 0.021988535299897194, 0.06349364668130875], [0.04322425276041031, 0.00701436772942543, 0.07438955456018448, 0.00349072995595634, 0.020300857722759247, 0.03028024546802044, 0.011668267659842968, 0.043274637311697006, 0.00980078149586916, 0.08645223826169968, 0.01271748449653387, 0.05253123864531517, 0.23775863647460938, 0.19187404215335846, 0.03741445392370224, 0.04090726003050804, 0.09690098464488983], [0.022267881780862808, 0.023952627554535866, 0.06272710859775543, 0.0059244283474981785, 0.09645921736955643, 0.04347274824976921, 0.027442241087555885, 0.05181506276130676, 0.018496809527277946, 0.12232493609189987, 0.03188175708055496, 0.029339047148823738, 0.258259117603302, 0.06193901225924492, 0.05281803756952286, 0.04957601800560951, 0.041303928941488266], [0.052432831376791, 0.02291150949895382, 0.04012122005224228, 0.004341240040957928, 0.02985801361501217, 0.01583763211965561, 0.015640828758478165, 0.02167329750955105, 0.05032937601208687, 0.11713917553424835, 0.02564113773405552, 0.09544307738542557, 0.08414534479379654, 0.06279367953538895, 0.09147869795560837, 0.0592023991048336, 0.21101054549217224], [0.06270148605108261, 0.018580680713057518, 0.15979012846946716, 0.015210376121103764, 0.02062022127211094, 0.02362925000488758, 0.038785237818956375, 0.01570395939052105, 0.0422176755964756, 0.042492810636758804, 0.032632045447826385, 0.07592606544494629, 0.03713872283697128, 0.09492141753435135, 0.13550794124603271, 0.0456867590546608, 0.13845527172088623], [0.0552029013633728, 0.03745970502495766, 0.08970589935779572, 0.007209817413240671, 0.010326535440981388, 0.014292473904788494, 0.015026808716356754, 0.041386928409338, 0.07573705166578293, 0.05720151960849762, 0.018984483554959297, 0.030409062281250954, 0.04165385663509369, 0.22854256629943848, 0.036919306963682175, 0.029538234695792198, 0.2104029804468155], [0.022899465635418892, 0.024759864434599876, 0.08564167469739914, 0.0077392589300870895, 0.038067229092121124, 0.03607000410556793, 0.01198351290076971, 0.04539123550057411, 0.033280134201049805, 0.0962849110364914, 0.023986605927348137, 0.16346056759357452, 0.16955357789993286, 0.08608866482973099, 0.01938687078654766, 0.017461832612752914, 0.11794460564851761], [5.39046709491231e-07, 1.2910049029812853e-08, 2.997915693470077e-09, 9.687985969009105e-10, 5.700149727227988e-11, 2.3968746432068144e-10, 2.120931874571852e-09, 2.0052830507211183e-09, 4.1204955778084695e-05, 1.0826789775819634e-06, 6.497870799648808e-06, 1.7855295482149813e-06, 8.23706250230316e-06, 8.747030619815632e-07, 1.802810402296018e-05, 4.153688496444374e-05, 0.999880313873291]], [[0.4522051513195038, 0.07623647898435593, 0.027919242158532143, 0.035999845713377, 0.08349619060754776, 0.019427096471190453, 0.05187578126788139, 0.027510447427630424, 0.01445896178483963, 0.027349503710865974, 0.013545246794819832, 0.06334026157855988, 0.030286243185400963, 0.02672632411122322, 0.03649211302399635, 0.00903548114001751, 0.004095627460628748], [0.22317545115947723, 0.06382100284099579, 0.05888044089078903, 0.049211613833904266, 0.13121356070041656, 0.06643986701965332, 0.0620323047041893, 0.10699689388275146, 0.0343746654689312, 0.04030245915055275, 0.05449175089597702, 0.015260525979101658, 0.01441941037774086, 0.051165707409381866, 0.012906704097986221, 0.009400923736393452, 0.005906717851758003], [0.06794585287570953, 0.1672438085079193, 0.22915023565292358, 0.024345679208636284, 0.16521067917346954, 0.09566453844308853, 0.03178289905190468, 0.049769431352615356, 0.015491669997572899, 0.03189234808087349, 0.005836388096213341, 0.015635255724191666, 0.02730834297835827, 0.03977164626121521, 0.02932717837393284, 0.002584383124485612, 0.0010396799771115184], [0.0019585308618843555, 0.7207427620887756, 0.07722131162881851, 0.004655138123780489, 0.03747379034757614, 0.05254172161221504, 0.008140715770423412, 0.016761539503932, 0.012247414328157902, 0.05264122784137726, 0.005919741000980139, 0.0015853171935305, 0.004358803387731314, 0.0019629127345979214, 0.0005766953690908849, 0.00020377084729261696, 0.001008533057756722], [0.025915242731571198, 0.026313217356801033, 0.1458832025527954, 0.2851893901824951, 0.23177862167358398, 0.12325704842805862, 0.053885672241449356, 0.04005128890275955, 0.008830639533698559, 0.0016609665472060442, 0.004477020353078842, 0.010466582141816616, 0.014143839478492737, 0.018876660615205765, 0.003539198776707053, 0.005014950409531593, 0.0007165209972299635], [0.06897823512554169, 0.03946160525083542, 0.40949440002441406, 0.02331404760479927, 0.20725378394126892, 0.07915252447128296, 0.06029766425490379, 0.046219512820243835, 0.007097764406353235, 0.01039657648652792, 0.004642943385988474, 0.007727229502052069, 0.008718782104551792, 0.01666164956986904, 0.008082425221800804, 0.0013291724026203156, 0.001171768526546657], [0.11204667389392853, 0.002064715139567852, 0.07884853333234787, 0.0231044702231884, 0.4335665702819824, 0.22349999845027924, 0.015278663486242294, 0.021423274651169777, 0.00486252224072814, 0.0015719160437583923, 0.0013278420083224773, 0.008107521571218967, 0.01719454489648342, 0.046971384435892105, 0.0064142923802137375, 0.003084664698690176, 0.0006322385743260384], [0.045064717531204224, 0.061848171055316925, 0.06443827599287033, 0.049729522317647934, 0.2260524332523346, 0.07010719925165176, 0.17648132145404816, 0.160780131816864, 0.032271843403577805, 0.03418389707803726, 0.007624479942023754, 0.03132493048906326, 0.007417135406285524, 0.01037380937486887, 0.016183815896511078, 0.004492961801588535, 0.0016253096982836723], [0.003729620948433876, 0.019178112968802452, 0.008320917375385761, 0.003610414220020175, 0.01731022074818611, 0.019468005746603012, 0.015363910235464573, 0.7111199498176575, 0.07527204602956772, 0.03925952687859535, 0.029104769229888916, 0.017176028341054916, 0.018435312435030937, 0.002877231454476714, 0.002948450157418847, 0.0017658548895269632, 0.015059570781886578], [0.1122286394238472, 0.005725213326513767, 0.007830118760466576, 0.018747668713331223, 0.046964243054389954, 0.02027987129986286, 0.04182044789195061, 0.060731735080480576, 0.14661774039268494, 0.11308518052101135, 0.12625354528427124, 0.13461105525493622, 0.031244609504938126, 0.04327597841620445, 0.02240343578159809, 0.02710208110511303, 0.041078414767980576], [0.0019868644885718822, 0.0029012442100793123, 0.03415127471089363, 0.003377157263457775, 0.021869391202926636, 0.016370456665754318, 0.01350669376552105, 0.13002537190914154, 0.08001197874546051, 0.47171226143836975, 0.06813553720712662, 0.018448758870363235, 0.08434359729290009, 0.014303343370556831, 0.0060247816145420074, 0.005617797840386629, 0.027213556692004204], [0.0012034880928695202, 0.003988053649663925, 0.01811078004539013, 0.03138766437768936, 0.02679568901658058, 0.01594444178044796, 0.028057347983121872, 0.08293617516756058, 0.23756594955921173, 0.05265144631266594, 0.2417776733636856, 0.045061975717544556, 0.0782533809542656, 0.02548084780573845, 0.006170281209051609, 0.04199046269059181, 0.06262443959712982], [0.011548996903002262, 0.002671988680958748, 0.013300352729856968, 0.00573762645944953, 0.02851112000644207, 0.011765186674892902, 0.01182110421359539, 0.034734729677438736, 0.06407833099365234, 0.06737424433231354, 0.14551088213920593, 0.2167421579360962, 0.19757318496704102, 0.0646800771355629, 0.01695670373737812, 0.057373709976673126, 0.049619704484939575], [0.026585998013615608, 0.0010515417670831084, 0.004557711537927389, 0.005754321347922087, 0.01731204427778721, 0.004033405799418688, 0.005897670052945614, 0.011935831047594547, 0.0362488329410553, 0.029862700030207634, 0.04841899126768112, 0.539275050163269, 0.09850410372018814, 0.06712836027145386, 0.02949517033994198, 0.03715115785598755, 0.036787163466215134], [0.041452087461948395, 0.000551372766494751, 0.012106509879231453, 0.0025557572953402996, 0.029549917206168175, 0.0024494952522218227, 0.004159799311310053, 0.009580275975167751, 0.01520668063312769, 0.023142937570810318, 0.025920597836375237, 0.27663901448249817, 0.18025699257850647, 0.2660350501537323, 0.0187570471316576, 0.030158380046486855, 0.06147802993655205], [0.0001405895600328222, 0.006572019308805466, 0.0031815404072403908, 0.0004570690798573196, 0.003964514471590519, 0.0015125961508601904, 0.001515182782895863, 0.0054846699349582195, 0.03184382990002632, 0.4382510483264923, 0.06007954105734825, 0.023391874507069588, 0.11213231086730957, 0.010536914691329002, 0.006349750328809023, 0.006076218094676733, 0.288510262966156], [2.382694583502598e-05, 1.6672100173309445e-05, 1.213609539263416e-05, 3.5883535929315258e-06, 2.2867236111778766e-05, 8.452716429019347e-06, 1.6258918549283408e-05, 0.000548299984075129, 0.0027398846577852964, 0.0031625269912183285, 0.0070969704538583755, 0.011805384419858456, 0.01725119724869728, 0.000560812943149358, 0.0009160325862467289, 0.006874747108668089, 0.9489404559135437]], [[0.07207582890987396, 0.030081165954470634, 0.0698365718126297, 0.05415603145956993, 0.040005918592214584, 0.04452523961663246, 0.05477667227387428, 0.07413895428180695, 0.020463814958930016, 0.04867997393012047, 0.09254953265190125, 0.07381545752286911, 0.09486182779073715, 0.082914799451828, 0.07271520793437958, 0.04404165968298912, 0.030361313372850418], [0.02388051338493824, 0.09712941199541092, 0.13507598638534546, 0.12161228060722351, 0.07565468549728394, 0.09102176129817963, 0.03974504768848419, 0.07507934421300888, 0.12584571540355682, 0.0545763336122036, 0.01604420691728592, 0.011612973175942898, 0.027364207431674004, 0.019178539514541626, 0.021193353459239006, 0.03272027149796486, 0.032265398651361465], [0.14521171152591705, 0.1255667805671692, 0.007684384007006884, 0.03585522249341011, 0.09271423518657684, 0.021124502643942833, 0.05305418372154236, 0.11939787119626999, 0.05426167696714401, 0.01743321679532528, 0.10690226405858994, 0.02871570736169815, 0.04158058017492294, 0.04895868897438049, 0.04626128450036049, 0.018562469631433487, 0.036715105175971985], [0.021534226834774017, 0.16972415149211884, 0.04721628129482269, 0.06455666571855545, 0.12413521111011505, 0.09946053475141525, 0.02451961673796177, 0.05252651125192642, 0.1565346121788025, 0.042592115700244904, 0.028904670849442482, 0.030724521726369858, 0.021228116005659103, 0.023331813514232635, 0.0168754905462265, 0.03380384296178818, 0.04233171045780182], [0.18212783336639404, 0.05782119929790497, 0.16624435782432556, 0.061060693114995956, 0.025745224207639694, 0.05096830800175667, 0.09386604279279709, 0.04790102317929268, 0.09353011846542358, 0.038641296327114105, 0.029350461438298225, 0.015338404104113579, 0.012258137576282024, 0.042409393936395645, 0.034138504415750504, 0.023105019703507423, 0.025494007393717766], [0.2883266806602478, 0.020761892199516296, 0.045150283724069595, 0.012247641570866108, 0.0693461000919342, 0.0051894644275307655, 0.08609198778867722, 0.08481674641370773, 0.08602578192949295, 0.01470259390771389, 0.04659475013613701, 0.024310611188411713, 0.018510956317186356, 0.055132340639829636, 0.08806735277175903, 0.010098050348460674, 0.04462667927145958], [0.07446767389774323, 0.1230199858546257, 0.10566249489784241, 0.06260287761688232, 0.041301827877759933, 0.0890895202755928, 0.05263271555304527, 0.08570503443479538, 0.0857565850019455, 0.05045425519347191, 0.055470049381256104, 0.04604503884911537, 0.018547367304563522, 0.02415427938103676, 0.025428179651498795, 0.029278477653861046, 0.03038364090025425], [0.14375796914100647, 0.12766575813293457, 0.07687808573246002, 0.06146235391497612, 0.025420017540454865, 0.09101464599370956, 0.08417452126741409, 0.05357314273715019, 0.01134533155709505, 0.07383982092142105, 0.054581303149461746, 0.062397975474596024, 0.03553818166255951, 0.02532547153532505, 0.025117862969636917, 0.03893119841814041, 0.008976396173238754], [0.040774792432785034, 0.13950109481811523, 0.02118922770023346, 0.0640266165137291, 0.044749144464731216, 0.03973620384931564, 0.061510711908340454, 0.08475141227245331, 0.014940092340111732, 0.0757886990904808, 0.09931029379367828, 0.08393636345863342, 0.05245032161474228, 0.059110067784786224, 0.027142135426402092, 0.07597208023071289, 0.015110681764781475], [0.4042286276817322, 0.02303842455148697, 0.04327826946973801, 0.02220737747848034, 0.024905072525143623, 0.017578905448317528, 0.031729016453027725, 0.05251544713973999, 0.04675205796957016, 0.00783507525920868, 0.09679113328456879, 0.024453289806842804, 0.02132745087146759, 0.07777412235736847, 0.033756352961063385, 0.03557467460632324, 0.036254674196243286], [0.02890595607459545, 0.0868535041809082, 0.03905981406569481, 0.07673788070678711, 0.06935548782348633, 0.017652153968811035, 0.039013754576444626, 0.04142361134290695, 0.11229785531759262, 0.04908713325858116, 0.0825323835015297, 0.050595663487911224, 0.042241185903549194, 0.030702881515026093, 0.06782406568527222, 0.041330575942993164, 0.12438603490591049], [0.051494911313056946, 0.05110412463545799, 0.07177115976810455, 0.03816363215446472, 0.06721803545951843, 0.055009134113788605, 0.05375649407505989, 0.038038868457078934, 0.041565731167793274, 0.04354572296142578, 0.07399876415729523, 0.08210265636444092, 0.07860209047794342, 0.07368873804807663, 0.0557437464594841, 0.08313024044036865, 0.04106597602367401], [0.30957141518592834, 0.026946723461151123, 0.030617903918027878, 0.00909468811005354, 0.012938322499394417, 0.005976587533950806, 0.0647820383310318, 0.042692121118307114, 0.03459575027227402, 0.016926975920796394, 0.16411443054676056, 0.05676984786987305, 0.009580451063811779, 0.07468540966510773, 0.05725482851266861, 0.030714837834239006, 0.05273762717843056], [0.17414706945419312, 0.02067970670759678, 0.10534961521625519, 0.03243619576096535, 0.03173006698489189, 0.03161533549427986, 0.05324887856841087, 0.03352835029363632, 0.04464622214436531, 0.02641052007675171, 0.12195944786071777, 0.10071049630641937, 0.024074766784906387, 0.030658595263957977, 0.06795603036880493, 0.03804737329483032, 0.06280133873224258], [0.14174634218215942, 0.07984764873981476, 0.05403934419155121, 0.018503038212656975, 0.043897174298763275, 0.04191182926297188, 0.05589395761489868, 0.0508967749774456, 0.03724489361047745, 0.01597260683774948, 0.17404040694236755, 0.07636553794145584, 0.05074698477983475, 0.05537647008895874, 0.02398299053311348, 0.03783499076962471, 0.04169907048344612], [0.0533464252948761, 0.04371226206421852, 0.019833769649267197, 0.02924042008817196, 0.06765838712453842, 0.03478259593248367, 0.037271589040756226, 0.03777080401778221, 0.03779437392950058, 0.05305246263742447, 0.17477799952030182, 0.09143199026584625, 0.07000453770160675, 0.08606479316949844, 0.054692089557647705, 0.04827326163649559, 0.06029229983687401], [0.06381995230913162, 0.03170640766620636, 0.004985055420547724, 0.016410794109106064, 0.010395670309662819, 0.00661464361473918, 0.03198925778269768, 0.03062201663851738, 0.0027444791048765182, 0.03453819453716278, 0.2534266412258148, 0.16793431341648102, 0.06967359781265259, 0.09238817542791367, 0.048972662538290024, 0.11378097534179688, 0.01999727636575699]], [[0.03515833616256714, 0.0798664465546608, 0.01630859263241291, 0.14789149165153503, 0.08934218436479568, 0.03217592090368271, 0.06830880045890808, 0.030619218945503235, 0.17491836845874786, 0.0416850820183754, 0.04187638685107231, 0.051688242703676224, 0.04284347966313362, 0.010884474031627178, 0.02676309645175934, 0.04683941602706909, 0.06283047050237656], [0.00906633771955967, 0.007233552634716034, 0.0071291569620370865, 0.0901627242565155, 0.08500444144010544, 0.03731818124651909, 0.017713570967316628, 0.04864385724067688, 0.6713555455207825, 0.0013698127586394548, 0.001527724089100957, 0.003079200629144907, 0.0036342886742204428, 0.002154689049348235, 0.0011569688795134425, 0.0025306325405836105, 0.010919292457401752], [0.02119581773877144, 0.013936267234385014, 0.18366488814353943, 0.04073388874530792, 0.14117489755153656, 0.29261794686317444, 0.022417636588215828, 0.19487611949443817, 0.05600067228078842, 0.0019989456050097942, 0.004539075773209333, 0.0021221840288490057, 0.0043496135622262955, 0.009173189289867878, 0.00819883868098259, 0.001727689290419221, 0.0012723386753350496], [0.019561290740966797, 0.030619964003562927, 0.024989742785692215, 0.007378019858151674, 0.15077579021453857, 0.031912967562675476, 0.0557866245508194, 0.06938115507364273, 0.5711490511894226, 0.024206284433603287, 0.0011899482924491167, 0.0009746656287461519, 0.0016707185423001647, 0.0010043636430054903, 0.001857830211520195, 0.0005939669790677726, 0.00694759888574481], [0.014949947595596313, 0.0364830456674099, 0.10173313319683075, 0.06478868424892426, 0.11181814223527908, 0.2349889725446701, 0.02512570470571518, 0.2544487416744232, 0.06896540522575378, 0.02933378890156746, 0.019377965480089188, 0.0010600468376651406, 0.009931511245667934, 0.011072607710957527, 0.010862203314900398, 0.0034645176492631435, 0.0015955098206177354], [0.07112161815166473, 0.09935048967599869, 0.17491373419761658, 0.10266263037919998, 0.2617430090904236, 0.09294117987155914, 0.03491080179810524, 0.07117832452058792, 0.04160849004983902, 0.022633247077465057, 0.004940207116305828, 0.0032543574925512075, 0.008275501430034637, 0.005043844226747751, 0.0024784624110907316, 0.0015372901689261198, 0.0014068287564441562], [0.006367841735482216, 0.021246016025543213, 0.08985381573438644, 0.3080625832080841, 0.2526113986968994, 0.11120738834142685, 0.028941325843334198, 0.09924904257059097, 0.06420885026454926, 0.0013314973330125213, 0.0024215762969106436, 0.00171946850605309, 0.004013487603515387, 0.004174456931650639, 0.0027731608133763075, 0.0011439566733315587, 0.0006740911048837006], [0.02697315625846386, 0.04311920329928398, 0.1649632751941681, 0.08712518215179443, 0.10151567310094833, 0.09761759638786316, 0.11727719753980637, 0.11513151228427887, 0.21653573215007782, 0.0010895318118855357, 0.004290437325835228, 0.0062949806451797485, 0.004447329323738813, 0.004242948722094297, 0.007139301858842373, 0.0003665502299554646, 0.0018705135444179177], [0.002932084957137704, 0.08548032492399216, 0.015188615769147873, 0.32496634125709534, 0.06970572471618652, 0.007528556976467371, 0.06105625256896019, 0.04819296672940254, 0.3530505299568176, 0.00633058650419116, 0.001208824454806745, 0.010793852619826794, 0.003044052980840206, 0.0009751369943842292, 0.002682421123608947, 0.003046723548322916, 0.0038170877378433943], [0.026182059198617935, 0.0026353721041232347, 0.014284180477261543, 0.0019502710783854127, 0.002652481198310852, 0.0106190862134099, 0.0039725396782159805, 0.01705651544034481, 0.0050896815955638885, 0.07474858313798904, 0.07118715345859528, 0.06656379997730255, 0.1229143962264061, 0.14376245439052582, 0.06306520104408264, 0.2047741562128067, 0.1685420423746109], [0.00655555771663785, 0.0012789893662557006, 0.0010506988037377596, 0.00044898202759213746, 0.0012205109233036637, 0.0004583994741551578, 0.0007158190128393471, 0.0017670101951807737, 0.00580983841791749, 0.5319936871528625, 0.012461146339774132, 0.05339212715625763, 0.05954696238040924, 0.008004698902368546, 0.004466962534934282, 0.02240138314664364, 0.2884272336959839], [0.019198056310415268, 0.001700622378848493, 0.0006798736867494881, 0.0012679336359724402, 0.0018198138568550348, 0.0021204801741987467, 0.0017914302879944444, 0.00396747887134552, 0.005293841939419508, 0.23742806911468506, 0.20335489511489868, 0.03166976571083069, 0.06257409602403641, 0.04587889090180397, 0.029524097219109535, 0.09712150692939758, 0.25460922718048096], [0.03541591390967369, 0.0010044040391221642, 0.009562980383634567, 0.0031110995914787054, 0.004129722248762846, 0.012886565178632736, 0.005492286290973425, 0.014601752161979675, 0.003477429738268256, 0.18211369216442108, 0.07259315997362137, 0.1317169964313507, 0.10589143633842468, 0.16349096596240997, 0.06330373883247375, 0.0840979814529419, 0.10710986703634262], [0.02291938289999962, 0.006745031103491783, 0.02585463784635067, 0.016562605276703835, 0.018693825230002403, 0.026624808087944984, 0.013393472880125046, 0.025357374921441078, 0.007036125287413597, 0.07818956673145294, 0.06174234300851822, 0.0683279037475586, 0.06935539096593857, 0.03648192062973976, 0.06454432755708694, 0.4329819679260254, 0.02518923580646515], [0.012972544878721237, 0.004065094515681267, 0.02714398130774498, 0.0024757881183177233, 0.008076858706772327, 0.02106679230928421, 0.010974295437335968, 0.03196815028786659, 0.0046197292394936085, 0.07364416122436523, 0.06945107132196426, 0.06775133311748505, 0.11162839829921722, 0.13545583188533783, 0.07084579020738602, 0.26834627985954285, 0.07951385527849197], [0.011609595268964767, 0.0008981616119854152, 0.00037887669168412685, 0.0001698910491541028, 0.0013160291127860546, 0.0010050254641100764, 0.0007526596309617162, 0.0023018934298306704, 0.007861015386879444, 0.3170816898345947, 0.023111121729016304, 0.028089255094528198, 0.06838614493608475, 0.013917909003794193, 0.007903464138507843, 0.006222649943083525, 0.5089946389198303], [0.0019937308970838785, 0.0008322559297084808, 0.00023586218594573438, 0.001045373734086752, 0.0003337216912768781, 0.0001086789125110954, 0.001255252631381154, 0.001599939540028572, 0.0025449173990637064, 0.26299434900283813, 0.023124611005187035, 0.26984673738479614, 0.04125869646668434, 0.009962305426597595, 0.014961829409003258, 0.06820107251405716, 0.29970061779022217]], [[0.008703794330358505, 0.028337936848402023, 0.036497388035058975, 0.3179890811443329, 0.0342254638671875, 0.014647513628005981, 0.15658988058567047, 0.07963840663433075, 0.0504162460565567, 0.007810052018612623, 0.02126569114625454, 0.04604148864746094, 0.014514554291963577, 0.025807274505496025, 0.04341826215386391, 0.08485356718301773, 0.029243331402540207], [0.003257530275732279, 0.014143377542495728, 0.030460435897111893, 0.5566112399101257, 0.0674440786242485, 0.02056693658232689, 0.02118591219186783, 0.08736512809991837, 0.12027458846569061, 0.003574702423065901, 0.004306348040699959, 0.00856547337025404, 0.005849181208759546, 0.006364749278873205, 0.02825976349413395, 0.014159289188683033, 0.007611260283738375], [0.019974956288933754, 0.011629141867160797, 0.07035370171070099, 0.02859698049724102, 0.08074373006820679, 0.13332095742225647, 0.06927911937236786, 0.46246176958084106, 0.04819855839014053, 0.009691307321190834, 0.0013374672271311283, 0.013957006856799126, 0.007881246507167816, 0.01621880754828453, 0.01895863004028797, 0.004472723230719566, 0.0029238893184810877], [0.014392857439815998, 0.6814941763877869, 0.024798402562737465, 0.00337932538241148, 0.053651124238967896, 0.0072357975877821445, 0.007232386618852615, 0.022842107340693474, 0.08711760491132736, 0.0298911165446043, 0.030503615736961365, 0.0018633375875651836, 0.026354365050792694, 0.004749304614961147, 0.0009832560317590833, 0.0005606042104773223, 0.0029506373684853315], [0.027468478307127953, 0.10789855569601059, 0.19367998838424683, 0.06358932703733444, 0.04233098775148392, 0.23926369845867157, 0.005481854546815157, 0.04740671068429947, 0.06732773035764694, 0.01831057108938694, 0.035194605588912964, 0.003690612269565463, 0.0874093770980835, 0.027725795283913612, 0.029748598113656044, 0.0012340922839939594, 0.002238919958472252], [0.02020617201924324, 0.02203536406159401, 0.033887434750795364, 0.050584208220243454, 0.5214219093322754, 0.0702914372086525, 0.042194753885269165, 0.10264209657907486, 0.07326971739530563, 0.01757563278079033, 0.002588002709671855, 0.0020996304228901863, 0.015356292948126793, 0.01379159465432167, 0.007605087012052536, 0.0010641419794410467, 0.0033865529112517834], [0.025835225358605385, 0.024546880275011063, 0.06501937657594681, 0.17729876935482025, 0.23874863982200623, 0.12987853586673737, 0.0258779339492321, 0.11599919945001602, 0.06498986482620239, 0.016615135595202446, 0.013382242992520332, 0.02174832671880722, 0.021303698420524597, 0.03887410834431648, 0.013686718419194221, 0.002741637174040079, 0.003453668439760804], [0.012444564141333103, 0.02419978938996792, 0.09062561392784119, 0.04456598684191704, 0.09836862236261368, 0.03768983855843544, 0.04686807841062546, 0.30903956294059753, 0.15584996342658997, 0.03142288699746132, 0.018415672704577446, 0.03722061589360237, 0.02271999791264534, 0.011616760864853859, 0.039878398180007935, 0.009723562747240067, 0.009350127540528774], [0.004296176601201296, 0.025899868458509445, 0.015311871655285358, 0.1919618397951126, 0.04361548274755478, 0.030678419396281242, 0.03896272927522659, 0.5280066132545471, 0.06130514666438103, 0.006227157078683376, 0.0064658611081540585, 0.019711071625351906, 0.003964062314480543, 0.0032162752468138933, 0.014402758330106735, 0.004201842471957207, 0.0017728424863889813], [0.024266233667731285, 0.01093385275453329, 0.016984064131975174, 0.004984752275049686, 0.007481112610548735, 0.03188614174723625, 0.00909456703811884, 0.2679964601993561, 0.022699784487485886, 0.04521472379565239, 0.17385147511959076, 0.033378779888153076, 0.1641552746295929, 0.09768208861351013, 0.034414567053318024, 0.025280149653553963, 0.029695887118577957], [0.015299608930945396, 0.015785014256834984, 0.008361319079995155, 0.0006249594152905047, 0.007860596291720867, 0.002455179812386632, 0.008047391660511494, 0.016079703345894814, 0.012717393226921558, 0.5432901978492737, 0.055639464408159256, 0.05342431366443634, 0.13850365579128265, 0.031961891800165176, 0.02108975686132908, 0.0324493832886219, 0.03641004487872124], [0.053870562463998795, 0.004424483515322208, 0.0043601482175290585, 0.001997340004891157, 0.01322959829121828, 0.014276626519858837, 0.0033141672611236572, 0.05482332780957222, 0.032131992280483246, 0.07546987384557724, 0.09363347291946411, 0.007881388999521732, 0.2760334312915802, 0.07278186082839966, 0.12219052761793137, 0.06377334892749786, 0.10580787062644958], [0.00925365462899208, 0.006607287097722292, 0.012390349991619587, 0.015145400539040565, 0.021609047427773476, 0.00757995992898941, 0.014946120791137218, 0.013473916798830032, 0.01051262766122818, 0.182551309466362, 0.07738935947418213, 0.14221714437007904, 0.0836256742477417, 0.08769398927688599, 0.13632802665233612, 0.13100314140319824, 0.04767309129238129], [0.04649527370929718, 0.007164914160966873, 0.005849217996001244, 0.0012236693874001503, 0.0437605120241642, 0.007520769722759724, 0.017299002036452293, 0.010521815158426762, 0.016591574996709824, 0.06772533059120178, 0.017187099903821945, 0.031427476555109024, 0.14749610424041748, 0.015205055475234985, 0.46340328454971313, 0.025704599916934967, 0.07542426139116287], [0.014624546281993389, 0.004884281195700169, 0.00985758937895298, 0.003012509550899267, 0.03382030501961708, 0.00245943502523005, 0.013505540788173676, 0.007328514941036701, 0.010887760668992996, 0.016765698790550232, 0.015321548096835613, 0.02908072993159294, 0.006833572406321764, 0.7107034921646118, 0.0033725458197295666, 0.04717245325446129, 0.07036957889795303], [0.01661417819559574, 0.016832664608955383, 0.004995496943593025, 0.0006262136739678681, 0.0031050376128405333, 0.0018032253719866276, 0.0009451500372961164, 0.003058635164052248, 0.005683426279574633, 0.10786101967096329, 0.1786084622144699, 0.014133759774267673, 0.3131258189678192, 0.08723433315753937, 0.022915994748473167, 0.01567789539694786, 0.20677857100963593], [0.011585846543312073, 0.0014485669089481235, 0.0012079791631549597, 0.010266603901982307, 0.003049129154533148, 0.0021340458188205957, 0.00614704005420208, 0.04010748863220215, 0.0025159502401947975, 0.0387464240193367, 0.02254108153283596, 0.14072473347187042, 0.04632231220602989, 0.027118079364299774, 0.2534995377063751, 0.23111724853515625, 0.16146792471408844]], [[0.3151586353778839, 0.1100153848528862, 0.013261418789625168, 0.007182653062045574, 0.006734122522175312, 0.015668433159589767, 0.026092085987329483, 0.012030692771077156, 0.05885550379753113, 0.04550478234887123, 0.053476933389902115, 0.01804729551076889, 0.024768279865384102, 0.012427376583218575, 0.021046994253993034, 0.025330809876322746, 0.23439855873584747], [0.12868036329746246, 0.05020623654127121, 0.04352681711316109, 0.044267669320106506, 0.06922342628240585, 0.0586404874920845, 0.11787914484739304, 0.21278542280197144, 0.011017017997801304, 0.025592343881726265, 0.0421178936958313, 0.05956674739718437, 0.0440940335392952, 0.03432290256023407, 0.030304770916700363, 0.02068067155778408, 0.007094115484505892], [0.014511588029563427, 0.03831863030791283, 0.3213781714439392, 0.057754017412662506, 0.041259948164224625, 0.18111389875411987, 0.022478805854916573, 0.035277530550956726, 0.02839508280158043, 0.06441372632980347, 0.04830627143383026, 0.023198122158646584, 0.01992473006248474, 0.03235041722655296, 0.04213673993945122, 0.019411567598581314, 0.0097707100212574], [0.09856840968132019, 0.03302838280797005, 0.05710271745920181, 0.07177997380495071, 0.08965713530778885, 0.07356850057840347, 0.059109900146722794, 0.1575271189212799, 0.041145049035549164, 0.019606277346611023, 0.012599573470652103, 0.02298656664788723, 0.05791425704956055, 0.07773377001285553, 0.03326566517353058, 0.0734192356467247, 0.020987525582313538], [0.13763386011123657, 0.023727694526314735, 0.04992688447237015, 0.0822889655828476, 0.04870613291859627, 0.03208567947149277, 0.21788309514522552, 0.10060948133468628, 0.04463799297809601, 0.025675037875771523, 0.02627575397491455, 0.09429445117712021, 0.013071255758404732, 0.024463418871164322, 0.030244100838899612, 0.03953491896390915, 0.00894131325185299], [0.06399432569742203, 0.09939510375261307, 0.04323585331439972, 0.23998641967773438, 0.039040617644786835, 0.031802985817193985, 0.07835780084133148, 0.03297166898846626, 0.05566003546118736, 0.0603729672729969, 0.026775527745485306, 0.04063938930630684, 0.013095780275762081, 0.023802625015378, 0.024258354678750038, 0.11301542073488235, 0.01359516754746437], [0.10354834794998169, 0.1194508746266365, 0.023394186049699783, 0.15901106595993042, 0.05579296872019768, 0.01770668849349022, 0.1913813352584839, 0.07892581075429916, 0.034141018986701965, 0.021089935675263405, 0.0282573401927948, 0.04269837960600853, 0.014099941588938236, 0.02838147059082985, 0.02851889468729496, 0.045091379433870316, 0.008510440587997437], [0.004442719276994467, 0.03570292517542839, 0.20076386630535126, 0.18386435508728027, 0.09603149443864822, 0.08761825412511826, 0.06705799698829651, 0.11942239105701447, 0.0375593900680542, 0.012371964752674103, 0.026716334745287895, 0.014715065248310566, 0.019626814872026443, 0.03156737610697746, 0.01938757486641407, 0.03194998577237129, 0.011201484128832817], [0.011864487081766129, 0.11439939588308334, 0.0051422445103526115, 0.014265062287449837, 0.02085231989622116, 0.0035430071875452995, 0.011535421945154667, 0.0012360550463199615, 0.7664823532104492, 0.001131283468566835, 0.0036152286920696497, 0.0008522254647687078, 0.00034796056570485234, 0.00024297041818499565, 0.00016062580107245594, 0.0008736010058782995, 0.043455757200717926], [0.062082190066576004, 0.05242917686700821, 0.02288883738219738, 0.06286608427762985, 0.021808043122291565, 0.0169636569917202, 0.12245861440896988, 0.028119267895817757, 0.01948828436434269, 0.08855277299880981, 0.05956091731786728, 0.09327330440282822, 0.04130667448043823, 0.04341350495815277, 0.027116846293210983, 0.16473986208438873, 0.07293197512626648], [0.21505969762802124, 0.01480448804795742, 0.024971431121230125, 0.02108367718756199, 0.008694419637322426, 0.020008806139230728, 0.0335586741566658, 0.15525440871715546, 0.028348395600914955, 0.038782838732004166, 0.03816986456513405, 0.07811594009399414, 0.03940173611044884, 0.05490882694721222, 0.07377290725708008, 0.07111425697803497, 0.08394961059093475], [0.0871221199631691, 0.034306786954402924, 0.016620954498648643, 0.040584951639175415, 0.01628957688808441, 0.011101530864834785, 0.13387727737426758, 0.08549814671278, 0.046284761279821396, 0.05391332507133484, 0.10950876027345657, 0.05121465027332306, 0.039336107671260834, 0.030011426657438278, 0.04578227922320366, 0.0755179226398468, 0.12302945554256439], [0.015155383385717869, 0.04207645356655121, 0.038503292948007584, 0.06510785967111588, 0.018866432830691338, 0.013820890337228775, 0.07301356643438339, 0.0866699293255806, 0.06137312203645706, 0.06311662495136261, 0.09550552070140839, 0.1489153504371643, 0.009929455816745758, 0.027894139289855957, 0.018275555223226547, 0.10901713371276855, 0.11275924742221832], [0.11631946265697479, 0.08591070771217346, 0.013996097259223461, 0.02553335763514042, 0.044912923127412796, 0.051308274269104004, 0.08520212769508362, 0.03852086141705513, 0.04989771172404289, 0.09932108223438263, 0.06320645660161972, 0.07227468490600586, 0.04815056174993515, 0.021891184151172638, 0.09003005176782608, 0.03844022750854492, 0.05508424714207649], [0.040084920823574066, 0.0794089138507843, 0.04568714648485184, 0.04725225269794464, 0.018014028668403625, 0.02296232245862484, 0.09286968410015106, 0.13630813360214233, 0.02106429450213909, 0.050591692328453064, 0.03648265078663826, 0.1787043809890747, 0.03039979189634323, 0.04410983622074127, 0.05463092029094696, 0.06780829280614853, 0.03362071514129639], [0.02700302191078663, 0.01747763529419899, 0.03070266917347908, 0.12967005372047424, 0.020561538636684418, 0.0304489117115736, 0.057144373655319214, 0.06352531909942627, 0.07827381044626236, 0.022231614217162132, 0.058685000985860825, 0.03210814297199249, 0.06691708415746689, 0.06509841978549957, 0.020255399867892265, 0.10095085948705673, 0.17894619703292847], [0.00249118753708899, 0.058819033205509186, 0.0013066079700365663, 0.004116188734769821, 0.0038019418716430664, 0.0012782010016962886, 0.00383367040194571, 0.0006938646547496319, 0.5325980186462402, 0.0034911194816231728, 0.01755925640463829, 0.0030430404003709555, 0.0007656373200006783, 0.0003766310110222548, 0.0003307466395199299, 0.0024407983291894197, 0.36305415630340576]], [[0.05366489663720131, 0.013326861895620823, 0.035705629736185074, 0.017725413665175438, 0.021139897406101227, 0.016126224771142006, 0.03905770927667618, 0.08667251467704773, 0.03724033012986183, 0.131747767329216, 0.07875160872936249, 0.02515810914337635, 0.06670679897069931, 0.022565120831131935, 0.06760559231042862, 0.047641776502132416, 0.23916368186473846], [0.10719181597232819, 0.06171116232872009, 0.3013807535171509, 0.03794829919934273, 0.05507837235927582, 0.07111842930316925, 0.06489422917366028, 0.2455788105726242, 0.010625060647726059, 0.011863687075674534, 0.015315487049520016, 0.003497633384540677, 0.004441088531166315, 0.005406490061432123, 0.003567544976249337, 0.00022161522065289319, 0.0001594703207956627], [0.2356697916984558, 0.10945609211921692, 0.3206360936164856, 0.03839602693915367, 0.03337891027331352, 0.06335017085075378, 0.05203716456890106, 0.12023136764764786, 0.007034218404442072, 0.00836984533816576, 0.003998216241598129, 0.0022902516648173332, 0.0016475931042805314, 0.0008114398224279284, 0.002471902407705784, 0.0002081232814816758, 1.2680451618507504e-05], [0.008345738984644413, 0.5164564251899719, 0.20191191136837006, 0.05351008102297783, 0.06803572177886963, 0.05143987759947777, 0.01573142223060131, 0.034689582884311676, 0.007977493107318878, 0.007897846400737762, 0.02351473830640316, 0.002882627537474036, 0.005294881761074066, 0.0012846369063481688, 0.0009333751513622701, 8.39518615975976e-05, 9.552006304147653e-06], [0.06676739454269409, 0.27349960803985596, 0.4561753273010254, 0.055715933442115784, 0.09682420641183853, 0.026370450854301453, 0.007020842283964157, 0.008348268456757069, 0.0007414669962599874, 0.0035285507328808308, 0.0013157157227396965, 0.00038352955016307533, 0.0023205154575407505, 0.000476876157335937, 0.0004446223028935492, 6.371040944941342e-05, 2.9752748105238425e-06], [0.1661752313375473, 0.0685761496424675, 0.4658031165599823, 0.07675064355134964, 0.13027821481227875, 0.03830696642398834, 0.014079157263040543, 0.02513439953327179, 0.0010443981736898422, 0.0031104814261198044, 0.001444032066501677, 0.0006676503107883036, 0.003515154356136918, 0.0036656686570495367, 0.001331364386714995, 9.938723815139383e-05, 1.809268542274367e-05], [0.01189227681607008, 0.03440048173069954, 0.12620249390602112, 0.06225048750638962, 0.5502164363861084, 0.17143751680850983, 0.016833234578371048, 0.008786951191723347, 0.001322822761721909, 0.0011419992661103606, 0.001093560946173966, 0.0009655383182689548, 0.006927405018359423, 0.005606699734926224, 0.0006572494748979807, 0.00020566907187458128, 5.9139758377568796e-05], [0.0033392421901226044, 0.014496413059532642, 0.030030017718672752, 0.1475164294242859, 0.3980634808540344, 0.047243718057870865, 0.04660404473543167, 0.26027533411979675, 0.009565036743879318, 0.0031682979315519333, 0.011523754335939884, 0.004697142168879509, 0.011235179379582405, 0.0065018306486308575, 0.003318639937788248, 0.002174386056140065, 0.00024708223645575345], [0.007030535489320755, 0.030325111001729965, 0.023130590096116066, 0.016618795692920685, 0.1984899491071701, 0.12919509410858154, 0.20506642758846283, 0.38063156604766846, 0.00394117645919323, 0.0008863060502335429, 0.0019725332967936993, 0.0002003176778089255, 0.0011080717667937279, 0.0011153894010931253, 0.00026514811906963587, 2.0453282559174113e-05, 2.6044726837426424e-06], [0.003567933337762952, 0.006447296589612961, 0.012742963619530201, 0.0049604326486587524, 0.031012924388051033, 0.023581689223647118, 0.07633425295352936, 0.7590482831001282, 0.04287115857005119, 0.016943028196692467, 0.011061662808060646, 0.0012298504589125514, 0.005625784397125244, 0.002090521389618516, 0.0013406253419816494, 0.0009446584153920412, 0.00019689225882757455], [0.002508379751816392, 0.008127317763864994, 0.006937735248357058, 0.003746312577277422, 0.012477690353989601, 0.01154171023517847, 0.029863722622394562, 0.6015902161598206, 0.2265121340751648, 0.059228263795375824, 0.02252165786921978, 0.0065796407870948315, 0.004541346337646246, 0.0007519465289078653, 0.0016162429237738252, 0.0010733185335993767, 0.0003823531442321837], [0.0013870190596207976, 0.02100195735692978, 0.00815045926719904, 0.02463262714445591, 0.007942592725157738, 0.011483998037874699, 0.012731208465993404, 0.44544947147369385, 0.263877809047699, 0.13180671632289886, 0.051571331918239594, 0.003083230461925268, 0.011088494211435318, 0.0018862361321225762, 0.0010846008080989122, 0.0023257946595549583, 0.0004966087872162461], [0.013663713820278645, 0.013034246861934662, 0.016080224886536598, 0.006316511891782284, 0.026983000338077545, 0.01072967704385519, 0.025954073294997215, 0.15858541429042816, 0.09496775269508362, 0.23595298826694489, 0.2675606906414032, 0.0608065202832222, 0.05850319191813469, 0.003931818064302206, 0.004518663976341486, 0.0020161629654467106, 0.000395295734051615], [0.011303563602268696, 0.008551310747861862, 0.017003187909722328, 0.014643363654613495, 0.014294256456196308, 0.006495532114058733, 0.008540479466319084, 0.054204944521188736, 0.047746505588293076, 0.1697213053703308, 0.24143975973129272, 0.15802733600139618, 0.2151937186717987, 0.014083472080528736, 0.01092943362891674, 0.0060703023336827755, 0.0017515834188088775], [0.0015166419325396419, 0.008756814524531364, 0.012863056734204292, 0.01837296597659588, 0.027307458221912384, 0.007392773870378733, 0.021870072931051254, 0.03886174038052559, 0.026515083387494087, 0.025678327307105064, 0.1431700438261032, 0.10860763490200043, 0.4547676742076874, 0.08180113136768341, 0.01281964872032404, 0.006552339531481266, 0.0031466681975871325], [0.0009545692591927946, 0.001522948150523007, 0.002078883582726121, 0.0015379617689177394, 0.002696308773010969, 0.001345092081464827, 0.003131213830783963, 0.012030623853206635, 0.009217243641614914, 0.011800726875662804, 0.3264195919036865, 0.08330187201499939, 0.3033777177333832, 0.18165475130081177, 0.04365663230419159, 0.01224252674728632, 0.003031285712495446], [0.005904765799641609, 0.004374198615550995, 0.006154804956167936, 0.0007268937770277262, 0.003546689171344042, 0.001545797218568623, 0.0059205312281847, 0.013320356607437134, 0.00551215372979641, 0.0072792391292750835, 0.1268681287765503, 0.05033908411860466, 0.2587333619594574, 0.24454623460769653, 0.17340511083602905, 0.07920872420072556, 0.012613956816494465]], [[0.022592751309275627, 0.041242972016334534, 0.06407269835472107, 0.041319869458675385, 0.06316812336444855, 0.12288127094507217, 0.03249724954366684, 0.01767602376639843, 0.03114771470427513, 0.1399928480386734, 0.03838957101106644, 0.06812949478626251, 0.04396490007638931, 0.08401870727539062, 0.056498318910598755, 0.07249383628368378, 0.05991361662745476], [0.0024522601161152124, 0.05789865553379059, 0.2315445989370346, 0.304757684469223, 0.18794825673103333, 0.05799189209938049, 0.048881154507398605, 0.034303195774555206, 0.052871618419885635, 0.0021386321168392897, 0.001978401793166995, 0.002313601551577449, 0.003174731507897377, 0.003533181268721819, 0.005604541394859552, 0.001970448298379779, 0.0006372025818563998], [0.07386548072099686, 0.07841330021619797, 0.05245635658502579, 0.0539100207388401, 0.2018413543701172, 0.19102394580841064, 0.0738258808851242, 0.1676979660987854, 0.03512115776538849, 0.025920525193214417, 0.001833446673117578, 0.0021894965320825577, 0.0048238663002848625, 0.0052408636547625065, 0.025936903432011604, 0.00504214596003294, 0.000857346341945231], [0.01166706345975399, 0.033831946551799774, 0.09444530308246613, 0.031177956610918045, 0.2863520681858063, 0.2343894988298416, 0.08405474573373795, 0.1434207260608673, 0.05359455198049545, 0.005088564939796925, 0.001422438770532608, 0.0007215141085907817, 0.007617046125233173, 0.0029152221977710724, 0.007982546463608742, 0.0010119563667103648, 0.0003069056256208569], [0.003358527086675167, 0.033571645617485046, 0.09078340977430344, 0.024664288386702538, 0.14903205633163452, 0.29403719305992126, 0.11627621948719025, 0.2077040821313858, 0.04962916672229767, 0.01149197481572628, 0.001370060839690268, 0.0011997469700872898, 0.005541961174458265, 0.004602860659360886, 0.005630850791931152, 0.0006087329820729792, 0.0004972346359863877], [0.10242671519517899, 0.01428561843931675, 0.27957308292388916, 0.02694641798734665, 0.02779257670044899, 0.04037510231137276, 0.05366629734635353, 0.37752828001976013, 0.03707906976342201, 0.022837096825242043, 0.0018641973147168756, 0.0008440730161964893, 0.0017874921904876828, 0.0046611069701612, 0.006668757647275925, 0.0012950439704582095, 0.00036907749017700553], [0.008889823220670223, 0.044925156980752945, 0.15463511645793915, 0.025073954835534096, 0.07735048979520798, 0.23808468878269196, 0.03327044099569321, 0.24279668927192688, 0.0773877203464508, 0.03436198830604553, 0.011761189438402653, 0.006235687993466854, 0.0059006488882005215, 0.02326914854347706, 0.013922258280217648, 0.0011311275884509087, 0.0010038753971457481], [0.00512270350009203, 0.02222408540546894, 0.013582033105194569, 0.056794486939907074, 0.018675442785024643, 0.021052811294794083, 0.03266278654336929, 0.5071450471878052, 0.25193968415260315, 0.009966454468667507, 0.026696957647800446, 0.01665411703288555, 0.004814067855477333, 0.0027057058177888393, 0.004738589283078909, 0.003753240453079343, 0.0014718392631039023], [0.0005366563564166427, 0.010071475990116596, 0.02656141296029091, 0.013414682820439339, 0.014030099846422672, 0.012698138132691383, 0.021791649982333183, 0.8589319586753845, 0.009669174440205097, 0.007888669148087502, 0.006772278342396021, 0.0049042715691030025, 0.00709201954305172, 0.0023182425647974014, 0.002772808773443103, 0.000488156802020967, 5.827374479849823e-05], [0.005822913721203804, 0.0067282626405358315, 0.008053707890212536, 0.004308303818106651, 0.011623624712228775, 0.00645578233525157, 0.0034779582638293505, 0.02257639169692993, 0.024457497522234917, 0.02696382813155651, 0.21083782613277435, 0.15946076810359955, 0.1944255530834198, 0.0941864550113678, 0.0901217982172966, 0.03318466991186142, 0.09731460362672806], [0.006752613931894302, 0.021546373143792152, 0.022713132202625275, 0.03949722275137901, 0.02330799028277397, 0.02343795821070671, 0.007825855165719986, 0.018903149291872978, 0.018383199349045753, 0.06708011776208878, 0.01935456693172455, 0.09393268078565598, 0.09119968116283417, 0.13621564209461212, 0.17743781208992004, 0.19761450588703156, 0.03479741886258125], [0.010231377556920052, 0.006993897724896669, 0.0035543779376894236, 0.006209128070622683, 0.008916785940527916, 0.0025827386416494846, 0.013614773750305176, 0.02752945013344288, 0.008013597689568996, 0.034138623625040054, 0.06695550680160522, 0.0347055122256279, 0.2647591233253479, 0.07598547637462616, 0.38272085785865784, 0.029523678123950958, 0.023565147072076797], [0.0017297770828008652, 0.0035777920857071877, 0.004379001911729574, 0.00348403537645936, 0.013788655400276184, 0.010207629762589931, 0.006903520785272121, 0.01639179140329361, 0.0050702570006251335, 0.06593973934650421, 0.017517302185297012, 0.05015934631228447, 0.1409766674041748, 0.14035001397132874, 0.21759778261184692, 0.18434959650039673, 0.11757706105709076], [0.02367863617837429, 0.014378308318555355, 0.019954072311520576, 0.01592298410832882, 0.017052380368113518, 0.014680364169180393, 0.031541772186756134, 0.1418466866016388, 0.016826948150992393, 0.06164643540978432, 0.04712852090597153, 0.023603985086083412, 0.07742704451084137, 0.03240324556827545, 0.11892727762460709, 0.23681142926216125, 0.1061699315905571], [0.0025931817945092916, 0.005052092485129833, 0.00449332082644105, 0.007472687866538763, 0.00824285950511694, 0.006850372534245253, 0.00588183430954814, 0.01014531310647726, 0.003920306917279959, 0.03335360810160637, 0.007960778661072254, 0.051070135086774826, 0.06304628401994705, 0.0462176539003849, 0.036121029406785965, 0.5187029242515564, 0.18887564539909363], [0.006727236323058605, 0.008314987644553185, 0.016345614567399025, 0.013904438354074955, 0.018732335418462753, 0.022339019924402237, 0.013412481173872948, 0.04597458615899086, 0.008343709632754326, 0.041254106909036636, 0.0301947221159935, 0.033651288598775864, 0.12942668795585632, 0.09611938893795013, 0.17631614208221436, 0.12154346704483032, 0.21739977598190308], [0.001379967201501131, 0.0031912035774439573, 0.004053221084177494, 0.002789696678519249, 0.00516172219067812, 0.0034302109852433205, 0.015421082265675068, 0.3257053792476654, 0.0012095352867618203, 0.05029366910457611, 0.04462410509586334, 0.048011474311351776, 0.18008168041706085, 0.028116412460803986, 0.07472699880599976, 0.13831168413162231, 0.0734918862581253]], [[0.025229431688785553, 0.1906249225139618, 0.018277404829859734, 0.011615282855927944, 0.029721707105636597, 0.008722244761884212, 0.07310659438371658, 0.10010955482721329, 0.05713200196623802, 0.05475836247205734, 0.04314306005835533, 0.1592230200767517, 0.036683451384305954, 0.021975398063659668, 0.07122796773910522, 0.018974140286445618, 0.07947549968957901], [0.012608767487108707, 0.12484779208898544, 0.026645516976714134, 0.03025100752711296, 0.09148713201284409, 0.022706059738993645, 0.049812521785497665, 0.09678985923528671, 0.2959100902080536, 0.0319729819893837, 0.02228666841983795, 0.0232565738260746, 0.02562052384018898, 0.021012352779507637, 0.027559524402022362, 0.020890893414616585, 0.07634176313877106], [0.1415875405073166, 0.03529421240091324, 0.22378429770469666, 0.06198011711239815, 0.1561271846294403, 0.12882360816001892, 0.0391521230340004, 0.0539872832596302, 0.0032149699982255697, 0.016723942011594772, 0.011417727917432785, 0.007595948409289122, 0.02660720981657505, 0.03540116921067238, 0.038540177047252655, 0.01873904839158058, 0.0010234653018414974], [0.017227372154593468, 0.10166235268115997, 0.03571029007434845, 0.03298285976052284, 0.12852007150650024, 0.04406985640525818, 0.09933997690677643, 0.07160454988479614, 0.2834462821483612, 0.013986077159643173, 0.012742975726723671, 0.013676805421710014, 0.022733399644494057, 0.020076457411050797, 0.02279636636376381, 0.023109592497348785, 0.056314706802368164], [0.028876036405563354, 0.09424487501382828, 0.04294281452894211, 0.041587136685848236, 0.10838973522186279, 0.17510558664798737, 0.08401867747306824, 0.14879046380519867, 0.08715034276247025, 0.029224565252661705, 0.009517844766378403, 0.010138439014554024, 0.05474145710468292, 0.034425996243953705, 0.017445022240281105, 0.015107192099094391, 0.01829385571181774], [0.07790114730596542, 0.037476781755685806, 0.04905135557055473, 0.00814921222627163, 0.26637306809425354, 0.12962016463279724, 0.09078303724527359, 0.05145665630698204, 0.0279252827167511, 0.0244514849036932, 0.018658295273780823, 0.005730919074267149, 0.11969494074583054, 0.023751411586999893, 0.05797486752271652, 0.003649243153631687, 0.007352083455771208], [0.08221862465143204, 0.11170019954442978, 0.04120054468512535, 0.045744847506284714, 0.09016142785549164, 0.04958293214440346, 0.11624215543270111, 0.05828208848834038, 0.16475266218185425, 0.04565241187810898, 0.018964026123285294, 0.028694765642285347, 0.027565328404307365, 0.03266844525933266, 0.037144891917705536, 0.016734721139073372, 0.03268992155790329], [0.13198214769363403, 0.08994144201278687, 0.22639891505241394, 0.11927301436662674, 0.11254222691059113, 0.1049356609582901, 0.0779351145029068, 0.043838679790496826, 0.0007090592989698052, 0.011589981615543365, 0.019597677513957024, 0.0017998183611780405, 0.012662512250244617, 0.008410376496613026, 0.021716704592108727, 0.016524679958820343, 0.0001418645988451317], [0.3768383860588074, 0.12330149859189987, 0.02853669784963131, 0.03096090629696846, 0.04759572446346283, 0.059986863285303116, 0.1724219024181366, 0.07827011495828629, 0.007937856018543243, 0.00919436477124691, 0.004470595624297857, 0.009378609247505665, 0.010524829849600792, 0.01043486874550581, 0.019735919311642647, 0.008899723179638386, 0.001511107780970633], [0.03135097771883011, 0.05269235000014305, 0.023349938914179802, 0.1323545277118683, 0.13828955590724945, 0.07383492588996887, 0.031481850892305374, 0.028434528037905693, 0.020914731547236443, 0.033943936228752136, 0.03359381482005119, 0.02261863648891449, 0.08283568173646927, 0.07018949091434479, 0.04248347505927086, 0.16127561032772064, 0.020356111228466034], [0.03490123152732849, 0.10801766067743301, 0.019449643790721893, 0.04172982648015022, 0.07739521563053131, 0.03016926348209381, 0.13350681960582733, 0.048867661505937576, 0.03307081386446953, 0.06607325375080109, 0.08509712666273117, 0.045208368450403214, 0.056096915155649185, 0.04158082604408264, 0.04673530161380768, 0.08800392597913742, 0.04409627243876457], [0.05154607072472572, 0.13161619007587433, 0.015470139682292938, 0.037308115512132645, 0.09358541667461395, 0.045323196798563004, 0.08748354762792587, 0.04389321058988571, 0.0751238763332367, 0.03394602984189987, 0.06617578864097595, 0.039348721504211426, 0.0755181759595871, 0.04657603055238724, 0.05110987275838852, 0.03752486780285835, 0.06845078617334366], [0.045170001685619354, 0.023220911622047424, 0.05770496651530266, 0.02595735527575016, 0.2384619265794754, 0.22330813109874725, 0.06707781553268433, 0.04752959683537483, 0.005720003042370081, 0.029135147109627724, 0.029502270743250847, 0.004957693628966808, 0.06609918177127838, 0.0657583475112915, 0.04484422132372856, 0.01947348192334175, 0.00607894454151392], [0.05315763130784035, 0.06410051882266998, 0.020315688103437424, 0.015302143059670925, 0.1043320894241333, 0.2639279365539551, 0.030412442982196808, 0.023462509736418724, 0.02145475521683693, 0.029132265597581863, 0.09598658233880997, 0.03790988028049469, 0.07511664181947708, 0.06056159734725952, 0.04498083144426346, 0.03499474376440048, 0.0248517207801342], [0.16818305850028992, 0.06326840817928314, 0.05614742264151573, 0.07093902677297592, 0.04383542761206627, 0.11131663620471954, 0.023724956437945366, 0.034650057554244995, 0.01285067480057478, 0.03518915921449661, 0.024192672222852707, 0.04659947007894516, 0.024818921461701393, 0.07859275490045547, 0.04899810999631882, 0.14249159395694733, 0.014201649464666843], [0.018804555758833885, 0.1452721804380417, 0.015372946858406067, 0.046491123735904694, 0.06757894158363342, 0.04078845679759979, 0.0687142089009285, 0.02868746407330036, 0.07122844457626343, 0.043288882821798325, 0.06034913659095764, 0.04891715571284294, 0.024664482101798058, 0.039178308099508286, 0.0678272470831871, 0.11166568100452423, 0.10117077082395554], [0.6231653690338135, 0.04444140940904617, 0.015488763339817524, 0.014099380932748318, 0.023624960333108902, 0.06599694490432739, 0.04869147017598152, 0.02038084715604782, 0.0009414941305294633, 0.014225088059902191, 0.01238776370882988, 0.018895264714956284, 0.01611875183880329, 0.028241945430636406, 0.03211964666843414, 0.019706713035702705, 0.0014741843333467841]], [[0.5297853946685791, 0.028465336188673973, 0.02506268583238125, 0.029630254954099655, 0.04766254499554634, 0.01360179390758276, 0.03147514909505844, 0.02458438090980053, 0.04230737313628197, 0.023439422249794006, 0.04026693105697632, 0.026047907769680023, 0.023394061252474785, 0.05324985086917877, 0.01479105744510889, 0.019583487883210182, 0.02665235474705696], [0.17063994705677032, 0.05888991057872772, 0.5528180599212646, 0.05428105592727661, 0.025899801403284073, 0.001957215601578355, 0.04174285754561424, 0.010018263012170792, 0.037448253482580185, 0.003583453129976988, 0.019389398396015167, 0.005982087459415197, 0.004441962111741304, 0.004561947658658028, 0.0007211402407847345, 0.007333206012845039, 0.0002913186326622963], [0.8909273147583008, 0.08032894879579544, 0.0025539323687553406, 0.010308152996003628, 0.0017845286056399345, 0.00020814086019527167, 0.00026543892454355955, 0.001113833743147552, 0.004582714289426804, 0.0019126191036775708, 0.004298180341720581, 0.00032235425896942616, 9.852810035226867e-05, 0.0006160056218504906, 0.00030618280288763344, 0.00010265781747875735, 0.00027038660482503474], [0.10857869684696198, 0.01627052016556263, 0.17978540062904358, 0.015306293964385986, 0.5894787311553955, 0.0069667198695242405, 0.01477954350411892, 0.0030409551691263914, 0.026412608101963997, 0.0021361846011132, 0.016677897423505783, 0.014800668694078922, 0.0028928909450769424, 0.0005878520314581692, 0.001204014988616109, 0.00043835901306010783, 0.0006426859763450921], [0.33767518401145935, 0.04650860279798508, 0.041055794805288315, 0.17031604051589966, 0.07923808693885803, 0.15906578302383423, 0.03530227020382881, 0.04126405343413353, 0.004364499822258949, 0.0019668610766530037, 0.0009451291407458484, 0.012885362841188908, 0.056752391159534454, 0.004813986364752054, 0.0029920327942818403, 0.0012678267667070031, 0.003586124163120985], [0.5636687278747559, 0.0009270262089557946, 0.021299337968230247, 0.0045332107692956924, 0.07245277613401413, 0.00034146313555538654, 0.3119720220565796, 0.003071835031732917, 0.006842904724180698, 0.000274136895313859, 0.0015084922779351473, 0.00021697493502870202, 0.006742208264768124, 0.003178044455125928, 0.002103708451613784, 0.00017256222781725228, 0.0006945595378056169], [0.0034285683650523424, 0.0004321909218560904, 1.4425149856833741e-05, 0.0006366359302774072, 0.0007624393911100924, 0.9838820695877075, 7.799694139976054e-05, 0.0074768359772861, 0.0011207726784050465, 0.0019184118136763573, 1.1265839930274524e-05, 5.301832061377354e-05, 2.1885936803300865e-05, 7.566863473584817e-07, 0.00012025000614812598, 1.2447904737200588e-05, 3.0048226108192466e-05], [0.029951950535178185, 0.0008752135909162462, 0.0002883475390262902, 0.0006025819457136095, 0.008834654465317726, 0.0030747363343834877, 0.06330305337905884, 0.5941256284713745, 0.28267496824264526, 0.00859396904706955, 0.005169601645320654, 0.00016499900084454566, 0.00032435308094136417, 0.00011302684288239107, 0.0012292881729081273, 0.00026034965412691236, 0.00041327576036565006], [0.7789714932441711, 0.00022499822080135345, 0.00016182770195882767, 0.0001228098408319056, 5.0754322728607804e-05, 0.00016056757885962725, 0.001908572157844901, 0.16523577272891998, 0.03237298130989075, 0.01315589714795351, 0.003399125300347805, 0.003103874158114195, 0.0008009437005966902, 0.00011767839168896899, 0.00014725646178703755, 4.433339199749753e-05, 2.0980391127523035e-05], [0.12921631336212158, 0.0027394054923206568, 0.0015853192890062928, 0.00033284889650531113, 0.0005371670704334974, 2.662128463271074e-05, 0.004090360831469297, 0.05729591101408005, 0.5213974714279175, 0.0060508777387440205, 0.2624721825122833, 0.0013905806699767709, 0.009184601716697216, 0.0010160582605749369, 0.0011505259899422526, 0.0001983383990591392, 0.0013153988402336836], [0.14676052331924438, 0.009243791922926903, 0.004999727010726929, 0.009514186531305313, 0.0008303028298541903, 0.0013667411403730512, 0.0007688934565521777, 0.07283740490674973, 0.09306642413139343, 0.2315906435251236, 0.05676010996103287, 0.3287101089954376, 0.0124549875035882, 0.007957584224641323, 0.006199636030942202, 0.015734124928712845, 0.0012047147611156106], [0.008004061877727509, 0.002158306771889329, 0.0015265600522980094, 0.0005280429031699896, 0.0004625661240424961, 2.4361703253816813e-05, 0.0011331778950989246, 0.0005862020188942552, 0.01661285199224949, 0.0009265700937248766, 0.05330977961421013, 0.006060315296053886, 0.904312014579773, 0.0032233658712357283, 0.0004049489216413349, 0.00010776261478895321, 0.0006190987187437713], [0.0762576013803482, 0.001045120763592422, 0.003688471857458353, 0.0010932286968454719, 0.00449006212875247, 0.002644736785441637, 0.00073879404226318, 0.0010261982679367065, 0.0015050700167194009, 0.001638186746276915, 0.006756780203431845, 0.8357359170913696, 0.039099596440792084, 0.010943735018372536, 0.005432555451989174, 0.007262994069606066, 0.0006409725174307823], [0.2574582099914551, 0.0006624235538765788, 0.0005549232009798288, 0.0007254296215251088, 0.0025924642104655504, 5.587463601841591e-05, 7.177134830271825e-05, 7.798853766871616e-05, 0.0012320630485191941, 0.0028394758701324463, 0.0052256714552640915, 0.0048163277097046375, 0.017115430906414986, 0.004212055820971727, 0.6857254505157471, 0.0031236365903168917, 0.01351089496165514], [0.010709894821047783, 0.0007484433590434492, 8.900796819943935e-05, 0.0016312870429828763, 0.003602010430768132, 0.00010779048170661554, 0.000447740574600175, 0.0009123242925852537, 0.0005111492937430739, 0.00017394138558302075, 0.0009958456503227353, 0.0077655017375946045, 0.0036991583183407784, 0.9275467991828918, 0.0008852282771840692, 0.034538235515356064, 0.005635612644255161], [0.08550012111663818, 0.0001672657672315836, 0.0005095266969874501, 7.990856829565018e-05, 0.0007041409844532609, 1.4359509805217385e-05, 0.0009417919791303575, 0.00023594428785145283, 0.0007948753773234785, 0.00013249741459731013, 0.0024288392160087824, 0.00199946784414351, 0.44115275144577026, 0.009732081554830074, 0.08865057677030563, 0.004404876381158829, 0.3625509738922119], [0.8495730757713318, 3.872965862683486e-06, 3.082321200054139e-05, 7.923857992864214e-06, 1.9904187865904532e-05, 5.858074018760817e-06, 4.14150272263214e-05, 0.00016338461136911064, 3.6585079215001315e-05, 8.851963502820581e-05, 6.038512583472766e-05, 0.0003887961502186954, 0.0007887074025347829, 0.0009766381699591875, 0.005481830332428217, 0.05996217578649521, 0.08237022906541824]], [[0.0028138835914433002, 0.14595000445842743, 0.004342307336628437, 0.007798220496624708, 0.47588446736335754, 0.005292847286909819, 0.01191490888595581, 0.0007258609985001385, 0.012314080260694027, 0.0026334223803132772, 0.07959385216236115, 0.005817516706883907, 0.1497550904750824, 0.031208788976073265, 0.019496599212288857, 0.010442382656037807, 0.03401554748415947], [0.30839553475379944, 0.02442958578467369, 0.04210550710558891, 0.12423135340213776, 0.024058213457465172, 0.13344943523406982, 0.07468478381633759, 0.07993800938129425, 0.07432860136032104, 0.02326391264796257, 0.02260420098900795, 0.01761590875685215, 0.006955130957067013, 0.010127308778464794, 0.008846303448081017, 0.017809618264436722, 0.007156712934374809], [0.007676139939576387, 0.0639035552740097, 0.09770851582288742, 0.025784390047192574, 0.015926800668239594, 0.19102120399475098, 0.023956621065735817, 0.22462424635887146, 0.08848381042480469, 0.026195261627435684, 0.0027917984407395124, 0.0498599074780941, 0.026894720271229744, 0.10260621458292007, 0.0195894967764616, 0.003518287790939212, 0.02945900708436966], [0.562584638595581, 0.03440006449818611, 0.055883146822452545, 0.012190770357847214, 0.04682030528783798, 0.06307457387447357, 0.012469426728785038, 0.07332248985767365, 0.07798133790493011, 0.005355661269277334, 0.008300283923745155, 0.006190975196659565, 0.007199685089290142, 0.004158606752753258, 0.015873489901423454, 0.010205147787928581, 0.003989442251622677], [0.18359829485416412, 0.038653552532196045, 0.15460149943828583, 0.011411380022764206, 0.013630617409944534, 0.18495121598243713, 0.02157178893685341, 0.12013169378042221, 0.1598767638206482, 0.014547049067914486, 0.006147957872599363, 0.009481131099164486, 0.011048650369048119, 0.009451921097934246, 0.03990714251995087, 0.008042896166443825, 0.012946530245244503], [0.13900348544120789, 0.08148740977048874, 0.23679934442043304, 0.02080403082072735, 0.015821468085050583, 0.09797590970993042, 0.07375107705593109, 0.011617355048656464, 0.10100888460874557, 0.02710365317761898, 0.017612215131521225, 0.04142763838171959, 0.016874289140105247, 0.04132341593503952, 0.02388180047273636, 0.010554374195635319, 0.04295368120074272], [0.09020019322633743, 0.03774154558777809, 0.1005101203918457, 0.03667706623673439, 0.024326425045728683, 0.4774423837661743, 0.001731462893076241, 0.028049172833561897, 0.09966190904378891, 0.01091250404715538, 0.012680169194936752, 0.019383061677217484, 0.007540566381067038, 0.01482369378209114, 0.009787033312022686, 0.009432034566998482, 0.019100753590464592], [0.030797069892287254, 0.07728295028209686, 0.06687948852777481, 0.12017962336540222, 0.02633104845881462, 0.07644528150558472, 0.138240247964859, 0.02326146326959133, 0.14521564543247223, 0.04453102499246597, 0.029573574662208557, 0.04475005716085434, 0.019740616902709007, 0.02711784467101097, 0.04582895338535309, 0.03775162249803543, 0.04607353359460831], [0.8316414952278137, 0.049767155200242996, 0.0029625813476741314, 0.014293511398136616, 0.016213009133934975, 0.005573486443608999, 0.009432957507669926, 0.0010794304544106126, 0.04657946154475212, 0.0003252702590543777, 0.01323314942419529, 0.0011480662506073713, 0.0008952190401032567, 0.0003345238510519266, 0.0024672735016793013, 0.0018658393528312445, 0.00218773540109396], [0.020670412108302116, 0.029202111065387726, 0.04855913668870926, 0.016554342582821846, 0.021941810846328735, 0.09035651385784149, 0.026405109092593193, 0.03387559577822685, 0.087388776242733, 0.072963185608387, 0.06884146481752396, 0.05169367417693138, 0.08162571489810944, 0.047629643231630325, 0.038143742829561234, 0.05487896502017975, 0.20926976203918457], [0.08915013074874878, 0.029178563505411148, 0.03518853709101677, 0.015873081982135773, 0.025689249858260155, 0.05005418136715889, 0.0025903002824634314, 0.042547184973955154, 0.025278348475694656, 0.15273098647594452, 0.029039854183793068, 0.04898164048790932, 0.14647991955280304, 0.07680763304233551, 0.027846911922097206, 0.08949966728687286, 0.1130637377500534], [0.7777273058891296, 0.0037733472418040037, 0.001478124177083373, 0.0043999142944812775, 0.006701088044792414, 0.01302959956228733, 0.002849529730156064, 0.008094757795333862, 0.016851214691996574, 0.008304131217300892, 0.01879454404115677, 0.0023173950612545013, 0.023950031027197838, 0.003929700702428818, 0.018228409811854362, 0.050126682966947556, 0.0394442118704319], [0.014837793074548244, 0.008079626597464085, 0.04585641622543335, 0.015075299888849258, 0.11292103677988052, 0.09782068431377411, 0.013583811931312084, 0.052380986511707306, 0.009831427596509457, 0.05812854692339897, 0.030269967392086983, 0.04681221395730972, 0.150766521692276, 0.045657843351364136, 0.12843143939971924, 0.1375322937965393, 0.032014138996601105], [0.04893508553504944, 0.026316823437809944, 0.008845926262438297, 0.00985388457775116, 0.026612350717186928, 0.01817840337753296, 0.06177006661891937, 0.006831398233771324, 0.052024707198143005, 0.11510051786899567, 0.07717482000589371, 0.04640994593501091, 0.04570171236991882, 0.004313973244279623, 0.24344190955162048, 0.06968999654054642, 0.1387985348701477], [0.0260305292904377, 0.01183387916535139, 0.015168212354183197, 0.0069733876734972, 0.038386184722185135, 0.030776556581258774, 0.03352782130241394, 0.027250410988926888, 0.07035466283559799, 0.02562684379518032, 0.0072885556146502495, 0.013761120848357677, 0.05872292444109917, 0.36833906173706055, 0.042586952447891235, 0.02496686764061451, 0.19840611517429352], [0.135867178440094, 0.011997750960290432, 0.029999757185578346, 0.024606216698884964, 0.025782689452171326, 0.03336285427212715, 0.0061295004561543465, 0.02897804230451584, 0.029729513451457024, 0.1426798403263092, 0.04920092225074768, 0.03859607130289078, 0.099080890417099, 0.11154460906982422, 0.023387273773550987, 0.08972253650426865, 0.11933432519435883], [0.7758133411407471, 0.007774508558213711, 0.0009717227076180279, 0.002736188704147935, 0.004408706910908222, 0.001264071324840188, 0.0030430478509515524, 0.00028356979601085186, 0.009030964225530624, 0.0019602940883487463, 0.10288668423891068, 0.007128584198653698, 0.008011512458324432, 0.0010378558654338121, 0.009276295080780983, 0.022623008117079735, 0.04174961894750595]], [[4.6997854951769114e-05, 0.0006311151664704084, 6.937955186003819e-05, 0.0009768882300704718, 0.00014576448302250355, 9.334934293292463e-05, 0.000660013291053474, 2.3489619707106613e-05, 0.29161715507507324, 2.4740964363445528e-05, 0.0006135533330962062, 0.0031444982159882784, 0.0003683871473185718, 0.00017555931117385626, 7.470789569197223e-05, 0.0013607771834358573, 0.6999736428260803], [0.03953053429722786, 0.04480615258216858, 0.17624598741531372, 0.3320455849170685, 0.18302905559539795, 0.11669808626174927, 0.0127596789970994, 0.03359492868185043, 0.015715327113866806, 0.0036370456218719482, 0.010267579928040504, 0.00218258542008698, 0.005212061107158661, 0.012401428073644638, 0.002899571554735303, 0.008493664674460888, 0.0004806677170563489], [0.056025855243206024, 0.017212849110364914, 0.3687164783477783, 0.01077384501695633, 0.07087904214859009, 0.3237742483615875, 0.03511696681380272, 0.08068202435970306, 0.008143906481564045, 0.0030751919839531183, 0.0030450355261564255, 0.0010525588877499104, 0.003112898673862219, 0.007238247897475958, 0.009245934896171093, 0.0015897175762802362, 0.00031523313373327255], [0.015551937744021416, 0.03036537393927574, 0.06994624435901642, 0.05071200802922249, 0.2754291594028473, 0.4450528025627136, 0.016826530918478966, 0.026995129883289337, 0.006157469004392624, 0.007323973346501589, 0.004209441598504782, 0.0030876509845256805, 0.0154345678165555, 0.023224053904414177, 0.0007701454451307654, 0.008718673139810562, 0.00019485618395265192], [0.048887137323617935, 0.07722077518701553, 0.09643282741308212, 0.04219973459839821, 0.23919518291950226, 0.318155974149704, 0.059559255838394165, 0.07164259999990463, 0.0015539806336164474, 0.015555096790194511, 0.003240046324208379, 0.002364320680499077, 0.009810944087803364, 0.009992782957851887, 0.0017093762289732695, 0.0024366870056837797, 4.321666347095743e-05], [0.010238614864647388, 0.02784811519086361, 0.3302167057991028, 0.011526755057275295, 0.11658567935228348, 0.39849233627319336, 0.032393720000982285, 0.03154754638671875, 0.0013876929879188538, 0.009461781941354275, 0.0010100621730089188, 0.0009106516372412443, 0.013249075971543789, 0.01028874795883894, 0.00420496566221118, 0.0005801247316412628, 5.738190156989731e-05], [0.01862824521958828, 0.07213407754898071, 0.1532040387392044, 0.01613878458738327, 0.2503899931907654, 0.2708008289337158, 0.061421703547239304, 0.028818242251873016, 0.001575593021698296, 0.01956940069794655, 0.0040082307532429695, 0.009477389045059681, 0.018582522869110107, 0.05924008786678314, 0.012405281886458397, 0.0034569555427879095, 0.000148552397149615], [0.0953814759850502, 0.12914900481700897, 0.015792902559041977, 0.06117771565914154, 0.03243299946188927, 0.022912047803401947, 0.10839948058128357, 0.437074214220047, 0.019374022260308266, 0.02425185963511467, 0.01198923122137785, 0.011240901425480843, 0.0031097654718905687, 0.0028721927665174007, 0.01974177360534668, 0.004250083584338427, 0.0008503730059601367], [0.046842750161886215, 0.11623495817184448, 0.063980333507061, 0.04431002587080002, 0.1427324116230011, 0.0582481324672699, 0.0772114247083664, 0.0188564732670784, 0.011267701163887978, 0.04962540045380592, 0.01674911007285118, 0.15991328656673431, 0.04218771681189537, 0.05088194087147713, 0.06612319499254227, 0.030405566096305847, 0.004429609049111605], [0.017834164202213287, 0.002756795845925808, 0.05350993201136589, 0.0021620094776153564, 0.023222211748361588, 0.13789162039756775, 0.009836714714765549, 0.051396630704402924, 0.0002801534137688577, 0.13006038963794708, 0.02957182563841343, 0.027847765013575554, 0.14845290780067444, 0.21169456839561462, 0.11597933620214462, 0.034082334488630295, 0.003420712659135461], [0.009180780500173569, 0.0043208966962993145, 0.013429312966763973, 0.01852136105298996, 0.020653001964092255, 0.06049400940537453, 0.0036788966972380877, 0.013552435673773289, 0.000791482103522867, 0.1717328578233719, 0.03971748799085617, 0.036973729729652405, 0.07784470915794373, 0.2781842350959778, 0.021035902202129364, 0.22194860875606537, 0.00794034544378519], [0.007877924479544163, 0.002594415098428726, 0.051812794059515, 0.010642011649906635, 0.036495789885520935, 0.022167861461639404, 0.0056761750020086765, 0.014539164490997791, 0.0003590921696741134, 0.18966199457645416, 0.1029757410287857, 0.030085669830441475, 0.18181461095809937, 0.2510167956352234, 0.027508048340678215, 0.06017230078577995, 0.004599723499268293], [0.019241195172071457, 0.005438725929707289, 0.003354135202243924, 0.0021407820750027895, 0.024612626060843468, 0.031923312693834305, 0.008155552670359612, 0.025547876954078674, 0.001017207046970725, 0.24112504720687866, 0.029882803559303284, 0.18160457909107208, 0.15794700384140015, 0.17487336695194244, 0.043853409588336945, 0.035820309072732925, 0.013462136499583721], [0.07355764508247375, 0.014865903183817863, 0.15413416922092438, 0.005740889813750982, 0.05969779193401337, 0.05063951388001442, 0.05190437659621239, 0.010656776838004589, 0.0029035040643066168, 0.17980147898197174, 0.06359933316707611, 0.0506933331489563, 0.10207530111074448, 0.04617089033126831, 0.07591244578361511, 0.044013675302267075, 0.013633019290864468], [0.01094046887010336, 0.0014406978152692318, 0.07255426049232483, 0.002811927581205964, 0.01564006134867668, 0.011477588675916195, 0.01629479043185711, 0.017017584294080734, 0.003313269931823015, 0.04445313289761543, 0.05322292819619179, 0.07571274787187576, 0.1090952679514885, 0.4110276699066162, 0.054814714938402176, 0.05832207575440407, 0.041860874742269516], [0.008660070598125458, 0.001521358615718782, 0.017713433131575584, 0.0025126044638454914, 0.019752124324440956, 0.0498618483543396, 0.004999701865017414, 0.010655038990080357, 0.00021393646602518857, 0.20005092024803162, 0.03075449913740158, 0.040954459458589554, 0.27685803174972534, 0.30435314774513245, 0.014973180368542671, 0.01312843058258295, 0.003037217538803816], [0.005447723437100649, 0.0013296524994075298, 0.0012926749186590314, 0.00039578264113515615, 0.0017018918879330158, 0.0008921298431232572, 0.0018021955620497465, 0.0005336333997547626, 0.00013476944877766073, 0.16598767042160034, 0.03899261727929115, 0.3594083786010742, 0.07863102853298187, 0.10893061012029648, 0.13735926151275635, 0.06446316838264465, 0.03269682079553604]]], [[[0.6799723505973816, 0.02714240550994873, 0.00449505215510726, 0.009819257073104382, 0.001969903474673629, 0.0013555795885622501, 0.004159142728894949, 0.025402676314115524, 0.10693111270666122, 0.012828328646719456, 0.006657484918832779, 0.0055929021909832954, 0.007443425711244345, 0.003951537888497114, 0.0024434442166239023, 0.0033005631994456053, 0.09653487801551819], [0.23385626077651978, 0.1443607360124588, 0.034189365804195404, 0.007658595219254494, 0.0007355501875281334, 0.0038644634187221527, 0.0035510926973074675, 0.019739340990781784, 0.43852442502975464, 0.006758406292647123, 0.0011488659074530005, 0.0007718694978393614, 0.001132420264184475, 0.0007442851783707738, 0.00030478578992187977, 0.0005385232507251203, 0.1021210327744484], [0.6984356045722961, 0.16992157697677612, 0.02908949740231037, 0.007290296722203493, 0.0009568631066940725, 0.0018246949184685946, 0.004464342724531889, 0.05042754486203194, 0.014225407503545284, 0.006289962213486433, 0.0059830788522958755, 0.004073913209140301, 0.002104290062561631, 0.0010259129339829087, 0.0005240275640971959, 0.0002769042912404984, 0.003086149226874113], [0.25565215945243835, 0.15518487989902496, 0.03777023404836655, 0.024677015841007233, 0.013732791878283024, 0.011438226327300072, 0.02491465024650097, 0.23803526163101196, 0.0382743664085865, 0.14787907898426056, 0.02151949517428875, 0.0031485676299780607, 0.0046502891927957535, 0.008991790004074574, 0.007363536395132542, 0.002457389375194907, 0.004310287069529295], [0.06467265635728836, 0.466308057308197, 0.023762144148349762, 0.038105469197034836, 0.030488623306155205, 0.007472719997167587, 0.04738154262304306, 0.19471128284931183, 0.03719029948115349, 0.0477716326713562, 0.012031198479235172, 0.007923559285700321, 0.014606311917304993, 0.0023776490706950426, 0.002137018134817481, 0.0008437778451479971, 0.0022160594817250967], [0.3908434212207794, 0.24928702414035797, 0.0104661975055933, 0.07785845547914505, 0.019612586125731468, 0.002427377039566636, 0.06945327669382095, 0.07400713860988617, 0.046541303396224976, 0.020975718274712563, 0.014098751358687878, 0.006800937000662088, 0.00822970550507307, 0.0018139125313609838, 0.0017884612316265702, 0.001977817388251424, 0.0038180428091436625], [0.24660643935203552, 0.07539991289377213, 0.028458595275878906, 0.043353334069252014, 0.0176022257655859, 0.007150956429541111, 0.021256957203149796, 0.2747271656990051, 0.12031912803649902, 0.09786100685596466, 0.010012742131948471, 0.01042100414633751, 0.020670607686042786, 0.005555460229516029, 0.005415540188550949, 0.0021889323834329844, 0.01299986056983471], [0.11268492043018341, 0.13597719371318817, 0.004825045820325613, 0.1361781507730484, 0.01413441076874733, 0.017867518588900566, 0.024349015206098557, 0.15218032896518707, 0.20350806415081024, 0.07395793497562408, 0.018989522010087967, 0.01504137646406889, 0.02558129094541073, 0.0068090385757386684, 0.004267056472599506, 0.013145030476152897, 0.04050413891673088], [0.8579596877098083, 0.05068559572100639, 0.0011143614538013935, 0.017629515379667282, 0.0016797656426206231, 0.0018244433449581265, 0.003344691824167967, 0.03524310514330864, 0.012730668298900127, 0.010830081067979336, 0.0018767962465062737, 0.001406803959980607, 0.001417699153535068, 0.0010427485685795546, 0.0002791360893752426, 0.00020951115584466606, 0.0007252647774294019], [0.46295905113220215, 0.13443738222122192, 0.004037299659103155, 0.018081648275256157, 0.0010580584639683366, 0.005880589596927166, 0.00943515170365572, 0.03630466014146805, 0.10564146190881729, 0.06858116388320923, 0.030163217335939407, 0.008098444901406765, 0.014598812907934189, 0.015145520679652691, 0.0024334462359547615, 0.0048456997610628605, 0.07829834520816803], [0.04682144895195961, 0.6307578682899475, 0.017838003113865852, 0.01651613786816597, 0.0009469649521633983, 0.003794413059949875, 0.013334283605217934, 0.018501348793506622, 0.044094476848840714, 0.029435262084007263, 0.10852064937353134, 0.011918683536350727, 0.011145036667585373, 0.006393955554813147, 0.005007254425436258, 0.004316031467169523, 0.030658049508929253], [0.1607009619474411, 0.05023277550935745, 0.006000313442200422, 0.029496043920516968, 0.006779431365430355, 0.002788977697491646, 0.014734962023794651, 0.07584323734045029, 0.07187895476818085, 0.07236018776893616, 0.163868710398674, 0.1402699053287506, 0.05105699226260185, 0.03790202736854553, 0.026137081906199455, 0.015344827435910702, 0.07460454851388931], [0.1354241818189621, 0.08385733515024185, 0.0069400290958583355, 0.023752328008413315, 0.014441447332501411, 0.001654807711020112, 0.02139156311750412, 0.18527966737747192, 0.06950785964727402, 0.1337895691394806, 0.0899280458688736, 0.055529944598674774, 0.04304825887084007, 0.01235974207520485, 0.00789712555706501, 0.032111991196870804, 0.0830860584974289], [0.22548837959766388, 0.02763162925839424, 0.020267117768526077, 0.0464756041765213, 0.0020414525642991066, 0.0037675665225833654, 0.006938498001545668, 0.04487454518675804, 0.10998658090829849, 0.12003193795681, 0.10299677401781082, 0.033140961080789566, 0.023945540189743042, 0.00817831326276064, 0.011400172486901283, 0.03788136690855026, 0.17495357990264893], [0.21357214450836182, 0.05379948392510414, 0.0038793820422142744, 0.029647590592503548, 0.005487753544002771, 0.004448940046131611, 0.06838462501764297, 0.12135495245456696, 0.09188488125801086, 0.05469454079866409, 0.03985161334276199, 0.07988829165697098, 0.08394772559404373, 0.030257239937782288, 0.008133869618177414, 0.023840950801968575, 0.08692600578069687], [0.06259501725435257, 0.0189773328602314, 0.001851109554991126, 0.015108867548406124, 0.0012967042857781053, 0.003537708893418312, 0.008021938614547253, 0.057718198746442795, 0.04869207739830017, 0.3029101490974426, 0.1314173936843872, 0.01983928494155407, 0.07148057222366333, 0.08766323328018188, 0.047424785792827606, 0.013654801994562149, 0.10781078040599823], [0.8161494135856628, 0.013028709217905998, 0.0003173933073412627, 0.005968824494630098, 0.0003629127750173211, 0.00032984092831611633, 0.0013746650656685233, 0.02198980748653412, 0.02877907268702984, 0.025799982249736786, 0.008624272421002388, 0.006171585526317358, 0.008236420340836048, 0.007794405333697796, 0.0012655055616050959, 0.003933065105229616, 0.04987429827451706]], [[0.7820881605148315, 0.04792488366365433, 0.014661292545497417, 0.016982680186629295, 0.00801462959498167, 0.01270146295428276, 0.0072418879717588425, 0.0037491123657673597, 0.05504460260272026, 0.003660280955955386, 0.0010702796280384064, 0.00267069973051548, 0.0035881618969142437, 0.005693497601896524, 0.0035346068907529116, 0.0018381420522928238, 0.029535597190260887], [0.9579739570617676, 0.0325721837580204, 0.004223098047077656, 0.0007561913807876408, 0.0002811573795042932, 0.0010076769394800067, 0.0004763439064845443, 0.00012394772784318775, 0.0019999793730676174, 0.00036444494617171586, 3.25585606333334e-05, 2.79550895356806e-05, 2.9101092877681367e-05, 3.9847553125582635e-05, 5.077746027382091e-05, 3.528599108904018e-06, 3.730615571839735e-05], [0.25807806849479675, 0.7257601618766785, 0.0036532790400087833, 0.002803741255775094, 0.000127884850371629, 0.0001944909308804199, 0.00010639076208462939, 9.574835712555796e-05, 0.007093087304383516, 0.0016282694414258003, 0.00010966626723529771, 3.3055210224119946e-05, 8.349178096977994e-05, 1.1528873073984869e-05, 5.186936687096022e-05, 3.2471805752720684e-05, 0.0001368197990814224], [0.5073351263999939, 0.37685626745224, 0.09392479062080383, 0.005651452578604221, 0.0036995012778788805, 0.0016434623394161463, 4.996777352062054e-05, 2.4235627279267646e-05, 0.006225328426808119, 0.002448765793815255, 0.00015015737153589725, 0.001129818963818252, 0.00010489134001545608, 7.976889901328832e-05, 0.00013148282596375793, 3.22655905620195e-05, 0.0005127229378558695], [0.7279987931251526, 0.03613729029893875, 0.030276218429207802, 0.16253936290740967, 0.023364052176475525, 0.009557483717799187, 0.000169901002664119, 9.23241168493405e-06, 0.0019033962162211537, 0.000315505254548043, 1.8634178559295833e-05, 0.004917223937809467, 0.00012365241127554327, 4.237943721818738e-05, 0.00017242750618606806, 0.00014038177323527634, 0.0023138895630836487], [0.8503820896148682, 0.004731119144707918, 0.0057678669691085815, 0.05592240020632744, 0.06056181341409683, 0.017557615414261818, 0.0017805345123633742, 5.563851664192043e-05, 0.0012225237442180514, 7.857527816668153e-05, 6.276907242863672e-06, 6.2852877817931585e-06, 0.00010676040983526036, 5.278475146042183e-05, 3.7783367588417605e-05, 9.50717439991422e-05, 0.001634836895391345], [0.033895328640937805, 0.0010555146727710962, 0.0030241620261222124, 0.062069300562143326, 0.20510265231132507, 0.6801595091819763, 0.004191290121525526, 0.000631717499345541, 0.0039703440852463245, 2.7234320441493765e-05, 8.475791219098028e-06, 0.00015581303159706295, 0.00015729408187326044, 0.0011690135579556227, 5.669281381415203e-05, 0.00016572343884035945, 0.004159883130341768], [0.05470624938607216, 0.0019496014574542642, 0.0010779440635815263, 0.012869438156485558, 0.06390991806983948, 0.5245635509490967, 0.24727720022201538, 0.009119056165218353, 0.06429312378168106, 0.0023305239155888557, 0.0003047142818104476, 0.0001762459723977372, 0.0015969412634149194, 0.004433896392583847, 0.001325238379649818, 0.0010602757101878524, 0.009006074629724026], [0.8222008943557739, 0.0036109539214521646, 0.00017287030641455203, 0.0003112527774646878, 0.0014039340894669294, 0.0442749559879303, 0.07270245999097824, 0.00214636349119246, 0.05206447094678879, 0.0009648748091422021, 1.688771226326935e-05, 3.3469716527179116e-06, 1.0593680599413346e-05, 2.3963213607203215e-05, 1.704150599834975e-05, 2.8868830668216106e-06, 7.236194505821913e-05], [0.08589247614145279, 0.002521045971661806, 9.903813770506531e-05, 2.902046253439039e-05, 5.1632541726576164e-05, 0.001955093815922737, 0.013761550188064575, 0.007914502173662186, 0.8375268578529358, 0.044680897146463394, 0.004804521799087524, 6.054230107110925e-05, 8.418549987254664e-05, 7.166342402342707e-05, 2.625500928843394e-05, 6.972919891268248e-06, 0.0005136543768458068], [0.04499068856239319, 0.0022313909139484167, 5.856103962287307e-05, 8.88756949279923e-06, 5.031471573602175e-06, 7.308822387130931e-05, 0.0003000217257067561, 0.0006080602179281414, 0.30511003732681274, 0.6376030445098877, 0.007936270907521248, 0.0007638441165909171, 3.6301262298366055e-05, 1.1749708392017055e-05, 9.331100045528729e-06, 1.4653620610260987e-06, 0.00025222208932973444], [0.0602448396384716, 0.005734770558774471, 0.001047954079695046, 0.0003169375122524798, 1.9530880308593623e-05, 4.236752647557296e-05, 4.507845369516872e-05, 0.00014290698163677007, 0.11691242456436157, 0.6769182682037354, 0.12250786274671555, 0.004498713184148073, 0.010668106377124786, 0.0001167189548141323, 6.0324575315462425e-05, 1.2160943697381299e-05, 0.0007110754959285259], [0.13928642868995667, 0.0018911127699539065, 0.00031404936453327537, 0.0010929979616776109, 0.00011156240361742675, 8.815286128083244e-05, 1.8082988390233368e-05, 4.896871905657463e-05, 0.019383331760764122, 0.11752672493457794, 0.08858245611190796, 0.603805422782898, 0.026070117950439453, 0.0011725848307833076, 4.2478350223973393e-05, 5.8079381233255845e-06, 0.0005597656709142029], [0.8591821789741516, 0.0004334145924076438, 0.0007691459613852203, 0.004641552921384573, 0.00032690729130990803, 0.0001838502794271335, 6.091551313147647e-06, 5.274484010442393e-06, 0.0008562818984501064, 0.0011093392968177795, 0.0018167162779718637, 0.03265281021595001, 0.08163183182477951, 0.014997439458966255, 0.0003966383810620755, 3.467359783826396e-05, 0.0009558561723679304], [0.07389561831951141, 0.00020063506963197142, 0.00036372541217133403, 0.0016754217213019729, 0.00023393449373543262, 0.0005504963919520378, 0.00013764100731350482, 4.866508606937714e-05, 0.002255277009680867, 0.00013179796223994344, 0.0009575420408509672, 0.024181334301829338, 0.5397708415985107, 0.3449937105178833, 0.006616031285375357, 0.0003300385142210871, 0.003657291177660227], [0.2204533964395523, 0.0014500131364911795, 0.0001964420371223241, 0.00010653816570993513, 6.076391218812205e-05, 0.00023710961977485567, 3.652758459793404e-05, 2.269806464028079e-05, 0.0007382851326838136, 0.00014259836461860687, 2.0684687115135603e-05, 0.00023706506181042641, 0.019701587036252022, 0.6781007051467896, 0.060226570814847946, 0.002976943738758564, 0.015292058698832989], [0.9199901223182678, 0.008011292666196823, 0.0006773861241526902, 0.0002690139808692038, 0.0001248049666173756, 0.0004705950850620866, 0.00030268330010585487, 0.00012253946624696255, 0.0017638558056205511, 0.000359797035343945, 2.0281862816773355e-05, 2.8241032850928605e-05, 0.0002823210961651057, 0.007347555831074715, 0.015699291601777077, 0.008378030732274055, 0.036152441054582596]], [[0.9978406429290771, 0.00011925151920877397, 0.0016092193545773625, 0.00013301437138579786, 2.2027106751920655e-05, 5.232667535892688e-05, 2.5703395294840448e-05, 4.942137820762582e-05, 8.158062883012462e-06, 1.35425289045088e-05, 1.1349892474754597e-06, 2.4876499082893133e-05, 5.181487267691409e-06, 4.688846820499748e-05, 1.3019774087297264e-05, 3.3104165595432278e-06, 3.225059845135547e-05], [8.979030098998919e-06, 3.896623912424957e-09, 5.4202651256218815e-09, 2.543145442770057e-14, 1.101031903995818e-13, 2.0076509085840272e-13, 2.3550812341954774e-11, 2.934307657964652e-11, 0.9934830069541931, 4.8199296116824275e-12, 7.507496957003673e-14, 1.364648682684183e-13, 1.21502970445303e-12, 9.09517686858985e-12, 4.394645758409865e-11, 8.093931747705715e-14, 0.0065079620108008385], [4.1906554315573885e-07, 0.9999994039535522, 7.34803551338814e-09, 1.1345141714969031e-08, 3.385365035304334e-17, 6.2080984409716884e-15, 3.1602278138272037e-18, 3.0666432934700616e-12, 1.1275758105000477e-09, 1.3559458977852046e-07, 7.147400726825737e-11, 3.397338562815405e-13, 6.513183191430216e-15, 5.192420492765228e-17, 3.594293265796189e-12, 3.731144896084587e-14, 3.875924026175426e-10], [5.224077312959707e-07, 9.750529272878339e-09, 0.9999995231628418, 1.1000453881138128e-08, 2.6140032360899568e-09, 2.9892975907752455e-16, 2.1034500204575069e-16, 2.1213622526628732e-17, 1.2590438414061822e-10, 1.475635585945767e-12, 4.228627725755274e-10, 1.2593409821903823e-11, 5.000276722625513e-14, 1.238122140924359e-15, 6.925083878735194e-14, 9.1514862636706e-15, 2.93911339710462e-10], [4.6030545490793884e-05, 2.293247462148429e-06, 0.00037161048385314643, 0.9995773434638977, 2.250132183689857e-06, 4.6300823441924877e-07, 5.316659579699345e-16, 2.3741115478159887e-14, 7.435826428842053e-16, 1.0979859599649644e-12, 1.7454149375952877e-15, 3.145248950175983e-09, 1.821642100672486e-14, 1.6304959769494753e-12, 1.5849924030994804e-15, 5.612808259619281e-14, 3.4754887856536243e-09], [0.018579285591840744, 4.151894539977663e-12, 6.140186451375484e-05, 9.829395821725484e-06, 0.9812160134315491, 2.487194251443725e-05, 0.0001041195064317435, 5.1184369243006955e-11, 3.86299880972274e-09, 2.127676949459103e-17, 5.345292893206566e-15, 5.917247486268706e-13, 2.375515062436051e-10, 5.136434055863504e-10, 2.9389792682854576e-11, 8.277491647841473e-13, 4.442789759195875e-06], [0.00012907169002573937, 3.5032698245704257e-15, 1.1614941322103667e-13, 3.358269751174703e-08, 1.654805998896336e-07, 0.9998706579208374, 5.506277744871113e-08, 4.730205205305538e-08, 2.6334917728987465e-17, 2.3540642062779234e-17, 7.126719301338613e-25, 2.448989567402712e-16, 1.5626280863140067e-16, 1.6481727094230791e-10, 7.419276463843888e-16, 2.4820565094362135e-17, 5.739518544001189e-16], [7.92926311987685e-06, 4.2648854283247606e-15, 3.9308125846090544e-14, 1.0462367158335564e-14, 2.5681021753598543e-08, 6.90549359205761e-06, 0.999983549118042, 9.731803629620117e-07, 5.952467745373724e-07, 3.804324392265917e-15, 6.027423586935047e-17, 1.3984100368862222e-18, 1.7570112031961571e-12, 2.003625130392317e-12, 2.1574479702746174e-10, 7.453508771011579e-15, 4.912495323722288e-12], [0.0004670645284932107, 3.789615732330276e-09, 3.1329287580005027e-13, 4.771542929109425e-14, 2.4122488251012873e-15, 1.0435915100970306e-05, 8.471471664961427e-05, 0.9993988275527954, 3.6443841509026242e-06, 3.527200533426367e-05, 9.416418952511754e-17, 4.360459967411726e-15, 1.809690391671345e-16, 1.2652847519722954e-12, 1.009537180414466e-12, 1.8396963368926683e-13, 5.700012927341248e-15], [4.028221312069036e-09, 1.202604639136129e-12, 5.910990199777455e-15, 7.949550923721157e-24, 2.0833208137356815e-22, 2.415849996843477e-19, 1.5831309874148047e-10, 1.0074910683499638e-08, 0.9999998807907104, 1.615383666830894e-07, 1.190192722155814e-09, 1.7299311210874502e-20, 6.997273829999383e-18, 5.581980270214859e-22, 7.324843619290703e-15, 3.2802178063035334e-19, 9.522662606370469e-13], [9.274425671890185e-11, 9.278203205731472e-13, 1.9859090500534693e-12, 5.480665447994227e-20, 2.703900293551721e-27, 1.5144368390267484e-21, 1.143353135113929e-21, 1.096773886988256e-11, 9.49169276509565e-09, 1.0, 2.2638714514133795e-10, 3.048254981763421e-10, 1.5336042657574464e-21, 5.671920510829641e-21, 6.195612070538979e-22, 3.577947121378247e-20, 3.6804470777357844e-18], [4.601445198204601e-07, 1.4353030985958526e-09, 3.6727996644003724e-07, 1.6840390843972375e-12, 2.4918963191308993e-17, 1.0714103736119974e-20, 2.0580576757746107e-19, 9.888555117311301e-17, 5.2989868493114045e-08, 4.423784957907628e-06, 0.9999934434890747, 1.3396468148130225e-06, 8.184388278209553e-09, 9.511902892160588e-18, 8.20213173638798e-15, 6.785533817008679e-21, 2.9895818893371784e-12], [1.781740266437737e-08, 3.1141718994802435e-15, 3.094352329924277e-09, 9.614233020815988e-11, 1.4511063520499662e-14, 7.01376949886214e-16, 5.623298527462219e-20, 2.6621659888328972e-17, 6.566792991922904e-17, 2.1402211114462943e-09, 2.3257107351071227e-09, 0.9999998807907104, 1.085264216271753e-07, 1.4982251883566278e-08, 1.3446764504692265e-16, 2.0569484782719654e-19, 5.4941092267491395e-18], [1.9992752640973777e-05, 2.909532424016925e-13, 5.3876687833298575e-11, 2.260905240802913e-08, 2.989041902878853e-09, 7.952740896377541e-12, 4.779488436967849e-14, 5.2451502789652784e-17, 7.312851009186121e-16, 1.1709769921625633e-16, 1.7135370899978852e-10, 2.909276417994988e-06, 0.9999676942825317, 8.07928154245019e-06, 1.2562693427753402e-06, 8.65050026256669e-16, 1.073124054895569e-11], [1.1599305253184866e-05, 1.2786926262297639e-14, 2.75421300349743e-11, 1.9026799450219678e-13, 1.1895821784221883e-12, 6.454959483592759e-11, 4.586023401309536e-12, 9.211971463418678e-12, 5.12880831842643e-16, 1.4757607706391077e-14, 2.3657686051503956e-18, 1.2648217584398935e-08, 1.933645080498536e-06, 0.9999861717224121, 2.531755569634697e-07, 4.590228197542956e-10, 2.0696248873215174e-14], [6.81937308399938e-05, 2.973534266037525e-11, 1.0895241143744211e-13, 2.5913077785025837e-15, 1.2421710642913529e-15, 2.205678565139757e-12, 1.773802354998466e-10, 1.0491045532301513e-10, 1.1577308122595609e-12, 4.1619739427882377e-16, 7.44212949547887e-19, 2.283783632712968e-18, 3.6335732200853954e-09, 1.1618001281021861e-06, 0.9999302625656128, 3.769626744087873e-07, 2.6891315840771313e-08], [0.0007783960900269449, 3.822862026936491e-09, 3.6788537727261428e-06, 1.6344290504344272e-11, 5.106468091257976e-13, 1.0013295054234206e-10, 4.988924551252438e-11, 1.547768420095963e-07, 1.083850897920513e-09, 5.798336815132643e-07, 1.8211692868813287e-14, 9.820046685538042e-12, 9.017669965784292e-13, 2.7481069082568865e-06, 0.00014535938680637628, 0.9988910555839539, 0.00017812862643040717]], [[0.6867114305496216, 0.03072221577167511, 0.02288508228957653, 0.03828873857855797, 0.010716172866523266, 0.01141773909330368, 0.004283017944544554, 0.03079269640147686, 0.038320280611515045, 0.013301149010658264, 0.0077605461701750755, 0.013062524609267712, 0.012182185426354408, 0.021070564165711403, 0.007635727524757385, 0.010611308738589287, 0.04023851454257965], [0.9179489612579346, 0.01180310919880867, 0.010726666077971458, 0.020051773637533188, 0.0016027606325224042, 0.004612643271684647, 0.0002809829020407051, 0.0002525901945773512, 0.024664320051670074, 0.00020162669534329325, 0.0012812917120754719, 0.0029853179585188627, 0.0005285842344164848, 0.00023236988636199385, 0.0008858073852024972, 0.00021149087115190923, 0.0017296596197411418], [0.8211691379547119, 0.1309223175048828, 0.024959741160273552, 0.006833124440163374, 0.00022249194444157183, 0.001361209899187088, 6.993339047767222e-05, 0.0012610647827386856, 0.006858004257082939, 3.9932550862431526e-05, 3.187872425769456e-05, 7.340813317568973e-05, 7.717863627476618e-05, 2.593474528111983e-05, 0.002406905870884657, 2.8805574402213097e-05, 0.003658830188214779], [0.6250025033950806, 0.025590239092707634, 0.02464127726852894, 0.032638270407915115, 0.12564685940742493, 0.0638093426823616, 0.004042367916554213, 0.0011176529806107283, 0.07262792438268661, 0.0007836133008822799, 0.0019296242389827967, 0.0032756892032921314, 0.002491659950464964, 0.0004455614252947271, 0.00024836932425387204, 0.0004241968272253871, 0.015284932218492031], [0.10142362862825394, 0.015944037586450577, 0.0013855933211743832, 0.7803941369056702, 0.006138871423900127, 0.06482014805078506, 0.005172446835786104, 0.0024370690807700157, 0.011203977279365063, 0.0002616133715491742, 4.450437336345203e-05, 0.0017202859744429588, 0.0003087419318035245, 0.00047019548946991563, 0.00026256879209540784, 0.0014795943861827254, 0.006532443221658468], [0.6328158974647522, 0.002295407000929117, 0.008679562248289585, 0.006556634325534105, 0.06341486424207687, 0.001312406500801444, 0.11151009052991867, 0.013993396423757076, 0.1289055198431015, 0.00012364305439405143, 0.00030478736152872443, 8.412752504227683e-05, 0.00044975971104577184, 0.00020423531532287598, 0.0006169237312860787, 0.0003424381138756871, 0.028390269726514816], [0.030852865427732468, 0.00012281769886612892, 9.478269930696115e-05, 0.006045677233487368, 2.0646064513130113e-05, 0.9589614272117615, 3.609429040807299e-05, 0.0012943459441885352, 0.002023724839091301, 9.979544847737998e-05, 1.600839095772244e-05, 3.708043368533254e-05, 1.3899812074669171e-06, 1.0249133083561901e-05, 1.7678674339549616e-05, 1.8422400898998603e-05, 0.00034701148979365826], [0.13162577152252197, 0.0018182883504778147, 0.0007394116837531328, 0.0040082866325974464, 0.0031610361766070127, 0.033398039638996124, 0.031590502709150314, 0.022854074835777283, 0.7127038836479187, 0.029326019808650017, 0.006909247953444719, 0.0010558917419984937, 0.001110812765546143, 0.0002692130801733583, 0.0013846646761521697, 0.0005927095771767199, 0.017452197149395943], [0.8541693687438965, 0.0031623607501387596, 0.00033561396412551403, 0.0018735644407570362, 8.419633377343416e-05, 0.0016818540170788765, 0.000544621201697737, 0.025828152894973755, 0.10088209807872772, 0.00603360403329134, 0.002171572297811508, 0.0023209508508443832, 0.00017480627866461873, 3.198076956323348e-05, 1.4696759535581805e-05, 1.0519379429752007e-05, 0.0006798626272939146], [0.5440881252288818, 0.002226114273071289, 0.0004809642268810421, 0.0008448027074337006, 0.0015203584916889668, 3.912287138518877e-05, 0.016177812591195107, 0.003808376146480441, 0.2657618224620819, 0.008333654142916203, 0.1362420916557312, 0.010320399887859821, 0.007747404742985964, 0.0007216338999569416, 3.8542049878742546e-05, 2.5408138753846288e-05, 0.0016234160866588354], [0.45468011498451233, 0.001125458860769868, 9.822353604249656e-05, 0.0008718791068531573, 7.856896445446182e-06, 8.684596832608804e-05, 6.943345215404406e-05, 0.0007444634102284908, 0.07735700160264969, 0.36891835927963257, 0.0070504918694496155, 0.08684717118740082, 0.0007881558267399669, 0.0004438000323716551, 0.0002631079696584493, 8.639064617455006e-05, 0.0005612584645859897], [0.054494284093379974, 0.00015698189963586628, 0.0003893310495186597, 4.77485591545701e-05, 3.832458605756983e-05, 3.2978691706375685e-06, 3.5208902318117907e-06, 0.0001223939034389332, 0.005355996545404196, 0.0006238847854547203, 0.012749784626066685, 0.0008052944904193282, 0.9209931492805481, 0.0007772065000608563, 0.002841440960764885, 1.2346135008556303e-05, 0.0005850294837728143], [0.1705039143562317, 0.001200605765916407, 0.00021320053201634437, 0.00028567147091962397, 0.00032327102962881327, 0.00017610772920306772, 9.03454129002057e-05, 0.00015771057223901153, 0.002141034696251154, 0.0010794708505272865, 0.001194193260744214, 0.7603306770324707, 0.0014369402779266238, 0.05168207362294197, 0.004313220269978046, 0.003552077105268836, 0.0013194206403568387], [0.04980429634451866, 2.7052323275711387e-05, 0.00019509704725351185, 5.3726187616121024e-05, 6.828049663454294e-06, 1.8254033420816995e-05, 2.514758762117708e-06, 1.1881355021614581e-05, 0.00025059940526261926, 0.00022432715923059732, 5.080715345684439e-05, 0.00113384157884866, 0.0008250142564065754, 0.0022441083565354347, 0.9214968681335449, 0.00994529202580452, 0.013709497638046741], [0.09360872954130173, 9.496775419393089e-06, 0.00033224793151021004, 7.093108433764428e-05, 0.00012873514788225293, 6.449621287174523e-05, 9.584928920958191e-05, 3.930669481633231e-05, 7.742291199974716e-05, 3.6834146612818586e-06, 1.5239354979712516e-05, 0.0010560369119048119, 0.00017052976181730628, 0.8894801139831543, 0.0011918795062229037, 0.006346599198877811, 0.007308706175535917], [0.4327191412448883, 0.00019548767886590213, 0.00016073616279754788, 0.0006966596120037138, 0.001061582355760038, 0.0007304280297830701, 0.00014839984942227602, 5.163986133993603e-05, 0.001229947665706277, 2.6323972633690573e-05, 2.657203731359914e-05, 0.0001833403221098706, 0.002696598181501031, 0.003388036508113146, 0.004975316114723682, 0.005887418519705534, 0.5458222031593323], [0.8934411406517029, 0.00021064466272946447, 0.0003912361862603575, 0.0004131930763833225, 0.0001941204973263666, 0.00041724773473106325, 0.00017503774142824113, 0.0018019293202087283, 0.0008540275157429278, 3.493497206363827e-05, 1.9186065401299857e-05, 0.0002491232589818537, 0.00016850190877448767, 0.001038654358126223, 0.0015139169991016388, 0.00833853054791689, 0.09073840081691742]], [[0.9886454343795776, 0.0011779565829783678, 0.00030400737887248397, 0.00012165625230409205, 2.9719922167714685e-05, 0.000114607231807895, 0.00015266070840880275, 0.0002697186137083918, 0.002555631333962083, 5.1056675147265196e-05, 5.5865521062514745e-06, 4.5394292101264e-05, 5.57652092538774e-05, 0.00024598665186204016, 0.00025159225333482027, 6.50939327897504e-05, 0.0059081739746034145], [0.00012312506441958249, 2.2491219624498626e-06, 0.9998682737350464, 3.7476127090485534e-06, 1.1516051472426625e-06, 1.6988759010683196e-10, 4.189681934718692e-11, 5.6954840149670005e-11, 2.943820334166958e-07, 6.281051412315719e-08, 3.7893823900958523e-07, 6.439719868467364e-07, 2.0168966496925123e-09, 1.6085531795440033e-09, 1.2656582726311427e-10, 3.04882030732756e-09, 7.335481910786257e-08], [0.0019646044820547104, 1.8304528566659428e-05, 3.488785978333908e-06, 0.9979130625724792, 5.8246841945219785e-05, 2.2545918909600005e-05, 2.2775170638311693e-10, 6.466739643773423e-11, 2.0568549641275524e-10, 3.695548311810626e-10, 3.671797088600215e-08, 6.804237273172475e-06, 7.631212611158844e-06, 3.785282842727611e-08, 1.2182895581247521e-08, 4.082504299895984e-12, 5.236968718236312e-06], [0.0014229671796783805, 3.69457173188259e-11, 3.710270539158955e-05, 2.158892311854288e-05, 0.9980875849723816, 0.0003797092940658331, 2.448420309519861e-05, 1.357150086755965e-10, 1.4164611705780317e-09, 3.958717322726695e-15, 1.1113107829807678e-11, 8.269280016293123e-08, 1.0931212273135316e-05, 1.5374325812445022e-05, 1.5234522976470544e-08, 7.316957803538138e-12, 1.6359697596612932e-08], [0.00010283046867698431, 5.913301098781076e-11, 1.2800245238753227e-11, 9.958495866158046e-06, 1.0289192687196191e-05, 0.9997897744178772, 8.527067984687164e-05, 9.051705092133489e-07, 1.158867793393803e-11, 1.2823685798142581e-14, 1.2882969117960207e-17, 4.103716498560228e-12, 1.4342118603849485e-09, 9.564984111420927e-07, 1.5141912168559202e-09, 1.2919617632667357e-12, 1.3474682480918432e-10], [3.761385960387997e-05, 1.7626241178431146e-12, 5.928518960474083e-12, 1.2972305521441463e-12, 1.1677327194092868e-07, 1.5900121070444584e-05, 0.9999305009841919, 3.7730426356574753e-06, 1.2042067282891367e-05, 1.27425210682576e-13, 6.690619229704573e-15, 5.625537026058322e-16, 6.16997728949964e-12, 2.721539105188242e-10, 1.069576649470605e-09, 7.119462137883392e-12, 2.1790073911898133e-10], [5.474664067151025e-05, 3.172784701632736e-08, 4.725575399738835e-13, 4.002094228933162e-12, 4.103583792214316e-13, 0.0003697780193760991, 1.7827973351813853e-05, 0.9990984201431274, 0.0004525601107161492, 6.681837930955226e-06, 8.784787066079373e-15, 7.419378425434914e-15, 5.240268600450147e-14, 5.104410227829703e-10, 2.7146327408189563e-09, 1.6195658147921677e-09, 1.612212030543958e-09], [6.210646461113356e-06, 2.05234627514983e-07, 1.123528505786453e-07, 4.893497065894259e-12, 1.1849732306501437e-10, 2.0365622077633816e-08, 5.126334508531727e-05, 0.009265629574656487, 0.9870928525924683, 0.0035647419281303883, 1.7849451978690922e-05, 3.0845964671399884e-11, 6.780086908575456e-11, 2.4968964396077098e-11, 7.69648238474474e-08, 4.4828155409959436e-08, 1.0285099278917187e-06], [0.9257515668869019, 2.1175487745495047e-06, 1.5206325088001904e-06, 4.09737950235467e-08, 1.8180952349091534e-14, 1.0640440750719904e-09, 9.174758175412023e-12, 5.0516191549832e-06, 0.0008269921527244151, 0.07340732961893082, 6.836831971668289e-07, 4.149583219259512e-06, 1.4148986886633463e-12, 7.536693491516644e-12, 4.740169194661359e-12, 1.550774092473617e-11, 3.890842492637603e-07], [1.8508901575842174e-06, 2.19125206868398e-09, 1.6795565898064524e-05, 4.536809150579302e-09, 2.7801302926455662e-11, 3.343717616427922e-15, 1.422884271344571e-12, 3.5772039085231466e-13, 9.085576493816916e-06, 8.683572332301992e-07, 0.9999451637268066, 2.6155770683544688e-05, 1.4885438304190757e-07, 9.907500438544742e-14, 3.834627927690182e-12, 1.0071887510750173e-14, 1.7108680694377654e-08], [2.8517765713331755e-06, 4.181531856883858e-11, 3.278168207998533e-07, 1.257287465250556e-07, 6.659325868518806e-13, 1.7481118549239616e-12, 3.512389619863998e-18, 1.8118530764263396e-13, 2.7467795832986086e-12, 1.58328248289763e-06, 7.254570277837047e-07, 0.9999924898147583, 1.8362860600973363e-06, 7.260941004005872e-08, 8.790926022067894e-14, 4.011585095887809e-16, 1.305729070873174e-12], [1.3433592357614543e-05, 9.030181658854775e-13, 7.340586472004418e-10, 2.924488873290443e-09, 2.183284486534376e-08, 3.50359606778039e-12, 2.0744859823007555e-12, 5.561343892996826e-15, 7.704284259169025e-12, 5.834889371664339e-15, 9.12531206154199e-08, 4.6762429519731086e-06, 0.9999698400497437, 1.1746075870178174e-05, 1.2869058707565273e-07, 8.500858128148824e-16, 5.203892872174265e-11], [7.652844033145811e-06, 6.385651989820884e-12, 1.0935914673826375e-10, 1.7228612980701996e-10, 7.213994158983272e-12, 3.6203240405541237e-09, 6.669143969711966e-12, 4.3078252076611534e-10, 1.1984286176283665e-12, 3.90581664233558e-12, 7.16956723346594e-15, 5.807954721603892e-07, 1.4438900507229846e-05, 0.9999547004699707, 2.269754077133257e-05, 3.352676358758799e-08, 3.5850558632866125e-11], [0.001580658252350986, 1.1428853696759944e-10, 1.6795747084796808e-11, 2.48450513634646e-11, 2.938254917150829e-10, 2.7266062740949337e-09, 9.963819991298806e-08, 3.9182912470181464e-10, 2.169834312226726e-09, 2.3822000348359094e-14, 1.8689402510405767e-14, 1.1611832372374065e-12, 8.90751471160911e-06, 0.00099822913762182, 0.9974008798599243, 3.966835265600821e-06, 7.24479059499572e-06], [0.01810457557439804, 6.616645720214365e-08, 5.0183452913188376e-06, 2.132491339068565e-08, 8.615103075371167e-10, 1.1104132369155195e-07, 1.575727104352609e-08, 8.059056426645839e-07, 8.521518424231544e-08, 5.861375029780902e-08, 5.377814079471355e-13, 4.49807391333934e-09, 5.026326910240186e-09, 0.02058822102844715, 0.005779499653726816, 0.9524587392807007, 0.0030627641826868057], [0.0002292962744832039, 3.981947827025323e-10, 8.661012884658703e-08, 7.519721734183804e-09, 1.5828169885878651e-09, 2.20777884862855e-09, 1.6159351634570385e-10, 5.391893043160678e-10, 2.5385523017007472e-08, 1.093281645769828e-10, 2.876014704167318e-11, 6.462725862278751e-13, 1.7219453293804143e-11, 8.177224453120857e-10, 3.931522951461375e-05, 2.5519990231259726e-05, 0.9997057318687439], [0.9933745265007019, 2.431813431180707e-11, 3.42266503139399e-06, 7.352741135946417e-07, 1.4506482237663931e-08, 4.0371310205955524e-07, 3.690414085433247e-10, 2.0913482057238753e-09, 7.683404468217248e-10, 5.55042789507354e-10, 1.2906146420674225e-12, 1.5136542685922905e-07, 1.1890407929093794e-11, 6.337234736975006e-08, 1.3905949725057098e-09, 1.3694237566141965e-07, 0.006620652042329311]], [[0.8630772829055786, 0.009417934343218803, 0.023290077224373817, 0.011665173806250095, 0.004272020887583494, 0.008473897352814674, 0.006163272075355053, 0.024672338739037514, 0.007038861978799105, 0.0032842769287526608, 0.004253109451383352, 0.006838890723884106, 0.002599535509943962, 0.011256331577897072, 0.008555570617318153, 0.002235301537439227, 0.0029058922082185745], [0.3920648992061615, 0.052510641515254974, 0.09347162395715714, 0.05435951054096222, 0.012896507047116756, 0.029805241152644157, 0.029427027329802513, 0.1072259396314621, 0.07465437799692154, 0.04705985635519028, 0.043424081057310104, 0.0070302775129675865, 0.010759469121694565, 0.009716746397316456, 0.0157957524061203, 0.008702083490788937, 0.011095934547483921], [0.549708902835846, 0.020483342930674553, 0.001213102601468563, 0.0254861731082201, 0.023106595501303673, 0.08964689075946808, 0.02495274506509304, 0.05637064576148987, 0.08471304178237915, 0.006005365401506424, 0.002833570120856166, 0.021683407947421074, 0.007548775989562273, 0.04268113523721695, 0.018044063821434975, 0.006976840551942587, 0.018545404076576233], [0.5503023266792297, 0.030575549229979515, 0.026888040825724602, 0.019520802423357964, 0.013726988807320595, 0.035793207585811615, 0.032544586807489395, 0.14805740118026733, 0.07116218656301498, 0.012592713348567486, 0.0042679328471422195, 0.0068765124306082726, 0.005832963157445192, 0.01444137655198574, 0.01589852198958397, 0.004487735219299793, 0.007031257729977369], [0.45880764722824097, 0.030589710921049118, 0.02685512602329254, 0.014284702017903328, 0.009987078607082367, 0.16840608417987823, 0.05472039803862572, 0.08392486721277237, 0.0615713894367218, 0.025903776288032532, 0.0033701432403177023, 0.0076616848818957806, 0.010998652316629887, 0.012767758220434189, 0.02170509472489357, 0.0039957123808562756, 0.004450083244591951], [0.5898685455322266, 0.01875513419508934, 0.012980069033801556, 0.025802338495850563, 0.021997399628162384, 0.0052882228046655655, 0.037984080612659454, 0.1341247409582138, 0.09574691206216812, 0.0033742880914360285, 0.0042791469022631645, 0.004489787854254246, 0.004475981462746859, 0.0124308867380023, 0.018316278234124184, 0.003949243109673262, 0.0061368742026388645], [0.810656726360321, 0.011328445747494698, 0.006232826504856348, 0.006166239269077778, 0.005784434266388416, 0.017217343673110008, 0.0182981938123703, 0.04530853405594826, 0.03496453911066055, 0.01318723801523447, 0.0025726647581905127, 0.0038032219745218754, 0.0030547098722308874, 0.008291657082736492, 0.008166318759322166, 0.0016105305403470993, 0.0033563056495040655], [0.3907400667667389, 0.04912613704800606, 0.023248184472322464, 0.06526510417461395, 0.011706170625984669, 0.044962625950574875, 0.016534950584173203, 0.085541270673275, 0.12448907643556595, 0.02289278246462345, 0.019575482234358788, 0.030194755643606186, 0.012327072210609913, 0.025540387257933617, 0.027823053300380707, 0.018777035176753998, 0.03125588595867157], [0.8035562634468079, 0.012781054712831974, 0.024935845285654068, 0.01797124184668064, 0.007260740268975496, 0.030758274719119072, 0.014644631184637547, 0.04623901844024658, 0.018935518339276314, 0.0028259160462766886, 0.002181886462494731, 0.0034745356533676386, 0.002745936391875148, 0.004514575935900211, 0.004851344507187605, 0.001148574985563755, 0.001174572971649468], [0.2772272825241089, 0.018499623984098434, 0.006594883743673563, 0.005694271996617317, 0.004406025167554617, 0.00955114234238863, 0.00837589893490076, 0.20061449706554413, 0.04854036495089531, 0.012919547036290169, 0.03929435461759567, 0.05826476588845253, 0.024818187579512596, 0.01629597134888172, 0.05150747671723366, 0.06774308532476425, 0.1496526598930359], [0.11926595121622086, 0.009793884120881557, 0.01636076159775257, 0.03312721848487854, 0.0016426455695182085, 0.00883167702704668, 0.007008750922977924, 0.07547267526388168, 0.04695062339305878, 0.0369415283203125, 0.10659143328666687, 0.041053466498851776, 0.02049694024026394, 0.02732241153717041, 0.023360444232821465, 0.2281906008720398, 0.1975889503955841], [0.25112053751945496, 0.0043646590784192085, 0.007442587986588478, 0.01092055719345808, 0.0013913180446252227, 0.006583517417311668, 0.007620566058903933, 0.05494378134608269, 0.011677935719490051, 0.05883876234292984, 0.07948844134807587, 0.08321394771337509, 0.03127668797969818, 0.08211177587509155, 0.14281412959098816, 0.10061800479888916, 0.06557272374629974], [0.5414526462554932, 0.01744280755519867, 0.00881566945463419, 0.002870401134714484, 0.0020797024480998516, 0.013437996618449688, 0.018094586208462715, 0.08082153648138046, 0.03871343284845352, 0.024520857259631157, 0.03407527133822441, 0.04352911189198494, 0.00524491909891367, 0.016903532668948174, 0.04117078706622124, 0.021592337638139725, 0.08923429995775223], [0.5520836114883423, 0.009979329071938992, 0.03555531054735184, 0.01862558163702488, 0.004722306504845619, 0.006640487350523472, 0.011093690991401672, 0.04547552019357681, 0.015431882813572884, 0.0323222391307354, 0.0627950131893158, 0.029029030352830887, 0.024998832494020462, 0.015789857134222984, 0.041054617613554, 0.02850533463060856, 0.0658973753452301], [0.8022099733352661, 0.004681755322962999, 0.0013911783462390304, 0.004345548804849386, 0.0005341732176020741, 0.0030271909199655056, 0.0032198047265410423, 0.018615253269672394, 0.01314855832606554, 0.01037565153092146, 0.010216180235147476, 0.035438038408756256, 0.004374670330435038, 0.021702168509364128, 0.008919978514313698, 0.012024350464344025, 0.04577553644776344], [0.4718855321407318, 0.004046672489494085, 0.00351886753924191, 0.002074547577649355, 0.0004978472134098411, 0.001010275911539793, 0.0022205645218491554, 0.08876756578683853, 0.01454891636967659, 0.021205205470323563, 0.046378012746572495, 0.045198991894721985, 0.015986425802111626, 0.02271859720349312, 0.06791386753320694, 0.03636806085705757, 0.15566006302833557], [0.6865681409835815, 0.003424773458391428, 0.00630495510995388, 0.003833218477666378, 0.0011550461640581489, 0.0033491929061710835, 0.0034860004670917988, 0.03877848759293556, 0.004662151448428631, 0.018234021961688995, 0.023170528933405876, 0.03786152973771095, 0.02380889467895031, 0.030500659719109535, 0.05944862216711044, 0.0246978010982275, 0.030715957283973694]], [[0.5741932392120361, 0.012504521757364273, 0.0032251307275146246, 0.008242546580731869, 0.0012622808571904898, 0.001786747365258634, 0.003126392839476466, 0.053322870284318924, 0.026428010314702988, 0.008219636976718903, 0.023518644273281097, 0.04498233273625374, 0.010571406222879887, 0.016603585332632065, 0.026691682636737823, 0.050330497324466705, 0.13499043881893158], [0.20268955826759338, 0.08628605306148529, 0.05451688915491104, 0.09015201032161713, 0.045336656272411346, 0.02782316878437996, 0.0411144495010376, 0.10645437240600586, 0.19452407956123352, 0.008587893098592758, 0.033243097364902496, 0.016469962894916534, 0.005892107263207436, 0.008873704820871353, 0.014095144346356392, 0.02834934927523136, 0.03559156134724617], [0.3195413649082184, 0.051214396953582764, 0.014866630546748638, 0.0767570286989212, 0.025990968570113182, 0.028270505368709564, 0.025723908096551895, 0.11174130439758301, 0.15366213023662567, 0.007536351680755615, 0.01829458400607109, 0.04470610246062279, 0.017729828134179115, 0.02007473260164261, 0.02074720710515976, 0.017658770084381104, 0.04548421874642372], [0.3675423264503479, 0.0774235650897026, 0.03533709794282913, 0.014811630360782146, 0.035400137305259705, 0.09095746278762817, 0.049049243330955505, 0.03926897421479225, 0.15405672788619995, 0.006111237220466137, 0.015658603981137276, 0.01747303269803524, 0.01916801743209362, 0.023795347660779953, 0.022851433604955673, 0.0030534700490534306, 0.02804175205528736], [0.6945473551750183, 0.0503956563770771, 0.010528292506933212, 0.022740384563803673, 0.007032043766230345, 0.020692061632871628, 0.012314744293689728, 0.019432220607995987, 0.11901033669710159, 0.002985910512506962, 0.003830861998721957, 0.005278422962874174, 0.006301358807832003, 0.0023673754185438156, 0.007373325526714325, 0.0015319056110456586, 0.013637778349220753], [0.3998269736766815, 0.12892471253871918, 0.011652396060526371, 0.16042250394821167, 0.03744393214583397, 0.010028867051005363, 0.021646952256560326, 0.04304993897676468, 0.11173513531684875, 0.01357713621109724, 0.00540901068598032, 0.015569718554615974, 0.005956452339887619, 0.0009468344505876303, 0.0038878561463207006, 0.015587719157338142, 0.01433385070413351], [0.7311561107635498, 0.05060664191842079, 0.002645167987793684, 0.01531821396201849, 0.002850837307050824, 0.005628698039799929, 0.0022328824270516634, 0.06881626695394516, 0.08304977416992188, 0.002250721212476492, 0.00232191220857203, 0.008067918010056019, 0.000833215017337352, 0.0005995264509692788, 0.004286202136427164, 0.0019492965657263994, 0.01738661341369152], [0.8169430494308472, 0.020087622106075287, 0.0022841242607682943, 0.011465916410088539, 0.0016324989264830947, 0.001390981487929821, 0.004851995967328548, 0.03758576884865761, 0.06289665400981903, 0.0023080070968717337, 0.0048829419538378716, 0.007877598516643047, 0.0034686748404055834, 0.0005604965263046324, 0.003596033900976181, 0.003210047259926796, 0.014957590959966183], [0.6632129549980164, 0.05847909674048424, 0.002494317013770342, 0.009768658317625523, 0.002031132346019149, 0.002338845981284976, 0.010559553280472755, 0.17106842994689941, 0.04927026852965355, 0.0006172613357193768, 0.0017056178767234087, 0.007440407760441303, 0.0018978295847773552, 0.0005519973929040134, 0.005243014544248581, 0.0032876520417630672, 0.01003282330930233], [0.16094478964805603, 0.00748651335015893, 0.007378927897661924, 0.008781597949564457, 0.0065528214909136295, 0.0027143454644829035, 0.007923530414700508, 0.01616482064127922, 0.04190852865576744, 0.010545618832111359, 0.11055044084787369, 0.11459872871637344, 0.09084811806678772, 0.011741390451788902, 0.06833772361278534, 0.05536438152194023, 0.2781578004360199], [0.026192594319581985, 0.013724654912948608, 0.022249190136790276, 0.0027842477429658175, 0.0033832727931439877, 0.02037051133811474, 0.008052701130509377, 0.01027065608650446, 0.032563187181949615, 0.017691710963845253, 0.2830744683742523, 0.047081612050533295, 0.008216802962124348, 0.07539959251880646, 0.09133248776197433, 0.09005158394575119, 0.24756070971488953], [0.4662875533103943, 0.008070702664554119, 0.0023745433427393436, 0.0030211512930691242, 0.0015193852595984936, 0.003101447131484747, 0.003250443609431386, 0.01653403602540493, 0.01975741982460022, 0.018577340990304947, 0.057349395006895065, 0.04241904988884926, 0.04069127142429352, 0.03419868275523186, 0.04333440959453583, 0.03803611919283867, 0.2014770358800888], [0.3830494284629822, 0.021092059090733528, 0.006160008255392313, 0.01472031231969595, 0.005040530581027269, 0.014023304916918278, 0.004884559661149979, 0.023080378770828247, 0.03539381921291351, 0.04051860421895981, 0.024517381563782692, 0.07320301979780197, 0.01678163930773735, 0.037979718297719955, 0.07490969449281693, 0.05666041374206543, 0.16798508167266846], [0.5306687355041504, 0.010774489492177963, 0.002410204615443945, 0.006903544533997774, 0.0037025348283350468, 0.006171224173158407, 0.0035918622743338346, 0.031854502856731415, 0.029176101088523865, 0.01521233655512333, 0.05001373961567879, 0.05131158605217934, 0.026519812643527985, 0.004878588952124119, 0.03188614174723625, 0.018365615978837013, 0.17655903100967407], [0.6199820041656494, 0.013295439071953297, 0.004271314013749361, 0.005349303130060434, 0.0022974428720772266, 0.002429089741781354, 0.006736415904015303, 0.05976027995347977, 0.018455782905220985, 0.013699924573302269, 0.03175954893231392, 0.08787105232477188, 0.03301326557993889, 0.015318159013986588, 0.013956508599221706, 0.005432327277958393, 0.06637221574783325], [0.15816448628902435, 0.013517145998775959, 0.006362810265272856, 0.0011450161691755056, 0.0023240549489855766, 0.01284533180296421, 0.008271090686321259, 0.011708036996424198, 0.01966729760169983, 0.020595623180270195, 0.1772778034210205, 0.12107231467962265, 0.0669911801815033, 0.10927382856607437, 0.12395750731229782, 0.005718687083572149, 0.14110778272151947], [0.6879887580871582, 0.006788651458919048, 0.00042258354369550943, 0.0009651940781623125, 0.00018285839178133756, 0.00029145751614123583, 0.0017378886695951223, 0.05891162157058716, 0.011072656139731407, 0.0024355612695217133, 0.009591028094291687, 0.055832333862781525, 0.00789013970643282, 0.003163659945130348, 0.024065982550382614, 0.01920158974826336, 0.10945805162191391]], [[0.8776012659072876, 0.00662739435210824, 0.010952865704894066, 0.018764959648251534, 0.0007523531094193459, 0.0034415407571941614, 0.003725002519786358, 0.02912301942706108, 0.02777864597737789, 0.001914686756208539, 0.0032124517019838095, 0.0017763579962775111, 0.000871374795679003, 0.002051367424428463, 0.0025103408843278885, 0.0015429703053086996, 0.007353329565376043], [0.25119268894195557, 0.0333518423140049, 0.02163023129105568, 0.16566267609596252, 0.01169008668512106, 0.015552700497210026, 0.008446073159575462, 0.2172682136297226, 0.10930515825748444, 0.01435747742652893, 0.05421922728419304, 0.02296730875968933, 0.02153152972459793, 0.0068146781995892525, 0.010145852342247963, 0.009537152014672756, 0.026327045634388924], [0.6220285296440125, 0.02608654648065567, 0.01771676167845726, 0.08517983555793762, 0.024062316864728928, 0.01849222742021084, 0.013419565744698048, 0.03866398707032204, 0.05563565716147423, 0.0010692670475691557, 0.008543822914361954, 0.03143540397286415, 0.005866530351340771, 0.008571469224989414, 0.020987262949347496, 0.007115433923900127, 0.015125509351491928], [0.07823210954666138, 0.04072333127260208, 0.004590645432472229, 0.1454194188117981, 0.007617459166795015, 0.019016485661268234, 0.008790089748799801, 0.09965246170759201, 0.1428917795419693, 0.0385059155523777, 0.19105876982212067, 0.02594279870390892, 0.006845252588391304, 0.007760895416140556, 0.007776272017508745, 0.1252707540988922, 0.04990566149353981], [0.2561625838279724, 0.07746205478906631, 0.00812583975493908, 0.03874392807483673, 0.0030905823223292828, 0.012665940448641777, 0.00525591941550374, 0.17169280350208282, 0.30743277072906494, 0.008990831673145294, 0.04920628294348717, 0.007357138209044933, 0.0024497273843735456, 0.0008408415596932173, 0.002509200247004628, 0.0045184604823589325, 0.04349511116743088], [0.3294699192047119, 0.06063373386859894, 0.019198186695575714, 0.06185320392251015, 0.010971380397677422, 0.00912288948893547, 0.011579442769289017, 0.08766274899244308, 0.2896593511104584, 0.0032091380562633276, 0.0656164288520813, 0.00411161407828331, 0.003682821523398161, 0.0010671907803043723, 0.0027477291878312826, 0.0019078386249020696, 0.03750643879175186], [0.4176972508430481, 0.0192489642649889, 0.009520499967038631, 0.030035965144634247, 0.004126968793570995, 0.00760663254186511, 0.003234869334846735, 0.13726726174354553, 0.20067276060581207, 0.003377969842404127, 0.05162574723362923, 0.022239336743950844, 0.003773950506001711, 0.0024406807497143745, 0.005954192019999027, 0.004451571963727474, 0.07672533392906189], [0.16225913166999817, 0.05023084953427315, 0.009315179660916328, 0.09372425824403763, 0.035310257226228714, 0.017323270440101624, 0.0196775421500206, 0.26553502678871155, 0.08117852360010147, 0.04301990941166878, 0.036015741527080536, 0.024799132719635963, 0.05605807527899742, 0.01838778145611286, 0.03537435829639435, 0.019140124320983887, 0.032650768756866455], [0.7915427088737488, 0.006852870341390371, 0.003815377363935113, 0.020265713334083557, 0.0007379118469543755, 0.002701258985325694, 0.0016143325483426452, 0.11479590088129044, 0.030341999605298042, 0.0035393075086176395, 0.00794365257024765, 0.0013714618980884552, 0.0011070661712437868, 0.001627924619242549, 0.00333821726962924, 0.0017490566242486238, 0.00665521202608943], [0.18424901366233826, 0.032660216093063354, 0.001610534847714007, 0.037450630217790604, 0.005117237102240324, 0.007694576401263475, 0.0043250881135463715, 0.18914370238780975, 0.08759146183729172, 0.018523186445236206, 0.2292221188545227, 0.024372251704335213, 0.019012661650776863, 0.010590841993689537, 0.008312288671731949, 0.040300317108631134, 0.0998239517211914], [0.27753785252571106, 0.011008027009665966, 0.006587690208107233, 0.07437366247177124, 0.004310634918510914, 0.001986040035262704, 0.003545790910720825, 0.13499712944030762, 0.07163666188716888, 0.05909854546189308, 0.053116004914045334, 0.05388970673084259, 0.017586898058652878, 0.005337381269782782, 0.01151321828365326, 0.06378660351037979, 0.14968818426132202], [0.34596556425094604, 0.013450653292238712, 0.0028331198263913393, 0.008632787503302097, 0.0009093458065763116, 0.002470043720677495, 0.0037378643173724413, 0.05057791993021965, 0.07203326374292374, 0.010891157202422619, 0.11645850539207458, 0.05118606239557266, 0.009040330536663532, 0.013287249021232128, 0.00977716688066721, 0.02126220427453518, 0.2674867808818817], [0.49361008405685425, 0.014012736268341541, 0.002963628154247999, 0.002339404309168458, 0.0002618416037876159, 0.0020891716703772545, 0.0004461451608221978, 0.048211365938186646, 0.09939205646514893, 0.007201544474810362, 0.049710649996995926, 0.012938178144395351, 0.0016245770966634154, 0.00184776505921036, 0.00574436504393816, 0.006187069229781628, 0.2514195144176483], [0.6466578841209412, 0.022861506789922714, 0.0025711418129503727, 0.005744633264839649, 0.0004050146380905062, 0.0008056352380663157, 0.0021389066241681576, 0.01559662725776434, 0.0623030923306942, 0.002340165199711919, 0.048181820660829544, 0.01722092181444168, 0.002311774529516697, 0.0007722843438386917, 0.006738431751728058, 0.0065169264562428, 0.15683335065841675], [0.9146207571029663, 0.004662979394197464, 0.0035277309361845255, 0.0004554034094326198, 3.6263110814616084e-05, 0.000576634774915874, 0.00046026718337088823, 0.01739397458732128, 0.011538085527718067, 0.0004840571782551706, 0.011648942716419697, 0.003326687728986144, 0.0012034180108457804, 0.0019723689183592796, 0.0024822023697197437, 0.00037819697172380984, 0.025231916457414627], [0.06585510075092316, 0.003417092375457287, 0.000556586601305753, 0.03965763747692108, 0.0020394448656588793, 0.001654840656556189, 0.0034783778246492147, 0.10150887817144394, 0.0511421374976635, 0.049500998109579086, 0.2559291422367096, 0.09452560544013977, 0.037460122257471085, 0.024754220619797707, 0.018473124131560326, 0.057586729526519775, 0.19246000051498413], [0.7843999862670898, 0.002134111011400819, 0.0014758622273802757, 0.005656109191477299, 0.000305965164443478, 0.000720208918210119, 0.0008353911689482629, 0.06391479074954987, 0.016644706949591637, 0.014945917762815952, 0.02131113037467003, 0.005655888468027115, 0.0034914505667984486, 0.0072882394306361675, 0.01481031533330679, 0.008134969510138035, 0.04827490448951721]], [[0.8576313257217407, 0.0035589467734098434, 0.0023343702778220177, 0.011643779464066029, 0.0023435167968273163, 0.0009843561565503478, 0.004606286529451609, 0.0310975369066, 0.014209676533937454, 0.0026605057064443827, 0.009000306017696857, 0.01042757648974657, 0.005360001232475042, 0.010293062776327133, 0.0031872615218162537, 0.008197681978344917, 0.02246376872062683], [0.8489042520523071, 0.004750748630613089, 0.0015615337761119008, 0.07200687378644943, 0.006777613889425993, 0.001286262646317482, 0.003625889541581273, 0.033543311059474945, 0.012470915913581848, 0.000747190264519304, 0.002796000335365534, 0.002933111973106861, 0.0009169327677227557, 0.0008911656332202256, 0.00020687858341261744, 0.004317204933613539, 0.002263969974592328], [0.7480865716934204, 0.032843753695487976, 0.010309809818863869, 0.004586915951222181, 0.011372610926628113, 0.002150770276784897, 0.00414713378995657, 0.054756972938776016, 0.07125963270664215, 0.005582462530583143, 0.002373775467276573, 0.0020448798313736916, 0.0013284224551171064, 0.01117971446365118, 0.014428600668907166, 0.001823707134462893, 0.021724402904510498], [0.7276181578636169, 0.016752418130636215, 0.003972754348069429, 0.0015012893127277493, 0.03757693991065025, 0.038614653050899506, 0.019139813259243965, 0.05786258727312088, 0.040642306208610535, 0.0009828616166487336, 0.007196398451924324, 0.019254416227340698, 0.010812829248607159, 0.005125744733959436, 0.004715250805020332, 0.0012710698647424579, 0.0069603631272912025], [0.6681697368621826, 0.007104968652129173, 0.007620250806212425, 0.10908336192369461, 0.0011078156530857086, 0.1432497352361679, 0.0020194146782159805, 0.020140277221798897, 0.019400393590331078, 0.0006289963494054973, 0.0005470628966577351, 0.0010945165995508432, 0.001985864946618676, 0.001582885510288179, 0.0023982792627066374, 0.011197861284017563, 0.0026686417404562235], [0.6687548756599426, 0.005474054720252752, 0.0038148353341966867, 0.016389863565564156, 0.004948354326188564, 0.0005677415756508708, 0.23476062715053558, 0.03413522616028786, 0.0206003375351429, 0.001731404336169362, 0.0013607572764158249, 0.0005741699715144932, 0.0009447954944334924, 0.002901238389313221, 0.0007564186817035079, 0.00022216420620679855, 0.002063155872747302], [0.7011111974716187, 0.004106187727302313, 0.0019048100803047419, 0.006826437544077635, 0.00035246365587227046, 0.18927736580371857, 0.000133782290504314, 0.01854376681149006, 0.05831955000758171, 0.0016027692472562194, 0.00048173958202823997, 0.00042119232239201665, 0.0005566726322285831, 0.0034372766967862844, 0.0009736423962749541, 0.0003709353331942111, 0.011580321937799454], [0.7954146265983582, 0.009297670796513557, 0.0054098195396363735, 0.01658659242093563, 0.006253013852983713, 0.0019941539503633976, 0.030341122299432755, 0.04850636422634125, 0.0278739295899868, 0.0051125953905284405, 0.0073864213190972805, 0.009928753599524498, 0.015728585422039032, 0.007736681029200554, 0.002530696103349328, 0.004698095843195915, 0.005200940649956465], [0.9561313390731812, 0.0008841339149512351, 0.0004002015630248934, 0.002304780762642622, 0.00020183758169878274, 9.033607057062909e-05, 0.0011839112266898155, 0.019468409940600395, 0.011608057655394077, 0.00035967526491731405, 0.001262657344341278, 0.0012706874404102564, 0.0008979036938399076, 0.0009642917430028319, 0.00011343483492964879, 0.00038954554474912584, 0.0024687419645488262], [0.8086466193199158, 0.0018076999112963676, 0.0026719255838543177, 0.005714831408113241, 0.004672871436923742, 0.008148260414600372, 0.002197334775701165, 0.04261137917637825, 0.019266145303845406, 0.000403700047172606, 0.02434423379600048, 0.007482303772121668, 0.008064993657171726, 0.017821308225393295, 0.004434784408658743, 0.0186977069824934, 0.02301398105919361], [0.6064297556877136, 0.0015887290937826037, 0.000828389311209321, 0.05019272863864899, 0.0010525919497013092, 0.0038572647608816624, 0.0011728303506970406, 0.04813549295067787, 0.0318947434425354, 0.014875762164592743, 0.0029208455234766006, 0.01893950253725052, 0.0057894461788237095, 0.005113658029586077, 0.01368883065879345, 0.13799335062503815, 0.05552607774734497], [0.3405577838420868, 0.004098796751350164, 0.004238568712025881, 0.03632776439189911, 0.002307007322087884, 0.014611685648560524, 0.007300506345927715, 0.05870509892702103, 0.02840389870107174, 0.0657443106174469, 0.02394588105380535, 0.0008405373664572835, 0.09982885420322418, 0.025732532143592834, 0.013917254284024239, 0.20898152887821198, 0.0644579753279686], [0.2727213203907013, 0.0013750094221904874, 0.000548491021618247, 0.0075427331030368805, 0.011776926927268505, 0.017849700525403023, 0.005563509184867144, 0.016161516308784485, 0.017250923439860344, 0.007373419124633074, 0.0034782993607223034, 0.05577393248677254, 0.007277036085724831, 0.010300948284566402, 0.07283075153827667, 0.461722731590271, 0.03045269474387169], [0.017791414633393288, 6.897769344504923e-05, 0.00028609062428586185, 1.345938380836742e-05, 4.6272616600617766e-05, 4.5617958676302806e-05, 0.0002721014025155455, 0.0011928243329748511, 0.0016312560765072703, 0.00018967319920193404, 0.000623972387984395, 0.0014647259376943111, 0.0023989758919924498, 2.5030429242178798e-05, 0.9709601402282715, 8.178821735782549e-05, 0.0029077206272631884], [0.043708283454179764, 6.214966560946777e-05, 0.00013578722428064793, 0.0006393397343344986, 3.555925650289282e-05, 3.491224197205156e-05, 9.225129178958014e-05, 0.002938215620815754, 0.0009116427390836179, 0.00023621173750143498, 0.00020486157154664397, 0.0003908589715138078, 7.04294943716377e-05, 0.9395917057991028, 1.505894852016354e-05, 0.008266828954219818, 0.00266584986820817], [0.4000444710254669, 0.0009383959113620222, 0.0004060991923324764, 0.0021434330847114325, 0.005039292387664318, 0.001639435300603509, 0.0036752354353666306, 0.04843703657388687, 0.015555567108094692, 0.002455744193866849, 0.023927772417664528, 0.03450984135270119, 0.150416299700737, 0.00659153051674366, 0.23078298568725586, 0.0025820424780249596, 0.07085484266281128], [0.9490056037902832, 0.00023433785827364773, 0.00012116568541387096, 0.0005305696395225823, 5.323494042386301e-05, 2.215595122834202e-05, 0.0002171236847061664, 0.009182914160192013, 0.004246760159730911, 0.0007433689315803349, 0.0029321876354515553, 0.00365649932064116, 0.0028904969803988934, 0.0029285966884344816, 0.0006135914591141045, 0.002952106297016144, 0.0196691881865263]], [[0.3735335171222687, 0.038137149065732956, 0.03146331384778023, 0.028175292536616325, 0.0326337032020092, 0.05052849277853966, 0.013374547474086285, 0.04622263461351395, 0.13894814252853394, 0.0477592758834362, 0.024808010086417198, 0.029793299734592438, 0.01637670025229454, 0.013817003928124905, 0.0061633531004190445, 0.012795994058251381, 0.09546954929828644], [0.22967460751533508, 0.034670423716306686, 0.041244275867938995, 0.04330058395862579, 0.04595201462507248, 0.022269340232014656, 0.02730032242834568, 0.0400838665664196, 0.1635829210281372, 0.01997598260641098, 0.019254615530371666, 0.02283354476094246, 0.015857456251978874, 0.02877051569521427, 0.024520542472600937, 0.029684290289878845, 0.19102467596530914], [0.45324236154556274, 0.03315805271267891, 0.006221025716513395, 0.02173622138798237, 0.00608855253085494, 0.00733786029741168, 0.012667971663177013, 0.06111518666148186, 0.08922546356916428, 0.005172321107238531, 0.05202239379286766, 0.0599580779671669, 0.0017671817913651466, 0.01614348217844963, 0.014242874458432198, 0.018999941647052765, 0.14090104401111603], [0.16107189655303955, 0.020354239270091057, 0.039148855954408646, 0.04595628380775452, 0.07263963669538498, 0.034465864300727844, 0.040672462433576584, 0.017364749684929848, 0.2517130970954895, 0.013882714323699474, 0.03836634010076523, 0.032069891691207886, 0.004672692157328129, 0.010478120297193527, 0.0032568827737122774, 0.022733552381396294, 0.19115287065505981], [0.2829039990901947, 0.05327393114566803, 0.014372805133461952, 0.026191797107458115, 0.023442428559064865, 0.013819298706948757, 0.015427010133862495, 0.04461078345775604, 0.2218894064426422, 0.00625128298997879, 0.026458971202373505, 0.023577969521284103, 0.008739727549254894, 0.01095854677259922, 0.020010443404316902, 0.011110113933682442, 0.19696158170700073], [0.2120259702205658, 0.02644788846373558, 0.021377813071012497, 0.02652422897517681, 0.017786791548132896, 0.0036319836508482695, 0.0227498859167099, 0.07672607898712158, 0.1642524152994156, 0.004436826799064875, 0.03852701932191849, 0.08026958256959915, 0.005283876322209835, 0.03645509108901024, 0.040931928902864456, 0.01553935743868351, 0.20703327655792236], [0.5835537314414978, 0.014582430012524128, 0.0017409727443009615, 0.0056937201879918575, 0.0018474537646397948, 0.0006850791978649795, 0.001000245800241828, 0.024731658399105072, 0.16851060092449188, 0.0003048207436222583, 0.006129890214651823, 0.003425778355449438, 0.001119274995289743, 0.004436238668859005, 0.0029371757991611958, 0.00416212622076273, 0.17513884603977203], [0.3185100555419922, 0.022960592061281204, 0.012767384760081768, 0.020211584866046906, 0.00849288422614336, 0.008760292083024979, 0.009923161938786507, 0.1465807855129242, 0.11985625326633453, 0.03225841745734215, 0.013813583180308342, 0.02071741595864296, 0.01739857718348503, 0.024038037285208702, 0.04033084586262703, 0.029226355254650116, 0.15415368974208832], [0.20566314458847046, 0.024741927161812782, 0.06761927902698517, 0.028798935934901237, 0.04770471900701523, 0.05940704420208931, 0.048026882112026215, 0.08339041471481323, 0.08626167476177216, 0.052099354565143585, 0.025296296924352646, 0.040977224707603455, 0.03595142066478729, 0.044560398906469345, 0.024285128340125084, 0.019443849101662636, 0.10577233135700226], [0.2313961684703827, 0.01849144510924816, 0.001922601368278265, 0.0031502151396125555, 0.008005749434232712, 0.0010638654930517077, 0.0037781281862407923, 0.008075609803199768, 0.40555480122566223, 5.1496841479092836e-05, 0.007824732922017574, 0.005259424448013306, 0.00016169581795111299, 0.0013910997658967972, 0.0010987307177856565, 0.001134963589720428, 0.30163922905921936], [0.2717990279197693, 0.033821798861026764, 0.006114346440881491, 0.024118369445204735, 0.04741643741726875, 0.014171111397445202, 0.028722183778882027, 0.024612363427877426, 0.24613437056541443, 0.003626033430919051, 0.020228257402777672, 0.0609300434589386, 0.0023989735636860132, 0.005765880458056927, 0.0017772174905985594, 0.008502776734530926, 0.19986100494861603], [0.5097821950912476, 0.04205074533820152, 0.006268296390771866, 0.004365711472928524, 0.007546967826783657, 0.0015135875437408686, 0.009226033464074135, 0.041420575231313705, 0.14671842753887177, 0.0005887121078558266, 0.016627438366413116, 0.017559845000505447, 0.0018705057445913553, 0.00572785921394825, 0.005324434954673052, 0.004192609805613756, 0.17921604216098785], [0.39675262570381165, 0.03287053853273392, 0.004070722032338381, 0.006185806356370449, 0.00849553756415844, 0.0018438195111230016, 0.006622432731091976, 0.01594984158873558, 0.22853876650333405, 0.00048001937102526426, 0.016649842262268066, 0.0107956537976861, 0.001416697516106069, 0.0062671834602952, 0.007340200245380402, 0.004741515498608351, 0.25097888708114624], [0.6560561656951904, 0.05533412843942642, 0.009237045422196388, 0.0037865994963794947, 0.0016252470668405294, 0.001150193391367793, 0.009355983696877956, 0.11712469905614853, 0.0406353659927845, 0.00027285455144010484, 0.010511644184589386, 0.015787869691848755, 0.0010111783631145954, 0.005062878597527742, 0.01514750998467207, 0.004822652321308851, 0.05307795852422714], [0.7575200796127319, 0.042246654629707336, 0.004704935010522604, 0.0019006738439202309, 0.0017903491389006376, 0.0011083963327109814, 0.0017711218679323792, 0.024275122210383415, 0.0655762329697609, 5.6375069107161835e-05, 0.007412794977426529, 0.003333469619974494, 0.0002909736940637231, 0.002818548120558262, 0.0018469386268407106, 0.001622440293431282, 0.08172480762004852], [0.3511054217815399, 0.04247633367776871, 0.020423196256160736, 0.026353580877184868, 0.040917955338954926, 0.014872226864099503, 0.021964456886053085, 0.016227558255195618, 0.2207026481628418, 0.0009688992868177593, 0.033865757286548615, 0.021851586177945137, 0.0020046941936016083, 0.007328392472118139, 0.0027511417865753174, 0.010170768946409225, 0.1660153567790985], [0.25313547253608704, 0.03037654422223568, 0.05789206176996231, 0.021365966647863388, 0.028907455503940582, 0.027612630277872086, 0.03802206739783287, 0.11806131154298782, 0.06643538922071457, 0.02784380130469799, 0.03212764859199524, 0.06105039641261101, 0.022889504209160805, 0.05149906128644943, 0.03397819399833679, 0.02152746357023716, 0.10727506130933762]], [[0.07105383276939392, 0.012199198827147484, 0.0025606751441955566, 0.014098068699240685, 0.008684908971190453, 0.006134395487606525, 0.0025567002594470978, 0.02494713105261326, 0.2922031283378601, 0.018601419404149055, 0.01195479929447174, 0.017571862787008286, 0.03227439522743225, 0.014315432868897915, 0.009152935817837715, 0.019747136160731316, 0.44194403290748596], [0.08587107807397842, 0.12017085403203964, 0.016761885955929756, 0.04377687722444534, 0.07643292844295502, 0.09050150215625763, 0.012779103592038155, 0.08882007002830505, 0.2766035795211792, 0.06306277960538864, 0.009938867762684822, 0.027706030756235123, 0.014983905479311943, 0.010762662626802921, 0.00418244069442153, 0.005504508037120104, 0.052140891551971436], [0.2587868571281433, 0.04579025134444237, 0.08576206117868423, 0.021298151463270187, 0.09947577118873596, 0.12108191102743149, 0.05031105875968933, 0.04778400808572769, 0.0487239807844162, 0.04223991930484772, 0.008862549439072609, 0.034561045467853546, 0.04788665845990181, 0.03858169913291931, 0.030462663620710373, 0.004667768720537424, 0.013723610900342464], [0.12059859931468964, 0.1198631227016449, 0.05578691139817238, 0.04377533495426178, 0.08134181797504425, 0.07904281467199326, 0.04682939872145653, 0.1108696460723877, 0.17096678912639618, 0.01799362152814865, 0.03737979754805565, 0.02985372766852379, 0.017130425199866295, 0.02200266160070896, 0.01299415621906519, 0.006473066285252571, 0.02709820866584778], [0.5149787068367004, 0.05842049419879913, 0.008388128131628036, 0.02404666878283024, 0.019166626036167145, 0.015623842366039753, 0.026531415060162544, 0.11565623432397842, 0.15655408799648285, 0.010565543547272682, 0.00266649154946208, 0.006114508491009474, 0.007601200602948666, 0.007083969656378031, 0.0029878446366637945, 0.002527581760659814, 0.02108660526573658], [0.3521033525466919, 0.056938089430332184, 0.03832908347249031, 0.04835940897464752, 0.04904603585600853, 0.0739038959145546, 0.019523030146956444, 0.0829160213470459, 0.15739896893501282, 0.03231349214911461, 0.004474566783756018, 0.00917704775929451, 0.014867352321743965, 0.022781047970056534, 0.007837261073291302, 0.004463817458599806, 0.025567548349499702], [0.7653680443763733, 0.030797362327575684, 0.007287879008799791, 0.018698200583457947, 0.011425950564444065, 0.00856215599924326, 0.009349917992949486, 0.03901175409555435, 0.06177561730146408, 0.003178230719640851, 0.0034053113777190447, 0.0029300337191671133, 0.004756912123411894, 0.007815472781658173, 0.008469609543681145, 0.0030167042277753353, 0.014150852337479591], [0.11037973314523697, 0.060056522488594055, 0.03372233361005783, 0.01978255808353424, 0.048144903033971786, 0.04038994386792183, 0.03741992637515068, 0.30095505714416504, 0.09967333823442459, 0.07136626541614532, 0.03025778755545616, 0.0460725836455822, 0.024612154811620712, 0.01792958751320839, 0.013087261468172073, 0.007668165490031242, 0.03848179802298546], [0.05031547322869301, 0.03718769922852516, 0.0047621093690395355, 0.027348151430487633, 0.02537132240831852, 0.021788131445646286, 0.006878376938402653, 0.11521006375551224, 0.5184921622276306, 0.030065657570958138, 0.0035236235707998276, 0.007906991988420486, 0.006021547131240368, 0.007876724936068058, 0.003299053991213441, 0.005652575753629208, 0.12830035388469696], [0.05373314023017883, 0.12956614792346954, 0.01833966374397278, 0.04342518746852875, 0.026944400742650032, 0.019927769899368286, 0.008102282881736755, 0.08040305227041245, 0.0348784513771534, 0.11208333820104599, 0.15393389761447906, 0.07611002773046494, 0.062354959547519684, 0.05040214955806732, 0.0070692203007638454, 0.04670001193881035, 0.07602640241384506], [0.11677586287260056, 0.018950417637825012, 0.01927580125629902, 0.03196021914482117, 0.015552995726466179, 0.01696234568953514, 0.01217556744813919, 0.05748158320784569, 0.028038235381245613, 0.013849584385752678, 0.038224197924137115, 0.20729359984397888, 0.08527719229459763, 0.1308830976486206, 0.014936280436813831, 0.07443074882030487, 0.11793221533298492], [0.5650006532669067, 0.017072495073080063, 0.006416097283363342, 0.011153541505336761, 0.007141956593841314, 0.005084770265966654, 0.007194835226982832, 0.051024436950683594, 0.022067274898290634, 0.02353779785335064, 0.023769183084368706, 0.04172907769680023, 0.044813789427280426, 0.05069916322827339, 0.015975650399923325, 0.0264284685254097, 0.08089090138673782], [0.4541967511177063, 0.02689855918288231, 0.00857709813863039, 0.012632212601602077, 0.007487334311008453, 0.01462599541991949, 0.011586816050112247, 0.07194138318300247, 0.028957685455679893, 0.09007612615823746, 0.010899905115365982, 0.07838040590286255, 0.019270729273557663, 0.05440118908882141, 0.025514716282486916, 0.01896488294005394, 0.0655881017446518], [0.8418929576873779, 0.005041684024035931, 0.007445808965712786, 0.006985174026340246, 0.0038929677102714777, 0.005131320562213659, 0.002545701339840889, 0.006035570055246353, 0.00789889506995678, 0.0086777713149786, 0.0031826156191527843, 0.020852331072092056, 0.020300066098570824, 0.01988161914050579, 0.013894321396946907, 0.00928952544927597, 0.017051778733730316], [0.9161903858184814, 0.001196592696942389, 0.0031136570032685995, 0.002729585627093911, 0.0028279514517635107, 0.002311522141098976, 0.0031989377457648516, 0.006149820052087307, 0.0023341660853475332, 0.004117388743907213, 0.0006532202241942286, 0.010346027091145515, 0.016925079748034477, 0.012516843155026436, 0.005383260548114777, 0.0031019896268844604, 0.006903583183884621], [0.2593376338481903, 0.03832323104143143, 0.017367225140333176, 0.02358234114944935, 0.026675889268517494, 0.02338641881942749, 0.012839704751968384, 0.06736445426940918, 0.03166091442108154, 0.05768147110939026, 0.049425240606069565, 0.07149685174226761, 0.05951106548309326, 0.10963805764913559, 0.0229447390884161, 0.03814031183719635, 0.09062444418668747], [0.07423175871372223, 0.012813451699912548, 0.0010853252606466413, 0.00595083087682724, 0.003418268635869026, 0.002421505516394973, 0.0014076873194426298, 0.0592389851808548, 0.10726946592330933, 0.08401983976364136, 0.011291115544736385, 0.023983735591173172, 0.01690945029258728, 0.024086609482765198, 0.00714537687599659, 0.020114701241254807, 0.5446118116378784]], [[0.13619019091129303, 0.07917975634336472, 0.03191395476460457, 0.04470569267868996, 0.02777736820280552, 0.04517613351345062, 0.0329587385058403, 0.12386400252580643, 0.05149879306554794, 0.07249888777732849, 0.04246753454208374, 0.058487556874752045, 0.056250590831041336, 0.05078359320759773, 0.049788471311330795, 0.0382404625415802, 0.05821827054023743], [0.21094262599945068, 0.06072332337498665, 0.03154246509075165, 0.039620619267225266, 0.05296778678894043, 0.05292663723230362, 0.05951029062271118, 0.11615844815969467, 0.14391648769378662, 0.03390298783779144, 0.01596452109515667, 0.0435335636138916, 0.01744716987013817, 0.021830270066857338, 0.027046184986829758, 0.0157967247068882, 0.05616976320743561], [0.34229591488838196, 0.05349472165107727, 0.00044914547470398247, 0.04652364179491997, 0.01909130997955799, 0.0064160870388150215, 0.05236538127064705, 0.037946734577417374, 0.21899962425231934, 0.010216470807790756, 0.006880542263388634, 0.015377227216959, 0.02915443666279316, 0.02698325365781784, 0.03277679905295372, 0.02056245319545269, 0.08046623319387436], [0.1226445883512497, 0.040392011404037476, 0.02360180765390396, 0.03356942534446716, 0.0331718809902668, 0.14128978550434113, 0.034561868757009506, 0.1505764275789261, 0.0805952250957489, 0.09598302841186523, 0.010058676823973656, 0.04970911145210266, 0.03134823217988014, 0.03427494689822197, 0.053327612578868866, 0.03709784522652626, 0.0277975145727396], [0.1335122436285019, 0.046422168612480164, 0.045643869787454605, 0.06108638271689415, 0.003401512047275901, 0.1501297801733017, 0.1097494512796402, 0.054603055119514465, 0.17308315634727478, 0.04177732393145561, 0.008323014713823795, 0.08298651874065399, 0.008997861295938492, 0.017226438969373703, 0.009730478748679161, 0.0076748076826334, 0.04565189406275749], [0.13850677013397217, 0.0639893040060997, 0.00850216206163168, 0.09153279662132263, 0.03693598508834839, 0.0058687045238912106, 0.05740666389465332, 0.10620807111263275, 0.19798418879508972, 0.06629233807325363, 0.021415511146187782, 0.041560862213373184, 0.0216192826628685, 0.04996025562286377, 0.0258440300822258, 0.011483612470328808, 0.0548895038664341], [0.2302083969116211, 0.05530844256281853, 0.05514807254076004, 0.050639744848012924, 0.013585008680820465, 0.08023469895124435, 0.05732687935233116, 0.05652659386396408, 0.18080158531665802, 0.03227950260043144, 0.0084602115675807, 0.0704965889453888, 0.016363631933927536, 0.008549617603421211, 0.013112160377204418, 0.0107195395976305, 0.060239389538764954], [0.25972920656204224, 0.06390157341957092, 0.019162608310580254, 0.04985982924699783, 0.041011158376932144, 0.045371364802122116, 0.034367289394140244, 0.15957415103912354, 0.06398110091686249, 0.028466304764151573, 0.013219913467764854, 0.03698974847793579, 0.026138199493288994, 0.053603410720825195, 0.021687759086489677, 0.0411180704832077, 0.04181830585002899], [0.09034276008605957, 0.07754916697740555, 0.03454980626702309, 0.06535446643829346, 0.03883584216237068, 0.10664921253919601, 0.03620612248778343, 0.20718428492546082, 0.0517723374068737, 0.05870107188820839, 0.028977826237678528, 0.037805333733558655, 0.054174941033124924, 0.033762793987989426, 0.02283877320587635, 0.026870692148804665, 0.028424501419067383], [0.21625906229019165, 0.04045278951525688, 0.012858305126428604, 0.10989797860383987, 0.020503783598542213, 0.04206298291683197, 0.05962509289383888, 0.10306674987077713, 0.11533786356449127, 0.0013563567772507668, 0.0038155068177729845, 0.08406057208776474, 0.011772611178457737, 0.014186138287186623, 0.0073732552118599415, 0.04508255794644356, 0.11228843033313751], [0.09747344255447388, 0.01777718774974346, 0.004821004346013069, 0.04646192863583565, 0.017839256674051285, 0.01810486800968647, 0.03567995876073837, 0.0609109029173851, 0.08252067863941193, 0.01140142884105444, 0.005305478814989328, 0.1423553228378296, 0.09637564420700073, 0.03626321256160736, 0.07755101472139359, 0.08356667309999466, 0.16559194028377533], [0.11249347031116486, 0.023766499012708664, 0.023114655166864395, 0.042992446571588516, 0.032619692385196686, 0.05845371633768082, 0.07248760759830475, 0.036161720752716064, 0.07719957083463669, 0.022553693503141403, 0.01761680096387863, 0.07407406717538834, 0.09231282770633698, 0.020714614540338516, 0.04424132779240608, 0.09275511652231216, 0.15644221007823944], [0.2892049551010132, 0.024716205894947052, 0.010256482288241386, 0.017953963950276375, 0.0005146929761394858, 0.015512811951339245, 0.014164227060973644, 0.05134362354874611, 0.13534921407699585, 0.01808399148285389, 0.013838488608598709, 0.0692896619439125, 0.005127372685819864, 0.04375274479389191, 0.022679675370454788, 0.015939589589834213, 0.252272367477417], [0.18097321689128876, 0.03645959869027138, 0.04169938340783119, 0.03479447960853577, 0.001791298040188849, 0.136783629655838, 0.02464781142771244, 0.026010729372501373, 0.11617446690797806, 0.010181463323533535, 0.02268487960100174, 0.06266524642705917, 0.012716144323348999, 0.001053516985848546, 0.0036807595752179623, 0.05368969589471817, 0.23399367928504944], [0.16878485679626465, 0.041048578917980194, 0.03248143196105957, 0.049241114407777786, 0.008485502563416958, 0.054425302892923355, 0.029646243900060654, 0.029012341052293777, 0.1390765905380249, 0.006958476267755032, 0.027609024196863174, 0.06530915200710297, 0.01951870508491993, 0.006199215073138475, 0.0032057338394224644, 0.030796699225902557, 0.28820106387138367], [0.22168339788913727, 0.01970122568309307, 0.017759354785084724, 0.021183690056204796, 0.003852823516353965, 0.04136800393462181, 0.01090035866945982, 0.0650753527879715, 0.054872192442417145, 0.024630671367049217, 0.011827384121716022, 0.09941930323839188, 0.026330361142754555, 0.06422965973615646, 0.08038948476314545, 0.08413398265838623, 0.15264277160167694], [0.10022874921560287, 0.02577802538871765, 0.011863223277032375, 0.017911396920681, 0.005067610181868076, 0.018355203792452812, 0.009556182660162449, 0.09161453694105148, 0.01999814249575138, 0.08449877798557281, 0.06590288877487183, 0.07416608184576035, 0.12163711339235306, 0.08837532997131348, 0.052650175988674164, 0.09376457333564758, 0.118632011115551]]], [[[0.6822956204414368, 0.035260070115327835, 0.00263024540618062, 0.013483773916959763, 0.010092920623719692, 0.00952314306050539, 0.0016194175696000457, 0.03664538636803627, 0.019463056698441505, 0.022302372381091118, 0.043861303478479385, 0.011156735941767693, 0.0245597492903471, 0.004603949375450611, 0.0038147231098264456, 0.02780424803495407, 0.05088333785533905], [0.3195177912712097, 0.09742715954780579, 0.01119675301015377, 0.12037629634141922, 0.04995123669505119, 0.044034916907548904, 0.011735173873603344, 0.14329250156879425, 0.08690748363733292, 0.013612714596092701, 0.04531298950314522, 0.013159109279513359, 0.01894041895866394, 0.0022922256030142307, 0.0018899071728810668, 0.005071460269391537, 0.015281840227544308], [0.52382892370224, 0.02846101112663746, 0.018757235258817673, 0.03017124906182289, 0.030158022418618202, 0.09563451260328293, 0.007803021930158138, 0.02280348353087902, 0.1261315643787384, 0.011107896454632282, 0.006723277736455202, 0.0013152105966582894, 0.018898582085967064, 0.003657741704955697, 0.013297272846102715, 0.0014744699001312256, 0.05977644398808479], [0.3216986656188965, 0.23807315528392792, 0.0008802164811640978, 0.06642764061689377, 0.04236074537038803, 0.02113865502178669, 0.01180385984480381, 0.1970285326242447, 0.016916584223508835, 0.005837828852236271, 0.026597993448376656, 0.03644804656505585, 0.00785502977669239, 0.0005335125606507063, 0.00025057175662368536, 0.004023133777081966, 0.002125779166817665], [0.45321059226989746, 0.06610734760761261, 0.00047098653158172965, 0.16192032396793365, 0.04743068665266037, 0.01764250174164772, 0.06689406931400299, 0.11394446343183517, 0.011730327270925045, 0.012875119224190712, 0.008049319498240948, 0.015101907774806023, 0.012054195627570152, 0.0011627222411334515, 0.000563008536119014, 0.008045155555009842, 0.002797310473397374], [0.48540663719177246, 0.0315280556678772, 0.0009604609222151339, 0.09195850789546967, 0.06993946433067322, 0.024767903611063957, 0.06700718402862549, 0.14951883256435394, 0.016719719395041466, 0.0143564622849226, 0.007434335071593523, 0.009912626817822456, 0.011083364486694336, 0.003885942278429866, 0.00208507152274251, 0.008306787349283695, 0.005128646735101938], [0.4349879026412964, 0.07053473591804504, 0.0001326032797805965, 0.23243191838264465, 0.08468427509069443, 0.010827518999576569, 0.009237083606421947, 0.095780149102211, 0.0049951933324337006, 0.010793130844831467, 0.007235290016978979, 0.011028170585632324, 0.0046798549592494965, 0.0009857806144282222, 0.00011326972162351012, 0.02063368633389473, 0.00091942009748891], [0.43343231081962585, 0.07787344604730606, 0.0031263334676623344, 0.069603331387043, 0.052730485796928406, 0.015508756041526794, 0.006747057661414146, 0.21662920713424683, 0.024357153102755547, 0.025131117552518845, 0.024896914139389992, 0.014240911230444908, 0.00902417954057455, 0.003260604804381728, 0.0013814592966809869, 0.015226085670292377, 0.006830764468759298], [0.7126644253730774, 0.05738997459411621, 0.0017661815509200096, 0.011781885288655758, 0.02944267727434635, 0.012645489536225796, 0.005664742551743984, 0.11641773581504822, 0.01747857965528965, 0.010960976593196392, 0.004601067863404751, 0.004442916251718998, 0.005712913349270821, 0.0007291765650734305, 0.0007241361308842897, 0.0036139606963843107, 0.0039633456617593765], [0.35545724630355835, 0.015700388699769974, 0.00022701396665070206, 0.047394681721925735, 0.01047397032380104, 0.003791484050452709, 0.0034794039092957973, 0.11609276384115219, 0.017329897731542587, 0.06030169874429703, 0.12431337684392929, 0.11013025045394897, 0.05419253930449486, 0.0029536793008446693, 0.0008693889831192791, 0.04836363345384598, 0.028928592801094055], [0.18819394707679749, 0.031523726880550385, 0.0019991977605968714, 0.03090377151966095, 0.002986564300954342, 0.007773544639348984, 0.0009980795439332724, 0.12662644684314728, 0.07078582048416138, 0.05949152633547783, 0.0713064894080162, 0.06256473064422607, 0.0397312305867672, 0.013424444012343884, 0.0121604660525918, 0.08287225663661957, 0.19665774703025818], [0.44700315594673157, 0.008147265762090683, 0.00018987641669809818, 0.026380542665719986, 0.006153915077447891, 0.0037664221599698067, 0.0018434333615005016, 0.07596214860677719, 0.01489653717726469, 0.03840700909495354, 0.03325706720352173, 0.046473968774080276, 0.060095787048339844, 0.017903203144669533, 0.008452055975794792, 0.1373477578163147, 0.0737197995185852], [0.34166258573532104, 0.014866519719362259, 0.0006122334743849933, 0.017381759360432625, 0.0047426060773432255, 0.005879465024918318, 0.0038198272231966257, 0.03887733817100525, 0.01415393128991127, 0.06591495871543884, 0.029482051730155945, 0.04742943122982979, 0.09581159055233002, 0.05360044166445732, 0.042785268276929855, 0.12945809960365295, 0.093521848320961], [0.3062163293361664, 0.0043711792677640915, 0.0016276920214295387, 0.016264447942376137, 0.0015441137365996838, 0.008248157799243927, 0.001241195946931839, 0.026808761060237885, 0.030627401545643806, 0.010589483194053173, 0.008681464940309525, 0.020977210253477097, 0.028243962675333023, 0.03647366538643837, 0.0943315178155899, 0.21241238713264465, 0.19134104251861572], [0.1210237517952919, 0.002162128919735551, 0.0034830737859010696, 0.008340361528098583, 0.001517640077508986, 0.004227576311677694, 0.0005055739893577993, 0.011009505949914455, 0.03782225772738457, 0.017331713810563087, 0.009642845019698143, 0.021944144740700722, 0.030234074220061302, 0.10904727131128311, 0.11775970458984375, 0.16735392808914185, 0.3365943729877472], [0.5429201126098633, 0.009856241755187511, 8.317088213516399e-05, 0.015544903464615345, 0.0009551475523039699, 0.001194678246974945, 0.0003980295732617378, 0.10956937819719315, 0.007213618606328964, 0.03117157705128193, 0.0459539033472538, 0.05523526668548584, 0.019978677853941917, 0.0040847123600542545, 0.0009635523310862482, 0.10833918303251266, 0.046537794172763824], [0.806210458278656, 0.008082743734121323, 0.000343059393344447, 0.0011954146903008223, 0.002624648390337825, 0.0014450001763179898, 0.0006635795580223203, 0.03913620859384537, 0.005478864535689354, 0.020178085193037987, 0.010771473869681358, 0.009192985482513905, 0.01983797550201416, 0.003090026555582881, 0.005178037099540234, 0.020579298958182335, 0.045992035418748856]], [[0.26030296087265015, 0.024937255308032036, 0.0119309788569808, 0.03835250809788704, 0.007886629551649094, 0.022854356095194817, 0.018406454473733902, 0.02492615021765232, 0.08671466261148453, 0.019164158031344414, 0.034623999148607254, 0.040964607149362564, 0.010998984798789024, 0.07520788908004761, 0.03389676660299301, 0.08578357100486755, 0.2030480057001114], [0.5228820443153381, 0.2498551905155182, 0.0047102575190365314, 0.02850227989256382, 0.001522764447145164, 0.0018293781904503703, 0.007469263859093189, 0.015240908600389957, 0.08303587883710861, 0.005514114163815975, 0.01869751326739788, 0.0015216560568660498, 0.0007400493486784399, 0.0031062287744134665, 0.0019343933090567589, 0.011887768283486366, 0.04155036062002182], [0.5664864778518677, 0.008889389224350452, 0.09324275702238083, 0.004385432228446007, 0.0002986930776387453, 0.0038385335355997086, 0.0002485603035893291, 0.02305116504430771, 0.18619360029697418, 0.004172870423644781, 0.0018810393521562219, 0.000216798041947186, 0.00030662701465189457, 0.0030485582537949085, 0.0008845346746966243, 0.004338380414992571, 0.0985165685415268], [0.2929644286632538, 0.0634969100356102, 0.003967739641666412, 0.3829934597015381, 0.005042236298322678, 0.0014616843545809388, 0.01442265696823597, 0.015202870592474937, 0.07655645906925201, 0.014224136248230934, 0.024202097207307816, 0.0031307926401495934, 0.0019311335636302829, 0.03346136584877968, 0.001373190782032907, 0.03842684626579285, 0.027141958475112915], [0.23808839917182922, 0.010087027214467525, 0.0003861273289658129, 0.014740384183824062, 0.5390181541442871, 0.008710535243153572, 0.03599068522453308, 0.010943606495857239, 0.04784562438726425, 0.006522782146930695, 0.0011998129775747657, 0.0017976046074181795, 0.02926289290189743, 0.0070022395811975, 0.001948303310200572, 0.0015431599458679557, 0.04491274058818817], [0.11473768949508667, 0.000960657955147326, 0.0009823553264141083, 0.0009865137981250882, 0.0003537834854796529, 0.7655156254768372, 0.0008234000415541232, 0.010097494348883629, 0.05844496935606003, 0.0011152173392474651, 0.00046246341662481427, 0.0007048386614769697, 0.00024133393890224397, 0.004020757973194122, 0.0014535851078107953, 0.003951926715672016, 0.035147469490766525], [0.5163162350654602, 0.00897502526640892, 0.0004555540217552334, 0.012591302394866943, 0.011259350925683975, 0.002138142241165042, 0.29595574736595154, 0.01212291605770588, 0.09115639328956604, 0.0022656195797026157, 0.006693446077406406, 0.001294752350077033, 0.002201332012191415, 0.0014744959771633148, 0.0006546106887981296, 0.0012760474346578121, 0.03316907584667206], [0.21852906048297882, 0.08968650549650192, 0.05212351679801941, 0.10586758702993393, 0.0189121775329113, 0.03629008308053017, 0.023462336510419846, 0.093361496925354, 0.1368219405412674, 0.0327131561934948, 0.04305531829595566, 0.01102403923869133, 0.013256549835205078, 0.024074526503682137, 0.00987568125128746, 0.031168457120656967, 0.05977753922343254], [0.6237765550613403, 0.07191742956638336, 0.005616202484816313, 0.04252871498465538, 0.002756607485935092, 0.010773872956633568, 0.004928263369947672, 0.06351715326309204, 0.09769699722528458, 0.003188671311363578, 0.004592030309140682, 0.001247798791155219, 0.0004021433705929667, 0.008964680135250092, 0.0014624991454184055, 0.012995840050280094, 0.043634504079818726], [0.41960352659225464, 0.01913681998848915, 0.0015677883056923747, 0.007768760900944471, 0.003421276342123747, 0.0009994249558076262, 0.0008573529776185751, 0.01781180500984192, 0.22060412168502808, 0.16235463321208954, 0.014189998619258404, 0.0033870653714984655, 0.005030840635299683, 0.000790201302152127, 0.001405485556460917, 0.004889284260571003, 0.11618164926767349], [0.21278835833072662, 0.1617441177368164, 0.002280773827806115, 0.06295441091060638, 0.0023916931822896004, 0.0028469108510762453, 0.0061056348495185375, 0.03518082946538925, 0.02114127017557621, 0.015012288466095924, 0.428611159324646, 0.00602854834869504, 0.0027886908501386642, 0.008689564652740955, 0.0013605465646833181, 0.014249610714614391, 0.015825416892766953], [0.1087644025683403, 0.007666837889701128, 0.0009514890844002366, 0.011494861915707588, 0.008100277744233608, 0.011865037493407726, 0.010352912358939648, 0.014303864911198616, 0.13765114545822144, 0.004660285077989101, 0.011767576448619366, 0.5612844228744507, 0.00652401614934206, 0.008163641206920147, 0.003781902836635709, 0.007013797294348478, 0.08565358817577362], [0.19253849983215332, 0.015032432973384857, 0.0015187135431915522, 0.015387236140668392, 0.10257664322853088, 0.012829083018004894, 0.011811327189207077, 0.03713827580213547, 0.05944398045539856, 0.013319967314600945, 0.007715099025517702, 0.011939016170799732, 0.44796672463417053, 0.011809742078185081, 0.004552720580250025, 0.002404824597761035, 0.0520157590508461], [0.35856541991233826, 0.0008786483085714281, 0.0012833033688366413, 0.004999963100999594, 0.0008144171442836523, 0.0038151931948959827, 0.0007613565539941192, 0.010301255621016026, 0.06564703583717346, 0.0004498498747125268, 0.0006767010781913996, 0.0009487619390711188, 0.0008650294621475041, 0.5057371854782104, 0.002964746905490756, 0.011714909225702286, 0.02957627736032009], [0.16855739057064056, 0.0035048709250986576, 0.0025944223161786795, 0.0023684853222221136, 0.0034197778441011906, 0.007350698113441467, 0.002209746977314353, 0.018640436232089996, 0.055680349469184875, 0.008621187880635262, 0.003783331485465169, 0.004712854977697134, 0.005618084222078323, 0.040853600949048996, 0.5851300954818726, 0.029646925628185272, 0.057307615876197815], [0.4214586317539215, 0.01272890530526638, 0.0037388994824141264, 0.034625470638275146, 0.0009176275343634188, 0.007532259449362755, 0.002153666689991951, 0.031964510679244995, 0.13898687064647675, 0.0074130212888121605, 0.008008171804249287, 0.0033505852334201336, 0.0006066468777135015, 0.04832366108894348, 0.009480200707912445, 0.18003545701503754, 0.08867539465427399], [0.35087811946868896, 0.039255011826753616, 0.019050082191824913, 0.032050490379333496, 0.00489999633282423, 0.01617913320660591, 0.006983624771237373, 0.0962814912199974, 0.23207370936870575, 0.00944092869758606, 0.008303634822368622, 0.002870802767574787, 0.0010940341744571924, 0.021532583981752396, 0.004500772804021835, 0.033830802887678146, 0.12077486515045166]], [[0.22436125576496124, 0.03122175857424736, 0.021436095237731934, 0.014033504761755466, 0.019719915464520454, 0.0338527113199234, 0.012618753127753735, 0.039174940437078476, 0.03941758722066879, 0.3097091019153595, 0.0364307276904583, 0.02144465781748295, 0.03611835464835167, 0.04168879985809326, 0.018086425960063934, 0.03709793463349342, 0.06358738988637924], [0.2595123052597046, 0.13314905762672424, 0.029556741937994957, 0.0541284941136837, 0.02760419435799122, 0.02228226512670517, 0.09031977504491806, 0.16102033853530884, 0.07728604972362518, 0.0170094296336174, 0.03624677658081055, 0.019100148230791092, 0.01108310092240572, 0.026370098814368248, 0.022499585524201393, 0.004521022085100412, 0.008310568518936634], [0.594242513179779, 0.15180082619190216, 0.013355364091694355, 0.013014501892030239, 0.0018408140167593956, 0.0003923088952433318, 0.0116496616974473, 0.16529680788516998, 0.0057604662142694, 0.0007728811469860375, 0.01601817086338997, 0.010109257884323597, 0.001657823333516717, 0.0016253077192232013, 0.009594626724720001, 0.0018021098803728819, 0.0010666298912838101], [0.27030667662620544, 0.13621576130390167, 0.028462644666433334, 0.0646762028336525, 0.02358029969036579, 0.02551363967359066, 0.09418133646249771, 0.11567646265029907, 0.023073725402355194, 0.018290143460035324, 0.07670951634645462, 0.027966663241386414, 0.01960626430809498, 0.028858521953225136, 0.035123687237501144, 0.00953949149698019, 0.002219011075794697], [0.5074316263198853, 0.07996106147766113, 0.002697526477277279, 0.011143394745886326, 0.00106679683085531, 0.0004081881488673389, 0.0045843543484807014, 0.3531482517719269, 0.012267665937542915, 0.0007239445112645626, 0.0043886261992156506, 0.008659426122903824, 0.000407509010983631, 0.0028253772761672735, 0.008663775399327278, 0.0006861094734631479, 0.0009364447323605418], [0.5707200765609741, 0.13657622039318085, 0.01322108879685402, 0.00804736465215683, 0.0021786789875477552, 0.0002577733830548823, 0.00417737290263176, 0.2190672606229782, 0.009484305046498775, 0.0007010713452473283, 0.010957865975797176, 0.006696528289467096, 0.001869760686531663, 0.0015118465526029468, 0.01242093462496996, 0.0005763688823208213, 0.0015355368377640843], [0.4644774794578552, 0.06806331127882004, 0.011435909196734428, 0.03586268797516823, 0.005579446908086538, 0.002100869081914425, 0.008821384981274605, 0.23808692395687103, 0.08800483494997025, 0.0008978701662272215, 0.009406577795743942, 0.03075648471713066, 0.001903757220134139, 0.005021379794925451, 0.01724247634410858, 0.0021622073836624622, 0.010176380164921284], [0.3335186541080475, 0.03827006742358208, 0.013124575838446617, 0.041150301694869995, 0.03460875526070595, 0.015999259427189827, 0.034882307052612305, 0.22065448760986328, 0.106643445789814, 0.017461303621530533, 0.019272973760962486, 0.0266261026263237, 0.015617902390658855, 0.022518768906593323, 0.0036819051019847393, 0.017316684126853943, 0.03865256905555725], [0.48089906573295593, 0.05632786452770233, 0.006751597858965397, 0.02877786196768284, 0.020115992054343224, 0.007723397575318813, 0.02941860258579254, 0.31117892265319824, 0.012199708260595798, 0.004238551948219538, 0.00707376841455698, 0.015346447005867958, 0.003231395734474063, 0.00975171197205782, 0.0037738943938165903, 0.0019818206783384085, 0.0012094136327505112], [0.35051918029785156, 0.0277424193918705, 0.0026206346228718758, 0.00862390361726284, 0.0007308940985240042, 0.0006053828983567655, 0.002039568731561303, 0.18621663749217987, 0.02659977413713932, 0.04654679819941521, 0.0565185509622097, 0.08150777220726013, 0.011012209579348564, 0.01555384136736393, 0.03829077258706093, 0.06883057206869125, 0.07604116201400757], [0.29989585280418396, 0.21211478114128113, 0.012097137980163097, 0.03750472888350487, 0.006688349414616823, 0.004164774902164936, 0.006009112577885389, 0.038700759410858154, 0.012774821370840073, 0.0584508515894413, 0.12515515089035034, 0.05331069603562355, 0.012712017633020878, 0.028217719867825508, 0.027167880907654762, 0.0398469939827919, 0.02518841065466404], [0.8537232875823975, 0.008102361112833023, 0.000321030558552593, 0.0008533833315595984, 6.255933840293437e-05, 9.349741594633088e-05, 0.00017812031728681177, 0.08712994307279587, 0.0029953145422041416, 0.0018041590228676796, 0.00544142909348011, 0.012984873726963997, 0.0007626242586411536, 0.0030534672550857067, 0.004994462709873915, 0.006727222353219986, 0.010772330686450005], [0.7217544913291931, 0.019425155594944954, 0.0007242090068757534, 0.0011370280990377069, 8.95856210263446e-05, 0.00022010953398421407, 0.00036339106736704707, 0.20532137155532837, 0.0035484805703163147, 0.004185807891190052, 0.005644181277602911, 0.015357761643826962, 0.0004456062160898, 0.0018210476264357567, 0.00569745060056448, 0.004917515441775322, 0.009346977807581425], [0.6803311109542847, 0.04388759285211563, 0.010201721452176571, 0.004490840248763561, 0.00011520295083755627, 0.000227678261580877, 0.0004739072173833847, 0.12748093903064728, 0.0055168732069432735, 0.0039052702486515045, 0.005486944690346718, 0.07031803578138351, 0.0003826988395303488, 0.0032799742184579372, 0.01451216172426939, 0.019167032092809677, 0.010222065262496471], [0.7427048087120056, 0.0446072518825531, 0.002733102533966303, 0.0013373729307204485, 0.00011133380030514672, 0.00011317487224005163, 0.0005121941212564707, 0.13273939490318298, 0.004510131198912859, 0.0014771270798519254, 0.004741154611110687, 0.04112107679247856, 0.0005231461836956441, 0.004035986494272947, 0.005976933520287275, 0.003571887733414769, 0.009184031747281551], [0.1489006131887436, 0.013011327013373375, 0.001975643215700984, 0.01670215092599392, 0.003309930209070444, 0.004668704699724913, 0.004907403606921434, 0.0430835522711277, 0.014747639186680317, 0.058971405029296875, 0.04376852512359619, 0.09500115364789963, 0.04765741154551506, 0.17318540811538696, 0.15286332368850708, 0.12580904364585876, 0.051436807960271835], [0.6095574498176575, 0.027133753523230553, 0.0025640218518674374, 0.005627874750643969, 0.002388184890151024, 0.0022122778464108706, 0.004465707577764988, 0.13545842468738556, 0.004957517609000206, 0.020288845524191856, 0.03069455549120903, 0.06566030532121658, 0.012075920589268208, 0.03674916923046112, 0.012515691109001637, 0.015901319682598114, 0.011748884804546833]], [[0.7269570827484131, 0.01789163611829281, 0.00799620058387518, 0.006585173774510622, 0.003356094704940915, 0.005447388626635075, 0.004194266628473997, 0.020981440320611, 0.04622857645153999, 0.005640462040901184, 0.0043085734359920025, 0.004060355946421623, 0.008057504892349243, 0.009216810576617718, 0.006843645591288805, 0.013159217312932014, 0.10907569527626038], [0.006191821303218603, 0.019481344148516655, 0.7337139248847961, 0.20860829949378967, 0.015124008990824223, 0.0032596897799521685, 0.0004418274329509586, 0.0014926388394087553, 0.004156946670264006, 0.0009886649204418063, 0.0014647089410573244, 0.0021933538373559713, 0.0005162816378287971, 0.00037877087015658617, 0.00017860450316220522, 0.0008612748351879418, 0.0009478495921939611], [0.8142242431640625, 0.014280052855610847, 0.03292576223611832, 0.05281565710902214, 0.03126922622323036, 0.022389255464076996, 0.0006104055210016668, 0.004441654775291681, 0.008216227404773235, 0.00015931884991005063, 0.00016934095765464008, 0.00022205487766768783, 0.0016439077444374561, 0.001120731234550476, 0.0002189180813729763, 0.0011454833438619971, 0.014147806912660599], [0.08254825323820114, 0.007273707073181868, 0.007603869307786226, 0.02100532129406929, 0.453010618686676, 0.3249257802963257, 0.024505997076630592, 0.023346200585365295, 0.015324040316045284, 0.00020244077313691378, 8.737038297113031e-05, 0.0003801225684583187, 0.003071874612942338, 0.017686055973172188, 0.0035992234479635954, 0.0017139840638265014, 0.013715008273720741], [0.054695867002010345, 0.0005519826081581414, 0.00016194878844544291, 0.0021179390605539083, 0.01695120520889759, 0.2183791697025299, 0.6605658531188965, 0.037342529743909836, 0.0054132589139044285, 2.2825843188911676e-05, 1.4719857972522732e-05, 5.231525847193552e-06, 0.0014829125721007586, 0.0001251043431693688, 0.00023160403361544013, 0.00025381791056133807, 0.0016839680029079318], [0.4551451802253723, 0.0027073537930846214, 0.0006436753319576383, 0.0011482848785817623, 0.011742557398974895, 0.05413889139890671, 0.09749658405780792, 0.2391180545091629, 0.1270204335451126, 0.0009941611206158996, 0.00025643015396781266, 3.041134732484352e-05, 0.0021528557408601046, 0.0004836696607526392, 0.001114178798161447, 0.0004480742500163615, 0.0053592342883348465], [0.20939292013645172, 0.002777647925540805, 0.00017728346574585885, 7.00855816830881e-05, 0.0017265296773985028, 0.014145530760288239, 0.0033955376129597425, 0.06417017430067062, 0.6963275671005249, 0.0028625503182411194, 0.0006282955291680992, 1.543108191981446e-05, 0.00041611684719100595, 4.507028279476799e-05, 0.00018130823445972055, 0.00011334386363159865, 0.003554614493623376], [0.2170998603105545, 0.012498983182013035, 0.004142874386161566, 0.0018711151788011193, 0.0015724966069683433, 0.008559465408325195, 0.016058972105383873, 0.06742995232343674, 0.5090731978416443, 0.11453909426927567, 0.031752388924360275, 0.0026793505530804396, 0.0011193726677447557, 0.0008053377969190478, 0.001154088880866766, 0.0009438367560505867, 0.008699722588062286], [0.9664286971092224, 0.001338437432423234, 0.00028009433299303055, 0.0003492311807349324, 6.550805119331926e-05, 0.00017494872736278921, 7.833373820176348e-05, 0.001981660258024931, 0.020104890689253807, 0.005200414452701807, 0.0019855231512337923, 0.0007284999010153115, 0.00019032112322747707, 5.707058880943805e-05, 2.724666046560742e-05, 8.845505362842232e-05, 0.0009204759262502193], [0.5758452415466309, 0.0030951141379773617, 0.004761130083352327, 0.002336776116862893, 0.0002411947789369151, 9.37568984227255e-05, 5.521527418750338e-05, 0.0003310434112790972, 0.004556070547550917, 0.028866425156593323, 0.10900643467903137, 0.23613987863063812, 0.024846957996487617, 0.004491351079195738, 0.0010350859956815839, 0.0006556663429364562, 0.0036426254082471132], [0.575535237789154, 0.0008558345143683255, 0.005822916515171528, 0.0034926305525004864, 0.00010607944568619132, 3.480555460555479e-05, 7.737130545137916e-06, 0.0005968101904727519, 0.00543591845780611, 0.017514795064926147, 0.03259458392858505, 0.1252136379480362, 0.13784223794937134, 0.08326109498739243, 0.0021554052364081144, 0.005088401027023792, 0.004441919270902872], [0.011750069446861744, 0.0001563738042023033, 0.00010440481128171086, 0.00020337167370598763, 9.635693277232349e-05, 7.71645427448675e-05, 3.69607332686428e-05, 0.00012413262447807938, 0.00033067449112422764, 0.00012616872845683247, 0.000515155668836087, 0.0005893527995795012, 0.966963529586792, 0.008206074126064777, 0.008268392644822598, 0.0005751883727498353, 0.0018765617860481143], [0.43296104669570923, 0.0005168191273696721, 0.0007069097482599318, 0.0005931710475124419, 0.001529261120595038, 0.0021718121133744717, 0.0006062213215045631, 0.0011525223962962627, 0.0015182701172307134, 0.00044179102405905724, 0.0016879516188055277, 0.00476248050108552, 0.20452313125133514, 0.15664899349212646, 0.11206435412168503, 0.046345844864845276, 0.031769465655088425], [0.44735753536224365, 0.0005971206119284034, 0.00020121039415244013, 0.00035224054590798914, 0.0010305430041626096, 0.0007352453540079296, 0.001396332634612918, 0.000719264498911798, 0.002508622594177723, 6.437341653509066e-05, 7.428012759191915e-05, 0.0008355104364454746, 0.04698832333087921, 0.016309339553117752, 0.3386057913303375, 0.06282110512256622, 0.07940312474966049], [0.9219660758972168, 0.0001357470900984481, 6.967592344153672e-05, 3.8046367990318686e-05, 4.9331447371514514e-05, 9.716444765217602e-05, 2.9237058697617613e-05, 0.0002664979256223887, 0.0004996331408619881, 1.3988978025736287e-05, 5.258775217953371e-06, 2.4656586901983246e-05, 0.0005134257371537387, 0.0003939476446248591, 0.003402730682864785, 0.008656292222440243, 0.06383830308914185], [0.6382927298545837, 0.00030877284007146955, 0.0003692670143209398, 0.00024581330944783986, 0.0006497515714727342, 0.0005276494193822145, 0.00027332419995218515, 0.000819970213342458, 0.001459851278923452, 0.00013651080371346325, 4.496298060985282e-05, 0.00017771369311958551, 0.0005697915330529213, 0.005081457085907459, 0.023721717298030853, 0.009262540377676487, 0.31805816292762756], [0.9699109196662903, 4.7778554289834574e-05, 3.577940151444636e-05, 7.615400681970641e-05, 6.269367440836504e-05, 0.00016595187480561435, 4.878999607171863e-05, 0.0004922030493617058, 0.0008326738607138395, 6.561361806234345e-05, 2.183180913561955e-05, 5.4876891226740554e-05, 4.194868597551249e-05, 5.985422103549354e-05, 8.497643284499645e-05, 0.0012499121949076653, 0.026748038828372955]], [[0.8424743413925171, 0.020767195150256157, 0.017066778615117073, 0.030537346377968788, 0.006614766549319029, 0.005440154112875462, 0.0016326821641996503, 0.013458272442221642, 0.03050542250275612, 0.0014763184590265155, 0.0013993160100653768, 0.0013031117850914598, 0.0026500681415200233, 0.002508195349946618, 0.0011464474955573678, 0.0027528086211532354, 0.018266746774315834], [0.9286220669746399, 0.02002856880426407, 0.003596397815272212, 0.022788656875491142, 7.081696821842343e-05, 0.00013932306319475174, 3.967220618505962e-05, 0.004535026848316193, 0.015291046351194382, 0.0037771102506667376, 0.0004201025585643947, 1.952280945261009e-05, 3.7738984246971086e-05, 1.6232061170740053e-05, 2.1951214876025915e-05, 0.00020372123981360346, 0.00039198403828777373], [0.8238195776939392, 0.11171792447566986, 0.009885051287710667, 0.013269836083054543, 0.00012634409358724952, 5.4048166930442676e-05, 4.074934167874744e-06, 0.0011064414866268635, 0.02488909661769867, 0.009586002677679062, 0.0005006412975490093, 0.00014171192015055567, 0.00028805973124690354, 6.761758413631469e-05, 0.00013069888518657535, 0.000522487738635391, 0.0038903942331671715], [0.5379607677459717, 0.2255418598651886, 0.17621786892414093, 0.021368632093071938, 0.004112194292247295, 0.0008770033018663526, 1.3368659892876167e-05, 0.001554579590447247, 0.021221648901700974, 0.0011821899097412825, 0.001655652653425932, 0.00015697117487434298, 0.0012310550082474947, 0.0004780261078849435, 0.0008851875318214297, 0.0004430878907442093, 0.005100049078464508], [0.31428298354148865, 0.04264606535434723, 0.15583379566669464, 0.44417861104011536, 0.026532310992479324, 0.0041827731765806675, 4.7395064029842615e-05, 0.0005624418263323605, 0.003462761640548706, 7.51363841118291e-05, 5.014517228119075e-05, 0.0004029714036732912, 0.00018296969938091934, 0.0011074799112975597, 0.00011250215902691707, 0.00046336802188307047, 0.005876149982213974], [0.6452857255935669, 0.009519824758172035, 0.03558145463466644, 0.2224140167236328, 0.04735264554619789, 0.0073654139414429665, 0.0004941757651977241, 0.004128024913370609, 0.012794092297554016, 2.5512426873319782e-05, 1.954131221282296e-05, 6.062111788196489e-05, 0.0001494393654866144, 0.00040767790051177144, 6.688174471491948e-05, 0.0002183979086112231, 0.014116551727056503], [0.0703856572508812, 0.009479045867919922, 0.008982180617749691, 0.32753419876098633, 0.3548038899898529, 0.19466352462768555, 0.0014312994899228215, 0.014763517305254936, 0.011699704453349113, 2.3687292923568748e-05, 9.652789231040515e-06, 0.00014789635315537453, 8.100362174445763e-05, 0.0005806274130009115, 7.68949612393044e-05, 0.00022560838260687888, 0.005111573729664087], [0.03372747078537941, 0.008814230561256409, 0.001266675884835422, 0.035009779036045074, 0.03177085146307945, 0.2526962459087372, 0.5360028147697449, 0.0579359233379364, 0.03556671366095543, 0.00020314754510764033, 0.00010977837519021705, 4.61096569779329e-05, 0.0004139691009186208, 0.0008369717979803681, 0.00028542723157443106, 0.0007192555349320173, 0.0045946016907691956], [0.9428878426551819, 0.004099049139767885, 8.053931378526613e-05, 0.0006541602779179811, 0.00027153469272889197, 0.0020265269558876753, 0.0007708747871220112, 0.013570916838943958, 0.034691255539655685, 0.00017296920123044401, 1.1985094715782907e-05, 2.2545780211657984e-06, 9.408482583239675e-06, 9.158355169347487e-06, 3.9623714656045195e-06, 2.531175960029941e-05, 0.0007122426759451628], [0.7517618536949158, 0.006795246619731188, 2.971233152493369e-05, 6.851771468063816e-05, 9.587786735210102e-06, 8.76799676916562e-05, 0.00025413092225790024, 0.0253902617841959, 0.18396513164043427, 0.028572531417012215, 0.002274320228025317, 1.8463553715264425e-05, 4.518455534707755e-05, 6.70935696689412e-06, 1.0686344467103481e-05, 8.808149868855253e-05, 0.0006218262715265155], [0.1123083084821701, 0.0032189374323934317, 0.0001560904347570613, 0.00016692676581442356, 4.609536517818924e-06, 2.86362374026794e-05, 2.0452031094464473e-05, 0.008180824108421803, 0.13005411624908447, 0.7239992618560791, 0.02072248049080372, 0.0002314968587597832, 4.522140807239339e-05, 8.987371074908879e-06, 1.3283981388667598e-05, 2.272340680065099e-05, 0.0008177353302016854], [0.3030427098274231, 0.0024056655820459127, 0.0015615628799423575, 0.0003351920749992132, 2.1301857486832887e-05, 2.2717051251675002e-05, 9.577292075846344e-06, 0.0015301295788958669, 0.0851929783821106, 0.26926982402801514, 0.31648850440979004, 0.00241987407207489, 0.007648175582289696, 0.000723672506865114, 0.00018739915685728192, 0.00048627742216922343, 0.008654369041323662], [0.3067166805267334, 0.006327567156404257, 0.0058981324546039104, 0.008593618869781494, 0.0007845971849747002, 0.00015954340051393956, 6.4059922806336544e-06, 0.0009639994241297245, 0.022805364802479744, 0.07659099251031876, 0.14643481373786926, 0.38026589155197144, 0.02378164604306221, 0.013440320268273354, 0.000335381249897182, 0.0003095087013207376, 0.006585441529750824], [0.5674072504043579, 0.0014256652211770415, 0.004462930839508772, 0.005321774631738663, 0.0003587827377486974, 0.00034828728530555964, 1.542511563457083e-05, 0.0006432884256355464, 0.010195896029472351, 0.006155412178486586, 0.1079195886850357, 0.021320685744285583, 0.24467571079730988, 0.016517268493771553, 0.002540757181122899, 0.001054976717568934, 0.009636360220611095], [0.32655876874923706, 0.0029003547970205545, 0.0011188285425305367, 0.003442995483055711, 0.0005175312981009483, 0.0004534115141723305, 0.00023586452880408615, 0.001353472820483148, 0.013619557954370975, 0.002292442601174116, 0.0030651502311229706, 0.05615299195051193, 0.2469804733991623, 0.2729044556617737, 0.013038264587521553, 0.017613399773836136, 0.03775198757648468], [0.5315298438072205, 0.008303933776915073, 0.0026485719718039036, 0.0008984821615740657, 0.0003258080396335572, 0.0002836764615494758, 2.667535409273114e-05, 0.007615853566676378, 0.014708596281707287, 0.000818938366137445, 0.0032937233336269855, 0.0010027901735156775, 0.06035952642560005, 0.05003620311617851, 0.19541166722774506, 0.008891361765563488, 0.1138443797826767], [0.9526456594467163, 0.001157578662969172, 0.00025960744824260473, 0.00025637258659116924, 3.754347926587798e-05, 2.9654478566953912e-05, 6.0121774367871694e-06, 0.00033280765637755394, 0.0017185610486194491, 6.486845086328685e-05, 1.2421493011061102e-05, 1.1812937373179011e-05, 0.00011375109170330688, 0.00034109450643882155, 0.00035989226307719946, 0.0027593132108449936, 0.039893049746751785]], [[0.13585063815116882, 0.03866572305560112, 0.04863022640347481, 0.057078033685684204, 0.013443577103316784, 0.03305221349000931, 0.023145761340856552, 0.06955958902835846, 0.05880245193839073, 0.05664479732513428, 0.026932552456855774, 0.05179768428206444, 0.027190882712602615, 0.06470070034265518, 0.07086866348981857, 0.11984605342149734, 0.10379039496183395], [0.5049821734428406, 0.009588302113115788, 0.028704777359962463, 0.02410416305065155, 0.027530856430530548, 0.03328945115208626, 0.018587250262498856, 0.03651125356554985, 0.08305874466896057, 0.01266869343817234, 0.011085844598710537, 0.027623886242508888, 0.03671414777636528, 0.029543912038207054, 0.023825420066714287, 0.028190666809678078, 0.06399066746234894], [0.413239449262619, 0.012525207363069057, 0.00013884906366001815, 0.006962826009839773, 0.0015833210200071335, 0.0064878398552536964, 0.008617706596851349, 0.02073638327419758, 0.2738681137561798, 0.005007362458854914, 0.005136431660503149, 0.0035143813583999872, 0.004742327146232128, 0.04365547373890877, 0.01293324213474989, 0.004330870695412159, 0.17652028799057007], [0.4644061326980591, 0.02647235244512558, 0.015102909877896309, 0.01899535208940506, 0.020528098568320274, 0.021546365693211555, 0.01763543114066124, 0.057087041437625885, 0.10842602699995041, 0.042855385690927505, 0.01931384764611721, 0.013597359880805016, 0.015839267522096634, 0.05947119742631912, 0.009244520217180252, 0.021759919822216034, 0.0677187591791153], [0.4537603259086609, 0.054237838834524155, 0.025721164420247078, 0.013679997995495796, 0.003925945609807968, 0.010583984665572643, 0.012050645425915718, 0.0709696039557457, 0.0841531902551651, 0.031178399920463562, 0.0366213321685791, 0.00939774326980114, 0.013918706215918064, 0.06000952422618866, 0.03888501226902008, 0.015090123750269413, 0.06581655889749527], [0.3236851096153259, 0.02184567041695118, 0.030767865478992462, 0.009230084717273712, 0.004454542882740498, 0.0008581345900893211, 0.006186081562191248, 0.045718878507614136, 0.1715051233768463, 0.026558367535471916, 0.005739764776080847, 0.013840556144714355, 0.022642487660050392, 0.12898200750350952, 0.04955184459686279, 0.00797287654131651, 0.1304604709148407], [0.3586571514606476, 0.052442245185375214, 0.012864110060036182, 0.031898707151412964, 0.02906748093664646, 0.014049002900719643, 0.009729764424264431, 0.04979103431105614, 0.08141439408063889, 0.05634895712137222, 0.03208122029900551, 0.0504123829305172, 0.0416836217045784, 0.0623234398663044, 0.03486863896250725, 0.023609913885593414, 0.05875788629055023], [0.3849962651729584, 0.050567422062158585, 0.008055496029555798, 0.043122902512550354, 0.05336153879761696, 0.06670928746461868, 0.050491299480199814, 0.06062683090567589, 0.06767594814300537, 0.017989609390497208, 0.02545297145843506, 0.02230505831539631, 0.022549761459231377, 0.032941050827503204, 0.015017562545835972, 0.034142062067985535, 0.04399494454264641], [0.20832321047782898, 0.06806044280529022, 0.10066117346286774, 0.04903802275657654, 0.03328399732708931, 0.06784899532794952, 0.028927646577358246, 0.0522085539996624, 0.0665426179766655, 0.029269542545080185, 0.026736853644251823, 0.04613800719380379, 0.03177730739116669, 0.04003340005874634, 0.05294112116098404, 0.03267202526330948, 0.06553708016872406], [0.3789955973625183, 0.037152182310819626, 0.010874755680561066, 0.03396500647068024, 0.10259268432855606, 0.026040831580758095, 0.03895583748817444, 0.03963545337319374, 0.04879161715507507, 0.019487779587507248, 0.022791527211666107, 0.05048074573278427, 0.030267665162682533, 0.04473079741001129, 0.026651374995708466, 0.025211097672581673, 0.06337516009807587], [0.45390698313713074, 0.01578161120414734, 0.002659309422597289, 0.015172489918768406, 0.008991020731627941, 0.008198995143175125, 0.006894359830766916, 0.04144832864403725, 0.13062527775764465, 0.012979862280189991, 0.002545648254454136, 0.03083221986889839, 0.009862876497209072, 0.02961386740207672, 0.004422659054398537, 0.012797143310308456, 0.2132674902677536], [0.3126511573791504, 0.013460461981594563, 0.014526115730404854, 0.020325785502791405, 0.005681121721863747, 0.022071555256843567, 0.010904147289693356, 0.05966683477163315, 0.05669712275266647, 0.04932266101241112, 0.02883564680814743, 0.026826994493603706, 0.030788468196988106, 0.03354378789663315, 0.03812219202518463, 0.11195720732212067, 0.16461871564388275], [0.34673619270324707, 0.03479833900928497, 0.015622708946466446, 0.01585078053176403, 0.014937733300030231, 0.02222646400332451, 0.011489885859191418, 0.07666979730129242, 0.09202596545219421, 0.03509227931499481, 0.016312679275870323, 0.03991025313735008, 0.017345959320664406, 0.02898719720542431, 0.02318376488983631, 0.01810690388083458, 0.19070300459861755], [0.265542209148407, 0.01587287336587906, 0.04491280019283295, 0.02040855772793293, 0.005464802961796522, 0.02757847122848034, 0.00884027499705553, 0.04960956797003746, 0.11078210920095444, 0.04792089760303497, 0.01392710953950882, 0.0453949049115181, 0.04636179283261299, 0.004614024423062801, 0.014951920136809349, 0.03140776604413986, 0.24640989303588867], [0.20571383833885193, 0.007481779437512159, 0.025770504027605057, 0.005372941493988037, 0.002211174229159951, 0.005438560154289007, 0.0038994650822132826, 0.021414373070001602, 0.15559138357639313, 0.025036422535777092, 0.008694164454936981, 0.04175138100981712, 0.030951853841543198, 0.008862405084073544, 0.002793996362015605, 0.014308354817330837, 0.4347074031829834], [0.4156606197357178, 0.02930484153330326, 0.026763107627630234, 0.013759997673332691, 0.005073423497378826, 0.013990295119583607, 0.004897473379969597, 0.07260565459728241, 0.04072757810354233, 0.08586188405752182, 0.029238102957606316, 0.03297354653477669, 0.014953672885894775, 0.03236499801278114, 0.01676643267273903, 0.028713183477520943, 0.13634516298770905], [0.1410287767648697, 0.02858312800526619, 0.04393218085169792, 0.014255604706704617, 0.010514345951378345, 0.03033391572535038, 0.009186592884361744, 0.045470479875802994, 0.03081608936190605, 0.0738605409860611, 0.07141443341970444, 0.09754382073879242, 0.07313172519207001, 0.05476999282836914, 0.09293323010206223, 0.05512390658259392, 0.12710124254226685]], [[0.6305399537086487, 0.013836522586643696, 0.0045390864834189415, 0.032936010509729385, 0.007649693172425032, 0.0670883059501648, 0.03395257517695427, 0.1258867084980011, 0.02737734094262123, 0.0010132133029401302, 0.0018573992419987917, 0.0021541041787713766, 0.0021136924624443054, 0.007822198793292046, 0.0014996201498433948, 0.008735890500247478, 0.030997510999441147], [3.2544471650908235e-07, 8.826628800306935e-06, 0.9999598264694214, 9.92667719401652e-06, 2.072483221127186e-05, 8.55941928445958e-10, 2.8486098896385315e-11, 3.9725792100320234e-11, 9.391175836981347e-08, 4.833690336880636e-09, 8.114652416679746e-08, 3.9294722142813043e-08, 7.899159548685475e-09, 3.377479629307345e-09, 5.181800301345962e-12, 4.137807457782472e-11, 1.1337122352017559e-08], [2.529266112105688e-06, 1.9670103768021363e-08, 8.621441338618752e-08, 0.999936580657959, 6.0605616454267874e-05, 5.344023890074823e-08, 4.222052937298548e-13, 4.923435791004405e-12, 2.970525908585486e-11, 1.2886797376009552e-14, 7.766647741602739e-11, 2.4854626801129598e-08, 1.0230869484928462e-08, 5.4494329049248336e-09, 5.6081311469724504e-12, 1.7548589534635561e-12, 8.678625107449989e-08], [6.528964036078833e-08, 8.423086880759989e-12, 1.1022739698773876e-07, 1.9075298496318283e-06, 0.9999896287918091, 8.229199920606334e-06, 7.930240286668777e-08, 2.148528577272657e-11, 5.028918947935779e-11, 8.539821432791466e-19, 2.2222681865264465e-14, 1.9242945778485954e-11, 2.643016472347881e-08, 4.6661735808584126e-08, 3.351308217481447e-13, 4.0474795823947085e-13, 4.61706922694205e-10], [1.5617771964571148e-08, 6.323242575162133e-14, 3.3915491942648757e-13, 8.867329626127685e-08, 2.841474997694604e-05, 0.9999475479125977, 2.3323991626966745e-05, 3.7015877296653343e-07, 2.314658339129527e-13, 2.1867818424894936e-20, 2.5121741775112543e-20, 2.0662504774662457e-15, 6.958709303228616e-11, 1.9743777102121385e-07, 7.65698615623478e-12, 5.523978559188007e-14, 3.5566189750257937e-13], [1.6909840194756498e-09, 2.017942917934912e-15, 2.488679191382532e-14, 1.3938886835398751e-14, 2.899916751175624e-09, 6.724070544805727e-08, 0.9999951124191284, 4.743439149024198e-06, 3.368182532881292e-08, 2.253982350882471e-20, 3.780881693350748e-18, 8.838211587627427e-21, 7.180966391111851e-16, 1.1499171061158612e-14, 8.49888031045215e-13, 1.0084179314067548e-13, 1.2828998930888846e-12], [8.437435212726996e-07, 8.693154160931138e-13, 1.5337625931350092e-17, 1.3982279486253642e-14, 4.0529874310748885e-15, 2.1671358751973457e-07, 2.492410544618906e-07, 0.9999982118606567, 4.201515366730746e-07, 6.335293990529078e-15, 1.1928601007625873e-18, 6.8868317765386e-19, 5.350111557764377e-17, 9.068647796681845e-14, 3.39397319927201e-13, 8.036672022315727e-11, 1.1925148368785443e-10], [5.5076153415711815e-08, 2.177206326337e-08, 9.0482942319281e-12, 3.8809450444987625e-14, 1.2180908408668256e-13, 4.118511087725096e-12, 8.705407950060362e-09, 3.216765253455378e-05, 0.9999666213989258, 1.0836401997948997e-06, 8.793723083044824e-09, 2.01036849521068e-14, 8.753855116911541e-14, 4.725474839987337e-15, 2.1649178283400516e-10, 3.1397637267893685e-10, 1.7409753638730763e-07], [0.5838304758071899, 8.245188837463502e-06, 5.752878173836962e-09, 4.666404151976167e-07, 1.2834948381890143e-11, 1.9467684353458026e-07, 6.317766865215901e-10, 0.3820224106311798, 0.03408528119325638, 3.852992449537851e-05, 5.320953277987428e-07, 3.422514538442556e-08, 1.5867980540651416e-11, 2.715362101834984e-10, 7.599941726291193e-13, 4.6943437581603575e-08, 1.3796115126751829e-05], [5.7256761831769865e-11, 1.8177569172106445e-10, 2.320407865852303e-08, 1.9377555116051326e-13, 7.127991637689499e-14, 1.1056474761007952e-19, 3.0347051741929764e-16, 1.8008803490473938e-15, 2.052946079800222e-08, 1.1948851863508025e-07, 0.9999997615814209, 6.417320719265263e-08, 3.2937383931397335e-09, 1.0746659579279603e-15, 2.168013227507614e-15, 1.2004500329578687e-16, 7.927677264651933e-11], [5.323220086950187e-09, 6.389700990538927e-10, 1.1875632921487522e-08, 6.567087496023305e-08, 7.4326997464777e-13, 1.0223632107998065e-13, 1.396551258652239e-18, 4.96227841803587e-13, 5.323364579007395e-12, 1.3880400729249232e-05, 1.3954622772871517e-05, 0.9999696016311646, 1.5996496358638979e-06, 8.27448502604966e-07, 8.824906781626073e-15, 9.99509177680713e-14, 3.980321714586177e-12], [1.0771421976585316e-08, 2.2003044189162352e-13, 4.632805944426721e-11, 3.28119337256183e-11, 1.0404080263981541e-08, 1.0850452751998835e-13, 2.6929064159104217e-15, 1.3330198795106444e-14, 3.765587668069781e-12, 1.8014880951870487e-15, 1.2126700532633095e-08, 4.563944457913749e-07, 0.9999938011169434, 5.748093826696277e-06, 1.5238370565384685e-08, 5.5693774922817643e-14, 3.1981927522961584e-11], [2.493611077625246e-07, 5.299155211857531e-13, 1.1903275587421547e-10, 1.0880147893743697e-09, 2.4969566345123262e-11, 1.0324902710578954e-08, 9.77908119065285e-12, 2.6851383339021595e-09, 1.4394319341071854e-13, 8.082797499614058e-15, 8.797089711418474e-14, 8.566816518396081e-07, 2.876574217225425e-05, 0.9999667406082153, 3.191944188074558e-06, 7.299175308617123e-08, 1.6584279088904808e-11], [1.8986388568009716e-06, 4.610718404296499e-11, 8.233835835369518e-11, 6.760743007094838e-12, 2.851810787518616e-09, 3.964778783061007e-10, 5.249689394304369e-08, 7.894102260763702e-09, 4.00809740952468e-09, 7.450815735634902e-16, 1.330946854463666e-12, 1.93652090890728e-11, 4.107371933059767e-05, 2.728472463786602e-05, 0.9999278783798218, 8.492663710057968e-07, 1.0446374290040694e-06], [4.469578414045827e-07, 1.1075131263471594e-11, 1.7032422694462923e-10, 3.0387373173290655e-11, 2.393469808199128e-13, 4.0017472842379664e-12, 3.5182193963700925e-11, 6.130878205112822e-07, 5.783045708973589e-10, 4.425728175865701e-13, 3.0584430607815414e-15, 1.8709970638769446e-12, 2.0804634057181026e-12, 1.3181132771933335e-06, 9.937001595972106e-05, 0.9998906850814819, 7.522501164203277e-06], [1.853988942457363e-05, 4.939836912853934e-07, 2.486839179027811e-08, 1.2427006090831583e-08, 2.9399421563880423e-08, 2.0895420116406882e-10, 9.624123720186617e-11, 2.476693907738081e-07, 2.7553328436624724e-06, 1.415863315479271e-09, 1.935891624782471e-08, 2.0340838735588562e-10, 1.3260680331583785e-09, 2.5515767276829138e-09, 1.687538497208152e-05, 0.0003194334567524493, 0.9996415376663208], [0.9719346761703491, 5.504319777749345e-10, 1.4860255248549947e-08, 3.1344953299594636e-07, 2.6074937764519746e-08, 5.130862632540811e-07, 7.049874017894808e-10, 0.0012406272580847144, 1.2392702046781778e-06, 5.849731289642168e-12, 4.020725592746022e-12, 2.213971894704514e-09, 3.5863485792209104e-11, 9.381442822586905e-08, 4.217634574921192e-11, 7.109285797923803e-05, 0.02675137110054493]], [[0.5532012581825256, 0.056342318654060364, 0.03966352343559265, 0.03867947682738304, 0.03004496358335018, 0.01268330030143261, 0.010136581026017666, 0.07777208089828491, 0.03803224116563797, 0.03220519796013832, 0.017286520451307297, 0.020977260544896126, 0.018596161156892776, 0.005839972291141748, 0.007870838046073914, 0.004911614581942558, 0.035756729543209076], [0.5323253870010376, 0.1547735184431076, 0.06920365989208221, 0.07850660383701324, 0.027272718027234077, 0.02668316662311554, 0.011791568249464035, 0.06699660420417786, 0.0019511543214321136, 0.004935264587402344, 0.0031958685722202063, 0.010602833703160286, 0.003001566743478179, 0.0025491933338344097, 0.00433856388553977, 0.0014863472897559404, 0.00038601586129516363], [0.8686466217041016, 0.019428841769695282, 0.038878124207258224, 0.015753012150526047, 0.004335517063736916, 0.005629232153296471, 0.0017180751310661435, 0.029525702819228172, 0.0025612516328692436, 0.0016666437732055783, 0.0005319021875038743, 0.003815141972154379, 0.0020704681519418955, 0.000967944273725152, 0.003187979105859995, 0.0005086196470074356, 0.0007750251097604632], [0.5975949168205261, 0.19521313905715942, 0.053961459547281265, 0.045708246529102325, 0.011879975907504559, 0.00916756596416235, 0.006334370467811823, 0.04775369539856911, 0.007359594572335482, 0.011753327213227749, 0.002259613713249564, 0.005855126306414604, 0.001898201066069305, 0.0008690456161275506, 0.00139363924972713, 0.00034822712768800557, 0.0006498877773992717], [0.5984036326408386, 0.16447636485099792, 0.07010787725448608, 0.0465536043047905, 0.01334342174232006, 0.028260599821805954, 0.0049822828732430935, 0.035501059144735336, 0.006532648112624884, 0.011454530991613865, 0.0021471695508807898, 0.009114529006183147, 0.002691093599423766, 0.0015645851381123066, 0.003315793350338936, 0.00044704400352202356, 0.0011036875657737255], [0.45495522022247314, 0.16411268711090088, 0.19026070833206177, 0.06585612148046494, 0.012993479147553444, 0.029177438467741013, 0.004995911847800016, 0.0324215330183506, 0.006586913485080004, 0.01298792939633131, 0.004090048372745514, 0.006424514576792717, 0.004632594529539347, 0.0026550579350441694, 0.006023467984050512, 0.0009622133802622557, 0.0008641633321531117], [0.28162336349487305, 0.3457529544830322, 0.05234357714653015, 0.16156591475009918, 0.017905384302139282, 0.01776779815554619, 0.0077798920683562756, 0.05413322150707245, 0.016239142045378685, 0.01777135580778122, 0.009227383881807327, 0.009185978211462498, 0.003163370070978999, 0.0014642621390521526, 0.0018090787343680859, 0.0009410274215042591, 0.0013262118445709348], [0.07252369821071625, 0.33544278144836426, 0.0365300178527832, 0.37979522347450256, 0.042211804538965225, 0.016170253977179527, 0.013714698143303394, 0.02604314312338829, 0.023853445425629616, 0.020088205114006996, 0.014628589153289795, 0.006271610502153635, 0.0045039597898721695, 0.0015506271738559008, 0.0010628878371790051, 0.0034001225139945745, 0.002208855701610446], [0.6320256590843201, 0.08633964508771896, 0.008443334139883518, 0.07852686196565628, 0.01582266390323639, 0.00956010352820158, 0.004057909362018108, 0.07843121141195297, 0.06210179254412651, 0.006691532675176859, 0.001426843460649252, 0.00310129695571959, 0.0020541688427329063, 0.0004347480717115104, 0.0006546744261868298, 0.0006432244554162025, 0.00968436524271965], [0.23085694015026093, 0.07901652902364731, 0.0645921379327774, 0.0934542715549469, 0.04598722606897354, 0.1489679217338562, 0.04005139693617821, 0.12916989624500275, 0.02290383353829384, 0.022896751761436462, 0.011736011132597923, 0.030091075226664543, 0.03087509050965309, 0.00888113770633936, 0.024554667994379997, 0.008588316850364208, 0.007376732304692268], [0.1282517910003662, 0.11970190703868866, 0.27546557784080505, 0.09645581245422363, 0.04303727671504021, 0.0486985482275486, 0.022267837077379227, 0.05544966831803322, 0.07754463702440262, 0.05268087610602379, 0.023234298452734947, 0.011116155423223972, 0.008284005336463451, 0.0012907807249575853, 0.0025822781026363373, 0.0030365316197276115, 0.030902013182640076], [0.33594632148742676, 0.05082051455974579, 0.034456152468919754, 0.041202712804079056, 0.02625332958996296, 0.050550829619169235, 0.03423580154776573, 0.11713456362485886, 0.04542499780654907, 0.0589926615357399, 0.03870860114693642, 0.05600952357053757, 0.024603791534900665, 0.011302357539534569, 0.03366320580244064, 0.011313531547784805, 0.02938108891248703], [0.20553381741046906, 0.04091273993253708, 0.05387537181377411, 0.025915907695889473, 0.01745276339352131, 0.1117686778306961, 0.026041816920042038, 0.07533708959817886, 0.06065702438354492, 0.1711287945508957, 0.05339708924293518, 0.02752782590687275, 0.04059211164712906, 0.007898414507508278, 0.042110152542591095, 0.011627224273979664, 0.028223125264048576], [0.29132547974586487, 0.0369611531496048, 0.05475737527012825, 0.03387456014752388, 0.011047767475247383, 0.07499942183494568, 0.01242034137248993, 0.10257245600223541, 0.07453318685293198, 0.09770908206701279, 0.06522975862026215, 0.03083605132997036, 0.022121315822005272, 0.010094229131937027, 0.03254052624106407, 0.023675458505749702, 0.025301793590188026], [0.2768704295158386, 0.02269923686981201, 0.03997763991355896, 0.03999859094619751, 0.006118018180131912, 0.03502439334988594, 0.006715311668813229, 0.04550514370203018, 0.08470675349235535, 0.13390134274959564, 0.10613492131233215, 0.03660736605525017, 0.04226221516728401, 0.01067965105175972, 0.045506808906793594, 0.035594116896390915, 0.03169797360897064], [0.09087251871824265, 0.07790589332580566, 0.008259941823780537, 0.050263792276382446, 0.0015010599745437503, 0.0023647723719477654, 0.0071073430590331554, 0.0640711635351181, 0.09053955972194672, 0.2986242473125458, 0.10834836214780807, 0.060008931905031204, 0.013476907275617123, 0.005045268218964338, 0.005938520189374685, 0.08591532707214355, 0.02975630760192871], [0.4310072064399719, 0.017707297578454018, 0.0019878328312188387, 0.007371167652308941, 0.0017849261639639735, 0.0016633382765576243, 0.0014728197129443288, 0.08371250331401825, 0.11660407483577728, 0.04978698492050171, 0.010989846661686897, 0.02566334418952465, 0.018260207027196884, 0.0032570993062108755, 0.005942781921476126, 0.008940869010984898, 0.21384775638580322]], [[0.4138449430465698, 0.015741320326924324, 0.03365154564380646, 0.022843606770038605, 0.015682043507695198, 0.010899519547820091, 0.0066413069143891335, 0.19493958353996277, 0.09664005041122437, 0.006038829684257507, 0.014062641188502312, 0.005369545891880989, 0.007208073511719704, 0.014250769279897213, 0.013415188528597355, 0.016677482053637505, 0.11209353059530258], [0.38431495428085327, 0.053014714270830154, 0.0372779555618763, 0.012496811337769032, 0.005788793321698904, 0.0037077544257044792, 0.0134745417162776, 0.07773943990468979, 0.1278482973575592, 0.009027216583490372, 0.0709308311343193, 0.01932387799024582, 0.0035592385102063417, 0.012192214839160442, 0.02046065591275692, 0.006793126463890076, 0.14204955101013184], [0.34350141882896423, 0.13274376094341278, 0.002483364660292864, 0.014857056550681591, 0.000526853313203901, 0.0014163340674713254, 0.002856469713151455, 0.020499447360634804, 0.2057843953371048, 0.005792947486042976, 0.03025529906153679, 0.012564677745103836, 0.0027609115932136774, 0.009033207781612873, 0.03158942982554436, 0.0019602493848651648, 0.18137414753437042], [0.42395320534706116, 0.02319582924246788, 0.01924785226583481, 0.0210964847356081, 0.005129100289195776, 0.00829885434359312, 0.008690069429576397, 0.12591443955898285, 0.1475519984960556, 0.003959733992815018, 0.02188599668443203, 0.0051724594086408615, 0.0031703878194093704, 0.01515312772244215, 0.010491645894944668, 0.0176838431507349, 0.1394050270318985], [0.38901641964912415, 0.02602742798626423, 0.008820665068924427, 0.006004012189805508, 0.0006900631124153733, 0.004542734939604998, 0.008454530499875546, 0.14808832108974457, 0.12141386419534683, 0.01639496348798275, 0.0512174554169178, 0.013398749753832817, 0.0035529788583517075, 0.00910888146609068, 0.0059879012405872345, 0.016754763200879097, 0.17052622139453888], [0.2766445279121399, 0.020056121051311493, 0.006883652415126562, 0.015231121331453323, 0.006841578520834446, 0.005508384667336941, 0.007430134806782007, 0.13110877573490143, 0.17385096848011017, 0.0381644070148468, 0.012454668059945107, 0.023148326203227043, 0.0053474814631044865, 0.006028864532709122, 0.006741642020642757, 0.02624371461570263, 0.238315612077713], [0.4422587454319, 0.01684163697063923, 0.023267410695552826, 0.016402849927544594, 0.009863986633718014, 0.02482590824365616, 0.004770989995449781, 0.09477363526821136, 0.13843879103660583, 0.01664751023054123, 0.011707759462296963, 0.005985583644360304, 0.008532466366887093, 0.013245580717921257, 0.0024772812612354755, 0.0345623753964901, 0.1353975534439087], [0.30784881114959717, 0.026232510805130005, 0.02758960612118244, 0.023647038266062737, 0.023645328357815742, 0.03204881772398949, 0.010660781525075436, 0.1672738492488861, 0.11527412384748459, 0.03180953115224838, 0.02256588079035282, 0.018395451828837395, 0.010827098973095417, 0.019151100888848305, 0.010898242704570293, 0.03597255423665047, 0.11615926027297974], [0.26737070083618164, 0.034848008304834366, 0.049771130084991455, 0.020302241668105125, 0.02331160381436348, 0.02999437041580677, 0.017250830307602882, 0.13247382640838623, 0.10412835329771042, 0.02380506694316864, 0.03607712313532829, 0.028966717422008514, 0.012602908536791801, 0.0405997633934021, 0.03566276282072067, 0.023394886404275894, 0.11943970620632172], [0.5043638348579407, 0.016932670027017593, 0.008245646022260189, 0.006345541216433048, 0.0009906567865982652, 0.03009425848722458, 0.0033600369933992624, 0.12765026092529297, 0.10511456429958344, 0.00573089299723506, 0.007566092070192099, 0.005431079771369696, 0.0039748540148139, 0.009804329834878445, 0.002913386793807149, 0.025998499244451523, 0.13548336923122406], [0.35094520449638367, 0.07002949714660645, 0.12524306774139404, 0.012268456630408764, 0.001154200523160398, 0.0026767258532345295, 0.00676990021020174, 0.04833091422915459, 0.13776424527168274, 0.006380574777722359, 0.020968908444046974, 0.01368224062025547, 0.0021789059974253178, 0.008229621686041355, 0.019149748608469963, 0.00503916060552001, 0.1691886931657791], [0.4991609752178192, 0.021227175369858742, 0.00974359828978777, 0.010730346664786339, 0.0035101138055324554, 0.009130558930337429, 0.0062627410516142845, 0.10980536043643951, 0.08349296450614929, 0.010036390274763107, 0.013500472530722618, 0.013146622106432915, 0.00506865419447422, 0.015606503002345562, 0.01366911455988884, 0.03025282733142376, 0.14565566182136536], [0.39485251903533936, 0.023475006222724915, 0.01934136636555195, 0.008097521960735321, 0.007284289691597223, 0.017216060310602188, 0.00793531071394682, 0.10830052942037582, 0.10288619995117188, 0.025159185752272606, 0.027027929201722145, 0.027973327785730362, 0.0016620683018118143, 0.009480061940848827, 0.0039490219205617905, 0.03490174189209938, 0.18045787513256073], [0.427371084690094, 0.03612156957387924, 0.04242260754108429, 0.010294396430253983, 0.0015864993911236525, 0.003012707456946373, 0.0020101952832192183, 0.133174329996109, 0.1150854080915451, 0.004156491719186306, 0.004465759266167879, 0.012106796726584435, 0.004197671543806791, 0.0010049620177596807, 0.004214158747345209, 0.009791282936930656, 0.18898402154445648], [0.47293442487716675, 0.03314460813999176, 0.11235389858484268, 0.006988054141402245, 0.0012328291777521372, 0.00203191046603024, 0.001444853376597166, 0.057328660041093826, 0.0915064886212349, 0.0036947508342564106, 0.028842154890298843, 0.010896248742938042, 0.0035786530934274197, 0.005213903728872538, 0.003508517052978277, 0.006610180716961622, 0.15868982672691345], [0.5206713676452637, 0.010389503091573715, 0.00975318904966116, 0.007274043280631304, 0.0034937274176627398, 0.008816676214337349, 0.0031152693554759026, 0.13774576783180237, 0.08495666086673737, 0.008318630047142506, 0.0063333227299153805, 0.005276515148580074, 0.004300032742321491, 0.01400899887084961, 0.005900728050619364, 0.03782959282398224, 0.13181596994400024], [0.21432632207870483, 0.02852623723447323, 0.04401789605617523, 0.012210087850689888, 0.021547358483076096, 0.033439669758081436, 0.0158374086022377, 0.11682895570993423, 0.0819961205124855, 0.04150250554084778, 0.03269922733306885, 0.04594351723790169, 0.01914278231561184, 0.06390050798654556, 0.05484634265303612, 0.03425178676843643, 0.138983353972435]], [[0.286782443523407, 0.11950644850730896, 0.07631204277276993, 0.04265960678458214, 0.03633423149585724, 0.10302546620368958, 0.024834631010890007, 0.05489618703722954, 0.23462238907814026, 0.0021968164946883917, 0.002057985169813037, 0.0007947196718305349, 0.002507756231352687, 0.00151840690523386, 0.0021910627838224173, 0.0011357461335137486, 0.008624030277132988], [0.03478582948446274, 0.03113018162548542, 0.017365338280797005, 0.15052133798599243, 0.08781075477600098, 0.14323875308036804, 0.130378857254982, 0.10430116951465607, 0.2626897394657135, 0.007864793762564659, 0.006434972397983074, 0.0027722869999706745, 0.003984807059168816, 0.002128488151356578, 0.0019014875870198011, 0.0064744604751467705, 0.006216733250766993], [0.3390771150588989, 0.08934470266103745, 0.024043571203947067, 0.016423728317022324, 0.04631766676902771, 0.1507132202386856, 0.04646822065114975, 0.08614522218704224, 0.15007032454013824, 0.012368574738502502, 0.0034732106141746044, 0.00234759203158319, 0.006303110159933567, 0.0037920058239251375, 0.004264255985617638, 0.0030035923700779676, 0.015843791887164116], [0.052080072462558746, 0.05866844579577446, 0.010263591073453426, 0.028599200770258904, 0.01862446218729019, 0.06299461424350739, 0.12307022511959076, 0.16749276220798492, 0.4332520067691803, 0.019116826355457306, 0.008781783282756805, 0.0007888870895840228, 0.002466844627633691, 0.002778966212645173, 0.0029416296165436506, 0.004267221782356501, 0.0038125175051391125], [0.22408659756183624, 0.08363652229309082, 0.014496050775051117, 0.010944507084786892, 0.013982304371893406, 0.08459407091140747, 0.05463037267327309, 0.15326762199401855, 0.29476168751716614, 0.03884619101881981, 0.007844607345759869, 0.001682354835793376, 0.0062625776045024395, 0.0018393936334177852, 0.003886400256305933, 0.0013151189778000116, 0.0039236280135810375], [0.19019478559494019, 0.15248160064220428, 0.056798193603754044, 0.02988666109740734, 0.05498085170984268, 0.11691134423017502, 0.04486076161265373, 0.10599389672279358, 0.12796634435653687, 0.0610201470553875, 0.017916876822710037, 0.008008237928152084, 0.01611694134771824, 0.004397506359964609, 0.007689605467021465, 0.002148750936612487, 0.0026276055723428726], [0.25588855147361755, 0.08099603652954102, 0.021259302273392677, 0.03044278733432293, 0.024179581552743912, 0.03296676650643349, 0.021636776626110077, 0.10443328320980072, 0.33520951867103577, 0.033265646547079086, 0.021807251498103142, 0.005573037546128035, 0.016317183151841164, 0.002520807785913348, 0.004758956376463175, 0.003464784473180771, 0.005279782693833113], [0.37115785479545593, 0.047299884259700775, 0.03770899400115013, 0.06030043587088585, 0.01998249441385269, 0.024084556847810745, 0.014646393246948719, 0.07542679458856583, 0.2001403570175171, 0.020905308425426483, 0.024684112519025803, 0.015228666365146637, 0.02734709344804287, 0.008885354734957218, 0.008785221725702286, 0.01299190055578947, 0.0304245725274086], [0.7695024609565735, 0.07120281457901001, 0.015925290063023567, 0.022137219086289406, 0.014115013182163239, 0.023239165544509888, 0.004949232563376427, 0.026149947196245193, 0.047435663640499115, 0.0007462466601282358, 0.0007108491845428944, 0.0004665984015446156, 0.0011221858439967036, 0.0004872485587839037, 0.0009618697222322226, 0.00016233728092629462, 0.0006858899141661823], [0.040177635848522186, 0.011777853593230247, 0.00882011465728283, 0.00946364738047123, 0.0060194083489477634, 0.010014758445322514, 0.004903868306428194, 0.018616097047924995, 0.007628618273884058, 0.10744603723287582, 0.039328381419181824, 0.1349569708108902, 0.16136221587657928, 0.17022734880447388, 0.13179045915603638, 0.07792867720127106, 0.0595378540456295], [0.01629234105348587, 0.003257130505517125, 0.0015530172968283296, 0.0035128684248775244, 0.0011220216983929276, 0.0021341063547879457, 0.00177157879807055, 0.007710831239819527, 0.01232178881764412, 0.06596345454454422, 0.03152703121304512, 0.040847454220056534, 0.15142947435379028, 0.07753805816173553, 0.0822928249835968, 0.3578556478023529, 0.14287038147449493], [0.013855875469744205, 0.0011795697500929236, 0.00026888184947893023, 0.0020687340293079615, 0.0010019063483923674, 0.00087642582366243, 0.0027233404107391834, 0.011062778532505035, 0.01919359713792801, 0.024951240047812462, 0.015221133828163147, 0.020050378516316414, 0.090317003428936, 0.02660798653960228, 0.06543386727571487, 0.3014267683029175, 0.4037605822086334], [0.054893068969249725, 0.0035071270540356636, 0.0021123187616467476, 0.0021527493372559547, 0.004635155200958252, 0.0074526164680719376, 0.006016239989548922, 0.021458428353071213, 0.02080330066382885, 0.09324057400226593, 0.01634977012872696, 0.028369002044200897, 0.08609074354171753, 0.027643563225865364, 0.1378137469291687, 0.15092359483242035, 0.3365379869937897], [0.1645633727312088, 0.008548017591238022, 0.006314827129244804, 0.0009620448108762503, 0.007869841530919075, 0.016559472307562828, 0.005200117826461792, 0.028820451349020004, 0.014559376053512096, 0.04273388907313347, 0.013541302643716335, 0.02769191935658455, 0.08493060618638992, 0.04111301898956299, 0.19647634029388428, 0.03953726217150688, 0.30057811737060547], [0.0799129530787468, 0.003807197557762265, 0.0013913738075643778, 0.000612870731856674, 0.0028853504918515682, 0.004616248421370983, 0.0018951261881738901, 0.01443276647478342, 0.01165806595236063, 0.03810675069689751, 0.010126357898116112, 0.053033169358968735, 0.1087128072977066, 0.02350315824151039, 0.06834524869918823, 0.036916334182024, 0.5400442481040955], [0.39095842838287354, 0.009962277486920357, 0.005361276213079691, 0.0020259995944797993, 0.004664258565753698, 0.007697983644902706, 0.005258324556052685, 0.060813479125499725, 0.019274108111858368, 0.044102929532527924, 0.013267609290778637, 0.036611706018447876, 0.06056676059961319, 0.047042496502399445, 0.06756952404975891, 0.010702383704483509, 0.2141205221414566], [0.7488322257995605, 0.019327891990542412, 0.007191813085228205, 0.004411950241774321, 0.0054576643742620945, 0.010101336985826492, 0.0029121648985892534, 0.03804980590939522, 0.015733148902654648, 0.012820535339415073, 0.009147114120423794, 0.010628257878124714, 0.024415597319602966, 0.01105279941111803, 0.01260040607303381, 0.007642004173249006, 0.05967523902654648]], [[0.4112699329853058, 0.006541939917951822, 0.02332466095685959, 0.02276770770549774, 0.02225331962108612, 0.03796745464205742, 0.004989867564290762, 0.009168654680252075, 0.00970390159636736, 0.03240775316953659, 0.04215411841869354, 0.0317578949034214, 0.09039811044931412, 0.02919706143438816, 0.07500243186950684, 0.06916675716638565, 0.08192838728427887], [0.22945763170719147, 0.020674921572208405, 0.0797308161854744, 0.10179751366376877, 0.11564330756664276, 0.29135334491729736, 0.016323914751410484, 0.028985261917114258, 0.05532391369342804, 0.007606500294059515, 0.004138293210417032, 0.0018948618089780211, 0.01900690607726574, 0.002498459303751588, 0.005057576112449169, 0.0066720847971737385, 0.013834607787430286], [0.7307668328285217, 0.027968106791377068, 0.0050850496627390385, 0.01716719940304756, 0.015816666185855865, 0.011446071788668633, 0.004138565622270107, 0.02189067378640175, 0.08811809122562408, 0.0034374678507447243, 0.001880038995295763, 0.003780041355639696, 0.005703059025108814, 0.006435824558138847, 0.0048405989073216915, 0.005694309249520302, 0.04583141952753067], [0.09374886006116867, 0.011991279199719429, 0.07913437485694885, 0.01592109352350235, 0.1669420301914215, 0.3696483075618744, 0.05733688920736313, 0.012812071479856968, 0.024349208921194077, 0.027165934443473816, 0.0037199168000370264, 0.0040178969502449036, 0.08545336872339249, 0.006317549850791693, 0.03306496515870094, 0.002056002151221037, 0.006320246960967779], [0.06328000128269196, 0.02153896540403366, 0.0394800640642643, 0.09025799483060837, 0.052132051438093185, 0.3809486925601959, 0.15937446057796478, 0.017447615042328835, 0.0526924803853035, 0.009289161302149296, 0.0017756182933226228, 0.00933381263166666, 0.03767690435051918, 0.006524651311337948, 0.037689078599214554, 0.011168084107339382, 0.009390389546751976], [0.07619411498308182, 0.04668833687901497, 0.06802711635828018, 0.13332922756671906, 0.13175615668296814, 0.07951398938894272, 0.10803163051605225, 0.01928500086069107, 0.1472310870885849, 0.023561041802167892, 0.002295850310474634, 0.006923544220626354, 0.049914032220840454, 0.010081931948661804, 0.062146540731191635, 0.012490381486713886, 0.02252999134361744], [0.016898347064852715, 0.015739023685455322, 0.017490092664957047, 0.1362493485212326, 0.25357428193092346, 0.41659215092658997, 0.012602162547409534, 0.007041164208203554, 0.025470763444900513, 0.006369700189679861, 0.002861456712707877, 0.012836974114179611, 0.03677951917052269, 0.020078064873814583, 0.012934664264321327, 0.0032085878774523735, 0.0032736302819103003], [0.5225013494491577, 0.07134781777858734, 0.005588449537754059, 0.059401046484708786, 0.040952008217573166, 0.015175732783973217, 0.0037966424133628607, 0.09752402454614639, 0.07115839421749115, 0.0077368044294416904, 0.03836851567029953, 0.010419495403766632, 0.009051177650690079, 0.011220301501452923, 0.001824891776777804, 0.009759859181940556, 0.024173462763428688], [0.7201520800590515, 0.043823327869176865, 0.003056393237784505, 0.013115474954247475, 0.0053733098320662975, 0.008851438760757446, 0.0026200308930128813, 0.09460372477769852, 0.03894883021712303, 0.004689762368798256, 0.014173009432852268, 0.00405072420835495, 0.0035712451208382845, 0.004917531739920378, 0.001998207764700055, 0.0056523410603404045, 0.030402589589357376], [0.03382587060332298, 0.005434365943074226, 0.007368527818471193, 0.023056980222463608, 0.07135003805160522, 0.055074676871299744, 0.028218988329172134, 0.024087920784950256, 0.024329189211130142, 0.020504456013441086, 0.051856253296136856, 0.02893981710076332, 0.3946288824081421, 0.09154099971055984, 0.06204678490757942, 0.038077302277088165, 0.039658959954977036], [0.038030121475458145, 0.0018306365236639977, 0.013132622465491295, 0.00721894484013319, 0.030249886214733124, 0.030445067211985588, 0.012572926469147205, 0.00420461967587471, 0.011860285885632038, 0.0769314393401146, 0.019943565130233765, 0.02215023897588253, 0.5025283694267273, 0.046040091663599014, 0.13195335865020752, 0.024824930354952812, 0.026082901284098625], [0.005298695061355829, 0.0002978661796078086, 0.0008504229481332004, 0.001166683272458613, 0.005232213530689478, 0.006284206174314022, 0.010548950172960758, 0.0008126021130010486, 0.0016021537594497204, 0.004913864657282829, 0.00233283918350935, 0.0013138775248080492, 0.7574101090431213, 0.07086969912052155, 0.11138981580734253, 0.0130922207608819, 0.006583706475794315], [0.019848834723234177, 0.002248481148853898, 0.0037914998829364777, 0.009388803504407406, 0.0028502782806754112, 0.02107577584683895, 0.004424565471708775, 0.0009037400595843792, 0.015565553680062294, 0.008854358457028866, 0.009282254613935947, 0.03747599571943283, 0.14675316214561462, 0.13725405931472778, 0.46554484963417053, 0.07357750833034515, 0.04116031900048256], [0.04542720690369606, 0.0028814810793846846, 0.00680811470374465, 0.0019958368502557278, 0.00218284223228693, 0.001577401184476912, 0.01439460925757885, 0.0017413819441571832, 0.016353832557797432, 0.01609358936548233, 0.01310602854937315, 0.02185835689306259, 0.10493607819080353, 0.025696326047182083, 0.6175658106803894, 0.028523258864879608, 0.07885778695344925], [0.18546532094478607, 0.002832588739693165, 0.0023552849888801575, 0.0015924728941172361, 0.0019927071407437325, 0.007191985845565796, 0.0030983237084001303, 0.0014784990344196558, 0.025159573182463646, 0.008007493801414967, 0.005296161863952875, 0.009536121971905231, 0.16916759312152863, 0.2546636462211609, 0.0654492974281311, 0.02887144312262535, 0.22784152626991272], [0.05343467369675636, 0.0038337851874530315, 0.008542964234948158, 0.0019821568857878447, 0.017770718783140182, 0.01338198035955429, 0.00743396021425724, 0.006312246900051832, 0.0167104322463274, 0.046326179057359695, 0.09114386141300201, 0.03134696185588837, 0.37953370809555054, 0.08949685096740723, 0.10434731841087341, 0.008043899200856686, 0.12035825848579407], [0.6858828663825989, 0.005098638124763966, 0.0004517739580478519, 0.0009559339960105717, 0.00030007469467818737, 0.0008140559657476842, 0.00018304097466170788, 0.03445791080594063, 0.009159702807664871, 0.003716467646881938, 0.016210664063692093, 0.005639155860990286, 0.0035289255902171135, 0.008525787852704525, 0.0034673099871724844, 0.01348100509494543, 0.2081267386674881]], [[0.7454310059547424, 0.023761693388223648, 0.003255219431594014, 0.022921547293663025, 0.01218433491885662, 0.0024156144354492426, 0.013529102317988873, 0.026090769097208977, 0.06894727796316147, 0.018017960712313652, 0.0027146367356181145, 0.00639007706195116, 0.0030325057450681925, 0.0018426241585984826, 0.003650534898042679, 0.015466910786926746, 0.030348103493452072], [0.7644087076187134, 0.10793653875589371, 0.0046956646256148815, 0.006380660459399223, 0.0054332055151462555, 0.00211281212978065, 0.0014909531455487013, 0.012437206692993641, 0.06100831925868988, 0.007382468320429325, 0.0016343558672815561, 0.0013618385419249535, 0.0012899088906124234, 0.0003206930705346167, 0.0010767277562990785, 0.0010599680244922638, 0.019969919696450233], [0.6263486742973328, 0.04645629972219467, 0.23294302821159363, 0.005369207821786404, 0.0010211096378043294, 0.0009457694832235575, 0.0003134069265797734, 0.007978001609444618, 0.04452388733625412, 0.0031423652544617653, 0.0018346847500652075, 0.0006665418623015285, 0.0002872981713153422, 0.00023165806487668306, 0.0016010282561182976, 0.001039514783769846, 0.025297556072473526], [0.6000315546989441, 0.03173704817891121, 0.0017599010607227683, 0.20251692831516266, 0.0069443294778466225, 0.0005679914029315114, 0.003230038098990917, 0.011964483186602592, 0.06734354048967361, 0.016813602298498154, 0.01274928916245699, 0.0047269416972994804, 0.0009576157317496836, 0.00033305323449894786, 0.0006615793099626899, 0.014093714766204357, 0.02356833405792713], [0.6242268085479736, 0.019113929942250252, 0.0005189512157812715, 0.007207277696579695, 0.2535454034805298, 0.003649613820016384, 0.010663324035704136, 0.0037125758826732635, 0.03419102728366852, 0.009160098619759083, 0.0008684711065143347, 0.003681628266349435, 0.004689417779445648, 0.0008745684172026813, 0.0012711231829598546, 0.0012352277990430593, 0.021390443667769432], [0.611883282661438, 0.023905223235487938, 0.005256030708551407, 0.0039953733794391155, 0.021683868020772934, 0.20945993065834045, 0.005543800536543131, 0.011983480304479599, 0.04765421897172928, 0.024897560477256775, 0.0017804787494242191, 0.001103617250919342, 0.0053433929570019245, 0.002078966936096549, 0.0012750972528010607, 0.0021715799812227488, 0.019984012469649315], [0.3935457170009613, 0.008486141450703144, 0.0004028867988381535, 0.0174289271235466, 0.021901069208979607, 0.0023701621685177088, 0.4826660752296448, 0.004353047348558903, 0.02093913033604622, 0.010180255398154259, 0.0016431808471679688, 0.010159194469451904, 0.006031869910657406, 0.0005958513356745243, 0.0017177504487335682, 0.004697853699326515, 0.0128809604793787], [0.6028467416763306, 0.03769001364707947, 0.028475457802414894, 0.03120230883359909, 0.018437113612890244, 0.013266599737107754, 0.01148221269249916, 0.06290264427661896, 0.0769723653793335, 0.04021906480193138, 0.010503670200705528, 0.003980573732405901, 0.006058174651116133, 0.0021799185778945684, 0.006940903607755899, 0.016928203403949738, 0.029913997277617455], [0.7800852656364441, 0.043357085436582565, 0.0025201698299497366, 0.010703466832637787, 0.0059421188198029995, 0.0017845203401520848, 0.0047697341069579124, 0.033111076802015305, 0.02892328053712845, 0.026653597131371498, 0.002037797588855028, 0.003502677194774151, 0.000982927274890244, 0.0011341494973748922, 0.00118966493755579, 0.0248012263327837, 0.028501315042376518], [0.42324426770210266, 0.011288616806268692, 0.0005467518931254745, 0.012041036039590836, 0.0031406290363520384, 0.0019263856811448932, 0.0028645633719861507, 0.0030061996076256037, 0.0512206144630909, 0.42651844024658203, 0.0034862100146710873, 0.002433923538774252, 0.0016345763579010963, 0.0006170259439386427, 0.0008696880540810525, 0.005298980511724949, 0.04986213147640228], [0.708649218082428, 0.01720842905342579, 0.003170452546328306, 0.02616560459136963, 0.0013683292781934142, 0.0005194649565964937, 0.001235231407918036, 0.005676588974893093, 0.08711107075214386, 0.017274361103773117, 0.042885322123765945, 0.004727077204734087, 0.0017113384092226624, 0.0012923299800604582, 0.001020115683786571, 0.011617828160524368, 0.06836728751659393], [0.506205677986145, 0.012991094961762428, 0.0009140609763562679, 0.017971117049455643, 0.021719137206673622, 0.0009883606107905507, 0.02845015563070774, 0.002093513961881399, 0.07095304131507874, 0.01536199264228344, 0.009218545630574226, 0.23167045414447784, 0.005852721631526947, 0.0015546750510111451, 0.0017423976678401232, 0.0047386703081429005, 0.06757446378469467], [0.40194886922836304, 0.013738472014665604, 0.002673707203939557, 0.009845610707998276, 0.016884448006749153, 0.006612048018723726, 0.018642190843820572, 0.0026986070442944765, 0.053096529096364975, 0.020563539117574692, 0.006348449736833572, 0.008549364283680916, 0.37792837619781494, 0.0022796918638050556, 0.004963651765137911, 0.004051701631397009, 0.049174707382917404], [0.5849642753601074, 0.003050753381103277, 0.0007497180486097932, 0.0035835898015648127, 0.002282927744090557, 0.005114688538014889, 0.0020319900941103697, 0.003994002938270569, 0.04248917102813721, 0.004139237105846405, 0.004156331066042185, 0.0024963708128780127, 0.004159219563007355, 0.2444210946559906, 0.0026620111893862486, 0.012758541852235794, 0.07694604992866516], [0.5436418056488037, 0.00809877086430788, 0.004244583658874035, 0.0030467489268630743, 0.0022126876283437014, 0.0009749404853209853, 0.005800488404929638, 0.006387328263372183, 0.06143166869878769, 0.009172621183097363, 0.0028124956879764795, 0.004438498988747597, 0.0037392915692180395, 0.0033911976497620344, 0.2738668620586395, 0.011096665635704994, 0.055643387138843536], [0.4284780025482178, 0.009500157088041306, 0.0005963937728665769, 0.05988456681370735, 0.0026090119499713182, 0.0007354257395491004, 0.005806018132716417, 0.014910107478499413, 0.04579974338412285, 0.03587152436375618, 0.006663530133664608, 0.004383022431284189, 0.0011924285208806396, 0.00426810747012496, 0.00205721496604383, 0.33695927262306213, 0.0402853861451149], [0.7174838781356812, 0.0321839265525341, 0.002324790693819523, 0.009250638075172901, 0.004423764534294605, 0.0015458747511729598, 0.0035497453063726425, 0.016795845702290535, 0.035515401512384415, 0.03925681859254837, 0.0029360095504671335, 0.005206204019486904, 0.0013880283804610372, 0.0014951186021789908, 0.0010882355272769928, 0.04603511467576027, 0.07952046394348145]]], [[[0.20538556575775146, 0.006783756893128157, 0.0063742040656507015, 0.030155163258314133, 0.0012839731061831117, 0.004238997120410204, 0.0025502729695290327, 0.030539020895957947, 0.12862206995487213, 0.05158519744873047, 0.01424491498619318, 0.002449838677421212, 0.0007737547275610268, 0.005300894379615784, 0.0035220577847212553, 0.18150652945041656, 0.32468387484550476], [0.5357323288917542, 0.06808635592460632, 0.026822850108146667, 0.05122525990009308, 0.0031411380041390657, 0.01969270035624504, 0.009553084149956703, 0.16382397711277008, 0.0852455124258995, 0.00542669091373682, 0.0006860120338387787, 0.00022843776969239116, 9.289468289352953e-05, 0.0003136755258310586, 0.0005599651485681534, 0.005443323403596878, 0.02392583154141903], [0.7164422273635864, 0.07096374034881592, 0.017240209504961967, 0.03909487649798393, 0.003829126711934805, 0.01916281320154667, 0.0075177038088440895, 0.05583331733942032, 0.014150304719805717, 0.011224712245166302, 0.004090744070708752, 0.0018387379823252559, 0.004050412680953741, 0.005808195099234581, 0.00576509814709425, 0.01397284958511591, 0.009014918468892574], [0.304108589887619, 0.20673112571239471, 0.06677430123090744, 0.049756307154893875, 0.008345875889062881, 0.022099127992987633, 0.017671670764684677, 0.12516650557518005, 0.11123248934745789, 0.019249949604272842, 0.005199807230383158, 0.0004899651976302266, 0.0027296992484480143, 0.0018834671936929226, 0.00445215031504631, 0.00792655535042286, 0.04618237540125847], [0.5903051495552063, 0.03608828783035278, 0.03995300456881523, 0.12305960804224014, 0.012417576275765896, 0.030747177079319954, 0.00961415097117424, 0.05638304352760315, 0.051010169088840485, 0.006114650052040815, 0.0008630385273136199, 0.0009219199419021606, 0.001853808993473649, 0.002416937379166484, 0.002234123181551695, 0.004057653248310089, 0.031959712505340576], [0.18413367867469788, 0.023990681394934654, 0.32321006059646606, 0.1411694586277008, 0.04371248185634613, 0.06313467770814896, 0.03103500045835972, 0.04628429189324379, 0.04610616713762283, 0.009255306795239449, 0.0028513886500149965, 0.0014766352251172066, 0.002761548850685358, 0.006424938794225454, 0.014643428847193718, 0.016654688864946365, 0.043155573308467865], [0.16810491681098938, 0.11710225045681, 0.17226579785346985, 0.09263493865728378, 0.02276747301220894, 0.029245691373944283, 0.015072470530867577, 0.10670068114995956, 0.15321768820285797, 0.02762390486896038, 0.006497877184301615, 0.00043262660619802773, 0.0012848024489358068, 0.0010005588410422206, 0.003142428584396839, 0.003068478312343359, 0.07983730733394623], [0.14960162341594696, 0.09268868714570999, 0.06603402644395828, 0.10647189617156982, 0.02834557555615902, 0.08273094147443771, 0.04079456627368927, 0.1163577139377594, 0.14658527076244354, 0.019199004396796227, 0.010957010090351105, 0.008268793113529682, 0.006910491269081831, 0.005952821578830481, 0.015182022005319595, 0.014812256209552288, 0.08910740911960602], [0.7728886604309082, 0.018508274108171463, 0.008784030564129353, 0.01565266214311123, 0.0026726776268333197, 0.016554074361920357, 0.005139840301126242, 0.07173344492912292, 0.03822699934244156, 0.003393480321392417, 0.0026131565682590008, 0.0015260158106684685, 0.00123747403267771, 0.0019421495962888002, 0.004238874185830355, 0.009388281963765621, 0.02550000511109829], [0.5108107328414917, 0.007227804511785507, 0.002299201674759388, 0.03300045058131218, 0.0021519185975193977, 0.021485470235347748, 0.004803324583917856, 0.0941925197839737, 0.07161345332860947, 0.04658203572034836, 0.005555460695177317, 0.0018022536532953382, 0.001148938899859786, 0.0014217772986739874, 0.0023775380104780197, 0.09815413504838943, 0.09537312388420105], [0.1152479350566864, 0.024364836513996124, 0.015423289500176907, 0.049664273858070374, 0.0035009263083338737, 0.033191319555044174, 0.023714696988463402, 0.10429858416318893, 0.1172340139746666, 0.29953938722610474, 0.012838444672524929, 0.0031419596634805202, 0.001825255574658513, 0.0013889739057049155, 0.004799085669219494, 0.10339698195457458, 0.08642999827861786], [0.09932304918766022, 0.010893166065216064, 0.011732902377843857, 0.014895597472786903, 0.00198561092838645, 0.012738666497170925, 0.004271339159458876, 0.03948477655649185, 0.05469103530049324, 0.6029919385910034, 0.06314750760793686, 0.002943486673757434, 0.01201237365603447, 0.004603798966854811, 0.004015857353806496, 0.013789675198495388, 0.046479154378175735], [0.20694038271903992, 0.004846381489187479, 0.031077606603503227, 0.01639833115041256, 0.006237424910068512, 0.022460181266069412, 0.007951758801937103, 0.028792904689908028, 0.033693451434373856, 0.37686920166015625, 0.11408039927482605, 0.04137282818555832, 0.020017584785819054, 0.02006438374519348, 0.02714480459690094, 0.014484409242868423, 0.027567988261580467], [0.41953518986701965, 0.014850947074592113, 0.05826641619205475, 0.01622067019343376, 0.0008975358214229345, 0.012132195755839348, 0.002710985252633691, 0.0375923328101635, 0.02597341313958168, 0.1961711347103119, 0.13032746315002441, 0.00784977525472641, 0.02046329714357853, 0.01249148603528738, 0.01430736854672432, 0.013182936236262321, 0.017026925459504128], [0.06252007931470871, 0.007303342223167419, 0.14199785888195038, 0.012512799352407455, 0.0017748326063156128, 0.01714741438627243, 0.0023939183447510004, 0.011096566915512085, 0.03954024612903595, 0.35226666927337646, 0.18160906434059143, 0.010979590006172657, 0.05944208428263664, 0.02467181161046028, 0.022586803883314133, 0.012922752648591995, 0.039234187453985214], [0.08404769003391266, 0.013540185987949371, 0.01109942514449358, 0.006828024052083492, 0.0010163389379158616, 0.005699891597032547, 0.002567519899457693, 0.029865993186831474, 0.11711191385984421, 0.2543063163757324, 0.10178137570619583, 0.006320924498140812, 0.04567937180399895, 0.019466541707515717, 0.04118887335062027, 0.05052950978279114, 0.20895008742809296], [0.7906316518783569, 0.009794555604457855, 0.006181848701089621, 0.006262470968067646, 0.0012316128704696894, 0.005284451879560947, 0.0013676556991413236, 0.0385441780090332, 0.0322149358689785, 0.006826807279139757, 0.005321907345205545, 0.003384564071893692, 0.0030748024582862854, 0.0062591517344117165, 0.008381938561797142, 0.027219180017709732, 0.04801825433969498]], [[0.030539169907569885, 0.02875026874244213, 0.06822026520967484, 0.023251529783010483, 0.013749457895755768, 0.01913834735751152, 0.0069595989771187305, 0.010247768834233284, 0.05387391522526741, 0.2077091932296753, 0.05816683918237686, 0.038307610899209976, 0.0837378203868866, 0.10971680283546448, 0.08714146912097931, 0.0647803470492363, 0.09570956230163574], [0.052944429218769073, 0.09264461696147919, 0.19800376892089844, 0.09800095856189728, 0.07139851152896881, 0.1356605738401413, 0.052425216883420944, 0.03596577048301697, 0.027081986889243126, 0.024452807381749153, 0.03851117193698883, 0.030895743519067764, 0.04019801691174507, 0.02991340309381485, 0.03225291520357132, 0.019992874935269356, 0.019657159224152565], [0.08105944097042084, 0.08162585645914078, 0.09906909614801407, 0.18268047273159027, 0.056270454078912735, 0.10172320902347565, 0.03685358911752701, 0.042729396373033524, 0.01830418035387993, 0.03293030336499214, 0.029222840443253517, 0.05593830719590187, 0.02558274380862713, 0.037739019840955734, 0.02928260713815689, 0.0731109157204628, 0.01587757281959057], [0.08996124565601349, 0.05384872108697891, 0.056726980954408646, 0.09951606392860413, 0.027063090354204178, 0.07598155736923218, 0.020372234284877777, 0.102356918156147, 0.13701073825359344, 0.017944281920790672, 0.010511543601751328, 0.027916213497519493, 0.028221946209669113, 0.019278112798929214, 0.01726611517369747, 0.09487924724817276, 0.12114499509334564], [0.05538564920425415, 0.034674808382987976, 0.05091593414545059, 0.04707299917936325, 0.013468349352478981, 0.031550176441669464, 0.018559744581580162, 0.30694717168807983, 0.17568787932395935, 0.02435414306819439, 0.00538075203076005, 0.010141677223145962, 0.027629045769572258, 0.005349986720830202, 0.009835605509579182, 0.046852823346853256, 0.13619326055049896], [0.0379943773150444, 0.05438225716352463, 0.06459691375494003, 0.13985489308834076, 0.06155803054571152, 0.07143308222293854, 0.025858715176582336, 0.1815710961818695, 0.04422144591808319, 0.025690626353025436, 0.015467372722923756, 0.0621224045753479, 0.03957696259021759, 0.011829550378024578, 0.02686525508761406, 0.09962642192840576, 0.0373506173491478], [0.03593188151717186, 0.0802558958530426, 0.11214897036552429, 0.14159120619297028, 0.05939282104372978, 0.12235785275697708, 0.031530119478702545, 0.13292339444160461, 0.03320692107081413, 0.02018766663968563, 0.016067024320364, 0.02131885290145874, 0.059587642550468445, 0.01853979006409645, 0.021389342844486237, 0.06646954268217087, 0.02710116095840931], [0.08188726752996445, 0.079721599817276, 0.08180434256792068, 0.1742558628320694, 0.121385857462883, 0.08700862526893616, 0.058161478489637375, 0.09384908527135849, 0.039518803358078, 0.02565612457692623, 0.0212326068431139, 0.030950915068387985, 0.022575564682483673, 0.011437599547207355, 0.010341361165046692, 0.03413999453186989, 0.026072870939970016], [0.10896807163953781, 0.025675645098090172, 0.022387707605957985, 0.016805820167064667, 0.003379481378942728, 0.007485288195312023, 0.003515147138386965, 0.36154910922050476, 0.17249315977096558, 0.009293747134506702, 0.01320483349263668, 0.019396182149648666, 0.007216122001409531, 0.012266108766198158, 0.01598326861858368, 0.030703043565154076, 0.16967728734016418], [0.11400028318166733, 0.05146404728293419, 0.033425137400627136, 0.13680297136306763, 0.021484075114130974, 0.015804370865225792, 0.008894810453057289, 0.20390522480010986, 0.09093347936868668, 0.046962905675172806, 0.012200532481074333, 0.04605535417795181, 0.015315336175262928, 0.024291306734085083, 0.006338980980217457, 0.07237901538610458, 0.09974216669797897], [0.04377024248242378, 0.08784858137369156, 0.24843871593475342, 0.08310889452695847, 0.01720166765153408, 0.07554163038730621, 0.01523678470402956, 0.013416796922683716, 0.03536954149603844, 0.038841504603624344, 0.04249999299645424, 0.026115793734788895, 0.07263584434986115, 0.07276958227157593, 0.057558510452508926, 0.0299290269613266, 0.0397169291973114], [0.06728500872850418, 0.029726272448897362, 0.031129619106650352, 0.01139065157622099, 0.006314235273748636, 0.023750007152557373, 0.008108539506793022, 0.11866075545549393, 0.19700491428375244, 0.025408895686268806, 0.02302015759050846, 0.013246193528175354, 0.037312932312488556, 0.04975418001413345, 0.05689382553100586, 0.053714487701654434, 0.24727939069271088], [0.029100202023983, 0.025020482018589973, 0.029811451211571693, 0.023501498624682426, 0.00899732019752264, 0.028097914531826973, 0.022307489067316055, 0.12569154798984528, 0.10320097208023071, 0.02622462809085846, 0.014257804490625858, 0.049101997166872025, 0.08531162142753601, 0.07768764346837997, 0.1793392449617386, 0.03849849849939346, 0.13384966552257538], [0.030792584642767906, 0.040409255772829056, 0.03531654179096222, 0.021777180954813957, 0.005455194041132927, 0.013928764499723911, 0.008388255722820759, 0.3305415213108063, 0.059313658624887466, 0.015162641182541847, 0.02188735455274582, 0.06858666241168976, 0.04566754028201103, 0.04204744100570679, 0.13483184576034546, 0.043787337839603424, 0.08210629224777222], [0.02783389389514923, 0.02994486689567566, 0.036308784037828445, 0.0445474311709404, 0.008001427166163921, 0.01849203184247017, 0.013227750547230244, 0.28607210516929626, 0.04233448579907417, 0.015235984697937965, 0.024972660467028618, 0.08610875904560089, 0.05378352850675583, 0.07134295254945755, 0.08312346786260605, 0.10290849953889847, 0.05576132982969284], [0.06782539933919907, 0.02991335093975067, 0.034766748547554016, 0.03465987741947174, 0.00479066651314497, 0.02222803793847561, 0.005951298866420984, 0.11263708770275116, 0.125095933675766, 0.022906925529241562, 0.02040037140250206, 0.04685918614268303, 0.04015630483627319, 0.049280162900686264, 0.05461256578564644, 0.12767784297466278, 0.2002382129430771], [0.10290864109992981, 0.015531357377767563, 0.010912599973380566, 0.008136613294482231, 0.001369072706438601, 0.002825130708515644, 0.0014492975315079093, 0.2821357548236847, 0.21065914630889893, 0.01181227620691061, 0.011630960740149021, 0.017311351373791695, 0.006233724299818277, 0.01320717204362154, 0.016567962244153023, 0.03157003968954086, 0.2557390332221985]], [[0.11574086546897888, 0.03910510987043381, 0.07187940180301666, 0.06111738830804825, 0.013943717814981937, 0.07700829952955246, 0.021459145471453667, 0.07959326356649399, 0.1575775444507599, 0.029751181602478027, 0.08388756960630417, 0.01684390939772129, 0.010905494913458824, 0.008169524371623993, 0.019547272473573685, 0.039992909878492355, 0.15347738564014435], [0.17140600085258484, 0.024477750062942505, 0.04528594762086868, 0.021172508597373962, 0.004341131076216698, 0.0551883764564991, 0.008823134005069733, 0.14520800113677979, 0.21773682534694672, 0.012238367460668087, 0.02793825790286064, 0.018263230100274086, 0.006248244550079107, 0.0026568167377263308, 0.024396497756242752, 0.017701826989650726, 0.1969171166419983], [0.10825788974761963, 0.0362422838807106, 0.07992580533027649, 0.032638467848300934, 0.01952669583261013, 0.3589767813682556, 0.013312151655554771, 0.0045678336173295975, 0.08004390448331833, 0.028185870498418808, 0.011232460848987103, 0.008648686110973358, 0.02792302519083023, 0.01824497990310192, 0.07378576695919037, 0.021478137001395226, 0.07700925320386887], [0.12401217967271805, 0.01814933307468891, 0.021389776840806007, 0.006738147232681513, 0.003697388805449009, 0.04121708869934082, 0.002729542087763548, 0.10315649956464767, 0.33265554904937744, 0.007812796160578728, 0.019281914457678795, 0.006965617649257183, 0.002313739387318492, 0.0015214583836495876, 0.015322021208703518, 0.004228692036122084, 0.28880825638771057], [0.07825490087270737, 0.009201773442327976, 0.006448546424508095, 0.0014714559074491262, 0.0003126643714495003, 0.004056004341691732, 0.00034153382875956595, 0.22924011945724487, 0.36345067620277405, 0.002567756688222289, 0.005057985428720713, 0.0019221982220187783, 0.0001178562015411444, 0.0001304157340200618, 0.0007722618756815791, 0.0007931552827358246, 0.29586073756217957], [0.1532689779996872, 0.034383002668619156, 0.02343110926449299, 0.014916395768523216, 0.009058364666998386, 0.04522303491830826, 0.001690057571977377, 0.05718221515417099, 0.3356769382953644, 0.009877835400402546, 0.016316941007971764, 0.00472671864554286, 0.003640758339315653, 0.0012654875172302127, 0.011775690130889416, 0.009773808531463146, 0.2677927315235138], [0.11485268920660019, 0.010244856588542461, 0.0029909468721598387, 0.0029443015810102224, 0.002445399295538664, 0.008238011039793491, 0.00015095675189513713, 0.1396235078573227, 0.3869325816631317, 0.00320964097045362, 0.00555385509505868, 0.0017245071940124035, 0.0003018413844984025, 0.0001602540141902864, 0.0019474123837426305, 0.0013394136913120747, 0.31733977794647217], [0.19137787818908691, 0.01847575604915619, 0.017389247193932533, 0.012108166702091694, 0.0026623427402228117, 0.012141812592744827, 0.004095043987035751, 0.2350376546382904, 0.25106942653656006, 0.005480817519128323, 0.005988531745970249, 0.003865043167024851, 0.0008568412740714848, 0.001411333796568215, 0.006003897171467543, 0.00617101090028882, 0.22586509585380554], [0.1774381846189499, 0.018427303060889244, 0.01918407343327999, 0.009497717022895813, 0.001488909823819995, 0.01567409560084343, 0.00342578929848969, 0.2394871860742569, 0.24724702537059784, 0.003189969342201948, 0.010203894227743149, 0.005848280619829893, 0.001435308950021863, 0.0023856020998209715, 0.008146295323967934, 0.008177339099347591, 0.22874300181865692], [0.13920240104198456, 0.012078697793185711, 0.006467532366514206, 0.004354296252131462, 0.002679905155673623, 0.006293513812124729, 0.0027548607904464006, 0.22717343270778656, 0.22857098281383514, 0.006915548350661993, 0.023446639999747276, 0.02167346328496933, 0.002064015716314316, 0.0018096218118444085, 0.01284692995250225, 0.017827831208705902, 0.2838403582572937], [0.1956690400838852, 0.025164686143398285, 0.04622100666165352, 0.02009396255016327, 0.0035865241661667824, 0.04055054858326912, 0.0053816260769963264, 0.04801809787750244, 0.20525597035884857, 0.04236423224210739, 0.009922388009727001, 0.021295171231031418, 0.030363192781805992, 0.010341254062950611, 0.05385838821530342, 0.015181980095803738, 0.22673195600509644], [0.08670563995838165, 0.006010875105857849, 0.00453865947201848, 0.002072048606351018, 0.00047739542787894607, 0.00574501371011138, 0.0005594416870735586, 0.13307473063468933, 0.35764697194099426, 0.0027202002238482237, 0.0034526768140494823, 0.0010986845009028912, 0.0016637862427160144, 0.001018412527628243, 0.0048525771126151085, 0.0030614861752837896, 0.3853014409542084], [0.09733188897371292, 0.01038606557995081, 0.009335525333881378, 0.003838004544377327, 0.0010971539886668324, 0.029846031218767166, 0.0009417555993422866, 0.03684823587536812, 0.3127937316894531, 0.009352106600999832, 0.00640526320785284, 0.010342676192522049, 0.009683347307145596, 0.01485812570899725, 0.08279159665107727, 0.006566026248037815, 0.35758259892463684], [0.19090856611728668, 0.031167497858405113, 0.025069117546081543, 0.017045386135578156, 0.00999945867806673, 0.02456376701593399, 0.002984082093462348, 0.03783676400780678, 0.252787709236145, 0.01684284582734108, 0.004527321085333824, 0.017688432708382607, 0.015695394948124886, 0.004822377115488052, 0.0427832193672657, 0.019392818212509155, 0.2858852446079254], [0.08572062104940414, 0.019358234480023384, 0.01523648202419281, 0.019156483933329582, 0.021120797842741013, 0.05896209180355072, 0.005831508431583643, 0.021511366590857506, 0.1863667517900467, 0.07127447426319122, 0.021105661988258362, 0.01765519566833973, 0.10097376257181168, 0.06024850532412529, 0.020846011117100716, 0.02582688070833683, 0.24880509078502655], [0.2162291705608368, 0.012456967495381832, 0.0039858282543718815, 0.006637371610850096, 0.0018097938736900687, 0.010658439248800278, 0.0012663427041843534, 0.0989227294921875, 0.23571692407131195, 0.03422432020306587, 0.021881040185689926, 0.01574474386870861, 0.007600976619869471, 0.0021915428806096315, 0.017080625519156456, 0.012712590396404266, 0.3008806109428406], [0.18929561972618103, 0.013770287856459618, 0.010449860244989395, 0.00614132359623909, 0.000933479459490627, 0.008514552377164364, 0.0022178860381245613, 0.2171238213777542, 0.24369879066944122, 0.0048760720528662205, 0.012409237213432789, 0.0070931739173829556, 0.002000832697376609, 0.0036244706716388464, 0.010943829081952572, 0.009887771680951118, 0.2570191025733948]], [[0.3063393533229828, 0.016823729500174522, 0.02133076824247837, 0.014787032268941402, 0.004586333874613047, 0.008930913172662258, 0.0046145180240273476, 0.02900872379541397, 0.10513562709093094, 0.059194471687078476, 0.05338602513074875, 0.007604668382555246, 0.010456654243171215, 0.020206967368721962, 0.017974289134144783, 0.057149775326251984, 0.26247018575668335], [0.028736766427755356, 0.017690913751721382, 0.21235576272010803, 0.45701807737350464, 0.05954978987574577, 0.047599636018276215, 0.02696293033659458, 0.030378146097064018, 0.04113154113292694, 0.0038790039252489805, 0.016541559249162674, 0.006355626508593559, 0.0022419635206460953, 0.0024337326176464558, 0.0030229424592107534, 0.01285422220826149, 0.031247351318597794], [0.3970986008644104, 0.014471332542598248, 0.009949607774615288, 0.041678477078676224, 0.019086839631199837, 0.08480267226696014, 0.014518244192004204, 0.09341216087341309, 0.1397390514612198, 0.00176615035161376, 0.0017886348068714142, 0.0007569961016997695, 0.003783921245485544, 0.006175217218697071, 0.0034074848517775536, 0.012553250417113304, 0.1550113558769226], [0.04054252430796623, 0.0030526411719620228, 0.003028194885700941, 0.0067199477925896645, 0.02198825217783451, 0.18767423927783966, 0.23067983984947205, 0.31219494342803955, 0.0907425507903099, 0.005593448411673307, 0.002628719201311469, 0.0002680444740690291, 0.0023900410160422325, 0.007873853668570518, 0.025948332622647285, 0.012335292994976044, 0.04633917286992073], [0.14558541774749756, 0.003993839956820011, 0.001597037073224783, 0.0047955890186131, 0.015098282136023045, 0.10384045541286469, 0.1618817001581192, 0.2784561216831207, 0.19429436326026917, 0.00319237494841218, 0.0028353265952318907, 0.00036850603646598756, 0.0020457764621824026, 0.002072820905596018, 0.0030148939695209265, 0.0033264944795519114, 0.07360094785690308], [0.2417854368686676, 0.012175928801298141, 0.005689199548214674, 0.004064121749252081, 0.008398755453526974, 0.04072807356715202, 0.036037832498550415, 0.20900744199752808, 0.2611490786075592, 0.02339606173336506, 0.01484100054949522, 0.003204947104677558, 0.006629234179854393, 0.006790592335164547, 0.006227175239473581, 0.006845137104392052, 0.11302994936704636], [0.2627291977405548, 0.012396474368870258, 0.0016125416150316596, 0.004647783935070038, 0.007459305692464113, 0.03738383576273918, 0.01006923709064722, 0.20709355175495148, 0.3122168183326721, 0.027805477380752563, 0.012193344533443451, 0.0014383170055225492, 0.004923100583255291, 0.003706008195877075, 0.0033784869592636824, 0.008767195045948029, 0.08217921108007431], [0.10630419850349426, 0.016108835116028786, 0.015444967895746231, 0.02033955417573452, 0.007889826782047749, 0.014650100842118263, 0.008080512285232544, 0.06066301465034485, 0.1440199315547943, 0.13078199326992035, 0.21670503914356232, 0.0280098095536232, 0.012757403776049614, 0.022060109302401543, 0.016466859728097916, 0.03797439858317375, 0.14174333214759827], [0.6476292014122009, 0.016348058357834816, 0.0040677934885025024, 0.014692348428070545, 0.0018367322627454996, 0.00444315280765295, 0.001242246595211327, 0.008662236854434013, 0.11497929692268372, 0.01123941782861948, 0.008930525742471218, 0.003104404080659151, 0.003805150045081973, 0.004457211121916771, 0.0035507732536643744, 0.010409817099571228, 0.14060157537460327], [0.033121827989816666, 0.0012563845375552773, 0.007179287262260914, 0.06860857456922531, 0.0006718960939906538, 0.0009903188329190016, 0.0012938766740262508, 0.014231693930923939, 0.05561680719256401, 0.013927343301475048, 0.06827523559331894, 0.11747953295707703, 0.09750840067863464, 0.04995199292898178, 0.08169525861740112, 0.26087087392807007, 0.12732067704200745], [0.03574460744857788, 0.0010141897946596146, 0.005059435963630676, 0.03129911422729492, 0.0002695823204703629, 0.0014458884252235293, 0.0009555217111483216, 0.020558476448059082, 0.058217234909534454, 0.0037514795549213886, 0.01196987833827734, 0.03494424372911453, 0.03082987852394581, 0.09665343910455704, 0.07179718464612961, 0.49876922369003296, 0.09672056138515472], [0.1278427541255951, 0.0007718975539319217, 0.0008515733061358333, 0.008008218370378017, 0.0006004553870297968, 0.005536243785172701, 0.005610785912722349, 0.04997546970844269, 0.09017884731292725, 0.001485280692577362, 0.0027171156834810972, 0.0016808612272143364, 0.04382693022489548, 0.03675924241542816, 0.16926313936710358, 0.25449761748313904, 0.20039351284503937], [0.21982243657112122, 0.0017051800386980176, 0.0019056284800171852, 0.0019899189937859774, 0.0013626805739477277, 0.005361906718462706, 0.0017031363677233458, 0.03321647644042969, 0.14011715352535248, 0.006171513814479113, 0.004213098436594009, 0.007689651567488909, 0.035497721284627914, 0.05699235945940018, 0.08599193394184113, 0.03939202055335045, 0.35686710476875305], [0.3612912595272064, 0.0023381037171930075, 0.0008506671874783933, 0.0014513884671032429, 0.0011168806813657284, 0.0033325699623674154, 0.00043653769535012543, 0.021657373756170273, 0.11613117903470993, 0.0020864217076450586, 0.0012140811886638403, 0.00038299651350826025, 0.00644735898822546, 0.007998848333954811, 0.03876952454447746, 0.03144445642828941, 0.4030504822731018], [0.5138987898826599, 0.0022618251387029886, 0.0007979305228218436, 0.0020120753906667233, 0.0005921304691582918, 0.004058465827256441, 0.00022889605315867811, 0.017564691603183746, 0.12219111621379852, 0.0023522975388914347, 0.0005863909027539194, 0.00032853358425199986, 0.003553203074261546, 0.003251932095736265, 0.0077364821918308735, 0.021639319136738777, 0.2969459295272827], [0.4063866138458252, 0.001210736227221787, 0.0009560450562275946, 0.002112641232088208, 0.000904428365174681, 0.004357117228209972, 0.0011757173342630267, 0.012563016265630722, 0.06393489241600037, 0.030697297304868698, 0.025672459974884987, 0.002026200294494629, 0.004858278203755617, 0.016958247870206833, 0.03626614063978195, 0.05675263702869415, 0.33316755294799805], [0.7013733386993408, 0.0073241801001131535, 0.0022500320337712765, 0.009310482069849968, 0.00120065629016608, 0.0036680949851870537, 0.0010160686215385795, 0.006998822558671236, 0.06656818836927414, 0.009200379252433777, 0.004334858153015375, 0.0014812416629865766, 0.0024717114865779877, 0.003434327896684408, 0.0037332160864025354, 0.014813580550253391, 0.160820871591568]], [[0.09979113936424255, 0.03883330523967743, 0.024698302149772644, 0.04483076557517052, 0.01476182322949171, 0.024045243859291077, 0.02374119870364666, 0.045566145330667496, 0.2279992550611496, 0.05573498457670212, 0.042020007967948914, 0.02091025374829769, 0.005749198608100414, 0.008787647821009159, 0.009675520472228527, 0.025539932772517204, 0.287315309047699], [0.09115432947874069, 0.023153360933065414, 0.11604630202054977, 0.20041850209236145, 0.013324467465281487, 0.05764161795377731, 0.03696964681148529, 0.04960782825946808, 0.18983232975006104, 0.009514346718788147, 0.008521253243088722, 0.004084935877472162, 0.005067496560513973, 0.00562170147895813, 0.010833547450602055, 0.07247931510210037, 0.10572897642850876], [0.07463133335113525, 0.04899638146162033, 0.07019500434398651, 0.028235049918293953, 0.006032094359397888, 0.0024028075858950615, 0.0014688250375911593, 0.03557515889406204, 0.3454008102416992, 0.004062136169523001, 0.0056605031713843346, 0.0023208227939903736, 0.0015505142509937286, 0.002558220410719514, 0.004020435269922018, 0.010499661788344383, 0.3563901484012604], [0.025600118562579155, 0.0034379849676042795, 0.0003415506216697395, 0.0005461337277665734, 0.0020815925672650337, 0.4802185893058777, 0.42890799045562744, 0.03081451915204525, 0.008687668479979038, 0.00042085308814421296, 0.0010776181006804109, 0.002147944876924157, 0.001498684985563159, 0.0013826601207256317, 0.006192204542458057, 0.00028337270487099886, 0.006360561121255159], [0.03598932921886444, 0.007123661693185568, 0.00096351612592116, 0.06700829416513443, 0.005794658791273832, 0.6877670288085938, 0.050140462815761566, 0.04110276699066162, 0.05055509880185127, 0.0022147917188704014, 0.0018843431025743484, 0.0007442908827215433, 0.0013113131280988455, 0.0008725986699573696, 0.004595724865794182, 0.0025140070356428623, 0.03941816836595535], [0.05010809004306793, 0.03691926226019859, 0.009549910202622414, 0.10618976503610611, 0.009127706289291382, 0.003283189609646797, 0.036792412400245667, 0.04685065895318985, 0.35068732500076294, 0.003924740944057703, 0.005799079779535532, 0.0002189219812862575, 0.0018596570007503033, 0.0005153012461960316, 0.00283996993675828, 0.006714740768074989, 0.32861921191215515], [0.017171761021018028, 0.005655510351061821, 0.0009492615354247391, 0.10877551883459091, 0.02639276161789894, 0.7780289053916931, 0.0014328344259411097, 0.008183993399143219, 0.02630131132900715, 0.0010964705143123865, 0.0007076399633660913, 0.0006622506771236658, 0.00045109467464499176, 0.0028128265403211117, 0.0014420216903090477, 0.00017094130453187972, 0.01976483315229416], [0.056040696799755096, 0.0481586717069149, 0.0392625592648983, 0.1332060545682907, 0.03988102450966835, 0.06426862627267838, 0.07791052758693695, 0.033656325191259384, 0.22239747643470764, 0.03070741333067417, 0.04692991450428963, 0.01760638877749443, 0.00650670425966382, 0.005804271437227726, 0.00998917780816555, 0.01178609486669302, 0.15588806569576263], [0.06940141320228577, 0.033307887613773346, 0.019474318251013756, 0.012008906342089176, 0.0012323374394327402, 0.0044489032588899136, 0.006613615900278091, 0.04443608224391937, 0.4192591607570648, 0.012425372377038002, 0.021549394354224205, 0.00817781500518322, 0.0012089208466932178, 0.002642097882926464, 0.007863999344408512, 0.012665115296840668, 0.3232845664024353], [0.011722260154783726, 0.0018850011983886361, 0.0012728053843602538, 0.012121759355068207, 0.0004469156265258789, 0.006978520192205906, 0.0011283374624326825, 0.007707122713327408, 0.0610102079808712, 0.003247203305363655, 0.016734765842556953, 0.005816273856908083, 0.02339010126888752, 0.13839447498321533, 0.0783526673913002, 0.5656047463417053, 0.06418689340353012], [0.0442114919424057, 0.004757745657116175, 0.009087950922548771, 0.039119478315114975, 0.003207913599908352, 0.012476588599383831, 0.006762477569282055, 0.019034622237086296, 0.12511411309242249, 0.017783576622605324, 0.01628032885491848, 0.07789083570241928, 0.01078982837498188, 0.04307781532406807, 0.11294005811214447, 0.3558245599269867, 0.10164058953523636], [0.004011786077171564, 0.0001014742738334462, 5.817809869768098e-05, 0.0003955201245844364, 0.00034679105738177896, 1.3518204468709882e-05, 0.00017554446822032332, 0.0015848720213398337, 0.005109278950840235, 9.902526653604582e-05, 0.004073916934430599, 3.7136174796614796e-05, 0.9544261693954468, 0.01065280195325613, 0.00236969580873847, 0.010051416233181953, 0.006492914166301489], [0.043656863272190094, 0.0019583157263696194, 0.0007192094344645739, 0.0038125738501548767, 3.6382869438966736e-05, 0.004563064314424992, 0.0001681829453445971, 0.011236460879445076, 0.07154230028390884, 0.005422523710876703, 0.020473744720220566, 0.3826789855957031, 0.008451919071376324, 0.08547884225845337, 0.24268482625484467, 0.019992487505078316, 0.09712338447570801], [0.1314173936843872, 0.012020898051559925, 0.007338241674005985, 0.004280397202819586, 0.0006550037651322782, 0.0005949820042587817, 4.262571019353345e-05, 0.026250002905726433, 0.06329888105392456, 0.0006792040658183396, 0.009112020954489708, 0.0662970095872879, 0.046854693442583084, 0.008737390860915184, 0.43581074476242065, 0.07052099704742432, 0.11608953028917313], [0.03955933824181557, 0.018778996542096138, 0.027329443022608757, 0.07223028689622879, 0.0019802565220743418, 0.001056011882610619, 0.00018029168131761253, 0.020361371338367462, 0.21713539958000183, 0.00586598040536046, 0.009586179628968239, 0.0005024527781642973, 0.018520750105381012, 0.1304548680782318, 0.0009591386769898236, 0.07688599079847336, 0.3586132228374481], [0.038896504789590836, 0.002310445299372077, 0.0018187969690188766, 0.0009306020801886916, 0.00023278601292986423, 0.0005830102600157261, 0.0005678428569808602, 0.012368783354759216, 0.013434451073408127, 0.005887024104595184, 0.004573711659759283, 0.04550807178020477, 0.0049680983647704124, 0.3276149034500122, 0.5107601881027222, 0.005239696707576513, 0.02430511824786663], [0.07556984573602676, 0.02032707817852497, 0.012514768168330193, 0.006844404619187117, 0.0007995591149665415, 0.002468045800924301, 0.003937508910894394, 0.03575125336647034, 0.3136250078678131, 0.015457957983016968, 0.01945636048913002, 0.008300923742353916, 0.00160056387539953, 0.005112434737384319, 0.011716611683368683, 0.019896110519766808, 0.4466214179992676]], [[0.07720981538295746, 0.005479374434798956, 0.009653094224631786, 0.004942193161696196, 0.006296050269156694, 0.01879698596894741, 0.0029290001839399338, 0.009101291187107563, 0.10884293913841248, 0.255292683839798, 0.08275441825389862, 0.009947802871465683, 0.021497810259461403, 0.005891737062484026, 0.010315139777958393, 0.0595274493098259, 0.3115222156047821], [0.10081841051578522, 0.025208599865436554, 0.10823255777359009, 0.13100038468837738, 0.08873111009597778, 0.19428133964538574, 0.03402477875351906, 0.06430313736200333, 0.09153364598751068, 0.02266654558479786, 0.02930597960948944, 0.011637458577752113, 0.004248590208590031, 0.004983082879334688, 0.00925781112164259, 0.024000205099582672, 0.055766358971595764], [0.14288413524627686, 0.06653030216693878, 0.0826490968465805, 0.13423201441764832, 0.05755477026104927, 0.24242113530635834, 0.05778031051158905, 0.035578690469264984, 0.022000988945364952, 0.04424966126680374, 0.016666648909449577, 0.005481308326125145, 0.0052717761136591434, 0.005180803593248129, 0.011721171438694, 0.05326942726969719, 0.016527727246284485], [0.2095443457365036, 0.03183833882212639, 0.10361836105585098, 0.013735993765294552, 0.03363284468650818, 0.29154878854751587, 0.027082743123173714, 0.046949706971645355, 0.08824890106916428, 0.07446525245904922, 0.005305198021233082, 0.0028499134350568056, 0.002666997956112027, 0.002208211924880743, 0.0036699718330055475, 0.0063538155518472195, 0.05628063157200813], [0.6052699089050293, 0.04618102312088013, 0.041307274252176285, 0.00972806941717863, 0.008821822702884674, 0.06025583669543266, 0.020914316177368164, 0.10611087083816528, 0.054035525768995285, 0.01358695887029171, 0.00205828039906919, 0.0011157057015225291, 0.0007620607502758503, 0.0011756200110539794, 0.0014770982088521123, 0.0027024950832128525, 0.024497119709849358], [0.14543011784553528, 0.06284019351005554, 0.1127016618847847, 0.042584896087646484, 0.024357737973332405, 0.23440591990947723, 0.06719357520341873, 0.041610680520534515, 0.044048063457012177, 0.12064123898744583, 0.01496205385774374, 0.004802182782441378, 0.005745191127061844, 0.007228384725749493, 0.008618212305009365, 0.03251977637410164, 0.03031005710363388], [0.2758655548095703, 0.0684211477637291, 0.0871393010020256, 0.07007474452257156, 0.039556119590997696, 0.17759110033512115, 0.02543524280190468, 0.07229757308959961, 0.07552193105220795, 0.032701559364795685, 0.013232419267296791, 0.004794727545231581, 0.0017865468980744481, 0.002480826573446393, 0.001856140443123877, 0.014901673421263695, 0.03634342551231384], [0.20471413433551788, 0.16547903418540955, 0.053886789828538895, 0.03470611199736595, 0.01586093008518219, 0.05950860306620598, 0.014329487457871437, 0.17287319898605347, 0.1188010722398758, 0.020981701090931892, 0.020500166341662407, 0.004532428923994303, 0.0035689889919012785, 0.003243064507842064, 0.004292394034564495, 0.02733711712062359, 0.07538477331399918], [0.3850259482860565, 0.042620699852705, 0.018977511674165726, 0.01876058056950569, 0.0035124258138239384, 0.015309530310332775, 0.008836154825985432, 0.284096360206604, 0.08778875321149826, 0.0037358247209340334, 0.010208687745034695, 0.013469942845404148, 0.0023829557467252016, 0.008806977421045303, 0.011539126746356487, 0.017326166853308678, 0.06760238856077194], [0.40637195110321045, 0.005644735414534807, 0.011581013910472393, 0.007326821330934763, 0.005657300353050232, 0.04194243252277374, 0.007262458559125662, 0.04291181266307831, 0.10112234205007553, 0.06649059802293777, 0.05439984053373337, 0.0223244521766901, 0.011947850696742535, 0.00748045276850462, 0.007863557897508144, 0.025249430909752846, 0.17442286014556885], [0.03554505482316017, 0.1258942037820816, 0.036509331315755844, 0.05995108187198639, 0.02699664793908596, 0.0375521183013916, 0.018652284517884254, 0.005674660671502352, 0.07097121328115463, 0.1465049535036087, 0.0661725252866745, 0.014102384448051453, 0.009331862442195415, 0.03154764696955681, 0.16420786082744598, 0.06238081678748131, 0.0880052000284195], [0.6659138798713684, 0.018083393573760986, 0.011816686950623989, 0.00923013687133789, 0.0016744232270866632, 0.017004702240228653, 0.00671832449734211, 0.05825703591108322, 0.018215656280517578, 0.07125592976808548, 0.037845902144908905, 0.011587291024625301, 0.0036953638773411512, 0.005372975952923298, 0.024161657318472862, 0.017375433817505836, 0.02179119549691677], [0.40163323283195496, 0.014721721410751343, 0.013423760421574116, 0.016551053151488304, 0.026905778795480728, 0.06019182503223419, 0.01458576787263155, 0.11016889661550522, 0.02927340939640999, 0.13569903373718262, 0.01877519302070141, 0.041450969874858856, 0.008395720273256302, 0.010868458077311516, 0.021202370524406433, 0.04074788838624954, 0.03540491312742233], [0.8464874029159546, 0.007125409785658121, 0.011116609908640385, 0.006413394585251808, 0.0010565321426838636, 0.010183493606746197, 0.007261425722390413, 0.06178567558526993, 0.005885311868041754, 0.013668421655893326, 0.0023411950096488, 0.0041036056354641914, 0.00033969542710110545, 0.0006532130064442754, 0.005911857821047306, 0.010446146130561829, 0.005220680497586727], [0.5370393991470337, 0.024095334112644196, 0.019729357212781906, 0.04203464463353157, 0.0067970119416713715, 0.05341538041830063, 0.020838703960180283, 0.09264549612998962, 0.02320600487291813, 0.0616401843726635, 0.022456318140029907, 0.020219188183546066, 0.002763928845524788, 0.003370145568624139, 0.013628877699375153, 0.030209604650735855, 0.025910403579473495], [0.4284515380859375, 0.026992104947566986, 0.009285747073590755, 0.01861882582306862, 0.007447022013366222, 0.04384639114141464, 0.006369845476001501, 0.06425353139638901, 0.0615478977560997, 0.14307032525539398, 0.029112787917256355, 0.019062435254454613, 0.0055292933247983456, 0.0032664563041180372, 0.008978256024420261, 0.04075730964541435, 0.08341030776500702], [0.4351096749305725, 0.020514443516731262, 0.008449352346360683, 0.009301923215389252, 0.001221774611622095, 0.005948420614004135, 0.0037798364646732807, 0.2338775247335434, 0.08136442303657532, 0.005654643755406141, 0.014292689971625805, 0.019577741622924805, 0.0033030002377927303, 0.012694094330072403, 0.018401412293314934, 0.02777300588786602, 0.09873601794242859]], [[0.28848257660865784, 0.01257616002112627, 0.03430843725800514, 0.01477912999689579, 0.0012256235349923372, 0.011869112029671669, 0.0016546170227229595, 0.014108515344560146, 0.052278775721788406, 0.07397178560495377, 0.04786080867052078, 0.01626724749803543, 0.027599243447184563, 0.03239141032099724, 0.059635698795318604, 0.18240614235401154, 0.12858480215072632], [0.33222827315330505, 0.08015219122171402, 0.1915275603532791, 0.026452526450157166, 0.009152380749583244, 0.0619947649538517, 0.008375460281968117, 0.0412161648273468, 0.10321027785539627, 0.004507344216108322, 0.009573579765856266, 0.008091576397418976, 0.010833711363375187, 0.006890119519084692, 0.017782362177968025, 0.011639094911515713, 0.07637260109186172], [0.35098302364349365, 0.08266192674636841, 0.1004398837685585, 0.017580751329660416, 0.004722627345472574, 0.02698211371898651, 0.0024964134208858013, 0.04608785733580589, 0.17449690401554108, 0.008553984574973583, 0.009689396247267723, 0.0028808119241148233, 0.005259563680738211, 0.004764842800796032, 0.011774441227316856, 0.01401494350284338, 0.13661053776741028], [0.0868002325296402, 0.08214076608419418, 0.44636648893356323, 0.029118763282895088, 0.024936877191066742, 0.09903780370950699, 0.013524153269827366, 0.006854426581412554, 0.028886616230010986, 0.011359469033777714, 0.025728275999426842, 0.02881213091313839, 0.012763477861881256, 0.02961600013077259, 0.03945455700159073, 0.013702438212931156, 0.020897559821605682], [0.20907022058963776, 0.07866306602954865, 0.1263018548488617, 0.11595798283815384, 0.008618229068815708, 0.12594379484653473, 0.018959959968924522, 0.0438644140958786, 0.11279072612524033, 0.008140233345329762, 0.006522328592836857, 0.03023660182952881, 0.0016097958432510495, 0.010630470700562, 0.012144387699663639, 0.022322824224829674, 0.06822306662797928], [0.10368841886520386, 0.1136193498969078, 0.3677966892719269, 0.09205619990825653, 0.020554449409246445, 0.0713471844792366, 0.015230441465973854, 0.010558288544416428, 0.046624623239040375, 0.015065798535943031, 0.022050680592656136, 0.012994340620934963, 0.009115414693951607, 0.01933613047003746, 0.025137923657894135, 0.022907650098204613, 0.031916506588459015], [0.17326810956001282, 0.13135133683681488, 0.242970809340477, 0.10898085683584213, 0.02750818431377411, 0.0680653303861618, 0.003113165497779846, 0.00896274484694004, 0.09048771858215332, 0.006018065381795168, 0.015656571835279465, 0.035565536469221115, 0.0020494465716183186, 0.006103125866502523, 0.01167663186788559, 0.009029789827764034, 0.05919254943728447], [0.2926902174949646, 0.13678932189941406, 0.04789775237441063, 0.026008330285549164, 0.007970488630235195, 0.02025541663169861, 0.007859368808567524, 0.12335386872291565, 0.15670572221279144, 0.005855523515492678, 0.027749791741371155, 0.008959303610026836, 0.003706427989527583, 0.003476644167676568, 0.0034832917153835297, 0.007415648549795151, 0.11982285976409912], [0.21157123148441315, 0.019517263397574425, 0.005391857586801052, 0.006420148070901632, 0.0008940987754613161, 0.0031574838794767857, 0.0011618149001151323, 0.2074192315340042, 0.26527830958366394, 0.0016312404768541455, 0.0029793318826705217, 0.0016579229850322008, 0.0010355523554608226, 0.0007651904015801847, 0.0016296723624691367, 0.0065324921160936356, 0.2629570960998535], [0.10086333006620407, 0.04043850302696228, 0.06336106359958649, 0.06956925988197327, 0.014053556136786938, 0.04208793118596077, 0.010049941949546337, 0.023839600384235382, 0.043660201132297516, 0.022071635350584984, 0.04092884808778763, 0.0585818774998188, 0.08269033581018448, 0.0855441763997078, 0.07963062077760696, 0.1571822166442871, 0.06544698029756546], [0.12707668542861938, 0.0523548349738121, 0.26883453130722046, 0.040691524744033813, 0.010961726307868958, 0.1296394318342209, 0.01433053333312273, 0.014453519135713577, 0.034860480576753616, 0.019024686887860298, 0.024176517501473427, 0.027583064511418343, 0.037872590124607086, 0.02919812686741352, 0.06729917228221893, 0.05900665372610092, 0.04263603314757347], [0.24688754975795746, 0.030769459903240204, 0.047778595238924026, 0.010946054011583328, 0.0031167911365628242, 0.029011135920882225, 0.0037711665499955416, 0.01944924332201481, 0.11189188808202744, 0.03106481395661831, 0.044395435601472855, 0.0172080360352993, 0.06188589334487915, 0.05043267086148262, 0.08090803027153015, 0.06390834599733353, 0.1465749889612198], [0.0705142617225647, 0.022703805938363075, 0.058183036744594574, 0.009261778555810452, 0.004325672518461943, 0.012400595471262932, 0.0015944127226248384, 0.007076756563037634, 0.026688102632761, 0.026559725403785706, 0.050885822623968124, 0.21843144297599792, 0.04302094131708145, 0.16049493849277496, 0.19344812631607056, 0.057423289865255356, 0.03698739409446716], [0.07891872525215149, 0.014068239368498325, 0.0841895118355751, 0.007075081579387188, 0.0031340019777417183, 0.009126100689172745, 0.003642712952569127, 0.021879103034734726, 0.05461389571428299, 0.011178506538271904, 0.04127843677997589, 0.04643681272864342, 0.1468726247549057, 0.061722252517938614, 0.3135157823562622, 0.020892739295959473, 0.0814552828669548], [0.044050343334674835, 0.015222175046801567, 0.19471687078475952, 0.007659707218408585, 0.0031954178120940924, 0.015198113396763802, 0.0015721445670351386, 0.004193637054413557, 0.02555701695382595, 0.004130168817937374, 0.01765613816678524, 0.020457418635487556, 0.06887971609830856, 0.30653172731399536, 0.22313055396080017, 0.015358373522758484, 0.03249046206474304], [0.0655519887804985, 0.026019321754574776, 0.1586287021636963, 0.03197231888771057, 0.009207548573613167, 0.034353431314229965, 0.004972562193870544, 0.005005646031349897, 0.027446508407592773, 0.04562034457921982, 0.12475969642400742, 0.08526258915662766, 0.0796908289194107, 0.06958846002817154, 0.12920702993869781, 0.05237547308206558, 0.05033749341964722], [0.20587339997291565, 0.010222149081528187, 0.0022830842062830925, 0.002935391617938876, 0.000358555291313678, 0.0013521627988666296, 0.0005329405539669096, 0.18011945486068726, 0.24020645022392273, 0.0021221372298896313, 0.0032666781917214394, 0.0015231661964207888, 0.0011074128560721874, 0.0008529155747964978, 0.001629339880309999, 0.007295794319361448, 0.3383190631866455]], [[0.05956319347023964, 0.00179675268009305, 0.017128366976976395, 0.0016953638987615705, 0.0006857583066448569, 0.0016695238882675767, 0.0007776255952194333, 0.024795446544885635, 0.0002714041620492935, 0.04412422329187393, 0.13379958271980286, 0.09820152819156647, 0.1267201006412506, 0.07335173338651657, 0.19282320141792297, 0.22087225317955017, 0.0017239977605640888], [0.23613636195659637, 0.14318731427192688, 0.05672837048768997, 0.07801620662212372, 0.027653949335217476, 0.05892806127667427, 0.014872346073389053, 0.016281506046652794, 0.2645290493965149, 0.0012800769181922078, 0.006285484414547682, 0.0018658335320651531, 0.005999637767672539, 0.000898213591426611, 0.0020877092611044645, 0.008333098143339157, 0.0769166573882103], [0.21454371511936188, 0.1391931027173996, 0.040841612964868546, 0.0954454243183136, 0.08106456696987152, 0.0962277501821518, 0.046839989721775055, 0.02815232053399086, 0.09633154422044754, 0.017318041995167732, 0.02717973105609417, 0.010474808514118195, 0.02076856605708599, 0.0034293895587325096, 0.009962289594113827, 0.028956621885299683, 0.043270375579595566], [0.20170310139656067, 0.1908068209886551, 0.06540999561548233, 0.045815546065568924, 0.042473193258047104, 0.08222468197345734, 0.016856539994478226, 0.011652784422039986, 0.2298145741224289, 0.004043226130306721, 0.008136386051774025, 0.0031762518920004368, 0.011258060112595558, 0.0014403003733605146, 0.0037828453350812197, 0.006951686926186085, 0.07445399463176727], [0.19613812863826752, 0.1202336922287941, 0.011509637348353863, 0.011758795939385891, 0.006277972832322121, 0.013663249090313911, 0.005513791926205158, 0.008629501797258854, 0.47911304235458374, 0.000780194706749171, 0.0014525118749588728, 0.0008472095360048115, 0.0028031363617628813, 0.00034791469806805253, 0.0009374889195896685, 0.0015715241897851229, 0.1384221911430359], [0.2702300548553467, 0.1306772381067276, 0.02260442264378071, 0.03576706349849701, 0.021464085206389427, 0.014047701843082905, 0.016266534104943275, 0.02396782673895359, 0.3145864009857178, 0.001972568454220891, 0.005951384082436562, 0.003608008148148656, 0.00783790647983551, 0.0014839855721220374, 0.00308221485465765, 0.005734744947403669, 0.12071798741817474], [0.3473818302154541, 0.19484259188175201, 0.05956964194774628, 0.03729168325662613, 0.017642799764871597, 0.03212764486670494, 0.005095197819173336, 0.009113706648349762, 0.18504053354263306, 0.0014740314800292253, 0.009163438342511654, 0.002339687431231141, 0.015544865280389786, 0.0010590697638690472, 0.0033047597389668226, 0.006495994981378317, 0.07251261919736862], [0.14215287566184998, 0.10905203223228455, 0.13271881639957428, 0.06678072363138199, 0.055062223225831985, 0.20480968058109283, 0.02073928527534008, 0.00976736843585968, 0.10605435073375702, 0.008199530653655529, 0.0198756642639637, 0.006681375205516815, 0.020344208925962448, 0.007610614411532879, 0.019918302074074745, 0.01168823055922985, 0.05854463577270508], [0.11422670632600784, 0.03828209638595581, 0.00507381884381175, 0.004419131204485893, 0.009561950340867043, 0.01285400427877903, 0.002909034490585327, 0.01814098097383976, 0.3899940252304077, 0.0029826404061168432, 0.004728056490421295, 0.005474678706377745, 0.005925028584897518, 0.0015272676246240735, 0.005571904592216015, 0.006338297855108976, 0.37199029326438904], [0.011238610371947289, 0.00045380022493191063, 0.004181951750069857, 0.0003760939580388367, 0.00017070409376174212, 0.0002088031469611451, 0.00023954050266183913, 0.010314065031707287, 1.3955426766187884e-05, 0.14375847578048706, 0.1389721781015396, 0.15650571882724762, 0.18927054107189178, 0.039405226707458496, 0.14734160900115967, 0.15737663209438324, 0.00017208002100232989], [0.031784750521183014, 0.0015507922507822514, 0.013885190710425377, 0.0018220108468085527, 0.0005439352826215327, 0.0008825199911370873, 0.00027660062187351286, 0.0069628870114684105, 4.4935241021448746e-05, 0.0813266858458519, 0.05959245562553406, 0.13896241784095764, 0.26633715629577637, 0.03404557704925537, 0.1678851842880249, 0.19371803104877472, 0.0003788716858252883], [0.08621974289417267, 0.003574413014575839, 0.007178200408816338, 0.0013829863164573908, 0.0004100213118363172, 0.0005498532555066049, 0.0007883554790169001, 0.037121593952178955, 0.00038770571700297296, 0.10483808070421219, 0.19522158801555634, 0.046983249485492706, 0.1087883785367012, 0.05557802692055702, 0.13681387901306152, 0.21160779893398285, 0.0025560909416526556], [0.022168036550283432, 0.0011089545441791415, 0.00752820260822773, 0.0009223827510140836, 0.00025024719070643187, 0.0004022939538117498, 0.0004331802192609757, 0.01542576216161251, 8.430749585386366e-05, 0.2691948413848877, 0.20285631716251373, 0.07688498497009277, 0.07929836958646774, 0.06059287488460541, 0.12732230126857758, 0.13470827043056488, 0.0008186959894374013], [0.038268525153398514, 0.002309854608029127, 0.0049010575748980045, 0.0006654354510828853, 0.00024545693304389715, 0.0005895740468986332, 0.0006904510082677007, 0.03247307613492012, 0.0001754794648149982, 0.11549419909715652, 0.17119476199150085, 0.09577608853578568, 0.1899692863225937, 0.024540485814213753, 0.10692265629768372, 0.21435683965682983, 0.0014267897931858897], [0.04470892250537872, 0.00579972704872489, 0.014608947560191154, 0.00284426542930305, 0.0014223706675693393, 0.0019662072882056236, 0.0019196448847651482, 0.03656250983476639, 0.0006488657672889531, 0.08809281885623932, 0.16689829528331757, 0.06508523225784302, 0.2711290419101715, 0.05329497531056404, 0.08856726437807083, 0.15377938747406006, 0.0026714380364865065], [0.0324103944003582, 0.002985625062137842, 0.019528495147824287, 0.0015649838605895638, 0.0010861161863431334, 0.004385427106171846, 0.0005067905294708908, 0.012419597245752811, 0.00014126817404758185, 0.1578301042318344, 0.1078701913356781, 0.11344996094703674, 0.17818157374858856, 0.050234604626894, 0.19941255450248718, 0.11708803474903107, 0.0009043181780725718], [0.14372624456882477, 0.018153995275497437, 0.008819352835416794, 0.0026029872242361307, 0.005939857102930546, 0.0091972341760993, 0.0020077270455658436, 0.06999135762453079, 0.058347154408693314, 0.0631398931145668, 0.054393865168094635, 0.08901600539684296, 0.07086573541164398, 0.022017978131771088, 0.0889204666018486, 0.0838044062256813, 0.20905570685863495]], [[0.06590607762336731, 0.08417094498872757, 0.030377818271517754, 0.04855623096227646, 0.030268382281064987, 0.04047302156686783, 0.09107440710067749, 0.05338447913527489, 0.06584428995847702, 0.20143471658229828, 0.04430174082517624, 0.00801195576786995, 0.022194521501660347, 0.023148616775870323, 0.03382888436317444, 0.09049656242132187, 0.06652738153934479], [0.06757715344429016, 0.0675671249628067, 0.09888757020235062, 0.2440209537744522, 0.024376049637794495, 0.06080688163638115, 0.02390352077782154, 0.03119654394686222, 0.06538015604019165, 0.028339162468910217, 0.06321700662374496, 0.015988469123840332, 0.005243256688117981, 0.01828606240451336, 0.020151490345597267, 0.11210758984088898, 0.05295104905962944], [0.07708651572465897, 0.0774746686220169, 0.21630482375621796, 0.11478409171104431, 0.0349455252289772, 0.1190795749425888, 0.005108577664941549, 0.07545206695795059, 0.08367180824279785, 0.008812044747173786, 0.02605229988694191, 0.005950480699539185, 0.003843178739771247, 0.018045805394649506, 0.03252892568707466, 0.03702116757631302, 0.06383847445249557], [0.07453086972236633, 0.08956724405288696, 0.037647850811481476, 0.034554578363895416, 0.20350435376167297, 0.15637822449207306, 0.10547322779893875, 0.04996996000409126, 0.04764339700341225, 0.058809179812669754, 0.022429628297686577, 0.025113781914114952, 0.021163804456591606, 0.004183787386864424, 0.01920655556023121, 0.01042927335947752, 0.039394330233335495], [0.0946265459060669, 0.07392112910747528, 0.008441055193543434, 0.11359913647174835, 0.16658742725849152, 0.16855019330978394, 0.051401760429143906, 0.04358818382024765, 0.07750405371189117, 0.018604621291160583, 0.015648480504751205, 0.03786034137010574, 0.012400555424392223, 0.01631971262395382, 0.01638578251004219, 0.020027238875627518, 0.0645337924361229], [0.03593434393405914, 0.05929824337363243, 0.07843022793531418, 0.11796325445175171, 0.3195796310901642, 0.1901479810476303, 0.028238395228981972, 0.016250809654593468, 0.026243215426802635, 0.02494652383029461, 0.005341187585145235, 0.01654711924493313, 0.04616314545273781, 0.00026560816331766546, 0.0020785636734217405, 0.012440221384167671, 0.020131448283791542], [0.19025366008281708, 0.07703237235546112, 0.0106458505615592, 0.15518680214881897, 0.057999636977910995, 0.06947861611843109, 0.010456075891852379, 0.05313672497868538, 0.13994288444519043, 0.022877782583236694, 0.01409536600112915, 0.04498327150940895, 0.006965731270611286, 0.005847529973834753, 0.007901111617684364, 0.02862342819571495, 0.104573093354702], [0.09631843119859695, 0.10552708804607391, 0.06001431122422218, 0.16572625935077667, 0.053799256682395935, 0.03079824335873127, 0.02580343745648861, 0.043431080877780914, 0.07854826003313065, 0.10692145675420761, 0.04204757884144783, 0.021169226616621017, 0.013394113630056381, 0.020619424059987068, 0.018860729411244392, 0.03934461623430252, 0.07767646759748459], [0.058672234416007996, 0.0571172721683979, 0.037414152175188065, 0.08807271718978882, 0.0670572891831398, 0.0643443614244461, 0.07295747101306915, 0.05352793261408806, 0.03435320034623146, 0.07669932395219803, 0.09463126957416534, 0.07032759487628937, 0.05824226513504982, 0.043223559856414795, 0.026333792135119438, 0.06254377216100693, 0.03448179364204407], [0.027944881469011307, 0.0242831539362669, 0.012918280437588692, 0.16402386128902435, 0.03439036011695862, 0.015647124499082565, 0.010424001142382622, 0.030613740906119347, 0.025048082694411278, 0.048907581716775894, 0.06153663620352745, 0.05295651778578758, 0.03979042172431946, 0.01695133186876774, 0.01767057552933693, 0.38970163464546204, 0.02719184383749962], [0.03677641227841377, 0.023587673902511597, 0.14763346314430237, 0.042520828545093536, 0.008023045025765896, 0.006664303131401539, 0.006648252718150616, 0.01626436971127987, 0.03899155184626579, 0.03634963557124138, 0.06613592058420181, 0.011808985844254494, 0.00661960244178772, 0.019977176561951637, 0.034024834632873535, 0.46260493993759155, 0.035368964076042175], [0.053710758686065674, 0.01573863998055458, 0.000860692816786468, 0.08311107754707336, 0.23616304993629456, 0.029673194512724876, 0.04085135459899902, 0.019149426370859146, 0.052326127886772156, 0.11464853584766388, 0.02945755422115326, 0.021228795871138573, 0.09886714816093445, 0.018007831647992134, 0.016416052356362343, 0.11243856698274612, 0.057351112365722656], [0.07678169757127762, 0.03138824552297592, 0.0069891014136374, 0.024354055523872375, 0.030870748683810234, 0.020590312778949738, 0.011850254610180855, 0.03463532775640488, 0.08088368922472, 0.0854516327381134, 0.015365722589194775, 0.13927532732486725, 0.0662253275513649, 0.10883750021457672, 0.08844134211540222, 0.10394864529371262, 0.07411099970340729], [0.04260123893618584, 0.013429353944957256, 0.08451063185930252, 0.005342602264136076, 0.006419896148145199, 0.00040298490785062313, 0.011343014426529408, 0.009916880168020725, 0.04078890383243561, 0.030210701748728752, 0.028912976384162903, 0.05181695520877838, 0.020043091848492622, 0.20750917494297028, 0.39034661650657654, 0.016455737873911858, 0.03994926065206528], [0.09958776086568832, 0.024511493742465973, 0.12924376130104065, 0.020699242129921913, 0.004476725589483976, 0.002866498427465558, 0.012254253029823303, 0.022414108738303185, 0.08055975288152695, 0.018432436510920525, 0.03394339606165886, 0.055974170565605164, 0.02398219332098961, 0.24533863365650177, 0.12275483459234238, 0.032687053084373474, 0.07027378678321838], [0.04026741534471512, 0.060288798063993454, 0.033687297254800797, 0.022989923134446144, 0.02891065925359726, 0.03710899502038956, 0.014900666661560535, 0.018785668537020683, 0.04191936179995537, 0.41869840025901794, 0.06691352277994156, 0.039353806525468826, 0.08412089943885803, 0.016768695786595345, 0.02231862023472786, 0.010441322810947895, 0.042525846511125565], [0.046111952513456345, 0.045371007174253464, 0.025911172851920128, 0.06766625493764877, 0.04622233286499977, 0.04765365645289421, 0.07085514813661575, 0.04710721969604492, 0.03205384686589241, 0.10139051079750061, 0.1182694137096405, 0.09717908501625061, 0.0740463063120842, 0.04925260320305824, 0.029989754781126976, 0.06561510264873505, 0.03530462458729744]], [[0.2920938730239868, 0.03843783959746361, 0.00454994710162282, 0.016129150986671448, 0.01057481486350298, 0.007902449928224087, 0.006613697856664658, 0.04029064252972603, 0.2139209657907486, 0.01930788718163967, 0.07602439820766449, 0.009178251959383488, 0.015704216435551643, 0.0034215927589684725, 0.0053702462464571, 0.04171208292245865, 0.19876797497272491], [0.23590433597564697, 0.09341491013765335, 0.0005686991498805583, 0.0005786936380900443, 0.00023391096328850836, 0.00042569151264615357, 0.0003405431052669883, 0.043897975236177444, 0.287322074174881, 0.0001553949696244672, 0.0351424366235733, 0.00034968854743056, 0.0008663987391628325, 0.00017870480951387435, 0.0009610105189494789, 0.0028025154024362564, 0.29685696959495544], [0.18811707198619843, 0.0016972137382254004, 0.18767330050468445, 0.00016323788440786302, 5.168560892343521e-05, 0.0009534471901133657, 8.584388706367463e-05, 0.1018204540014267, 0.25854259729385376, 0.0017019759397953749, 0.004170809872448444, 1.5877159967203625e-05, 0.00018002472643274814, 0.0009695717017166317, 0.009097996167838573, 0.0026784855872392654, 0.24208037555217743], [0.28926950693130493, 0.0015674886526539922, 9.536379366181791e-05, 0.07221740484237671, 0.0005470728501677513, 0.0002228240336989984, 0.0010531652951613069, 0.019259821623563766, 0.3193008303642273, 0.002631148789077997, 0.0011153884697705507, 0.00145718886051327, 0.00030278589110821486, 0.0006343895802274346, 0.0008347824914380908, 0.05843406915664673, 0.231056809425354], [0.20780760049819946, 0.0005846386193297803, 1.0100829967996106e-05, 0.0006643246742896736, 0.17330071330070496, 5.8346362493466586e-05, 0.00034883408807218075, 0.005748165771365166, 0.3434559404850006, 0.002203787211328745, 0.0006029244395904243, 0.0016555625479668379, 0.0005708352546207607, 4.940937287756242e-05, 1.6163879990926944e-05, 0.0005727290408685803, 0.2623499035835266], [0.3277789354324341, 0.001324411015957594, 0.00033646103111095726, 0.000353420851752162, 0.00025029273820109665, 0.03000376746058464, 4.544815055851359e-06, 0.007027946412563324, 0.3152473270893097, 0.0009667730773799121, 0.00019890819385182112, 4.651370181818493e-05, 7.607298175571486e-05, 0.0006661259103566408, 0.00017799067427404225, 0.0018292013555765152, 0.3137113153934479], [0.2296553999185562, 0.0009228094131685793, 3.078273221035488e-05, 0.0019436333095654845, 0.0003447277413215488, 2.3380230231850874e-06, 0.13296885788440704, 0.0057099550031125546, 0.3332619071006775, 0.012380699627101421, 0.0022470541298389435, 0.0030546793714165688, 0.001296443399041891, 0.00011021554382750764, 2.0596973627107218e-05, 0.0009140309994108975, 0.2751358449459076], [0.3935525417327881, 0.10131669789552689, 0.0077517409808933735, 0.01885724999010563, 0.005897756200283766, 0.0032082691323012114, 0.0014689310919493437, 0.019251234829425812, 0.1920815259218216, 0.003723181551322341, 0.015901226550340652, 0.0061441585421562195, 0.005703573115170002, 0.0019398258300498128, 0.0024472379591315985, 0.017573729157447815, 0.2031809538602829], [0.3139020502567291, 0.04612087458372116, 0.034567691385746, 0.018136130645871162, 0.014624722301959991, 0.03642646223306656, 0.0028493322897702456, 0.06824260950088501, 0.15243707597255707, 0.011110741645097733, 0.01596137136220932, 0.005699531175196171, 0.0139088723808527, 0.00915519054979086, 0.017806829884648323, 0.028394008055329323, 0.21065641939640045], [0.3952358067035675, 0.0018169309478253126, 0.0006401372374966741, 0.0022998496424406767, 0.00395448412746191, 0.0013010089751332998, 0.006638898979872465, 0.010611708275973797, 0.17060349881649017, 0.22119642794132233, 0.00010934696911135688, 0.0006643557571806014, 3.328196544316597e-05, 9.428051271243021e-05, 0.0008516028174199164, 0.0016511741559952497, 0.18229711055755615], [0.32721415162086487, 0.09639663249254227, 0.0016054569277912378, 0.0004703406593762338, 0.0002142055018339306, 0.00013674484216608107, 0.0007460075430572033, 0.013670305721461773, 0.14843612909317017, 0.00010933079465758055, 0.24741867184638977, 5.6484659580746666e-05, 0.0003197313053533435, 6.398563982656924e-06, 9.052497625816613e-05, 0.0010705945314839482, 0.16203829646110535], [0.30754250288009644, 0.0009476087288931012, 3.085290927629103e-06, 0.001100786030292511, 0.000625999120529741, 5.30617508047726e-05, 0.0006682449020445347, 0.004559790715575218, 0.23483937978744507, 0.00020654189574997872, 3.1595060136169195e-05, 0.28347548842430115, 1.4062512491364032e-05, 6.494088665931486e-06, 2.4871154892025515e-05, 0.000385942286811769, 0.1655144989490509], [0.22668159008026123, 0.0026423290837556124, 2.5871360776363872e-05, 0.0003170525305904448, 0.0018173913704231381, 0.00018161829211749136, 0.0013966673286631703, 0.010686048306524754, 0.2911210060119629, 0.00011430634185671806, 0.0010190752800554037, 0.00011227899085497484, 0.22408342361450195, 0.00010809279046952724, 9.568055247655138e-05, 0.0019795112311840057, 0.23761805891990662], [0.22935882210731506, 0.001239060889929533, 0.0002068211615551263, 0.0007138069486245513, 0.00012699555372819304, 0.0002493307401891798, 3.352266867295839e-05, 0.004078928846865892, 0.21864815056324005, 2.8114787710364908e-05, 9.27734981814865e-06, 1.0227522579953074e-05, 4.4142485421616584e-05, 0.38679930567741394, 0.0003356502566020936, 0.0004880965279880911, 0.15762969851493835], [0.4362337291240692, 0.0049179838970303535, 0.003379747038707137, 0.000696059491019696, 5.3383315389510244e-05, 0.0001347169018117711, 4.089279173058458e-05, 0.017139635980129242, 0.27210748195648193, 0.0005381380906328559, 0.00010418159945402294, 3.7957102904329076e-05, 6.06112735113129e-05, 0.0007822462357580662, 0.0652136504650116, 0.0005113249644637108, 0.19804832339286804], [0.33256620168685913, 0.0036038111429661512, 0.0003811477217823267, 0.008409728296101093, 0.00041850630077533424, 0.00026936628273688257, 0.00011917229858227074, 0.010657011531293392, 0.31702518463134766, 0.0003735825594048947, 0.00045285469968803227, 0.00014789750275667757, 0.00029891918529756367, 0.00028292369097471237, 9.962243348127231e-05, 0.0935000404715538, 0.2313941866159439], [0.327828586101532, 0.039426300674676895, 0.018262511119246483, 0.011622877791523933, 0.011556536890566349, 0.03138080611824989, 0.002868588315322995, 0.0779644176363945, 0.22032298147678375, 0.011494921520352364, 0.01386911328881979, 0.0033865408040583134, 0.008826795034110546, 0.006341163069009781, 0.011007431894540787, 0.020613398402929306, 0.18322715163230896]], [[0.22404423356056213, 0.009187303483486176, 0.030839409679174423, 0.003122019814327359, 0.00626831641420722, 0.0075899092480540276, 0.001497644349001348, 0.016502829268574715, 0.11780377477407455, 0.1815018355846405, 0.010765873827040195, 0.024326590821146965, 0.016497954726219177, 0.010893646627664566, 0.015117834322154522, 0.018350284546613693, 0.3056905269622803], [0.2127855122089386, 0.028610223904252052, 0.011633998714387417, 0.022930029779672623, 0.0068074800074100494, 0.01159227266907692, 0.006404152140021324, 0.16352684795856476, 0.30165189504623413, 0.00226025958545506, 0.004792015999555588, 0.004492836073040962, 0.0010328976204618812, 0.0008022096590138972, 0.002699598204344511, 0.005397929809987545, 0.2125798463821411], [0.24353277683258057, 0.04662283882498741, 0.05093754455447197, 0.016677314415574074, 0.006513838656246662, 0.010542158037424088, 0.005945499986410141, 0.07141199707984924, 0.26227810978889465, 0.0038042343221604824, 0.004336316138505936, 0.005305994302034378, 0.0013808937510475516, 0.00198767171241343, 0.007124859374016523, 0.004154199734330177, 0.2574436068534851], [0.2752525210380554, 0.04256882891058922, 0.008304232731461525, 0.04304187372326851, 0.0323055200278759, 0.014715862460434437, 0.006687971297651529, 0.2134365737438202, 0.19429191946983337, 0.0024805362336337566, 0.005857239011675119, 0.01179262064397335, 0.002238689921796322, 0.0008794603636488318, 0.005074869375675917, 0.004582161549478769, 0.13648924231529236], [0.32165247201919556, 0.0450129359960556, 0.011882772669196129, 0.09307406097650528, 0.04269018396735191, 0.03969000279903412, 0.01161148026585579, 0.1484362930059433, 0.1635918766260147, 0.001413102843798697, 0.0033588726073503494, 0.00589297479018569, 0.002967578824609518, 0.0005604822654277086, 0.0030677730683237314, 0.006309079471975565, 0.09878811985254288], [0.18568414449691772, 0.09832528978586197, 0.03872985765337944, 0.13517391681671143, 0.11998328566551208, 0.03997296094894409, 0.031380970031023026, 0.12693044543266296, 0.09478933364152908, 0.0026213431265205145, 0.013192687183618546, 0.018202470615506172, 0.007382223382592201, 0.0019618868827819824, 0.013418799266219139, 0.005354241002351046, 0.06689624488353729], [0.16496127843856812, 0.047331273555755615, 0.009102138690650463, 0.06733017414808273, 0.035812873393297195, 0.030542360618710518, 0.006878948770463467, 0.31680160760879517, 0.17043671011924744, 0.003096112282946706, 0.006595946848392487, 0.012208394706249237, 0.0016734598902985454, 0.00037642274401150644, 0.0032162696588784456, 0.008693660609424114, 0.11494236439466476], [0.19085519015789032, 0.06018442288041115, 0.011834525503218174, 0.08649411052465439, 0.019225798547267914, 0.011613625101745129, 0.012696342542767525, 0.19684702157974243, 0.20097532868385315, 0.006559760309755802, 0.019277941435575485, 0.008613570593297482, 0.004053181037306786, 0.00227136118337512, 0.006634105462580919, 0.024815760552883148, 0.13704797625541687], [0.30690258741378784, 0.02679472230374813, 0.011255483143031597, 0.02604091912508011, 0.012265798635780811, 0.00618348503485322, 0.004539648536592722, 0.09630091488361359, 0.2539031207561493, 0.006021426524966955, 0.011271647177636623, 0.007742289453744888, 0.0027321702800691128, 0.0017309455433860421, 0.0032706332858651876, 0.013799375854432583, 0.20924486219882965], [0.20987045764923096, 0.005762506276369095, 0.0012960791354998946, 0.009004318155348301, 0.001947010401636362, 0.0025654539931565523, 0.0050395093858242035, 0.21396028995513916, 0.17319928109645844, 0.005859806668013334, 0.017655963078141212, 0.013937211595475674, 0.012490552850067616, 0.003946955315768719, 0.007475710939615965, 0.0757952332496643, 0.24019363522529602], [0.29504281282424927, 0.011301913298666477, 0.007198079489171505, 0.010319914668798447, 0.005185090471059084, 0.004785916768014431, 0.002487111371010542, 0.11605797708034515, 0.18971474468708038, 0.011346149258315563, 0.006001610308885574, 0.013856709003448486, 0.003458983963355422, 0.001941423979587853, 0.006526427809149027, 0.03637920320034027, 0.27839601039886475], [0.3753051161766052, 0.017154471948742867, 0.0019981185905635357, 0.036559104919433594, 0.005707910284399986, 0.003839462297037244, 0.003966993652284145, 0.15112626552581787, 0.11763722449541092, 0.004961076658219099, 0.029356716200709343, 0.015592940151691437, 0.009380440227687359, 0.0031562307849526405, 0.010151279158890247, 0.07818426191806793, 0.1359224170446396], [0.26478636264801025, 0.021863367408514023, 0.002591127762570977, 0.013034133240580559, 0.004433171823620796, 0.0015097843715921044, 0.0042487927712500095, 0.30276185274124146, 0.15307000279426575, 0.002136186696588993, 0.014849446713924408, 0.016725076362490654, 0.0025098377373069525, 0.0032316420692950487, 0.004887160379439592, 0.013315770775079727, 0.1740463227033615], [0.3923172056674957, 0.0379229411482811, 0.004498607944697142, 0.01900322549045086, 0.009744742885231972, 0.0049546645022928715, 0.006934881675988436, 0.18183450400829315, 0.07574349641799927, 0.002829605480656028, 0.03242478519678116, 0.03320515528321266, 0.021991034969687462, 0.0008035348728299141, 0.059604462236166, 0.019003497436642647, 0.0971836969256401], [0.32964029908180237, 0.02343744784593582, 0.004301612265408039, 0.014635363593697548, 0.0034210134763270617, 0.005026042461395264, 0.007740766741335392, 0.174477681517601, 0.1553230732679367, 0.0029629396740347147, 0.033561501652002335, 0.008458543568849564, 0.004247010685503483, 0.00549670634791255, 0.008897955529391766, 0.029893584549427032, 0.1884784996509552], [0.3046429753303528, 0.02137015387415886, 0.005005453247576952, 0.015783295035362244, 0.009150386787950993, 0.003989753313362598, 0.0032189199700951576, 0.13954909145832062, 0.14953553676605225, 0.011478420346975327, 0.02154521830379963, 0.03223951533436775, 0.007771638687700033, 0.0027041954454034567, 0.019880862906575203, 0.019679173827171326, 0.23245543241500854], [0.2823575437068939, 0.016558093950152397, 0.007606648374348879, 0.01545813400298357, 0.005638604983687401, 0.0032766794320195913, 0.0029583959840238094, 0.09284613281488419, 0.22527742385864258, 0.011906598694622517, 0.015356337651610374, 0.012299875728785992, 0.00417743343859911, 0.0033858788665384054, 0.00439974432811141, 0.026879584416747093, 0.26961687207221985]], [[0.09703102707862854, 0.03220197558403015, 0.005146260838955641, 0.019691308960318565, 0.0015193107537925243, 0.013793233782052994, 0.002776895882561803, 0.06201622262597084, 0.3223714232444763, 0.02474409155547619, 0.00466509722173214, 0.004022928886115551, 0.002097614575177431, 0.0042184083722531796, 0.0014336570166051388, 0.030124951153993607, 0.37214547395706177], [0.17076697945594788, 0.0997667908668518, 0.02683289907872677, 0.015133483335375786, 0.01018153689801693, 0.01725509762763977, 0.011523970402777195, 0.07351073622703552, 0.16353842616081238, 0.043221037834882736, 0.14786438643932343, 0.009291380643844604, 0.0054242853075265884, 0.003237460507079959, 0.003805671352893114, 0.026077480986714363, 0.17256835103034973], [0.2783249318599701, 0.02409948594868183, 0.03177265450358391, 0.0024664346128702164, 0.0008172832312993705, 0.0029011291917413473, 0.001166883739642799, 0.09870889782905579, 0.19315457344055176, 0.0034173615276813507, 0.02178138494491577, 0.0017446019919589162, 0.0021276427432894707, 0.045160967856645584, 0.03221365436911583, 0.012858804315328598, 0.24728335440158844], [0.26640909910202026, 0.009586221538484097, 0.005568946711719036, 0.049182627350091934, 0.002268919488415122, 0.02529790624976158, 0.005396824795752764, 0.04639700427651405, 0.21966488659381866, 0.016346022486686707, 0.0019607350695878267, 0.0046170842833817005, 0.0024304187390953302, 0.005317733157426119, 0.004196048714220524, 0.09821679443120956, 0.2371426671743393], [0.25860005617141724, 0.014897421933710575, 0.0019000177271664143, 0.00768154626712203, 0.00138087198138237, 0.01306932047009468, 0.004856158513575792, 0.10667171329259872, 0.2330295592546463, 0.0030923134181648493, 0.0032360360492020845, 0.008482899516820908, 0.0058883060701191425, 0.006939415819942951, 0.005025846417993307, 0.036787211894989014, 0.2884610891342163], [0.299007385969162, 0.013951770961284637, 0.008937290869653225, 0.01354428380727768, 0.0009622995858080685, 0.006932614836841822, 0.002046124078333378, 0.12154050916433334, 0.20369122922420502, 0.004640206228941679, 0.006814151536673307, 0.00821527186781168, 0.0071725440211594105, 0.009322093799710274, 0.006301621440798044, 0.0319623239338398, 0.2549581825733185], [0.26717832684516907, 0.021424047648906708, 0.005397978704422712, 0.007558157667517662, 0.0014462074032053351, 0.013391975313425064, 0.003012719564139843, 0.055652618408203125, 0.2632453143596649, 0.005558896344155073, 0.004034125711768866, 0.002607528818771243, 0.002253395738080144, 0.0027265259996056557, 0.0017540052067488432, 0.017231985926628113, 0.3255261182785034], [0.0903635323047638, 0.04783948138356209, 0.021035343408584595, 0.03132093325257301, 0.03722129389643669, 0.05907224491238594, 0.013983873650431633, 0.11372509598731995, 0.0825207456946373, 0.13152764737606049, 0.011705374345183372, 0.021000642329454422, 0.05724185332655907, 0.046011146157979965, 0.02264517918229103, 0.0858134999871254, 0.12697207927703857], [0.10567986965179443, 0.029719671234488487, 0.016413334757089615, 0.011662883684039116, 0.02987338788807392, 0.047923047095537186, 0.01618053950369358, 0.16713537275791168, 0.12307479977607727, 0.023399515077471733, 0.015143640339374542, 0.02448997274041176, 0.03629350662231445, 0.06455422192811966, 0.018759675323963165, 0.0634353831410408, 0.2062610685825348], [0.31985634565353394, 0.03799072653055191, 0.0038136872462928295, 0.043138500303030014, 0.0222634207457304, 0.05659031867980957, 0.021846959367394447, 0.16525664925575256, 0.09792320430278778, 0.004200590308755636, 0.008484791032969952, 0.01640312373638153, 0.006441842298954725, 0.010949919931590557, 0.000888711423613131, 0.03805716708302498, 0.14589402079582214], [0.23613311350345612, 0.22397688031196594, 0.05252093821763992, 0.023578016087412834, 0.0063842060044407845, 0.007359006442129612, 0.006432905327528715, 0.07066486775875092, 0.07237928360700607, 0.016607576981186867, 0.17710672318935394, 0.00237080454826355, 0.0007672299980185926, 0.002227987162768841, 0.001268949476070702, 0.016797464340925217, 0.08342400193214417], [0.4162965714931488, 0.023703033104538918, 0.005078424233943224, 0.00811045989394188, 0.00425873976200819, 0.021713633090257645, 0.004882904700934887, 0.09108726680278778, 0.16075964272022247, 0.0061604930087924, 0.0031443138141185045, 0.002245415234938264, 0.005060181953012943, 0.005507911089807749, 0.002887589391320944, 0.021300330758094788, 0.21780315041542053], [0.27463674545288086, 0.017799386754631996, 0.03629354387521744, 0.00939211342483759, 0.00317370449192822, 0.01879732683300972, 0.005804486107081175, 0.11809951812028885, 0.19079633057117462, 0.003336308291181922, 0.0040556928142905235, 0.008462403900921345, 0.002116583986207843, 0.004215013701468706, 0.00417370954528451, 0.04174119606614113, 0.2571059763431549], [0.3024560511112213, 0.032547786831855774, 0.040002916008234024, 0.012277884408831596, 0.0030880861449986696, 0.01899184100329876, 0.004788948222994804, 0.15415412187576294, 0.14186060428619385, 0.0017129492480307817, 0.005325031466782093, 0.00914151594042778, 0.006560756359249353, 0.0046642497181892395, 0.010934620164334774, 0.057021237909793854, 0.19447149336338043], [0.30245688557624817, 0.021099543198943138, 0.030815938487648964, 0.003993559628725052, 0.0021287144627422094, 0.026269113644957542, 0.0024147252552211285, 0.1673903614282608, 0.17521771788597107, 0.0005891172331757843, 0.004202599171549082, 0.002888341899961233, 0.0014854454202577472, 0.006945270113646984, 0.000805056479293853, 0.011658421717584133, 0.23963919281959534], [0.2843210697174072, 0.03152967616915703, 0.003723833477124572, 0.06585222482681274, 0.003251809859648347, 0.011879992671310902, 0.003824991174042225, 0.06839574873447418, 0.17949014902114868, 0.027393124997615814, 0.003633933374658227, 0.0034882931504398584, 0.0015915933763608336, 0.014812763780355453, 0.009673142805695534, 0.08029397577047348, 0.20684362947940826], [0.10668598115444183, 0.02907514199614525, 0.021513856947422028, 0.012126919813454151, 0.03529800474643707, 0.049412794411182404, 0.01754113845527172, 0.17067867517471313, 0.11266523599624634, 0.02353556454181671, 0.015040814876556396, 0.024802949279546738, 0.04028703272342682, 0.07297728210687637, 0.02032008022069931, 0.0635015144944191, 0.18453703820705414]]], [[[0.010973572731018066, 0.014845030382275581, 0.022055495530366898, 0.0026220425497740507, 0.007935742847621441, 0.01486633438616991, 0.009585713967680931, 0.02672129124403, 0.5104263424873352, 0.0002145023172488436, 0.0013254826189950109, 0.00035148864844813943, 0.0007792221149429679, 0.0006743393023498356, 0.000960935780312866, 0.0017869849689304829, 0.3738754391670227], [0.016189008951187134, 0.01502901315689087, 0.40647879242897034, 0.005121450871229172, 0.11581943929195404, 0.14942428469657898, 0.13546043634414673, 0.015917088836431503, 0.04806835576891899, 0.0008404847467318177, 0.0022975471802055836, 0.0048073758371174335, 0.010099419392645359, 0.00848411675542593, 0.023126358166337013, 0.005578957032412291, 0.03725787252187729], [0.02789466083049774, 0.028451690450310707, 0.027696767821907997, 0.000520958739798516, 0.01085966918617487, 0.03831902891397476, 0.030618218705058098, 0.01882346160709858, 0.42063966393470764, 0.0006749082240276039, 0.0015658607007935643, 0.0037833349779248238, 0.0038365276996046305, 0.005655630957335234, 0.011002609506249428, 0.0018818125827237964, 0.3677752614021301], [0.014665553346276283, 0.4109187424182892, 0.1008564829826355, 0.0032074612099677324, 0.0436251126229763, 0.1706613004207611, 0.06259061396121979, 0.012122035957872868, 0.08356226235628128, 0.008915208280086517, 0.0058303349651396275, 0.007323183119297028, 0.006034854333847761, 0.0032316127326339483, 0.002881755819544196, 0.0003940360329579562, 0.0631793811917305], [0.01300919521600008, 0.2089272290468216, 0.06511922180652618, 0.023526335135102272, 0.029193414375185966, 0.25744959712028503, 0.1908273845911026, 0.022318068891763687, 0.0692194476723671, 0.0011302514467388391, 0.0022162070963531733, 0.00935986079275608, 0.0033115744590759277, 0.008103566244244576, 0.03962770849466324, 0.0007054639863781631, 0.055955443531274796], [0.047366488724946976, 0.07275886833667755, 0.14623956382274628, 0.16915209591388702, 0.051790446043014526, 0.02008923329412937, 0.06735452264547348, 0.09909037500619888, 0.11704691499471664, 0.0017620933940634131, 0.0060837347991764545, 0.004070416558533907, 0.014515632763504982, 0.006130069959908724, 0.06684812158346176, 0.005031967535614967, 0.10466952621936798], [0.018365757539868355, 0.05502869933843613, 0.031771980226039886, 0.7670526504516602, 0.034072138369083405, 0.04932161048054695, 0.0013193270424380898, 0.018009938299655914, 0.008231310173869133, 0.0006400452693924308, 0.001183435320854187, 0.0021507628262043, 0.0015978373121470213, 0.0008830464212223887, 0.003773536765947938, 0.0003717515792232007, 0.00622624671086669], [0.04401952400803566, 0.03226006031036377, 0.14829698204994202, 0.02315174601972103, 0.06532474607229233, 0.12351652979850769, 0.01807529293000698, 0.051587626338005066, 0.23651264607906342, 0.008278613910079002, 0.012150119058787823, 0.008223667740821838, 0.006942181382328272, 0.00701279379427433, 0.018046025186777115, 0.004645165055990219, 0.19195625185966492], [0.008014025166630745, 0.002453271532431245, 0.002284110290929675, 0.0005950079066678882, 0.0009291530004702508, 0.0014843737008050084, 0.0009571752743795514, 0.009511671029031277, 0.512028157711029, 0.00048043765127658844, 0.0004840755427721888, 0.0005090604536235332, 0.000877571408636868, 0.000561970635317266, 0.0005855957278981805, 0.002642277395352721, 0.45560210943222046], [0.05893915519118309, 0.004959069192409515, 0.09357424080371857, 0.00190543953794986, 0.009960702620446682, 0.04426253214478493, 0.015621045604348183, 0.00938519649207592, 0.19872264564037323, 0.0016963587841019034, 0.04343685135245323, 0.023814281448721886, 0.02632875181734562, 0.036393698304891586, 0.1093456894159317, 0.04231872782111168, 0.2793356478214264], [0.01992052234709263, 0.006161093711853027, 0.007589926477521658, 0.00046238701906986535, 0.005520354025065899, 0.024907352402806282, 0.012775149196386337, 0.005661738570779562, 0.32653382420539856, 0.0020882582757622004, 0.0021655098535120487, 0.015465816482901573, 0.03194478154182434, 0.030286500230431557, 0.07281152158975601, 0.01618834026157856, 0.4195168912410736], [0.036059796810150146, 0.010527840815484524, 0.004981519654393196, 0.0029798285104334354, 0.0007715271203778684, 0.006110026966780424, 0.0034477165900170803, 0.010959194973111153, 0.20585474371910095, 0.00044907856499776244, 0.010765604674816132, 0.0028897759038954973, 0.1274241805076599, 0.15617790818214417, 0.0760139673948288, 0.041925206780433655, 0.3026621341705322], [0.016502052545547485, 0.003211716189980507, 0.004133071284741163, 0.0006781511474400759, 0.002640243386849761, 0.01132307667285204, 0.003016370115801692, 0.008973664604127407, 0.13929511606693268, 0.00045586933265440166, 0.004585266578942537, 0.009204753674566746, 0.04407932609319687, 0.3028356432914734, 0.2534273862838745, 0.0154296038672328, 0.1802086979150772], [0.028918199241161346, 0.004348126705735922, 0.004228840582072735, 0.002513051498681307, 0.0009302482358179986, 0.0009891161462292075, 0.0013943141093477607, 0.0123847471550107, 0.05579974129796028, 0.010748859494924545, 0.011472832411527634, 0.006188303232192993, 0.015000557526946068, 0.006573528982698917, 0.013217327184975147, 0.7583897113800049, 0.06690241396427155], [0.03434761241078377, 0.004570739809423685, 0.009555219672620296, 0.0029089529998600483, 0.0013298295671120286, 0.002127466257661581, 0.0007698537083342671, 0.03190582990646362, 0.03863202780485153, 0.005823454353958368, 0.01081096287816763, 0.004527913872152567, 0.016536278650164604, 0.012182661332190037, 0.011118763126432896, 0.7706246376037598, 0.04222780838608742], [0.03200674429535866, 0.009288210421800613, 0.029990360140800476, 0.000543253670912236, 0.007822990417480469, 0.017453720793128014, 0.0022451900877058506, 0.011948894709348679, 0.023673368617892265, 0.6120604276657104, 0.1465435028076172, 0.014453024603426456, 0.028639061376452446, 0.009268267080187798, 0.01893697865307331, 0.00406336085870862, 0.031062575057148933], [0.00889130961149931, 0.001662836642935872, 0.0015882020816206932, 0.0004541071830317378, 0.0006766048027202487, 0.0011294177966192365, 0.000691256660502404, 0.007943513803184032, 0.48110243678092957, 0.000716417795047164, 0.0006372368079610169, 0.0007312323432415724, 0.0012041775044053793, 0.0008390186703763902, 0.0008140855352394283, 0.003646201454102993, 0.48727190494537354]], [[0.12759742140769958, 0.002641474362462759, 0.018322398886084557, 0.0009617983014322817, 0.0003980716865044087, 0.0021033675875514746, 0.0011466017458587885, 0.005177818238735199, 0.2399589568376541, 0.029403721913695335, 0.04501628875732422, 0.013487356714904308, 0.05238167569041252, 0.03203549608588219, 0.01721315085887909, 0.05518418923020363, 0.35697028040885925], [0.05798911675810814, 0.01655115932226181, 0.21509882807731628, 0.0039933170191943645, 0.0006378262769430876, 0.009745080024003983, 0.0018475927645340562, 0.030218685045838356, 0.33957552909851074, 0.0006990835536271334, 0.0030042503494769335, 0.0016487378161400557, 0.0037539382465183735, 0.0025319443084299564, 0.004574748687446117, 0.005559454206377268, 0.30257076025009155], [0.011131302453577518, 0.0037082000635564327, 0.3892751932144165, 0.004684797488152981, 0.0028307328466326, 0.013075975701212883, 0.005537704098969698, 0.007429618388414383, 0.2873665988445282, 0.0012595867738127708, 0.001423293026164174, 0.0009203414665535092, 0.0012776433723047376, 0.001001540687866509, 0.0014781435020267963, 0.003450704738497734, 0.2641487717628479], [0.07821319252252579, 0.034390296787023544, 0.08508602529764175, 0.0049172090366482735, 0.0010389633243903518, 0.023218179121613503, 0.00403863238170743, 0.03876839578151703, 0.3807511329650879, 0.0012927333591505885, 0.004972738213837147, 0.003812238108366728, 0.001470681163482368, 0.00024343901895917952, 0.0005249351379461586, 0.005401398986577988, 0.3318597376346588], [0.04820982366800308, 0.026434097439050674, 0.04411632567644119, 0.00512579595670104, 0.0006215384928509593, 0.018394887447357178, 0.005331367254257202, 0.11766041815280914, 0.3907431364059448, 0.0009903975296765566, 0.0023226693738251925, 0.002586232963949442, 0.0006157384486868978, 6.950420356588438e-05, 0.00017569551710039377, 0.003024033736437559, 0.3335783779621124], [0.09430507570505142, 0.026930296793580055, 0.039912737905979156, 0.005324020516127348, 0.0009463638998568058, 0.017952777445316315, 0.0044166757725179195, 0.03244282305240631, 0.4042772650718689, 0.0015575711149722338, 0.011453396640717983, 0.0009170050616376102, 0.0017110316548496485, 9.99456096906215e-05, 0.0005563996382988989, 0.007068190723657608, 0.35012832283973694], [0.014356883242726326, 0.013352934271097183, 0.011027355678379536, 0.002892084186896682, 0.00046779081458225846, 0.0040612113662064075, 0.0005426998832263052, 0.03641800582408905, 0.4880227744579315, 0.0008454924100078642, 0.00048002315452322364, 0.0008909572497941554, 0.0009645803365856409, 0.00021340344392228872, 0.0007506029214709997, 0.004851281177252531, 0.4198618233203888], [0.08017683774232864, 0.031582266092300415, 0.1411472111940384, 0.00836728885769844, 0.0022520816419273615, 0.014069038443267345, 0.005743908695876598, 0.04028191789984703, 0.33867013454437256, 0.0017679514130577445, 0.0040212357416749, 0.003211193485185504, 0.004232272505760193, 0.0037808921188116074, 0.003924116957932711, 0.006890976335853338, 0.30988073348999023], [0.09928568452596664, 0.01973758265376091, 0.03508320450782776, 0.00711445277556777, 0.0009905463084578514, 0.0034138828050345182, 0.002053978154435754, 0.11052355915307999, 0.325686514377594, 0.0039240955375134945, 0.006915200036019087, 0.004005827009677887, 0.0034744315780699253, 0.0010585907148197293, 0.0023890682496130466, 0.012573249638080597, 0.36177003383636475], [0.14523206651210785, 0.004370057489722967, 0.00713363429531455, 0.000566799018997699, 0.0002683750935830176, 0.002279791748151183, 0.0010023448849096894, 0.01880032569169998, 0.33974114060401917, 0.0034246111754328012, 0.011534811928868294, 0.0038573420606553555, 0.00985016580671072, 0.0008040035027079284, 0.0012686030240729451, 0.014856799505650997, 0.43500906229019165], [0.10187390446662903, 0.008110197260975838, 0.4530135989189148, 0.0032188883051276207, 0.0011650349479168653, 0.01108372863382101, 0.0020951619371771812, 0.008180157281458378, 0.1476217806339264, 0.0054847379215061665, 0.010686046443879604, 0.011580334044992924, 0.029445620253682137, 0.010921631939709187, 0.01596014015376568, 0.012294610030949116, 0.16726449131965637], [0.07199853658676147, 0.005378678906708956, 0.001824289676733315, 0.0007286925683729351, 5.777660044259392e-05, 0.0007411994156427681, 0.0003564495127648115, 0.00934547744691372, 0.3786395192146301, 0.0059769367799162865, 0.011746933683753014, 0.0029733304399996996, 0.012123722583055496, 0.002662101062014699, 0.014138547703623772, 0.016141939908266068, 0.4651659429073334], [0.04819687083363533, 0.007004470564424992, 0.002005811780691147, 0.0011418426875025034, 0.00014645527699030936, 0.0006488825310952961, 0.00036462140269577503, 0.01453134510666132, 0.38899460434913635, 0.00808185338973999, 0.002570420503616333, 0.01464450266212225, 0.00245995563454926, 0.0044882227666676044, 0.007807701360434294, 0.015765361487865448, 0.48114702105522156], [0.0028171250596642494, 0.0002581830194685608, 0.010321768000721931, 0.0002449669409543276, 7.836687473172788e-06, 1.269724452868104e-05, 2.6008741770056076e-05, 0.0007407551165670156, 0.10632429271936417, 0.0020097922533750534, 0.00014643576287198812, 0.0008298148750327528, 0.005793146789073944, 0.09056054055690765, 0.6389860510826111, 0.0015513580292463303, 0.13936926424503326], [0.022478634491562843, 0.0018809805624186993, 0.03874971345067024, 0.0013490472920238972, 0.00017873753677122295, 0.00021559018932748586, 0.0003060683375224471, 0.006406242027878761, 0.3428303301334381, 0.004524475894868374, 0.0020458821672946215, 0.002325686626136303, 0.011292899027466774, 0.0387813001871109, 0.08969075232744217, 0.009814504534006119, 0.4271290600299835], [0.1784118115901947, 0.013392035849392414, 0.031874459236860275, 0.001495323027484119, 0.00045151100493967533, 0.007161801680922508, 0.0009671953157521784, 0.015159158036112785, 0.3048873245716095, 0.00976563896983862, 0.01224400382488966, 0.00756114674732089, 0.017550110816955566, 0.006095872260630131, 0.005096809938549995, 0.02016581781208515, 0.3677200376987457], [0.10374398529529572, 0.016477977856993675, 0.02411801367998123, 0.005720147863030434, 0.0007447206880897284, 0.00245878123678267, 0.0017309562535956502, 0.09839294850826263, 0.32528623938560486, 0.005455663427710533, 0.008655020967125893, 0.004578886087983847, 0.00449566962197423, 0.0012366364244371653, 0.0026502416003495455, 0.015306497924029827, 0.37894758582115173]], [[0.03353704512119293, 0.004694098141044378, 0.025402426719665527, 0.006758269853889942, 0.009840640239417553, 0.024118728935718536, 0.012706905603408813, 0.03391854465007782, 0.3314789831638336, 0.021580014377832413, 0.011276914738118649, 0.009882969781756401, 0.00516238808631897, 0.0021049596834927797, 0.007396898698061705, 0.01761094108223915, 0.4425293207168579], [0.013683877885341644, 0.027670934796333313, 0.03765421733260155, 0.021852822974324226, 0.005495890974998474, 0.02996671013534069, 0.08865571767091751, 0.03588790073990822, 0.39578983187675476, 0.007235392462462187, 0.0030585213098675013, 0.0010365747148171067, 0.0016964009264484048, 0.000606441986747086, 0.009456994011998177, 0.006040855310857296, 0.31421080231666565], [0.025705086067318916, 0.04889628291130066, 0.07281841337680817, 0.0016010240651667118, 0.0006987453089095652, 0.006124191917479038, 0.01375453919172287, 0.02647683396935463, 0.3953234851360321, 0.004304227419197559, 0.0031535611487925053, 0.0004450964042916894, 0.0011390179861336946, 0.0006755361100658774, 0.024200377985835075, 0.004302963148802519, 0.3703804612159729], [0.01923833042383194, 0.09826676547527313, 0.06297760456800461, 0.015220953151583672, 0.006857878994196653, 0.007348500192165375, 0.012302327901124954, 0.028309660032391548, 0.3820899724960327, 0.0483933724462986, 0.0027331318706274033, 0.0028866578359156847, 0.0007129637524485588, 0.0004307494964450598, 0.0022417716681957245, 0.0015804794384166598, 0.3084089159965515], [0.007056498900055885, 0.04310993477702141, 0.05480656027793884, 0.43375951051712036, 0.013916335999965668, 0.0050793858245015144, 0.013597850687801838, 0.023951562121510506, 0.20993900299072266, 0.005971364211291075, 0.0009546459186822176, 0.0027351337485015392, 4.728916610474698e-05, 0.000718635565135628, 0.0022134140599519014, 0.0011169197969138622, 0.18102595210075378], [0.003572630463168025, 0.017683137208223343, 0.07362271100282669, 0.7128459811210632, 0.05613403767347336, 0.0027720273938030005, 0.014338690787553787, 0.008431363850831985, 0.053321585059165955, 0.0013619221281260252, 0.0001982022513402626, 0.00039412450860254467, 5.013330883230083e-05, 5.638580478262156e-05, 0.0007312584784813225, 0.0002478231326676905, 0.05423804000020027], [0.0020653174724429846, 0.01215394027531147, 0.006761945318430662, 0.9123800992965698, 0.020709101110696793, 0.0011311762500554323, 0.00029579075635410845, 0.0023370953276753426, 0.020108764991164207, 0.0026155223604291677, 0.00025410830858163536, 0.0005855978233739734, 1.1566933608264662e-05, 8.825767872622237e-05, 0.00012408426846377552, 9.855776443146169e-05, 0.018279030919075012], [0.04648226499557495, 0.02777552604675293, 0.03084980510175228, 0.05609253793954849, 0.039116088300943375, 0.27781447768211365, 0.022532960399985313, 0.05209442600607872, 0.21780811250209808, 0.009599275887012482, 0.0040978435426950455, 0.003034740686416626, 0.0017333821160718799, 0.0013580142986029387, 0.004341691732406616, 0.0055438741110265255, 0.1997249573469162], [0.021380115300416946, 0.007451274432241917, 0.02679167129099369, 0.009715354070067406, 0.01041471492499113, 0.02453741803765297, 0.022088997066020966, 0.0370662659406662, 0.36317312717437744, 0.01284188125282526, 0.010637428611516953, 0.01088764052838087, 0.006658137310296297, 0.0060299355536699295, 0.0230949018150568, 0.01575629413127899, 0.3914748430252075], [0.008759306743741035, 0.0017021362436935306, 0.0030789608135819435, 0.0022681960836052895, 0.0004023327201139182, 0.019204553216695786, 0.009455198422074318, 0.03205280378460884, 0.39825835824012756, 0.02105966955423355, 0.005749039817601442, 0.002790131140500307, 0.00196623126976192, 0.001175210578367114, 0.0037712149787694216, 0.0052514155395329, 0.48305514454841614], [0.013387811370193958, 0.004353857599198818, 0.009090623818337917, 0.0037649269215762615, 0.0017662190366536379, 0.01526618655771017, 0.012045747600495815, 0.0251274686306715, 0.3874477446079254, 0.08490371704101562, 0.002081465907394886, 0.0017140712589025497, 0.000830847246106714, 0.0007690382190048695, 0.00365238799713552, 0.00841774232685566, 0.4253802001476288], [0.016170823946595192, 0.00860834401100874, 0.0013970256550237536, 0.030484246090054512, 0.002820461755618453, 0.00030802551191300154, 0.004427966196089983, 0.013040955178439617, 0.1426769196987152, 0.08620618283748627, 0.011666359379887581, 0.032822202891111374, 0.23797467350959778, 0.06326288729906082, 0.0210683923214674, 0.1790618747472763, 0.1480027139186859], [0.013409675098955631, 0.0016358235152438283, 0.000607586232945323, 0.0022632814943790436, 0.00014700574683956802, 0.002604493172839284, 0.0004976140917278826, 0.007984621450304985, 0.13281553983688354, 0.045495904982089996, 0.009842057712376118, 0.05439065396785736, 0.042849864810705185, 0.3019333779811859, 0.07328135520219803, 0.16856414079666138, 0.14167706668376923], [0.02218128740787506, 0.021137135103344917, 0.003321901196613908, 0.015765530988574028, 0.0027436725795269012, 0.0002585668698884547, 0.005819383542984724, 0.012072925455868244, 0.2434394657611847, 0.07781201601028442, 0.12173343449831009, 0.01955941878259182, 0.03972085937857628, 0.0325206033885479, 0.027027705684304237, 0.0850103497505188, 0.269875705242157], [0.04302673786878586, 0.01941583678126335, 0.006394318770617247, 0.009697443805634975, 0.0006676638731732965, 0.00038252034573815763, 0.0006676221964880824, 0.008733977563679218, 0.15230520069599152, 0.05339881032705307, 0.09822818636894226, 0.04369979351758957, 0.03310321271419525, 0.1294233649969101, 0.0293069276958704, 0.205490380525589, 0.16605804860591888], [0.03028547763824463, 0.004970422480255365, 0.0024086711928248405, 0.0006666664266958833, 0.00012095970305381343, 0.0019201028626412153, 0.00012939599400851876, 0.004376744385808706, 0.04789287596940994, 0.6670366525650024, 0.14895570278167725, 0.010437785647809505, 0.005437977612018585, 0.0013922702055424452, 0.0025613312609493732, 0.005723379552364349, 0.06568364053964615], [0.021704891696572304, 0.006437145639210939, 0.024342045187950134, 0.00929927546530962, 0.010311801917850971, 0.020022470504045486, 0.018554266542196274, 0.03209354728460312, 0.3309526741504669, 0.017253145575523376, 0.01439250260591507, 0.018619323149323463, 0.011425826698541641, 0.010454332455992699, 0.036537181586027145, 0.02314048819243908, 0.39445915818214417]], [[0.015340819023549557, 0.039972566068172455, 0.173325315117836, 0.08965891599655151, 0.20859722793102264, 0.19164416193962097, 0.1145470142364502, 0.04613492265343666, 0.0662824958562851, 0.0008031209581531584, 0.0031141480430960655, 0.001587149454280734, 0.0017294768476858735, 0.0008746676030568779, 0.003912828397005796, 0.001216887729242444, 0.0412583164870739], [0.10709633678197861, 0.07283935695886612, 0.15425942838191986, 0.04153507202863693, 0.017221730202436447, 0.05370108783245087, 0.03696885332465172, 0.12750950455665588, 0.2103251814842224, 0.004115224815905094, 0.0036073909141123295, 0.0016724473098292947, 0.0033570046070963144, 0.0027165482752025127, 0.004280829336494207, 0.006954418495297432, 0.15183955430984497], [0.14431950449943542, 0.07073533535003662, 0.01710463874042034, 0.015207719057798386, 0.03428482264280319, 0.05912376940250397, 0.010197699069976807, 0.05737580731511116, 0.28605106472969055, 0.010608941316604614, 0.00594597402960062, 0.0006583124632015824, 0.010156827978789806, 0.003376911161467433, 0.006534238811582327, 0.004466262646019459, 0.26385220885276794], [0.08174649626016617, 0.057545844465494156, 0.07483689486980438, 0.007350401487201452, 0.003945960663259029, 0.03843236342072487, 0.018390337005257607, 0.0839841365814209, 0.334446519613266, 0.0011158331762999296, 0.0026339907199144363, 0.0006781599950045347, 0.0012645306997001171, 0.0019380846060812473, 0.003171138698235154, 0.01854158751666546, 0.26997771859169006], [0.06425239145755768, 0.035323187708854675, 0.09783182293176651, 0.03267088904976845, 0.01850711926817894, 0.15324881672859192, 0.030414724722504616, 0.06134774535894394, 0.2496424913406372, 0.0014450299786403775, 0.0016293092630803585, 0.0008701831102371216, 0.001944629242643714, 0.0036254243459552526, 0.006345509551465511, 0.007463006302714348, 0.23343759775161743], [0.04493410140275955, 0.07069997489452362, 0.075708769261837, 0.012936316430568695, 0.06519918888807297, 0.06192650645971298, 0.072085902094841, 0.1528291553258896, 0.18797913193702698, 0.0017491821199655533, 0.003069923259317875, 0.0013769040815532207, 0.008406654000282288, 0.013589076697826385, 0.018448323011398315, 0.03519933298230171, 0.173861563205719], [0.08976485580205917, 0.06796978414058685, 0.043668922036886215, 0.02196810208261013, 0.028072841465473175, 0.08977725356817245, 0.025965522974729538, 0.11346259713172913, 0.2186966836452484, 0.0037033664993941784, 0.002970197005197406, 0.001287805032916367, 0.002708122134208679, 0.00792046170681715, 0.021867603063583374, 0.08752845227718353, 0.17266739904880524], [0.09163565188646317, 0.029838059097528458, 0.06207060441374779, 0.034162405878305435, 0.011816048063337803, 0.04278750717639923, 0.03643510490655899, 0.07961342483758926, 0.31168997287750244, 0.011864416301250458, 0.006808191072195768, 0.001561734126880765, 0.0042076497338712215, 0.0066185323521494865, 0.010175579227507114, 0.0249174814671278, 0.23379768431186676], [0.055009081959724426, 0.016647810116410255, 0.032131969928741455, 0.022200580686330795, 0.023030877113342285, 0.0218951478600502, 0.022324176505208015, 0.06163572892546654, 0.310249388217926, 0.012168697081506252, 0.011409128084778786, 0.019892089068889618, 0.014376652427017689, 0.021667052060365677, 0.023300351575016975, 0.04172728583216667, 0.29033398628234863], [0.1711912453174591, 0.010623871348798275, 0.011231782846152782, 0.003477185033261776, 0.0017342083156108856, 0.005840560887008905, 0.009801999665796757, 0.06413424015045166, 0.276796817779541, 0.019873522222042084, 0.060984332114458084, 0.025610795244574547, 0.010124742984771729, 0.005425992421805859, 0.010943528264760971, 0.005278751719743013, 0.3069263696670532], [0.26481521129608154, 0.009488977491855621, 0.015699239447712898, 0.0005160804721526802, 0.00034936791053041816, 0.0016722793225198984, 0.0015524107730016112, 0.0413542240858078, 0.26811230182647705, 0.030595878139138222, 0.023074021562933922, 0.005258235614746809, 0.016411537304520607, 0.005732754245400429, 0.006106399931013584, 0.018263444304466248, 0.2909976840019226], [0.12795551121234894, 0.013441663235425949, 0.004942802712321281, 0.002160585718229413, 0.0010796907590702176, 0.0038911595474928617, 0.0012969158124178648, 0.017203569412231445, 0.2819002866744995, 0.06505705416202545, 0.06328089535236359, 0.007845091633498669, 0.040057312697172165, 0.017944490537047386, 0.018586907535791397, 0.022392813116312027, 0.3109632730484009], [0.13007551431655884, 0.015273413620889187, 0.012284835800528526, 0.0038090432062745094, 0.0016354549443349242, 0.005744705442339182, 0.0016458057798445225, 0.03220919519662857, 0.24617919325828552, 0.024126902222633362, 0.09028711915016174, 0.043389659374952316, 0.013567181304097176, 0.0170480664819479, 0.05928710475564003, 0.025768481194972992, 0.277668297290802], [0.15170516073703766, 0.01491902582347393, 0.02569616213440895, 0.025702238082885742, 0.006355874240398407, 0.025803154334425926, 0.004133834969252348, 0.02999289706349373, 0.19618767499923706, 0.020703846588730812, 0.06998427957296371, 0.017897240817546844, 0.029291734099388123, 0.023805996403098106, 0.06463689357042313, 0.018756501376628876, 0.2744275629520416], [0.15583063662052155, 0.01573105715215206, 0.022779693827033043, 0.014888818375766277, 0.003644403303042054, 0.017298415303230286, 0.004269361961632967, 0.02750309184193611, 0.16951683163642883, 0.031332943588495255, 0.05508267506957054, 0.007559443823993206, 0.08190315961837769, 0.07170398533344269, 0.03221050649881363, 0.032327037304639816, 0.25641801953315735], [0.18699736893177032, 0.002329472219571471, 0.021755244582891464, 0.01376196090131998, 0.000809724791906774, 0.010529701597988605, 0.0045575243420898914, 0.06504624336957932, 0.21019411087036133, 0.010116730816662312, 0.028706198558211327, 0.011727341450750828, 0.009715944528579712, 0.02404075674712658, 0.04453139379620552, 0.03886324167251587, 0.31631720066070557], [0.06448955088853836, 0.013963649980723858, 0.02917107380926609, 0.018412627279758453, 0.019564948976039886, 0.017242856323719025, 0.01677178405225277, 0.05014842748641968, 0.26806533336639404, 0.015491144731640816, 0.01348561979830265, 0.02619824931025505, 0.019132710993289948, 0.03409269452095032, 0.0333671048283577, 0.06559543311595917, 0.2948067784309387]], [[0.08785546571016312, 0.023154892027378082, 0.06429734826087952, 0.031786054372787476, 0.01862933672964573, 0.005499887280166149, 0.014141811057925224, 0.016133353114128113, 0.13085180521011353, 0.04257943853735924, 0.11620363593101501, 0.018868422135710716, 0.10987429320812225, 0.060715850442647934, 0.052005037665367126, 0.059579454362392426, 0.14782392978668213], [0.050355229526758194, 0.029105104506015778, 0.1870446503162384, 0.00807579793035984, 0.007529054768383503, 0.006330855656415224, 0.01622489094734192, 0.019295884296298027, 0.06541924923658371, 0.023559704422950745, 0.37408357858657837, 0.01484439056366682, 0.02336292155086994, 0.013132275082170963, 0.031180664896965027, 0.05434305593371391, 0.07611273229122162], [0.022724397480487823, 0.04422933980822563, 0.5426883697509766, 0.0024908646009862423, 0.0013878637691959739, 0.00812041386961937, 0.000753621687181294, 0.03339673578739166, 0.13236024975776672, 0.009963495656847954, 0.0060404203832149506, 0.0012752666370943189, 0.003757701488211751, 0.0022014561109244823, 0.0043153315782547, 0.014550285413861275, 0.16974428296089172], [0.09590562433004379, 0.03011862188577652, 0.019929463043808937, 0.016256431117653847, 0.03461933881044388, 0.12509606778621674, 0.048083506524562836, 0.029528716579079628, 0.13458402454853058, 0.022195324301719666, 0.1285013109445572, 0.01789618656039238, 0.03151247650384903, 0.015516906976699829, 0.02850770764052868, 0.0776928961277008, 0.1440553516149521], [0.07536934316158295, 0.009664124809205532, 0.0061071328818798065, 0.040697697550058365, 0.12455844134092331, 0.27005907893180847, 0.022782867774367332, 0.02231401391327381, 0.11287368088960648, 0.02343214675784111, 0.02277006208896637, 0.028779348358511925, 0.06950505077838898, 0.005047628190368414, 0.00668099382892251, 0.04103831946849823, 0.1183200478553772], [0.09464231878519058, 0.017008045688271523, 0.08113357424736023, 0.009828610345721245, 0.011414406821131706, 0.3514114320278168, 0.0028048157691955566, 0.022607969120144844, 0.1563003808259964, 0.017244970425963402, 0.0035932743921875954, 0.009811855852603912, 0.012112116441130638, 0.00018629043188411742, 0.0028494782745838165, 0.03587246686220169, 0.17117799818515778], [0.09787283092737198, 0.025256548076868057, 0.018364306539297104, 0.012211504392325878, 0.011416743509471416, 0.043396636843681335, 0.009356028400361538, 0.008607021532952785, 0.3004753589630127, 0.011029512621462345, 0.04762692749500275, 0.020061636343598366, 0.021751176565885544, 0.0032079427037388086, 0.0028403415344655514, 0.013647926971316338, 0.3528776168823242], [0.1900794953107834, 0.04235231876373291, 0.05770864710211754, 0.04342237114906311, 0.016603482887148857, 0.015736976638436317, 0.010431384667754173, 0.048416830599308014, 0.23508548736572266, 0.02296815626323223, 0.019949723035097122, 0.007292553782463074, 0.0045737349428236485, 0.004969010595232248, 0.002545671770349145, 0.04959002509713173, 0.2282741814851761], [0.11443354189395905, 0.026537958532571793, 0.04224732518196106, 0.02834514155983925, 0.01429543737322092, 0.01624898612499237, 0.016276659443974495, 0.03218364715576172, 0.21034273505210876, 0.03435136005282402, 0.023371227085590363, 0.024535851553082466, 0.05385018140077591, 0.02015874534845352, 0.03759355470538139, 0.07628673315048218, 0.22894097864627838], [0.10238467901945114, 0.009599142707884312, 0.051687631756067276, 0.021734952926635742, 0.030580295249819756, 0.13926364481449127, 0.019718030467629433, 0.013973359018564224, 0.13918884098529816, 0.050414979457855225, 0.008590475656092167, 0.02460332028567791, 0.10249323397874832, 0.02212272584438324, 0.055966947227716446, 0.05752737447619438, 0.15015044808387756], [0.01155109703540802, 0.3665461838245392, 0.4071566164493561, 0.0012388606555759907, 0.0016497502801939845, 0.00016208062879741192, 0.0007624436402693391, 0.02213725820183754, 0.024681735783815384, 0.0011338567128404975, 0.13830946385860443, 4.9935082643060014e-05, 5.2626295655500144e-05, 4.983631515642628e-05, 0.00015292532043531537, 0.0019380685407668352, 0.022427253425121307], [0.0988735631108284, 0.00810533668845892, 0.003693265374749899, 0.02403714507818222, 0.01930871233344078, 0.09083115309476852, 0.045186009258031845, 0.018657997250556946, 0.1284719854593277, 0.03536965325474739, 0.006351954769343138, 0.12163133919239044, 0.16789932548999786, 0.021654589101672173, 0.04068566858768463, 0.02959786169230938, 0.13964448869228363], [0.04811043664813042, 0.02305556833744049, 0.015595187433063984, 0.024432215839624405, 0.029340848326683044, 0.06254052370786667, 0.015492081642150879, 0.008921829983592033, 0.141980841755867, 0.05552118271589279, 0.0060678510926663876, 0.08895387500524521, 0.2157292515039444, 0.042491886764764786, 0.0706239864230156, 0.01184166967868805, 0.13930077850818634], [0.01191096380352974, 0.024347836151719093, 0.025750786066055298, 0.004004873801022768, 0.0018154301214963198, 0.00015546784561593086, 0.0013384380144998431, 0.008701673708856106, 0.11745009571313858, 0.0010557923233136535, 0.006696704309433699, 0.006256043445318937, 0.010908727534115314, 0.24774286150932312, 0.3984084129333496, 0.004950797185301781, 0.12850512564182281], [0.013543233275413513, 0.04978056252002716, 0.020450223237276077, 0.0015240791253745556, 0.0006331190816126764, 0.00042383544496260583, 0.0011867423309013247, 0.0089890006929636, 0.06815314292907715, 0.001464169123210013, 0.004446992184966803, 0.0030188108794391155, 0.004341593943536282, 0.4266420006752014, 0.32678458094596863, 0.003989062737673521, 0.06462882459163666], [0.15897759795188904, 0.03445937857031822, 0.04916132614016533, 0.020893627777695656, 0.04645692557096481, 0.11105263978242874, 0.049921754747629166, 0.021978070959448814, 0.14342592656612396, 0.026382392272353172, 0.01543849240988493, 0.026979804039001465, 0.02332753874361515, 0.056262921541929245, 0.056463100016117096, 0.024026915431022644, 0.13479170203208923], [0.12157228589057922, 0.027919812127947807, 0.03722265735268593, 0.029451880604028702, 0.015367691405117512, 0.016029197722673416, 0.01955902948975563, 0.03163148835301399, 0.20774368941783905, 0.03366883099079132, 0.022494222968816757, 0.026550494134426117, 0.05728454887866974, 0.02301979809999466, 0.03992536664009094, 0.0698113664984703, 0.22074756026268005]], [[0.1809348315000534, 0.033141739666461945, 0.06134340167045593, 0.02586374059319496, 0.05698597431182861, 0.04101647809147835, 0.004441611468791962, 0.10319960862398148, 0.1605917066335678, 0.04244471713900566, 0.020551731809973717, 0.019739849492907524, 0.008925075642764568, 0.006484847515821457, 0.007126779295504093, 0.05254935845732689, 0.17465852200984955], [0.15892164409160614, 0.028050478547811508, 0.07106715440750122, 0.013302326202392578, 0.007649114355444908, 0.02539973519742489, 0.010387849994003773, 0.07051824033260345, 0.2318175733089447, 0.014579078182578087, 0.03858432546257973, 0.018992438912391663, 0.011108368635177612, 0.010106214322149754, 0.011578834615647793, 0.03644125536084175, 0.24149538576602936], [0.22064755856990814, 0.020712655037641525, 0.012760325334966183, 0.001798607292585075, 0.0005470352480188012, 0.0029742869082838297, 0.0014105021255090833, 0.09252924472093582, 0.17975394427776337, 0.001134228310547769, 0.004774211905896664, 0.0027527494821697474, 0.007298382464796305, 0.03465916961431503, 0.21013043820858002, 0.016613628715276718, 0.18950308859348297], [0.12044814229011536, 0.025374386459589005, 0.04100681468844414, 0.01499580591917038, 0.006589438766241074, 0.029443036764860153, 0.0057571809738874435, 0.11901312321424484, 0.24544933438301086, 0.06079712137579918, 0.01924690417945385, 0.005409372039139271, 0.009470430202782154, 0.017526349052786827, 0.011250662617385387, 0.03778046742081642, 0.23044143617153168], [0.1839444488286972, 0.0174009520560503, 0.010004132054746151, 0.00861404836177826, 0.0006338510429486632, 0.002299963729456067, 0.0011391380103304982, 0.08039058744907379, 0.28471216559410095, 0.05869899317622185, 0.007503848988562822, 0.005337894428521395, 0.0030761451926082373, 0.0035611954517662525, 0.0022600397933274508, 0.049320802092552185, 0.281101793050766], [0.11486341059207916, 0.03624719753861427, 0.0134811382740736, 0.006569850258529186, 0.00294834328815341, 0.0005973271909169853, 0.003312266431748867, 0.12410323321819305, 0.26272472739219666, 0.05011356621980667, 0.006143853068351746, 0.0098728584125638, 0.007070998195558786, 0.04073260352015495, 0.0284722950309515, 0.03521924838423729, 0.25752702355384827], [0.08492541313171387, 0.02624005638062954, 0.027497906237840652, 0.01105910912156105, 0.0075006973929703236, 0.013003512285649776, 0.0016043659998103976, 0.0713658258318901, 0.360696405172348, 0.013685980811715126, 0.005241834092885256, 0.006291364319622517, 0.00592017499729991, 0.0056682005524635315, 0.0033997027203440666, 0.014159874059259892, 0.34173962473869324], [0.1624777913093567, 0.027494650334119797, 0.05821574851870537, 0.02999340370297432, 0.01853119768202305, 0.04037367179989815, 0.014206945896148682, 0.062569260597229, 0.2407609075307846, 0.029244987294077873, 0.01688460074365139, 0.01490802876651287, 0.006585956551134586, 0.004975704476237297, 0.005934206303209066, 0.03907892480492592, 0.22776396572589874], [0.13489772379398346, 0.025231139734387398, 0.04954930394887924, 0.018095532432198524, 0.01167614571750164, 0.024128669872879982, 0.012124291621148586, 0.04891978204250336, 0.2794085443019867, 0.014172542840242386, 0.009827866218984127, 0.01847536861896515, 0.01294876541942358, 0.020608723163604736, 0.024335220456123352, 0.019276799634099007, 0.2763236463069916], [0.1724925935268402, 0.013374142348766327, 0.003666842123493552, 0.02063440904021263, 0.03976757079362869, 0.0736643373966217, 0.0071897911839187145, 0.11219438165426254, 0.2592865824699402, 0.0073627387173473835, 0.00533401221036911, 0.005864250939339399, 0.0012766201980412006, 0.0010713671799749136, 0.0009084046469070017, 0.018872259184718132, 0.2570396363735199], [0.11329855769872665, 0.03443470597267151, 0.09738736599683762, 0.008637523278594017, 0.0037678724620491266, 0.015234452672302723, 0.004287968389689922, 0.1155705526471138, 0.29987820982933044, 0.0015607213135808706, 0.006748128216713667, 0.00410108920186758, 0.0005886416765861213, 0.001930480357259512, 0.004860387649387121, 0.00995497964322567, 0.2777583599090576], [0.13941368460655212, 0.02250714972615242, 0.017218532040715218, 0.011797267943620682, 0.006751397158950567, 0.035133786499500275, 0.008534512482583523, 0.08598820120096207, 0.2856442332267761, 0.020737716928124428, 0.00598968006670475, 0.0036782382521778345, 0.010901479981839657, 0.01046878844499588, 0.01310956384986639, 0.025129426270723343, 0.2969963252544403], [0.08463839441537857, 0.01270969957113266, 0.023268088698387146, 0.004411982372403145, 0.001581456046551466, 0.006553984247148037, 0.004063136409968138, 0.05127799138426781, 0.3887098729610443, 0.0012958789011463523, 0.0017608033958822489, 0.0032158505637198687, 0.0009611584828235209, 0.0022709595505148172, 0.0041665975004434586, 0.00840948149561882, 0.40070468187332153], [0.06317650526762009, 0.013546490110456944, 0.10369697213172913, 0.030292870476841927, 0.00045389420120045543, 0.025506222620606422, 0.0028651126194745302, 0.03794132545590401, 0.33888500928878784, 0.0013778435532003641, 0.003737699007615447, 0.006553072016686201, 0.003292630659416318, 0.00012181791680632159, 0.0015007142210379243, 0.029383007436990738, 0.337668776512146], [0.07858254015445709, 0.011650007218122482, 0.21158108115196228, 0.012160727754235268, 0.00045634384150616825, 0.016058901324868202, 0.0010243725264444947, 0.038150858134031296, 0.3007851243019104, 0.0011858895886689425, 0.0044764927588403225, 0.006565919145941734, 0.003261185484007001, 0.00033813808113336563, 0.0010404461063444614, 0.013363399542868137, 0.2993186116218567], [0.10067831724882126, 0.020996958017349243, 0.034526724368333817, 0.03736231103539467, 0.03129003942012787, 0.11438058316707611, 0.014055054634809494, 0.08983927965164185, 0.23418547213077545, 0.030118338763713837, 0.009555677883327007, 0.010188327170908451, 0.007669522427022457, 0.012831166386604309, 0.010416695848107338, 0.014109778217971325, 0.22779570519924164], [0.13072115182876587, 0.02590269036591053, 0.04422006383538246, 0.017026377841830254, 0.011821772903203964, 0.0222614798694849, 0.012583104893565178, 0.04756303131580353, 0.2808963358402252, 0.014840812422335148, 0.010037073865532875, 0.019958045333623886, 0.014719882979989052, 0.02412145584821701, 0.026685211807489395, 0.018039382994174957, 0.2786022424697876]], [[0.04505026340484619, 0.07827166467905045, 0.09604855626821518, 0.06703030318021774, 0.23643259704113007, 0.1305006593465805, 0.06686779856681824, 0.039583705365657806, 0.1435745507478714, 0.002423245459794998, 0.0014698203885927796, 0.0011046931613236666, 0.003745581489056349, 0.0023948117159307003, 0.0036148782819509506, 0.00675620511174202, 0.07513055205345154], [0.04302670806646347, 0.18307147920131683, 0.3858429193496704, 0.060169100761413574, 0.05653582885861397, 0.13165165483951569, 0.040114887058734894, 0.022694824263453484, 0.04527638107538223, 0.00038254389073699713, 0.001413798308931291, 0.0010469304397702217, 0.0012960820458829403, 0.0010233710054308176, 0.0024334387853741646, 0.0021251090802252293, 0.021894987672567368], [0.06647341698408127, 0.21464712917804718, 0.18111227452754974, 0.08106967806816101, 0.06356227397918701, 0.1531333029270172, 0.05150916799902916, 0.050863295793533325, 0.07258130609989166, 0.0009953025728464127, 0.0026850062422454357, 0.000850749434903264, 0.0038717202842235565, 0.002551537938416004, 0.007051249500364065, 0.004439063370227814, 0.042603474110364914], [0.03321882709860802, 0.04381920024752617, 0.4958009421825409, 0.03320477902889252, 0.04940241202712059, 0.2221946120262146, 0.0426170788705349, 0.016729939728975296, 0.028828183189034462, 0.0012910990044474602, 0.0011490392498672009, 0.0015459242276847363, 0.00342154991813004, 0.0014116587117314339, 0.002275099977850914, 0.005997054744511843, 0.017092492431402206], [0.02683352120220661, 0.04418424516916275, 0.2801573574542999, 0.02494996041059494, 0.09292231500148773, 0.3552698493003845, 0.09073033183813095, 0.01957930251955986, 0.029605014249682426, 0.0006485586054623127, 0.0009613399161025882, 0.002391634276136756, 0.005179325118660927, 0.0023970857728272676, 0.0023357386235147715, 0.003988428041338921, 0.017865970730781555], [0.037976719439029694, 0.10211415588855743, 0.4872848689556122, 0.02763751707971096, 0.0563923642039299, 0.12361831218004227, 0.043926745653152466, 0.03664442524313927, 0.03746054694056511, 0.0007798185106366873, 0.001410683966241777, 0.00242099491879344, 0.004327442497014999, 0.003006360959261656, 0.008761141449213028, 0.003939846530556679, 0.022298071533441544], [0.03187292441725731, 0.06969163566827774, 0.4894663393497467, 0.028749506920576096, 0.06464357674121857, 0.1943855881690979, 0.03190024942159653, 0.011887723580002785, 0.03328375518321991, 0.0006100916070863605, 0.0018650642596185207, 0.004422290716320276, 0.0026663593016564846, 0.002076885662972927, 0.003569720545783639, 0.007828420959413052, 0.02107987180352211], [0.099598728120327, 0.09981101751327515, 0.214353546500206, 0.07058857381343842, 0.0767793208360672, 0.14559821784496307, 0.0343535877764225, 0.06324350088834763, 0.09045762568712234, 0.003538709133863449, 0.005591178312897682, 0.0018577519804239273, 0.0047202627174556255, 0.005867878906428814, 0.008315022103488445, 0.012773307040333748, 0.06255174428224564], [0.07443418353796005, 0.061020322144031525, 0.0679527148604393, 0.043880853801965714, 0.07231029868125916, 0.09181582927703857, 0.06746522337198257, 0.026687515899538994, 0.13615556061267853, 0.020495878532528877, 0.013478260487318039, 0.030687518417835236, 0.035392433404922485, 0.04490387812256813, 0.04307127371430397, 0.05194752663373947, 0.11830070614814758], [0.006707136984914541, 0.0007751249358989298, 0.007154405117034912, 0.0008747496176511049, 0.008713368326425552, 0.017659800127148628, 0.004443692974746227, 0.0018326325807720423, 0.025456467643380165, 0.09875830262899399, 0.03879382088780403, 0.07041935622692108, 0.28564220666885376, 0.13473956286907196, 0.13820098340511322, 0.10802347958087921, 0.051804907619953156], [0.024382352828979492, 0.003080841153860092, 0.040075045078992844, 0.0006564279901795089, 0.00021732829918619245, 0.0028629901353269815, 0.0002489363250788301, 0.0104325320571661, 0.12660911679267883, 0.05459648743271828, 0.09873225539922714, 0.018078718334436417, 0.03541871905326843, 0.06448638439178467, 0.0915878489613533, 0.1710057109594345, 0.25752824544906616], [0.012275690212845802, 0.003109223674982786, 0.0065096900798380375, 0.0005955808446742594, 0.001726871239952743, 0.009039400145411491, 0.0035349258687347174, 0.0028183315880596638, 0.06100746616721153, 0.052785977721214294, 0.03861907869577408, 0.08222334086894989, 0.21188823878765106, 0.10806860774755478, 0.13078716397285461, 0.1616954505443573, 0.11331494897603989], [0.0070958007127046585, 0.0034747279714792967, 0.004522380884736776, 0.000441201264038682, 0.00252297380939126, 0.006314962636679411, 0.0031839117873460054, 0.0033157130237668753, 0.11163052171468735, 0.03220897167921066, 0.0360710509121418, 0.09017270058393478, 0.08811293542385101, 0.12983353435993195, 0.17740115523338318, 0.10423349589109421, 0.19946399331092834], [0.005360518582165241, 0.005920092575252056, 0.014196990989148617, 0.0020526512525975704, 0.0008544014417566359, 0.005424348171800375, 0.0019387701759114861, 0.0030925904866307974, 0.03941353037953377, 0.024063458666205406, 0.15672419965267181, 0.10631737858057022, 0.08241540938615799, 0.08744386583566666, 0.28911709785461426, 0.09944497048854828, 0.07621962577104568], [0.01063152588903904, 0.016026420518755913, 0.018201762810349464, 0.003788732923567295, 0.0016653469065204263, 0.013417461887001991, 0.006933057680726051, 0.009814702905714512, 0.0650595873594284, 0.023370452225208282, 0.08838334679603577, 0.1972845047712326, 0.07574187219142914, 0.11305368691682816, 0.15217573940753937, 0.09690532833337784, 0.10754647850990295], [0.007105095777660608, 0.002463369630277157, 0.0072436402551829815, 0.0020677070133388042, 0.0015495030675083399, 0.003229381749406457, 0.0027688222471624613, 0.0027251846622675657, 0.03658017888665199, 0.06451127678155899, 0.08186668902635574, 0.067957803606987, 0.13537313044071198, 0.15637332201004028, 0.17356529831886292, 0.1803516447544098, 0.0742679312825203], [0.05321567878127098, 0.030045511201024055, 0.03301960974931717, 0.02075480856001377, 0.03829619660973549, 0.047166064381599426, 0.03833368420600891, 0.016778869554400444, 0.1183844655752182, 0.04861001297831535, 0.02656489983201027, 0.05943974480032921, 0.0734231024980545, 0.08971790224313736, 0.07722220569849014, 0.09786650538444519, 0.13116073608398438]], [[0.10569038987159729, 0.004502948839217424, 0.024079453200101852, 0.0019498660694807768, 0.008209453895688057, 0.006098884157836437, 0.0007605664432048798, 0.00700840400531888, 0.1101892814040184, 0.17376708984375, 0.10775065422058105, 0.019746115431189537, 0.05785134434700012, 0.05345810577273369, 0.044767215847969055, 0.05876631289720535, 0.21540383994579315], [0.01661662384867668, 0.017693854868412018, 0.04413176700472832, 0.1434410661458969, 0.28888261318206787, 0.08839625120162964, 0.04850517585873604, 0.07484479993581772, 0.06788218021392822, 0.03543712571263313, 0.03158872574567795, 0.0029554632492363453, 0.013113525696098804, 0.00742218317463994, 0.014024225063621998, 0.04835288226604462, 0.056711506098508835], [0.04257485270500183, 0.021575259044766426, 0.05844569578766823, 0.06782323122024536, 0.2267894148826599, 0.2655283212661743, 0.047566529363393784, 0.03137277439236641, 0.025749782100319862, 0.03299620747566223, 0.02162506803870201, 0.008805074729025364, 0.017934827134013176, 0.01813795417547226, 0.04305272549390793, 0.04526890441775322, 0.02475348301231861], [0.007998867891728878, 0.04369574412703514, 0.04430621117353439, 0.013546271249651909, 0.516044020652771, 0.09230825304985046, 0.03511795401573181, 0.06353548169136047, 0.06222856417298317, 0.02697116695344448, 0.009595518000423908, 0.00516967847943306, 0.011450495570898056, 0.0069977170787751675, 0.007154654245823622, 0.004084578715264797, 0.04979473352432251], [0.013206902891397476, 0.06892095506191254, 0.06805934756994247, 0.022713949903845787, 0.18156558275222778, 0.06249779462814331, 0.019695373252034187, 0.07547712326049805, 0.24700523912906647, 0.031917136162519455, 0.005660418886691332, 0.001695773913525045, 0.002396519063040614, 0.0019424454076215625, 0.005785044748336077, 0.00648921076208353, 0.1849711686372757], [0.019461866468191147, 0.14723049104213715, 0.17949983477592468, 0.02210823819041252, 0.23121105134487152, 0.1149429976940155, 0.03185036778450012, 0.040695395320653915, 0.05639510601758957, 0.030490176752209663, 0.020482834428548813, 0.00451718270778656, 0.009721650741994381, 0.00874168612062931, 0.0168386772274971, 0.01832413487136364, 0.04748835042119026], [0.005909941624850035, 0.06017109751701355, 0.10025863349437714, 0.019689301028847694, 0.3750649094581604, 0.05171928182244301, 0.015745749697089195, 0.023602813482284546, 0.14339686930179596, 0.04924909770488739, 0.005327262915670872, 0.006825949065387249, 0.005076147615909576, 0.003422738751396537, 0.007243771106004715, 0.00904164370149374, 0.11825481802225113], [0.046112217009067535, 0.02968369424343109, 0.046950262039899826, 0.015041546896100044, 0.013082603923976421, 0.03571481630206108, 0.004960290621966124, 0.03936168923974037, 0.38922595977783203, 0.006581715773791075, 0.011494644917547703, 0.001759480801410973, 0.0034061535261571407, 0.0029946977738291025, 0.006316558923572302, 0.006861736532300711, 0.34045201539993286], [0.017157990485429764, 0.002983150305226445, 0.006804634816944599, 0.0027990450616925955, 0.0011747486423701048, 0.003979094792157412, 0.0017815124010667205, 0.010740444995462894, 0.4637400805950165, 0.0015114792622625828, 0.0017473289044573903, 0.002514385851100087, 0.0017765829106792808, 0.00416995445266366, 0.003151937620714307, 0.0027523667085915804, 0.47121521830558777], [0.031144404783844948, 0.0032304986380040646, 0.006225212477147579, 0.014562491327524185, 0.015543151646852493, 0.004616913851350546, 0.0017246290808543563, 0.07387255877256393, 0.1507762372493744, 0.07482866942882538, 0.04317133501172066, 0.0014033750630915165, 0.00862090103328228, 0.01879740133881569, 0.026756908744573593, 0.3351838290691376, 0.1895415335893631], [0.1371629387140274, 0.013908891938626766, 0.03474659100174904, 0.013529245741665363, 0.06299293786287308, 0.01617298647761345, 0.0051455372013151646, 0.027681633830070496, 0.07041380554437637, 0.20757271349430084, 0.011723799630999565, 0.0056944540701806545, 0.049169961363077164, 0.028415462002158165, 0.048320647329092026, 0.1753106266260147, 0.09203783422708511], [0.011123097501695156, 0.016143186017870903, 0.03923587501049042, 0.016816284507513046, 0.05433144420385361, 0.036057546734809875, 0.009735497646033764, 0.018259618431329727, 0.10486350208520889, 0.2065984308719635, 0.014990677125751972, 0.019538192078471184, 0.041061121970415115, 0.03878272697329521, 0.15423835813999176, 0.09221134334802628, 0.1260131448507309], [0.032573673874139786, 0.023952007293701172, 0.02631581947207451, 0.005479880608618259, 0.02787521481513977, 0.01638283208012581, 0.011507261544466019, 0.01969759911298752, 0.12929528951644897, 0.24302281439304352, 0.03511276841163635, 0.02504032291471958, 0.035602059215307236, 0.03311051428318024, 0.06870516389608383, 0.094892717897892, 0.17143408954143524], [0.0434468537569046, 0.019525857642292976, 0.06137891858816147, 0.005524791311472654, 0.009263289161026478, 0.013640828430652618, 0.009624834172427654, 0.00796736590564251, 0.10646946728229523, 0.0520395003259182, 0.027188673615455627, 0.08735772967338562, 0.23192018270492554, 0.041828349232673645, 0.0877753272652626, 0.05010579526424408, 0.14494216442108154], [0.023922940716147423, 0.02784579247236252, 0.07768482714891434, 0.00692017050459981, 0.029780805110931396, 0.04136477783322334, 0.02691960334777832, 0.007027658633887768, 0.07401113212108612, 0.049552347511053085, 0.020506612956523895, 0.07132012397050858, 0.21688765287399292, 0.10370450466871262, 0.060287248343229294, 0.06902183592319489, 0.09324201941490173], [0.06322718411684036, 0.008076313883066177, 0.011662594974040985, 0.0019380158046260476, 0.016504110768437386, 0.009529545903205872, 0.0029026938136667013, 0.009493683464825153, 0.18853189051151276, 0.11785640567541122, 0.03102685883641243, 0.0644078478217125, 0.1667085587978363, 0.012799013406038284, 0.018863562494516373, 0.009424970485270023, 0.26704680919647217], [0.019857307896018028, 0.0021450708154588938, 0.005012816749513149, 0.0019166666315868497, 0.0008360852370969951, 0.002760122297331691, 0.001324470853433013, 0.008984644897282124, 0.4432066082954407, 0.001812909496948123, 0.002007707953453064, 0.002680248348042369, 0.001971592428162694, 0.004784559365361929, 0.0035575549118220806, 0.003198385937139392, 0.4939432740211487]], [[0.027814464643597603, 0.00443950155749917, 0.001397183514200151, 0.0002083857252728194, 3.7494246498681605e-05, 2.5386454581166618e-05, 6.328503513941541e-05, 0.10604330897331238, 0.3530377149581909, 0.0015361392870545387, 0.000549941323697567, 0.0003939366724807769, 0.00014264264609664679, 0.0002210988022852689, 0.0005989435594528913, 0.005523563362658024, 0.4979669749736786], [0.017247455194592476, 0.0635785162448883, 0.0003088406811002642, 0.00918903760612011, 0.003995424136519432, 0.00029191700741648674, 0.0030890253838151693, 0.4550129473209381, 0.22965870797634125, 0.014839536510407925, 0.006614107172936201, 0.002536348532885313, 0.000974986469373107, 0.0009327701991423965, 0.0007736937841400504, 0.01048242673277855, 0.18047435581684113], [0.08090569823980331, 0.023964224383234978, 0.0034951448906213045, 0.004027833696454763, 0.00045044918078929186, 0.001151670003309846, 0.0013968851417303085, 0.35301870107650757, 0.2309027761220932, 0.00646870955824852, 0.010096047073602676, 0.0033250567503273487, 0.00207547377794981, 0.0032129844184964895, 0.007026944775134325, 0.03532453626394272, 0.23315687477588654], [0.03885795176029205, 0.030222663655877113, 0.0004996481584385037, 0.027570238336920738, 0.004759231582283974, 0.0008631166419945657, 0.0041338312439620495, 0.38542884588241577, 0.2475583255290985, 0.015973379835486412, 0.0023566600866615772, 0.002513837767764926, 0.00024826283333823085, 0.0009304859559051692, 0.0008309604017995298, 0.03279617428779602, 0.2044564187526703], [0.040752727538347244, 0.011801348067820072, 0.0002076939563266933, 0.0039470805786550045, 0.00039983310853131115, 0.0002750149287749082, 0.003061619820073247, 0.22722549736499786, 0.3695653975009918, 0.009168006479740143, 0.001248056534677744, 0.006091943476349115, 0.0007017600582912564, 0.00036267092218622565, 0.0005559092969633639, 0.006718838587403297, 0.3179166615009308], [0.05699879676103592, 0.012757841497659683, 0.0006037218845449388, 0.01760265603661537, 0.0016631146427243948, 0.0009390802006237209, 0.010467324405908585, 0.26976048946380615, 0.31057092547416687, 0.019301215186715126, 0.0016216158401221037, 0.008648935705423355, 0.0006879732245579362, 0.0003138946776743978, 0.000982358935289085, 0.023781467229127884, 0.26329851150512695], [0.048304278403520584, 0.056071698665618896, 0.0005962568102404475, 0.08050277084112167, 0.014024152420461178, 0.0012392849894240499, 0.07517539709806442, 0.21622328460216522, 0.21104072034358978, 0.020118094980716705, 0.0024908718187361956, 0.05518972501158714, 0.005171902012079954, 0.005346690304577351, 0.0053170290775597095, 0.029711619019508362, 0.1734762191772461], [0.02489214763045311, 0.025456756353378296, 0.002090893452987075, 0.006484267767518759, 0.0018003651639446616, 0.0015537601429969072, 0.008195525966584682, 0.5817081928253174, 0.16377954185009003, 0.009337611496448517, 0.005237726029008627, 0.0020785066299140453, 0.00268166814930737, 0.0040418654680252075, 0.0039846268482506275, 0.01747014932334423, 0.1392063945531845], [0.0938885509967804, 0.021537013351917267, 0.05297676846385002, 0.025926677510142326, 0.017236994579434395, 0.029053302481770515, 0.021106939762830734, 0.06421677023172379, 0.227000892162323, 0.0179744902998209, 0.018984228372573853, 0.028367090970277786, 0.040342655032873154, 0.03271690383553505, 0.0286756232380867, 0.05104014277458191, 0.22895486652851105], [0.04202964901924133, 0.00486003328114748, 0.00018054810061585158, 0.0016183494590222836, 7.086772529873997e-05, 6.904594920342788e-05, 0.00011169896606588736, 0.28318533301353455, 0.2987756133079529, 0.002084612613543868, 0.0005561957368627191, 0.0014683007029816508, 0.00016111831064336002, 0.0003762694541364908, 0.00042524022865109146, 0.00769030163064599, 0.3563368618488312], [0.046645548194646835, 0.10536626726388931, 0.0009154075523838401, 0.003514043753966689, 0.002029123017564416, 0.00010816318535944447, 0.0006653069285675883, 0.25556281208992004, 0.2609725296497345, 0.00598579877987504, 0.009157853201031685, 0.00217249384149909, 0.0008990955539047718, 0.0006298123043961823, 0.0006132062408141792, 0.007449880242347717, 0.2973126769065857], [0.06982585787773132, 0.05903950333595276, 0.004062683787196875, 0.05056963488459587, 0.002836712170392275, 0.0019816828425973654, 0.006462590768933296, 0.036660369485616684, 0.26363062858581543, 0.021319732069969177, 0.0076040467247366905, 0.1512872874736786, 0.0054129790514707565, 0.003192170290276408, 0.003939376212656498, 0.024088596925139427, 0.2880862057209015], [0.07513340562582016, 0.057168882340192795, 0.0011279579484835267, 0.04974115639925003, 0.008180253207683563, 0.0014728647656738758, 0.03360914811491966, 0.06232035532593727, 0.2810038924217224, 0.01645847037434578, 0.006773149129003286, 0.07859909534454346, 0.004702894017100334, 0.0042662410996854305, 0.0034575853496789932, 0.01548469066619873, 0.30049994587898254], [0.10604767501354218, 0.051608357578516006, 0.00986412912607193, 0.011918673291802406, 0.001169662456959486, 0.0010736732510849833, 0.009574701078236103, 0.07572280615568161, 0.22588378190994263, 0.014179660007357597, 0.025713196024298668, 0.018001293763518333, 0.013654589653015137, 0.04025905206799507, 0.0721614733338356, 0.05696943774819374, 0.2661978304386139], [0.10818764567375183, 0.05237952619791031, 0.016990026459097862, 0.02309701032936573, 0.0035215073730796576, 0.0037350791972130537, 0.0116533562541008, 0.06520050764083862, 0.26326754689216614, 0.011539528146386147, 0.02251790463924408, 0.01865800842642784, 0.011011118069291115, 0.016380244866013527, 0.0061696115881204605, 0.061180420219898224, 0.3045109510421753], [0.0737457424402237, 0.03129909932613373, 0.0011655950220301747, 0.010209014639258385, 0.0011789450654760003, 0.0006923654000274837, 0.002082490362226963, 0.2401101440191269, 0.282698392868042, 0.011561906896531582, 0.002791990991681814, 0.0034200961235910654, 0.0004263815062586218, 0.0023454977199435234, 0.003957652021199465, 0.026300577446818352, 0.3060140311717987], [0.103140689432621, 0.02037252113223076, 0.05589817836880684, 0.023949595168232918, 0.016545400023460388, 0.028015537187457085, 0.020148610696196556, 0.04926019534468651, 0.20932021737098694, 0.01920214109122753, 0.02016107551753521, 0.03421986103057861, 0.04606100171804428, 0.033302128314971924, 0.03154625743627548, 0.06052703782916069, 0.22832956910133362]], [[0.043620459735393524, 0.013688149861991405, 0.02132270112633705, 0.012352613732218742, 0.013686364516615868, 0.010911471210420132, 0.007792664226144552, 0.017630450427532196, 0.351685106754303, 0.02977720834314823, 0.005177556071430445, 0.009762643836438656, 0.0030171831604093313, 0.0018830967601388693, 0.004594854079186916, 0.022134874016046524, 0.43096256256103516], [0.14627765119075775, 0.05319944769144058, 0.056452568620443344, 0.03184007480740547, 0.012775368057191372, 0.0455734021961689, 0.01638052612543106, 0.05094487592577934, 0.24672669172286987, 0.012834310531616211, 0.019451498985290527, 0.004437034949660301, 0.007515087723731995, 0.0034487678203731775, 0.009209208190441132, 0.04539408162236214, 0.23753930628299713], [0.08936890959739685, 0.02511894516646862, 0.05725555121898651, 0.04902644455432892, 0.009916485287249088, 0.03211624547839165, 0.0037467998918145895, 0.07195933163166046, 0.2864566743373871, 0.008879095315933228, 0.013574939221143723, 0.017336087301373482, 0.0005076868110336363, 0.007889396511018276, 0.017351971939206123, 0.03887229412794113, 0.2706230878829956], [0.13999269902706146, 0.018951119855046272, 0.02788049355149269, 0.04758515581488609, 0.02192053012549877, 0.02668548934161663, 0.022239435464143753, 0.054796379059553146, 0.2883114814758301, 0.023426327854394913, 0.0016758095007389784, 0.006482351571321487, 0.004349341616034508, 0.0005028051673434675, 0.0020733249839395285, 0.06412021070718765, 0.24900710582733154], [0.08490943163633347, 0.002907664980739355, 0.003745162859559059, 0.013621503487229347, 0.05931868031620979, 0.025828076526522636, 0.015385743230581284, 0.020315563306212425, 0.37028348445892334, 0.010643023066222668, 0.00015088298823684454, 0.014465692453086376, 0.004985420498996973, 0.00021327633294276893, 0.0012386942980811, 0.015547817572951317, 0.3564397692680359], [0.10593833774328232, 0.012201346457004547, 0.04250318929553032, 0.026644155383110046, 0.05352950096130371, 0.04255330562591553, 0.013822122476994991, 0.03099014423787594, 0.32150712609291077, 0.010104465298354626, 0.0013246407033875585, 0.003202910767868161, 0.005515319295227528, 0.0004237081448081881, 0.0006285412819124758, 0.01919510029256344, 0.3099161684513092], [0.09868654608726501, 0.00935771781951189, 0.005823832005262375, 0.04432849958539009, 0.041400305926799774, 0.02160206437110901, 0.027517473325133324, 0.010422823019325733, 0.3399529755115509, 0.011831432580947876, 0.0005017879302613437, 0.015323443338274956, 0.02791789546608925, 0.0007802250911481678, 0.0022050116676837206, 0.01141795888543129, 0.33093005418777466], [0.11371080577373505, 0.02888372540473938, 0.04148754104971886, 0.027976270765066147, 0.01440836489200592, 0.05102725699543953, 0.01490216888487339, 0.03502277284860611, 0.3206639587879181, 0.009918124414980412, 0.009726091288030148, 0.006231365259736776, 0.0035987982992082834, 0.0019569459836930037, 0.006074149627238512, 0.010550345294177532, 0.3038613200187683], [0.07055298238992691, 0.02385905012488365, 0.032811734825372696, 0.01843986101448536, 0.010287412442266941, 0.020103586837649345, 0.015521356835961342, 0.028571221977472305, 0.30834975838661194, 0.016047365963459015, 0.01946934498846531, 0.0215065348893404, 0.01539499219506979, 0.01761496439576149, 0.026005560532212257, 0.024989552795886993, 0.33047476410865784], [0.15714114904403687, 0.009798171930015087, 0.02089603990316391, 0.01564641483128071, 0.005992190912365913, 0.12401308864355087, 0.006861633621156216, 0.024027202278375626, 0.24999937415122986, 0.05765307694673538, 0.001901008072309196, 0.007536872755736113, 0.0068319919519126415, 0.0029761791229248047, 0.005918752867728472, 0.05871230363845825, 0.24409452080726624], [0.09845472872257233, 0.07467485219240189, 0.05771476402878761, 0.03462075814604759, 0.00692892586812377, 0.02235138788819313, 0.011726402677595615, 0.03543424606323242, 0.2828075587749481, 0.007841966114938259, 0.026970697566866875, 0.0008492899942211807, 0.0020911977626383305, 0.0008162970771081746, 0.0027118290308862925, 0.05476989969611168, 0.27923518419265747], [0.09306015819311142, 0.007648893631994724, 0.006741845048964024, 0.04537758603692055, 0.02837543934583664, 0.052839599549770355, 0.03980449587106705, 0.019246159121394157, 0.21360930800437927, 0.0711301937699318, 0.001075957901775837, 0.09662097692489624, 0.06912503391504288, 0.004651287570595741, 0.006799530237913132, 0.019379233941435814, 0.22451423108577728], [0.10565908253192902, 0.0031379745341837406, 0.003920247312635183, 0.00873290840536356, 0.018205827102065086, 0.015193847008049488, 0.0060600885190069675, 0.013183402828872204, 0.12697561085224152, 0.037867020815610886, 0.0001516553747933358, 0.06356188654899597, 0.3673805594444275, 0.014160789549350739, 0.03530566766858101, 0.043977443128824234, 0.136525958776474], [0.07040902972221375, 0.002897935453802347, 0.0054587675258517265, 0.004833593033254147, 0.0002890506584662944, 0.00026882809470407665, 0.0007286523468792439, 0.03519909083843231, 0.15436917543411255, 0.014571050181984901, 0.00028408842626959085, 0.002398516982793808, 0.0037565536331385374, 0.2799164950847626, 0.1964329183101654, 0.06977500021457672, 0.15841124951839447], [0.12903918325901031, 0.0063051204197108746, 0.011549129150807858, 0.00694222841411829, 0.0018741313833743334, 0.003904499113559723, 0.0017282579792663455, 0.02414611168205738, 0.19700074195861816, 0.009427032433450222, 0.0019615599885582924, 0.005817327182739973, 0.0024116404820233583, 0.161089688539505, 0.18992066383361816, 0.04791185259819031, 0.19897080957889557], [0.12828588485717773, 0.04131525382399559, 0.0772983506321907, 0.11770670115947723, 0.015339246019721031, 0.10573671758174896, 0.03334542363882065, 0.05332576110959053, 0.1318526566028595, 0.0581563301384449, 0.01648130640387535, 0.006586473900824785, 0.006086861714720726, 0.0025096586905419827, 0.005156507715582848, 0.07773507386445999, 0.1230817586183548], [0.06652477383613586, 0.024116864427924156, 0.029861483722925186, 0.017497330904006958, 0.009013619273900986, 0.018054788932204247, 0.015801459550857544, 0.028136834502220154, 0.3079308569431305, 0.018371254205703735, 0.023927001282572746, 0.02474764734506607, 0.015799906104803085, 0.01705416664481163, 0.026087237522006035, 0.0261379387229681, 0.33093684911727905]], [[0.3714202344417572, 0.0008082580752670765, 0.004921107552945614, 0.0023124022409319878, 0.008429822511970997, 0.0027803501579910517, 0.0009329549502581358, 0.01018022932112217, 0.09070379287004471, 0.21554602682590485, 0.002360730664804578, 0.016385933384299278, 0.01642371155321598, 0.027331558987498283, 0.006902058608829975, 0.07383128255605698, 0.1487296223640442], [0.08675972372293472, 0.14067769050598145, 0.04812515527009964, 0.020088035613298416, 0.009617242030799389, 0.010450584813952446, 0.012499835342168808, 0.1748732030391693, 0.21748565137386322, 0.015658969059586525, 0.03144469112157822, 0.011955327354371548, 0.010668694041669369, 0.010807548649609089, 0.002061850856989622, 0.020632987841963768, 0.17619282007217407], [0.0725293755531311, 0.20923903584480286, 0.021027274429798126, 0.0720900148153305, 0.00836713332682848, 0.007222120650112629, 0.027240678668022156, 0.06309737265110016, 0.23385873436927795, 0.011242820881307125, 0.0373801663517952, 0.004680091980844736, 0.00672272639349103, 0.010328604839742184, 0.00721212662756443, 0.025662265717983246, 0.18209949135780334], [0.09022903442382812, 0.08880352228879929, 0.045566968619823456, 0.055039409548044205, 0.024568656459450722, 0.01271827332675457, 0.02863866277039051, 0.07884790748357773, 0.14280861616134644, 0.07419943064451218, 0.006527827586978674, 0.014664901420474052, 0.01115918718278408, 0.01978146657347679, 0.015055215917527676, 0.18148881196975708, 0.1099020391702652], [0.04574602097272873, 0.029647450894117355, 0.0055162603966891766, 0.11889509111642838, 0.007876790128648281, 0.005999610759317875, 0.04275389015674591, 0.04547538980841637, 0.33794835209846497, 0.05158661678433418, 0.003940480295568705, 0.012446975335478783, 0.005569761618971825, 0.0023762446362525225, 0.0019765596371144056, 0.02169104851782322, 0.2605535686016083], [0.10450854152441025, 0.11485996097326279, 0.01758735440671444, 0.08051685243844986, 0.012055641040205956, 0.005192741751670837, 0.030473876744508743, 0.05221586301922798, 0.2058601975440979, 0.05085112899541855, 0.013264506123960018, 0.016112718731164932, 0.029474318027496338, 0.01283396128565073, 0.019872985780239105, 0.06324204057455063, 0.17107723653316498], [0.02574041299521923, 0.02472294680774212, 0.0030025034211575985, 0.006111004389822483, 0.0012865137541666627, 0.0005421321257017553, 0.0017117687966674566, 0.051031507551670074, 0.4672141671180725, 0.010684902779757977, 0.001257814234122634, 0.0037198862992227077, 0.0013480400666594505, 0.0007414429564960301, 0.00024303501413669437, 0.006634723395109177, 0.3940071165561676], [0.058831315487623215, 0.0640510842204094, 0.038923509418964386, 0.08385838568210602, 0.05578083544969559, 0.036258772015571594, 0.024347303435206413, 0.14084777235984802, 0.21024928987026215, 0.05507132038474083, 0.007009382359683514, 0.007629613392055035, 0.006788703612983227, 0.008066006936132908, 0.0065047889947891235, 0.025228748098015785, 0.17055316269397736], [0.03716424107551575, 0.007060617674142122, 0.005000311881303787, 0.0021905212197452784, 0.0008960714330896735, 0.0014025680720806122, 0.0009846178581938148, 0.027591759338974953, 0.4532669186592102, 0.00410153204575181, 0.0014610773650929332, 0.0021570920944213867, 0.0011750677367672324, 0.0019096920732408762, 0.0030085877515375614, 0.0029159565456211567, 0.4477134943008423], [0.13584277033805847, 0.011695018969476223, 0.007748823147267103, 0.023095708340406418, 0.008667781949043274, 0.00662047928199172, 0.002217898378148675, 0.08604885637760162, 0.10866381973028183, 0.04227710887789726, 0.0028156449552625418, 0.008320897817611694, 0.02313046343624592, 0.030756695196032524, 0.041054826229810715, 0.32157638669013977, 0.1394667774438858], [0.22214257717132568, 0.397006630897522, 0.07799965888261795, 0.001591327483765781, 0.006439052522182465, 0.002981884405016899, 0.002046444686129689, 0.02057032100856304, 0.06509295105934143, 0.04864628240466118, 0.04549003764986992, 0.0032323230989277363, 0.0028355130925774574, 0.01112421415746212, 0.0009374177898280323, 0.01727222464978695, 0.07459127902984619], [0.03297732397913933, 0.007451741956174374, 0.0017498956294730306, 0.005414881277829409, 0.0005161985754966736, 0.0001763166073942557, 0.0017734040739014745, 0.011331173591315746, 0.38425061106681824, 0.011605875566601753, 0.003044986166059971, 0.031440362334251404, 0.007231414783746004, 0.01078992523252964, 0.010247860103845596, 0.014358142390847206, 0.46563994884490967], [0.06273996084928513, 0.0025111923459917307, 0.0016772485105320811, 0.0006500279414467514, 0.0005342610529623926, 0.0004249734338372946, 0.0008769634878262877, 0.0132936155423522, 0.38306766748428345, 0.009664541110396385, 0.0015835778322070837, 0.03590034320950508, 0.004795196000486612, 0.0029460359364748, 0.007573799695819616, 0.004010479431599379, 0.46775022149086], [0.08816497772932053, 0.009677629917860031, 0.015690773725509644, 0.004526781849563122, 0.00128223467618227, 0.0014866326237097383, 0.0031792079098522663, 0.034714143723249435, 0.2948341369628906, 0.01420605182647705, 0.009741378016769886, 0.051131006330251694, 0.011161072179675102, 0.03492269665002823, 0.055801570415496826, 0.02263258397579193, 0.3468469977378845], [0.07929017394781113, 0.008097521960735321, 0.02662476897239685, 0.004608360584825277, 0.0015260765794664621, 0.002503037452697754, 0.0043432870879769325, 0.023972520604729652, 0.34708476066589355, 0.013382026925683022, 0.006154095754027367, 0.03458422049880028, 0.01632077246904373, 0.022901706397533417, 0.020368412137031555, 0.012024697847664356, 0.37621352076530457], [0.09227947145700455, 0.022185293957591057, 0.013095438480377197, 0.11232389509677887, 0.011276493780314922, 0.00845241267234087, 0.00967930257320404, 0.0183134563267231, 0.10783451050519943, 0.08224445581436157, 0.04308618977665901, 0.11947230249643326, 0.028381820768117905, 0.053372155874967575, 0.013050739653408527, 0.13208967447280884, 0.1328624188899994], [0.04053887724876404, 0.005695616826415062, 0.004130534827709198, 0.001643113442696631, 0.0006864396273158491, 0.0010371835669502616, 0.0007898491458036005, 0.024652527645230293, 0.4360586702823639, 0.004592256620526314, 0.001775078009814024, 0.0027528100181370974, 0.0013917480828240514, 0.0020696839783340693, 0.0032685284968465567, 0.003168020863085985, 0.4657491147518158]], [[0.15393738448619843, 0.01451246626675129, 0.006779943127185106, 0.015984809026122093, 0.045987557619810104, 0.002752251224592328, 0.013063582591712475, 0.0060724602080881596, 0.12599165737628937, 0.257351815700531, 0.013315869495272636, 0.00793194305151701, 0.04584855958819389, 0.042014382779598236, 0.046460140496492386, 0.049255404621362686, 0.15273985266685486], [0.034783586859703064, 0.3728260397911072, 0.009114244021475315, 0.014268873259425163, 0.18110573291778564, 0.014605076983571053, 0.012200742959976196, 0.002340237610042095, 0.06465550512075424, 0.012748518027365208, 0.18899331986904144, 0.003487184876576066, 0.013940425589680672, 0.005007883068174124, 0.0038091898895800114, 0.0031012161634862423, 0.06301233172416687], [0.012023315764963627, 0.08860528469085693, 0.006199287716299295, 0.08796359598636627, 0.19533425569534302, 0.00969691015779972, 0.06508167833089828, 0.007929005660116673, 0.15826885402202606, 0.024426762014627457, 0.0939503088593483, 0.014294161461293697, 0.020569145679473877, 0.010646339505910873, 0.01675662212073803, 0.023205654695630074, 0.165048748254776], [0.04062730073928833, 0.027490030974149704, 0.00611188355833292, 0.1476425677537918, 0.5342229008674622, 0.011233964003622532, 0.02660192735493183, 0.004702100995928049, 0.06623287498950958, 0.005448800045996904, 0.009692905470728874, 0.020316582173109055, 0.017874833196401596, 0.005440391134470701, 0.004325408488512039, 0.016885949298739433, 0.05514964088797569], [0.011914280243217945, 0.015027663670480251, 0.006231158040463924, 0.0649731382727623, 0.43866267800331116, 0.004818764049559832, 0.02903776802122593, 0.0004989375593140721, 0.12065409868955612, 0.016685139387845993, 0.005857492797076702, 0.0959925651550293, 0.04475284740328789, 0.013124281540513039, 0.007821118459105492, 0.006436625029891729, 0.1175113320350647], [0.0030737738125026226, 0.020720308646559715, 0.002378624863922596, 0.0500325933098793, 0.6631656289100647, 0.0025604998227208853, 0.020892580971121788, 0.0023408210836350918, 0.05305691435933113, 0.02775217592716217, 0.018833626061677933, 0.03517640009522438, 0.018477145582437515, 0.005924113094806671, 0.011634751223027706, 0.010158419609069824, 0.0538216158747673], [0.03150756284594536, 0.018566293641924858, 0.00775852520018816, 0.09674064069986343, 0.2249096930027008, 0.00307087623514235, 0.01168697327375412, 0.0054312776774168015, 0.18694360554218292, 0.013946693390607834, 0.011964329518377781, 0.15759669244289398, 0.022865835577249527, 0.00760678993538022, 0.012257061898708344, 0.011732331477105618, 0.17541486024856567], [0.20167523622512817, 0.0012210005661472678, 0.009347226470708847, 0.0005275291041471064, 0.002158051822334528, 0.022112125530838966, 0.00027390773175284266, 0.7498869895935059, 0.003161301137879491, 0.0013955492759123445, 0.0005838156212121248, 6.107669469201937e-05, 0.0014142494183033705, 0.001286953454837203, 0.0014639680739492178, 0.0008529202896170318, 0.002578112529590726], [0.3392258882522583, 0.0003474419645499438, 0.017697548493742943, 0.00034864433109760284, 0.00013859718455933034, 0.011854150332510471, 9.607461834093556e-05, 0.5260440707206726, 0.04609724506735802, 0.0010699480772018433, 0.0005360493087209761, 0.00021951552480459213, 0.0007843192433938384, 0.002987075597047806, 0.003980542067438364, 0.003309902735054493, 0.045262932777404785], [0.14181214570999146, 0.002162131480872631, 0.0052556986920535564, 0.014523785561323166, 0.07398169487714767, 0.0019744380842894316, 0.007618424016982317, 0.01032099686563015, 0.22103512287139893, 0.06524402648210526, 0.007268873509019613, 0.02393418923020363, 0.07452501356601715, 0.03132077306509018, 0.026117483153939247, 0.02592371590435505, 0.2669815123081207], [0.04754903167486191, 0.055569376796483994, 0.001979036722332239, 0.0171392560005188, 0.19845329225063324, 0.0021873374935239553, 0.014013304375112057, 0.0008090201299637556, 0.13742053508758545, 0.2197365015745163, 0.04419075325131416, 0.007974792271852493, 0.06039087474346161, 0.012480903416872025, 0.011993058025836945, 0.00827112141996622, 0.15984182059764862], [0.015173112973570824, 0.0007959223003126681, 0.0003134974685963243, 0.006277746055275202, 0.07463832199573517, 0.0015087107894942164, 0.0013125193072482944, 0.0007432755082845688, 0.037144601345062256, 0.00182385987136513, 0.0015877608675509691, 0.7842802405357361, 0.008985773660242558, 0.0073459092527627945, 0.007578442804515362, 0.006970295216888189, 0.043520063161849976], [0.03597979247570038, 0.0019340186845511198, 0.0023743619676679373, 0.01472576055675745, 0.028376227244734764, 0.0008248861995525658, 0.0027777627110481262, 0.0034397589042782784, 0.30702465772628784, 0.01790892519056797, 0.003995273727923632, 0.10294529050588608, 0.04357773810625076, 0.01807667873799801, 0.03907795995473862, 0.02212400548160076, 0.3548368513584137], [0.014890733174979687, 0.020436201244592667, 0.0018043856834992766, 0.053086258471012115, 0.046342119574546814, 0.0017069646855816245, 0.020459666848182678, 0.0006417477852664888, 0.29479536414146423, 0.018787145614624023, 0.017174435779452324, 0.027899598702788353, 0.055454764515161514, 0.021909315139055252, 0.04137881472706795, 0.042646750807762146, 0.3205856382846832], [0.024464592337608337, 0.013698003254830837, 0.001383753726258874, 0.018582692369818687, 0.05824772268533707, 0.0020962106063961983, 0.008711977861821651, 0.002350544324144721, 0.33351701498031616, 0.02267107181251049, 0.009135224856436253, 0.01663285307586193, 0.04211343452334404, 0.009826556779444218, 0.016638237982988358, 0.014036930166184902, 0.4058931767940521], [0.09143819659948349, 0.025717345997691154, 0.006066449452191591, 0.059783030301332474, 0.06158558279275894, 0.004037764389067888, 0.023459356278181076, 0.010942014865577221, 0.13878405094146729, 0.06463637948036194, 0.025132765993475914, 0.021056028082966805, 0.06254459917545319, 0.03878892585635185, 0.08722954243421555, 0.13370639085769653, 0.14509160816669464], [0.36221015453338623, 0.0003070094098802656, 0.015256155282258987, 0.000311047479044646, 0.00012637523468583822, 0.011189128272235394, 8.444055129075423e-05, 0.5028384923934937, 0.04528357833623886, 0.0013326802290976048, 0.0006204037927091122, 0.0002672361151780933, 0.0009621839853934944, 0.0038990553002804518, 0.005101409275084734, 0.004158728290349245, 0.046051986515522]]], [[[0.18927259743213654, 0.010431046597659588, 0.12248282879590988, 0.044441480189561844, 0.1381075382232666, 0.18259955942630768, 0.0030434122309088707, 0.05265072360634804, 0.09715093672275543, 0.02211337722837925, 0.003408635500818491, 0.0007928932318463922, 0.0008180654840543866, 0.000782747520133853, 0.001088500488549471, 0.0325465127825737, 0.09826906025409698], [0.4576168954372406, 0.01333136297762394, 0.008512655273079872, 0.016376031562685966, 0.011698503978550434, 0.0038609658367931843, 0.002805528463795781, 0.03832927718758583, 0.16091957688331604, 0.04863307625055313, 0.026661721989512444, 0.004605063237249851, 0.004788256715983152, 0.0057881856337189674, 0.006243500858545303, 0.029359055683016777, 0.1604703664779663], [0.16821084916591644, 0.022766562178730965, 0.006992377806454897, 0.02717471495270729, 0.0031743382569402456, 0.0053077805787324905, 0.0024549546651542187, 0.10692514479160309, 0.24381498992443085, 0.020913150161504745, 0.039907149970531464, 0.008940433152019978, 0.009190364740788937, 0.009803677909076214, 0.06298371404409409, 0.01827634871006012, 0.24316340684890747], [0.29126155376434326, 0.010545321740210056, 0.019259599968791008, 0.01185180339962244, 0.009268714115023613, 0.01224701851606369, 0.002227277494966984, 0.04898959398269653, 0.23437990248203278, 0.05102422088384628, 0.04153236374258995, 0.0037946479860693216, 0.0010742247104644775, 0.00441014626994729, 0.005907652899622917, 0.0218978188931942, 0.23032817244529724], [0.33959028124809265, 0.004307648167014122, 0.007359442766755819, 0.006935570389032364, 0.002156347967684269, 0.006591904908418655, 0.0018830867484211922, 0.10025899112224579, 0.22600360214710236, 0.027474336326122284, 0.021335480734705925, 0.00456642359495163, 0.003787908237427473, 0.002601271728053689, 0.004669032525271177, 0.01605743169784546, 0.22442112863063812], [0.18910112977027893, 0.025402596220374107, 0.010071770288050175, 0.020809605717658997, 0.005389074329286814, 0.003959559835493565, 0.005513504613190889, 0.14725041389465332, 0.22948172688484192, 0.026723649352788925, 0.048146072775125504, 0.008850248530507088, 0.0074641769751906395, 0.013482389971613884, 0.011285046115517616, 0.021328939124941826, 0.22574016451835632], [0.18233320116996765, 0.010200539603829384, 0.009599958546459675, 0.01268526166677475, 0.0052976966835558414, 0.004495667759329081, 0.0024324727710336447, 0.06085687503218651, 0.31485700607299805, 0.0334327295422554, 0.01947925053536892, 0.004640441853553057, 0.0029081767424941063, 0.005523401312530041, 0.0034206847194582224, 0.019205650314688683, 0.30863088369369507], [0.6423034071922302, 0.005870582535862923, 0.01827112026512623, 0.021719224750995636, 0.041319411247968674, 0.01613541692495346, 0.0011786763789132237, 0.02372727170586586, 0.0688328742980957, 0.040762823075056076, 0.008561402559280396, 0.0004558821674436331, 0.001096932333894074, 0.0024400101974606514, 0.002004890004172921, 0.03827059268951416, 0.06704949587583542], [0.026845688000321388, 0.0043416875414550304, 0.011359176598489285, 0.003751387819647789, 0.002859462983906269, 0.0083563681691885, 0.0028680728282779455, 0.05268212780356407, 0.41785967350006104, 0.005655355751514435, 0.002984269754961133, 0.0027323425747454166, 0.002257852116599679, 0.0015629775589331985, 0.0030274735763669014, 0.011712834239006042, 0.4391431510448456], [0.2955872714519501, 0.03647439554333687, 0.03516606241464615, 0.05229403078556061, 0.04541053622961044, 0.038197215646505356, 0.01131829246878624, 0.04804878681898117, 0.2062891721725464, 0.0037680347450077534, 0.01011739019304514, 0.0020574380178004503, 0.0007088994607329369, 0.0012839497067034245, 0.0013907249085605145, 0.006108436733484268, 0.2057793289422989], [0.39648935198783875, 0.07168390601873398, 0.04072282090783119, 0.06400157511234283, 0.05617072433233261, 0.006503338925540447, 0.002926240209490061, 0.02677137218415737, 0.15194599330425262, 0.012600972317159176, 0.006800358649343252, 0.001529003493487835, 0.0008148597553372383, 0.0013255276717245579, 0.00173011957667768, 0.009520416148006916, 0.14846351742744446], [0.022976044565439224, 0.01136298943310976, 0.022971469908952713, 0.006778225302696228, 0.006943941116333008, 0.006844544783234596, 0.004990750923752785, 0.02489999495446682, 0.43060266971588135, 0.006087103392928839, 0.004580381792038679, 0.0027555355336517096, 0.001001044875010848, 0.0013686222955584526, 0.004359197802841663, 0.003597324714064598, 0.4378802180290222], [0.038779858499765396, 0.028326446190476418, 0.03964635357260704, 0.01673860475420952, 0.006986437831073999, 0.005188890267163515, 0.004770874977111816, 0.0352882444858551, 0.40507155656814575, 0.0027869499754160643, 0.00370847899466753, 0.001895884983241558, 0.0003599210758693516, 0.001882963697426021, 0.003024386242032051, 0.0034445396158844233, 0.4020995497703552], [0.030265744775533676, 0.033081598579883575, 0.016941331326961517, 0.0068838875740766525, 0.0014196623815223575, 0.0006329893949441612, 0.0014345220988616347, 0.008779450319707394, 0.434416264295578, 0.0019730671774595976, 0.003757168771699071, 0.001814311370253563, 0.0011841977247968316, 0.0007055472815409303, 0.002085272455587983, 0.0026086634024977684, 0.4520166516304016], [0.03977159038186073, 0.05664397031068802, 0.1319253295660019, 0.0070150080136954784, 0.0012772117042914033, 0.0012800352415069938, 0.0008774331072345376, 0.018531909212470055, 0.35738229751586914, 0.0012780457036569715, 0.005804226268082857, 0.0014257780276238918, 0.0008848903235048056, 0.0017981536220759153, 0.00331663666293025, 0.0024215076118707657, 0.3683658540248871], [0.35176828503608704, 0.016164936125278473, 0.01636815257370472, 0.05804995074868202, 0.039208583533763885, 0.03616916388273239, 0.006622049026191235, 0.049356747418642044, 0.1859654039144516, 0.01782640442252159, 0.017638415098190308, 0.0031769585330039263, 0.0014164091553539038, 0.0016962096560746431, 0.0017007789574563503, 0.011082235723733902, 0.18578936159610748], [0.02784043364226818, 0.004453934263437986, 0.011656972579658031, 0.003910311032086611, 0.00298675405792892, 0.008510884828865528, 0.0029135136865079403, 0.05326022952795029, 0.4165485203266144, 0.005664305295795202, 0.0030453111976385117, 0.0027993745170533657, 0.0022439612075686455, 0.0015768746379762888, 0.0030868847388774157, 0.011895126663148403, 0.4376065731048584]], [[0.0174055527895689, 0.0008041482651606202, 0.005415774881839752, 0.005430548917502165, 0.007022784557193518, 0.011655040085315704, 0.004077734425663948, 0.0031429261434823275, 0.20425714552402496, 0.2788724899291992, 0.012756521813571453, 0.0859110876917839, 0.05452902987599373, 0.0031133699230849743, 0.01023023296147585, 0.06431077420711517, 0.23106485605239868], [0.03756609559059143, 0.006432707887142897, 0.10978108644485474, 0.049905404448509216, 0.05798760801553726, 0.47537466883659363, 0.11170471459627151, 0.00948326289653778, 0.032491523772478104, 0.015356071293354034, 0.010734397917985916, 0.011889010667800903, 0.014589817263185978, 0.0035612403880804777, 0.00891591515392065, 0.014044330455362797, 0.030182091519236565], [0.14121782779693604, 0.025699904188513756, 0.10492323338985443, 0.06693383306264877, 0.062403906136751175, 0.15459267795085907, 0.013577568344771862, 0.03130374103784561, 0.12446609884500504, 0.04866069182753563, 0.007124198600649834, 0.026473749428987503, 0.03693388029932976, 0.006729588843882084, 0.017443014308810234, 0.019684500992298126, 0.1118316501379013], [0.018767958506941795, 0.007196382619440556, 0.12685152888298035, 0.0076694912277162075, 0.08767466992139816, 0.29656198620796204, 0.10521198809146881, 0.022935686632990837, 0.1381455808877945, 0.04354340210556984, 0.002713648835197091, 0.008753422647714615, 0.0028425983618944883, 0.00037776576937176287, 0.0005821179947815835, 0.0027566179633140564, 0.12741507589817047], [0.012743240222334862, 0.006293843500316143, 0.03677865490317345, 0.045493800193071365, 0.01767962984740734, 0.09241805225610733, 0.021722158417105675, 0.01710713841021061, 0.3714589774608612, 0.028512604534626007, 0.0009588159155100584, 0.00434930669143796, 0.0015234311576932669, 2.6777799575938843e-05, 0.0001277343835681677, 0.0012791450135409832, 0.34152671694755554], [0.009583891369402409, 0.011033361777663231, 0.04552806541323662, 0.05745559558272362, 0.03182575851678848, 0.020797912031412125, 0.018088068813085556, 0.05869559571146965, 0.36804962158203125, 0.026127096265554428, 0.0014398206258192658, 0.008589284494519234, 0.0009079747833311558, 0.00012609167606569827, 0.0003513997362460941, 0.0027684273663908243, 0.3386319577693939], [0.005887715145945549, 0.0017569750780239701, 0.03319530934095383, 0.03500526398420334, 0.047948453575372696, 0.11323526501655579, 0.019043460488319397, 0.012303123250603676, 0.35033300518989563, 0.03527313470840454, 0.00020056427456438541, 0.018717598170042038, 0.0024984527844935656, 9.920956654241309e-05, 0.00026256285491399467, 0.00157392886467278, 0.3226660192012787], [0.03928348422050476, 0.010921375826001167, 0.12296735495328903, 0.05201724171638489, 0.06250567734241486, 0.18986988067626953, 0.04174082726240158, 0.045394670218229294, 0.19477318227291107, 0.030004872009158134, 0.004432680085301399, 0.009594363160431385, 0.006146155763417482, 0.001040601753629744, 0.0028530617710202932, 0.009806586429476738, 0.17664802074432373], [0.008005880750715733, 0.0028870662208646536, 0.0030952156521379948, 0.0021079606376588345, 0.0017723506316542625, 0.004175329115241766, 0.0015474167885258794, 0.01918380707502365, 0.47835928201675415, 0.0031132446601986885, 0.002474838634952903, 0.0019334484823048115, 0.001392505131661892, 0.0008520058472640812, 0.0016742658335715532, 0.002512388164177537, 0.46491312980651855], [0.01473692711442709, 0.0007284142775461078, 0.0030098571442067623, 0.0050953528843820095, 0.034985266625881195, 0.0816836953163147, 0.01492468360811472, 0.007333504036068916, 0.3747553825378418, 0.014840122312307358, 0.0013085606042295694, 0.039486441761255264, 0.0026478422805666924, 0.0005709935212507844, 0.0010041547939181328, 0.01806369423866272, 0.38482511043548584], [0.03308449313044548, 0.005363058298826218, 0.07295247167348862, 0.02461327239871025, 0.07506665587425232, 0.10252267122268677, 0.026483017951250076, 0.002392088295891881, 0.02609376795589924, 0.1274683177471161, 0.01506918016821146, 0.23681846261024475, 0.05273933708667755, 0.029125070199370384, 0.0955008938908577, 0.04775208234786987, 0.026955148205161095], [0.02203182689845562, 0.0014520460972562432, 0.019051892682909966, 0.012256080284714699, 0.003868603380396962, 0.04836718738079071, 0.015189481899142265, 0.010207864455878735, 0.38660791516304016, 0.02431645430624485, 0.0017582984874024987, 0.010459288954734802, 0.03339405357837677, 0.007945789024233818, 0.0036622625775635242, 0.014522621408104897, 0.3849082887172699], [0.035299353301525116, 0.0019236616790294647, 0.01111103966832161, 0.010909855365753174, 0.007746526040136814, 0.09966705739498138, 0.020622698590159416, 0.008716409094631672, 0.12993064522743225, 0.04700079932808876, 0.001978689106181264, 0.22726276516914368, 0.04526595026254654, 0.04508696496486664, 0.14352884888648987, 0.03737841919064522, 0.12657026946544647], [0.019359715282917023, 0.0013941325014457107, 0.0012283913092687726, 0.005196215119212866, 0.00448927516117692, 0.002475927583873272, 0.0018629872938618064, 0.008321234956383705, 0.432026743888855, 0.04344695433974266, 0.0030722073279321194, 0.013888254761695862, 0.019411059096455574, 0.003676072461530566, 0.004668432287871838, 0.008724630810320377, 0.4267577826976776], [0.014869939535856247, 0.002363689010962844, 0.0009491543751209974, 0.002382102655246854, 0.0068388828076422215, 0.0032602129504084587, 0.00202627363614738, 0.007454190868884325, 0.4293583333492279, 0.032771483063697815, 0.0011923447018489242, 0.012779499404132366, 0.031087882816791534, 0.011963548138737679, 0.0036647554952651262, 0.01164622139185667, 0.42539161443710327], [0.023424305021762848, 0.004161475226283073, 0.053437765687704086, 0.0041063521057367325, 0.04978364706039429, 0.17035581171512604, 0.020288191735744476, 0.013689602725207806, 0.10812962055206299, 0.20115990936756134, 0.008319775573909283, 0.15714073181152344, 0.036948319524526596, 0.007364704739302397, 0.008542901836335659, 0.02468431554734707, 0.10846249014139175], [0.007420300506055355, 0.0025558052584528923, 0.0026494849007576704, 0.0017724173376336694, 0.0015149289974942803, 0.0034541103523224592, 0.0013401638716459274, 0.01764225959777832, 0.47893622517585754, 0.0031514132861047983, 0.0024319614749401808, 0.0019019941100850701, 0.0013559728395193815, 0.0007875753799453378, 0.0015469209756702185, 0.0023786742240190506, 0.4691597521305084]], [[0.05782919004559517, 0.004385638516396284, 0.007083403877913952, 0.004566224291920662, 0.00531862722709775, 0.0044893985614180565, 0.0014594682725146413, 0.0009645286481827497, 0.05730512738227844, 0.11441614478826523, 0.1662038266658783, 0.09033162891864777, 0.08029140532016754, 0.07159007340669632, 0.143330380320549, 0.12362919002771378, 0.06680573523044586], [0.08099692314863205, 0.04769745096564293, 0.08576824516057968, 0.08670607954263687, 0.08900582790374756, 0.12557728588581085, 0.046022556722164154, 0.019154828041791916, 0.19895946979522705, 0.0032632132060825825, 0.0036226403899490833, 0.0145344827324152, 0.0036901698913425207, 0.0025103853549808264, 0.006361159961670637, 0.007396908942610025, 0.17873236536979675], [0.11970715969800949, 0.03750305250287056, 0.05213442072272301, 0.08544757962226868, 0.06184489652514458, 0.048627447336912155, 0.04167449474334717, 0.013329438865184784, 0.25854194164276123, 0.006002457346767187, 0.011579615995287895, 0.009816060774028301, 0.0038635546807199717, 0.0017745092045515776, 0.006404664367437363, 0.01339015830308199, 0.22835849225521088], [0.058117642998695374, 0.06061365082859993, 0.28099334239959717, 0.046413976699113846, 0.09239953011274338, 0.16530562937259674, 0.02536696009337902, 0.005575292278081179, 0.11852320283651352, 0.0027486945036798716, 0.0048959581181406975, 0.005631591659039259, 0.0038956105709075928, 0.006491313222795725, 0.012672956101596355, 0.004923818167299032, 0.10543090850114822], [0.05503857508301735, 0.06344094127416611, 0.2773861587047577, 0.04516499117016792, 0.02277582325041294, 0.08959808200597763, 0.0358562171459198, 0.004877686966210604, 0.20451001822948456, 0.0029536979272961617, 0.003572909627109766, 0.0038970487657934427, 0.002326544839888811, 0.0029529291205108166, 0.007510020863264799, 0.0033560956362634897, 0.17478232085704803], [0.09637878090143204, 0.03728623688220978, 0.15503662824630737, 0.060819681733846664, 0.09520745277404785, 0.049415506422519684, 0.024210099130868912, 0.005593512672930956, 0.23579616844654083, 0.004846211988478899, 0.006965687498450279, 0.005287887994199991, 0.002022122498601675, 0.0026859708596020937, 0.00616758968681097, 0.006483485456556082, 0.20579688251018524], [0.03324959799647331, 0.07174746692180634, 0.11341799795627594, 0.04136042669415474, 0.026665732264518738, 0.10508661717176437, 0.017370909452438354, 0.010711060836911201, 0.28765395283699036, 0.0044604092836380005, 0.00794435665011406, 0.004573209676891565, 0.0019038983155041933, 0.0018391372868791223, 0.005927726160734892, 0.008415620774030685, 0.2576717734336853], [0.14671023190021515, 0.05794450268149376, 0.2770603597164154, 0.0366293340921402, 0.11070644855499268, 0.18868589401245117, 0.023222271353006363, 0.03035949543118477, 0.05243919417262077, 0.0033074491657316685, 0.00523516396060586, 0.0018959123408421874, 0.0032697939313948154, 0.0026890975423157215, 0.00789870135486126, 0.005680619273334742, 0.04626549035310745], [0.01790616102516651, 0.005568797700107098, 0.009265738539397717, 0.005200357176363468, 0.003629591315984726, 0.003195792669430375, 0.0022376838605850935, 0.08739952743053436, 0.4125373959541321, 0.006553320679813623, 0.008278394117951393, 0.0029775891453027725, 0.0016037097666412592, 0.0006179727497510612, 0.0021072537638247013, 0.011295883916318417, 0.41962477564811707], [0.029063992202281952, 0.0047799828462302685, 0.002818971872329712, 0.0034663034602999687, 0.001379151362925768, 0.0031255220528692007, 0.0012173574650660157, 0.0008229855448007584, 0.26591530442237854, 0.02438487485051155, 0.056342821568250656, 0.10847561061382294, 0.028441699221730232, 0.016355125233530998, 0.07422536611557007, 0.08082561194896698, 0.29835930466651917], [0.042893294245004654, 0.007728861179202795, 0.006665055640041828, 0.028495654463768005, 0.012110443785786629, 0.011421522125601768, 0.0060052587650716305, 0.0015260545769706368, 0.08183512091636658, 0.07674339413642883, 0.06005560979247093, 0.2807020843029022, 0.05430763587355614, 0.026237284764647484, 0.07856515794992447, 0.13309387862682343, 0.09161370247602463], [0.0271441787481308, 0.01470328588038683, 0.02288920059800148, 0.008312780410051346, 0.003094565123319626, 0.008655658923089504, 0.003037445480003953, 0.003105797106400132, 0.36296480894088745, 0.028500575572252274, 0.03270089998841286, 0.019113661721348763, 0.013181978836655617, 0.008487225510179996, 0.03910672664642334, 0.02765830047428608, 0.3773428797721863], [0.0169081911444664, 0.008299125358462334, 0.006622029468417168, 0.006994720082730055, 0.0016013933345675468, 0.0057757250033319, 0.0012783496640622616, 0.0015351736219599843, 0.3329033851623535, 0.039313022047281265, 0.043547533452510834, 0.09648048132658005, 0.006568219978362322, 0.008414344862103462, 0.02256062626838684, 0.04230526089668274, 0.35889238119125366], [0.023301851004362106, 0.002987081650644541, 0.004921111278235912, 0.0027839583344757557, 0.0005198765429668128, 0.0010687484173104167, 0.0013127231504768133, 0.003465663641691208, 0.4530599117279053, 0.005097770132124424, 0.009009651839733124, 0.0104592964053154, 0.005795119795948267, 0.0011189539218321443, 0.0024994288105517626, 0.005162742454558611, 0.4674362540245056], [0.04272375628352165, 0.002688746899366379, 0.005862189922481775, 0.0036073564551770687, 0.001545575330965221, 0.0015120545867830515, 0.0011338251642882824, 0.0015430613420903683, 0.41709572076797485, 0.009303785860538483, 0.014094715937972069, 0.02185630425810814, 0.009364325553178787, 0.004373994190245867, 0.004859173204749823, 0.019144974648952484, 0.43929022550582886], [0.136650949716568, 0.04313594102859497, 0.0302302036434412, 0.045243680477142334, 0.021728767082095146, 0.027933435514569283, 0.016294781118631363, 0.008790555410087109, 0.1291041225194931, 0.03983159363269806, 0.07692816108465195, 0.08455802500247955, 0.06422775983810425, 0.0204963106662035, 0.04479874670505524, 0.07839468121528625, 0.13165226578712463], [0.017510393634438515, 0.0051260823383927345, 0.007864479906857014, 0.004709544125944376, 0.003131305333226919, 0.0027298007626086473, 0.0020060879178345203, 0.07903189957141876, 0.41496965289115906, 0.007312878035008907, 0.009336182847619057, 0.0032839528284966946, 0.0017670848174020648, 0.0006519770831800997, 0.002209938131272793, 0.012409497983753681, 0.4259493052959442]], [[0.18975551426410675, 0.28629159927368164, 0.2007616013288498, 0.03271638602018356, 0.1258750855922699, 0.07203998416662216, 0.033064503222703934, 0.0237827580422163, 0.007570752874016762, 0.0018961087334901094, 0.0010089421411976218, 0.0010489406995475292, 0.0015997670125216246, 0.010862092487514019, 0.005378192290663719, 0.00022643024567514658, 0.00612123915925622], [0.12268954515457153, 0.29665079712867737, 0.20158503949642181, 0.13312841951847076, 0.06263607740402222, 0.029887787997722626, 0.09609538316726685, 0.04585343971848488, 0.002560230204835534, 0.0002643875777721405, 0.0021009996999055147, 0.0007170123280957341, 0.0005761652137152851, 0.0006644680979661644, 0.0006472732056863606, 0.0018781002145260572, 0.0020647963974624872], [0.09834279865026474, 0.0444544292986393, 0.294821172952652, 0.09888062626123428, 0.06472521275281906, 0.10571271181106567, 0.2087022364139557, 0.07377003878355026, 0.0036772144958376884, 0.00013159157242625952, 0.000514889950864017, 0.0007261170540004969, 0.0008958310354501009, 0.0005146915791556239, 0.0007717930129729211, 0.00042006841977126896, 0.0029386773239821196], [0.20053023099899292, 0.1995178759098053, 0.08394993841648102, 0.039753057062625885, 0.1017308458685875, 0.11949076503515244, 0.0353693850338459, 0.20238079130649567, 0.0037203552201390266, 0.0006184024969115853, 0.0009388746693730354, 0.0008904053829610348, 0.00036710224230773747, 0.002347832778468728, 0.001980625092983246, 0.003532483009621501, 0.0028810175135731697], [0.24109521508216858, 0.06905506551265717, 0.18498580157756805, 0.05258743464946747, 0.03267315402626991, 0.14198490977287292, 0.14849670231342316, 0.08981669694185257, 0.013725503347814083, 0.0014184127794578671, 0.0014362510992214084, 0.0026061460375785828, 0.002922236453741789, 0.0011852694442495704, 0.001491206930950284, 0.003344242461025715, 0.011175778694450855], [0.08579378575086594, 0.0538950189948082, 0.2694253623485565, 0.0670529305934906, 0.11867348104715347, 0.24133417010307312, 0.12008015066385269, 0.0385066457092762, 0.0015596980229020119, 4.522140079643577e-05, 0.00046963433851487935, 0.0004218488174956292, 0.00036008335882797837, 0.0004574651538860053, 0.00038533101906068623, 0.00027632914134301245, 0.0012629734119400382], [0.22816912829875946, 0.11075137555599213, 0.18351751565933228, 0.0603143647313118, 0.10824733227491379, 0.09826086461544037, 0.12833592295646667, 0.06259866803884506, 0.007371312938630581, 0.00022838734730612487, 0.0008989123743958771, 0.0012016290565952659, 0.0014324270887300372, 0.0007669661426916718, 0.0007746859337203205, 0.001289324020035565, 0.005841198842972517], [0.07802582532167435, 0.12547588348388672, 0.317453533411026, 0.06928490102291107, 0.16141177713871002, 0.0838765949010849, 0.09871988743543625, 0.03093957155942917, 0.005233691539615393, 0.001622765907086432, 0.004642815794795752, 0.002525020856410265, 0.0018603933276608586, 0.006656398065388203, 0.005491246934980154, 0.0022683138959109783, 0.004511373583227396], [0.06502555310726166, 7.126542186597362e-05, 0.020700860768556595, 0.0038387258537113667, 0.007685459218919277, 0.04076838865876198, 0.045081835240125656, 0.23812291026115417, 0.23148119449615479, 0.030816929414868355, 0.0006987892556935549, 0.0012259158538654447, 0.007048981264233589, 0.006049943156540394, 0.011828115209937096, 0.06896744668483734, 0.22058765590190887], [0.0008491140324622393, 0.0005212611868046224, 2.5599083528504707e-05, 0.0006783573189750314, 0.0001678473490756005, 9.31520844460465e-06, 0.00012656275066547096, 0.0001950762962223962, 0.09756988286972046, 0.26556169986724854, 0.28196024894714355, 0.04583445563912392, 0.09193549305200577, 0.013926739804446697, 0.029472045600414276, 0.0394529290497303, 0.1317133754491806], [0.0007177837542258203, 0.0008252694387920201, 0.00010313571692677215, 0.00040920067112892866, 0.00012154570868005976, 7.2462034950149246e-06, 0.00013535514881368726, 0.0004142120305914432, 0.05946400389075279, 0.32566601037979126, 0.20180393755435944, 0.030266478657722473, 0.08240750432014465, 0.038651201874017715, 0.05873998999595642, 0.11753781139850616, 0.08272930979728699], [0.0011240089079365134, 0.0004871144483331591, 2.9071303288219497e-05, 0.0002849288284778595, 0.00012817826063837856, 1.4750094123883173e-05, 0.00013278725964482874, 0.0005761770298704505, 0.09627234935760498, 0.1750241369009018, 0.23541271686553955, 0.031787142157554626, 0.15129630267620087, 0.019971439614892006, 0.03018873557448387, 0.12603642046451569, 0.131233811378479], [0.0005903768469579518, 0.0002158536808565259, 5.251400943961926e-05, 0.00026627047918736935, 6.02041109232232e-05, 1.2042210073559545e-05, 0.00013055406452622265, 0.00020666791533585638, 0.12170957773923874, 0.1829490214586258, 0.06646079570055008, 0.09687380492687225, 0.19819007813930511, 0.02818789705634117, 0.06094944477081299, 0.07096985727548599, 0.17217500507831573], [0.022938458248972893, 0.002456842688843608, 0.0009184491937048733, 0.004386201500892639, 0.0005793674499727786, 0.00019684068684000522, 0.0007839884492568672, 0.006411590147763491, 0.07629384845495224, 0.21221914887428284, 0.057410579174757004, 0.05714748799800873, 0.0629132017493248, 0.051415786147117615, 0.07971934974193573, 0.2734029293060303, 0.09080594033002853], [0.005536186043173075, 0.0004560565866995603, 0.0003791222407016903, 0.0013831116957589984, 0.0002366519474890083, 4.778942093253136e-05, 0.0003254574548918754, 0.00259949523024261, 0.14263667166233063, 0.11927974224090576, 0.08668158203363419, 0.04186565801501274, 0.08596266061067581, 0.10303383320569992, 0.09668242186307907, 0.12849071621894836, 0.18440285325050354], [0.004912117961794138, 0.001683229231275618, 0.00017866981215775013, 0.0006479433504864573, 0.0012386339949443936, 0.00021685042884200811, 0.0004188133461866528, 0.00474077183753252, 0.12158916890621185, 0.19421376287937164, 0.15419024229049683, 0.018400857225060463, 0.0642792135477066, 0.051191214472055435, 0.11149299889802933, 0.11672280728816986, 0.15388274192810059], [0.046810876578092575, 5.01327303936705e-05, 0.013078054413199425, 0.0025798736605793238, 0.005134680774062872, 0.024470267817378044, 0.02899685688316822, 0.1702173352241516, 0.2758837938308716, 0.044141292572021484, 0.000980180804617703, 0.0015524347545579076, 0.009378008544445038, 0.007391740567982197, 0.014959284104406834, 0.08218418806791306, 0.27219095826148987]], [[0.10778369009494781, 0.0232497937977314, 0.03110782615840435, 0.013731193728744984, 0.015079586766660213, 0.023576319217681885, 0.007709394674748182, 0.05609725043177605, 0.22407540678977966, 0.07210586220026016, 0.039677854627370834, 0.01689349114894867, 0.050142090767621994, 0.024312153458595276, 0.022013520821928978, 0.04806755110621452, 0.22437705099582672], [0.05314109846949577, 0.05907800793647766, 0.13679544627666473, 0.07387401163578033, 0.03131458908319473, 0.07529086619615555, 0.0689331516623497, 0.06880965083837509, 0.14657367765903473, 0.02871098183095455, 0.016123805195093155, 0.013743139803409576, 0.02172785997390747, 0.011980073526501656, 0.007454304024577141, 0.0484759546816349, 0.1379733830690384], [0.07213469594717026, 0.08035585284233093, 0.004166534636169672, 0.09203176200389862, 0.11806591600179672, 0.0749470666050911, 0.1191972866654396, 0.08482915908098221, 0.13209310173988342, 0.0020194791723042727, 0.01606658659875393, 0.00722781615331769, 0.02062395215034485, 0.0070595694705843925, 0.04329958185553551, 0.004986653104424477, 0.12089500576257706], [0.07898479700088501, 0.0479356087744236, 0.12577833235263824, 0.04626356437802315, 0.009973617270588875, 0.027034349739551544, 0.008731257170438766, 0.09568220376968384, 0.20882639288902283, 0.04436706006526947, 0.00855690985918045, 0.00463868910446763, 0.005511523690074682, 0.011984333395957947, 0.004928638692945242, 0.07905110716819763, 0.1917516142129898], [0.10369876027107239, 0.018532918766140938, 0.1902623176574707, 0.011236610822379589, 0.002089608693495393, 0.06078362837433815, 0.021155675873160362, 0.10914039611816406, 0.1801401972770691, 0.12007852643728256, 0.0021061464212834835, 0.007819721475243568, 0.003933988977223635, 0.0005202434258535504, 0.00022912738495506346, 0.005621068179607391, 0.16265098750591278], [0.07788316905498505, 0.05426955595612526, 0.12573187053203583, 0.019936494529247284, 0.03333894908428192, 0.004992308560758829, 0.05528872832655907, 0.08208587765693665, 0.1532691866159439, 0.02836434170603752, 0.00813301745802164, 0.048644959926605225, 0.050609294325113297, 0.08343028277158737, 0.027831746265292168, 0.006678480189293623, 0.13951171934604645], [0.06192693114280701, 0.03334799036383629, 0.17852658033370972, 0.012649052776396275, 0.056498933583498, 0.29842373728752136, 0.040331047028303146, 0.047012243419885635, 0.08710748702287674, 0.0652073547244072, 0.002463636454194784, 0.012166906148195267, 0.003558964701369405, 0.004711803514510393, 0.0029960169922560453, 0.013195016421377659, 0.07987632602453232], [0.06327886134386063, 0.0836036205291748, 0.10124838352203369, 0.05750996991991997, 0.09481742233037949, 0.08069600909948349, 0.05007690191268921, 0.09224551171064377, 0.15248338878154755, 0.023098070174455643, 0.021547719836235046, 0.011252366006374359, 0.007711201440542936, 0.004103386774659157, 0.0045389411970973015, 0.013189360499382019, 0.13859893381595612], [0.08977363258600235, 0.044923633337020874, 0.05061790347099304, 0.034864556044340134, 0.025146840140223503, 0.03320112079381943, 0.026888906955718994, 0.08315443247556686, 0.16213496029376984, 0.03551569953560829, 0.050996165722608566, 0.025959772989153862, 0.0315140075981617, 0.03536566346883774, 0.044262442737817764, 0.06387795507907867, 0.16180233657360077], [0.15068624913692474, 0.020011581480503082, 0.0038030114956200123, 0.03688008710741997, 0.07749611884355545, 0.031045880168676376, 0.044385720044374466, 0.02682865969836712, 0.15471012890338898, 0.0838741883635521, 0.049962118268013, 0.044467613101005554, 0.009598050266504288, 0.008946756832301617, 0.01274880301207304, 0.07569101452827454, 0.1688639223575592], [0.04740447923541069, 0.021780475974082947, 0.012858090922236443, 0.011991053819656372, 0.004323021043092012, 0.01407338585704565, 0.02045566774904728, 0.04039063677191734, 0.14332930743694305, 0.1817731112241745, 0.007597863208502531, 0.033480092883110046, 0.06982488930225372, 0.05618320405483246, 0.060275815427303314, 0.12317872047424316, 0.1510801762342453], [0.08884214609861374, 0.010657667182385921, 0.017407242208719254, 0.0036999410949647427, 0.014290076680481434, 0.05406496673822403, 0.00889695156365633, 0.023020818829536438, 0.12325640767812729, 0.19782155752182007, 0.062119461596012115, 0.024056755006313324, 0.0280571598559618, 0.037816375494003296, 0.04873092845082283, 0.12775467336177826, 0.12950685620307922], [0.08212973922491074, 0.0251918938010931, 0.0556969977915287, 0.005964886862784624, 0.013916494324803352, 0.09266016632318497, 0.011911566369235516, 0.04747019335627556, 0.17447666823863983, 0.07294398546218872, 0.08815183490514755, 0.0590052492916584, 0.011987412348389626, 0.008345074020326138, 0.024434493854641914, 0.044371023774147034, 0.1813422292470932], [0.06182695925235748, 0.032713308930397034, 0.07611880451440811, 0.028053686022758484, 0.0016748742200434208, 0.06534861773252487, 0.01005744282156229, 0.03510230779647827, 0.1235855296254158, 0.03601160645484924, 0.1817115843296051, 0.023733709007501602, 0.01251690462231636, 0.000523271388374269, 0.003131855046376586, 0.1747126579284668, 0.13317681849002838], [0.07456973195075989, 0.010289469733834267, 0.08816496282815933, 0.014516211114823818, 0.0009223271044902503, 0.02099846862256527, 0.00566053343936801, 0.024335535243153572, 0.12653867900371552, 0.04160265251994133, 0.17082461714744568, 0.0653349757194519, 0.09466809779405594, 0.015321015380322933, 0.015078390017151833, 0.09486056864261627, 0.13631370663642883], [0.05467785522341728, 0.016035791486501694, 0.012110044248402119, 0.033462610095739365, 0.0113012520596385, 0.01578878052532673, 0.015721647068858147, 0.02180643379688263, 0.12207046896219254, 0.09398935735225677, 0.08839790523052216, 0.10018263012170792, 0.01845436729490757, 0.0587228462100029, 0.043921519070863724, 0.16277523338794708, 0.13058136403560638], [0.0883234366774559, 0.04295876994729042, 0.046672359108924866, 0.03217342123389244, 0.02339833416044712, 0.03022189438343048, 0.024998480454087257, 0.07673180103302002, 0.15765050053596497, 0.040973346680402756, 0.056740548461675644, 0.028102349489927292, 0.03387371078133583, 0.03862035647034645, 0.048412393778562546, 0.07143495231866837, 0.15871340036392212]], [[0.07757756114006042, 0.024966368451714516, 0.006401863880455494, 0.022908572107553482, 0.013603247702121735, 0.018894625827670097, 0.014709298498928547, 0.02499750629067421, 0.3588676154613495, 0.015176106244325638, 0.01228202972561121, 0.008453314192593098, 0.00876674521714449, 0.008219013921916485, 0.008951781317591667, 0.02460065297782421, 0.3506237268447876], [0.1237139105796814, 0.053817301988601685, 0.11610157042741776, 0.012742266058921814, 0.0050428323447704315, 0.010134079493582249, 0.005440496373921633, 0.05104897916316986, 0.22674532234668732, 0.012964395806193352, 0.10031000524759293, 0.004582129884511232, 0.004866207949817181, 0.010016756132245064, 0.009577146731317043, 0.0319075845181942, 0.22098898887634277], [0.05845242366194725, 0.06696770340204239, 0.12722915410995483, 0.042245831340551376, 0.01069670170545578, 0.037848278880119324, 0.00223350222222507, 0.041564010083675385, 0.2396683394908905, 0.03153937682509422, 0.03421894088387489, 0.011553503572940826, 0.004738937132060528, 0.0008204185287468135, 0.004141980782151222, 0.0346074253320694, 0.25147339701652527], [0.056034788489341736, 0.06195364147424698, 0.06846596300601959, 0.03857123479247093, 0.010405567474663258, 0.01627117395401001, 0.013158216141164303, 0.02642313577234745, 0.2858181893825531, 0.008688432164490223, 0.05229492858052254, 0.011172953993082047, 0.00723689328879118, 0.0049502053298056126, 0.00789103377610445, 0.047324102371931076, 0.28333956003189087], [0.03916003555059433, 0.10130125284194946, 0.09455464780330658, 0.04280954599380493, 0.00639269407838583, 0.05185806378722191, 0.008054295554757118, 0.04308240860700607, 0.22189150750637054, 0.013388561084866524, 0.06549188494682312, 0.012005145661532879, 0.026264170184731483, 0.003614023793488741, 0.009567645378410816, 0.03260597214102745, 0.22795799374580383], [0.033841926604509354, 0.0349695049226284, 0.043661605566740036, 0.026684299111366272, 0.02233916148543358, 0.07484976947307587, 0.009794989600777626, 0.012129310518503189, 0.09662404656410217, 0.1375279724597931, 0.06735406816005707, 0.1248278096318245, 0.16557638347148895, 0.0012647965922951698, 0.014842272736132145, 0.03692548722028732, 0.09678657352924347], [0.051326751708984375, 0.03745132312178612, 0.030030163004994392, 0.03308398649096489, 0.0028164966497570276, 0.014546118676662445, 0.007192975375801325, 0.03424512594938278, 0.28664684295654297, 0.019697923213243484, 0.06117156893014908, 0.03609964996576309, 0.025255894288420677, 0.018068278208374977, 0.020205562934279442, 0.03162519633769989, 0.29053616523742676], [0.17185695469379425, 0.028961503878235817, 0.030272506177425385, 0.055181682109832764, 0.012850516475737095, 0.008090578950941563, 0.0055708191357553005, 0.02476285584270954, 0.24465125799179077, 0.04835999757051468, 0.03369203209877014, 0.013921026140451431, 0.008021002635359764, 0.005248946603387594, 0.010638822801411152, 0.05581967160105705, 0.242099791765213], [0.0477965883910656, 0.008591419085860252, 0.012560238130390644, 0.007843993604183197, 0.0036647343076765537, 0.009707380086183548, 0.004676171112805605, 0.017591839656233788, 0.4134973883628845, 0.014071790501475334, 0.006980078294873238, 0.008953343145549297, 0.008050679229199886, 0.004276555962860584, 0.005813945084810257, 0.010995090939104557, 0.41492876410484314], [0.04742226377129555, 0.030504191294312477, 0.022241177037358284, 0.04673941433429718, 0.019967779517173767, 0.008044990710914135, 0.012378828600049019, 0.02360449731349945, 0.19647781550884247, 0.04152660816907883, 0.026114612817764282, 0.04644668102264404, 0.11197292804718018, 0.03548828139901161, 0.02690413035452366, 0.10786480456590652, 0.19630101323127747], [0.08561167865991592, 0.26710274815559387, 0.15554147958755493, 0.006184375379234552, 0.0011585064930841327, 0.0028048576787114143, 0.0010972751770168543, 0.026849156245589256, 0.12017999589443207, 0.002236614702269435, 0.18039251863956451, 0.0007021683268249035, 0.0005380944930948317, 0.0013695275411009789, 0.0014217051211744547, 0.02658555656671524, 0.12022377550601959], [0.0411747582256794, 0.01335297804325819, 0.012766428291797638, 0.009585987776517868, 0.0031099379993975163, 0.0018097193678840995, 0.008015465922653675, 0.02464604191482067, 0.29103532433509827, 0.0032987233716994524, 0.005305584520101547, 0.03740245848894119, 0.15607498586177826, 0.0388929508626461, 0.043887872248888016, 0.007889741100370884, 0.30175110697746277], [0.054878272116184235, 0.016822323203086853, 0.009820486418902874, 0.00941557064652443, 0.009204561822116375, 0.003976711072027683, 0.00810614600777626, 0.02501188963651657, 0.2995590567588806, 0.003688205499202013, 0.00458797812461853, 0.013329659588634968, 0.09101948887109756, 0.12248995155096054, 0.021962657570838928, 0.01028417982161045, 0.2958429455757141], [0.018716024234890938, 0.009983398020267487, 0.011888500303030014, 0.0010097380727529526, 0.0002665521460585296, 6.889200449222699e-05, 0.00045605850755237043, 0.016255822032690048, 0.18820303678512573, 0.0025607829447835684, 0.0010256258537992835, 0.0012142137857154012, 0.0905708447098732, 0.2220073789358139, 0.24546314775943756, 0.0022201782558113337, 0.18808981776237488], [0.014399190433323383, 0.010208037681877613, 0.013844252564013004, 0.0006443368620239198, 9.486025373917073e-05, 3.585176818887703e-05, 0.0002541632275097072, 0.013982491567730904, 0.21761368215084076, 0.002050001872703433, 0.00045076539390720427, 0.0005245659849606454, 0.03005126491189003, 0.3267979025840759, 0.15003377199172974, 0.001569760381244123, 0.21744513511657715], [0.09393034130334854, 0.04503176733851433, 0.040884219110012054, 0.04297155514359474, 0.009656489826738834, 0.005742409732192755, 0.006128746550530195, 0.027677081525325775, 0.16846899688243866, 0.03622182458639145, 0.07857640832662582, 0.014126379042863846, 0.07771772146224976, 0.03430793434381485, 0.08873587846755981, 0.057713620364665985, 0.17210865020751953], [0.04696759581565857, 0.008279483765363693, 0.012381640262901783, 0.0076857213862240314, 0.0036634134594351053, 0.0095828827470541, 0.0046584513038396835, 0.016844969242811203, 0.4153643548488617, 0.013680282048881054, 0.006776736583560705, 0.008982094004750252, 0.00785152055323124, 0.0042439838871359825, 0.005718466360121965, 0.01076946035027504, 0.4165489673614502]], [[0.0047764405608177185, 0.014465292915701866, 0.050096191465854645, 0.05621565878391266, 0.029116248711943626, 0.09146157652139664, 0.012836563400924206, 0.5525392293930054, 0.0017905436689034104, 0.00014533997455146164, 0.00040994182927533984, 7.546547567471862e-05, 0.00042966019827872515, 0.0004822840273845941, 0.0005600082804448903, 0.18318414688110352, 0.0014153847005218267], [0.16168992221355438, 0.10332753509283066, 0.05339629203081131, 0.039670344442129135, 0.012893757782876492, 0.004433847963809967, 0.007579755503684282, 0.039914097636938095, 0.2549296021461487, 0.027747051790356636, 0.025680754333734512, 0.005039595067501068, 0.007310409098863602, 0.005721874535083771, 0.005866417661309242, 0.006263407412916422, 0.23853540420532227], [0.017180610448122025, 0.025060182437300682, 0.011769026517868042, 0.010031694546341896, 0.004610319156199694, 0.0018299936782568693, 0.0023333444260060787, 0.03782020881772041, 0.4099421799182892, 0.01139602530747652, 0.04021399840712547, 0.004097555298358202, 0.00659250607714057, 0.009781518951058388, 0.004275632556527853, 0.005514323245733976, 0.39755094051361084], [0.24205714464187622, 0.07515685260295868, 0.03261974826455116, 0.04049297422170639, 0.005498139653354883, 0.003589578904211521, 0.0038170493207871914, 0.02172235958278179, 0.2570441663265228, 0.010600860230624676, 0.03823235630989075, 0.002528026234358549, 0.002313795732334256, 0.006031970959156752, 0.004720599856227636, 0.011787116527557373, 0.24178721010684967], [0.08660157769918442, 0.0267828069627285, 0.015222783200442791, 0.006579977925866842, 0.012355274520814419, 0.0026335930451750755, 0.007058777380734682, 0.013183685019612312, 0.38458919525146484, 0.009724101983010769, 0.026512259617447853, 0.004221614450216293, 0.00862379465252161, 0.005914922337979078, 0.0035414511803537607, 0.004453083034604788, 0.38200119137763977], [0.0565742589533329, 0.022741135209798813, 0.01431846059858799, 0.006974519230425358, 0.01511232927441597, 0.013416020199656487, 0.01251869648694992, 0.04558227211236954, 0.3821878433227539, 0.011998691596090794, 0.00927774142473936, 0.0034956405870616436, 0.009231055155396461, 0.015898576006293297, 0.008460788987576962, 0.0031572398729622364, 0.36905476450920105], [0.145956888794899, 0.024433912709355354, 0.01110045239329338, 0.005589690059423447, 0.00852137804031372, 0.003935094457119703, 0.010604383423924446, 0.028988389298319817, 0.35665518045425415, 0.008224984630942345, 0.010671083815395832, 0.0015613113064318895, 0.015236658044159412, 0.011912493035197258, 0.007133821025490761, 0.010544104501605034, 0.33893024921417236], [0.20003503561019897, 0.03513435274362564, 0.01350048091262579, 0.01155111938714981, 0.005778894294053316, 0.006176818162202835, 0.007779107894748449, 0.07323987036943436, 0.3146964907646179, 0.004583782982081175, 0.01674829237163067, 0.00132132472936064, 0.0052017453126609325, 0.0061356485821306705, 0.003765933448448777, 0.006274424958974123, 0.2880767285823822], [0.01134582795202732, 0.0027886468451470137, 0.004393760114908218, 0.0012013252126052976, 0.0007892410503700376, 0.0006909978692419827, 0.00010258705879095942, 0.01349521055817604, 0.46758270263671875, 0.00317165139131248, 0.003815830685198307, 0.0014670805539935827, 0.0012084972113370895, 0.0014251519460231066, 0.002050597919151187, 0.0063584051094949245, 0.47811266779899597], [0.10397167503833771, 0.01670692302286625, 0.0042348396964371204, 0.002936998615041375, 0.0022281575947999954, 0.001219852943904698, 0.0021744510158896446, 0.02554144524037838, 0.30206283926963806, 0.08706522732973099, 0.005857251584529877, 0.007412291131913662, 0.06019121780991554, 0.03752140700817108, 0.0341554693877697, 0.00837808009237051, 0.2983419597148895], [0.11106002330780029, 0.05798957869410515, 0.009175832383334637, 0.006006509065628052, 0.0009313564514741302, 0.000524171395227313, 0.000814763130620122, 0.01001639012247324, 0.283229798078537, 0.03666605427861214, 0.06804057955741882, 0.00826227106153965, 0.0231171865016222, 0.020987797528505325, 0.024092931300401688, 0.054810263216495514, 0.2842743992805481], [0.21004676818847656, 0.0076301442459225655, 0.0025925468653440475, 0.0025854678824543953, 0.007142297923564911, 0.0010936055332422256, 0.003085079835727811, 0.007417768705636263, 0.22301018238067627, 0.09762229025363922, 0.01705210469663143, 0.016025260090827942, 0.07783763855695724, 0.06277673691511154, 0.028893250972032547, 0.011506946757435799, 0.22368192672729492], [0.16493965685367584, 0.016754286363720894, 0.010389899834990501, 0.005919300951063633, 0.004618823062628508, 0.0022923992946743965, 0.004112088121473789, 0.014372020028531551, 0.3123747706413269, 0.015304689295589924, 0.045718900859355927, 0.008876322768628597, 0.01618959754705429, 0.013929045759141445, 0.010676085948944092, 0.031918950378894806, 0.3216131329536438], [0.17038936913013458, 0.010884520597755909, 0.015259306877851486, 0.013368110172450542, 0.007837566547095776, 0.0039718723855912685, 0.010968479327857494, 0.010812520980834961, 0.20886962115764618, 0.027151932939887047, 0.11788447201251984, 0.01176005881279707, 0.03727806359529495, 0.04098964482545853, 0.04142532870173454, 0.05369703471660614, 0.21745195984840393], [0.13964858651161194, 0.006773388013243675, 0.0038053616881370544, 0.006036474369466305, 0.004589551594108343, 0.001276884926483035, 0.0057591600343585014, 0.01186785101890564, 0.29027774930000305, 0.014422743581235409, 0.0760827511548996, 0.01532750390470028, 0.03502415493130684, 0.0332510881125927, 0.021763911470770836, 0.031127475202083588, 0.3029654622077942], [0.2634395360946655, 0.01273544691503048, 0.005775334779173136, 0.013247941620647907, 0.0012775955256074667, 0.000984705751761794, 0.001921196817420423, 0.0161697156727314, 0.24089935421943665, 0.010158421471714973, 0.04824785143136978, 0.006508584134280682, 0.020357416942715645, 0.02361544407904148, 0.01762244664132595, 0.07775110751390457, 0.23928780853748322], [0.011516982689499855, 0.0026077942457050085, 0.003780677216127515, 0.0010428187670186162, 0.0006774596986360848, 0.0005879882955923676, 9.023277380038053e-05, 0.011555921286344528, 0.4670446217060089, 0.003327441867440939, 0.0041311620734632015, 0.0015518590807914734, 0.001283178455196321, 0.0014886875869706273, 0.0021921079605817795, 0.006300783716142178, 0.4808203876018524]], [[0.1623072475194931, 0.0012633251026272774, 6.962366751395166e-05, 0.00026393134612590075, 0.00012457440607249737, 0.0002578133135102689, 0.00023851668811403215, 0.013526447117328644, 0.25617942214012146, 0.139570415019989, 0.048960089683532715, 0.010567664168775082, 0.029556963592767715, 0.0061595244333148, 0.02951035648584366, 0.03424634039402008, 0.26719775795936584], [0.3390536904335022, 0.0889921486377716, 0.0001930597791215405, 7.445942901540548e-05, 9.19035210245056e-06, 1.4767938409931958e-05, 1.3521007531380747e-05, 0.014010481536388397, 0.16752415895462036, 0.0010525814723223448, 0.21573597192764282, 5.22137779626064e-05, 0.0007142201066017151, 0.00036420393735170364, 0.0010480753844603896, 0.0008295660954900086, 0.1703176498413086], [0.022874783724546432, 5.438602966023609e-05, 0.0037000118754804134, 7.93799881648738e-06, 3.052967940675444e-07, 1.4427190535570844e-06, 6.431093879655236e-07, 0.0016408545197919011, 0.3248033821582794, 0.07067390531301498, 0.17147256433963776, 0.00010828213999047875, 0.0022368491627275944, 0.007475680205971003, 0.01340938825160265, 0.015593297779560089, 0.36594629287719727], [0.07694058865308762, 0.0005037760711275041, 1.0563108844507951e-05, 0.21397846937179565, 0.0007803369080647826, 0.00026854363386519253, 0.0028669836465269327, 0.007937896996736526, 0.22375938296318054, 0.015676237642765045, 0.026943713426589966, 0.023994797840714455, 0.009724375791847706, 0.0024407189339399338, 0.003673345549032092, 0.14758728444576263, 0.24291294813156128], [0.0968499556183815, 4.014170917798765e-05, 1.4629287079515052e-06, 0.0002983074518851936, 0.10172491520643234, 0.0011016654316335917, 0.0001373549021081999, 0.002587493509054184, 0.3251079022884369, 0.004826262127608061, 0.0038076189812272787, 0.03343833610415459, 0.07753121852874756, 0.0012479076394811273, 0.0014325695810839534, 0.0008384762331843376, 0.34902843832969666], [0.058163005858659744, 8.544711818103679e-06, 1.0932297982435557e-06, 7.041184289846569e-05, 0.00019960934878326952, 0.05167846381664276, 2.9497832656488754e-05, 0.0013207800220698118, 0.338161438703537, 0.08370334655046463, 0.0014820311916992068, 0.018722429871559143, 0.07246594876050949, 0.0005756586324423552, 0.001453503267839551, 0.00210462580434978, 0.3698594570159912], [0.07716254144906998, 4.816689761355519e-05, 8.286838237836491e-07, 0.0006725772982463241, 7.168556476244703e-05, 9.905304614221677e-05, 0.12262681126594543, 0.004233615472912788, 0.31639158725738525, 0.03923267871141434, 0.003790271934121847, 0.06171872466802597, 0.021258851513266563, 0.0006978320889174938, 0.0019097381737083197, 0.012133904732763767, 0.3379511833190918], [0.1980915069580078, 0.0031299081165343523, 0.0031548039987683296, 0.001146852970123291, 0.004612255375832319, 0.005859014578163624, 0.001204004161991179, 0.053975775837898254, 0.2188843935728073, 0.13828830420970917, 0.04127419367432594, 0.0035133615601807833, 0.02101023495197296, 0.006222013849765062, 0.03766386955976486, 0.04638373479247093, 0.21558576822280884], [0.2045547366142273, 0.017288926988840103, 0.005911713931709528, 0.004890249576419592, 0.0024099410511553288, 0.0055905357003211975, 0.004014029633253813, 0.06379641592502594, 0.239961639046669, 0.07319413870573044, 0.02846449799835682, 0.009935220703482628, 0.020917033776640892, 0.010961675085127354, 0.026058079674839973, 0.041317325085401535, 0.24073384702205658], [0.3412293493747711, 0.0425233319401741, 0.02530532144010067, 0.010399009101092815, 0.000824531598482281, 0.015127566643059254, 0.008493355475366116, 0.15153510868549347, 0.003197578014805913, 0.3981427848339081, 0.0001430990669177845, 1.0313862730981782e-05, 1.5928937500575557e-05, 2.43582599068759e-06, 1.9739929484785534e-05, 0.00017232833488378674, 0.002858119085431099], [0.08824986964464188, 0.6997199654579163, 0.011842271313071251, 0.0011897149961441755, 2.6869691282627173e-05, 9.908813080983236e-05, 7.700332935201004e-05, 0.010119310580193996, 0.0006344643770717084, 4.224324129609158e-06, 0.1874210089445114, 6.41541078039154e-08, 3.8901990251360985e-07, 1.5369962511613267e-06, 2.8495185233623488e-06, 2.452236003591679e-05, 0.0005868630832992494], [0.3592156767845154, 0.003131461562588811, 0.00036553211975842714, 0.006802729796618223, 0.011866609565913677, 0.017082614824175835, 0.007123382296413183, 0.019259361550211906, 0.003832812188193202, 1.1280466424068436e-05, 2.5483777790213935e-06, 0.5673357844352722, 0.0001800861646188423, 2.9578353860415518e-05, 2.65734543063445e-05, 2.604628389235586e-05, 0.0037079621106386185], [0.5955706238746643, 0.031002193689346313, 0.0059892116114497185, 0.0078062317334115505, 0.015972916036844254, 0.13028669357299805, 0.008188439533114433, 0.1265796273946762, 0.004255733918398619, 4.628387978300452e-05, 4.282952068024315e-05, 0.000389767752494663, 0.06887504458427429, 0.000504101684782654, 0.00041015748865902424, 6.764943100279197e-05, 0.004012505989521742], [0.2370082139968872, 0.013091888278722763, 0.014713992364704609, 0.0027313160244375467, 0.00020957450033165514, 0.0007991665042936802, 0.000574834703002125, 0.1142205223441124, 0.003886783728376031, 4.559553417493589e-06, 5.656806752085686e-05, 1.345186319667846e-05, 0.00010998273501172662, 0.557847261428833, 0.050550296902656555, 0.0006638870690949261, 0.0035178351681679487], [0.09647241979837418, 0.007483694702386856, 0.009100493043661118, 0.0021675468888133764, 5.778981721960008e-05, 0.0003691861347761005, 0.00038284496986307204, 0.06353677809238434, 0.0017389238346368074, 7.33960132492939e-06, 2.791397855617106e-05, 4.250570782460272e-06, 2.4608452804386616e-05, 0.033816851675510406, 0.7830237746238708, 0.0002724375226534903, 0.001513192430138588], [0.26882848143577576, 0.023450184613466263, 0.005285943858325481, 0.12752436101436615, 0.0004531803715508431, 0.0017976476810872555, 0.0029235482215881348, 0.10919898003339767, 0.008442096412181854, 5.5021519074216485e-05, 0.00016640385729260743, 1.107062962546479e-05, 1.499476820754353e-05, 8.318276377394795e-05, 0.00012007253826595843, 0.4437243938446045, 0.007920338772237301], [0.22886542975902557, 0.023172790184617043, 0.008197464980185032, 0.006507922429591417, 0.0031450276728719473, 0.007757019717246294, 0.005424468778073788, 0.07678276300430298, 0.22266785800457, 0.065454863011837, 0.027140682563185692, 0.009864493273198605, 0.019179660826921463, 0.010259775444865227, 0.022666333243250847, 0.040682610124349594, 0.22223085165023804]], [[0.09246888011693954, 0.06194363906979561, 0.11018208414316177, 0.0610809363424778, 0.20336997509002686, 0.10996213555335999, 0.01868795044720173, 0.04144829511642456, 0.05479266121983528, 0.10289625823497772, 0.018722767010331154, 0.0013742772862315178, 0.01276630163192749, 0.004419051576405764, 0.004897411447018385, 0.04978408291935921, 0.051203250885009766], [0.08506936579942703, 0.049196187406778336, 0.12829461693763733, 0.04550391063094139, 0.14054259657859802, 0.0526413656771183, 0.029778851196169853, 0.045694414526224136, 0.05757182836532593, 0.11799205839633942, 0.12959042191505432, 0.00145761389285326, 0.004579771310091019, 0.0026518211234360933, 0.0022720787674188614, 0.052544161677360535, 0.05461887642741203], [0.09991312772035599, 0.02390151284635067, 0.17408640682697296, 0.014207236468791962, 0.011501027271151543, 0.03187821805477142, 0.012340192683041096, 0.03705303743481636, 0.21625526249408722, 0.03588656708598137, 0.07371551543474197, 0.004669873043894768, 0.011105416342616081, 0.009820433333516121, 0.007865686900913715, 0.022701747715473175, 0.21309876441955566], [0.08387314528226852, 0.011907560750842094, 0.0862431600689888, 0.0826898068189621, 0.11915934085845947, 0.04959939047694206, 0.013076802715659142, 0.01409516204148531, 0.047607846558094025, 0.0564408004283905, 0.01073156762868166, 0.0014565858291462064, 0.004775232635438442, 0.007413520477712154, 0.006316609680652618, 0.3586348295211792, 0.0459785982966423], [0.0606183297932148, 0.013322938233613968, 0.10909030586481094, 0.014323634095489979, 0.11583612114191055, 0.04240940883755684, 0.01285891979932785, 0.06441843509674072, 0.2113136649131775, 0.10709409415721893, 0.008821564726531506, 0.0008644995978102088, 0.0015205212403088808, 0.0006168255931697786, 0.0008936897502280772, 0.029101520776748657, 0.20689548552036285], [0.0518786758184433, 0.012471107766032219, 0.1649257242679596, 0.006757655646651983, 0.036428455263376236, 0.015883615240454674, 0.008681015111505985, 0.023485753685235977, 0.28365588188171387, 0.09019187092781067, 0.009715721011161804, 0.0006356050143949687, 0.0018064918695017695, 0.002422560937702656, 0.0015673176385462284, 0.013480921275913715, 0.27601158618927], [0.016165167093276978, 0.011963787488639355, 0.09751909971237183, 0.0057828170247375965, 0.021685222163796425, 0.0210827998816967, 0.005414087790995836, 0.01337400171905756, 0.35972151160240173, 0.06218336895108223, 0.020896082744002342, 0.002786192111670971, 0.0016405622009187937, 0.001782930688932538, 0.002505082171410322, 0.010956077836453915, 0.3445413410663605], [0.08164932578802109, 0.03990740329027176, 0.08788231760263443, 0.05205972492694855, 0.16068410873413086, 0.05053249001502991, 0.009451997466385365, 0.09337428212165833, 0.09370559453964233, 0.15410488843917847, 0.02712096832692623, 0.001029302948154509, 0.005088322330266237, 0.002205743221566081, 0.0021048653870821, 0.05023520812392235, 0.08886346966028214], [0.004474562592804432, 0.0011820620857179165, 0.007393202744424343, 0.001520694000646472, 0.001425054739229381, 0.0027973284013569355, 0.0004933666787110269, 0.010234818793833256, 0.47769516706466675, 0.002372149610891938, 0.001906862948089838, 0.0007091793813742697, 0.0006218882626853883, 0.0008513749344274402, 0.0007196696242317557, 0.0016267203027382493, 0.48397573828697205], [0.10300230979919434, 0.012551168911159039, 0.03135497868061066, 0.013058312237262726, 0.08720850199460983, 0.03815891966223717, 0.004374713636934757, 0.015692712739109993, 0.07346475124359131, 0.44246822595596313, 0.02071460522711277, 0.0010239272378385067, 0.008562631905078888, 0.01139331515878439, 0.014961163513362408, 0.04564831033349037, 0.07636153697967529], [0.1521003097295761, 0.020120013505220413, 0.08223660290241241, 0.0221259742975235, 0.058031730353832245, 0.03446701169013977, 0.013106283731758595, 0.017250314354896545, 0.059794191271066666, 0.21883663535118103, 0.13909012079238892, 0.003814751747995615, 0.006077473517507315, 0.012380351312458515, 0.00395074812695384, 0.09228211641311646, 0.06433528661727905], [0.023298460990190506, 0.007727380841970444, 0.059849195182323456, 0.003751971060410142, 0.007221390958875418, 0.014949124306440353, 0.005415600258857012, 0.005057912785559893, 0.3309497535228729, 0.1234544888138771, 0.023582691326737404, 0.003017864190042019, 0.0017162382137030363, 0.009371913969516754, 0.016971569508314133, 0.02475302293896675, 0.33891159296035767], [0.01758722774684429, 0.013618450611829758, 0.07672133296728134, 0.000871562457177788, 0.0018003752920776606, 0.007232997566461563, 0.004678796511143446, 0.003702498273923993, 0.39411067962646484, 0.06546493619680405, 0.007070925552397966, 0.003873503766953945, 0.005213557276874781, 0.0038225280586630106, 0.006586284842342138, 0.001729118637740612, 0.3859153389930725], [0.050994254648685455, 0.039802730083465576, 0.12303764373064041, 0.014415951445698738, 0.014315569773316383, 0.03778175264596939, 0.019377561286091805, 0.009150020778179169, 0.254240483045578, 0.07567020505666733, 0.023418530821800232, 0.008936692960560322, 0.01541205495595932, 0.01106566283851862, 0.031168535351753235, 0.029420187696814537, 0.24179214239120483], [0.031442221254110336, 0.01501182559877634, 0.03548745810985565, 0.009461838752031326, 0.004510349128395319, 0.012757851742208004, 0.010247272439301014, 0.010063671506941319, 0.3640801012516022, 0.03410377725958824, 0.01032322645187378, 0.008739592507481575, 0.018789246678352356, 0.020711369812488556, 0.03466292843222618, 0.01791529357433319, 0.361691951751709], [0.07557731866836548, 0.015311889350414276, 0.01394333690404892, 0.04659917578101158, 0.07440418004989624, 0.03132397308945656, 0.014012784697115421, 0.012508862651884556, 0.046278029680252075, 0.4481610655784607, 0.024148615077137947, 0.0030854649376124144, 0.008612181060016155, 0.023680653423070908, 0.026031577959656715, 0.08909101039171219, 0.047229815274477005], [0.004537979140877724, 0.0010722988517954946, 0.006664913147687912, 0.0013428947422653437, 0.0012812219792976975, 0.002524411305785179, 0.0004473469452932477, 0.009245374239981174, 0.4765443205833435, 0.002610776573419571, 0.002038220874965191, 0.0007411545375362039, 0.0006175400922074914, 0.0008927881135605276, 0.0007382421754300594, 0.0017119499389082193, 0.4869885742664337]], [[0.017373783513903618, 0.010760200209915638, 0.004052707459777594, 0.002160601783543825, 0.004703983198851347, 0.000394698727177456, 0.0004772089596372098, 0.008218641392886639, 0.08138436079025269, 0.07528041303157806, 0.5505829453468323, 0.007514370139688253, 0.0081545514985919, 0.012097654864192009, 0.06066875904798508, 0.06331667304039001, 0.09285833686590195], [0.011449586600065231, 0.006356136407703161, 0.8754265904426575, 0.008639363572001457, 0.003794182790443301, 0.004211607854813337, 0.0020771094132214785, 0.007402998860925436, 0.028407972306013107, 0.0015781077090650797, 0.01243663765490055, 0.000761339208111167, 0.0011568123009055853, 0.0005532116629183292, 0.007559823337942362, 0.001159479608759284, 0.027029061689972878], [0.03195991739630699, 0.2568446695804596, 0.12623031437397003, 0.008409995585680008, 0.004986082203686237, 0.007851914502680302, 0.004397053271532059, 0.04552983492612839, 0.21597664058208466, 0.000780573463998735, 0.017395876348018646, 0.005138861481100321, 0.002892897929996252, 0.007520338054746389, 0.024654734879732132, 0.02250443957746029, 0.21692578494548798], [0.04044754430651665, 0.015792282298207283, 0.0023268135264515877, 0.00258962856605649, 0.04314747080206871, 0.2793048620223999, 0.30927082896232605, 0.061317089945077896, 0.11304378509521484, 0.0016480220947414637, 0.0016632579499855638, 0.005961955059319735, 0.0024919621646404266, 0.0017828393029049039, 0.004487823229283094, 0.00265551102347672, 0.11206835508346558], [0.01992252841591835, 0.015503552742302418, 0.010178887285292149, 0.037280816584825516, 0.0024466016329824924, 0.6000202894210815, 0.1180553212761879, 0.04667108133435249, 0.06691066920757294, 0.004596197512000799, 0.0009887930937111378, 0.007241436745971441, 0.00015203337534330785, 0.00032288688817061484, 0.0035447953268885612, 0.0008390126167796552, 0.0653250515460968], [0.03467075899243355, 0.06156986579298973, 0.04821975156664848, 0.1019117683172226, 0.16641081869602203, 0.0029154496733099222, 0.3086279034614563, 0.04037686064839363, 0.1068916767835617, 0.004694036673754454, 0.006833398714661598, 0.0009412026265636086, 0.005467477720230818, 0.00034866968053393066, 0.003190305782482028, 0.004664421547204256, 0.10226564854383469], [0.0012558179441839457, 6.563087663380429e-05, 4.949299545842223e-05, 0.0015380426775664091, 0.00023054353368934244, 0.9875051975250244, 0.0004441349592525512, 0.0025152326561510563, 0.003047464182600379, 0.0002783294767141342, 6.7850196501240134e-06, 5.451321339933202e-05, 1.8367582015343942e-06, 3.508809459162876e-05, 0.00010729442874435335, 2.2561776859220117e-05, 0.002842082642018795], [0.053099703043699265, 0.0543893501162529, 0.03896797075867653, 0.06328529864549637, 0.060940925031900406, 0.016793664544820786, 0.042788613587617874, 0.06915182620286942, 0.21027907729148865, 0.0890103131532669, 0.07785212248563766, 0.005868659820407629, 0.003588279942050576, 0.004618037957698107, 0.0057329339906573296, 0.011873433366417885, 0.19175979495048523], [0.06063633784651756, 0.06326667219400406, 0.034328192472457886, 0.022750509902834892, 0.010062981396913528, 0.0041212965734303, 0.01725657843053341, 0.0666080117225647, 0.2555081844329834, 0.04517829790711403, 0.05627714470028877, 0.017643898725509644, 0.015165286138653755, 0.011751209385693073, 0.020329898223280907, 0.04869578778743744, 0.2504197061061859], [0.042590171098709106, 0.007069586776196957, 0.0012985594803467393, 0.014135523699223995, 0.00020970412879250944, 0.0025508131366223097, 0.0003640716022346169, 0.02199370414018631, 0.13977669179439545, 0.007103921379894018, 0.2491903156042099, 0.008471415378153324, 0.013476744294166565, 0.015292834490537643, 0.24435527622699738, 0.08526758849620819, 0.14685308933258057], [0.025622189044952393, 0.005079266615211964, 0.0159971471875906, 0.0022866185754537582, 0.0003106805379502475, 0.0007034053560346365, 0.0006128181703388691, 0.015516459941864014, 0.0847368910908699, 0.6358482241630554, 0.04185083135962486, 0.0064671714790165424, 0.007325771264731884, 0.012678802944719791, 0.021403003484010696, 0.03589853271842003, 0.08766209334135056], [0.01034579984843731, 0.0010164995910599828, 0.0007042950601316988, 0.0005764112574979663, 0.0001418629544787109, 7.555496267741546e-05, 6.739431410096586e-05, 0.0010716611286625266, 0.011676725931465626, 0.002192141953855753, 0.002111768117174506, 0.00011826671834569424, 0.9365773797035217, 0.004679031670093536, 0.014322083443403244, 0.0025440813042223454, 0.011778962798416615], [0.00584240211173892, 0.0006241857772693038, 0.0002169349609175697, 0.0004340888699516654, 9.15642740437761e-05, 0.00011733853898476809, 8.395465556532145e-05, 0.0064913625828921795, 0.03131890669465065, 0.00014143298903945833, 0.0012957515427842736, 0.9128997921943665, 0.00019785920449066907, 0.0010000524343922734, 0.006657343823462725, 0.001121798879466951, 0.031465109437704086], [0.011719241738319397, 0.001982304034754634, 0.0029356570448726416, 0.00029034720500931144, 0.0014887249562889338, 8.823991083772853e-05, 0.0013051838614046574, 0.0023637183476239443, 0.023899512365460396, 7.243487925734371e-05, 0.0020801685750484467, 0.002515074796974659, 0.013138941489160061, 0.013515998609364033, 0.8798472285270691, 0.017791997641324997, 0.024965189397335052], [0.014468244276940823, 0.002123360289260745, 0.0009089037775993347, 0.00027280973154120147, 0.0009915506234392524, 3.583553188946098e-05, 0.0006245332187972963, 0.003266494255512953, 0.03394186869263649, 0.0014993351651355624, 0.0031883211340755224, 0.005818007048219442, 0.009238418191671371, 0.8628991842269897, 0.0052667162381112576, 0.019341936334967613, 0.03611455112695694], [0.02876167744398117, 0.004317948129028082, 0.0021643307991325855, 0.002739173825830221, 0.0013453061692416668, 0.013219424523413181, 0.0009473168174736202, 0.008477412164211273, 0.05804387480020523, 0.027571791782975197, 0.058400530368089676, 0.059598151594400406, 0.030119767412543297, 0.1764165610074997, 0.40899723768234253, 0.054463885724544525, 0.06441550701856613], [0.06170149892568588, 0.05879565700888634, 0.030704542994499207, 0.021936966106295586, 0.010049635544419289, 0.004163258709013462, 0.01647026464343071, 0.06377705186605453, 0.2525229752063751, 0.050131164491176605, 0.05698935687541962, 0.017769869416952133, 0.015925999730825424, 0.012618206441402435, 0.02194317989051342, 0.0541968047618866, 0.2503035366535187]], [[0.005758460145443678, 0.0021250469144433737, 0.004918077029287815, 0.0015783997951075435, 0.0031314161606132984, 0.0012560640461742878, 0.0003333171480335295, 0.005877758841961622, 0.42379939556121826, 0.03887219354510307, 0.027776392176747322, 0.000757195521146059, 0.006674075033515692, 0.005416585598140955, 0.004057684447616339, 0.00699286675080657, 0.46067506074905396], [0.017574958503246307, 0.06447048485279083, 0.051008909940719604, 0.0031163066159933805, 0.001023966120555997, 0.004448094870895147, 0.001327427802607417, 0.01151659432798624, 0.4472600817680359, 0.000724693585652858, 0.002181157236918807, 3.543791171978228e-05, 0.0003073539410252124, 0.00014391100557986647, 0.00037076984881423414, 0.0008658475708216429, 0.3936239778995514], [0.002968674525618553, 0.005619123578071594, 0.028435001149773598, 0.0002892887860070914, 3.1841998861636966e-05, 0.00029665420879609883, 6.943188782315701e-05, 0.0044031897559762, 0.5065798759460449, 0.0004636448866222054, 0.0008735298179090023, 1.942684866662603e-05, 5.949027763563208e-05, 0.00013078321353532374, 0.0006501429015770555, 0.00033773420727811754, 0.4487721621990204], [0.01788296550512314, 0.24235442280769348, 0.11464615911245346, 0.024721350520849228, 0.004135359078645706, 0.005985644645988941, 0.011329052969813347, 0.015966244041919708, 0.28977298736572266, 0.009694698266685009, 0.00605228915810585, 0.002183745615184307, 0.00193732138723135, 0.000617838348262012, 0.0010090431896969676, 0.0023053723853081465, 0.24940550327301025], [0.004345357418060303, 0.053547076880931854, 0.02130398340523243, 0.007296844385564327, 0.011325634084641933, 0.003009550739079714, 0.00919779110699892, 0.008209788240492344, 0.45820072293281555, 0.00025447012740187347, 0.001014708774164319, 0.0012865019962191582, 0.0014641362940892577, 0.0001525093975942582, 0.0003483017208054662, 0.0002487985184416175, 0.41879361867904663], [0.006185310892760754, 0.052064698189496994, 0.05677692964673042, 0.006097305100411177, 0.007340249139815569, 0.023725558072328568, 0.011273540556430817, 0.008761817589402199, 0.4159131348133087, 0.0032796317245811224, 0.0023197925183922052, 0.001466546906158328, 0.001557107549160719, 0.0006841841386631131, 0.0010070785647258162, 0.0012539854506030679, 0.4002930521965027], [0.009984118863940239, 0.2552521824836731, 0.08297386020421982, 0.01195122767239809, 0.004918457940220833, 0.010436220094561577, 0.04108359292149544, 0.0127377575263381, 0.29193446040153503, 0.0002466780715622008, 0.0017972913337871432, 0.0028018862940371037, 0.0010170921450480819, 0.0002896444930229336, 0.0003109632816631347, 0.0011466684518381953, 0.27111801505088806], [0.016285758465528488, 0.12385275214910507, 0.11852085590362549, 0.2824400067329407, 0.16928309202194214, 0.07208912819623947, 0.03803791105747223, 0.0434800423681736, 0.04765653610229492, 0.02233661711215973, 0.008134892210364342, 0.0026699446607381105, 0.002235323190689087, 0.0026772483251988888, 0.001221737009473145, 0.005273064598441124, 0.043805088847875595], [0.003703151596710086, 0.0030523992609232664, 0.007243176456540823, 0.0023688124492764473, 0.004038053099066019, 0.0021750314626842737, 0.0012231331784278154, 0.00723686907440424, 0.47688260674476624, 0.0032990286126732826, 0.00206870399415493, 0.0008751602726988494, 0.0030658964533358812, 0.0014470196329057217, 0.002316804137080908, 0.0015734852058812976, 0.4774307310581207], [0.028774790465831757, 0.002642599167302251, 0.002106707077473402, 0.00568531034514308, 0.004500947892665863, 0.0288652665913105, 0.005638797301799059, 0.014731933362782001, 0.3937789797782898, 0.02373965084552765, 0.01259586215019226, 0.002859694417566061, 0.006989844609051943, 0.005218239035457373, 0.00419235322624445, 0.010987569577991962, 0.4466913938522339], [0.05040007829666138, 0.40499311685562134, 0.1488456279039383, 0.00640207901597023, 0.0005312006105668843, 0.0021755725611001253, 0.0006728880689479411, 0.005858015734702349, 0.0635240226984024, 0.0029547137673944235, 0.23792485892772675, 0.0003149133117403835, 0.0002752009895630181, 0.0005135594983585179, 0.0002646218636073172, 0.0051895552314817905, 0.06916012614965439], [0.008348342031240463, 0.004867127165198326, 0.0013254539808258414, 0.0005954488879069686, 0.0015938024735078216, 0.0030688317492604256, 0.008740752004086971, 0.008971484377980232, 0.4144304096698761, 0.0013387096114456654, 0.012678942643105984, 0.07251113653182983, 0.021529830992221832, 0.0016468254616484046, 0.0026867168489843607, 0.0015883127925917506, 0.43407773971557617], [0.01259857602417469, 0.011510941199958324, 0.006271845661103725, 0.0004519037320278585, 0.0005010212771594524, 0.0017907355213537812, 0.0021989252418279648, 0.01928710751235485, 0.4178101420402527, 0.0008950172923505306, 0.003501642495393753, 0.008178569376468658, 0.07352893799543381, 0.0016593364998698235, 0.0033335292246192694, 0.0014292368432506919, 0.4350525140762329], [0.026836425065994263, 0.01943366229534149, 0.03158280998468399, 0.006877897307276726, 0.0013161987299099565, 0.005196307320147753, 0.0027716970071196556, 0.027549246326088905, 0.22064585983753204, 0.09490353614091873, 0.11428601294755936, 0.018736863508820534, 0.022037819027900696, 0.06502929329872131, 0.10713031888008118, 0.007348590064793825, 0.22831745445728302], [0.023632125928997993, 0.007872000336647034, 0.017207829281687737, 0.0025761686265468597, 0.0006747061852365732, 0.0023692105896770954, 0.0013521189102903008, 0.02210311032831669, 0.3481515049934387, 0.028256116434931755, 0.0492672324180603, 0.01164205651730299, 0.026400674134492874, 0.030927538871765137, 0.0554853193461895, 0.008229000493884087, 0.3638533353805542], [0.03483754023909569, 0.05955659598112106, 0.03354164958000183, 0.0251525416970253, 0.004316721111536026, 0.005708860699087381, 0.002586419228464365, 0.02293725684285164, 0.03824807330965996, 0.2152269333600998, 0.37943756580352783, 0.03995276242494583, 0.028697805479168892, 0.017712391912937164, 0.012051386758685112, 0.041439756751060486, 0.03859568387269974], [0.00356517662294209, 0.0029283235780894756, 0.006426373030990362, 0.002057009842246771, 0.0034274396020919085, 0.001882188837043941, 0.001106921350583434, 0.006688086315989494, 0.47607871890068054, 0.003981856629252434, 0.0023538446985185146, 0.0009857633849605918, 0.0034294750075787306, 0.0015889498172327876, 0.0025830105878412724, 0.001771243056282401, 0.47914549708366394]], [[0.057300034910440445, 0.00101943698246032, 0.0021415636874735355, 0.0008546136086806655, 0.0054085771553218365, 0.002029214520007372, 0.0008198036812245846, 0.009260308928787708, 0.03953936696052551, 0.37982413172721863, 0.11117511987686157, 0.023168686777353287, 0.06998268514871597, 0.007911001332104206, 0.02765064686536789, 0.2104039192199707, 0.05151091516017914], [0.050369054079055786, 0.04385271668434143, 0.03822799772024155, 0.02151563949882984, 0.018855562433600426, 0.01827183924615383, 0.006778425071388483, 0.22453130781650543, 0.1340239942073822, 0.07135462760925293, 0.12506183981895447, 0.006461805198341608, 0.06561027467250824, 0.006908669136464596, 0.009605640545487404, 0.02335977740585804, 0.135210782289505], [0.11721554398536682, 0.041641246527433395, 0.00972040556371212, 0.014014014042913914, 0.0024876361712813377, 0.013287719339132309, 0.0128793865442276, 0.0887947529554367, 0.27240633964538574, 0.005507349967956543, 0.0697098821401596, 0.004777554888278246, 0.018232645466923714, 0.018764374777674675, 0.03664420172572136, 0.009778556413948536, 0.26413843035697937], [0.045295413583517075, 0.027806073427200317, 0.009272068738937378, 0.03675176575779915, 0.007415296975523233, 0.006798502057790756, 0.004238978959619999, 0.2488250732421875, 0.21867583692073822, 0.03023870475590229, 0.05722988769412041, 0.00428718002513051, 0.00888246763497591, 0.004540345631539822, 0.004844400100409985, 0.07130539417266846, 0.21359269320964813], [0.035432640463113785, 0.02858577109873295, 0.00421521719545126, 0.026622828096151352, 0.01288614422082901, 0.010608547367155552, 0.006954746320843697, 0.11331315338611603, 0.3651497960090637, 0.018921684473752975, 0.008791389875113964, 0.0070966617204248905, 0.0026162010617554188, 0.0007993182516656816, 0.0005278706084936857, 0.0074110026471316814, 0.35006698966026306], [0.06639274209737778, 0.019437698647379875, 0.005019697826355696, 0.011193592101335526, 0.007175098173320293, 0.004456063732504845, 0.01689990609884262, 0.0620136484503746, 0.34760984778404236, 0.020261550322175026, 0.02027243748307228, 0.0403585322201252, 0.006405416410416365, 0.010466115549206734, 0.00706848967820406, 0.008198833093047142, 0.346770316362381], [0.04457259550690651, 0.016032623127102852, 0.016786210238933563, 0.01425451971590519, 0.05170614272356033, 0.04014769569039345, 0.02640923112630844, 0.06022537499666214, 0.33386293053627014, 0.03130337968468666, 0.008061649277806282, 0.007199801970273256, 0.018669651821255684, 0.0010074260644614697, 0.0015692927408963442, 0.00830166693776846, 0.31988975405693054], [0.05643227696418762, 0.013646628707647324, 0.0317501500248909, 0.011067698709666729, 0.014415115118026733, 0.015359370037913322, 0.005356915760785341, 0.10379167646169662, 0.2578006684780121, 0.0454564169049263, 0.04180770367383957, 0.008032647892832756, 0.026290351524949074, 0.01669144816696644, 0.017197489738464355, 0.0743250846862793, 0.26057830452919006], [0.02858106605708599, 0.0043085659854114056, 0.007958337664604187, 0.003052199026569724, 0.0018483898602426052, 0.005658274050801992, 0.001412619836628437, 0.010081819258630276, 0.44751182198524475, 0.006560749374330044, 0.004632902331650257, 0.0027243869844824076, 0.0037464250344783068, 0.010423772037029266, 0.007968236692249775, 0.005649067461490631, 0.4478813409805298], [0.01825212873518467, 0.011661571450531483, 0.0027983144391328096, 0.009320065379142761, 0.003965599928051233, 0.0022205798886716366, 0.0019291775533929467, 0.06871742010116577, 0.3039730489253998, 0.04260949417948723, 0.015275034122169018, 0.03099219501018524, 0.007589003536850214, 0.004136906936764717, 0.003975234925746918, 0.1305551528930664, 0.3420291244983673], [0.08748237788677216, 0.02557387948036194, 0.018112313002347946, 0.0049604433588683605, 0.0014782048529013991, 0.0022030407562851906, 0.0009602387435734272, 0.05315152183175087, 0.20510943233966827, 0.05159322917461395, 0.0959496796131134, 0.01279450487345457, 0.10031656175851822, 0.008924460038542747, 0.030730612576007843, 0.07733865827322006, 0.2233208864927292], [0.0498603954911232, 0.007433606311678886, 0.0016537772025913, 0.005322957877069712, 0.0039930944330990314, 0.0035380616318434477, 0.004288866184651852, 0.0305508840829134, 0.35446223616600037, 0.04660920053720474, 0.007483022287487984, 0.01469020638614893, 0.013795307837426662, 0.006084782537072897, 0.008098689839243889, 0.06909304112195969, 0.3730418384075165], [0.07243383675813675, 0.007740843575447798, 0.012108874507248402, 0.004148117266595364, 0.002742878394201398, 0.0028195148333907127, 0.0024749175645411015, 0.013945343904197216, 0.3822646141052246, 0.011517291888594627, 0.014738879166543484, 0.01524115726351738, 0.0059837885200977325, 0.006411973387002945, 0.011587921530008316, 0.02359296754002571, 0.41024717688560486], [0.07854430377483368, 0.010273326188325882, 0.012068699114024639, 0.006702507380396128, 0.0009893893729895353, 0.004420892801135778, 0.0008018749067559838, 0.03200588747859001, 0.34090402722358704, 0.040411461144685745, 0.032732728868722916, 0.009501599706709385, 0.007069308776408434, 0.001155844540335238, 0.0020612222142517567, 0.051742397248744965, 0.3686145544052124], [0.05737154930830002, 0.005662776064127684, 0.017658615484833717, 0.0023623763117939234, 0.0003382973372936249, 0.00366365653462708, 0.0006075557903386652, 0.01110900565981865, 0.40067917108535767, 0.015711462125182152, 0.011430365033447742, 0.009247093461453915, 0.009218628518283367, 0.0039481609128415585, 0.002190220169723034, 0.01950480043888092, 0.4292961359024048], [0.08930555731058121, 0.008811046369373798, 0.003925340250134468, 0.0061110337264835835, 0.0007046632235869765, 0.0012062698369845748, 0.002200786955654621, 0.04369465634226799, 0.2070087343454361, 0.052017226815223694, 0.10487690567970276, 0.01837259903550148, 0.01100108027458191, 0.041804101318120956, 0.03691233694553375, 0.13987357914447784, 0.23217403888702393], [0.028904935345053673, 0.003862805664539337, 0.0069825011305511, 0.0027303777169436216, 0.0016403237823396921, 0.005138302221894264, 0.0012722150422632694, 0.009086940437555313, 0.4471859633922577, 0.006697922945022583, 0.004753866232931614, 0.0028129389975219965, 0.0038341365288943052, 0.010505229234695435, 0.008085634559392929, 0.005789699032902718, 0.4507160782814026]]], [[[0.0012268522987142205, 0.001193615491501987, 0.0008361958898603916, 0.0006956990691833198, 0.0005406527197919786, 0.0006869614589959383, 0.0001046524994308129, 0.00037079612957313657, 0.497846394777298, 0.00019136350601911545, 0.0009103208431042731, 0.0003853342786896974, 0.0001866445818450302, 0.00035458983620628715, 0.0005960086127743125, 0.001435288693755865, 0.49243876338005066], [0.0026062126271426678, 0.05955971032381058, 0.00483003119006753, 0.005125260911881924, 0.0005440955865196884, 6.521259638248011e-05, 1.5452906154678203e-05, 0.0016047164099290967, 0.48359861969947815, 0.00040745188016444445, 0.0005516891833394766, 8.585672912886366e-05, 4.36004156654235e-05, 9.114493877859786e-06, 1.6389247321058065e-05, 0.00013914727605879307, 0.440797358751297], [0.0012028494384139776, 0.016091173514723778, 0.003556471085175872, 0.0013756597181782126, 0.001338676200248301, 6.803135329391807e-05, 2.319568011444062e-06, 9.375611989526078e-05, 0.4932926893234253, 2.1794699932797812e-05, 6.046155613148585e-05, 0.00022290619381237775, 8.975849050329998e-05, 7.32401676941663e-05, 2.691619738470763e-05, 4.034143057651818e-05, 0.4824428856372833], [0.001231819624081254, 0.026759592816233635, 0.08602309226989746, 0.012478143908083439, 0.01793690025806427, 0.006892875302582979, 0.00045659096213057637, 0.00020609903731383383, 0.4271720051765442, 6.295902949204901e-06, 0.0001687098847469315, 1.4306229786598124e-05, 0.001585383783094585, 0.0010070924181491137, 0.0005593216046690941, 1.904971395561006e-05, 0.41748276352882385], [0.001968498807400465, 0.005546071566641331, 0.05872735381126404, 0.19377446174621582, 0.025837019085884094, 0.0069153644144535065, 0.00015923671890050173, 0.0002369584544794634, 0.3460055887699127, 4.942282430420164e-06, 0.00010580255184322596, 3.394395753275603e-05, 1.1801466826000251e-05, 0.00019035862351302058, 0.0002730124397203326, 0.0008204026380553842, 0.35938921570777893], [0.0006208086269907653, 0.0017168422928079963, 0.0010606016730889678, 0.009086660109460354, 0.031358879059553146, 0.0035127843730151653, 8.70905423653312e-05, 0.00016364851035177708, 0.4641072452068329, 9.295687277699471e-07, 5.042512384534348e-06, 2.548368229327025e-06, 3.4707863960647956e-07, 8.447937943856232e-06, 1.3873927855456714e-05, 0.00017733579443302006, 0.4880768954753876], [0.00010141226812265813, 0.00017872703028842807, 0.00048087057075463235, 0.0018851286731660366, 0.0323953777551651, 0.9014703631401062, 0.0012603531358763576, 0.0006397413089871407, 0.030593007802963257, 2.1202245079621207e-06, 1.9603039618232287e-06, 1.9454557786957594e-07, 4.4716239244735334e-07, 1.3283220141602214e-06, 5.0499393182690255e-06, 2.0365290765766986e-05, 0.030963612720370293], [0.002887450158596039, 0.0005018715164624155, 0.0007899686461314559, 0.0022305496968328953, 0.00206627044826746, 0.04613981768488884, 0.41361093521118164, 0.00941880140453577, 0.2649163007736206, 3.681482849060558e-05, 0.00017398048657923937, 5.955187134532025e-06, 1.1472105143184308e-05, 1.3377554751059506e-05, 0.00038810836849734187, 0.0006162631325423717, 0.25619208812713623], [0.020558619871735573, 0.015892986208200455, 0.011825784109532833, 0.009166625328361988, 0.007707756478339434, 0.005215456243604422, 0.002697019837796688, 0.019493063911795616, 0.4218929409980774, 0.007586413994431496, 0.011317050084471703, 0.007993200793862343, 0.004722606856375933, 0.00699605792760849, 0.005569026339799166, 0.023229949176311493, 0.4181354343891144], [0.0013022085186094046, 5.9417747252155095e-05, 9.618737749406137e-06, 3.1320553262048634e-06, 9.828867177930078e-07, 6.095452135923551e-06, 5.499676262843423e-06, 0.0038343945052474737, 0.5037134289741516, 0.01935252547264099, 0.006374059244990349, 0.0004613842465914786, 6.5750164139899425e-06, 5.526042059500469e-06, 0.00011230498785153031, 0.0007515779579989612, 0.46400120854377747], [0.0014909309102222323, 0.00021644899970851839, 9.499776206212118e-05, 4.059539423906244e-05, 6.020482032909058e-06, 5.000700548407622e-05, 4.731058652396314e-06, 0.00040831719525158405, 0.06021977216005325, 0.8638006448745728, 0.00991840846836567, 0.0027865043375641108, 0.0007232613861560822, 0.00013436703011393547, 0.00023054922348819673, 0.0007160796667449176, 0.05915839597582817], [0.0002811781596392393, 0.0001679945271462202, 0.0010434634750708938, 1.0034946171799675e-05, 1.377331614094146e-06, 6.784912898183393e-07, 2.9217943620096776e-07, 8.49154093884863e-05, 0.4209435284137726, 0.010656886734068394, 0.13909605145454407, 0.010132971219718456, 0.022762980312108994, 0.0021747977007180452, 0.00034168214187957346, 9.013150702230632e-05, 0.3922111988067627], [3.402019865461625e-05, 4.9337726522935554e-05, 8.313170110341161e-05, 2.2319716663332656e-05, 5.39800566912163e-07, 4.11734895067184e-08, 3.3303881874502395e-09, 1.2204695849504787e-06, 0.06548122316598892, 0.0004900486092083156, 0.013175411149859428, 0.8559287190437317, 0.0009163409704342484, 0.0008550789207220078, 8.614702528575435e-05, 1.536821582703851e-05, 0.06286101788282394], [0.00035689142532646656, 0.00030578699079342186, 0.004799241665750742, 0.0001143141562351957, 2.7493884772411548e-05, 1.7332099560007919e-06, 5.367700239844453e-08, 2.3701875306869624e-06, 0.42885276675224304, 0.00018278085917700082, 0.007353080902248621, 0.02059979736804962, 0.08663886040449142, 0.021290861070156097, 0.01294338796287775, 0.0006382240680977702, 0.41589227318763733], [0.00035609223414212465, 0.0005162984598428011, 0.0014577305410057306, 0.00018065032782033086, 0.0002686360676307231, 1.0376428690506145e-05, 2.878275324746937e-07, 2.868041701731272e-05, 0.40768325328826904, 9.130642865784466e-05, 0.005906779319047928, 0.012902558781206608, 0.034313399344682693, 0.11630579084157944, 0.010384070686995983, 0.001335323671810329, 0.4082588851451874], [0.0006982879713177681, 4.500218346947804e-05, 0.001986839808523655, 0.00023020044318400323, 6.763750570826232e-05, 0.00026030655135400593, 0.00014494087372440845, 4.463098957785405e-05, 0.09784181416034698, 0.0001967396237887442, 0.00044995578355155885, 0.0003799397964030504, 0.005566427018493414, 0.1335822492837906, 0.6433798670768738, 0.013692405074834824, 0.10143276304006577], [0.02094348333775997, 0.016241909936070442, 0.011949323117733002, 0.009936582297086716, 0.008415109477937222, 0.0055074081756174564, 0.002825394505634904, 0.017137518152594566, 0.4179816246032715, 0.007598317228257656, 0.01184071134775877, 0.00819436740130186, 0.0051026432774960995, 0.008000517264008522, 0.0063572959043085575, 0.02648719772696495, 0.4154805541038513]], [[0.0038423731457442045, 0.0979103371500969, 0.006096473429352045, 0.009875924326479435, 0.008829496800899506, 0.00291089853271842, 0.00470890523865819, 0.21763639152050018, 0.3291061520576477, 0.0002714426664169878, 0.009124048985540867, 0.00036560409353114665, 0.0002964880259241909, 0.00016312215302605182, 0.00011988421465503052, 4.996878851670772e-05, 0.3086925745010376], [0.007899913005530834, 0.11704446375370026, 0.015460697934031487, 0.051603641360998154, 0.02448287047445774, 0.018248176202178, 0.006813539192080498, 0.04040774703025818, 0.3675488531589508, 0.002186807570978999, 0.00276686972938478, 0.0002940267149824649, 0.00015135544526856393, 9.212002623826265e-05, 5.921020056121051e-05, 0.0002555855899117887, 0.34468403458595276], [0.025731662288308144, 0.208003968000412, 0.0133800795301795, 0.033890265971422195, 0.02012753300368786, 0.02156728319823742, 0.020578458905220032, 0.07638607919216156, 0.27651548385620117, 0.007654054090380669, 0.02330482006072998, 0.00032096198992803693, 0.0017971759662032127, 0.0005989883211441338, 0.0024323780089616776, 0.0035198742989450693, 0.26419106125831604], [0.01676766946911812, 0.3595621585845947, 0.016705617308616638, 0.056803129613399506, 0.049385491758584976, 0.023534834384918213, 0.013142966665327549, 0.053659047931432724, 0.20421680808067322, 0.012541486881673336, 0.001466069370508194, 0.000197612214833498, 0.00021747058781329542, 8.428033470408991e-05, 7.821858889656141e-05, 0.0004215656954329461, 0.19121558964252472], [0.016914812847971916, 0.10681729018688202, 0.03576813265681267, 0.18344727158546448, 0.06506672501564026, 0.026374896988272667, 0.06274399161338806, 0.04797997325658798, 0.22855304181575775, 0.001385140116326511, 0.0012575380969792604, 0.0026216129772365093, 0.0004486197722144425, 0.0007807505899108946, 0.0009508355869911611, 0.001133957994170487, 0.21775534749031067], [0.025768442079424858, 0.03815072774887085, 0.03208613023161888, 0.11320128291845322, 0.09737738966941833, 0.05092741549015045, 0.11139798909425735, 0.05256582796573639, 0.23593246936798096, 0.0017827348783612251, 0.0013278929982334375, 0.0028817562852054834, 0.0018652592552825809, 0.002160343574360013, 0.002896508201956749, 0.0024851509369909763, 0.2271927297115326], [0.030600255355238914, 0.03992250934243202, 0.03523583710193634, 0.27605047821998596, 0.13545475900173187, 0.07433675974607468, 0.051648277789354324, 0.04537327215075493, 0.15507520735263824, 0.0034015460405498743, 0.0008114134543575346, 0.0004506103286985308, 0.0003584881778806448, 0.0004759130533784628, 0.0011438089422881603, 0.0016666320152580738, 0.1479942500591278], [0.011768552474677563, 0.1284898817539215, 0.05738763138651848, 0.16645966470241547, 0.15865668654441833, 0.12594562768936157, 0.03153849020600319, 0.11341845989227295, 0.10127582401037216, 0.003067975165322423, 0.0018515866249799728, 0.000811909674666822, 0.00079435232328251, 0.0003807050234172493, 0.000823809124995023, 0.0011845029657706618, 0.09614430367946625], [0.006472982931882143, 0.022074781358242035, 0.006032588891685009, 0.008875316008925438, 0.004342956934124231, 0.0038167426828294992, 0.0030285187531262636, 0.012726720422506332, 0.4365517497062683, 0.011765614151954651, 0.02310115285217762, 0.003569986904039979, 0.004852436948567629, 0.0020988862961530685, 0.004189661238342524, 0.011541095562279224, 0.43495887517929077], [0.01010880060493946, 0.00956813246011734, 0.0025345291942358017, 0.010100681334733963, 0.004937953315675259, 0.0056816148571670055, 0.0026845817919820547, 0.018983561545610428, 0.39188602566719055, 0.11719891428947449, 0.011757936328649521, 0.006067921407520771, 0.004328660201281309, 0.0011421196395531297, 0.0036594390403479338, 0.013909421861171722, 0.3854497969150543], [0.011299828998744488, 0.06264476478099823, 0.00280944025143981, 0.03150974586606026, 0.019483143463730812, 0.02926880307495594, 0.014397852122783661, 0.038409505039453506, 0.3181813359260559, 0.08464206010103226, 0.044704537838697433, 0.005826888605952263, 0.0024582785554230213, 0.0012011387152597308, 0.0038834293372929096, 0.015836486592888832, 0.3134428560733795], [0.01150188036262989, 0.0044487714767456055, 0.003086444456130266, 0.005620704032480717, 0.005225773900747299, 0.005101312417536974, 0.0033509477507323027, 0.012873990461230278, 0.05570987984538078, 0.6618878245353699, 0.04546627029776573, 0.003613860346376896, 0.012015326879918575, 0.009610079228878021, 0.022729383781552315, 0.08204647153615952, 0.055710915476083755], [0.023843204602599144, 0.007940849289298058, 0.006602409295737743, 0.018516946583986282, 0.005194849334657192, 0.018354322761297226, 0.011972201056778431, 0.020020194351673126, 0.12768268585205078, 0.36009350419044495, 0.05813515931367874, 0.02671346440911293, 0.016857435926795006, 0.023078473284840584, 0.02597385086119175, 0.12283898144960403, 0.12618137896060944], [0.017453981563448906, 0.006566982716321945, 0.006437224335968494, 0.010258943773806095, 0.007524041924625635, 0.007805170025676489, 0.003535826923325658, 0.022132975980639458, 0.0758049488067627, 0.27864304184913635, 0.07962139695882797, 0.08276437222957611, 0.09034915268421173, 0.058843646198511124, 0.04596675559878349, 0.1311248540878296, 0.075166717171669], [0.009776161052286625, 0.005764814559370279, 0.002830076962709427, 0.008658399805426598, 0.004898515529930592, 0.008362919092178345, 0.005278115626424551, 0.016466772183775902, 0.0846642255783081, 0.36173009872436523, 0.06562229990959167, 0.029381074011325836, 0.0829448252916336, 0.04596933349967003, 0.01576196774840355, 0.16803304851055145, 0.08385728299617767], [0.0147054148837924, 0.020168650895357132, 0.007537460420280695, 0.004244955722242594, 0.006553541868925095, 0.0066261375322937965, 0.0021409504115581512, 0.028843004256486893, 0.05934390798211098, 0.4644696116447449, 0.15407297015190125, 0.045852839946746826, 0.03271123021841049, 0.015708668157458305, 0.015105503611266613, 0.06326187402009964, 0.05865337327122688], [0.006397331599146128, 0.021570011973381042, 0.00579069321975112, 0.008682731539011002, 0.004288266878575087, 0.0036858643870800734, 0.002901490079239011, 0.012283897958695889, 0.4360095262527466, 0.012330247089266777, 0.02403009869158268, 0.0037268218584358692, 0.004980555735528469, 0.0021687231492251158, 0.004302582237869501, 0.012045906856656075, 0.43480512499809265]], [[0.009063911624252796, 0.0008625846239738166, 0.0033756839111447334, 0.001652573118917644, 0.009214906021952629, 0.010952332057058811, 0.0025385506451129913, 0.001659492845647037, 0.05112340301275253, 0.4380345046520233, 0.1822289228439331, 0.08894407749176025, 0.02986772544682026, 0.027813255786895752, 0.016022173687815666, 0.0747062936425209, 0.05193968489766121], [0.030323171988129616, 0.011549224145710468, 0.02178393304347992, 0.12024854123592377, 0.1289067268371582, 0.1871342957019806, 0.35925328731536865, 0.029256725683808327, 0.0321379229426384, 0.009199031628668308, 0.004667792934924364, 0.009137160144746304, 0.012683101929724216, 0.0035537932999432087, 0.0030310810543596745, 0.006271325517445803, 0.030862925574183464], [0.06644298136234283, 0.07353031635284424, 0.08068853616714478, 0.08615818619728088, 0.05244072154164314, 0.0946999117732048, 0.10104087740182877, 0.07332208007574081, 0.09360750019550323, 0.010609259828925133, 0.11760304123163223, 0.008927362971007824, 0.019986722618341446, 0.005015614442527294, 0.006804815027862787, 0.017998838797211647, 0.09112320095300674], [0.01714845560491085, 0.010454491712152958, 0.03376057371497154, 0.01652185246348381, 0.35368624329566956, 0.07130531966686249, 0.04183783009648323, 0.021007705479860306, 0.206453338265419, 0.024041080847382545, 0.0005371371516957879, 0.003641566028818488, 0.0024012846406549215, 0.0004044374800287187, 0.00027393706841394305, 0.0006514793494716287, 0.1958731710910797], [0.024712054058909416, 0.028879081830382347, 0.025591792538762093, 0.0830875039100647, 0.22685730457305908, 0.012127013877034187, 0.013243654742836952, 0.019917773082852364, 0.2849058508872986, 0.006959776859730482, 0.0003480169107206166, 0.0022449621465057135, 0.00022857473231852055, 0.0001925065735122189, 5.834653347847052e-05, 0.0008453947957605124, 0.2698003053665161], [0.017363451421260834, 0.03167405724525452, 0.058454278856515884, 0.07243829220533371, 0.06682407855987549, 0.0028190664015710354, 0.019437329843640327, 0.024486254900693893, 0.35692834854125977, 0.007929218001663685, 0.0008091423660516739, 0.0017295961733907461, 0.003142121247947216, 0.0001985627895919606, 0.00018417609680909663, 0.0004582138790283352, 0.3351239562034607], [0.03096614219248295, 0.01818840764462948, 0.018256308510899544, 0.08340602368116379, 0.46653053164482117, 0.011320777237415314, 0.012873721309006214, 0.02072528377175331, 0.15964293479919434, 0.012586020864546299, 0.0008307071402668953, 0.0037708906456828117, 0.009140275418758392, 0.00019693837384693325, 9.386949386680499e-05, 0.0002821652451530099, 0.15118898451328278], [0.021320726722478867, 0.0069495257921516895, 0.03907027840614319, 0.017465760931372643, 0.15855297446250916, 0.17425209283828735, 0.014796898700296879, 0.012508236803114414, 0.2606799304485321, 0.014482776634395123, 0.0017777791945263743, 0.015015839599072933, 0.004568885546177626, 0.0017355424351990223, 0.0022575752809643745, 0.001487387577071786, 0.25307780504226685], [0.008644532412290573, 0.0057877833023667336, 0.009599537588655949, 0.0044794511049985886, 0.006598783656954765, 0.004999629221856594, 0.003857773495838046, 0.00496251042932272, 0.45481136441230774, 0.011323085054755211, 0.00651855394244194, 0.01277847122400999, 0.006761050317436457, 0.002228126395493746, 0.002959158271551132, 0.008155886083841324, 0.4455343186855316], [0.016474297270178795, 0.0007862914353609085, 0.005609103478491306, 0.0013036939781159163, 0.013178386725485325, 0.031232384964823723, 0.003996184095740318, 0.0027088404167443514, 0.19672152400016785, 0.15460164844989777, 0.011832552962005138, 0.28343135118484497, 0.018459884449839592, 0.011896039359271526, 0.03203675523400307, 0.017319830134510994, 0.19841118156909943], [0.011102980002760887, 0.002027091570198536, 0.007352579850703478, 0.003563682083040476, 0.0034767219331115484, 0.009599216282367706, 0.006617088336497545, 0.002679733093827963, 0.05418064817786217, 0.08351188153028488, 0.020119065418839455, 0.09925579279661179, 0.05405725538730621, 0.05946948006749153, 0.07493478059768677, 0.45395129919052124, 0.054100628942251205], [0.026370501145720482, 0.00532302912324667, 0.009548664093017578, 0.016433287411928177, 0.010021233931183815, 0.001343895448371768, 0.005150559823960066, 0.018646899610757828, 0.11135309934616089, 0.32311341166496277, 0.007008376065641642, 0.02277667261660099, 0.020729457959532738, 0.06919568032026291, 0.02322600781917572, 0.2209407538175583, 0.10881854593753815], [0.00976437795907259, 0.0032595740631222725, 0.0021889826748520136, 0.003149980679154396, 0.0028265949804335833, 0.0058457511477172375, 0.0012064318871125579, 0.011398770846426487, 0.059283848851919174, 0.1415555477142334, 0.004987755790352821, 0.05386420339345932, 0.017745163291692734, 0.13775202631950378, 0.2205449342727661, 0.2650304436683655, 0.059595633298158646], [0.008760376833379269, 0.002713883528485894, 0.0039603495970368385, 0.0016811072127893567, 0.0034731728956103325, 0.001324359094724059, 0.00037808556226082146, 0.0028924550861120224, 0.1261860430240631, 0.09943632781505585, 0.01668786071240902, 0.12166517972946167, 0.20644888281822205, 0.05490894243121147, 0.05007820576429367, 0.17126207053661346, 0.12814268469810486], [0.003855594666674733, 0.0010279123671352863, 0.0015991622349247336, 0.001383748254738748, 0.004134461749345064, 0.001294485991820693, 0.0006854782695882022, 0.0012635185848921537, 0.06345689296722412, 0.05816950649023056, 0.006413677707314491, 0.2604367733001709, 0.24804487824440002, 0.05097700655460358, 0.021885981783270836, 0.2107435017824173, 0.06462740898132324], [0.004982471000403166, 0.0006992732523940504, 0.0017675221897661686, 0.0004335168923716992, 0.009008869528770447, 0.0020184493623673916, 0.0007313895621336997, 0.0014360100030899048, 0.07364760339260101, 0.1780526489019394, 0.009435616433620453, 0.35736867785453796, 0.2140316516160965, 0.027324117720127106, 0.01903369463980198, 0.025390230119228363, 0.07463827729225159], [0.008594616316258907, 0.0056075723841786385, 0.009349030442535877, 0.004368793219327927, 0.006372013129293919, 0.004783434793353081, 0.0037150168791413307, 0.0048795295879244804, 0.45506751537323, 0.011634405702352524, 0.00648960517719388, 0.012840671464800835, 0.006777993403375149, 0.0022574723698198795, 0.003014270681887865, 0.008313097059726715, 0.445934921503067]], [[0.04591652378439903, 0.06300190091133118, 0.16419069468975067, 0.06137210130691528, 0.03333040326833725, 0.11815725266933441, 0.02318153716623783, 0.12986509501934052, 0.11233090609312057, 0.05288806930184364, 0.00782070867717266, 0.007269850000739098, 0.0032817272003740072, 0.008160431869328022, 0.01143732201308012, 0.044403888285160065, 0.1133914515376091], [0.05948485806584358, 0.030614571645855904, 0.04631494730710983, 0.04725201427936554, 0.024686913937330246, 0.07342551648616791, 0.01190608087927103, 0.1029941663146019, 0.19130326807498932, 0.05489321053028107, 0.0618562214076519, 0.010713323019444942, 0.008033191785216331, 0.015370874665677547, 0.019974352791905403, 0.0536336675286293, 0.1875428408384323], [0.008375815115869045, 0.08590077608823776, 0.11599132418632507, 0.03065883368253708, 0.02831793576478958, 0.17639218270778656, 0.030109606683254242, 0.07108864188194275, 0.08749613910913467, 0.06038052588701248, 0.13203848898410797, 0.01169673167169094, 0.016224045306444168, 0.022964222356677055, 0.012506515718996525, 0.02547159045934677, 0.08438663184642792], [0.014101564884185791, 0.009941528551280499, 0.012831049971282482, 0.04680471494793892, 0.0229649655520916, 0.03828982263803482, 0.007251002360135317, 0.06968002021312714, 0.28135332465171814, 0.07196445018053055, 0.021891625598073006, 0.010489667765796185, 0.0037817968986928463, 0.009669381193816662, 0.014900454320013523, 0.08749127388000488, 0.27659332752227783], [0.023000601679086685, 0.014771489426493645, 0.017490161582827568, 0.079710453748703, 0.028272580355405807, 0.027533959597349167, 0.005006590858101845, 0.07247548550367355, 0.2600434422492981, 0.040930040180683136, 0.039835136383771896, 0.003263308899477124, 0.0016803618054836988, 0.009910948574543, 0.0272970050573349, 0.0922524631023407, 0.2565259337425232], [0.007276624441146851, 0.015737686306238174, 0.044347167015075684, 0.0654127299785614, 0.06074805557727814, 0.2576485574245453, 0.01003256905823946, 0.029188068583607674, 0.16256673634052277, 0.03380874544382095, 0.028989844024181366, 0.016662636771798134, 0.014031721279025078, 0.012928691692650318, 0.028152860701084137, 0.05670379474759102, 0.1557634472846985], [0.046840086579322815, 0.005050460807979107, 0.008912740275263786, 0.04096522554755211, 0.0037268521264195442, 0.02124677784740925, 0.0024555400013923645, 0.030869917944073677, 0.3147437572479248, 0.05737714841961861, 0.025457613170146942, 0.019202768802642822, 0.012414413504302502, 0.012507575564086437, 0.03809475526213646, 0.05198213458061218, 0.3081522285938263], [0.04578913748264313, 0.015169307589530945, 0.05198633670806885, 0.04619758948683739, 0.017973976209759712, 0.03155815973877907, 0.006569531746208668, 0.05196365341544151, 0.295901358127594, 0.039483342319726944, 0.014930213801562786, 0.01637307181954384, 0.005796234123408794, 0.019513661041855812, 0.016688790172338486, 0.03114703670144081, 0.2929585576057434], [0.036378540098667145, 0.006205890327692032, 0.016910836100578308, 0.00830363854765892, 0.00342999747954309, 0.00617930619046092, 0.001616147463209927, 0.01737803965806961, 0.41895776987075806, 0.012113629840314388, 0.006057837046682835, 0.007107787765562534, 0.00616078544408083, 0.0055975657887756824, 0.012781639583408833, 0.016707587987184525, 0.41811296343803406], [0.05884114280343056, 0.009341621771454811, 0.07733424752950668, 0.04282677546143532, 0.004803631454706192, 0.009805548936128616, 0.004415364004671574, 0.042979758232831955, 0.3523355722427368, 0.009957455098628998, 0.0038648745976388454, 0.0032010285649448633, 0.001637027831748128, 0.0014145619934424758, 0.0028786929324269295, 0.014316998422145844, 0.3600457012653351], [0.1566653698682785, 0.04843460023403168, 0.07605812698602676, 0.09281890094280243, 0.02433890849351883, 0.037761494517326355, 0.009676758199930191, 0.11950207501649857, 0.1123947724699974, 0.030063573271036148, 0.1210775226354599, 0.0033524015452712774, 0.0035345377400517464, 0.0009526506764814258, 0.0023503759875893593, 0.046079669147729874, 0.11493832617998123], [0.09321621060371399, 0.022234490141272545, 0.051143743097782135, 0.057122860103845596, 0.009956824593245983, 0.05840011686086655, 0.006564661394804716, 0.09109149128198624, 0.26993706822395325, 0.008527032099664211, 0.014413979835808277, 0.011482027359306812, 0.002143146703019738, 0.0029713260009884834, 0.016046395525336266, 0.015013432130217552, 0.26973533630371094], [0.042803239077329636, 0.014748111367225647, 0.051076192408800125, 0.020201250910758972, 0.004679969511926174, 0.023354481905698776, 0.004600305110216141, 0.0502362921833992, 0.3526424765586853, 0.009942014701664448, 0.013681070879101753, 0.0074101281352341175, 0.005489821545779705, 0.008449274115264416, 0.020850056782364845, 0.013680189847946167, 0.3561550974845886], [0.018149415031075478, 0.0329611599445343, 0.06975128501653671, 0.013419806957244873, 0.0017656076233834028, 0.037007421255111694, 0.001938949222676456, 0.08108069747686386, 0.3140479624271393, 0.004590584896504879, 0.01664614863693714, 0.0005911394255235791, 0.0026736888103187084, 0.02962396666407585, 0.056544847786426544, 0.003622097196057439, 0.3155851364135742], [0.01956355944275856, 0.027016250416636467, 0.13853345811367035, 0.008343035355210304, 0.0012429470662027597, 0.03948315605521202, 0.002260174136608839, 0.0677444115281105, 0.2722562253475189, 0.0036843710113316774, 0.01055007055401802, 0.0005664242198690772, 0.0028834156692028046, 0.06952077150344849, 0.061710719019174576, 0.0033693057484924793, 0.271271675825119], [0.06428898125886917, 0.02880546823143959, 0.09898865967988968, 0.1424073874950409, 0.05490938201546669, 0.0940185934305191, 0.018556715920567513, 0.12920494377613068, 0.12412295490503311, 0.02156408131122589, 0.009758148342370987, 0.0064997440204024315, 0.0009732784237712622, 0.003025449812412262, 0.002336277160793543, 0.07398392260074615, 0.12655596435070038], [0.036315545439720154, 0.006136774085462093, 0.016873344779014587, 0.008397938683629036, 0.0034421177115291357, 0.00616659689694643, 0.0016272537177428603, 0.01722121238708496, 0.41913989186286926, 0.012165863066911697, 0.005988001823425293, 0.007207722403109074, 0.006098099984228611, 0.00557590089738369, 0.012698270380496979, 0.01672135479748249, 0.41822412610054016]], [[0.017480259761214256, 0.20148500800132751, 0.03903725743293762, 0.06706959754228592, 0.012287254445254803, 0.013176810927689075, 0.002272723475471139, 0.27102038264274597, 0.18708552420139313, 0.0020295148715376854, 0.0004082861414644867, 9.248564310837537e-05, 0.00010379328887211159, 0.00010172392649110407, 0.0001489232381572947, 0.0038650024216622114, 0.18233542144298553], [0.016926229000091553, 0.06871692836284637, 0.014908969402313232, 0.02210349775850773, 0.003666487755253911, 0.0023261106107383966, 0.0011758703039959073, 0.05407288670539856, 0.41736021637916565, 0.002624241868034005, 0.0006797122769057751, 0.00010801738972077146, 0.00018314596673008054, 0.00021032973018009216, 0.0007358366274274886, 0.001531356479972601, 0.39267027378082275], [0.13162341713905334, 0.5688703060150146, 0.0772111639380455, 0.005058556329458952, 6.459522410295904e-05, 0.00017680223390925676, 0.0001300355070270598, 0.0010197939118370414, 0.11028080433607101, 0.00010029523400589824, 0.0009325147839263082, 2.193685941165313e-05, 0.00010872191342059523, 6.0461050452431664e-05, 0.00017671070236247033, 0.0003205718530807644, 0.10384334623813629], [0.014943387359380722, 0.15152794122695923, 0.03337767720222473, 0.04420100152492523, 0.04978689178824425, 0.0066736130975186825, 0.002962433034554124, 0.025334719568490982, 0.3377862870693207, 0.0003827627224382013, 0.00021558078879024833, 0.0004318539286032319, 0.0004898869665339589, 0.0017401190707460046, 0.000680110533721745, 0.0005245347274467349, 0.32894113659858704], [0.013496278785169125, 0.06256356090307236, 0.09802360087633133, 0.35747820138931274, 0.0443490669131279, 0.018599987030029297, 0.0035999685060232878, 0.011299500241875648, 0.1924462467432022, 7.386571087408811e-05, 0.00017820157518144697, 0.0004630174080375582, 6.960820610402152e-05, 0.0018604402430355549, 0.0007925601094029844, 0.0009891301160678267, 0.19371670484542847], [0.012661732733249664, 0.01475112047046423, 0.03170580789446831, 0.12517398595809937, 0.20579063892364502, 0.029060887172818184, 0.00819248054176569, 0.01069746632128954, 0.2803666591644287, 9.427111217519268e-05, 7.925676618469879e-05, 0.0001329022488789633, 4.380678365123458e-05, 0.000238862368860282, 0.0002338258782401681, 0.0006765327998436987, 0.2800998091697693], [0.005842386279255152, 0.0017539823893457651, 0.005652809515595436, 0.14941003918647766, 0.5916652083396912, 0.1219407394528389, 0.0037342447321861982, 0.004851237405091524, 0.05674576759338379, 2.914754622906912e-05, 5.7750745327211916e-05, 0.00016429985407739878, 3.022764076376916e-06, 0.00011887985601788387, 4.649962647818029e-05, 0.00031188392313197255, 0.05767207220196724], [0.019650772213935852, 0.040749937295913696, 0.017664263024926186, 0.08067885786294937, 0.021262740716338158, 0.03944716602563858, 0.04182502254843712, 0.1251455843448639, 0.3070489168167114, 0.0010175948264077306, 0.0017584979068487883, 6.12578442087397e-05, 0.00023389598936773837, 0.0003069673548452556, 0.0003227578417863697, 0.0037570991553366184, 0.2990686893463135], [0.013733944855630398, 0.026839664205908775, 0.01571626588702202, 0.012752034701406956, 0.005264668259769678, 0.006642777938395739, 0.0037175819743424654, 0.08288726955652237, 0.35747939348220825, 0.027546469122171402, 0.011358617804944515, 0.003480267710983753, 0.008092930540442467, 0.0069106868468225, 0.007899426855146885, 0.05221763253211975, 0.35746023058891296], [0.010016730055212975, 0.0008128750487230718, 0.00013660082186106592, 0.001132918638177216, 0.0006749625317752361, 0.0002507451572455466, 0.00022765566245652735, 0.12235474586486816, 0.36872923374176025, 0.06490994989871979, 0.040692925453186035, 0.0004655596276279539, 0.0004783187177963555, 0.0004585811693686992, 0.0009283209801651537, 0.026849865913391113, 0.36087992787361145], [0.016589360311627388, 0.0012915093684569001, 0.0010521794902160764, 0.000551754143089056, 0.00017932747141458094, 0.0004100268997717649, 0.0002537450345698744, 0.060603126883506775, 0.23340116441249847, 0.357169508934021, 0.0604865588247776, 0.0024894257076084614, 0.0031617896165698767, 0.002296684542670846, 0.006000869441777468, 0.026059865951538086, 0.2280031442642212], [0.012261469848453999, 0.001130763441324234, 0.0007099805516190827, 0.00047054074821062386, 0.0001816151780076325, 4.707575135398656e-05, 2.783210038614925e-05, 0.004106875974684954, 0.3882300555706024, 0.07577414065599442, 0.08262647688388824, 0.003469713730737567, 0.022445926442742348, 0.00809937808662653, 0.009913328103721142, 0.00890932697802782, 0.38159558176994324], [0.006444597151130438, 9.139658504864201e-05, 0.0005467387964017689, 0.0005172885139472783, 0.00024158574524335563, 8.468495070701465e-05, 2.1504802134586498e-05, 0.0009999327594414353, 0.18081440031528473, 0.021489791572093964, 0.015058313496410847, 0.560596227645874, 0.0035930301528424025, 0.02342190593481064, 0.0031429133377969265, 0.004967023618519306, 0.17796869575977325], [0.010958514176309109, 0.0015925709158182144, 0.0017796818865463138, 0.0014066712465137243, 0.00047277554403990507, 0.0001338341971859336, 7.649955659871921e-05, 0.0011293202405795455, 0.38668951392173767, 0.019182046875357628, 0.04777476191520691, 0.035996802151203156, 0.05052071809768677, 0.019790317863225937, 0.01855073869228363, 0.018881184980273247, 0.3850640654563904], [0.02273857221007347, 0.000298291037324816, 0.0024406120646744967, 0.0008683144696988165, 0.0009576916927471757, 0.00039632045081816614, 8.98492507985793e-05, 0.001589466817677021, 0.25167495012283325, 0.016077794134616852, 0.011704719625413418, 0.16532965004444122, 0.032487887889146805, 0.20103679597377777, 0.009229163639247417, 0.023146359249949455, 0.2599335312843323], [0.016290074214339256, 0.002957190154120326, 0.002680645789951086, 0.0015214915620163083, 0.0009634462767280638, 0.0008814203320071101, 0.00016314278764184564, 0.0032475993502885103, 0.26095134019851685, 0.018887383863329887, 0.0353982113301754, 0.012096144258975983, 0.06347209960222244, 0.1776033192873001, 0.08369502425193787, 0.05194621533155441, 0.26724523305892944], [0.013944759033620358, 0.026672909036278725, 0.015988383442163467, 0.012970458716154099, 0.005408325232565403, 0.006646183785051107, 0.0036593861877918243, 0.07993745803833008, 0.35463467240333557, 0.02831931598484516, 0.012103920802474022, 0.0036694647278636694, 0.008654714561998844, 0.0076136114075779915, 0.008814017288386822, 0.055927813053131104, 0.35503455996513367]], [[0.014837761409580708, 0.085702084004879, 0.18005020916461945, 0.06088872253894806, 0.035098619759082794, 0.3227255940437317, 0.025438392534852028, 0.057057935744524, 0.10069388151168823, 0.0037763488944619894, 0.0025825605262070894, 0.0024706560652703047, 0.0010416223667562008, 0.0025366521440446377, 0.00286444672383368, 0.003513069124892354, 0.09872142225503922], [0.0681460052728653, 0.0618312768638134, 0.008035487495362759, 0.01888233795762062, 0.002018442377448082, 0.0022372847888618708, 0.0008813529275357723, 0.035775840282440186, 0.3668569326400757, 0.006882202345877886, 0.044318173080682755, 0.001700531574897468, 0.0014839189825579524, 0.0019607634749263525, 0.004078064113855362, 0.015904247760772705, 0.3590069115161896], [0.03437953442335129, 0.026006393134593964, 0.004117678385227919, 0.004914199933409691, 0.0011157924309372902, 0.0014436618657782674, 0.000660546706058085, 0.04258754476904869, 0.4291918873786926, 0.003527373308315873, 0.009808585979044437, 0.0009844688465818763, 0.001145608490332961, 0.006327305920422077, 0.01049965899437666, 0.0077958861365914345, 0.41549381613731384], [0.03358268365263939, 0.01694011315703392, 0.0019685649313032627, 0.06609854847192764, 0.008756306022405624, 0.003526550717651844, 0.013533340767025948, 0.03698752075433731, 0.30237850546836853, 0.03498884290456772, 0.024515783414244652, 0.01361811999231577, 0.008705361746251583, 0.0022068338003009558, 0.011655578389763832, 0.12867657840251923, 0.2918608784675598], [0.01708546094596386, 0.011726808734238148, 0.0009878892451524734, 0.025934971868991852, 0.015839044004678726, 0.00646226666867733, 0.01318965945392847, 0.045935969799757004, 0.377254456281662, 0.034937478601932526, 0.02187684178352356, 0.0233621746301651, 0.01020959485322237, 0.0018312670290470123, 0.005703664384782314, 0.01857880689203739, 0.36908382177352905], [0.01989579387009144, 0.012307309545576572, 0.0018611198756843805, 0.01515846699476242, 0.021920310333371162, 0.008366244845092297, 0.006554576102644205, 0.088648721575737, 0.38216903805732727, 0.011448659002780914, 0.012523503974080086, 0.008944014087319374, 0.0034896284341812134, 0.004712685476988554, 0.009374471381306648, 0.018231382593512535, 0.37439408898353577], [0.012342882342636585, 0.015963461250066757, 0.0012975179124623537, 0.02431870810687542, 0.004630825947970152, 0.004724858794361353, 0.07893224060535431, 0.05416902154684067, 0.3657701313495636, 0.009526040405035019, 0.007649900391697884, 0.0056343767791986465, 0.0025639834348112345, 0.0005148480995558202, 0.005586004815995693, 0.048142801970243454, 0.35823243856430054], [0.03718230500817299, 0.010838188230991364, 0.006511701736599207, 0.009800695814192295, 0.0037312728818506002, 0.013592066243290901, 0.004582089837640524, 0.13572309911251068, 0.3581139147281647, 0.01870672218501568, 0.009837617166340351, 0.002930890303105116, 0.0020904738921672106, 0.0014542025746777654, 0.0065223355777561665, 0.032493725419044495, 0.34588873386383057], [0.02295801229774952, 0.005564752034842968, 0.008349373936653137, 0.0025019673630595207, 0.00110938074067235, 0.002276431769132614, 0.0017111244378611445, 0.01407159399241209, 0.43465757369995117, 0.010574308224022388, 0.008400256745517254, 0.009340275079011917, 0.005001489073038101, 0.005060956813395023, 0.013823838904500008, 0.028126081451773643, 0.426472544670105], [0.12645843625068665, 0.0052221729420125484, 0.0017872448079288006, 0.002644107211381197, 0.0003394242958165705, 0.0011288061505183578, 0.0002770152350421995, 0.03130936622619629, 0.39704394340515137, 0.011428967118263245, 0.006546787917613983, 0.0014884433476254344, 0.0020279143936932087, 0.002331080846488476, 0.006528398022055626, 0.010533617809414864, 0.3929043114185333], [0.3588545322418213, 0.031942736357450485, 0.004985657054930925, 0.00601204065605998, 0.0005203136242926121, 0.001135090715251863, 0.0003818913537543267, 0.014780141413211823, 0.2593924403190613, 0.011473086662590504, 0.027547687292099, 0.002986195031553507, 0.001712881843559444, 0.0010780958691611886, 0.005659767892211676, 0.015391579829156399, 0.256145715713501], [0.05141183361411095, 0.005684043746441603, 0.00038814410800114274, 0.0077974433079361916, 0.0033770787995308638, 0.0014042012626305223, 0.005024472251534462, 0.014184202067553997, 0.3518980145454407, 0.03468139097094536, 0.01638837531208992, 0.033687639981508255, 0.010603289119899273, 0.0037281420081853867, 0.010846403427422047, 0.0954248234629631, 0.35347044467926025], [0.06809087097644806, 0.0062261177226901054, 0.0013949081767350435, 0.008195164613425732, 0.003362770890817046, 0.003521934151649475, 0.012097174301743507, 0.01836719922721386, 0.36344847083091736, 0.02230188064277172, 0.010080968961119652, 0.018977761268615723, 0.01645754650235176, 0.005641183815896511, 0.011253847740590572, 0.06706871092319489, 0.3635134696960449], [0.10310215502977371, 0.0021119043231010437, 0.0040933191776275635, 0.002918021287769079, 0.0005248342058621347, 0.004524966701865196, 0.00134479277767241, 0.03162737190723419, 0.3795033097267151, 0.00479470007121563, 0.0064110723324120045, 0.0035229807253926992, 0.004907379858195782, 0.008322231471538544, 0.02414313517510891, 0.04080833122134209, 0.37733960151672363], [0.07745686173439026, 0.0014652019599452615, 0.0025874872226268053, 0.001946733333170414, 0.0003650042926892638, 0.0019092512084171176, 0.0019662012346088886, 0.037861742079257965, 0.40340253710746765, 0.005483775865286589, 0.003932313993573189, 0.002706279279664159, 0.00404629111289978, 0.007473548408597708, 0.014809651300311089, 0.032824985682964325, 0.3997621536254883], [0.12622614204883575, 0.006608657538890839, 0.0010806312784552574, 0.011813311837613583, 0.0006925358902662992, 0.0016104583628475666, 0.0064596678130328655, 0.04805987700819969, 0.2834981381893158, 0.01862853765487671, 0.022012902423739433, 0.006029351614415646, 0.004989866632968187, 0.0017491532489657402, 0.009248408488929272, 0.17184071242809296, 0.2794516682624817], [0.023507000878453255, 0.005494833458214998, 0.008005945943295956, 0.002449345076456666, 0.0011147186160087585, 0.0022155079059302807, 0.001679563894867897, 0.013942761346697807, 0.43389892578125, 0.010842311196029186, 0.008559994399547577, 0.00946419220417738, 0.005121259950101376, 0.0051180520094931126, 0.014033717103302479, 0.02873361110687256, 0.4258183240890503]], [[0.00848997849971056, 0.006697371136397123, 0.02224407158792019, 0.001738460618071258, 0.002630590694025159, 0.002615903038531542, 0.001488794689066708, 0.0017919568344950676, 0.2413429468870163, 0.05421631783246994, 0.138983815908432, 0.0561932697892189, 0.029965845867991447, 0.044409897178411484, 0.03141683340072632, 0.11605864018201828, 0.2397153377532959], [0.01825099252164364, 0.026805464178323746, 0.6148292422294617, 0.021728163585066795, 0.025519391521811485, 0.009578576311469078, 0.0033244453370571136, 0.008989238180220127, 0.1351548582315445, 0.000681057688780129, 0.001357431523501873, 0.00125163106713444, 0.0006632592412643135, 0.0010806823847815394, 0.0005186382331885397, 0.0012796970549970865, 0.12898722290992737], [0.011718683876097202, 0.012128150090575218, 0.01166569720953703, 0.009619781747460365, 0.01844712719321251, 0.0011218040017411113, 0.00028493141871877015, 0.0038101940881460905, 0.47031742334365845, 0.0001600809337105602, 0.0009218375198543072, 0.0006701533566229045, 0.0005535040982067585, 0.00033883846481330693, 0.0001901230134535581, 0.0057203322649002075, 0.4523313343524933], [0.00890746247023344, 0.23083403706550598, 0.39969971776008606, 0.004340294282883406, 0.0382809117436409, 0.0687628984451294, 0.0036950879730284214, 0.0031205194536596537, 0.11283029615879059, 0.013321366161108017, 0.002082439372316003, 0.0019242085982114077, 0.0015758576337248087, 0.001667595119215548, 0.0017008399590849876, 0.000729957246221602, 0.10652660578489304], [0.017912723124027252, 0.03370494395494461, 0.0476127490401268, 0.01868375390768051, 0.01692894846200943, 0.14335624873638153, 0.010662405751645565, 0.005335233639925718, 0.35275617241859436, 0.0044158524833619595, 0.0009084834018722177, 0.0009169220575131476, 0.0004780502640642226, 0.0017170432256534696, 0.0029020707588642836, 0.0047433460131287575, 0.33696505427360535], [0.005911227315664291, 0.012780345045030117, 0.010394775308668613, 0.004120598081499338, 0.007990815676748753, 0.003416532650589943, 0.0010815758723765612, 0.0013590577291324735, 0.48404502868652344, 0.00047257557162083685, 0.0013362827012315392, 0.00021733573521487415, 0.00030632695415988564, 0.0001164312707260251, 0.00024130770179908723, 0.0010701542487367988, 0.4651394486427307], [0.002640643622726202, 0.014562993310391903, 0.04752848297357559, 0.0038568938616663218, 0.027922293171286583, 0.839131236076355, 0.0009474137332290411, 0.002863657893612981, 0.029102692380547523, 0.0010849495884031057, 0.0001799976162146777, 0.0002541248104535043, 0.00014488214219454676, 0.0005791639559902251, 0.0006234379834495485, 0.00016335118561983109, 0.02841385081410408], [0.00906453188508749, 0.07517070323228836, 0.08855453878641129, 0.07748658955097198, 0.2896617650985718, 0.20755931735038757, 0.11318142712116241, 0.00893726572394371, 0.057658545672893524, 0.003579361829906702, 0.002044499618932605, 0.0036599847953766584, 0.003470990341156721, 0.0014864244731143117, 0.0013644316932186484, 0.0017540830885991454, 0.05536544695496559], [0.01159619353711605, 0.006290688645094633, 0.0052373409271240234, 0.002823084592819214, 0.0034340755082666874, 0.0026102978736162186, 0.001451929216273129, 0.0034936140291392803, 0.4648189842700958, 0.005440441891551018, 0.013607610948383808, 0.005401376634836197, 0.003911169711500406, 0.002514511113986373, 0.0027889576740562916, 0.009571418166160583, 0.4550081491470337], [0.028502266854047775, 0.00529392808675766, 0.004700710065662861, 0.011198698543012142, 0.012513823807239532, 0.004401367623358965, 0.0038434339221566916, 0.004696730989962816, 0.3300166726112366, 0.042416349053382874, 0.05656822398304939, 0.05021902173757553, 0.016728203743696213, 0.006905470043420792, 0.005496591329574585, 0.09490811824798584, 0.32159021496772766], [0.013376740738749504, 0.014142080210149288, 0.5393674373626709, 0.003383554518222809, 0.0016243438003584743, 0.001295609399676323, 0.0007454454316757619, 0.004174111410975456, 0.14934442937374115, 0.036283187568187714, 0.020287038758397102, 0.012836650013923645, 0.012336392886936665, 0.0054787821136415005, 0.007587513420730829, 0.030229957774281502, 0.1475067138671875], [0.005271125119179487, 0.0014437813078984618, 0.0037885287310928106, 0.00029790872940793633, 0.00033237607567571104, 0.0008875897619873285, 0.00027595151914283633, 0.0013433991698548198, 0.3374556005001068, 0.05397535115480423, 0.0461876317858696, 0.022840747609734535, 0.03349493443965912, 0.031100351363420486, 0.09129539132118225, 0.041359156370162964, 0.3286501467227936], [0.004411994479596615, 0.0007231537019833922, 0.005045815836638212, 0.002173850778490305, 0.0011977687245234847, 0.0027966168709099293, 0.002041046740487218, 0.0029724594205617905, 0.3489231467247009, 0.018506208434700966, 0.01627606712281704, 0.11237353086471558, 0.009774484671652317, 0.036311376839876175, 0.07095467299222946, 0.022027291357517242, 0.34349051117897034], [0.0036374840419739485, 0.0020712895784527063, 0.0020758684258908033, 0.000495396030601114, 0.0013039959594607353, 0.0002867391740437597, 7.446991367032751e-05, 0.0009140112670138478, 0.3891040086746216, 0.013963821344077587, 0.017246467992663383, 0.029554596170783043, 0.04664463549852371, 0.02377084083855152, 0.06745195388793945, 0.02254267781972885, 0.37886160612106323], [0.004389666952192783, 0.002140594646334648, 0.004794787149876356, 0.000491518818307668, 0.0021103057079017162, 0.00046957869199104607, 9.536885045235977e-05, 0.0011313948780298233, 0.2867840826511383, 0.019110489636659622, 0.07317928224802017, 0.1593218594789505, 0.05956564098596573, 0.08013103157281876, 0.01315735187381506, 0.010142222978174686, 0.2829848527908325], [0.009459279477596283, 0.009328803047537804, 0.0075727771036326885, 0.0006119813187979162, 0.0044566732831299305, 0.0007778770523145795, 0.0005679743480868638, 0.0017246439820155501, 0.12649807333946228, 0.08036120235919952, 0.17118582129478455, 0.19206595420837402, 0.07721170783042908, 0.10635712742805481, 0.05623708665370941, 0.030059166252613068, 0.12552385032176971], [0.011580069549381733, 0.006209952756762505, 0.0051584127359092236, 0.0027650215197354555, 0.003446427173912525, 0.002645504428073764, 0.001426133094355464, 0.003419037675485015, 0.4641340672969818, 0.005521963816136122, 0.013870655559003353, 0.005608419422060251, 0.0040552932769060135, 0.002646612236276269, 0.002938727615401149, 0.009850203059613705, 0.4547234773635864]], [[0.010057734325528145, 0.005002036225050688, 0.018494021147489548, 0.006920263636857271, 0.002388333436101675, 0.015272107906639576, 0.0014022223185747862, 0.010757633484899998, 0.44486743211746216, 0.00209295772947371, 0.0028060325421392918, 0.001693354337476194, 0.0025312923826277256, 0.00465938588604331, 0.008705212734639645, 0.02339906431734562, 0.43895095586776733], [0.00963846780359745, 0.029775895178318024, 0.011451346799731255, 0.008635523729026318, 0.008830179460346699, 0.005798475816845894, 0.0024684283416718245, 0.014253785833716393, 0.4656665623188019, 0.0004441560886334628, 0.0004839450994040817, 0.00022090444690547884, 0.0005268919048830867, 0.00014262841432355344, 0.0002728021936491132, 0.0010000448673963547, 0.44038984179496765], [0.029812926426529884, 0.0069160801358520985, 0.04169391840696335, 0.004743122961372137, 0.00613489979878068, 0.002656891942024231, 0.0006393708754330873, 0.0062254429794847965, 0.4592188596725464, 0.00046337631647475064, 0.0006490237428806722, 0.00024718104396015406, 0.0008758771582506597, 0.0007043457590043545, 0.0015771863982081413, 0.0012329698074609041, 0.436208575963974], [0.0022449996322393417, 0.02982807531952858, 0.006583040114492178, 0.00875064730644226, 0.014338579960167408, 0.03789481148123741, 0.009276355616748333, 0.01559943612664938, 0.4464631974697113, 0.0002598173450678587, 0.00013225982547737658, 0.0003473749093245715, 0.00016772405069787055, 0.00035238757845945656, 0.00042191363172605634, 0.00045209721429273486, 0.42688727378845215], [0.005365240853279829, 0.027452701702713966, 0.004356576129794121, 0.0726325660943985, 0.03444398567080498, 0.008861816488206387, 0.002771044382825494, 0.007664002478122711, 0.42534491419792175, 0.0003084332274738699, 0.00010986230336129665, 0.0005706094088964164, 0.000599258579313755, 0.0008192628738470376, 0.0006414668750949204, 0.0006772656342945993, 0.4073808789253235], [0.005453033372759819, 0.007485215086489916, 0.0016480284975841641, 0.01411443017423153, 0.02747797593474388, 0.009071814827620983, 0.0012492149835452437, 0.006488464307039976, 0.4698760509490967, 8.669096132507548e-05, 7.803433254593983e-05, 6.598359323106706e-05, 0.000368508422980085, 0.00031111689168028533, 0.0005133171798661351, 0.0005181719898246229, 0.4551939070224762], [0.0024155965074896812, 0.0036317617632448673, 0.001894674962386489, 0.007689658552408218, 0.13301603496074677, 0.2738424241542816, 0.003468499518930912, 0.009353997185826302, 0.2843243479728699, 6.778785609640181e-05, 5.096849781693891e-05, 0.0001579010277055204, 0.00047663316945545375, 0.00027328458963893354, 0.00018050920334644616, 0.00019660960242617875, 0.278959184885025], [0.007348518818616867, 0.011435589753091335, 0.019765570759773254, 0.07790988683700562, 0.07319408655166626, 0.43297529220581055, 0.04791959375143051, 0.043603118509054184, 0.14156070351600647, 0.000703852332662791, 0.0008035501814447343, 0.00033292590524069965, 0.000763967982493341, 0.0007253350340761244, 0.000616567675024271, 0.001542552257888019, 0.1387988030910492], [0.02268170565366745, 0.007042753044515848, 0.007176578976213932, 0.009017842821776867, 0.005312832072377205, 0.011243489570915699, 0.0037274998612701893, 0.02601756528019905, 0.42067641019821167, 0.009934372268617153, 0.010637120343744755, 0.005114453379064798, 0.006524781696498394, 0.0051660798490047455, 0.008624675683677197, 0.023224569857120514, 0.41787734627723694], [0.0016385697526857257, 0.001389342942275107, 0.0001360930473310873, 0.0016519591445103288, 0.0012623327784240246, 0.021749958395957947, 0.006197582930326462, 0.003028265666216612, 0.44024842977523804, 0.022182554006576538, 0.013732722960412502, 0.006271897349506617, 0.003500771475955844, 0.001067954464815557, 0.004510459024459124, 0.03708958998322487, 0.4343414008617401], [0.00313055538572371, 0.0014671973185613751, 0.00024487977498210967, 0.0007982774404808879, 0.001500700949691236, 0.002637650351971388, 0.0010448562679812312, 0.010068203322589397, 0.35006165504455566, 0.18227675557136536, 0.008268915116786957, 0.016725212335586548, 0.024091625586152077, 0.0025451574474573135, 0.009003991261124611, 0.03464454039931297, 0.35148975253105164], [0.0025075431913137436, 0.00043374294182285666, 0.00016046622477006167, 0.0002566356852184981, 0.0001102826718124561, 0.0001722670713206753, 2.693122223718092e-05, 0.008127672597765923, 0.45517560839653015, 0.03911096602678299, 0.014971334487199783, 0.012246373109519482, 0.008071092888712883, 0.003136136569082737, 0.0019348402274772525, 0.013914392329752445, 0.4396437704563141], [0.003943914547562599, 0.0013398902956396341, 0.00024014421796891838, 0.0005823546671308577, 0.0004198958049528301, 0.0008421209640800953, 0.00043195197940804064, 0.005074279848486185, 0.4111682176589966, 0.05455898120999336, 0.005699012894183397, 0.026465043425559998, 0.03013758733868599, 0.017765892669558525, 0.028048092499375343, 0.015839852392673492, 0.39744284749031067], [0.0018290388397872448, 0.000856737548019737, 0.0008140807040035725, 0.0003104869101662189, 0.00011284205538686365, 0.000292467069812119, 8.136712131090462e-05, 0.0038466425612568855, 0.44877469539642334, 0.01942555606365204, 0.004931693430989981, 0.00954618863761425, 0.010857670567929745, 0.01430565770715475, 0.018236681818962097, 0.026817047968506813, 0.4389609694480896], [0.006906155962496996, 0.0024820035323500633, 0.001469908864237368, 0.0006967110675759614, 0.00025552441366016865, 0.00014752382412552834, 7.985904085217044e-05, 0.005151177756488323, 0.3610455393791199, 0.026672488078475, 0.030713923275470734, 0.013119624927639961, 0.04527655616402626, 0.1075688898563385, 0.020399028435349464, 0.02217903360724449, 0.35583603382110596], [0.004034522455185652, 0.00046107714297249913, 0.0007041665958240628, 0.000661600730381906, 0.0006499440059997141, 0.0005654105334542692, 0.00021424367150757462, 0.004850264173001051, 0.25375962257385254, 0.05407317355275154, 0.008293156512081623, 0.06778424978256226, 0.031225314363837242, 0.17754624783992767, 0.09328951686620712, 0.04399356245994568, 0.25789394974708557], [0.022871652618050575, 0.007005993742495775, 0.007196023594588041, 0.009020509198307991, 0.005459469277411699, 0.011229055002331734, 0.0036002236884087324, 0.025591367855668068, 0.4187258183956146, 0.010436697863042355, 0.01091319415718317, 0.0054810200817883015, 0.006836700718849897, 0.005600787233561277, 0.009205058217048645, 0.024293290451169014, 0.4165331721305847]], [[0.006108490750193596, 0.00048298592446371913, 0.009644691832363605, 0.0010901641799136996, 0.0012856327230110765, 0.0035513541661202908, 0.0003678583016153425, 0.0006273784092627466, 0.017687829211354256, 0.15350079536437988, 0.21495573222637177, 0.017333583906292915, 0.06902571022510529, 0.11868312209844589, 0.1206250712275505, 0.24720345437526703, 0.017826182767748833], [0.03721974790096283, 0.04095926880836487, 0.14490556716918945, 0.06568209081888199, 0.11905517429113388, 0.22005000710487366, 0.07183218002319336, 0.01965632103383541, 0.11881532520055771, 0.004190849605947733, 0.0034088639076799154, 0.006869701202958822, 0.010367468930780888, 0.005993550177663565, 0.006495932582765818, 0.010392483323812485, 0.1141054555773735], [0.07519026100635529, 0.029349684715270996, 0.03602093458175659, 0.051357872784137726, 0.03302657604217529, 0.1732197403907776, 0.020981866866350174, 0.03328615427017212, 0.2525395452976227, 0.004731690511107445, 0.0031023784540593624, 0.007860047742724419, 0.007952983491122723, 0.005466417409479618, 0.008948655799031258, 0.014622583985328674, 0.24234260618686676], [0.050438426434993744, 0.04054679721593857, 0.33494460582733154, 0.02331814356148243, 0.027969859540462494, 0.2162870466709137, 0.03173430636525154, 0.015952864661812782, 0.11285558342933655, 0.003259655088186264, 0.0034685134887695312, 0.0042036669328808784, 0.006843035575002432, 0.004207336809486151, 0.003274918533861637, 0.012310788035392761, 0.10838446021080017], [0.05691436678171158, 0.044992052018642426, 0.39046740531921387, 0.02600630186498165, 0.011247477494180202, 0.1982293426990509, 0.025162890553474426, 0.01811601221561432, 0.08739137649536133, 0.007450995966792107, 0.004557818174362183, 0.0058028195053339005, 0.011403405107557774, 0.0068854414857923985, 0.007046618033200502, 0.014744245447218418, 0.08358140289783478], [0.09177535772323608, 0.033661339432001114, 0.19003207981586456, 0.01771298237144947, 0.009519659914076328, 0.04854452610015869, 0.012874523177742958, 0.020067719742655754, 0.2533319294452667, 0.006392565555870533, 0.004831385798752308, 0.015062008053064346, 0.019236113876104355, 0.007355678826570511, 0.012718730606138706, 0.014451921917498112, 0.24243146181106567], [0.03723860904574394, 0.0865321084856987, 0.26005181670188904, 0.04593465104699135, 0.02298891544342041, 0.18341778218746185, 0.01862463168799877, 0.011491465382277966, 0.1470467895269394, 0.005789309274405241, 0.004849296994507313, 0.00945041049271822, 0.006580303888767958, 0.005731581244617701, 0.007881954312324524, 0.00651024142280221, 0.13988018035888672], [0.02528735063970089, 0.07338886708021164, 0.3010205030441284, 0.09665419161319733, 0.07813757658004761, 0.24917075037956238, 0.04880642890930176, 0.008978785015642643, 0.029446927830576897, 0.004549788311123848, 0.006467815954238176, 0.00832538865506649, 0.012921258807182312, 0.00652841804549098, 0.005633087828755379, 0.01602678745985031, 0.028656112030148506], [0.005942951887845993, 0.0033881994895637035, 0.007797200232744217, 0.002649979665875435, 0.001656738226301968, 0.005419855006039143, 0.001296873320825398, 0.0036795062478631735, 0.4749843180179596, 0.005580626893788576, 0.005660484079271555, 0.003878110321238637, 0.0022622316610068083, 0.0034939160104840994, 0.005023148376494646, 0.004064449109137058, 0.4632215201854706], [0.006474870257079601, 0.0006117824814282358, 0.009809962473809719, 0.0015060602454468608, 0.002500672359019518, 0.0017212096136063337, 0.0006272914470173419, 0.00044546491699293256, 0.020383097231388092, 0.05131588131189346, 0.09697055071592331, 0.08580992370843887, 0.17250189185142517, 0.15189795196056366, 0.14122340083122253, 0.23551951348781586, 0.020680420100688934], [0.01393016055226326, 0.0013729787897318602, 0.009511454030871391, 0.001822108868509531, 0.0023439188953489065, 0.003921179566532373, 0.0011712448904290795, 0.001270924462005496, 0.0745932012796402, 0.06104925274848938, 0.03216121718287468, 0.04262640327215195, 0.10333573073148727, 0.16931265592575073, 0.2219616025686264, 0.1854526549577713, 0.07416332513093948], [0.01863090693950653, 0.004460332449525595, 0.014619794674217701, 0.0020859555806964636, 0.0007908749976195395, 0.0025836671702563763, 0.001338754897005856, 0.002101004356518388, 0.15120112895965576, 0.0440375916659832, 0.09921767562627792, 0.019260209053754807, 0.061059679836034775, 0.10695835202932358, 0.23787152767181396, 0.08528541773557663, 0.14849716424942017], [0.013786058872938156, 0.006823251023888588, 0.017722666263580322, 0.0032359580509364605, 0.0011598821729421616, 0.0031366825569421053, 0.0009321234538219869, 0.0023410385474562645, 0.1785549819469452, 0.05204802379012108, 0.08926312625408173, 0.03960205614566803, 0.0287737138569355, 0.12901489436626434, 0.17477378249168396, 0.08269420266151428, 0.17613764107227325], [0.010521615855395794, 0.0044441260397434235, 0.009941776283085346, 0.0028532410506159067, 0.003599172458052635, 0.008467171341180801, 0.0005294167785905302, 0.0025389876682311296, 0.33173704147338867, 0.04066403582692146, 0.09391944855451584, 0.05924486741423607, 0.05047112703323364, 0.007072144653648138, 0.01549836341291666, 0.03072803094983101, 0.3277694284915924], [0.005421232897788286, 0.0011851878371089697, 0.006782172713428736, 0.0005525992601178586, 0.0009180335327982903, 0.0028074176516383886, 0.00029931095195934176, 0.0015592406271025538, 0.3599278926849365, 0.04040796682238579, 0.09281772375106812, 0.038084808737039566, 0.03996624797582626, 0.01620369590818882, 0.019190222024917603, 0.01750001683831215, 0.3563762903213501], [0.018650809302926064, 0.0021492750383913517, 0.01273356843739748, 0.0012515883427113295, 0.0017890360904857516, 0.006261963862925768, 0.0009159680921584368, 0.001294730114750564, 0.07636277377605438, 0.058753978461027145, 0.10870809108018875, 0.0813615545630455, 0.14224953949451447, 0.15841716527938843, 0.14703968167304993, 0.10503080487251282, 0.07702938467264175], [0.00585370184853673, 0.0032456815242767334, 0.0074389330111444, 0.0025247905869036913, 0.0015582502819597721, 0.005153819918632507, 0.0012307422002777457, 0.003569426015019417, 0.47526243329048157, 0.005695832893252373, 0.005758575163781643, 0.003869175212457776, 0.0022632593754678965, 0.003518057521432638, 0.005080585367977619, 0.004129423294216394, 0.46384739875793457]], [[0.004491069354116917, 0.0027351307217031717, 0.0033803677652031183, 0.005743349902331829, 0.0022395208943635225, 0.0008278143359348178, 0.00034106202656403184, 0.013580447062849998, 0.18483808636665344, 0.11249332129955292, 0.13519611954689026, 0.005843060091137886, 0.0030350645538419485, 0.04950470104813576, 0.023332413285970688, 0.26362738013267517, 0.1887912154197693], [0.00804812740534544, 0.01932227984070778, 0.026770418509840965, 0.6470544338226318, 0.020555930212140083, 0.011104513891041279, 0.012925602495670319, 0.08041491359472275, 0.0513184480369091, 0.004597698338329792, 0.03217235952615738, 0.0010082327062264085, 0.001800397876650095, 0.0059030381962656975, 0.0019013967830687761, 0.025208251550793648, 0.04989396780729294], [0.019066080451011658, 0.044097863137722015, 0.0526462122797966, 0.05110037699341774, 0.0031227064318954945, 0.008649613708257675, 0.004430604167282581, 0.03587121143937111, 0.3683486878871918, 0.001988824922591448, 0.027555108070373535, 0.0006233253516256809, 0.0019463642966002226, 0.008852565661072731, 0.006860843859612942, 0.008148842491209507, 0.3566909432411194], [0.01181622315198183, 0.01627986691892147, 0.014005794189870358, 0.06803689897060394, 0.04136352241039276, 0.060439012944698334, 0.13425949215888977, 0.10341010987758636, 0.2644912004470825, 0.00419637793675065, 0.008456779643893242, 0.002130867913365364, 0.0008287517121061683, 0.004039273597300053, 0.0017279366729781032, 0.009923389181494713, 0.2545944154262543], [0.03295176103711128, 0.00981871783733368, 0.011098244227468967, 0.04524724930524826, 0.031882502138614655, 0.08037003129720688, 0.0789155438542366, 0.13111072778701782, 0.280385285615921, 0.007552378345280886, 0.005483344197273254, 0.002191618550568819, 0.0008577117114327848, 0.001828051288612187, 0.0018603377975523472, 0.011331876739859581, 0.26711463928222656], [0.01984240673482418, 0.003054012544453144, 0.0021687326952815056, 0.005747318267822266, 0.001473750569857657, 0.006713476497679949, 0.0026262446772307158, 0.04381173104047775, 0.4587130844593048, 0.008910521864891052, 0.0016071475110948086, 0.000905586639419198, 0.0007425961666740477, 0.0008714159484952688, 0.0015417730901390314, 0.004404224921017885, 0.4368661344051361], [0.018868526443839073, 0.0023677500430494547, 0.002823382383212447, 0.008436670526862144, 0.007943402975797653, 0.009686744771897793, 0.009699057787656784, 0.043270520865917206, 0.4554607570171356, 0.0033076212275773287, 0.0012700386578217149, 0.0010856080334633589, 0.0010807514190673828, 0.002286955015733838, 0.0016150734154507518, 0.0016566591802984476, 0.4291403591632843], [0.013559774495661259, 0.026531832292675972, 0.015721190720796585, 0.05076306685805321, 0.030098246410489082, 0.01254494022578001, 0.007677183486521244, 0.08505788445472717, 0.3477552533149719, 0.008530913852155209, 0.010583840310573578, 0.0018345118733122945, 0.0012463959865272045, 0.011005932465195656, 0.005545108579099178, 0.029818521812558174, 0.34172528982162476], [0.0128476582467556, 0.0070405807346105576, 0.0043700747191905975, 0.01533160824328661, 0.0027420285623520613, 0.0017848021816462278, 0.0012670168653130531, 0.011103778146207333, 0.4413999915122986, 0.009417522698640823, 0.013258809223771095, 0.005044627469033003, 0.004234619904309511, 0.011044901795685291, 0.005227820947766304, 0.010213804431259632, 0.4436703324317932], [0.013963457196950912, 0.0004852685087826103, 0.00031514567672275007, 0.0010715775424614549, 0.000465469405753538, 0.00011994507076451555, 9.289264562539756e-05, 0.0066409423016011715, 0.10461071133613586, 0.01795988157391548, 0.009873723611235619, 0.005708467215299606, 0.011519615538418293, 0.05709651857614517, 0.060107432305812836, 0.6019048094749451, 0.10806416720151901], [0.009923316538333893, 0.001042229006998241, 0.0028097371105104685, 0.003893047571182251, 0.0002943800063803792, 0.00021249905694276094, 0.00012919773871544749, 0.00298856059089303, 0.10818257927894592, 0.015430368483066559, 0.03214710205793381, 0.008477655239403248, 0.006266812793910503, 0.10698418319225311, 0.06688863039016724, 0.5240752100944519, 0.11025447398424149], [0.017295323312282562, 0.00030550482915714383, 0.00011151922080898657, 0.0005560052231885493, 0.0003936477587558329, 0.0002033496566582471, 8.925401198212057e-05, 0.002276224782690406, 0.2864246070384979, 0.015821443870663643, 0.0031072362326085567, 0.003026719903573394, 0.021945657208561897, 0.10184614360332489, 0.08656800538301468, 0.1685444712638855, 0.29148489236831665], [0.02513893134891987, 0.00035986705916002393, 0.0003152923018205911, 0.0015269137220457196, 0.0006833409424871206, 0.0007534757605753839, 0.0004035881720483303, 0.003052610205486417, 0.3965087831020355, 0.01016230508685112, 0.001222248189151287, 0.015222378075122833, 0.02500336244702339, 0.02272692508995533, 0.04186059907078743, 0.06124873831868172, 0.3938107192516327], [0.018043674528598785, 0.0005647705402225256, 0.00013937160838395357, 0.0004187797021586448, 0.00029265141347423196, 0.00011341588833602145, 6.516977009596303e-05, 0.003693226957693696, 0.40424126386642456, 0.0065319109708070755, 0.003817638847976923, 0.0015745162963867188, 0.01423345785588026, 0.032373636960983276, 0.06914874166250229, 0.03475236892700195, 0.40999534726142883], [0.008435001596808434, 0.0004022587963845581, 0.0004470115527510643, 0.0009707273566164076, 0.000670029257889837, 0.00029795794398523867, 0.0002571486111264676, 0.002384831430390477, 0.42509859800338745, 0.013429762795567513, 0.00517049478366971, 0.0032699573785066605, 0.0110192084684968, 0.023920413106679916, 0.03501049801707268, 0.03921378776431084, 0.43000227212905884], [0.006235255394130945, 0.0008490421460010111, 0.0007377707515843213, 0.0014265619684010744, 0.0005125260213389993, 0.00031963468063622713, 0.000337122764904052, 0.003331746906042099, 0.31864526867866516, 0.019486485049128532, 0.032194584608078, 0.011964375153183937, 0.010498319752514362, 0.08868256956338882, 0.04845643416047096, 0.13580313324928284, 0.32051917910575867], [0.01278546079993248, 0.006674907170236111, 0.004197892267256975, 0.014472641050815582, 0.002629952970892191, 0.0017473259940743446, 0.0012211804278194904, 0.010640420950949192, 0.4423478841781616, 0.009551836177706718, 0.013386709615588188, 0.005114047788083553, 0.004195861052721739, 0.0107945641502738, 0.005213086027652025, 0.010380597785115242, 0.4446457624435425]], [[0.023240748792886734, 0.07953847944736481, 0.16248755156993866, 0.12789462506771088, 0.06906704604625702, 0.27402371168136597, 0.032486360520124435, 0.10435017198324203, 0.05908270180225372, 0.003025195561349392, 0.000730594270862639, 0.000296466751024127, 0.0008506119484081864, 0.0008684821659699082, 0.0012133477721363306, 0.004668611567467451, 0.05617520585656166], [0.06305493414402008, 0.16579696536064148, 0.16351580619812012, 0.11282528191804886, 0.05173748731613159, 0.06269607692956924, 0.03162235766649246, 0.13088737428188324, 0.09096205234527588, 0.005293190944939852, 0.006355307064950466, 0.002758533926680684, 0.005849230568856001, 0.005586117040365934, 0.004126057494431734, 0.010644329711794853, 0.08628882467746735], [0.0837809145450592, 0.08363284170627594, 0.06468788534402847, 0.12506923079490662, 0.007336738519370556, 0.01852007582783699, 0.020320747047662735, 0.2166077196598053, 0.1771128624677658, 0.002309236442670226, 0.0019026253139600158, 0.001240355777554214, 0.001552533358335495, 0.0011545817833393812, 0.003917337395250797, 0.02118201181292534, 0.16967229545116425], [0.023773569613695145, 0.044085659086704254, 0.02132377028465271, 0.08987373858690262, 0.02066689357161522, 0.050990670919418335, 0.05786581337451935, 0.290880411863327, 0.1991594284772873, 0.0029574118088930845, 0.0007944938261061907, 0.0014390898868441582, 0.0016552872257307172, 0.0007095510372892022, 0.0009399499394930899, 0.003165513277053833, 0.1897188276052475], [0.010321545414626598, 0.06656690686941147, 0.005372785963118076, 0.0869201123714447, 0.007539425976574421, 0.019194528460502625, 0.046659961342811584, 0.3537028133869171, 0.20210368931293488, 0.0024764856789261103, 0.0008285234798677266, 0.0009028236963786185, 0.0011658631265163422, 0.0003240696096327156, 0.0003809835761785507, 0.0014742979547008872, 0.19406522810459137], [0.01850607432425022, 0.022093243896961212, 0.005990950856357813, 0.07804959267377853, 0.013770654797554016, 0.019559694454073906, 0.028089921921491623, 0.29072460532188416, 0.2574850618839264, 0.00461789732798934, 0.0008781043579801917, 0.0026221054140478373, 0.0015305732376873493, 0.000263807422015816, 0.0005275693256407976, 0.0028601663652807474, 0.25242987275123596], [0.010967651382088661, 0.02457348257303238, 0.010869220830500126, 0.038812778890132904, 0.009671305306255817, 0.0210882555693388, 0.0425233393907547, 0.22441640496253967, 0.31072431802749634, 0.0015137724112719297, 0.0008567758486606181, 0.0009829149348661304, 0.000794274965301156, 0.00040636619087308645, 0.0005918711540289223, 0.0012872687075287104, 0.299919992685318], [0.08603475987911224, 0.07631687819957733, 0.19062742590904236, 0.04701632633805275, 0.05650255084037781, 0.08549165725708008, 0.01968248188495636, 0.2152814269065857, 0.08952372521162033, 0.014798171818256378, 0.006798931863158941, 0.0013256615493446589, 0.00314573897048831, 0.002213665982708335, 0.006497263442724943, 0.0140540087595582, 0.08468930423259735], [0.008603562600910664, 0.002590964548289776, 0.004649112932384014, 0.00249645602889359, 0.0009996596490964293, 0.00149826449342072, 0.000688537722453475, 0.006989079527556896, 0.4781118333339691, 0.001995021477341652, 0.002414325950667262, 0.0019218079978600144, 0.002220926573500037, 0.0029377357568591833, 0.003877513576298952, 0.007813812233507633, 0.4701915383338928], [0.007183087058365345, 0.006589315831661224, 0.00023044638510327786, 0.005280859302729368, 0.001204530242830515, 0.0007620027172379196, 0.0018218496115878224, 0.02877768501639366, 0.29163217544555664, 0.11342033743858337, 0.03470993787050247, 0.012133374810218811, 0.007591197732836008, 0.012843171134591103, 0.01481074932962656, 0.15937325358390808, 0.3016361594200134], [0.033366575837135315, 0.023267026990652084, 0.012330911122262478, 0.008179254829883575, 0.001280084135942161, 0.0062731290236115456, 0.005200493149459362, 0.027896197512745857, 0.14378948509693146, 0.062079593539237976, 0.09295963495969772, 0.03584771230816841, 0.02228175662457943, 0.04181826859712601, 0.03472179174423218, 0.30199241638183594, 0.14671552181243896], [0.010625152848660946, 0.005256202537566423, 0.0009470693184994161, 0.004724381025880575, 0.0012652622535824776, 0.0022165272384881973, 0.002361852675676346, 0.023172251880168915, 0.32786795496940613, 0.09001118689775467, 0.03241894394159317, 0.023855891078710556, 0.028070909902453423, 0.013477046974003315, 0.02820405922830105, 0.06700853258371353, 0.33851683139801025], [0.008823768235743046, 0.007817736826837063, 0.002042504260316491, 0.007765134330838919, 0.0010390295647084713, 0.002331737894564867, 0.0037329283077269793, 0.03326355293393135, 0.3777431845664978, 0.03730939328670502, 0.017716044560074806, 0.021334825083613396, 0.0055310423485934734, 0.009275105781853199, 0.02409231849014759, 0.055510055273771286, 0.384671688079834], [0.027654128149151802, 0.00817696750164032, 0.004897586070001125, 0.005371118430048227, 0.0011204412439838052, 0.0036508420016616583, 0.005585335195064545, 0.019509349018335342, 0.22746598720550537, 0.07751960307359695, 0.06560271233320236, 0.05746680870652199, 0.06440310925245285, 0.016676539555191994, 0.06264568120241165, 0.12247893214225769, 0.22977489233016968], [0.0202791690826416, 0.005424231290817261, 0.0020729340612888336, 0.004089755471795797, 0.0003064309130422771, 0.0012946876231580973, 0.0028918322641402483, 0.022143656387925148, 0.29434025287628174, 0.021033572033047676, 0.02933582291007042, 0.035342998802661896, 0.03934631496667862, 0.031098520383238792, 0.06976334750652313, 0.12475145608186722, 0.296485036611557], [0.028809547424316406, 0.011441226117312908, 0.002548227086663246, 0.005870056804269552, 0.0010272151557728648, 0.0027636445593088865, 0.0021110731177031994, 0.03761543333530426, 0.19905677437782288, 0.12257896363735199, 0.1416686326265335, 0.022098811343312263, 0.031208565458655357, 0.024952851235866547, 0.023615265265107155, 0.13706472516059875, 0.20556896924972534], [0.008588515222072601, 0.00250594737008214, 0.004519786685705185, 0.002356642158702016, 0.0009649667190387845, 0.001457498176023364, 0.0006640133797191083, 0.006693936884403229, 0.47765469551086426, 0.002148671308532357, 0.0025937519967556, 0.0020521855913102627, 0.002333240583539009, 0.003032693872228265, 0.003999465610831976, 0.008252416737377644, 0.4701816439628601]], [[0.000982114695943892, 0.004091165028512478, 0.004939687438309193, 0.0011691843392327428, 0.0004179372626822442, 0.00024837313685566187, 0.00017504821880720556, 0.003871886059641838, 0.3642014265060425, 0.07570024579763412, 0.11817161738872528, 0.0011959581170231104, 0.0028538990300148726, 0.0026068768929690123, 0.006106139626353979, 0.054107941687107086, 0.35916051268577576], [0.006770129781216383, 0.040091175585985184, 0.5720412135124207, 0.05853549391031265, 0.015804467722773552, 0.00623184023424983, 0.000941671896725893, 0.0031304596923291683, 0.1481103152036667, 0.00018110869859810919, 0.0006976760923862457, 0.00011162082228111103, 0.00012310886813793331, 0.0004759879957418889, 0.0004055437457282096, 0.0005344916135072708, 0.1458137184381485], [0.01749485358595848, 0.02916434407234192, 0.02090737409889698, 0.07360083609819412, 0.019484400749206543, 0.008984182961285114, 0.004194698296487331, 0.012607067823410034, 0.4014410078525543, 0.00032298368751071393, 0.0004531797021627426, 0.00012644869275391102, 0.00033590340171940625, 0.001052728621289134, 0.0009646816179156303, 0.004289843607693911, 0.4045754671096802], [0.0065080225467681885, 0.01719985343515873, 0.020139502361416817, 0.021763848140835762, 0.12448582798242569, 0.10734974592924118, 0.01601879484951496, 0.018105080351233482, 0.3265039026737213, 7.600667595397681e-05, 0.000768825993873179, 8.489628089591861e-05, 0.0001785384665708989, 0.00040724262362346053, 0.00041737905121408403, 0.0008389552822336555, 0.33915355801582336], [0.005324306432157755, 0.0034710955806076527, 0.006156086456030607, 0.04033822566270828, 0.05107131227850914, 0.2590765058994293, 0.08856496214866638, 0.04075836390256882, 0.2466021478176117, 0.0002618652652017772, 0.0005048560560680926, 5.357438567443751e-05, 0.0004163106787018478, 0.0003822004946414381, 0.0024052902590483427, 0.004948529880493879, 0.24966426193714142], [0.008354321122169495, 0.00320628029294312, 0.004300081171095371, 0.014493655413389206, 0.014988232403993607, 0.02075227163732052, 0.05375239998102188, 0.15388235449790955, 0.3635590374469757, 0.0005612139939330518, 0.0017769794212654233, 2.2496307792607695e-05, 2.2088916011853144e-05, 6.533411215059459e-05, 0.00019873524433933198, 0.0019323339220136404, 0.35813212394714355], [0.005989552941173315, 0.000805228017270565, 0.0006162141798995435, 0.006485061254352331, 0.006694117095321417, 0.01136291865259409, 0.0027206800878047943, 0.19496288895606995, 0.3921332359313965, 0.0001232411159435287, 0.00018664235540200025, 1.6475127267767675e-05, 1.0163040315092076e-05, 8.045938557188492e-06, 2.573806887085084e-05, 0.0002803881361614913, 0.37757956981658936], [0.0021146731451153755, 0.00940559059381485, 0.00040572191937826574, 0.002102120313793421, 0.00087406812235713, 0.0010750140063464642, 0.001744489069096744, 0.021776355803012848, 0.47649356722831726, 0.03664303570985794, 0.006693859584629536, 0.000755955115891993, 0.0003247038403060287, 7.903648656792939e-05, 0.00012029314530082047, 0.0013174255145713687, 0.438073992729187], [0.02279108576476574, 0.023942915722727776, 0.01632073149085045, 0.008830530568957329, 0.003411548212170601, 0.0035038383211940527, 0.0020042245741933584, 0.025177041068673134, 0.40080955624580383, 0.03297889977693558, 0.02413228526711464, 0.005460791289806366, 0.005110255908221006, 0.003336946479976177, 0.005129239056259394, 0.026923280209302902, 0.3901367783546448], [0.0020170698408037424, 0.0008203468169085681, 0.0009687605779618025, 0.00016548443818464875, 1.966808304132428e-05, 2.170368497900199e-05, 1.7034979464369826e-05, 0.0006240619695745409, 0.2446744292974472, 0.12617836892604828, 0.2800847589969635, 0.0474822111427784, 0.01788557693362236, 0.010361931286752224, 0.0063131884671747684, 0.016214484348893166, 0.2461508959531784], [0.003918275237083435, 0.00034542419598437846, 0.00067752948962152, 0.0005303944344632328, 0.00014931897749193013, 6.736755312886089e-05, 5.1306968089193106e-05, 0.0017923499690368772, 0.3823898732662201, 0.022699471563100815, 0.02205655351281166, 0.06332850456237793, 0.02990773320198059, 0.030130116268992424, 0.017780542373657227, 0.03620373085141182, 0.3879714608192444], [0.0018869866617023945, 0.00017940874386113137, 0.0012492379173636436, 0.0003119969042018056, 9.89115287666209e-05, 3.0359014999703504e-05, 1.6386160496040247e-05, 0.00038734349072910845, 0.17270058393478394, 0.006391515955328941, 0.027016859501600266, 0.01094605028629303, 0.459575355052948, 0.03604191169142723, 0.059415191411972046, 0.04751691222190857, 0.1762349158525467], [0.0027314627077430487, 0.00019612615869846195, 0.0008190465741790831, 0.0019603949040174484, 0.0001202166240545921, 0.00015853694640100002, 4.0470415115123615e-05, 0.001131771132349968, 0.2684919238090515, 0.005442818161100149, 0.012507056817412376, 0.02179448865354061, 0.0248956810683012, 0.09579593688249588, 0.15712997317314148, 0.132270947098732, 0.27451324462890625], [0.004733952693641186, 0.00029556226218119264, 0.0008470766479149461, 0.0033797835931181908, 0.0016139313811436296, 0.00024948103236965835, 0.00015229708515107632, 0.002880000276491046, 0.24154411256313324, 0.0020931996405124664, 0.005377753172069788, 0.005055051762610674, 0.010699550621211529, 0.026457147672772408, 0.07186821103096008, 0.36919134855270386, 0.25356152653694153], [0.008436399511992931, 0.0003944433992728591, 0.0006710233283229172, 0.0019352240487933159, 0.0013254010118544102, 0.00017852858582045883, 0.0001184404463856481, 0.004959569778293371, 0.32671627402305603, 0.003515776712447405, 0.005910769104957581, 0.0023301499895751476, 0.0009229655261151493, 0.006790416315197945, 0.005160048604011536, 0.2907657325267792, 0.3398687541484833], [0.0015784422867000103, 0.0002764534729067236, 6.207280966918916e-05, 0.00012852295185439289, 0.00013409389066509902, 6.685530388494954e-05, 1.4973677934904117e-05, 0.00055623275693506, 0.47241654992103577, 0.0062804329209029675, 0.0037998200859874487, 0.0007399527239613235, 0.00010288133489666507, 0.0009065078338608146, 0.0009333392954431474, 0.00892754178494215, 0.5030752420425415], [0.02283552475273609, 0.02228902280330658, 0.016071077436208725, 0.008608848787844181, 0.003482910804450512, 0.003652083920314908, 0.002056853612884879, 0.024583343416452408, 0.4017147123813629, 0.032261256128549576, 0.02376566268503666, 0.00534425862133503, 0.005090110935270786, 0.003414693521335721, 0.005372276995331049, 0.027864601463079453, 0.39159271121025085]]], [[[3.7261415286593547e-07, 3.222988380002789e-05, 2.1976880816509947e-05, 7.972150797286304e-07, 3.978600915388597e-08, 6.765957095922204e-06, 1.1826134738157634e-08, 0.00016382770263589919, 0.49526330828666687, 3.740987253308958e-08, 3.211378327705461e-07, 6.937708185716929e-09, 1.113583010525776e-11, 3.039694718154351e-09, 7.562473980371465e-10, 7.514056221680221e-08, 0.5045101642608643], [2.4386691777067426e-08, 0.0011898259399458766, 0.9977213740348816, 6.672040035482496e-05, 2.0240988760633627e-06, 1.00907727755839e-05, 1.5420846821712075e-09, 1.8474871410489868e-08, 0.0005069724866189063, 6.589774559362382e-11, 5.7181419599317e-09, 1.4601390097013223e-09, 4.4432074020051004e-08, 2.2959119050369736e-09, 6.537946850571075e-10, 1.0630875069139734e-09, 0.0005028883460909128], [1.4852690810585045e-07, 1.246831288881367e-05, 4.1484221583232284e-05, 0.9986849427223206, 7.25875406715204e-06, 2.363831299589947e-06, 2.3903021784121847e-08, 5.352884500098298e-07, 0.0006439454737119377, 3.0372256359240124e-12, 7.303600085828421e-11, 2.5988408647315e-10, 4.88320772706885e-11, 5.637434696836863e-08, 5.461978247467414e-08, 1.4145443856250495e-06, 0.0006053330725990236], [5.53762424804205e-10, 1.0791179647640092e-06, 1.1149166994073312e-06, 1.9628765585366637e-05, 0.9962438344955444, 0.0037225347477942705, 6.1436082887667e-08, 2.9457176253799844e-08, 5.630980467685731e-06, 4.7451619185606003e-14, 1.9717025321469572e-12, 1.235864383920815e-12, 3.0372889533308856e-12, 2.6449308021536666e-11, 2.049460427755445e-12, 1.1233368679697264e-09, 6.0491220210678875e-06], [2.1145132519939658e-11, 1.3640261142811028e-09, 2.100065103149973e-06, 2.3976385818968993e-06, 0.001124573522247374, 0.9988652467727661, 1.8541946644745622e-07, 2.5892024080320653e-09, 2.6765630991576472e-06, 1.0314777596507133e-14, 2.467993969184224e-15, 4.917058446063209e-14, 6.861952846215491e-12, 1.0769500569107748e-10, 5.7983628315438906e-11, 3.320865457623334e-11, 2.7329479053150862e-06], [6.539127746230111e-12, 3.2532457630574108e-12, 2.8948669850148434e-11, 1.1665697297047473e-09, 2.4565700168510674e-11, 1.9457364430763846e-07, 0.9999946355819702, 4.988308319298085e-06, 9.613298601607312e-08, 2.918147494479495e-13, 1.3918184503134909e-14, 2.525621775514151e-19, 1.1193925036950416e-18, 1.6104017040686598e-17, 4.490480456551503e-14, 5.975308789429867e-12, 9.181178484141128e-08], [3.490912073300656e-11, 2.038438168261436e-11, 1.072288004916322e-11, 7.56949347646696e-09, 4.0809530234275915e-12, 1.068536107595719e-06, 0.00015022858860902488, 0.9998425245285034, 3.1012702947919024e-06, 3.3899256015115786e-13, 2.76252754785616e-16, 8.467104760623754e-20, 1.786232878675188e-20, 6.642720231221392e-18, 3.124306860452378e-15, 1.8195808193510743e-09, 2.999131083925022e-06], [3.9280561026089345e-09, 4.40032672486268e-05, 4.387047614073936e-09, 2.585681224687164e-09, 3.2712735298368045e-11, 2.2498031881923453e-08, 4.915975959640662e-10, 0.00041482673259451985, 0.5418294668197632, 0.002193771069869399, 1.8509306087821642e-08, 4.306588505947895e-12, 6.141861046831553e-17, 3.121117887285084e-16, 8.327319817860376e-15, 5.5383850283696745e-11, 0.4555179178714752], [0.0018904717871919274, 0.0026074456982314587, 0.0023896945640444756, 0.0009480819571763277, 0.00010249244223814458, 0.0004825378127861768, 3.3532203815411776e-05, 0.0020040026865899563, 0.49977996945381165, 0.0020556191448122263, 0.0033260819036513567, 0.0006128359236754477, 1.9764953322010115e-05, 0.0003356840752530843, 0.00031012206454761326, 0.0011823587119579315, 0.4819193184375763], [5.5900110929041347e-11, 5.489450671802842e-09, 4.5048097196964676e-11, 7.679462263581599e-14, 5.003851794585989e-15, 3.4032084333772417e-13, 1.7472556672446134e-14, 6.379510201354188e-12, 9.338275958725717e-06, 4.860562512476463e-06, 0.9999747276306152, 1.3033870800427394e-06, 2.6354447513199375e-09, 3.655958313864005e-10, 1.089804288478824e-11, 2.0741530021295418e-11, 9.709798177937046e-06], [3.0310332022054354e-07, 4.0704941284275264e-07, 2.063020758669154e-07, 1.2044509389852465e-08, 2.7207588959576867e-10, 2.9160379666492986e-10, 5.283444919090309e-14, 1.134775118316611e-08, 0.00834314152598381, 8.059894753387198e-05, 0.005084274336695671, 0.927973210811615, 0.048550404608249664, 0.0013918058248236775, 2.7358555598766543e-06, 3.4393863757031795e-07, 0.008572385646402836], [1.8136387574044233e-12, 4.380151623351036e-12, 2.2198569371578714e-10, 9.926656935679845e-15, 1.4419840104959447e-13, 9.505274985079776e-15, 1.7461437641582615e-19, 8.140769135973301e-18, 2.9086921315979453e-08, 1.5901915201288475e-11, 9.64218713761511e-08, 3.8658194512208865e-07, 0.9999967813491821, 2.142684934369754e-06, 5.351345748749736e-07, 2.2377740285794978e-11, 2.9111786759017377e-08], [1.7336019286773308e-09, 2.91932877871659e-09, 9.984889857150847e-07, 4.1409612094867043e-07, 3.302599946991558e-12, 4.7198887159760616e-11, 5.369033871465388e-14, 1.08984356261832e-10, 0.00017371562717016786, 1.8614059182908704e-09, 5.438069479168917e-07, 0.0009472542442381382, 1.4865820958220866e-05, 0.973537802696228, 0.024571465328335762, 0.0005725330556742847, 0.00018050771905109286], [1.9958056540758662e-08, 3.4345565280702317e-10, 4.64573872704932e-07, 3.787027225143902e-08, 2.4788260333252765e-09, 1.061526333501206e-08, 4.363850947264325e-11, 9.337582790314158e-11, 0.0031896645668894053, 1.1463789917343092e-08, 2.4626398698046614e-08, 2.8149049740022747e-06, 0.0001039750495692715, 0.00037147573311813176, 0.991554319858551, 0.0016060750931501389, 0.0031711491756141186], [8.44365430907601e-08, 2.1463577581926074e-09, 8.311811683370252e-08, 4.572948739678395e-07, 6.729678481143253e-10, 6.209824321423696e-10, 3.065240727906371e-09, 3.0237828241297393e-07, 0.005005085840821266, 2.0744550965900999e-07, 7.683606639830032e-08, 2.945804988829792e-10, 1.979439012700368e-08, 4.18948802689556e-05, 0.0003109700046479702, 0.989566445350647, 0.005074354819953442], [3.063812759052098e-09, 1.3592878644885786e-07, 1.2898936141425565e-08, 2.1179507037061285e-09, 4.562449973377625e-08, 2.579345803610522e-08, 8.326400007842294e-13, 4.925895495944133e-07, 0.4880203604698181, 1.9707320007000817e-06, 7.449017402905156e-09, 1.3098072973449781e-11, 1.2642247105675974e-14, 5.824303817014709e-10, 2.3212118893667366e-09, 0.0003028100181836635, 0.511674165725708], [0.0018656085012480617, 0.0025325578171759844, 0.002368832705542445, 0.0009074422414414585, 0.0001072189916158095, 0.0004995720810256898, 3.179698614985682e-05, 0.0018877851543948054, 0.4999793767929077, 0.002010409953072667, 0.0032622325234115124, 0.0006183038931339979, 2.003933332161978e-05, 0.00034324248554185033, 0.0003153206780552864, 0.0011667012004181743, 0.4820835590362549]], [[0.0031687787268310785, 0.0021072241943329573, 0.0009463902679271996, 0.00277671217918396, 0.0005172099336050451, 0.002292200457304716, 0.0003313654160592705, 0.0021580031607300043, 0.06574764847755432, 0.6438615322113037, 0.04106004908680916, 0.0467059351503849, 0.016375252977013588, 0.04054352268576622, 0.010232903994619846, 0.05405689403414726, 0.06711835414171219], [0.007784616202116013, 0.03844992816448212, 0.3426261246204376, 0.0698457658290863, 0.028900451958179474, 0.030795125290751457, 0.004827134311199188, 0.020057201385498047, 0.22330595552921295, 0.002653072588145733, 0.0019380440935492516, 0.0010743284365162253, 0.0005326402024365962, 0.0011532068019732833, 0.0005938852555118501, 0.003066868055611849, 0.222395658493042], [0.0031111501157283783, 0.004433536436408758, 0.006661070045083761, 0.005048063118010759, 0.002987812040373683, 0.0036905640736222267, 0.001532705151475966, 0.008228489197790623, 0.48094525933265686, 0.001087543903850019, 0.0008998917764984071, 0.0006031688535586, 0.0004564943665172905, 0.0007406265358440578, 0.0006603269721381366, 0.0021899729035794735, 0.476723313331604], [0.009134180843830109, 0.023849118500947952, 0.01980331540107727, 0.00792919285595417, 0.08268915861845016, 0.3063957691192627, 0.1324813961982727, 0.033980075269937515, 0.17825734615325928, 0.008773121051490307, 0.002051224699243903, 0.0028216890059411526, 0.004565601237118244, 0.004844783805310726, 0.002173337386921048, 0.0015979105373844504, 0.1786527931690216], [0.0033792974427342415, 0.003261215751990676, 0.001668277196586132, 0.005956524051725864, 0.025913964956998825, 0.2673491835594177, 0.24290718138217926, 0.008580110035836697, 0.21558590233325958, 0.003495622193440795, 0.001015661284327507, 0.0008783711236901581, 0.0019982093945145607, 0.0005529147456400096, 0.0004996185889467597, 0.0006683977553620934, 0.216289684176445], [0.006898961961269379, 0.002756655914708972, 0.002344513079151511, 0.001128703006543219, 0.002137027448043227, 0.006188714411109686, 0.004916543606668711, 0.013192027807235718, 0.47812193632125854, 0.0020387747790664434, 0.0024558338336646557, 0.0003375773085281253, 0.000317808473482728, 0.0004023729416076094, 0.00030882220016792417, 0.0007135040941648185, 0.4757401943206787], [0.011171341873705387, 0.003672228893265128, 0.0013586024288088083, 0.0016394970007240772, 0.009315996430814266, 0.05581178143620491, 0.0144527992233634, 0.01816549152135849, 0.4430449604988098, 0.0007274269592016935, 0.001332490355707705, 0.0002902174019254744, 0.0003721984685398638, 0.00020304735517129302, 0.00010823544289451092, 0.0001696606632322073, 0.4381638467311859], [0.0615169033408165, 0.020606184378266335, 0.003415802726522088, 0.02264251932501793, 0.014627281576395035, 0.011750688776373863, 0.003223121864721179, 0.07565398514270782, 0.338276743888855, 0.06219317764043808, 0.01544131338596344, 0.010523424483835697, 0.004260147921741009, 0.0021767974831163883, 0.002337446203455329, 0.01583000086247921, 0.33552438020706177], [0.013904713094234467, 0.006687380839139223, 0.01368147972971201, 0.006337393075227737, 0.0022896481677889824, 0.004136144183576107, 0.0010569773148745298, 0.008383078500628471, 0.4509871006011963, 0.012893562205135822, 0.007830215618014336, 0.003152543446049094, 0.0021458270493894815, 0.004008903633803129, 0.003495629411190748, 0.010987005196511745, 0.4480225741863251], [0.009342015720903873, 0.0005970665370114148, 0.0016270920168608427, 0.0008652874385006726, 0.00021021503198426217, 0.0008255654247477651, 5.688759847544134e-05, 0.0006628589471802115, 0.2532263994216919, 0.06279492378234863, 0.04000402241945267, 0.10017304122447968, 0.03889627754688263, 0.10627750307321548, 0.06585460156202316, 0.060199279338121414, 0.25838688015937805], [0.00470384256914258, 0.00025547738187015057, 0.001014219131320715, 0.0006298162043094635, 0.00017429704894311726, 0.00048186612548306584, 3.7683381378883496e-05, 0.0008605144685134292, 0.4193834662437439, 0.019610490649938583, 0.014176217839121819, 0.020950602367520332, 0.016732197254896164, 0.021587757393717766, 0.020667394623160362, 0.03181454911828041, 0.426919549703598], [0.005506251938641071, 0.00016714820230845362, 0.0006694486946798861, 5.820449223392643e-05, 6.0141283029224724e-05, 0.0006462655728682876, 5.355328903533518e-05, 0.00023431392037309706, 0.43320852518081665, 0.0037796704564243555, 0.005220563150942326, 0.005452694837003946, 0.02280672825872898, 0.031833767890930176, 0.04400983080267906, 0.009591441601514816, 0.43670135736465454], [0.0028302576392889023, 0.00018466179608367383, 0.00043115936568938196, 6.672646850347519e-05, 6.347324961097911e-05, 0.0007406906806863844, 0.00013406721700448543, 0.0007323641330003738, 0.4349660575389862, 0.005022261757403612, 0.012043071910738945, 0.004549701232463121, 0.006130059715360403, 0.022899653762578964, 0.06324814260005951, 0.006689904723316431, 0.4392678737640381], [0.0034591418225318193, 0.0001908911654027179, 0.0007750068325549364, 0.00028781365836039186, 6.777868838980794e-05, 0.0008258150774054229, 9.748530283104628e-05, 0.0006033903337083757, 0.4620514512062073, 0.011492528952658176, 0.005856774281710386, 0.0018466287292540073, 0.0012969066156074405, 0.007690042722970247, 0.017925282940268517, 0.019632447510957718, 0.46590057015419006], [0.00377830071374774, 0.00018883163284044713, 0.00120546855032444, 0.0001869543775683269, 4.318389983382076e-05, 0.0004842808411922306, 6.236963963601738e-05, 0.0004986025160178542, 0.47327324748039246, 0.005997870117425919, 0.003884568577632308, 0.0007923234952613711, 0.000982806202955544, 0.005837774369865656, 0.008305312134325504, 0.014881394803524017, 0.4795967638492584], [0.005138145759701729, 0.0006547124939970672, 0.00031399898580275476, 0.001303725061006844, 0.0004753138346131891, 0.001763355452567339, 0.00027513381792232394, 0.0016112664015963674, 0.4652751088142395, 0.009864411316812038, 0.009711635299026966, 0.002187425969168544, 0.0009307116852141917, 0.006786013953387737, 0.010836858302354813, 0.011738604865968227, 0.4711337387561798], [0.013840503990650177, 0.006591174751520157, 0.013618766330182552, 0.006268083117902279, 0.002270481549203396, 0.004129382781684399, 0.0010570719605311751, 0.008326280862092972, 0.45110708475112915, 0.012794177047908306, 0.007879385724663734, 0.003156723454594612, 0.0021648616530001163, 0.004040877800434828, 0.0035543092526495457, 0.011032868176698685, 0.4481678307056427]], [[0.004646711051464081, 0.02769767865538597, 0.018233714625239372, 0.0135768111795187, 0.013318194076418877, 0.053658414632081985, 0.011534101329743862, 0.03239040821790695, 0.39864856004714966, 0.009872550144791603, 0.0030370792374014854, 0.004227162338793278, 0.0005076945526525378, 0.0012006046017631888, 0.0015230132266879082, 0.005872041452676058, 0.4000552296638489], [0.0030200525652617216, 0.015542035922408104, 0.03529181331396103, 0.24123111367225647, 0.004646776709705591, 0.008606866002082825, 0.0007329742657020688, 0.003434254787862301, 0.33983224630355835, 0.0016027145320549607, 0.00038751622196286917, 0.0007601724937558174, 0.0010024802759289742, 0.00017135724192485213, 0.0004500047070905566, 0.008400284685194492, 0.3348873257637024], [0.00117931526619941, 0.009039977565407753, 0.006407999433577061, 0.0024088541977107525, 0.0008406472043134272, 0.0003036821726709604, 0.00010241178824799135, 0.0008063734858296812, 0.4865339696407318, 0.0006006041658110917, 0.0006850181962363422, 0.0003370451449882239, 0.0001005050289677456, 0.00025179461226798594, 0.0005235635908320546, 0.001439388026483357, 0.4884389042854309], [0.0006322811241261661, 0.013885417953133583, 0.03904265537858009, 0.02093936875462532, 0.016451114788651466, 0.10240742564201355, 0.0029610719066113234, 0.008978908881545067, 0.39699795842170715, 0.0006929365335963666, 9.564725769450888e-05, 0.00032427359838038683, 0.0003493450058158487, 0.00019777752459049225, 0.0002632479299791157, 0.0052959490567445755, 0.39048466086387634], [0.0005937740206718445, 0.0065855649299919605, 0.0012340358225628734, 0.02115865796804428, 0.0045451815240085125, 0.10851363837718964, 0.002723093843087554, 0.004589584190398455, 0.4261760413646698, 0.00048638577573001385, 3.7827634514542297e-05, 7.17494694981724e-05, 0.00011375904432497919, 8.189241634681821e-05, 0.0002782107039820403, 0.002025419380515814, 0.42078515887260437], [0.0014794886810705066, 0.004135075956583023, 0.0005052487249486148, 0.004656696692109108, 0.00471864826977253, 0.011638039723038673, 0.05843871086835861, 0.006999869365245104, 0.45093467831611633, 0.002576622413471341, 0.0004004511865787208, 0.0001797809381969273, 4.0434664697386324e-05, 0.0001752369716996327, 0.00027377723017707467, 0.0037011492531746626, 0.44914600253105164], [0.00045148268691264093, 0.006556532345712185, 0.002436431823298335, 0.013392260298132896, 0.013839494436979294, 0.5427978038787842, 0.009187949821352959, 0.02432774379849434, 0.1913284957408905, 0.0029970393516123295, 1.4134778211882804e-05, 3.397305044927634e-05, 4.923252708977088e-05, 7.818665471859276e-05, 0.00011753539001801983, 0.0027835711371153593, 0.1896081417798996], [0.004975053481757641, 0.005287251900881529, 0.0010606514988467097, 0.008493514731526375, 0.009217924438416958, 0.023655859753489494, 0.004463125951588154, 0.06002442538738251, 0.44074684381484985, 0.005570522975176573, 0.003539224388077855, 0.0005595625261776149, 2.568858144513797e-05, 3.507287328829989e-05, 3.211749572074041e-05, 0.0020424367394298315, 0.4302707612514496], [0.01662576012313366, 0.013676837086677551, 0.011885679326951504, 0.009910515509545803, 0.004302979912608862, 0.007309566717594862, 0.002795423846691847, 0.014664201065897942, 0.43024855852127075, 0.009110670536756516, 0.016728438436985016, 0.008570024743676186, 0.0020402141381055117, 0.00516263535246253, 0.005033999681472778, 0.01326029933989048, 0.42867419123649597], [0.00031312531791627407, 0.0001334080589003861, 4.8179990699281916e-05, 2.344835775147658e-05, 1.4353172446135432e-05, 8.410756709054112e-05, 1.7194215615745634e-05, 0.00043542252387851477, 0.48370641469955444, 0.016668910160660744, 0.00570331746712327, 0.004899709019809961, 8.922466076910496e-05, 0.00045920515549369156, 0.00039906823076307774, 0.003689597360789776, 0.4833153784275055], [0.0025753150694072247, 0.0007899104384705424, 0.0023585858289152384, 0.0030938785057514906, 5.673373743775301e-05, 0.00017418582865502685, 1.5397719835164025e-05, 0.0018498236313462257, 0.3883779048919678, 0.056232329457998276, 0.00946682970970869, 0.01435126457363367, 0.04634745046496391, 0.0021499686408787966, 0.004345921333879232, 0.07809703052043915, 0.3897174894809723], [0.0004876543825957924, 0.0002595835248939693, 0.0008621607557870448, 0.00016694313671905547, 4.679569246945903e-05, 5.4062729759607464e-05, 2.260996780023561e-06, 0.00020927352306898683, 0.38169941306114197, 0.0023388175759464502, 0.0013290435308590531, 0.016598215326666832, 0.1351580023765564, 0.026289353147149086, 0.04276518523693085, 0.014793241396546364, 0.37693995237350464], [0.0007472332799807191, 0.000532722391653806, 0.00033791776513680816, 0.0002527469478081912, 1.695405262580607e-05, 3.529287641867995e-05, 1.6808779719212907e-06, 0.00019044746295548975, 0.48241952061653137, 0.005815370008349419, 0.0012918816646561027, 0.01268912572413683, 0.0014524844009429216, 0.0027702704537659883, 0.0037103029899299145, 0.004510845988988876, 0.4832253158092499], [0.00044030402204953134, 0.0002678841119632125, 0.0002080110862152651, 0.0004459947522263974, 1.5997904483811e-05, 0.00011288871610304341, 1.1075761904066894e-05, 0.0001167506561614573, 0.2984003722667694, 0.0015657480107620358, 0.0008177456329576671, 0.027135416865348816, 0.007639724295586348, 0.03391946479678154, 0.14812976121902466, 0.17753243446350098, 0.3032402992248535], [0.001518476172350347, 0.0006707650027237833, 0.0003037183778360486, 0.0008619431755505502, 0.00010589713929221034, 0.0001338131696684286, 1.626178163860459e-05, 7.222404383355752e-05, 0.43262436985969543, 0.0012514317641034722, 0.007958325557410717, 0.011023764498531818, 0.0045568253844976425, 0.028736360371112823, 0.01900426484644413, 0.053583186119794846, 0.43757835030555725], [0.0007229795446619391, 0.0002856792707461864, 0.00018265539256390184, 0.0010278918780386448, 0.0002493975916877389, 0.00036922309664078057, 1.304705256188754e-05, 0.00017484095587860793, 0.4723462164402008, 0.0015171103877946734, 0.0034793203230947256, 0.000799223140347749, 0.0002524151641409844, 0.0015764248091727495, 0.0018667629919946194, 0.03574001044034958, 0.4793967604637146], [0.016689607873558998, 0.013602039776742458, 0.011726605705916882, 0.009826768189668655, 0.004278423264622688, 0.007250617258250713, 0.002754163695499301, 0.014515035785734653, 0.4299820363521576, 0.009232072159647942, 0.01706676557660103, 0.008602065965533257, 0.0020937330555170774, 0.005293664988130331, 0.005194936413317919, 0.01352635957300663, 0.42836514115333557]], [[0.0009357659728266299, 0.0009855087846517563, 0.006272437982261181, 0.0006815640954300761, 0.00017691338143777102, 0.000455359899206087, 6.815097731305286e-05, 0.00486785639077425, 0.48824578523635864, 0.0011436513159424067, 0.0012370236217975616, 0.0004392194387037307, 0.0001492508890805766, 0.0002657849108800292, 0.00023867652635090053, 0.0030885462183505297, 0.49074864387512207], [0.011824224144220352, 0.031619418412446976, 0.013066585175693035, 0.0033593676052987576, 0.000999400275759399, 0.0004325775080360472, 0.00030561830499209464, 0.010319091379642487, 0.4673183262348175, 0.00011453475599410012, 0.0018660679925233126, 7.23780831322074e-05, 0.00010274900705553591, 0.00011686662037391216, 0.0002201199094997719, 0.00024283005041070282, 0.45801982283592224], [0.002653721487149596, 0.007376522291451693, 0.012308141216635704, 0.0012607760727405548, 0.0008716582669876516, 0.00048471501213498414, 2.9569455364253372e-05, 0.0008004661649465561, 0.4883043169975281, 7.588630978716537e-05, 0.0005660575698129833, 9.463145397603512e-05, 3.113040293101221e-05, 3.555275179678574e-05, 0.0001165039575425908, 0.0004999481607228518, 0.48449042439460754], [0.0019072330323979259, 0.06150224432349205, 0.01568525843322277, 0.018371695652604103, 0.049505941569805145, 0.011806926690042019, 0.005584845319390297, 0.011089038103818893, 0.41280829906463623, 0.00034343224251642823, 0.001627131481654942, 0.0004034104058519006, 0.000142949735163711, 0.00019744868041016161, 0.0003961980401072651, 0.0011452591279521585, 0.40748274326324463], [0.0007226336747407913, 0.010250167921185493, 0.0017117736861109734, 0.004440348129719496, 0.0017453273758292198, 0.007101535797119141, 0.0011321828933432698, 0.005288560409098864, 0.4838944375514984, 3.477352220215835e-05, 0.0001616227236809209, 4.713012822321616e-05, 3.613242370192893e-06, 2.7937687264056876e-05, 0.00018145858484786004, 0.0010602050460875034, 0.4821964204311371], [0.0009220391511917114, 0.00203683041036129, 0.0016831494867801666, 0.0017126871971413493, 0.004069022834300995, 0.0038726930506527424, 0.00122427090536803, 0.003867652965709567, 0.4925641119480133, 0.00023894365585874766, 0.00020664882322307676, 1.2736146345559973e-05, 6.886805749672931e-06, 2.509949990781024e-05, 0.0002232462866231799, 0.0014253894332796335, 0.48590853810310364], [0.0005435695638880134, 0.004219656344503164, 0.004036516882479191, 0.007169567979872227, 0.02241043746471405, 0.671183705329895, 0.035876043140888214, 0.005130477715283632, 0.12443186342716217, 0.00025697500677779317, 5.910365507588722e-05, 2.2748319679521956e-05, 3.77723372366745e-05, 0.0001121274835895747, 6.217126065166667e-05, 0.00010925692913588136, 0.12433809041976929], [0.0059726727195084095, 0.0064332024194300175, 0.005674977786839008, 0.012177813798189163, 0.029017139226198196, 0.07363323122262955, 0.02635008841753006, 0.06776728481054306, 0.3844427764415741, 0.002214405918493867, 0.004718646872788668, 0.00012510159285739064, 0.00030144883203320205, 9.775700891623273e-05, 0.00012138995225541294, 0.0007765593472868204, 0.38017556071281433], [0.01789006032049656, 0.011232955381274223, 0.013579105027019978, 0.006586464587599039, 0.0031376779079437256, 0.005298648029565811, 0.0014133123913779855, 0.019931431859731674, 0.43546125292778015, 0.007066912483423948, 0.014798990450799465, 0.0063568647019565105, 0.003019228344783187, 0.0030720492359250784, 0.003858806099742651, 0.012525654397904873, 0.43477076292037964], [0.002307293238118291, 0.0005252473638392985, 8.809447899693623e-05, 0.0001066939948941581, 5.142863665241748e-05, 0.00013020240294281393, 2.280935223097913e-05, 0.0030361642129719257, 0.4866974949836731, 0.003110808553174138, 0.017023121938109398, 0.0004895227611996233, 0.00017146248137578368, 4.922522930428386e-05, 8.410107693634927e-05, 0.0006245755939744413, 0.48548176884651184], [0.003925621509552002, 0.0012905444018542767, 0.00038357198354788125, 0.00019414257258176804, 6.96040442562662e-05, 7.445819937856868e-05, 1.7682017642073333e-05, 0.002358929254114628, 0.47390303015708923, 0.010795599780976772, 0.021730123087763786, 0.004094819072633982, 0.0009392796782776713, 0.0022257231175899506, 0.0014261604519560933, 0.002192050451412797, 0.4743787348270416], [0.008202116936445236, 0.0015130232786759734, 0.0008207476348616183, 0.00011114784865640104, 3.075272616115399e-05, 5.873592454008758e-05, 3.500822640489787e-05, 0.0019902423955500126, 0.4695906341075897, 0.0009293457260355353, 0.02703288197517395, 0.0015253170859068632, 0.005303015001118183, 0.001179198152385652, 0.006391364149749279, 0.0037080796901136637, 0.47157853841781616], [0.0007976963534019887, 0.0008520035771653056, 0.00030975311528891325, 0.00020254332048352808, 1.3558767932408955e-05, 7.497619662899524e-05, 2.2740589429304237e-06, 0.00027519604191184044, 0.4260416328907013, 0.0004453066794667393, 0.010177896358072758, 0.1344641149044037, 0.000603098887950182, 0.00024383763957303017, 0.0008044102578423917, 0.0010347836650907993, 0.4236568212509155], [0.0019524323288351297, 0.0002637382713146508, 0.0003940958995372057, 0.0001262571895495057, 2.7685424356604926e-05, 7.109082798706368e-05, 1.3022981875110418e-05, 0.00043486119830049574, 0.46897876262664795, 0.0009151546400971711, 0.002930409973487258, 0.0016912224236875772, 0.0021614073775708675, 0.005406985059380531, 0.039821773767471313, 0.006688544526696205, 0.46812260150909424], [0.002520602662116289, 0.0002614275144878775, 0.0005641995812766254, 0.00016588994185440242, 0.00012261020310688764, 0.00019193170010112226, 3.556019510142505e-05, 0.0006151711568236351, 0.37359359860420227, 0.004681902006268501, 0.01112336665391922, 0.00816743541508913, 0.01294596679508686, 0.1693142205476761, 0.035054560750722885, 0.007097503636032343, 0.3735440671443939], [0.0023108343593776226, 0.0009366289596073329, 0.0003248245920985937, 0.000675665563903749, 0.00039208782254718244, 0.000510399870108813, 5.507854075403884e-05, 0.0022336547262966633, 0.47829505801200867, 0.0012756776995956898, 0.012313233688473701, 0.0016621029935777187, 0.001625137054361403, 0.004917402286082506, 0.004686739295721054, 0.008417991921305656, 0.4793674945831299], [0.017968175932765007, 0.01134131196886301, 0.013261078856885433, 0.006517610512673855, 0.0031680434476584196, 0.005264427978545427, 0.0013994675828143954, 0.019656673073768616, 0.4352993667125702, 0.007122380658984184, 0.015048257075250149, 0.006418908480554819, 0.0030963211320340633, 0.0031262042466551065, 0.003989494405686855, 0.012708148919045925, 0.4346141219139099]], [[0.0030689863488078117, 0.0033166492357850075, 0.00242445501498878, 0.0004114684124942869, 0.0001578721567057073, 0.0005789128481410444, 3.8072739698691294e-05, 0.0015109134837985039, 0.17528407275676727, 0.07361219078302383, 0.44687125086784363, 0.06202247738838196, 0.02273287996649742, 0.012525404803454876, 0.008559582754969597, 0.007263770792633295, 0.17962102591991425], [0.003965090494602919, 0.03982608765363693, 0.010935517959296703, 0.030606640502810478, 0.006151079200208187, 0.005054636858403683, 0.000700213888194412, 0.0068400949239730835, 0.44721174240112305, 0.001304612960666418, 0.0008193199173547328, 0.0011320802150294185, 0.0003346427693031728, 5.79663974349387e-05, 0.00015036006516311318, 0.0004494161403272301, 0.44446060061454773], [0.010818920098245144, 0.1957474648952484, 0.05118459090590477, 0.017250701785087585, 0.00452144630253315, 0.007591108791530132, 0.0002662086335476488, 0.002007861156016588, 0.3479042053222656, 0.0017605797620490193, 0.0048415581695735455, 0.0035292701795697212, 0.0038675395771861076, 0.00046889681834727526, 0.0007459585322067142, 0.0008902664994820952, 0.3466032147407532], [0.0012930310331285, 0.018686266615986824, 0.022953161969780922, 0.019466092810034752, 0.05568217858672142, 0.009044455364346504, 0.001302405260503292, 0.0017953389324247837, 0.43391719460487366, 0.00026276911376044154, 0.00012244898243807256, 0.0022720429114997387, 0.0011389699066057801, 0.0008332174038514495, 0.00018899368296843022, 0.0005446358700282872, 0.4304966926574707], [0.000962406222242862, 0.005701298825442791, 0.010019714944064617, 0.01962333731353283, 0.012387268245220184, 0.010740355588495731, 0.0003362670831847936, 0.001200356986373663, 0.4691201150417328, 6.658733036601916e-05, 1.943446659424808e-05, 0.00012924168549943715, 0.00012002202129224315, 0.00015755764616187662, 0.00019995974435005337, 0.0015169369289651513, 0.4676991403102875], [0.0022300526034086943, 0.0040331617929041386, 0.008002933114767075, 0.016305968165397644, 0.051353368908166885, 0.02401667647063732, 0.0011861160164698958, 0.003552023321390152, 0.44315075874328613, 0.00011782488581957296, 8.638935105409473e-05, 4.946976332576014e-05, 0.00012513506226241589, 7.789777737343684e-05, 0.00013485958334058523, 0.001111936173401773, 0.44446536898612976], [0.001013406552374363, 0.004529082681983709, 0.005132297053933144, 0.013445733115077019, 0.3318427503108978, 0.0748477652668953, 0.004088751971721649, 0.013508574105799198, 0.27495595812797546, 0.00016681548731867224, 2.5551471480866894e-05, 9.630837303120643e-05, 2.7533063985174522e-05, 4.698890552390367e-05, 2.442480945319403e-05, 0.0005585831822827458, 0.27568942308425903], [0.002854519058018923, 0.00703628733754158, 0.022958945482969284, 0.039655089378356934, 0.02283470332622528, 0.39655572175979614, 0.028923355042934418, 0.01945863850414753, 0.2272329330444336, 0.0009313879418186843, 0.0003862079174723476, 0.00021691610163543373, 0.0002444096899125725, 0.000510828394908458, 0.0006298835505731404, 0.0011067036539316177, 0.22846335172653198], [0.012420429848134518, 0.012259387411177158, 0.009217140264809132, 0.0065152873285114765, 0.005099431611597538, 0.01140523049980402, 0.002370786387473345, 0.011538098566234112, 0.43145236372947693, 0.009270879440009594, 0.01656862534582615, 0.00722168292850256, 0.006101866718381643, 0.00454137334600091, 0.0070095788687467575, 0.014235121197998524, 0.43277260661125183], [0.001373848645016551, 0.0002727459941525012, 0.0002512687351554632, 0.0011196366976946592, 0.0005515392404049635, 0.0022668209858238697, 0.0001824704377213493, 0.004791573155671358, 0.47241953015327454, 0.0212840735912323, 0.004951787181198597, 0.0022337117698043585, 0.0027306077536195517, 0.0016563142416998744, 0.0032291095703840256, 0.007374764885753393, 0.4733101725578308], [0.0019508089171722531, 0.0007906017708592117, 0.00024089193902909756, 0.0009003594750538468, 0.00032274119439534843, 0.0012441696599125862, 9.48059605434537e-05, 0.005818368401378393, 0.4264468848705292, 0.088047556579113, 0.017698992043733597, 0.010936638340353966, 0.004577295854687691, 0.001366672688163817, 0.0033455106895416975, 0.004470459185540676, 0.4317472279071808], [0.0014399546198546886, 0.0002332631847821176, 0.00045224191853776574, 4.9699898227117956e-05, 4.512643499765545e-05, 0.00029908542637713253, 1.8228014596388675e-05, 0.0016688129398971796, 0.4541323482990265, 0.020317096263170242, 0.020485615357756615, 0.01391658652573824, 0.024454424157738686, 0.0032055145129561424, 0.0021444011945277452, 0.0020901234820485115, 0.45504751801490784], [0.0014782125363126397, 0.0002664446656126529, 0.0013442249037325382, 4.679729318013415e-05, 1.4051792277314235e-05, 0.00012693411554209888, 2.119349574059015e-06, 0.0004978053621016443, 0.4407687187194824, 0.007875530049204826, 0.03794340789318085, 0.05507757142186165, 0.010426072403788567, 0.0008189357467927039, 0.0007481228676624596, 0.0004371738468762487, 0.44212791323661804], [0.0006987267988733947, 0.00017011218005791306, 0.000965818646363914, 0.00015281251398846507, 0.00017269969976041466, 0.0001944021787494421, 2.558222377047059e-06, 0.0001631873456062749, 0.4350961744785309, 0.010776503942906857, 0.010097411461174488, 0.04584597423672676, 0.046717602759599686, 0.0036445041187107563, 0.0031968147959560156, 0.0014907451113685966, 0.44061407446861267], [0.001102504669688642, 0.00012474732648115605, 0.0011422350071370602, 0.00010096780169988051, 0.0003126534866169095, 0.0003701750247273594, 8.78143691807054e-06, 0.00029479534714482725, 0.3615906536579132, 0.005539360921829939, 0.014459156431257725, 0.09316504746675491, 0.12162618339061737, 0.025408687070012093, 0.006769154686480761, 0.0020449822768568993, 0.36594003438949585], [0.0011829630238935351, 0.00034895879798568785, 0.007119147107005119, 0.0005344920791685581, 0.0006515107816085219, 0.0011389878345653415, 5.693728235200979e-05, 0.0009211533470079303, 0.39618223905563354, 0.004883582703769207, 0.003575598355382681, 0.01229837816208601, 0.021678829565644264, 0.10629958659410477, 0.032782260328531265, 0.006704023573547602, 0.4036415219306946], [0.01229869294911623, 0.01221025362610817, 0.009197334758937359, 0.0065560005605220795, 0.005198092665523291, 0.01150069572031498, 0.0023622915614396334, 0.011489861644804478, 0.4307621121406555, 0.009498207829892635, 0.016651909798383713, 0.007432642858475447, 0.006250835955142975, 0.004672306589782238, 0.007284434977918863, 0.014476056210696697, 0.43215832114219666]], [[0.0062873754650354385, 0.0033066386822611094, 0.005725296214222908, 0.002122096484526992, 0.0035054287873208523, 0.0018759208032861352, 0.0005465082940645516, 0.001364398980513215, 0.05486242100596428, 0.35307127237319946, 0.23264960944652557, 0.02684188447892666, 0.0388680100440979, 0.05338788777589798, 0.03981413692235947, 0.11988216638565063, 0.055888831615448], [0.010374179109930992, 0.017863847315311432, 0.08150981366634369, 0.08140186965465546, 0.07214724272489548, 0.23391591012477875, 0.11223496496677399, 0.049508534371852875, 0.13656170666217804, 0.011416579596698284, 0.0028409415390342474, 0.006919450126588345, 0.01042439229786396, 0.012274496257305145, 0.014705237932503223, 0.009614546783268452, 0.13628630340099335], [0.010608501732349396, 0.056547943502664566, 0.10995253175497055, 0.05565983057022095, 0.02825392782688141, 0.10524681210517883, 0.03965795785188675, 0.03382706269621849, 0.22549866139888763, 0.013226945884525776, 0.008492005057632923, 0.00804069358855486, 0.014080305583775043, 0.02046997658908367, 0.015657076612114906, 0.0300438292324543, 0.22473597526550293], [0.006527698133140802, 0.026134004816412926, 0.028784804046154022, 0.007164767477661371, 0.048842236399650574, 0.2568477392196655, 0.09427621960639954, 0.04196718707680702, 0.2316848188638687, 0.004028959199786186, 0.0033744387328624725, 0.005043047945946455, 0.004795629531145096, 0.0038917637430131435, 0.0017948336899280548, 0.0023471941240131855, 0.23249463737010956], [0.004678796045482159, 0.024227414280176163, 0.013375849463045597, 0.007306893356144428, 0.00541008310392499, 0.050092827528715134, 0.014733346179127693, 0.02605808526277542, 0.4214590787887573, 0.004866642411798239, 0.0017015838529914618, 0.0014875386841595173, 0.0014615926193073392, 0.003057771362364292, 0.0016313837841153145, 0.0021541989408433437, 0.41629675030708313], [0.01700776256620884, 0.042182184755802155, 0.02710765227675438, 0.021281739696860313, 0.020639576017856598, 0.006023309659212828, 0.006013905163854361, 0.02144630067050457, 0.3957773745059967, 0.01614018715918064, 0.005501651670783758, 0.009397325105965137, 0.007013344205915928, 0.0009224042296409607, 0.0011493106139823794, 0.011740141548216343, 0.39065587520599365], [0.008481322787702084, 0.021922994405031204, 0.015934770926833153, 0.009804973378777504, 0.02632986009120941, 0.06028136610984802, 0.009073665365576744, 0.013704154640436172, 0.4135402739048004, 0.0026396058965474367, 0.0011057837400585413, 0.0028944816440343857, 0.0034464530181139708, 0.000897968013305217, 0.000930494861677289, 0.0006320380489341915, 0.4083799123764038], [0.0426543653011322, 0.08419543504714966, 0.055145513266325, 0.051335304975509644, 0.14563463628292084, 0.027572128921747208, 0.016870353370904922, 0.02830444648861885, 0.24439531564712524, 0.01853090524673462, 0.012018369510769844, 0.006147198844701052, 0.004490226972848177, 0.002438419032841921, 0.001913479994982481, 0.015327800996601582, 0.24302606284618378], [0.003631844650954008, 0.00630282424390316, 0.010843838565051556, 0.004429279826581478, 0.002837232779711485, 0.005300014279782772, 0.0013003009371459484, 0.004197238944470882, 0.46347904205322266, 0.009454664774239063, 0.005623483564704657, 0.0024919926654547453, 0.0020668606739491224, 0.005056238267570734, 0.0030409570317715406, 0.0068252673372626305, 0.46311894059181213], [0.0039664702489972115, 0.0012100026942789555, 0.0013490068959072232, 0.0006717348005622625, 0.0013324781320989132, 0.0015365842264145613, 0.0005181505111977458, 0.0015928630018606782, 0.1233307421207428, 0.05346051976084709, 0.11342038214206696, 0.048529189079999924, 0.055899109691381454, 0.058765824884176254, 0.0325225405395031, 0.3756310045719147, 0.12626351416110992], [0.0014559559058398008, 0.0006339389947243035, 0.0026479223743081093, 0.00024594212300144136, 0.0001765353954397142, 0.0012350594624876976, 0.00013495075108949095, 0.00048230780521407723, 0.03289053589105606, 0.014156127348542213, 0.020841257646679878, 0.03300347179174423, 0.08467552065849304, 0.15145649015903473, 0.290687620639801, 0.3314812183380127, 0.03379521891474724], [0.0013450953410938382, 0.0007356879650615156, 0.0012934557162225246, 6.655571633018553e-05, 1.4959769941924606e-05, 0.00044271780643612146, 2.703746395127382e-05, 0.000240898531046696, 0.26482874155044556, 0.006245264783501625, 0.015628715977072716, 0.0026149589102715254, 0.009740754030644894, 0.1631568819284439, 0.1779329776763916, 0.0849837064743042, 0.2707015573978424], [0.002606040332466364, 0.0008344699162989855, 0.001209732610732317, 0.00025253143394365907, 0.00014520798868034035, 0.003140548476949334, 0.0001529784349258989, 0.0006057526916265488, 0.23604238033294678, 0.01167572196573019, 0.01795845851302147, 0.018712041899561882, 0.010940677486360073, 0.1811027228832245, 0.2549971342086792, 0.021172286942601204, 0.2384513020515442], [0.007668177597224712, 0.0030669323168694973, 0.0029126242734491825, 0.00011586756590986624, 0.0005006211576983333, 0.0002777589252218604, 6.353022035909817e-05, 0.001750412629917264, 0.3026740252971649, 0.02043387107551098, 0.053980227559804916, 0.02085098624229431, 0.14328381419181824, 0.05951334536075592, 0.044559378176927567, 0.03185036778450012, 0.30649808049201965], [0.0033411842305213213, 0.001311374711804092, 0.004674109630286694, 7.558760262327269e-05, 0.00026961808907799423, 0.0003397368418518454, 4.8722569772507995e-05, 0.0004819100140593946, 0.29047515988349915, 0.016495339572429657, 0.027204833924770355, 0.040732186287641525, 0.1415494680404663, 0.1156366840004921, 0.04778257757425308, 0.014617674052715302, 0.2949638068675995], [0.0054697091691195965, 0.0031442921608686447, 0.004017741419374943, 0.0006543616182170808, 0.0008626212948001921, 0.0014927604934200644, 0.0003636724140960723, 0.003298906609416008, 0.21456480026245117, 0.025571072474122047, 0.03551124036312103, 0.08946865797042847, 0.08170028775930405, 0.204983189702034, 0.0748935267329216, 0.03519828990101814, 0.2188047468662262], [0.0036279424093663692, 0.0062494720332324505, 0.010767522267997265, 0.004385904408991337, 0.00277776294387877, 0.005273555871099234, 0.001287155319005251, 0.0041479985229671, 0.4634871184825897, 0.0094976257532835, 0.005646751262247562, 0.002510426100343466, 0.0020773070864379406, 0.005139967426657677, 0.003092461032792926, 0.006879243068397045, 0.463151752948761]], [[0.0434751994907856, 0.07624716311693192, 0.06747912615537643, 0.02035519666969776, 0.010015725158154964, 0.0414426289498806, 0.03631532937288284, 0.06742885708808899, 0.18269914388656616, 0.029585689306259155, 0.12529835104942322, 0.0237087644636631, 0.01956157386302948, 0.019489718601107597, 0.020061686635017395, 0.03287490829825401, 0.1839608997106552], [0.035312458872795105, 0.04287431761622429, 0.3870684802532196, 0.01889089122414589, 0.0047857556492090225, 0.04934628680348396, 0.006713453214615583, 0.04850570484995842, 0.07312250137329102, 0.014558428898453712, 0.16590696573257446, 0.013183402828872204, 0.005659425165504217, 0.011663048528134823, 0.02039843611419201, 0.028879214078187943, 0.07313109189271927], [0.009067765437066555, 0.009693324565887451, 0.4875434935092926, 0.0014388547278940678, 0.00021393502538558096, 0.002667471067979932, 0.0006254262407310307, 0.027370432391762733, 0.13182732462882996, 0.0034815259277820587, 0.07815778255462646, 0.01245742104947567, 0.0028002781327813864, 0.031081482768058777, 0.061160601675510406, 0.008647194132208824, 0.13176578283309937], [0.043251343071460724, 0.05432870611548424, 0.2003648281097412, 0.07239138334989548, 0.02954348549246788, 0.13457031548023224, 0.008119238540530205, 0.06903116405010223, 0.08606088161468506, 0.021389802917838097, 0.1455184370279312, 0.005577497184276581, 0.004663320258259773, 0.002817539032548666, 0.004073464777320623, 0.03237688168883324, 0.08592164516448975], [0.01956501044332981, 0.04456562176346779, 0.10031446814537048, 0.050040360540151596, 0.2813097834587097, 0.12771634757518768, 0.012727844528853893, 0.046444378793239594, 0.03654434531927109, 0.01234675943851471, 0.190189391374588, 0.0016115154139697552, 0.0036612707190215588, 0.0013930225977674127, 0.0009064333862625062, 0.03406453877687454, 0.03659893944859505], [0.026218045502901077, 0.06079234927892685, 0.05672372877597809, 0.01798201911151409, 0.001952760387212038, 0.07390354573726654, 0.004739114083349705, 0.025562353432178497, 0.1153319776058197, 0.05080939084291458, 0.22117052972316742, 0.03781986981630325, 0.10344535112380981, 0.0023226733319461346, 0.005497083067893982, 0.08170291781425476, 0.11402627825737], [0.04773871228098869, 0.06627925485372543, 0.06205539405345917, 0.05496828258037567, 0.008842677809298038, 0.19613268971443176, 0.03337875381112099, 0.015735918655991554, 0.04694003611803055, 0.048762496560811996, 0.19610688090324402, 0.05871521309018135, 0.027684371918439865, 0.0031071281991899014, 0.0023632668890058994, 0.08435871452093124, 0.046830177307128906], [0.05267766863107681, 0.027090558782219887, 0.1338524967432022, 0.02360408753156662, 0.02441701479256153, 0.053336866199970245, 0.012728002853691578, 0.07358848303556442, 0.09732522070407867, 0.06038691848516464, 0.126238152384758, 0.027520151808857918, 0.019312327727675438, 0.024947965517640114, 0.03392765671014786, 0.11163274198770523, 0.09741368144750595], [0.0540308952331543, 0.04522665590047836, 0.10037654638290405, 0.03302600607275963, 0.020069647580385208, 0.039606042206287384, 0.01987120322883129, 0.043555453419685364, 0.20935256779193878, 0.030169669538736343, 0.035692472010850906, 0.027965085580945015, 0.02780071459710598, 0.016334030777215958, 0.023821622133255005, 0.06318362057209015, 0.2099178582429886], [0.14883196353912354, 0.0561506524682045, 0.018512427806854248, 0.0523001067340374, 0.022837985306978226, 0.06639589369297028, 0.06069033592939377, 0.03026256337761879, 0.03474833071231842, 0.20979785919189453, 0.060308873653411865, 0.06341985613107681, 0.024848708882927895, 0.008243841119110584, 0.004993164911866188, 0.1026022806763649, 0.03505522385239601], [0.07569590955972672, 0.06826606392860413, 0.14791373908519745, 0.006353020668029785, 0.001287593855522573, 0.025356687605381012, 0.006612796802073717, 0.016611628234386444, 0.09665815532207489, 0.009839272126555443, 0.4156748950481415, 0.009369410574436188, 0.0035524782724678516, 0.004436532035470009, 0.008466809056699276, 0.006887361407279968, 0.09701766073703766], [0.08131925016641617, 0.04038386791944504, 0.2807130515575409, 0.022350987419486046, 0.005161680281162262, 0.03141096979379654, 0.01706489361822605, 0.027880989015102386, 0.0755089595913887, 0.03333592787384987, 0.06743645668029785, 0.13742727041244507, 0.027865950018167496, 0.0034239927772432566, 0.010055961087346077, 0.06323617696762085, 0.07542363554239273], [0.07594527304172516, 0.05045931413769722, 0.17923316359519958, 0.019263068214058876, 0.007309482432901859, 0.08978694677352905, 0.03064342401921749, 0.040266070514917374, 0.06838121265172958, 0.007705403957515955, 0.05947738140821457, 0.01489026565104723, 0.07422855496406555, 0.07840986549854279, 0.11332403868436813, 0.022269994020462036, 0.06840652227401733], [0.016269274055957794, 0.07428978383541107, 0.06399387121200562, 0.02427583374083042, 0.00984142441302538, 0.04934109374880791, 0.01772794872522354, 0.08082874119281769, 0.17281591892242432, 0.001805666135624051, 0.014381326735019684, 0.004945421125739813, 0.029646364971995354, 0.17308469116687775, 0.0766250491142273, 0.017474712803959846, 0.17265284061431885], [0.015886226668953896, 0.04134271293878555, 0.058663565665483475, 0.027810800820589066, 0.005924344528466463, 0.03066580556333065, 0.01090441644191742, 0.05550302937626839, 0.14484284818172455, 0.0012009674683213234, 0.008928833529353142, 0.001456223544664681, 0.011961211450397968, 0.2594308853149414, 0.16970132291316986, 0.010675432160496712, 0.145101398229599], [0.10890478640794754, 0.06156468018889427, 0.0492355041205883, 0.05090511962771416, 0.031639374792575836, 0.042668417096138, 0.03171618655323982, 0.03961167111992836, 0.10332640260457993, 0.04986456036567688, 0.13834761083126068, 0.020664377138018608, 0.01220464613288641, 0.004305260255932808, 0.006431234069168568, 0.1449912041425705, 0.10361898690462112], [0.05445354804396629, 0.04526779055595398, 0.09894164651632309, 0.03292705863714218, 0.019971294328570366, 0.03926083445549011, 0.01988603174686432, 0.043445706367492676, 0.20997031033039093, 0.030376648530364037, 0.03586333245038986, 0.027953563258051872, 0.027930643409490585, 0.01642383076250553, 0.023868519812822342, 0.0629306435585022, 0.2105286866426468]], [[0.0031840449664741755, 0.21571789681911469, 0.04524892568588257, 0.04099930077791214, 0.009694595821201801, 0.12895631790161133, 0.004357876721769571, 0.1127181351184845, 0.21609258651733398, 0.002785061253234744, 0.002087533473968506, 0.0006042739260010421, 0.0006000974681228399, 0.0016227583400905132, 0.0010247959289699793, 0.0016243925783783197, 0.21268151700496674], [0.004006592091172934, 0.05269387364387512, 0.044160183519124985, 0.03270796686410904, 0.006540026981383562, 0.00946151651442051, 0.002772148232907057, 0.0238027460873127, 0.4141005873680115, 0.001061401329934597, 0.0009192836005240679, 0.0003084810741711408, 0.00016421879990957677, 0.00022142102534417063, 0.00021352406474761665, 0.002067337976768613, 0.4047985374927521], [0.011967779137194157, 0.20360039174556732, 0.0273871012032032, 0.0805215984582901, 0.009617360308766365, 0.029085135087370872, 0.004362944047898054, 0.029789013788104057, 0.29455703496932983, 0.004561576992273331, 0.002771953819319606, 0.0015155079308897257, 0.002506677992641926, 0.0017421378288418055, 0.0030295392498373985, 0.0037372498773038387, 0.28924694657325745], [0.0028203059919178486, 0.22022941708564758, 0.08479999005794525, 0.02473951317369938, 0.01705314591526985, 0.008756676688790321, 0.0037036833819001913, 0.0203179232776165, 0.30852213501930237, 0.0025849565863609314, 0.0006831066566519439, 0.0003921120660379529, 0.0005833411123603582, 0.000631358998361975, 0.000379806209821254, 0.0033486245665699244, 0.30045390129089355], [0.002009183866903186, 0.023240454494953156, 0.0190526582300663, 0.024731798097491264, 0.012375425547361374, 0.00394817627966404, 0.001384460018016398, 0.004934764001518488, 0.4578995406627655, 0.00037308729952201247, 0.00019942536891903728, 0.00023946145665831864, 0.00027265807148069143, 0.00013639855023939162, 0.00018612276471685618, 0.000731980602722615, 0.4482843279838562], [0.0076033552177250385, 0.09425722807645798, 0.04865274950861931, 0.11354836821556091, 0.09413701295852661, 0.023365287110209465, 0.006663545034825802, 0.023783979937434196, 0.28648820519447327, 0.002370882546529174, 0.000904439075384289, 0.0008742004865780473, 0.0045267329551279545, 0.001869221101514995, 0.0023903290275484324, 0.0036986833438277245, 0.28486594557762146], [0.0033919215202331543, 0.05983782932162285, 0.06063438579440117, 0.23119010031223297, 0.268436998128891, 0.022264478728175163, 0.006140152458101511, 0.014200322329998016, 0.1666257083415985, 0.00040535267908126116, 0.00037407761556096375, 6.247432611417025e-05, 0.0003031328087672591, 0.00015827975585125387, 0.00024232060241047293, 0.0010296277469024062, 0.16470283269882202], [0.006729861255735159, 0.08788341283798218, 0.10373534262180328, 0.1857779622077942, 0.12147389352321625, 0.1733231246471405, 0.03104526922106743, 0.04033413156867027, 0.1204276904463768, 0.0014714953722432256, 0.0014245584607124329, 0.0005047697923146188, 0.0016643000999465585, 0.001192077761515975, 0.0012797699309885502, 0.0020482675172388554, 0.11968409270048141], [0.00839389767497778, 0.013293436728417873, 0.005461883265525103, 0.01169236283749342, 0.006590526085346937, 0.008103218860924244, 0.0015514168189838529, 0.018558092415332794, 0.43971800804138184, 0.012590828351676464, 0.008479714393615723, 0.00353297870606184, 0.003901928197592497, 0.003213356714695692, 0.00506718410179019, 0.010710257105529308, 0.4391407370567322], [0.015712054446339607, 0.003016943810507655, 0.002891476498916745, 0.016477731987833977, 0.003098049433901906, 0.0032609866466373205, 0.0005190958618186414, 0.009564626030623913, 0.39708998799324036, 0.06891121715307236, 0.02599017135798931, 0.009533909149467945, 0.007644720375537872, 0.004496948327869177, 0.0111601073294878, 0.021410614252090454, 0.3992213010787964], [0.011905212886631489, 0.011302993632853031, 0.008778983727097511, 0.011205737479031086, 0.003432678757235408, 0.005752991884946823, 0.0009213303565047681, 0.03804676979780197, 0.2708134949207306, 0.09715063124895096, 0.12197071313858032, 0.03721364587545395, 0.021103635430336, 0.015403433702886105, 0.014941551722586155, 0.057241275906562805, 0.27281486988067627], [0.00725163659080863, 0.0015573929995298386, 0.0022282341960817575, 0.002828036667779088, 0.0013643758138641715, 0.00209349999204278, 0.00027652716380544007, 0.00869971513748169, 0.3416977822780609, 0.11482184380292892, 0.09516112506389618, 0.02310303784906864, 0.01358744315803051, 0.0075135184451937675, 0.011674463748931885, 0.02350008115172386, 0.3426411747932434], [0.014523872174322605, 0.0013822511537000537, 0.006334054749459028, 0.0019307088805362582, 0.0005568930064328015, 0.002475097542628646, 0.00025742192519828677, 0.01586259715259075, 0.21639077365398407, 0.1816307157278061, 0.25600665807724, 0.020945927128195763, 0.004577548708766699, 0.007972564548254013, 0.01322969514876604, 0.03920188173651695, 0.2167213261127472], [0.007418851833790541, 0.0014681847533211112, 0.00305807963013649, 0.002265361836180091, 0.000882843101862818, 0.001318708760663867, 0.0001229055633302778, 0.006177906412631273, 0.14417621493339539, 0.3530433177947998, 0.16043543815612793, 0.07088933885097504, 0.0468129888176918, 0.013300761580467224, 0.018453426659107208, 0.025853820145130157, 0.14432188868522644], [0.008744224905967712, 0.0017883465625345707, 0.00599333643913269, 0.0017488505691289902, 0.0006991210393607616, 0.0016012750566005707, 9.292181493947282e-05, 0.004622788168489933, 0.11953023821115494, 0.2536883056163788, 0.21079561114311218, 0.09379047900438309, 0.08386283367872238, 0.043063048273324966, 0.026585450395941734, 0.02345716953277588, 0.11993610858917236], [0.012803398072719574, 0.003155008191242814, 0.00859522819519043, 0.002518855966627598, 0.0006019544089213014, 0.0018383092246949673, 0.00011044396524084732, 0.004515702370554209, 0.13633836805820465, 0.1949165165424347, 0.20429983735084534, 0.04728134721517563, 0.03588426858186722, 0.08325108885765076, 0.068187415599823, 0.057584844529628754, 0.13811741769313812], [0.008475459180772305, 0.013212391175329685, 0.0054257274605333805, 0.011654380708932877, 0.006628814153373241, 0.008029801771044731, 0.001531823887489736, 0.018491938710212708, 0.4390735924243927, 0.01301492564380169, 0.008726131170988083, 0.0036282483488321304, 0.003982252441346645, 0.003302351338788867, 0.005225836299359798, 0.011017310433089733, 0.43857893347740173]], [[5.714677172363736e-06, 7.531060873589013e-06, 0.0001237595861312002, 0.0001824203645810485, 3.015415131812915e-06, 1.3844623026670888e-05, 1.2050754172321376e-08, 2.479518798281788e-06, 0.49366670846939087, 3.699452122418734e-07, 1.6712405340513214e-05, 1.120707722179759e-07, 3.456006680835344e-08, 2.8061722900929453e-07, 8.784086702462446e-08, 1.2627372143469984e-06, 0.5059755444526672], [8.525857424501737e-07, 0.0007749959477223456, 5.146398689248599e-05, 0.0002799722133204341, 1.0684244244885122e-07, 1.7900667614867416e-08, 5.984887030408004e-10, 3.9815680793253705e-05, 0.5097732543945312, 8.042762544846482e-08, 2.402672549806084e-08, 8.599534417896848e-10, 2.2099409108244927e-11, 9.186663582627652e-12, 2.1641358843860203e-11, 7.705302351723731e-08, 0.4890795052051544], [3.231378684631636e-07, 0.9981132745742798, 6.831890641478822e-05, 4.638550672098063e-05, 9.831397619564086e-06, 1.1858296034006344e-07, 4.995786076489317e-11, 4.471216730195238e-09, 0.0008773634908720851, 9.659983229992619e-11, 2.8497537662985906e-09, 5.718871154414273e-09, 3.743075538409357e-08, 3.439669438165538e-09, 2.8593399870047165e-10, 5.8693498949935474e-09, 0.0008843277464620769], [1.397115201307031e-09, 2.6192303721472854e-06, 0.9998918771743774, 9.90204862318933e-05, 5.5761820050292954e-08, 6.497455729004287e-08, 1.194159793271865e-08, 1.2937077797925411e-10, 3.2282780466630356e-06, 6.1323071186975e-14, 5.4551321793105956e-11, 1.3483410961638749e-14, 1.5693267518823717e-10, 5.848529993635054e-11, 3.640321821762882e-09, 2.840805646275868e-10, 3.1068761927599553e-06], [3.388044012009317e-11, 2.95115332171747e-09, 2.278439069414162e-06, 0.9984825253486633, 0.0015151363331824541, 2.0659163268987868e-08, 1.890719386610229e-10, 2.8548736725336754e-12, 2.5246126966749216e-08, 1.9433179123834894e-17, 2.295780753003296e-12, 1.081282704026203e-14, 9.676696295335239e-17, 1.0416897582694006e-14, 8.799661303446338e-14, 4.3361708668143706e-10, 2.6403824904264184e-08], [8.36674826643069e-11, 8.532065054467353e-10, 8.29904944765758e-09, 0.0002776994660962373, 0.9997115731239319, 1.0491678949620109e-05, 9.19305165325568e-08, 1.2629202371383652e-11, 1.6365794053285754e-08, 8.82434212828761e-16, 2.0271460156101248e-14, 1.1976214723096314e-15, 1.2829752248110816e-14, 1.2851795433530162e-14, 9.152966030229453e-16, 1.875364273595803e-11, 1.7220303405451887e-08], [1.1440866367143169e-18, 6.24125504855641e-19, 1.2712827481258654e-13, 3.7660291009843083e-13, 9.704320680370415e-10, 0.999998927116394, 1.0640302434694604e-06, 5.443953213025048e-17, 1.223048236715903e-15, 2.366011807559596e-21, 8.412004063327965e-24, 5.461388176484554e-23, 8.682448995029395e-22, 1.3391050747150491e-17, 2.5769241002670217e-16, 1.576629201788069e-18, 1.2523003077910934e-15], [1.1910175623519592e-10, 9.76662218980795e-13, 1.8872206020148496e-09, 6.939735008870684e-09, 6.119305617779958e-10, 0.00016604574921075255, 0.9998329877853394, 3.1072784167918144e-07, 2.9101207132953277e-07, 3.312937963784006e-14, 1.6418243717689074e-12, 3.2812739091506104e-18, 2.402679258621445e-14, 1.694799425040923e-14, 4.061255498566396e-11, 1.0015156481912868e-09, 2.931317339971429e-07], [0.027686618268489838, 0.010151353664696217, 0.024794626981019974, 0.02103099413216114, 0.0042915563099086285, 0.005246133543550968, 0.0006153103895485401, 0.02844744548201561, 0.40133506059646606, 0.006595885846763849, 0.03245443478226662, 0.0029201246798038483, 0.00209422898478806, 0.006193780340254307, 0.002613560762256384, 0.019782450050115585, 0.4037465751171112], [5.707126504717053e-08, 5.305807182498512e-11, 2.0431093882694595e-12, 1.0814625968835409e-13, 5.413075857777644e-15, 5.9568240097507275e-12, 3.8739598009519816e-13, 0.0006395395612344146, 0.5075867176055908, 2.1058724087197334e-05, 4.714403075922746e-06, 8.419962643779755e-11, 4.491483573954014e-12, 7.734564724803938e-12, 4.4801684584427903e-10, 8.460733056381287e-07, 0.491747111082077], [1.0530384564333417e-08, 1.3827381462050425e-09, 9.907910603068615e-11, 5.2415769641322996e-11, 1.614435988324045e-14, 1.9644556814579772e-11, 3.965761502825946e-14, 1.0437122277551225e-08, 0.00021847887546755373, 0.9983766078948975, 0.0011704300995916128, 9.414298801857512e-06, 1.973577212766031e-08, 7.474723062728117e-10, 1.1261970245257658e-09, 1.9410425267096798e-08, 0.00022511338465847075], [5.330696772887222e-09, 1.046445499697235e-10, 3.5324796421321025e-09, 3.2595062066098635e-11, 7.034046197069987e-14, 2.89433910933873e-16, 1.9071030187236317e-16, 1.9350456566952223e-12, 8.921795597416349e-06, 1.2232409972057212e-05, 0.9990942478179932, 2.6550827897153795e-05, 0.0008491174085065722, 5.2074426548642805e-08, 7.691279835242426e-10, 9.100802056405399e-11, 8.92963453225093e-06], [1.413380012799028e-14, 7.718452884209609e-14, 2.3376149309978743e-14, 4.0959548713902574e-15, 9.176170497819484e-15, 4.1570871582526214e-18, 4.6975032386115635e-23, 8.399624658721385e-19, 2.358336581576026e-10, 5.2525837845873724e-11, 1.6559253523951156e-08, 1.0, 3.5066620718282593e-09, 9.532768352471521e-09, 4.848402061774504e-12, 1.2009822872860996e-15, 2.4536295217814086e-10], [5.705686945134403e-08, 2.833989265482728e-09, 8.928861461754423e-06, 9.822356616950856e-08, 7.62967733436426e-09, 8.257136700729958e-14, 1.318182318670296e-15, 5.828378144695501e-14, 0.00011490472388686612, 5.522657886558591e-08, 0.008896159939467907, 0.0012328594457358122, 0.9895163178443909, 8.931191405281425e-05, 2.0326888261479326e-05, 1.5145957377171726e-06, 0.00011949613690376282], [3.950031413069155e-10, 2.8524934150842007e-12, 5.75962459947732e-08, 1.0115307202962498e-10, 1.6422271875704553e-10, 2.968542078818359e-11, 1.3658625656008932e-14, 1.1810138031919347e-15, 8.804174285614863e-06, 8.615912670817405e-12, 1.2587244668793574e-07, 1.0687680514820386e-05, 0.02868564985692501, 0.970523476600647, 0.0007618709933012724, 2.2159838408697397e-07, 9.148032404482365e-06], [7.083077679936878e-09, 1.2497617524198645e-11, 5.511309154826449e-06, 3.08378140800869e-08, 2.9887561175945265e-11, 7.224776776837416e-09, 1.1986701053956494e-07, 9.327864002039998e-12, 8.805703146208543e-06, 1.0804734711100661e-11, 2.158739142998911e-08, 5.426098806382562e-11, 5.5660048019490205e-06, 0.0001696567633189261, 0.9940999150276184, 0.005701203364878893, 9.169450095214415e-06], [0.028319815173745155, 0.010333376005291939, 0.025473307818174362, 0.02507404237985611, 0.004830158315598965, 0.005717465654015541, 0.000718376599252224, 0.025225600227713585, 0.3933270275592804, 0.007089710328727961, 0.03807156905531883, 0.0031177906785160303, 0.0023958347737789154, 0.006642082706093788, 0.0030525866895914078, 0.024333421140909195, 0.3962777554988861]], [[0.005391542799770832, 0.007001600693911314, 0.01654086448252201, 0.007268095389008522, 0.005217065569013357, 0.012687058188021183, 0.0018780648242682219, 0.025507211685180664, 0.44259437918663025, 0.00456001702696085, 0.012514159083366394, 0.0018214149167761207, 0.0014852266758680344, 0.0016768246423453093, 0.0020546717569231987, 0.01041596382856369, 0.4413858950138092], [0.006576152052730322, 0.10240702331066132, 0.018728697672486305, 0.14323820173740387, 0.049986474215984344, 0.03025483712553978, 0.012050971388816833, 0.049884919077157974, 0.2808198630809784, 0.00031938732718117535, 0.01515895128250122, 0.0010267799952998757, 0.003328900085762143, 0.0009151598787866533, 0.0006995670846663415, 0.0026942254044115543, 0.2819098234176636], [0.012973690405488014, 0.06871321052312851, 0.031490497291088104, 0.10958608984947205, 0.04596468806266785, 0.04817672818899155, 0.011864996515214443, 0.0465908944606781, 0.2963188588619232, 0.0024943770840764046, 0.010976185090839863, 0.0007986612617969513, 0.003831664100289345, 0.002208451274782419, 0.0031803790479898453, 0.007687777280807495, 0.29714277386665344], [0.004054914694279432, 0.03101220168173313, 0.014836825430393219, 0.08251379430294037, 0.025474147871136665, 0.0367685928940773, 0.019961180165410042, 0.1350509375333786, 0.3203428089618683, 0.000971910310909152, 0.0038676627445966005, 0.0001037776964949444, 0.0001480377250118181, 0.0003008987696375698, 0.0002856427454389632, 0.0034889793023467064, 0.32081761956214905], [0.003940700553357601, 0.004999156575649977, 0.0032750770915299654, 0.07968626916408539, 0.02742406167089939, 0.06991948932409286, 0.09462787955999374, 0.12835530936717987, 0.2933743894100189, 0.000949179579038173, 0.0018484863685443997, 0.00013900731573812664, 0.00010231795749859884, 6.0651109379250556e-05, 0.00011319718760205433, 0.0014628792414441705, 0.28972193598747253], [0.00998516846448183, 0.003294517984613776, 0.0027820756658911705, 0.019927389919757843, 0.027486037462949753, 0.021844541653990746, 0.02705955132842064, 0.16139407455921173, 0.356993168592453, 0.005335778463631868, 0.005052140913903713, 0.0007035201997496188, 0.00046640902291983366, 0.0002491034974809736, 0.0004917875048704445, 0.0010880891932174563, 0.35584667325019836], [0.004408373963087797, 0.00316426414065063, 0.0014020120725035667, 0.023342369124293327, 0.025323715060949326, 0.025710592046380043, 0.03184136748313904, 0.12601809203624725, 0.38134074211120605, 0.0007688571349717677, 0.0006233482854440808, 0.00017133104847744107, 0.0001142708642873913, 1.1815919606306124e-05, 4.521145092439838e-05, 0.0003314129717182368, 0.3753822445869446], [0.002143165795132518, 0.006253203842788935, 0.0013561963569372892, 0.0030949197243899107, 0.0021872781217098236, 0.002259022556245327, 0.0016221548430621624, 0.017215300351381302, 0.4804159998893738, 0.003592889290302992, 0.003877464681863785, 0.0007696565007790923, 0.00047792476834729314, 0.00012241075455676764, 0.00021420551638584584, 0.0019411430694162846, 0.47245708107948303], [0.01601012982428074, 0.012033963575959206, 0.01078930776566267, 0.011333223432302475, 0.004751932807266712, 0.008196607232093811, 0.005289657507091761, 0.02050664834678173, 0.41423702239990234, 0.012046046555042267, 0.01618734933435917, 0.008055870421230793, 0.007911546155810356, 0.007270640227943659, 0.009202688001096249, 0.023804429918527603, 0.4123729467391968], [0.004570821300148964, 0.0006219990318641067, 0.0008660269086249173, 0.0007282443693839014, 0.00011756434105336666, 0.0001524199906270951, 9.679755748948082e-06, 0.00121091038454324, 0.43794164061546326, 0.01100597158074379, 0.05880236253142357, 0.010513713583350182, 0.003600803669542074, 0.005937621463090181, 0.0041281781159341335, 0.01480777096003294, 0.4449843764305115], [0.003852137131616473, 0.001867673359811306, 0.002219864632934332, 0.0004865672090090811, 0.00015351915499195457, 0.0003103021008428186, 3.419929635128938e-05, 0.002339719096198678, 0.24926511943340302, 0.023571200668811798, 0.18127913773059845, 0.06604747474193573, 0.0900469720363617, 0.054545655846595764, 0.02487427555024624, 0.04440683126449585, 0.25469937920570374], [0.0023099894169718027, 0.0006187451654113829, 0.0017197662964463234, 0.0009706380660645664, 0.0003896088746841997, 0.0001397169689880684, 1.049382353812689e-05, 0.0013366942293941975, 0.38504689931869507, 0.007943826727569103, 0.04948156327009201, 0.037139248102903366, 0.03286372497677803, 0.021734939888119698, 0.023877650499343872, 0.043642472475767136, 0.3907740116119385], [0.005205004010349512, 0.0004466577956918627, 0.0012418323894962668, 0.0009301879908889532, 0.0027220447082072496, 0.0021583547350019217, 0.00024887837935239077, 0.0021135604474693537, 0.3151141405105591, 0.013325474224984646, 0.007533856201916933, 0.05050894618034363, 0.024504736065864563, 0.04204701632261276, 0.19397099316120148, 0.018031859770417213, 0.3198965787887573], [0.0035345754586160183, 0.00020995068189222366, 0.002809529658406973, 0.0004845350340474397, 0.0007872952264733613, 0.002412022091448307, 7.994176121428609e-05, 0.0012910199584439397, 0.3895937502384186, 0.002214687177911401, 0.016438975930213928, 0.01857096515595913, 0.007398077752441168, 0.019597051665186882, 0.04473528638482094, 0.08896366506814957, 0.4008787274360657], [0.0032323135528713465, 0.0002426189457764849, 0.0010305322939530015, 0.00041538651566952467, 0.0005048421444371343, 0.0018313778564333916, 5.4521082347491756e-05, 0.0021139876917004585, 0.408632755279541, 0.002944200299680233, 0.010133915580809116, 0.004700675141066313, 0.0037719127722084522, 0.0186750628054142, 0.034819480031728745, 0.08516407757997513, 0.42173242568969727], [0.0018415561644360423, 0.0002441449323669076, 0.00016823195619508624, 0.00023019398213364184, 0.0001538503129268065, 0.00042028201278299093, 7.054630987113342e-05, 0.00042174546979367733, 0.4848628342151642, 0.0014554180670529604, 0.004560873843729496, 0.0007168111042119563, 0.0002870234311558306, 0.0017560055712237954, 0.005887182429432869, 0.006457427516579628, 0.4904659688472748], [0.01604890450835228, 0.011827213689684868, 0.010717342607676983, 0.01119537279009819, 0.004707286600023508, 0.008161387406289577, 0.005274169147014618, 0.02044428512454033, 0.4137292206287384, 0.012168054468929768, 0.01641322299838066, 0.008189268410205841, 0.008064016699790955, 0.00740379374474287, 0.009403572417795658, 0.02437535673379898, 0.41187745332717896]], [[0.011896337382495403, 0.04553978517651558, 0.2977008819580078, 0.016144176945090294, 0.014812009409070015, 0.05180941894650459, 0.006068960297852755, 0.018725192174315453, 0.06805863231420517, 0.08364249765872955, 0.09200550615787506, 0.06783529371023178, 0.02006317488849163, 0.02658402919769287, 0.032708488404750824, 0.07826431840658188, 0.06814133375883102], [0.07108449190855026, 0.10104425251483917, 0.047358378767967224, 0.01654794067144394, 0.008046175353229046, 0.009992127306759357, 0.009700554423034191, 0.06148039177060127, 0.17401942610740662, 0.11008325219154358, 0.1427319049835205, 0.013201718218624592, 0.015427488833665848, 0.003291880711913109, 0.005101888906210661, 0.04001959040760994, 0.17086847126483917], [0.06808757036924362, 0.046941373497247696, 0.018322275951504707, 0.011204362846910954, 0.004199360962957144, 0.011305831372737885, 0.009801087900996208, 0.04053309187293053, 0.266318142414093, 0.05707777664065361, 0.08191963285207748, 0.011768994852900505, 0.035173192620277405, 0.005533100105822086, 0.01537717878818512, 0.05184144154191017, 0.26459556818008423], [0.07591699808835983, 0.05357486382126808, 0.024092543870210648, 0.025861689820885658, 0.008523015305399895, 0.022105766460299492, 0.015525205992162228, 0.0807480439543724, 0.2269948124885559, 0.10711406916379929, 0.06361471861600876, 0.019678829237818718, 0.008481882512569427, 0.004295858088880777, 0.0053276256658136845, 0.03433699905872345, 0.2238069623708725], [0.058995891362428665, 0.03078671172261238, 0.013344567269086838, 0.025047797709703445, 0.01611863449215889, 0.026517633348703384, 0.021701818332076073, 0.07825782150030136, 0.33156299591064453, 0.028799893334507942, 0.015614050440490246, 0.014394245110452175, 0.0024725585244596004, 0.002137289149686694, 0.0018767892615869641, 0.007450197357684374, 0.3249210715293884], [0.030031220987439156, 0.011588482186198235, 0.009314131923019886, 0.013186336494982243, 0.012996258214116096, 0.0043689189478755, 0.007965936325490475, 0.058860596269369125, 0.31455063819885254, 0.08418512344360352, 0.037953004240989685, 0.03637489676475525, 0.009662586264312267, 0.0030015516094863415, 0.004162016790360212, 0.04946955293416977, 0.31232884526252747], [0.027438925579190254, 0.034748516976833344, 0.008749268017709255, 0.022606780752539635, 0.02249724417924881, 0.02475479245185852, 0.026207972317934036, 0.06713223457336426, 0.3269135355949402, 0.046424880623817444, 0.020834898576140404, 0.011768336407840252, 0.006369994953274727, 0.0026754827704280615, 0.005533265881240368, 0.024527231231331825, 0.32081660628318787], [0.04745704308152199, 0.04258449748158455, 0.03822675719857216, 0.02935813181102276, 0.013506618328392506, 0.05341669172048569, 0.018804382532835007, 0.19889415800571442, 0.16479218006134033, 0.055756378918886185, 0.019973155111074448, 0.008547870442271233, 0.004493501503020525, 0.004714685026556253, 0.010971049778163433, 0.12483490258455276, 0.1636679768562317], [0.004619167651981115, 0.003336237743496895, 0.005120809189975262, 0.002401411999017, 0.0011635300470516086, 0.001786738052032888, 0.0006125796353444457, 0.013043121434748173, 0.47580668330192566, 0.005447726231068373, 0.0029154850635677576, 0.0012503197649493814, 0.0006939501035958529, 0.0011493226047605276, 0.001484293956309557, 0.00751108955591917, 0.47165751457214355], [0.006681482307612896, 0.01350687351077795, 0.0010673771612346172, 0.010909723117947578, 0.0029024267569184303, 0.0034648317378014326, 0.002712294226512313, 0.030649906024336815, 0.4172075688838959, 0.024898499250411987, 0.013032658025622368, 0.013816745951771736, 0.0016599389491602778, 0.001979984575882554, 0.0033442906569689512, 0.03448781371116638, 0.41767752170562744], [0.021973080933094025, 0.11463961005210876, 0.008249381557106972, 0.008443331345915794, 0.0016807846259325743, 0.00857829861342907, 0.004734683781862259, 0.01720252074301243, 0.20377548038959503, 0.08148840069770813, 0.12394528090953827, 0.037925396114587784, 0.039062853902578354, 0.014924994669854641, 0.03167993575334549, 0.07768147438764572, 0.2040143609046936], [0.015987304970622063, 0.029722819104790688, 0.0038740970194339752, 0.010076967999339104, 0.030323894694447517, 0.0322301872074604, 0.016984013840556145, 0.014620089903473854, 0.3000859320163727, 0.03443753346800804, 0.02070557326078415, 0.03901701420545578, 0.050995927304029465, 0.020987316966056824, 0.035207320004701614, 0.04655110090970993, 0.29819294810295105], [0.009800056926906109, 0.022414375096559525, 0.011662283912301064, 0.013969166204333305, 0.005651111714541912, 0.013361428864300251, 0.006015367805957794, 0.020908601582050323, 0.3546835780143738, 0.03504370525479317, 0.014956529252231121, 0.06282033771276474, 0.00644267862662673, 0.006425785832107067, 0.02936325967311859, 0.0329553484916687, 0.35352644324302673], [0.045693472027778625, 0.028873935341835022, 0.007569416426122189, 0.02534460462629795, 0.00850349199026823, 0.013826144859194756, 0.016999240964651108, 0.043204594403505325, 0.2920227348804474, 0.04142223298549652, 0.04287896677851677, 0.04896218702197075, 0.009458008222281933, 0.0074393004179000854, 0.025354625657200813, 0.04927218705415726, 0.29317477345466614], [0.026541445404291153, 0.022693820297718048, 0.01782643422484398, 0.01720244064927101, 0.004403784405440092, 0.012205874547362328, 0.011370832100510597, 0.032343506813049316, 0.24245671927928925, 0.0388604998588562, 0.04566324129700661, 0.08541925251483917, 0.026139279827475548, 0.014914426021277905, 0.05854498967528343, 0.09926380217075348, 0.24414974451065063], [0.015273853205144405, 0.012693632394075394, 0.0030219326727092266, 0.008167976513504982, 0.0026210134383291006, 0.018482642248272896, 0.0122247114777565, 0.043228983879089355, 0.27787095308303833, 0.045327331870794296, 0.026973629370331764, 0.043306175619363785, 0.010407078079879284, 0.018379922956228256, 0.06542158126831055, 0.11675029993057251, 0.2798483371734619], [0.004644386470317841, 0.003321829717606306, 0.0050865886732935905, 0.002393309725448489, 0.0011556813260540366, 0.0017870698357000947, 0.0006104191415943205, 0.012987826950848103, 0.4755563735961914, 0.0055827489122748375, 0.0029940621461719275, 0.0012819472467526793, 0.0007164013222791255, 0.001179285580292344, 0.0015245575923472643, 0.00768388994038105, 0.4714936912059784]], [[0.017892248928546906, 0.09621790051460266, 0.27972814440727234, 0.04248691350221634, 0.036734793335199356, 0.08579163253307343, 0.047321733087301254, 0.16168665885925293, 0.10481302440166473, 0.0026634098030626774, 0.0029089536983519793, 0.002742952201515436, 0.005386663135141134, 0.001968739554286003, 0.0016956259496510029, 0.006729320622980595, 0.10323139280080795], [0.006097771693021059, 0.034571822732686996, 0.02834142930805683, 0.01489602867513895, 0.011280916631221771, 0.005926548037678003, 0.006407484412193298, 0.07840634882450104, 0.3984966576099396, 0.001380393048748374, 0.011279840022325516, 0.003508141962811351, 0.0010208252351731062, 0.001003950834274292, 0.0005153188249096274, 0.003190564224496484, 0.3936760425567627], [0.008414425887167454, 0.020426031202077866, 0.029306910932064056, 0.008140305057168007, 0.003373718587681651, 0.00570417195558548, 0.0032661971636116505, 0.042032670229673386, 0.42415526509284973, 0.0014886913122609258, 0.01338985562324524, 0.0024499224964529276, 0.001518317381851375, 0.005368678364902735, 0.005018692463636398, 0.006877680774778128, 0.41906851530075073], [0.0040637715719640255, 0.023357607424259186, 0.011164208874106407, 0.0061511932872235775, 0.005613989662379026, 0.0051599349826574326, 0.004296521190553904, 0.05728956684470177, 0.43970683217048645, 0.0021394025534391403, 0.0022374673280864954, 0.0016334035899490118, 0.0006734568160027266, 0.0006394304218702018, 0.0002148713101632893, 0.0014955428196117282, 0.43416279554367065], [0.00246781250461936, 0.005526396445930004, 0.003295141039416194, 0.001365789445117116, 0.004704872611910105, 0.002192872576415539, 0.002819143468514085, 0.034813810139894485, 0.47196128964424133, 0.0003973311686422676, 0.0007331280503422022, 0.0010172321926802397, 0.0003610823769122362, 0.00042566232150420547, 0.00015019436250440776, 0.000298165250569582, 0.46747010946273804], [0.012753617018461227, 0.026578955352306366, 0.03122747875750065, 0.007042259443551302, 0.019207507371902466, 0.015565520152449608, 0.019687412306666374, 0.08892396092414856, 0.3711673617362976, 0.004803582560271025, 0.0061154658906161785, 0.007158601190894842, 0.002716852119192481, 0.006478235591202974, 0.005087439436465502, 0.00709317484870553, 0.36839255690574646], [0.006345175672322512, 0.02158680185675621, 0.021593932062387466, 0.0076037319377064705, 0.008861963637173176, 0.004473880399018526, 0.01908325031399727, 0.09513793140649796, 0.4066341817378998, 0.0011972530046477914, 0.0007016954477876425, 0.0008068008464761078, 0.0003328810853417963, 0.00038028485141694546, 0.0003336805966682732, 0.002802535891532898, 0.4021241068840027], [0.009660806506872177, 0.10523632913827896, 0.054255932569503784, 0.10370367020368576, 0.09922593832015991, 0.019991405308246613, 0.03873194381594658, 0.16783082485198975, 0.1915450245141983, 0.011329763568937778, 0.0027545730117708445, 0.0011474986094981432, 0.0011327818501740694, 0.001007491140626371, 0.0003843840677291155, 0.0028942839708179235, 0.189167320728302], [0.015019276179373264, 0.010747543536126614, 0.014063682407140732, 0.004853293765336275, 0.004904619883745909, 0.007413987535983324, 0.002837849548086524, 0.0210548248142004, 0.42789772152900696, 0.011836061254143715, 0.015538095496594906, 0.009615554474294186, 0.005789626389741898, 0.007745843380689621, 0.005369522608816624, 0.008734038099646568, 0.4265786111354828], [0.006379035767167807, 0.0045412154868245125, 0.0032286308705806732, 0.0015580117469653487, 0.0008801146177574992, 0.003727972973138094, 0.0008744430961087346, 0.017086487263441086, 0.43658846616744995, 0.004015125334262848, 0.01637202501296997, 0.01082569919526577, 0.005043269135057926, 0.018027866259217262, 0.01666681468486786, 0.015894470736384392, 0.4382903277873993], [0.005039175506681204, 0.007503471802920103, 0.0037879012525081635, 0.0014426256529986858, 0.0004411647969391197, 0.0009918047580868006, 0.0003513083793222904, 0.01078211609274149, 0.42976224422454834, 0.003343496471643448, 0.03389886021614075, 0.028243690729141235, 0.0034834370017051697, 0.011447899974882603, 0.007948198355734348, 0.02151968702673912, 0.43001294136047363], [0.004690959118306637, 0.004124640021473169, 0.0030791957397013903, 0.0008392746676690876, 0.0004405039653647691, 0.0031554396264255047, 0.0007373033440671861, 0.017180629074573517, 0.4306209683418274, 0.0011428790166974068, 0.017727700993418694, 0.01323712058365345, 0.004286666866391897, 0.01373759564012289, 0.023414989933371544, 0.027665292844176292, 0.43391892313957214], [0.00862114317715168, 0.01135148387402296, 0.012981223873794079, 0.000691631983499974, 0.0003235400072298944, 0.0020609041675925255, 0.000785970943979919, 0.018089689314365387, 0.4154861271381378, 0.002915895078331232, 0.0375804640352726, 0.01098239328712225, 0.004822440445423126, 0.01784657873213291, 0.024782152846455574, 0.011576290242373943, 0.4191019833087921], [0.025518914684653282, 0.006133803632110357, 0.009012063033878803, 0.0025384153705090284, 0.0013000465696677566, 0.012946446426212788, 0.005756751634180546, 0.04848466068506241, 0.2682812213897705, 0.04943094402551651, 0.018901454284787178, 0.024830572307109833, 0.01123689766973257, 0.0640338659286499, 0.09055264294147491, 0.09320801496505737, 0.26783332228660583], [0.014500671997666359, 0.005180492997169495, 0.005493436940014362, 0.0009324002894572914, 0.0002000768727157265, 0.0024098618887364864, 0.0017877763602882624, 0.0339442640542984, 0.33759304881095886, 0.02328888699412346, 0.013789908029139042, 0.01204779651015997, 0.007757064886391163, 0.03551098331809044, 0.0496433861553669, 0.11847839504480362, 0.33744144439697266], [0.01168446708470583, 0.009222637861967087, 0.002364739775657654, 0.004237509332597256, 0.0008104023872874677, 0.0016773530514910817, 0.002601410960778594, 0.031581830233335495, 0.34230467677116394, 0.061746738851070404, 0.025163564831018448, 0.013345015235245228, 0.0035660546272993088, 0.029116347432136536, 0.023395469412207603, 0.09069269895553589, 0.34648916125297546], [0.014953400939702988, 0.010602684691548347, 0.013698993250727654, 0.004751116503030062, 0.004801769275218248, 0.007260110694915056, 0.002760824980214238, 0.02062361314892769, 0.4283122718334198, 0.011955776251852512, 0.015642190352082253, 0.009747856296598911, 0.005809553898870945, 0.007841427810490131, 0.005396663676947355, 0.00879810843616724, 0.427043616771698]]], [[[0.009784198366105556, 0.06344977021217346, 0.06350541859865189, 0.10532840341329575, 0.019043484702706337, 0.060828521847724915, 0.04589780792593956, 0.10801858454942703, 0.24758686125278473, 0.007371070794761181, 0.0020562754943966866, 0.003068702993914485, 0.001770065282471478, 0.0032568874303251505, 0.004766311030834913, 0.006450070068240166, 0.2478174865245819], [0.012747925706207752, 0.037697337567806244, 0.035048969089984894, 0.050928063690662384, 0.032982971519231796, 0.06089800223708153, 0.06137798726558685, 0.06971123814582825, 0.3180164098739624, 0.0015730548184365034, 0.0006176151218824089, 0.0009819604456424713, 0.0004689690831582993, 0.0003200812789145857, 0.0003572754212655127, 0.0007954053580760956, 0.31547674536705017], [0.020289044827222824, 0.03581579029560089, 0.03444864973425865, 0.020815229043364525, 0.01792898029088974, 0.029115784913301468, 0.020787101238965988, 0.040959130972623825, 0.38620296120643616, 0.0024387615267187357, 0.000964595761615783, 0.0016872045816853642, 0.0008631363161839545, 0.0010445145890116692, 0.0018621800700202584, 0.001427622977644205, 0.3833491802215576], [0.006655355915427208, 0.1915997862815857, 0.03431512787938118, 0.01052369736135006, 0.02027483657002449, 0.015129264444112778, 0.035484883934259415, 0.04475521668791771, 0.3216469883918762, 0.0025473006535321474, 0.0003266029816586524, 0.00013894002768211067, 0.00029300845926627517, 8.91031013452448e-05, 7.486743561457843e-05, 0.00041374441934749484, 0.3157312572002411], [0.004118661396205425, 0.08324164897203445, 0.04330205172300339, 0.06619128584861755, 0.031995534896850586, 0.014395874924957752, 0.03820759430527687, 0.024274663999676704, 0.34801867604255676, 0.0015811186749488115, 0.00024411195772700012, 0.0001614234206499532, 0.00010920059139607474, 0.00013633447815664113, 0.00019805652846116573, 0.0014219180447980762, 0.3424018323421478], [0.007169913500547409, 0.14041462540626526, 0.044219449162483215, 0.1257401555776596, 0.11478133499622345, 0.02485238015651703, 0.04211713746190071, 0.03533770889043808, 0.22608068585395813, 0.005142113659530878, 0.0007632905035279691, 0.000770245329476893, 0.0016080166678875685, 0.0005241295439191163, 0.0006482986500486732, 0.005554784554988146, 0.22427575290203094], [0.005102440714836121, 0.08522544801235199, 0.014583348296582699, 0.21162785589694977, 0.12515853345394135, 0.051443375647068024, 0.042615070939064026, 0.020999761298298836, 0.22143219411373138, 0.0012102406471967697, 0.00025780353462323546, 0.00016080736531876028, 0.00023815226450096816, 4.795687345904298e-05, 7.890781853348017e-05, 0.0008461686666123569, 0.218971848487854], [0.006187396124005318, 0.0747554674744606, 0.06622717529535294, 0.07507996261119843, 0.03612075373530388, 0.23256315290927887, 0.09893076121807098, 0.01960683986544609, 0.19426439702510834, 0.001043264172039926, 0.0001706254406599328, 0.0006140281329862773, 0.0008297772728838027, 0.00045525419409386814, 0.0004455914895515889, 0.0003260369994677603, 0.19237954914569855], [0.024467743933200836, 0.018417391926050186, 0.022621972486376762, 0.009935016743838787, 0.006936731282621622, 0.015614781528711319, 0.005365448538213968, 0.0148396585136652, 0.41056859493255615, 0.013656741008162498, 0.007858437485992908, 0.009717412292957306, 0.007288186810910702, 0.0059538655914366245, 0.005341776646673679, 0.01094656903296709, 0.41046974062919617], [0.03759179264307022, 0.005974110681563616, 0.0015596693847328424, 0.01028980128467083, 0.002490728860720992, 0.006004712078720331, 0.000806200027000159, 0.012712272815406322, 0.3938857913017273, 0.06413222849369049, 0.022870821878314018, 0.023894766345620155, 0.004525987897068262, 0.003469267161563039, 0.005853339098393917, 0.011140190064907074, 0.3927983045578003], [0.022916166111826897, 0.007795052137225866, 0.002382806269451976, 0.002217048779129982, 0.00043463564361445606, 0.0021345033310353756, 0.0009567904635332525, 0.017230048775672913, 0.2991914451122284, 0.16911499202251434, 0.026645198464393616, 0.02374105341732502, 0.0214175283908844, 0.024717751890420914, 0.04131259769201279, 0.03836309164762497, 0.29942935705184937], [0.0071457442827522755, 0.002279195236042142, 0.0003260670346207917, 0.0004371095565147698, 0.0001423008943675086, 0.00013660390686709434, 0.00023541183327324688, 0.004492998588830233, 0.1667223870754242, 0.22635170817375183, 0.06139340251684189, 0.03372678533196449, 0.03635207191109657, 0.08549913763999939, 0.03999122604727745, 0.16856907308101654, 0.16619867086410522], [0.011841129511594772, 0.005342570599168539, 0.0016491134883835912, 0.002306309062987566, 0.00027519321884028614, 0.0018119483720511198, 0.0004261615686118603, 0.006615588907152414, 0.15364013612270355, 0.09385194629430771, 0.22153621912002563, 0.06602104008197784, 0.035056423395872116, 0.061841849237680435, 0.13494563102722168, 0.04923003539443016, 0.1536087840795517], [0.007978757843375206, 0.0026990456972271204, 0.001542517333291471, 0.0008321352070197463, 0.00015852856449782848, 0.0003729863674379885, 0.00016807820065878332, 0.0006434714305214584, 0.14921028912067413, 0.10562007874250412, 0.08513916283845901, 0.15670670568943024, 0.2225346863269806, 0.04266449064016342, 0.04016302153468132, 0.03378509730100632, 0.14978085458278656], [0.008475298061966896, 0.0015436670510098338, 0.0007279440178535879, 0.0005443510599434376, 8.443139086011797e-05, 0.00047076420742087066, 9.88888496067375e-05, 0.0005164956673979759, 0.13775314390659332, 0.07110677659511566, 0.08375905454158783, 0.1144537702202797, 0.2723900377750397, 0.10427999496459961, 0.040895577520132065, 0.024877039715647697, 0.138022780418396], [0.023352667689323425, 0.007963527925312519, 0.0033872213680297136, 0.0018478332785889506, 0.0005030385800637305, 0.0026986205484718084, 0.0011642086319625378, 0.006802186369895935, 0.2550806701183319, 0.20330046117305756, 0.0661063939332962, 0.041094306856393814, 0.05341745540499687, 0.024447940289974213, 0.022258510813117027, 0.03148074075579643, 0.25509417057037354], [0.02454359456896782, 0.01837095245718956, 0.02251279354095459, 0.009905047714710236, 0.006903310772031546, 0.015575935132801533, 0.0053365156054496765, 0.01471058651804924, 0.41022977232933044, 0.01393903512507677, 0.007943134754896164, 0.009865550324320793, 0.007454370614141226, 0.006049365736544132, 0.005452387034893036, 0.011086850427091122, 0.4101208448410034]], [[0.023426394909620285, 0.09086892008781433, 0.05412374064326286, 0.04057744890451431, 0.0296955406665802, 0.3290298581123352, 0.06603242456912994, 0.025668540969491005, 0.1050044372677803, 0.07524964958429337, 0.024704841896891594, 0.006263480521738529, 0.0042268699035048485, 0.0026561543345451355, 0.006586187519133091, 0.011579404585063457, 0.10430606454610825], [0.024621548131108284, 0.038398053497076035, 0.1436786949634552, 0.003269249340519309, 0.0029172715730965137, 0.017160942777991295, 0.002876817248761654, 0.006300558336079121, 0.29066383838653564, 0.012737920507788658, 0.12349595874547958, 0.01720115914940834, 0.003269166685640812, 0.005530004855245352, 0.007470955140888691, 0.013863109983503819, 0.28654488921165466], [0.005516650155186653, 0.0022310451604425907, 0.6447200775146484, 0.0015197627944871783, 0.00022418788284994662, 0.0013377133291214705, 0.00021752827160526067, 0.0014123632572591305, 0.11988424509763718, 0.0025745059829205275, 0.049204569309949875, 0.0015075196279212832, 0.0005030538886785507, 0.007739703170955181, 0.016909180209040642, 0.025284694507718086, 0.11921317875385284], [0.013424402102828026, 0.003142555011436343, 0.08069439977407455, 0.049036744982004166, 0.018610630184412003, 0.03919357806444168, 0.011662953533232212, 0.0015985965728759766, 0.2843291461467743, 0.013888023793697357, 0.012861283496022224, 0.01952863298356533, 0.0065907444804906845, 0.026999998837709427, 0.025237450376152992, 0.11269043385982513, 0.28051042556762695], [0.003420221619307995, 0.00025893712881952524, 0.007037052419036627, 0.012030331417918205, 0.21710552275180817, 0.011932444758713245, 0.0025048949755728245, 0.00029943991103209555, 0.33892133831977844, 0.0020031831227242947, 0.0014148547779768705, 0.01591162383556366, 0.01427283976227045, 0.01989276334643364, 0.006487254519015551, 0.009423681534826756, 0.3370836675167084], [0.02035590261220932, 0.0015163960633799434, 0.023009400814771652, 0.01885882019996643, 0.022646859288215637, 0.1507120132446289, 0.005922086536884308, 0.003945509437471628, 0.2660212516784668, 0.06442612409591675, 0.008216682821512222, 0.016198374330997467, 0.019237861037254333, 0.019144710153341293, 0.01865171454846859, 0.07782933861017227, 0.2633069157600403], [0.015694277361035347, 0.002930335234850645, 0.04194282367825508, 0.012919040396809578, 0.00666051497682929, 0.040622636675834656, 0.0610898919403553, 0.0027305837720632553, 0.35911235213279724, 0.024171948432922363, 0.00694342190399766, 0.013802092522382736, 0.006761043332517147, 0.014705506153404713, 0.015210062265396118, 0.021005921065807343, 0.35369759798049927], [0.023699460551142693, 0.005310104228556156, 0.3213992416858673, 0.01682310737669468, 0.022914046421647072, 0.0522843562066555, 0.0055830152705311775, 0.02809286303818226, 0.23498646914958954, 0.01337648369371891, 0.0028448880184441805, 0.0040090568363666534, 0.0026992689818143845, 0.0044503165408968925, 0.006275787949562073, 0.023720959201455116, 0.23153062164783478], [0.008026348426938057, 0.004190546460449696, 0.015968410298228264, 0.002014709636569023, 0.003019441617652774, 0.011358496733009815, 0.002573121339082718, 0.007406445685774088, 0.4667324125766754, 0.0031410264782607555, 0.002090931637212634, 0.001405903953127563, 0.001393108512274921, 0.0014646362978965044, 0.00241012847982347, 0.0036539460998028517, 0.46315041184425354], [0.06173773109912872, 0.005219586193561554, 0.010637922212481499, 0.0069235581904649734, 0.006184763740748167, 0.05883077159523964, 0.011992666870355606, 0.008501331321895123, 0.28056904673576355, 0.254031777381897, 0.0026666794437915087, 0.005549427587538958, 0.0019293546210974455, 0.0005735139711759984, 0.0008336604223586619, 0.004465118981897831, 0.27935317158699036], [0.01389636006206274, 0.2612924575805664, 0.1891685575246811, 0.013017017394304276, 0.00388146610930562, 0.01795179955661297, 0.007501694839447737, 0.006427280139178038, 0.13973206281661987, 0.006873636040836573, 0.18422868847846985, 0.002623241161927581, 0.0009048343636095524, 0.002248573349788785, 0.004248838406056166, 0.006088587921112776, 0.13991506397724152], [0.008264562115073204, 0.0020955554209649563, 0.004778152797371149, 0.005036917049437761, 0.0038053111638873816, 0.01529700681567192, 0.005853740964084864, 0.002864048583433032, 0.39063626527786255, 0.0020188239868730307, 0.001178789883852005, 0.13836894929409027, 0.015611344948410988, 0.004985304549336433, 0.0058033945970237255, 0.007987669669091702, 0.3854142129421234], [0.008076338097453117, 0.003289994318038225, 0.012813783250749111, 0.0028527146205306053, 0.0031428243964910507, 0.040546756237745285, 0.0036880800034850836, 0.0013141152448952198, 0.39437147974967957, 0.0022148294374346733, 0.0009569390676915646, 0.006357843987643719, 0.05777463689446449, 0.03549087792634964, 0.031814076006412506, 0.0022707595489919186, 0.3930239677429199], [0.0015492504462599754, 0.0022451216354966164, 0.027323711663484573, 0.0018424221780151129, 0.0004783851618412882, 0.0038252221420407295, 0.0009323082631453872, 0.0019342771265655756, 0.38407397270202637, 0.0003855380055028945, 0.00018764693231787533, 0.0006471810047514737, 0.0022911105770617723, 0.11484184861183167, 0.07481786608695984, 0.0015381876146420836, 0.38108599185943604], [0.00311397947371006, 0.003953402396291494, 0.10373593121767044, 0.002683662809431553, 0.00041021895594894886, 0.011511394754052162, 0.0017577899852767587, 0.0016149088041856885, 0.3797663152217865, 0.0005000595701858401, 0.0001689191412879154, 0.00025194440968334675, 0.0020486365538090467, 0.04753920063376427, 0.06122308969497681, 0.00229973578825593, 0.37742090225219727], [0.008566826581954956, 0.004820035304874182, 0.10270403325557709, 0.027614807710051537, 0.010357152670621872, 0.04785694554448128, 0.007361290510743856, 0.004244815558195114, 0.3579777777194977, 0.007107240613549948, 0.001643623225390911, 0.002469724975526333, 0.002502693561837077, 0.008207248523831367, 0.01291501335799694, 0.03789015859365463, 0.3557606637477875], [0.00800420343875885, 0.004144016187638044, 0.015761403366923332, 0.001992602366954088, 0.002974899485707283, 0.011284622363746166, 0.0025480231270194054, 0.007330615539103746, 0.46702513098716736, 0.0031201334204524755, 0.0020701319444924593, 0.0013982948148623109, 0.001391572062857449, 0.0014604085590690374, 0.0024074267130345106, 0.003639474743977189, 0.46344706416130066]], [[0.0007928471313789487, 0.0010190174216404557, 0.0001585514983162284, 5.1434584747767076e-05, 7.742998423054814e-05, 5.713174687116407e-05, 1.3919206139689777e-05, 0.00010720450518419966, 0.008091758005321026, 0.4729365408420563, 0.48991313576698303, 0.001260687131434679, 0.0012585459044203162, 0.002653754549100995, 0.0013919114135205746, 0.012034980580210686, 0.00818114634603262], [0.0010029723634943366, 0.04209662228822708, 0.7135932445526123, 0.002554489765316248, 0.004366864915937185, 0.007230494171380997, 0.0012529529631137848, 0.0035684374161064625, 0.11116693913936615, 0.0003105650539509952, 0.0009245284018106759, 8.303656068164855e-05, 4.5787444832967594e-05, 0.0002466466976329684, 0.00010257070243824273, 0.00023893841716926545, 0.11121497303247452], [0.0036516403779387474, 0.0472995862364769, 0.10641839355230331, 0.004822524264454842, 0.0033394680358469486, 0.005479796323925257, 0.0005949529586359859, 0.0038098131772130728, 0.40914592146873474, 0.0005327476537786424, 0.0022035958245396614, 9.65610597631894e-05, 2.3932583644636907e-05, 0.00047764237388037145, 0.00025047536473721266, 0.0006909643416292965, 0.4111621379852295], [0.00224355049431324, 0.20634308457374573, 0.15376883745193481, 0.02267998643219471, 0.05664416030049324, 0.17337311804294586, 0.052645668387413025, 0.016855567693710327, 0.1496681421995163, 0.006643256638199091, 0.004730977118015289, 0.00032622195431031287, 0.0007639311370439827, 0.0015364665305241942, 0.0013437119778245687, 0.0009342811536043882, 0.14949901401996613], [0.00036538299173116684, 0.005143022630363703, 0.002708811778575182, 0.015038595534861088, 0.010681343264877796, 0.2885156273841858, 0.08330053091049194, 0.0021479318384081125, 0.2943871021270752, 0.00024521484738215804, 0.00019054162839893252, 0.0002420800010440871, 0.0010319185676053166, 0.00015022132720332593, 0.0004866015224251896, 0.0011610363144427538, 0.2942039668560028], [0.0019862966146320105, 0.008307765237987041, 0.007513422053307295, 0.005484171211719513, 0.0022039590403437614, 0.010158870369195938, 0.020145241171121597, 0.008998398669064045, 0.46509525179862976, 0.0007951314910314977, 0.0014751587295904756, 4.8424044507555664e-05, 0.00012909101496916264, 0.00014812868903391063, 0.0004014586447738111, 0.0013958034105598927, 0.4657135307788849], [0.0011545439483597875, 0.011793678626418114, 0.03125939145684242, 0.019059352576732635, 0.0045966277830302715, 0.5868287086486816, 0.015473531559109688, 0.009756382554769516, 0.15759997069835663, 0.0004776150162797421, 0.0008431479800492525, 0.0001769419468473643, 0.0003066942736040801, 0.00048201929894275963, 0.0004719459975603968, 0.0007038738112896681, 0.15901556611061096], [0.007597621995955706, 0.02762264385819435, 0.0015580342151224613, 0.003504459047690034, 0.0018398012034595013, 0.0010083654196932912, 0.0016443085623905063, 0.022401709109544754, 0.4108135998249054, 0.05752861872315407, 0.045575715601444244, 0.002179911360144615, 0.0007118297507986426, 0.0003898569557350129, 0.0004101578379049897, 0.010229206643998623, 0.40498408675193787], [0.015399283729493618, 0.018684647977352142, 0.014629903249442577, 0.00660094665363431, 0.004707104992121458, 0.0048784250393509865, 0.0035417857579886913, 0.009543202817440033, 0.4163462817668915, 0.031936950981616974, 0.026409320533275604, 0.004559976980090141, 0.004625579807907343, 0.004424510058015585, 0.004790178965777159, 0.012767665088176727, 0.4161543548107147], [0.0012899106368422508, 0.0014286903897300363, 0.00028151809237897396, 0.0002843741967808455, 2.6972358682542108e-05, 0.00013084612146485597, 4.491140498430468e-05, 0.0002051533228950575, 0.27967092394828796, 0.08779480308294296, 0.17805759608745575, 0.04674695059657097, 0.020709386095404625, 0.01918979547917843, 0.018726643174886703, 0.06531854718923569, 0.28009292483329773], [0.0007588337175548077, 0.0010279363486915827, 0.0025828767102211714, 8.240942406700924e-05, 1.8693173842621036e-05, 9.753202175488696e-05, 6.6001052800857e-06, 0.00011051636829506606, 0.4346608519554138, 0.005069286562502384, 0.07423696666955948, 0.015227903611958027, 0.003092620987445116, 0.010285470634698868, 0.005573331378400326, 0.0116641940549016, 0.4355039894580841], [0.0009207585244439542, 0.00025215683854185045, 0.00014215118426363915, 7.439858018187806e-05, 2.3911999960546382e-05, 0.0001456388272345066, 8.773212175583467e-05, 4.157734292675741e-05, 0.041626106947660446, 0.004591154400259256, 0.013006534427404404, 0.03127625957131386, 0.7725826501846313, 0.02847745455801487, 0.04133325815200806, 0.023614436388015747, 0.04180379584431648], [0.0006537518347613513, 0.00027108658105134964, 0.00011661239841487259, 0.00017735996516421437, 1.6529331333003938e-05, 0.0005820655496791005, 2.5977740733651444e-05, 8.661939500598237e-05, 0.07484365999698639, 0.007562749087810516, 0.005310478154569864, 0.00762539729475975, 0.057572752237319946, 0.37981534004211426, 0.3452264070510864, 0.04433475434780121, 0.07577834278345108], [0.0011331927962601185, 0.0008856852073222399, 0.0003775305231101811, 0.00017986708553507924, 2.373816641920712e-05, 0.000122232420835644, 0.00010523421224206686, 0.0001699059794191271, 0.34300947189331055, 0.004500371403992176, 0.025135058909654617, 0.01057968009263277, 0.02187531068921089, 0.015773041173815727, 0.11920908838510513, 0.11226807534694672, 0.34465259313583374], [0.001784972962923348, 0.0010175504721701145, 0.0019429970998317003, 0.0005001031677238643, 6.0668273363262415e-05, 0.0004930826253257692, 9.65116560109891e-05, 0.00031560324714519083, 0.37393417954444885, 0.005092592444270849, 0.030623409897089005, 0.011288324370980263, 0.010929844342172146, 0.03941577672958374, 0.068989597260952, 0.0736636146903038, 0.37985122203826904], [0.0009639525087550282, 0.006386091932654381, 0.0012288535945117474, 0.0006315894424915314, 0.00011385047400835901, 0.0006355810328386724, 0.0001658378168940544, 0.0002279883046867326, 0.39411845803260803, 0.0013962500961497426, 0.11110951751470566, 0.011784755624830723, 0.0014553541550412774, 0.008263815194368362, 0.014601712115108967, 0.04610944539308548, 0.4008070230484009], [0.015386379323899746, 0.01851164735853672, 0.014620572328567505, 0.006580662913620472, 0.00470785703510046, 0.004902621731162071, 0.003557579591870308, 0.009431354701519012, 0.4165700674057007, 0.03163239359855652, 0.026281578466296196, 0.004576405510306358, 0.00468110479414463, 0.004471130669116974, 0.00486260000616312, 0.012844269163906574, 0.4163818061351776]], [[0.008268628269433975, 0.03745492175221443, 0.09149684011936188, 0.02669140137732029, 0.02633247897028923, 0.011395346373319626, 0.007168611511588097, 0.03556559234857559, 0.26884135603904724, 0.025360368192195892, 0.027727726846933365, 0.03671010956168175, 0.014761500991880894, 0.03874959051609039, 0.0320102758705616, 0.04242224991321564, 0.2690429985523224], [0.016845375299453735, 0.0218306016176939, 0.036527182906866074, 0.011158578097820282, 0.009073068387806416, 0.014578185975551605, 0.0058029755018651485, 0.030473915860056877, 0.35241812467575073, 0.0281349066644907, 0.021122025325894356, 0.020940164104104042, 0.01173543743789196, 0.007091095671057701, 0.01605815440416336, 0.04283600673079491, 0.35337433218955994], [0.02414902113378048, 0.008548571728169918, 0.0028651379980146885, 0.003636774141341448, 0.0033346032723784447, 0.0073812128975987434, 0.005321365315467119, 0.012973500415682793, 0.34287354350090027, 0.00543315289542079, 0.004977128002792597, 0.0048849876038730145, 0.025981323793530464, 0.05213598906993866, 0.12927523255348206, 0.02463546395301819, 0.3415929079055786], [0.03723059967160225, 0.02151254005730152, 0.01725471392273903, 0.005822973325848579, 0.006301756948232651, 0.024294724687933922, 0.007894588634371758, 0.04295893386006355, 0.3110547661781311, 0.107973113656044, 0.004542628303170204, 0.022724678739905357, 0.0069719417952001095, 0.008445045910775661, 0.017451029270887375, 0.04614988714456558, 0.31141600012779236], [0.031034693121910095, 0.010611320845782757, 0.008594815619289875, 0.002274045255035162, 0.0001026106983772479, 0.004529307130724192, 0.0015667160041630268, 0.07144632935523987, 0.32413357496261597, 0.11960802227258682, 0.0012866504257544875, 0.06574541330337524, 0.0027275211177766323, 0.0015447484329342842, 0.005019684322178364, 0.024004632607102394, 0.32576993107795715], [0.01629139482975006, 0.006612601689994335, 0.013118643313646317, 0.005902975331991911, 0.0012208023108541965, 0.0009645412210375071, 0.0028060423210263252, 0.020595334470272064, 0.30390551686286926, 0.06789546459913254, 0.0035564410500228405, 0.12111339718103409, 0.014632150530815125, 0.009795651771128178, 0.03575066849589348, 0.0714687928557396, 0.3043694496154785], [0.01867850311100483, 0.014446166343986988, 0.02077842876315117, 0.008636676706373692, 0.002688441891223192, 0.012393290176987648, 0.0021478869020938873, 0.03494225814938545, 0.3763873875141144, 0.032709840685129166, 0.005623155739158392, 0.039324406534433365, 0.006350561510771513, 0.0029939881060272455, 0.006746789440512657, 0.03811773657798767, 0.37703457474708557], [0.02582516334950924, 0.01827569305896759, 0.010876113548874855, 0.012015820480883121, 0.014953626319766045, 0.013011423870921135, 0.007065214682370424, 0.054383695125579834, 0.3805626630783081, 0.02532600425183773, 0.0035393217112869024, 0.007039695978164673, 0.003352570114657283, 0.0032674113754183054, 0.005297438241541386, 0.03360140323638916, 0.38160696625709534], [0.05303102731704712, 0.03728470951318741, 0.048727720975875854, 0.025673650205135345, 0.021410545334219933, 0.030488714575767517, 0.020884282886981964, 0.06786485761404037, 0.23328326642513275, 0.03891906514763832, 0.039990827441215515, 0.018312886357307434, 0.020030900835990906, 0.020705249160528183, 0.033295806497335434, 0.05638739839196205, 0.23370924592018127], [0.0017501875991001725, 0.008840775117278099, 0.028043758124113083, 0.031723182648420334, 0.009798775427043438, 0.013512959703803062, 0.003650103695690632, 0.010985199362039566, 0.41752153635025024, 0.0004744687466882169, 0.0041789342649281025, 0.010179707780480385, 0.009091350249946117, 0.0059426273219287395, 0.01243901439011097, 0.01269543170928955, 0.419172078371048], [0.00284730177372694, 0.013878148049116135, 0.17281247675418854, 0.00869311485439539, 0.00299784354865551, 0.010952113196253777, 0.0032772806007415056, 0.006277928594499826, 0.33355259895324707, 0.0016168219735845923, 0.0172574482858181, 0.014700569212436676, 0.010268103331327438, 0.0166130643337965, 0.03358970955014229, 0.01717262528836727, 0.33349278569221497], [0.014402853325009346, 0.0066318204626441, 0.06104583293199539, 0.007202048320323229, 0.012211530469357967, 0.07296831160783768, 0.00637474050745368, 0.006198493298143148, 0.3520578444004059, 0.008541238494217396, 0.006529742851853371, 0.0017727972008287907, 0.009005926549434662, 0.01664128340780735, 0.03240308538079262, 0.03185691311955452, 0.35415562987327576], [0.017481131479144096, 0.011335554532706738, 0.20226339995861053, 0.005008322186768055, 0.004057300742715597, 0.04900494962930679, 0.007772776763886213, 0.0037359201814979315, 0.2660984694957733, 0.011456032283604145, 0.030969975516200066, 0.023719724267721176, 0.015175752341747284, 0.02228698693215847, 0.040218982845544815, 0.021382706239819527, 0.2680320143699646], [0.013568823225796223, 0.006216733250766993, 0.11433801800012589, 0.0025357038248330355, 0.0010122503153979778, 0.013036418706178665, 0.0015781839611008763, 0.003966239280998707, 0.35356152057647705, 0.006130673922598362, 0.019616687670350075, 0.044375985860824585, 0.028211383149027824, 0.006961803417652845, 0.014315254986286163, 0.015410322695970535, 0.35516390204429626], [0.01631595566868782, 0.0045090303756296635, 0.19948728382587433, 0.005116892978549004, 0.0019825510680675507, 0.0364498496055603, 0.002869738033041358, 0.0038624706212431192, 0.2989121377468109, 0.006110471207648516, 0.017513882368803024, 0.0305311381816864, 0.028081119060516357, 0.010026843287050724, 0.008271484635770321, 0.028830019757151604, 0.30112913250923157], [0.014537427574396133, 0.035470303148031235, 0.06111142784357071, 0.022311337292194366, 0.010467912070453167, 0.056074269115924835, 0.011992115527391434, 0.053276047110557556, 0.31310322880744934, 0.007786608301103115, 0.009195945225656033, 0.024453556165099144, 0.011921915225684643, 0.017283309251070023, 0.023421403020620346, 0.013317687436938286, 0.31427547335624695], [0.05304360017180443, 0.03713420405983925, 0.048477653414011, 0.02553393691778183, 0.02128525823354721, 0.030364230275154114, 0.020786810666322708, 0.06785456091165543, 0.23367692530155182, 0.038843583315610886, 0.039974577724933624, 0.018305344507098198, 0.020090973004698753, 0.020757785066962242, 0.03350004181265831, 0.05627121776342392, 0.2340993881225586]], [[0.015332890674471855, 0.08737398684024811, 0.13119736313819885, 0.11513181775808334, 0.08929683268070221, 0.14574450254440308, 0.015729151666164398, 0.06846041232347488, 0.1487916111946106, 0.003590339794754982, 0.002598183462396264, 0.00648346496745944, 0.005243256688117981, 0.007748070172965527, 0.004428984597325325, 0.004524675197899342, 0.1483244001865387], [0.00045611002133227885, 0.0272374264895916, 0.7365787029266357, 0.011382960714399815, 0.008532898500561714, 0.007291649002581835, 0.0002838654909282923, 0.0006219688220880926, 0.10372467339038849, 4.369181260699406e-05, 0.00014400701911654323, 9.360193507745862e-05, 0.001165196648798883, 0.0002982378355227411, 0.00020724395290017128, 0.0004113147151656449, 0.10152650624513626], [0.0010970134753733873, 0.008627325296401978, 0.0011478657834231853, 0.06937770545482635, 0.0007389226811937988, 0.001014365116134286, 0.00018403785361442715, 0.0004872368590440601, 0.46219727396965027, 2.8902964913868345e-05, 1.1730639016604982e-05, 2.594712350401096e-05, 8.167533087544143e-05, 0.0005488924216479063, 0.0003741225809790194, 0.0003166523529216647, 0.4537402093410492], [0.0013795864069834352, 0.004270108882337809, 0.004544945899397135, 0.009267534129321575, 0.508529007434845, 0.10408904403448105, 0.0029551649931818247, 0.005478258710354567, 0.1773230880498886, 0.00015470014477614313, 0.00013584447151515633, 0.00015626999083906412, 0.00012891901133116335, 0.0003881491138599813, 4.326139242039062e-05, 0.0004734944086521864, 0.18068256974220276], [0.00012416482786647975, 0.0003148867399431765, 0.010896027088165283, 0.0013689488405361772, 0.03405134752392769, 0.8216419816017151, 0.0025357746053487062, 0.0009020163561217487, 0.06360246986150742, 0.00012422488362062722, 1.7076361018553143e-06, 1.3382806173467543e-05, 0.00031805282924324274, 7.130322774173692e-05, 3.7954763683956116e-05, 0.0001722505403449759, 0.06382343173027039], [0.0034128748811781406, 0.004842598456889391, 0.006920861080288887, 0.010850788094103336, 0.008168933913111687, 0.06358261406421661, 0.2975803017616272, 0.29324543476104736, 0.15307745337486267, 0.0023303343914449215, 0.00014334356819745153, 4.2055185076605994e-06, 4.670958514907397e-05, 3.832589936791919e-05, 0.00026926500140689313, 0.0022524523083120584, 0.15323345363140106], [0.0007266945322044194, 0.0031308603938668966, 0.00010069265408674255, 0.0021271025761961937, 0.0002731928543653339, 0.0007131104357540607, 9.368578321300447e-05, 0.44086721539497375, 0.274982750415802, 0.00010711299546528608, 9.076368769456167e-06, 7.243413051583047e-07, 1.4265960999182425e-06, 7.108249064913252e-06, 2.8156011467217468e-05, 0.0014256952563300729, 0.27540552616119385], [0.00011903046106453985, 0.013572759926319122, 0.0006089909002184868, 0.00011892664042534307, 9.199198393616825e-05, 0.00032549016759730875, 0.00010943587403744459, 0.009040736593306065, 0.47148117423057556, 0.05361013859510422, 8.289861580124125e-05, 8.080041880020872e-06, 1.4870154245727463e-06, 1.324291474702477e-06, 4.2500773815845605e-06, 1.946221527759917e-05, 0.4508037865161896], [0.005189702846109867, 0.012265386991202831, 0.006382113788276911, 0.004765898920595646, 0.001068382989615202, 0.0024016504175961018, 0.0008469437016174197, 0.00228643836453557, 0.4743560254573822, 0.006803077179938555, 0.0033591068349778652, 0.002013253979384899, 0.0036491057835519314, 0.004276950843632221, 0.0035748400259763002, 0.003063627751544118, 0.4636973738670349], [0.0003162229841109365, 0.0005452186451293528, 0.00018235394963994622, 2.0276085706427693e-05, 1.4840428775642067e-05, 6.071090410841862e-06, 4.924350378132658e-06, 9.694212167232763e-06, 0.23698459565639496, 0.0097284484654665, 0.4996904134750366, 0.0031426376663148403, 0.002990666078403592, 0.0032123925630003214, 0.0007807569345459342, 0.0018054945394396782, 0.2405649721622467], [0.002815808169543743, 0.00027634910657070577, 8.259742753580213e-05, 4.025722955702804e-05, 5.677327408193378e-06, 9.242954547517002e-06, 1.3219652146290173e-06, 3.0146355129545555e-05, 0.2824788987636566, 0.003929779399186373, 0.016445059329271317, 0.25540682673454285, 0.04932299256324768, 0.08758853375911713, 0.014621732756495476, 0.0021700274664908648, 0.2847747802734375], [0.0001613196509424597, 0.00015652301954105496, 0.00022793607786297798, 9.761581168277189e-06, 1.6123145542223938e-05, 1.0778161595226265e-05, 2.1070418654289824e-07, 3.25007476931205e-06, 0.034072209149599075, 0.0010804982157424092, 0.003334064967930317, 0.001677484717220068, 0.8715766668319702, 0.03627843037247658, 0.014506389386951923, 0.0024912741500884295, 0.03439714387059212], [0.0011209776857867837, 7.069364073686302e-05, 2.443575249344576e-05, 4.715206887340173e-05, 1.1577607210710994e-06, 1.985137350857258e-05, 7.195953344307782e-08, 2.5476107111899182e-05, 0.03079245053231716, 0.003739392152056098, 0.0004390341055113822, 0.03862687945365906, 0.0012236925540491939, 0.8444976806640625, 0.021412890404462814, 0.02663004770874977, 0.031328171491622925], [0.0028630648739635944, 0.0003615134337451309, 0.0005932210478931665, 7.836609438527375e-05, 1.48615808939212e-05, 5.582963422057219e-05, 5.609221261693165e-05, 0.00017876076162792742, 0.12457794696092606, 0.0032715334091335535, 0.0009346397127956152, 0.011404628865420818, 0.010117012076079845, 0.010504492558538914, 0.4387831389904022, 0.27237674593925476, 0.1238282173871994], [0.0020121426787227392, 0.0004418434400577098, 0.0004007595998700708, 7.266362081281841e-05, 1.1482536137918942e-05, 3.289573942311108e-05, 7.671415914956015e-06, 0.00011622636520769447, 0.27430617809295654, 0.01101713627576828, 0.0035365212243050337, 0.0018025655299425125, 0.0013382205506786704, 0.04214424267411232, 0.025255758315324783, 0.36160311102867126, 0.2759005129337311], [6.147086241981015e-05, 7.92171704233624e-05, 6.8173344516253565e-06, 3.0592286748287734e-06, 1.7755475028025103e-06, 4.146075411881611e-07, 2.066401449951627e-08, 3.991208359366283e-06, 0.4962970018386841, 0.0004623720597010106, 5.322854485712014e-05, 6.72201258566929e-06, 1.5004201259216643e-06, 4.483361408347264e-05, 9.870579378912225e-05, 0.0017888223519548774, 0.5010899901390076], [0.005202671512961388, 0.012121658772230148, 0.006360610015690327, 0.004695909563452005, 0.0010616891086101532, 0.0023953637573868036, 0.0008446436258964241, 0.00224735913798213, 0.47433656454086304, 0.006857879459857941, 0.0033710896968841553, 0.002047613961622119, 0.003722872119396925, 0.0043522813357412815, 0.0036460082046687603, 0.003080519149079919, 0.46365535259246826]], [[0.0034775647800415754, 0.03159920871257782, 0.05590981990098953, 0.09823749214410782, 0.10339411348104477, 0.07069417834281921, 0.005476534832268953, 0.06776495277881622, 0.2793913185596466, 0.00024863501312211156, 0.0002154050162062049, 0.0005617032875306904, 0.0003246032865718007, 0.000404341088142246, 0.0003020506410393864, 0.002176842885091901, 0.27982115745544434], [0.008573872037231922, 0.05241953954100609, 0.07574405521154404, 0.13590601086616516, 0.09709564596414566, 0.0661124438047409, 0.021933045238256454, 0.2839035391807556, 0.107901930809021, 0.008241520263254642, 0.012359398417174816, 0.0014585974859073758, 0.0010023469803854823, 0.0014763358049094677, 0.0011748215183615685, 0.01733115129172802, 0.1073656752705574], [0.019055355340242386, 0.07649022340774536, 0.01817990653216839, 0.13498955965042114, 0.05024317279458046, 0.019877104088664055, 0.011236602440476418, 0.19218626618385315, 0.21583965420722961, 0.003534552874043584, 0.02421685680747032, 0.0010112921008840203, 0.0005394059116952121, 0.0008861830574460328, 0.0012040042784065008, 0.014476785436272621, 0.21603302657604218], [0.004294311162084341, 0.013928457163274288, 0.01173633337020874, 0.005180185195058584, 0.06110323593020439, 0.04316576197743416, 0.07968101650476456, 0.4290054440498352, 0.16713520884513855, 0.010588867589831352, 0.00045926665188744664, 0.0007760879234410822, 0.0027186928782612085, 0.0006557187880389392, 0.0006137004820629954, 0.00283538899384439, 0.16612239181995392], [0.0016497024334967136, 0.022838836535811424, 0.006187095306813717, 0.00518178241327405, 0.009203464724123478, 0.03367726132273674, 0.02489609085023403, 0.27488264441490173, 0.3074115514755249, 0.005414559505879879, 0.00029026262927800417, 0.0002940870472230017, 0.0005888287560082972, 0.0002710361732169986, 0.0003273374168202281, 0.001962077571079135, 0.3049234449863434], [0.0061516608111560345, 0.020987696945667267, 0.007116274442523718, 0.011045906692743301, 0.01160528976470232, 0.017344776540994644, 0.01732688955962658, 0.30683523416519165, 0.2953673005104065, 0.007297547068446875, 0.0008926233276724815, 0.00045485360897146165, 0.000581452390179038, 0.00028437949367798865, 0.0002766584511846304, 0.0019043647916987538, 0.2945271134376526], [0.002840831410139799, 0.015938006341457367, 0.001819100696593523, 0.009596051648259163, 0.019610881805419922, 0.023622745648026466, 0.025773910805583, 0.2889944612979889, 0.3031492233276367, 0.004943017847836018, 0.0006686780252493918, 0.00047086767153814435, 0.0004358016885817051, 0.0003125704824924469, 0.0002133495727321133, 0.0013570489827543497, 0.30025342106819153], [0.00299728661775589, 0.016334213316440582, 0.006849631667137146, 0.007513015065342188, 0.01134041603654623, 0.008366581052541733, 0.0017930356552824378, 0.020179539918899536, 0.45790374279022217, 0.001626592711545527, 0.0017355451127514243, 0.0035774908028542995, 0.0018636470194905996, 0.0008732988499104977, 0.0007912074215710163, 0.0026463426183909178, 0.4536086320877075], [0.010281422175467014, 0.013918614946305752, 0.008130177855491638, 0.009474700316786766, 0.006027864292263985, 0.00677644694224, 0.005115867126733065, 0.023688988760113716, 0.4229169189929962, 0.009497158229351044, 0.009117139503359795, 0.007020134013146162, 0.007555877789855003, 0.0046909274533391, 0.00682138791307807, 0.028370724990963936, 0.4205957353115082], [0.0042145587503910065, 0.0010441363556310534, 0.0006377632962539792, 0.0011667822254821658, 0.0010258278343826532, 0.0005677206791006029, 3.2791085686767474e-05, 0.0011144705349579453, 0.2470298409461975, 0.03610122203826904, 0.04339418560266495, 0.09156223386526108, 0.041395701467990875, 0.0786336362361908, 0.06773170083761215, 0.13311634957790375, 0.25123104453086853], [0.0034249979071319103, 0.000506819284055382, 0.00038873654557392, 0.00021361271501518786, 0.00014307523088064045, 0.00011555873788893223, 1.228543624165468e-05, 0.001233634422533214, 0.24699576199054718, 0.026036961004137993, 0.06679626554250717, 0.04954139515757561, 0.030739396810531616, 0.0409163236618042, 0.04544500634074211, 0.2383892685174942, 0.24910098314285278], [0.0035930986050516367, 0.000839382701087743, 0.00038004014641046524, 0.00031339217093773186, 0.0003435770922806114, 0.0002344125387025997, 4.8426983994431794e-05, 0.0013733734376728535, 0.28140950202941895, 0.059839677065610886, 0.007820780389010906, 0.017975620925426483, 0.03606802225112915, 0.10146521776914597, 0.05773484706878662, 0.1469259262084961, 0.283634752035141], [0.008248011581599712, 0.001164585235528648, 0.000787003489676863, 0.0013185007264837623, 0.0005290344706736505, 0.0005944612203165889, 0.00019232532940804958, 0.003563093952834606, 0.21334154903888702, 0.055123236030340195, 0.0065027326345443726, 0.014273758046329021, 0.027189431712031364, 0.13482527434825897, 0.1495932787656784, 0.1668870896100998, 0.21586664021015167], [0.008838209323585033, 0.0009578358149155974, 0.0006026042974554002, 0.0005058144452050328, 0.0003895729314535856, 0.00021828866738360375, 9.7125448519364e-05, 0.0036123190075159073, 0.31504592299461365, 0.03376302495598793, 0.014995087869465351, 0.013953003101050854, 0.02050885744392872, 0.025464463979005814, 0.05557874217629433, 0.1891227662563324, 0.3163464069366455], [0.009858655743300915, 0.0006366753368638456, 0.0008422978571616113, 0.0005318766343407333, 0.00026757846353575587, 0.00014633627142757177, 4.972214446752332e-05, 0.0026745321229100227, 0.3385658860206604, 0.04986807703971863, 0.011264432221651077, 0.008093265816569328, 0.011924004182219505, 0.02401355840265751, 0.032612886279821396, 0.16846559941768646, 0.34018462896347046], [0.001805409207008779, 0.0008551637874916196, 0.0003144161310046911, 0.00035307041252963245, 0.0002351838193135336, 0.0002557503175921738, 6.508798833237961e-05, 0.0007884406368248165, 0.44601312279701233, 0.017261018976569176, 0.00692727928981185, 0.007832877337932587, 0.0062919314950704575, 0.009370478801429272, 0.010679401457309723, 0.043872933834791183, 0.4470784068107605], [0.010171118192374706, 0.013675413094460964, 0.007990268059074879, 0.009264682419598103, 0.005918261595070362, 0.006664508022367954, 0.005044593475759029, 0.02332248166203499, 0.4234662353992462, 0.009536954574286938, 0.009077874012291431, 0.0070459372363984585, 0.007624299731105566, 0.0047212266363203526, 0.006855986081063747, 0.028470631688833237, 0.42114946246147156]], [[0.004887207876890898, 0.09218461811542511, 0.15319420397281647, 0.07867231220006943, 0.058687757700681686, 0.04031192138791084, 0.02903556078672409, 0.0410614088177681, 0.23716753721237183, 0.007121799048036337, 0.008981598541140556, 0.002165687968954444, 0.0014122417196631432, 0.002105581806972623, 0.0015918848803266883, 0.0053741117008030415, 0.23604467511177063], [0.009231239557266235, 0.1236560270190239, 0.022629527375102043, 0.05002673715353012, 0.037872832268476486, 0.03985787183046341, 0.02874763123691082, 0.28249600529670715, 0.18674787878990173, 0.0075362492352724075, 0.016184628009796143, 0.0008745047962293029, 0.0021673243027180433, 0.0008553347433917224, 0.0008103384752757847, 0.003815885866060853, 0.18649008870124817], [0.01404890138655901, 0.10284174233675003, 0.08528555184602737, 0.04372251406311989, 0.03245510160923004, 0.040445420891046524, 0.02477218210697174, 0.06268306076526642, 0.2827574908733368, 0.0035818982869386673, 0.011300148442387581, 0.0008870619931258261, 0.0033040109556168318, 0.0023080918472260237, 0.0026857848279178143, 0.005545157007873058, 0.2813759744167328], [0.006038513965904713, 0.03949063643813133, 0.005797176621854305, 0.09925459325313568, 0.02386895939707756, 0.032976455986499786, 0.017759665846824646, 0.18907178938388824, 0.2833767831325531, 0.006219392642378807, 0.006231232546269894, 0.0006101291510276496, 0.00012717396020889282, 0.0005338769406080246, 0.0003746833826880902, 0.0062690912745893, 0.2819998562335968], [0.002521602204069495, 0.016350949183106422, 0.0033416952937841415, 0.03995287045836449, 0.07000948488712311, 0.02433883026242256, 0.01780638098716736, 0.044615235179662704, 0.38533449172973633, 0.0032739436719566584, 0.0008054864592850208, 0.006840225774794817, 0.00040076259756460786, 8.500029071001336e-05, 4.2904430301859975e-05, 0.0009749686578288674, 0.38330528140068054], [0.005210545379668474, 0.01654096134006977, 0.018878497183322906, 0.03578563034534454, 0.07948151230812073, 0.04479643702507019, 0.030459219589829445, 0.03408002853393555, 0.35390305519104004, 0.0031239681411534548, 0.0012768832966685295, 0.01191434171050787, 0.004412607755511999, 0.0024894692469388247, 0.0011454205960035324, 0.0024682427756488323, 0.3540332019329071], [0.0027643081266433, 0.014556143432855606, 0.008377637714147568, 0.02064206823706627, 0.033564548939466476, 0.03545372560620308, 0.05153476819396019, 0.06944683939218521, 0.3785746693611145, 0.002259686589241028, 0.0011002124520018697, 0.0008007656433619559, 0.0007070419378578663, 0.00016003272321540862, 0.00033185811480507255, 0.004071988631039858, 0.3756536543369293], [0.009665495716035366, 0.02650030516088009, 0.018499763682484627, 0.02206851914525032, 0.015454926528036594, 0.00791473314166069, 0.010234802030026913, 0.039958685636520386, 0.4194757342338562, 0.00378127908334136, 0.0016167000867426395, 0.0009473819518461823, 0.0005677852896042168, 0.0003473362885415554, 0.0007301612640731037, 0.007014446426182985, 0.41522181034088135], [0.024570448324084282, 0.019677545875310898, 0.017218880355358124, 0.013285048305988312, 0.008420281112194061, 0.01549629494547844, 0.005629510153084993, 0.01922103762626648, 0.39717188477516174, 0.013577992096543312, 0.016583584249019623, 0.007222366519272327, 0.005691088270395994, 0.010249377228319645, 0.007742955815047026, 0.020735086873173714, 0.3975064754486084], [0.04220651835203171, 0.002967719454318285, 0.0013663778081536293, 0.012281054630875587, 0.0016574827022850513, 0.004034803248941898, 0.0004788103105966002, 0.009097910486161709, 0.3218281865119934, 0.09642675518989563, 0.019853629171848297, 0.017431534826755524, 0.003854323411360383, 0.01840837113559246, 0.03803499415516853, 0.08679964393377304, 0.3232719302177429], [0.07389518618583679, 0.02702295035123825, 0.00906301662325859, 0.006894672755151987, 0.0012193075381219387, 0.0018576144939288497, 0.0005177877028472722, 0.004382263869047165, 0.20492593944072723, 0.04272201657295227, 0.2199498564004898, 0.01852991059422493, 0.03315722197294235, 0.047228626906871796, 0.04824305325746536, 0.05503121763467789, 0.20535928010940552], [0.036650121212005615, 0.0035245295148342848, 0.0021447516046464443, 0.005979917943477631, 0.007065457291901112, 0.006401651073247194, 0.0012935495469719172, 0.0033250292763113976, 0.2875789999961853, 0.06084888055920601, 0.03639991581439972, 0.08477707207202911, 0.042717210948467255, 0.05288488045334816, 0.03312809392809868, 0.046427514404058456, 0.28885242342948914], [0.023842820897698402, 0.0061490521766245365, 0.005258009769022465, 0.0035124272108078003, 0.0053131962195038795, 0.018536686897277832, 0.0030191775877028704, 0.005316915921866894, 0.2628737986087799, 0.07341355830430984, 0.07603912800550461, 0.07556675374507904, 0.044206514954566956, 0.0389987975358963, 0.050193026661872864, 0.04326396808028221, 0.2644961476325989], [0.034894365817308426, 0.002716735005378723, 0.0049328734166920185, 0.004232902079820633, 0.0011289374670013785, 0.007285014260560274, 0.001031046500429511, 0.002013083314523101, 0.3236958384513855, 0.03377455845475197, 0.049055930227041245, 0.03724876791238785, 0.029088081791996956, 0.03194654360413551, 0.057522960007190704, 0.05186576768755913, 0.32756659388542175], [0.03478550165891647, 0.002006437862291932, 0.003205270040780306, 0.001726489164866507, 0.00032062374521046877, 0.0034780981950461864, 0.0008909434545785189, 0.0019548924174159765, 0.33229196071624756, 0.020736699923872948, 0.05146470293402672, 0.014043686911463737, 0.01939854770898819, 0.05233379080891609, 0.06514052301645279, 0.061929140239953995, 0.3342926800251007], [0.01941808871924877, 0.003352021798491478, 0.001101992791518569, 0.007002298254519701, 0.0003007906780112535, 0.0019097430631518364, 0.001869277679361403, 0.006612168624997139, 0.3788433372974396, 0.014932313933968544, 0.02211517095565796, 0.004549604374915361, 0.001707464107312262, 0.003550103632733226, 0.025039352476596832, 0.12980656325817108, 0.37788963317871094], [0.02468899078667164, 0.019475648179650307, 0.01713993400335312, 0.013175126165151596, 0.008375738747417927, 0.015332572162151337, 0.005559501703828573, 0.01896260306239128, 0.3974204659461975, 0.013591830618679523, 0.016566835343837738, 0.007298782467842102, 0.00572617631405592, 0.010327349416911602, 0.007790754083544016, 0.020805934444069862, 0.397761732339859]], [[0.002128626685589552, 0.0001650748454267159, 4.5277676690602675e-05, 0.00023853186576161534, 3.4295742807444185e-05, 4.8937235987978056e-05, 2.1546569769270718e-05, 0.00044212714419700205, 0.01773514598608017, 0.9070485234260559, 0.012381895445287228, 0.0010898754699155688, 0.0020974017679691315, 0.003340748604387045, 0.0028547111432999372, 0.03231913223862648, 0.018008200451731682], [0.017532993108034134, 0.02404000796377659, 0.022591181099414825, 0.17755717039108276, 0.1322290599346161, 0.11881161481142044, 0.025408482179045677, 0.0972733125090599, 0.16660676896572113, 0.0031857462599873543, 0.012833202257752419, 0.008590567857027054, 0.007573004812002182, 0.0054169874638319016, 0.0023101670667529106, 0.01047569327056408, 0.16756410896778107], [0.015672365203499794, 0.01221366785466671, 0.024227742105722427, 0.010929143987596035, 0.010850447230041027, 0.03210141137242317, 0.0034414620604366064, 0.01649285852909088, 0.4273480772972107, 0.0016216645017266273, 0.0023261969909071922, 0.0015799971297383308, 0.0031087459065020084, 0.003981929738074541, 0.002801507944241166, 0.005657135043293238, 0.42564547061920166], [0.004369066096842289, 0.009990341030061245, 0.0031546952668577433, 0.01742328144609928, 0.13566173613071442, 0.11935246735811234, 0.0863148421049118, 0.0766659528017044, 0.25982850790023804, 0.01487801130861044, 0.002321388339623809, 0.0018796907970681787, 0.002045274944975972, 0.002377577591687441, 0.0010308694327250123, 0.002976121613755822, 0.25973016023635864], [0.001658593537285924, 0.010550912469625473, 0.004066081717610359, 0.016361169517040253, 0.06585894525051117, 0.08938878774642944, 0.04111625254154205, 0.029496224597096443, 0.36590638756752014, 0.002836958970874548, 0.0027977772988379, 0.0005122866132296622, 0.0007054119487293065, 0.0004253517254255712, 0.0004300023429095745, 0.0018425952875986695, 0.3660461902618408], [0.009245432913303375, 0.02254329062998295, 0.007270926143974066, 0.009432904422283173, 0.014281123876571655, 0.028561009094119072, 0.008832152932882309, 0.04768485203385353, 0.4108608365058899, 0.00856798980385065, 0.006119867321103811, 0.002005388494580984, 0.005063846707344055, 0.0014947752933949232, 0.001158251310698688, 0.003853730857372284, 0.4130237102508545], [0.0066557084210217, 0.03205523267388344, 0.009396317414939404, 0.035940494388341904, 0.13497395813465118, 0.1119065061211586, 0.04104582965373993, 0.06691551953554153, 0.26584550738334656, 0.013496950268745422, 0.0051397597417235374, 0.003169870935380459, 0.0027979668229818344, 0.0006697298958897591, 0.0006810688646510243, 0.0035471816081553698, 0.2657623589038849], [0.04367454722523689, 0.030709803104400635, 0.016729312017560005, 0.01720341108739376, 0.00866479892283678, 0.008728940039873123, 0.005692319944500923, 0.03621846064925194, 0.2991501986980438, 0.1713738888502121, 0.02975728176534176, 0.011335433460772038, 0.005311070941388607, 0.0026588791515678167, 0.0025084898807108402, 0.010416730307042599, 0.2998664081096649], [0.018770838156342506, 0.01709742099046707, 0.015042035840451717, 0.0079502509906888, 0.004236956592649221, 0.00667175417765975, 0.003529805690050125, 0.009282759390771389, 0.38503390550613403, 0.048978179693222046, 0.012677504681050777, 0.012153059244155884, 0.012410905212163925, 0.018826885148882866, 0.012641770765185356, 0.029373768717050552, 0.38532206416130066], [0.007248852401971817, 0.0006536538130603731, 0.00027366416179575026, 0.0010001006303355098, 0.0004254161030985415, 0.0003303191333543509, 6.740252138115466e-05, 0.0005658965674228966, 0.20623686909675598, 0.07669994980096817, 0.036322467029094696, 0.17617207765579224, 0.06659115850925446, 0.08317657560110092, 0.029041403904557228, 0.10588031262159348, 0.20931388437747955], [0.007227039895951748, 0.0008173251408152282, 0.0006482942844741046, 0.00023533531930297613, 0.00015515927225351334, 0.00033517213887535036, 5.904723366256803e-05, 0.0008556207176297903, 0.23546801507472992, 0.029780752956867218, 0.04066469147801399, 0.06829444319009781, 0.1393667608499527, 0.11184526979923248, 0.05083135515451431, 0.07527793943881989, 0.23813778162002563], [0.0020861823577433825, 0.0005855682538822293, 0.0002817694912664592, 0.0002902026171796024, 0.0008734660805203021, 0.0004221069975756109, 0.00010047149407910183, 0.0005499849794432521, 0.1790439933538437, 0.012791124172508717, 0.031504470854997635, 0.04601998254656792, 0.1111421138048172, 0.18906612694263458, 0.0766419917345047, 0.16815905272960663, 0.18044136464595795], [0.002612813375890255, 0.0009280943777412176, 0.0006409710622392595, 0.0012536129215732217, 0.0016723297303542495, 0.001090942183509469, 0.00018335638742428273, 0.0005617794231511652, 0.07714205980300903, 0.01918867975473404, 0.023990241810679436, 0.1229245737195015, 0.09795556217432022, 0.3478703498840332, 0.1517382562160492, 0.07199549674987793, 0.07825086265802383], [0.018478814512491226, 0.0011746564414352179, 0.0015585775254294276, 0.000332654919475317, 0.0003404796589165926, 0.0008957167738117278, 0.00015863262524362653, 0.0010032805148512125, 0.2193526327610016, 0.008870132267475128, 0.021755710244178772, 0.053611453622579575, 0.13596691191196442, 0.09854352474212646, 0.1066683828830719, 0.10902105271816254, 0.22226744890213013], [0.01483730599284172, 0.0006593500729650259, 0.0008523913566023111, 0.00026163633447140455, 0.0007682826835662127, 0.0011232589604333043, 0.00022558816999662668, 0.0007851230911910534, 0.24282337725162506, 0.012469442561268806, 0.013273941352963448, 0.0535944402217865, 0.15776245296001434, 0.1544434130191803, 0.04526647925376892, 0.054500918835401535, 0.24635261297225952], [0.008819248527288437, 0.0011423503747209907, 0.0020832931622862816, 0.0010823191842064261, 0.0007126519922167063, 0.0011981941061094403, 0.0009082540054805577, 0.0005889273015782237, 0.336907297372818, 0.03445626050233841, 0.02366233803331852, 0.06282828748226166, 0.055039532482624054, 0.03904608264565468, 0.057980407029390335, 0.03356192633509636, 0.3399827480316162], [0.0186923835426569, 0.01690245233476162, 0.014929926954209805, 0.007862180471420288, 0.0042130774818360806, 0.006667010486125946, 0.003520797472447157, 0.009226231835782528, 0.38489478826522827, 0.049256760627031326, 0.012612680904567242, 0.012188095599412918, 0.012523261830210686, 0.0189913772046566, 0.012764660641551018, 0.029581010341644287, 0.38517332077026367]], [[0.0010247679892927408, 0.005229088943451643, 0.0010495471069589257, 0.0010058552725240588, 0.001038134447298944, 0.0009390295017510653, 0.0005392783787101507, 0.5504570007324219, 0.21954546868801117, 0.00029976683435961604, 0.00021563368500210345, 0.00016625561693217605, 5.6110340665327385e-05, 7.001328776823357e-05, 3.409140117582865e-05, 0.00012891496589872986, 0.21820102632045746], [0.0012778689851984382, 0.009162486530840397, 0.0328250452876091, 0.003567345906049013, 0.002338143065571785, 0.0036760936491191387, 0.000227054872084409, 0.0017234844854101539, 0.4731438159942627, 0.00040190800791606307, 0.0002828743017744273, 0.00043458875734359026, 0.00016116838378366083, 0.0001923443196574226, 0.00015386042650789022, 0.0013821901520714164, 0.4690496325492859], [0.0022763442248106003, 0.00740745710209012, 0.0025567414704710245, 0.011181683279573917, 0.000770330720115453, 0.001676621614024043, 0.0004511750303208828, 0.00041692942613735795, 0.48413601517677307, 9.840984421316534e-05, 0.00027428523753769696, 0.00015854492085054517, 4.828941746382043e-05, 0.001816609757952392, 0.0006966443615965545, 0.0008187078638002276, 0.48521530628204346], [0.0011705560609698296, 0.008067402988672256, 0.0026227105408906937, 0.0049263667315244675, 0.09535650908946991, 0.021231994032859802, 0.0010216492228209972, 0.003180760657414794, 0.4285867214202881, 8.057921513682231e-05, 0.0004226982709951699, 0.00014216330600902438, 0.00010825470963027328, 0.0002754598972387612, 0.00010117785859620199, 0.0005521111306734383, 0.43215274810791016], [0.0003494688426144421, 0.0019008400849997997, 0.0022555068135261536, 0.001176475896500051, 0.06195712462067604, 0.22238466143608093, 0.00451246602460742, 0.0016097957268357277, 0.35109052062034607, 0.00011170908692292869, 6.849321653135121e-05, 0.0002079346013488248, 0.0006750866887159646, 0.00030630803667008877, 0.0001665297313593328, 0.00023527316807303578, 0.35099175572395325], [0.0017486204160377383, 0.002781594404950738, 0.0014616771368309855, 0.0038021630607545376, 0.0022196206264197826, 0.032525621354579926, 0.21113842725753784, 0.027756614610552788, 0.35746777057647705, 0.000316612800816074, 0.00024039334675762802, 6.83173057041131e-05, 4.879559492110275e-05, 9.615962335374206e-05, 0.000509117788169533, 0.001208844012580812, 0.3566097021102905], [0.0004453497240319848, 0.001446605776436627, 5.3005853260401636e-05, 0.000581208209041506, 0.000476109329611063, 0.00357592711225152, 0.0007324761827476323, 0.04861157760024071, 0.4700387120246887, 8.546111348550767e-05, 1.569770938658621e-05, 1.3062812286079861e-05, 4.503134732658509e-06, 8.778869414527435e-06, 2.3977501768968068e-05, 0.000676079245749861, 0.473211407661438], [0.0003688672441057861, 0.005001384764909744, 0.0007465973030775785, 0.00025294339866377413, 9.366084850626066e-05, 0.0004360731691122055, 0.0001310702064074576, 0.017705680802464485, 0.4902704060077667, 0.01108487043529749, 0.0012696747435256839, 1.6961041183094494e-05, 1.606821024324745e-05, 2.6223893655696884e-05, 4.410685141920112e-05, 0.0007321340963244438, 0.47180330753326416], [0.01662318967282772, 0.02117673121392727, 0.006367746740579605, 0.007473534904420376, 0.002645942848175764, 0.004686752799898386, 0.0022847596555948257, 0.008850357495248318, 0.4445846974849701, 0.012698285281658173, 0.007260583806782961, 0.004748089704662561, 0.002695214468985796, 0.004964962601661682, 0.0060354857705533504, 0.007824470289051533, 0.439079225063324], [0.001039639231748879, 0.00066462840186432, 0.0003141103661619127, 0.0003110688121523708, 5.037196024204604e-05, 5.567113112192601e-05, 6.031482917023823e-05, 0.00020879422663711011, 0.4536387622356415, 0.008490917272865772, 0.06578566879034042, 0.004481554962694645, 0.0007164674461819232, 0.002962316619232297, 0.0015529401134699583, 0.0031631551682949066, 0.4565037190914154], [0.005417697597295046, 0.001244330545887351, 0.00045445087016560137, 0.00025911355623975396, 7.74667933001183e-05, 7.100872608134523e-05, 3.109538965873071e-06, 0.0002748302067629993, 0.45596230030059814, 0.001998456194996834, 0.02770964428782463, 0.024129144847393036, 0.001417644089087844, 0.013193752616643906, 0.0018762232502922416, 0.0027496733237057924, 0.4631612002849579], [0.0005341338110156357, 0.0005509090260602534, 0.00014135749370325357, 6.147487147245556e-05, 0.000654037925414741, 0.0001497407502029091, 9.764014976099133e-06, 5.7867619034368545e-05, 0.15545834600925446, 0.000894496391993016, 0.002201249124482274, 0.042716607451438904, 0.6323442459106445, 0.006296771578490734, 0.0034781070426106453, 0.0004351684474386275, 0.15401571989059448], [0.00589332077652216, 0.001838227966800332, 0.00035328068770468235, 0.0008550429483875632, 0.00031401694286614656, 0.0009424583404324949, 2.2615948182647116e-05, 0.0007348060607910156, 0.3383333086967468, 0.0018929222133010626, 0.004326787311583757, 0.028116373345255852, 0.0023997006937861443, 0.2180381417274475, 0.012924258597195148, 0.035915032029151917, 0.3470996618270874], [0.003046461148187518, 0.0006254838081076741, 0.00031666524591855705, 0.0002944391162600368, 7.619494863320142e-05, 0.00042745916289277375, 0.0008550071506761014, 0.00016449196846224368, 0.434641033411026, 0.0009253900498151779, 0.000537925458047539, 0.007318825460970402, 0.0019181403331458569, 0.011391165666282177, 0.08509541302919388, 0.01205976027995348, 0.44030600786209106], [0.004372192081063986, 0.0008403134997934103, 0.00048056451487354934, 0.0006669890717603266, 0.00011491409532027319, 0.00020409106218721718, 0.0002397648204350844, 0.0005446789436973631, 0.44790083169937134, 0.0025964793749153614, 0.0016089759301394224, 0.0016555238980799913, 0.0009669976425357163, 0.006223927717655897, 0.011356275528669357, 0.06944501399993896, 0.45078244805336], [0.0005076297675259411, 0.0003180759958922863, 0.00014328464749269187, 4.1302351746708155e-05, 6.657034828094766e-05, 7.083241507643834e-05, 3.6509957226371625e-06, 0.00012765530846081674, 0.48913514614105225, 0.0006058869184926152, 0.0013564061373472214, 9.543503983877599e-05, 1.8725990230450407e-05, 0.0002683386264834553, 0.0001432435237802565, 0.009009743109345436, 0.498088002204895], [0.016727419570088387, 0.021148066967725754, 0.006418176926672459, 0.00743089010939002, 0.002662388375028968, 0.004726768005639315, 0.0022881985642015934, 0.00873578991740942, 0.4442789554595947, 0.012830240651965141, 0.007379855029284954, 0.004797589965164661, 0.0027426090091466904, 0.00507731456309557, 0.006111932452768087, 0.007871641777455807, 0.4387722313404083]], [[0.004602161236107349, 0.0025023785419762135, 0.0013971495209261775, 0.001910419319756329, 0.0006659245700575411, 0.0016302717849612236, 0.00043538844329304993, 0.0019634782802313566, 0.46796220541000366, 0.0066135600209236145, 0.009582077153027058, 0.007155739236623049, 0.0041506486013531685, 0.006435934454202652, 0.00901520624756813, 0.005004014819860458, 0.46897345781326294], [0.017191050574183464, 0.016913849860429764, 0.0344238206744194, 0.02109345607459545, 0.008878347463905811, 0.006207023281604052, 0.006159850396215916, 0.015799345448613167, 0.4227338135242462, 0.0017972465138882399, 0.004773606080561876, 0.001033432548865676, 0.0009794686920940876, 0.001003576209768653, 0.004898270592093468, 0.011695140972733498, 0.42441868782043457], [0.008392194285988808, 0.08104880154132843, 0.01639089733362198, 0.006375494878739119, 0.013459350913763046, 0.0038444167003035545, 0.0007482392829842865, 0.003799224039539695, 0.42443859577178955, 0.0011884078849107027, 0.002815657528117299, 0.004419669043272734, 0.0014225720660760999, 0.0013864398933947086, 0.0025226864963769913, 0.0023590491618961096, 0.42538824677467346], [0.001486602588556707, 0.0023683635517954826, 0.011529610492289066, 0.007295703049749136, 0.0021177884191274643, 0.0013771061785519123, 0.0008855614578351378, 0.0035826507955789566, 0.48522916436195374, 0.00017089073662646115, 0.00014168610505294055, 4.951690061716363e-05, 0.00018147750233765692, 0.00024248930276371539, 0.0006021489971317351, 9.054239490069449e-05, 0.4826485812664032], [0.0012847722973674536, 0.00261834729462862, 0.010125018656253815, 0.056709691882133484, 0.005156891420483589, 0.005446788854897022, 0.001008740160614252, 0.002050968585535884, 0.45814934372901917, 0.00010242780990665779, 0.00015250947035383433, 6.70484805596061e-05, 7.06777791492641e-05, 5.0836366426665336e-05, 0.00021239288616925478, 0.0011829208815470338, 0.4556106626987457], [0.002733484609052539, 0.006255648098886013, 0.008446780033409595, 0.010157633572816849, 0.03459753096103668, 0.005892027635127306, 0.0007083110976964235, 0.0033653967548161745, 0.4613305628299713, 0.00016709024203009903, 0.0002751776482909918, 0.00021413154900074005, 0.0001541209639981389, 0.00013619572564493865, 0.00023766029335092753, 0.0018110321834683418, 0.46351704001426697], [0.0028857793658971786, 0.007232632488012314, 0.007882855832576752, 0.05577976256608963, 0.04952952638268471, 0.02531002089381218, 0.0037053029518574476, 0.01959269307553768, 0.4113808870315552, 0.0001758130529196933, 0.00022426406212616712, 4.656359305954538e-05, 0.00011739401088561863, 0.0002498358371667564, 0.00044342526234686375, 0.0034575778990983963, 0.41198569536209106], [0.0034128515981137753, 0.003939729183912277, 0.003936275839805603, 0.010643941350281239, 0.0017725180368870497, 0.01996697299182415, 0.04185958579182625, 0.09607525169849396, 0.4100092351436615, 0.0002560635039117187, 0.00019517939654178917, 5.081154085928574e-05, 0.0004636063240468502, 0.00022052621352486312, 0.0014667102368548512, 0.001228218898177147, 0.4045025408267975], [0.024587204679846764, 0.010375452227890491, 0.012562116608023643, 0.008037853054702282, 0.005945245269685984, 0.009264680556952953, 0.007508115377277136, 0.011149978265166283, 0.41665399074554443, 0.007268840912729502, 0.013528822921216488, 0.006114609073847532, 0.009252402931451797, 0.010822935961186886, 0.016326000913977623, 0.011976811103522778, 0.4186249375343323], [0.0050188470631837845, 0.0002915015793405473, 0.00023480033269152045, 0.0006145444931462407, 0.00025124227977357805, 0.00018362949776928872, 0.00015460331633221358, 0.005477811209857464, 0.4828645884990692, 0.003675277577713132, 0.001866189413703978, 0.001357611850835383, 0.00043765248847194016, 0.0006097626173868775, 0.0014317381428554654, 0.011709474958479404, 0.4838205873966217], [0.006460617296397686, 0.0012748385779559612, 0.00016554942703805864, 0.00031482777558267117, 0.00018507674394641072, 0.0002885719295591116, 4.4775377318728715e-05, 0.0008923065033741295, 0.42102834582328796, 0.08835764229297638, 0.028642477467656136, 0.010229963809251785, 0.001758950063958764, 0.0018499108264222741, 0.009059443138539791, 0.005212091840803623, 0.4242345988750458], [0.0026999281253665686, 0.00026880137738771737, 0.00017479014059063047, 0.00014111267228145152, 9.407080506207421e-05, 3.429561184020713e-05, 5.40986047781189e-06, 0.0005949672777205706, 0.4694885015487671, 0.00799261499196291, 0.014231435023248196, 0.021989963948726654, 0.002557610860094428, 0.0010916937608271837, 0.002367876237258315, 0.004309205338358879, 0.4719575345516205], [0.0034246710129082203, 0.0005615180125460029, 0.000610478047747165, 0.0011244489578530192, 0.00014604648458771408, 5.383366806199774e-05, 2.5323708541691303e-05, 0.0017176289111375809, 0.4572793245315552, 0.008899073116481304, 0.012763104401528835, 0.03410309553146362, 0.002338482765480876, 0.0012693756725639105, 0.0030886861495673656, 0.01198536902666092, 0.46060964465141296], [0.002563945949077606, 0.00047227853792719543, 0.0012528554070740938, 0.00033863491262309253, 0.00013920357741881162, 6.576144369319081e-05, 1.2760151548718568e-05, 0.00013825444329995662, 0.4418810307979584, 0.008696864359080791, 0.0223518256098032, 0.033775683492422104, 0.02944188192486763, 0.004639053251594305, 0.0071303569711744785, 0.0016632245387881994, 0.44543638825416565], [0.002857710001990199, 0.0004494079330470413, 0.0005151801742613316, 0.0002472929481882602, 9.285211126552895e-05, 6.0330894484650344e-05, 4.444272053660825e-05, 0.0004616081132553518, 0.42209476232528687, 0.004248170182108879, 0.013329898938536644, 0.02593597210943699, 0.03146273270249367, 0.03693414479494095, 0.028025370091199875, 0.008159694261848927, 0.42508044838905334], [0.0024459820706397295, 0.0003664670221041888, 0.00022018687741365284, 0.00020101053814869374, 7.080255454638973e-05, 0.00013722095172852278, 8.841782255331054e-05, 0.0007888933760114014, 0.4634504020214081, 0.0008423767285421491, 0.004170592408627272, 0.0013360264711081982, 0.0037458320148289204, 0.014925336465239525, 0.0375409871339798, 0.003994698636233807, 0.4656746983528137], [0.02457481063902378, 0.010203752666711807, 0.012434737756848335, 0.008004684001207352, 0.005903394427150488, 0.00911440048366785, 0.007329131942242384, 0.010916314087808132, 0.4171464145183563, 0.00732713658362627, 0.013628934510052204, 0.0061233569867908955, 0.009307322092354298, 0.01072712242603302, 0.016225721687078476, 0.011902778409421444, 0.4191300868988037]], [[0.00048719378537498415, 0.0016921494388952851, 0.00040300501859746873, 0.00021417596144601703, 8.935183723224327e-05, 0.0030993835534900427, 0.0007810798706486821, 0.9193664193153381, 0.023055903613567352, 1.4859769180475269e-05, 1.6625217540422454e-06, 8.735669894122111e-07, 6.831931841588812e-06, 8.76136346050771e-06, 8.568998964619823e-06, 0.027730019763112068, 0.0230398029088974], [0.0027713614981621504, 0.08397112786769867, 0.05193910375237465, 0.016939187422394753, 0.0022041278425604105, 0.0029977767262607813, 0.003563196863979101, 0.00877379346638918, 0.41430044174194336, 0.0010869173565879464, 0.00045260091428644955, 7.394230487989262e-05, 0.0004003988578915596, 0.0001496725744800642, 0.0003172729047946632, 0.0010901883943006396, 0.40896889567375183], [0.0010921587236225605, 0.42779940366744995, 0.006578531581908464, 0.0014727141242474318, 0.0017975274240598083, 0.0010941035579890013, 6.023854439263232e-05, 5.6039738410618156e-05, 0.27791574597358704, 0.00023584242444485426, 0.0006934786215424538, 0.0015141678741201758, 0.0006554787396453321, 0.0012277252972126007, 0.00031151380972005427, 0.00026277234428562224, 0.2772325277328491], [0.0006737246876582503, 0.008373060263693333, 0.12172280251979828, 0.004986476618796587, 0.0007816603174433112, 0.004545122850686312, 0.007766250520944595, 0.0001776995341060683, 0.42826735973358154, 1.9760309442062862e-05, 0.0001840673794504255, 1.2046632946294267e-05, 0.0007476943428628147, 0.00014097412349656224, 0.0002640757884364575, 5.718844477087259e-05, 0.4212802052497864], [0.0004160635871812701, 0.002634591655805707, 0.016594745218753815, 0.27470913529396057, 0.021080875769257545, 0.0028178137727081776, 0.0011507784947752953, 4.058673221152276e-05, 0.34122875332832336, 4.665302549256012e-05, 0.0003152368008159101, 0.0002806786505971104, 4.328700015321374e-05, 5.6680775742279366e-05, 4.936538971378468e-05, 0.00026608278858475387, 0.33826860785484314], [0.002481795847415924, 0.007451680954545736, 0.0084501001983881, 0.04968898370862007, 0.423367977142334, 0.009024492464959621, 0.0009456521947868168, 0.00020793182193301618, 0.24719859659671783, 0.00025041832122951746, 0.0007307803025469184, 0.00017736315203364938, 0.0007285236497409642, 0.00012039943976560608, 3.8593112549278885e-05, 0.00025225148419849575, 0.24888446927070618], [0.0002650237292982638, 0.0014228214276954532, 0.005571195390075445, 0.017781691625714302, 0.04897824674844742, 0.3531229496002197, 0.0011916421353816986, 0.00011059032840421423, 0.2850455939769745, 0.0004459808988031, 4.851774065173231e-05, 3.70494817616418e-05, 7.732710218988359e-05, 0.0001507394335931167, 4.627926682587713e-05, 4.071185321663506e-05, 0.2856636345386505], [0.0011373042361810803, 0.002236234489828348, 0.005291897803544998, 0.00887035671621561, 0.0009603105136193335, 0.14108602702617645, 0.305453360080719, 0.022427262738347054, 0.2565997242927551, 7.286720210686326e-05, 3.5261724406154826e-05, 5.444881026051007e-06, 8.468711166642606e-05, 7.878318865550682e-05, 0.00033633114071562886, 0.0020188838243484497, 0.2533053159713745], [0.012357382103800774, 0.011543367058038712, 0.006351469550281763, 0.003990822937339544, 0.0031228475272655487, 0.008493022993206978, 0.002075342694297433, 0.014676825143396854, 0.44728443026542664, 0.005217724945396185, 0.004288507625460625, 0.0017007944406941533, 0.004521556664258242, 0.002942086895927787, 0.0026725721545517445, 0.019184140488505363, 0.44957709312438965], [0.003252732567489147, 0.001031869906000793, 0.00011463941336842254, 0.0001942763919942081, 0.0002165366749977693, 0.0007036080351099372, 0.0007079083006829023, 0.4053356647491455, 0.2332354336977005, 0.005686624441295862, 0.0012051259400323033, 0.0001960455410880968, 0.00021020985150244087, 0.00020092290651518852, 0.000660199613776058, 0.11466763913631439, 0.23238053917884827], [0.0006034534890204668, 0.0018712034216150641, 0.00013304398453328758, 0.0002786715922411531, 2.8423986805137247e-05, 0.00024064678291324526, 5.6940584727271926e-06, 0.0010354567784816027, 0.05986001342535019, 0.8489680290222168, 0.019986065104603767, 0.0007610179018229246, 0.0002992941881529987, 0.00024667492834851146, 0.000490342266857624, 0.004653351381421089, 0.06053868308663368], [0.0059765977784991264, 0.000524194270838052, 0.0002881841210182756, 0.0003286635037511587, 4.3188923882553354e-05, 6.399136964319041e-06, 2.1653295334544964e-06, 0.0001395211584167555, 0.2144690901041031, 0.023702329024672508, 0.3933728337287903, 0.014213722199201584, 0.10905706882476807, 0.016671810299158096, 0.0012892454396933317, 0.004276878200471401, 0.21563810110092163], [0.0015593486605212092, 0.0005676263244822621, 0.0001093849350581877, 0.0004160494136158377, 6.473961548181251e-05, 1.101725865737535e-05, 3.079825603435893e-07, 0.00017149228369817138, 0.08103245496749878, 0.022821588441729546, 0.0220235213637352, 0.7777501940727234, 0.00701160030439496, 0.0026483137626200914, 0.000208628160180524, 0.001501770573668182, 0.08210194855928421], [0.001838727155700326, 0.0003195495519321412, 0.0004254066734574735, 0.0001387432566843927, 0.00031990231946110725, 1.268110099772457e-05, 2.8119807211623993e-06, 5.5413551308447495e-05, 0.051038116216659546, 0.006010955665260553, 0.08126302808523178, 0.02901894599199295, 0.7542858719825745, 0.01028755959123373, 0.0037121635396033525, 0.009578914381563663, 0.05169110372662544], [0.003990883473306894, 0.0007089286809787154, 0.001718937768600881, 0.00024039673735387623, 0.0001616957742953673, 0.00010392876720288768, 1.709900243440643e-05, 0.000396753748646006, 0.1947663128376007, 0.0028357200790196657, 0.01638449728488922, 0.020234866067767143, 0.43291497230529785, 0.1071450337767601, 0.008218012750148773, 0.013646451756358147, 0.19651556015014648], [0.0023730352986603975, 0.001130700926296413, 0.004566582851111889, 0.000842994952108711, 9.885642793960869e-05, 0.0027004461735486984, 0.0012006893521174788, 0.0014957990497350693, 0.16556678712368011, 0.006459176540374756, 0.006770133972167969, 0.005367286037653685, 0.028224142268300056, 0.10047725588083267, 0.3277108371257782, 0.178965762257576, 0.16604936122894287], [0.01220922265201807, 0.011317525990307331, 0.006292174104601145, 0.003991291858255863, 0.003126810770481825, 0.008478366769850254, 0.0020465741399675608, 0.013959069736301899, 0.4476650059223175, 0.005234155338257551, 0.004362147767096758, 0.0017368204426020384, 0.004593800287693739, 0.002976416377350688, 0.002690965309739113, 0.019312363117933273, 0.45000725984573364]], [[0.005989899858832359, 0.09139303117990494, 0.026810016483068466, 0.0487980991601944, 0.019986731931567192, 0.16587631404399872, 0.04014173522591591, 0.1424010545015335, 0.15417440235614777, 0.06021136790513992, 0.016384968534111977, 0.003913346212357283, 0.01495314110070467, 0.004269339144229889, 0.01245495118200779, 0.03743751719594002, 0.1548040509223938], [0.00306897284463048, 0.01342796441167593, 0.021265119314193726, 0.004360045772045851, 0.0008838544599711895, 0.004062327556312084, 0.003115238156169653, 0.007174549158662558, 0.007799121551215649, 0.01093027088791132, 0.9070063829421997, 0.001290512620471418, 0.0006622169748879969, 0.0004304322646930814, 0.0002703519130591303, 0.006418721284717321, 0.007833967916667461], [0.009499392472207546, 0.019101914018392563, 0.0457623191177845, 0.012029091827571392, 0.0009536636061966419, 0.0019731668289750814, 0.002190505852922797, 0.004658089019358158, 0.01986420340836048, 0.004015312995761633, 0.8174616098403931, 0.0017430142033845186, 0.0016311665531247854, 0.0014775906456634402, 0.004162629600614309, 0.03352399542927742, 0.01995236426591873], [0.008867834694683552, 0.01500577200204134, 0.007340576499700546, 0.02920330874621868, 0.023288758471608162, 0.05022633820772171, 0.05796845257282257, 0.26596730947494507, 0.15862727165222168, 0.04648205637931824, 0.05273868516087532, 0.03601903095841408, 0.010650807991623878, 0.0013882775092497468, 0.0015978427836671472, 0.07621385157108307, 0.15841388702392578], [0.0036607510410249233, 0.006391186732798815, 0.0024480626452714205, 0.027321306988596916, 0.040052711963653564, 0.07521122694015503, 0.03156106919050217, 0.23935608565807343, 0.23948360979557037, 0.022186512127518654, 0.015814848244190216, 0.0037308423779904842, 0.017118770629167557, 0.0014685160713270307, 0.001379501074552536, 0.034448184072971344, 0.23836688697338104], [0.01754981093108654, 0.00525283720344305, 0.002489976119250059, 0.04242882505059242, 0.03509701415896416, 0.049582283943891525, 0.05015264078974724, 0.13408371806144714, 0.20574714243412018, 0.10756000131368637, 0.022729581221938133, 0.01845385693013668, 0.03551193326711655, 0.0006498933071270585, 0.0025396374985575676, 0.06564154475927353, 0.20452941954135895], [0.008984477259218693, 0.013667243532836437, 0.0026346510276198387, 0.03665647283196449, 0.01680963672697544, 0.024209333583712578, 0.03122330643236637, 0.2037796527147293, 0.19723962247371674, 0.11971084773540497, 0.043877311050891876, 0.045669861137866974, 0.015251833945512772, 0.0007043184596113861, 0.0010175270726904273, 0.04241645708680153, 0.19614742696285248], [0.01112351194024086, 0.01963193342089653, 0.0034421244636178017, 0.04310804605484009, 0.011914917267858982, 0.020744027569890022, 0.019482852891087532, 0.2168053239583969, 0.2290947139263153, 0.08332706987857819, 0.015509034506976604, 0.044853806495666504, 0.004712630528956652, 0.00038340501487255096, 0.000517758191563189, 0.04627804830670357, 0.22907079756259918], [0.055878978222608566, 0.03644617646932602, 0.05720988288521767, 0.03407743200659752, 0.025291848927736282, 0.03501643240451813, 0.03312542662024498, 0.06352921575307846, 0.22881262004375458, 0.04139076545834541, 0.03536530211567879, 0.025959070771932602, 0.0290086530148983, 0.010200546123087406, 0.014316685497760773, 0.045015912503004074, 0.2293550819158554], [0.020283760502934456, 0.008238658308982849, 0.00964807253330946, 0.010557932779192924, 0.005391087848693132, 0.24193178117275238, 0.014401191845536232, 0.03575732931494713, 0.15041330456733704, 0.2862628996372223, 0.0012126839719712734, 0.007830708287656307, 0.004214932676404715, 0.0025427164509892464, 0.00570731982588768, 0.0444498248398304, 0.15115581452846527], [0.004184054210782051, 0.3481873869895935, 0.42574769258499146, 0.005593194160610437, 0.00118062028195709, 0.002844767179340124, 0.0020074776839464903, 0.002557175699621439, 0.018180372193455696, 0.003460957668721676, 0.1550169289112091, 0.0005566927138715982, 0.0003957227454520762, 0.00041422987123951316, 0.0002905112341977656, 0.011004360392689705, 0.018377842381596565], [0.010354574769735336, 0.006637608632445335, 0.010179916396737099, 0.011776612140238285, 0.009650168009102345, 0.08078241348266602, 0.034377872943878174, 0.03934403136372566, 0.2453005462884903, 0.1109478771686554, 0.0027653821744024754, 0.12711076438426971, 0.02045830897986889, 0.0023299572058022022, 0.0015487141208723187, 0.040169768035411835, 0.24626556038856506], [0.03475775942206383, 0.003283452009782195, 0.0074998075142502785, 0.0038045400287956, 0.007586288265883923, 0.05190139263868332, 0.010764279402792454, 0.010243196971714497, 0.13020431995391846, 0.05889685079455376, 0.003898381255567074, 0.03150215372443199, 0.2923051714897156, 0.0839773640036583, 0.06827591359615326, 0.07029414921998978, 0.13080503046512604], [0.01877177134156227, 0.003274571383371949, 0.004848450887948275, 0.002747440943494439, 0.003594530513510108, 0.015208389610052109, 0.003513134317472577, 0.012410419061779976, 0.14927075803279877, 0.011832121759653091, 0.006414338946342468, 0.005159125197678804, 0.09488371759653091, 0.18686027824878693, 0.273154616355896, 0.05748378485441208, 0.15057261288166046], [0.021789737045764923, 0.003158853854984045, 0.007846553809940815, 0.0029973729979246855, 0.004203712567687035, 0.02625352330505848, 0.0038595679216086864, 0.01715152896940708, 0.14619556069374084, 0.01832089200615883, 0.006865106523036957, 0.007780106738209724, 0.14834704995155334, 0.1852159947156906, 0.20343685150146484, 0.049172524362802505, 0.14740507304668427], [0.034868333488702774, 0.014031435362994671, 0.006361465901136398, 0.010672181844711304, 0.015724845230579376, 0.0812961533665657, 0.013889340683817863, 0.1020364910364151, 0.1819848120212555, 0.09930936992168427, 0.008308115415275097, 0.07921653240919113, 0.03570425882935524, 0.005831372924149036, 0.004057868849486113, 0.12305734306573868, 0.18365009129047394], [0.05576321855187416, 0.03638318553566933, 0.057337719947099686, 0.033809397369623184, 0.02530876360833645, 0.03488156199455261, 0.0330699197947979, 0.06335695087909698, 0.22903399169445038, 0.04144205525517464, 0.03539574518799782, 0.025934269651770592, 0.02917262725532055, 0.010211492888629436, 0.014317767694592476, 0.04499416425824165, 0.2295871078968048]]], [[[0.005297467112541199, 0.16783204674720764, 0.3675132393836975, 0.04940835013985634, 0.022031916305422783, 0.028231138363480568, 0.008519068360328674, 0.07967200875282288, 0.11491129547357559, 0.003222285071387887, 0.028030067682266235, 0.0010792185785248876, 0.000500990659929812, 0.0007302633603103459, 0.000869597599375993, 0.007325959857553244, 0.11482513695955276], [0.004766474943608046, 0.12688788771629333, 0.12460390478372574, 0.02893034555017948, 0.013653712347149849, 0.017232440412044525, 0.009274342097342014, 0.08878704905509949, 0.28614553809165955, 0.0028164705727249384, 0.007499368861317635, 0.00021854243823327124, 0.0007668511243537068, 0.00013776372361462563, 0.00018941382586490363, 0.002091463888064027, 0.2859983444213867], [0.002550829667598009, 0.033975888043642044, 0.04040086641907692, 0.018888572230935097, 0.01103578507900238, 0.004325386602431536, 0.006601816974580288, 0.030958233401179314, 0.42200005054473877, 0.0005571680376306176, 0.0044917212799191475, 0.00038567467709071934, 0.0002042024425463751, 0.00023301954206544906, 0.0002402973041171208, 0.0012122293701395392, 0.4219382703304291], [0.004832226317375898, 0.06285307556390762, 0.040567006915807724, 0.07684948295354843, 0.03633752837777138, 0.04217629134654999, 0.022437050938606262, 0.10074576735496521, 0.3018655776977539, 0.003207303350791335, 0.0017004829132929444, 0.00041987671284005046, 0.00022912098211236298, 0.00010279820708092302, 0.0002585861657280475, 0.003697959240525961, 0.30171987414360046], [0.0035615579690784216, 0.023039570078253746, 0.03205538168549538, 0.027895918115973473, 0.045681148767471313, 0.01721591129899025, 0.010281956754624844, 0.059282220900058746, 0.38620585203170776, 0.002207000507041812, 0.0005496328230947256, 0.00047149305464699864, 0.00023021025117486715, 8.827996498439461e-05, 0.00021609636314678937, 0.0052264113910496235, 0.3857913613319397], [0.008434980176389217, 0.04755670204758644, 0.054221782833337784, 0.02550545334815979, 0.04541904479265213, 0.017660027369856834, 0.021139560267329216, 0.06945955008268356, 0.3433700501918793, 0.007943536154925823, 0.002520049223676324, 0.001113853882998228, 0.001180359860882163, 0.0013389542000368237, 0.002726425416767597, 0.007442825473845005, 0.342966765165329], [0.00492860097438097, 0.07522725313901901, 0.037394050508737564, 0.040790509432554245, 0.05941012501716614, 0.014410487376153469, 0.01341920904815197, 0.06265387684106827, 0.33901768922805786, 0.0030511284712702036, 0.0013138599460944533, 0.00019944993255194277, 0.0003325746220070869, 5.539594349102117e-05, 0.0001470465649617836, 0.008935135789215565, 0.3387135863304138], [0.005471080541610718, 0.1889464408159256, 0.07867632806301117, 0.06225866824388504, 0.021826161071658134, 0.023536572232842445, 0.027204491198062897, 0.04511084780097008, 0.2683037221431732, 0.0040791709907352924, 0.0031182393431663513, 0.0005477099330164492, 0.0007156832725740969, 0.000564315530937165, 0.0008533255313523114, 0.0010418876772746444, 0.2677452862262726], [0.01980801671743393, 0.008580448105931282, 0.014234697446227074, 0.00992380827665329, 0.01028298120945692, 0.0091600576415658, 0.005750687327235937, 0.018989911302924156, 0.420198917388916, 0.005519409663975239, 0.009300841018557549, 0.006858759094029665, 0.004189517814666033, 0.010243996046483517, 0.010956753976643085, 0.015462791547179222, 0.4205385744571686], [0.026824219152331352, 0.024535151198506355, 0.032377954572439194, 0.06428729742765427, 0.05188821628689766, 0.06091118976473808, 0.005562410224229097, 0.07729799300432205, 0.2642455995082855, 0.03744874894618988, 0.026658358052372932, 0.01375736203044653, 0.00215017213486135, 0.0019419833552092314, 0.0023957695811986923, 0.04324641451239586, 0.264471173286438], [0.02811388112604618, 0.1908879280090332, 0.10133616626262665, 0.06870381534099579, 0.01579757034778595, 0.02287447638809681, 0.0036996754352003336, 0.04725593701004982, 0.13034150004386902, 0.031646616756916046, 0.11990267783403397, 0.010809540748596191, 0.01338377594947815, 0.006467808969318867, 0.00892630871385336, 0.06948082149028778, 0.13037154078483582], [0.03820781409740448, 0.013281067833304405, 0.012624234892427921, 0.020400894805788994, 0.030536005273461342, 0.09677345305681229, 0.009445511735975742, 0.027323702350258827, 0.13141368329524994, 0.22022569179534912, 0.05348948761820793, 0.03902488946914673, 0.007149926386773586, 0.008481760509312153, 0.027124639600515366, 0.13289502263069153, 0.13160213828086853], [0.07273712754249573, 0.024743838235735893, 0.03470733389258385, 0.0245047640055418, 0.01619902066886425, 0.07490096241235733, 0.009171618148684502, 0.03618757054209709, 0.07154164463281631, 0.04914092645049095, 0.16088786721229553, 0.1108478307723999, 0.03542714565992355, 0.022601546719670296, 0.039940010756254196, 0.14479517936706543, 0.07166562229394913], [0.0283042024821043, 0.011317034251987934, 0.02489718608558178, 0.015414466150105, 0.0015972380060702562, 0.028210356831550598, 0.0049884323962032795, 0.02013750746846199, 0.14350950717926025, 0.013215675950050354, 0.0776049941778183, 0.08741527050733566, 0.05300682783126831, 0.08616761863231659, 0.1291641891002655, 0.13118891417980194, 0.1438606083393097], [0.03766375407576561, 0.021850580349564552, 0.04736213758587837, 0.02441374585032463, 0.001717879087664187, 0.020973367616534233, 0.006252184975892305, 0.018372710794210434, 0.1686561405658722, 0.013071833178400993, 0.15169283747673035, 0.05590406060218811, 0.04113074764609337, 0.04716875031590462, 0.0711827203631401, 0.10357741266489029, 0.16900914907455444], [0.04237581044435501, 0.034525468945503235, 0.01796027459204197, 0.07954207062721252, 0.005555150099098682, 0.011201413348317146, 0.004228738136589527, 0.03591584041714668, 0.23428994417190552, 0.08004027605056763, 0.08197487890720367, 0.0256463922560215, 0.011752222664654255, 0.011631840839982033, 0.028098609298467636, 0.06081730127334595, 0.2344437688589096], [0.019834494218230247, 0.008578206412494183, 0.014228561893105507, 0.009924551472067833, 0.010270298458635807, 0.009148378856480122, 0.005743163637816906, 0.018999049440026283, 0.4201512038707733, 0.005528767127543688, 0.009308217093348503, 0.006860585417598486, 0.004192777909338474, 0.010260799899697304, 0.010981878265738487, 0.015497867949306965, 0.42049112915992737]], [[0.004420050885528326, 0.1266983151435852, 0.16905458271503448, 0.07324151694774628, 0.0168790090829134, 0.06080598756670952, 0.015546832233667374, 0.1149018406867981, 0.20513631403446198, 0.000623668369371444, 0.0006565509829670191, 0.00024722624220885336, 0.0002423793775960803, 0.001202116720378399, 0.0012709980364888906, 0.004020807798951864, 0.20505185425281525], [0.003970958758145571, 0.1215076893568039, 0.07590468972921371, 0.04486093670129776, 0.004666517488658428, 0.009503792971372604, 0.005105611868202686, 0.0201373640447855, 0.3544002175331116, 0.0024523886386305094, 0.0003674894105643034, 0.0003268657310400158, 0.00043549813563004136, 0.00032785756047815084, 0.0006079814629629254, 0.0015747409779578447, 0.3538493812084198], [0.004103243350982666, 0.24471741914749146, 0.05287128686904907, 0.030641809105873108, 0.0027440302073955536, 0.00585038959980011, 0.0046775764785707, 0.008326535113155842, 0.31769245862960815, 0.002939981408417225, 0.0014126028399914503, 0.0005398806533776224, 0.0011916563380509615, 0.0009985454380512238, 0.0014705669600516558, 0.002631161827594042, 0.31719082593917847], [0.004044024273753166, 0.23380111157894135, 0.15574638545513153, 0.019537171348929405, 0.015819698572158813, 0.03960483521223068, 0.08028294146060944, 0.03317998722195625, 0.2058725506067276, 0.002567046321928501, 0.0007795484270900488, 0.00016869918908923864, 0.0008866242715157568, 0.0004209131875541061, 0.0006938352016732097, 0.0010381081374362111, 0.20555660128593445], [0.002462410368025303, 0.04369528964161873, 0.07162564992904663, 0.09851499646902084, 0.038973867893218994, 0.017387233674526215, 0.004132942762225866, 0.00568706588819623, 0.3570542633533478, 0.00098380574490875, 0.0005859395023435354, 0.0004364593478385359, 0.0003401575959287584, 0.00041530063026584685, 0.0003914370317943394, 0.0004994593327865005, 0.35681360960006714], [0.0027360650710761547, 0.024508515372872353, 0.030636055395007133, 0.06254623830318451, 0.05546869710087776, 0.019308557733893394, 0.009677473455667496, 0.005218904465436935, 0.39305683970451355, 0.0012013415107503533, 0.00033970651566050947, 0.00018978756270371377, 0.0004091697046533227, 0.00045075680827721953, 0.00039951736107468605, 0.0009409427875652909, 0.392911434173584], [0.0016681656707078218, 0.010791630484163761, 0.032815542072057724, 0.07728085666894913, 0.23383007943630219, 0.0634358674287796, 0.0039275032468140125, 0.0025694130454212427, 0.286190390586853, 0.00036607604124583304, 9.939416486304253e-05, 0.00023683186736889184, 0.00016975868493318558, 0.00015493850514758378, 6.693822069792077e-05, 0.0003024028264917433, 0.2860943377017975], [0.00348345167003572, 0.023145731538534164, 0.029527956619858742, 0.08934146165847778, 0.08331946283578873, 0.08211545646190643, 0.06002994626760483, 0.018208447843790054, 0.3024033308029175, 0.000712734879925847, 0.0003517790464684367, 0.00036900214035995305, 0.0004219951806589961, 0.0006284616538323462, 0.0008821941446512938, 0.002642233157530427, 0.30241644382476807], [0.011426216922700405, 0.009049708023667336, 0.012192009948194027, 0.015569650568068027, 0.008999671787023544, 0.011024982668459415, 0.0033921634312719107, 0.012049413286149502, 0.43733328580856323, 0.008446041494607925, 0.009078006260097027, 0.006193111650645733, 0.002964327810332179, 0.002092530718073249, 0.0037298286333680153, 0.00897007156163454, 0.4374888837337494], [0.030517419800162315, 0.0017176135443150997, 0.004947955720126629, 0.0203742366284132, 0.002899325918406248, 0.0026137458626180887, 0.0012104575289413333, 0.03256400674581528, 0.40427279472351074, 0.022246314212679863, 0.008757486008107662, 0.008829270489513874, 0.0024329901207238436, 0.002917352830991149, 0.0050587886944413185, 0.04412335902452469, 0.40451690554618835], [0.00934809073805809, 0.011453364044427872, 0.0036958991549909115, 0.0031375307589769363, 0.0008310616249218583, 0.00158501707483083, 0.00016332736413460225, 0.01181812584400177, 0.295293927192688, 0.2820739150047302, 0.020782075822353363, 0.010273581370711327, 0.0029598919209092855, 0.00500992638990283, 0.011379297822713852, 0.034435030072927475, 0.2957599461078644], [0.009084653109312057, 0.0006854653474874794, 0.0005500874249264598, 0.0018192435381934047, 0.0005331854335963726, 0.0003550722321961075, 0.0001159801977337338, 0.0018130653770640492, 0.34873291850090027, 0.14139458537101746, 0.04208522289991379, 0.045032303780317307, 0.025682520121335983, 0.006735603790730238, 0.007984030060470104, 0.018208835273981094, 0.3491871953010559], [0.0053117056377232075, 0.00025196128990501165, 0.00045175079139880836, 0.001449344796128571, 0.0004991032183170319, 0.0003659848007373512, 3.623289376264438e-05, 0.0008738187607377768, 0.3923167288303375, 0.06722195446491241, 0.02436753734946251, 0.07532060146331787, 0.0110842389985919, 0.005339708644896746, 0.007177589926868677, 0.015029292553663254, 0.3929024934768677], [0.0014845877885818481, 0.00020282679179217666, 0.0004995363997295499, 0.00012627163960132748, 7.107922283466905e-05, 0.0002511218190193176, 3.331775587867014e-05, 0.00013318117999006063, 0.38176634907722473, 0.06554548442363739, 0.0251153577119112, 0.02480188012123108, 0.08795204013586044, 0.011713107116520405, 0.014296168461441994, 0.0037748883478343487, 0.382232666015625], [0.0025338674895465374, 0.00031027416116558015, 0.0005934437504038215, 0.00026551485643722117, 0.0002827864373102784, 0.0005936676752753556, 7.575721974717453e-05, 0.00022718444233760238, 0.3242541551589966, 0.07145193219184875, 0.03864063322544098, 0.032356005162000656, 0.1333603858947754, 0.04058241844177246, 0.021624408662319183, 0.007989378646016121, 0.3248581886291504], [0.008402728475630283, 0.0018791983602568507, 0.002023938577622175, 0.0016244550934061408, 0.000734977365937084, 0.0017260321183130145, 0.00037761463318020105, 0.005386863369494677, 0.23020325601100922, 0.1504465788602829, 0.09307001531124115, 0.041518714278936386, 0.03147316351532936, 0.05656770244240761, 0.09995003789663315, 0.04387686029076576, 0.23073779046535492], [0.011424877680838108, 0.009034248068928719, 0.01216176524758339, 0.015556448139250278, 0.008996876887977123, 0.011022094637155533, 0.003387703327462077, 0.012043501250445843, 0.4373071491718292, 0.008479166775941849, 0.009105510078370571, 0.006214453838765621, 0.0029697800055146217, 0.002097861375659704, 0.0037407982163131237, 0.008994069881737232, 0.43746358156204224]], [[0.005105744581669569, 0.0911070853471756, 0.020794546231627464, 0.06420891731977463, 0.009805277921259403, 0.04237595573067665, 0.013696841895580292, 0.03515808284282684, 0.1733161062002182, 0.12482968717813492, 0.050272002816200256, 0.011151405051350594, 0.0037445160560309887, 0.0075047630816698074, 0.020641835406422615, 0.15274009108543396, 0.17354722321033478], [0.006423650309443474, 0.05394363030791283, 0.17512978613376617, 0.43607503175735474, 0.030811473727226257, 0.07436548173427582, 0.019245577976107597, 0.08345205336809158, 0.05096716433763504, 0.003018262330442667, 0.0037483456544578075, 0.0004999149823561311, 0.00013760202273260802, 0.00021285071852616966, 0.0005034448695369065, 0.010472883470356464, 0.050992876291275024], [0.018413737416267395, 0.1352156549692154, 0.15041641891002655, 0.17828987538814545, 0.06867485493421555, 0.09728401154279709, 0.035086825489997864, 0.11978700011968613, 0.08465901762247086, 0.0027507860213518143, 0.01060415804386139, 0.0007669285405427217, 0.0008080457337200642, 0.0005498760147020221, 0.0008260412723757327, 0.011163183487951756, 0.08470353484153748], [0.003984613344073296, 0.11092612147331238, 0.14696677029132843, 0.06717951595783234, 0.026056475937366486, 0.06739041954278946, 0.029580779373645782, 0.05975344777107239, 0.2299407422542572, 0.00662103109061718, 0.005812695249915123, 0.0020389158744364977, 0.00023032139870338142, 0.0004292786761652678, 0.001284569501876831, 0.011850080452859402, 0.22995422780513763], [0.002610620576888323, 0.05329253897070885, 0.07848281413316727, 0.03147653117775917, 0.02376451902091503, 0.05199495702981949, 0.015109510160982609, 0.030399631708860397, 0.3475860059261322, 0.006430253852158785, 0.0017697770381346345, 0.0037355064414441586, 0.000640927697531879, 0.00023232429521158338, 0.00042635094723664224, 0.004968475550413132, 0.3470793664455414], [0.005790722090750933, 0.05595386400818825, 0.07701115310192108, 0.11726585030555725, 0.03268156573176384, 0.04541349038481712, 0.046410590410232544, 0.049196332693099976, 0.26831933856010437, 0.006442303769290447, 0.004564326256513596, 0.0011788730043917894, 0.0008824720280244946, 0.0004101727972738445, 0.0012996913865208626, 0.019185950979590416, 0.2679932713508606], [0.0011707909870892763, 0.018569553270936012, 0.02420329675078392, 0.03415117412805557, 0.0223215464502573, 0.0692625343799591, 0.01225161924958229, 0.020756829530000687, 0.39523300528526306, 0.002469658385962248, 0.0005711872945539653, 0.0008048827294260263, 6.381727143889293e-05, 2.9046395866316743e-05, 8.3308776083868e-05, 0.0032584371510893106, 0.39479920268058777], [0.004729016218334436, 0.11458010226488113, 0.08157681673765182, 0.26571789383888245, 0.038655489683151245, 0.12337535619735718, 0.05719822645187378, 0.030496535822749138, 0.13191869854927063, 0.0026473761536180973, 0.004670982714742422, 0.0005967780598439276, 0.00017445682897232473, 0.0006383605650626123, 0.0015284724067896605, 0.009621094912290573, 0.13187429308891296], [0.0020520559046417475, 0.0018406618619337678, 0.006071656476706266, 0.0019317823462188244, 0.001352562103420496, 0.006889020558446646, 0.0007401554612442851, 0.002467881189659238, 0.48450881242752075, 0.00202777236700058, 0.0012497866991907358, 0.0006144680082798004, 0.0003891513333655894, 0.0005871561588719487, 0.0005445200949907303, 0.0020153741352260113, 0.4847172498703003], [0.013733774423599243, 0.009574252180755138, 0.008746680803596973, 0.008951568976044655, 0.0027222868520766497, 0.024615788832306862, 0.002326545538380742, 0.0062681217677891254, 0.21995943784713745, 0.07933208346366882, 0.07519316673278809, 0.04829152300953865, 0.009177383035421371, 0.02306598238646984, 0.034876879304647446, 0.2128230631351471, 0.22034139931201935], [0.004843204747885466, 0.0336439311504364, 0.06470245867967606, 0.06942503899335861, 0.005320457741618156, 0.030456779524683952, 0.0027195822913199663, 0.01646280847489834, 0.09513810276985168, 0.0799405500292778, 0.049472659826278687, 0.03985505923628807, 0.0036948134656995535, 0.01668129302561283, 0.025873491540551186, 0.3663578927516937, 0.09541188925504684], [0.0061147394590079784, 0.009982898831367493, 0.008776696398854256, 0.006483661476522684, 0.01151349488645792, 0.19783256947994232, 0.003573478665202856, 0.006222090683877468, 0.09631194919347763, 0.1189933642745018, 0.011652293615043163, 0.30500897765159607, 0.05492006987333298, 0.0038331488613039255, 0.003744743065908551, 0.05868811532855034, 0.09634772688150406], [0.0029577920213341713, 0.006268859375268221, 0.020655956119298935, 0.0010027632815763354, 0.003831166308373213, 0.12467428296804428, 0.0014100599801167846, 0.0011361995711922646, 0.2098654806613922, 0.091877780854702, 0.009355146437883377, 0.23754984140396118, 0.05319197475910187, 0.0069496240466833115, 0.005284553859382868, 0.014030836522579193, 0.20995762944221497], [0.006022319663316011, 0.010365533642470837, 0.022541331127285957, 0.0010288951452821493, 0.0013846724759787321, 0.03282004967331886, 0.0010796115966513753, 0.0019692357163876295, 0.4094730019569397, 0.02030200883746147, 0.026183828711509705, 0.023900650441646576, 0.016958018764853477, 0.004261720925569534, 0.003201414132490754, 0.0085412273183465, 0.40996649861335754], [0.005099293310195208, 0.006434600334614515, 0.014146889559924603, 0.0011425132397562265, 0.0007825923967175186, 0.022038228809833527, 0.0009783431887626648, 0.0014403992099687457, 0.4417753219604492, 0.013710400089621544, 0.01806250773370266, 0.00962051097303629, 0.008859865367412567, 0.003519561141729355, 0.0021580432076007128, 0.007934906519949436, 0.4422961473464966], [0.00424864050000906, 0.018053347244858742, 0.014590892009437084, 0.006673718336969614, 0.006026660092175007, 0.07573217898607254, 0.010383738204836845, 0.005573029164224863, 0.28597158193588257, 0.05072358250617981, 0.048723578453063965, 0.09867778420448303, 0.007499033119529486, 0.029175635427236557, 0.02901400998234749, 0.022380990907549858, 0.2865515649318695], [0.0020503560081124306, 0.0018381867557764053, 0.006066328380256891, 0.0019284342415630817, 0.0013502700021490455, 0.006877555977553129, 0.0007384041091427207, 0.0024629896506667137, 0.4845215678215027, 0.0020299579482525587, 0.0012505349004641175, 0.0006148909451439977, 0.00038951373426243663, 0.0005877254297956824, 0.0005448164301924407, 0.002017260529100895, 0.48473113775253296]], [[0.004559527616947889, 0.000788952864240855, 0.0025498527102172375, 0.00043330114567652345, 0.00045689012040384114, 0.0006891385419294238, 6.610320997424424e-05, 0.004297088366001844, 0.32817378640174866, 0.09726065397262573, 0.042058736085891724, 0.016970792785286903, 0.007064131088554859, 0.009209049865603447, 0.0269177109003067, 0.1292913854122162, 0.3292129337787628], [0.0119582274928689, 0.028980802744627, 0.0328555703163147, 0.2566097378730774, 0.02039879374206066, 0.040396884083747864, 0.01524291280657053, 0.05649041384458542, 0.25364869832992554, 0.0063878498040139675, 0.004316553007811308, 0.0011726761003956199, 0.001430540345609188, 0.0015171411214396358, 0.0008085212903097272, 0.014190485700964928, 0.25359416007995605], [0.005526285618543625, 0.014378851279616356, 0.061596766114234924, 0.00858283694833517, 0.0023474351037293673, 0.0147481644526124, 0.0024471022188663483, 0.01132805272936821, 0.43023717403411865, 0.0010106076952069998, 0.0031537143513560295, 0.0008174902759492397, 0.0006932400865480304, 0.00444023497402668, 0.0027562291361391544, 0.004864922259002924, 0.4310709238052368], [0.0059042214415967464, 0.03491642326116562, 0.005537510383874178, 0.04781602323055267, 0.037210576236248016, 0.15455812215805054, 0.038282498717308044, 0.01857975497841835, 0.32544761896133423, 0.0013055438175797462, 0.0003880287695210427, 0.0004887021495960653, 0.0006392252980731428, 0.0004481000651139766, 0.00046945796930231154, 0.002928073052316904, 0.32508018612861633], [0.006990362424403429, 0.02298472821712494, 0.004950795788317919, 0.09477657079696655, 0.03258771449327469, 0.13215355575084686, 0.020249199122190475, 0.016518551856279373, 0.3308350741863251, 0.002744380384683609, 0.00039450314943678677, 0.00027286590193398297, 0.0005930708721280098, 0.0011334207374602556, 0.0003167016548104584, 0.0018019923008978367, 0.3306964337825775], [0.013341106474399567, 0.029822537675499916, 0.00875923316925764, 0.10356228053569794, 0.0186845101416111, 0.0708804503083229, 0.28577691316604614, 0.01769726350903511, 0.20928701758384705, 0.006457692477852106, 0.0008896054932847619, 0.0006834467058070004, 0.0022377928253263235, 0.0029984142165631056, 0.004237498622387648, 0.015372789464890957, 0.20931147038936615], [0.006526425946503878, 0.010434571653604507, 0.0012898542918264866, 0.12139632552862167, 0.012297768145799637, 0.06764482706785202, 0.007496734149754047, 0.023653080686926842, 0.37102803587913513, 0.0018435518722981215, 0.00016437556769233197, 5.465562207973562e-05, 3.5044467949774116e-05, 7.795871351845562e-05, 3.9380931411869824e-05, 0.005023255944252014, 0.3709942400455475], [0.0038711640518158674, 0.003608987433835864, 0.007837025448679924, 0.014432350173592567, 0.0029854201711714268, 0.016951048746705055, 0.0020319868344813585, 0.005767277907580137, 0.46739304065704346, 0.00128552142996341, 0.002121981466189027, 0.0013270488707348704, 0.00030418383539654315, 0.0006217916961759329, 0.0005152271478436887, 0.001263331389054656, 0.4676826596260071], [0.005330605898052454, 0.003307645907625556, 0.010106753557920456, 0.006291170604526997, 0.005423597060143948, 0.00964100006967783, 0.001972002675756812, 0.0021975080017000437, 0.456297367811203, 0.0037741262931376696, 0.003716695122420788, 0.006658582016825676, 0.0034265785943716764, 0.014179150573909283, 0.007708790712058544, 0.003593786619603634, 0.4563746154308319], [0.003284159814938903, 0.001018995768390596, 0.001203836058266461, 0.0016154367476701736, 0.0017419243231415749, 0.003985143266618252, 0.0003202772350050509, 0.0009198729530908167, 0.4503265917301178, 0.011200111359357834, 0.018842868506908417, 0.03046409785747528, 0.002788781886920333, 0.007832895033061504, 0.006276383996009827, 0.0074068219400942326, 0.4507717490196228], [0.002434982219710946, 0.0002808681165333837, 0.0006167256506159902, 0.0015070175286382437, 0.00026110096951015294, 0.00045292111462913454, 0.0001414354337612167, 0.0028285107109695673, 0.122406966984272, 0.00938814040273428, 0.007447195239365101, 0.018445292487740517, 0.00810359138995409, 0.02039041556417942, 0.021811190992593765, 0.660796582698822, 0.12268698215484619], [0.0013778489083051682, 0.00036587839713320136, 0.00036740044015459716, 0.0003835103998426348, 0.0004604478308465332, 0.0003604190133046359, 0.00010386012581875548, 0.0005261037149466574, 0.4114050567150116, 0.008736945688724518, 0.003853559959679842, 0.00979110598564148, 0.07607895135879517, 0.027503682300448418, 0.006908680312335491, 0.03988710790872574, 0.4118894934654236], [0.002003398025408387, 0.0005276554729789495, 0.0002911758201662451, 0.0014142632717266679, 6.888956704642624e-05, 0.0006521879695355892, 1.5909998182905838e-05, 0.0005114514497108757, 0.3222295939922333, 0.0038738083094358444, 0.006736425217241049, 0.009132626466453075, 0.012696393765509129, 0.1576133519411087, 0.04806869477033615, 0.11098641902208328, 0.3231777846813202], [0.002857973799109459, 0.0010368343209847808, 0.0007925468380562961, 0.000811257166787982, 0.00016788629000075161, 0.0005031348555348814, 0.0003956520522478968, 0.000386344559956342, 0.21825887262821198, 0.004878087900578976, 0.014012823812663555, 0.017162933945655823, 0.09953681379556656, 0.06072201579809189, 0.30620676279067993, 0.05378515273332596, 0.21848493814468384], [0.0033068566117435694, 0.0004578383232001215, 0.00046508637024089694, 0.000969412038102746, 0.00020914622291456908, 0.0002484262513462454, 0.00012482100282795727, 0.0009671279112808406, 0.3901226222515106, 0.005459696985781193, 0.019207900390028954, 0.015136857517063618, 0.024081578478217125, 0.07690244913101196, 0.02174494042992592, 0.04950181767344475, 0.391093373298645], [0.0011034932686015964, 0.00041215107194148004, 0.0003774958022404462, 0.0010573997860774398, 0.00021009071497246623, 0.0011409358121454716, 0.00012127727677579969, 0.0006731980829499662, 0.4345414340496063, 0.001520061632618308, 0.0063075111247599125, 0.017148710787296295, 0.013547779992222786, 0.03630455210804939, 0.027358246967196465, 0.02274540811777115, 0.43543022871017456], [0.005336220841854811, 0.0033057851251214743, 0.010103982873260975, 0.006290243938565254, 0.0054209367372095585, 0.009648711420595646, 0.001973511418327689, 0.0021955694537609816, 0.45624688267707825, 0.003775506978854537, 0.0037189340218901634, 0.0066702477633953094, 0.0034362846054136753, 0.014226618222892284, 0.007730051409453154, 0.003597069764509797, 0.4563234746456146]], [[0.003370942547917366, 0.04881782457232475, 0.03230999782681465, 0.0675431564450264, 0.03540462628006935, 0.3920157849788666, 0.10692373663187027, 0.1143830195069313, 0.08525600284337997, 0.00179760018363595, 0.0013329824432730675, 0.01075056754052639, 0.005185674410313368, 0.0023407794069498777, 0.0021522543393075466, 0.005133139435201883, 0.08528196066617966], [0.006229700054973364, 0.03315015882253647, 0.01571987196803093, 0.07278934866189957, 0.02622600458562374, 0.07043248414993286, 0.1663273721933365, 0.07251719385385513, 0.2675327956676483, 0.00032645263127051294, 0.0003248643479309976, 0.0002673377748578787, 0.00011943218851229176, 0.00021623271459247917, 0.00013916415628045797, 0.00014406828267965466, 0.26753750443458557], [0.007965737022459507, 0.047513965517282486, 0.037971071898937225, 0.018080836161971092, 0.03044014796614647, 0.07502014189958572, 0.06291737407445908, 0.031013887375593185, 0.33791661262512207, 0.0017014400800690055, 0.001945211784914136, 0.002674452029168606, 0.0023524488788098097, 0.0017909761518239975, 0.0013948706910014153, 0.001281709992326796, 0.3380189538002014], [0.003741672495380044, 0.0804874524474144, 0.012497924268245697, 0.008312543854117393, 0.08569295704364777, 0.028727207332849503, 0.02198808826506138, 0.029839633032679558, 0.3631247878074646, 0.001788897323422134, 0.0006236655754037201, 0.00042825372656807303, 0.00010942654625978321, 7.633345376234502e-06, 1.2319670531724114e-05, 0.00011274260032223538, 0.36250489950180054], [0.015540530905127525, 0.04487740620970726, 0.007292138412594795, 0.2619316875934601, 0.021228685975074768, 0.011393985711038113, 0.025789447128772736, 0.03199133276939392, 0.2898111343383789, 0.0005804746760986745, 0.00011200936569366604, 0.00011535434168763459, 3.435305552557111e-05, 8.08266759122489e-06, 1.885876372398343e-05, 0.00021526942146010697, 0.28905925154685974], [0.023224031552672386, 0.16655676066875458, 0.018678585067391396, 0.36063358187675476, 0.030334828421473503, 0.011313293129205704, 0.04599607363343239, 0.02245994284749031, 0.15696081519126892, 0.004470486659556627, 0.0013387985527515411, 0.00039366536657325923, 0.00011838461796287447, 5.950408012722619e-05, 0.00010068350093206391, 0.0006687200511805713, 0.15669189393520355], [0.04010115936398506, 0.08965997397899628, 0.003936432301998138, 0.46130096912384033, 0.0445362813770771, 0.010296289809048176, 0.016315732151269913, 0.04378350451588631, 0.14492268860340118, 0.0003446432820055634, 0.0001834815484471619, 1.958394750545267e-05, 4.12821646023076e-06, 3.717936181146797e-07, 1.5065513707668288e-06, 3.8350674003595486e-05, 0.14455482363700867], [0.008242328651249409, 0.02511579543352127, 0.016535207629203796, 0.057554397732019424, 0.03570202365517616, 0.17274735867977142, 0.10733512789011002, 0.024890093132853508, 0.27348363399505615, 0.0018323649419471622, 0.0009202899527736008, 0.000946124317124486, 0.000476937711937353, 9.822175343288109e-05, 0.00014358140469994396, 0.000658158038277179, 0.27331820130348206], [0.014842351898550987, 0.01327650435268879, 0.016149787232279778, 0.011800777167081833, 0.005971558857709169, 0.008221070282161236, 0.004974676296114922, 0.0046539511531591415, 0.4087497591972351, 0.018472520634531975, 0.02015983685851097, 0.021893126890063286, 0.009429410099983215, 0.0056530870497226715, 0.006247894838452339, 0.020583558827638626, 0.40892016887664795], [0.011694489046931267, 0.0035602026619017124, 0.0014882980613037944, 0.001248420448973775, 0.008290162310004234, 0.05803222954273224, 0.00529091339558363, 0.004606747999787331, 0.40420520305633545, 0.018067996948957443, 0.005787001922726631, 0.06573593616485596, 0.0035199448466300964, 0.0014263902558013797, 0.001586321392096579, 0.0006910592783242464, 0.40476879477500916], [0.0017565799644216895, 0.0016134293982759118, 0.0027119028382003307, 0.000956268107984215, 0.0012822869466617703, 0.009463975206017494, 0.0012486862251535058, 0.0025284753646701574, 0.45313942432403564, 0.007141444366425276, 0.005156685598194599, 0.02251514233648777, 0.00954648107290268, 0.015542554669082165, 0.006399105302989483, 0.005228354129940271, 0.4537692964076996], [0.011386871337890625, 0.002111377427354455, 0.000706756953150034, 0.0013555969344452024, 0.0011755507439374924, 0.0006833676598034799, 0.0002750402200035751, 0.002838957356289029, 0.325282484292984, 0.08476478606462479, 0.025457805022597313, 0.06521104276180267, 0.011414819397032261, 0.004828022792935371, 0.004017669707536697, 0.13297070562839508, 0.3255191147327423], [0.006476139649748802, 0.0008783658850006759, 0.0005277867894619703, 0.00039031635969877243, 0.0004664714797399938, 0.0007430788828060031, 8.506329322699457e-05, 0.0007464757072739303, 0.16273601353168488, 0.04920459911227226, 0.012257130816578865, 0.06546778976917267, 0.02271001785993576, 0.20734331011772156, 0.2077716588973999, 0.09920534491539001, 0.16299042105674744], [0.008416908793151379, 0.0013125152327120304, 0.0007978067151270807, 0.0002654278068803251, 0.0002587765920907259, 0.0005732472636736929, 0.0001422864879714325, 0.0010867429664358497, 0.18285620212554932, 0.025519372895359993, 0.02488243579864502, 0.040679220110177994, 0.0383002944290638, 0.008951788768172264, 0.013566715642809868, 0.4692017138004303, 0.1831885278224945], [0.005189163610339165, 0.0006860109278932214, 0.0006969798705540597, 0.0001929131685756147, 0.00023091590264812112, 0.0004794131964445114, 6.954477430554107e-05, 0.001333426684141159, 0.11603162437677383, 0.03667369484901428, 0.019567517563700676, 0.035262979567050934, 0.05337856709957123, 0.011384841986000538, 0.014427675865590572, 0.5881808996200562, 0.1162138506770134], [0.006338529754430056, 0.00722100492566824, 0.001404008362442255, 0.0005628236103802919, 0.002245223382487893, 0.0029457947239279747, 8.703795174369588e-05, 0.003137916326522827, 0.1470586508512497, 0.4715854525566101, 0.13366767764091492, 0.040407732129096985, 0.01296455878764391, 0.00249129137955606, 0.0028746367897838354, 0.01769717037677765, 0.14731045067310333], [0.014840803109109402, 0.013255669735372066, 0.01613742485642433, 0.011793873272836208, 0.005963553674519062, 0.008214526809751987, 0.00497058080509305, 0.0046472446992993355, 0.4087449610233307, 0.018484093248844147, 0.02016022428870201, 0.02191845513880253, 0.009438002482056618, 0.00566423824056983, 0.006259399000555277, 0.02059193141758442, 0.40891486406326294]], [[0.003993752412497997, 0.0013385460479184985, 0.0047914679162204266, 0.003591368906199932, 0.005904020741581917, 0.02256336808204651, 0.0030767114367336035, 0.0019530488643795252, 0.1198609247803688, 0.283425897359848, 0.03495556488633156, 0.20913217961788177, 0.06221076101064682, 0.018787436187267303, 0.027225757017731667, 0.07696833461523056, 0.12022089958190918], [0.008261207491159439, 0.027138326317071915, 0.15395762026309967, 0.012650390155613422, 0.06177956238389015, 0.28440341353416443, 0.034142471849918365, 0.023110302165150642, 0.171820729970932, 0.009930008091032505, 0.0017126131569966674, 0.017165325582027435, 0.012370679527521133, 0.0027852668426930904, 0.004340345039963722, 0.0025703483261168003, 0.17186138033866882], [0.004771775100380182, 0.007082073949277401, 0.0314272902905941, 0.0036075180396437645, 0.004755150992423296, 0.023166656494140625, 0.0028421124443411827, 0.005856794770807028, 0.43119698762893677, 0.002630728529766202, 0.001089355326257646, 0.003610256128013134, 0.011623641476035118, 0.01512613333761692, 0.016638105735182762, 0.003055887995287776, 0.4315195083618164], [0.007425465155392885, 0.0703849047422409, 0.1774425506591797, 0.010957038961350918, 0.021544698625802994, 0.3787921965122223, 0.044837888330221176, 0.02039637416601181, 0.1019025593996048, 0.012729426845908165, 0.0011528690811246634, 0.03222086280584335, 0.010329254902899265, 0.0010545023251324892, 0.0016127856215462089, 0.005335953086614609, 0.10188055783510208], [0.0029996430967003107, 0.026763509958982468, 0.11934029310941696, 0.008635981939733028, 0.010709026828408241, 0.36904826760292053, 0.009430112317204475, 0.010960892774164677, 0.19858476519584656, 0.003216436365619302, 0.00029846461256965995, 0.03673403337597847, 0.0030582044273614883, 0.00015367318701464683, 0.0003008657367900014, 0.0014007758582010865, 0.1983650177717209], [0.005889039020985365, 0.019350072368979454, 0.046852149069309235, 0.0023042012471705675, 0.002209374448284507, 0.11938966810703278, 0.004886500537395477, 0.009063913486897945, 0.3805636167526245, 0.006478199269622564, 0.0003868359490297735, 0.005807084031403065, 0.007590980269014835, 0.0018962349276989698, 0.0044573531486094, 0.0025140647776424885, 0.38036060333251953], [0.003942021634429693, 0.033246442675590515, 0.04661192744970322, 0.01026337593793869, 0.006899035535752773, 0.3677421510219574, 0.010542401112616062, 0.009582511149346828, 0.24771469831466675, 0.006913176272064447, 0.00033522487501613796, 0.005386059638112783, 0.0015197106404229999, 0.00020825258980039507, 0.00041800516191869974, 0.0013687267201021314, 0.2473062127828598], [0.01034742034971714, 0.061718616634607315, 0.1919936239719391, 0.04037828743457794, 0.08423028886318207, 0.3948482275009155, 0.02267433889210224, 0.008270499296486378, 0.07766542583703995, 0.007564121391624212, 0.0011984413722530007, 0.013658230192959309, 0.004363464191555977, 0.0009361953125335276, 0.001155634643509984, 0.0013657136587426066, 0.07763147354125977], [0.0008756560855545104, 0.0006081643514335155, 0.0023821000941097736, 0.00030475048697553575, 0.0004171414184384048, 0.0029615648090839386, 0.000215228705201298, 0.0004806671931874007, 0.4894660711288452, 0.0014607614139094949, 0.0008804139215499163, 0.00390710961073637, 0.002176470123231411, 0.0010624444112181664, 0.001183721236884594, 0.0016297680558636785, 0.48998796939849854], [0.00045986881013959646, 0.00023576388775836676, 0.0013989780563861132, 0.00010590633610263467, 0.0004886252572759986, 0.016101066023111343, 0.00040648257709108293, 0.0001501672377344221, 0.10604394972324371, 0.015456512570381165, 0.0019657572265714407, 0.6424494385719299, 0.08990637212991714, 0.003565523074939847, 0.005717775318771601, 0.009308787994086742, 0.10623905807733536], [0.0004179886309430003, 0.0002866630384232849, 0.007188134361058474, 4.7599485696991906e-05, 0.0002682063786778599, 0.002377929165959358, 0.00022887489467393607, 0.0003644666576292366, 0.2808360755443573, 0.021073203533887863, 0.017181675881147385, 0.10318883508443832, 0.12473752349615097, 0.06642117351293564, 0.07715761661529541, 0.01649664156138897, 0.2817273437976837], [0.002286522416397929, 0.0004298420390114188, 0.004341352265328169, 1.834712384152226e-05, 3.2181233109440655e-05, 0.0025266497395932674, 5.141443034517579e-05, 0.00014303512580227107, 0.2495524287223816, 0.04128806293010712, 0.012103419750928879, 0.22171904146671295, 0.11481130123138428, 0.03248943015933037, 0.0337817519903183, 0.03457116335630417, 0.24985402822494507], [0.00038123567355796695, 9.707362187327817e-05, 0.0037924812640994787, 6.3657971622888e-06, 7.5434822974784765e-06, 0.001650141435675323, 9.586333362676669e-06, 3.309451130917296e-05, 0.25731226801872253, 0.0029601987916976213, 0.0020629994105547667, 0.018755417317152023, 0.0825469046831131, 0.22304780781269073, 0.1476300209760666, 0.0020913563203066587, 0.25761550664901733], [0.00010912123980233446, 1.460025850974489e-05, 0.0005517355748452246, 7.672455240026466e-07, 6.79503386891156e-07, 6.506004137918353e-05, 3.4186251696155523e-07, 9.851538379734848e-06, 0.4753793478012085, 0.00047420631744898856, 0.0013176656793802977, 0.001310355612076819, 0.012645707465708256, 0.015349369496107101, 0.016213014721870422, 0.0004618706298060715, 0.47609618306159973], [0.00048527796752750874, 4.1633076762082055e-05, 0.0012162142666056752, 4.105159405298764e-06, 2.70862892648438e-06, 0.00017066102009266615, 2.098478944390081e-06, 3.438854037085548e-05, 0.4711749851703644, 0.001355909276753664, 0.0020190614741295576, 0.0013871805276721716, 0.012695368379354477, 0.01855277456343174, 0.01767147146165371, 0.001271175337024033, 0.47191494703292847], [0.0006318666273728013, 0.00035305492929182947, 0.005681788083165884, 3.624396049417555e-05, 9.087371290661395e-05, 0.00661341892555356, 0.00013336549454834312, 0.00014994664525147527, 0.31037285923957825, 0.011156744323670864, 0.003724417183548212, 0.11595451831817627, 0.117418572306633, 0.05031771957874298, 0.05532537028193474, 0.011041784659028053, 0.3109974265098572], [0.0008743352955207229, 0.0006069379160180688, 0.0023802067153155804, 0.00030366468126885593, 0.00041568270535208285, 0.00295811053365469, 0.00021453610679600388, 0.00047938781790435314, 0.48947224020957947, 0.0014585658209398389, 0.0008794754976406693, 0.003908841405063868, 0.002178118098527193, 0.001063348725438118, 0.001184888300485909, 0.0016276933019980788, 0.4899939298629761]], [[0.017378585413098335, 0.016709530726075172, 0.02192264050245285, 0.006534617859870195, 0.007567672058939934, 0.010273301042616367, 0.001278425334021449, 0.007229949347674847, 0.2549307644367218, 0.31588026881217957, 0.015049525536596775, 0.007510794326663017, 0.012872375547885895, 0.013264773413538933, 0.008210907690227032, 0.028310120105743408, 0.25507572293281555], [0.004910493269562721, 0.044622451066970825, 0.5181931853294373, 0.034329064190387726, 0.005756134167313576, 0.00505676819011569, 0.0009837147081270814, 0.00718067679554224, 0.18384355306625366, 0.0012999624013900757, 0.002331748139113188, 0.00013568071881309152, 0.00017605161701794714, 0.00041269147186540067, 0.0006365765002556145, 0.006179030053317547, 0.183952197432518], [0.004916549194604158, 0.004587911535054445, 0.006970101036131382, 0.00858533289283514, 0.002715707290917635, 0.0028984439559280872, 0.0006683073006570339, 0.004440039861947298, 0.4792018234729767, 0.000495097425300628, 0.00048353467718698084, 0.0002778747002594173, 0.00023284953203983605, 0.0007232891512103379, 0.0008334909798577428, 0.002175401896238327, 0.4797942340373993], [0.004823579452931881, 0.08613643795251846, 0.046431463211774826, 0.01404997706413269, 0.06901515275239944, 0.186106875538826, 0.1479484587907791, 0.04693770781159401, 0.1904032975435257, 0.003807324916124344, 0.0029984903521835804, 0.0006426495965570211, 0.006278607994318008, 0.0008054818026721478, 0.0009979152819141746, 0.0019089989364147186, 0.19070765376091003], [0.0015614632284268737, 0.013726693578064442, 0.010440804995596409, 0.015902111306786537, 0.025265377014875412, 0.14347372949123383, 0.15251313149929047, 0.018069107085466385, 0.3025244176387787, 0.005606281571090221, 0.001221132348291576, 0.0007744447211734951, 0.0025148848071694374, 0.00040608234121464193, 0.0010330518707633018, 0.0020804970990866423, 0.3028867244720459], [0.016508065164089203, 0.02882392331957817, 0.017055852338671684, 0.014521168544888496, 0.002405213424935937, 0.010217517614364624, 0.006835163105279207, 0.030444404110312462, 0.4195799231529236, 0.006856197956949472, 0.01098709274083376, 0.00044689461356028914, 0.002688364125788212, 0.0013488751137629151, 0.0011925341095775366, 0.010072179138660431, 0.42001670598983765], [0.004602294880896807, 0.035371385514736176, 0.014008241705596447, 0.009971531108021736, 0.009580656886100769, 0.06832344830036163, 0.009846439585089684, 0.039506785571575165, 0.3995838761329651, 0.0028326997999101877, 0.002592699835076928, 0.0005638798465952277, 0.0008217107388190925, 0.0004992752801626921, 0.00022885753423906863, 0.0019354952964931726, 0.3997306227684021], [0.03437762334942818, 0.04071313515305519, 0.005630429834127426, 0.007909218780696392, 0.0022738506086170673, 0.0037646866403520107, 0.0008697047014720738, 0.01726190373301506, 0.3828907608985901, 0.09313038736581802, 0.01115424931049347, 0.0016766426851972938, 0.001661903690546751, 0.0006327586015686393, 0.0005437562358565629, 0.012841450050473213, 0.3826677203178406], [0.0118757588788867, 0.010547298938035965, 0.015713268890976906, 0.004203309305012226, 0.002388142514973879, 0.005080929026007652, 0.0007666688761673868, 0.007001087535172701, 0.4492567479610443, 0.008105170913040638, 0.010031886398792267, 0.003984170034527779, 0.0040039196610450745, 0.0033216525334864855, 0.004154632333666086, 0.010170423425734043, 0.44939473271369934], [0.00242200237698853, 0.0006884213071316481, 0.0010571640450507402, 0.0002763421507552266, 0.00018616033776197582, 0.0003920215822290629, 1.3083158592053223e-05, 0.0003109037643298507, 0.40929940342903137, 0.009260457940399647, 0.019178481772542, 0.02430614084005356, 0.016871890053153038, 0.0205436609685421, 0.009651831351220608, 0.07537394762039185, 0.41016823053359985], [0.004388017579913139, 0.002366981701925397, 0.03622645512223244, 0.0009531985269859433, 0.0002512405626475811, 0.0004244873416610062, 4.269340570317581e-05, 0.0003534597344696522, 0.37502631545066833, 0.007312152534723282, 0.030159318819642067, 0.009330742061138153, 0.011044470593333244, 0.02573368512094021, 0.034838516265153885, 0.08544372022151947, 0.37610459327697754], [0.0009547278750687838, 0.0002353080635657534, 0.0006676624761894345, 6.409281195374206e-05, 0.00014516402734443545, 0.0009299312951043248, 6.701538222841918e-05, 0.00026237909332849085, 0.35412874817848206, 0.00664070388302207, 0.007738995831459761, 0.034573283046483994, 0.0982760339975357, 0.044279731810092926, 0.0750938430428505, 0.020250245928764343, 0.3556921184062958], [0.002919350517913699, 0.00014477870718110353, 0.0002495268709026277, 9.211659198626876e-05, 8.105031156446785e-05, 0.00046425312757492065, 3.639682472567074e-05, 0.0002960775454994291, 0.266645222902298, 0.0034487799275666475, 0.007037733681499958, 0.03626633808016777, 0.07264333218336105, 0.16536551713943481, 0.14654715359210968, 0.030192406848073006, 0.267569899559021], [0.0057327416725456715, 0.00039516514516435564, 0.0010263306321576238, 9.072724787984043e-05, 9.439009591005743e-05, 8.05477102403529e-05, 2.011364631471224e-05, 0.0004609979805536568, 0.3992825448513031, 0.0013898939359933138, 0.010485448874533176, 0.00984457228332758, 0.07212023437023163, 0.02815556339919567, 0.05751651152968407, 0.012880034744739532, 0.400424063205719], [0.009527510963380337, 0.0007869577966630459, 0.002823961665853858, 0.00030767550924792886, 0.00032794426078908145, 0.00022554697352461517, 4.873703437624499e-05, 0.0006668545538559556, 0.36844947934150696, 0.0012574668508023024, 0.021574070677161217, 0.022150013595819473, 0.11362261325120926, 0.04010310024023056, 0.026650484651327133, 0.021952174603939056, 0.36952540278434753], [0.0030902656726539135, 0.0009195098537020385, 0.002098046476021409, 0.00016877925372682512, 0.0001234145020134747, 0.00043374343658797443, 4.0177517803385854e-05, 0.0005335178575478494, 0.40975987911224365, 0.003098654095083475, 0.0851627066731453, 0.007376433815807104, 0.024546731263399124, 0.015984579920768738, 0.014852664433419704, 0.020247885957360268, 0.41156280040740967], [0.011872228235006332, 0.01052071899175644, 0.015665380284190178, 0.004193538334220648, 0.002381826750934124, 0.005071197170764208, 0.0007656891830265522, 0.006987031549215317, 0.44931381940841675, 0.008105535060167313, 0.010029582306742668, 0.00398656539618969, 0.004004540853202343, 0.0033217878080904484, 0.004157494753599167, 0.010170815512537956, 0.4494522511959076]], [[0.008913540281355381, 0.0006829314515925944, 0.0031281630508601665, 0.00030009192414581776, 0.00035089219454675913, 0.001759113627485931, 0.00012913417594972998, 0.002070555230602622, 0.12233410030603409, 0.13772368431091309, 0.20343159139156342, 0.055641625076532364, 0.0701574981212616, 0.09910611808300018, 0.10137367993593216, 0.07043067365884781, 0.12246666848659515], [0.02751176618039608, 0.024159034714102745, 0.023592820391058922, 0.1445832997560501, 0.09750015288591385, 0.202224999666214, 0.07653571665287018, 0.25673431158065796, 0.0577586367726326, 0.009779456071555614, 0.003952621482312679, 0.0024773424956947565, 0.005470562726259232, 0.0023116853553801775, 0.0025955087039619684, 0.0050215646624565125, 0.05779048427939415], [0.024475907906889915, 0.04074174165725708, 0.0396224707365036, 0.03859742730855942, 0.03222135081887245, 0.028866969048976898, 0.018479159101843834, 0.07570339739322662, 0.32481980323791504, 0.004880881868302822, 0.024638567119836807, 0.0037614803295582533, 0.007175808772444725, 0.0018003600416705012, 0.00440263282507658, 0.004995821043848991, 0.3248162269592285], [0.008884324692189693, 0.022125890478491783, 0.009825317189097404, 0.0071654715575277805, 0.09772569686174393, 0.27357006072998047, 0.15740445256233215, 0.07360731810331345, 0.17294158041477203, 0.0015457518165931106, 0.0008029846358112991, 0.0005358491907827556, 0.00021044538880232722, 0.0002988128107972443, 0.0002829236618708819, 0.00037414743565022945, 0.1726989895105362], [0.018512140959501266, 0.017526833340525627, 0.024002408608794212, 0.008231657557189465, 0.023621628060936928, 0.05641362816095352, 0.013824665918946266, 0.046111639589071274, 0.3905484080314636, 0.006062052678316832, 0.0015031128423288465, 0.0006979292957112193, 0.000531914469320327, 0.0007963349926285446, 0.0006721874815411866, 0.0009894188260659575, 0.3899540305137634], [0.01988168992102146, 0.011795835569500923, 0.01707560196518898, 0.01203068532049656, 0.014804729260504246, 0.021116729825735092, 0.008912310935556889, 0.042481083422899246, 0.4177875220775604, 0.008459176868200302, 0.001814587158150971, 0.0017486230935901403, 0.0016087424010038376, 0.0004658525576815009, 0.00046563157229684293, 0.0017203915631398559, 0.41783076524734497], [0.018928244709968567, 0.030062800273299217, 0.009632110595703125, 0.012683519162237644, 0.03175576776266098, 0.050014324486255646, 0.02692190743982792, 0.14257201552391052, 0.3364681899547577, 0.002494734711945057, 0.0014001242816448212, 0.00022686805459670722, 0.00018708065908867866, 6.835155363660306e-05, 0.0001292120141442865, 0.0005419838707894087, 0.3359127342700958], [0.020654411986470222, 0.009708467870950699, 0.01484447717666626, 0.005635581444948912, 0.005327051039785147, 0.0017440877854824066, 0.0007545474800281227, 0.0054176882840693, 0.4599474370479584, 0.0015233741141855717, 0.004458594601601362, 0.002075082855299115, 0.001972536789253354, 0.0014049700694158673, 0.0015179242473095655, 0.002926965244114399, 0.46008673310279846], [0.011228637769818306, 0.005883045960217714, 0.016290275380015373, 0.006677302066236734, 0.0024471115320920944, 0.00513409823179245, 0.0019039304461330175, 0.005942048039287329, 0.43917980790138245, 0.008366926573216915, 0.014395671896636486, 0.00581879448145628, 0.008429646492004395, 0.007404949050396681, 0.006506940815597773, 0.014795057475566864, 0.43959569931030273], [0.00846025999635458, 0.0019214152125641704, 0.0017327957320958376, 0.00046790350461378694, 0.00016445685469079763, 0.0004813381237909198, 1.4800290955463424e-05, 0.001295703579671681, 0.27926596999168396, 0.05723419040441513, 0.05265139788389206, 0.012116220779716969, 0.03297659382224083, 0.03268353268504143, 0.052441976964473724, 0.18608899414539337, 0.28000253438949585], [0.005607645493000746, 0.000500095309689641, 0.0006661454099230468, 0.00041022986988537014, 0.00019211370090488344, 0.0011753732105717063, 0.00010459329496370628, 0.0005150376819074154, 0.10101576894521713, 0.03585054352879524, 0.04353448003530502, 0.060530513525009155, 0.20973624289035797, 0.07495477050542831, 0.1386769711971283, 0.22527427971363068, 0.10125516355037689], [0.0031953253783285618, 0.0001699210552033037, 0.0005718045867979527, 5.319255433278158e-05, 0.00010029536497313529, 0.00025709191686473787, 1.1546352652658243e-05, 0.0005885058199055493, 0.29203155636787415, 0.03565583750605583, 0.014455920085310936, 0.015718411654233932, 0.0232790969312191, 0.07432617247104645, 0.10934000462293625, 0.13751719892024994, 0.292728066444397], [0.006303438451141119, 0.0004736166447401047, 0.0006107649533078074, 0.000232794918701984, 0.00021594610007014126, 0.0007799601880833507, 3.803833169513382e-05, 0.0018736189231276512, 0.26635947823524475, 0.054509490728378296, 0.024582084268331528, 0.00883593037724495, 0.06305274367332458, 0.08420052379369736, 0.14148066937923431, 0.07952277362346649, 0.2669280767440796], [0.0038487864658236504, 0.00015592215640936047, 0.00042468926403671503, 3.970479156123474e-05, 8.894040365703404e-05, 0.00016048956604208797, 8.422052815149073e-06, 0.00034785515163093805, 0.2874422073364258, 0.024063101038336754, 0.010985521599650383, 0.014809911139309406, 0.27835899591445923, 0.03128990903496742, 0.04255788028240204, 0.017614761367440224, 0.28780290484428406], [0.004141564015299082, 0.00011860784434247762, 0.0004029510309919715, 4.821887705475092e-05, 0.00014665107300970703, 0.0002101055288221687, 1.4009598999109585e-05, 0.00042269821278750896, 0.3891921639442444, 0.020305251702666283, 0.006058109924197197, 0.01306024007499218, 0.13343219459056854, 0.014593067578971386, 0.014638426713645458, 0.013438066467642784, 0.3897777497768402], [0.0035496836062520742, 0.00017536882660351694, 0.00031609530560672283, 0.00013904485967941582, 0.0001091164376703091, 0.00018140740576200187, 2.416700590401888e-05, 0.0004794143605977297, 0.2794491946697235, 0.011725141666829586, 0.026393679901957512, 0.05920784920454025, 0.07417434453964233, 0.09884730726480484, 0.14340732991695404, 0.021796440705657005, 0.2800244987010956], [0.011221363209187984, 0.0058611370623111725, 0.016246208921074867, 0.0066537074744701385, 0.0024400674737989902, 0.005121526774019003, 0.0018985304050147533, 0.005926494486629963, 0.4392649233341217, 0.008359838277101517, 0.014372322708368301, 0.005819439422339201, 0.0084309671074152, 0.007405674550682306, 0.006508531514555216, 0.014788822270929813, 0.439680278301239]], [[0.0306701622903347, 0.1292310506105423, 0.10861409455537796, 0.08514351397752762, 0.10937508940696716, 0.0569685660302639, 0.05747164413332939, 0.021217547357082367, 0.11061517149209976, 0.016052134335041046, 0.06287457793951035, 0.025008130818605423, 0.004577512387186289, 0.007040305994451046, 0.005467359907925129, 0.05901488661766052, 0.11065822094678879], [0.03356469050049782, 0.21835041046142578, 0.02970985881984234, 0.03822793439030647, 0.02221178635954857, 0.018977049738168716, 0.010037008672952652, 0.08172161877155304, 0.17314298450946808, 0.019709866493940353, 0.09214501082897186, 0.004933816846460104, 0.0051571037620306015, 0.003140565473586321, 0.0043029142543673515, 0.07132761925458908, 0.17333978414535522], [0.0723181962966919, 0.036544524133205414, 0.02399425394833088, 0.01596604473888874, 0.016080062836408615, 0.01109517365694046, 0.007149949669837952, 0.08885099738836288, 0.3059309720993042, 0.004997994750738144, 0.035782746970653534, 0.005109894089400768, 0.010521999560296535, 0.009112564846873283, 0.013246867805719376, 0.03709539398550987, 0.30620241165161133], [0.01740470714867115, 0.059176620095968246, 0.021376149728894234, 0.03125555440783501, 0.014173476956784725, 0.05698207765817642, 0.009542708285152912, 0.02592284232378006, 0.2579106390476227, 0.014003976248204708, 0.08979861438274384, 0.031223073601722717, 0.006575165782123804, 0.0029036386404186487, 0.006337929517030716, 0.0970286875963211, 0.25838419795036316], [0.02452060393989086, 0.01349394116550684, 0.007710483390837908, 0.0056761871092021465, 0.01003273669630289, 0.013025617226958275, 0.004285040311515331, 0.01440286822617054, 0.42611417174339294, 0.004331996664404869, 0.02761840634047985, 0.006583582144230604, 0.002759317634627223, 0.000283123372355476, 0.0004700732242781669, 0.012028670869767666, 0.426663339138031], [0.011455507948994637, 0.007416325155645609, 0.006022854708135128, 0.008872303180396557, 0.013097690418362617, 0.012978608720004559, 0.006898950319737196, 0.014621845446527004, 0.43546822667121887, 0.0021214657463133335, 0.012420115992426872, 0.011270076967775822, 0.003285323502495885, 0.0017255217535421252, 0.0019435553112998605, 0.014284607954323292, 0.4361169636249542], [0.018834713846445084, 0.027964124456048012, 0.005101025104522705, 0.010365412570536137, 0.02215101383626461, 0.009694105945527554, 0.01132423896342516, 0.015313981100916862, 0.40941616892814636, 0.003711278084665537, 0.020651908591389656, 0.0056063514202833176, 0.0012981811305508018, 0.0004608895687852055, 0.0007714182720519602, 0.02760343626141548, 0.40973177552223206], [0.030829759314656258, 0.0648462176322937, 0.023091088980436325, 0.04657803475856781, 0.0401473343372345, 0.024723216891288757, 0.01378705631941557, 0.2512493431568146, 0.08023130148649216, 0.0229116789996624, 0.031449105590581894, 0.010500955395400524, 0.004389235749840736, 0.0022131619043648243, 0.0034238931257277727, 0.2693057060241699, 0.08032295852899551], [0.005665841978043318, 0.0019548346754163504, 0.003917010501027107, 0.0008303453214466572, 0.0008599025895819068, 0.0011831223964691162, 0.00021934133837930858, 0.004241488873958588, 0.48433801531791687, 0.0005546637694351375, 0.005041162483394146, 0.0005469773896038532, 0.00041578782838769257, 0.0009226111578755081, 0.0005357841146178544, 0.004128101281821728, 0.4846450686454773], [0.007197539787739515, 0.23467621207237244, 0.013682407326996326, 0.015267045237123966, 0.003186084097251296, 0.021842489019036293, 0.012569568119943142, 0.027540503069758415, 0.3220365345478058, 0.0021230594720691442, 0.0018589351093396544, 0.0028974744491279125, 0.000833368394523859, 0.0013429964892566204, 0.0028887407388538122, 0.007370350416749716, 0.32268673181533813], [0.0019134434405714273, 0.8684930205345154, 0.013678018003702164, 0.008373302407562733, 0.000564310816116631, 0.001247801585122943, 0.00232503330335021, 0.015443975105881691, 0.040955789387226105, 0.0006007515476085246, 0.0022852441761642694, 9.639908967074007e-05, 5.9586280258372426e-05, 0.00016088646952994168, 0.0003261975944042206, 0.0024946739431470633, 0.04098157584667206], [0.013910728506743908, 0.042021580040454865, 0.016952531412243843, 0.03136570006608963, 0.014598763547837734, 0.1592356562614441, 0.015181680209934711, 0.022869009524583817, 0.31176286935806274, 0.004690026864409447, 0.005013104062527418, 0.012045932933688164, 0.007709654048085213, 0.0047163693234324455, 0.005965595133602619, 0.019548481330275536, 0.31241244077682495], [0.01881362870335579, 0.11324555426836014, 0.04581518471240997, 0.006511281244456768, 0.0021469241473823786, 0.018125640228390694, 0.004843913950026035, 0.032868269830942154, 0.3230080008506775, 0.0020155785605311394, 0.010078292340040207, 0.002984242979437113, 0.009081819094717503, 0.03491366282105446, 0.04017724469304085, 0.011806333437561989, 0.323564350605011], [0.022907566279172897, 0.06779477745294571, 0.029140233993530273, 0.003092866623774171, 0.0005785891553387046, 0.005700143054127693, 0.0015060430159792304, 0.031208284199237823, 0.3441377282142639, 0.0019301283173263073, 0.007523950655013323, 0.00226850644685328, 0.005685861688107252, 0.051253870129585266, 0.06688147783279419, 0.013709302060306072, 0.34468066692352295], [0.03022623248398304, 0.06777824461460114, 0.04176308959722519, 0.008315070532262325, 0.0011556034442037344, 0.014348349533975124, 0.004499042872339487, 0.04966636374592781, 0.33269402384757996, 0.0022566067054867744, 0.006280732341110706, 0.0025585852563381195, 0.005187130067497492, 0.03270724043250084, 0.04982475936412811, 0.017508534714579582, 0.3332303464412689], [0.006955794524401426, 0.17732207477092743, 0.01780001074075699, 0.0211767740547657, 0.0011854704935103655, 0.02470485307276249, 0.004915482830256224, 0.06268854439258575, 0.2819146513938904, 0.005918231792747974, 0.011893280781805515, 0.010618392378091812, 0.0022999285720288754, 0.008420434780418873, 0.015374165959656239, 0.06433295458555222, 0.28247886896133423], [0.005663195159286261, 0.00195591920055449, 0.0039177704602479935, 0.0008304807706736028, 0.0008589510107412934, 0.0011833644239231944, 0.00021922329324297607, 0.004245697520673275, 0.4843338429927826, 0.0005552212824113667, 0.005040270276367664, 0.00054716388694942, 0.0004161388787906617, 0.0009227770497091115, 0.0005362536758184433, 0.004131972789764404, 0.48464182019233704]], [[0.014101995155215263, 0.0031319938134402037, 0.013989981263875961, 0.0014078596141189337, 0.0012245603138580918, 0.0025030383840203285, 0.0005961312563158572, 0.006321529857814312, 0.42616912722587585, 0.03948110714554787, 0.016117794439196587, 0.00408739922568202, 0.0059061478823423386, 0.00850494671612978, 0.009124873206019402, 0.0209654588252306, 0.42636609077453613], [0.00667915353551507, 0.07592984288930893, 0.13586674630641937, 0.016810910776257515, 0.005916202906519175, 0.020199300721287727, 0.005483024753630161, 0.0344231016933918, 0.3477858603000641, 0.001067489036358893, 0.0010366725036874413, 0.0001745819899952039, 0.00017410116561222821, 0.00014942655980121344, 0.00018256505427416414, 0.0005827136337757111, 0.3475383520126343], [0.0013855311553925276, 0.008228878490626812, 0.01238162536174059, 0.0027839727699756622, 0.0006923131295479834, 0.0024311773013323545, 0.0007201561238616705, 0.02193097025156021, 0.47435352206230164, 0.00041124087874777615, 0.00019700895063579082, 4.164076381130144e-05, 4.4116928620496765e-05, 4.400230318424292e-05, 8.783100929576904e-05, 0.0006969596142880619, 0.4735690653324127], [0.002417391398921609, 0.3900287449359894, 0.36608269810676575, 0.010427892208099365, 0.003142738016322255, 0.007896148599684238, 0.006289131008088589, 0.018262505531311035, 0.0960964635014534, 0.0015240313950926065, 0.0008374750032089651, 7.17956354492344e-05, 8.443900151178241e-05, 0.00012302333198022097, 0.00021348362497519702, 0.0005965592572465539, 0.09590543806552887], [0.0015184064395725727, 0.22997330129146576, 0.18070445954799652, 0.10410165041685104, 0.008204692974686623, 0.010274489410221577, 0.006799566559493542, 0.014073384925723076, 0.22097383439540863, 0.0013285573804751039, 0.0005724547663703561, 0.00010126011329703033, 9.585007501300424e-05, 0.00011687017831718549, 0.00019451510161161423, 0.0004434861766640097, 0.22052322328090668], [0.005328285042196512, 0.2500512897968292, 0.19683198630809784, 0.07495176047086716, 0.00790240429341793, 0.016132958233356476, 0.007773575372993946, 0.019797131419181824, 0.20896711945533752, 0.0012602112255990505, 0.0013638047967106104, 7.213281787699088e-05, 0.00010111636220244691, 7.543480751337484e-05, 0.00015952668036334217, 0.0006899815052747726, 0.20854128897190094], [0.002569479402154684, 0.36234259605407715, 0.21984915435314178, 0.14997535943984985, 0.026156507432460785, 0.019880864769220352, 0.01249348558485508, 0.00593593530356884, 0.1001373901963234, 0.0001871999556897208, 0.0003869208157993853, 2.979900273203384e-05, 1.823881575546693e-05, 1.1048969099647366e-05, 2.4806040528346784e-05, 0.00010531870066188276, 0.09989587962627411], [0.004533677361905575, 0.22503994405269623, 0.26184529066085815, 0.10608796030282974, 0.0166179146617651, 0.04023632034659386, 0.020721064880490303, 0.02675922028720379, 0.14761383831501007, 0.0014124589506536722, 0.00039877681410871446, 7.560791709693149e-05, 0.00023732869885861874, 0.00015420631098095328, 0.00017564419249538332, 0.0006804355653002858, 0.1474103033542633], [0.007221407722681761, 0.006796389352530241, 0.010733025148510933, 0.007969130761921406, 0.007599503733217716, 0.014522723853588104, 0.002767052734270692, 0.00809000339359045, 0.4498912990093231, 0.006547246593981981, 0.004517809022217989, 0.0035991850309073925, 0.003991721197962761, 0.0026475691702216864, 0.0033872632775455713, 0.009543891996145248, 0.4501747786998749], [0.3512765169143677, 0.014916264452040195, 0.021187733858823776, 0.0066393110901117325, 0.0036652141716331244, 0.011030099354684353, 0.0008259069290943444, 0.0042607784271240234, 0.23751099407672882, 0.039788030087947845, 0.02307143807411194, 0.011269490234553814, 0.014527969062328339, 0.007612792309373617, 0.007331886328756809, 0.00760337058454752, 0.23748233914375305], [0.39027178287506104, 0.05514398217201233, 0.09285689145326614, 0.0015682718949392438, 0.0006360787665471435, 0.0021107911597937346, 0.00022214429918676615, 0.005069678649306297, 0.19254492223262787, 0.015209605917334557, 0.0291146170347929, 0.00305691035464406, 0.001490374794229865, 0.002215137705206871, 0.0020979573018848896, 0.01397025492042303, 0.19242073595523834], [0.04371083527803421, 0.004963824525475502, 0.00699589354917407, 0.0007851978880353272, 0.00011472513142507523, 0.0006069503724575043, 9.038080315804109e-05, 0.007394604850560427, 0.33151960372924805, 0.04085860401391983, 0.1715882122516632, 0.0026457186322659254, 0.0058319298550486565, 0.007919266819953918, 0.015167702920734882, 0.02824433520436287, 0.3315621316432953], [0.046981312334537506, 0.004018538165837526, 0.009274945594370365, 0.0004495770263019949, 0.00029229841311462224, 0.0009502055472694337, 8.165868348442018e-05, 0.002550405915826559, 0.27733877301216125, 0.03745574131608009, 0.17546671628952026, 0.016825569793581963, 0.05789818987250328, 0.015623614192008972, 0.020805571228265762, 0.056364353746175766, 0.2776225805282593], [0.04903415963053703, 0.0016058763721957803, 0.002727618906646967, 0.00013428492820821702, 8.316965977428481e-05, 0.00015778667875565588, 2.465477882651612e-05, 0.0011611670488491654, 0.31936269998550415, 0.030109889805316925, 0.12831424176692963, 0.009387314319610596, 0.07172176986932755, 0.010500491596758366, 0.01019746158272028, 0.04580685868859291, 0.3196706175804138], [0.04805561155080795, 0.001573901972733438, 0.00275638815946877, 0.00014177306729834527, 8.820529910735786e-05, 0.00014219914737623185, 2.893396776926238e-05, 0.0013406769139692187, 0.2199636995792389, 0.053565435111522675, 0.2178190052509308, 0.014501224271953106, 0.13189467787742615, 0.0197797492146492, 0.01715659350156784, 0.05102687329053879, 0.22016507387161255], [0.02694329060614109, 0.0038517338689416647, 0.005755877587944269, 0.0005134200328029692, 0.00020089467579964548, 0.0008437603246420622, 7.693852967349812e-05, 0.0016048187389969826, 0.05389372631907463, 0.1562335342168808, 0.5041548609733582, 0.0427958220243454, 0.0445295125246048, 0.0338008739054203, 0.04015284404158592, 0.03066342882812023, 0.05398472398519516], [0.0072292122058570385, 0.006797793321311474, 0.010727515444159508, 0.007966537028551102, 0.0075949616730213165, 0.014515780843794346, 0.002764822682365775, 0.008085415698587894, 0.449893057346344, 0.006554997526109219, 0.00451909564435482, 0.003602497512474656, 0.003991097677499056, 0.00264632236212492, 0.0033866448793560266, 0.009547917172312737, 0.45017632842063904]], [[0.008094942197203636, 0.05347401648759842, 0.06868884712457657, 0.022479234263300896, 0.007062177639454603, 0.07778959721326828, 0.02728486992418766, 0.31556832790374756, 0.18579818308353424, 0.003284105332568288, 0.005533246323466301, 0.000588096387218684, 0.002263931091874838, 0.0011695821303874254, 0.007385763805359602, 0.027563799172639847, 0.18597130477428436], [0.032820768654346466, 0.015053312294185162, 0.006902780849486589, 0.12183355540037155, 0.0030391982290893793, 0.009068361483514309, 0.004252078011631966, 0.09053013473749161, 0.3315392732620239, 0.008241813629865646, 0.005077504087239504, 0.0014919729437679052, 0.0005980879068374634, 0.0005341222858987749, 0.002417521784082055, 0.035039082169532776, 0.3315604627132416], [0.016076579689979553, 0.17232777178287506, 0.026452945545315742, 0.014585222117602825, 0.00563916377723217, 0.016264697536826134, 0.0018672752194106579, 0.013093174435198307, 0.35499516129493713, 0.0045522586442530155, 0.010172532871365547, 0.0009862747974693775, 0.0018992063123732805, 0.0012225777609273791, 0.001290588523261249, 0.0036098496057093143, 0.3549647033214569], [0.02365567535161972, 0.027602864429354668, 0.04038480296730995, 0.02793971821665764, 0.015309684909880161, 0.04333667829632759, 0.17577026784420013, 0.01426380779594183, 0.2972904443740845, 0.003046703524887562, 0.008387365378439426, 0.0007170605240389705, 0.0073933349922299385, 0.0005713555146940053, 0.004207481164485216, 0.012904184870421886, 0.29721856117248535], [0.00926718395203352, 0.0078605767339468, 0.0025192447938024998, 0.12503410875797272, 0.03325778618454933, 0.003977193962782621, 0.00436778087168932, 0.003456494305282831, 0.4004097282886505, 0.0009426865144632757, 0.002076572272926569, 0.0046088807284832, 0.00018185916997026652, 6.9033162617415655e-06, 9.313737973570824e-05, 0.0015832779463380575, 0.400356650352478], [0.011854424141347408, 0.010262026451528072, 0.0023927909787744284, 0.01831168681383133, 0.06493142992258072, 0.02948126196861267, 0.0030606219079345465, 0.006773980334401131, 0.41928762197494507, 0.001949335797689855, 0.0026379567570984364, 0.003050676081329584, 0.0023753070272505283, 0.0002932828792836517, 0.00032652748632244766, 0.0028833970427513123, 0.4201277792453766], [0.0006215369794517756, 0.0013187429867684841, 0.0010648934403434396, 0.001685951603576541, 0.0028078299947082996, 0.329177588224411, 0.002374198054894805, 0.0010156488278880715, 0.328119158744812, 0.0006956520956009626, 0.00028857923462055624, 0.0004372325201984495, 0.0003889017680194229, 0.0004590452299453318, 0.0007199443061836064, 0.00028731179190799594, 0.32853779196739197], [0.010330775752663612, 0.003101440379396081, 0.003557569347321987, 0.003753412514925003, 0.0019682685378938913, 0.03873402625322342, 0.032005567103624344, 0.012639900669455528, 0.43935567140579224, 0.0008920336258597672, 0.0014183634193614125, 0.00034004414919763803, 0.001212591421790421, 0.0005576686235144734, 0.006215730682015419, 0.004421238787472248, 0.43949562311172485], [0.003451764350757003, 0.004260295536369085, 0.011713149026036263, 0.001808184664696455, 0.0011895919451490045, 0.019062334671616554, 0.0011603202437981963, 0.007481859065592289, 0.4696280062198639, 0.00047569835442118347, 0.001369165489450097, 0.0004413688729982823, 0.0009748844895511866, 0.001188384834676981, 0.0030356338247656822, 0.0022334882523864508, 0.47052595019340515], [0.02605816349387169, 0.003016142174601555, 0.002690139226615429, 0.007562269456684589, 0.002303873421624303, 0.0036895438097417355, 0.0018773652845993638, 0.07105898857116699, 0.40488743782043457, 0.0035810673143714666, 0.009799979627132416, 0.0013905256055295467, 0.0010200737742707133, 0.0007637428352609277, 0.002712862566113472, 0.05201295018196106, 0.4055749475955963], [0.0035913274623453617, 0.0010720061836764216, 0.0010018488392233849, 0.0033355047926306725, 0.0001323146279901266, 0.003134104423224926, 0.0002547465555835515, 0.0032371242996305227, 0.3600497543811798, 0.03255592659115791, 0.00844657327979803, 0.0013226051814854145, 0.0013993188040331006, 0.0025083678774535656, 0.028355672955513, 0.18871331214904785, 0.3608894348144531], [0.0070548816584050655, 0.0023712152615189552, 0.001550803193822503, 0.003921508323401213, 0.006832292303442955, 0.0034315071534365416, 0.00039159043808467686, 0.002478585345670581, 0.44345492124557495, 0.0061225262470543385, 0.01490763295441866, 0.023628395050764084, 0.01964668557047844, 0.0012203985825181007, 0.003153120167553425, 0.015161688439548016, 0.44467225670814514], [0.0007552026654593647, 0.0005630005616694689, 0.0010447625536471605, 0.0016857271548360586, 0.0006955614662729204, 0.0016771393129602075, 2.3739517928333953e-05, 0.0006778514361940324, 0.43621811270713806, 0.0028379284776747227, 0.00440567173063755, 0.10615360736846924, 0.0010189628228545189, 0.002470681443810463, 0.0014177076518535614, 0.0011358860647305846, 0.4372183084487915], [0.0048145423643291, 0.0006659235223196447, 0.002118205651640892, 0.0002564437163528055, 0.0005792009178549051, 0.0019248262979090214, 7.794657722115517e-05, 0.001564805512316525, 0.42184388637542725, 0.002308264374732971, 0.003088922705501318, 0.0025350600481033325, 0.09524479508399963, 0.012615809217095375, 0.02285119704902172, 0.004467251244932413, 0.42304283380508423], [0.0017860936932265759, 0.0003986872034147382, 0.0010466970270499587, 0.00010602938709780574, 0.00027892348589375615, 0.004014311823993921, 6.816748646087945e-05, 0.001171948853880167, 0.37222161889076233, 0.0019134641624987125, 0.0028039757162332535, 0.0013835164718329906, 0.051162686198949814, 0.15810172259807587, 0.028686050325632095, 0.0017096925294026732, 0.3731464147567749], [0.0012392906937748194, 0.000447441911092028, 0.0004849039833061397, 0.0001046251054503955, 2.6767898816615343e-05, 0.002990967594087124, 0.0007074871100485325, 0.0026994289364665747, 0.33472374081611633, 0.0013471560087054968, 0.0016055441228672862, 7.17670627636835e-05, 0.010808278806507587, 0.0245121531188488, 0.25391072034835815, 0.02891133353114128, 0.33540835976600647], [0.0034567664843052626, 0.004264825955033302, 0.011721509508788586, 0.0018094680272042751, 0.0011919555254280567, 0.01906663365662098, 0.001162043772637844, 0.007479685824364424, 0.4695979952812195, 0.0004765710618812591, 0.0013745477190241218, 0.00044156648800708354, 0.0009788194438442588, 0.00119111523963511, 0.003048097714781761, 0.0022417947184294462, 0.4704965353012085]], [[0.011494450271129608, 0.1056753396987915, 0.14259448647499084, 0.01466490887105465, 0.003258237149566412, 0.01550604309886694, 0.003145223017781973, 0.02096683345735073, 0.13297244906425476, 0.05743110552430153, 0.03015841916203499, 0.0389116033911705, 0.1059289276599884, 0.09665253758430481, 0.0629948079586029, 0.024561140686273575, 0.1330835223197937], [0.2518675923347473, 0.12611256539821625, 0.0707661584019661, 0.025797918438911438, 0.011234050616621971, 0.016703082248568535, 0.0018467145273461938, 0.036212287843227386, 0.19849352538585663, 0.00791910570114851, 0.026128726080060005, 0.00259676412679255, 0.008003918454051018, 0.004369635134935379, 0.0027292920276522636, 0.010857478715479374, 0.1983613520860672], [0.14094854891300201, 0.020768947899341583, 0.08483533561229706, 0.015197689644992352, 0.011387383565306664, 0.015814412385225296, 0.0017038810765370727, 0.01713261753320694, 0.3235255181789398, 0.004637308418750763, 0.0087659303098917, 0.004394723568111658, 0.0051969848573207855, 0.007367085199803114, 0.00740556325763464, 0.007463669404387474, 0.32345446944236755], [0.14042551815509796, 0.05451280623674393, 0.04517815262079239, 0.11608359962701797, 0.017070801928639412, 0.03402253985404968, 0.00793897733092308, 0.040031250566244125, 0.23015020787715912, 0.013535000383853912, 0.022532662376761436, 0.010652712546288967, 0.0040230113081634045, 0.007804324850440025, 0.0044662002474069595, 0.021488994359970093, 0.230083167552948], [0.10517188906669617, 0.02593086287379265, 0.01791229471564293, 0.016029169782996178, 0.026955334469676018, 0.025387370958924294, 0.0053213778883218765, 0.02726718597114086, 0.35265544056892395, 0.003775682533159852, 0.01254457887262106, 0.014647881500422955, 0.005954829044640064, 0.0022444489877671003, 0.001237290445715189, 0.00422986876219511, 0.3527345657348633], [0.09310118108987808, 0.019886154681444168, 0.026790637522935867, 0.036002833396196365, 0.052248764783144, 0.0403936430811882, 0.010142670944333076, 0.03901827707886696, 0.28439417481422424, 0.009205828420817852, 0.022906597703695297, 0.037429023534059525, 0.01118883490562439, 0.012235239148139954, 0.009026508778333664, 0.011575348675251007, 0.2844543159008026], [0.17094743251800537, 0.03463995084166527, 0.022731846198439598, 0.03674470633268356, 0.030596012249588966, 0.05025780200958252, 0.028098659589886665, 0.087189219892025, 0.24808280169963837, 0.005561640486121178, 0.004467607941478491, 0.008465217426419258, 0.0059404075145721436, 0.0010698680998757482, 0.003112250939011574, 0.014009238220751286, 0.24808534979820251], [0.45542004704475403, 0.060510557144880295, 0.04547007009387016, 0.032123271375894547, 0.01229883637279272, 0.009476783685386181, 0.004891568794846535, 0.05004727095365524, 0.09917984902858734, 0.0872807651758194, 0.009856261312961578, 0.005068885162472725, 0.002886431524530053, 0.004178632982075214, 0.0037750352639704943, 0.01835758425295353, 0.09917805343866348], [0.01808297075331211, 0.016369227319955826, 0.022413259372115135, 0.009024355560541153, 0.0037517249584198, 0.012545007281005383, 0.0015387294115498662, 0.007615323644131422, 0.42495277523994446, 0.008896546438336372, 0.012218263000249863, 0.007445402443408966, 0.004232125822454691, 0.010823560878634453, 0.009586363099515438, 0.005522599443793297, 0.42498186230659485], [0.030904555693268776, 0.005233855452388525, 0.005232740193605423, 0.006245039869099855, 0.002885732799768448, 0.0033345373813062906, 0.00021746174024883658, 0.007539806887507439, 0.320516973733902, 0.03267636522650719, 0.06684144586324692, 0.041735198348760605, 0.044929832220077515, 0.04556313529610634, 0.030500568449497223, 0.03500097617506981, 0.32064172625541687], [0.16324588656425476, 0.0377468541264534, 0.02225053496658802, 0.006403243634849787, 0.0011054535862058401, 0.001307761762291193, 0.0001230977795785293, 0.004360295366495848, 0.19181936979293823, 0.043603502213954926, 0.18681085109710693, 0.01281976979225874, 0.04040856286883354, 0.039505716413259506, 0.027644475921988487, 0.029005667194724083, 0.1918388158082962], [0.012014487758278847, 0.000724561745300889, 0.0014692392433062196, 0.001263819052837789, 0.0007874579168856144, 0.001040360308252275, 6.0711492551490664e-05, 0.0021830452606081963, 0.35230132937431335, 0.008910754695534706, 0.06052950769662857, 0.04283847659826279, 0.04604322835803032, 0.06615665555000305, 0.03554577752947807, 0.015453685075044632, 0.3526768088340759], [0.017622312530875206, 0.00336457509547472, 0.0030180918984115124, 0.0009081779280677438, 0.0008655793499201536, 0.0021538741420954466, 0.00027592063997872174, 0.0033041350543498993, 0.3011479079723358, 0.012592162936925888, 0.06187283992767334, 0.05160209536552429, 0.05003559961915016, 0.1102721244096756, 0.0592404305934906, 0.020149582996964455, 0.30157455801963806], [0.010676038451492786, 0.0018604862270876765, 0.00298200617544353, 0.0008635569247417152, 0.0008081691339612007, 0.0021948975045233965, 0.00016103209054563195, 0.003594336798414588, 0.2945776879787445, 0.01586633361876011, 0.039214838296175, 0.06276243925094604, 0.028571534901857376, 0.1381729394197464, 0.07774385064840317, 0.02470300905406475, 0.29524677991867065], [0.009150904603302479, 0.0011663652257993817, 0.004386876709759235, 0.0006134104332886636, 0.00037297443486750126, 0.0016677802195772529, 0.00034677787334658206, 0.004496353212743998, 0.26944512128829956, 0.009201380424201488, 0.026962686330080032, 0.04254379868507385, 0.03161583095788956, 0.1555890291929245, 0.13962318003177643, 0.03272422403097153, 0.2700932025909424], [0.037863388657569885, 0.006062420085072517, 0.007003359496593475, 0.011017350479960442, 0.0006147028179839253, 0.0012180289486423135, 0.0007586687570437789, 0.008524162694811821, 0.19980841875076294, 0.032465577125549316, 0.06660166382789612, 0.022771429270505905, 0.023665955290198326, 0.10512524098157883, 0.12625247240066528, 0.15012992918491364, 0.20011721551418304], [0.01809459738433361, 0.01634572632610798, 0.022411169484257698, 0.009017257951200008, 0.0037496103905141354, 0.01253217738121748, 0.0015377674717456102, 0.007608179003000259, 0.4249314069747925, 0.008907167240977287, 0.012235441245138645, 0.007458020932972431, 0.004240697715431452, 0.010841863229870796, 0.00960106123238802, 0.0055270423181355, 0.4249608814716339]]], [[[0.004501211456954479, 0.004373828414827585, 0.009144347161054611, 0.0027684099040925503, 0.0025746675673872232, 0.0037479326128959656, 0.0016625919379293919, 0.05154859274625778, 0.4297069311141968, 0.0048317089676856995, 0.013595408760011196, 0.006370397750288248, 0.0018691695295274258, 0.0030129116494208574, 0.013100193813443184, 0.017499612644314766, 0.42969197034835815], [0.005753401201218367, 0.01831168681383133, 0.02107814885675907, 0.004837893880903721, 0.0012881109723821282, 0.0030228637624531984, 0.0010686108144000173, 0.006525450851768255, 0.4655260443687439, 0.0009159205364994705, 0.004144875332713127, 0.0001511790615040809, 0.000310602190438658, 0.00045612110989168286, 0.0008489047759212554, 0.00035496437340043485, 0.46540531516075134], [0.011743827722966671, 0.03520679846405983, 0.10114102065563202, 0.006715947296470404, 0.0017529180040583014, 0.0069766356609761715, 0.004334402736276388, 0.003187409369274974, 0.36732563376426697, 0.002418787917122245, 0.0691961944103241, 0.0013466948876157403, 0.0027232251595705748, 0.0070961844176054, 0.00970343966037035, 0.001868013758212328, 0.36726292967796326], [0.009491744451224804, 0.034993384033441544, 0.006564239040017128, 0.014083215035498142, 0.02153053693473339, 0.01987009309232235, 0.009973045438528061, 0.02964828535914421, 0.42288005352020264, 0.002428583335131407, 0.002552286721765995, 0.000801368267275393, 0.00041510656592436135, 0.0004253717779647559, 0.0005719332257285714, 0.000939021585509181, 0.422831654548645], [0.005613191518932581, 0.011162448674440384, 0.0057660117745399475, 0.0162003505975008, 0.02793758362531662, 0.019466856494545937, 0.007780468091368675, 0.0032483902759850025, 0.4482859969139099, 0.0031867031939327717, 0.0006914493860676885, 0.0012891717487946153, 0.0005928617902100086, 8.706475637154654e-05, 0.00014216042472980917, 0.00036609344533644617, 0.44818317890167236], [0.0017418719362467527, 0.0061788493767380714, 0.0014878829242661595, 0.012656177394092083, 0.035600848495960236, 0.022403134033083916, 0.3129439949989319, 0.005552809685468674, 0.2972131371498108, 0.0012754567433148623, 0.0007351312087848783, 0.001718595391139388, 0.0012440882856026292, 0.00026829823036678135, 0.000921970116905868, 0.000867162540089339, 0.2971906065940857], [0.0008726202067919075, 0.006295676808804274, 0.0007531626033596694, 0.010366065427660942, 0.08210226148366928, 0.008303712122142315, 0.022033119574189186, 0.003135386621579528, 0.4322756826877594, 0.00041073214379139245, 0.0003198066842742264, 0.0004931416478939354, 0.00017012680473271757, 3.870506043313071e-05, 3.4888595109805465e-05, 0.00021492960513569415, 0.4321800470352173], [0.0022380982991307974, 0.00966330710798502, 0.008955548517405987, 0.009663127362728119, 0.047767650336027145, 0.0670449361205101, 0.04050540551543236, 0.01018594391644001, 0.39040666818618774, 0.003840586170554161, 0.0027971358504146338, 0.0054350970312952995, 0.002211071318015456, 0.002032962627708912, 0.003516688710078597, 0.0033688440453261137, 0.3903668224811554], [0.007743512745946646, 0.009111804887652397, 0.012172924354672432, 0.007813864387571812, 0.005727047566324472, 0.007207770366221666, 0.002514919266104698, 0.012152468785643578, 0.4359882175922394, 0.009005377069115639, 0.011797516606748104, 0.006628283765166998, 0.011358375661075115, 0.005317809525877237, 0.008896240964531898, 0.010583445429801941, 0.43598031997680664], [0.012588928453624249, 0.0013544835383072495, 0.0015553359407931566, 0.0020706872455775738, 0.002199663547798991, 0.002492997096851468, 0.0010217223316431046, 0.05034833028912544, 0.44348299503326416, 0.015470292419195175, 0.0027092820964753628, 0.003907528705894947, 0.0012801098637282848, 0.0003190620627719909, 0.0016870779218152165, 0.014010925777256489, 0.4435005486011505], [0.007804046850651503, 0.004072785377502441, 0.008133047260344028, 0.0004669491318054497, 0.0002093572256853804, 0.002058142563328147, 0.0003444065514486283, 0.004300117492675781, 0.4514681100845337, 0.0065030502155423164, 0.03084670566022396, 0.0024440872948616743, 0.0018245814135298133, 0.010384547524154186, 0.012381423264741898, 0.005348686594516039, 0.4514099955558777], [0.003393959952518344, 0.0005457264487631619, 0.0009249283466488123, 0.00021497557463590056, 0.0008176355040632188, 0.001818253193050623, 0.0004902033833786845, 0.0032263316679745913, 0.4439389407634735, 0.03419370576739311, 0.005556849297136068, 0.007802516687661409, 0.036292534321546555, 0.0034274854697287083, 0.004506535362452269, 0.008955223485827446, 0.44389426708221436], [0.0018320564413443208, 0.0003716461651492864, 0.000324055552482605, 0.00014362945512402803, 0.00016216984658967704, 0.000514940416906029, 4.355606506578624e-05, 0.005368218291550875, 0.46559807658195496, 0.0025404260959476233, 0.004732829984277487, 0.003940280061215162, 0.011875110678374767, 0.010931579396128654, 0.012412017211318016, 0.01364436186850071, 0.4655649960041046], [0.0014850726583972573, 0.00011802715744124725, 0.0008217638824135065, 0.00012065221380908042, 4.093854659004137e-05, 0.0005166061455383897, 0.00015953266120050102, 0.0008084694272838533, 0.37677836418151855, 0.0021748675499111414, 0.0051635028794407845, 0.002537112683057785, 0.026357294991612434, 0.028110623359680176, 0.169892355799675, 0.008167466148734093, 0.3767472803592682], [0.003294230904430151, 0.00033279674244113266, 0.0007408987148664892, 0.000442603079136461, 0.00019620837701950222, 0.0004491563013289124, 0.0001495390315540135, 0.0019639015663415194, 0.41839131712913513, 0.003579656360670924, 0.010000142268836498, 0.008302449248731136, 0.023938611149787903, 0.03047921136021614, 0.046471431851387024, 0.032934267073869705, 0.4183334708213806], [0.006158680655062199, 0.00310391653329134, 0.0015586575027555227, 0.0006172744906507432, 0.0008120969287119806, 0.0013164085103198886, 0.0003573308349587023, 0.00891830213367939, 0.45797470211982727, 0.011699290946125984, 0.016948793083429337, 0.004730531945824623, 0.004524250514805317, 0.007554435636848211, 0.008959400467574596, 0.0068288021720945835, 0.4579371511936188], [0.007743419613689184, 0.009110390208661556, 0.012174246832728386, 0.007811848074197769, 0.005725608207285404, 0.007207364309579134, 0.0025142175145447254, 0.012147991918027401, 0.4359967112541199, 0.009005923755466938, 0.011797298677265644, 0.0066274902783334255, 0.011356879957020283, 0.005317707546055317, 0.008894514292478561, 0.010579385794699192, 0.43598902225494385]], [[0.05500565841794014, 0.07907280325889587, 0.14519888162612915, 0.05313940346240997, 0.027378901839256287, 0.06464529037475586, 0.023832106962800026, 0.11844321340322495, 0.04383838176727295, 0.1628100425004959, 0.030247002840042114, 0.02467288076877594, 0.005937832407653332, 0.016153080388903618, 0.02845032513141632, 0.07733137160539627, 0.043842751532793045], [0.023144584149122238, 0.15949459373950958, 0.07547881454229355, 0.05163402855396271, 0.0034584200475364923, 0.01709667220711708, 0.0022526525426656008, 0.07899746298789978, 0.04438091069459915, 0.017276925966143608, 0.417903333902359, 0.002382363425567746, 0.0012518300209194422, 0.0021544185001403093, 0.0052099977619946, 0.05349516496062279, 0.044387832283973694], [0.03018958494067192, 0.013904554769396782, 0.10633675754070282, 0.004693527240306139, 0.0010161870159208775, 0.008086013607680798, 0.0009161251364275813, 0.013961795717477798, 0.17537234723567963, 0.0134042426943779, 0.294309139251709, 0.002574810292571783, 0.010791764594614506, 0.05678164213895798, 0.057391054928302765, 0.034848328679800034, 0.17542219161987305], [0.0322427973151207, 0.03888971731066704, 0.019525598734617233, 0.08670300990343094, 0.024935364723205566, 0.03739354386925697, 0.008489496074616909, 0.05931416153907776, 0.0636199340224266, 0.012645446695387363, 0.48845574259757996, 0.0131989112123847, 0.0008399324724450707, 0.003099683206528425, 0.002868443727493286, 0.04414999857544899, 0.06362830847501755], [0.013958035036921501, 0.009518736973404884, 0.013694201596081257, 0.021240878850221634, 0.3290359377861023, 0.015161389485001564, 0.002235882682725787, 0.01667523942887783, 0.1552753448486328, 0.00930524617433548, 0.15459536015987396, 0.06258784234523773, 0.003043663688004017, 0.003170684212818742, 0.000922352191992104, 0.03426472470164299, 0.15531444549560547], [0.09022142738103867, 0.008172409608960152, 0.013705871067941189, 0.016927240416407585, 0.006855400279164314, 0.18984641134738922, 0.00844250526279211, 0.04138652980327606, 0.08040346950292587, 0.1566128432750702, 0.15791141986846924, 0.03608215972781181, 0.0034717756789177656, 0.008231736719608307, 0.006995255593210459, 0.0943189263343811, 0.08041474223136902], [0.022063646465539932, 0.020291585475206375, 0.011164980009198189, 0.03502907603979111, 0.041304126381874084, 0.07303271442651749, 0.12347570061683655, 0.05339911952614784, 0.16995121538639069, 0.060373611748218536, 0.13012462854385376, 0.0345107801258564, 0.001532015623524785, 0.003784201806411147, 0.002534886123612523, 0.047472503036260605, 0.1699550300836563], [0.030267830938100815, 0.042354077100753784, 0.013915269635617733, 0.03567072004079819, 0.020955514162778854, 0.0346904918551445, 0.030345195904374123, 0.14292708039283752, 0.12766218185424805, 0.22668428719043732, 0.02831847593188286, 0.035298217087984085, 0.0016911088023334742, 0.005833702627569437, 0.0081093218177557, 0.08762441575527191, 0.1276521533727646], [0.0001718346611596644, 0.00021719918004237115, 0.0034541180357337, 0.00024095996923279017, 0.00011667813669191673, 0.000967999454587698, 0.00010302486771252006, 0.0017862790264189243, 0.4941920042037964, 0.0005170623189769685, 0.0001244523300556466, 0.00015349021123256534, 0.00014720424951519817, 0.0007089170394465327, 0.0013552111340686679, 0.0015393394278362393, 0.49420425295829773], [0.01588812656700611, 0.0010315702529624104, 0.008586847223341465, 0.0009884057799354196, 0.0003435119579080492, 0.002630555536597967, 0.00039102384471334517, 0.003894477616995573, 0.2348274141550064, 0.4309026598930359, 0.0009672751766629517, 0.005064318422228098, 0.0011017322540283203, 0.000966705207247287, 0.002340958919376135, 0.05520881712436676, 0.23486560583114624], [0.009342451579868793, 0.05607994645833969, 0.510791003704071, 0.006808256730437279, 0.001141824177466333, 0.004852733574807644, 0.0011920402757823467, 0.01898159086704254, 0.143728569149971, 0.0025913240388035774, 0.07708827406167984, 0.0005765605601482093, 0.0006768029415979981, 0.002820103894919157, 0.00777112552896142, 0.011798436753451824, 0.14375892281532288], [0.0028723059222102165, 0.0014120596460998058, 0.009227815084159374, 0.003988068085163832, 0.02966693788766861, 0.011397862806916237, 0.0005270162364467978, 0.006430366076529026, 0.38929644227027893, 0.0022136883344501257, 0.0019798101857304573, 0.13533657789230347, 0.002485048258677125, 0.0021746326237916946, 0.0007012259447947145, 0.01097901351749897, 0.38931092619895935], [0.0012272599851712584, 7.144422852434218e-05, 0.010025410912930965, 0.00013270610361360013, 0.0004065584216732532, 0.0015950807137414813, 0.00019645580323413014, 0.00124370155390352, 0.4234521985054016, 0.0009382801363244653, 0.0005369192222133279, 0.0023743321653455496, 0.04441436752676964, 0.051388707011938095, 0.027517491951584816, 0.01092185452580452, 0.42355719208717346], [0.0008392810705117881, 5.2232524467399344e-05, 0.02096264623105526, 1.680667446635198e-05, 3.6571407690644264e-05, 0.00014054466737434268, 9.94121000985615e-06, 0.0002865015994757414, 0.35948604345321655, 0.0001519509678473696, 0.0004473890585359186, 0.00013214154751040041, 0.0017960927216336131, 0.2205939143896103, 0.034240104258060455, 0.0012268349528312683, 0.35958102345466614], [0.0017474531196057796, 0.00022035287111066282, 0.02963101491332054, 0.00011886267748195678, 7.718217239016667e-05, 0.0004676202079281211, 8.743834041524678e-05, 0.0010765993501991034, 0.3383174538612366, 0.001049364684149623, 0.0012820132542401552, 0.00035466099507175386, 0.0019908971153199673, 0.13292162120342255, 0.1451721340417862, 0.007109761703759432, 0.3383755385875702], [0.021908197551965714, 0.00498328497633338, 0.019608203321695328, 0.004583290778100491, 0.001847091712988913, 0.004265143536031246, 0.0009079720475710928, 0.011341296136379242, 0.2740553319454193, 0.08672411739826202, 0.01579955592751503, 0.05184173956513405, 0.005202573724091053, 0.015828149393200874, 0.01651645638048649, 0.19051915407180786, 0.2740684151649475], [0.00017185213800985366, 0.00021722384553868324, 0.0034548414405435324, 0.00024097792629618198, 0.00011669990635709837, 0.0009680627845227718, 0.00010301864676875994, 0.0017863840330392122, 0.49419182538986206, 0.0005171222728677094, 0.00012446963228285313, 0.00015348604938481003, 0.00014722903142683208, 0.000708930310793221, 0.0013551667798310518, 0.0015390710905194283, 0.4942035973072052]], [[0.009983888827264309, 0.012479771859943867, 0.0379372164607048, 0.018908319994807243, 0.04736575111746788, 0.05656116455793381, 0.006177559960633516, 0.01817246899008751, 0.253245085477829, 0.11088255047798157, 0.009979486465454102, 0.13842372596263885, 0.005928863771259785, 0.0024945370387285948, 0.005972075741738081, 0.012237956747412682, 0.25324955582618713], [0.0010962304659187794, 0.005900590680539608, 0.05890846997499466, 0.002672501839697361, 0.015961067751049995, 0.031188447028398514, 0.001254487899132073, 0.004985729698091745, 0.4210337996482849, 0.007219382096081972, 0.0030119181610643864, 0.0217897966504097, 0.0009453329257667065, 0.00029282699688337743, 0.0011047397274523973, 0.0015492497477680445, 0.4210852086544037], [0.0026565995067358017, 0.006091269664466381, 0.29472246766090393, 0.004774508532136679, 0.011862169951200485, 0.06338194757699966, 0.00385458767414093, 0.011962421238422394, 0.27261829376220703, 0.006758219096809626, 0.005464981775730848, 0.017780551686882973, 0.004257873632013798, 0.003060202347114682, 0.014453092589974403, 0.003659906331449747, 0.2726409435272217], [0.002068099332973361, 0.0012092689285054803, 0.018525023013353348, 0.005870106630027294, 0.05795413628220558, 0.2288891077041626, 0.007025697268545628, 0.007116485852748156, 0.3098927438259125, 0.017222190275788307, 0.0010942252120003104, 0.029528802260756493, 0.0008049707394093275, 0.00016539113130420446, 0.0010713819647207856, 0.0016853123670443892, 0.30987706780433655], [0.009873364120721817, 0.0037150296848267317, 0.013257404789328575, 0.004095037933439016, 0.2319595366716385, 0.2108556181192398, 0.006140767131000757, 0.01784897781908512, 0.228399395942688, 0.016163554042577744, 0.001412366284057498, 0.025659902021288872, 0.0008126451866701245, 5.702931230189279e-05, 0.00026056068600155413, 0.0011112093925476074, 0.22837737202644348], [0.0036283480003476143, 0.0041855149902403355, 0.009509332478046417, 0.005139931570738554, 0.05514099821448326, 0.19311267137527466, 0.017713511362671852, 0.013732376508414745, 0.3297848701477051, 0.012830095365643501, 0.000998817733488977, 0.018047822639346123, 0.003052294021472335, 0.00040483244811184704, 0.0017198577988892794, 0.0012585220392793417, 0.3297401964664459], [0.0017280016327276826, 0.0013096170732751489, 0.009638432413339615, 0.002139687305316329, 0.07050427794456482, 0.5646119713783264, 0.014436493627727032, 0.0034729260951280594, 0.16168776154518127, 0.005289510358124971, 0.00022451739641837776, 0.002790948608890176, 0.0001560000964673236, 7.321799785131589e-05, 0.0001176289952127263, 0.00014549212937708944, 0.16167351603507996], [0.0029530408792197704, 0.0016580215888097882, 0.036084700375795364, 0.0054904380813241005, 0.02332261949777603, 0.22864317893981934, 0.00553099624812603, 0.013828903436660767, 0.3274851441383362, 0.007748475763946772, 0.0014988093171268702, 0.007949343882501125, 0.001540480530820787, 0.0014903619885444641, 0.004578712861984968, 0.002753122244030237, 0.32744359970092773], [3.902724711224437e-05, 0.00020014696929138154, 0.006746484898030758, 0.00017261934408452362, 0.0008057331433519721, 0.004272001329809427, 0.00014293991262093186, 0.000420522439526394, 0.49143433570861816, 0.000612407922744751, 0.00011897298827534541, 0.0014546907041221857, 0.0009421492577530444, 0.0003291982284281403, 0.0005824245163239539, 0.00030612730188295245, 0.49142026901245117], [0.0008159451535902917, 0.0019716641400009394, 0.0015863175503909588, 0.0014490805333480239, 0.01784668304026127, 0.015122092328965664, 0.002642808947712183, 0.0014867791905999184, 0.3657147288322449, 0.07436860352754593, 0.0007625097059644759, 0.14331616461277008, 0.0037979348562657833, 0.00026234154938720167, 0.0007955819019116461, 0.002419836353510618, 0.3656409680843353], [0.0002842471585609019, 0.0003834663948509842, 0.030082153156399727, 0.0004621845728252083, 0.0024098469875752926, 0.0069940234534442425, 0.00021518887660931796, 0.0013230638578534126, 0.45084455609321594, 0.0017722854390740395, 0.0018699874635785818, 0.042331140488386154, 0.0027967356145381927, 0.001432573888450861, 0.003567560575902462, 0.0023831757716834545, 0.4508477747440338], [0.00039180953172035515, 0.0003424776077736169, 0.0009246414410881698, 0.0003522321640048176, 0.0026745947543531656, 0.007486753631383181, 0.00020531416521407664, 0.0007922695949673653, 0.2351929247379303, 0.0056252493523061275, 0.0012809357140213251, 0.49343544244766235, 0.007410246878862381, 0.0010397847509011626, 0.0028285905718803406, 0.004843174014240503, 0.23517364263534546], [0.00026364991208538413, 8.898486703401431e-05, 0.0053575304336845875, 9.771686745807528e-05, 0.00042288913391530514, 0.01138501800596714, 6.368692993419245e-05, 0.0005012238980270922, 0.389102578163147, 0.0029816459864377975, 0.001325044664554298, 0.06445591151714325, 0.03266829624772072, 0.04981726035475731, 0.05062754824757576, 0.001787409302778542, 0.3890535831451416], [0.0003404819581191987, 5.4740292398491874e-05, 0.008900810964405537, 0.00010428200766909868, 0.00029593889485113323, 0.005408338736742735, 5.199187216931023e-05, 0.0005899358657188714, 0.4575193524360657, 0.0009523829212412238, 0.0004792267282027751, 0.006858252454549074, 0.005225388333201408, 0.009324923157691956, 0.0457257404923439, 0.0006928796065039933, 0.4574752748012543], [0.0004817889421246946, 4.532076491159387e-05, 0.0042493995279073715, 0.0002934910880867392, 0.0006679616053588688, 0.016728131100535393, 0.00012264867837075144, 0.0008263042545877397, 0.43796640634536743, 0.00406191311776638, 0.00047287490451708436, 0.016646642237901688, 0.009893788024783134, 0.021815525367856026, 0.04536492004990578, 0.0024478782434016466, 0.43791502714157104], [0.0009492544340901077, 0.00017433894390705973, 0.002477735746651888, 0.0005932174972258508, 0.0038767859805375338, 0.012750811874866486, 0.0003385962045285851, 0.002436733106151223, 0.40985995531082153, 0.007026831619441509, 0.001425848575308919, 0.12117136269807816, 0.004300972446799278, 0.0023057821672409773, 0.010606086812913418, 0.009920543059706688, 0.40978530049324036], [3.902604294125922e-05, 0.00020014384062960744, 0.00674806535243988, 0.00017257820582017303, 0.0008056421647779644, 0.004272097256034613, 0.00014288480451796204, 0.00042047977331094444, 0.49143368005752563, 0.0006123405182734132, 0.00011897396325366572, 0.001454747631214559, 0.0009421166032552719, 0.00032916056807152927, 0.0005823957035318017, 0.0003060749440919608, 0.49141961336135864]], [[0.032056502997875214, 0.010396290570497513, 0.015295733697712421, 0.03466075658798218, 0.006166001781821251, 0.04971836879849434, 0.012483939528465271, 0.13631999492645264, 0.15887533128261566, 0.04347488656640053, 0.10472960025072098, 0.028351252898573875, 0.014055064879357815, 0.03376052528619766, 0.10987947136163712, 0.050930436700582504, 0.15884585678577423], [0.008995823562145233, 0.00992346927523613, 0.007500631734728813, 0.046528611332178116, 0.04820972681045532, 0.18998265266418457, 0.11824003607034683, 0.0372595377266407, 0.2562979757785797, 0.007199322339147329, 0.00538942264392972, 0.004069355316460133, 0.0004276138497516513, 0.0016412222757935524, 0.0010410601971670985, 0.00106534524820745, 0.2562282085418701], [0.021411150693893433, 0.047703538089990616, 0.10232898592948914, 0.03733992949128151, 0.03766040876507759, 0.11897614598274231, 0.0506802462041378, 0.031268585473299026, 0.19380474090576172, 0.02286101132631302, 0.062114544212818146, 0.018452299758791924, 0.0095830662176013, 0.022546708583831787, 0.023739181458950043, 0.0057471501640975475, 0.1937822848558426], [0.00624337000772357, 0.02810903638601303, 0.002788703888654709, 0.058533985167741776, 0.05198986083269119, 0.27157357335090637, 0.06384073197841644, 0.10072252154350281, 0.2027946263551712, 0.0033327797427773476, 0.00393783301115036, 0.001168720773421228, 0.0001587439328432083, 0.0002526993921492249, 0.00019798599532805383, 0.0016236546216532588, 0.2027311772108078], [0.005281516350805759, 0.02992180362343788, 0.0028618823271244764, 0.14439712464809418, 0.03131960332393646, 0.2857397794723511, 0.11261887103319168, 0.09503091871738434, 0.14438088238239288, 0.0012080990709364414, 0.0008347250986844301, 0.00047063728561624885, 0.00010091638978337869, 0.00017698350711725652, 0.00038561035762540996, 0.0009233275195583701, 0.14434728026390076], [0.003834928385913372, 0.10124709457159042, 0.005146465729922056, 0.15266816318035126, 0.06025151163339615, 0.12032583355903625, 0.2511679530143738, 0.04756077378988266, 0.12202106416225433, 0.005186551716178656, 0.0035664166789501905, 0.0012715347111225128, 0.00020305767247918993, 0.00035754733835346997, 0.0007406423101201653, 0.002453552559018135, 0.12199698388576508], [0.0033996826969087124, 0.03380386531352997, 0.0007758723222650588, 0.12973277270793915, 0.017714232206344604, 0.16954386234283447, 0.08114208281040192, 0.0858435332775116, 0.23676303029060364, 0.0027009497862309217, 0.0010039940243586898, 0.0002459725656080991, 8.721144695300609e-06, 2.6344872821937315e-05, 4.151917528361082e-05, 0.0005614097462967038, 0.2366921454668045], [0.008400858379900455, 0.02070557326078415, 0.015996700152754784, 0.06361551582813263, 0.017598766833543777, 0.13456398248672485, 0.050780609250068665, 0.040891122072935104, 0.2709446847438812, 0.04782627522945404, 0.01911432482302189, 0.014265851117670536, 0.002070075599476695, 0.003564816899597645, 0.007148840464651585, 0.011631689965724945, 0.2708803415298462], [0.009515166282653809, 0.0057467930018901825, 0.020698145031929016, 0.006951060611754656, 0.0016171589959412813, 0.005546164233237505, 0.0018599111353978515, 0.012142998166382313, 0.4494422674179077, 0.006894415244460106, 0.009952890686690807, 0.002874460071325302, 0.0024511839728802443, 0.0039934152737259865, 0.005317137576639652, 0.005563290789723396, 0.44943347573280334], [0.010265350341796875, 0.0007271991344168782, 0.0020748984534293413, 0.006470965221524239, 0.004647182300686836, 0.02495316043496132, 0.004376586992293596, 0.019086726009845734, 0.39907562732696533, 0.01336431223899126, 0.0035965440329164267, 0.05161060392856598, 0.012056192383170128, 0.022006116807460785, 0.016485655680298805, 0.010210510343313217, 0.39899247884750366], [0.0035913074389100075, 0.0002924537402577698, 0.0014126746682450175, 0.0005315051530487835, 0.00045797027996741235, 0.0024736823979765177, 0.0007246494642458856, 0.0014117991086095572, 0.34815284609794617, 0.00928526185452938, 0.0326879546046257, 0.1453167200088501, 0.03693412244319916, 0.03979038447141647, 0.024780292063951492, 0.004088966641575098, 0.34806737303733826], [0.0017830331344157457, 0.0006095629651099443, 0.001498137484304607, 0.0011462521506473422, 0.00012160695769125596, 0.0019455889705568552, 0.00025656327488832176, 0.003645409597083926, 0.34520167112350464, 0.01398733165115118, 0.014827712439000607, 0.02972370944917202, 0.031245725229382515, 0.057907432317733765, 0.06627213954925537, 0.0846913680434227, 0.345136821269989], [0.0010460170451551676, 0.00042093763477168977, 0.00102064514067024, 0.00017245141498278826, 2.50552075158339e-05, 0.0006248498684726655, 2.0519792087725364e-05, 0.0007345680496655405, 0.21919678151607513, 0.0035739270970225334, 0.006113364826887846, 0.016842838376760483, 0.054038155823946, 0.11411003023386002, 0.2806050479412079, 0.08233063668012619, 0.21912424266338348], [0.0027897641994059086, 0.00032222093432210386, 0.0009469204233027995, 0.0003079338348470628, 3.647866833489388e-05, 0.0001821361802285537, 2.9321527108550072e-05, 0.0012315426720306277, 0.39664387702941895, 0.004479799885302782, 0.013538465835154057, 0.012492658570408821, 0.018693499267101288, 0.02576184645295143, 0.04336852207779884, 0.08259730786085129, 0.3965776860713959], [0.00315264449454844, 0.0006893305107951164, 0.0012596087763085961, 0.0010785312624648213, 0.00011652849207166582, 0.00047276317491196096, 0.0001240053679794073, 0.0013188425218686461, 0.34483689069747925, 0.01911953091621399, 0.02735181339085102, 0.021236585453152657, 0.02602602168917656, 0.04578559100627899, 0.05585281550884247, 0.10683567821979523, 0.34474286437034607], [0.004238822963088751, 0.0010416173608973622, 0.0011608782224357128, 0.001929256715811789, 0.0007014150614850223, 0.002099083038046956, 0.0003314564819447696, 0.0030433230567723513, 0.3350204527378082, 0.1508602350950241, 0.06984193623065948, 0.035625044256448746, 0.018946995958685875, 0.007210142444819212, 0.008949807845056057, 0.02401505969464779, 0.33498451113700867], [0.009513512253761292, 0.005746804177761078, 0.020702652633190155, 0.006949977483600378, 0.0016167706344276667, 0.005546154920011759, 0.0018596745794638991, 0.012139549478888512, 0.4494446814060211, 0.006893577985465527, 0.009953784756362438, 0.0028741711284965277, 0.002450744854286313, 0.00399274006485939, 0.005316801369190216, 0.005561901722103357, 0.4494365453720093]], [[0.02201945334672928, 0.009027697145938873, 0.032331161201000214, 0.004459274001419544, 0.0021900285501033068, 0.02506580762565136, 0.005229596048593521, 0.6000418066978455, 0.05712622404098511, 0.047318875789642334, 0.04208676144480705, 0.01878889836370945, 0.01100761629641056, 0.014472916722297668, 0.028678569942712784, 0.02303166873753071, 0.05712360888719559], [0.007737127598375082, 0.030812488868832588, 0.031892113387584686, 0.08731178194284439, 0.005368366371840239, 0.05073761194944382, 0.014418342150747776, 0.036519549787044525, 0.3461238741874695, 0.010027594864368439, 0.026250414550304413, 0.00016817255527712405, 0.00015765403804834932, 0.0010028915712609887, 0.001455741818062961, 0.003909650258719921, 0.34610655903816223], [0.02537836693227291, 0.31254807114601135, 0.04768180102109909, 0.06509914249181747, 0.01019293162971735, 0.015864742919802666, 0.01885341852903366, 0.021906644105911255, 0.10669095069169998, 0.014680557884275913, 0.23162738978862762, 0.0005949627957306802, 0.001334000495262444, 0.006100136786699295, 0.0038041158113628626, 0.010946354828774929, 0.10669633746147156], [0.006006432697176933, 0.03231984004378319, 0.038529787212610245, 0.028598928824067116, 0.006937342695891857, 0.030993791297078133, 0.00580917252227664, 0.008805856108665466, 0.41546109318733215, 0.0033303960226476192, 0.0036240648478269577, 0.00010415743599878624, 6.836989632574841e-05, 0.0004043545632157475, 0.0009410078637301922, 0.00268644280731678, 0.4153790771961212], [0.004309828858822584, 0.008982242085039616, 0.015822498127818108, 0.08436593413352966, 0.02391568012535572, 0.019350839778780937, 0.011883500963449478, 0.009931501932442188, 0.4088864326477051, 0.001352126244455576, 0.00044505909318104386, 0.00015005332534201443, 7.851625559851527e-05, 0.000251096673309803, 0.0004647541791200638, 0.0010720709105953574, 0.4087378978729248], [0.004350624978542328, 0.022907787933945656, 0.016605200245976448, 0.13308945298194885, 0.09927629679441452, 0.06143169105052948, 0.06401731818914413, 0.009242607280611992, 0.2913244962692261, 0.0013278208207339048, 0.0016432307893410325, 0.0006061104359105229, 0.00024091789964586496, 0.0003382884315215051, 0.0005019005620852113, 0.001827525207772851, 0.29126864671707153], [0.0017430573934689164, 0.0021533863618969917, 0.004625838715583086, 0.04571322724223137, 0.07076537609100342, 0.017948703840374947, 0.010505865328013897, 0.004608344752341509, 0.420003741979599, 0.00041284612962044775, 0.00029996121884323657, 0.00018194009317085147, 2.7954380129813217e-05, 2.7285574105917476e-05, 8.197926945285872e-05, 0.0009955595014616847, 0.41990479826927185], [0.0021737252827733755, 0.006099942605942488, 0.024855613708496094, 0.017203547060489655, 0.019096961244940758, 0.13573649525642395, 0.03677177056670189, 0.01638028770685196, 0.35558435320854187, 0.0013476863969117403, 0.0009757888619787991, 0.005145919043570757, 0.002242211252450943, 0.00546660041436553, 0.01270740944892168, 0.002665742067620158, 0.35554587841033936], [0.003539199708029628, 0.002544875955209136, 0.007256964221596718, 0.004046475049108267, 0.0044435495510697365, 0.0037248609587550163, 0.0018972872057929635, 0.004992651753127575, 0.470051109790802, 0.0043053762055933475, 0.005080239847302437, 0.003791006049141288, 0.0025038542225956917, 0.003738861531019211, 0.0043176887556910515, 0.003739487612619996, 0.4700266718864441], [0.027007190510630608, 0.001144341309554875, 0.004571306053549051, 0.009942305274307728, 0.004773323889821768, 0.015492538921535015, 0.004386585205793381, 0.18447452783584595, 0.34689250588417053, 0.044540755450725555, 0.0014445970300585032, 0.0027259483467787504, 0.0011709938989952207, 0.0009229084243997931, 0.0011893725022673607, 0.002547580748796463, 0.34677326679229736], [0.01035662554204464, 0.36357831954956055, 0.030606241896748543, 0.010603401809930801, 0.002265665913000703, 0.014132695272564888, 0.003270332934334874, 0.015869682654738426, 0.16809943318367004, 0.0554884634912014, 0.06190205737948418, 0.007307892199605703, 0.0063376291655004025, 0.016986148431897163, 0.02671973966062069, 0.03841036558151245, 0.16806529462337494], [0.012368589639663696, 0.0005988056655041873, 0.0055748699232935905, 0.0011514169164001942, 0.0003573269641492516, 0.0017117818351835012, 0.0004942324012517929, 0.014243056066334248, 0.33247968554496765, 0.10244113951921463, 0.022647444158792496, 0.014821763150393963, 0.04102979972958565, 0.027110502123832703, 0.03695995733141899, 0.05362994223833084, 0.33237966895103455], [0.007134624756872654, 9.11016104510054e-05, 0.0019429543754085898, 0.0007092615705914795, 7.831214315956458e-05, 0.0006194607703946531, 0.00010128509165951982, 0.00848400965332985, 0.31726089119911194, 0.03739418089389801, 0.018090492114424706, 0.007450600620359182, 0.026212206110358238, 0.1153101697564125, 0.07408571988344193, 0.06789854168891907, 0.3171362578868866], [0.005280784796923399, 0.00010671798372641206, 0.0022685693111270666, 0.0003289356245659292, 9.638527262723073e-05, 0.0003200808132532984, 5.77688442717772e-05, 0.0019909897819161415, 0.3979056775569916, 0.026777086779475212, 0.04193045198917389, 0.01477155089378357, 0.03404515981674194, 0.026092752814292908, 0.018333883956074715, 0.03187673166394234, 0.3978165090084076], [0.00884844921529293, 0.0002136916300514713, 0.0027677733451128006, 0.0008039968088269234, 0.00036250983248464763, 0.0010101236402988434, 0.0002644643245730549, 0.007317489944398403, 0.3504657745361328, 0.03324560448527336, 0.027514945715665817, 0.01531909592449665, 0.05001102387905121, 0.07604879885911942, 0.03302668780088425, 0.042410850524902344, 0.3503687083721161], [0.003965915646404028, 0.00034100053017027676, 0.0024970900267362595, 0.00020173723169136792, 0.00027977459831163287, 0.0016938039334490895, 0.0002447431907057762, 0.006611271761357784, 0.4386836886405945, 0.03347305953502655, 0.01927226595580578, 0.00544659374281764, 0.007328846957534552, 0.008015447296202183, 0.0159282423555851, 0.01738661713898182, 0.4386299252510071], [0.0035383636131882668, 0.0025446955114603043, 0.00725580332800746, 0.0040457542054355145, 0.004442990757524967, 0.0037245384883135557, 0.0018970160745084286, 0.004990899004042149, 0.470054566860199, 0.004304471891373396, 0.005079758819192648, 0.0037909853272140026, 0.0025038346648216248, 0.003739033592864871, 0.00431768549606204, 0.0037392727099359035, 0.47003036737442017]], [[0.034211575984954834, 0.01681220531463623, 0.009847846813499928, 0.009349208325147629, 0.0041638887487351894, 0.005393133033066988, 0.0010565099073573947, 0.017047423869371414, 0.0670618861913681, 0.295781672000885, 0.09655699133872986, 0.04122977703809738, 0.011680122464895248, 0.023682251572608948, 0.03944287821650505, 0.2596244513988495, 0.0670582577586174], [0.02383306808769703, 0.055035825818777084, 0.016329841688275337, 0.32319092750549316, 0.14824272692203522, 0.14989987015724182, 0.04199032858014107, 0.061328768730163574, 0.04090506210923195, 0.044618159532547, 0.011934743262827396, 0.006733455695211887, 0.003417801344767213, 0.0020054092165082693, 0.003505244618281722, 0.02612491138279438, 0.040903929620981216], [0.04003510624170303, 0.058568406850099564, 0.05922171100974083, 0.09497296810150146, 0.09406023472547531, 0.10919816046953201, 0.03708501160144806, 0.03633036091923714, 0.13635589182376862, 0.03626762703061104, 0.020786143839359283, 0.03476434573531151, 0.01393949519842863, 0.01633043959736824, 0.030041249468922615, 0.045669056475162506, 0.136373832821846], [0.013670033775269985, 0.046428851783275604, 0.01472416426986456, 0.10707675665616989, 0.13724064826965332, 0.2865857481956482, 0.09979114681482315, 0.07673534750938416, 0.08371677249670029, 0.028196999803185463, 0.004327837377786636, 0.003999743144959211, 0.0011839843355119228, 0.00289732264354825, 0.002057417295873165, 0.007659147493541241, 0.08370807021856308], [0.009469017386436462, 0.02597261592745781, 0.008779006078839302, 0.021283557638525963, 0.02966986410319805, 0.040575433522462845, 0.009046480059623718, 0.01946263574063778, 0.41349610686302185, 0.004062858875840902, 0.0015230657299980521, 0.0006315033533610404, 0.00037841216544620693, 0.0003693833714351058, 0.00041127012809738517, 0.0014291186816990376, 0.41343972086906433], [0.012364711612462997, 0.042831432074308395, 0.009253389202058315, 0.021675603464245796, 0.06050897762179375, 0.06864707916975021, 0.015883387997746468, 0.031479611992836, 0.3503115177154541, 0.020495956763625145, 0.0037178273778408766, 0.005999482702463865, 0.00213565188460052, 0.0006266881828196347, 0.0012144312495365739, 0.00257364334538579, 0.35028061270713806], [0.013573982752859592, 0.034206684678792953, 0.007922335527837276, 0.014327924698591232, 0.042687542736530304, 0.05377575382590294, 0.007645609322935343, 0.025050124153494835, 0.3941844701766968, 0.008470116183161736, 0.0014952346682548523, 0.0008349107229150832, 0.00035855252644978464, 0.00019745880854316056, 0.0003096552682109177, 0.0008380338549613953, 0.3941214978694916], [0.027498319745063782, 0.029279883950948715, 0.0084079559892416, 0.029261551797389984, 0.029109962284564972, 0.05856119468808174, 0.011591793037950993, 0.03410026803612709, 0.16831956803798676, 0.24784566462039948, 0.021695904433727264, 0.027697384357452393, 0.012594706378877163, 0.01625233329832554, 0.01723012514412403, 0.09224571287631989, 0.16830769181251526], [0.007430814206600189, 0.0014702703338116407, 0.004582446999847889, 0.0035377428866922855, 0.0019018020248040557, 0.0042159054428339005, 0.0006589196273125708, 0.0028507858514785767, 0.4762049913406372, 0.0026564847212284803, 0.0015937137650325894, 0.0021955850534141064, 0.0013482471695169806, 0.0035036050248891115, 0.0030389942694455385, 0.006620925385504961, 0.47618862986564636], [0.01929418556392193, 0.0017930505564436316, 0.0027071412187069654, 0.0029387830290943384, 0.0016958864871412516, 0.00361742009408772, 0.00030662037897855043, 0.0037588845007121563, 0.3377045691013336, 0.0389956533908844, 0.03704278916120529, 0.05408988893032074, 0.019846929237246513, 0.017108717933297157, 0.022621285170316696, 0.09877514094114304, 0.3377031087875366], [0.011113089509308338, 0.0023214544635266066, 0.0038044159300625324, 0.0016115517355501652, 0.00017502247646916658, 0.0007494862074963748, 0.00010430567635921761, 0.0005412192549556494, 0.051977988332509995, 0.03481358662247658, 0.03960137814283371, 0.084522545337677, 0.09750930219888687, 0.06195175647735596, 0.18594969809055328, 0.3712804615497589, 0.05197278782725334], [0.006063234992325306, 0.000846399343572557, 0.0011745269875973463, 0.00033833799534477293, 0.00016545945254620165, 0.0009734552586451173, 6.123600178398192e-05, 0.0014926505973562598, 0.31551551818847656, 0.024892011657357216, 0.05996222048997879, 0.07134450972080231, 0.049014415591955185, 0.028017137199640274, 0.04636963829398155, 0.07827495038509369, 0.3154942989349365], [0.00262807821854949, 0.0005650873645208776, 0.003037067363038659, 0.00021142713376320899, 5.9324316680431366e-05, 0.0003725021379068494, 1.7115278751589358e-05, 0.0003473295655567199, 0.4170318841934204, 0.0072318799793720245, 0.03499625250697136, 0.01587594673037529, 0.03145710006356239, 0.014190719462931156, 0.021859483793377876, 0.03311891481280327, 0.416999876499176], [0.004415043164044619, 0.00022474485740531236, 0.002269104588776827, 0.00010095648030983284, 8.960922423284501e-05, 0.000361275568138808, 1.312790482188575e-05, 0.00043595919851213694, 0.4322253465652466, 0.004399092867970467, 0.01436392217874527, 0.023750100284814835, 0.0405680388212204, 0.013014176860451698, 0.02123536914587021, 0.010338425636291504, 0.43219566345214844], [0.004892313852906227, 0.00023919758677948266, 0.0023272621911019087, 0.00013567914720624685, 0.00016173708718270063, 0.000793195329606533, 3.282621401012875e-05, 0.0005918071838095784, 0.354447603225708, 0.011797952465713024, 0.02755153365433216, 0.07371135801076889, 0.07054832577705383, 0.036510664969682693, 0.04366889223456383, 0.018182838335633278, 0.35440686345100403], [0.0039558326825499535, 0.0007501658983528614, 0.00278658140450716, 0.0005297908210195601, 0.00022008243831805885, 0.0020868489518761635, 0.0001640199770918116, 0.0008718154858797789, 0.1485101282596588, 0.049807239323854446, 0.046874646097421646, 0.10570333153009415, 0.10788444429636002, 0.15616106986999512, 0.12706676125526428, 0.0981421172618866, 0.14848512411117554], [0.007429203949868679, 0.0014697505393996835, 0.0045815566554665565, 0.003535981522873044, 0.001900902483612299, 0.004214308690279722, 0.0006586132803931832, 0.002850001212209463, 0.47621262073516846, 0.002655469812452793, 0.0015931368106976151, 0.002194697270169854, 0.001347757875919342, 0.0035028476268053055, 0.0030383591074496508, 0.006618522107601166, 0.4761962592601776]], [[0.007342258933931589, 0.005289183929562569, 0.057965364307165146, 0.01359894871711731, 0.016347892582416534, 0.024260323494672775, 0.01266200840473175, 0.0067443023435771465, 0.2716454863548279, 0.01971416547894478, 0.012520871125161648, 0.014196696691215038, 0.04266674444079399, 0.06630115956068039, 0.13645882904529572, 0.020663229748606682, 0.27162256836891174], [0.004718608222901821, 0.004804551135748625, 0.03644603490829468, 0.0021660723723471165, 0.00405998807400465, 0.009271413087844849, 0.0009630289860069752, 0.002065699314698577, 0.408748060464859, 0.011775637045502663, 0.021446844562888145, 0.008897126652300358, 0.006316294893622398, 0.003781345207244158, 0.004298872780054808, 0.06142734736204147, 0.4088129699230194], [0.017590979114174843, 0.012374886311590672, 0.0575079619884491, 0.005325912963598967, 0.004765295423567295, 0.029956623911857605, 0.0030257082544267178, 0.006685345899313688, 0.23306594789028168, 0.024049175903201103, 0.04038354009389877, 0.009856132790446281, 0.042130276560783386, 0.09189905971288681, 0.13149170577526093, 0.05680578202009201, 0.23308561742305756], [0.007738214917480946, 0.020861180499196053, 0.04431042820215225, 0.01072751171886921, 0.00828919280320406, 0.054776716977357864, 0.009719755500555038, 0.011707751080393791, 0.3009161055088043, 0.0277887973934412, 0.028559036552906036, 0.04810072481632233, 0.002099274890497327, 0.0015611655544489622, 0.002469548024237156, 0.11942794919013977, 0.30094653367996216], [0.009736539795994759, 0.0378955714404583, 0.07339980453252792, 0.008573864586651325, 0.0188324935734272, 0.043614309281110764, 0.010713892057538033, 0.018319837749004364, 0.32341569662094116, 0.02491355687379837, 0.026236336678266525, 0.032557472586631775, 0.004630800802260637, 0.0009867883054539561, 0.0012890314683318138, 0.041428811848163605, 0.32345518469810486], [0.009431334212422371, 0.01969774253666401, 0.045395780354738235, 0.004923742730170488, 0.005302988458424807, 0.021677237004041672, 0.004910940304398537, 0.010395796038210392, 0.355645090341568, 0.04134989529848099, 0.03338254243135452, 0.01068473793566227, 0.0164481233805418, 0.007780981250107288, 0.00869892630726099, 0.0486072413623333, 0.35566696524620056], [0.0025329156778752804, 0.008143888786435127, 0.025551708415150642, 0.0038154004141688347, 0.011496835388243198, 0.03676953911781311, 0.010166124440729618, 0.004093665163964033, 0.42380449175834656, 0.010812873020768166, 0.004187391605228186, 0.01433098129928112, 0.0008310636621899903, 0.00033202828490175307, 0.0005916719092056155, 0.01870124228298664, 0.42383822798728943], [0.003795252414420247, 0.006939374841749668, 0.016827022656798363, 0.003939308691769838, 0.007899114862084389, 0.009253655560314655, 0.003670887090265751, 0.008351124823093414, 0.4310227334499359, 0.01016200426965952, 0.011044018901884556, 0.0020499739330261946, 0.003955901600420475, 0.007320732809603214, 0.009769922122359276, 0.03294747695326805, 0.4310513138771057], [0.00024200878397095948, 0.0002893012424465269, 0.001712887198664248, 0.00018770343740470707, 0.00026283087208867073, 0.0012016755063086748, 0.00010922306682914495, 0.0004782282921951264, 0.4944605827331543, 0.0015525927301496267, 0.0007399389869533479, 0.0003649100835900754, 0.0012989139650017023, 0.0005600829608738422, 0.0007393680280074477, 0.001344136893749237, 0.49445563554763794], [0.0013866130029782653, 0.005871532950550318, 0.023850541561841965, 0.006831673439592123, 0.01076328195631504, 0.027858398854732513, 0.00746561773121357, 0.0033177388831973076, 0.4308522641658783, 0.0086296908557415, 0.0031608473509550095, 0.016628323122859, 0.006861709523946047, 0.0010324710747227073, 0.0020657717250287533, 0.012614213861525059, 0.4308093190193176], [0.0009324098937213421, 0.009005698375403881, 0.12817418575286865, 0.005110134836286306, 0.004926423542201519, 0.017032776027917862, 0.0016021302435547113, 0.003961032256484032, 0.3813273012638092, 0.004088959656655788, 0.01034250296652317, 0.0032591482158750296, 0.008266283199191093, 0.007278989069163799, 0.013533996418118477, 0.01982678845524788, 0.38133111596107483], [0.0014086292358115315, 0.01973111554980278, 0.03312067314982414, 0.0136190727353096, 0.007451701909303665, 0.0669705793261528, 0.004936018958687782, 0.005385294556617737, 0.3732222318649292, 0.019086068496108055, 0.00604903744533658, 0.030388230457901955, 0.020120464265346527, 0.0037113020662218332, 0.005693543236702681, 0.01595265418291092, 0.37315335869789124], [0.0008046383736655116, 0.0021469006314873695, 0.08405700325965881, 0.0008114477968774736, 0.0005295602022670209, 0.019747097045183182, 0.0003779945254791528, 0.0023352308198809624, 0.38533809781074524, 0.006498157046735287, 0.0035718500148504972, 0.010609368793666363, 0.03272995725274086, 0.0163689237087965, 0.029737919569015503, 0.01900268718600273, 0.3853331506252289], [0.0004162238328717649, 0.0031301509588956833, 0.37210801243782043, 0.0004689492052420974, 0.0003051193489227444, 0.004983124788850546, 0.00019488473481032997, 0.003192055271938443, 0.28785377740859985, 0.0006544249481521547, 0.0034931583795696497, 0.0006911834352649748, 0.004751863889396191, 0.009870128706097603, 0.01829581707715988, 0.0016989682335406542, 0.2878921926021576], [0.0011663216864690185, 0.0043210797011852264, 0.23192588984966278, 0.0010645224247127771, 0.0011210808297619224, 0.013649830594658852, 0.0007274510571733117, 0.004436183255165815, 0.34652113914489746, 0.0019121508812531829, 0.004305894486606121, 0.004267499316483736, 0.006691674701869488, 0.00914900191128254, 0.018012328073382378, 0.004173153080046177, 0.346554696559906], [0.0012923432514071465, 0.005745100788772106, 0.0410291850566864, 0.0061951130628585815, 0.004716198891401291, 0.05092328414320946, 0.0034200085792690516, 0.005871372297406197, 0.3981214165687561, 0.007784734945744276, 0.003887999104335904, 0.01815454103052616, 0.008322193287312984, 0.004131244961172342, 0.008158727549016476, 0.0341779999434948, 0.39806845784187317], [0.00024203262000810355, 0.0002893440832849592, 0.0017130045453086495, 0.00018771323084365577, 0.0002628451038617641, 0.001201755367219448, 0.00010921725333901122, 0.00047829069080762565, 0.49446070194244385, 0.0015524531481787562, 0.0007399208843708038, 0.00036488217301666737, 0.0012988195521757007, 0.0005600320873782039, 0.0007393269333988428, 0.0013441115152090788, 0.4944555163383484]], [[0.011225278489291668, 0.08637942373752594, 0.3434559106826782, 0.016438249498605728, 0.008100219070911407, 0.07892300188541412, 0.01237565465271473, 0.008576193824410439, 0.19029225409030914, 0.014559449627995491, 0.008128352463245392, 0.0023905187845230103, 0.0035392807330936193, 0.004680223297327757, 0.011737367138266563, 0.008919155225157738, 0.19027940928936005], [0.010478172451257706, 0.02222963236272335, 0.2032272219657898, 0.02222554199397564, 0.004256505519151688, 0.027198852971196175, 0.0010530843865126371, 0.01999310776591301, 0.2806755304336548, 0.004849882796406746, 0.10028526186943054, 0.0008345918613485992, 0.00013025582302361727, 0.0004532651510089636, 0.0009005948668345809, 0.0204936433583498, 0.28071486949920654], [0.006719703786075115, 0.017140096053481102, 0.036309871822595596, 0.008806989528238773, 0.0024871204514056444, 0.013140728697180748, 0.0009257051278837025, 0.012525665573775768, 0.40423715114593506, 0.03412898629903793, 0.0356706902384758, 0.006613811943680048, 0.0016629870515316725, 0.0022627764847129583, 0.0041103120893239975, 0.008976761251688004, 0.40428072214126587], [0.006439415737986565, 0.15789085626602173, 0.2814522385597229, 0.015390543267130852, 0.009777168743312359, 0.1501360535621643, 0.009111810475587845, 0.01897352747619152, 0.1511683613061905, 0.005062689073383808, 0.034249525517225266, 0.0017478674417361617, 0.0005563477170653641, 0.0013296814868226647, 0.0022447407245635986, 0.0033061415888369083, 0.1511630266904831], [0.005585191771388054, 0.02367774397134781, 0.03565746918320656, 0.014873327687382698, 0.005642132367938757, 0.1677893102169037, 0.015058684162795544, 0.017713716253638268, 0.3489764928817749, 0.0030811151955276728, 0.008572879247367382, 0.0008401154191233218, 0.0004128070722799748, 0.0004435096343513578, 0.0012179847108200192, 0.0015483907191082835, 0.3489091098308563], [0.005259981378912926, 0.013628759421408176, 0.017593633383512497, 0.012642270885407925, 0.006528645753860474, 0.06890452653169632, 0.004953328520059586, 0.018367042765021324, 0.415364533662796, 0.007657022215425968, 0.006642375141382217, 0.0016416418366134167, 0.0008575631072744727, 0.0007466812967322767, 0.0015570770483464003, 0.0023182244040071964, 0.4153369963169098], [0.0042573800310492516, 0.053442616015672684, 0.06325071305036545, 0.008720970712602139, 0.005359509028494358, 0.1580357402563095, 0.0036830517929047346, 0.012660630978643894, 0.32914820313453674, 0.004504846874624491, 0.025017024949193, 0.0009471885277889669, 0.00015033608360681683, 0.0002836589119397104, 0.0006481963791884482, 0.000803065428044647, 0.3290868401527405], [0.029304970055818558, 0.003726552939042449, 0.008575376123189926, 0.007524827029556036, 0.0017882914980873466, 0.0252279881387949, 0.0022730655036866665, 0.003500640392303467, 0.38705939054489136, 0.04550926387310028, 0.014229928143322468, 0.0025907002855092287, 0.00118525349535048, 0.015766041353344917, 0.031047776341438293, 0.0337134450674057, 0.3869765102863312], [0.0016340221045538783, 0.0016920161433517933, 0.0028635046910494566, 0.001346999080851674, 0.0004376067372504622, 0.002504469593986869, 0.0003215808537788689, 0.0013427583035081625, 0.4913976490497589, 0.001826461055316031, 0.0011392956366762519, 0.0003445375186856836, 0.00018468966300133616, 0.00030858046375215054, 0.00044085789704695344, 0.0009231326985172927, 0.49129173159599304], [0.002939850790426135, 0.0005531003698706627, 0.0016929705161601305, 0.00045350485015660524, 0.0005009350716136396, 0.0037033669650554657, 0.0001537794159958139, 0.0003302709956187755, 0.4657132625579834, 0.011632434092462063, 0.001419806038029492, 0.012236066162586212, 0.006117582321166992, 0.0035453762393444777, 0.008101333864033222, 0.015246381983160973, 0.4656599760055542], [0.0008697846787981689, 0.03876110538840294, 0.8116664886474609, 0.0028138107154518366, 0.0003176196478307247, 0.0020559115801006556, 0.00010808309889398515, 0.0012973751872777939, 0.06517297774553299, 0.0005107528995722532, 0.005497978534549475, 0.00040624092798680067, 0.00025715981610119343, 0.0008760042837820947, 0.0013726482866331935, 0.0028307323809713125, 0.0651855319738388], [0.002932384144514799, 0.001202060142531991, 0.004318029619753361, 0.000601722567807883, 0.0003402053262107074, 0.0024965633638203144, 0.0001309834624407813, 0.0004605480935424566, 0.43529924750328064, 0.008781759068369865, 0.006061234045773745, 0.018651865422725677, 0.018963588401675224, 0.017608607187867165, 0.03521234542131424, 0.011660086922347546, 0.43527868390083313], [0.0002947629545815289, 8.013160550035536e-05, 0.0008749440312385559, 2.2814278054283932e-05, 1.1411410014261492e-05, 0.0003599145566113293, 5.216239514993504e-06, 7.26806465536356e-05, 0.46771079301834106, 0.0006527308723889291, 0.0014285106444731355, 0.004529457539319992, 0.008153524249792099, 0.01995600201189518, 0.02669931761920452, 0.0015057934215292335, 0.4676418900489807], [0.00038839029730297625, 0.0002121735451510176, 0.0016546635888516903, 1.7177873814944178e-05, 1.6769132344052196e-05, 7.291803922271356e-05, 3.3862354484881507e-06, 3.388873301446438e-05, 0.49221375584602356, 0.0004887273535132408, 0.0023083367850631475, 0.001150878262706101, 0.0029770766850560904, 0.002056026365607977, 0.0038805746007710695, 0.0003996133746113628, 0.4921257495880127], [0.0005696721491403878, 0.00016754624084569514, 0.0013661098200827837, 3.0145627533784136e-05, 2.614959521451965e-05, 0.00011952449131058529, 3.174215180479223e-06, 5.1975275709992275e-05, 0.486555278301239, 0.0006732653127983212, 0.0027948033530265093, 0.0031715119257569313, 0.007096114102751017, 0.0033131868112832308, 0.0068524060770869255, 0.0006988043896853924, 0.4865102767944336], [0.001554980524815619, 0.0010073400335386395, 0.010658119805157185, 0.00022103890660218894, 0.00018469037604518235, 0.002465177094563842, 4.299525244277902e-05, 0.00028053944697603583, 0.43429407477378845, 0.00404906552284956, 0.007025830913335085, 0.013269378803670406, 0.006431270856410265, 0.028431324288249016, 0.04766011983156204, 0.008167565800249577, 0.434256374835968], [0.0016335126711055636, 0.001691757352091372, 0.0028633354231715202, 0.0013467242242768407, 0.0004374742857180536, 0.00250390381552279, 0.0003214747703168541, 0.0013426014920696616, 0.4913995563983917, 0.001825762796215713, 0.0011391544248908758, 0.00034441237221471965, 0.00018459916464053094, 0.00030850368784740567, 0.00044070681906305254, 0.0009227529517374933, 0.49129363894462585]], [[0.004802422598004341, 0.04327290505170822, 0.4406757652759552, 0.01974538527429104, 0.03706861659884453, 0.12726028263568878, 0.01102712657302618, 0.060926999896764755, 0.09759535640478134, 0.0010732098016887903, 0.00477633997797966, 0.004354223143309355, 0.0075611998327076435, 0.021549830213189125, 0.01947927288711071, 0.0012218202464282513, 0.09760917723178864], [0.024918969720602036, 0.0366438664495945, 0.03995693847537041, 0.01301480084657669, 0.013736829161643982, 0.06795073300600052, 0.008111495524644852, 0.02620220184326172, 0.37319836020469666, 0.015649547800421715, 0.0015865013701841235, 0.0014273712877184153, 0.0011091805063188076, 0.0005717066815122962, 0.0005742243374697864, 0.002128882333636284, 0.37321847677230835], [0.019929062575101852, 0.013913124799728394, 0.07033034414052963, 0.00717996247112751, 0.005102917551994324, 0.014738578349351883, 0.0020695424173027277, 0.008932841941714287, 0.41734403371810913, 0.006230517290532589, 0.0032804086804389954, 0.001566218095831573, 0.002244587754830718, 0.0028147208504378796, 0.003891450585797429, 0.003037906251847744, 0.41739359498023987], [0.0049225445836782455, 0.03331628441810608, 0.029413171112537384, 0.016821231693029404, 0.031009098514914513, 0.576980471611023, 0.021983487531542778, 0.014413699507713318, 0.13102410733699799, 0.007210178766399622, 0.0002836399944499135, 0.0005375956534408033, 0.00020388355187606066, 0.00026844724197871983, 0.00024708264390937984, 0.0003567923849914223, 0.1310083568096161], [0.004226659424602985, 0.023975584656000137, 0.010864896699786186, 0.012158861383795738, 0.021514398977160454, 0.3112958073616028, 0.008783627301454544, 0.00891265831887722, 0.29474860429763794, 0.007526637054979801, 0.0002445836435072124, 0.0005103609873913229, 9.466143819736317e-05, 9.674780449131504e-05, 0.00011283303319942206, 0.00024979287991300225, 0.2946832776069641], [0.004654037766158581, 0.02252720482647419, 0.0074753486551344395, 0.011750046163797379, 0.02255662903189659, 0.13071687519550323, 0.009193984791636467, 0.009196486324071884, 0.38766252994537354, 0.004856901243329048, 0.0003617899492383003, 0.00041130336467176676, 0.0001566927821841091, 0.0002147807099390775, 0.00016747067274991423, 0.0004744065518025309, 0.38762351870536804], [0.004152404144406319, 0.014231369830667973, 0.009062220342457294, 0.008333803154528141, 0.026055270805954933, 0.3651374280452728, 0.01039719209074974, 0.004701258148998022, 0.2770838141441345, 0.0032267882488667965, 8.66769187268801e-05, 0.0002767474506981671, 4.3074851419078186e-05, 6.098686935729347e-05, 2.6956120564136654e-05, 8.592664380557835e-05, 0.2770380973815918], [0.021857190877199173, 0.02221902832388878, 0.022329362109303474, 0.025610214099287987, 0.04088062420487404, 0.5305039286613464, 0.034370992332696915, 0.012073270976543427, 0.1182389184832573, 0.017350083217024803, 0.002472481457516551, 0.007692005019634962, 0.004206728655844927, 0.006269238889217377, 0.007918941788375378, 0.0077732219360768795, 0.11823378503322601], [0.0017337921308353543, 0.0030861664563417435, 0.01025660801678896, 0.005325845908373594, 0.004743407946079969, 0.0043726046569645405, 0.0013555297628045082, 0.005132235586643219, 0.476494699716568, 0.001839584787376225, 0.0014997259713709354, 0.0012099746381863952, 0.0005585922044701874, 0.0013055087765678763, 0.0020755177829414606, 0.00253225932829082, 0.47647789120674133], [0.005156632512807846, 0.0037536039017140865, 0.0009086272912099957, 0.0023667102213948965, 0.0039019936230033636, 0.007949050515890121, 0.0007064175442792475, 0.0060774642042815685, 0.4031248390674591, 0.010361080057919025, 0.01743444800376892, 0.06903760135173798, 0.014082523994147778, 0.005928965285420418, 0.00888635590672493, 0.0372118204832077, 0.4031117558479309], [0.020703626796603203, 0.0038349353708326817, 0.008022149093449116, 0.0007702941074967384, 0.0006618727929890156, 0.0029190373606979847, 0.0002220144378952682, 0.004296736791729927, 0.3731485903263092, 0.04218515753746033, 0.08228074014186859, 0.031110359355807304, 0.015590585768222809, 0.014183164574205875, 0.014379311352968216, 0.012546231038868427, 0.3731452226638794], [0.02043827436864376, 0.00297157047316432, 0.002060101367533207, 0.0020266524516046047, 0.0015315841883420944, 0.007308500818908215, 0.0005509117036126554, 0.005090559367090464, 0.3903138339519501, 0.055433426052331924, 0.03458389639854431, 0.03879685699939728, 0.010790652595460415, 0.011912178248167038, 0.013224744237959385, 0.0127617958933115, 0.39020442962646484], [0.007665707264095545, 0.0008497973321937025, 0.000939651858061552, 0.0006695283809676766, 0.0005491375923156738, 0.003032625885680318, 0.00022678243112750351, 0.0044931089505553246, 0.38759922981262207, 0.013476496562361717, 0.018534790724515915, 0.051197607070207596, 0.04886180907487869, 0.022453969344496727, 0.03069416806101799, 0.02120506763458252, 0.3875504434108734], [0.003972369711846113, 0.0003475842531770468, 0.004646051209419966, 0.000189351529115811, 0.00012068887008354068, 0.00042042802670039237, 5.229484668234363e-05, 0.0005960733979009092, 0.31577935814857483, 0.009224594570696354, 0.02860410325229168, 0.021281154826283455, 0.06747666001319885, 0.06687156111001968, 0.15383942425251007, 0.010832159779965878, 0.3157462179660797], [0.006405148655176163, 0.0004619395767804235, 0.0032182387076318264, 0.0002953801886178553, 0.00019719215924851596, 0.0009006281034089625, 8.601732406532392e-05, 0.000995539128780365, 0.2914329469203949, 0.016873087733983994, 0.026423050090670586, 0.06542758643627167, 0.09191963076591492, 0.10732707381248474, 0.07904724776744843, 0.017607389017939568, 0.2913818061351776], [0.011955956928431988, 0.0012952210381627083, 0.003121613524854183, 0.0007634687353856862, 0.0012090912787243724, 0.011508745141327381, 0.000755888526327908, 0.0029435663018375635, 0.2396102249622345, 0.016590097919106483, 0.03856492042541504, 0.2682875096797943, 0.06995374709367752, 0.027016276493668556, 0.04017585888504982, 0.026673370972275734, 0.23957446217536926], [0.001733526703901589, 0.003085970412939787, 0.010256913490593433, 0.005324626807123423, 0.0047429935075342655, 0.00437204772606492, 0.001355079934000969, 0.005131586920469999, 0.4764973819255829, 0.0018392452038824558, 0.0014995927922427654, 0.001209583948366344, 0.0005584249156527221, 0.001305189449340105, 0.002075109863653779, 0.0025315717794001102, 0.47648102045059204]], [[0.013117813505232334, 0.008098403923213482, 0.010422585532069206, 0.010187382809817791, 0.004713926464319229, 0.006223341450095177, 0.0013900540070608258, 0.0031612920574843884, 0.278816282749176, 0.1533406674861908, 0.018616637215018272, 0.05333128944039345, 0.03856160119175911, 0.043811071664094925, 0.05566154792904854, 0.02177065797150135, 0.2787754535675049], [0.01857866160571575, 0.0334869883954525, 0.19755996763706207, 0.061560168862342834, 0.013692032545804977, 0.007148916833102703, 0.0007388664525933564, 0.006307287607342005, 0.3185655176639557, 0.004810902290046215, 0.010067527182400227, 0.0016736246179789305, 0.001253933529369533, 0.0005668008816428483, 0.0003800280101131648, 0.004981522914022207, 0.3186272084712982], [0.029682936146855354, 0.029349101707339287, 0.07013234496116638, 0.059802062809467316, 0.008564185351133347, 0.02735242433845997, 0.003952173516154289, 0.012651151977479458, 0.3595016896724701, 0.007054249756038189, 0.008204019628465176, 0.0027342899702489376, 0.002221735892817378, 0.004332819953560829, 0.0047174980863928795, 0.010111250914633274, 0.35963594913482666], [0.0077959210611879826, 0.028146687895059586, 0.01009969413280487, 0.04137321561574936, 0.023168833926320076, 0.024428246542811394, 0.004944842774420977, 0.016011575236916542, 0.4117893576622009, 0.008584678173065186, 0.004332812502980232, 0.0017546509625390172, 0.001383823691867292, 0.0005015212227590382, 0.0006448395433835685, 0.003256439231336117, 0.4117828905582428], [0.0023616384714841843, 0.0025101813953369856, 0.001981954788789153, 0.017642617225646973, 0.016993114724755287, 0.0628584772348404, 0.026610571891069412, 0.010981774888932705, 0.42253628373146057, 0.004521613474935293, 0.0005874623311683536, 0.003300200682133436, 0.001077298424206674, 0.0007348316721618176, 0.0009223945089615881, 0.0018239575438201427, 0.4225556254386902], [0.014427495189011097, 0.010286967270076275, 0.006035214755684137, 0.027604013681411743, 0.008493300527334213, 0.041072405874729156, 0.06672386825084686, 0.022101007401943207, 0.3874407708644867, 0.007566208951175213, 0.004074813332408667, 0.0014341933419927955, 0.0010749190114438534, 0.0015067352214828134, 0.0025543291121721268, 0.010188916698098183, 0.38741472363471985], [0.026588501408696175, 0.0037885294295847416, 0.0010902700014412403, 0.015293297357857227, 0.00928205344825983, 0.021101998165249825, 0.00847663078457117, 0.06032055616378784, 0.4168863594532013, 0.014265535399317741, 0.0007915281457826495, 0.00041516582132317126, 0.00019905800581909716, 0.00034425067133270204, 0.00028463194030337036, 0.0039726607501506805, 0.4168988764286041], [0.045723702758550644, 0.033884722739458084, 0.003029413754120469, 0.012300671078264713, 0.0076831188052892685, 0.0032175045926123857, 0.00438816100358963, 0.01879998855292797, 0.20053091645240784, 0.3998010456562042, 0.03413761034607887, 0.0030063919257372618, 0.005374548956751823, 0.0021507670171558857, 0.0029345527291297913, 0.02259133756160736, 0.2004455327987671], [0.00950670801103115, 0.006360482424497604, 0.006913545075803995, 0.006201249547302723, 0.002522949827834964, 0.001999116037040949, 0.001546689891256392, 0.0027654708828777075, 0.4664774537086487, 0.002863365225493908, 0.008714480325579643, 0.0023594358935952187, 0.002408387837931514, 0.0029252413660287857, 0.00513874227181077, 0.00484278192743659, 0.46645388007164], [0.008629594929516315, 0.001708197989501059, 0.002025236841291189, 0.0023719894234091043, 0.0008510857005603611, 0.0009804141009226441, 0.00013176919310353696, 0.0010573595063760877, 0.348469078540802, 0.038811374455690384, 0.05650472268462181, 0.06714165955781937, 0.017051519826054573, 0.037102315574884415, 0.02756950445473194, 0.04113469645380974, 0.3484596014022827], [0.0036961748264729977, 0.0006609916454181075, 0.006478509400039911, 0.0003824311716016382, 0.00019235412764828652, 0.0003311468753963709, 2.688347376533784e-05, 0.0003698018554132432, 0.4551027715206146, 0.001121414010412991, 0.024338943883776665, 0.02962563931941986, 0.009845007210969925, 0.0036482997238636017, 0.0026537631638348103, 0.006296379026025534, 0.4552295207977295], [0.0037085015792399645, 0.00023839814821258187, 0.00044611498015001416, 0.00015975686255842447, 0.00022645543504040688, 0.0004211831546854228, 0.0001540853118058294, 0.001110937213525176, 0.423181414604187, 0.00908377580344677, 0.007291960529983044, 0.04109862819314003, 0.021270181983709335, 0.03761274367570877, 0.022875383496284485, 0.00790230929851532, 0.42321833968162537], [0.0017346509266644716, 0.00027703019441105425, 0.00022470187104772776, 0.0008069750037975609, 0.00013695089728571475, 0.0004563125839922577, 6.025877155479975e-05, 0.0016847483348101377, 0.43454083800315857, 0.005768592935055494, 0.002900096820667386, 0.010208350606262684, 0.012509077787399292, 0.04577448591589928, 0.024502741172909737, 0.023809567093849182, 0.434604674577713], [0.0038286782801151276, 0.0004189589526504278, 0.0016265838639810681, 0.0004575164057314396, 0.0003479748556856066, 0.0005466233124025166, 0.0006431098445318639, 0.0009765605791471899, 0.3458881676197052, 0.00152682070620358, 0.01032771822065115, 0.007440901827067137, 0.029312364757061005, 0.034641120582818985, 0.18826401233673096, 0.027860963717103004, 0.34589195251464844], [0.009709269739687443, 0.0014678140869364142, 0.0013686555903404951, 0.0012886165641248226, 0.0003045746707357466, 0.0002003006375161931, 0.00017352910072077066, 0.0022574313916265965, 0.4187323749065399, 0.0013383610639721155, 0.0184189360588789, 0.002249507699161768, 0.0072153047658503056, 0.007377192378044128, 0.013753866776823997, 0.09537209570407867, 0.4187721014022827], [0.004442513920366764, 0.0018429121701046824, 0.0008071271586231887, 0.0004041954525746405, 0.00020296951697673649, 0.00022633881599176675, 6.789335748180747e-05, 0.0018520749872550368, 0.42731305956840515, 0.006970832124352455, 0.029111023992300034, 0.014330967329442501, 0.01756431721150875, 0.013669525273144245, 0.018036406487226486, 0.03582446649670601, 0.4273332357406616], [0.009503469802439213, 0.006356164813041687, 0.0069097778759896755, 0.006198044866323471, 0.002521409187465906, 0.0019983239471912384, 0.0015461619477719069, 0.0027641630731523037, 0.46649280190467834, 0.002862069755792618, 0.008709602989256382, 0.0023584114387631416, 0.0024072949308902025, 0.002924242988228798, 0.005137558560818434, 0.004841338377445936, 0.4664692282676697]], [[0.0014217473799362779, 0.4327671527862549, 0.12439285218715668, 0.15220020711421967, 0.029902581125497818, 0.11447388678789139, 0.046448271721601486, 0.07468608766794205, 0.007738347630947828, 0.0039823842234909534, 0.003657964523881674, 0.0002105834282701835, 6.279854278545827e-05, 4.7327528591267765e-05, 6.027510607964359e-05, 0.00020931052858941257, 0.007738148327916861], [0.0025363736785948277, 0.03541402518749237, 0.052925657480955124, 0.014418115839362144, 0.01893611252307892, 0.054413557052612305, 0.01979811303317547, 0.035387106239795685, 0.3818458914756775, 0.0013298604171723127, 0.0004945113323628902, 0.00016952953592408448, 7.105655095074326e-05, 6.787781603634357e-05, 7.845473010092974e-05, 0.00032202654983848333, 0.3817918002605438], [0.0027015546802431345, 0.006700333673506975, 0.043405238538980484, 0.003792858449742198, 0.0036352125462144613, 0.036592476069927216, 0.005310469307005405, 0.012500829994678497, 0.43899205327033997, 0.0013350893277674913, 0.0009313570917584002, 0.000807685952167958, 0.0005065089208073914, 0.0011528858449310064, 0.0018404115689918399, 0.0008356950711458921, 0.43895938992500305], [0.00540897436439991, 0.10127042233943939, 0.05591277405619621, 0.033410366624593735, 0.020175721496343613, 0.06627439707517624, 0.016734622418880463, 0.03981173783540726, 0.327175110578537, 0.004323293454945087, 0.001152380253188312, 0.00032795529114082456, 4.296662882552482e-05, 3.927437501261011e-05, 7.340604497585446e-05, 0.000773404142819345, 0.3270932137966156], [0.004826727323234081, 0.04516058787703514, 0.04640071094036102, 0.013324998319149017, 0.01076861098408699, 0.040280282497406006, 0.010642425157129765, 0.01808926649391651, 0.40218549966812134, 0.002842686837539077, 0.0008875089697539806, 0.0013959720963612199, 9.383770520798862e-05, 5.161189619684592e-05, 9.606620733393356e-05, 0.0009053338435478508, 0.4020480215549469], [0.0008109406917355955, 0.013139616698026657, 0.015460602939128876, 0.009605919010937214, 0.011555064469575882, 0.028167374432086945, 0.006068364717066288, 0.0039143855683505535, 0.45500457286834717, 0.0004680295241996646, 0.00021170727268327028, 0.0003027835919056088, 2.6208121198578738e-05, 1.822735612222459e-05, 3.400551213417202e-05, 0.00025985995307564735, 0.45495229959487915], [0.0017788712866604328, 0.02897207997739315, 0.02017119899392128, 0.01585901714861393, 0.01995980739593506, 0.02352507971227169, 0.007356503512710333, 0.004465160891413689, 0.4384469985961914, 0.0004845038056373596, 0.0003701139648910612, 0.00011911632464034483, 8.199156582122669e-06, 4.208972313790582e-06, 7.020726116024889e-06, 0.00013428495731204748, 0.43833789229393005], [0.006350433919578791, 0.11474436521530151, 0.027969256043434143, 0.15098193287849426, 0.11883902549743652, 0.1403542459011078, 0.1263056844472885, 0.009755566716194153, 0.14019428193569183, 0.01710766926407814, 0.002535186242312193, 0.0011205796618014574, 0.0005596016999334097, 0.0004692888760473579, 0.0008872764883562922, 0.0016481770435348153, 0.1401773989200592], [0.0005767003167420626, 0.007012310437858105, 0.009128198958933353, 0.0030264779925346375, 0.00312613183632493, 0.0033963299356400967, 0.0015526911010965705, 0.003860238939523697, 0.4834290146827698, 0.00020796949684154242, 0.0005166163900867105, 0.0001183771455544047, 0.0001405861257808283, 0.00010265725723002106, 0.00017407634004484862, 0.00023290878743864596, 0.48339858651161194], [0.009943000040948391, 0.08666341006755829, 0.05113058537244797, 0.15121519565582275, 0.04337833821773529, 0.19687271118164062, 0.04700572043657303, 0.24347195029258728, 0.041926655918359756, 0.03751019388437271, 0.010983506217598915, 0.019836317747831345, 0.0022527913097292185, 0.0011509857140481472, 0.0011464903363958001, 0.013586047105491161, 0.041926056146621704], [0.0014119517290964723, 0.7438477277755737, 0.18238483369350433, 0.007836255244910717, 0.0014915303327143192, 0.017385834828019142, 0.0015342158731073141, 0.013741030357778072, 0.009541365318000317, 0.002130868611857295, 0.007135801017284393, 0.00048347958363592625, 0.0005797253106720746, 0.00017572475189808756, 0.0002793150197248906, 0.000499148853123188, 0.00954129733145237], [0.0125378193333745, 0.026334155350923538, 0.03486799821257591, 0.008456194773316383, 0.00423596752807498, 0.08268411457538605, 0.005967812146991491, 0.07549329847097397, 0.14900922775268555, 0.2121109962463379, 0.05890762433409691, 0.07907682657241821, 0.004554620012640953, 0.0018162972992286086, 0.002661042381078005, 0.09230703860521317, 0.14897891879081726], [0.010746347717940807, 0.03254609927535057, 0.05686062201857567, 0.01049854513257742, 0.0016719589475542307, 0.013465404510498047, 0.00181117607280612, 0.023636385798454285, 0.18136626482009888, 0.10759623348712921, 0.07695320248603821, 0.02583392709493637, 0.025831174105405807, 0.005419582594186068, 0.009587625041604042, 0.23482336103916168, 0.18135206401348114], [0.008182276971638203, 0.0268693994730711, 0.061490096151828766, 0.0035834158770740032, 0.0014096557861194015, 0.01323088351637125, 0.0008793769520707428, 0.021163199096918106, 0.33670350909233093, 0.02327154017984867, 0.07586771249771118, 0.00998992845416069, 0.013206991367042065, 0.004559640306979418, 0.008705583401024342, 0.05418507754802704, 0.33670157194137573], [0.009336317889392376, 0.022399883717298508, 0.0800076499581337, 0.005171736236661673, 0.002033066237345338, 0.024112407118082047, 0.0014970602933317423, 0.028743445873260498, 0.22898197174072266, 0.07501322031021118, 0.08667917549610138, 0.03702550753951073, 0.02168935351073742, 0.011824038811028004, 0.016242511570453644, 0.12028791010379791, 0.22895477712154388], [0.014653075486421585, 0.09359308332204819, 0.06696392595767975, 0.030087772756814957, 0.008392314426600933, 0.04794955998659134, 0.00445424672216177, 0.0848001018166542, 0.13116835057735443, 0.08989185094833374, 0.2309030294418335, 0.01841660402715206, 0.006168010178953409, 0.0034973679576069117, 0.004369367379695177, 0.03351617977023125, 0.131175234913826], [0.0005765205714851618, 0.007011388894170523, 0.009128485806286335, 0.003025729674845934, 0.0031256552319973707, 0.0033960165455937386, 0.0015523354522883892, 0.00385962869040668, 0.483430951833725, 0.00020788029360119253, 0.0005164339672774076, 0.00011835042823804542, 0.0001405497023370117, 0.00010263162403134629, 0.00017403013771399856, 0.00023278914159163833, 0.48340076208114624]], [[0.0054621268063783646, 0.010775531642138958, 0.010822338983416557, 0.0013390656094998121, 0.00243496079929173, 0.00045186441275291145, 0.0019211984472349286, 0.002204312477260828, 0.39071816205978394, 0.026501759886741638, 0.10900821536779404, 0.005289906170219183, 0.011000261642038822, 0.004237881861627102, 0.007327502127736807, 0.01974298804998398, 0.39076194167137146], [0.005540849175304174, 0.007657076232135296, 0.005999905988574028, 0.0009645955287851393, 0.0008379403734579682, 0.0003889902727678418, 0.00033875813824124634, 0.004134131595492363, 0.4738336503505707, 0.002655788091942668, 0.012576981447637081, 0.001038345624692738, 0.0007706217584200203, 0.0007471159915439785, 0.0014480231329798698, 0.007153247948735952, 0.47391408681869507], [0.015541911125183105, 0.0068945568054914474, 0.02948879264295101, 0.002800110261887312, 0.0017331276321783662, 0.0015955963172018528, 0.0009080298477783799, 0.003400082467123866, 0.4429281949996948, 0.004179005045443773, 0.028227677568793297, 0.004841392394155264, 0.0027231143321841955, 0.0038517233915627003, 0.0034703370183706284, 0.004359300248324871, 0.44305703043937683], [0.004030806943774223, 0.0023721149191260338, 0.004427744075655937, 0.004131880588829517, 0.0042313700541853905, 0.0003483241889625788, 0.0005506584420800209, 0.0012992547126486897, 0.46475949883461, 0.0011937768431380391, 0.03412598744034767, 0.004045457113534212, 0.00038871620199643075, 0.0008475618669763207, 0.0017787367105484009, 0.006578113883733749, 0.4648900330066681], [0.0045615751296281815, 0.000625844462774694, 0.0009384976583532989, 0.001587355276569724, 0.052836935967206955, 0.0010898241307586432, 0.0009035097900778055, 0.0004805387288797647, 0.4556460380554199, 0.0008434260380454361, 0.007327162194997072, 0.014572212472558022, 0.000952302769292146, 0.0009939376031979918, 0.0002982941805385053, 0.0005160043947398663, 0.45582640171051025], [0.003065963974222541, 0.00030861934646964073, 0.00260927714407444, 0.0003185052773915231, 0.0013434437569230795, 0.011038393713533878, 0.0030781454406678677, 0.0016100298380479217, 0.47997310757637024, 0.000791336118709296, 0.0029782289639115334, 0.002553225727751851, 0.002838377607986331, 0.004467496648430824, 0.0021496093831956387, 0.0007641137926839292, 0.4801120460033417], [0.003937758971005678, 0.0009687698911875486, 0.0025841405149549246, 0.00105827406514436, 0.0017189363716170192, 0.0025435893330723047, 0.04865572601556778, 0.0019228439778089523, 0.45894601941108704, 0.0011991563951596618, 0.01051073893904686, 0.0014299608301371336, 0.0003771988849621266, 0.0006182062206789851, 0.0015479909488931298, 0.002920611761510372, 0.4590602517127991], [0.0012521537719294429, 0.00136866036336869, 0.0011505135335028172, 0.00061587686650455, 0.0010837919544428587, 0.00032870942959561944, 0.0015233196318149567, 0.009442169219255447, 0.4743685722351074, 0.0032608904875814915, 0.0023852873127907515, 0.0005035788635723293, 0.0003850368957500905, 0.001196642522700131, 0.0020421657245606184, 0.024681614711880684, 0.47441110014915466], [0.0008236513822339475, 0.000444251811131835, 0.0021578792948275805, 0.0002792058512568474, 0.0002449047169648111, 0.00033739025820977986, 0.0001881759671960026, 0.0008484295685775578, 0.495647668838501, 0.0004577460349537432, 0.0006627468392252922, 0.00020130944903939962, 0.0002016120561165735, 0.0006469369982369244, 0.0004911141586489975, 0.0006841516005806625, 0.49568289518356323], [0.013037633150815964, 0.018690086901187897, 0.004026381298899651, 0.004426171537488699, 0.0033282272052019835, 0.005436718929558992, 0.0027315388433635235, 0.01824168488383293, 0.42915579676628113, 0.05087289959192276, 0.0041920156218111515, 0.002957636956125498, 0.0007176595972850919, 0.0025587647687643766, 0.0038630410563200712, 0.006566693540662527, 0.42919713258743286], [0.025324296206235886, 0.147345632314682, 0.057872604578733444, 0.017510246485471725, 0.007632342632859945, 0.00196324591524899, 0.0030827131122350693, 0.005808958318084478, 0.33767402172088623, 0.00392056442797184, 0.043076906353235245, 0.0011429940350353718, 0.0013255821540951729, 0.0011679292656481266, 0.0032028909772634506, 0.004219250753521919, 0.33772990107536316], [0.00488286791369319, 0.0014228641521185637, 0.0014186428161337972, 0.0016192320035770535, 0.006347362417727709, 0.003868976142257452, 0.0008083171560429037, 0.0023226921912282705, 0.37939590215682983, 0.0016564402030780911, 0.003364108968526125, 0.20521804690361023, 0.002826505806297064, 0.0033466373570263386, 0.0011116265086457133, 0.000903092441149056, 0.37948673963546753], [0.008429301902651787, 0.0014230565866455436, 0.0018184679793193936, 0.0005790888681076467, 0.0005666679935529828, 0.002539448207244277, 0.0003403763403184712, 0.0008198717259801924, 0.4670635461807251, 0.0010416965233162045, 0.003266405314207077, 0.0022578921634703875, 0.03571547195315361, 0.003969886340200901, 0.0025147718843072653, 0.0004118141660001129, 0.46724221110343933], [0.00721557205542922, 0.0016549703432247043, 0.0027384429704397917, 0.0007532829768024385, 0.00025981050566770136, 0.0031068362295627594, 0.00020074972417205572, 0.0029467649292200804, 0.47148194909095764, 0.0014773086877539754, 0.0010916618630290031, 0.0017898738151416183, 0.0017837052000686526, 0.026358338072896004, 0.004297489766031504, 0.0012102590408176184, 0.47163283824920654], [0.005021656863391399, 0.001859129755757749, 0.004142876714468002, 0.0022685411386191845, 0.00035529042361304164, 0.00232604518532753, 0.0007750412332825363, 0.004323585424572229, 0.4724622666835785, 0.0017799192573875189, 0.001966010080650449, 0.0009916526032611728, 0.0009251998271793127, 0.005796909797936678, 0.01794496551156044, 0.004505910910665989, 0.47255510091781616], [0.008154839277267456, 0.02595994435250759, 0.006805789656937122, 0.003566473489627242, 0.0012965814676135778, 0.0010429797694087029, 0.0018441297579556704, 0.023445017635822296, 0.4350196421146393, 0.005314759910106659, 0.00759453559294343, 0.0008125887834466994, 0.0007174907950684428, 0.0035929169971495867, 0.005824682302772999, 0.033950477838516235, 0.43505698442459106], [0.0008235423010773957, 0.00044418280594982207, 0.002157955663278699, 0.0002792046871036291, 0.0002449402236379683, 0.00033743807580322027, 0.00018814951181411743, 0.0008484559948556125, 0.49564844369888306, 0.00045763739035464823, 0.0006625339738093317, 0.00020129949552938342, 0.0002016184153035283, 0.0006469786749221385, 0.0004910673596896231, 0.0006840649293735623, 0.4956824779510498]]], [[[0.005732377991080284, 0.3514588177204132, 0.2964673340320587, 0.06345114856958389, 0.012595510110259056, 0.025448625907301903, 0.0077896867878735065, 0.04899793863296509, 0.039190519601106644, 0.015181167051196098, 0.037044424563646317, 0.007308067753911018, 0.008211001753807068, 0.001809056499041617, 0.00350956036709249, 0.03661438822746277, 0.0391903892159462], [0.0005831412854604423, 0.005897948984056711, 0.005931115243583918, 0.002548228483647108, 0.00184024462942034, 0.0020030317828059196, 0.0011322355130687356, 0.00522688589990139, 0.485613614320755, 0.0005153777310624719, 0.0016568899154663086, 0.00028812288655899465, 7.073071174090728e-05, 0.00011156703840242699, 7.928682316560298e-05, 0.0008843469549901783, 0.4856173098087311], [0.006051767151802778, 0.025484049692749977, 0.014306224882602692, 0.018225982785224915, 0.022202614694833755, 0.018330147489905357, 0.02057119645178318, 0.05229593440890312, 0.3860950767993927, 0.004677866119891405, 0.013790030032396317, 0.003182276152074337, 0.0027174786664545536, 0.0023203850723803043, 0.0023720802273601294, 0.021273797377943993, 0.386103093624115], [0.0022077858448028564, 0.006235931068658829, 0.008990605361759663, 0.0028674642089754343, 0.0013845654902979732, 0.0013887172099202871, 0.0011729495599865913, 0.0041052792221307755, 0.483561247587204, 0.0006579301552847028, 0.00221068924292922, 0.0003203283413313329, 0.00013618030061479658, 5.894057539990172e-05, 7.135565829230472e-05, 0.0010692396899685264, 0.48356056213378906], [0.0005427972064353526, 0.002994760638102889, 0.002723918529227376, 0.0009661453659646213, 0.001360641443170607, 0.0007815246935933828, 0.0007203997811302543, 0.0019217494409531355, 0.4933844804763794, 0.00012822668941225857, 0.0005460653337650001, 0.00011933306814171374, 4.748602441395633e-05, 2.402633435849566e-05, 2.608287650218699e-05, 0.0003296727081760764, 0.49338260293006897], [0.0010129687143489718, 0.007765775080770254, 0.004310577176511288, 0.0019061594503000379, 0.0028310746420174837, 0.003936925902962685, 0.0023409686982631683, 0.007053268142044544, 0.48249849677085876, 0.00044314799015410244, 0.001351499930024147, 0.00033148686634376645, 0.00018409447511658072, 0.00011737001477740705, 0.00011431476013967767, 0.0013041032943874598, 0.48249757289886475], [0.0002752021246124059, 0.0020299421157687902, 0.0017969366163015366, 0.000838438339997083, 0.00126757996622473, 0.0009055556729435921, 0.001063876785337925, 0.0012842414434999228, 0.4949764311313629, 0.00012654908641707152, 0.0002103675651596859, 7.829531386960298e-05, 9.834147931542248e-06, 3.648479150797357e-06, 7.4688073254947085e-06, 0.00015460114809684455, 0.49497124552726746], [0.006205603946000338, 0.02894463762640953, 0.03254945948719978, 0.006254755426198244, 0.008885656483471394, 0.01554496306926012, 0.010654150508344173, 0.019698526710271835, 0.4201321303844452, 0.005831683054566383, 0.005642343312501907, 0.0041975583881139755, 0.0032122544944286346, 0.0011955649824813008, 0.003001833101734519, 0.007913363166153431, 0.4201355278491974], [0.01651868410408497, 0.201225146651268, 0.10876559466123581, 0.07697559893131256, 0.0358927920460701, 0.05594801902770996, 0.053777437657117844, 0.042877811938524246, 0.08794908225536346, 0.043479740619659424, 0.06669101864099503, 0.018756907433271408, 0.02486284449696541, 0.01193234696984291, 0.01986880972981453, 0.046529270708560944, 0.08794885128736496], [0.005237212870270014, 0.008204932324588299, 0.006721633020788431, 0.003457236336544156, 0.0009096243302337825, 0.0022951653227210045, 0.0014071743935346603, 0.004623871762305498, 0.45259833335876465, 0.016047505661845207, 0.005976941902190447, 0.01417023129761219, 0.005539620760828257, 0.0032766296062618494, 0.005577230826020241, 0.011365116573870182, 0.4525914192199707], [0.0015229549026116729, 0.0012927246280014515, 0.006463420111685991, 0.0007905112579464912, 0.0005120253772474825, 0.0020386299584060907, 0.00032930023735389113, 0.0038861543871462345, 0.48021435737609863, 0.003572792513296008, 0.0025588429998606443, 0.004928890150040388, 0.0022167316637933254, 0.0035262969322502613, 0.002239897148683667, 0.0036948949564248323, 0.48021137714385986], [0.003779294667765498, 0.0022959159687161446, 0.003394491970539093, 0.0005672530387528241, 0.00046678452054038644, 0.0006091655814088881, 0.00021471164654940367, 0.0035200235433876514, 0.45558834075927734, 0.005751579534262419, 0.012999902479350567, 0.02065327949821949, 0.009368163533508778, 0.0033462520223110914, 0.0043659815564751625, 0.01749434880912304, 0.45558443665504456], [0.001026890822686255, 0.0014788956614211202, 0.001881602220237255, 0.00029091897886246443, 0.0003161149797961116, 0.0003643568779807538, 7.497551996493712e-05, 0.002344898646697402, 0.4841398000717163, 0.0013726098695769906, 0.0038558829110115767, 0.0041435458697378635, 0.004675861448049545, 0.0021155723370611668, 0.0016229794127866626, 0.006166336592286825, 0.4841287136077881], [0.0005873802583664656, 0.001616647350601852, 0.0024820810649544, 0.00015130001702345908, 0.00011801149958046153, 0.00048023794079199433, 4.3296000512782484e-05, 0.0012299279915168881, 0.4861294627189636, 0.001728222006931901, 0.006255460437387228, 0.0021400803234428167, 0.0025567286647856236, 0.004833409562706947, 0.00113230652641505, 0.002396430354565382, 0.48611903190612793], [0.001079473178833723, 0.002940128790214658, 0.006113069597631693, 0.0005145452450960875, 0.00025237377849407494, 0.0008021829416975379, 0.00014207401545718312, 0.002515962580218911, 0.4718865752220154, 0.0041077290661633015, 0.011648755520582199, 0.005741051398217678, 0.005975864361971617, 0.003786431858316064, 0.002050690818578005, 0.00856279768049717, 0.4718802869319916], [0.006499884184449911, 0.006831463426351547, 0.027302555739879608, 0.0019565920811146498, 0.0003006450133398175, 0.0008454597555100918, 0.0002922608400695026, 0.005557238589972258, 0.41151976585388184, 0.0067992680706083775, 0.040100276470184326, 0.008731737732887268, 0.007158646825700998, 0.007498839404433966, 0.007007658015936613, 0.05007214844226837, 0.4115254580974579], [0.016518589109182358, 0.2012253850698471, 0.10876526683568954, 0.07697532325983047, 0.0358927883207798, 0.05594798922538757, 0.053777195513248444, 0.04287824034690857, 0.08795088529586792, 0.04347857087850571, 0.06669024378061295, 0.018756138160824776, 0.02486267313361168, 0.011932287365198135, 0.019868843257427216, 0.04652900993824005, 0.08795066177845001]], [[0.012525881640613079, 0.04398968070745468, 0.02303292043507099, 0.028735680505633354, 0.05447067320346832, 0.02095254696905613, 0.013736053369939327, 0.014820651151239872, 0.2374809831380844, 0.03010939247906208, 0.06556187570095062, 0.049282003194093704, 0.05331811308860779, 0.01583646610379219, 0.024575941264629364, 0.07409147918224335, 0.2374797910451889], [0.0024372937623411417, 0.134346604347229, 0.07361678034067154, 0.02018393948674202, 0.02191765606403351, 0.012914825230836868, 0.012561282142996788, 0.010130390524864197, 0.32136479020118713, 0.012248959392309189, 0.01814456470310688, 0.006313006859272718, 0.010171320289373398, 0.0025753118097782135, 0.005846621468663216, 0.01385420747101307, 0.32137244939804077], [0.0022742741275578737, 0.01674554869532585, 0.1313985139131546, 0.0064729610458016396, 0.009539332240819931, 0.04080741107463837, 0.0053956652991473675, 0.0058334264904260635, 0.3513639271259308, 0.004868340212851763, 0.01493094302713871, 0.0028643771074712276, 0.008764074184000492, 0.016498828306794167, 0.020793871954083443, 0.010085796006023884, 0.35136276483535767], [0.004033764358609915, 0.0934067890048027, 0.017098961398005486, 0.23926609754562378, 0.025055259466171265, 0.02209092676639557, 0.017848674207925797, 0.02969762496650219, 0.2323877215385437, 0.010440210811793804, 0.016172656789422035, 0.019009361043572426, 0.0034970883280038834, 0.0017230180092155933, 0.0068774898536503315, 0.029006443917751312, 0.23238806426525116], [0.0027077263221144676, 0.02353522926568985, 0.010064241476356983, 0.014403527602553368, 0.46600544452667236, 0.029868287965655327, 0.027744952589273453, 0.0025174468755722046, 0.18897020816802979, 0.002408346626907587, 0.004377763718366623, 0.027403753250837326, 0.006692078895866871, 0.0008054658537730575, 0.0019218800589442253, 0.0015989654930308461, 0.18897461891174316], [0.0008461983525194228, 0.012745287269353867, 0.012791633605957031, 0.010122657753527164, 0.020089758560061455, 0.3043075501918793, 0.02599339187145233, 0.002321284031495452, 0.2897864878177643, 0.0013545018155127764, 0.0016651070909574628, 0.00969926081597805, 0.007144162431359291, 0.003859245916828513, 0.005632257089018822, 0.001859018811956048, 0.2897820770740509], [0.0022274802904576063, 0.024129878729581833, 0.018129782751202583, 0.01143691223114729, 0.02954508364200592, 0.059192776679992676, 0.5413843989372253, 0.005082998424768448, 0.1447935700416565, 0.0016921827336773276, 0.0028813534881919622, 0.004716459661722183, 0.0023062152322381735, 0.0013718843692913651, 0.004138705786317587, 0.00217791018076241, 0.14479246735572815], [0.0007924042292870581, 0.004342886619269848, 0.0147187989205122, 0.001271353685297072, 0.005935266613960266, 0.0057135592214763165, 0.0023225632030516863, 0.008487299084663391, 0.44882526993751526, 0.009427139535546303, 0.003554626600816846, 0.008465141989290714, 0.003829637309536338, 0.00869431346654892, 0.006292673293501139, 0.018498538061976433, 0.44882848858833313], [0.017075542360544205, 0.04165670648217201, 0.09032362699508667, 0.04640958830714226, 0.05838962271809578, 0.12241877615451813, 0.04562798887491226, 0.03744145482778549, 0.06261170655488968, 0.041652701795101166, 0.042466986924409866, 0.041372764855623245, 0.054647766053676605, 0.12319710105657578, 0.07539340108633041, 0.03670293837785721, 0.06261132657527924], [0.003205417888239026, 0.011904819868505001, 0.012091731652617455, 0.006897874176502228, 0.006012268364429474, 0.008998489007353783, 0.007844949141144753, 0.004762975033372641, 0.3378387689590454, 0.15228553116321564, 0.01657586544752121, 0.016285276040434837, 0.024118781089782715, 0.003952993080019951, 0.005927578080445528, 0.04346243292093277, 0.3378344178199768], [0.002724470105022192, 0.010024412535130978, 0.020794983953237534, 0.0012117858277633786, 0.004923355299979448, 0.002882680157199502, 0.0018071690574288368, 0.0013564227847382426, 0.44120553135871887, 0.008368640206754208, 0.012222128920257092, 0.01048631314188242, 0.010790479369461536, 0.00938624981790781, 0.015173789113759995, 0.005441887769848108, 0.4411996304988861], [0.0008884118869900703, 0.004966572392731905, 0.002345796674489975, 0.0038140511605888605, 0.029633598402142525, 0.016497116535902023, 0.003562374971807003, 0.002009723801165819, 0.274200439453125, 0.0027811340987682343, 0.0029459157958626747, 0.3134748041629791, 0.04021326079964638, 0.012165484018623829, 0.011341501027345657, 0.0049714939668774605, 0.27418839931488037], [0.0013292423682287335, 0.0031741235870867968, 0.004420950077474117, 0.0005869693122804165, 0.004190822131931782, 0.004853463731706142, 0.0027528819628059864, 0.0005065901787020266, 0.18304698169231415, 0.0037007001228630543, 0.00225565442815423, 0.02467900700867176, 0.5225248336791992, 0.023075195029377937, 0.029583530500531197, 0.006277815438807011, 0.1830413043498993], [0.0011934485519304872, 0.0011972703505307436, 0.008055170997977257, 0.000421518343500793, 0.0007108537829481065, 0.006399841513484716, 0.0005738665931858122, 0.0006422411534003913, 0.3648245334625244, 0.0005503998836502433, 0.001250285655260086, 0.0036745623219758272, 0.011885044164955616, 0.18483692407608032, 0.04650628939270973, 0.002467802260071039, 0.36480993032455444], [0.0035652942024171352, 0.002929875161498785, 0.00750355701893568, 0.003339452436193824, 0.0029645191971212626, 0.018696559593081474, 0.007979441434144974, 0.002393589820712805, 0.3285079300403595, 0.002056811936199665, 0.0036669259425252676, 0.01678227074444294, 0.019413670524954796, 0.07943206280469894, 0.16439281404018402, 0.00788420531898737, 0.3284910023212433], [0.007000735029578209, 0.01993590034544468, 0.005948950070887804, 0.009566698223352432, 0.003581451019272208, 0.0037530423142015934, 0.003943718038499355, 0.014704895205795765, 0.16458885371685028, 0.06221707910299301, 0.014026223681867123, 0.05116696655750275, 0.05257246643304825, 0.016880260780453682, 0.025000395253300667, 0.3805259168148041, 0.16458648443222046], [0.017075348645448685, 0.041656214743852615, 0.09032460302114487, 0.04640873521566391, 0.058390405029058456, 0.1224188581109047, 0.04562682658433914, 0.03744121640920639, 0.06261271983385086, 0.041652072221040726, 0.042466502636671066, 0.04137236252427101, 0.05464804917573929, 0.12319736182689667, 0.0753936842083931, 0.03670267015695572, 0.06261233985424042]], [[0.02255246601998806, 0.016537176445126534, 0.19021019339561462, 0.05639459565281868, 0.010413448326289654, 0.009903442114591599, 0.01795833371579647, 0.03141360729932785, 0.014352582395076752, 0.0074180252850055695, 0.4516300857067108, 0.018311072140932083, 0.014141831547021866, 0.010655286721885204, 0.046470582485198975, 0.06728436797857285, 0.014353012666106224], [0.0051886700093746185, 0.05415106564760208, 0.015387012623250484, 0.007505962625145912, 0.0021845127921551466, 0.023573867976665497, 0.005414517596364021, 0.08547712862491608, 0.38570675253868103, 0.004522663541138172, 0.005325814243406057, 0.0003068078658543527, 0.0006961135077290237, 0.003771910211071372, 0.004824344534426928, 0.010274983011186123, 0.38568779826164246], [0.006280183792114258, 0.457738995552063, 0.07577209174633026, 0.026058992370963097, 0.014405171386897564, 0.016351960599422455, 0.0043957652524113655, 0.007036853581666946, 0.15638478100299835, 0.004735412076115608, 0.04083384573459625, 0.003947857301682234, 0.003733963705599308, 0.010412978008389473, 0.006634787190705538, 0.008894695900380611, 0.15638169646263123], [0.011539377272129059, 0.09949619323015213, 0.1040518581867218, 0.05344853177666664, 0.009582693688571453, 0.2608286142349243, 0.050707630813121796, 0.0085514010861516, 0.16759783029556274, 0.0026775398291647434, 0.021397093310952187, 0.0012701137457042933, 0.004175036679953337, 0.010991677641868591, 0.023143569007515907, 0.002945619635283947, 0.16759516298770905], [0.02973167598247528, 0.07690531015396118, 0.047165174037218094, 0.2296413630247116, 0.0742604061961174, 0.10394757241010666, 0.019687842577695847, 0.0037941480986773968, 0.18572740256786346, 0.011022750288248062, 0.006715601310133934, 0.0030377975199371576, 0.0033546590711921453, 0.0038184982258826494, 0.00878156628459692, 0.0066856760531663895, 0.18572252988815308], [0.003935239743441343, 0.032638661563396454, 0.013407550752162933, 0.024493277072906494, 0.05912860110402107, 0.15248402953147888, 0.022822679951786995, 0.00414193095639348, 0.3344057500362396, 0.0027189224492758512, 0.002054766984656453, 0.0016770398942753673, 0.0033895059023052454, 0.005474029574543238, 0.0016631443286314607, 0.001165649970062077, 0.3343992233276367], [0.00023041841632220894, 0.0014078803360462189, 0.0013588329311460257, 0.0012348921736702323, 0.0034998420160263777, 0.9151123762130737, 0.006135380361229181, 0.0001292256492888555, 0.03173745423555374, 0.0007335039554163814, 0.0001920120557770133, 0.00022399597219191492, 0.00024870727793313563, 0.004835208412259817, 0.0011713503627106547, 1.2268412319826894e-05, 0.03173675015568733], [0.004210618790239096, 0.010797660797834396, 0.03953735530376434, 0.031317777931690216, 0.012942219153046608, 0.18070651590824127, 0.22081008553504944, 0.0014434935292229056, 0.2072792649269104, 0.0025198671501129866, 0.024099325761198997, 0.006713059265166521, 0.016088169068098068, 0.003081422531977296, 0.02703266777098179, 0.00414266949519515, 0.2072777897119522], [0.03075684793293476, 0.050250958651304245, 0.10121431946754456, 0.05514764413237572, 0.044641293585300446, 0.047108590602874756, 0.030974021181464195, 0.08693362772464752, 0.03872528299689293, 0.026210786774754524, 0.10376135259866714, 0.03895127400755882, 0.034228626638650894, 0.04499056562781334, 0.05360503867268562, 0.17377375066280365, 0.03872605040669441], [0.03641815111041069, 0.008052133023738861, 0.0018064351752400398, 0.0030028284527361393, 0.0008273310377262533, 0.0025297130923718214, 0.002727655228227377, 0.5159849524497986, 0.1005997285246849, 0.0241503044962883, 0.0033834988716989756, 0.0022061350755393505, 0.003551473841071129, 0.013575058430433273, 0.011995721608400345, 0.16859211027622223, 0.10059676319360733], [0.018927721306681633, 0.010604850016534328, 0.010019751265645027, 0.005446989554911852, 0.0017387995030730963, 0.015060827136039734, 0.002329367445781827, 0.027639588341116905, 0.3296438157558441, 0.09403447806835175, 0.01991122029721737, 0.013736003078520298, 0.008927475661039352, 0.029324132949113846, 0.04000852629542351, 0.04301200062036514, 0.3296343982219696], [0.027998588979244232, 0.010734878480434418, 0.013445778749883175, 0.008256393484771252, 0.007886757142841816, 0.016468830406665802, 0.005183707922697067, 0.021891770884394646, 0.2058113068342209, 0.053535327315330505, 0.035523660480976105, 0.08833994716405869, 0.0796736627817154, 0.058038126677274704, 0.05007735639810562, 0.1113213524222374, 0.20581258833408356], [0.024024153128266335, 0.0024413098581135273, 0.007671091705560684, 0.002746078185737133, 0.005442376714199781, 0.009366065263748169, 0.0014803579542785883, 0.007753412704914808, 0.18916790187358856, 0.058506570756435394, 0.01770136132836342, 0.1720457524061203, 0.04430493712425232, 0.2029067575931549, 0.050709571689367294, 0.014567193575203419, 0.18916507065296173], [0.002812630496919155, 0.0019144911784678698, 0.0052632298320531845, 0.000284150562947616, 0.0019059226615354419, 0.0025077250320464373, 0.0006264394032768905, 0.0011376042384654284, 0.4189135432243347, 0.009348278865218163, 0.005259343422949314, 0.02028665691614151, 0.03277909755706787, 0.058848679065704346, 0.012434656731784344, 0.006771378219127655, 0.41890615224838257], [0.00345527078025043, 0.0012366781011223793, 0.002847040770575404, 0.00020404857059475034, 0.0014283418422564864, 0.01842554472386837, 0.0013994519831612706, 0.0015247557312250137, 0.12187078595161438, 0.009246139787137508, 0.0021591787226498127, 0.03268887475132942, 0.02692278102040291, 0.5951436161994934, 0.05675017833709717, 0.0028317251708358526, 0.12186546623706818], [0.0061354744248092175, 0.003449586918577552, 0.008863916620612144, 0.0025198073126375675, 0.0005928147002123296, 0.02298600971698761, 0.00788487121462822, 0.0038011176511645317, 0.2517220675945282, 0.009041408076882362, 0.011061213910579681, 0.010346817784011364, 0.029818782582879066, 0.08406944572925568, 0.27485084533691406, 0.021141648292541504, 0.25171419978141785], [0.030755406245589256, 0.050251420587301254, 0.10121684521436691, 0.05514812469482422, 0.044641029089689255, 0.04710926488041878, 0.03097490780055523, 0.08692710101604462, 0.0387251079082489, 0.026210878044366837, 0.10376205295324326, 0.038951434195041656, 0.03423009440302849, 0.04498929902911186, 0.05360664427280426, 0.17377449572086334, 0.03872588276863098]], [[0.04554121941328049, 0.009199986234307289, 0.0063534872606396675, 0.010801888071000576, 0.001969326054677367, 0.01824416220188141, 0.027314908802509308, 0.008589928038418293, 0.3695932626724243, 0.012321523390710354, 0.0057823676615953445, 0.010587123222649097, 0.005133056081831455, 0.038473568856716156, 0.03444083780050278, 0.026070941239595413, 0.36958232522010803], [0.006388530135154724, 0.011096514761447906, 0.015440454706549644, 0.010007442906498909, 0.00395668251439929, 0.029812294989824295, 0.010998351499438286, 0.005796106997877359, 0.44774049520492554, 0.002114752307534218, 0.000970024848356843, 0.000916947377845645, 0.0004213794891256839, 0.0017221391899511218, 0.0034923176281154156, 0.0013794493861496449, 0.44774603843688965], [0.009414441883563995, 0.026494426652789116, 0.06022033840417862, 0.017888369038701057, 0.014413007535040379, 0.018028074875473976, 0.01071783434599638, 0.015700355172157288, 0.3943559229373932, 0.0030113717075437307, 0.0059552849270403385, 0.00252044596709311, 0.003164339577779174, 0.00593807315453887, 0.006492985878139734, 0.01132645271718502, 0.3943582773208618], [0.0088624507188797, 0.016770992428064346, 0.008489384315907955, 0.0279600378125906, 0.010298780165612698, 0.1716640442609787, 0.12188942730426788, 0.007638775743544102, 0.3034001886844635, 0.005140735302120447, 0.001223384984768927, 0.0018318829825147986, 0.00040970585541799664, 0.003559007542207837, 0.004720765631645918, 0.0027475282549858093, 0.30339279770851135], [0.006954554468393326, 0.007336656097322702, 0.0025394682306796312, 0.005201582331210375, 0.005734742619097233, 0.03356388956308365, 0.00523295346647501, 0.00269103329628706, 0.4635368585586548, 0.0014110163319855928, 0.00015829451149329543, 0.0005777047481387854, 0.00011080861440859735, 0.0005434292834252119, 0.0007688202895224094, 0.00011086231097579002, 0.4635273516178131], [0.0073263514786958694, 0.01873069256544113, 0.0031164493411779404, 0.008841820992529392, 0.11086704581975937, 0.11712416261434555, 0.029057204723358154, 0.004409668035805225, 0.3437116742134094, 0.0014607772463932633, 0.00045140658039599657, 0.007177236024290323, 0.0012704264372587204, 0.0014691947726532817, 0.0009623391670174897, 0.00031864267657510936, 0.3437049686908722], [0.002099486766383052, 0.0037424040492624044, 0.001077237888239324, 0.0023204409517347813, 0.01250382699072361, 0.7251942157745361, 0.022480551153421402, 0.0012375111691653728, 0.11314277350902557, 0.0013801399618387222, 6.686729466309771e-05, 0.00027393829077482224, 4.0218885260401294e-05, 0.0008534585358574986, 0.0003895273548550904, 5.673698251484893e-05, 0.11314071714878082], [0.014805400744080544, 0.005912791937589645, 0.009252442978322506, 0.011960674077272415, 0.014281476847827435, 0.07294703274965286, 0.09243258833885193, 0.01328662782907486, 0.35832977294921875, 0.009634271264076233, 0.0018515965202823281, 0.002754193963482976, 0.002813354367390275, 0.0015979899326339364, 0.016356630250811577, 0.013453013263642788, 0.3583301901817322], [0.06075502187013626, 0.04756705090403557, 0.024505222216248512, 0.041119206696748734, 0.055909715592861176, 0.04023066163063049, 0.08756592869758606, 0.047822505235672, 0.10716397315263748, 0.0730045735836029, 0.043590791523456573, 0.07098162174224854, 0.05784333497285843, 0.013427472673356533, 0.033653624355793, 0.08769694715738297, 0.10716239362955093], [0.05291523039340973, 0.001984847243875265, 0.001994884107261896, 0.0008217752911150455, 0.0010112912859767675, 0.004462121520191431, 0.002114827511832118, 0.01088201068341732, 0.42574578523635864, 0.008098365738987923, 0.004711825400590897, 0.00586341880261898, 0.0011751024285331368, 0.0256133284419775, 0.017413906753063202, 0.009441502392292023, 0.42574962973594666], [0.009042135439813137, 0.0015484930481761694, 0.0107125174254179, 0.000604674220085144, 8.401161176152527e-05, 0.0026000775396823883, 0.0005113151855766773, 0.0016089691780507565, 0.43598538637161255, 0.0035414290614426136, 0.00770805636420846, 0.002135239774361253, 0.0014354768209159374, 0.04802033677697182, 0.02825295552611351, 0.01022831816226244, 0.4359806180000305], [0.04007783904671669, 0.001881256466731429, 0.0024513639509677887, 0.0006194608868099749, 0.0020508689340204, 0.008939762599766254, 0.0008169619832187891, 0.005018626339733601, 0.3767133951187134, 0.015994325280189514, 0.014044477604329586, 0.04408397525548935, 0.014529246836900711, 0.05312582477927208, 0.03202439844608307, 0.010926838032901287, 0.37670135498046875], [0.013736987486481667, 0.0011371597647666931, 0.004555847495794296, 0.0003044239419978112, 0.0003189755661878735, 0.010978755541145802, 0.00034805815084837377, 0.0018808480817824602, 0.2441849410533905, 0.005386872682720423, 0.005235855933278799, 0.01776091754436493, 0.006309798918664455, 0.3805254101753235, 0.05955587327480316, 0.0035995652433484793, 0.24417981505393982], [0.009031491354107857, 0.0023163161240518093, 0.013704449869692326, 0.0006354933721013367, 0.0006238433998078108, 0.00426264014095068, 0.0003713623736985028, 0.0014617580454796553, 0.22843414545059204, 0.005722798407077789, 0.007863953709602356, 0.014869583770632744, 0.03801451250910759, 0.21501068770885468, 0.22400610148906708, 0.005238768644630909, 0.22843213379383087], [0.008795831352472305, 0.0017278454033657908, 0.007302428595721722, 0.0005352278240025043, 0.0016677632229402661, 0.01279748696833849, 0.0014263754710555077, 0.0007649898761883378, 0.1651044487953186, 0.007080018520355225, 0.008906455710530281, 0.011133446358144283, 0.014726677909493446, 0.5179486870765686, 0.07256244868040085, 0.0024222692009061575, 0.16509759426116943], [0.02172226458787918, 0.0026696454733610153, 0.006795316468924284, 0.0023306121584028006, 0.00031043755006976426, 0.013657729141414165, 0.0035940948873758316, 0.003131263656541705, 0.306375116109848, 0.019295470789074898, 0.0281047485768795, 0.019133297726511955, 0.005344226956367493, 0.07714380323886871, 0.13694310188293457, 0.047081828117370605, 0.30636706948280334], [0.06075282767415047, 0.04756716638803482, 0.024505963549017906, 0.04111969843506813, 0.0559094063937664, 0.0402311272919178, 0.08756700903177261, 0.04782210290431976, 0.1071636900305748, 0.07300541549921036, 0.04359082877635956, 0.07098083198070526, 0.057844895869493484, 0.013427520170807838, 0.033653680235147476, 0.08769567310810089, 0.10716213285923004]], [[0.008072351105511189, 0.0970616415143013, 0.0479985736310482, 0.08865855634212494, 0.0073208580724895, 0.09594166278839111, 0.012942367233335972, 0.09502130001783371, 0.0848035141825676, 0.14559076726436615, 0.018215667456388474, 0.03304503858089447, 0.00839836522936821, 0.005301028955727816, 0.016955891624093056, 0.14986765384674072, 0.08480477333068848], [0.00029199241544120014, 0.002026236616075039, 0.009927725419402122, 0.0008937967359088361, 0.0009448904893361032, 0.002929836278781295, 0.0007016254239715636, 0.0032919365912675858, 0.48573508858680725, 0.0006974827847443521, 0.0005899725365452468, 0.0008616857812739909, 0.0009893173119053245, 0.00039425274007953703, 0.0009596660383976996, 0.0030321709346026182, 0.4857323169708252], [0.02352430857717991, 0.01939789205789566, 0.026672454550862312, 0.014020427130162716, 0.02560737356543541, 0.023188726976513863, 0.01013965718448162, 0.026953069493174553, 0.3564034402370453, 0.012372939847409725, 0.01160029973834753, 0.013721444644033909, 0.014973224140703678, 0.011269966140389442, 0.031242715194821358, 0.022506842389702797, 0.35640522837638855], [0.0004150836612097919, 0.0019953183364123106, 0.0048773144371807575, 0.0008740141638554633, 0.0006392838549800217, 0.0035667086485773325, 0.0012115498539060354, 0.0022593247704207897, 0.4888775646686554, 0.0007568212458863854, 0.0005134233506396413, 0.001029378385283053, 0.0007043932564556599, 0.00032219517743214965, 0.0010616589570418, 0.0020265160128474236, 0.48886939883232117], [0.0003148639516439289, 0.001826586900278926, 0.00446000462397933, 0.0005542636499740183, 0.0010195644572377205, 0.003765629604458809, 0.0013322030426934361, 0.0013798534637317061, 0.4904574155807495, 0.00042579194996505976, 0.0008980543352663517, 0.000635086209513247, 0.00027596595464274287, 0.00016428271192125976, 0.00040110538247972727, 0.0016371335368603468, 0.49045225977897644], [0.0014843936078250408, 0.008924184367060661, 0.02247716300189495, 0.003506989683955908, 0.0028947722166776657, 0.010724671185016632, 0.0046979463659226894, 0.005851625464856625, 0.45741426944732666, 0.0028790198266506195, 0.0022173512261360884, 0.0026488876901566982, 0.0033455409575253725, 0.0025797525886446238, 0.005034410394728184, 0.005907638464123011, 0.4574113190174103], [2.7402362320572138e-05, 0.0003943797782994807, 0.001930851023644209, 0.00012959442392457277, 0.00015123074990697205, 0.0006607579416595399, 0.0002049604954663664, 0.00030978998984210193, 0.4977753162384033, 6.23662126599811e-05, 6.033935278537683e-05, 9.53183916863054e-05, 6.083087282604538e-05, 3.3789641747716814e-05, 0.00011050031753256917, 0.00022006798826623708, 0.4977724552154541], [0.004204594995826483, 0.007253636140376329, 0.031624481081962585, 0.003278732532635331, 0.002680302830412984, 0.025581251829862595, 0.003637828165665269, 0.01038562972098589, 0.415348082780838, 0.006600002758204937, 0.0032698549330234528, 0.003010248066857457, 0.004509266000241041, 0.013244258239865303, 0.037509091198444366, 0.012514753267168999, 0.415348082780838], [0.02602558396756649, 0.11502430588006973, 0.13907042145729065, 0.08255820721387863, 0.03488663583993912, 0.05803551897406578, 0.033057402819395065, 0.10341104865074158, 0.02057592198252678, 0.06378481537103653, 0.05510827153921127, 0.02587272599339485, 0.033313728868961334, 0.06530474871397018, 0.07745680212974548, 0.04593774676322937, 0.020576084032654762], [5.040438554715365e-05, 0.0021397005766630173, 0.00895668100565672, 0.000232657344895415, 0.00023611639335285872, 0.002490076469257474, 0.00017552664212416857, 0.0028803490567952394, 0.48868849873542786, 0.0007212411146610975, 0.0007951589650474489, 0.00033781962702050805, 0.0006165526574477553, 0.0002109793567797169, 0.0007292263326235116, 0.00205221027135849, 0.48868685960769653], [0.0003890593652613461, 0.000693493231665343, 0.0018270111177116632, 0.0003544257197063416, 0.0003338260285090655, 0.0014996877871453762, 0.0002062274288618937, 0.0028919950127601624, 0.4902200996875763, 0.0007828455418348312, 0.00048663292545825243, 0.002222022507339716, 0.001564528327435255, 0.0006616450264118612, 0.0019176488276571035, 0.00373026542365551, 0.4902186989784241], [0.000591022486332804, 0.005605257581919432, 0.013088002800941467, 0.0014561369316652417, 0.0010515452595427632, 0.006971160415560007, 0.0012339871609583497, 0.007519707549363375, 0.46225234866142273, 0.0006260748486965895, 0.003564959391951561, 0.004405129235237837, 0.006562281399965286, 0.007454396691173315, 0.009721138514578342, 0.0056509170681238174, 0.46224597096443176], [6.160011980682611e-05, 0.0006976075819693506, 0.004922997672110796, 0.00011092484783148393, 0.00012217674520798028, 0.0016010383842512965, 8.087490277830511e-05, 0.0013516803737729788, 0.4888431429862976, 0.00014752670540474355, 0.0003647179401014, 0.0003796535893343389, 0.0030504059977829456, 0.0029147095046937466, 0.005478133447468281, 0.0010295744286850095, 0.4888433814048767], [0.000166792786330916, 0.0015397928655147552, 0.007944038137793541, 0.00013711916108150035, 0.00011599745630519465, 0.0006569723482243717, 0.00010692119394661859, 0.0019003862980753183, 0.4794031083583832, 7.980596274137497e-05, 0.0012594269355759025, 0.000490149948745966, 0.007886458188295364, 0.006780900061130524, 0.010846252553164959, 0.001284137717448175, 0.47940173745155334], [0.0002697754534892738, 0.003752934280782938, 0.008374127559363842, 0.00041484954999759793, 0.00019416961004026234, 0.0014724100474268198, 0.0003446594637352973, 0.0032207488548010588, 0.4782703220844269, 0.0001742991735227406, 0.0021611363627016544, 0.0009780267719179392, 0.005905776284635067, 0.005196746438741684, 0.0085239103063941, 0.0024807851295918226, 0.47826531529426575], [0.0003798682300839573, 0.0012959493324160576, 0.0038639199919998646, 0.0003593916189856827, 0.00022305548191070557, 0.002155375201255083, 0.0004883090150542557, 0.0025148089043796062, 0.48420318961143494, 0.0015796689549461007, 0.001260863384231925, 0.0017355747986584902, 0.0030727966222912073, 0.0015600246842950583, 0.005307079292833805, 0.005799435079097748, 0.4842008948326111], [0.026025498285889626, 0.11502338945865631, 0.13907143473625183, 0.08255776762962341, 0.03488677367568016, 0.058035679161548615, 0.033057257533073425, 0.10341017693281174, 0.020576415583491325, 0.06378437578678131, 0.055108219385147095, 0.025872791185975075, 0.033314116299152374, 0.06530431658029556, 0.07745753973722458, 0.04593765735626221, 0.02057657577097416]], [[0.04480824992060661, 0.03297186642885208, 0.03367864340543747, 0.025074781849980354, 0.022815730422735214, 0.061785053461790085, 0.016387585550546646, 0.06054631993174553, 0.16260534524917603, 0.1300194412469864, 0.06651037186384201, 0.0332353413105011, 0.012909423559904099, 0.01947220414876938, 0.036484528332948685, 0.07809310406446457, 0.16260197758674622], [0.0010800542077049613, 0.0026196117978543043, 0.00236563035286963, 0.002990636508911848, 0.003610211657360196, 0.008666242472827435, 0.0030203580390661955, 0.0036620297469198704, 0.48523062467575073, 0.00047510152217000723, 0.0004351798561401665, 0.00017731636762619019, 5.776186299044639e-05, 7.527276466134936e-05, 6.850382487755269e-05, 0.00023697895812802017, 0.4852283000946045], [0.0028387606143951416, 0.010509196668863297, 0.014097252860665321, 0.011465372517704964, 0.009642244316637516, 0.017164289951324463, 0.018239587545394897, 0.009173719212412834, 0.4459141194820404, 0.0013492201687768102, 0.004466199316084385, 0.001956002553924918, 0.0017063363920897245, 0.0011636473936960101, 0.0012486072955653071, 0.003153716679662466, 0.4459116756916046], [0.006845681928098202, 0.024603400379419327, 0.023730771616101265, 0.008230338804423809, 0.011099331080913544, 0.034567300230264664, 0.006372840143740177, 0.023801378905773163, 0.42740878462791443, 0.0034354578237980604, 0.001242276281118393, 0.00020345202938187867, 9.469996439293027e-05, 0.00032897398341447115, 0.00036875149817205966, 0.0002733061264734715, 0.4273930788040161], [0.002326486399397254, 0.014244666323065758, 0.007843371480703354, 0.006786344572901726, 0.001599332899786532, 0.01107979565858841, 0.0037854891270399094, 0.004203256219625473, 0.4735513925552368, 0.00065084348898381, 0.0002197490684920922, 2.4478951672790572e-05, 5.385138592828298e-06, 2.81820884993067e-05, 3.485134584479965e-05, 9.33391202124767e-05, 0.47352316975593567], [0.001679741544649005, 0.021424351260066032, 0.017392024397850037, 0.006670094095170498, 0.003000916913151741, 0.011584553867578506, 0.0038224360905587673, 0.007737676613032818, 0.4624473452568054, 0.000476703280583024, 0.0005946724559180439, 9.42141778068617e-05, 4.75219203508459e-05, 7.814638229319826e-05, 8.306042582262307e-05, 0.00042882596608251333, 0.46243762969970703], [0.0007834460702724755, 0.008080177940428257, 0.007475530728697777, 0.0026598579715937376, 0.002991017885506153, 0.00956282950937748, 0.0011644703336060047, 0.002033824101090431, 0.4824669659137726, 0.00015426297613885254, 0.0001202375497086905, 1.7891805327963084e-05, 4.126811290916521e-06, 9.059407602762803e-06, 8.434074516117107e-06, 2.0615409084712155e-05, 0.48244717717170715], [0.014767533168196678, 0.052761223167181015, 0.044683732092380524, 0.0628630742430687, 0.07557976245880127, 0.22296178340911865, 0.054364241659641266, 0.011514107696712017, 0.18531815707683563, 0.009669188410043716, 0.0156327486038208, 0.01374389324337244, 0.0038618582766503096, 0.0127576794475317, 0.02555658668279648, 0.008647947572171688, 0.18531642854213715], [0.0330275297164917, 0.08639538288116455, 0.0546003133058548, 0.0877411738038063, 0.06216031312942505, 0.0857500210404396, 0.0941241979598999, 0.05902399495244026, 0.052815992385149, 0.07450896501541138, 0.07156369090080261, 0.045038677752017975, 0.01917661540210247, 0.023329945281147957, 0.03058750182390213, 0.06733981519937515, 0.052815914154052734], [0.0019794555846601725, 0.0003886910271830857, 0.0012518479488790035, 0.000655899231787771, 0.00027334477636031806, 0.0012694813776761293, 0.00015124864876270294, 0.0007694882224313915, 0.4904400408267975, 0.0012937705032527447, 0.0046974350698292255, 0.002628656104207039, 0.000338042969815433, 0.0007595503702759743, 0.0009430511854588985, 0.0017310597468167543, 0.4904288053512573], [0.0024472924415022135, 0.00020496420620474964, 0.0007056475151330233, 0.00013834694982506335, 6.45154868834652e-05, 0.00045146237243898213, 7.685282616876066e-05, 0.0004525057156570256, 0.4852296710014343, 0.002709990134462714, 0.006238013505935669, 0.006091473624110222, 0.0009261975064873695, 0.0021920346189290285, 0.0018912581726908684, 0.004965838044881821, 0.4852139353752136], [0.005546792410314083, 0.0005828047287650406, 0.0036694954615086317, 0.0003416200925130397, 6.882456364110112e-05, 0.00035175622906535864, 6.822581781307235e-05, 0.0007095675682649016, 0.4506056010723114, 0.00519830035045743, 0.01881220005452633, 0.0057239956222474575, 0.0035084798000752926, 0.015229422599077225, 0.02350020594894886, 0.01549785677343607, 0.4505849778652191], [0.0010218201205134392, 0.00012966724170837551, 0.0016478016041219234, 6.639950152020901e-05, 3.411811121623032e-05, 0.00024926173500716686, 1.4227876818040386e-05, 0.00019059350597672164, 0.4902417063713074, 0.0006493504042737186, 0.005307517014443874, 0.0040329815819859505, 0.0012620934285223484, 0.001588954241015017, 0.002162833232432604, 0.0011746532982215285, 0.49022603034973145], [0.003501582657918334, 0.0002870450261980295, 0.0022576579358428717, 9.947834041668102e-05, 9.544621570967138e-05, 0.0002486974117346108, 5.0738548452500254e-05, 0.00028689997270703316, 0.4697716534137726, 0.0010977355996146798, 0.011452978476881981, 0.007928447797894478, 0.008680086582899094, 0.008618864230811596, 0.01085326261818409, 0.005007029976695776, 0.4697624742984772], [0.004642265383154154, 0.00047803219058550894, 0.005091956816613674, 0.0001775922137312591, 0.0001717896229820326, 0.00044829200487583876, 6.620610656682402e-05, 0.0005473966593854129, 0.4605410099029541, 0.001668676151894033, 0.02111070789396763, 0.0099417082965374, 0.007544473744928837, 0.007995713502168655, 0.012053235433995724, 0.006989119108766317, 0.4605318009853363], [0.003942297305911779, 0.0007076837355270982, 0.008048424497246742, 0.0001359309972031042, 0.0003430764772929251, 0.003192560514435172, 0.00015848218754399568, 0.0003523774794302881, 0.3234092891216278, 0.007097167428582907, 0.17125971615314484, 0.05100984871387482, 0.019227804616093636, 0.03558855503797531, 0.04701126366853714, 0.00511261448264122, 0.3234029710292816], [0.03302721306681633, 0.08639654517173767, 0.054601170122623444, 0.08774027228355408, 0.06215977296233177, 0.08575105667114258, 0.09412454068660736, 0.05902286618947983, 0.05281829461455345, 0.07450903952121735, 0.07156340032815933, 0.04503767564892769, 0.019176090136170387, 0.023329636082053185, 0.030587175861001015, 0.0673370286822319, 0.05281822755932808]], [[0.011812104843556881, 0.0302154291421175, 0.018373887985944748, 0.018068216741085052, 0.08424177020788193, 0.013353501446545124, 0.0195289496332407, 0.03867679834365845, 0.3335633873939514, 0.01228831335902214, 0.015609201975166798, 0.032111670821905136, 0.012758095748722553, 0.0061138225719332695, 0.004474921151995659, 0.015248680487275124, 0.3335612416267395], [0.006903189234435558, 0.6584064364433289, 0.016305482015013695, 0.03119552694261074, 0.004088892601430416, 0.0051860446110367775, 0.00527097936719656, 0.008094911463558674, 0.10295216739177704, 0.011894120834767818, 0.027632376179099083, 0.0011993215885013342, 0.0015239602653309703, 0.0035313968546688557, 0.005179283674806356, 0.007686154451221228, 0.10294996201992035], [0.0017404663376510143, 0.013024003244936466, 0.0638813003897667, 0.003166348207741976, 0.0034793063532561064, 0.007856602780520916, 0.0028877202421426773, 0.0008187157800421119, 0.4356599450111389, 0.0032003161031752825, 0.013003394939005375, 0.0014218718279153109, 0.0023714208509773016, 0.0047865635715425014, 0.004659844562411308, 0.0023978373501449823, 0.43564435839653015], [0.006643806584179401, 0.06759169697761536, 0.02867521345615387, 0.2508712410926819, 0.024001769721508026, 0.008677888661623001, 0.013167690485715866, 0.004075413569808006, 0.2602134346961975, 0.017179351300001144, 0.013721817173063755, 0.0033908530604094267, 0.0012215559836477041, 0.0019341274164617062, 0.01065319124609232, 0.02777142822742462, 0.26020947098731995], [0.00528071029111743, 0.012586739845573902, 0.012856184504926205, 0.02790392003953457, 0.26394325494766235, 0.010174043476581573, 0.013306442648172379, 0.001976189436390996, 0.288747102022171, 0.01774829439818859, 0.02144251950085163, 0.018231764435768127, 0.0022519645281136036, 0.0029482017271220684, 0.0046544428914785385, 0.007204971741884947, 0.288743257522583], [0.00331202638335526, 0.005231511313468218, 0.019232284277677536, 0.004627323243767023, 0.0071184998378157616, 0.17192494869232178, 0.03073861449956894, 0.008179274387657642, 0.3352595865726471, 0.003848151070997119, 0.0038266179617494345, 0.00354035128839314, 0.006275768391788006, 0.03807111084461212, 0.020371876657009125, 0.0031910173129290342, 0.33525094389915466], [0.004287909250706434, 0.007329930085688829, 0.007054599467664957, 0.013850883580744267, 0.017220720648765564, 0.01657622680068016, 0.3182325065135956, 0.014877156354486942, 0.27220070362091064, 0.010209450498223305, 0.004915465135127306, 0.004503487143665552, 0.0014725106302648783, 0.003366798395290971, 0.024533716961741447, 0.007173631340265274, 0.2721942663192749], [0.0003735290083568543, 0.003015767550095916, 0.0038555413484573364, 0.000892238283995539, 0.0009258562931790948, 0.0008289494435302913, 0.0013859763275831938, 0.015143233351409435, 0.4687168598175049, 0.006721692159771919, 0.0010464602382853627, 0.0018745623528957367, 0.0017630831571295857, 0.003176035126671195, 0.010428940877318382, 0.011136632412672043, 0.4687146246433258], [0.00581139512360096, 0.07754470407962799, 0.0825522243976593, 0.05138538032770157, 0.13005641102790833, 0.15425322949886322, 0.08939588069915771, 0.04182581230998039, 0.04756972938776016, 0.04192528501152992, 0.034860797226428986, 0.04306088015437126, 0.05358944088220596, 0.04296611621975899, 0.03213052451610565, 0.023502783849835396, 0.04756931960582733], [0.002896580845117569, 0.014758261851966381, 0.002491266932338476, 0.004866006784141064, 0.030563633888959885, 0.005324942991137505, 0.005761244799941778, 0.00210519228130579, 0.09599211812019348, 0.6503998637199402, 0.024209290742874146, 0.012130741961300373, 0.026340357959270477, 0.0034807685296982527, 0.006608541589230299, 0.016079507768154144, 0.0959915742278099], [0.016279008239507675, 0.04880198463797569, 0.014401706866919994, 0.011640900745987892, 0.01635190285742283, 0.005985967814922333, 0.0052584814839065075, 0.003336048685014248, 0.2932893931865692, 0.02742045558989048, 0.21441768109798431, 0.011885302141308784, 0.011931284330785275, 0.007051394321024418, 0.008538610301911831, 0.010119940154254436, 0.29329007863998413], [0.0018675478640943766, 0.002484744181856513, 0.002930452348664403, 0.0023932955227792263, 0.03036515973508358, 0.006949533708393574, 0.0023170437198132277, 0.0013139477232471108, 0.22744709253311157, 0.016735607758164406, 0.007536791265010834, 0.3523162603378296, 0.08877135813236237, 0.011215425096452236, 0.0065015750005841255, 0.011413875967264175, 0.2274402678012848], [0.0028463867492973804, 0.006073690019547939, 0.005173449870198965, 0.0015207557007670403, 0.004376476164907217, 0.010370762087404728, 0.0016389323864132166, 0.0016645870637148619, 0.25066664814949036, 0.011171055026352406, 0.013316246680915356, 0.0318145677447319, 0.34112435579299927, 0.027619145810604095, 0.03056422248482704, 0.009395316243171692, 0.2506634294986725], [0.0011369027197360992, 0.0021319715306162834, 0.004433348774909973, 0.0006461366428993642, 0.0007294805254787207, 0.0038345232605934143, 0.0003027234924957156, 0.0010619123931974173, 0.2531304359436035, 0.0012920188019052148, 0.00338237383402884, 0.01653657853603363, 0.010879944078624249, 0.4128892719745636, 0.03201054409146309, 0.0024761981330811977, 0.25312548875808716], [0.0036597352009266615, 0.004679576028138399, 0.009837104938924313, 0.0026691535022109747, 0.0023126774467527866, 0.004960954189300537, 0.003464070614427328, 0.007896728813648224, 0.29014158248901367, 0.009089658968150616, 0.008716607466340065, 0.016759952530264854, 0.0276813842356205, 0.07457028329372406, 0.22423134744167328, 0.01918860711157322, 0.2901404798030853], [0.008345572277903557, 0.017568746581673622, 0.008071848191320896, 0.025688832625746727, 0.010864408686757088, 0.002627164125442505, 0.0021679294295608997, 0.008575713261961937, 0.14276736974716187, 0.06415924429893494, 0.02072158455848694, 0.026198796927928925, 0.0295125599950552, 0.0070204283110797405, 0.024105645716190338, 0.4588351547718048, 0.142768993973732], [0.005811500363051891, 0.07754436135292053, 0.08255141228437424, 0.0513850562274456, 0.13005733489990234, 0.1542530506849289, 0.08939344435930252, 0.04182568937540054, 0.04757062718272209, 0.04192609712481499, 0.03486085683107376, 0.043061356991529465, 0.05358906835317612, 0.04296655207872391, 0.03213036432862282, 0.023502981290221214, 0.04757021740078926]], [[0.0019849087111651897, 0.08855611830949783, 0.2910389006137848, 0.04698808118700981, 0.009876053780317307, 0.05755433812737465, 0.012332109734416008, 0.1292228102684021, 0.10991544276475906, 0.027511289343237877, 0.00549459271132946, 0.005734039004892111, 0.012193862348794937, 0.02143184095621109, 0.04460465535521507, 0.02564733475446701, 0.1099136546254158], [0.0006276286439970136, 0.007423233240842819, 0.013901297003030777, 0.016408072784543037, 0.0030015490483492613, 0.006943728309124708, 0.0038856177125126123, 0.018543429672718048, 0.46218937635421753, 0.00046874547842890024, 0.0005420306697487831, 0.00021973784896545112, 0.00012679400970228016, 0.00028480769833549857, 0.0003197281330358237, 0.002932084258645773, 0.46218210458755493], [0.00610472122207284, 0.00838943850249052, 0.042543087154626846, 0.010234312154352665, 0.007001273334026337, 0.014032558538019657, 0.008933191187679768, 0.04775406792759895, 0.4150524437427521, 0.0044616395607590675, 0.003059007693082094, 0.0023303984198719263, 0.0019287529867142439, 0.0028897172305732965, 0.0021838685497641563, 0.008044886402785778, 0.4150567054748535], [0.0012368588941171765, 0.011893616989254951, 0.02590339630842209, 0.00960689689964056, 0.008803652599453926, 0.01800016686320305, 0.015136396512389183, 0.024688607081770897, 0.4402122497558594, 0.0007514867465943098, 0.0005996265099383891, 0.0002394503098912537, 8.770742715569213e-05, 0.00026368172257207334, 0.0004236908571328968, 0.0019566179253160954, 0.44019609689712524], [0.0011976668611168861, 0.010508932173252106, 0.010565870441496372, 0.0056952061131596565, 0.0018003394361585379, 0.006022824440151453, 0.0022222239058464766, 0.003512006951496005, 0.4780665636062622, 0.0003465223126113415, 0.0005982271977700293, 0.000129126594401896, 5.479178071254864e-05, 0.00016803036851342767, 0.00024263568047899753, 0.0008168180356733501, 0.47805219888687134], [0.003102764254435897, 0.005295590963214636, 0.02131984569132328, 0.0018823794089257717, 0.0015874860109761357, 0.006617260631173849, 0.0009350915206596255, 0.0032096952199935913, 0.47591397166252136, 0.0014818526105955243, 0.0007619521929882467, 0.00015171317500062287, 0.00034284955472685397, 0.000257182284258306, 0.00030193428392522037, 0.0009315503411926329, 0.47590693831443787], [0.0005954334046691656, 0.0034797864500433207, 0.006197834853082895, 0.0016791351372376084, 0.003445325419306755, 0.004933944437652826, 0.0012294044718146324, 0.001167881884612143, 0.4882079064846039, 0.0002100910642184317, 0.0004091616428922862, 3.307452061562799e-05, 1.6781505109975114e-05, 4.9918708100449294e-05, 3.62369573849719e-05, 0.00010921825014520437, 0.48819881677627563], [0.013242204673588276, 0.036340516060590744, 0.05910816788673401, 0.03873424232006073, 0.04125585779547691, 0.05659734085202217, 0.023972276598215103, 0.034682974219322205, 0.3300987184047699, 0.006830625701695681, 0.006497418042272329, 0.0014774419832974672, 0.001694126520305872, 0.00455170962959528, 0.006821697577834129, 0.007999786175787449, 0.3300948739051819], [0.01587531715631485, 0.08117248117923737, 0.15265178680419922, 0.11273135244846344, 0.06255227327346802, 0.06127280369400978, 0.09383638203144073, 0.06239417940378189, 0.034661296755075455, 0.061965107917785645, 0.026844659820199013, 0.028733020648360252, 0.050168730318546295, 0.043751060962677, 0.047621648758649826, 0.029106590896844864, 0.0346611812710762], [0.0007625267608091235, 0.0007473639561794698, 0.002661657752469182, 0.0004905101377516985, 0.00019620751845650375, 0.0008391743176616728, 0.00020052216132171452, 0.0018509100191295147, 0.4909779727458954, 0.0012319288216531277, 0.000976788462139666, 0.0006127048982307315, 0.0002627545618452132, 0.0007706846226938069, 0.001420506159774959, 0.005029009189456701, 0.49096885323524475], [0.00043426849879324436, 0.002019111532717943, 0.0071866740472614765, 0.0008678800077177584, 0.00010529885184951127, 0.00035610012128017843, 0.00010900545748881996, 0.008771699853241444, 0.47931337356567383, 0.0009992095874622464, 0.0029752247501164675, 0.0005808927235193551, 0.0008009190205484629, 0.004420299082994461, 0.004240072797983885, 0.0075162677094340324, 0.479303777217865], [0.0015254586469382048, 0.0017632500967010856, 0.00968964397907257, 0.000147362778079696, 3.1503583159064874e-05, 0.0003131706907879561, 2.6138917746720836e-05, 0.0011554609518498182, 0.48007282614707947, 0.0005642945761792362, 0.005718571599572897, 0.0006580896442756057, 0.00476815877482295, 0.003074191976338625, 0.006273750215768814, 0.00415963726118207, 0.4800584018230438], [0.0004753679677378386, 0.0005127072799950838, 0.0028559572529047728, 5.456441795104183e-05, 3.32090312440414e-05, 0.00012077058636350557, 1.2964500456291717e-05, 0.0005332885775715113, 0.49256739020347595, 0.00035157211823388934, 0.0035839087795466185, 0.00028851311071775854, 0.000575128651689738, 0.002278165426105261, 0.0021125096827745438, 0.0010798713192343712, 0.4925641119480133], [0.0009278013603761792, 0.0002872979093808681, 0.004842829424887896, 2.2579160940949805e-05, 1.3637698430102319e-05, 0.00013281195424497128, 2.1045088942628354e-05, 0.00023501082614529878, 0.49199047684669495, 0.00047653273213654757, 0.0031366932671517134, 0.00021838283282704651, 0.0015071578091010451, 0.0019947593100368977, 0.0017317443853244185, 0.00047306291526183486, 0.4919881224632263], [0.0015131620457395911, 0.0007497292244806886, 0.006425360217690468, 9.67730738921091e-05, 3.854112947010435e-05, 0.00026940027601085603, 5.812298695673235e-05, 0.0005062506534159184, 0.4816824197769165, 0.0012696698540821671, 0.006251254118978977, 0.0009212627774104476, 0.002716516610234976, 0.01004814077168703, 0.005060023628175259, 0.0007168963784351945, 0.48167645931243896], [0.0018249948043376207, 0.002975980518385768, 0.025478724390268326, 0.0014519713586196303, 0.000921664759516716, 0.002535453299060464, 0.0004907372058369219, 0.004317663609981537, 0.44556838274002075, 0.004286850802600384, 0.009634511545300484, 0.0046390448696911335, 0.0037978794425725937, 0.018636900931596756, 0.02111905999481678, 0.00675989082083106, 0.4455603063106537], [0.015875382348895073, 0.08117321878671646, 0.15265372395515442, 0.11273261159658432, 0.06255240738391876, 0.061273347586393356, 0.0938355028629303, 0.0623948834836483, 0.03466196730732918, 0.06196365877985954, 0.02684403769671917, 0.02873244509100914, 0.05016680806875229, 0.04375050216913223, 0.0476214624941349, 0.029106171801686287, 0.034661851823329926]], [[0.023521874099969864, 0.13887333869934082, 0.020319197326898575, 0.08378175646066666, 0.023465899750590324, 0.07573378086090088, 0.057652510702610016, 0.4154953360557556, 0.027856072410941124, 0.03151163086295128, 0.04038861021399498, 0.004716391675174236, 0.0022513114381581545, 0.004074785392731428, 0.004794635809957981, 0.0177069753408432, 0.02785603143274784], [0.0007662298157811165, 0.018135299906134605, 0.011443358846008778, 0.009041102603077888, 0.002577859442681074, 0.018399721011519432, 0.0027045251335948706, 0.009740771725773811, 0.4632851481437683, 9.92259883787483e-05, 0.00035741852479986846, 1.979589978873264e-05, 1.205618173116818e-05, 2.6383597287349403e-05, 6.090150782256387e-05, 5.580222205026075e-05, 0.4632743299007416], [0.002366321859881282, 0.10162416845560074, 0.031625375151634216, 0.0313563346862793, 0.010172008536756039, 0.04109764099121094, 0.009599265642464161, 0.024887461215257645, 0.36734747886657715, 0.0021581666078418493, 0.0033202350605279207, 0.0003368133620824665, 0.000686759885866195, 0.0017312692943960428, 0.0029334593564271927, 0.0014132607029750943, 0.3673441410064697], [0.0004695113457273692, 0.06625770032405853, 0.026233257725834846, 0.024390406906604767, 0.0022858772426843643, 0.012010159902274609, 0.003493283875286579, 0.009133169427514076, 0.4276075065135956, 9.602065983926877e-05, 0.000298014230793342, 8.248635822383221e-06, 6.328611561912112e-06, 2.4179114916478284e-05, 3.294492489658296e-05, 6.319790554698557e-05, 0.42759016156196594], [0.0003092829720117152, 0.0526396781206131, 0.013272004202008247, 0.01004702877253294, 0.006345823872834444, 0.01564851403236389, 0.006943189539015293, 0.009577170945703983, 0.4424114525318146, 0.00014846559497527778, 0.00011577551777008921, 1.6292860891553573e-05, 1.394977152813226e-05, 4.444810838322155e-05, 5.568798223976046e-05, 1.6206218788283877e-05, 0.44239500164985657], [0.0005457582883536816, 0.010768098756670952, 0.008021951653063297, 0.006373038049787283, 0.011970696970820427, 0.017858441919088364, 0.012966259382665157, 0.0038098637014627457, 0.4635918438434601, 0.0001516962656751275, 7.444067887263373e-05, 6.174557347549126e-05, 4.51018349849619e-05, 4.19144744228106e-05, 4.8041616537375376e-05, 9.0475965407677e-05, 0.46358057856559753], [0.00016606459394097328, 0.00496461009606719, 0.002816763473674655, 0.004834216553717852, 0.008082536049187183, 0.0035655887331813574, 0.0043146051466465, 0.0007516908226534724, 0.4852212071418762, 2.134717578883283e-05, 2.520662201277446e-05, 7.673579602851532e-06, 2.4434507395199034e-06, 3.6411822748050326e-06, 5.242377937975107e-06, 8.29257805889938e-06, 0.4852089583873749], [0.009132195264101028, 0.0876205638051033, 0.03505895659327507, 0.1058327928185463, 0.03761347383260727, 0.24760237336158752, 0.08190281689167023, 0.044790688902139664, 0.15226894617080688, 0.01582510583102703, 0.012782753445208073, 0.0029895156621932983, 0.0023663993924856186, 0.003747776383534074, 0.006415943615138531, 0.0017819269560277462, 0.15226785838603973], [0.024940278381109238, 0.11619962751865387, 0.0494433231651783, 0.1186584085226059, 0.037716783583164215, 0.08430974185466766, 0.06299067288637161, 0.14452670514583588, 0.03058304637670517, 0.07242625951766968, 0.06421176344156265, 0.02264004945755005, 0.022385884076356888, 0.02793087065219879, 0.0417201966047287, 0.04873313754796982, 0.03058326616883278], [0.0033791474997997284, 0.004582847468554974, 0.003426425391808152, 0.004246036987751722, 0.00424323370680213, 0.0056143151596188545, 0.003030066844075918, 0.016488224267959595, 0.47164738178253174, 0.004719053860753775, 0.0038119915407150984, 0.0009640498901717365, 0.00029877875931560993, 0.00018914479005616158, 0.0005421480163931847, 0.0011769999982789159, 0.4716401994228363], [0.006413278169929981, 0.003272519214078784, 0.003110843012109399, 0.0008817933849059045, 0.0004821987240575254, 0.001507546054199338, 0.0002947902830783278, 0.008211481384932995, 0.4588344991207123, 0.022323373705148697, 0.020337840542197227, 0.002382119884714484, 0.0005742342909798026, 0.0010874224826693535, 0.0016048356192186475, 0.009861364960670471, 0.45881983637809753], [0.010251188650727272, 0.0025566192343831062, 0.004620653111487627, 0.001298433286137879, 0.0008595691761001945, 0.0018477147677913308, 0.0008575071697123349, 0.020378297194838524, 0.3563784062862396, 0.1091570034623146, 0.03954612463712692, 0.014599290676414967, 0.006599105428904295, 0.0049652280285954475, 0.0075399610213935375, 0.06217719614505768, 0.35636770725250244], [0.00885496474802494, 0.0013921349309384823, 0.0040003652684390545, 0.0003038168651983142, 0.0003060829476453364, 0.0005859033553861082, 0.00016064838564489037, 0.006968801375478506, 0.37125954031944275, 0.03355438634753227, 0.0159759521484375, 0.017153006047010422, 0.039842359721660614, 0.02561977691948414, 0.03359735384583473, 0.06917178630828857, 0.3712531626224518], [0.0016649097669869661, 0.0002731268177740276, 0.000957038311753422, 0.00015346088912338018, 0.00010003867646446452, 0.0004095886251889169, 7.774698315188289e-05, 0.0005874835187569261, 0.4576214849948883, 0.004385953303426504, 0.004524656105786562, 0.0075546796433627605, 0.016576867550611496, 0.0069027249701321125, 0.01310378685593605, 0.02749699354171753, 0.45760926604270935], [0.0031203110702335835, 0.0004939856007695198, 0.001712761353701353, 0.0003070902603212744, 0.00013497289910446852, 0.0002767530095297843, 0.00015221690409816802, 0.0014088372699916363, 0.45046287775039673, 0.01996263675391674, 0.012735324911773205, 0.00896986573934555, 0.010660086758434772, 0.009114466607570648, 0.014385048300027847, 0.01565508171916008, 0.4504474103450775], [0.008723906241357327, 0.0023722914047539234, 0.005307583138346672, 0.0014423956163227558, 0.00028802952147088945, 0.0011578716803342104, 0.0002818116918206215, 0.006803450174629688, 0.37336069345474243, 0.04519135132431984, 0.055846381932497025, 0.008100657723844051, 0.00407094182446599, 0.0025663163978606462, 0.0038833587896078825, 0.10725120455026627, 0.3733517825603485], [0.02493949420750141, 0.11620031297206879, 0.04944377392530441, 0.11865917593240738, 0.03771592304110527, 0.08430953323841095, 0.06298968940973282, 0.1445235311985016, 0.030583694577217102, 0.07242827862501144, 0.06421227008104324, 0.02263951674103737, 0.022385504096746445, 0.027931073680520058, 0.04172063618898392, 0.04873381555080414, 0.030583910644054413]], [[0.15641790628433228, 0.019472215324640274, 0.015247542411088943, 0.013404838740825653, 0.01967945322394371, 0.016380392014980316, 0.0046415734104812145, 0.023537883535027504, 0.1628110259771347, 0.06615925580263138, 0.1434141844511032, 0.022935261949896812, 0.04915748909115791, 0.015306605957448483, 0.04002919793128967, 0.06859113276004791, 0.16281402111053467], [0.017557820305228233, 0.007604199927300215, 0.059121958911418915, 0.0214568879455328, 0.009003871120512486, 0.022746462374925613, 0.003168415045365691, 0.0034808821510523558, 0.4249211549758911, 0.0005404543480835855, 0.0032355240546166897, 0.0004610133182723075, 0.0004868287069257349, 0.00017495555221103132, 0.0003916494606528431, 0.0007276583346538246, 0.42492014169692993], [0.039214447140693665, 0.03568170592188835, 0.03868825361132622, 0.13644924759864807, 0.035623498260974884, 0.03159964829683304, 0.016966361552476883, 0.049791209399700165, 0.28974586725234985, 0.006439655087888241, 0.004995717667043209, 0.0036415448412299156, 0.005137015599757433, 0.00295317848213017, 0.004329044371843338, 0.008989431895315647, 0.28975409269332886], [0.004575551021844149, 0.016080105677247047, 0.005927844904363155, 0.010002032853662968, 0.024588558822870255, 0.036488890647888184, 0.011798032559454441, 0.018629098311066628, 0.43407586216926575, 0.0009250261937268078, 0.0013515491737052798, 0.00027101539308205247, 0.0005121860303916037, 0.00016572978347539902, 0.00026561651611700654, 0.0002657518198247999, 0.43407711386680603], [0.001959542278200388, 0.0025327231269329786, 0.0030955239199101925, 0.0028464850038290024, 0.016441889107227325, 0.06613459438085556, 0.03430316969752312, 0.00459279352799058, 0.4327998161315918, 0.0007739319116808474, 0.0002040095132542774, 0.00039185595232993364, 0.00025424480554647744, 0.00020460222731344402, 0.0004650890768971294, 0.00019668148888740689, 0.4328029155731201], [0.037771280854940414, 0.005310892593115568, 0.007604767568409443, 0.010762638412415981, 0.0161296259611845, 0.05960553511977196, 0.06713485717773438, 0.025119103491306305, 0.3785499632358551, 0.0012296921340748668, 0.0014666297938674688, 0.0009050819207914174, 0.0007641538977622986, 0.0007323913159780204, 0.006183965131640434, 0.002177775138989091, 0.3785516023635864], [0.007608044892549515, 0.0012920108856633306, 0.0018191651906818151, 0.004531044512987137, 0.0038887360133230686, 0.011789485812187195, 0.00818362832069397, 0.01839609630405903, 0.47020336985588074, 0.0009354655048809946, 0.0003364763979334384, 0.00011879779049195349, 3.82945072487928e-05, 6.553070852532983e-05, 0.00014574828674085438, 0.00043933792039752007, 0.4702087640762329], [0.027132174000144005, 0.025193430483341217, 0.011770728044211864, 0.014639303088188171, 0.002379937097430229, 0.02090044878423214, 0.00795811414718628, 0.006066437810659409, 0.4164263904094696, 0.0202657300978899, 0.007372016087174416, 0.0011321034980937839, 0.002829032251611352, 0.004533847793936729, 0.0069343033246695995, 0.008051430806517601, 0.41641467809677124], [0.10680033266544342, 0.06203277036547661, 0.03412771224975586, 0.05610813945531845, 0.07080619037151337, 0.0797877162694931, 0.08210408687591553, 0.06484805792570114, 0.07475332170724869, 0.04809525981545448, 0.03827739134430885, 0.048354387283325195, 0.06098698452115059, 0.021728895604610443, 0.03311336413025856, 0.04332215338945389, 0.07475318759679794], [0.019269606098532677, 0.00725571857765317, 0.0066689965315163136, 0.00751078687608242, 0.0048647779040038586, 0.002715942682698369, 0.0013545786496251822, 0.0009377734386362135, 0.4067264497280121, 0.0065541947260499, 0.05163077265024185, 0.02010190673172474, 0.01942593976855278, 0.008450549095869064, 0.01945435255765915, 0.01034926250576973, 0.4067283868789673], [0.014850589446723461, 0.0007954047177918255, 0.002272674348205328, 0.001676072715781629, 0.0007673733052797616, 0.0008293810533359647, 0.0003126039227936417, 0.004069962073117495, 0.4549323618412018, 0.0011458296794444323, 0.012946616858243942, 0.013650696724653244, 0.016378093510866165, 0.005186373833566904, 0.008234103210270405, 0.007014406844973564, 0.4549373388290405], [0.007937241345643997, 0.0007685436285100877, 0.0012934806291013956, 0.0003093542472925037, 0.0010962937958538532, 0.0011660130694508553, 0.0010253441287204623, 0.0008749557309783995, 0.4423920810222626, 0.003065013326704502, 0.0037059795577079058, 0.012568687088787556, 0.01972794532775879, 0.02009713090956211, 0.03529074788093567, 0.006283702794462442, 0.4423975646495819], [0.002921934938058257, 0.0001419578184140846, 0.0004929805872961879, 0.00016105009126476943, 2.8721247872454114e-05, 0.0002528908080421388, 0.00011184791219420731, 0.0009949568193405867, 0.4591265022754669, 0.0005495003424584866, 0.0005930094048380852, 0.0014745795633643866, 0.005237529519945383, 0.017662763595581055, 0.04676802456378937, 0.0043440028093755245, 0.4591376781463623], [0.032425396144390106, 0.0006863664602860808, 0.002291613258421421, 0.0006443239981308579, 0.00025190733140334487, 0.0004435233131516725, 0.0010602165712043643, 0.0007373038679361343, 0.1700630933046341, 0.001335600041784346, 0.00491587957367301, 0.002912278752774, 0.017438678070902824, 0.02692965231835842, 0.5491586327552795, 0.018639331683516502, 0.1700662523508072], [0.022167976945638657, 0.0005000227829441428, 0.000897312187589705, 0.000802194292191416, 0.00028129349811933935, 0.0001393986021867022, 0.0002552941150497645, 0.0026496597565710545, 0.4467669725418091, 0.001127135707065463, 0.003938448615372181, 0.00238685286603868, 0.006141508463770151, 0.006979458965361118, 0.04369859769940376, 0.01449078693985939, 0.44677698612213135], [0.014680979773402214, 0.0009328353917226195, 0.0022696952801197767, 0.0008816945482976735, 0.00023396973847411573, 0.0007060410571284592, 0.00020840123761445284, 0.001735792844556272, 0.4654737114906311, 0.0012439667480066419, 0.012691715732216835, 0.002031312556937337, 0.007129490841180086, 0.006993147544562817, 0.0094226049259305, 0.007895111106336117, 0.46546947956085205], [0.10679879784584045, 0.06203247979283333, 0.034127745777368546, 0.05610756203532219, 0.07080429047346115, 0.07978823781013489, 0.08210393041372299, 0.06484825909137726, 0.07475675642490387, 0.04809548705816269, 0.03827643394470215, 0.048353563994169235, 0.060985006392002106, 0.021729055792093277, 0.03311335667967796, 0.04332233592867851, 0.07475663721561432]], [[0.013176705688238144, 0.005161315202713013, 0.016505764797329903, 0.007590837310999632, 0.0016054105944931507, 0.005887800361961126, 0.003234897507354617, 0.006028172094374895, 0.12390077859163284, 0.18407712876796722, 0.13811609148979187, 0.045445073395967484, 0.04202461987733841, 0.017699168995022774, 0.09280543029308319, 0.17283934354782104, 0.12390147894620895], [0.021443398669362068, 0.028819488361477852, 0.026590051129460335, 0.044059544801712036, 0.015567255206406116, 0.03343338891863823, 0.005174342542886734, 0.04697897657752037, 0.36972150206565857, 0.004567495547235012, 0.011032997630536556, 0.0014533872017636895, 0.0011132156942039728, 0.002293672412633896, 0.0022270982153713703, 0.01580410823225975, 0.3697202801704407], [0.05235188826918602, 0.07659924030303955, 0.020960111171007156, 0.10546980053186417, 0.034934885799884796, 0.08055611699819565, 0.039510879665613174, 0.052212055772542953, 0.20576702058315277, 0.011551078408956528, 0.06883895397186279, 0.005183523986488581, 0.0058635990135371685, 0.004531262908130884, 0.005609424784779549, 0.024288151413202286, 0.2057720273733139], [0.012753496877849102, 0.0335836187005043, 0.004521586932241917, 0.02164275012910366, 0.013727124780416489, 0.051030516624450684, 0.0207216776907444, 0.039971765130758286, 0.39101681113243103, 0.006261177361011505, 0.00848576333373785, 0.0009272063034586608, 0.00020743250206578523, 0.0008275808650068939, 0.0011753778671845794, 0.002123234560713172, 0.3910229504108429], [0.005798910744488239, 0.010359423235058784, 0.005070396699011326, 0.007865171879529953, 0.016487397253513336, 0.0580795481801033, 0.0337136834859848, 0.013551490381360054, 0.41953566670417786, 0.003788940142840147, 0.003466266207396984, 0.0008004122064448893, 0.000282483350019902, 0.0002160463045584038, 0.000699541880749166, 0.0007460000924766064, 0.4195384681224823], [0.00393800251185894, 0.0039023335557430983, 0.0009665403049439192, 0.001600784482434392, 0.00348343956284225, 0.009006298147141933, 0.0024692006409168243, 0.014226838015019894, 0.4755876958370209, 0.005188953597098589, 0.0017260070890188217, 0.0007557006902061403, 0.0004662904539145529, 0.0001499742502346635, 0.00020037752983625978, 0.0007393888081423938, 0.4755922257900238], [0.0021674446761608124, 0.0010239852126687765, 0.0005559400306083262, 0.0006442322046495974, 0.0038170935586094856, 0.0078084697015583515, 0.001562552759423852, 0.006016518454998732, 0.48701512813568115, 0.0013564227847382426, 0.0003556346637196839, 0.0002704523503780365, 6.861519068479538e-05, 6.115328142186627e-05, 6.001251676934771e-05, 0.00019832341058645397, 0.4870179295539856], [0.4883216917514801, 0.013175233267247677, 0.0066181062720716, 0.016256779432296753, 0.010362658649682999, 0.023859072476625443, 0.004718733951449394, 0.009193960577249527, 0.13308556377887726, 0.08767428249120712, 0.01155879721045494, 0.006227867677807808, 0.003182590240612626, 0.010955565609037876, 0.010828515514731407, 0.030895376577973366, 0.1330852210521698], [0.037800997495651245, 0.040572162717580795, 0.05631931871175766, 0.049554742872714996, 0.01427275687456131, 0.03410729393362999, 0.025968428701162338, 0.03067152015864849, 0.06917910277843475, 0.16030406951904297, 0.08772019296884537, 0.02232789620757103, 0.07457009702920914, 0.028874531388282776, 0.07092004269361496, 0.1276581585407257, 0.06917877495288849], [0.0008673241245560348, 0.00025335082318633795, 0.0011092043714597821, 0.00029223907040432096, 8.393027383135632e-05, 0.0003506191133055836, 8.632068056613207e-05, 0.0009567261440679431, 0.480203777551651, 0.000651464972179383, 0.00099703180603683, 0.004229824990034103, 0.003330813255161047, 0.0042216358706355095, 0.012175913900136948, 0.009986993856728077, 0.48020264506340027], [0.00031348250922746956, 0.0002760564675554633, 0.0007404544157907367, 0.00025952429859898984, 0.00011853656178573146, 0.0003784389409702271, 0.00012961360334884375, 0.00038633306394331157, 0.47311708331108093, 0.0011230229865759611, 0.003838638309389353, 0.008371005766093731, 0.0037728906609117985, 0.006408975925296545, 0.009095384739339352, 0.018555408343672752, 0.4731152653694153], [0.0015080039156600833, 0.00011031392932636663, 0.00035811110865324736, 5.836683340021409e-05, 9.118313755607232e-05, 0.0004463361983653158, 5.205834531807341e-05, 0.0008099426631815732, 0.469679594039917, 0.0034400050062686205, 0.0009291977621614933, 0.008965149521827698, 0.007681253831833601, 0.008524042554199696, 0.02079007774591446, 0.0068803709000349045, 0.46967601776123047], [0.00014411115262191743, 1.797882214304991e-05, 5.547910768655129e-05, 8.314833394251764e-06, 8.024654562177602e-06, 9.283597319154069e-05, 7.963246389408596e-06, 0.00011805116810137406, 0.4926674962043762, 0.000634836673270911, 0.00017357290198560804, 0.002435597823932767, 0.0035501786042004824, 0.002023017033934593, 0.003990857861936092, 0.0014111888594925404, 0.4926604628562927], [0.0002528421755414456, 8.991628419607878e-05, 0.00015268342394847423, 2.1105477571836673e-05, 3.551561894710176e-05, 0.0003127124800812453, 3.562685378710739e-05, 0.0001280292053706944, 0.4921146035194397, 0.0008119418052956462, 0.0004944773390889168, 0.0021628658287227154, 0.004797687754034996, 0.0020084420684725046, 0.0033324521500617266, 0.0011478214291855693, 0.4921012222766876], [0.000621431099716574, 0.00014864774129819125, 0.00023478243383578956, 4.270831777830608e-05, 5.6734777899691835e-05, 0.00041610802873037755, 4.376408105599694e-05, 0.00043217334314249456, 0.4898018538951874, 0.002745814388617873, 0.001155576785095036, 0.004421143792569637, 0.003324240678921342, 0.002318187616765499, 0.0024319584481418133, 0.0020098050590604544, 0.48979508876800537], [0.002523797797039151, 0.0001109023141907528, 0.00031307057361118495, 0.00011027910659322515, 9.871073416434228e-05, 0.001450195093639195, 0.00010195697541348636, 0.00030163241899572313, 0.4784378111362457, 0.0023756709415465593, 0.0007601972320117056, 0.005252471659332514, 0.0028385103214532137, 0.008432993665337563, 0.012459885329008102, 0.0060107228346168995, 0.478421151638031], [0.037801533937454224, 0.04057252034544945, 0.056319110095500946, 0.04955459013581276, 0.014272769913077354, 0.03410734981298447, 0.02596845105290413, 0.03067133203148842, 0.0691823959350586, 0.16030064225196838, 0.08772062510251999, 0.02232799492776394, 0.07456885278224945, 0.028874382376670837, 0.07091954350471497, 0.12765587866306305, 0.06918206810951233]], [[0.02594617009162903, 0.01230535376816988, 0.04566877335309982, 0.014121030457317829, 0.0072386907413601875, 0.005428669974207878, 0.0038478251080960035, 0.010239314287900925, 0.23248372972011566, 0.11886419355869293, 0.07697320729494095, 0.037396643310785294, 0.04120451584458351, 0.01877675950527191, 0.027979085221886635, 0.08904127776622772, 0.23248472809791565], [0.011459922417998314, 0.05789390951395035, 0.01801096275448799, 0.04013005644083023, 0.02041839435696602, 0.01897086761891842, 0.021832888945937157, 0.024326378479599953, 0.38134026527404785, 0.008276933804154396, 0.005633383523672819, 0.002469992032274604, 0.0014278696617111564, 0.0008420258527621627, 0.0006289502489380538, 0.004989249631762505, 0.38134798407554626], [0.018261579796671867, 0.09114214777946472, 0.16401386260986328, 0.0360700897872448, 0.012661230750381947, 0.016071118414402008, 0.017078490927815437, 0.04107184335589409, 0.2622493505477905, 0.023134000599384308, 0.023985888808965683, 0.0041265543550252914, 0.005320061929523945, 0.004773941356688738, 0.005675092339515686, 0.01211258489638567, 0.26225224137306213], [0.026431027799844742, 0.07835447788238525, 0.051074057817459106, 0.050566960126161575, 0.009912065230309963, 0.015570848248898983, 0.012985849753022194, 0.028361964970827103, 0.34938952326774597, 0.006874042097479105, 0.00850733183324337, 0.0013631429756060243, 0.0005309132393449545, 0.001485362066887319, 0.0011285279178991914, 0.008078392595052719, 0.349385529756546], [0.005289734341204166, 0.015012618154287338, 0.016920097172260284, 0.010304713621735573, 0.009516424499452114, 0.015370819717645645, 0.008242348209023476, 0.00926060788333416, 0.4524623155593872, 0.002068092580884695, 0.0010510390857234597, 0.0007059122435748577, 0.0002391476446064189, 0.00038428109837695956, 0.00021039703278802335, 0.0005056892987340689, 0.45245563983917236], [0.0011316104792058468, 0.003120411653071642, 0.007049898616969585, 0.001835630158893764, 0.00404246523976326, 0.011740568093955517, 0.0031257460359483957, 0.0027404569555073977, 0.4807789921760559, 0.001110286801122129, 0.0004653401265386492, 0.00046777038369327784, 0.0001648969337111339, 0.0007357471622526646, 0.00046614118036814034, 0.00025472865672782063, 0.4807691276073456], [0.0010782276513054967, 0.0035341789480298758, 0.003947503864765167, 0.0023307425435632467, 0.003992586396634579, 0.0067064277827739716, 0.0033561058808118105, 0.0038338955491781235, 0.48468706011772156, 0.0007214153883978724, 0.00022754530073143542, 0.00034482477349229157, 3.258667857153341e-05, 0.00019096818869002163, 0.00017288138042204082, 0.00016022541967686266, 0.4846828877925873], [0.0256809014827013, 0.054203908890485764, 0.0433545745909214, 0.039166368544101715, 0.02749815210700035, 0.025256246328353882, 0.029343988746404648, 0.10214278101921082, 0.284392774105072, 0.03327256813645363, 0.01417594775557518, 0.005234787706285715, 0.002139626070857048, 0.003898981725797057, 0.005336273927241564, 0.020508065819740295, 0.2843939960002899], [0.06152637302875519, 0.08685845136642456, 0.07395375519990921, 0.10133867710828781, 0.05650842934846878, 0.07045254856348038, 0.05788238346576691, 0.08833659440279007, 0.036645665764808655, 0.06538642942905426, 0.0700591653585434, 0.033106256276369095, 0.03278014063835144, 0.02277837134897709, 0.035660289227962494, 0.0700807124376297, 0.03664569929242134], [0.004676518030464649, 0.0031360462307929993, 0.00363340275362134, 0.003114111255854368, 0.0012234658934175968, 0.0020019891671836376, 0.0012811042834073305, 0.001659985980950296, 0.46609458327293396, 0.017725354060530663, 0.01013166457414627, 0.003987094387412071, 0.0026930836029350758, 0.004663575440645218, 0.0029930698219686747, 0.0048863692209124565, 0.4660985767841339], [0.01576705276966095, 0.008137473836541176, 0.00823168084025383, 0.002878444269299507, 0.001097788685001433, 0.0012301240349188447, 0.0005687138182111084, 0.002053564880043268, 0.4531867504119873, 0.009104028344154358, 0.021802496165037155, 0.007647151127457619, 0.004888709168881178, 0.003563282545655966, 0.0020407040137797594, 0.004628247581422329, 0.45317378640174866], [0.00821777805685997, 0.0020071391481906176, 0.003210144117474556, 0.0022897415328770876, 0.0020597458351403475, 0.0018156185979023576, 0.0007164882845245302, 0.0025200650561600924, 0.4308318793773651, 0.016442222520709038, 0.029273027554154396, 0.02130606211721897, 0.013162292540073395, 0.012006673961877823, 0.014473862946033478, 0.008844751864671707, 0.4308224320411682], [0.003607742488384247, 0.002082864986732602, 0.002438334282487631, 0.0006609036354348063, 0.00048501777928322554, 0.0006028188508935273, 0.00021439116972032934, 0.0012559863971546292, 0.4611201286315918, 0.024737287312746048, 0.011383121833205223, 0.009255729615688324, 0.007210845127701759, 0.005084443371742964, 0.0037273671478033066, 0.005014441441744566, 0.4611183702945709], [0.0006512915715575218, 0.0003765949804801494, 0.001882007229141891, 0.00011552838259376585, 7.678028487134725e-05, 0.00023868531570769846, 4.377133154775947e-05, 0.00032607774483039975, 0.4857759475708008, 0.0016089871060103178, 0.004354927688837051, 0.0013350502122193575, 0.001293679466471076, 0.009053926914930344, 0.0057799434289336205, 0.0013069482520222664, 0.48577964305877686], [0.001743889064528048, 0.0008932267082855105, 0.0020098548848181963, 0.0003422063891775906, 0.00016670221521053463, 0.0004903741646558046, 0.00020190900249872357, 0.0013927064137533307, 0.47526586055755615, 0.006756106857210398, 0.005365082528442144, 0.004125990439206362, 0.0025008816737681627, 0.009753044694662094, 0.010474382899701595, 0.0032557386439293623, 0.47526201605796814], [0.006617892999202013, 0.012943742796778679, 0.010595467872917652, 0.00929759070277214, 0.0028671440668404102, 0.0015740265371277928, 0.0010232983622699976, 0.0028833618853241205, 0.40054240822792053, 0.04197985678911209, 0.05761570855975151, 0.012360600754618645, 0.005970218684524298, 0.008420190773904324, 0.010422347113490105, 0.014354380778968334, 0.40053170919418335], [0.06152573227882385, 0.08685911446809769, 0.07395310699939728, 0.1013396754860878, 0.056508619338274, 0.07045254111289978, 0.05788153409957886, 0.08833646029233932, 0.036645811051130295, 0.06538806855678558, 0.07005905359983444, 0.03310585767030716, 0.03277968615293503, 0.022778529673814774, 0.03566054627299309, 0.07007981836795807, 0.03664584457874298]]]], \\\"left_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\", \\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\", \\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"]}], \\\"default_filter\\\": \\\"0\\\", \\\"root_div_id\\\": \\\"bertviz-d1e6cdbcb61a42d4b37d005c21290a61\\\", \\\"layer\\\": null, \\\"heads\\\": null} is a template marker that is replaced by actual params.\\n\",\"    const TEXT_SIZE = 15;\\n\",\"    const BOXWIDTH = 110;\\n\",\"    const BOXHEIGHT = 22.5;\\n\",\"    const MATRIX_WIDTH = 115;\\n\",\"    const CHECKBOX_SIZE = 20;\\n\",\"    const TEXT_TOP = 30;\\n\",\"\\n\",\"    console.log(\\\"d3 version\\\", d3.version)\\n\",\"    let headColors;\\n\",\"    try {\\n\",\"        headColors = d3.scaleOrdinal(d3.schemeCategory10);\\n\",\"    } catch (err) {\\n\",\"        console.log('Older d3 version')\\n\",\"        headColors = d3.scale.category10();\\n\",\"    }\\n\",\"    let config = {};\\n\",\"    initialize();\\n\",\"    renderVis();\\n\",\"\\n\",\"    function initialize() {\\n\",\"        config.attention = params['attention'];\\n\",\"        config.filter = params['default_filter'];\\n\",\"        config.rootDivId = params['root_div_id'];\\n\",\"        config.nLayers = config.attention[config.filter]['attn'].length;\\n\",\"        config.nHeads = config.attention[config.filter]['attn'][0].length;\\n\",\"        if (params['heads']) {\\n\",\"            config.headVis = new Array(config.nHeads).fill(false);\\n\",\"            params['heads'].forEach(x =\\u003e config.headVis[x] = true);\\n\",\"        } else {\\n\",\"            config.headVis = new Array(config.nHeads).fill(true);\\n\",\"        }\\n\",\"        config.initialTextLength = config.attention[config.filter].right_text.length;\\n\",\"        config.layer = (params['layer'] == null ? 0 : params['layer'])\\n\",\"\\n\",\"\\n\",\"        let layerEl = $(`#${config.rootDivId} #layer`);\\n\",\"        for (var i = 0; i \\u003c config.nLayers; i++) {\\n\",\"            layerEl.append($(\\\"\\u003coption /\\u003e\\\").val(i).text(i));\\n\",\"        }\\n\",\"        layerEl.val(config.layer).change();\\n\",\"        layerEl.on('change', function (e) {\\n\",\"            config.layer = +e.currentTarget.value;\\n\",\"            renderVis();\\n\",\"        });\\n\",\"\\n\",\"        $(`#${config.rootDivId} #filter`).on('change', function (e) {\\n\",\"            config.filter = e.currentTarget.value;\\n\",\"            renderVis();\\n\",\"        });\\n\",\"    }\\n\",\"\\n\",\"    function renderVis() {\\n\",\"\\n\",\"        // Load parameters\\n\",\"        const attnData = config.attention[config.filter];\\n\",\"        const leftText = attnData.left_text;\\n\",\"        const rightText = attnData.right_text;\\n\",\"\\n\",\"        // Select attention for given layer\\n\",\"        const layerAttention = attnData.attn[config.layer];\\n\",\"\\n\",\"        // Clear vis\\n\",\"        $(`#${config.rootDivId} #vis`).empty();\\n\",\"\\n\",\"        // Determine size of visualization\\n\",\"        const height = Math.max(leftText.length, rightText.length) * BOXHEIGHT + TEXT_TOP;\\n\",\"        const svg = d3.select(`#${config.rootDivId} #vis`)\\n\",\"            .append('svg')\\n\",\"            .attr(\\\"width\\\", \\\"100%\\\")\\n\",\"            .attr(\\\"height\\\", height + \\\"px\\\");\\n\",\"\\n\",\"        // Display tokens on left and right side of visualization\\n\",\"        renderText(svg, leftText, true, layerAttention, 0);\\n\",\"        renderText(svg, rightText, false, layerAttention, MATRIX_WIDTH + BOXWIDTH);\\n\",\"\\n\",\"        // Render attention arcs\\n\",\"        renderAttention(svg, layerAttention);\\n\",\"\\n\",\"        // Draw squares at top of visualization, one for each head\\n\",\"        drawCheckboxes(0, svg, layerAttention);\\n\",\"    }\\n\",\"\\n\",\"    function renderText(svg, text, isLeft, attention, leftPos) {\\n\",\"\\n\",\"        const textContainer = svg.append(\\\"svg:g\\\")\\n\",\"            .attr(\\\"id\\\", isLeft ? \\\"left\\\" : \\\"right\\\");\\n\",\"\\n\",\"        // Add attention highlights superimposed over words\\n\",\"        textContainer.append(\\\"g\\\")\\n\",\"            .classed(\\\"attentionBoxes\\\", true)\\n\",\"            .selectAll(\\\"g\\\")\\n\",\"            .data(attention)\\n\",\"            .enter()\\n\",\"            .append(\\\"g\\\")\\n\",\"            .attr(\\\"head-index\\\", (d, i) =\\u003e i)\\n\",\"            .selectAll(\\\"rect\\\")\\n\",\"            .data(d =\\u003e isLeft ? d : transpose(d)) // if right text, transpose attention to get right-to-left weights\\n\",\"            .enter()\\n\",\"            .append(\\\"rect\\\")\\n\",\"            .attr(\\\"x\\\", function () {\\n\",\"                var headIndex = +this.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                return leftPos + boxOffsets(headIndex);\\n\",\"            })\\n\",\"            .attr(\\\"y\\\", (+1) * BOXHEIGHT)\\n\",\"            .attr(\\\"width\\\", BOXWIDTH / activeHeads())\\n\",\"            .attr(\\\"height\\\", BOXHEIGHT)\\n\",\"            .attr(\\\"fill\\\", function () {\\n\",\"                return headColors(+this.parentNode.getAttribute(\\\"head-index\\\"))\\n\",\"            })\\n\",\"            .style(\\\"opacity\\\", 0.0);\\n\",\"\\n\",\"        const tokenContainer = textContainer.append(\\\"g\\\").selectAll(\\\"g\\\")\\n\",\"            .data(text)\\n\",\"            .enter()\\n\",\"            .append(\\\"g\\\");\\n\",\"\\n\",\"        // Add gray background that appears when hovering over text\\n\",\"        tokenContainer.append(\\\"rect\\\")\\n\",\"            .classed(\\\"background\\\", true)\\n\",\"            .style(\\\"opacity\\\", 0.0)\\n\",\"            .attr(\\\"fill\\\", \\\"lightgray\\\")\\n\",\"            .attr(\\\"x\\\", leftPos)\\n\",\"            .attr(\\\"y\\\", (d, i) =\\u003e TEXT_TOP + i * BOXHEIGHT)\\n\",\"            .attr(\\\"width\\\", BOXWIDTH)\\n\",\"            .attr(\\\"height\\\", BOXHEIGHT);\\n\",\"\\n\",\"        // Add token text\\n\",\"        const textEl = tokenContainer.append(\\\"text\\\")\\n\",\"            .text(d =\\u003e d)\\n\",\"            .attr(\\\"font-size\\\", TEXT_SIZE + \\\"px\\\")\\n\",\"            .style(\\\"cursor\\\", \\\"default\\\")\\n\",\"            .style(\\\"-webkit-user-select\\\", \\\"none\\\")\\n\",\"            .attr(\\\"x\\\", leftPos)\\n\",\"            .attr(\\\"y\\\", (d, i) =\\u003e TEXT_TOP + i * BOXHEIGHT);\\n\",\"\\n\",\"        if (isLeft) {\\n\",\"            textEl.style(\\\"text-anchor\\\", \\\"end\\\")\\n\",\"                .attr(\\\"dx\\\", BOXWIDTH - 0.5 * TEXT_SIZE)\\n\",\"                .attr(\\\"dy\\\", TEXT_SIZE);\\n\",\"        } else {\\n\",\"            textEl.style(\\\"text-anchor\\\", \\\"start\\\")\\n\",\"                .attr(\\\"dx\\\", +0.5 * TEXT_SIZE)\\n\",\"                .attr(\\\"dy\\\", TEXT_SIZE);\\n\",\"        }\\n\",\"\\n\",\"        tokenContainer.on(\\\"mouseover\\\", function (d, index) {\\n\",\"\\n\",\"            // Show gray background for moused-over token\\n\",\"            textContainer.selectAll(\\\".background\\\")\\n\",\"                .style(\\\"opacity\\\", (d, i) =\\u003e i === index ? 1.0 : 0.0)\\n\",\"\\n\",\"            // Reset visibility attribute for any previously highlighted attention arcs\\n\",\"            svg.select(\\\"#attention\\\")\\n\",\"                .selectAll(\\\"line[visibility='visible']\\\")\\n\",\"                .attr(\\\"visibility\\\", null)\\n\",\"\\n\",\"            // Hide group containing attention arcs\\n\",\"            svg.select(\\\"#attention\\\").attr(\\\"visibility\\\", \\\"hidden\\\");\\n\",\"\\n\",\"            // Set to visible appropriate attention arcs to be highlighted\\n\",\"            if (isLeft) {\\n\",\"                svg.select(\\\"#attention\\\").selectAll(\\\"line[left-token-index='\\\" + index + \\\"']\\\").attr(\\\"visibility\\\", \\\"visible\\\");\\n\",\"            } else {\\n\",\"                svg.select(\\\"#attention\\\").selectAll(\\\"line[right-token-index='\\\" + index + \\\"']\\\").attr(\\\"visibility\\\", \\\"visible\\\");\\n\",\"            }\\n\",\"\\n\",\"            // Update color boxes superimposed over tokens\\n\",\"            const id = isLeft ? \\\"right\\\" : \\\"left\\\";\\n\",\"            const leftPos = isLeft ? MATRIX_WIDTH + BOXWIDTH : 0;\\n\",\"            svg.select(\\\"#\\\" + id)\\n\",\"                .selectAll(\\\".attentionBoxes\\\")\\n\",\"                .selectAll(\\\"g\\\")\\n\",\"                .attr(\\\"head-index\\\", (d, i) =\\u003e i)\\n\",\"                .selectAll(\\\"rect\\\")\\n\",\"                .attr(\\\"x\\\", function () {\\n\",\"                    const headIndex = +this.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                    return leftPos + boxOffsets(headIndex);\\n\",\"                })\\n\",\"                .attr(\\\"y\\\", (d, i) =\\u003e TEXT_TOP + i * BOXHEIGHT)\\n\",\"                .attr(\\\"width\\\", BOXWIDTH / activeHeads())\\n\",\"                .attr(\\\"height\\\", BOXHEIGHT)\\n\",\"                .style(\\\"opacity\\\", function (d) {\\n\",\"                    const headIndex = +this.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                    if (config.headVis[headIndex])\\n\",\"                        if (d) {\\n\",\"                            return d[index];\\n\",\"                        } else {\\n\",\"                            return 0.0;\\n\",\"                        }\\n\",\"                    else\\n\",\"                        return 0.0;\\n\",\"                });\\n\",\"        });\\n\",\"\\n\",\"        textContainer.on(\\\"mouseleave\\\", function () {\\n\",\"\\n\",\"            // Unhighlight selected token\\n\",\"            d3.select(this).selectAll(\\\".background\\\")\\n\",\"                .style(\\\"opacity\\\", 0.0);\\n\",\"\\n\",\"            // Reset visibility attributes for previously selected lines\\n\",\"            svg.select(\\\"#attention\\\")\\n\",\"                .selectAll(\\\"line[visibility='visible']\\\")\\n\",\"                .attr(\\\"visibility\\\", null) ;\\n\",\"            svg.select(\\\"#attention\\\").attr(\\\"visibility\\\", \\\"visible\\\");\\n\",\"\\n\",\"            // Reset highlights superimposed over tokens\\n\",\"            svg.selectAll(\\\".attentionBoxes\\\")\\n\",\"                .selectAll(\\\"g\\\")\\n\",\"                .selectAll(\\\"rect\\\")\\n\",\"                .style(\\\"opacity\\\", 0.0);\\n\",\"        });\\n\",\"    }\\n\",\"\\n\",\"    function renderAttention(svg, attention) {\\n\",\"\\n\",\"        // Remove previous dom elements\\n\",\"        svg.select(\\\"#attention\\\").remove();\\n\",\"\\n\",\"        // Add new elements\\n\",\"        svg.append(\\\"g\\\")\\n\",\"            .attr(\\\"id\\\", \\\"attention\\\") // Container for all attention arcs\\n\",\"            .selectAll(\\\".headAttention\\\")\\n\",\"            .data(attention)\\n\",\"            .enter()\\n\",\"            .append(\\\"g\\\")\\n\",\"            .classed(\\\"headAttention\\\", true) // Group attention arcs by head\\n\",\"            .attr(\\\"head-index\\\", (d, i) =\\u003e i)\\n\",\"            .selectAll(\\\".tokenAttention\\\")\\n\",\"            .data(d =\\u003e d)\\n\",\"            .enter()\\n\",\"            .append(\\\"g\\\")\\n\",\"            .classed(\\\"tokenAttention\\\", true) // Group attention arcs by left token\\n\",\"            .attr(\\\"left-token-index\\\", (d, i) =\\u003e i)\\n\",\"            .selectAll(\\\"line\\\")\\n\",\"            .data(d =\\u003e d)\\n\",\"            .enter()\\n\",\"            .append(\\\"line\\\")\\n\",\"            .attr(\\\"x1\\\", BOXWIDTH)\\n\",\"            .attr(\\\"y1\\\", function () {\\n\",\"                const leftTokenIndex = +this.parentNode.getAttribute(\\\"left-token-index\\\")\\n\",\"                return TEXT_TOP + leftTokenIndex * BOXHEIGHT + (BOXHEIGHT / 2)\\n\",\"            })\\n\",\"            .attr(\\\"x2\\\", BOXWIDTH + MATRIX_WIDTH)\\n\",\"            .attr(\\\"y2\\\", (d, rightTokenIndex) =\\u003e TEXT_TOP + rightTokenIndex * BOXHEIGHT + (BOXHEIGHT / 2))\\n\",\"            .attr(\\\"stroke-width\\\", 2)\\n\",\"            .attr(\\\"stroke\\\", function () {\\n\",\"                const headIndex = +this.parentNode.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                return headColors(headIndex)\\n\",\"            })\\n\",\"            .attr(\\\"left-token-index\\\", function () {\\n\",\"                return +this.parentNode.getAttribute(\\\"left-token-index\\\")\\n\",\"            })\\n\",\"            .attr(\\\"right-token-index\\\", (d, i) =\\u003e i)\\n\",\"        ;\\n\",\"        updateAttention(svg)\\n\",\"    }\\n\",\"\\n\",\"    function updateAttention(svg) {\\n\",\"        svg.select(\\\"#attention\\\")\\n\",\"            .selectAll(\\\"line\\\")\\n\",\"            .attr(\\\"stroke-opacity\\\", function (d) {\\n\",\"                const headIndex = +this.parentNode.parentNode.getAttribute(\\\"head-index\\\");\\n\",\"                // If head is selected\\n\",\"                if (config.headVis[headIndex]) {\\n\",\"                    // Set opacity to attention weight divided by number of active heads\\n\",\"                    return d / activeHeads()\\n\",\"                } else {\\n\",\"                    return 0.0;\\n\",\"                }\\n\",\"            })\\n\",\"    }\\n\",\"\\n\",\"    function boxOffsets(i) {\\n\",\"        const numHeadsAbove = config.headVis.reduce(\\n\",\"            function (acc, val, cur) {\\n\",\"                return val \\u0026\\u0026 cur \\u003c i ? acc + 1 : acc;\\n\",\"            }, 0);\\n\",\"        return numHeadsAbove * (BOXWIDTH / activeHeads());\\n\",\"    }\\n\",\"\\n\",\"    function activeHeads() {\\n\",\"        return config.headVis.reduce(function (acc, val) {\\n\",\"            return val ? acc + 1 : acc;\\n\",\"        }, 0);\\n\",\"    }\\n\",\"\\n\",\"    function drawCheckboxes(top, svg) {\\n\",\"        const checkboxContainer = svg.append(\\\"g\\\");\\n\",\"        const checkbox = checkboxContainer.selectAll(\\\"rect\\\")\\n\",\"            .data(config.headVis)\\n\",\"            .enter()\\n\",\"            .append(\\\"rect\\\")\\n\",\"            .attr(\\\"fill\\\", (d, i) =\\u003e headColors(i))\\n\",\"            .attr(\\\"x\\\", (d, i) =\\u003e i * CHECKBOX_SIZE)\\n\",\"            .attr(\\\"y\\\", top)\\n\",\"            .attr(\\\"width\\\", CHECKBOX_SIZE)\\n\",\"            .attr(\\\"height\\\", CHECKBOX_SIZE);\\n\",\"\\n\",\"        function updateCheckboxes() {\\n\",\"            checkboxContainer.selectAll(\\\"rect\\\")\\n\",\"                .data(config.headVis)\\n\",\"                .attr(\\\"fill\\\", (d, i) =\\u003e d ? headColors(i): lighten(headColors(i)));\\n\",\"        }\\n\",\"\\n\",\"        updateCheckboxes();\\n\",\"\\n\",\"        checkbox.on(\\\"click\\\", function (d, i) {\\n\",\"            if (config.headVis[i] \\u0026\\u0026 activeHeads() === 1) return;\\n\",\"            config.headVis[i] = !config.headVis[i];\\n\",\"            updateCheckboxes();\\n\",\"            updateAttention(svg);\\n\",\"        });\\n\",\"\\n\",\"        checkbox.on(\\\"dblclick\\\", function (d, i) {\\n\",\"            // If we double click on the only active head then reset\\n\",\"            if (config.headVis[i] \\u0026\\u0026 activeHeads() === 1) {\\n\",\"                config.headVis = new Array(config.nHeads).fill(true);\\n\",\"            } else {\\n\",\"                config.headVis = new Array(config.nHeads).fill(false);\\n\",\"                config.headVis[i] = true;\\n\",\"            }\\n\",\"            updateCheckboxes();\\n\",\"            updateAttention(svg);\\n\",\"        });\\n\",\"    }\\n\",\"\\n\",\"    function lighten(color) {\\n\",\"        const c = d3.hsl(color);\\n\",\"        const increment = (1 - c.l) * 0.6;\\n\",\"        c.l += increment;\\n\",\"        c.s -= increment;\\n\",\"        return c;\\n\",\"    }\\n\",\"\\n\",\"    function transpose(mat) {\\n\",\"        return mat[0].map(function (col, i) {\\n\",\"            return mat.map(function (row) {\\n\",\"                return row[i];\\n\",\"            });\\n\",\"        });\\n\",\"    }\\n\",\"\\n\",\"});\"],\"text/plain\":[\"\\u003cIPython.core.display.Javascript object\\u003e\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"}],\"source\":[\"model_path = 'bert-base-german-cased'\\n\",\"sentence_a = \\\"Die Katze ist sehr traurig.\\\"\\n\",\"sentence_b = \\\"Weil sie zu viel gegessen hat\\\"\\n\",\"attention, tokens=get_bert_attentions(model_path, sentence_a, sentence_b)\\n\",\"head_view(attention, tokens)\\n\",\"\\n\",\"# \\u003cLayer-8, Head-11\\u003e\"]},{\"cell_type\":\"code\",\"execution_count\":null,\"metadata\":{\"id\":\"bcuPf34vVXPL\"},\"outputs\":[],\"source\":[\"\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"fwfz8Zi-caMn\"},\"source\":[\"## Model View\\n\",\"* https://github.com/jessevig/bertviz/blob/master/notebooks/model_view_bert.ipynb\"]},{\"cell_type\":\"code\",\"execution_count\":7,\"metadata\":{\"executionInfo\":{\"elapsed\":519,\"status\":\"ok\",\"timestamp\":1626168905655,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"},\"user_tz\":-180},\"id\":\"ph8h5Rpecb4d\"},\"outputs\":[],\"source\":[\"from bertviz import model_view\\n\",\"from transformers import BertTokenizer, BertModel\"]},{\"cell_type\":\"code\",\"execution_count\":8,\"metadata\":{\"executionInfo\":{\"elapsed\":3,\"status\":\"ok\",\"timestamp\":1626168907187,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"},\"user_tz\":-180},\"id\":\"7xpDRtgzccwJ\"},\"outputs\":[],\"source\":[\"def show_model_view(model, tokenizer, sentence_a, sentence_b=None, hide_delimiter_attn=False, display_mode=\\\"light\\\"):\\n\",\"    inputs = tokenizer.encode_plus(sentence_a, sentence_b, return_tensors='pt', add_special_tokens=True)\\n\",\"    input_ids = inputs['input_ids']\\n\",\"    if sentence_b:\\n\",\"        token_type_ids = inputs['token_type_ids']\\n\",\"        attention = model(input_ids, token_type_ids=token_type_ids)[-1]\\n\",\"        sentence_b_start = token_type_ids[0].tolist().index(1)\\n\",\"    else:\\n\",\"        attention = model(input_ids)[-1]\\n\",\"        sentence_b_start = None\\n\",\"    input_id_list = input_ids[0].tolist() # Batch index 0\\n\",\"    tokens = tokenizer.convert_ids_to_tokens(input_id_list)  \\n\",\"    if hide_delimiter_attn:\\n\",\"        for i, t in enumerate(tokens):\\n\",\"            if t in (\\\"[SEP]\\\", \\\"[CLS]\\\"):\\n\",\"                for layer_attn in attention:\\n\",\"                    layer_attn[0, :, i, :] = 0\\n\",\"                    layer_attn[0, :, :, i] = 0\\n\",\"    model_view(attention, tokens, sentence_b_start, display_mode=display_mode)\"]},{\"cell_type\":\"code\",\"execution_count\":9,\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\"},\"executionInfo\":{\"elapsed\":1574,\"status\":\"ok\",\"timestamp\":1626168910999,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"},\"user_tz\":-180},\"id\":\"zFx53tVwlE0-\",\"outputId\":\"37987b47-86b8-4f00-90f8-db7f8815a109\"},\"outputs\":[{\"name\":\"stderr\",\"output_type\":\"stream\",\"text\":[\"Some weights of the model checkpoint at bert-base-german-cased were not used when initializing BertModel: ['cls.seq_relationship.bias', 'cls.predictions.bias', 'cls.predictions.decoder.weight', 'cls.predictions.transform.LayerNorm.weight', 'cls.predictions.transform.dense.bias', 'cls.predictions.transform.LayerNorm.bias', 'cls.seq_relationship.weight', 'cls.predictions.transform.dense.weight']\\n\",\"- This IS expected if you are initializing BertModel from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\\n\",\"- This IS NOT expected if you are initializing BertModel from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\\n\"]}],\"source\":[\"model_path='bert-base-german-cased'\\n\",\"model = BertModel.from_pretrained(model_path, output_attentions=True)\\n\",\"tokenizer = BertTokenizer.from_pretrained(model_path)\"]},{\"cell_type\":\"code\",\"execution_count\":10,\"metadata\":{\"colab\":{\"base_uri\":\"https://localhost:8080/\",\"height\":1000},\"executionInfo\":{\"elapsed\":3234,\"status\":\"ok\",\"timestamp\":1626168916712,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"},\"user_tz\":-180},\"id\":\"xp_JgPghciSp\",\"outputId\":\"f6046504-46e8-4a5f-cecc-bc614e2021dc\"},\"outputs\":[{\"data\":{\"text/html\":[\"\\u003cscript src=\\\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js\\\"\\u003e\\u003c/script\\u003e\"],\"text/plain\":[\"\\u003cIPython.core.display.HTML object\\u003e\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"data\":{\"text/html\":[\"      \\n\",\"        \\u003cdiv id='bertviz-1c2f4bcb045f497a93360604060acb6a'\\u003e\\n\",\"            \\u003cspan style=\\\"user-select:none\\\"\\u003e\\n\",\"                Attention: \\u003cselect id=\\\"filter\\\"\\u003e\\u003coption value=\\\"0\\\"\\u003eAll\\u003c/option\\u003e\\n\",\"\\u003coption value=\\\"1\\\"\\u003eSentence A -\\u003e Sentence A\\u003c/option\\u003e\\n\",\"\\u003coption value=\\\"2\\\"\\u003eSentence B -\\u003e Sentence B\\u003c/option\\u003e\\n\",\"\\u003coption value=\\\"3\\\"\\u003eSentence A -\\u003e Sentence B\\u003c/option\\u003e\\n\",\"\\u003coption value=\\\"4\\\"\\u003eSentence B -\\u003e Sentence A\\u003c/option\\u003e\\u003c/select\\u003e\\n\",\"            \\u003c/span\\u003e\\n\",\"            \\u003cdiv id='vis'\\u003e\\u003c/div\\u003e\\n\",\"        \\u003c/div\\u003e\\n\",\"    \"],\"text/plain\":[\"\\u003cIPython.core.display.HTML object\\u003e\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"},{\"data\":{\"application/javascript\":[\"/**\\n\",\" * @fileoverview Transformer Visualization D3 javascript code.\\n\",\" *\\n\",\" * Based on: https://github.com/tensorflow/tensor2tensor/blob/master/tensor2tensor/visualization/attention.js\\n\",\" *\\n\",\" * Change log:\\n\",\" *\\n\",\" * 02/01/19  Jesse Vig   Initial implementation\\n\",\" * 12/31/20  Jesse Vig   Support multiple visualizations in single notebook.\\n\",\" * 01/19/21  Jesse Vig   Support light/dark modes\\n\",\" * 02/06/21  Jesse Vig   Move require config from separate jupyter notebook step\\n\",\" * 05/03/21  Jesse Vig   Adjust visualization height dynamically\\n\",\" **/\\n\",\"\\n\",\"require.config({\\n\",\"  paths: {\\n\",\"      d3: '//cdnjs.cloudflare.com/ajax/libs/d3/5.7.0/d3.min',\\n\",\"    jquery: '//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min',\\n\",\"  }\\n\",\"});\\n\",\"\\n\",\"requirejs(['jquery', 'd3'], function($, d3) {\\n\",\"\\n\",\"        const params = {\\\"attention\\\": [{\\\"name\\\": \\\"All\\\", \\\"attn\\\": [[[[0.004888075869530439, 0.007019796874374151, 0.0036452263593673706, 0.0029327375814318657, 0.0015320930397138, 0.004241756163537502, 0.004263122100383043, 0.008528415113687515, 0.1241171583533287, 0.011008302681148052, 0.007964405231177807, 0.012401134707033634, 0.012626986019313335, 0.01822158694267273, 0.03751054406166077, 0.032849520444869995, 0.7062491178512573], [0.014576531015336514, 0.010581646114587784, 0.11558718979358673, 0.029583653435111046, 0.1619575172662735, 0.1749114692211151, 0.0751379206776619, 0.21962450444698334, 0.012747607193887234, 0.05111600458621979, 0.01784636825323105, 0.016188524663448334, 0.034550972282886505, 0.04032806307077408, 0.008430905640125275, 0.014747894369065762, 0.002083284081891179], [0.0931827500462532, 0.030849847942590714, 0.21771998703479767, 0.008905305527150631, 0.01596658118069172, 0.10586155205965042, 0.014499418437480927, 0.15799841284751892, 0.1769568771123886, 0.011161367408931255, 0.007392543368041515, 0.02728419005870819, 0.011595254763960838, 0.06580255925655365, 0.029527466744184494, 0.0062408046796917915, 0.01905512809753418], [0.014329124242067337, 0.026282774284482002, 0.12526121735572815, 0.01783166266977787, 0.16241025924682617, 0.19412513077259064, 0.09234662353992462, 0.18385455012321472, 0.012565611861646175, 0.0387045256793499, 0.007175581995397806, 0.014191791415214539, 0.03388706594705582, 0.05341388285160065, 0.013310998678207397, 0.009375548921525478, 0.0009336062357760966], [0.041057515889406204, 0.05136800557374954, 0.11638717353343964, 0.04390865936875343, 0.204985111951828, 0.20272210240364075, 0.05150476470589638, 0.07285190373659134, 0.02087394706904888, 0.03042193129658699, 0.0036483488511294127, 0.01124507561326027, 0.052854206413030624, 0.055095743387937546, 0.018138518556952477, 0.021030552685260773, 0.0019064793596044183], [0.1666662096977234, 0.02896984852850437, 0.15163454413414001, 0.01802794449031353, 0.04654997959733009, 0.2804989814758301, 0.02848292514681816, 0.017328821122646332, 0.035481903702020645, 0.026137450709939003, 0.007835391908884048, 0.04781508445739746, 0.0928763672709465, 0.02130993641912937, 0.012126856483519077, 0.007968500256538391, 0.010289200581610203], [0.020301301032304764, 0.03030841425061226, 0.146507129073143, 0.03279529884457588, 0.1822977364063263, 0.14855298399925232, 0.04740176722407341, 0.11926399916410446, 0.0055979457683861256, 0.07653960585594177, 0.005564410705119371, 0.01443084329366684, 0.04294794425368309, 0.07773218303918839, 0.036374710500240326, 0.011816887184977531, 0.001566849066875875], [0.1180451288819313, 0.049101572483778, 0.06027330830693245, 0.006074968259781599, 0.10929204523563385, 0.04498586431145668, 0.00842977873980999, 0.3069465160369873, 0.06189660355448723, 0.039379481226205826, 0.007954319939017296, 0.10972070693969727, 0.026415210217237473, 0.023425700142979622, 0.014062038622796535, 0.0026519885286688805, 0.011344718746840954], [2.1634889435517834e-06, 2.7986959594272776e-07, 6.047267930853195e-08, 7.992905892706403e-08, 2.950351074559876e-09, 6.677720598702308e-09, 3.565340378486326e-08, 1.6712645489747047e-08, 0.0002647333894856274, 1.152576032836805e-06, 1.1555251148820389e-05, 5.2061750466236845e-06, 1.371363214275334e-05, 4.478007667785278e-06, 5.161368608241901e-05, 0.0001593561319168657, 0.9994856119155884], [0.05085143446922302, 0.022023271769285202, 0.07580538094043732, 0.0070717972703278065, 0.047512125223875046, 0.07071699947118759, 0.017782360315322876, 0.08009849488735199, 0.019474850967526436, 0.10870131105184555, 0.009214590303599834, 0.08462074398994446, 0.16989478468894958, 0.10135233402252197, 0.0493972972035408, 0.021988535299897194, 0.06349364668130875], [0.04322425276041031, 0.00701436772942543, 0.07438955456018448, 0.00349072995595634, 0.020300857722759247, 0.03028024546802044, 0.011668267659842968, 0.043274637311697006, 0.00980078149586916, 0.08645223826169968, 0.01271748449653387, 0.05253123864531517, 0.23775863647460938, 0.19187404215335846, 0.03741445392370224, 0.04090726003050804, 0.09690098464488983], [0.022267881780862808, 0.023952627554535866, 0.06272710859775543, 0.0059244283474981785, 0.09645921736955643, 0.04347274824976921, 0.027442241087555885, 0.05181506276130676, 0.018496809527277946, 0.12232493609189987, 0.03188175708055496, 0.029339047148823738, 0.258259117603302, 0.06193901225924492, 0.05281803756952286, 0.04957601800560951, 0.041303928941488266], [0.052432831376791, 0.02291150949895382, 0.04012122005224228, 0.004341240040957928, 0.02985801361501217, 0.01583763211965561, 0.015640828758478165, 0.02167329750955105, 0.05032937601208687, 0.11713917553424835, 0.02564113773405552, 0.09544307738542557, 0.08414534479379654, 0.06279367953538895, 0.09147869795560837, 0.0592023991048336, 0.21101054549217224], [0.06270148605108261, 0.018580680713057518, 0.15979012846946716, 0.015210376121103764, 0.02062022127211094, 0.02362925000488758, 0.038785237818956375, 0.01570395939052105, 0.0422176755964756, 0.042492810636758804, 0.032632045447826385, 0.07592606544494629, 0.03713872283697128, 0.09492141753435135, 0.13550794124603271, 0.0456867590546608, 0.13845527172088623], [0.0552029013633728, 0.03745970502495766, 0.08970589935779572, 0.007209817413240671, 0.010326535440981388, 0.014292473904788494, 0.015026808716356754, 0.041386928409338, 0.07573705166578293, 0.05720151960849762, 0.018984483554959297, 0.030409062281250954, 0.04165385663509369, 0.22854256629943848, 0.036919306963682175, 0.029538234695792198, 0.2104029804468155], [0.022899465635418892, 0.024759864434599876, 0.08564167469739914, 0.0077392589300870895, 0.038067229092121124, 0.03607000410556793, 0.01198351290076971, 0.04539123550057411, 0.033280134201049805, 0.0962849110364914, 0.023986605927348137, 0.16346056759357452, 0.16955357789993286, 0.08608866482973099, 0.01938687078654766, 0.017461832612752914, 0.11794460564851761], [5.39046709491231e-07, 1.2910049029812853e-08, 2.997915693470077e-09, 9.687985969009105e-10, 5.700149727227988e-11, 2.3968746432068144e-10, 2.120931874571852e-09, 2.0052830507211183e-09, 4.1204955778084695e-05, 1.0826789775819634e-06, 6.497870799648808e-06, 1.7855295482149813e-06, 8.23706250230316e-06, 8.747030619815632e-07, 1.802810402296018e-05, 4.153688496444374e-05, 0.999880313873291]], [[0.4522051513195038, 0.07623647898435593, 0.027919242158532143, 0.035999845713377, 0.08349619060754776, 0.019427096471190453, 0.05187578126788139, 0.027510447427630424, 0.01445896178483963, 0.027349503710865974, 0.013545246794819832, 0.06334026157855988, 0.030286243185400963, 0.02672632411122322, 0.03649211302399635, 0.00903548114001751, 0.004095627460628748], [0.22317545115947723, 0.06382100284099579, 0.05888044089078903, 0.049211613833904266, 0.13121356070041656, 0.06643986701965332, 0.0620323047041893, 0.10699689388275146, 0.0343746654689312, 0.04030245915055275, 0.05449175089597702, 0.015260525979101658, 0.01441941037774086, 0.051165707409381866, 0.012906704097986221, 0.009400923736393452, 0.005906717851758003], [0.06794585287570953, 0.1672438085079193, 0.22915023565292358, 0.024345679208636284, 0.16521067917346954, 0.09566453844308853, 0.03178289905190468, 0.049769431352615356, 0.015491669997572899, 0.03189234808087349, 0.005836388096213341, 0.015635255724191666, 0.02730834297835827, 0.03977164626121521, 0.02932717837393284, 0.002584383124485612, 0.0010396799771115184], [0.0019585308618843555, 0.7207427620887756, 0.07722131162881851, 0.004655138123780489, 0.03747379034757614, 0.05254172161221504, 0.008140715770423412, 0.016761539503932, 0.012247414328157902, 0.05264122784137726, 0.005919741000980139, 0.0015853171935305, 0.004358803387731314, 0.0019629127345979214, 0.0005766953690908849, 0.00020377084729261696, 0.001008533057756722], [0.025915242731571198, 0.026313217356801033, 0.1458832025527954, 0.2851893901824951, 0.23177862167358398, 0.12325704842805862, 0.053885672241449356, 0.04005128890275955, 0.008830639533698559, 0.0016609665472060442, 0.004477020353078842, 0.010466582141816616, 0.014143839478492737, 0.018876660615205765, 0.003539198776707053, 0.005014950409531593, 0.0007165209972299635], [0.06897823512554169, 0.03946160525083542, 0.40949440002441406, 0.02331404760479927, 0.20725378394126892, 0.07915252447128296, 0.06029766425490379, 0.046219512820243835, 0.007097764406353235, 0.01039657648652792, 0.004642943385988474, 0.007727229502052069, 0.008718782104551792, 0.01666164956986904, 0.008082425221800804, 0.0013291724026203156, 0.001171768526546657], [0.11204667389392853, 0.002064715139567852, 0.07884853333234787, 0.0231044702231884, 0.4335665702819824, 0.22349999845027924, 0.015278663486242294, 0.021423274651169777, 0.00486252224072814, 0.0015719160437583923, 0.0013278420083224773, 0.008107521571218967, 0.01719454489648342, 0.046971384435892105, 0.0064142923802137375, 0.003084664698690176, 0.0006322385743260384], [0.045064717531204224, 0.061848171055316925, 0.06443827599287033, 0.049729522317647934, 0.2260524332523346, 0.07010719925165176, 0.17648132145404816, 0.160780131816864, 0.032271843403577805, 0.03418389707803726, 0.007624479942023754, 0.03132493048906326, 0.007417135406285524, 0.01037380937486887, 0.016183815896511078, 0.004492961801588535, 0.0016253096982836723], [0.003729620948433876, 0.019178112968802452, 0.008320917375385761, 0.003610414220020175, 0.01731022074818611, 0.019468005746603012, 0.015363910235464573, 0.7111199498176575, 0.07527204602956772, 0.03925952687859535, 0.029104769229888916, 0.017176028341054916, 0.018435312435030937, 0.002877231454476714, 0.002948450157418847, 0.0017658548895269632, 0.015059570781886578], [0.1122286394238472, 0.005725213326513767, 0.007830118760466576, 0.018747668713331223, 0.046964243054389954, 0.02027987129986286, 0.04182044789195061, 0.060731735080480576, 0.14661774039268494, 0.11308518052101135, 0.12625354528427124, 0.13461105525493622, 0.031244609504938126, 0.04327597841620445, 0.02240343578159809, 0.02710208110511303, 0.041078414767980576], [0.0019868644885718822, 0.0029012442100793123, 0.03415127471089363, 0.003377157263457775, 0.021869391202926636, 0.016370456665754318, 0.01350669376552105, 0.13002537190914154, 0.08001197874546051, 0.47171226143836975, 0.06813553720712662, 0.018448758870363235, 0.08434359729290009, 0.014303343370556831, 0.0060247816145420074, 0.005617797840386629, 0.027213556692004204], [0.0012034880928695202, 0.003988053649663925, 0.01811078004539013, 0.03138766437768936, 0.02679568901658058, 0.01594444178044796, 0.028057347983121872, 0.08293617516756058, 0.23756594955921173, 0.05265144631266594, 0.2417776733636856, 0.045061975717544556, 0.0782533809542656, 0.02548084780573845, 0.006170281209051609, 0.04199046269059181, 0.06262443959712982], [0.011548996903002262, 0.002671988680958748, 0.013300352729856968, 0.00573762645944953, 0.02851112000644207, 0.011765186674892902, 0.01182110421359539, 0.034734729677438736, 0.06407833099365234, 0.06737424433231354, 0.14551088213920593, 0.2167421579360962, 0.19757318496704102, 0.0646800771355629, 0.01695670373737812, 0.057373709976673126, 0.049619704484939575], [0.026585998013615608, 0.0010515417670831084, 0.004557711537927389, 0.005754321347922087, 0.01731204427778721, 0.004033405799418688, 0.005897670052945614, 0.011935831047594547, 0.0362488329410553, 0.029862700030207634, 0.04841899126768112, 0.539275050163269, 0.09850410372018814, 0.06712836027145386, 0.02949517033994198, 0.03715115785598755, 0.036787163466215134], [0.041452087461948395, 0.000551372766494751, 0.012106509879231453, 0.0025557572953402996, 0.029549917206168175, 0.0024494952522218227, 0.004159799311310053, 0.009580275975167751, 0.01520668063312769, 0.023142937570810318, 0.025920597836375237, 0.27663901448249817, 0.18025699257850647, 0.2660350501537323, 0.0187570471316576, 0.030158380046486855, 0.06147802993655205], [0.0001405895600328222, 0.006572019308805466, 0.0031815404072403908, 0.0004570690798573196, 0.003964514471590519, 0.0015125961508601904, 0.001515182782895863, 0.0054846699349582195, 0.03184382990002632, 0.4382510483264923, 0.06007954105734825, 0.023391874507069588, 0.11213231086730957, 0.010536914691329002, 0.006349750328809023, 0.006076218094676733, 0.288510262966156], [2.382694583502598e-05, 1.6672100173309445e-05, 1.213609539263416e-05, 3.5883535929315258e-06, 2.2867236111778766e-05, 8.452716429019347e-06, 1.6258918549283408e-05, 0.000548299984075129, 0.0027398846577852964, 0.0031625269912183285, 0.0070969704538583755, 0.011805384419858456, 0.01725119724869728, 0.000560812943149358, 0.0009160325862467289, 0.006874747108668089, 0.9489404559135437]], [[0.07207582890987396, 0.030081165954470634, 0.0698365718126297, 0.05415603145956993, 0.040005918592214584, 0.04452523961663246, 0.05477667227387428, 0.07413895428180695, 0.020463814958930016, 0.04867997393012047, 0.09254953265190125, 0.07381545752286911, 0.09486182779073715, 0.082914799451828, 0.07271520793437958, 0.04404165968298912, 0.030361313372850418], [0.02388051338493824, 0.09712941199541092, 0.13507598638534546, 0.12161228060722351, 0.07565468549728394, 0.09102176129817963, 0.03974504768848419, 0.07507934421300888, 0.12584571540355682, 0.0545763336122036, 0.01604420691728592, 0.011612973175942898, 0.027364207431674004, 0.019178539514541626, 0.021193353459239006, 0.03272027149796486, 0.032265398651361465], [0.14521171152591705, 0.1255667805671692, 0.007684384007006884, 0.03585522249341011, 0.09271423518657684, 0.021124502643942833, 0.05305418372154236, 0.11939787119626999, 0.05426167696714401, 0.01743321679532528, 0.10690226405858994, 0.02871570736169815, 0.04158058017492294, 0.04895868897438049, 0.04626128450036049, 0.018562469631433487, 0.036715105175971985], [0.021534226834774017, 0.16972415149211884, 0.04721628129482269, 0.06455666571855545, 0.12413521111011505, 0.09946053475141525, 0.02451961673796177, 0.05252651125192642, 0.1565346121788025, 0.042592115700244904, 0.028904670849442482, 0.030724521726369858, 0.021228116005659103, 0.023331813514232635, 0.0168754905462265, 0.03380384296178818, 0.04233171045780182], [0.18212783336639404, 0.05782119929790497, 0.16624435782432556, 0.061060693114995956, 0.025745224207639694, 0.05096830800175667, 0.09386604279279709, 0.04790102317929268, 0.09353011846542358, 0.038641296327114105, 0.029350461438298225, 0.015338404104113579, 0.012258137576282024, 0.042409393936395645, 0.034138504415750504, 0.023105019703507423, 0.025494007393717766], [0.2883266806602478, 0.020761892199516296, 0.045150283724069595, 0.012247641570866108, 0.0693461000919342, 0.0051894644275307655, 0.08609198778867722, 0.08481674641370773, 0.08602578192949295, 0.01470259390771389, 0.04659475013613701, 0.024310611188411713, 0.018510956317186356, 0.055132340639829636, 0.08806735277175903, 0.010098050348460674, 0.04462667927145958], [0.07446767389774323, 0.1230199858546257, 0.10566249489784241, 0.06260287761688232, 0.041301827877759933, 0.0890895202755928, 0.05263271555304527, 0.08570503443479538, 0.0857565850019455, 0.05045425519347191, 0.055470049381256104, 0.04604503884911537, 0.018547367304563522, 0.02415427938103676, 0.025428179651498795, 0.029278477653861046, 0.03038364090025425], [0.14375796914100647, 0.12766575813293457, 0.07687808573246002, 0.06146235391497612, 0.025420017540454865, 0.09101464599370956, 0.08417452126741409, 0.05357314273715019, 0.01134533155709505, 0.07383982092142105, 0.054581303149461746, 0.062397975474596024, 0.03553818166255951, 0.02532547153532505, 0.025117862969636917, 0.03893119841814041, 0.008976396173238754], [0.040774792432785034, 0.13950109481811523, 0.02118922770023346, 0.0640266165137291, 0.044749144464731216, 0.03973620384931564, 0.061510711908340454, 0.08475141227245331, 0.014940092340111732, 0.0757886990904808, 0.09931029379367828, 0.08393636345863342, 0.05245032161474228, 0.059110067784786224, 0.027142135426402092, 0.07597208023071289, 0.015110681764781475], [0.4042286276817322, 0.02303842455148697, 0.04327826946973801, 0.02220737747848034, 0.024905072525143623, 0.017578905448317528, 0.031729016453027725, 0.05251544713973999, 0.04675205796957016, 0.00783507525920868, 0.09679113328456879, 0.024453289806842804, 0.02132745087146759, 0.07777412235736847, 0.033756352961063385, 0.03557467460632324, 0.036254674196243286], [0.02890595607459545, 0.0868535041809082, 0.03905981406569481, 0.07673788070678711, 0.06935548782348633, 0.017652153968811035, 0.039013754576444626, 0.04142361134290695, 0.11229785531759262, 0.04908713325858116, 0.0825323835015297, 0.050595663487911224, 0.042241185903549194, 0.030702881515026093, 0.06782406568527222, 0.041330575942993164, 0.12438603490591049], [0.051494911313056946, 0.05110412463545799, 0.07177115976810455, 0.03816363215446472, 0.06721803545951843, 0.055009134113788605, 0.05375649407505989, 0.038038868457078934, 0.041565731167793274, 0.04354572296142578, 0.07399876415729523, 0.08210265636444092, 0.07860209047794342, 0.07368873804807663, 0.0557437464594841, 0.08313024044036865, 0.04106597602367401], [0.30957141518592834, 0.026946723461151123, 0.030617903918027878, 0.00909468811005354, 0.012938322499394417, 0.005976587533950806, 0.0647820383310318, 0.042692121118307114, 0.03459575027227402, 0.016926975920796394, 0.16411443054676056, 0.05676984786987305, 0.009580451063811779, 0.07468540966510773, 0.05725482851266861, 0.030714837834239006, 0.05273762717843056], [0.17414706945419312, 0.02067970670759678, 0.10534961521625519, 0.03243619576096535, 0.03173006698489189, 0.03161533549427986, 0.05324887856841087, 0.03352835029363632, 0.04464622214436531, 0.02641052007675171, 0.12195944786071777, 0.10071049630641937, 0.024074766784906387, 0.030658595263957977, 0.06795603036880493, 0.03804737329483032, 0.06280133873224258], [0.14174634218215942, 0.07984764873981476, 0.05403934419155121, 0.018503038212656975, 0.043897174298763275, 0.04191182926297188, 0.05589395761489868, 0.0508967749774456, 0.03724489361047745, 0.01597260683774948, 0.17404040694236755, 0.07636553794145584, 0.05074698477983475, 0.05537647008895874, 0.02398299053311348, 0.03783499076962471, 0.04169907048344612], [0.0533464252948761, 0.04371226206421852, 0.019833769649267197, 0.02924042008817196, 0.06765838712453842, 0.03478259593248367, 0.037271589040756226, 0.03777080401778221, 0.03779437392950058, 0.05305246263742447, 0.17477799952030182, 0.09143199026584625, 0.07000453770160675, 0.08606479316949844, 0.054692089557647705, 0.04827326163649559, 0.06029229983687401], [0.06381995230913162, 0.03170640766620636, 0.004985055420547724, 0.016410794109106064, 0.010395670309662819, 0.00661464361473918, 0.03198925778269768, 0.03062201663851738, 0.0027444791048765182, 0.03453819453716278, 0.2534266412258148, 0.16793431341648102, 0.06967359781265259, 0.09238817542791367, 0.048972662538290024, 0.11378097534179688, 0.01999727636575699]], [[0.03515833616256714, 0.0798664465546608, 0.01630859263241291, 0.14789149165153503, 0.08934218436479568, 0.03217592090368271, 0.06830880045890808, 0.030619218945503235, 0.17491836845874786, 0.0416850820183754, 0.04187638685107231, 0.051688242703676224, 0.04284347966313362, 0.010884474031627178, 0.02676309645175934, 0.04683941602706909, 0.06283047050237656], [0.00906633771955967, 0.007233552634716034, 0.0071291569620370865, 0.0901627242565155, 0.08500444144010544, 0.03731818124651909, 0.017713570967316628, 0.04864385724067688, 0.6713555455207825, 0.0013698127586394548, 0.001527724089100957, 0.003079200629144907, 0.0036342886742204428, 0.002154689049348235, 0.0011569688795134425, 0.0025306325405836105, 0.010919292457401752], [0.02119581773877144, 0.013936267234385014, 0.18366488814353943, 0.04073388874530792, 0.14117489755153656, 0.29261794686317444, 0.022417636588215828, 0.19487611949443817, 0.05600067228078842, 0.0019989456050097942, 0.004539075773209333, 0.0021221840288490057, 0.0043496135622262955, 0.009173189289867878, 0.00819883868098259, 0.001727689290419221, 0.0012723386753350496], [0.019561290740966797, 0.030619964003562927, 0.024989742785692215, 0.007378019858151674, 0.15077579021453857, 0.031912967562675476, 0.0557866245508194, 0.06938115507364273, 0.5711490511894226, 0.024206284433603287, 0.0011899482924491167, 0.0009746656287461519, 0.0016707185423001647, 0.0010043636430054903, 0.001857830211520195, 0.0005939669790677726, 0.00694759888574481], [0.014949947595596313, 0.0364830456674099, 0.10173313319683075, 0.06478868424892426, 0.11181814223527908, 0.2349889725446701, 0.02512570470571518, 0.2544487416744232, 0.06896540522575378, 0.02933378890156746, 0.019377965480089188, 0.0010600468376651406, 0.009931511245667934, 0.011072607710957527, 0.010862203314900398, 0.0034645176492631435, 0.0015955098206177354], [0.07112161815166473, 0.09935048967599869, 0.17491373419761658, 0.10266263037919998, 0.2617430090904236, 0.09294117987155914, 0.03491080179810524, 0.07117832452058792, 0.04160849004983902, 0.022633247077465057, 0.004940207116305828, 0.0032543574925512075, 0.008275501430034637, 0.005043844226747751, 0.0024784624110907316, 0.0015372901689261198, 0.0014068287564441562], [0.006367841735482216, 0.021246016025543213, 0.08985381573438644, 0.3080625832080841, 0.2526113986968994, 0.11120738834142685, 0.028941325843334198, 0.09924904257059097, 0.06420885026454926, 0.0013314973330125213, 0.0024215762969106436, 0.00171946850605309, 0.004013487603515387, 0.004174456931650639, 0.0027731608133763075, 0.0011439566733315587, 0.0006740911048837006], [0.02697315625846386, 0.04311920329928398, 0.1649632751941681, 0.08712518215179443, 0.10151567310094833, 0.09761759638786316, 0.11727719753980637, 0.11513151228427887, 0.21653573215007782, 0.0010895318118855357, 0.004290437325835228, 0.0062949806451797485, 0.004447329323738813, 0.004242948722094297, 0.007139301858842373, 0.0003665502299554646, 0.0018705135444179177], [0.002932084957137704, 0.08548032492399216, 0.015188615769147873, 0.32496634125709534, 0.06970572471618652, 0.007528556976467371, 0.06105625256896019, 0.04819296672940254, 0.3530505299568176, 0.00633058650419116, 0.001208824454806745, 0.010793852619826794, 0.003044052980840206, 0.0009751369943842292, 0.002682421123608947, 0.003046723548322916, 0.0038170877378433943], [0.026182059198617935, 0.0026353721041232347, 0.014284180477261543, 0.0019502710783854127, 0.002652481198310852, 0.0106190862134099, 0.0039725396782159805, 0.01705651544034481, 0.0050896815955638885, 0.07474858313798904, 0.07118715345859528, 0.06656379997730255, 0.1229143962264061, 0.14376245439052582, 0.06306520104408264, 0.2047741562128067, 0.1685420423746109], [0.00655555771663785, 0.0012789893662557006, 0.0010506988037377596, 0.00044898202759213746, 0.0012205109233036637, 0.0004583994741551578, 0.0007158190128393471, 0.0017670101951807737, 0.00580983841791749, 0.5319936871528625, 0.012461146339774132, 0.05339212715625763, 0.05954696238040924, 0.008004698902368546, 0.004466962534934282, 0.02240138314664364, 0.2884272336959839], [0.019198056310415268, 0.001700622378848493, 0.0006798736867494881, 0.0012679336359724402, 0.0018198138568550348, 0.0021204801741987467, 0.0017914302879944444, 0.00396747887134552, 0.005293841939419508, 0.23742806911468506, 0.20335489511489868, 0.03166976571083069, 0.06257409602403641, 0.04587889090180397, 0.029524097219109535, 0.09712150692939758, 0.25460922718048096], [0.03541591390967369, 0.0010044040391221642, 0.009562980383634567, 0.0031110995914787054, 0.004129722248762846, 0.012886565178632736, 0.005492286290973425, 0.014601752161979675, 0.003477429738268256, 0.18211369216442108, 0.07259315997362137, 0.1317169964313507, 0.10589143633842468, 0.16349096596240997, 0.06330373883247375, 0.0840979814529419, 0.10710986703634262], [0.02291938289999962, 0.006745031103491783, 0.02585463784635067, 0.016562605276703835, 0.018693825230002403, 0.026624808087944984, 0.013393472880125046, 0.025357374921441078, 0.007036125287413597, 0.07818956673145294, 0.06174234300851822, 0.0683279037475586, 0.06935539096593857, 0.03648192062973976, 0.06454432755708694, 0.4329819679260254, 0.02518923580646515], [0.012972544878721237, 0.004065094515681267, 0.02714398130774498, 0.0024757881183177233, 0.008076858706772327, 0.02106679230928421, 0.010974295437335968, 0.03196815028786659, 0.0046197292394936085, 0.07364416122436523, 0.06945107132196426, 0.06775133311748505, 0.11162839829921722, 0.13545583188533783, 0.07084579020738602, 0.26834627985954285, 0.07951385527849197], [0.011609595268964767, 0.0008981616119854152, 0.00037887669168412685, 0.0001698910491541028, 0.0013160291127860546, 0.0010050254641100764, 0.0007526596309617162, 0.0023018934298306704, 0.007861015386879444, 0.3170816898345947, 0.023111121729016304, 0.028089255094528198, 0.06838614493608475, 0.013917909003794193, 0.007903464138507843, 0.006222649943083525, 0.5089946389198303], [0.0019937308970838785, 0.0008322559297084808, 0.00023586218594573438, 0.001045373734086752, 0.0003337216912768781, 0.0001086789125110954, 0.001255252631381154, 0.001599939540028572, 0.0025449173990637064, 0.26299434900283813, 0.023124611005187035, 0.26984673738479614, 0.04125869646668434, 0.009962305426597595, 0.014961829409003258, 0.06820107251405716, 0.29970061779022217]], [[0.008703794330358505, 0.028337936848402023, 0.036497388035058975, 0.3179890811443329, 0.0342254638671875, 0.014647513628005981, 0.15658988058567047, 0.07963840663433075, 0.0504162460565567, 0.007810052018612623, 0.02126569114625454, 0.04604148864746094, 0.014514554291963577, 0.025807274505496025, 0.04341826215386391, 0.08485356718301773, 0.029243331402540207], [0.003257530275732279, 0.014143377542495728, 0.030460435897111893, 0.5566112399101257, 0.0674440786242485, 0.02056693658232689, 0.02118591219186783, 0.08736512809991837, 0.12027458846569061, 0.003574702423065901, 0.004306348040699959, 0.00856547337025404, 0.005849181208759546, 0.006364749278873205, 0.02825976349413395, 0.014159289188683033, 0.007611260283738375], [0.019974956288933754, 0.011629141867160797, 0.07035370171070099, 0.02859698049724102, 0.08074373006820679, 0.13332095742225647, 0.06927911937236786, 0.46246176958084106, 0.04819855839014053, 0.009691307321190834, 0.0013374672271311283, 0.013957006856799126, 0.007881246507167816, 0.01621880754828453, 0.01895863004028797, 0.004472723230719566, 0.0029238893184810877], [0.014392857439815998, 0.6814941763877869, 0.024798402562737465, 0.00337932538241148, 0.053651124238967896, 0.0072357975877821445, 0.007232386618852615, 0.022842107340693474, 0.08711760491132736, 0.0298911165446043, 0.030503615736961365, 0.0018633375875651836, 0.026354365050792694, 0.004749304614961147, 0.0009832560317590833, 0.0005606042104773223, 0.0029506373684853315], [0.027468478307127953, 0.10789855569601059, 0.19367998838424683, 0.06358932703733444, 0.04233098775148392, 0.23926369845867157, 0.005481854546815157, 0.04740671068429947, 0.06732773035764694, 0.01831057108938694, 0.035194605588912964, 0.003690612269565463, 0.0874093770980835, 0.027725795283913612, 0.029748598113656044, 0.0012340922839939594, 0.002238919958472252], [0.02020617201924324, 0.02203536406159401, 0.033887434750795364, 0.050584208220243454, 0.5214219093322754, 0.0702914372086525, 0.042194753885269165, 0.10264209657907486, 0.07326971739530563, 0.01757563278079033, 0.002588002709671855, 0.0020996304228901863, 0.015356292948126793, 0.01379159465432167, 0.007605087012052536, 0.0010641419794410467, 0.0033865529112517834], [0.025835225358605385, 0.024546880275011063, 0.06501937657594681, 0.17729876935482025, 0.23874863982200623, 0.12987853586673737, 0.0258779339492321, 0.11599919945001602, 0.06498986482620239, 0.016615135595202446, 0.013382242992520332, 0.02174832671880722, 0.021303698420524597, 0.03887410834431648, 0.013686718419194221, 0.002741637174040079, 0.003453668439760804], [0.012444564141333103, 0.02419978938996792, 0.09062561392784119, 0.04456598684191704, 0.09836862236261368, 0.03768983855843544, 0.04686807841062546, 0.30903956294059753, 0.15584996342658997, 0.03142288699746132, 0.018415672704577446, 0.03722061589360237, 0.02271999791264534, 0.011616760864853859, 0.039878398180007935, 0.009723562747240067, 0.009350127540528774], [0.004296176601201296, 0.025899868458509445, 0.015311871655285358, 0.1919618397951126, 0.04361548274755478, 0.030678419396281242, 0.03896272927522659, 0.5280066132545471, 0.06130514666438103, 0.006227157078683376, 0.0064658611081540585, 0.019711071625351906, 0.003964062314480543, 0.0032162752468138933, 0.014402758330106735, 0.004201842471957207, 0.0017728424863889813], [0.024266233667731285, 0.01093385275453329, 0.016984064131975174, 0.004984752275049686, 0.007481112610548735, 0.03188614174723625, 0.00909456703811884, 0.2679964601993561, 0.022699784487485886, 0.04521472379565239, 0.17385147511959076, 0.033378779888153076, 0.1641552746295929, 0.09768208861351013, 0.034414567053318024, 0.025280149653553963, 0.029695887118577957], [0.015299608930945396, 0.015785014256834984, 0.008361319079995155, 0.0006249594152905047, 0.007860596291720867, 0.002455179812386632, 0.008047391660511494, 0.016079703345894814, 0.012717393226921558, 0.5432901978492737, 0.055639464408159256, 0.05342431366443634, 0.13850365579128265, 0.031961891800165176, 0.02108975686132908, 0.0324493832886219, 0.03641004487872124], [0.053870562463998795, 0.004424483515322208, 0.0043601482175290585, 0.001997340004891157, 0.01322959829121828, 0.014276626519858837, 0.0033141672611236572, 0.05482332780957222, 0.032131992280483246, 0.07546987384557724, 0.09363347291946411, 0.007881388999521732, 0.2760334312915802, 0.07278186082839966, 0.12219052761793137, 0.06377334892749786, 0.10580787062644958], [0.00925365462899208, 0.006607287097722292, 0.012390349991619587, 0.015145400539040565, 0.021609047427773476, 0.00757995992898941, 0.014946120791137218, 0.013473916798830032, 0.01051262766122818, 0.182551309466362, 0.07738935947418213, 0.14221714437007904, 0.0836256742477417, 0.08769398927688599, 0.13632802665233612, 0.13100314140319824, 0.04767309129238129], [0.04649527370929718, 0.007164914160966873, 0.005849217996001244, 0.0012236693874001503, 0.0437605120241642, 0.007520769722759724, 0.017299002036452293, 0.010521815158426762, 0.016591574996709824, 0.06772533059120178, 0.017187099903821945, 0.031427476555109024, 0.14749610424041748, 0.015205055475234985, 0.46340328454971313, 0.025704599916934967, 0.07542426139116287], [0.014624546281993389, 0.004884281195700169, 0.00985758937895298, 0.003012509550899267, 0.03382030501961708, 0.00245943502523005, 0.013505540788173676, 0.007328514941036701, 0.010887760668992996, 0.016765698790550232, 0.015321548096835613, 0.02908072993159294, 0.006833572406321764, 0.7107034921646118, 0.0033725458197295666, 0.04717245325446129, 0.07036957889795303], [0.01661417819559574, 0.016832664608955383, 0.004995496943593025, 0.0006262136739678681, 0.0031050376128405333, 0.0018032253719866276, 0.0009451500372961164, 0.003058635164052248, 0.005683426279574633, 0.10786101967096329, 0.1786084622144699, 0.014133759774267673, 0.3131258189678192, 0.08723433315753937, 0.022915994748473167, 0.01567789539694786, 0.20677857100963593], [0.011585846543312073, 0.0014485669089481235, 0.0012079791631549597, 0.010266603901982307, 0.003049129154533148, 0.0021340458188205957, 0.00614704005420208, 0.04010748863220215, 0.0025159502401947975, 0.0387464240193367, 0.02254108153283596, 0.14072473347187042, 0.04632231220602989, 0.027118079364299774, 0.2534995377063751, 0.23111724853515625, 0.16146792471408844]], [[0.3151586353778839, 0.1100153848528862, 0.013261418789625168, 0.007182653062045574, 0.006734122522175312, 0.015668433159589767, 0.026092085987329483, 0.012030692771077156, 0.05885550379753113, 0.04550478234887123, 0.053476933389902115, 0.01804729551076889, 0.024768279865384102, 0.012427376583218575, 0.021046994253993034, 0.025330809876322746, 0.23439855873584747], [0.12868036329746246, 0.05020623654127121, 0.04352681711316109, 0.044267669320106506, 0.06922342628240585, 0.0586404874920845, 0.11787914484739304, 0.21278542280197144, 0.011017017997801304, 0.025592343881726265, 0.0421178936958313, 0.05956674739718437, 0.0440940335392952, 0.03432290256023407, 0.030304770916700363, 0.02068067155778408, 0.007094115484505892], [0.014511588029563427, 0.03831863030791283, 0.3213781714439392, 0.057754017412662506, 0.041259948164224625, 0.18111389875411987, 0.022478805854916573, 0.035277530550956726, 0.02839508280158043, 0.06441372632980347, 0.04830627143383026, 0.023198122158646584, 0.01992473006248474, 0.03235041722655296, 0.04213673993945122, 0.019411567598581314, 0.0097707100212574], [0.09856840968132019, 0.03302838280797005, 0.05710271745920181, 0.07177997380495071, 0.08965713530778885, 0.07356850057840347, 0.059109900146722794, 0.1575271189212799, 0.041145049035549164, 0.019606277346611023, 0.012599573470652103, 0.02298656664788723, 0.05791425704956055, 0.07773377001285553, 0.03326566517353058, 0.0734192356467247, 0.020987525582313538], [0.13763386011123657, 0.023727694526314735, 0.04992688447237015, 0.0822889655828476, 0.04870613291859627, 0.03208567947149277, 0.21788309514522552, 0.10060948133468628, 0.04463799297809601, 0.025675037875771523, 0.02627575397491455, 0.09429445117712021, 0.013071255758404732, 0.024463418871164322, 0.030244100838899612, 0.03953491896390915, 0.00894131325185299], [0.06399432569742203, 0.09939510375261307, 0.04323585331439972, 0.23998641967773438, 0.039040617644786835, 0.031802985817193985, 0.07835780084133148, 0.03297166898846626, 0.05566003546118736, 0.0603729672729969, 0.026775527745485306, 0.04063938930630684, 0.013095780275762081, 0.023802625015378, 0.024258354678750038, 0.11301542073488235, 0.01359516754746437], [0.10354834794998169, 0.1194508746266365, 0.023394186049699783, 0.15901106595993042, 0.05579296872019768, 0.01770668849349022, 0.1913813352584839, 0.07892581075429916, 0.034141018986701965, 0.021089935675263405, 0.0282573401927948, 0.04269837960600853, 0.014099941588938236, 0.02838147059082985, 0.02851889468729496, 0.045091379433870316, 0.008510440587997437], [0.004442719276994467, 0.03570292517542839, 0.20076386630535126, 0.18386435508728027, 0.09603149443864822, 0.08761825412511826, 0.06705799698829651, 0.11942239105701447, 0.0375593900680542, 0.012371964752674103, 0.026716334745287895, 0.014715065248310566, 0.019626814872026443, 0.03156737610697746, 0.01938757486641407, 0.03194998577237129, 0.011201484128832817], [0.011864487081766129, 0.11439939588308334, 0.0051422445103526115, 0.014265062287449837, 0.02085231989622116, 0.0035430071875452995, 0.011535421945154667, 0.0012360550463199615, 0.7664823532104492, 0.001131283468566835, 0.0036152286920696497, 0.0008522254647687078, 0.00034796056570485234, 0.00024297041818499565, 0.00016062580107245594, 0.0008736010058782995, 0.043455757200717926], [0.062082190066576004, 0.05242917686700821, 0.02288883738219738, 0.06286608427762985, 0.021808043122291565, 0.0169636569917202, 0.12245861440896988, 0.028119267895817757, 0.01948828436434269, 0.08855277299880981, 0.05956091731786728, 0.09327330440282822, 0.04130667448043823, 0.04341350495815277, 0.027116846293210983, 0.16473986208438873, 0.07293197512626648], [0.21505969762802124, 0.01480448804795742, 0.024971431121230125, 0.02108367718756199, 0.008694419637322426, 0.020008806139230728, 0.0335586741566658, 0.15525440871715546, 0.028348395600914955, 0.038782838732004166, 0.03816986456513405, 0.07811594009399414, 0.03940173611044884, 0.05490882694721222, 0.07377290725708008, 0.07111425697803497, 0.08394961059093475], [0.0871221199631691, 0.034306786954402924, 0.016620954498648643, 0.040584951639175415, 0.01628957688808441, 0.011101530864834785, 0.13387727737426758, 0.08549814671278, 0.046284761279821396, 0.05391332507133484, 0.10950876027345657, 0.05121465027332306, 0.039336107671260834, 0.030011426657438278, 0.04578227922320366, 0.0755179226398468, 0.12302945554256439], [0.015155383385717869, 0.04207645356655121, 0.038503292948007584, 0.06510785967111588, 0.018866432830691338, 0.013820890337228775, 0.07301356643438339, 0.0866699293255806, 0.06137312203645706, 0.06311662495136261, 0.09550552070140839, 0.1489153504371643, 0.009929455816745758, 0.027894139289855957, 0.018275555223226547, 0.10901713371276855, 0.11275924742221832], [0.11631946265697479, 0.08591070771217346, 0.013996097259223461, 0.02553335763514042, 0.044912923127412796, 0.051308274269104004, 0.08520212769508362, 0.03852086141705513, 0.04989771172404289, 0.09932108223438263, 0.06320645660161972, 0.07227468490600586, 0.04815056174993515, 0.021891184151172638, 0.09003005176782608, 0.03844022750854492, 0.05508424714207649], [0.040084920823574066, 0.0794089138507843, 0.04568714648485184, 0.04725225269794464, 0.018014028668403625, 0.02296232245862484, 0.09286968410015106, 0.13630813360214233, 0.02106429450213909, 0.050591692328453064, 0.03648265078663826, 0.1787043809890747, 0.03039979189634323, 0.04410983622074127, 0.05463092029094696, 0.06780829280614853, 0.03362071514129639], [0.02700302191078663, 0.01747763529419899, 0.03070266917347908, 0.12967005372047424, 0.020561538636684418, 0.0304489117115736, 0.057144373655319214, 0.06352531909942627, 0.07827381044626236, 0.022231614217162132, 0.058685000985860825, 0.03210814297199249, 0.06691708415746689, 0.06509841978549957, 0.020255399867892265, 0.10095085948705673, 0.17894619703292847], [0.00249118753708899, 0.058819033205509186, 0.0013066079700365663, 0.004116188734769821, 0.0038019418716430664, 0.0012782010016962886, 0.00383367040194571, 0.0006938646547496319, 0.5325980186462402, 0.0034911194816231728, 0.01755925640463829, 0.0030430404003709555, 0.0007656373200006783, 0.0003766310110222548, 0.0003307466395199299, 0.0024407983291894197, 0.36305415630340576]], [[0.05366489663720131, 0.013326861895620823, 0.035705629736185074, 0.017725413665175438, 0.021139897406101227, 0.016126224771142006, 0.03905770927667618, 0.08667251467704773, 0.03724033012986183, 0.131747767329216, 0.07875160872936249, 0.02515810914337635, 0.06670679897069931, 0.022565120831131935, 0.06760559231042862, 0.047641776502132416, 0.23916368186473846], [0.10719181597232819, 0.06171116232872009, 0.3013807535171509, 0.03794829919934273, 0.05507837235927582, 0.07111842930316925, 0.06489422917366028, 0.2455788105726242, 0.010625060647726059, 0.011863687075674534, 0.015315487049520016, 0.003497633384540677, 0.004441088531166315, 0.005406490061432123, 0.003567544976249337, 0.00022161522065289319, 0.0001594703207956627], [0.2356697916984558, 0.10945609211921692, 0.3206360936164856, 0.03839602693915367, 0.03337891027331352, 0.06335017085075378, 0.05203716456890106, 0.12023136764764786, 0.007034218404442072, 0.00836984533816576, 0.003998216241598129, 0.0022902516648173332, 0.0016475931042805314, 0.0008114398224279284, 0.002471902407705784, 0.0002081232814816758, 1.2680451618507504e-05], [0.008345738984644413, 0.5164564251899719, 0.20191191136837006, 0.05351008102297783, 0.06803572177886963, 0.05143987759947777, 0.01573142223060131, 0.034689582884311676, 0.007977493107318878, 0.007897846400737762, 0.02351473830640316, 0.002882627537474036, 0.005294881761074066, 0.0012846369063481688, 0.0009333751513622701, 8.39518615975976e-05, 9.552006304147653e-06], [0.06676739454269409, 0.27349960803985596, 0.4561753273010254, 0.055715933442115784, 0.09682420641183853, 0.026370450854301453, 0.007020842283964157, 0.008348268456757069, 0.0007414669962599874, 0.0035285507328808308, 0.0013157157227396965, 0.00038352955016307533, 0.0023205154575407505, 0.000476876157335937, 0.0004446223028935492, 6.371040944941342e-05, 2.9752748105238425e-06], [0.1661752313375473, 0.0685761496424675, 0.4658031165599823, 0.07675064355134964, 0.13027821481227875, 0.03830696642398834, 0.014079157263040543, 0.02513439953327179, 0.0010443981736898422, 0.0031104814261198044, 0.001444032066501677, 0.0006676503107883036, 0.003515154356136918, 0.0036656686570495367, 0.001331364386714995, 9.938723815139383e-05, 1.809268542274367e-05], [0.01189227681607008, 0.03440048173069954, 0.12620249390602112, 0.06225048750638962, 0.5502164363861084, 0.17143751680850983, 0.016833234578371048, 0.008786951191723347, 0.001322822761721909, 0.0011419992661103606, 0.001093560946173966, 0.0009655383182689548, 0.006927405018359423, 0.005606699734926224, 0.0006572494748979807, 0.00020566907187458128, 5.9139758377568796e-05], [0.0033392421901226044, 0.014496413059532642, 0.030030017718672752, 0.1475164294242859, 0.3980634808540344, 0.047243718057870865, 0.04660404473543167, 0.26027533411979675, 0.009565036743879318, 0.0031682979315519333, 0.011523754335939884, 0.004697142168879509, 0.011235179379582405, 0.0065018306486308575, 0.003318639937788248, 0.002174386056140065, 0.00024708223645575345], [0.007030535489320755, 0.030325111001729965, 0.023130590096116066, 0.016618795692920685, 0.1984899491071701, 0.12919509410858154, 0.20506642758846283, 0.38063156604766846, 0.00394117645919323, 0.0008863060502335429, 0.0019725332967936993, 0.0002003176778089255, 0.0011080717667937279, 0.0011153894010931253, 0.00026514811906963587, 2.0453282559174113e-05, 2.6044726837426424e-06], [0.003567933337762952, 0.006447296589612961, 0.012742963619530201, 0.0049604326486587524, 0.031012924388051033, 0.023581689223647118, 0.07633425295352936, 0.7590482831001282, 0.04287115857005119, 0.016943028196692467, 0.011061662808060646, 0.0012298504589125514, 0.005625784397125244, 0.002090521389618516, 0.0013406253419816494, 0.0009446584153920412, 0.00019689225882757455], [0.002508379751816392, 0.008127317763864994, 0.006937735248357058, 0.003746312577277422, 0.012477690353989601, 0.01154171023517847, 0.029863722622394562, 0.6015902161598206, 0.2265121340751648, 0.059228263795375824, 0.02252165786921978, 0.0065796407870948315, 0.004541346337646246, 0.0007519465289078653, 0.0016162429237738252, 0.0010733185335993767, 0.0003823531442321837], [0.0013870190596207976, 0.02100195735692978, 0.00815045926719904, 0.02463262714445591, 0.007942592725157738, 0.011483998037874699, 0.012731208465993404, 0.44544947147369385, 0.263877809047699, 0.13180671632289886, 0.051571331918239594, 0.003083230461925268, 0.011088494211435318, 0.0018862361321225762, 0.0010846008080989122, 0.0023257946595549583, 0.0004966087872162461], [0.013663713820278645, 0.013034246861934662, 0.016080224886536598, 0.006316511891782284, 0.026983000338077545, 0.01072967704385519, 0.025954073294997215, 0.15858541429042816, 0.09496775269508362, 0.23595298826694489, 0.2675606906414032, 0.0608065202832222, 0.05850319191813469, 0.003931818064302206, 0.004518663976341486, 0.0020161629654467106, 0.000395295734051615], [0.011303563602268696, 0.008551310747861862, 0.017003187909722328, 0.014643363654613495, 0.014294256456196308, 0.006495532114058733, 0.008540479466319084, 0.054204944521188736, 0.047746505588293076, 0.1697213053703308, 0.24143975973129272, 0.15802733600139618, 0.2151937186717987, 0.014083472080528736, 0.01092943362891674, 0.0060703023336827755, 0.0017515834188088775], [0.0015166419325396419, 0.008756814524531364, 0.012863056734204292, 0.01837296597659588, 0.027307458221912384, 0.007392773870378733, 0.021870072931051254, 0.03886174038052559, 0.026515083387494087, 0.025678327307105064, 0.1431700438261032, 0.10860763490200043, 0.4547676742076874, 0.08180113136768341, 0.01281964872032404, 0.006552339531481266, 0.0031466681975871325], [0.0009545692591927946, 0.001522948150523007, 0.002078883582726121, 0.0015379617689177394, 0.002696308773010969, 0.001345092081464827, 0.003131213830783963, 0.012030623853206635, 0.009217243641614914, 0.011800726875662804, 0.3264195919036865, 0.08330187201499939, 0.3033777177333832, 0.18165475130081177, 0.04365663230419159, 0.01224252674728632, 0.003031285712495446], [0.005904765799641609, 0.004374198615550995, 0.006154804956167936, 0.0007268937770277262, 0.003546689171344042, 0.001545797218568623, 0.0059205312281847, 0.013320356607437134, 0.00551215372979641, 0.0072792391292750835, 0.1268681287765503, 0.05033908411860466, 0.2587333619594574, 0.24454623460769653, 0.17340511083602905, 0.07920872420072556, 0.012613956816494465]], [[0.022592751309275627, 0.041242972016334534, 0.06407269835472107, 0.041319869458675385, 0.06316812336444855, 0.12288127094507217, 0.03249724954366684, 0.01767602376639843, 0.03114771470427513, 0.1399928480386734, 0.03838957101106644, 0.06812949478626251, 0.04396490007638931, 0.08401870727539062, 0.056498318910598755, 0.07249383628368378, 0.05991361662745476], [0.0024522601161152124, 0.05789865553379059, 0.2315445989370346, 0.304757684469223, 0.18794825673103333, 0.05799189209938049, 0.048881154507398605, 0.034303195774555206, 0.052871618419885635, 0.0021386321168392897, 0.001978401793166995, 0.002313601551577449, 0.003174731507897377, 0.003533181268721819, 0.005604541394859552, 0.001970448298379779, 0.0006372025818563998], [0.07386548072099686, 0.07841330021619797, 0.05245635658502579, 0.0539100207388401, 0.2018413543701172, 0.19102394580841064, 0.0738258808851242, 0.1676979660987854, 0.03512115776538849, 0.025920525193214417, 0.001833446673117578, 0.0021894965320825577, 0.0048238663002848625, 0.0052408636547625065, 0.025936903432011604, 0.00504214596003294, 0.000857346341945231], [0.01166706345975399, 0.033831946551799774, 0.09444530308246613, 0.031177956610918045, 0.2863520681858063, 0.2343894988298416, 0.08405474573373795, 0.1434207260608673, 0.05359455198049545, 0.005088564939796925, 0.001422438770532608, 0.0007215141085907817, 0.007617046125233173, 0.0029152221977710724, 0.007982546463608742, 0.0010119563667103648, 0.0003069056256208569], [0.003358527086675167, 0.033571645617485046, 0.09078340977430344, 0.024664288386702538, 0.14903205633163452, 0.29403719305992126, 0.11627621948719025, 0.2077040821313858, 0.04962916672229767, 0.01149197481572628, 0.001370060839690268, 0.0011997469700872898, 0.005541961174458265, 0.004602860659360886, 0.005630850791931152, 0.0006087329820729792, 0.0004972346359863877], [0.10242671519517899, 0.01428561843931675, 0.27957308292388916, 0.02694641798734665, 0.02779257670044899, 0.04037510231137276, 0.05366629734635353, 0.37752828001976013, 0.03707906976342201, 0.022837096825242043, 0.0018641973147168756, 0.0008440730161964893, 0.0017874921904876828, 0.0046611069701612, 0.006668757647275925, 0.0012950439704582095, 0.00036907749017700553], [0.008889823220670223, 0.044925156980752945, 0.15463511645793915, 0.025073954835534096, 0.07735048979520798, 0.23808468878269196, 0.03327044099569321, 0.24279668927192688, 0.0773877203464508, 0.03436198830604553, 0.011761189438402653, 0.006235687993466854, 0.0059006488882005215, 0.02326914854347706, 0.013922258280217648, 0.0011311275884509087, 0.0010038753971457481], [0.00512270350009203, 0.02222408540546894, 0.013582033105194569, 0.056794486939907074, 0.018675442785024643, 0.021052811294794083, 0.03266278654336929, 0.5071450471878052, 0.25193968415260315, 0.009966454468667507, 0.026696957647800446, 0.01665411703288555, 0.004814067855477333, 0.0027057058177888393, 0.004738589283078909, 0.003753240453079343, 0.0014718392631039023], [0.0005366563564166427, 0.010071475990116596, 0.02656141296029091, 0.013414682820439339, 0.014030099846422672, 0.012698138132691383, 0.021791649982333183, 0.8589319586753845, 0.009669174440205097, 0.007888669148087502, 0.006772278342396021, 0.0049042715691030025, 0.00709201954305172, 0.0023182425647974014, 0.002772808773443103, 0.000488156802020967, 5.827374479849823e-05], [0.005822913721203804, 0.0067282626405358315, 0.008053707890212536, 0.004308303818106651, 0.011623624712228775, 0.00645578233525157, 0.0034779582638293505, 0.02257639169692993, 0.024457497522234917, 0.02696382813155651, 0.21083782613277435, 0.15946076810359955, 0.1944255530834198, 0.0941864550113678, 0.0901217982172966, 0.03318466991186142, 0.09731460362672806], [0.006752613931894302, 0.021546373143792152, 0.022713132202625275, 0.03949722275137901, 0.02330799028277397, 0.02343795821070671, 0.007825855165719986, 0.018903149291872978, 0.018383199349045753, 0.06708011776208878, 0.01935456693172455, 0.09393268078565598, 0.09119968116283417, 0.13621564209461212, 0.17743781208992004, 0.19761450588703156, 0.03479741886258125], [0.010231377556920052, 0.006993897724896669, 0.0035543779376894236, 0.006209128070622683, 0.008916785940527916, 0.0025827386416494846, 0.013614773750305176, 0.02752945013344288, 0.008013597689568996, 0.034138623625040054, 0.06695550680160522, 0.0347055122256279, 0.2647591233253479, 0.07598547637462616, 0.38272085785865784, 0.029523678123950958, 0.023565147072076797], [0.0017297770828008652, 0.0035777920857071877, 0.004379001911729574, 0.00348403537645936, 0.013788655400276184, 0.010207629762589931, 0.006903520785272121, 0.01639179140329361, 0.0050702570006251335, 0.06593973934650421, 0.017517302185297012, 0.05015934631228447, 0.1409766674041748, 0.14035001397132874, 0.21759778261184692, 0.18434959650039673, 0.11757706105709076], [0.02367863617837429, 0.014378308318555355, 0.019954072311520576, 0.01592298410832882, 0.017052380368113518, 0.014680364169180393, 0.031541772186756134, 0.1418466866016388, 0.016826948150992393, 0.06164643540978432, 0.04712852090597153, 0.023603985086083412, 0.07742704451084137, 0.03240324556827545, 0.11892727762460709, 0.23681142926216125, 0.1061699315905571], [0.0025931817945092916, 0.005052092485129833, 0.00449332082644105, 0.007472687866538763, 0.00824285950511694, 0.006850372534245253, 0.00588183430954814, 0.01014531310647726, 0.003920306917279959, 0.03335360810160637, 0.007960778661072254, 0.051070135086774826, 0.06304628401994705, 0.0462176539003849, 0.036121029406785965, 0.5187029242515564, 0.18887564539909363], [0.006727236323058605, 0.008314987644553185, 0.016345614567399025, 0.013904438354074955, 0.018732335418462753, 0.022339019924402237, 0.013412481173872948, 0.04597458615899086, 0.008343709632754326, 0.041254106909036636, 0.0301947221159935, 0.033651288598775864, 0.12942668795585632, 0.09611938893795013, 0.17631614208221436, 0.12154346704483032, 0.21739977598190308], [0.001379967201501131, 0.0031912035774439573, 0.004053221084177494, 0.002789696678519249, 0.00516172219067812, 0.0034302109852433205, 0.015421082265675068, 0.3257053792476654, 0.0012095352867618203, 0.05029366910457611, 0.04462410509586334, 0.048011474311351776, 0.18008168041706085, 0.028116412460803986, 0.07472699880599976, 0.13831168413162231, 0.0734918862581253]], [[0.025229431688785553, 0.1906249225139618, 0.018277404829859734, 0.011615282855927944, 0.029721707105636597, 0.008722244761884212, 0.07310659438371658, 0.10010955482721329, 0.05713200196623802, 0.05475836247205734, 0.04314306005835533, 0.1592230200767517, 0.036683451384305954, 0.021975398063659668, 0.07122796773910522, 0.018974140286445618, 0.07947549968957901], [0.012608767487108707, 0.12484779208898544, 0.026645516976714134, 0.03025100752711296, 0.09148713201284409, 0.022706059738993645, 0.049812521785497665, 0.09678985923528671, 0.2959100902080536, 0.0319729819893837, 0.02228666841983795, 0.0232565738260746, 0.02562052384018898, 0.021012352779507637, 0.027559524402022362, 0.020890893414616585, 0.07634176313877106], [0.1415875405073166, 0.03529421240091324, 0.22378429770469666, 0.06198011711239815, 0.1561271846294403, 0.12882360816001892, 0.0391521230340004, 0.0539872832596302, 0.0032149699982255697, 0.016723942011594772, 0.011417727917432785, 0.007595948409289122, 0.02660720981657505, 0.03540116921067238, 0.038540177047252655, 0.01873904839158058, 0.0010234653018414974], [0.017227372154593468, 0.10166235268115997, 0.03571029007434845, 0.03298285976052284, 0.12852007150650024, 0.04406985640525818, 0.09933997690677643, 0.07160454988479614, 0.2834462821483612, 0.013986077159643173, 0.012742975726723671, 0.013676805421710014, 0.022733399644494057, 0.020076457411050797, 0.02279636636376381, 0.023109592497348785, 0.056314706802368164], [0.028876036405563354, 0.09424487501382828, 0.04294281452894211, 0.041587136685848236, 0.10838973522186279, 0.17510558664798737, 0.08401867747306824, 0.14879046380519867, 0.08715034276247025, 0.029224565252661705, 0.009517844766378403, 0.010138439014554024, 0.05474145710468292, 0.034425996243953705, 0.017445022240281105, 0.015107192099094391, 0.01829385571181774], [0.07790114730596542, 0.037476781755685806, 0.04905135557055473, 0.00814921222627163, 0.26637306809425354, 0.12962016463279724, 0.09078303724527359, 0.05145665630698204, 0.0279252827167511, 0.0244514849036932, 0.018658295273780823, 0.005730919074267149, 0.11969494074583054, 0.023751411586999893, 0.05797486752271652, 0.003649243153631687, 0.007352083455771208], [0.08221862465143204, 0.11170019954442978, 0.04120054468512535, 0.045744847506284714, 0.09016142785549164, 0.04958293214440346, 0.11624215543270111, 0.05828208848834038, 0.16475266218185425, 0.04565241187810898, 0.018964026123285294, 0.028694765642285347, 0.027565328404307365, 0.03266844525933266, 0.037144891917705536, 0.016734721139073372, 0.03268992155790329], [0.13198214769363403, 0.08994144201278687, 0.22639891505241394, 0.11927301436662674, 0.11254222691059113, 0.1049356609582901, 0.0779351145029068, 0.043838679790496826, 0.0007090592989698052, 0.011589981615543365, 0.019597677513957024, 0.0017998183611780405, 0.012662512250244617, 0.008410376496613026, 0.021716704592108727, 0.016524679958820343, 0.0001418645988451317], [0.3768383860588074, 0.12330149859189987, 0.02853669784963131, 0.03096090629696846, 0.04759572446346283, 0.059986863285303116, 0.1724219024181366, 0.07827011495828629, 0.007937856018543243, 0.00919436477124691, 0.004470595624297857, 0.009378609247505665, 0.010524829849600792, 0.01043486874550581, 0.019735919311642647, 0.008899723179638386, 0.001511107780970633], [0.03135097771883011, 0.05269235000014305, 0.023349938914179802, 0.1323545277118683, 0.13828955590724945, 0.07383492588996887, 0.031481850892305374, 0.028434528037905693, 0.020914731547236443, 0.033943936228752136, 0.03359381482005119, 0.02261863648891449, 0.08283568173646927, 0.07018949091434479, 0.04248347505927086, 0.16127561032772064, 0.020356111228466034], [0.03490123152732849, 0.10801766067743301, 0.019449643790721893, 0.04172982648015022, 0.07739521563053131, 0.03016926348209381, 0.13350681960582733, 0.048867661505937576, 0.03307081386446953, 0.06607325375080109, 0.08509712666273117, 0.045208368450403214, 0.056096915155649185, 0.04158082604408264, 0.04673530161380768, 0.08800392597913742, 0.04409627243876457], [0.05154607072472572, 0.13161619007587433, 0.015470139682292938, 0.037308115512132645, 0.09358541667461395, 0.045323196798563004, 0.08748354762792587, 0.04389321058988571, 0.0751238763332367, 0.03394602984189987, 0.06617578864097595, 0.039348721504211426, 0.0755181759595871, 0.04657603055238724, 0.05110987275838852, 0.03752486780285835, 0.06845078617334366], [0.045170001685619354, 0.023220911622047424, 0.05770496651530266, 0.02595735527575016, 0.2384619265794754, 0.22330813109874725, 0.06707781553268433, 0.04752959683537483, 0.005720003042370081, 0.029135147109627724, 0.029502270743250847, 0.004957693628966808, 0.06609918177127838, 0.0657583475112915, 0.04484422132372856, 0.01947348192334175, 0.00607894454151392], [0.05315763130784035, 0.06410051882266998, 0.020315688103437424, 0.015302143059670925, 0.1043320894241333, 0.2639279365539551, 0.030412442982196808, 0.023462509736418724, 0.02145475521683693, 0.029132265597581863, 0.09598658233880997, 0.03790988028049469, 0.07511664181947708, 0.06056159734725952, 0.04498083144426346, 0.03499474376440048, 0.0248517207801342], [0.16818305850028992, 0.06326840817928314, 0.05614742264151573, 0.07093902677297592, 0.04383542761206627, 0.11131663620471954, 0.023724956437945366, 0.034650057554244995, 0.01285067480057478, 0.03518915921449661, 0.024192672222852707, 0.04659947007894516, 0.024818921461701393, 0.07859275490045547, 0.04899810999631882, 0.14249159395694733, 0.014201649464666843], [0.018804555758833885, 0.1452721804380417, 0.015372946858406067, 0.046491123735904694, 0.06757894158363342, 0.04078845679759979, 0.0687142089009285, 0.02868746407330036, 0.07122844457626343, 0.043288882821798325, 0.06034913659095764, 0.04891715571284294, 0.024664482101798058, 0.039178308099508286, 0.0678272470831871, 0.11166568100452423, 0.10117077082395554], [0.6231653690338135, 0.04444140940904617, 0.015488763339817524, 0.014099380932748318, 0.023624960333108902, 0.06599694490432739, 0.04869147017598152, 0.02038084715604782, 0.0009414941305294633, 0.014225088059902191, 0.01238776370882988, 0.018895264714956284, 0.01611875183880329, 0.028241945430636406, 0.03211964666843414, 0.019706713035702705, 0.0014741843333467841]], [[0.5297853946685791, 0.028465336188673973, 0.02506268583238125, 0.029630254954099655, 0.04766254499554634, 0.01360179390758276, 0.03147514909505844, 0.02458438090980053, 0.04230737313628197, 0.023439422249794006, 0.04026693105697632, 0.026047907769680023, 0.023394061252474785, 0.05324985086917877, 0.01479105744510889, 0.019583487883210182, 0.02665235474705696], [0.17063994705677032, 0.05888991057872772, 0.5528180599212646, 0.05428105592727661, 0.025899801403284073, 0.001957215601578355, 0.04174285754561424, 0.010018263012170792, 0.037448253482580185, 0.003583453129976988, 0.019389398396015167, 0.005982087459415197, 0.004441962111741304, 0.004561947658658028, 0.0007211402407847345, 0.007333206012845039, 0.0002913186326622963], [0.8909273147583008, 0.08032894879579544, 0.0025539323687553406, 0.010308152996003628, 0.0017845286056399345, 0.00020814086019527167, 0.00026543892454355955, 0.001113833743147552, 0.004582714289426804, 0.0019126191036775708, 0.004298180341720581, 0.00032235425896942616, 9.852810035226867e-05, 0.0006160056218504906, 0.00030618280288763344, 0.00010265781747875735, 0.00027038660482503474], [0.10857869684696198, 0.01627052016556263, 0.17978540062904358, 0.015306293964385986, 0.5894787311553955, 0.0069667198695242405, 0.01477954350411892, 0.0030409551691263914, 0.026412608101963997, 0.0021361846011132, 0.016677897423505783, 0.014800668694078922, 0.0028928909450769424, 0.0005878520314581692, 0.001204014988616109, 0.00043835901306010783, 0.0006426859763450921], [0.33767518401145935, 0.04650860279798508, 0.041055794805288315, 0.17031604051589966, 0.07923808693885803, 0.15906578302383423, 0.03530227020382881, 0.04126405343413353, 0.004364499822258949, 0.0019668610766530037, 0.0009451291407458484, 0.012885362841188908, 0.056752391159534454, 0.004813986364752054, 0.0029920327942818403, 0.0012678267667070031, 0.003586124163120985], [0.5636687278747559, 0.0009270262089557946, 0.021299337968230247, 0.0045332107692956924, 0.07245277613401413, 0.00034146313555538654, 0.3119720220565796, 0.003071835031732917, 0.006842904724180698, 0.000274136895313859, 0.0015084922779351473, 0.00021697493502870202, 0.006742208264768124, 0.003178044455125928, 0.002103708451613784, 0.00017256222781725228, 0.0006945595378056169], [0.0034285683650523424, 0.0004321909218560904, 1.4425149856833741e-05, 0.0006366359302774072, 0.0007624393911100924, 0.9838820695877075, 7.799694139976054e-05, 0.0074768359772861, 0.0011207726784050465, 0.0019184118136763573, 1.1265839930274524e-05, 5.301832061377354e-05, 2.1885936803300865e-05, 7.566863473584817e-07, 0.00012025000614812598, 1.2447904737200588e-05, 3.0048226108192466e-05], [0.029951950535178185, 0.0008752135909162462, 0.0002883475390262902, 0.0006025819457136095, 0.008834654465317726, 0.0030747363343834877, 0.06330305337905884, 0.5941256284713745, 0.28267496824264526, 0.00859396904706955, 0.005169601645320654, 0.00016499900084454566, 0.00032435308094136417, 0.00011302684288239107, 0.0012292881729081273, 0.00026034965412691236, 0.00041327576036565006], [0.7789714932441711, 0.00022499822080135345, 0.00016182770195882767, 0.0001228098408319056, 5.0754322728607804e-05, 0.00016056757885962725, 0.001908572157844901, 0.16523577272891998, 0.03237298130989075, 0.01315589714795351, 0.003399125300347805, 0.003103874158114195, 0.0008009437005966902, 0.00011767839168896899, 0.00014725646178703755, 4.433339199749753e-05, 2.0980391127523035e-05], [0.12921631336212158, 0.0027394054923206568, 0.0015853192890062928, 0.00033284889650531113, 0.0005371670704334974, 2.662128463271074e-05, 0.004090360831469297, 0.05729591101408005, 0.5213974714279175, 0.0060508777387440205, 0.2624721825122833, 0.0013905806699767709, 0.009184601716697216, 0.0010160582605749369, 0.0011505259899422526, 0.0001983383990591392, 0.0013153988402336836], [0.14676052331924438, 0.009243791922926903, 0.004999727010726929, 0.009514186531305313, 0.0008303028298541903, 0.0013667411403730512, 0.0007688934565521777, 0.07283740490674973, 0.09306642413139343, 0.2315906435251236, 0.05676010996103287, 0.3287101089954376, 0.0124549875035882, 0.007957584224641323, 0.006199636030942202, 0.015734124928712845, 0.0012047147611156106], [0.008004061877727509, 0.002158306771889329, 0.0015265600522980094, 0.0005280429031699896, 0.0004625661240424961, 2.4361703253816813e-05, 0.0011331778950989246, 0.0005862020188942552, 0.01661285199224949, 0.0009265700937248766, 0.05330977961421013, 0.006060315296053886, 0.904312014579773, 0.0032233658712357283, 0.0004049489216413349, 0.00010776261478895321, 0.0006190987187437713], [0.0762576013803482, 0.001045120763592422, 0.003688471857458353, 0.0010932286968454719, 0.00449006212875247, 0.002644736785441637, 0.00073879404226318, 0.0010261982679367065, 0.0015050700167194009, 0.001638186746276915, 0.006756780203431845, 0.8357359170913696, 0.039099596440792084, 0.010943735018372536, 0.005432555451989174, 0.007262994069606066, 0.0006409725174307823], [0.2574582099914551, 0.0006624235538765788, 0.0005549232009798288, 0.0007254296215251088, 0.0025924642104655504, 5.587463601841591e-05, 7.177134830271825e-05, 7.798853766871616e-05, 0.0012320630485191941, 0.0028394758701324463, 0.0052256714552640915, 0.0048163277097046375, 0.017115430906414986, 0.004212055820971727, 0.6857254505157471, 0.0031236365903168917, 0.01351089496165514], [0.010709894821047783, 0.0007484433590434492, 8.900796819943935e-05, 0.0016312870429828763, 0.003602010430768132, 0.00010779048170661554, 0.000447740574600175, 0.0009123242925852537, 0.0005111492937430739, 0.00017394138558302075, 0.0009958456503227353, 0.0077655017375946045, 0.0036991583183407784, 0.9275467991828918, 0.0008852282771840692, 0.034538235515356064, 0.005635612644255161], [0.08550012111663818, 0.0001672657672315836, 0.0005095266969874501, 7.990856829565018e-05, 0.0007041409844532609, 1.4359509805217385e-05, 0.0009417919791303575, 0.00023594428785145283, 0.0007948753773234785, 0.00013249741459731013, 0.0024288392160087824, 0.00199946784414351, 0.44115275144577026, 0.009732081554830074, 0.08865057677030563, 0.004404876381158829, 0.3625509738922119], [0.8495730757713318, 3.872965862683486e-06, 3.082321200054139e-05, 7.923857992864214e-06, 1.9904187865904532e-05, 5.858074018760817e-06, 4.14150272263214e-05, 0.00016338461136911064, 3.6585079215001315e-05, 8.851963502820581e-05, 6.038512583472766e-05, 0.0003887961502186954, 0.0007887074025347829, 0.0009766381699591875, 0.005481830332428217, 0.05996217578649521, 0.08237022906541824]], [[0.0028138835914433002, 0.14595000445842743, 0.004342307336628437, 0.007798220496624708, 0.47588446736335754, 0.005292847286909819, 0.01191490888595581, 0.0007258609985001385, 0.012314080260694027, 0.0026334223803132772, 0.07959385216236115, 0.005817516706883907, 0.1497550904750824, 0.031208788976073265, 0.019496599212288857, 0.010442382656037807, 0.03401554748415947], [0.30839553475379944, 0.02442958578467369, 0.04210550710558891, 0.12423135340213776, 0.024058213457465172, 0.13344943523406982, 0.07468478381633759, 0.07993800938129425, 0.07432860136032104, 0.02326391264796257, 0.02260420098900795, 0.01761590875685215, 0.006955130957067013, 0.010127308778464794, 0.008846303448081017, 0.017809618264436722, 0.007156712934374809], [0.007676139939576387, 0.0639035552740097, 0.09770851582288742, 0.025784390047192574, 0.015926800668239594, 0.19102120399475098, 0.023956621065735817, 0.22462424635887146, 0.08848381042480469, 0.026195261627435684, 0.0027917984407395124, 0.0498599074780941, 0.026894720271229744, 0.10260621458292007, 0.0195894967764616, 0.003518287790939212, 0.02945900708436966], [0.562584638595581, 0.03440006449818611, 0.055883146822452545, 0.012190770357847214, 0.04682030528783798, 0.06307457387447357, 0.012469426728785038, 0.07332248985767365, 0.07798133790493011, 0.005355661269277334, 0.008300283923745155, 0.006190975196659565, 0.007199685089290142, 0.004158606752753258, 0.015873489901423454, 0.010205147787928581, 0.003989442251622677], [0.18359829485416412, 0.038653552532196045, 0.15460149943828583, 0.011411380022764206, 0.013630617409944534, 0.18495121598243713, 0.02157178893685341, 0.12013169378042221, 0.1598767638206482, 0.014547049067914486, 0.006147957872599363, 0.009481131099164486, 0.011048650369048119, 0.009451921097934246, 0.03990714251995087, 0.008042896166443825, 0.012946530245244503], [0.13900348544120789, 0.08148740977048874, 0.23679934442043304, 0.02080403082072735, 0.015821468085050583, 0.09797590970993042, 0.07375107705593109, 0.011617355048656464, 0.10100888460874557, 0.02710365317761898, 0.017612215131521225, 0.04142763838171959, 0.016874289140105247, 0.04132341593503952, 0.02388180047273636, 0.010554374195635319, 0.04295368120074272], [0.09020019322633743, 0.03774154558777809, 0.1005101203918457, 0.03667706623673439, 0.024326425045728683, 0.4774423837661743, 0.001731462893076241, 0.028049172833561897, 0.09966190904378891, 0.01091250404715538, 0.012680169194936752, 0.019383061677217484, 0.007540566381067038, 0.01482369378209114, 0.009787033312022686, 0.009432034566998482, 0.019100753590464592], [0.030797069892287254, 0.07728295028209686, 0.06687948852777481, 0.12017962336540222, 0.02633104845881462, 0.07644528150558472, 0.138240247964859, 0.02326146326959133, 0.14521564543247223, 0.04453102499246597, 0.029573574662208557, 0.04475005716085434, 0.019740616902709007, 0.02711784467101097, 0.04582895338535309, 0.03775162249803543, 0.04607353359460831], [0.8316414952278137, 0.049767155200242996, 0.0029625813476741314, 0.014293511398136616, 0.016213009133934975, 0.005573486443608999, 0.009432957507669926, 0.0010794304544106126, 0.04657946154475212, 0.0003252702590543777, 0.01323314942419529, 0.0011480662506073713, 0.0008952190401032567, 0.0003345238510519266, 0.0024672735016793013, 0.0018658393528312445, 0.00218773540109396], [0.020670412108302116, 0.029202111065387726, 0.04855913668870926, 0.016554342582821846, 0.021941810846328735, 0.09035651385784149, 0.026405109092593193, 0.03387559577822685, 0.087388776242733, 0.072963185608387, 0.06884146481752396, 0.05169367417693138, 0.08162571489810944, 0.047629643231630325, 0.038143742829561234, 0.05487896502017975, 0.20926976203918457], [0.08915013074874878, 0.029178563505411148, 0.03518853709101677, 0.015873081982135773, 0.025689249858260155, 0.05005418136715889, 0.0025903002824634314, 0.042547184973955154, 0.025278348475694656, 0.15273098647594452, 0.029039854183793068, 0.04898164048790932, 0.14647991955280304, 0.07680763304233551, 0.027846911922097206, 0.08949966728687286, 0.1130637377500534], [0.7777273058891296, 0.0037733472418040037, 0.001478124177083373, 0.0043999142944812775, 0.006701088044792414, 0.01302959956228733, 0.002849529730156064, 0.008094757795333862, 0.016851214691996574, 0.008304131217300892, 0.01879454404115677, 0.0023173950612545013, 0.023950031027197838, 0.003929700702428818, 0.018228409811854362, 0.050126682966947556, 0.0394442118704319], [0.014837793074548244, 0.008079626597464085, 0.04585641622543335, 0.015075299888849258, 0.11292103677988052, 0.09782068431377411, 0.013583811931312084, 0.052380986511707306, 0.009831427596509457, 0.05812854692339897, 0.030269967392086983, 0.04681221395730972, 0.150766521692276, 0.045657843351364136, 0.12843143939971924, 0.1375322937965393, 0.032014138996601105], [0.04893508553504944, 0.026316823437809944, 0.008845926262438297, 0.00985388457775116, 0.026612350717186928, 0.01817840337753296, 0.06177006661891937, 0.006831398233771324, 0.052024707198143005, 0.11510051786899567, 0.07717482000589371, 0.04640994593501091, 0.04570171236991882, 0.004313973244279623, 0.24344190955162048, 0.06968999654054642, 0.1387985348701477], [0.0260305292904377, 0.01183387916535139, 0.015168212354183197, 0.0069733876734972, 0.038386184722185135, 0.030776556581258774, 0.03352782130241394, 0.027250410988926888, 0.07035466283559799, 0.02562684379518032, 0.0072885556146502495, 0.013761120848357677, 0.05872292444109917, 0.36833906173706055, 0.042586952447891235, 0.02496686764061451, 0.19840611517429352], [0.135867178440094, 0.011997750960290432, 0.029999757185578346, 0.024606216698884964, 0.025782689452171326, 0.03336285427212715, 0.0061295004561543465, 0.02897804230451584, 0.029729513451457024, 0.1426798403263092, 0.04920092225074768, 0.03859607130289078, 0.099080890417099, 0.11154460906982422, 0.023387273773550987, 0.08972253650426865, 0.11933432519435883], [0.7758133411407471, 0.007774508558213711, 0.0009717227076180279, 0.002736188704147935, 0.004408706910908222, 0.001264071324840188, 0.0030430478509515524, 0.00028356979601085186, 0.009030964225530624, 0.0019602940883487463, 0.10288668423891068, 0.007128584198653698, 0.008011512458324432, 0.0010378558654338121, 0.009276295080780983, 0.022623008117079735, 0.04174961894750595]], [[4.6997854951769114e-05, 0.0006311151664704084, 6.937955186003819e-05, 0.0009768882300704718, 0.00014576448302250355, 9.334934293292463e-05, 0.000660013291053474, 2.3489619707106613e-05, 0.29161715507507324, 2.4740964363445528e-05, 0.0006135533330962062, 0.0031444982159882784, 0.0003683871473185718, 0.00017555931117385626, 7.470789569197223e-05, 0.0013607771834358573, 0.6999736428260803], [0.03953053429722786, 0.04480615258216858, 0.17624598741531372, 0.3320455849170685, 0.18302905559539795, 0.11669808626174927, 0.0127596789970994, 0.03359492868185043, 0.015715327113866806, 0.0036370456218719482, 0.010267579928040504, 0.00218258542008698, 0.005212061107158661, 0.012401428073644638, 0.002899571554735303, 0.008493664674460888, 0.0004806677170563489], [0.056025855243206024, 0.017212849110364914, 0.3687164783477783, 0.01077384501695633, 0.07087904214859009, 0.3237742483615875, 0.03511696681380272, 0.08068202435970306, 0.008143906481564045, 0.0030751919839531183, 0.0030450355261564255, 0.0010525588877499104, 0.003112898673862219, 0.007238247897475958, 0.009245934896171093, 0.0015897175762802362, 0.00031523313373327255], [0.015551937744021416, 0.03036537393927574, 0.06994624435901642, 0.05071200802922249, 0.2754291594028473, 0.4450528025627136, 0.016826530918478966, 0.026995129883289337, 0.006157469004392624, 0.007323973346501589, 0.004209441598504782, 0.0030876509845256805, 0.0154345678165555, 0.023224053904414177, 0.0007701454451307654, 0.008718673139810562, 0.00019485618395265192], [0.048887137323617935, 0.07722077518701553, 0.09643282741308212, 0.04219973459839821, 0.23919518291950226, 0.318155974149704, 0.059559255838394165, 0.07164259999990463, 0.0015539806336164474, 0.015555096790194511, 0.003240046324208379, 0.002364320680499077, 0.009810944087803364, 0.009992782957851887, 0.0017093762289732695, 0.0024366870056837797, 4.321666347095743e-05], [0.010238614864647388, 0.02784811519086361, 0.3302167057991028, 0.011526755057275295, 0.11658567935228348, 0.39849233627319336, 0.032393720000982285, 0.03154754638671875, 0.0013876929879188538, 0.009461781941354275, 0.0010100621730089188, 0.0009106516372412443, 0.013249075971543789, 0.01028874795883894, 0.00420496566221118, 0.0005801247316412628, 5.738190156989731e-05], [0.01862824521958828, 0.07213407754898071, 0.1532040387392044, 0.01613878458738327, 0.2503899931907654, 0.2708008289337158, 0.061421703547239304, 0.028818242251873016, 0.001575593021698296, 0.01956940069794655, 0.0040082307532429695, 0.009477389045059681, 0.018582522869110107, 0.05924008786678314, 0.012405281886458397, 0.0034569555427879095, 0.000148552397149615], [0.0953814759850502, 0.12914900481700897, 0.015792902559041977, 0.06117771565914154, 0.03243299946188927, 0.022912047803401947, 0.10839948058128357, 0.437074214220047, 0.019374022260308266, 0.02425185963511467, 0.01198923122137785, 0.011240901425480843, 0.0031097654718905687, 0.0028721927665174007, 0.01974177360534668, 0.004250083584338427, 0.0008503730059601367], [0.046842750161886215, 0.11623495817184448, 0.063980333507061, 0.04431002587080002, 0.1427324116230011, 0.0582481324672699, 0.0772114247083664, 0.0188564732670784, 0.011267701163887978, 0.04962540045380592, 0.01674911007285118, 0.15991328656673431, 0.04218771681189537, 0.05088194087147713, 0.06612319499254227, 0.030405566096305847, 0.004429609049111605], [0.017834164202213287, 0.002756795845925808, 0.05350993201136589, 0.0021620094776153564, 0.023222211748361588, 0.13789162039756775, 0.009836714714765549, 0.051396630704402924, 0.0002801534137688577, 0.13006038963794708, 0.02957182563841343, 0.027847765013575554, 0.14845290780067444, 0.21169456839561462, 0.11597933620214462, 0.034082334488630295, 0.003420712659135461], [0.009180780500173569, 0.0043208966962993145, 0.013429312966763973, 0.01852136105298996, 0.020653001964092255, 0.06049400940537453, 0.0036788966972380877, 0.013552435673773289, 0.000791482103522867, 0.1717328578233719, 0.03971748799085617, 0.036973729729652405, 0.07784470915794373, 0.2781842350959778, 0.021035902202129364, 0.22194860875606537, 0.00794034544378519], [0.007877924479544163, 0.002594415098428726, 0.051812794059515, 0.010642011649906635, 0.036495789885520935, 0.022167861461639404, 0.0056761750020086765, 0.014539164490997791, 0.0003590921696741134, 0.18966199457645416, 0.1029757410287857, 0.030085669830441475, 0.18181461095809937, 0.2510167956352234, 0.027508048340678215, 0.06017230078577995, 0.004599723499268293], [0.019241195172071457, 0.005438725929707289, 0.003354135202243924, 0.0021407820750027895, 0.024612626060843468, 0.031923312693834305, 0.008155552670359612, 0.025547876954078674, 0.001017207046970725, 0.24112504720687866, 0.029882803559303284, 0.18160457909107208, 0.15794700384140015, 0.17487336695194244, 0.043853409588336945, 0.035820309072732925, 0.013462136499583721], [0.07355764508247375, 0.014865903183817863, 0.15413416922092438, 0.005740889813750982, 0.05969779193401337, 0.05063951388001442, 0.05190437659621239, 0.010656776838004589, 0.0029035040643066168, 0.17980147898197174, 0.06359933316707611, 0.0506933331489563, 0.10207530111074448, 0.04617089033126831, 0.07591244578361511, 0.044013675302267075, 0.013633019290864468], [0.01094046887010336, 0.0014406978152692318, 0.07255426049232483, 0.002811927581205964, 0.01564006134867668, 0.011477588675916195, 0.01629479043185711, 0.017017584294080734, 0.003313269931823015, 0.04445313289761543, 0.05322292819619179, 0.07571274787187576, 0.1090952679514885, 0.4110276699066162, 0.054814714938402176, 0.05832207575440407, 0.041860874742269516], [0.008660070598125458, 0.001521358615718782, 0.017713433131575584, 0.0025126044638454914, 0.019752124324440956, 0.0498618483543396, 0.004999701865017414, 0.010655038990080357, 0.00021393646602518857, 0.20005092024803162, 0.03075449913740158, 0.040954459458589554, 0.27685803174972534, 0.30435314774513245, 0.014973180368542671, 0.01312843058258295, 0.003037217538803816], [0.005447723437100649, 0.0013296524994075298, 0.0012926749186590314, 0.00039578264113515615, 0.0017018918879330158, 0.0008921298431232572, 0.0018021955620497465, 0.0005336333997547626, 0.00013476944877766073, 0.16598767042160034, 0.03899261727929115, 0.3594083786010742, 0.07863102853298187, 0.10893061012029648, 0.13735926151275635, 0.06446316838264465, 0.03269682079553604]]], [[[0.6799723505973816, 0.02714240550994873, 0.00449505215510726, 0.009819257073104382, 0.001969903474673629, 0.0013555795885622501, 0.004159142728894949, 0.025402676314115524, 0.10693111270666122, 0.012828328646719456, 0.006657484918832779, 0.0055929021909832954, 0.007443425711244345, 0.003951537888497114, 0.0024434442166239023, 0.0033005631994456053, 0.09653487801551819], [0.23385626077651978, 0.1443607360124588, 0.034189365804195404, 0.007658595219254494, 0.0007355501875281334, 0.0038644634187221527, 0.0035510926973074675, 0.019739340990781784, 0.43852442502975464, 0.006758406292647123, 0.0011488659074530005, 0.0007718694978393614, 0.001132420264184475, 0.0007442851783707738, 0.00030478578992187977, 0.0005385232507251203, 0.1021210327744484], [0.6984356045722961, 0.16992157697677612, 0.02908949740231037, 0.007290296722203493, 0.0009568631066940725, 0.0018246949184685946, 0.004464342724531889, 0.05042754486203194, 0.014225407503545284, 0.006289962213486433, 0.0059830788522958755, 0.004073913209140301, 0.002104290062561631, 0.0010259129339829087, 0.0005240275640971959, 0.0002769042912404984, 0.003086149226874113], [0.25565215945243835, 0.15518487989902496, 0.03777023404836655, 0.024677015841007233, 0.013732791878283024, 0.011438226327300072, 0.02491465024650097, 0.23803526163101196, 0.0382743664085865, 0.14787907898426056, 0.02151949517428875, 0.0031485676299780607, 0.0046502891927957535, 0.008991790004074574, 0.007363536395132542, 0.002457389375194907, 0.004310287069529295], [0.06467265635728836, 0.466308057308197, 0.023762144148349762, 0.038105469197034836, 0.030488623306155205, 0.007472719997167587, 0.04738154262304306, 0.19471128284931183, 0.03719029948115349, 0.0477716326713562, 0.012031198479235172, 0.007923559285700321, 0.014606311917304993, 0.0023776490706950426, 0.002137018134817481, 0.0008437778451479971, 0.0022160594817250967], [0.3908434212207794, 0.24928702414035797, 0.0104661975055933, 0.07785845547914505, 0.019612586125731468, 0.002427377039566636, 0.06945327669382095, 0.07400713860988617, 0.046541303396224976, 0.020975718274712563, 0.014098751358687878, 0.006800937000662088, 0.00822970550507307, 0.0018139125313609838, 0.0017884612316265702, 0.001977817388251424, 0.0038180428091436625], [0.24660643935203552, 0.07539991289377213, 0.028458595275878906, 0.043353334069252014, 0.0176022257655859, 0.007150956429541111, 0.021256957203149796, 0.2747271656990051, 0.12031912803649902, 0.09786100685596466, 0.010012742131948471, 0.01042100414633751, 0.020670607686042786, 0.005555460229516029, 0.005415540188550949, 0.0021889323834329844, 0.01299986056983471], [0.11268492043018341, 0.13597719371318817, 0.004825045820325613, 0.1361781507730484, 0.01413441076874733, 0.017867518588900566, 0.024349015206098557, 0.15218032896518707, 0.20350806415081024, 0.07395793497562408, 0.018989522010087967, 0.01504137646406889, 0.02558129094541073, 0.0068090385757386684, 0.004267056472599506, 0.013145030476152897, 0.04050413891673088], [0.8579596877098083, 0.05068559572100639, 0.0011143614538013935, 0.017629515379667282, 0.0016797656426206231, 0.0018244433449581265, 0.003344691824167967, 0.03524310514330864, 0.012730668298900127, 0.010830081067979336, 0.0018767962465062737, 0.001406803959980607, 0.001417699153535068, 0.0010427485685795546, 0.0002791360893752426, 0.00020951115584466606, 0.0007252647774294019], [0.46295905113220215, 0.13443738222122192, 0.004037299659103155, 0.018081648275256157, 0.0010580584639683366, 0.005880589596927166, 0.00943515170365572, 0.03630466014146805, 0.10564146190881729, 0.06858116388320923, 0.030163217335939407, 0.008098444901406765, 0.014598812907934189, 0.015145520679652691, 0.0024334462359547615, 0.0048456997610628605, 0.07829834520816803], [0.04682144895195961, 0.6307578682899475, 0.017838003113865852, 0.01651613786816597, 0.0009469649521633983, 0.003794413059949875, 0.013334283605217934, 0.018501348793506622, 0.044094476848840714, 0.029435262084007263, 0.10852064937353134, 0.011918683536350727, 0.011145036667585373, 0.006393955554813147, 0.005007254425436258, 0.004316031467169523, 0.030658049508929253], [0.1607009619474411, 0.05023277550935745, 0.006000313442200422, 0.029496043920516968, 0.006779431365430355, 0.002788977697491646, 0.014734962023794651, 0.07584323734045029, 0.07187895476818085, 0.07236018776893616, 0.163868710398674, 0.1402699053287506, 0.05105699226260185, 0.03790202736854553, 0.026137081906199455, 0.015344827435910702, 0.07460454851388931], [0.1354241818189621, 0.08385733515024185, 0.0069400290958583355, 0.023752328008413315, 0.014441447332501411, 0.001654807711020112, 0.02139156311750412, 0.18527966737747192, 0.06950785964727402, 0.1337895691394806, 0.0899280458688736, 0.055529944598674774, 0.04304825887084007, 0.01235974207520485, 0.00789712555706501, 0.032111991196870804, 0.0830860584974289], [0.22548837959766388, 0.02763162925839424, 0.020267117768526077, 0.0464756041765213, 0.0020414525642991066, 0.0037675665225833654, 0.006938498001545668, 0.04487454518675804, 0.10998658090829849, 0.12003193795681, 0.10299677401781082, 0.033140961080789566, 0.023945540189743042, 0.00817831326276064, 0.011400172486901283, 0.03788136690855026, 0.17495357990264893], [0.21357214450836182, 0.05379948392510414, 0.0038793820422142744, 0.029647590592503548, 0.005487753544002771, 0.004448940046131611, 0.06838462501764297, 0.12135495245456696, 0.09188488125801086, 0.05469454079866409, 0.03985161334276199, 0.07988829165697098, 0.08394772559404373, 0.030257239937782288, 0.008133869618177414, 0.023840950801968575, 0.08692600578069687], [0.06259501725435257, 0.0189773328602314, 0.001851109554991126, 0.015108867548406124, 0.0012967042857781053, 0.003537708893418312, 0.008021938614547253, 0.057718198746442795, 0.04869207739830017, 0.3029101490974426, 0.1314173936843872, 0.01983928494155407, 0.07148057222366333, 0.08766323328018188, 0.047424785792827606, 0.013654801994562149, 0.10781078040599823], [0.8161494135856628, 0.013028709217905998, 0.0003173933073412627, 0.005968824494630098, 0.0003629127750173211, 0.00032984092831611633, 0.0013746650656685233, 0.02198980748653412, 0.02877907268702984, 0.025799982249736786, 0.008624272421002388, 0.006171585526317358, 0.008236420340836048, 0.007794405333697796, 0.0012655055616050959, 0.003933065105229616, 0.04987429827451706]], [[0.7820881605148315, 0.04792488366365433, 0.014661292545497417, 0.016982680186629295, 0.00801462959498167, 0.01270146295428276, 0.0072418879717588425, 0.0037491123657673597, 0.05504460260272026, 0.003660280955955386, 0.0010702796280384064, 0.00267069973051548, 0.0035881618969142437, 0.005693497601896524, 0.0035346068907529116, 0.0018381420522928238, 0.029535597190260887], [0.9579739570617676, 0.0325721837580204, 0.004223098047077656, 0.0007561913807876408, 0.0002811573795042932, 0.0010076769394800067, 0.0004763439064845443, 0.00012394772784318775, 0.0019999793730676174, 0.00036444494617171586, 3.25585606333334e-05, 2.79550895356806e-05, 2.9101092877681367e-05, 3.9847553125582635e-05, 5.077746027382091e-05, 3.528599108904018e-06, 3.730615571839735e-05], [0.25807806849479675, 0.7257601618766785, 0.0036532790400087833, 0.002803741255775094, 0.000127884850371629, 0.0001944909308804199, 0.00010639076208462939, 9.574835712555796e-05, 0.007093087304383516, 0.0016282694414258003, 0.00010966626723529771, 3.3055210224119946e-05, 8.349178096977994e-05, 1.1528873073984869e-05, 5.186936687096022e-05, 3.2471805752720684e-05, 0.0001368197990814224], [0.5073351263999939, 0.37685626745224, 0.09392479062080383, 0.005651452578604221, 0.0036995012778788805, 0.0016434623394161463, 4.996777352062054e-05, 2.4235627279267646e-05, 0.006225328426808119, 0.002448765793815255, 0.00015015737153589725, 0.001129818963818252, 0.00010489134001545608, 7.976889901328832e-05, 0.00013148282596375793, 3.22655905620195e-05, 0.0005127229378558695], [0.7279987931251526, 0.03613729029893875, 0.030276218429207802, 0.16253936290740967, 0.023364052176475525, 0.009557483717799187, 0.000169901002664119, 9.23241168493405e-06, 0.0019033962162211537, 0.000315505254548043, 1.8634178559295833e-05, 0.004917223937809467, 0.00012365241127554327, 4.237943721818738e-05, 0.00017242750618606806, 0.00014038177323527634, 0.0023138895630836487], [0.8503820896148682, 0.004731119144707918, 0.0057678669691085815, 0.05592240020632744, 0.06056181341409683, 0.017557615414261818, 0.0017805345123633742, 5.563851664192043e-05, 0.0012225237442180514, 7.857527816668153e-05, 6.276907242863672e-06, 6.2852877817931585e-06, 0.00010676040983526036, 5.278475146042183e-05, 3.7783367588417605e-05, 9.50717439991422e-05, 0.001634836895391345], [0.033895328640937805, 0.0010555146727710962, 0.0030241620261222124, 0.062069300562143326, 0.20510265231132507, 0.6801595091819763, 0.004191290121525526, 0.000631717499345541, 0.0039703440852463245, 2.7234320441493765e-05, 8.475791219098028e-06, 0.00015581303159706295, 0.00015729408187326044, 0.0011690135579556227, 5.669281381415203e-05, 0.00016572343884035945, 0.004159883130341768], [0.05470624938607216, 0.0019496014574542642, 0.0010779440635815263, 0.012869438156485558, 0.06390991806983948, 0.5245635509490967, 0.24727720022201538, 0.009119056165218353, 0.06429312378168106, 0.0023305239155888557, 0.0003047142818104476, 0.0001762459723977372, 0.0015969412634149194, 0.004433896392583847, 0.001325238379649818, 0.0010602757101878524, 0.009006074629724026], [0.8222008943557739, 0.0036109539214521646, 0.00017287030641455203, 0.0003112527774646878, 0.0014039340894669294, 0.0442749559879303, 0.07270245999097824, 0.00214636349119246, 0.05206447094678879, 0.0009648748091422021, 1.688771226326935e-05, 3.3469716527179116e-06, 1.0593680599413346e-05, 2.3963213607203215e-05, 1.704150599834975e-05, 2.8868830668216106e-06, 7.236194505821913e-05], [0.08589247614145279, 0.002521045971661806, 9.903813770506531e-05, 2.902046253439039e-05, 5.1632541726576164e-05, 0.001955093815922737, 0.013761550188064575, 0.007914502173662186, 0.8375268578529358, 0.044680897146463394, 0.004804521799087524, 6.054230107110925e-05, 8.418549987254664e-05, 7.166342402342707e-05, 2.625500928843394e-05, 6.972919891268248e-06, 0.0005136543768458068], [0.04499068856239319, 0.0022313909139484167, 5.856103962287307e-05, 8.88756949279923e-06, 5.031471573602175e-06, 7.308822387130931e-05, 0.0003000217257067561, 0.0006080602179281414, 0.30511003732681274, 0.6376030445098877, 0.007936270907521248, 0.0007638441165909171, 3.6301262298366055e-05, 1.1749708392017055e-05, 9.331100045528729e-06, 1.4653620610260987e-06, 0.00025222208932973444], [0.0602448396384716, 0.005734770558774471, 0.001047954079695046, 0.0003169375122524798, 1.9530880308593623e-05, 4.236752647557296e-05, 4.507845369516872e-05, 0.00014290698163677007, 0.11691242456436157, 0.6769182682037354, 0.12250786274671555, 0.004498713184148073, 0.010668106377124786, 0.0001167189548141323, 6.0324575315462425e-05, 1.2160943697381299e-05, 0.0007110754959285259], [0.13928642868995667, 0.0018911127699539065, 0.00031404936453327537, 0.0010929979616776109, 0.00011156240361742675, 8.815286128083244e-05, 1.8082988390233368e-05, 4.896871905657463e-05, 0.019383331760764122, 0.11752672493457794, 0.08858245611190796, 0.603805422782898, 0.026070117950439453, 0.0011725848307833076, 4.2478350223973393e-05, 5.8079381233255845e-06, 0.0005597656709142029], [0.8591821789741516, 0.0004334145924076438, 0.0007691459613852203, 0.004641552921384573, 0.00032690729130990803, 0.0001838502794271335, 6.091551313147647e-06, 5.274484010442393e-06, 0.0008562818984501064, 0.0011093392968177795, 0.0018167162779718637, 0.03265281021595001, 0.08163183182477951, 0.014997439458966255, 0.0003966383810620755, 3.467359783826396e-05, 0.0009558561723679304], [0.07389561831951141, 0.00020063506963197142, 0.00036372541217133403, 0.0016754217213019729, 0.00023393449373543262, 0.0005504963919520378, 0.00013764100731350482, 4.866508606937714e-05, 0.002255277009680867, 0.00013179796223994344, 0.0009575420408509672, 0.024181334301829338, 0.5397708415985107, 0.3449937105178833, 0.006616031285375357, 0.0003300385142210871, 0.003657291177660227], [0.2204533964395523, 0.0014500131364911795, 0.0001964420371223241, 0.00010653816570993513, 6.076391218812205e-05, 0.00023710961977485567, 3.652758459793404e-05, 2.269806464028079e-05, 0.0007382851326838136, 0.00014259836461860687, 2.0684687115135603e-05, 0.00023706506181042641, 0.019701587036252022, 0.6781007051467896, 0.060226570814847946, 0.002976943738758564, 0.015292058698832989], [0.9199901223182678, 0.008011292666196823, 0.0006773861241526902, 0.0002690139808692038, 0.0001248049666173756, 0.0004705950850620866, 0.00030268330010585487, 0.00012253946624696255, 0.0017638558056205511, 0.000359797035343945, 2.0281862816773355e-05, 2.8241032850928605e-05, 0.0002823210961651057, 0.007347555831074715, 0.015699291601777077, 0.008378030732274055, 0.036152441054582596]], [[0.9978406429290771, 0.00011925151920877397, 0.0016092193545773625, 0.00013301437138579786, 2.2027106751920655e-05, 5.232667535892688e-05, 2.5703395294840448e-05, 4.942137820762582e-05, 8.158062883012462e-06, 1.35425289045088e-05, 1.1349892474754597e-06, 2.4876499082893133e-05, 5.181487267691409e-06, 4.688846820499748e-05, 1.3019774087297264e-05, 3.3104165595432278e-06, 3.225059845135547e-05], [8.979030098998919e-06, 3.896623912424957e-09, 5.4202651256218815e-09, 2.543145442770057e-14, 1.101031903995818e-13, 2.0076509085840272e-13, 2.3550812341954774e-11, 2.934307657964652e-11, 0.9934830069541931, 4.8199296116824275e-12, 7.507496957003673e-14, 1.364648682684183e-13, 1.21502970445303e-12, 9.09517686858985e-12, 4.394645758409865e-11, 8.093931747705715e-14, 0.0065079620108008385], [4.1906554315573885e-07, 0.9999994039535522, 7.34803551338814e-09, 1.1345141714969031e-08, 3.385365035304334e-17, 6.2080984409716884e-15, 3.1602278138272037e-18, 3.0666432934700616e-12, 1.1275758105000477e-09, 1.3559458977852046e-07, 7.147400726825737e-11, 3.397338562815405e-13, 6.513183191430216e-15, 5.192420492765228e-17, 3.594293265796189e-12, 3.731144896084587e-14, 3.875924026175426e-10], [5.224077312959707e-07, 9.750529272878339e-09, 0.9999995231628418, 1.1000453881138128e-08, 2.6140032360899568e-09, 2.9892975907752455e-16, 2.1034500204575069e-16, 2.1213622526628732e-17, 1.2590438414061822e-10, 1.475635585945767e-12, 4.228627725755274e-10, 1.2593409821903823e-11, 5.000276722625513e-14, 1.238122140924359e-15, 6.925083878735194e-14, 9.1514862636706e-15, 2.93911339710462e-10], [4.6030545490793884e-05, 2.293247462148429e-06, 0.00037161048385314643, 0.9995773434638977, 2.250132183689857e-06, 4.6300823441924877e-07, 5.316659579699345e-16, 2.3741115478159887e-14, 7.435826428842053e-16, 1.0979859599649644e-12, 1.7454149375952877e-15, 3.145248950175983e-09, 1.821642100672486e-14, 1.6304959769494753e-12, 1.5849924030994804e-15, 5.612808259619281e-14, 3.4754887856536243e-09], [0.018579285591840744, 4.151894539977663e-12, 6.140186451375484e-05, 9.829395821725484e-06, 0.9812160134315491, 2.487194251443725e-05, 0.0001041195064317435, 5.1184369243006955e-11, 3.86299880972274e-09, 2.127676949459103e-17, 5.345292893206566e-15, 5.917247486268706e-13, 2.375515062436051e-10, 5.136434055863504e-10, 2.9389792682854576e-11, 8.277491647841473e-13, 4.442789759195875e-06], [0.00012907169002573937, 3.5032698245704257e-15, 1.1614941322103667e-13, 3.358269751174703e-08, 1.654805998896336e-07, 0.9998706579208374, 5.506277744871113e-08, 4.730205205305538e-08, 2.6334917728987465e-17, 2.3540642062779234e-17, 7.126719301338613e-25, 2.448989567402712e-16, 1.5626280863140067e-16, 1.6481727094230791e-10, 7.419276463843888e-16, 2.4820565094362135e-17, 5.739518544001189e-16], [7.92926311987685e-06, 4.2648854283247606e-15, 3.9308125846090544e-14, 1.0462367158335564e-14, 2.5681021753598543e-08, 6.90549359205761e-06, 0.999983549118042, 9.731803629620117e-07, 5.952467745373724e-07, 3.804324392265917e-15, 6.027423586935047e-17, 1.3984100368862222e-18, 1.7570112031961571e-12, 2.003625130392317e-12, 2.1574479702746174e-10, 7.453508771011579e-15, 4.912495323722288e-12], [0.0004670645284932107, 3.789615732330276e-09, 3.1329287580005027e-13, 4.771542929109425e-14, 2.4122488251012873e-15, 1.0435915100970306e-05, 8.471471664961427e-05, 0.9993988275527954, 3.6443841509026242e-06, 3.527200533426367e-05, 9.416418952511754e-17, 4.360459967411726e-15, 1.809690391671345e-16, 1.2652847519722954e-12, 1.009537180414466e-12, 1.8396963368926683e-13, 5.700012927341248e-15], [4.028221312069036e-09, 1.202604639136129e-12, 5.910990199777455e-15, 7.949550923721157e-24, 2.0833208137356815e-22, 2.415849996843477e-19, 1.5831309874148047e-10, 1.0074910683499638e-08, 0.9999998807907104, 1.615383666830894e-07, 1.190192722155814e-09, 1.7299311210874502e-20, 6.997273829999383e-18, 5.581980270214859e-22, 7.324843619290703e-15, 3.2802178063035334e-19, 9.522662606370469e-13], [9.274425671890185e-11, 9.278203205731472e-13, 1.9859090500534693e-12, 5.480665447994227e-20, 2.703900293551721e-27, 1.5144368390267484e-21, 1.143353135113929e-21, 1.096773886988256e-11, 9.49169276509565e-09, 1.0, 2.2638714514133795e-10, 3.048254981763421e-10, 1.5336042657574464e-21, 5.671920510829641e-21, 6.195612070538979e-22, 3.577947121378247e-20, 3.6804470777357844e-18], [4.601445198204601e-07, 1.4353030985958526e-09, 3.6727996644003724e-07, 1.6840390843972375e-12, 2.4918963191308993e-17, 1.0714103736119974e-20, 2.0580576757746107e-19, 9.888555117311301e-17, 5.2989868493114045e-08, 4.423784957907628e-06, 0.9999934434890747, 1.3396468148130225e-06, 8.184388278209553e-09, 9.511902892160588e-18, 8.20213173638798e-15, 6.785533817008679e-21, 2.9895818893371784e-12], [1.781740266437737e-08, 3.1141718994802435e-15, 3.094352329924277e-09, 9.614233020815988e-11, 1.4511063520499662e-14, 7.01376949886214e-16, 5.623298527462219e-20, 2.6621659888328972e-17, 6.566792991922904e-17, 2.1402211114462943e-09, 2.3257107351071227e-09, 0.9999998807907104, 1.085264216271753e-07, 1.4982251883566278e-08, 1.3446764504692265e-16, 2.0569484782719654e-19, 5.4941092267491395e-18], [1.9992752640973777e-05, 2.909532424016925e-13, 5.3876687833298575e-11, 2.260905240802913e-08, 2.989041902878853e-09, 7.952740896377541e-12, 4.779488436967849e-14, 5.2451502789652784e-17, 7.312851009186121e-16, 1.1709769921625633e-16, 1.7135370899978852e-10, 2.909276417994988e-06, 0.9999676942825317, 8.07928154245019e-06, 1.2562693427753402e-06, 8.65050026256669e-16, 1.073124054895569e-11], [1.1599305253184866e-05, 1.2786926262297639e-14, 2.75421300349743e-11, 1.9026799450219678e-13, 1.1895821784221883e-12, 6.454959483592759e-11, 4.586023401309536e-12, 9.211971463418678e-12, 5.12880831842643e-16, 1.4757607706391077e-14, 2.3657686051503956e-18, 1.2648217584398935e-08, 1.933645080498536e-06, 0.9999861717224121, 2.531755569634697e-07, 4.590228197542956e-10, 2.0696248873215174e-14], [6.81937308399938e-05, 2.973534266037525e-11, 1.0895241143744211e-13, 2.5913077785025837e-15, 1.2421710642913529e-15, 2.205678565139757e-12, 1.773802354998466e-10, 1.0491045532301513e-10, 1.1577308122595609e-12, 4.1619739427882377e-16, 7.44212949547887e-19, 2.283783632712968e-18, 3.6335732200853954e-09, 1.1618001281021861e-06, 0.9999302625656128, 3.769626744087873e-07, 2.6891315840771313e-08], [0.0007783960900269449, 3.822862026936491e-09, 3.6788537727261428e-06, 1.6344290504344272e-11, 5.106468091257976e-13, 1.0013295054234206e-10, 4.988924551252438e-11, 1.547768420095963e-07, 1.083850897920513e-09, 5.798336815132643e-07, 1.8211692868813287e-14, 9.820046685538042e-12, 9.017669965784292e-13, 2.7481069082568865e-06, 0.00014535938680637628, 0.9988910555839539, 0.00017812862643040717]], [[0.6867114305496216, 0.03072221577167511, 0.02288508228957653, 0.03828873857855797, 0.010716172866523266, 0.01141773909330368, 0.004283017944544554, 0.03079269640147686, 0.038320280611515045, 0.013301149010658264, 0.0077605461701750755, 0.013062524609267712, 0.012182185426354408, 0.021070564165711403, 0.007635727524757385, 0.010611308738589287, 0.04023851454257965], [0.9179489612579346, 0.01180310919880867, 0.010726666077971458, 0.020051773637533188, 0.0016027606325224042, 0.004612643271684647, 0.0002809829020407051, 0.0002525901945773512, 0.024664320051670074, 0.00020162669534329325, 0.0012812917120754719, 0.0029853179585188627, 0.0005285842344164848, 0.00023236988636199385, 0.0008858073852024972, 0.00021149087115190923, 0.0017296596197411418], [0.8211691379547119, 0.1309223175048828, 0.024959741160273552, 0.006833124440163374, 0.00022249194444157183, 0.001361209899187088, 6.993339047767222e-05, 0.0012610647827386856, 0.006858004257082939, 3.9932550862431526e-05, 3.187872425769456e-05, 7.340813317568973e-05, 7.717863627476618e-05, 2.593474528111983e-05, 0.002406905870884657, 2.8805574402213097e-05, 0.003658830188214779], [0.6250025033950806, 0.025590239092707634, 0.02464127726852894, 0.032638270407915115, 0.12564685940742493, 0.0638093426823616, 0.004042367916554213, 0.0011176529806107283, 0.07262792438268661, 0.0007836133008822799, 0.0019296242389827967, 0.0032756892032921314, 0.002491659950464964, 0.0004455614252947271, 0.00024836932425387204, 0.0004241968272253871, 0.015284932218492031], [0.10142362862825394, 0.015944037586450577, 0.0013855933211743832, 0.7803941369056702, 0.006138871423900127, 0.06482014805078506, 0.005172446835786104, 0.0024370690807700157, 0.011203977279365063, 0.0002616133715491742, 4.450437336345203e-05, 0.0017202859744429588, 0.0003087419318035245, 0.00047019548946991563, 0.00026256879209540784, 0.0014795943861827254, 0.006532443221658468], [0.6328158974647522, 0.002295407000929117, 0.008679562248289585, 0.006556634325534105, 0.06341486424207687, 0.001312406500801444, 0.11151009052991867, 0.013993396423757076, 0.1289055198431015, 0.00012364305439405143, 0.00030478736152872443, 8.412752504227683e-05, 0.00044975971104577184, 0.00020423531532287598, 0.0006169237312860787, 0.0003424381138756871, 0.028390269726514816], [0.030852865427732468, 0.00012281769886612892, 9.478269930696115e-05, 0.006045677233487368, 2.0646064513130113e-05, 0.9589614272117615, 3.609429040807299e-05, 0.0012943459441885352, 0.002023724839091301, 9.979544847737998e-05, 1.600839095772244e-05, 3.708043368533254e-05, 1.3899812074669171e-06, 1.0249133083561901e-05, 1.7678674339549616e-05, 1.8422400898998603e-05, 0.00034701148979365826], [0.13162577152252197, 0.0018182883504778147, 0.0007394116837531328, 0.0040082866325974464, 0.0031610361766070127, 0.033398039638996124, 0.031590502709150314, 0.022854074835777283, 0.7127038836479187, 0.029326019808650017, 0.006909247953444719, 0.0010558917419984937, 0.001110812765546143, 0.0002692130801733583, 0.0013846646761521697, 0.0005927095771767199, 0.017452197149395943], [0.8541693687438965, 0.0031623607501387596, 0.00033561396412551403, 0.0018735644407570362, 8.419633377343416e-05, 0.0016818540170788765, 0.000544621201697737, 0.025828152894973755, 0.10088209807872772, 0.00603360403329134, 0.002171572297811508, 0.0023209508508443832, 0.00017480627866461873, 3.198076956323348e-05, 1.4696759535581805e-05, 1.0519379429752007e-05, 0.0006798626272939146], [0.5440881252288818, 0.002226114273071289, 0.0004809642268810421, 0.0008448027074337006, 0.0015203584916889668, 3.912287138518877e-05, 0.016177812591195107, 0.003808376146480441, 0.2657618224620819, 0.008333654142916203, 0.1362420916557312, 0.010320399887859821, 0.007747404742985964, 0.0007216338999569416, 3.8542049878742546e-05, 2.5408138753846288e-05, 0.0016234160866588354], [0.45468011498451233, 0.001125458860769868, 9.822353604249656e-05, 0.0008718791068531573, 7.856896445446182e-06, 8.684596832608804e-05, 6.943345215404406e-05, 0.0007444634102284908, 0.07735700160264969, 0.36891835927963257, 0.0070504918694496155, 0.08684717118740082, 0.0007881558267399669, 0.0004438000323716551, 0.0002631079696584493, 8.639064617455006e-05, 0.0005612584645859897], [0.054494284093379974, 0.00015698189963586628, 0.0003893310495186597, 4.77485591545701e-05, 3.832458605756983e-05, 3.2978691706375685e-06, 3.5208902318117907e-06, 0.0001223939034389332, 0.005355996545404196, 0.0006238847854547203, 0.012749784626066685, 0.0008052944904193282, 0.9209931492805481, 0.0007772065000608563, 0.002841440960764885, 1.2346135008556303e-05, 0.0005850294837728143], [0.1705039143562317, 0.001200605765916407, 0.00021320053201634437, 0.00028567147091962397, 0.00032327102962881327, 0.00017610772920306772, 9.03454129002057e-05, 0.00015771057223901153, 0.002141034696251154, 0.0010794708505272865, 0.001194193260744214, 0.7603306770324707, 0.0014369402779266238, 0.05168207362294197, 0.004313220269978046, 0.003552077105268836, 0.0013194206403568387], [0.04980429634451866, 2.7052323275711387e-05, 0.00019509704725351185, 5.3726187616121024e-05, 6.828049663454294e-06, 1.8254033420816995e-05, 2.514758762117708e-06, 1.1881355021614581e-05, 0.00025059940526261926, 0.00022432715923059732, 5.080715345684439e-05, 0.00113384157884866, 0.0008250142564065754, 0.0022441083565354347, 0.9214968681335449, 0.00994529202580452, 0.013709497638046741], [0.09360872954130173, 9.496775419393089e-06, 0.00033224793151021004, 7.093108433764428e-05, 0.00012873514788225293, 6.449621287174523e-05, 9.584928920958191e-05, 3.930669481633231e-05, 7.742291199974716e-05, 3.6834146612818586e-06, 1.5239354979712516e-05, 0.0010560369119048119, 0.00017052976181730628, 0.8894801139831543, 0.0011918795062229037, 0.006346599198877811, 0.007308706175535917], [0.4327191412448883, 0.00019548767886590213, 0.00016073616279754788, 0.0006966596120037138, 0.001061582355760038, 0.0007304280297830701, 0.00014839984942227602, 5.163986133993603e-05, 0.001229947665706277, 2.6323972633690573e-05, 2.657203731359914e-05, 0.0001833403221098706, 0.002696598181501031, 0.003388036508113146, 0.004975316114723682, 0.005887418519705534, 0.5458222031593323], [0.8934411406517029, 0.00021064466272946447, 0.0003912361862603575, 0.0004131930763833225, 0.0001941204973263666, 0.00041724773473106325, 0.00017503774142824113, 0.0018019293202087283, 0.0008540275157429278, 3.493497206363827e-05, 1.9186065401299857e-05, 0.0002491232589818537, 0.00016850190877448767, 0.001038654358126223, 0.0015139169991016388, 0.00833853054791689, 0.09073840081691742]], [[0.9886454343795776, 0.0011779565829783678, 0.00030400737887248397, 0.00012165625230409205, 2.9719922167714685e-05, 0.000114607231807895, 0.00015266070840880275, 0.0002697186137083918, 0.002555631333962083, 5.1056675147265196e-05, 5.5865521062514745e-06, 4.5394292101264e-05, 5.57652092538774e-05, 0.00024598665186204016, 0.00025159225333482027, 6.50939327897504e-05, 0.0059081739746034145], [0.00012312506441958249, 2.2491219624498626e-06, 0.9998682737350464, 3.7476127090485534e-06, 1.1516051472426625e-06, 1.6988759010683196e-10, 4.189681934718692e-11, 5.6954840149670005e-11, 2.943820334166958e-07, 6.281051412315719e-08, 3.7893823900958523e-07, 6.439719868467364e-07, 2.0168966496925123e-09, 1.6085531795440033e-09, 1.2656582726311427e-10, 3.04882030732756e-09, 7.335481910786257e-08], [0.0019646044820547104, 1.8304528566659428e-05, 3.488785978333908e-06, 0.9979130625724792, 5.8246841945219785e-05, 2.2545918909600005e-05, 2.2775170638311693e-10, 6.466739643773423e-11, 2.0568549641275524e-10, 3.695548311810626e-10, 3.671797088600215e-08, 6.804237273172475e-06, 7.631212611158844e-06, 3.785282842727611e-08, 1.2182895581247521e-08, 4.082504299895984e-12, 5.236968718236312e-06], [0.0014229671796783805, 3.69457173188259e-11, 3.710270539158955e-05, 2.158892311854288e-05, 0.9980875849723816, 0.0003797092940658331, 2.448420309519861e-05, 1.357150086755965e-10, 1.4164611705780317e-09, 3.958717322726695e-15, 1.1113107829807678e-11, 8.269280016293123e-08, 1.0931212273135316e-05, 1.5374325812445022e-05, 1.5234522976470544e-08, 7.316957803538138e-12, 1.6359697596612932e-08], [0.00010283046867698431, 5.913301098781076e-11, 1.2800245238753227e-11, 9.958495866158046e-06, 1.0289192687196191e-05, 0.9997897744178772, 8.527067984687164e-05, 9.051705092133489e-07, 1.158867793393803e-11, 1.2823685798142581e-14, 1.2882969117960207e-17, 4.103716498560228e-12, 1.4342118603849485e-09, 9.564984111420927e-07, 1.5141912168559202e-09, 1.2919617632667357e-12, 1.3474682480918432e-10], [3.761385960387997e-05, 1.7626241178431146e-12, 5.928518960474083e-12, 1.2972305521441463e-12, 1.1677327194092868e-07, 1.5900121070444584e-05, 0.9999305009841919, 3.7730426356574753e-06, 1.2042067282891367e-05, 1.27425210682576e-13, 6.690619229704573e-15, 5.625537026058322e-16, 6.16997728949964e-12, 2.721539105188242e-10, 1.069576649470605e-09, 7.119462137883392e-12, 2.1790073911898133e-10], [5.474664067151025e-05, 3.172784701632736e-08, 4.725575399738835e-13, 4.002094228933162e-12, 4.103583792214316e-13, 0.0003697780193760991, 1.7827973351813853e-05, 0.9990984201431274, 0.0004525601107161492, 6.681837930955226e-06, 8.784787066079373e-15, 7.419378425434914e-15, 5.240268600450147e-14, 5.104410227829703e-10, 2.7146327408189563e-09, 1.6195658147921677e-09, 1.612212030543958e-09], [6.210646461113356e-06, 2.05234627514983e-07, 1.123528505786453e-07, 4.893497065894259e-12, 1.1849732306501437e-10, 2.0365622077633816e-08, 5.126334508531727e-05, 0.009265629574656487, 0.9870928525924683, 0.0035647419281303883, 1.7849451978690922e-05, 3.0845964671399884e-11, 6.780086908575456e-11, 2.4968964396077098e-11, 7.69648238474474e-08, 4.4828155409959436e-08, 1.0285099278917187e-06], [0.9257515668869019, 2.1175487745495047e-06, 1.5206325088001904e-06, 4.09737950235467e-08, 1.8180952349091534e-14, 1.0640440750719904e-09, 9.174758175412023e-12, 5.0516191549832e-06, 0.0008269921527244151, 0.07340732961893082, 6.836831971668289e-07, 4.149583219259512e-06, 1.4148986886633463e-12, 7.536693491516644e-12, 4.740169194661359e-12, 1.550774092473617e-11, 3.890842492637603e-07], [1.8508901575842174e-06, 2.19125206868398e-09, 1.6795565898064524e-05, 4.536809150579302e-09, 2.7801302926455662e-11, 3.343717616427922e-15, 1.422884271344571e-12, 3.5772039085231466e-13, 9.085576493816916e-06, 8.683572332301992e-07, 0.9999451637268066, 2.6155770683544688e-05, 1.4885438304190757e-07, 9.907500438544742e-14, 3.834627927690182e-12, 1.0071887510750173e-14, 1.7108680694377654e-08], [2.8517765713331755e-06, 4.181531856883858e-11, 3.278168207998533e-07, 1.257287465250556e-07, 6.659325868518806e-13, 1.7481118549239616e-12, 3.512389619863998e-18, 1.8118530764263396e-13, 2.7467795832986086e-12, 1.58328248289763e-06, 7.254570277837047e-07, 0.9999924898147583, 1.8362860600973363e-06, 7.260941004005872e-08, 8.790926022067894e-14, 4.011585095887809e-16, 1.305729070873174e-12], [1.3433592357614543e-05, 9.030181658854775e-13, 7.340586472004418e-10, 2.924488873290443e-09, 2.183284486534376e-08, 3.50359606778039e-12, 2.0744859823007555e-12, 5.561343892996826e-15, 7.704284259169025e-12, 5.834889371664339e-15, 9.12531206154199e-08, 4.6762429519731086e-06, 0.9999698400497437, 1.1746075870178174e-05, 1.2869058707565273e-07, 8.500858128148824e-16, 5.203892872174265e-11], [7.652844033145811e-06, 6.385651989820884e-12, 1.0935914673826375e-10, 1.7228612980701996e-10, 7.213994158983272e-12, 3.6203240405541237e-09, 6.669143969711966e-12, 4.3078252076611534e-10, 1.1984286176283665e-12, 3.90581664233558e-12, 7.16956723346594e-15, 5.807954721603892e-07, 1.4438900507229846e-05, 0.9999547004699707, 2.269754077133257e-05, 3.352676358758799e-08, 3.5850558632866125e-11], [0.001580658252350986, 1.1428853696759944e-10, 1.6795747084796808e-11, 2.48450513634646e-11, 2.938254917150829e-10, 2.7266062740949337e-09, 9.963819991298806e-08, 3.9182912470181464e-10, 2.169834312226726e-09, 2.3822000348359094e-14, 1.8689402510405767e-14, 1.1611832372374065e-12, 8.90751471160911e-06, 0.00099822913762182, 0.9974008798599243, 3.966835265600821e-06, 7.24479059499572e-06], [0.01810457557439804, 6.616645720214365e-08, 5.0183452913188376e-06, 2.132491339068565e-08, 8.615103075371167e-10, 1.1104132369155195e-07, 1.575727104352609e-08, 8.059056426645839e-07, 8.521518424231544e-08, 5.861375029780902e-08, 5.377814079471355e-13, 4.49807391333934e-09, 5.026326910240186e-09, 0.02058822102844715, 0.005779499653726816, 0.9524587392807007, 0.0030627641826868057], [0.0002292962744832039, 3.981947827025323e-10, 8.661012884658703e-08, 7.519721734183804e-09, 1.5828169885878651e-09, 2.20777884862855e-09, 1.6159351634570385e-10, 5.391893043160678e-10, 2.5385523017007472e-08, 1.093281645769828e-10, 2.876014704167318e-11, 6.462725862278751e-13, 1.7219453293804143e-11, 8.177224453120857e-10, 3.931522951461375e-05, 2.5519990231259726e-05, 0.9997057318687439], [0.9933745265007019, 2.431813431180707e-11, 3.42266503139399e-06, 7.352741135946417e-07, 1.4506482237663931e-08, 4.0371310205955524e-07, 3.690414085433247e-10, 2.0913482057238753e-09, 7.683404468217248e-10, 5.55042789507354e-10, 1.2906146420674225e-12, 1.5136542685922905e-07, 1.1890407929093794e-11, 6.337234736975006e-08, 1.3905949725057098e-09, 1.3694237566141965e-07, 0.006620652042329311]], [[0.8630772829055786, 0.009417934343218803, 0.023290077224373817, 0.011665173806250095, 0.004272020887583494, 0.008473897352814674, 0.006163272075355053, 0.024672338739037514, 0.007038861978799105, 0.0032842769287526608, 0.004253109451383352, 0.006838890723884106, 0.002599535509943962, 0.011256331577897072, 0.008555570617318153, 0.002235301537439227, 0.0029058922082185745], [0.3920648992061615, 0.052510641515254974, 0.09347162395715714, 0.05435951054096222, 0.012896507047116756, 0.029805241152644157, 0.029427027329802513, 0.1072259396314621, 0.07465437799692154, 0.04705985635519028, 0.043424081057310104, 0.0070302775129675865, 0.010759469121694565, 0.009716746397316456, 0.0157957524061203, 0.008702083490788937, 0.011095934547483921], [0.549708902835846, 0.020483342930674553, 0.001213102601468563, 0.0254861731082201, 0.023106595501303673, 0.08964689075946808, 0.02495274506509304, 0.05637064576148987, 0.08471304178237915, 0.006005365401506424, 0.002833570120856166, 0.021683407947421074, 0.007548775989562273, 0.04268113523721695, 0.018044063821434975, 0.006976840551942587, 0.018545404076576233], [0.5503023266792297, 0.030575549229979515, 0.026888040825724602, 0.019520802423357964, 0.013726988807320595, 0.035793207585811615, 0.032544586807489395, 0.14805740118026733, 0.07116218656301498, 0.012592713348567486, 0.0042679328471422195, 0.0068765124306082726, 0.005832963157445192, 0.01444137655198574, 0.01589852198958397, 0.004487735219299793, 0.007031257729977369], [0.45880764722824097, 0.030589710921049118, 0.02685512602329254, 0.014284702017903328, 0.009987078607082367, 0.16840608417987823, 0.05472039803862572, 0.08392486721277237, 0.0615713894367218, 0.025903776288032532, 0.0033701432403177023, 0.0076616848818957806, 0.010998652316629887, 0.012767758220434189, 0.02170509472489357, 0.0039957123808562756, 0.004450083244591951], [0.5898685455322266, 0.01875513419508934, 0.012980069033801556, 0.025802338495850563, 0.021997399628162384, 0.0052882228046655655, 0.037984080612659454, 0.1341247409582138, 0.09574691206216812, 0.0033742880914360285, 0.0042791469022631645, 0.004489787854254246, 0.004475981462746859, 0.0124308867380023, 0.018316278234124184, 0.003949243109673262, 0.0061368742026388645], [0.810656726360321, 0.011328445747494698, 0.006232826504856348, 0.006166239269077778, 0.005784434266388416, 0.017217343673110008, 0.0182981938123703, 0.04530853405594826, 0.03496453911066055, 0.01318723801523447, 0.0025726647581905127, 0.0038032219745218754, 0.0030547098722308874, 0.008291657082736492, 0.008166318759322166, 0.0016105305403470993, 0.0033563056495040655], [0.3907400667667389, 0.04912613704800606, 0.023248184472322464, 0.06526510417461395, 0.011706170625984669, 0.044962625950574875, 0.016534950584173203, 0.085541270673275, 0.12448907643556595, 0.02289278246462345, 0.019575482234358788, 0.030194755643606186, 0.012327072210609913, 0.025540387257933617, 0.027823053300380707, 0.018777035176753998, 0.03125588595867157], [0.8035562634468079, 0.012781054712831974, 0.024935845285654068, 0.01797124184668064, 0.007260740268975496, 0.030758274719119072, 0.014644631184637547, 0.04623901844024658, 0.018935518339276314, 0.0028259160462766886, 0.002181886462494731, 0.0034745356533676386, 0.002745936391875148, 0.004514575935900211, 0.004851344507187605, 0.001148574985563755, 0.001174572971649468], [0.2772272825241089, 0.018499623984098434, 0.006594883743673563, 0.005694271996617317, 0.004406025167554617, 0.00955114234238863, 0.00837589893490076, 0.20061449706554413, 0.04854036495089531, 0.012919547036290169, 0.03929435461759567, 0.05826476588845253, 0.024818187579512596, 0.01629597134888172, 0.05150747671723366, 0.06774308532476425, 0.1496526598930359], [0.11926595121622086, 0.009793884120881557, 0.01636076159775257, 0.03312721848487854, 0.0016426455695182085, 0.00883167702704668, 0.007008750922977924, 0.07547267526388168, 0.04695062339305878, 0.0369415283203125, 0.10659143328666687, 0.041053466498851776, 0.02049694024026394, 0.02732241153717041, 0.023360444232821465, 0.2281906008720398, 0.1975889503955841], [0.25112053751945496, 0.0043646590784192085, 0.007442587986588478, 0.01092055719345808, 0.0013913180446252227, 0.006583517417311668, 0.007620566058903933, 0.05494378134608269, 0.011677935719490051, 0.05883876234292984, 0.07948844134807587, 0.08321394771337509, 0.03127668797969818, 0.08211177587509155, 0.14281412959098816, 0.10061800479888916, 0.06557272374629974], [0.5414526462554932, 0.01744280755519867, 0.00881566945463419, 0.002870401134714484, 0.0020797024480998516, 0.013437996618449688, 0.018094586208462715, 0.08082153648138046, 0.03871343284845352, 0.024520857259631157, 0.03407527133822441, 0.04352911189198494, 0.00524491909891367, 0.016903532668948174, 0.04117078706622124, 0.021592337638139725, 0.08923429995775223], [0.5520836114883423, 0.009979329071938992, 0.03555531054735184, 0.01862558163702488, 0.004722306504845619, 0.006640487350523472, 0.011093690991401672, 0.04547552019357681, 0.015431882813572884, 0.0323222391307354, 0.0627950131893158, 0.029029030352830887, 0.024998832494020462, 0.015789857134222984, 0.041054617613554, 0.02850533463060856, 0.0658973753452301], [0.8022099733352661, 0.004681755322962999, 0.0013911783462390304, 0.004345548804849386, 0.0005341732176020741, 0.0030271909199655056, 0.0032198047265410423, 0.018615253269672394, 0.01314855832606554, 0.01037565153092146, 0.010216180235147476, 0.035438038408756256, 0.004374670330435038, 0.021702168509364128, 0.008919978514313698, 0.012024350464344025, 0.04577553644776344], [0.4718855321407318, 0.004046672489494085, 0.00351886753924191, 0.002074547577649355, 0.0004978472134098411, 0.001010275911539793, 0.0022205645218491554, 0.08876756578683853, 0.01454891636967659, 0.021205205470323563, 0.046378012746572495, 0.045198991894721985, 0.015986425802111626, 0.02271859720349312, 0.06791386753320694, 0.03636806085705757, 0.15566006302833557], [0.6865681409835815, 0.003424773458391428, 0.00630495510995388, 0.003833218477666378, 0.0011550461640581489, 0.0033491929061710835, 0.0034860004670917988, 0.03877848759293556, 0.004662151448428631, 0.018234021961688995, 0.023170528933405876, 0.03786152973771095, 0.02380889467895031, 0.030500659719109535, 0.05944862216711044, 0.0246978010982275, 0.030715957283973694]], [[0.5741932392120361, 0.012504521757364273, 0.0032251307275146246, 0.008242546580731869, 0.0012622808571904898, 0.001786747365258634, 0.003126392839476466, 0.053322870284318924, 0.026428010314702988, 0.008219636976718903, 0.023518644273281097, 0.04498233273625374, 0.010571406222879887, 0.016603585332632065, 0.026691682636737823, 0.050330497324466705, 0.13499043881893158], [0.20268955826759338, 0.08628605306148529, 0.05451688915491104, 0.09015201032161713, 0.045336656272411346, 0.02782316878437996, 0.0411144495010376, 0.10645437240600586, 0.19452407956123352, 0.008587893098592758, 0.033243097364902496, 0.016469962894916534, 0.005892107263207436, 0.008873704820871353, 0.014095144346356392, 0.02834934927523136, 0.03559156134724617], [0.3195413649082184, 0.051214396953582764, 0.014866630546748638, 0.0767570286989212, 0.025990968570113182, 0.028270505368709564, 0.025723908096551895, 0.11174130439758301, 0.15366213023662567, 0.007536351680755615, 0.01829458400607109, 0.04470610246062279, 0.017729828134179115, 0.02007473260164261, 0.02074720710515976, 0.017658770084381104, 0.04548421874642372], [0.3675423264503479, 0.0774235650897026, 0.03533709794282913, 0.014811630360782146, 0.035400137305259705, 0.09095746278762817, 0.049049243330955505, 0.03926897421479225, 0.15405672788619995, 0.006111237220466137, 0.015658603981137276, 0.01747303269803524, 0.01916801743209362, 0.023795347660779953, 0.022851433604955673, 0.0030534700490534306, 0.02804175205528736], [0.6945473551750183, 0.0503956563770771, 0.010528292506933212, 0.022740384563803673, 0.007032043766230345, 0.020692061632871628, 0.012314744293689728, 0.019432220607995987, 0.11901033669710159, 0.002985910512506962, 0.003830861998721957, 0.005278422962874174, 0.006301358807832003, 0.0023673754185438156, 0.007373325526714325, 0.0015319056110456586, 0.013637778349220753], [0.3998269736766815, 0.12892471253871918, 0.011652396060526371, 0.16042250394821167, 0.03744393214583397, 0.010028867051005363, 0.021646952256560326, 0.04304993897676468, 0.11173513531684875, 0.01357713621109724, 0.00540901068598032, 0.015569718554615974, 0.005956452339887619, 0.0009468344505876303, 0.0038878561463207006, 0.015587719157338142, 0.01433385070413351], [0.7311561107635498, 0.05060664191842079, 0.002645167987793684, 0.01531821396201849, 0.002850837307050824, 0.005628698039799929, 0.0022328824270516634, 0.06881626695394516, 0.08304977416992188, 0.002250721212476492, 0.00232191220857203, 0.008067918010056019, 0.000833215017337352, 0.0005995264509692788, 0.004286202136427164, 0.0019492965657263994, 0.01738661341369152], [0.8169430494308472, 0.020087622106075287, 0.0022841242607682943, 0.011465916410088539, 0.0016324989264830947, 0.001390981487929821, 0.004851995967328548, 0.03758576884865761, 0.06289665400981903, 0.0023080070968717337, 0.0048829419538378716, 0.007877598516643047, 0.0034686748404055834, 0.0005604965263046324, 0.003596033900976181, 0.003210047259926796, 0.014957590959966183], [0.6632129549980164, 0.05847909674048424, 0.002494317013770342, 0.009768658317625523, 0.002031132346019149, 0.002338845981284976, 0.010559553280472755, 0.17106842994689941, 0.04927026852965355, 0.0006172613357193768, 0.0017056178767234087, 0.007440407760441303, 0.0018978295847773552, 0.0005519973929040134, 0.005243014544248581, 0.0032876520417630672, 0.01003282330930233], [0.16094478964805603, 0.00748651335015893, 0.007378927897661924, 0.008781597949564457, 0.0065528214909136295, 0.0027143454644829035, 0.007923530414700508, 0.01616482064127922, 0.04190852865576744, 0.010545618832111359, 0.11055044084787369, 0.11459872871637344, 0.09084811806678772, 0.011741390451788902, 0.06833772361278534, 0.05536438152194023, 0.2781578004360199], [0.026192594319581985, 0.013724654912948608, 0.022249190136790276, 0.0027842477429658175, 0.0033832727931439877, 0.02037051133811474, 0.008052701130509377, 0.01027065608650446, 0.032563187181949615, 0.017691710963845253, 0.2830744683742523, 0.047081612050533295, 0.008216802962124348, 0.07539959251880646, 0.09133248776197433, 0.09005158394575119, 0.24756070971488953], [0.4662875533103943, 0.008070702664554119, 0.0023745433427393436, 0.0030211512930691242, 0.0015193852595984936, 0.003101447131484747, 0.003250443609431386, 0.01653403602540493, 0.01975741982460022, 0.018577340990304947, 0.057349395006895065, 0.04241904988884926, 0.04069127142429352, 0.03419868275523186, 0.04333440959453583, 0.03803611919283867, 0.2014770358800888], [0.3830494284629822, 0.021092059090733528, 0.006160008255392313, 0.01472031231969595, 0.005040530581027269, 0.014023304916918278, 0.004884559661149979, 0.023080378770828247, 0.03539381921291351, 0.04051860421895981, 0.024517381563782692, 0.07320301979780197, 0.01678163930773735, 0.037979718297719955, 0.07490969449281693, 0.05666041374206543, 0.16798508167266846], [0.5306687355041504, 0.010774489492177963, 0.002410204615443945, 0.006903544533997774, 0.0037025348283350468, 0.006171224173158407, 0.0035918622743338346, 0.031854502856731415, 0.029176101088523865, 0.01521233655512333, 0.05001373961567879, 0.05131158605217934, 0.026519812643527985, 0.004878588952124119, 0.03188614174723625, 0.018365615978837013, 0.17655903100967407], [0.6199820041656494, 0.013295439071953297, 0.004271314013749361, 0.005349303130060434, 0.0022974428720772266, 0.002429089741781354, 0.006736415904015303, 0.05976027995347977, 0.018455782905220985, 0.013699924573302269, 0.03175954893231392, 0.08787105232477188, 0.03301326557993889, 0.015318159013986588, 0.013956508599221706, 0.005432327277958393, 0.06637221574783325], [0.15816448628902435, 0.013517145998775959, 0.006362810265272856, 0.0011450161691755056, 0.0023240549489855766, 0.01284533180296421, 0.008271090686321259, 0.011708036996424198, 0.01966729760169983, 0.020595623180270195, 0.1772778034210205, 0.12107231467962265, 0.0669911801815033, 0.10927382856607437, 0.12395750731229782, 0.005718687083572149, 0.14110778272151947], [0.6879887580871582, 0.006788651458919048, 0.00042258354369550943, 0.0009651940781623125, 0.00018285839178133756, 0.00029145751614123583, 0.0017378886695951223, 0.05891162157058716, 0.011072656139731407, 0.0024355612695217133, 0.009591028094291687, 0.055832333862781525, 0.00789013970643282, 0.003163659945130348, 0.024065982550382614, 0.01920158974826336, 0.10945805162191391]], [[0.8776012659072876, 0.00662739435210824, 0.010952865704894066, 0.018764959648251534, 0.0007523531094193459, 0.0034415407571941614, 0.003725002519786358, 0.02912301942706108, 0.02777864597737789, 0.001914686756208539, 0.0032124517019838095, 0.0017763579962775111, 0.000871374795679003, 0.002051367424428463, 0.0025103408843278885, 0.0015429703053086996, 0.007353329565376043], [0.25119268894195557, 0.0333518423140049, 0.02163023129105568, 0.16566267609596252, 0.01169008668512106, 0.015552700497210026, 0.008446073159575462, 0.2172682136297226, 0.10930515825748444, 0.01435747742652893, 0.05421922728419304, 0.02296730875968933, 0.02153152972459793, 0.0068146781995892525, 0.010145852342247963, 0.009537152014672756, 0.026327045634388924], [0.6220285296440125, 0.02608654648065567, 0.01771676167845726, 0.08517983555793762, 0.024062316864728928, 0.01849222742021084, 0.013419565744698048, 0.03866398707032204, 0.05563565716147423, 0.0010692670475691557, 0.008543822914361954, 0.03143540397286415, 0.005866530351340771, 0.008571469224989414, 0.020987262949347496, 0.007115433923900127, 0.015125509351491928], [0.07823210954666138, 0.04072333127260208, 0.004590645432472229, 0.1454194188117981, 0.007617459166795015, 0.019016485661268234, 0.008790089748799801, 0.09965246170759201, 0.1428917795419693, 0.0385059155523777, 0.19105876982212067, 0.02594279870390892, 0.006845252588391304, 0.007760895416140556, 0.007776272017508745, 0.1252707540988922, 0.04990566149353981], [0.2561625838279724, 0.07746205478906631, 0.00812583975493908, 0.03874392807483673, 0.0030905823223292828, 0.012665940448641777, 0.00525591941550374, 0.17169280350208282, 0.30743277072906494, 0.008990831673145294, 0.04920628294348717, 0.007357138209044933, 0.0024497273843735456, 0.0008408415596932173, 0.002509200247004628, 0.0045184604823589325, 0.04349511116743088], [0.3294699192047119, 0.06063373386859894, 0.019198186695575714, 0.06185320392251015, 0.010971380397677422, 0.00912288948893547, 0.011579442769289017, 0.08766274899244308, 0.2896593511104584, 0.0032091380562633276, 0.0656164288520813, 0.00411161407828331, 0.003682821523398161, 0.0010671907803043723, 0.0027477291878312826, 0.0019078386249020696, 0.03750643879175186], [0.4176972508430481, 0.0192489642649889, 0.009520499967038631, 0.030035965144634247, 0.004126968793570995, 0.00760663254186511, 0.003234869334846735, 0.13726726174354553, 0.20067276060581207, 0.003377969842404127, 0.05162574723362923, 0.022239336743950844, 0.003773950506001711, 0.0024406807497143745, 0.005954192019999027, 0.004451571963727474, 0.07672533392906189], [0.16225913166999817, 0.05023084953427315, 0.009315179660916328, 0.09372425824403763, 0.035310257226228714, 0.017323270440101624, 0.0196775421500206, 0.26553502678871155, 0.08117852360010147, 0.04301990941166878, 0.036015741527080536, 0.024799132719635963, 0.05605807527899742, 0.01838778145611286, 0.03537435829639435, 0.019140124320983887, 0.032650768756866455], [0.7915427088737488, 0.006852870341390371, 0.003815377363935113, 0.020265713334083557, 0.0007379118469543755, 0.002701258985325694, 0.0016143325483426452, 0.11479590088129044, 0.030341999605298042, 0.0035393075086176395, 0.00794365257024765, 0.0013714618980884552, 0.0011070661712437868, 0.001627924619242549, 0.00333821726962924, 0.0017490566242486238, 0.00665521202608943], [0.18424901366233826, 0.032660216093063354, 0.001610534847714007, 0.037450630217790604, 0.005117237102240324, 0.007694576401263475, 0.0043250881135463715, 0.18914370238780975, 0.08759146183729172, 0.018523186445236206, 0.2292221188545227, 0.024372251704335213, 0.019012661650776863, 0.010590841993689537, 0.008312288671731949, 0.040300317108631134, 0.0998239517211914], [0.27753785252571106, 0.011008027009665966, 0.006587690208107233, 0.07437366247177124, 0.004310634918510914, 0.001986040035262704, 0.003545790910720825, 0.13499712944030762, 0.07163666188716888, 0.05909854546189308, 0.053116004914045334, 0.05388970673084259, 0.017586898058652878, 0.005337381269782782, 0.01151321828365326, 0.06378660351037979, 0.14968818426132202], [0.34596556425094604, 0.013450653292238712, 0.0028331198263913393, 0.008632787503302097, 0.0009093458065763116, 0.002470043720677495, 0.0037378643173724413, 0.05057791993021965, 0.07203326374292374, 0.010891157202422619, 0.11645850539207458, 0.05118606239557266, 0.009040330536663532, 0.013287249021232128, 0.00977716688066721, 0.02126220427453518, 0.2674867808818817], [0.49361008405685425, 0.014012736268341541, 0.002963628154247999, 0.002339404309168458, 0.0002618416037876159, 0.0020891716703772545, 0.0004461451608221978, 0.048211365938186646, 0.09939205646514893, 0.007201544474810362, 0.049710649996995926, 0.012938178144395351, 0.0016245770966634154, 0.00184776505921036, 0.00574436504393816, 0.006187069229781628, 0.2514195144176483], [0.6466578841209412, 0.022861506789922714, 0.0025711418129503727, 0.005744633264839649, 0.0004050146380905062, 0.0008056352380663157, 0.0021389066241681576, 0.01559662725776434, 0.0623030923306942, 0.002340165199711919, 0.048181820660829544, 0.01722092181444168, 0.002311774529516697, 0.0007722843438386917, 0.006738431751728058, 0.0065169264562428, 0.15683335065841675], [0.9146207571029663, 0.004662979394197464, 0.0035277309361845255, 0.0004554034094326198, 3.6263110814616084e-05, 0.000576634774915874, 0.00046026718337088823, 0.01739397458732128, 0.011538085527718067, 0.0004840571782551706, 0.011648942716419697, 0.003326687728986144, 0.0012034180108457804, 0.0019723689183592796, 0.0024822023697197437, 0.00037819697172380984, 0.025231916457414627], [0.06585510075092316, 0.003417092375457287, 0.000556586601305753, 0.03965763747692108, 0.0020394448656588793, 0.001654840656556189, 0.0034783778246492147, 0.10150887817144394, 0.0511421374976635, 0.049500998109579086, 0.2559291422367096, 0.09452560544013977, 0.037460122257471085, 0.024754220619797707, 0.018473124131560326, 0.057586729526519775, 0.19246000051498413], [0.7843999862670898, 0.002134111011400819, 0.0014758622273802757, 0.005656109191477299, 0.000305965164443478, 0.000720208918210119, 0.0008353911689482629, 0.06391479074954987, 0.016644706949591637, 0.014945917762815952, 0.02131113037467003, 0.005655888468027115, 0.0034914505667984486, 0.0072882394306361675, 0.01481031533330679, 0.008134969510138035, 0.04827490448951721]], [[0.8576313257217407, 0.0035589467734098434, 0.0023343702778220177, 0.011643779464066029, 0.0023435167968273163, 0.0009843561565503478, 0.004606286529451609, 0.0310975369066, 0.014209676533937454, 0.0026605057064443827, 0.009000306017696857, 0.01042757648974657, 0.005360001232475042, 0.010293062776327133, 0.0031872615218162537, 0.008197681978344917, 0.02246376872062683], [0.8489042520523071, 0.004750748630613089, 0.0015615337761119008, 0.07200687378644943, 0.006777613889425993, 0.001286262646317482, 0.003625889541581273, 0.033543311059474945, 0.012470915913581848, 0.000747190264519304, 0.002796000335365534, 0.002933111973106861, 0.0009169327677227557, 0.0008911656332202256, 0.00020687858341261744, 0.004317204933613539, 0.002263969974592328], [0.7480865716934204, 0.032843753695487976, 0.010309809818863869, 0.004586915951222181, 0.011372610926628113, 0.002150770276784897, 0.00414713378995657, 0.054756972938776016, 0.07125963270664215, 0.005582462530583143, 0.002373775467276573, 0.0020448798313736916, 0.0013284224551171064, 0.01117971446365118, 0.014428600668907166, 0.001823707134462893, 0.021724402904510498], [0.7276181578636169, 0.016752418130636215, 0.003972754348069429, 0.0015012893127277493, 0.03757693991065025, 0.038614653050899506, 0.019139813259243965, 0.05786258727312088, 0.040642306208610535, 0.0009828616166487336, 0.007196398451924324, 0.019254416227340698, 0.010812829248607159, 0.005125744733959436, 0.004715250805020332, 0.0012710698647424579, 0.0069603631272912025], [0.6681697368621826, 0.007104968652129173, 0.007620250806212425, 0.10908336192369461, 0.0011078156530857086, 0.1432497352361679, 0.0020194146782159805, 0.020140277221798897, 0.019400393590331078, 0.0006289963494054973, 0.0005470628966577351, 0.0010945165995508432, 0.001985864946618676, 0.001582885510288179, 0.0023982792627066374, 0.011197861284017563, 0.0026686417404562235], [0.6687548756599426, 0.005474054720252752, 0.0038148353341966867, 0.016389863565564156, 0.004948354326188564, 0.0005677415756508708, 0.23476062715053558, 0.03413522616028786, 0.0206003375351429, 0.001731404336169362, 0.0013607572764158249, 0.0005741699715144932, 0.0009447954944334924, 0.002901238389313221, 0.0007564186817035079, 0.00022216420620679855, 0.002063155872747302], [0.7011111974716187, 0.004106187727302313, 0.0019048100803047419, 0.006826437544077635, 0.00035246365587227046, 0.18927736580371857, 0.000133782290504314, 0.01854376681149006, 0.05831955000758171, 0.0016027692472562194, 0.00048173958202823997, 0.00042119232239201665, 0.0005566726322285831, 0.0034372766967862844, 0.0009736423962749541, 0.0003709353331942111, 0.011580321937799454], [0.7954146265983582, 0.009297670796513557, 0.0054098195396363735, 0.01658659242093563, 0.006253013852983713, 0.0019941539503633976, 0.030341122299432755, 0.04850636422634125, 0.0278739295899868, 0.0051125953905284405, 0.0073864213190972805, 0.009928753599524498, 0.015728585422039032, 0.007736681029200554, 0.002530696103349328, 0.004698095843195915, 0.005200940649956465], [0.9561313390731812, 0.0008841339149512351, 0.0004002015630248934, 0.002304780762642622, 0.00020183758169878274, 9.033607057062909e-05, 0.0011839112266898155, 0.019468409940600395, 0.011608057655394077, 0.00035967526491731405, 0.001262657344341278, 0.0012706874404102564, 0.0008979036938399076, 0.0009642917430028319, 0.00011343483492964879, 0.00038954554474912584, 0.0024687419645488262], [0.8086466193199158, 0.0018076999112963676, 0.0026719255838543177, 0.005714831408113241, 0.004672871436923742, 0.008148260414600372, 0.002197334775701165, 0.04261137917637825, 0.019266145303845406, 0.000403700047172606, 0.02434423379600048, 0.007482303772121668, 0.008064993657171726, 0.017821308225393295, 0.004434784408658743, 0.0186977069824934, 0.02301398105919361], [0.6064297556877136, 0.0015887290937826037, 0.000828389311209321, 0.05019272863864899, 0.0010525919497013092, 0.0038572647608816624, 0.0011728303506970406, 0.04813549295067787, 0.0318947434425354, 0.014875762164592743, 0.0029208455234766006, 0.01893950253725052, 0.0057894461788237095, 0.005113658029586077, 0.01368883065879345, 0.13799335062503815, 0.05552607774734497], [0.3405577838420868, 0.004098796751350164, 0.004238568712025881, 0.03632776439189911, 0.002307007322087884, 0.014611685648560524, 0.007300506345927715, 0.05870509892702103, 0.02840389870107174, 0.0657443106174469, 0.02394588105380535, 0.0008405373664572835, 0.09982885420322418, 0.025732532143592834, 0.013917254284024239, 0.20898152887821198, 0.0644579753279686], [0.2727213203907013, 0.0013750094221904874, 0.000548491021618247, 0.0075427331030368805, 0.011776926927268505, 0.017849700525403023, 0.005563509184867144, 0.016161516308784485, 0.017250923439860344, 0.007373419124633074, 0.0034782993607223034, 0.05577393248677254, 0.007277036085724831, 0.010300948284566402, 0.07283075153827667, 0.461722731590271, 0.03045269474387169], [0.017791414633393288, 6.897769344504923e-05, 0.00028609062428586185, 1.345938380836742e-05, 4.6272616600617766e-05, 4.5617958676302806e-05, 0.0002721014025155455, 0.0011928243329748511, 0.0016312560765072703, 0.00018967319920193404, 0.000623972387984395, 0.0014647259376943111, 0.0023989758919924498, 2.5030429242178798e-05, 0.9709601402282715, 8.178821735782549e-05, 0.0029077206272631884], [0.043708283454179764, 6.214966560946777e-05, 0.00013578722428064793, 0.0006393397343344986, 3.555925650289282e-05, 3.491224197205156e-05, 9.225129178958014e-05, 0.002938215620815754, 0.0009116427390836179, 0.00023621173750143498, 0.00020486157154664397, 0.0003908589715138078, 7.04294943716377e-05, 0.9395917057991028, 1.505894852016354e-05, 0.008266828954219818, 0.00266584986820817], [0.4000444710254669, 0.0009383959113620222, 0.0004060991923324764, 0.0021434330847114325, 0.005039292387664318, 0.001639435300603509, 0.0036752354353666306, 0.04843703657388687, 0.015555567108094692, 0.002455744193866849, 0.023927772417664528, 0.03450984135270119, 0.150416299700737, 0.00659153051674366, 0.23078298568725586, 0.0025820424780249596, 0.07085484266281128], [0.9490056037902832, 0.00023433785827364773, 0.00012116568541387096, 0.0005305696395225823, 5.323494042386301e-05, 2.215595122834202e-05, 0.0002171236847061664, 0.009182914160192013, 0.004246760159730911, 0.0007433689315803349, 0.0029321876354515553, 0.00365649932064116, 0.0028904969803988934, 0.0029285966884344816, 0.0006135914591141045, 0.002952106297016144, 0.0196691881865263]], [[0.3735335171222687, 0.038137149065732956, 0.03146331384778023, 0.028175292536616325, 0.0326337032020092, 0.05052849277853966, 0.013374547474086285, 0.04622263461351395, 0.13894814252853394, 0.0477592758834362, 0.024808010086417198, 0.029793299734592438, 0.01637670025229454, 0.013817003928124905, 0.0061633531004190445, 0.012795994058251381, 0.09546954929828644], [0.22967460751533508, 0.034670423716306686, 0.041244275867938995, 0.04330058395862579, 0.04595201462507248, 0.022269340232014656, 0.02730032242834568, 0.0400838665664196, 0.1635829210281372, 0.01997598260641098, 0.019254615530371666, 0.02283354476094246, 0.015857456251978874, 0.02877051569521427, 0.024520542472600937, 0.029684290289878845, 0.19102467596530914], [0.45324236154556274, 0.03315805271267891, 0.006221025716513395, 0.02173622138798237, 0.00608855253085494, 0.00733786029741168, 0.012667971663177013, 0.06111518666148186, 0.08922546356916428, 0.005172321107238531, 0.05202239379286766, 0.0599580779671669, 0.0017671817913651466, 0.01614348217844963, 0.014242874458432198, 0.018999941647052765, 0.14090104401111603], [0.16107189655303955, 0.020354239270091057, 0.039148855954408646, 0.04595628380775452, 0.07263963669538498, 0.034465864300727844, 0.040672462433576584, 0.017364749684929848, 0.2517130970954895, 0.013882714323699474, 0.03836634010076523, 0.032069891691207886, 0.004672692157328129, 0.010478120297193527, 0.0032568827737122774, 0.022733552381396294, 0.19115287065505981], [0.2829039990901947, 0.05327393114566803, 0.014372805133461952, 0.026191797107458115, 0.023442428559064865, 0.013819298706948757, 0.015427010133862495, 0.04461078345775604, 0.2218894064426422, 0.00625128298997879, 0.026458971202373505, 0.023577969521284103, 0.008739727549254894, 0.01095854677259922, 0.020010443404316902, 0.011110113933682442, 0.19696158170700073], [0.2120259702205658, 0.02644788846373558, 0.021377813071012497, 0.02652422897517681, 0.017786791548132896, 0.0036319836508482695, 0.0227498859167099, 0.07672607898712158, 0.1642524152994156, 0.004436826799064875, 0.03852701932191849, 0.08026958256959915, 0.005283876322209835, 0.03645509108901024, 0.040931928902864456, 0.01553935743868351, 0.20703327655792236], [0.5835537314414978, 0.014582430012524128, 0.0017409727443009615, 0.0056937201879918575, 0.0018474537646397948, 0.0006850791978649795, 0.001000245800241828, 0.024731658399105072, 0.16851060092449188, 0.0003048207436222583, 0.006129890214651823, 0.003425778355449438, 0.001119274995289743, 0.004436238668859005, 0.0029371757991611958, 0.00416212622076273, 0.17513884603977203], [0.3185100555419922, 0.022960592061281204, 0.012767384760081768, 0.020211584866046906, 0.00849288422614336, 0.008760292083024979, 0.009923161938786507, 0.1465807855129242, 0.11985625326633453, 0.03225841745734215, 0.013813583180308342, 0.02071741595864296, 0.01739857718348503, 0.024038037285208702, 0.04033084586262703, 0.029226355254650116, 0.15415368974208832], [0.20566314458847046, 0.024741927161812782, 0.06761927902698517, 0.028798935934901237, 0.04770471900701523, 0.05940704420208931, 0.048026882112026215, 0.08339041471481323, 0.08626167476177216, 0.052099354565143585, 0.025296296924352646, 0.040977224707603455, 0.03595142066478729, 0.044560398906469345, 0.024285128340125084, 0.019443849101662636, 0.10577233135700226], [0.2313961684703827, 0.01849144510924816, 0.001922601368278265, 0.0031502151396125555, 0.008005749434232712, 0.0010638654930517077, 0.0037781281862407923, 0.008075609803199768, 0.40555480122566223, 5.1496841479092836e-05, 0.007824732922017574, 0.005259424448013306, 0.00016169581795111299, 0.0013910997658967972, 0.0010987307177856565, 0.001134963589720428, 0.30163922905921936], [0.2717990279197693, 0.033821798861026764, 0.006114346440881491, 0.024118369445204735, 0.04741643741726875, 0.014171111397445202, 0.028722183778882027, 0.024612363427877426, 0.24613437056541443, 0.003626033430919051, 0.020228257402777672, 0.0609300434589386, 0.0023989735636860132, 0.005765880458056927, 0.0017772174905985594, 0.008502776734530926, 0.19986100494861603], [0.5097821950912476, 0.04205074533820152, 0.006268296390771866, 0.004365711472928524, 0.007546967826783657, 0.0015135875437408686, 0.009226033464074135, 0.041420575231313705, 0.14671842753887177, 0.0005887121078558266, 0.016627438366413116, 0.017559845000505447, 0.0018705057445913553, 0.00572785921394825, 0.005324434954673052, 0.004192609805613756, 0.17921604216098785], [0.39675262570381165, 0.03287053853273392, 0.004070722032338381, 0.006185806356370449, 0.00849553756415844, 0.0018438195111230016, 0.006622432731091976, 0.01594984158873558, 0.22853876650333405, 0.00048001937102526426, 0.016649842262268066, 0.0107956537976861, 0.001416697516106069, 0.0062671834602952, 0.007340200245380402, 0.004741515498608351, 0.25097888708114624], [0.6560561656951904, 0.05533412843942642, 0.009237045422196388, 0.0037865994963794947, 0.0016252470668405294, 0.001150193391367793, 0.009355983696877956, 0.11712469905614853, 0.0406353659927845, 0.00027285455144010484, 0.010511644184589386, 0.015787869691848755, 0.0010111783631145954, 0.005062878597527742, 0.01514750998467207, 0.004822652321308851, 0.05307795852422714], [0.7575200796127319, 0.042246654629707336, 0.004704935010522604, 0.0019006738439202309, 0.0017903491389006376, 0.0011083963327109814, 0.0017711218679323792, 0.024275122210383415, 0.0655762329697609, 5.6375069107161835e-05, 0.007412794977426529, 0.003333469619974494, 0.0002909736940637231, 0.002818548120558262, 0.0018469386268407106, 0.001622440293431282, 0.08172480762004852], [0.3511054217815399, 0.04247633367776871, 0.020423196256160736, 0.026353580877184868, 0.040917955338954926, 0.014872226864099503, 0.021964456886053085, 0.016227558255195618, 0.2207026481628418, 0.0009688992868177593, 0.033865757286548615, 0.021851586177945137, 0.0020046941936016083, 0.007328392472118139, 0.0027511417865753174, 0.010170768946409225, 0.1660153567790985], [0.25313547253608704, 0.03037654422223568, 0.05789206176996231, 0.021365966647863388, 0.028907455503940582, 0.027612630277872086, 0.03802206739783287, 0.11806131154298782, 0.06643538922071457, 0.02784380130469799, 0.03212764859199524, 0.06105039641261101, 0.022889504209160805, 0.05149906128644943, 0.03397819399833679, 0.02152746357023716, 0.10727506130933762]], [[0.07105383276939392, 0.012199198827147484, 0.0025606751441955566, 0.014098068699240685, 0.008684908971190453, 0.006134395487606525, 0.0025567002594470978, 0.02494713105261326, 0.2922031283378601, 0.018601419404149055, 0.01195479929447174, 0.017571862787008286, 0.03227439522743225, 0.014315432868897915, 0.009152935817837715, 0.019747136160731316, 0.44194403290748596], [0.08587107807397842, 0.12017085403203964, 0.016761885955929756, 0.04377687722444534, 0.07643292844295502, 0.09050150215625763, 0.012779103592038155, 0.08882007002830505, 0.2766035795211792, 0.06306277960538864, 0.009938867762684822, 0.027706030756235123, 0.014983905479311943, 0.010762662626802921, 0.00418244069442153, 0.005504508037120104, 0.052140891551971436], [0.2587868571281433, 0.04579025134444237, 0.08576206117868423, 0.021298151463270187, 0.09947577118873596, 0.12108191102743149, 0.05031105875968933, 0.04778400808572769, 0.0487239807844162, 0.04223991930484772, 0.008862549439072609, 0.034561045467853546, 0.04788665845990181, 0.03858169913291931, 0.030462663620710373, 0.004667768720537424, 0.013723610900342464], [0.12059859931468964, 0.1198631227016449, 0.05578691139817238, 0.04377533495426178, 0.08134181797504425, 0.07904281467199326, 0.04682939872145653, 0.1108696460723877, 0.17096678912639618, 0.01799362152814865, 0.03737979754805565, 0.02985372766852379, 0.017130425199866295, 0.02200266160070896, 0.01299415621906519, 0.006473066285252571, 0.02709820866584778], [0.5149787068367004, 0.05842049419879913, 0.008388128131628036, 0.02404666878283024, 0.019166626036167145, 0.015623842366039753, 0.026531415060162544, 0.11565623432397842, 0.15655408799648285, 0.010565543547272682, 0.00266649154946208, 0.006114508491009474, 0.007601200602948666, 0.007083969656378031, 0.0029878446366637945, 0.002527581760659814, 0.02108660526573658], [0.3521033525466919, 0.056938089430332184, 0.03832908347249031, 0.04835940897464752, 0.04904603585600853, 0.0739038959145546, 0.019523030146956444, 0.0829160213470459, 0.15739896893501282, 0.03231349214911461, 0.004474566783756018, 0.00917704775929451, 0.014867352321743965, 0.022781047970056534, 0.007837261073291302, 0.004463817458599806, 0.025567548349499702], [0.7653680443763733, 0.030797362327575684, 0.007287879008799791, 0.018698200583457947, 0.011425950564444065, 0.00856215599924326, 0.009349917992949486, 0.03901175409555435, 0.06177561730146408, 0.003178230719640851, 0.0034053113777190447, 0.0029300337191671133, 0.004756912123411894, 0.007815472781658173, 0.008469609543681145, 0.0030167042277753353, 0.014150852337479591], [0.11037973314523697, 0.060056522488594055, 0.03372233361005783, 0.01978255808353424, 0.048144903033971786, 0.04038994386792183, 0.03741992637515068, 0.30095505714416504, 0.09967333823442459, 0.07136626541614532, 0.03025778755545616, 0.0460725836455822, 0.024612154811620712, 0.01792958751320839, 0.013087261468172073, 0.007668165490031242, 0.03848179802298546], [0.05031547322869301, 0.03718769922852516, 0.0047621093690395355, 0.027348151430487633, 0.02537132240831852, 0.021788131445646286, 0.006878376938402653, 0.11521006375551224, 0.5184921622276306, 0.030065657570958138, 0.0035236235707998276, 0.007906991988420486, 0.006021547131240368, 0.007876724936068058, 0.003299053991213441, 0.005652575753629208, 0.12830035388469696], [0.05373314023017883, 0.12956614792346954, 0.01833966374397278, 0.04342518746852875, 0.026944400742650032, 0.019927769899368286, 0.008102282881736755, 0.08040305227041245, 0.0348784513771534, 0.11208333820104599, 0.15393389761447906, 0.07611002773046494, 0.062354959547519684, 0.05040214955806732, 0.0070692203007638454, 0.04670001193881035, 0.07602640241384506], [0.11677586287260056, 0.018950417637825012, 0.01927580125629902, 0.03196021914482117, 0.015552995726466179, 0.01696234568953514, 0.01217556744813919, 0.05748158320784569, 0.028038235381245613, 0.013849584385752678, 0.038224197924137115, 0.20729359984397888, 0.08527719229459763, 0.1308830976486206, 0.014936280436813831, 0.07443074882030487, 0.11793221533298492], [0.5650006532669067, 0.017072495073080063, 0.006416097283363342, 0.011153541505336761, 0.007141956593841314, 0.005084770265966654, 0.007194835226982832, 0.051024436950683594, 0.022067274898290634, 0.02353779785335064, 0.023769183084368706, 0.04172907769680023, 0.044813789427280426, 0.05069916322827339, 0.015975650399923325, 0.0264284685254097, 0.08089090138673782], [0.4541967511177063, 0.02689855918288231, 0.00857709813863039, 0.012632212601602077, 0.007487334311008453, 0.01462599541991949, 0.011586816050112247, 0.07194138318300247, 0.028957685455679893, 0.09007612615823746, 0.010899905115365982, 0.07838040590286255, 0.019270729273557663, 0.05440118908882141, 0.025514716282486916, 0.01896488294005394, 0.0655881017446518], [0.8418929576873779, 0.005041684024035931, 0.007445808965712786, 0.006985174026340246, 0.0038929677102714777, 0.005131320562213659, 0.002545701339840889, 0.006035570055246353, 0.00789889506995678, 0.0086777713149786, 0.0031826156191527843, 0.020852331072092056, 0.020300066098570824, 0.01988161914050579, 0.013894321396946907, 0.00928952544927597, 0.017051778733730316], [0.9161903858184814, 0.001196592696942389, 0.0031136570032685995, 0.002729585627093911, 0.0028279514517635107, 0.002311522141098976, 0.0031989377457648516, 0.006149820052087307, 0.0023341660853475332, 0.004117388743907213, 0.0006532202241942286, 0.010346027091145515, 0.016925079748034477, 0.012516843155026436, 0.005383260548114777, 0.0031019896268844604, 0.006903583183884621], [0.2593376338481903, 0.03832323104143143, 0.017367225140333176, 0.02358234114944935, 0.026675889268517494, 0.02338641881942749, 0.012839704751968384, 0.06736445426940918, 0.03166091442108154, 0.05768147110939026, 0.049425240606069565, 0.07149685174226761, 0.05951106548309326, 0.10963805764913559, 0.0229447390884161, 0.03814031183719635, 0.09062444418668747], [0.07423175871372223, 0.012813451699912548, 0.0010853252606466413, 0.00595083087682724, 0.003418268635869026, 0.002421505516394973, 0.0014076873194426298, 0.0592389851808548, 0.10726946592330933, 0.08401983976364136, 0.011291115544736385, 0.023983735591173172, 0.01690945029258728, 0.024086609482765198, 0.00714537687599659, 0.020114701241254807, 0.5446118116378784]], [[0.13619019091129303, 0.07917975634336472, 0.03191395476460457, 0.04470569267868996, 0.02777736820280552, 0.04517613351345062, 0.0329587385058403, 0.12386400252580643, 0.05149879306554794, 0.07249888777732849, 0.04246753454208374, 0.058487556874752045, 0.056250590831041336, 0.05078359320759773, 0.049788471311330795, 0.0382404625415802, 0.05821827054023743], [0.21094262599945068, 0.06072332337498665, 0.03154246509075165, 0.039620619267225266, 0.05296778678894043, 0.05292663723230362, 0.05951029062271118, 0.11615844815969467, 0.14391648769378662, 0.03390298783779144, 0.01596452109515667, 0.0435335636138916, 0.01744716987013817, 0.021830270066857338, 0.027046184986829758, 0.0157967247068882, 0.05616976320743561], [0.34229591488838196, 0.05349472165107727, 0.00044914547470398247, 0.04652364179491997, 0.01909130997955799, 0.0064160870388150215, 0.05236538127064705, 0.037946734577417374, 0.21899962425231934, 0.010216470807790756, 0.006880542263388634, 0.015377227216959, 0.02915443666279316, 0.02698325365781784, 0.03277679905295372, 0.02056245319545269, 0.08046623319387436], [0.1226445883512497, 0.040392011404037476, 0.02360180765390396, 0.03356942534446716, 0.0331718809902668, 0.14128978550434113, 0.034561868757009506, 0.1505764275789261, 0.0805952250957489, 0.09598302841186523, 0.010058676823973656, 0.04970911145210266, 0.03134823217988014, 0.03427494689822197, 0.053327612578868866, 0.03709784522652626, 0.0277975145727396], [0.1335122436285019, 0.046422168612480164, 0.045643869787454605, 0.06108638271689415, 0.003401512047275901, 0.1501297801733017, 0.1097494512796402, 0.054603055119514465, 0.17308315634727478, 0.04177732393145561, 0.008323014713823795, 0.08298651874065399, 0.008997861295938492, 0.017226438969373703, 0.009730478748679161, 0.0076748076826334, 0.04565189406275749], [0.13850677013397217, 0.0639893040060997, 0.00850216206163168, 0.09153279662132263, 0.03693598508834839, 0.0058687045238912106, 0.05740666389465332, 0.10620807111263275, 0.19798418879508972, 0.06629233807325363, 0.021415511146187782, 0.041560862213373184, 0.0216192826628685, 0.04996025562286377, 0.0258440300822258, 0.011483612470328808, 0.0548895038664341], [0.2302083969116211, 0.05530844256281853, 0.05514807254076004, 0.050639744848012924, 0.013585008680820465, 0.08023469895124435, 0.05732687935233116, 0.05652659386396408, 0.18080158531665802, 0.03227950260043144, 0.0084602115675807, 0.0704965889453888, 0.016363631933927536, 0.008549617603421211, 0.013112160377204418, 0.0107195395976305, 0.060239389538764954], [0.25972920656204224, 0.06390157341957092, 0.019162608310580254, 0.04985982924699783, 0.041011158376932144, 0.045371364802122116, 0.034367289394140244, 0.15957415103912354, 0.06398110091686249, 0.028466304764151573, 0.013219913467764854, 0.03698974847793579, 0.026138199493288994, 0.053603410720825195, 0.021687759086489677, 0.0411180704832077, 0.04181830585002899], [0.09034276008605957, 0.07754916697740555, 0.03454980626702309, 0.06535446643829346, 0.03883584216237068, 0.10664921253919601, 0.03620612248778343, 0.20718428492546082, 0.0517723374068737, 0.05870107188820839, 0.028977826237678528, 0.037805333733558655, 0.054174941033124924, 0.033762793987989426, 0.02283877320587635, 0.026870692148804665, 0.028424501419067383], [0.21625906229019165, 0.04045278951525688, 0.012858305126428604, 0.10989797860383987, 0.020503783598542213, 0.04206298291683197, 0.05962509289383888, 0.10306674987077713, 0.11533786356449127, 0.0013563567772507668, 0.0038155068177729845, 0.08406057208776474, 0.011772611178457737, 0.014186138287186623, 0.0073732552118599415, 0.04508255794644356, 0.11228843033313751], [0.09747344255447388, 0.01777718774974346, 0.004821004346013069, 0.04646192863583565, 0.017839256674051285, 0.01810486800968647, 0.03567995876073837, 0.0609109029173851, 0.08252067863941193, 0.01140142884105444, 0.005305478814989328, 0.1423553228378296, 0.09637564420700073, 0.03626321256160736, 0.07755101472139359, 0.08356667309999466, 0.16559194028377533], [0.11249347031116486, 0.023766499012708664, 0.023114655166864395, 0.042992446571588516, 0.032619692385196686, 0.05845371633768082, 0.07248760759830475, 0.036161720752716064, 0.07719957083463669, 0.022553693503141403, 0.01761680096387863, 0.07407406717538834, 0.09231282770633698, 0.020714614540338516, 0.04424132779240608, 0.09275511652231216, 0.15644221007823944], [0.2892049551010132, 0.024716205894947052, 0.010256482288241386, 0.017953963950276375, 0.0005146929761394858, 0.015512811951339245, 0.014164227060973644, 0.05134362354874611, 0.13534921407699585, 0.01808399148285389, 0.013838488608598709, 0.0692896619439125, 0.005127372685819864, 0.04375274479389191, 0.022679675370454788, 0.015939589589834213, 0.252272367477417], [0.18097321689128876, 0.03645959869027138, 0.04169938340783119, 0.03479447960853577, 0.001791298040188849, 0.136783629655838, 0.02464781142771244, 0.026010729372501373, 0.11617446690797806, 0.010181463323533535, 0.02268487960100174, 0.06266524642705917, 0.012716144323348999, 0.001053516985848546, 0.0036807595752179623, 0.05368969589471817, 0.23399367928504944], [0.16878485679626465, 0.041048578917980194, 0.03248143196105957, 0.049241114407777786, 0.008485502563416958, 0.054425302892923355, 0.029646243900060654, 0.029012341052293777, 0.1390765905380249, 0.006958476267755032, 0.027609024196863174, 0.06530915200710297, 0.01951870508491993, 0.006199215073138475, 0.0032057338394224644, 0.030796699225902557, 0.28820106387138367], [0.22168339788913727, 0.01970122568309307, 0.017759354785084724, 0.021183690056204796, 0.003852823516353965, 0.04136800393462181, 0.01090035866945982, 0.0650753527879715, 0.054872192442417145, 0.024630671367049217, 0.011827384121716022, 0.09941930323839188, 0.026330361142754555, 0.06422965973615646, 0.08038948476314545, 0.08413398265838623, 0.15264277160167694], [0.10022874921560287, 0.02577802538871765, 0.011863223277032375, 0.017911396920681, 0.005067610181868076, 0.018355203792452812, 0.009556182660162449, 0.09161453694105148, 0.01999814249575138, 0.08449877798557281, 0.06590288877487183, 0.07416608184576035, 0.12163711339235306, 0.08837532997131348, 0.052650175988674164, 0.09376457333564758, 0.118632011115551]]], [[[0.6822956204414368, 0.035260070115327835, 0.00263024540618062, 0.013483773916959763, 0.010092920623719692, 0.00952314306050539, 0.0016194175696000457, 0.03664538636803627, 0.019463056698441505, 0.022302372381091118, 0.043861303478479385, 0.011156735941767693, 0.0245597492903471, 0.004603949375450611, 0.0038147231098264456, 0.02780424803495407, 0.05088333785533905], [0.3195177912712097, 0.09742715954780579, 0.01119675301015377, 0.12037629634141922, 0.04995123669505119, 0.044034916907548904, 0.011735173873603344, 0.14329250156879425, 0.08690748363733292, 0.013612714596092701, 0.04531298950314522, 0.013159109279513359, 0.01894041895866394, 0.0022922256030142307, 0.0018899071728810668, 0.005071460269391537, 0.015281840227544308], [0.52382892370224, 0.02846101112663746, 0.018757235258817673, 0.03017124906182289, 0.030158022418618202, 0.09563451260328293, 0.007803021930158138, 0.02280348353087902, 0.1261315643787384, 0.011107896454632282, 0.006723277736455202, 0.0013152105966582894, 0.018898582085967064, 0.003657741704955697, 0.013297272846102715, 0.0014744699001312256, 0.05977644398808479], [0.3216986656188965, 0.23807315528392792, 0.0008802164811640978, 0.06642764061689377, 0.04236074537038803, 0.02113865502178669, 0.01180385984480381, 0.1970285326242447, 0.016916584223508835, 0.005837828852236271, 0.026597993448376656, 0.03644804656505585, 0.00785502977669239, 0.0005335125606507063, 0.00025057175662368536, 0.004023133777081966, 0.002125779166817665], [0.45321059226989746, 0.06610734760761261, 0.00047098653158172965, 0.16192032396793365, 0.04743068665266037, 0.01764250174164772, 0.06689406931400299, 0.11394446343183517, 0.011730327270925045, 0.012875119224190712, 0.008049319498240948, 0.015101907774806023, 0.012054195627570152, 0.0011627222411334515, 0.000563008536119014, 0.008045155555009842, 0.002797310473397374], [0.48540663719177246, 0.0315280556678772, 0.0009604609222151339, 0.09195850789546967, 0.06993946433067322, 0.024767903611063957, 0.06700718402862549, 0.14951883256435394, 0.016719719395041466, 0.0143564622849226, 0.007434335071593523, 0.009912626817822456, 0.011083364486694336, 0.003885942278429866, 0.00208507152274251, 0.008306787349283695, 0.005128646735101938], [0.4349879026412964, 0.07053473591804504, 0.0001326032797805965, 0.23243191838264465, 0.08468427509069443, 0.010827518999576569, 0.009237083606421947, 0.095780149102211, 0.0049951933324337006, 0.010793130844831467, 0.007235290016978979, 0.011028170585632324, 0.0046798549592494965, 0.0009857806144282222, 0.00011326972162351012, 0.02063368633389473, 0.00091942009748891], [0.43343231081962585, 0.07787344604730606, 0.0031263334676623344, 0.069603331387043, 0.052730485796928406, 0.015508756041526794, 0.006747057661414146, 0.21662920713424683, 0.024357153102755547, 0.025131117552518845, 0.024896914139389992, 0.014240911230444908, 0.00902417954057455, 0.003260604804381728, 0.0013814592966809869, 0.015226085670292377, 0.006830764468759298], [0.7126644253730774, 0.05738997459411621, 0.0017661815509200096, 0.011781885288655758, 0.02944267727434635, 0.012645489536225796, 0.005664742551743984, 0.11641773581504822, 0.01747857965528965, 0.010960976593196392, 0.004601067863404751, 0.004442916251718998, 0.005712913349270821, 0.0007291765650734305, 0.0007241361308842897, 0.0036139606963843107, 0.0039633456617593765], [0.35545724630355835, 0.015700388699769974, 0.00022701396665070206, 0.047394681721925735, 0.01047397032380104, 0.003791484050452709, 0.0034794039092957973, 0.11609276384115219, 0.017329897731542587, 0.06030169874429703, 0.12431337684392929, 0.11013025045394897, 0.05419253930449486, 0.0029536793008446693, 0.0008693889831192791, 0.04836363345384598, 0.028928592801094055], [0.18819394707679749, 0.031523726880550385, 0.0019991977605968714, 0.03090377151966095, 0.002986564300954342, 0.007773544639348984, 0.0009980795439332724, 0.12662644684314728, 0.07078582048416138, 0.05949152633547783, 0.0713064894080162, 0.06256473064422607, 0.0397312305867672, 0.013424444012343884, 0.0121604660525918, 0.08287225663661957, 0.19665774703025818], [0.44700315594673157, 0.008147265762090683, 0.00018987641669809818, 0.026380542665719986, 0.006153915077447891, 0.0037664221599698067, 0.0018434333615005016, 0.07596214860677719, 0.01489653717726469, 0.03840700909495354, 0.03325706720352173, 0.046473968774080276, 0.060095787048339844, 0.017903203144669533, 0.008452055975794792, 0.1373477578163147, 0.0737197995185852], [0.34166258573532104, 0.014866519719362259, 0.0006122334743849933, 0.017381759360432625, 0.0047426060773432255, 0.005879465024918318, 0.0038198272231966257, 0.03887733817100525, 0.01415393128991127, 0.06591495871543884, 0.029482051730155945, 0.04742943122982979, 0.09581159055233002, 0.05360044166445732, 0.042785268276929855, 0.12945809960365295, 0.093521848320961], [0.3062163293361664, 0.0043711792677640915, 0.0016276920214295387, 0.016264447942376137, 0.0015441137365996838, 0.008248157799243927, 0.001241195946931839, 0.026808761060237885, 0.030627401545643806, 0.010589483194053173, 0.008681464940309525, 0.020977210253477097, 0.028243962675333023, 0.03647366538643837, 0.0943315178155899, 0.21241238713264465, 0.19134104251861572], [0.1210237517952919, 0.002162128919735551, 0.0034830737859010696, 0.008340361528098583, 0.001517640077508986, 0.004227576311677694, 0.0005055739893577993, 0.011009505949914455, 0.03782225772738457, 0.017331713810563087, 0.009642845019698143, 0.021944144740700722, 0.030234074220061302, 0.10904727131128311, 0.11775970458984375, 0.16735392808914185, 0.3365943729877472], [0.5429201126098633, 0.009856241755187511, 8.317088213516399e-05, 0.015544903464615345, 0.0009551475523039699, 0.001194678246974945, 0.0003980295732617378, 0.10956937819719315, 0.007213618606328964, 0.03117157705128193, 0.0459539033472538, 0.05523526668548584, 0.019978677853941917, 0.0040847123600542545, 0.0009635523310862482, 0.10833918303251266, 0.046537794172763824], [0.806210458278656, 0.008082743734121323, 0.000343059393344447, 0.0011954146903008223, 0.002624648390337825, 0.0014450001763179898, 0.0006635795580223203, 0.03913620859384537, 0.005478864535689354, 0.020178085193037987, 0.010771473869681358, 0.009192985482513905, 0.01983797550201416, 0.003090026555582881, 0.005178037099540234, 0.020579298958182335, 0.045992035418748856]], [[0.26030296087265015, 0.024937255308032036, 0.0119309788569808, 0.03835250809788704, 0.007886629551649094, 0.022854356095194817, 0.018406454473733902, 0.02492615021765232, 0.08671466261148453, 0.019164158031344414, 0.034623999148607254, 0.040964607149362564, 0.010998984798789024, 0.07520788908004761, 0.03389676660299301, 0.08578357100486755, 0.2030480057001114], [0.5228820443153381, 0.2498551905155182, 0.0047102575190365314, 0.02850227989256382, 0.001522764447145164, 0.0018293781904503703, 0.007469263859093189, 0.015240908600389957, 0.08303587883710861, 0.005514114163815975, 0.01869751326739788, 0.0015216560568660498, 0.0007400493486784399, 0.0031062287744134665, 0.0019343933090567589, 0.011887768283486366, 0.04155036062002182], [0.5664864778518677, 0.008889389224350452, 0.09324275702238083, 0.004385432228446007, 0.0002986930776387453, 0.0038385335355997086, 0.0002485603035893291, 0.02305116504430771, 0.18619360029697418, 0.004172870423644781, 0.0018810393521562219, 0.000216798041947186, 0.00030662701465189457, 0.0030485582537949085, 0.0008845346746966243, 0.004338380414992571, 0.0985165685415268], [0.2929644286632538, 0.0634969100356102, 0.003967739641666412, 0.3829934597015381, 0.005042236298322678, 0.0014616843545809388, 0.01442265696823597, 0.015202870592474937, 0.07655645906925201, 0.014224136248230934, 0.024202097207307816, 0.0031307926401495934, 0.0019311335636302829, 0.03346136584877968, 0.001373190782032907, 0.03842684626579285, 0.027141958475112915], [0.23808839917182922, 0.010087027214467525, 0.0003861273289658129, 0.014740384183824062, 0.5390181541442871, 0.008710535243153572, 0.03599068522453308, 0.010943606495857239, 0.04784562438726425, 0.006522782146930695, 0.0011998129775747657, 0.0017976046074181795, 0.02926289290189743, 0.0070022395811975, 0.001948303310200572, 0.0015431599458679557, 0.04491274058818817], [0.11473768949508667, 0.000960657955147326, 0.0009823553264141083, 0.0009865137981250882, 0.0003537834854796529, 0.7655156254768372, 0.0008234000415541232, 0.010097494348883629, 0.05844496935606003, 0.0011152173392474651, 0.00046246341662481427, 0.0007048386614769697, 0.00024133393890224397, 0.004020757973194122, 0.0014535851078107953, 0.003951926715672016, 0.035147469490766525], [0.5163162350654602, 0.00897502526640892, 0.0004555540217552334, 0.012591302394866943, 0.011259350925683975, 0.002138142241165042, 0.29595574736595154, 0.01212291605770588, 0.09115639328956604, 0.0022656195797026157, 0.006693446077406406, 0.001294752350077033, 0.002201332012191415, 0.0014744959771633148, 0.0006546106887981296, 0.0012760474346578121, 0.03316907584667206], [0.21852906048297882, 0.08968650549650192, 0.05212351679801941, 0.10586758702993393, 0.0189121775329113, 0.03629008308053017, 0.023462336510419846, 0.093361496925354, 0.1368219405412674, 0.0327131561934948, 0.04305531829595566, 0.01102403923869133, 0.013256549835205078, 0.024074526503682137, 0.00987568125128746, 0.031168457120656967, 0.05977753922343254], [0.6237765550613403, 0.07191742956638336, 0.005616202484816313, 0.04252871498465538, 0.002756607485935092, 0.010773872956633568, 0.004928263369947672, 0.06351715326309204, 0.09769699722528458, 0.003188671311363578, 0.004592030309140682, 0.001247798791155219, 0.0004021433705929667, 0.008964680135250092, 0.0014624991454184055, 0.012995840050280094, 0.043634504079818726], [0.41960352659225464, 0.01913681998848915, 0.0015677883056923747, 0.007768760900944471, 0.003421276342123747, 0.0009994249558076262, 0.0008573529776185751, 0.01781180500984192, 0.22060412168502808, 0.16235463321208954, 0.014189998619258404, 0.0033870653714984655, 0.005030840635299683, 0.000790201302152127, 0.001405485556460917, 0.004889284260571003, 0.11618164926767349], [0.21278835833072662, 0.1617441177368164, 0.002280773827806115, 0.06295441091060638, 0.0023916931822896004, 0.0028469108510762453, 0.0061056348495185375, 0.03518082946538925, 0.02114127017557621, 0.015012288466095924, 0.428611159324646, 0.00602854834869504, 0.0027886908501386642, 0.008689564652740955, 0.0013605465646833181, 0.014249610714614391, 0.015825416892766953], [0.1087644025683403, 0.007666837889701128, 0.0009514890844002366, 0.011494861915707588, 0.008100277744233608, 0.011865037493407726, 0.010352912358939648, 0.014303864911198616, 0.13765114545822144, 0.004660285077989101, 0.011767576448619366, 0.5612844228744507, 0.00652401614934206, 0.008163641206920147, 0.003781902836635709, 0.007013797294348478, 0.08565358817577362], [0.19253849983215332, 0.015032432973384857, 0.0015187135431915522, 0.015387236140668392, 0.10257664322853088, 0.012829083018004894, 0.011811327189207077, 0.03713827580213547, 0.05944398045539856, 0.013319967314600945, 0.007715099025517702, 0.011939016170799732, 0.44796672463417053, 0.011809742078185081, 0.004552720580250025, 0.002404824597761035, 0.0520157590508461], [0.35856541991233826, 0.0008786483085714281, 0.0012833033688366413, 0.004999963100999594, 0.0008144171442836523, 0.0038151931948959827, 0.0007613565539941192, 0.010301255621016026, 0.06564703583717346, 0.0004498498747125268, 0.0006767010781913996, 0.0009487619390711188, 0.0008650294621475041, 0.5057371854782104, 0.002964746905490756, 0.011714909225702286, 0.02957627736032009], [0.16855739057064056, 0.0035048709250986576, 0.0025944223161786795, 0.0023684853222221136, 0.0034197778441011906, 0.007350698113441467, 0.002209746977314353, 0.018640436232089996, 0.055680349469184875, 0.008621187880635262, 0.003783331485465169, 0.004712854977697134, 0.005618084222078323, 0.040853600949048996, 0.5851300954818726, 0.029646925628185272, 0.057307615876197815], [0.4214586317539215, 0.01272890530526638, 0.0037388994824141264, 0.034625470638275146, 0.0009176275343634188, 0.007532259449362755, 0.002153666689991951, 0.031964510679244995, 0.13898687064647675, 0.0074130212888121605, 0.008008171804249287, 0.0033505852334201336, 0.0006066468777135015, 0.04832366108894348, 0.009480200707912445, 0.18003545701503754, 0.08867539465427399], [0.35087811946868896, 0.039255011826753616, 0.019050082191824913, 0.032050490379333496, 0.00489999633282423, 0.01617913320660591, 0.006983624771237373, 0.0962814912199974, 0.23207370936870575, 0.00944092869758606, 0.008303634822368622, 0.002870802767574787, 0.0010940341744571924, 0.021532583981752396, 0.004500772804021835, 0.033830802887678146, 0.12077486515045166]], [[0.22436125576496124, 0.03122175857424736, 0.021436095237731934, 0.014033504761755466, 0.019719915464520454, 0.0338527113199234, 0.012618753127753735, 0.039174940437078476, 0.03941758722066879, 0.3097091019153595, 0.0364307276904583, 0.02144465781748295, 0.03611835464835167, 0.04168879985809326, 0.018086425960063934, 0.03709793463349342, 0.06358738988637924], [0.2595123052597046, 0.13314905762672424, 0.029556741937994957, 0.0541284941136837, 0.02760419435799122, 0.02228226512670517, 0.09031977504491806, 0.16102033853530884, 0.07728604972362518, 0.0170094296336174, 0.03624677658081055, 0.019100148230791092, 0.01108310092240572, 0.026370098814368248, 0.022499585524201393, 0.004521022085100412, 0.008310568518936634], [0.594242513179779, 0.15180082619190216, 0.013355364091694355, 0.013014501892030239, 0.0018408140167593956, 0.0003923088952433318, 0.0116496616974473, 0.16529680788516998, 0.0057604662142694, 0.0007728811469860375, 0.01601817086338997, 0.010109257884323597, 0.001657823333516717, 0.0016253077192232013, 0.009594626724720001, 0.0018021098803728819, 0.0010666298912838101], [0.27030667662620544, 0.13621576130390167, 0.028462644666433334, 0.0646762028336525, 0.02358029969036579, 0.02551363967359066, 0.09418133646249771, 0.11567646265029907, 0.023073725402355194, 0.018290143460035324, 0.07670951634645462, 0.027966663241386414, 0.01960626430809498, 0.028858521953225136, 0.035123687237501144, 0.00953949149698019, 0.002219011075794697], [0.5074316263198853, 0.07996106147766113, 0.002697526477277279, 0.011143394745886326, 0.00106679683085531, 0.0004081881488673389, 0.0045843543484807014, 0.3531482517719269, 0.012267665937542915, 0.0007239445112645626, 0.0043886261992156506, 0.008659426122903824, 0.000407509010983631, 0.0028253772761672735, 0.008663775399327278, 0.0006861094734631479, 0.0009364447323605418], [0.5707200765609741, 0.13657622039318085, 0.01322108879685402, 0.00804736465215683, 0.0021786789875477552, 0.0002577733830548823, 0.00417737290263176, 0.2190672606229782, 0.009484305046498775, 0.0007010713452473283, 0.010957865975797176, 0.006696528289467096, 0.001869760686531663, 0.0015118465526029468, 0.01242093462496996, 0.0005763688823208213, 0.0015355368377640843], [0.4644774794578552, 0.06806331127882004, 0.011435909196734428, 0.03586268797516823, 0.005579446908086538, 0.002100869081914425, 0.008821384981274605, 0.23808692395687103, 0.08800483494997025, 0.0008978701662272215, 0.009406577795743942, 0.03075648471713066, 0.001903757220134139, 0.005021379794925451, 0.01724247634410858, 0.0021622073836624622, 0.010176380164921284], [0.3335186541080475, 0.03827006742358208, 0.013124575838446617, 0.041150301694869995, 0.03460875526070595, 0.015999259427189827, 0.034882307052612305, 0.22065448760986328, 0.106643445789814, 0.017461303621530533, 0.019272973760962486, 0.0266261026263237, 0.015617902390658855, 0.022518768906593323, 0.0036819051019847393, 0.017316684126853943, 0.03865256905555725], [0.48089906573295593, 0.05632786452770233, 0.006751597858965397, 0.02877786196768284, 0.020115992054343224, 0.007723397575318813, 0.02941860258579254, 0.31117892265319824, 0.012199708260595798, 0.004238551948219538, 0.00707376841455698, 0.015346447005867958, 0.003231395734474063, 0.00975171197205782, 0.0037738943938165903, 0.0019818206783384085, 0.0012094136327505112], [0.35051918029785156, 0.0277424193918705, 0.0026206346228718758, 0.00862390361726284, 0.0007308940985240042, 0.0006053828983567655, 0.002039568731561303, 0.18621663749217987, 0.02659977413713932, 0.04654679819941521, 0.0565185509622097, 0.08150777220726013, 0.011012209579348564, 0.01555384136736393, 0.03829077258706093, 0.06883057206869125, 0.07604116201400757], [0.29989585280418396, 0.21211478114128113, 0.012097137980163097, 0.03750472888350487, 0.006688349414616823, 0.004164774902164936, 0.006009112577885389, 0.038700759410858154, 0.012774821370840073, 0.0584508515894413, 0.12515515089035034, 0.05331069603562355, 0.012712017633020878, 0.028217719867825508, 0.027167880907654762, 0.0398469939827919, 0.02518841065466404], [0.8537232875823975, 0.008102361112833023, 0.000321030558552593, 0.0008533833315595984, 6.255933840293437e-05, 9.349741594633088e-05, 0.00017812031728681177, 0.08712994307279587, 0.0029953145422041416, 0.0018041590228676796, 0.00544142909348011, 0.012984873726963997, 0.0007626242586411536, 0.0030534672550857067, 0.004994462709873915, 0.006727222353219986, 0.010772330686450005], [0.7217544913291931, 0.019425155594944954, 0.0007242090068757534, 0.0011370280990377069, 8.95856210263446e-05, 0.00022010953398421407, 0.00036339106736704707, 0.20532137155532837, 0.0035484805703163147, 0.004185807891190052, 0.005644181277602911, 0.015357761643826962, 0.0004456062160898, 0.0018210476264357567, 0.00569745060056448, 0.004917515441775322, 0.009346977807581425], [0.6803311109542847, 0.04388759285211563, 0.010201721452176571, 0.004490840248763561, 0.00011520295083755627, 0.000227678261580877, 0.0004739072173833847, 0.12748093903064728, 0.0055168732069432735, 0.0039052702486515045, 0.005486944690346718, 0.07031803578138351, 0.0003826988395303488, 0.0032799742184579372, 0.01451216172426939, 0.019167032092809677, 0.010222065262496471], [0.7427048087120056, 0.0446072518825531, 0.002733102533966303, 0.0013373729307204485, 0.00011133380030514672, 0.00011317487224005163, 0.0005121941212564707, 0.13273939490318298, 0.004510131198912859, 0.0014771270798519254, 0.004741154611110687, 0.04112107679247856, 0.0005231461836956441, 0.004035986494272947, 0.005976933520287275, 0.003571887733414769, 0.009184031747281551], [0.1489006131887436, 0.013011327013373375, 0.001975643215700984, 0.01670215092599392, 0.003309930209070444, 0.004668704699724913, 0.004907403606921434, 0.0430835522711277, 0.014747639186680317, 0.058971405029296875, 0.04376852512359619, 0.09500115364789963, 0.04765741154551506, 0.17318540811538696, 0.15286332368850708, 0.12580904364585876, 0.051436807960271835], [0.6095574498176575, 0.027133753523230553, 0.0025640218518674374, 0.005627874750643969, 0.002388184890151024, 0.0022122778464108706, 0.004465707577764988, 0.13545842468738556, 0.004957517609000206, 0.020288845524191856, 0.03069455549120903, 0.06566030532121658, 0.012075920589268208, 0.03674916923046112, 0.012515691109001637, 0.015901319682598114, 0.011748884804546833]], [[0.7269570827484131, 0.01789163611829281, 0.00799620058387518, 0.006585173774510622, 0.003356094704940915, 0.005447388626635075, 0.004194266628473997, 0.020981440320611, 0.04622857645153999, 0.005640462040901184, 0.0043085734359920025, 0.004060355946421623, 0.008057504892349243, 0.009216810576617718, 0.006843645591288805, 0.013159217312932014, 0.10907569527626038], [0.006191821303218603, 0.019481344148516655, 0.7337139248847961, 0.20860829949378967, 0.015124008990824223, 0.0032596897799521685, 0.0004418274329509586, 0.0014926388394087553, 0.004156946670264006, 0.0009886649204418063, 0.0014647089410573244, 0.0021933538373559713, 0.0005162816378287971, 0.00037877087015658617, 0.00017860450316220522, 0.0008612748351879418, 0.0009478495921939611], [0.8142242431640625, 0.014280052855610847, 0.03292576223611832, 0.05281565710902214, 0.03126922622323036, 0.022389255464076996, 0.0006104055210016668, 0.004441654775291681, 0.008216227404773235, 0.00015931884991005063, 0.00016934095765464008, 0.00022205487766768783, 0.0016439077444374561, 0.001120731234550476, 0.0002189180813729763, 0.0011454833438619971, 0.014147806912660599], [0.08254825323820114, 0.007273707073181868, 0.007603869307786226, 0.02100532129406929, 0.453010618686676, 0.3249257802963257, 0.024505997076630592, 0.023346200585365295, 0.015324040316045284, 0.00020244077313691378, 8.737038297113031e-05, 0.0003801225684583187, 0.003071874612942338, 0.017686055973172188, 0.0035992234479635954, 0.0017139840638265014, 0.013715008273720741], [0.054695867002010345, 0.0005519826081581414, 0.00016194878844544291, 0.0021179390605539083, 0.01695120520889759, 0.2183791697025299, 0.6605658531188965, 0.037342529743909836, 0.0054132589139044285, 2.2825843188911676e-05, 1.4719857972522732e-05, 5.231525847193552e-06, 0.0014829125721007586, 0.0001251043431693688, 0.00023160403361544013, 0.00025381791056133807, 0.0016839680029079318], [0.4551451802253723, 0.0027073537930846214, 0.0006436753319576383, 0.0011482848785817623, 0.011742557398974895, 0.05413889139890671, 0.09749658405780792, 0.2391180545091629, 0.1270204335451126, 0.0009941611206158996, 0.00025643015396781266, 3.041134732484352e-05, 0.0021528557408601046, 0.0004836696607526392, 0.001114178798161447, 0.0004480742500163615, 0.0053592342883348465], [0.20939292013645172, 0.002777647925540805, 0.00017728346574585885, 7.00855816830881e-05, 0.0017265296773985028, 0.014145530760288239, 0.0033955376129597425, 0.06417017430067062, 0.6963275671005249, 0.0028625503182411194, 0.0006282955291680992, 1.543108191981446e-05, 0.00041611684719100595, 4.507028279476799e-05, 0.00018130823445972055, 0.00011334386363159865, 0.003554614493623376], [0.2170998603105545, 0.012498983182013035, 0.004142874386161566, 0.0018711151788011193, 0.0015724966069683433, 0.008559465408325195, 0.016058972105383873, 0.06742995232343674, 0.5090731978416443, 0.11453909426927567, 0.031752388924360275, 0.0026793505530804396, 0.0011193726677447557, 0.0008053377969190478, 0.001154088880866766, 0.0009438367560505867, 0.008699722588062286], [0.9664286971092224, 0.001338437432423234, 0.00028009433299303055, 0.0003492311807349324, 6.550805119331926e-05, 0.00017494872736278921, 7.833373820176348e-05, 0.001981660258024931, 0.020104890689253807, 0.005200414452701807, 0.0019855231512337923, 0.0007284999010153115, 0.00019032112322747707, 5.707058880943805e-05, 2.724666046560742e-05, 8.845505362842232e-05, 0.0009204759262502193], [0.5758452415466309, 0.0030951141379773617, 0.004761130083352327, 0.002336776116862893, 0.0002411947789369151, 9.37568984227255e-05, 5.521527418750338e-05, 0.0003310434112790972, 0.004556070547550917, 0.028866425156593323, 0.10900643467903137, 0.23613987863063812, 0.024846957996487617, 0.004491351079195738, 0.0010350859956815839, 0.0006556663429364562, 0.0036426254082471132], [0.575535237789154, 0.0008558345143683255, 0.005822916515171528, 0.0034926305525004864, 0.00010607944568619132, 3.480555460555479e-05, 7.737130545137916e-06, 0.0005968101904727519, 0.00543591845780611, 0.017514795064926147, 0.03259458392858505, 0.1252136379480362, 0.13784223794937134, 0.08326109498739243, 0.0021554052364081144, 0.005088401027023792, 0.004441919270902872], [0.011750069446861744, 0.0001563738042023033, 0.00010440481128171086, 0.00020337167370598763, 9.635693277232349e-05, 7.71645427448675e-05, 3.69607332686428e-05, 0.00012413262447807938, 0.00033067449112422764, 0.00012616872845683247, 0.000515155668836087, 0.0005893527995795012, 0.966963529586792, 0.008206074126064777, 0.008268392644822598, 0.0005751883727498353, 0.0018765617860481143], [0.43296104669570923, 0.0005168191273696721, 0.0007069097482599318, 0.0005931710475124419, 0.001529261120595038, 0.0021718121133744717, 0.0006062213215045631, 0.0011525223962962627, 0.0015182701172307134, 0.00044179102405905724, 0.0016879516188055277, 0.00476248050108552, 0.20452313125133514, 0.15664899349212646, 0.11206435412168503, 0.046345844864845276, 0.031769465655088425], [0.44735753536224365, 0.0005971206119284034, 0.00020121039415244013, 0.00035224054590798914, 0.0010305430041626096, 0.0007352453540079296, 0.001396332634612918, 0.000719264498911798, 0.002508622594177723, 6.437341653509066e-05, 7.428012759191915e-05, 0.0008355104364454746, 0.04698832333087921, 0.016309339553117752, 0.3386057913303375, 0.06282110512256622, 0.07940312474966049], [0.9219660758972168, 0.0001357470900984481, 6.967592344153672e-05, 3.8046367990318686e-05, 4.9331447371514514e-05, 9.716444765217602e-05, 2.9237058697617613e-05, 0.0002664979256223887, 0.0004996331408619881, 1.3988978025736287e-05, 5.258775217953371e-06, 2.4656586901983246e-05, 0.0005134257371537387, 0.0003939476446248591, 0.003402730682864785, 0.008656292222440243, 0.06383830308914185], [0.6382927298545837, 0.00030877284007146955, 0.0003692670143209398, 0.00024581330944783986, 0.0006497515714727342, 0.0005276494193822145, 0.00027332419995218515, 0.000819970213342458, 0.001459851278923452, 0.00013651080371346325, 4.496298060985282e-05, 0.00017771369311958551, 0.0005697915330529213, 0.005081457085907459, 0.023721717298030853, 0.009262540377676487, 0.31805816292762756], [0.9699109196662903, 4.7778554289834574e-05, 3.577940151444636e-05, 7.615400681970641e-05, 6.269367440836504e-05, 0.00016595187480561435, 4.878999607171863e-05, 0.0004922030493617058, 0.0008326738607138395, 6.561361806234345e-05, 2.183180913561955e-05, 5.4876891226740554e-05, 4.194868597551249e-05, 5.985422103549354e-05, 8.497643284499645e-05, 0.0012499121949076653, 0.026748038828372955]], [[0.8424743413925171, 0.020767195150256157, 0.017066778615117073, 0.030537346377968788, 0.006614766549319029, 0.005440154112875462, 0.0016326821641996503, 0.013458272442221642, 0.03050542250275612, 0.0014763184590265155, 0.0013993160100653768, 0.0013031117850914598, 0.0026500681415200233, 0.002508195349946618, 0.0011464474955573678, 0.0027528086211532354, 0.018266746774315834], [0.9286220669746399, 0.02002856880426407, 0.003596397815272212, 0.022788656875491142, 7.081696821842343e-05, 0.00013932306319475174, 3.967220618505962e-05, 0.004535026848316193, 0.015291046351194382, 0.0037771102506667376, 0.0004201025585643947, 1.952280945261009e-05, 3.7738984246971086e-05, 1.6232061170740053e-05, 2.1951214876025915e-05, 0.00020372123981360346, 0.00039198403828777373], [0.8238195776939392, 0.11171792447566986, 0.009885051287710667, 0.013269836083054543, 0.00012634409358724952, 5.4048166930442676e-05, 4.074934167874744e-06, 0.0011064414866268635, 0.02488909661769867, 0.009586002677679062, 0.0005006412975490093, 0.00014171192015055567, 0.00028805973124690354, 6.761758413631469e-05, 0.00013069888518657535, 0.000522487738635391, 0.0038903942331671715], [0.5379607677459717, 0.2255418598651886, 0.17621786892414093, 0.021368632093071938, 0.004112194292247295, 0.0008770033018663526, 1.3368659892876167e-05, 0.001554579590447247, 0.021221648901700974, 0.0011821899097412825, 0.001655652653425932, 0.00015697117487434298, 0.0012310550082474947, 0.0004780261078849435, 0.0008851875318214297, 0.0004430878907442093, 0.005100049078464508], [0.31428298354148865, 0.04264606535434723, 0.15583379566669464, 0.44417861104011536, 0.026532310992479324, 0.0041827731765806675, 4.7395064029842615e-05, 0.0005624418263323605, 0.003462761640548706, 7.51363841118291e-05, 5.014517228119075e-05, 0.0004029714036732912, 0.00018296969938091934, 0.0011074799112975597, 0.00011250215902691707, 0.00046336802188307047, 0.005876149982213974], [0.6452857255935669, 0.009519824758172035, 0.03558145463466644, 0.2224140167236328, 0.04735264554619789, 0.0073654139414429665, 0.0004941757651977241, 0.004128024913370609, 0.012794092297554016, 2.5512426873319782e-05, 1.954131221282296e-05, 6.062111788196489e-05, 0.0001494393654866144, 0.00040767790051177144, 6.688174471491948e-05, 0.0002183979086112231, 0.014116551727056503], [0.0703856572508812, 0.009479045867919922, 0.008982180617749691, 0.32753419876098633, 0.3548038899898529, 0.19466352462768555, 0.0014312994899228215, 0.014763517305254936, 0.011699704453349113, 2.3687292923568748e-05, 9.652789231040515e-06, 0.00014789635315537453, 8.100362174445763e-05, 0.0005806274130009115, 7.68949612393044e-05, 0.00022560838260687888, 0.005111573729664087], [0.03372747078537941, 0.008814230561256409, 0.001266675884835422, 0.035009779036045074, 0.03177085146307945, 0.2526962459087372, 0.5360028147697449, 0.0579359233379364, 0.03556671366095543, 0.00020314754510764033, 0.00010977837519021705, 4.61096569779329e-05, 0.0004139691009186208, 0.0008369717979803681, 0.00028542723157443106, 0.0007192555349320173, 0.0045946016907691956], [0.9428878426551819, 0.004099049139767885, 8.053931378526613e-05, 0.0006541602779179811, 0.00027153469272889197, 0.0020265269558876753, 0.0007708747871220112, 0.013570916838943958, 0.034691255539655685, 0.00017296920123044401, 1.1985094715782907e-05, 2.2545780211657984e-06, 9.408482583239675e-06, 9.158355169347487e-06, 3.9623714656045195e-06, 2.531175960029941e-05, 0.0007122426759451628], [0.7517618536949158, 0.006795246619731188, 2.971233152493369e-05, 6.851771468063816e-05, 9.587786735210102e-06, 8.76799676916562e-05, 0.00025413092225790024, 0.0253902617841959, 0.18396513164043427, 0.028572531417012215, 0.002274320228025317, 1.8463553715264425e-05, 4.518455534707755e-05, 6.70935696689412e-06, 1.0686344467103481e-05, 8.808149868855253e-05, 0.0006218262715265155], [0.1123083084821701, 0.0032189374323934317, 0.0001560904347570613, 0.00016692676581442356, 4.609536517818924e-06, 2.86362374026794e-05, 2.0452031094464473e-05, 0.008180824108421803, 0.13005411624908447, 0.7239992618560791, 0.02072248049080372, 0.0002314968587597832, 4.522140807239339e-05, 8.987371074908879e-06, 1.3283981388667598e-05, 2.272340680065099e-05, 0.0008177353302016854], [0.3030427098274231, 0.0024056655820459127, 0.0015615628799423575, 0.0003351920749992132, 2.1301857486832887e-05, 2.2717051251675002e-05, 9.577292075846344e-06, 0.0015301295788958669, 0.0851929783821106, 0.26926982402801514, 0.31648850440979004, 0.00241987407207489, 0.007648175582289696, 0.000723672506865114, 0.00018739915685728192, 0.00048627742216922343, 0.008654369041323662], [0.3067166805267334, 0.006327567156404257, 0.0058981324546039104, 0.008593618869781494, 0.0007845971849747002, 0.00015954340051393956, 6.4059922806336544e-06, 0.0009639994241297245, 0.022805364802479744, 0.07659099251031876, 0.14643481373786926, 0.38026589155197144, 0.02378164604306221, 0.013440320268273354, 0.000335381249897182, 0.0003095087013207376, 0.006585441529750824], [0.5674072504043579, 0.0014256652211770415, 0.004462930839508772, 0.005321774631738663, 0.0003587827377486974, 0.00034828728530555964, 1.542511563457083e-05, 0.0006432884256355464, 0.010195896029472351, 0.006155412178486586, 0.1079195886850357, 0.021320685744285583, 0.24467571079730988, 0.016517268493771553, 0.002540757181122899, 0.001054976717568934, 0.009636360220611095], [0.32655876874923706, 0.0029003547970205545, 0.0011188285425305367, 0.003442995483055711, 0.0005175312981009483, 0.0004534115141723305, 0.00023586452880408615, 0.001353472820483148, 0.013619557954370975, 0.002292442601174116, 0.0030651502311229706, 0.05615299195051193, 0.2469804733991623, 0.2729044556617737, 0.013038264587521553, 0.017613399773836136, 0.03775198757648468], [0.5315298438072205, 0.008303933776915073, 0.0026485719718039036, 0.0008984821615740657, 0.0003258080396335572, 0.0002836764615494758, 2.667535409273114e-05, 0.007615853566676378, 0.014708596281707287, 0.000818938366137445, 0.0032937233336269855, 0.0010027901735156775, 0.06035952642560005, 0.05003620311617851, 0.19541166722774506, 0.008891361765563488, 0.1138443797826767], [0.9526456594467163, 0.001157578662969172, 0.00025960744824260473, 0.00025637258659116924, 3.754347926587798e-05, 2.9654478566953912e-05, 6.0121774367871694e-06, 0.00033280765637755394, 0.0017185610486194491, 6.486845086328685e-05, 1.2421493011061102e-05, 1.1812937373179011e-05, 0.00011375109170330688, 0.00034109450643882155, 0.00035989226307719946, 0.0027593132108449936, 0.039893049746751785]], [[0.13585063815116882, 0.03866572305560112, 0.04863022640347481, 0.057078033685684204, 0.013443577103316784, 0.03305221349000931, 0.023145761340856552, 0.06955958902835846, 0.05880245193839073, 0.05664479732513428, 0.026932552456855774, 0.05179768428206444, 0.027190882712602615, 0.06470070034265518, 0.07086866348981857, 0.11984605342149734, 0.10379039496183395], [0.5049821734428406, 0.009588302113115788, 0.028704777359962463, 0.02410416305065155, 0.027530856430530548, 0.03328945115208626, 0.018587250262498856, 0.03651125356554985, 0.08305874466896057, 0.01266869343817234, 0.011085844598710537, 0.027623886242508888, 0.03671414777636528, 0.029543912038207054, 0.023825420066714287, 0.028190666809678078, 0.06399066746234894], [0.413239449262619, 0.012525207363069057, 0.00013884906366001815, 0.006962826009839773, 0.0015833210200071335, 0.0064878398552536964, 0.008617706596851349, 0.02073638327419758, 0.2738681137561798, 0.005007362458854914, 0.005136431660503149, 0.0035143813583999872, 0.004742327146232128, 0.04365547373890877, 0.01293324213474989, 0.004330870695412159, 0.17652028799057007], [0.4644061326980591, 0.02647235244512558, 0.015102909877896309, 0.01899535208940506, 0.020528098568320274, 0.021546365693211555, 0.01763543114066124, 0.057087041437625885, 0.10842602699995041, 0.042855385690927505, 0.01931384764611721, 0.013597359880805016, 0.015839267522096634, 0.05947119742631912, 0.009244520217180252, 0.021759919822216034, 0.0677187591791153], [0.4537603259086609, 0.054237838834524155, 0.025721164420247078, 0.013679997995495796, 0.003925945609807968, 0.010583984665572643, 0.012050645425915718, 0.0709696039557457, 0.0841531902551651, 0.031178399920463562, 0.0366213321685791, 0.00939774326980114, 0.013918706215918064, 0.06000952422618866, 0.03888501226902008, 0.015090123750269413, 0.06581655889749527], [0.3236851096153259, 0.02184567041695118, 0.030767865478992462, 0.009230084717273712, 0.004454542882740498, 0.0008581345900893211, 0.006186081562191248, 0.045718878507614136, 0.1715051233768463, 0.026558367535471916, 0.005739764776080847, 0.013840556144714355, 0.022642487660050392, 0.12898200750350952, 0.04955184459686279, 0.00797287654131651, 0.1304604709148407], [0.3586571514606476, 0.052442245185375214, 0.012864110060036182, 0.031898707151412964, 0.02906748093664646, 0.014049002900719643, 0.009729764424264431, 0.04979103431105614, 0.08141439408063889, 0.05634895712137222, 0.03208122029900551, 0.0504123829305172, 0.0416836217045784, 0.0623234398663044, 0.03486863896250725, 0.023609913885593414, 0.05875788629055023], [0.3849962651729584, 0.050567422062158585, 0.008055496029555798, 0.043122902512550354, 0.05336153879761696, 0.06670928746461868, 0.050491299480199814, 0.06062683090567589, 0.06767594814300537, 0.017989609390497208, 0.02545297145843506, 0.02230505831539631, 0.022549761459231377, 0.032941050827503204, 0.015017562545835972, 0.034142062067985535, 0.04399494454264641], [0.20832321047782898, 0.06806044280529022, 0.10066117346286774, 0.04903802275657654, 0.03328399732708931, 0.06784899532794952, 0.028927646577358246, 0.0522085539996624, 0.0665426179766655, 0.029269542545080185, 0.026736853644251823, 0.04613800719380379, 0.03177730739116669, 0.04003340005874634, 0.05294112116098404, 0.03267202526330948, 0.06553708016872406], [0.3789955973625183, 0.037152182310819626, 0.010874755680561066, 0.03396500647068024, 0.10259268432855606, 0.026040831580758095, 0.03895583748817444, 0.03963545337319374, 0.04879161715507507, 0.019487779587507248, 0.022791527211666107, 0.05048074573278427, 0.030267665162682533, 0.04473079741001129, 0.026651374995708466, 0.025211097672581673, 0.06337516009807587], [0.45390698313713074, 0.01578161120414734, 0.002659309422597289, 0.015172489918768406, 0.008991020731627941, 0.008198995143175125, 0.006894359830766916, 0.04144832864403725, 0.13062527775764465, 0.012979862280189991, 0.002545648254454136, 0.03083221986889839, 0.009862876497209072, 0.02961386740207672, 0.004422659054398537, 0.012797143310308456, 0.2132674902677536], [0.3126511573791504, 0.013460461981594563, 0.014526115730404854, 0.020325785502791405, 0.005681121721863747, 0.022071555256843567, 0.010904147289693356, 0.05966683477163315, 0.05669712275266647, 0.04932266101241112, 0.02883564680814743, 0.026826994493603706, 0.030788468196988106, 0.03354378789663315, 0.03812219202518463, 0.11195720732212067, 0.16461871564388275], [0.34673619270324707, 0.03479833900928497, 0.015622708946466446, 0.01585078053176403, 0.014937733300030231, 0.02222646400332451, 0.011489885859191418, 0.07666979730129242, 0.09202596545219421, 0.03509227931499481, 0.016312679275870323, 0.03991025313735008, 0.017345959320664406, 0.02898719720542431, 0.02318376488983631, 0.01810690388083458, 0.19070300459861755], [0.265542209148407, 0.01587287336587906, 0.04491280019283295, 0.02040855772793293, 0.005464802961796522, 0.02757847122848034, 0.00884027499705553, 0.04960956797003746, 0.11078210920095444, 0.04792089760303497, 0.01392710953950882, 0.0453949049115181, 0.04636179283261299, 0.004614024423062801, 0.014951920136809349, 0.03140776604413986, 0.24640989303588867], [0.20571383833885193, 0.007481779437512159, 0.025770504027605057, 0.005372941493988037, 0.002211174229159951, 0.005438560154289007, 0.0038994650822132826, 0.021414373070001602, 0.15559138357639313, 0.025036422535777092, 0.008694164454936981, 0.04175138100981712, 0.030951853841543198, 0.008862405084073544, 0.002793996362015605, 0.014308354817330837, 0.4347074031829834], [0.4156606197357178, 0.02930484153330326, 0.026763107627630234, 0.013759997673332691, 0.005073423497378826, 0.013990295119583607, 0.004897473379969597, 0.07260565459728241, 0.04072757810354233, 0.08586188405752182, 0.029238102957606316, 0.03297354653477669, 0.014953672885894775, 0.03236499801278114, 0.01676643267273903, 0.028713183477520943, 0.13634516298770905], [0.1410287767648697, 0.02858312800526619, 0.04393218085169792, 0.014255604706704617, 0.010514345951378345, 0.03033391572535038, 0.009186592884361744, 0.045470479875802994, 0.03081608936190605, 0.0738605409860611, 0.07141443341970444, 0.09754382073879242, 0.07313172519207001, 0.05476999282836914, 0.09293323010206223, 0.05512390658259392, 0.12710124254226685]], [[0.6305399537086487, 0.013836522586643696, 0.0045390864834189415, 0.032936010509729385, 0.007649693172425032, 0.0670883059501648, 0.03395257517695427, 0.1258867084980011, 0.02737734094262123, 0.0010132133029401302, 0.0018573992419987917, 0.0021541041787713766, 0.0021136924624443054, 0.007822198793292046, 0.0014996201498433948, 0.008735890500247478, 0.030997510999441147], [3.2544471650908235e-07, 8.826628800306935e-06, 0.9999598264694214, 9.92667719401652e-06, 2.072483221127186e-05, 8.55941928445958e-10, 2.8486098896385315e-11, 3.9725792100320234e-11, 9.391175836981347e-08, 4.833690336880636e-09, 8.114652416679746e-08, 3.9294722142813043e-08, 7.899159548685475e-09, 3.377479629307345e-09, 5.181800301345962e-12, 4.137807457782472e-11, 1.1337122352017559e-08], [2.529266112105688e-06, 1.9670103768021363e-08, 8.621441338618752e-08, 0.999936580657959, 6.0605616454267874e-05, 5.344023890074823e-08, 4.222052937298548e-13, 4.923435791004405e-12, 2.970525908585486e-11, 1.2886797376009552e-14, 7.766647741602739e-11, 2.4854626801129598e-08, 1.0230869484928462e-08, 5.4494329049248336e-09, 5.6081311469724504e-12, 1.7548589534635561e-12, 8.678625107449989e-08], [6.528964036078833e-08, 8.423086880759989e-12, 1.1022739698773876e-07, 1.9075298496318283e-06, 0.9999896287918091, 8.229199920606334e-06, 7.930240286668777e-08, 2.148528577272657e-11, 5.028918947935779e-11, 8.539821432791466e-19, 2.2222681865264465e-14, 1.9242945778485954e-11, 2.643016472347881e-08, 4.6661735808584126e-08, 3.351308217481447e-13, 4.0474795823947085e-13, 4.61706922694205e-10], [1.5617771964571148e-08, 6.323242575162133e-14, 3.3915491942648757e-13, 8.867329626127685e-08, 2.841474997694604e-05, 0.9999475479125977, 2.3323991626966745e-05, 3.7015877296653343e-07, 2.314658339129527e-13, 2.1867818424894936e-20, 2.5121741775112543e-20, 2.0662504774662457e-15, 6.958709303228616e-11, 1.9743777102121385e-07, 7.65698615623478e-12, 5.523978559188007e-14, 3.5566189750257937e-13], [1.6909840194756498e-09, 2.017942917934912e-15, 2.488679191382532e-14, 1.3938886835398751e-14, 2.899916751175624e-09, 6.724070544805727e-08, 0.9999951124191284, 4.743439149024198e-06, 3.368182532881292e-08, 2.253982350882471e-20, 3.780881693350748e-18, 8.838211587627427e-21, 7.180966391111851e-16, 1.1499171061158612e-14, 8.49888031045215e-13, 1.0084179314067548e-13, 1.2828998930888846e-12], [8.437435212726996e-07, 8.693154160931138e-13, 1.5337625931350092e-17, 1.3982279486253642e-14, 4.0529874310748885e-15, 2.1671358751973457e-07, 2.492410544618906e-07, 0.9999982118606567, 4.201515366730746e-07, 6.335293990529078e-15, 1.1928601007625873e-18, 6.8868317765386e-19, 5.350111557764377e-17, 9.068647796681845e-14, 3.39397319927201e-13, 8.036672022315727e-11, 1.1925148368785443e-10], [5.5076153415711815e-08, 2.177206326337e-08, 9.0482942319281e-12, 3.8809450444987625e-14, 1.2180908408668256e-13, 4.118511087725096e-12, 8.705407950060362e-09, 3.216765253455378e-05, 0.9999666213989258, 1.0836401997948997e-06, 8.793723083044824e-09, 2.01036849521068e-14, 8.753855116911541e-14, 4.725474839987337e-15, 2.1649178283400516e-10, 3.1397637267893685e-10, 1.7409753638730763e-07], [0.5838304758071899, 8.245188837463502e-06, 5.752878173836962e-09, 4.666404151976167e-07, 1.2834948381890143e-11, 1.9467684353458026e-07, 6.317766865215901e-10, 0.3820224106311798, 0.03408528119325638, 3.852992449537851e-05, 5.320953277987428e-07, 3.422514538442556e-08, 1.5867980540651416e-11, 2.715362101834984e-10, 7.599941726291193e-13, 4.6943437581603575e-08, 1.3796115126751829e-05], [5.7256761831769865e-11, 1.8177569172106445e-10, 2.320407865852303e-08, 1.9377555116051326e-13, 7.127991637689499e-14, 1.1056474761007952e-19, 3.0347051741929764e-16, 1.8008803490473938e-15, 2.052946079800222e-08, 1.1948851863508025e-07, 0.9999997615814209, 6.417320719265263e-08, 3.2937383931397335e-09, 1.0746659579279603e-15, 2.168013227507614e-15, 1.2004500329578687e-16, 7.927677264651933e-11], [5.323220086950187e-09, 6.389700990538927e-10, 1.1875632921487522e-08, 6.567087496023305e-08, 7.4326997464777e-13, 1.0223632107998065e-13, 1.396551258652239e-18, 4.96227841803587e-13, 5.323364579007395e-12, 1.3880400729249232e-05, 1.3954622772871517e-05, 0.9999696016311646, 1.5996496358638979e-06, 8.27448502604966e-07, 8.824906781626073e-15, 9.99509177680713e-14, 3.980321714586177e-12], [1.0771421976585316e-08, 2.2003044189162352e-13, 4.632805944426721e-11, 3.28119337256183e-11, 1.0404080263981541e-08, 1.0850452751998835e-13, 2.6929064159104217e-15, 1.3330198795106444e-14, 3.765587668069781e-12, 1.8014880951870487e-15, 1.2126700532633095e-08, 4.563944457913749e-07, 0.9999938011169434, 5.748093826696277e-06, 1.5238370565384685e-08, 5.5693774922817643e-14, 3.1981927522961584e-11], [2.493611077625246e-07, 5.299155211857531e-13, 1.1903275587421547e-10, 1.0880147893743697e-09, 2.4969566345123262e-11, 1.0324902710578954e-08, 9.77908119065285e-12, 2.6851383339021595e-09, 1.4394319341071854e-13, 8.082797499614058e-15, 8.797089711418474e-14, 8.566816518396081e-07, 2.876574217225425e-05, 0.9999667406082153, 3.191944188074558e-06, 7.299175308617123e-08, 1.6584279088904808e-11], [1.8986388568009716e-06, 4.610718404296499e-11, 8.233835835369518e-11, 6.760743007094838e-12, 2.851810787518616e-09, 3.964778783061007e-10, 5.249689394304369e-08, 7.894102260763702e-09, 4.00809740952468e-09, 7.450815735634902e-16, 1.330946854463666e-12, 1.93652090890728e-11, 4.107371933059767e-05, 2.728472463786602e-05, 0.9999278783798218, 8.492663710057968e-07, 1.0446374290040694e-06], [4.469578414045827e-07, 1.1075131263471594e-11, 1.7032422694462923e-10, 3.0387373173290655e-11, 2.393469808199128e-13, 4.0017472842379664e-12, 3.5182193963700925e-11, 6.130878205112822e-07, 5.783045708973589e-10, 4.425728175865701e-13, 3.0584430607815414e-15, 1.8709970638769446e-12, 2.0804634057181026e-12, 1.3181132771933335e-06, 9.937001595972106e-05, 0.9998906850814819, 7.522501164203277e-06], [1.853988942457363e-05, 4.939836912853934e-07, 2.486839179027811e-08, 1.2427006090831583e-08, 2.9399421563880423e-08, 2.0895420116406882e-10, 9.624123720186617e-11, 2.476693907738081e-07, 2.7553328436624724e-06, 1.415863315479271e-09, 1.935891624782471e-08, 2.0340838735588562e-10, 1.3260680331583785e-09, 2.5515767276829138e-09, 1.687538497208152e-05, 0.0003194334567524493, 0.9996415376663208], [0.9719346761703491, 5.504319777749345e-10, 1.4860255248549947e-08, 3.1344953299594636e-07, 2.6074937764519746e-08, 5.130862632540811e-07, 7.049874017894808e-10, 0.0012406272580847144, 1.2392702046781778e-06, 5.849731289642168e-12, 4.020725592746022e-12, 2.213971894704514e-09, 3.5863485792209104e-11, 9.381442822586905e-08, 4.217634574921192e-11, 7.109285797923803e-05, 0.02675137110054493]], [[0.5532012581825256, 0.056342318654060364, 0.03966352343559265, 0.03867947682738304, 0.03004496358335018, 0.01268330030143261, 0.010136581026017666, 0.07777208089828491, 0.03803224116563797, 0.03220519796013832, 0.017286520451307297, 0.020977260544896126, 0.018596161156892776, 0.005839972291141748, 0.007870838046073914, 0.004911614581942558, 0.035756729543209076], [0.5323253870010376, 0.1547735184431076, 0.06920365989208221, 0.07850660383701324, 0.027272718027234077, 0.02668316662311554, 0.011791568249464035, 0.06699660420417786, 0.0019511543214321136, 0.004935264587402344, 0.0031958685722202063, 0.010602833703160286, 0.003001566743478179, 0.0025491933338344097, 0.00433856388553977, 0.0014863472897559404, 0.00038601586129516363], [0.8686466217041016, 0.019428841769695282, 0.038878124207258224, 0.015753012150526047, 0.004335517063736916, 0.005629232153296471, 0.0017180751310661435, 0.029525702819228172, 0.0025612516328692436, 0.0016666437732055783, 0.0005319021875038743, 0.003815141972154379, 0.0020704681519418955, 0.000967944273725152, 0.003187979105859995, 0.0005086196470074356, 0.0007750251097604632], [0.5975949168205261, 0.19521313905715942, 0.053961459547281265, 0.045708246529102325, 0.011879975907504559, 0.00916756596416235, 0.006334370467811823, 0.04775369539856911, 0.007359594572335482, 0.011753327213227749, 0.002259613713249564, 0.005855126306414604, 0.001898201066069305, 0.0008690456161275506, 0.00139363924972713, 0.00034822712768800557, 0.0006498877773992717], [0.5984036326408386, 0.16447636485099792, 0.07010787725448608, 0.0465536043047905, 0.01334342174232006, 0.028260599821805954, 0.0049822828732430935, 0.035501059144735336, 0.006532648112624884, 0.011454530991613865, 0.0021471695508807898, 0.009114529006183147, 0.002691093599423766, 0.0015645851381123066, 0.003315793350338936, 0.00044704400352202356, 0.0011036875657737255], [0.45495522022247314, 0.16411268711090088, 0.19026070833206177, 0.06585612148046494, 0.012993479147553444, 0.029177438467741013, 0.004995911847800016, 0.0324215330183506, 0.006586913485080004, 0.01298792939633131, 0.004090048372745514, 0.006424514576792717, 0.004632594529539347, 0.0026550579350441694, 0.006023467984050512, 0.0009622133802622557, 0.0008641633321531117], [0.28162336349487305, 0.3457529544830322, 0.05234357714653015, 0.16156591475009918, 0.017905384302139282, 0.01776779815554619, 0.0077798920683562756, 0.05413322150707245, 0.016239142045378685, 0.01777135580778122, 0.009227383881807327, 0.009185978211462498, 0.003163370070978999, 0.0014642621390521526, 0.0018090787343680859, 0.0009410274215042591, 0.0013262118445709348], [0.07252369821071625, 0.33544278144836426, 0.0365300178527832, 0.37979522347450256, 0.042211804538965225, 0.016170253977179527, 0.013714698143303394, 0.02604314312338829, 0.023853445425629616, 0.020088205114006996, 0.014628589153289795, 0.006271610502153635, 0.0045039597898721695, 0.0015506271738559008, 0.0010628878371790051, 0.0034001225139945745, 0.002208855701610446], [0.6320256590843201, 0.08633964508771896, 0.008443334139883518, 0.07852686196565628, 0.01582266390323639, 0.00956010352820158, 0.004057909362018108, 0.07843121141195297, 0.06210179254412651, 0.006691532675176859, 0.001426843460649252, 0.00310129695571959, 0.0020541688427329063, 0.0004347480717115104, 0.0006546744261868298, 0.0006432244554162025, 0.00968436524271965], [0.23085694015026093, 0.07901652902364731, 0.0645921379327774, 0.0934542715549469, 0.04598722606897354, 0.1489679217338562, 0.04005139693617821, 0.12916989624500275, 0.02290383353829384, 0.022896751761436462, 0.011736011132597923, 0.030091075226664543, 0.03087509050965309, 0.00888113770633936, 0.024554667994379997, 0.008588316850364208, 0.007376732304692268], [0.1282517910003662, 0.11970190703868866, 0.27546557784080505, 0.09645581245422363, 0.04303727671504021, 0.0486985482275486, 0.022267837077379227, 0.05544966831803322, 0.07754463702440262, 0.05268087610602379, 0.023234298452734947, 0.011116155423223972, 0.008284005336463451, 0.0012907807249575853, 0.0025822781026363373, 0.0030365316197276115, 0.030902013182640076], [0.33594632148742676, 0.05082051455974579, 0.034456152468919754, 0.041202712804079056, 0.02625332958996296, 0.050550829619169235, 0.03423580154776573, 0.11713456362485886, 0.04542499780654907, 0.0589926615357399, 0.03870860114693642, 0.05600952357053757, 0.024603791534900665, 0.011302357539534569, 0.03366320580244064, 0.011313531547784805, 0.02938108891248703], [0.20553381741046906, 0.04091273993253708, 0.05387537181377411, 0.025915907695889473, 0.01745276339352131, 0.1117686778306961, 0.026041816920042038, 0.07533708959817886, 0.06065702438354492, 0.1711287945508957, 0.05339708924293518, 0.02752782590687275, 0.04059211164712906, 0.007898414507508278, 0.042110152542591095, 0.011627224273979664, 0.028223125264048576], [0.29132547974586487, 0.0369611531496048, 0.05475737527012825, 0.03387456014752388, 0.011047767475247383, 0.07499942183494568, 0.01242034137248993, 0.10257245600223541, 0.07453318685293198, 0.09770908206701279, 0.06522975862026215, 0.03083605132997036, 0.022121315822005272, 0.010094229131937027, 0.03254052624106407, 0.023675458505749702, 0.025301793590188026], [0.2768704295158386, 0.02269923686981201, 0.03997763991355896, 0.03999859094619751, 0.006118018180131912, 0.03502439334988594, 0.006715311668813229, 0.04550514370203018, 0.08470675349235535, 0.13390134274959564, 0.10613492131233215, 0.03660736605525017, 0.04226221516728401, 0.01067965105175972, 0.045506808906793594, 0.035594116896390915, 0.03169797360897064], [0.09087251871824265, 0.07790589332580566, 0.008259941823780537, 0.050263792276382446, 0.0015010599745437503, 0.0023647723719477654, 0.0071073430590331554, 0.0640711635351181, 0.09053955972194672, 0.2986242473125458, 0.10834836214780807, 0.060008931905031204, 0.013476907275617123, 0.005045268218964338, 0.005938520189374685, 0.08591532707214355, 0.02975630760192871], [0.4310072064399719, 0.017707297578454018, 0.0019878328312188387, 0.007371167652308941, 0.0017849261639639735, 0.0016633382765576243, 0.0014728197129443288, 0.08371250331401825, 0.11660407483577728, 0.04978698492050171, 0.010989846661686897, 0.02566334418952465, 0.018260207027196884, 0.0032570993062108755, 0.005942781921476126, 0.008940869010984898, 0.21384775638580322]], [[0.4138449430465698, 0.015741320326924324, 0.03365154564380646, 0.022843606770038605, 0.015682043507695198, 0.010899519547820091, 0.0066413069143891335, 0.19493958353996277, 0.09664005041122437, 0.006038829684257507, 0.014062641188502312, 0.005369545891880989, 0.007208073511719704, 0.014250769279897213, 0.013415188528597355, 0.016677482053637505, 0.11209353059530258], [0.38431495428085327, 0.053014714270830154, 0.0372779555618763, 0.012496811337769032, 0.005788793321698904, 0.0037077544257044792, 0.0134745417162776, 0.07773943990468979, 0.1278482973575592, 0.009027216583490372, 0.0709308311343193, 0.01932387799024582, 0.0035592385102063417, 0.012192214839160442, 0.02046065591275692, 0.006793126463890076, 0.14204955101013184], [0.34350141882896423, 0.13274376094341278, 0.002483364660292864, 0.014857056550681591, 0.000526853313203901, 0.0014163340674713254, 0.002856469713151455, 0.020499447360634804, 0.2057843953371048, 0.005792947486042976, 0.03025529906153679, 0.012564677745103836, 0.0027609115932136774, 0.009033207781612873, 0.03158942982554436, 0.0019602493848651648, 0.18137414753437042], [0.42395320534706116, 0.02319582924246788, 0.01924785226583481, 0.0210964847356081, 0.005129100289195776, 0.00829885434359312, 0.008690069429576397, 0.12591443955898285, 0.1475519984960556, 0.003959733992815018, 0.02188599668443203, 0.0051724594086408615, 0.0031703878194093704, 0.01515312772244215, 0.010491645894944668, 0.0176838431507349, 0.1394050270318985], [0.38901641964912415, 0.02602742798626423, 0.008820665068924427, 0.006004012189805508, 0.0006900631124153733, 0.004542734939604998, 0.008454530499875546, 0.14808832108974457, 0.12141386419534683, 0.01639496348798275, 0.0512174554169178, 0.013398749753832817, 0.0035529788583517075, 0.00910888146609068, 0.0059879012405872345, 0.016754763200879097, 0.17052622139453888], [0.2766445279121399, 0.020056121051311493, 0.006883652415126562, 0.015231121331453323, 0.006841578520834446, 0.005508384667336941, 0.007430134806782007, 0.13110877573490143, 0.17385096848011017, 0.0381644070148468, 0.012454668059945107, 0.023148326203227043, 0.0053474814631044865, 0.006028864532709122, 0.006741642020642757, 0.02624371461570263, 0.238315612077713], [0.4422587454319, 0.01684163697063923, 0.023267410695552826, 0.016402849927544594, 0.009863986633718014, 0.02482590824365616, 0.004770989995449781, 0.09477363526821136, 0.13843879103660583, 0.01664751023054123, 0.011707759462296963, 0.005985583644360304, 0.008532466366887093, 0.013245580717921257, 0.0024772812612354755, 0.0345623753964901, 0.1353975534439087], [0.30784881114959717, 0.026232510805130005, 0.02758960612118244, 0.023647038266062737, 0.023645328357815742, 0.03204881772398949, 0.010660781525075436, 0.1672738492488861, 0.11527412384748459, 0.03180953115224838, 0.02256588079035282, 0.018395451828837395, 0.010827098973095417, 0.019151100888848305, 0.010898242704570293, 0.03597255423665047, 0.11615926027297974], [0.26737070083618164, 0.034848008304834366, 0.049771130084991455, 0.020302241668105125, 0.02331160381436348, 0.02999437041580677, 0.017250830307602882, 0.13247382640838623, 0.10412835329771042, 0.02380506694316864, 0.03607712313532829, 0.028966717422008514, 0.012602908536791801, 0.0405997633934021, 0.03566276282072067, 0.023394886404275894, 0.11943970620632172], [0.5043638348579407, 0.016932670027017593, 0.008245646022260189, 0.006345541216433048, 0.0009906567865982652, 0.03009425848722458, 0.0033600369933992624, 0.12765026092529297, 0.10511456429958344, 0.00573089299723506, 0.007566092070192099, 0.005431079771369696, 0.0039748540148139, 0.009804329834878445, 0.002913386793807149, 0.025998499244451523, 0.13548336923122406], [0.35094520449638367, 0.07002949714660645, 0.12524306774139404, 0.012268456630408764, 0.001154200523160398, 0.0026767258532345295, 0.00676990021020174, 0.04833091422915459, 0.13776424527168274, 0.006380574777722359, 0.020968908444046974, 0.01368224062025547, 0.0021789059974253178, 0.008229621686041355, 0.019149748608469963, 0.00503916060552001, 0.1691886931657791], [0.4991609752178192, 0.021227175369858742, 0.00974359828978777, 0.010730346664786339, 0.0035101138055324554, 0.009130558930337429, 0.0062627410516142845, 0.10980536043643951, 0.08349296450614929, 0.010036390274763107, 0.013500472530722618, 0.013146622106432915, 0.00506865419447422, 0.015606503002345562, 0.01366911455988884, 0.03025282733142376, 0.14565566182136536], [0.39485251903533936, 0.023475006222724915, 0.01934136636555195, 0.008097521960735321, 0.007284289691597223, 0.017216060310602188, 0.00793531071394682, 0.10830052942037582, 0.10288619995117188, 0.025159185752272606, 0.027027929201722145, 0.027973327785730362, 0.0016620683018118143, 0.009480061940848827, 0.0039490219205617905, 0.03490174189209938, 0.18045787513256073], [0.427371084690094, 0.03612156957387924, 0.04242260754108429, 0.010294396430253983, 0.0015864993911236525, 0.003012707456946373, 0.0020101952832192183, 0.133174329996109, 0.1150854080915451, 0.004156491719186306, 0.004465759266167879, 0.012106796726584435, 0.004197671543806791, 0.0010049620177596807, 0.004214158747345209, 0.009791282936930656, 0.18898402154445648], [0.47293442487716675, 0.03314460813999176, 0.11235389858484268, 0.006988054141402245, 0.0012328291777521372, 0.00203191046603024, 0.001444853376597166, 0.057328660041093826, 0.0915064886212349, 0.0036947508342564106, 0.028842154890298843, 0.010896248742938042, 0.0035786530934274197, 0.005213903728872538, 0.003508517052978277, 0.006610180716961622, 0.15868982672691345], [0.5206713676452637, 0.010389503091573715, 0.00975318904966116, 0.007274043280631304, 0.0034937274176627398, 0.008816676214337349, 0.0031152693554759026, 0.13774576783180237, 0.08495666086673737, 0.008318630047142506, 0.0063333227299153805, 0.005276515148580074, 0.004300032742321491, 0.01400899887084961, 0.005900728050619364, 0.03782959282398224, 0.13181596994400024], [0.21432632207870483, 0.02852623723447323, 0.04401789605617523, 0.012210087850689888, 0.021547358483076096, 0.033439669758081436, 0.0158374086022377, 0.11682895570993423, 0.0819961205124855, 0.04150250554084778, 0.03269922733306885, 0.04594351723790169, 0.01914278231561184, 0.06390050798654556, 0.05484634265303612, 0.03425178676843643, 0.138983353972435]], [[0.286782443523407, 0.11950644850730896, 0.07631204277276993, 0.04265960678458214, 0.03633423149585724, 0.10302546620368958, 0.024834631010890007, 0.05489618703722954, 0.23462238907814026, 0.0021968164946883917, 0.002057985169813037, 0.0007947196718305349, 0.002507756231352687, 0.00151840690523386, 0.0021910627838224173, 0.0011357461335137486, 0.008624030277132988], [0.03478582948446274, 0.03113018162548542, 0.017365338280797005, 0.15052133798599243, 0.08781075477600098, 0.14323875308036804, 0.130378857254982, 0.10430116951465607, 0.2626897394657135, 0.007864793762564659, 0.006434972397983074, 0.0027722869999706745, 0.003984807059168816, 0.002128488151356578, 0.0019014875870198011, 0.0064744604751467705, 0.006216733250766993], [0.3390771150588989, 0.08934470266103745, 0.024043571203947067, 0.016423728317022324, 0.04631766676902771, 0.1507132202386856, 0.04646822065114975, 0.08614522218704224, 0.15007032454013824, 0.012368574738502502, 0.0034732106141746044, 0.00234759203158319, 0.006303110159933567, 0.0037920058239251375, 0.004264255985617638, 0.0030035923700779676, 0.015843791887164116], [0.052080072462558746, 0.05866844579577446, 0.010263591073453426, 0.028599200770258904, 0.01862446218729019, 0.06299461424350739, 0.12307022511959076, 0.16749276220798492, 0.4332520067691803, 0.019116826355457306, 0.008781783282756805, 0.0007888870895840228, 0.002466844627633691, 0.002778966212645173, 0.0029416296165436506, 0.004267221782356501, 0.0038125175051391125], [0.22408659756183624, 0.08363652229309082, 0.014496050775051117, 0.010944507084786892, 0.013982304371893406, 0.08459407091140747, 0.05463037267327309, 0.15326762199401855, 0.29476168751716614, 0.03884619101881981, 0.007844607345759869, 0.001682354835793376, 0.0062625776045024395, 0.0018393936334177852, 0.003886400256305933, 0.0013151189778000116, 0.0039236280135810375], [0.19019478559494019, 0.15248160064220428, 0.056798193603754044, 0.02988666109740734, 0.05498085170984268, 0.11691134423017502, 0.04486076161265373, 0.10599389672279358, 0.12796634435653687, 0.0610201470553875, 0.017916876822710037, 0.008008237928152084, 0.01611694134771824, 0.004397506359964609, 0.007689605467021465, 0.002148750936612487, 0.0026276055723428726], [0.25588855147361755, 0.08099603652954102, 0.021259302273392677, 0.03044278733432293, 0.024179581552743912, 0.03296676650643349, 0.021636776626110077, 0.10443328320980072, 0.33520951867103577, 0.033265646547079086, 0.021807251498103142, 0.005573037546128035, 0.016317183151841164, 0.002520807785913348, 0.004758956376463175, 0.003464784473180771, 0.005279782693833113], [0.37115785479545593, 0.047299884259700775, 0.03770899400115013, 0.06030043587088585, 0.01998249441385269, 0.024084556847810745, 0.014646393246948719, 0.07542679458856583, 0.2001403570175171, 0.020905308425426483, 0.024684112519025803, 0.015228666365146637, 0.02734709344804287, 0.008885354734957218, 0.008785221725702286, 0.01299190055578947, 0.0304245725274086], [0.7695024609565735, 0.07120281457901001, 0.015925290063023567, 0.022137219086289406, 0.014115013182163239, 0.023239165544509888, 0.004949232563376427, 0.026149947196245193, 0.047435663640499115, 0.0007462466601282358, 0.0007108491845428944, 0.0004665984015446156, 0.0011221858439967036, 0.0004872485587839037, 0.0009618697222322226, 0.00016233728092629462, 0.0006858899141661823], [0.040177635848522186, 0.011777853593230247, 0.00882011465728283, 0.00946364738047123, 0.0060194083489477634, 0.010014758445322514, 0.004903868306428194, 0.018616097047924995, 0.007628618273884058, 0.10744603723287582, 0.039328381419181824, 0.1349569708108902, 0.16136221587657928, 0.17022734880447388, 0.13179045915603638, 0.07792867720127106, 0.0595378540456295], [0.01629234105348587, 0.003257130505517125, 0.0015530172968283296, 0.0035128684248775244, 0.0011220216983929276, 0.0021341063547879457, 0.00177157879807055, 0.007710831239819527, 0.01232178881764412, 0.06596345454454422, 0.03152703121304512, 0.040847454220056534, 0.15142947435379028, 0.07753805816173553, 0.0822928249835968, 0.3578556478023529, 0.14287038147449493], [0.013855875469744205, 0.0011795697500929236, 0.00026888184947893023, 0.0020687340293079615, 0.0010019063483923674, 0.00087642582366243, 0.0027233404107391834, 0.011062778532505035, 0.01919359713792801, 0.024951240047812462, 0.015221133828163147, 0.020050378516316414, 0.090317003428936, 0.02660798653960228, 0.06543386727571487, 0.3014267683029175, 0.4037605822086334], [0.054893068969249725, 0.0035071270540356636, 0.0021123187616467476, 0.0021527493372559547, 0.004635155200958252, 0.0074526164680719376, 0.006016239989548922, 0.021458428353071213, 0.02080330066382885, 0.09324057400226593, 0.01634977012872696, 0.028369002044200897, 0.08609074354171753, 0.027643563225865364, 0.1378137469291687, 0.15092359483242035, 0.3365379869937897], [0.1645633727312088, 0.008548017591238022, 0.006314827129244804, 0.0009620448108762503, 0.007869841530919075, 0.016559472307562828, 0.005200117826461792, 0.028820451349020004, 0.014559376053512096, 0.04273388907313347, 0.013541302643716335, 0.02769191935658455, 0.08493060618638992, 0.04111301898956299, 0.19647634029388428, 0.03953726217150688, 0.30057811737060547], [0.0799129530787468, 0.003807197557762265, 0.0013913738075643778, 0.000612870731856674, 0.0028853504918515682, 0.004616248421370983, 0.0018951261881738901, 0.01443276647478342, 0.01165806595236063, 0.03810675069689751, 0.010126357898116112, 0.053033169358968735, 0.1087128072977066, 0.02350315824151039, 0.06834524869918823, 0.036916334182024, 0.5400442481040955], [0.39095842838287354, 0.009962277486920357, 0.005361276213079691, 0.0020259995944797993, 0.004664258565753698, 0.007697983644902706, 0.005258324556052685, 0.060813479125499725, 0.019274108111858368, 0.044102929532527924, 0.013267609290778637, 0.036611706018447876, 0.06056676059961319, 0.047042496502399445, 0.06756952404975891, 0.010702383704483509, 0.2141205221414566], [0.7488322257995605, 0.019327891990542412, 0.007191813085228205, 0.004411950241774321, 0.0054576643742620945, 0.010101336985826492, 0.0029121648985892534, 0.03804980590939522, 0.015733148902654648, 0.012820535339415073, 0.009147114120423794, 0.010628257878124714, 0.024415597319602966, 0.01105279941111803, 0.01260040607303381, 0.007642004173249006, 0.05967523902654648]], [[0.4112699329853058, 0.006541939917951822, 0.02332466095685959, 0.02276770770549774, 0.02225331962108612, 0.03796745464205742, 0.004989867564290762, 0.009168654680252075, 0.00970390159636736, 0.03240775316953659, 0.04215411841869354, 0.0317578949034214, 0.09039811044931412, 0.02919706143438816, 0.07500243186950684, 0.06916675716638565, 0.08192838728427887], [0.22945763170719147, 0.020674921572208405, 0.0797308161854744, 0.10179751366376877, 0.11564330756664276, 0.29135334491729736, 0.016323914751410484, 0.028985261917114258, 0.05532391369342804, 0.007606500294059515, 0.004138293210417032, 0.0018948618089780211, 0.01900690607726574, 0.002498459303751588, 0.005057576112449169, 0.0066720847971737385, 0.013834607787430286], [0.7307668328285217, 0.027968106791377068, 0.0050850496627390385, 0.01716719940304756, 0.015816666185855865, 0.011446071788668633, 0.004138565622270107, 0.02189067378640175, 0.08811809122562408, 0.0034374678507447243, 0.001880038995295763, 0.003780041355639696, 0.005703059025108814, 0.006435824558138847, 0.0048405989073216915, 0.005694309249520302, 0.04583141952753067], [0.09374886006116867, 0.011991279199719429, 0.07913437485694885, 0.01592109352350235, 0.1669420301914215, 0.3696483075618744, 0.05733688920736313, 0.012812071479856968, 0.024349208921194077, 0.027165934443473816, 0.0037199168000370264, 0.0040178969502449036, 0.08545336872339249, 0.006317549850791693, 0.03306496515870094, 0.002056002151221037, 0.006320246960967779], [0.06328000128269196, 0.02153896540403366, 0.0394800640642643, 0.09025799483060837, 0.052132051438093185, 0.3809486925601959, 0.15937446057796478, 0.017447615042328835, 0.0526924803853035, 0.009289161302149296, 0.0017756182933226228, 0.00933381263166666, 0.03767690435051918, 0.006524651311337948, 0.037689078599214554, 0.011168084107339382, 0.009390389546751976], [0.07619411498308182, 0.04668833687901497, 0.06802711635828018, 0.13332922756671906, 0.13175615668296814, 0.07951398938894272, 0.10803163051605225, 0.01928500086069107, 0.1472310870885849, 0.023561041802167892, 0.002295850310474634, 0.006923544220626354, 0.049914032220840454, 0.010081931948661804, 0.062146540731191635, 0.012490381486713886, 0.02252999134361744], [0.016898347064852715, 0.015739023685455322, 0.017490092664957047, 0.1362493485212326, 0.25357428193092346, 0.41659215092658997, 0.012602162547409534, 0.007041164208203554, 0.025470763444900513, 0.006369700189679861, 0.002861456712707877, 0.012836974114179611, 0.03677951917052269, 0.020078064873814583, 0.012934664264321327, 0.0032085878774523735, 0.0032736302819103003], [0.5225013494491577, 0.07134781777858734, 0.005588449537754059, 0.059401046484708786, 0.040952008217573166, 0.015175732783973217, 0.0037966424133628607, 0.09752402454614639, 0.07115839421749115, 0.0077368044294416904, 0.03836851567029953, 0.010419495403766632, 0.009051177650690079, 0.011220301501452923, 0.001824891776777804, 0.009759859181940556, 0.024173462763428688], [0.7201520800590515, 0.043823327869176865, 0.003056393237784505, 0.013115474954247475, 0.0053733098320662975, 0.008851438760757446, 0.0026200308930128813, 0.09460372477769852, 0.03894883021712303, 0.004689762368798256, 0.014173009432852268, 0.00405072420835495, 0.0035712451208382845, 0.004917531739920378, 0.001998207764700055, 0.0056523410603404045, 0.030402589589357376], [0.03382587060332298, 0.005434365943074226, 0.007368527818471193, 0.023056980222463608, 0.07135003805160522, 0.055074676871299744, 0.028218988329172134, 0.024087920784950256, 0.024329189211130142, 0.020504456013441086, 0.051856253296136856, 0.02893981710076332, 0.3946288824081421, 0.09154099971055984, 0.06204678490757942, 0.038077302277088165, 0.039658959954977036], [0.038030121475458145, 0.0018306365236639977, 0.013132622465491295, 0.00721894484013319, 0.030249886214733124, 0.030445067211985588, 0.012572926469147205, 0.00420461967587471, 0.011860285885632038, 0.0769314393401146, 0.019943565130233765, 0.02215023897588253, 0.5025283694267273, 0.046040091663599014, 0.13195335865020752, 0.024824930354952812, 0.026082901284098625], [0.005298695061355829, 0.0002978661796078086, 0.0008504229481332004, 0.001166683272458613, 0.005232213530689478, 0.006284206174314022, 0.010548950172960758, 0.0008126021130010486, 0.0016021537594497204, 0.004913864657282829, 0.00233283918350935, 0.0013138775248080492, 0.7574101090431213, 0.07086969912052155, 0.11138981580734253, 0.0130922207608819, 0.006583706475794315], [0.019848834723234177, 0.002248481148853898, 0.0037914998829364777, 0.009388803504407406, 0.0028502782806754112, 0.02107577584683895, 0.004424565471708775, 0.0009037400595843792, 0.015565553680062294, 0.008854358457028866, 0.009282254613935947, 0.03747599571943283, 0.14675316214561462, 0.13725405931472778, 0.46554484963417053, 0.07357750833034515, 0.04116031900048256], [0.04542720690369606, 0.0028814810793846846, 0.00680811470374465, 0.0019958368502557278, 0.00218284223228693, 0.001577401184476912, 0.01439460925757885, 0.0017413819441571832, 0.016353832557797432, 0.01609358936548233, 0.01310602854937315, 0.02185835689306259, 0.10493607819080353, 0.025696326047182083, 0.6175658106803894, 0.028523258864879608, 0.07885778695344925], [0.18546532094478607, 0.002832588739693165, 0.0023552849888801575, 0.0015924728941172361, 0.0019927071407437325, 0.007191985845565796, 0.0030983237084001303, 0.0014784990344196558, 0.025159573182463646, 0.008007493801414967, 0.005296161863952875, 0.009536121971905231, 0.16916759312152863, 0.2546636462211609, 0.0654492974281311, 0.02887144312262535, 0.22784152626991272], [0.05343467369675636, 0.0038337851874530315, 0.008542964234948158, 0.0019821568857878447, 0.017770718783140182, 0.01338198035955429, 0.00743396021425724, 0.006312246900051832, 0.0167104322463274, 0.046326179057359695, 0.09114386141300201, 0.03134696185588837, 0.37953370809555054, 0.08949685096740723, 0.10434731841087341, 0.008043899200856686, 0.12035825848579407], [0.6858828663825989, 0.005098638124763966, 0.0004517739580478519, 0.0009559339960105717, 0.00030007469467818737, 0.0008140559657476842, 0.00018304097466170788, 0.03445791080594063, 0.009159702807664871, 0.003716467646881938, 0.016210664063692093, 0.005639155860990286, 0.0035289255902171135, 0.008525787852704525, 0.0034673099871724844, 0.01348100509494543, 0.2081267386674881]], [[0.7454310059547424, 0.023761693388223648, 0.003255219431594014, 0.022921547293663025, 0.01218433491885662, 0.0024156144354492426, 0.013529102317988873, 0.026090769097208977, 0.06894727796316147, 0.018017960712313652, 0.0027146367356181145, 0.00639007706195116, 0.0030325057450681925, 0.0018426241585984826, 0.003650534898042679, 0.015466910786926746, 0.030348103493452072], [0.7644087076187134, 0.10793653875589371, 0.0046956646256148815, 0.006380660459399223, 0.0054332055151462555, 0.00211281212978065, 0.0014909531455487013, 0.012437206692993641, 0.06100831925868988, 0.007382468320429325, 0.0016343558672815561, 0.0013618385419249535, 0.0012899088906124234, 0.0003206930705346167, 0.0010767277562990785, 0.0010599680244922638, 0.019969919696450233], [0.6263486742973328, 0.04645629972219467, 0.23294302821159363, 0.005369207821786404, 0.0010211096378043294, 0.0009457694832235575, 0.0003134069265797734, 0.007978001609444618, 0.04452388733625412, 0.0031423652544617653, 0.0018346847500652075, 0.0006665418623015285, 0.0002872981713153422, 0.00023165806487668306, 0.0016010282561182976, 0.001039514783769846, 0.025297556072473526], [0.6000315546989441, 0.03173704817891121, 0.0017599010607227683, 0.20251692831516266, 0.0069443294778466225, 0.0005679914029315114, 0.003230038098990917, 0.011964483186602592, 0.06734354048967361, 0.016813602298498154, 0.01274928916245699, 0.0047269416972994804, 0.0009576157317496836, 0.00033305323449894786, 0.0006615793099626899, 0.014093714766204357, 0.02356833405792713], [0.6242268085479736, 0.019113929942250252, 0.0005189512157812715, 0.007207277696579695, 0.2535454034805298, 0.003649613820016384, 0.010663324035704136, 0.0037125758826732635, 0.03419102728366852, 0.009160098619759083, 0.0008684711065143347, 0.003681628266349435, 0.004689417779445648, 0.0008745684172026813, 0.0012711231829598546, 0.0012352277990430593, 0.021390443667769432], [0.611883282661438, 0.023905223235487938, 0.005256030708551407, 0.0039953733794391155, 0.021683868020772934, 0.20945993065834045, 0.005543800536543131, 0.011983480304479599, 0.04765421897172928, 0.024897560477256775, 0.0017804787494242191, 0.001103617250919342, 0.0053433929570019245, 0.002078966936096549, 0.0012750972528010607, 0.0021715799812227488, 0.019984012469649315], [0.3935457170009613, 0.008486141450703144, 0.0004028867988381535, 0.0174289271235466, 0.021901069208979607, 0.0023701621685177088, 0.4826660752296448, 0.004353047348558903, 0.02093913033604622, 0.010180255398154259, 0.0016431808471679688, 0.010159194469451904, 0.006031869910657406, 0.0005958513356745243, 0.0017177504487335682, 0.004697853699326515, 0.0128809604793787], [0.6028467416763306, 0.03769001364707947, 0.028475457802414894, 0.03120230883359909, 0.018437113612890244, 0.013266599737107754, 0.01148221269249916, 0.06290264427661896, 0.0769723653793335, 0.04021906480193138, 0.010503670200705528, 0.003980573732405901, 0.006058174651116133, 0.0021799185778945684, 0.006940903607755899, 0.016928203403949738, 0.029913997277617455], [0.7800852656364441, 0.043357085436582565, 0.0025201698299497366, 0.010703466832637787, 0.0059421188198029995, 0.0017845203401520848, 0.0047697341069579124, 0.033111076802015305, 0.02892328053712845, 0.026653597131371498, 0.002037797588855028, 0.003502677194774151, 0.000982927274890244, 0.0011341494973748922, 0.00118966493755579, 0.0248012263327837, 0.028501315042376518], [0.42324426770210266, 0.011288616806268692, 0.0005467518931254745, 0.012041036039590836, 0.0031406290363520384, 0.0019263856811448932, 0.0028645633719861507, 0.0030061996076256037, 0.0512206144630909, 0.42651844024658203, 0.0034862100146710873, 0.002433923538774252, 0.0016345763579010963, 0.0006170259439386427, 0.0008696880540810525, 0.005298980511724949, 0.04986213147640228], [0.708649218082428, 0.01720842905342579, 0.003170452546328306, 0.02616560459136963, 0.0013683292781934142, 0.0005194649565964937, 0.001235231407918036, 0.005676588974893093, 0.08711107075214386, 0.017274361103773117, 0.042885322123765945, 0.004727077204734087, 0.0017113384092226624, 0.0012923299800604582, 0.001020115683786571, 0.011617828160524368, 0.06836728751659393], [0.506205677986145, 0.012991094961762428, 0.0009140609763562679, 0.017971117049455643, 0.021719137206673622, 0.0009883606107905507, 0.02845015563070774, 0.002093513961881399, 0.07095304131507874, 0.01536199264228344, 0.009218545630574226, 0.23167045414447784, 0.005852721631526947, 0.0015546750510111451, 0.0017423976678401232, 0.0047386703081429005, 0.06757446378469467], [0.40194886922836304, 0.013738472014665604, 0.002673707203939557, 0.009845610707998276, 0.016884448006749153, 0.006612048018723726, 0.018642190843820572, 0.0026986070442944765, 0.053096529096364975, 0.020563539117574692, 0.006348449736833572, 0.008549364283680916, 0.37792837619781494, 0.0022796918638050556, 0.004963651765137911, 0.004051701631397009, 0.049174707382917404], [0.5849642753601074, 0.003050753381103277, 0.0007497180486097932, 0.0035835898015648127, 0.002282927744090557, 0.005114688538014889, 0.0020319900941103697, 0.003994002938270569, 0.04248917102813721, 0.004139237105846405, 0.004156331066042185, 0.0024963708128780127, 0.004159219563007355, 0.2444210946559906, 0.0026620111893862486, 0.012758541852235794, 0.07694604992866516], [0.5436418056488037, 0.00809877086430788, 0.004244583658874035, 0.0030467489268630743, 0.0022126876283437014, 0.0009749404853209853, 0.005800488404929638, 0.006387328263372183, 0.06143166869878769, 0.009172621183097363, 0.0028124956879764795, 0.004438498988747597, 0.0037392915692180395, 0.0033911976497620344, 0.2738668620586395, 0.011096665635704994, 0.055643387138843536], [0.4284780025482178, 0.009500157088041306, 0.0005963937728665769, 0.05988456681370735, 0.0026090119499713182, 0.0007354257395491004, 0.005806018132716417, 0.014910107478499413, 0.04579974338412285, 0.03587152436375618, 0.006663530133664608, 0.004383022431284189, 0.0011924285208806396, 0.00426810747012496, 0.00205721496604383, 0.33695927262306213, 0.0402853861451149], [0.7174838781356812, 0.0321839265525341, 0.002324790693819523, 0.009250638075172901, 0.004423764534294605, 0.0015458747511729598, 0.0035497453063726425, 0.016795845702290535, 0.035515401512384415, 0.03925681859254837, 0.0029360095504671335, 0.005206204019486904, 0.0013880283804610372, 0.0014951186021789908, 0.0010882355272769928, 0.04603511467576027, 0.07952046394348145]]], [[[0.20538556575775146, 0.006783756893128157, 0.0063742040656507015, 0.030155163258314133, 0.0012839731061831117, 0.004238997120410204, 0.0025502729695290327, 0.030539020895957947, 0.12862206995487213, 0.05158519744873047, 0.01424491498619318, 0.002449838677421212, 0.0007737547275610268, 0.005300894379615784, 0.0035220577847212553, 0.18150652945041656, 0.32468387484550476], [0.5357323288917542, 0.06808635592460632, 0.026822850108146667, 0.05122525990009308, 0.0031411380041390657, 0.01969270035624504, 0.009553084149956703, 0.16382397711277008, 0.0852455124258995, 0.00542669091373682, 0.0006860120338387787, 0.00022843776969239116, 9.289468289352953e-05, 0.0003136755258310586, 0.0005599651485681534, 0.005443323403596878, 0.02392583154141903], [0.7164422273635864, 0.07096374034881592, 0.017240209504961967, 0.03909487649798393, 0.003829126711934805, 0.01916281320154667, 0.0075177038088440895, 0.05583331733942032, 0.014150304719805717, 0.011224712245166302, 0.004090744070708752, 0.0018387379823252559, 0.004050412680953741, 0.005808195099234581, 0.00576509814709425, 0.01397284958511591, 0.009014918468892574], [0.304108589887619, 0.20673112571239471, 0.06677430123090744, 0.049756307154893875, 0.008345875889062881, 0.022099127992987633, 0.017671670764684677, 0.12516650557518005, 0.11123248934745789, 0.019249949604272842, 0.005199807230383158, 0.0004899651976302266, 0.0027296992484480143, 0.0018834671936929226, 0.00445215031504631, 0.00792655535042286, 0.04618237540125847], [0.5903051495552063, 0.03608828783035278, 0.03995300456881523, 0.12305960804224014, 0.012417576275765896, 0.030747177079319954, 0.00961415097117424, 0.05638304352760315, 0.051010169088840485, 0.006114650052040815, 0.0008630385273136199, 0.0009219199419021606, 0.001853808993473649, 0.002416937379166484, 0.002234123181551695, 0.004057653248310089, 0.031959712505340576], [0.18413367867469788, 0.023990681394934654, 0.32321006059646606, 0.1411694586277008, 0.04371248185634613, 0.06313467770814896, 0.03103500045835972, 0.04628429189324379, 0.04610616713762283, 0.009255306795239449, 0.0028513886500149965, 0.0014766352251172066, 0.002761548850685358, 0.006424938794225454, 0.014643428847193718, 0.016654688864946365, 0.043155573308467865], [0.16810491681098938, 0.11710225045681, 0.17226579785346985, 0.09263493865728378, 0.02276747301220894, 0.029245691373944283, 0.015072470530867577, 0.10670068114995956, 0.15321768820285797, 0.02762390486896038, 0.006497877184301615, 0.00043262660619802773, 0.0012848024489358068, 0.0010005588410422206, 0.003142428584396839, 0.003068478312343359, 0.07983730733394623], [0.14960162341594696, 0.09268868714570999, 0.06603402644395828, 0.10647189617156982, 0.02834557555615902, 0.08273094147443771, 0.04079456627368927, 0.1163577139377594, 0.14658527076244354, 0.019199004396796227, 0.010957010090351105, 0.008268793113529682, 0.006910491269081831, 0.005952821578830481, 0.015182022005319595, 0.014812256209552288, 0.08910740911960602], [0.7728886604309082, 0.018508274108171463, 0.008784030564129353, 0.01565266214311123, 0.0026726776268333197, 0.016554074361920357, 0.005139840301126242, 0.07173344492912292, 0.03822699934244156, 0.003393480321392417, 0.0026131565682590008, 0.0015260158106684685, 0.00123747403267771, 0.0019421495962888002, 0.004238874185830355, 0.009388281963765621, 0.02550000511109829], [0.5108107328414917, 0.007227804511785507, 0.002299201674759388, 0.03300045058131218, 0.0021519185975193977, 0.021485470235347748, 0.004803324583917856, 0.0941925197839737, 0.07161345332860947, 0.04658203572034836, 0.005555460695177317, 0.0018022536532953382, 0.001148938899859786, 0.0014217772986739874, 0.0023775380104780197, 0.09815413504838943, 0.09537312388420105], [0.1152479350566864, 0.024364836513996124, 0.015423289500176907, 0.049664273858070374, 0.0035009263083338737, 0.033191319555044174, 0.023714696988463402, 0.10429858416318893, 0.1172340139746666, 0.29953938722610474, 0.012838444672524929, 0.0031419596634805202, 0.001825255574658513, 0.0013889739057049155, 0.004799085669219494, 0.10339698195457458, 0.08642999827861786], [0.09932304918766022, 0.010893166065216064, 0.011732902377843857, 0.014895597472786903, 0.00198561092838645, 0.012738666497170925, 0.004271339159458876, 0.03948477655649185, 0.05469103530049324, 0.6029919385910034, 0.06314750760793686, 0.002943486673757434, 0.01201237365603447, 0.004603798966854811, 0.004015857353806496, 0.013789675198495388, 0.046479154378175735], [0.20694038271903992, 0.004846381489187479, 0.031077606603503227, 0.01639833115041256, 0.006237424910068512, 0.022460181266069412, 0.007951758801937103, 0.028792904689908028, 0.033693451434373856, 0.37686920166015625, 0.11408039927482605, 0.04137282818555832, 0.020017584785819054, 0.02006438374519348, 0.02714480459690094, 0.014484409242868423, 0.027567988261580467], [0.41953518986701965, 0.014850947074592113, 0.05826641619205475, 0.01622067019343376, 0.0008975358214229345, 0.012132195755839348, 0.002710985252633691, 0.0375923328101635, 0.02597341313958168, 0.1961711347103119, 0.13032746315002441, 0.00784977525472641, 0.02046329714357853, 0.01249148603528738, 0.01430736854672432, 0.013182936236262321, 0.017026925459504128], [0.06252007931470871, 0.007303342223167419, 0.14199785888195038, 0.012512799352407455, 0.0017748326063156128, 0.01714741438627243, 0.0023939183447510004, 0.011096566915512085, 0.03954024612903595, 0.35226666927337646, 0.18160906434059143, 0.010979590006172657, 0.05944208428263664, 0.02467181161046028, 0.022586803883314133, 0.012922752648591995, 0.039234187453985214], [0.08404769003391266, 0.013540185987949371, 0.01109942514449358, 0.006828024052083492, 0.0010163389379158616, 0.005699891597032547, 0.002567519899457693, 0.029865993186831474, 0.11711191385984421, 0.2543063163757324, 0.10178137570619583, 0.006320924498140812, 0.04567937180399895, 0.019466541707515717, 0.04118887335062027, 0.05052950978279114, 0.20895008742809296], [0.7906316518783569, 0.009794555604457855, 0.006181848701089621, 0.006262470968067646, 0.0012316128704696894, 0.005284451879560947, 0.0013676556991413236, 0.0385441780090332, 0.0322149358689785, 0.006826807279139757, 0.005321907345205545, 0.003384564071893692, 0.0030748024582862854, 0.0062591517344117165, 0.008381938561797142, 0.027219180017709732, 0.04801825433969498]], [[0.030539169907569885, 0.02875026874244213, 0.06822026520967484, 0.023251529783010483, 0.013749457895755768, 0.01913834735751152, 0.0069595989771187305, 0.010247768834233284, 0.05387391522526741, 0.2077091932296753, 0.05816683918237686, 0.038307610899209976, 0.0837378203868866, 0.10971680283546448, 0.08714146912097931, 0.0647803470492363, 0.09570956230163574], [0.052944429218769073, 0.09264461696147919, 0.19800376892089844, 0.09800095856189728, 0.07139851152896881, 0.1356605738401413, 0.052425216883420944, 0.03596577048301697, 0.027081986889243126, 0.024452807381749153, 0.03851117193698883, 0.030895743519067764, 0.04019801691174507, 0.02991340309381485, 0.03225291520357132, 0.019992874935269356, 0.019657159224152565], [0.08105944097042084, 0.08162585645914078, 0.09906909614801407, 0.18268047273159027, 0.056270454078912735, 0.10172320902347565, 0.03685358911752701, 0.042729396373033524, 0.01830418035387993, 0.03293030336499214, 0.029222840443253517, 0.05593830719590187, 0.02558274380862713, 0.037739019840955734, 0.02928260713815689, 0.0731109157204628, 0.01587757281959057], [0.08996124565601349, 0.05384872108697891, 0.056726980954408646, 0.09951606392860413, 0.027063090354204178, 0.07598155736923218, 0.020372234284877777, 0.102356918156147, 0.13701073825359344, 0.017944281920790672, 0.010511543601751328, 0.027916213497519493, 0.028221946209669113, 0.019278112798929214, 0.01726611517369747, 0.09487924724817276, 0.12114499509334564], [0.05538564920425415, 0.034674808382987976, 0.05091593414545059, 0.04707299917936325, 0.013468349352478981, 0.031550176441669464, 0.018559744581580162, 0.30694717168807983, 0.17568787932395935, 0.02435414306819439, 0.00538075203076005, 0.010141677223145962, 0.027629045769572258, 0.005349986720830202, 0.009835605509579182, 0.046852823346853256, 0.13619326055049896], [0.0379943773150444, 0.05438225716352463, 0.06459691375494003, 0.13985489308834076, 0.06155803054571152, 0.07143308222293854, 0.025858715176582336, 0.1815710961818695, 0.04422144591808319, 0.025690626353025436, 0.015467372722923756, 0.0621224045753479, 0.03957696259021759, 0.011829550378024578, 0.02686525508761406, 0.09962642192840576, 0.0373506173491478], [0.03593188151717186, 0.0802558958530426, 0.11214897036552429, 0.14159120619297028, 0.05939282104372978, 0.12235785275697708, 0.031530119478702545, 0.13292339444160461, 0.03320692107081413, 0.02018766663968563, 0.016067024320364, 0.02131885290145874, 0.059587642550468445, 0.01853979006409645, 0.021389342844486237, 0.06646954268217087, 0.02710116095840931], [0.08188726752996445, 0.079721599817276, 0.08180434256792068, 0.1742558628320694, 0.121385857462883, 0.08700862526893616, 0.058161478489637375, 0.09384908527135849, 0.039518803358078, 0.02565612457692623, 0.0212326068431139, 0.030950915068387985, 0.022575564682483673, 0.011437599547207355, 0.010341361165046692, 0.03413999453186989, 0.026072870939970016], [0.10896807163953781, 0.025675645098090172, 0.022387707605957985, 0.016805820167064667, 0.003379481378942728, 0.007485288195312023, 0.003515147138386965, 0.36154910922050476, 0.17249315977096558, 0.009293747134506702, 0.01320483349263668, 0.019396182149648666, 0.007216122001409531, 0.012266108766198158, 0.01598326861858368, 0.030703043565154076, 0.16967728734016418], [0.11400028318166733, 0.05146404728293419, 0.033425137400627136, 0.13680297136306763, 0.021484075114130974, 0.015804370865225792, 0.008894810453057289, 0.20390522480010986, 0.09093347936868668, 0.046962905675172806, 0.012200532481074333, 0.04605535417795181, 0.015315336175262928, 0.024291306734085083, 0.006338980980217457, 0.07237901538610458, 0.09974216669797897], [0.04377024248242378, 0.08784858137369156, 0.24843871593475342, 0.08310889452695847, 0.01720166765153408, 0.07554163038730621, 0.01523678470402956, 0.013416796922683716, 0.03536954149603844, 0.038841504603624344, 0.04249999299645424, 0.026115793734788895, 0.07263584434986115, 0.07276958227157593, 0.057558510452508926, 0.0299290269613266, 0.0397169291973114], [0.06728500872850418, 0.029726272448897362, 0.031129619106650352, 0.01139065157622099, 0.006314235273748636, 0.023750007152557373, 0.008108539506793022, 0.11866075545549393, 0.19700491428375244, 0.025408895686268806, 0.02302015759050846, 0.013246193528175354, 0.037312932312488556, 0.04975418001413345, 0.05689382553100586, 0.053714487701654434, 0.24727939069271088], [0.029100202023983, 0.025020482018589973, 0.029811451211571693, 0.023501498624682426, 0.00899732019752264, 0.028097914531826973, 0.022307489067316055, 0.12569154798984528, 0.10320097208023071, 0.02622462809085846, 0.014257804490625858, 0.049101997166872025, 0.08531162142753601, 0.07768764346837997, 0.1793392449617386, 0.03849849849939346, 0.13384966552257538], [0.030792584642767906, 0.040409255772829056, 0.03531654179096222, 0.021777180954813957, 0.005455194041132927, 0.013928764499723911, 0.008388255722820759, 0.3305415213108063, 0.059313658624887466, 0.015162641182541847, 0.02188735455274582, 0.06858666241168976, 0.04566754028201103, 0.04204744100570679, 0.13483184576034546, 0.043787337839603424, 0.08210629224777222], [0.02783389389514923, 0.02994486689567566, 0.036308784037828445, 0.0445474311709404, 0.008001427166163921, 0.01849203184247017, 0.013227750547230244, 0.28607210516929626, 0.04233448579907417, 0.015235984697937965, 0.024972660467028618, 0.08610875904560089, 0.05378352850675583, 0.07134295254945755, 0.08312346786260605, 0.10290849953889847, 0.05576132982969284], [0.06782539933919907, 0.02991335093975067, 0.034766748547554016, 0.03465987741947174, 0.00479066651314497, 0.02222803793847561, 0.005951298866420984, 0.11263708770275116, 0.125095933675766, 0.022906925529241562, 0.02040037140250206, 0.04685918614268303, 0.04015630483627319, 0.049280162900686264, 0.05461256578564644, 0.12767784297466278, 0.2002382129430771], [0.10290864109992981, 0.015531357377767563, 0.010912599973380566, 0.008136613294482231, 0.001369072706438601, 0.002825130708515644, 0.0014492975315079093, 0.2821357548236847, 0.21065914630889893, 0.01181227620691061, 0.011630960740149021, 0.017311351373791695, 0.006233724299818277, 0.01320717204362154, 0.016567962244153023, 0.03157003968954086, 0.2557390332221985]], [[0.11574086546897888, 0.03910510987043381, 0.07187940180301666, 0.06111738830804825, 0.013943717814981937, 0.07700829952955246, 0.021459145471453667, 0.07959326356649399, 0.1575775444507599, 0.029751181602478027, 0.08388756960630417, 0.01684390939772129, 0.010905494913458824, 0.008169524371623993, 0.019547272473573685, 0.039992909878492355, 0.15347738564014435], [0.17140600085258484, 0.024477750062942505, 0.04528594762086868, 0.021172508597373962, 0.004341131076216698, 0.0551883764564991, 0.008823134005069733, 0.14520800113677979, 0.21773682534694672, 0.012238367460668087, 0.02793825790286064, 0.018263230100274086, 0.006248244550079107, 0.0026568167377263308, 0.024396497756242752, 0.017701826989650726, 0.1969171166419983], [0.10825788974761963, 0.0362422838807106, 0.07992580533027649, 0.032638467848300934, 0.01952669583261013, 0.3589767813682556, 0.013312151655554771, 0.0045678336173295975, 0.08004390448331833, 0.028185870498418808, 0.011232460848987103, 0.008648686110973358, 0.02792302519083023, 0.01824497990310192, 0.07378576695919037, 0.021478137001395226, 0.07700925320386887], [0.12401217967271805, 0.01814933307468891, 0.021389776840806007, 0.006738147232681513, 0.003697388805449009, 0.04121708869934082, 0.002729542087763548, 0.10315649956464767, 0.33265554904937744, 0.007812796160578728, 0.019281914457678795, 0.006965617649257183, 0.002313739387318492, 0.0015214583836495876, 0.015322021208703518, 0.004228692036122084, 0.28880825638771057], [0.07825490087270737, 0.009201773442327976, 0.006448546424508095, 0.0014714559074491262, 0.0003126643714495003, 0.004056004341691732, 0.00034153382875956595, 0.22924011945724487, 0.36345067620277405, 0.002567756688222289, 0.005057985428720713, 0.0019221982220187783, 0.0001178562015411444, 0.0001304157340200618, 0.0007722618756815791, 0.0007931552827358246, 0.29586073756217957], [0.1532689779996872, 0.034383002668619156, 0.02343110926449299, 0.014916395768523216, 0.009058364666998386, 0.04522303491830826, 0.001690057571977377, 0.05718221515417099, 0.3356769382953644, 0.009877835400402546, 0.016316941007971764, 0.00472671864554286, 0.003640758339315653, 0.0012654875172302127, 0.011775690130889416, 0.009773808531463146, 0.2677927315235138], [0.11485268920660019, 0.010244856588542461, 0.0029909468721598387, 0.0029443015810102224, 0.002445399295538664, 0.008238011039793491, 0.00015095675189513713, 0.1396235078573227, 0.3869325816631317, 0.00320964097045362, 0.00555385509505868, 0.0017245071940124035, 0.0003018413844984025, 0.0001602540141902864, 0.0019474123837426305, 0.0013394136913120747, 0.31733977794647217], [0.19137787818908691, 0.01847575604915619, 0.017389247193932533, 0.012108166702091694, 0.0026623427402228117, 0.012141812592744827, 0.004095043987035751, 0.2350376546382904, 0.25106942653656006, 0.005480817519128323, 0.005988531745970249, 0.003865043167024851, 0.0008568412740714848, 0.001411333796568215, 0.006003897171467543, 0.00617101090028882, 0.22586509585380554], [0.1774381846189499, 0.018427303060889244, 0.01918407343327999, 0.009497717022895813, 0.001488909823819995, 0.01567409560084343, 0.00342578929848969, 0.2394871860742569, 0.24724702537059784, 0.003189969342201948, 0.010203894227743149, 0.005848280619829893, 0.001435308950021863, 0.0023856020998209715, 0.008146295323967934, 0.008177339099347591, 0.22874300181865692], [0.13920240104198456, 0.012078697793185711, 0.006467532366514206, 0.004354296252131462, 0.002679905155673623, 0.006293513812124729, 0.0027548607904464006, 0.22717343270778656, 0.22857098281383514, 0.006915548350661993, 0.023446639999747276, 0.02167346328496933, 0.002064015716314316, 0.0018096218118444085, 0.01284692995250225, 0.017827831208705902, 0.2838403582572937], [0.1956690400838852, 0.025164686143398285, 0.04622100666165352, 0.02009396255016327, 0.0035865241661667824, 0.04055054858326912, 0.0053816260769963264, 0.04801809787750244, 0.20525597035884857, 0.04236423224210739, 0.009922388009727001, 0.021295171231031418, 0.030363192781805992, 0.010341254062950611, 0.05385838821530342, 0.015181980095803738, 0.22673195600509644], [0.08670563995838165, 0.006010875105857849, 0.00453865947201848, 0.002072048606351018, 0.00047739542787894607, 0.00574501371011138, 0.0005594416870735586, 0.13307473063468933, 0.35764697194099426, 0.0027202002238482237, 0.0034526768140494823, 0.0010986845009028912, 0.0016637862427160144, 0.001018412527628243, 0.0048525771126151085, 0.0030614861752837896, 0.3853014409542084], [0.09733188897371292, 0.01038606557995081, 0.009335525333881378, 0.003838004544377327, 0.0010971539886668324, 0.029846031218767166, 0.0009417555993422866, 0.03684823587536812, 0.3127937316894531, 0.009352106600999832, 0.00640526320785284, 0.010342676192522049, 0.009683347307145596, 0.01485812570899725, 0.08279159665107727, 0.006566026248037815, 0.35758259892463684], [0.19090856611728668, 0.031167497858405113, 0.025069117546081543, 0.017045386135578156, 0.00999945867806673, 0.02456376701593399, 0.002984082093462348, 0.03783676400780678, 0.252787709236145, 0.01684284582734108, 0.004527321085333824, 0.017688432708382607, 0.015695394948124886, 0.004822377115488052, 0.0427832193672657, 0.019392818212509155, 0.2858852446079254], [0.08572062104940414, 0.019358234480023384, 0.01523648202419281, 0.019156483933329582, 0.021120797842741013, 0.05896209180355072, 0.005831508431583643, 0.021511366590857506, 0.1863667517900467, 0.07127447426319122, 0.021105661988258362, 0.01765519566833973, 0.10097376257181168, 0.06024850532412529, 0.020846011117100716, 0.02582688070833683, 0.24880509078502655], [0.2162291705608368, 0.012456967495381832, 0.0039858282543718815, 0.006637371610850096, 0.0018097938736900687, 0.010658439248800278, 0.0012663427041843534, 0.0989227294921875, 0.23571692407131195, 0.03422432020306587, 0.021881040185689926, 0.01574474386870861, 0.007600976619869471, 0.0021915428806096315, 0.017080625519156456, 0.012712590396404266, 0.3008806109428406], [0.18929561972618103, 0.013770287856459618, 0.010449860244989395, 0.00614132359623909, 0.000933479459490627, 0.008514552377164364, 0.0022178860381245613, 0.2171238213777542, 0.24369879066944122, 0.0048760720528662205, 0.012409237213432789, 0.0070931739173829556, 0.002000832697376609, 0.0036244706716388464, 0.010943829081952572, 0.009887771680951118, 0.2570191025733948]], [[0.3063393533229828, 0.016823729500174522, 0.02133076824247837, 0.014787032268941402, 0.004586333874613047, 0.008930913172662258, 0.0046145180240273476, 0.02900872379541397, 0.10513562709093094, 0.059194471687078476, 0.05338602513074875, 0.007604668382555246, 0.010456654243171215, 0.020206967368721962, 0.017974289134144783, 0.057149775326251984, 0.26247018575668335], [0.028736766427755356, 0.017690913751721382, 0.21235576272010803, 0.45701807737350464, 0.05954978987574577, 0.047599636018276215, 0.02696293033659458, 0.030378146097064018, 0.04113154113292694, 0.0038790039252489805, 0.016541559249162674, 0.006355626508593559, 0.0022419635206460953, 0.0024337326176464558, 0.0030229424592107534, 0.01285422220826149, 0.031247351318597794], [0.3970986008644104, 0.014471332542598248, 0.009949607774615288, 0.041678477078676224, 0.019086839631199837, 0.08480267226696014, 0.014518244192004204, 0.09341216087341309, 0.1397390514612198, 0.00176615035161376, 0.0017886348068714142, 0.0007569961016997695, 0.003783921245485544, 0.006175217218697071, 0.0034074848517775536, 0.012553250417113304, 0.1550113558769226], [0.04054252430796623, 0.0030526411719620228, 0.003028194885700941, 0.0067199477925896645, 0.02198825217783451, 0.18767423927783966, 0.23067983984947205, 0.31219494342803955, 0.0907425507903099, 0.005593448411673307, 0.002628719201311469, 0.0002680444740690291, 0.0023900410160422325, 0.007873853668570518, 0.025948332622647285, 0.012335292994976044, 0.04633917286992073], [0.14558541774749756, 0.003993839956820011, 0.001597037073224783, 0.0047955890186131, 0.015098282136023045, 0.10384045541286469, 0.1618817001581192, 0.2784561216831207, 0.19429436326026917, 0.00319237494841218, 0.0028353265952318907, 0.00036850603646598756, 0.0020457764621824026, 0.002072820905596018, 0.0030148939695209265, 0.0033264944795519114, 0.07360094785690308], [0.2417854368686676, 0.012175928801298141, 0.005689199548214674, 0.004064121749252081, 0.008398755453526974, 0.04072807356715202, 0.036037832498550415, 0.20900744199752808, 0.2611490786075592, 0.02339606173336506, 0.01484100054949522, 0.003204947104677558, 0.006629234179854393, 0.006790592335164547, 0.006227175239473581, 0.006845137104392052, 0.11302994936704636], [0.2627291977405548, 0.012396474368870258, 0.0016125416150316596, 0.004647783935070038, 0.007459305692464113, 0.03738383576273918, 0.01006923709064722, 0.20709355175495148, 0.3122168183326721, 0.027805477380752563, 0.012193344533443451, 0.0014383170055225492, 0.004923100583255291, 0.003706008195877075, 0.0033784869592636824, 0.008767195045948029, 0.08217921108007431], [0.10630419850349426, 0.016108835116028786, 0.015444967895746231, 0.02033955417573452, 0.007889826782047749, 0.014650100842118263, 0.008080512285232544, 0.06066301465034485, 0.1440199315547943, 0.13078199326992035, 0.21670503914356232, 0.0280098095536232, 0.012757403776049614, 0.022060109302401543, 0.016466859728097916, 0.03797439858317375, 0.14174333214759827], [0.6476292014122009, 0.016348058357834816, 0.0040677934885025024, 0.014692348428070545, 0.0018367322627454996, 0.00444315280765295, 0.001242246595211327, 0.008662236854434013, 0.11497929692268372, 0.01123941782861948, 0.008930525742471218, 0.003104404080659151, 0.003805150045081973, 0.004457211121916771, 0.0035507732536643744, 0.010409817099571228, 0.14060157537460327], [0.033121827989816666, 0.0012563845375552773, 0.007179287262260914, 0.06860857456922531, 0.0006718960939906538, 0.0009903188329190016, 0.0012938766740262508, 0.014231693930923939, 0.05561680719256401, 0.013927343301475048, 0.06827523559331894, 0.11747953295707703, 0.09750840067863464, 0.04995199292898178, 0.08169525861740112, 0.26087087392807007, 0.12732067704200745], [0.03574460744857788, 0.0010141897946596146, 0.005059435963630676, 0.03129911422729492, 0.0002695823204703629, 0.0014458884252235293, 0.0009555217111483216, 0.020558476448059082, 0.058217234909534454, 0.0037514795549213886, 0.01196987833827734, 0.03494424372911453, 0.03082987852394581, 0.09665343910455704, 0.07179718464612961, 0.49876922369003296, 0.09672056138515472], [0.1278427541255951, 0.0007718975539319217, 0.0008515733061358333, 0.008008218370378017, 0.0006004553870297968, 0.005536243785172701, 0.005610785912722349, 0.04997546970844269, 0.09017884731292725, 0.001485280692577362, 0.0027171156834810972, 0.0016808612272143364, 0.04382693022489548, 0.03675924241542816, 0.16926313936710358, 0.25449761748313904, 0.20039351284503937], [0.21982243657112122, 0.0017051800386980176, 0.0019056284800171852, 0.0019899189937859774, 0.0013626805739477277, 0.005361906718462706, 0.0017031363677233458, 0.03321647644042969, 0.14011715352535248, 0.006171513814479113, 0.004213098436594009, 0.007689651567488909, 0.035497721284627914, 0.05699235945940018, 0.08599193394184113, 0.03939202055335045, 0.35686710476875305], [0.3612912595272064, 0.0023381037171930075, 0.0008506671874783933, 0.0014513884671032429, 0.0011168806813657284, 0.0033325699623674154, 0.00043653769535012543, 0.021657373756170273, 0.11613117903470993, 0.0020864217076450586, 0.0012140811886638403, 0.00038299651350826025, 0.00644735898822546, 0.007998848333954811, 0.03876952454447746, 0.03144445642828941, 0.4030504822731018], [0.5138987898826599, 0.0022618251387029886, 0.0007979305228218436, 0.0020120753906667233, 0.0005921304691582918, 0.004058465827256441, 0.00022889605315867811, 0.017564691603183746, 0.12219111621379852, 0.0023522975388914347, 0.0005863909027539194, 0.00032853358425199986, 0.003553203074261546, 0.003251932095736265, 0.0077364821918308735, 0.021639319136738777, 0.2969459295272827], [0.4063866138458252, 0.001210736227221787, 0.0009560450562275946, 0.002112641232088208, 0.000904428365174681, 0.004357117228209972, 0.0011757173342630267, 0.012563016265630722, 0.06393489241600037, 0.030697297304868698, 0.025672459974884987, 0.002026200294494629, 0.004858278203755617, 0.016958247870206833, 0.03626614063978195, 0.05675263702869415, 0.33316755294799805], [0.7013733386993408, 0.0073241801001131535, 0.0022500320337712765, 0.009310482069849968, 0.00120065629016608, 0.0036680949851870537, 0.0010160686215385795, 0.006998822558671236, 0.06656818836927414, 0.009200379252433777, 0.004334858153015375, 0.0014812416629865766, 0.0024717114865779877, 0.003434327896684408, 0.0037332160864025354, 0.014813580550253391, 0.160820871591568]], [[0.09979113936424255, 0.03883330523967743, 0.024698302149772644, 0.04483076557517052, 0.01476182322949171, 0.024045243859291077, 0.02374119870364666, 0.045566145330667496, 0.2279992550611496, 0.05573498457670212, 0.042020007967948914, 0.02091025374829769, 0.005749198608100414, 0.008787647821009159, 0.009675520472228527, 0.025539932772517204, 0.287315309047699], [0.09115432947874069, 0.023153360933065414, 0.11604630202054977, 0.20041850209236145, 0.013324467465281487, 0.05764161795377731, 0.03696964681148529, 0.04960782825946808, 0.18983232975006104, 0.009514346718788147, 0.008521253243088722, 0.004084935877472162, 0.005067496560513973, 0.00562170147895813, 0.010833547450602055, 0.07247931510210037, 0.10572897642850876], [0.07463133335113525, 0.04899638146162033, 0.07019500434398651, 0.028235049918293953, 0.006032094359397888, 0.0024028075858950615, 0.0014688250375911593, 0.03557515889406204, 0.3454008102416992, 0.004062136169523001, 0.0056605031713843346, 0.0023208227939903736, 0.0015505142509937286, 0.002558220410719514, 0.004020435269922018, 0.010499661788344383, 0.3563901484012604], [0.025600118562579155, 0.0034379849676042795, 0.0003415506216697395, 0.0005461337277665734, 0.0020815925672650337, 0.4802185893058777, 0.42890799045562744, 0.03081451915204525, 0.008687668479979038, 0.00042085308814421296, 0.0010776181006804109, 0.002147944876924157, 0.001498684985563159, 0.0013826601207256317, 0.006192204542458057, 0.00028337270487099886, 0.006360561121255159], [0.03598932921886444, 0.007123661693185568, 0.00096351612592116, 0.06700829416513443, 0.005794658791273832, 0.6877670288085938, 0.050140462815761566, 0.04110276699066162, 0.05055509880185127, 0.0022147917188704014, 0.0018843431025743484, 0.0007442908827215433, 0.0013113131280988455, 0.0008725986699573696, 0.004595724865794182, 0.0025140070356428623, 0.03941816836595535], [0.05010809004306793, 0.03691926226019859, 0.009549910202622414, 0.10618976503610611, 0.009127706289291382, 0.003283189609646797, 0.036792412400245667, 0.04685065895318985, 0.35068732500076294, 0.003924740944057703, 0.005799079779535532, 0.0002189219812862575, 0.0018596570007503033, 0.0005153012461960316, 0.00283996993675828, 0.006714740768074989, 0.32861921191215515], [0.017171761021018028, 0.005655510351061821, 0.0009492615354247391, 0.10877551883459091, 0.02639276161789894, 0.7780289053916931, 0.0014328344259411097, 0.008183993399143219, 0.02630131132900715, 0.0010964705143123865, 0.0007076399633660913, 0.0006622506771236658, 0.00045109467464499176, 0.0028128265403211117, 0.0014420216903090477, 0.00017094130453187972, 0.01976483315229416], [0.056040696799755096, 0.0481586717069149, 0.0392625592648983, 0.1332060545682907, 0.03988102450966835, 0.06426862627267838, 0.07791052758693695, 0.033656325191259384, 0.22239747643470764, 0.03070741333067417, 0.04692991450428963, 0.01760638877749443, 0.00650670425966382, 0.005804271437227726, 0.00998917780816555, 0.01178609486669302, 0.15588806569576263], [0.06940141320228577, 0.033307887613773346, 0.019474318251013756, 0.012008906342089176, 0.0012323374394327402, 0.0044489032588899136, 0.006613615900278091, 0.04443608224391937, 0.4192591607570648, 0.012425372377038002, 0.021549394354224205, 0.00817781500518322, 0.0012089208466932178, 0.002642097882926464, 0.007863999344408512, 0.012665115296840668, 0.3232845664024353], [0.011722260154783726, 0.0018850011983886361, 0.0012728053843602538, 0.012121759355068207, 0.0004469156265258789, 0.006978520192205906, 0.0011283374624326825, 0.007707122713327408, 0.0610102079808712, 0.003247203305363655, 0.016734765842556953, 0.005816273856908083, 0.02339010126888752, 0.13839447498321533, 0.0783526673913002, 0.5656047463417053, 0.06418689340353012], [0.0442114919424057, 0.004757745657116175, 0.009087950922548771, 0.039119478315114975, 0.003207913599908352, 0.012476588599383831, 0.006762477569282055, 0.019034622237086296, 0.12511411309242249, 0.017783576622605324, 0.01628032885491848, 0.07789083570241928, 0.01078982837498188, 0.04307781532406807, 0.11294005811214447, 0.3558245599269867, 0.10164058953523636], [0.004011786077171564, 0.0001014742738334462, 5.817809869768098e-05, 0.0003955201245844364, 0.00034679105738177896, 1.3518204468709882e-05, 0.00017554446822032332, 0.0015848720213398337, 0.005109278950840235, 9.902526653604582e-05, 0.004073916934430599, 3.7136174796614796e-05, 0.9544261693954468, 0.01065280195325613, 0.00236969580873847, 0.010051416233181953, 0.006492914166301489], [0.043656863272190094, 0.0019583157263696194, 0.0007192094344645739, 0.0038125738501548767, 3.6382869438966736e-05, 0.004563064314424992, 0.0001681829453445971, 0.011236460879445076, 0.07154230028390884, 0.005422523710876703, 0.020473744720220566, 0.3826789855957031, 0.008451919071376324, 0.08547884225845337, 0.24268482625484467, 0.019992487505078316, 0.09712338447570801], [0.1314173936843872, 0.012020898051559925, 0.007338241674005985, 0.004280397202819586, 0.0006550037651322782, 0.0005949820042587817, 4.262571019353345e-05, 0.026250002905726433, 0.06329888105392456, 0.0006792040658183396, 0.009112020954489708, 0.0662970095872879, 0.046854693442583084, 0.008737390860915184, 0.43581074476242065, 0.07052099704742432, 0.11608953028917313], [0.03955933824181557, 0.018778996542096138, 0.027329443022608757, 0.07223028689622879, 0.0019802565220743418, 0.001056011882610619, 0.00018029168131761253, 0.020361371338367462, 0.21713539958000183, 0.00586598040536046, 0.009586179628968239, 0.0005024527781642973, 0.018520750105381012, 0.1304548680782318, 0.0009591386769898236, 0.07688599079847336, 0.3586132228374481], [0.038896504789590836, 0.002310445299372077, 0.0018187969690188766, 0.0009306020801886916, 0.00023278601292986423, 0.0005830102600157261, 0.0005678428569808602, 0.012368783354759216, 0.013434451073408127, 0.005887024104595184, 0.004573711659759283, 0.04550807178020477, 0.0049680983647704124, 0.3276149034500122, 0.5107601881027222, 0.005239696707576513, 0.02430511824786663], [0.07556984573602676, 0.02032707817852497, 0.012514768168330193, 0.006844404619187117, 0.0007995591149665415, 0.002468045800924301, 0.003937508910894394, 0.03575125336647034, 0.3136250078678131, 0.015457957983016968, 0.01945636048913002, 0.008300923742353916, 0.00160056387539953, 0.005112434737384319, 0.011716611683368683, 0.019896110519766808, 0.4466214179992676]], [[0.07720981538295746, 0.005479374434798956, 0.009653094224631786, 0.004942193161696196, 0.006296050269156694, 0.01879698596894741, 0.0029290001839399338, 0.009101291187107563, 0.10884293913841248, 0.255292683839798, 0.08275441825389862, 0.009947802871465683, 0.021497810259461403, 0.005891737062484026, 0.010315139777958393, 0.0595274493098259, 0.3115222156047821], [0.10081841051578522, 0.025208599865436554, 0.10823255777359009, 0.13100038468837738, 0.08873111009597778, 0.19428133964538574, 0.03402477875351906, 0.06430313736200333, 0.09153364598751068, 0.02266654558479786, 0.02930597960948944, 0.011637458577752113, 0.004248590208590031, 0.004983082879334688, 0.00925781112164259, 0.024000205099582672, 0.055766358971595764], [0.14288413524627686, 0.06653030216693878, 0.0826490968465805, 0.13423201441764832, 0.05755477026104927, 0.24242113530635834, 0.05778031051158905, 0.035578690469264984, 0.022000988945364952, 0.04424966126680374, 0.016666648909449577, 0.005481308326125145, 0.0052717761136591434, 0.005180803593248129, 0.011721171438694, 0.05326942726969719, 0.016527727246284485], [0.2095443457365036, 0.03183833882212639, 0.10361836105585098, 0.013735993765294552, 0.03363284468650818, 0.29154878854751587, 0.027082743123173714, 0.046949706971645355, 0.08824890106916428, 0.07446525245904922, 0.005305198021233082, 0.0028499134350568056, 0.002666997956112027, 0.002208211924880743, 0.0036699718330055475, 0.0063538155518472195, 0.05628063157200813], [0.6052699089050293, 0.04618102312088013, 0.041307274252176285, 0.00972806941717863, 0.008821822702884674, 0.06025583669543266, 0.020914316177368164, 0.10611087083816528, 0.054035525768995285, 0.01358695887029171, 0.00205828039906919, 0.0011157057015225291, 0.0007620607502758503, 0.0011756200110539794, 0.0014770982088521123, 0.0027024950832128525, 0.024497119709849358], [0.14543011784553528, 0.06284019351005554, 0.1127016618847847, 0.042584896087646484, 0.024357737973332405, 0.23440591990947723, 0.06719357520341873, 0.041610680520534515, 0.044048063457012177, 0.12064123898744583, 0.01496205385774374, 0.004802182782441378, 0.005745191127061844, 0.007228384725749493, 0.008618212305009365, 0.03251977637410164, 0.03031005710363388], [0.2758655548095703, 0.0684211477637291, 0.0871393010020256, 0.07007474452257156, 0.039556119590997696, 0.17759110033512115, 0.02543524280190468, 0.07229757308959961, 0.07552193105220795, 0.032701559364795685, 0.013232419267296791, 0.004794727545231581, 0.0017865468980744481, 0.002480826573446393, 0.001856140443123877, 0.014901673421263695, 0.03634342551231384], [0.20471413433551788, 0.16547903418540955, 0.053886789828538895, 0.03470611199736595, 0.01586093008518219, 0.05950860306620598, 0.014329487457871437, 0.17287319898605347, 0.1188010722398758, 0.020981701090931892, 0.020500166341662407, 0.004532428923994303, 0.0035689889919012785, 0.003243064507842064, 0.004292394034564495, 0.02733711712062359, 0.07538477331399918], [0.3850259482860565, 0.042620699852705, 0.018977511674165726, 0.01876058056950569, 0.0035124258138239384, 0.015309530310332775, 0.008836154825985432, 0.284096360206604, 0.08778875321149826, 0.0037358247209340334, 0.010208687745034695, 0.013469942845404148, 0.0023829557467252016, 0.008806977421045303, 0.011539126746356487, 0.017326166853308678, 0.06760238856077194], [0.40637195110321045, 0.005644735414534807, 0.011581013910472393, 0.007326821330934763, 0.005657300353050232, 0.04194243252277374, 0.007262458559125662, 0.04291181266307831, 0.10112234205007553, 0.06649059802293777, 0.05439984053373337, 0.0223244521766901, 0.011947850696742535, 0.00748045276850462, 0.007863557897508144, 0.025249430909752846, 0.17442286014556885], [0.03554505482316017, 0.1258942037820816, 0.036509331315755844, 0.05995108187198639, 0.02699664793908596, 0.0375521183013916, 0.018652284517884254, 0.005674660671502352, 0.07097121328115463, 0.1465049535036087, 0.0661725252866745, 0.014102384448051453, 0.009331862442195415, 0.03154764696955681, 0.16420786082744598, 0.06238081678748131, 0.0880052000284195], [0.6659138798713684, 0.018083393573760986, 0.011816686950623989, 0.00923013687133789, 0.0016744232270866632, 0.017004702240228653, 0.00671832449734211, 0.05825703591108322, 0.018215656280517578, 0.07125592976808548, 0.037845902144908905, 0.011587291024625301, 0.0036953638773411512, 0.005372975952923298, 0.024161657318472862, 0.017375433817505836, 0.02179119549691677], [0.40163323283195496, 0.014721721410751343, 0.013423760421574116, 0.016551053151488304, 0.026905778795480728, 0.06019182503223419, 0.01458576787263155, 0.11016889661550522, 0.02927340939640999, 0.13569903373718262, 0.01877519302070141, 0.041450969874858856, 0.008395720273256302, 0.010868458077311516, 0.021202370524406433, 0.04074788838624954, 0.03540491312742233], [0.8464874029159546, 0.007125409785658121, 0.011116609908640385, 0.006413394585251808, 0.0010565321426838636, 0.010183493606746197, 0.007261425722390413, 0.06178567558526993, 0.005885311868041754, 0.013668421655893326, 0.0023411950096488, 0.0041036056354641914, 0.00033969542710110545, 0.0006532130064442754, 0.005911857821047306, 0.010446146130561829, 0.005220680497586727], [0.5370393991470337, 0.024095334112644196, 0.019729357212781906, 0.04203464463353157, 0.0067970119416713715, 0.05341538041830063, 0.020838703960180283, 0.09264549612998962, 0.02320600487291813, 0.0616401843726635, 0.022456318140029907, 0.020219188183546066, 0.002763928845524788, 0.003370145568624139, 0.013628877699375153, 0.030209604650735855, 0.025910403579473495], [0.4284515380859375, 0.026992104947566986, 0.009285747073590755, 0.01861882582306862, 0.007447022013366222, 0.04384639114141464, 0.006369845476001501, 0.06425353139638901, 0.0615478977560997, 0.14307032525539398, 0.029112787917256355, 0.019062435254454613, 0.0055292933247983456, 0.0032664563041180372, 0.008978256024420261, 0.04075730964541435, 0.08341030776500702], [0.4351096749305725, 0.020514443516731262, 0.008449352346360683, 0.009301923215389252, 0.001221774611622095, 0.005948420614004135, 0.0037798364646732807, 0.2338775247335434, 0.08136442303657532, 0.005654643755406141, 0.014292689971625805, 0.019577741622924805, 0.0033030002377927303, 0.012694094330072403, 0.018401412293314934, 0.02777300588786602, 0.09873601794242859]], [[0.28848257660865784, 0.01257616002112627, 0.03430843725800514, 0.01477912999689579, 0.0012256235349923372, 0.011869112029671669, 0.0016546170227229595, 0.014108515344560146, 0.052278775721788406, 0.07397178560495377, 0.04786080867052078, 0.01626724749803543, 0.027599243447184563, 0.03239141032099724, 0.059635698795318604, 0.18240614235401154, 0.12858480215072632], [0.33222827315330505, 0.08015219122171402, 0.1915275603532791, 0.026452526450157166, 0.009152380749583244, 0.0619947649538517, 0.008375460281968117, 0.0412161648273468, 0.10321027785539627, 0.004507344216108322, 0.009573579765856266, 0.008091576397418976, 0.010833711363375187, 0.006890119519084692, 0.017782362177968025, 0.011639094911515713, 0.07637260109186172], [0.35098302364349365, 0.08266192674636841, 0.1004398837685585, 0.017580751329660416, 0.004722627345472574, 0.02698211371898651, 0.0024964134208858013, 0.04608785733580589, 0.17449690401554108, 0.008553984574973583, 0.009689396247267723, 0.0028808119241148233, 0.005259563680738211, 0.004764842800796032, 0.011774441227316856, 0.01401494350284338, 0.13661053776741028], [0.0868002325296402, 0.08214076608419418, 0.44636648893356323, 0.029118763282895088, 0.024936877191066742, 0.09903780370950699, 0.013524153269827366, 0.006854426581412554, 0.028886616230010986, 0.011359469033777714, 0.025728275999426842, 0.02881213091313839, 0.012763477861881256, 0.02961600013077259, 0.03945455700159073, 0.013702438212931156, 0.020897559821605682], [0.20907022058963776, 0.07866306602954865, 0.1263018548488617, 0.11595798283815384, 0.008618229068815708, 0.12594379484653473, 0.018959959968924522, 0.0438644140958786, 0.11279072612524033, 0.008140233345329762, 0.006522328592836857, 0.03023660182952881, 0.0016097958432510495, 0.010630470700562, 0.012144387699663639, 0.022322824224829674, 0.06822306662797928], [0.10368841886520386, 0.1136193498969078, 0.3677966892719269, 0.09205619990825653, 0.020554449409246445, 0.0713471844792366, 0.015230441465973854, 0.010558288544416428, 0.046624623239040375, 0.015065798535943031, 0.022050680592656136, 0.012994340620934963, 0.009115414693951607, 0.01933613047003746, 0.025137923657894135, 0.022907650098204613, 0.031916506588459015], [0.17326810956001282, 0.13135133683681488, 0.242970809340477, 0.10898085683584213, 0.02750818431377411, 0.0680653303861618, 0.003113165497779846, 0.00896274484694004, 0.09048771858215332, 0.006018065381795168, 0.015656571835279465, 0.035565536469221115, 0.0020494465716183186, 0.006103125866502523, 0.01167663186788559, 0.009029789827764034, 0.05919254943728447], [0.2926902174949646, 0.13678932189941406, 0.04789775237441063, 0.026008330285549164, 0.007970488630235195, 0.02025541663169861, 0.007859368808567524, 0.12335386872291565, 0.15670572221279144, 0.005855523515492678, 0.027749791741371155, 0.008959303610026836, 0.003706427989527583, 0.003476644167676568, 0.0034832917153835297, 0.007415648549795151, 0.11982285976409912], [0.21157123148441315, 0.019517263397574425, 0.005391857586801052, 0.006420148070901632, 0.0008940987754613161, 0.0031574838794767857, 0.0011618149001151323, 0.2074192315340042, 0.26527830958366394, 0.0016312404768541455, 0.0029793318826705217, 0.0016579229850322008, 0.0010355523554608226, 0.0007651904015801847, 0.0016296723624691367, 0.0065324921160936356, 0.2629570960998535], [0.10086333006620407, 0.04043850302696228, 0.06336106359958649, 0.06956925988197327, 0.014053556136786938, 0.04208793118596077, 0.010049941949546337, 0.023839600384235382, 0.043660201132297516, 0.022071635350584984, 0.04092884808778763, 0.0585818774998188, 0.08269033581018448, 0.0855441763997078, 0.07963062077760696, 0.1571822166442871, 0.06544698029756546], [0.12707668542861938, 0.0523548349738121, 0.26883453130722046, 0.040691524744033813, 0.010961726307868958, 0.1296394318342209, 0.01433053333312273, 0.014453519135713577, 0.034860480576753616, 0.019024686887860298, 0.024176517501473427, 0.027583064511418343, 0.037872590124607086, 0.02919812686741352, 0.06729917228221893, 0.05900665372610092, 0.04263603314757347], [0.24688754975795746, 0.030769459903240204, 0.047778595238924026, 0.010946054011583328, 0.0031167911365628242, 0.029011135920882225, 0.0037711665499955416, 0.01944924332201481, 0.11189188808202744, 0.03106481395661831, 0.044395435601472855, 0.0172080360352993, 0.06188589334487915, 0.05043267086148262, 0.08090803027153015, 0.06390834599733353, 0.1465749889612198], [0.0705142617225647, 0.022703805938363075, 0.058183036744594574, 0.009261778555810452, 0.004325672518461943, 0.012400595471262932, 0.0015944127226248384, 0.007076756563037634, 0.026688102632761, 0.026559725403785706, 0.050885822623968124, 0.21843144297599792, 0.04302094131708145, 0.16049493849277496, 0.19344812631607056, 0.057423289865255356, 0.03698739409446716], [0.07891872525215149, 0.014068239368498325, 0.0841895118355751, 0.007075081579387188, 0.0031340019777417183, 0.009126100689172745, 0.003642712952569127, 0.021879103034734726, 0.05461389571428299, 0.011178506538271904, 0.04127843677997589, 0.04643681272864342, 0.1468726247549057, 0.061722252517938614, 0.3135157823562622, 0.020892739295959473, 0.0814552828669548], [0.044050343334674835, 0.015222175046801567, 0.19471687078475952, 0.007659707218408585, 0.0031954178120940924, 0.015198113396763802, 0.0015721445670351386, 0.004193637054413557, 0.02555701695382595, 0.004130168817937374, 0.01765613816678524, 0.020457418635487556, 0.06887971609830856, 0.30653172731399536, 0.22313055396080017, 0.015358373522758484, 0.03249046206474304], [0.0655519887804985, 0.026019321754574776, 0.1586287021636963, 0.03197231888771057, 0.009207548573613167, 0.034353431314229965, 0.004972562193870544, 0.005005646031349897, 0.027446508407592773, 0.04562034457921982, 0.12475969642400742, 0.08526258915662766, 0.0796908289194107, 0.06958846002817154, 0.12920702993869781, 0.05237547308206558, 0.05033749341964722], [0.20587339997291565, 0.010222149081528187, 0.0022830842062830925, 0.002935391617938876, 0.000358555291313678, 0.0013521627988666296, 0.0005329405539669096, 0.18011945486068726, 0.24020645022392273, 0.0021221372298896313, 0.0032666781917214394, 0.0015231661964207888, 0.0011074128560721874, 0.0008529155747964978, 0.001629339880309999, 0.007295794319361448, 0.3383190631866455]], [[0.05956319347023964, 0.00179675268009305, 0.017128366976976395, 0.0016953638987615705, 0.0006857583066448569, 0.0016695238882675767, 0.0007776255952194333, 0.024795446544885635, 0.0002714041620492935, 0.04412422329187393, 0.13379958271980286, 0.09820152819156647, 0.1267201006412506, 0.07335173338651657, 0.19282320141792297, 0.22087225317955017, 0.0017239977605640888], [0.23613636195659637, 0.14318731427192688, 0.05672837048768997, 0.07801620662212372, 0.027653949335217476, 0.05892806127667427, 0.014872346073389053, 0.016281506046652794, 0.2645290493965149, 0.0012800769181922078, 0.006285484414547682, 0.0018658335320651531, 0.005999637767672539, 0.000898213591426611, 0.0020877092611044645, 0.008333098143339157, 0.0769166573882103], [0.21454371511936188, 0.1391931027173996, 0.040841612964868546, 0.0954454243183136, 0.08106456696987152, 0.0962277501821518, 0.046839989721775055, 0.02815232053399086, 0.09633154422044754, 0.017318041995167732, 0.02717973105609417, 0.010474808514118195, 0.02076856605708599, 0.0034293895587325096, 0.009962289594113827, 0.028956621885299683, 0.043270375579595566], [0.20170310139656067, 0.1908068209886551, 0.06540999561548233, 0.045815546065568924, 0.042473193258047104, 0.08222468197345734, 0.016856539994478226, 0.011652784422039986, 0.2298145741224289, 0.004043226130306721, 0.008136386051774025, 0.0031762518920004368, 0.011258060112595558, 0.0014403003733605146, 0.0037828453350812197, 0.006951686926186085, 0.07445399463176727], [0.19613812863826752, 0.1202336922287941, 0.011509637348353863, 0.011758795939385891, 0.006277972832322121, 0.013663249090313911, 0.005513791926205158, 0.008629501797258854, 0.47911304235458374, 0.000780194706749171, 0.0014525118749588728, 0.0008472095360048115, 0.0028031363617628813, 0.00034791469806805253, 0.0009374889195896685, 0.0015715241897851229, 0.1384221911430359], [0.2702300548553467, 0.1306772381067276, 0.02260442264378071, 0.03576706349849701, 0.021464085206389427, 0.014047701843082905, 0.016266534104943275, 0.02396782673895359, 0.3145864009857178, 0.001972568454220891, 0.005951384082436562, 0.003608008148148656, 0.00783790647983551, 0.0014839855721220374, 0.00308221485465765, 0.005734744947403669, 0.12071798741817474], [0.3473818302154541, 0.19484259188175201, 0.05956964194774628, 0.03729168325662613, 0.017642799764871597, 0.03212764486670494, 0.005095197819173336, 0.009113706648349762, 0.18504053354263306, 0.0014740314800292253, 0.009163438342511654, 0.002339687431231141, 0.015544865280389786, 0.0010590697638690472, 0.0033047597389668226, 0.006495994981378317, 0.07251261919736862], [0.14215287566184998, 0.10905203223228455, 0.13271881639957428, 0.06678072363138199, 0.055062223225831985, 0.20480968058109283, 0.02073928527534008, 0.00976736843585968, 0.10605435073375702, 0.008199530653655529, 0.0198756642639637, 0.006681375205516815, 0.020344208925962448, 0.007610614411532879, 0.019918302074074745, 0.01168823055922985, 0.05854463577270508], [0.11422670632600784, 0.03828209638595581, 0.00507381884381175, 0.004419131204485893, 0.009561950340867043, 0.01285400427877903, 0.002909034490585327, 0.01814098097383976, 0.3899940252304077, 0.0029826404061168432, 0.004728056490421295, 0.005474678706377745, 0.005925028584897518, 0.0015272676246240735, 0.005571904592216015, 0.006338297855108976, 0.37199029326438904], [0.011238610371947289, 0.00045380022493191063, 0.004181951750069857, 0.0003760939580388367, 0.00017070409376174212, 0.0002088031469611451, 0.00023954050266183913, 0.010314065031707287, 1.3955426766187884e-05, 0.14375847578048706, 0.1389721781015396, 0.15650571882724762, 0.18927054107189178, 0.039405226707458496, 0.14734160900115967, 0.15737663209438324, 0.00017208002100232989], [0.031784750521183014, 0.0015507922507822514, 0.013885190710425377, 0.0018220108468085527, 0.0005439352826215327, 0.0008825199911370873, 0.00027660062187351286, 0.0069628870114684105, 4.4935241021448746e-05, 0.0813266858458519, 0.05959245562553406, 0.13896241784095764, 0.26633715629577637, 0.03404557704925537, 0.1678851842880249, 0.19371803104877472, 0.0003788716858252883], [0.08621974289417267, 0.003574413014575839, 0.007178200408816338, 0.0013829863164573908, 0.0004100213118363172, 0.0005498532555066049, 0.0007883554790169001, 0.037121593952178955, 0.00038770571700297296, 0.10483808070421219, 0.19522158801555634, 0.046983249485492706, 0.1087883785367012, 0.05557802692055702, 0.13681387901306152, 0.21160779893398285, 0.0025560909416526556], [0.022168036550283432, 0.0011089545441791415, 0.00752820260822773, 0.0009223827510140836, 0.00025024719070643187, 0.0004022939538117498, 0.0004331802192609757, 0.01542576216161251, 8.430749585386366e-05, 0.2691948413848877, 0.20285631716251373, 0.07688498497009277, 0.07929836958646774, 0.06059287488460541, 0.12732230126857758, 0.13470827043056488, 0.0008186959894374013], [0.038268525153398514, 0.002309854608029127, 0.0049010575748980045, 0.0006654354510828853, 0.00024545693304389715, 0.0005895740468986332, 0.0006904510082677007, 0.03247307613492012, 0.0001754794648149982, 0.11549419909715652, 0.17119476199150085, 0.09577608853578568, 0.1899692863225937, 0.024540485814213753, 0.10692265629768372, 0.21435683965682983, 0.0014267897931858897], [0.04470892250537872, 0.00579972704872489, 0.014608947560191154, 0.00284426542930305, 0.0014223706675693393, 0.0019662072882056236, 0.0019196448847651482, 0.03656250983476639, 0.0006488657672889531, 0.08809281885623932, 0.16689829528331757, 0.06508523225784302, 0.2711290419101715, 0.05329497531056404, 0.08856726437807083, 0.15377938747406006, 0.0026714380364865065], [0.0324103944003582, 0.002985625062137842, 0.019528495147824287, 0.0015649838605895638, 0.0010861161863431334, 0.004385427106171846, 0.0005067905294708908, 0.012419597245752811, 0.00014126817404758185, 0.1578301042318344, 0.1078701913356781, 0.11344996094703674, 0.17818157374858856, 0.050234604626894, 0.19941255450248718, 0.11708803474903107, 0.0009043181780725718], [0.14372624456882477, 0.018153995275497437, 0.008819352835416794, 0.0026029872242361307, 0.005939857102930546, 0.0091972341760993, 0.0020077270455658436, 0.06999135762453079, 0.058347154408693314, 0.0631398931145668, 0.054393865168094635, 0.08901600539684296, 0.07086573541164398, 0.022017978131771088, 0.0889204666018486, 0.0838044062256813, 0.20905570685863495]], [[0.06590607762336731, 0.08417094498872757, 0.030377818271517754, 0.04855623096227646, 0.030268382281064987, 0.04047302156686783, 0.09107440710067749, 0.05338447913527489, 0.06584428995847702, 0.20143471658229828, 0.04430174082517624, 0.00801195576786995, 0.022194521501660347, 0.023148616775870323, 0.03382888436317444, 0.09049656242132187, 0.06652738153934479], [0.06757715344429016, 0.0675671249628067, 0.09888757020235062, 0.2440209537744522, 0.024376049637794495, 0.06080688163638115, 0.02390352077782154, 0.03119654394686222, 0.06538015604019165, 0.028339162468910217, 0.06321700662374496, 0.015988469123840332, 0.005243256688117981, 0.01828606240451336, 0.020151490345597267, 0.11210758984088898, 0.05295104905962944], [0.07708651572465897, 0.0774746686220169, 0.21630482375621796, 0.11478409171104431, 0.0349455252289772, 0.1190795749425888, 0.005108577664941549, 0.07545206695795059, 0.08367180824279785, 0.008812044747173786, 0.02605229988694191, 0.005950480699539185, 0.003843178739771247, 0.018045805394649506, 0.03252892568707466, 0.03702116757631302, 0.06383847445249557], [0.07453086972236633, 0.08956724405288696, 0.037647850811481476, 0.034554578363895416, 0.20350435376167297, 0.15637822449207306, 0.10547322779893875, 0.04996996000409126, 0.04764339700341225, 0.058809179812669754, 0.022429628297686577, 0.025113781914114952, 0.021163804456591606, 0.004183787386864424, 0.01920655556023121, 0.01042927335947752, 0.039394330233335495], [0.0946265459060669, 0.07392112910747528, 0.008441055193543434, 0.11359913647174835, 0.16658742725849152, 0.16855019330978394, 0.051401760429143906, 0.04358818382024765, 0.07750405371189117, 0.018604621291160583, 0.015648480504751205, 0.03786034137010574, 0.012400555424392223, 0.01631971262395382, 0.01638578251004219, 0.020027238875627518, 0.0645337924361229], [0.03593434393405914, 0.05929824337363243, 0.07843022793531418, 0.11796325445175171, 0.3195796310901642, 0.1901479810476303, 0.028238395228981972, 0.016250809654593468, 0.026243215426802635, 0.02494652383029461, 0.005341187585145235, 0.01654711924493313, 0.04616314545273781, 0.00026560816331766546, 0.0020785636734217405, 0.012440221384167671, 0.020131448283791542], [0.19025366008281708, 0.07703237235546112, 0.0106458505615592, 0.15518680214881897, 0.057999636977910995, 0.06947861611843109, 0.010456075891852379, 0.05313672497868538, 0.13994288444519043, 0.022877782583236694, 0.01409536600112915, 0.04498327150940895, 0.006965731270611286, 0.005847529973834753, 0.007901111617684364, 0.02862342819571495, 0.104573093354702], [0.09631843119859695, 0.10552708804607391, 0.06001431122422218, 0.16572625935077667, 0.053799256682395935, 0.03079824335873127, 0.02580343745648861, 0.043431080877780914, 0.07854826003313065, 0.10692145675420761, 0.04204757884144783, 0.021169226616621017, 0.013394113630056381, 0.020619424059987068, 0.018860729411244392, 0.03934461623430252, 0.07767646759748459], [0.058672234416007996, 0.0571172721683979, 0.037414152175188065, 0.08807271718978882, 0.0670572891831398, 0.0643443614244461, 0.07295747101306915, 0.05352793261408806, 0.03435320034623146, 0.07669932395219803, 0.09463126957416534, 0.07032759487628937, 0.05824226513504982, 0.043223559856414795, 0.026333792135119438, 0.06254377216100693, 0.03448179364204407], [0.027944881469011307, 0.0242831539362669, 0.012918280437588692, 0.16402386128902435, 0.03439036011695862, 0.015647124499082565, 0.010424001142382622, 0.030613740906119347, 0.025048082694411278, 0.048907581716775894, 0.06153663620352745, 0.05295651778578758, 0.03979042172431946, 0.01695133186876774, 0.01767057552933693, 0.38970163464546204, 0.02719184383749962], [0.03677641227841377, 0.023587673902511597, 0.14763346314430237, 0.042520828545093536, 0.008023045025765896, 0.006664303131401539, 0.006648252718150616, 0.01626436971127987, 0.03899155184626579, 0.03634963557124138, 0.06613592058420181, 0.011808985844254494, 0.00661960244178772, 0.019977176561951637, 0.034024834632873535, 0.46260493993759155, 0.035368964076042175], [0.053710758686065674, 0.01573863998055458, 0.000860692816786468, 0.08311107754707336, 0.23616304993629456, 0.029673194512724876, 0.04085135459899902, 0.019149426370859146, 0.052326127886772156, 0.11464853584766388, 0.02945755422115326, 0.021228795871138573, 0.09886714816093445, 0.018007831647992134, 0.016416052356362343, 0.11243856698274612, 0.057351112365722656], [0.07678169757127762, 0.03138824552297592, 0.0069891014136374, 0.024354055523872375, 0.030870748683810234, 0.020590312778949738, 0.011850254610180855, 0.03463532775640488, 0.08088368922472, 0.0854516327381134, 0.015365722589194775, 0.13927532732486725, 0.0662253275513649, 0.10883750021457672, 0.08844134211540222, 0.10394864529371262, 0.07411099970340729], [0.04260123893618584, 0.013429353944957256, 0.08451063185930252, 0.005342602264136076, 0.006419896148145199, 0.00040298490785062313, 0.011343014426529408, 0.009916880168020725, 0.04078890383243561, 0.030210701748728752, 0.028912976384162903, 0.05181695520877838, 0.020043091848492622, 0.20750917494297028, 0.39034661650657654, 0.016455737873911858, 0.03994926065206528], [0.09958776086568832, 0.024511493742465973, 0.12924376130104065, 0.020699242129921913, 0.004476725589483976, 0.002866498427465558, 0.012254253029823303, 0.022414108738303185, 0.08055975288152695, 0.018432436510920525, 0.03394339606165886, 0.055974170565605164, 0.02398219332098961, 0.24533863365650177, 0.12275483459234238, 0.032687053084373474, 0.07027378678321838], [0.04026741534471512, 0.060288798063993454, 0.033687297254800797, 0.022989923134446144, 0.02891065925359726, 0.03710899502038956, 0.014900666661560535, 0.018785668537020683, 0.04191936179995537, 0.41869840025901794, 0.06691352277994156, 0.039353806525468826, 0.08412089943885803, 0.016768695786595345, 0.02231862023472786, 0.010441322810947895, 0.042525846511125565], [0.046111952513456345, 0.045371007174253464, 0.025911172851920128, 0.06766625493764877, 0.04622233286499977, 0.04765365645289421, 0.07085514813661575, 0.04710721969604492, 0.03205384686589241, 0.10139051079750061, 0.1182694137096405, 0.09717908501625061, 0.0740463063120842, 0.04925260320305824, 0.029989754781126976, 0.06561510264873505, 0.03530462458729744]], [[0.2920938730239868, 0.03843783959746361, 0.00454994710162282, 0.016129150986671448, 0.01057481486350298, 0.007902449928224087, 0.006613697856664658, 0.04029064252972603, 0.2139209657907486, 0.01930788718163967, 0.07602439820766449, 0.009178251959383488, 0.015704216435551643, 0.0034215927589684725, 0.0053702462464571, 0.04171208292245865, 0.19876797497272491], [0.23590433597564697, 0.09341491013765335, 0.0005686991498805583, 0.0005786936380900443, 0.00023391096328850836, 0.00042569151264615357, 0.0003405431052669883, 0.043897975236177444, 0.287322074174881, 0.0001553949696244672, 0.0351424366235733, 0.00034968854743056, 0.0008663987391628325, 0.00017870480951387435, 0.0009610105189494789, 0.0028025154024362564, 0.29685696959495544], [0.18811707198619843, 0.0016972137382254004, 0.18767330050468445, 0.00016323788440786302, 5.168560892343521e-05, 0.0009534471901133657, 8.584388706367463e-05, 0.1018204540014267, 0.25854259729385376, 0.0017019759397953749, 0.004170809872448444, 1.5877159967203625e-05, 0.00018002472643274814, 0.0009695717017166317, 0.009097996167838573, 0.0026784855872392654, 0.24208037555217743], [0.28926950693130493, 0.0015674886526539922, 9.536379366181791e-05, 0.07221740484237671, 0.0005470728501677513, 0.0002228240336989984, 0.0010531652951613069, 0.019259821623563766, 0.3193008303642273, 0.002631148789077997, 0.0011153884697705507, 0.00145718886051327, 0.00030278589110821486, 0.0006343895802274346, 0.0008347824914380908, 0.05843406915664673, 0.231056809425354], [0.20780760049819946, 0.0005846386193297803, 1.0100829967996106e-05, 0.0006643246742896736, 0.17330071330070496, 5.8346362493466586e-05, 0.00034883408807218075, 0.005748165771365166, 0.3434559404850006, 0.002203787211328745, 0.0006029244395904243, 0.0016555625479668379, 0.0005708352546207607, 4.940937287756242e-05, 1.6163879990926944e-05, 0.0005727290408685803, 0.2623499035835266], [0.3277789354324341, 0.001324411015957594, 0.00033646103111095726, 0.000353420851752162, 0.00025029273820109665, 0.03000376746058464, 4.544815055851359e-06, 0.007027946412563324, 0.3152473270893097, 0.0009667730773799121, 0.00019890819385182112, 4.651370181818493e-05, 7.607298175571486e-05, 0.0006661259103566408, 0.00017799067427404225, 0.0018292013555765152, 0.3137113153934479], [0.2296553999185562, 0.0009228094131685793, 3.078273221035488e-05, 0.0019436333095654845, 0.0003447277413215488, 2.3380230231850874e-06, 0.13296885788440704, 0.0057099550031125546, 0.3332619071006775, 0.012380699627101421, 0.0022470541298389435, 0.0030546793714165688, 0.001296443399041891, 0.00011021554382750764, 2.0596973627107218e-05, 0.0009140309994108975, 0.2751358449459076], [0.3935525417327881, 0.10131669789552689, 0.0077517409808933735, 0.01885724999010563, 0.005897756200283766, 0.0032082691323012114, 0.0014689310919493437, 0.019251234829425812, 0.1920815259218216, 0.003723181551322341, 0.015901226550340652, 0.0061441585421562195, 0.005703573115170002, 0.0019398258300498128, 0.0024472379591315985, 0.017573729157447815, 0.2031809538602829], [0.3139020502567291, 0.04612087458372116, 0.034567691385746, 0.018136130645871162, 0.014624722301959991, 0.03642646223306656, 0.0028493322897702456, 0.06824260950088501, 0.15243707597255707, 0.011110741645097733, 0.01596137136220932, 0.005699531175196171, 0.0139088723808527, 0.00915519054979086, 0.017806829884648323, 0.028394008055329323, 0.21065641939640045], [0.3952358067035675, 0.0018169309478253126, 0.0006401372374966741, 0.0022998496424406767, 0.00395448412746191, 0.0013010089751332998, 0.006638898979872465, 0.010611708275973797, 0.17060349881649017, 0.22119642794132233, 0.00010934696911135688, 0.0006643557571806014, 3.328196544316597e-05, 9.428051271243021e-05, 0.0008516028174199164, 0.0016511741559952497, 0.18229711055755615], [0.32721415162086487, 0.09639663249254227, 0.0016054569277912378, 0.0004703406593762338, 0.0002142055018339306, 0.00013674484216608107, 0.0007460075430572033, 0.013670305721461773, 0.14843612909317017, 0.00010933079465758055, 0.24741867184638977, 5.6484659580746666e-05, 0.0003197313053533435, 6.398563982656924e-06, 9.052497625816613e-05, 0.0010705945314839482, 0.16203829646110535], [0.30754250288009644, 0.0009476087288931012, 3.085290927629103e-06, 0.001100786030292511, 0.000625999120529741, 5.30617508047726e-05, 0.0006682449020445347, 0.004559790715575218, 0.23483937978744507, 0.00020654189574997872, 3.1595060136169195e-05, 0.28347548842430115, 1.4062512491364032e-05, 6.494088665931486e-06, 2.4871154892025515e-05, 0.000385942286811769, 0.1655144989490509], [0.22668159008026123, 0.0026423290837556124, 2.5871360776363872e-05, 0.0003170525305904448, 0.0018173913704231381, 0.00018161829211749136, 0.0013966673286631703, 0.010686048306524754, 0.2911210060119629, 0.00011430634185671806, 0.0010190752800554037, 0.00011227899085497484, 0.22408342361450195, 0.00010809279046952724, 9.568055247655138e-05, 0.0019795112311840057, 0.23761805891990662], [0.22935882210731506, 0.001239060889929533, 0.0002068211615551263, 0.0007138069486245513, 0.00012699555372819304, 0.0002493307401891798, 3.352266867295839e-05, 0.004078928846865892, 0.21864815056324005, 2.8114787710364908e-05, 9.27734981814865e-06, 1.0227522579953074e-05, 4.4142485421616584e-05, 0.38679930567741394, 0.0003356502566020936, 0.0004880965279880911, 0.15762969851493835], [0.4362337291240692, 0.0049179838970303535, 0.003379747038707137, 0.000696059491019696, 5.3383315389510244e-05, 0.0001347169018117711, 4.089279173058458e-05, 0.017139635980129242, 0.27210748195648193, 0.0005381380906328559, 0.00010418159945402294, 3.7957102904329076e-05, 6.06112735113129e-05, 0.0007822462357580662, 0.0652136504650116, 0.0005113249644637108, 0.19804832339286804], [0.33256620168685913, 0.0036038111429661512, 0.0003811477217823267, 0.008409728296101093, 0.00041850630077533424, 0.00026936628273688257, 0.00011917229858227074, 0.010657011531293392, 0.31702518463134766, 0.0003735825594048947, 0.00045285469968803227, 0.00014789750275667757, 0.00029891918529756367, 0.00028292369097471237, 9.962243348127231e-05, 0.0935000404715538, 0.2313941866159439], [0.327828586101532, 0.039426300674676895, 0.018262511119246483, 0.011622877791523933, 0.011556536890566349, 0.03138080611824989, 0.002868588315322995, 0.0779644176363945, 0.22032298147678375, 0.011494921520352364, 0.01386911328881979, 0.0033865408040583134, 0.008826795034110546, 0.006341163069009781, 0.011007431894540787, 0.020613398402929306, 0.18322715163230896]], [[0.22404423356056213, 0.009187303483486176, 0.030839409679174423, 0.003122019814327359, 0.00626831641420722, 0.0075899092480540276, 0.001497644349001348, 0.016502829268574715, 0.11780377477407455, 0.1815018355846405, 0.010765873827040195, 0.024326590821146965, 0.016497954726219177, 0.010893646627664566, 0.015117834322154522, 0.018350284546613693, 0.3056905269622803], [0.2127855122089386, 0.028610223904252052, 0.011633998714387417, 0.022930029779672623, 0.0068074800074100494, 0.01159227266907692, 0.006404152140021324, 0.16352684795856476, 0.30165189504623413, 0.00226025958545506, 0.004792015999555588, 0.004492836073040962, 0.0010328976204618812, 0.0008022096590138972, 0.002699598204344511, 0.005397929809987545, 0.2125798463821411], [0.24353277683258057, 0.04662283882498741, 0.05093754455447197, 0.016677314415574074, 0.006513838656246662, 0.010542158037424088, 0.005945499986410141, 0.07141199707984924, 0.26227810978889465, 0.0038042343221604824, 0.004336316138505936, 0.005305994302034378, 0.0013808937510475516, 0.00198767171241343, 0.007124859374016523, 0.004154199734330177, 0.2574436068534851], [0.2752525210380554, 0.04256882891058922, 0.008304232731461525, 0.04304187372326851, 0.0323055200278759, 0.014715862460434437, 0.006687971297651529, 0.2134365737438202, 0.19429191946983337, 0.0024805362336337566, 0.005857239011675119, 0.01179262064397335, 0.002238689921796322, 0.0008794603636488318, 0.005074869375675917, 0.004582161549478769, 0.13648924231529236], [0.32165247201919556, 0.0450129359960556, 0.011882772669196129, 0.09307406097650528, 0.04269018396735191, 0.03969000279903412, 0.01161148026585579, 0.1484362930059433, 0.1635918766260147, 0.001413102843798697, 0.0033588726073503494, 0.00589297479018569, 0.002967578824609518, 0.0005604822654277086, 0.0030677730683237314, 0.006309079471975565, 0.09878811985254288], [0.18568414449691772, 0.09832528978586197, 0.03872985765337944, 0.13517391681671143, 0.11998328566551208, 0.03997296094894409, 0.031380970031023026, 0.12693044543266296, 0.09478933364152908, 0.0026213431265205145, 0.013192687183618546, 0.018202470615506172, 0.007382223382592201, 0.0019618868827819824, 0.013418799266219139, 0.005354241002351046, 0.06689624488353729], [0.16496127843856812, 0.047331273555755615, 0.009102138690650463, 0.06733017414808273, 0.035812873393297195, 0.030542360618710518, 0.006878948770463467, 0.31680160760879517, 0.17043671011924744, 0.003096112282946706, 0.006595946848392487, 0.012208394706249237, 0.0016734598902985454, 0.00037642274401150644, 0.0032162696588784456, 0.008693660609424114, 0.11494236439466476], [0.19085519015789032, 0.06018442288041115, 0.011834525503218174, 0.08649411052465439, 0.019225798547267914, 0.011613625101745129, 0.012696342542767525, 0.19684702157974243, 0.20097532868385315, 0.006559760309755802, 0.019277941435575485, 0.008613570593297482, 0.004053181037306786, 0.00227136118337512, 0.006634105462580919, 0.024815760552883148, 0.13704797625541687], [0.30690258741378784, 0.02679472230374813, 0.011255483143031597, 0.02604091912508011, 0.012265798635780811, 0.00618348503485322, 0.004539648536592722, 0.09630091488361359, 0.2539031207561493, 0.006021426524966955, 0.011271647177636623, 0.007742289453744888, 0.0027321702800691128, 0.0017309455433860421, 0.0032706332858651876, 0.013799375854432583, 0.20924486219882965], [0.20987045764923096, 0.005762506276369095, 0.0012960791354998946, 0.009004318155348301, 0.001947010401636362, 0.0025654539931565523, 0.0050395093858242035, 0.21396028995513916, 0.17319928109645844, 0.005859806668013334, 0.017655963078141212, 0.013937211595475674, 0.012490552850067616, 0.003946955315768719, 0.007475710939615965, 0.0757952332496643, 0.24019363522529602], [0.29504281282424927, 0.011301913298666477, 0.007198079489171505, 0.010319914668798447, 0.005185090471059084, 0.004785916768014431, 0.002487111371010542, 0.11605797708034515, 0.18971474468708038, 0.011346149258315563, 0.006001610308885574, 0.013856709003448486, 0.003458983963355422, 0.001941423979587853, 0.006526427809149027, 0.03637920320034027, 0.27839601039886475], [0.3753051161766052, 0.017154471948742867, 0.0019981185905635357, 0.036559104919433594, 0.005707910284399986, 0.003839462297037244, 0.003966993652284145, 0.15112626552581787, 0.11763722449541092, 0.004961076658219099, 0.029356716200709343, 0.015592940151691437, 0.009380440227687359, 0.0031562307849526405, 0.010151279158890247, 0.07818426191806793, 0.1359224170446396], [0.26478636264801025, 0.021863367408514023, 0.002591127762570977, 0.013034133240580559, 0.004433171823620796, 0.0015097843715921044, 0.0042487927712500095, 0.30276185274124146, 0.15307000279426575, 0.002136186696588993, 0.014849446713924408, 0.016725076362490654, 0.0025098377373069525, 0.0032316420692950487, 0.004887160379439592, 0.013315770775079727, 0.1740463227033615], [0.3923172056674957, 0.0379229411482811, 0.004498607944697142, 0.01900322549045086, 0.009744742885231972, 0.0049546645022928715, 0.006934881675988436, 0.18183450400829315, 0.07574349641799927, 0.002829605480656028, 0.03242478519678116, 0.03320515528321266, 0.021991034969687462, 0.0008035348728299141, 0.059604462236166, 0.019003497436642647, 0.0971836969256401], [0.32964029908180237, 0.02343744784593582, 0.004301612265408039, 0.014635363593697548, 0.0034210134763270617, 0.005026042461395264, 0.007740766741335392, 0.174477681517601, 0.1553230732679367, 0.0029629396740347147, 0.033561501652002335, 0.008458543568849564, 0.004247010685503483, 0.00549670634791255, 0.008897955529391766, 0.029893584549427032, 0.1884784996509552], [0.3046429753303528, 0.02137015387415886, 0.005005453247576952, 0.015783295035362244, 0.009150386787950993, 0.003989753313362598, 0.0032189199700951576, 0.13954909145832062, 0.14953553676605225, 0.011478420346975327, 0.02154521830379963, 0.03223951533436775, 0.007771638687700033, 0.0027041954454034567, 0.019880862906575203, 0.019679173827171326, 0.23245543241500854], [0.2823575437068939, 0.016558093950152397, 0.007606648374348879, 0.01545813400298357, 0.005638604983687401, 0.0032766794320195913, 0.0029583959840238094, 0.09284613281488419, 0.22527742385864258, 0.011906598694622517, 0.015356337651610374, 0.012299875728785992, 0.00417743343859911, 0.0033858788665384054, 0.00439974432811141, 0.026879584416747093, 0.26961687207221985]], [[0.09703102707862854, 0.03220197558403015, 0.005146260838955641, 0.019691308960318565, 0.0015193107537925243, 0.013793233782052994, 0.002776895882561803, 0.06201622262597084, 0.3223714232444763, 0.02474409155547619, 0.00466509722173214, 0.004022928886115551, 0.002097614575177431, 0.0042184083722531796, 0.0014336570166051388, 0.030124951153993607, 0.37214547395706177], [0.17076697945594788, 0.0997667908668518, 0.02683289907872677, 0.015133483335375786, 0.01018153689801693, 0.01725509762763977, 0.011523970402777195, 0.07351073622703552, 0.16353842616081238, 0.043221037834882736, 0.14786438643932343, 0.009291380643844604, 0.0054242853075265884, 0.003237460507079959, 0.003805671352893114, 0.026077480986714363, 0.17256835103034973], [0.2783249318599701, 0.02409948594868183, 0.03177265450358391, 0.0024664346128702164, 0.0008172832312993705, 0.0029011291917413473, 0.001166883739642799, 0.09870889782905579, 0.19315457344055176, 0.0034173615276813507, 0.02178138494491577, 0.0017446019919589162, 0.0021276427432894707, 0.045160967856645584, 0.03221365436911583, 0.012858804315328598, 0.24728335440158844], [0.26640909910202026, 0.009586221538484097, 0.005568946711719036, 0.049182627350091934, 0.002268919488415122, 0.02529790624976158, 0.005396824795752764, 0.04639700427651405, 0.21966488659381866, 0.016346022486686707, 0.0019607350695878267, 0.0046170842833817005, 0.0024304187390953302, 0.005317733157426119, 0.004196048714220524, 0.09821679443120956, 0.2371426671743393], [0.25860005617141724, 0.014897421933710575, 0.0019000177271664143, 0.00768154626712203, 0.00138087198138237, 0.01306932047009468, 0.004856158513575792, 0.10667171329259872, 0.2330295592546463, 0.0030923134181648493, 0.0032360360492020845, 0.008482899516820908, 0.0058883060701191425, 0.006939415819942951, 0.005025846417993307, 0.036787211894989014, 0.2884610891342163], [0.299007385969162, 0.013951770961284637, 0.008937290869653225, 0.01354428380727768, 0.0009622995858080685, 0.006932614836841822, 0.002046124078333378, 0.12154050916433334, 0.20369122922420502, 0.004640206228941679, 0.006814151536673307, 0.00821527186781168, 0.0071725440211594105, 0.009322093799710274, 0.006301621440798044, 0.0319623239338398, 0.2549581825733185], [0.26717832684516907, 0.021424047648906708, 0.005397978704422712, 0.007558157667517662, 0.0014462074032053351, 0.013391975313425064, 0.003012719564139843, 0.055652618408203125, 0.2632453143596649, 0.005558896344155073, 0.004034125711768866, 0.002607528818771243, 0.002253395738080144, 0.0027265259996056557, 0.0017540052067488432, 0.017231985926628113, 0.3255261182785034], [0.0903635323047638, 0.04783948138356209, 0.021035343408584595, 0.03132093325257301, 0.03722129389643669, 0.05907224491238594, 0.013983873650431633, 0.11372509598731995, 0.0825207456946373, 0.13152764737606049, 0.011705374345183372, 0.021000642329454422, 0.05724185332655907, 0.046011146157979965, 0.02264517918229103, 0.0858134999871254, 0.12697207927703857], [0.10567986965179443, 0.029719671234488487, 0.016413334757089615, 0.011662883684039116, 0.02987338788807392, 0.047923047095537186, 0.01618053950369358, 0.16713537275791168, 0.12307479977607727, 0.023399515077471733, 0.015143640339374542, 0.02448997274041176, 0.03629350662231445, 0.06455422192811966, 0.018759675323963165, 0.0634353831410408, 0.2062610685825348], [0.31985634565353394, 0.03799072653055191, 0.0038136872462928295, 0.043138500303030014, 0.0222634207457304, 0.05659031867980957, 0.021846959367394447, 0.16525664925575256, 0.09792320430278778, 0.004200590308755636, 0.008484791032969952, 0.01640312373638153, 0.006441842298954725, 0.010949919931590557, 0.000888711423613131, 0.03805716708302498, 0.14589402079582214], [0.23613311350345612, 0.22397688031196594, 0.05252093821763992, 0.023578016087412834, 0.0063842060044407845, 0.007359006442129612, 0.006432905327528715, 0.07066486775875092, 0.07237928360700607, 0.016607576981186867, 0.17710672318935394, 0.00237080454826355, 0.0007672299980185926, 0.002227987162768841, 0.001268949476070702, 0.016797464340925217, 0.08342400193214417], [0.4162965714931488, 0.023703033104538918, 0.005078424233943224, 0.00811045989394188, 0.00425873976200819, 0.021713633090257645, 0.004882904700934887, 0.09108726680278778, 0.16075964272022247, 0.0061604930087924, 0.0031443138141185045, 0.002245415234938264, 0.005060181953012943, 0.005507911089807749, 0.002887589391320944, 0.021300330758094788, 0.21780315041542053], [0.27463674545288086, 0.017799386754631996, 0.03629354387521744, 0.00939211342483759, 0.00317370449192822, 0.01879732683300972, 0.005804486107081175, 0.11809951812028885, 0.19079633057117462, 0.003336308291181922, 0.0040556928142905235, 0.008462403900921345, 0.002116583986207843, 0.004215013701468706, 0.00417370954528451, 0.04174119606614113, 0.2571059763431549], [0.3024560511112213, 0.032547786831855774, 0.040002916008234024, 0.012277884408831596, 0.0030880861449986696, 0.01899184100329876, 0.004788948222994804, 0.15415412187576294, 0.14186060428619385, 0.0017129492480307817, 0.005325031466782093, 0.00914151594042778, 0.006560756359249353, 0.0046642497181892395, 0.010934620164334774, 0.057021237909793854, 0.19447149336338043], [0.30245688557624817, 0.021099543198943138, 0.030815938487648964, 0.003993559628725052, 0.0021287144627422094, 0.026269113644957542, 0.0024147252552211285, 0.1673903614282608, 0.17521771788597107, 0.0005891172331757843, 0.004202599171549082, 0.002888341899961233, 0.0014854454202577472, 0.006945270113646984, 0.000805056479293853, 0.011658421717584133, 0.23963919281959534], [0.2843210697174072, 0.03152967616915703, 0.003723833477124572, 0.06585222482681274, 0.003251809859648347, 0.011879992671310902, 0.003824991174042225, 0.06839574873447418, 0.17949014902114868, 0.027393124997615814, 0.003633933374658227, 0.0034882931504398584, 0.0015915933763608336, 0.014812763780355453, 0.009673142805695534, 0.08029397577047348, 0.20684362947940826], [0.10668598115444183, 0.02907514199614525, 0.021513856947422028, 0.012126919813454151, 0.03529800474643707, 0.049412794411182404, 0.01754113845527172, 0.17067867517471313, 0.11266523599624634, 0.02353556454181671, 0.015040814876556396, 0.024802949279546738, 0.04028703272342682, 0.07297728210687637, 0.02032008022069931, 0.0635015144944191, 0.18453703820705414]]], [[[0.010973572731018066, 0.014845030382275581, 0.022055495530366898, 0.0026220425497740507, 0.007935742847621441, 0.01486633438616991, 0.009585713967680931, 0.02672129124403, 0.5104263424873352, 0.0002145023172488436, 0.0013254826189950109, 0.00035148864844813943, 0.0007792221149429679, 0.0006743393023498356, 0.000960935780312866, 0.0017869849689304829, 0.3738754391670227], [0.016189008951187134, 0.01502901315689087, 0.40647879242897034, 0.005121450871229172, 0.11581943929195404, 0.14942428469657898, 0.13546043634414673, 0.015917088836431503, 0.04806835576891899, 0.0008404847467318177, 0.0022975471802055836, 0.0048073758371174335, 0.010099419392645359, 0.00848411675542593, 0.023126358166337013, 0.005578957032412291, 0.03725787252187729], [0.02789466083049774, 0.028451690450310707, 0.027696767821907997, 0.000520958739798516, 0.01085966918617487, 0.03831902891397476, 0.030618218705058098, 0.01882346160709858, 0.42063966393470764, 0.0006749082240276039, 0.0015658607007935643, 0.0037833349779248238, 0.0038365276996046305, 0.005655630957335234, 0.011002609506249428, 0.0018818125827237964, 0.3677752614021301], [0.014665553346276283, 0.4109187424182892, 0.1008564829826355, 0.0032074612099677324, 0.0436251126229763, 0.1706613004207611, 0.06259061396121979, 0.012122035957872868, 0.08356226235628128, 0.008915208280086517, 0.0058303349651396275, 0.007323183119297028, 0.006034854333847761, 0.0032316127326339483, 0.002881755819544196, 0.0003940360329579562, 0.0631793811917305], [0.01300919521600008, 0.2089272290468216, 0.06511922180652618, 0.023526335135102272, 0.029193414375185966, 0.25744959712028503, 0.1908273845911026, 0.022318068891763687, 0.0692194476723671, 0.0011302514467388391, 0.0022162070963531733, 0.00935986079275608, 0.0033115744590759277, 0.008103566244244576, 0.03962770849466324, 0.0007054639863781631, 0.055955443531274796], [0.047366488724946976, 0.07275886833667755, 0.14623956382274628, 0.16915209591388702, 0.051790446043014526, 0.02008923329412937, 0.06735452264547348, 0.09909037500619888, 0.11704691499471664, 0.0017620933940634131, 0.0060837347991764545, 0.004070416558533907, 0.014515632763504982, 0.006130069959908724, 0.06684812158346176, 0.005031967535614967, 0.10466952621936798], [0.018365757539868355, 0.05502869933843613, 0.031771980226039886, 0.7670526504516602, 0.034072138369083405, 0.04932161048054695, 0.0013193270424380898, 0.018009938299655914, 0.008231310173869133, 0.0006400452693924308, 0.001183435320854187, 0.0021507628262043, 0.0015978373121470213, 0.0008830464212223887, 0.003773536765947938, 0.0003717515792232007, 0.00622624671086669], [0.04401952400803566, 0.03226006031036377, 0.14829698204994202, 0.02315174601972103, 0.06532474607229233, 0.12351652979850769, 0.01807529293000698, 0.051587626338005066, 0.23651264607906342, 0.008278613910079002, 0.012150119058787823, 0.008223667740821838, 0.006942181382328272, 0.00701279379427433, 0.018046025186777115, 0.004645165055990219, 0.19195625185966492], [0.008014025166630745, 0.002453271532431245, 0.002284110290929675, 0.0005950079066678882, 0.0009291530004702508, 0.0014843737008050084, 0.0009571752743795514, 0.009511671029031277, 0.512028157711029, 0.00048043765127658844, 0.0004840755427721888, 0.0005090604536235332, 0.000877571408636868, 0.000561970635317266, 0.0005855957278981805, 0.002642277395352721, 0.45560210943222046], [0.05893915519118309, 0.004959069192409515, 0.09357424080371857, 0.00190543953794986, 0.009960702620446682, 0.04426253214478493, 0.015621045604348183, 0.00938519649207592, 0.19872264564037323, 0.0016963587841019034, 0.04343685135245323, 0.023814281448721886, 0.02632875181734562, 0.036393698304891586, 0.1093456894159317, 0.04231872782111168, 0.2793356478214264], [0.01992052234709263, 0.006161093711853027, 0.007589926477521658, 0.00046238701906986535, 0.005520354025065899, 0.024907352402806282, 0.012775149196386337, 0.005661738570779562, 0.32653382420539856, 0.0020882582757622004, 0.0021655098535120487, 0.015465816482901573, 0.03194478154182434, 0.030286500230431557, 0.07281152158975601, 0.01618834026157856, 0.4195168912410736], [0.036059796810150146, 0.010527840815484524, 0.004981519654393196, 0.0029798285104334354, 0.0007715271203778684, 0.006110026966780424, 0.0034477165900170803, 0.010959194973111153, 0.20585474371910095, 0.00044907856499776244, 0.010765604674816132, 0.0028897759038954973, 0.1274241805076599, 0.15617790818214417, 0.0760139673948288, 0.041925206780433655, 0.3026621341705322], [0.016502052545547485, 0.003211716189980507, 0.004133071284741163, 0.0006781511474400759, 0.002640243386849761, 0.01132307667285204, 0.003016370115801692, 0.008973664604127407, 0.13929511606693268, 0.00045586933265440166, 0.004585266578942537, 0.009204753674566746, 0.04407932609319687, 0.3028356432914734, 0.2534273862838745, 0.0154296038672328, 0.1802086979150772], [0.028918199241161346, 0.004348126705735922, 0.004228840582072735, 0.002513051498681307, 0.0009302482358179986, 0.0009891161462292075, 0.0013943141093477607, 0.0123847471550107, 0.05579974129796028, 0.010748859494924545, 0.011472832411527634, 0.006188303232192993, 0.015000557526946068, 0.006573528982698917, 0.013217327184975147, 0.7583897113800049, 0.06690241396427155], [0.03434761241078377, 0.004570739809423685, 0.009555219672620296, 0.0029089529998600483, 0.0013298295671120286, 0.002127466257661581, 0.0007698537083342671, 0.03190582990646362, 0.03863202780485153, 0.005823454353958368, 0.01081096287816763, 0.004527913872152567, 0.016536278650164604, 0.012182661332190037, 0.011118763126432896, 0.7706246376037598, 0.04222780838608742], [0.03200674429535866, 0.009288210421800613, 0.029990360140800476, 0.000543253670912236, 0.007822990417480469, 0.017453720793128014, 0.0022451900877058506, 0.011948894709348679, 0.023673368617892265, 0.6120604276657104, 0.1465435028076172, 0.014453024603426456, 0.028639061376452446, 0.009268267080187798, 0.01893697865307331, 0.00406336085870862, 0.031062575057148933], [0.00889130961149931, 0.001662836642935872, 0.0015882020816206932, 0.0004541071830317378, 0.0006766048027202487, 0.0011294177966192365, 0.000691256660502404, 0.007943513803184032, 0.48110243678092957, 0.000716417795047164, 0.0006372368079610169, 0.0007312323432415724, 0.0012041775044053793, 0.0008390186703763902, 0.0008140855352394283, 0.003646201454102993, 0.48727190494537354]], [[0.12759742140769958, 0.002641474362462759, 0.018322398886084557, 0.0009617983014322817, 0.0003980716865044087, 0.0021033675875514746, 0.0011466017458587885, 0.005177818238735199, 0.2399589568376541, 0.029403721913695335, 0.04501628875732422, 0.013487356714904308, 0.05238167569041252, 0.03203549608588219, 0.01721315085887909, 0.05518418923020363, 0.35697028040885925], [0.05798911675810814, 0.01655115932226181, 0.21509882807731628, 0.0039933170191943645, 0.0006378262769430876, 0.009745080024003983, 0.0018475927645340562, 0.030218685045838356, 0.33957552909851074, 0.0006990835536271334, 0.0030042503494769335, 0.0016487378161400557, 0.0037539382465183735, 0.0025319443084299564, 0.004574748687446117, 0.005559454206377268, 0.30257076025009155], [0.011131302453577518, 0.0037082000635564327, 0.3892751932144165, 0.004684797488152981, 0.0028307328466326, 0.013075975701212883, 0.005537704098969698, 0.007429618388414383, 0.2873665988445282, 0.0012595867738127708, 0.001423293026164174, 0.0009203414665535092, 0.0012776433723047376, 0.001001540687866509, 0.0014781435020267963, 0.003450704738497734, 0.2641487717628479], [0.07821319252252579, 0.034390296787023544, 0.08508602529764175, 0.0049172090366482735, 0.0010389633243903518, 0.023218179121613503, 0.00403863238170743, 0.03876839578151703, 0.3807511329650879, 0.0012927333591505885, 0.004972738213837147, 0.003812238108366728, 0.001470681163482368, 0.00024343901895917952, 0.0005249351379461586, 0.005401398986577988, 0.3318597376346588], [0.04820982366800308, 0.026434097439050674, 0.04411632567644119, 0.00512579595670104, 0.0006215384928509593, 0.018394887447357178, 0.005331367254257202, 0.11766041815280914, 0.3907431364059448, 0.0009903975296765566, 0.0023226693738251925, 0.002586232963949442, 0.0006157384486868978, 6.950420356588438e-05, 0.00017569551710039377, 0.003024033736437559, 0.3335783779621124], [0.09430507570505142, 0.026930296793580055, 0.039912737905979156, 0.005324020516127348, 0.0009463638998568058, 0.017952777445316315, 0.0044166757725179195, 0.03244282305240631, 0.4042772650718689, 0.0015575711149722338, 0.011453396640717983, 0.0009170050616376102, 0.0017110316548496485, 9.99456096906215e-05, 0.0005563996382988989, 0.007068190723657608, 0.35012832283973694], [0.014356883242726326, 0.013352934271097183, 0.011027355678379536, 0.002892084186896682, 0.00046779081458225846, 0.0040612113662064075, 0.0005426998832263052, 0.03641800582408905, 0.4880227744579315, 0.0008454924100078642, 0.00048002315452322364, 0.0008909572497941554, 0.0009645803365856409, 0.00021340344392228872, 0.0007506029214709997, 0.004851281177252531, 0.4198618233203888], [0.08017683774232864, 0.031582266092300415, 0.1411472111940384, 0.00836728885769844, 0.0022520816419273615, 0.014069038443267345, 0.005743908695876598, 0.04028191789984703, 0.33867013454437256, 0.0017679514130577445, 0.0040212357416749, 0.003211193485185504, 0.004232272505760193, 0.0037808921188116074, 0.003924116957932711, 0.006890976335853338, 0.30988073348999023], [0.09928568452596664, 0.01973758265376091, 0.03508320450782776, 0.00711445277556777, 0.0009905463084578514, 0.0034138828050345182, 0.002053978154435754, 0.11052355915307999, 0.325686514377594, 0.0039240955375134945, 0.006915200036019087, 0.004005827009677887, 0.0034744315780699253, 0.0010585907148197293, 0.0023890682496130466, 0.012573249638080597, 0.36177003383636475], [0.14523206651210785, 0.004370057489722967, 0.00713363429531455, 0.000566799018997699, 0.0002683750935830176, 0.002279791748151183, 0.0010023448849096894, 0.01880032569169998, 0.33974114060401917, 0.0034246111754328012, 0.011534811928868294, 0.0038573420606553555, 0.00985016580671072, 0.0008040035027079284, 0.0012686030240729451, 0.014856799505650997, 0.43500906229019165], [0.10187390446662903, 0.008110197260975838, 0.4530135989189148, 0.0032188883051276207, 0.0011650349479168653, 0.01108372863382101, 0.0020951619371771812, 0.008180157281458378, 0.1476217806339264, 0.0054847379215061665, 0.010686046443879604, 0.011580334044992924, 0.029445620253682137, 0.010921631939709187, 0.01596014015376568, 0.012294610030949116, 0.16726449131965637], [0.07199853658676147, 0.005378678906708956, 0.001824289676733315, 0.0007286925683729351, 5.777660044259392e-05, 0.0007411994156427681, 0.0003564495127648115, 0.00934547744691372, 0.3786395192146301, 0.0059769367799162865, 0.011746933683753014, 0.0029733304399996996, 0.012123722583055496, 0.002662101062014699, 0.014138547703623772, 0.016141939908266068, 0.4651659429073334], [0.04819687083363533, 0.007004470564424992, 0.002005811780691147, 0.0011418426875025034, 0.00014645527699030936, 0.0006488825310952961, 0.00036462140269577503, 0.01453134510666132, 0.38899460434913635, 0.00808185338973999, 0.002570420503616333, 0.01464450266212225, 0.00245995563454926, 0.0044882227666676044, 0.007807701360434294, 0.015765361487865448, 0.48114702105522156], [0.0028171250596642494, 0.0002581830194685608, 0.010321768000721931, 0.0002449669409543276, 7.836687473172788e-06, 1.269724452868104e-05, 2.6008741770056076e-05, 0.0007407551165670156, 0.10632429271936417, 0.0020097922533750534, 0.00014643576287198812, 0.0008298148750327528, 0.005793146789073944, 0.09056054055690765, 0.6389860510826111, 0.0015513580292463303, 0.13936926424503326], [0.022478634491562843, 0.0018809805624186993, 0.03874971345067024, 0.0013490472920238972, 0.00017873753677122295, 0.00021559018932748586, 0.0003060683375224471, 0.006406242027878761, 0.3428303301334381, 0.004524475894868374, 0.0020458821672946215, 0.002325686626136303, 0.011292899027466774, 0.0387813001871109, 0.08969075232744217, 0.009814504534006119, 0.4271290600299835], [0.1784118115901947, 0.013392035849392414, 0.031874459236860275, 0.001495323027484119, 0.00045151100493967533, 0.007161801680922508, 0.0009671953157521784, 0.015159158036112785, 0.3048873245716095, 0.00976563896983862, 0.01224400382488966, 0.00756114674732089, 0.017550110816955566, 0.006095872260630131, 0.005096809938549995, 0.02016581781208515, 0.3677200376987457], [0.10374398529529572, 0.016477977856993675, 0.02411801367998123, 0.005720147863030434, 0.0007447206880897284, 0.00245878123678267, 0.0017309562535956502, 0.09839294850826263, 0.32528623938560486, 0.005455663427710533, 0.008655020967125893, 0.004578886087983847, 0.00449566962197423, 0.0012366364244371653, 0.0026502416003495455, 0.015306497924029827, 0.37894758582115173]], [[0.03353704512119293, 0.004694098141044378, 0.025402426719665527, 0.006758269853889942, 0.009840640239417553, 0.024118728935718536, 0.012706905603408813, 0.03391854465007782, 0.3314789831638336, 0.021580014377832413, 0.011276914738118649, 0.009882969781756401, 0.00516238808631897, 0.0021049596834927797, 0.007396898698061705, 0.01761094108223915, 0.4425293207168579], [0.013683877885341644, 0.027670934796333313, 0.03765421733260155, 0.021852822974324226, 0.005495890974998474, 0.02996671013534069, 0.08865571767091751, 0.03588790073990822, 0.39578983187675476, 0.007235392462462187, 0.0030585213098675013, 0.0010365747148171067, 0.0016964009264484048, 0.000606441986747086, 0.009456994011998177, 0.006040855310857296, 0.31421080231666565], [0.025705086067318916, 0.04889628291130066, 0.07281841337680817, 0.0016010240651667118, 0.0006987453089095652, 0.006124191917479038, 0.01375453919172287, 0.02647683396935463, 0.3953234851360321, 0.004304227419197559, 0.0031535611487925053, 0.0004450964042916894, 0.0011390179861336946, 0.0006755361100658774, 0.024200377985835075, 0.004302963148802519, 0.3703804612159729], [0.01923833042383194, 0.09826676547527313, 0.06297760456800461, 0.015220953151583672, 0.006857878994196653, 0.007348500192165375, 0.012302327901124954, 0.028309660032391548, 0.3820899724960327, 0.0483933724462986, 0.0027331318706274033, 0.0028866578359156847, 0.0007129637524485588, 0.0004307494964450598, 0.0022417716681957245, 0.0015804794384166598, 0.3084089159965515], [0.007056498900055885, 0.04310993477702141, 0.05480656027793884, 0.43375951051712036, 0.013916335999965668, 0.0050793858245015144, 0.013597850687801838, 0.023951562121510506, 0.20993900299072266, 0.005971364211291075, 0.0009546459186822176, 0.0027351337485015392, 4.728916610474698e-05, 0.000718635565135628, 0.0022134140599519014, 0.0011169197969138622, 0.18102595210075378], [0.003572630463168025, 0.017683137208223343, 0.07362271100282669, 0.7128459811210632, 0.05613403767347336, 0.0027720273938030005, 0.014338690787553787, 0.008431363850831985, 0.053321585059165955, 0.0013619221281260252, 0.0001982022513402626, 0.00039412450860254467, 5.013330883230083e-05, 5.638580478262156e-05, 0.0007312584784813225, 0.0002478231326676905, 0.05423804000020027], [0.0020653174724429846, 0.01215394027531147, 0.006761945318430662, 0.9123800992965698, 0.020709101110696793, 0.0011311762500554323, 0.00029579075635410845, 0.0023370953276753426, 0.020108764991164207, 0.0026155223604291677, 0.00025410830858163536, 0.0005855978233739734, 1.1566933608264662e-05, 8.825767872622237e-05, 0.00012408426846377552, 9.855776443146169e-05, 0.018279030919075012], [0.04648226499557495, 0.02777552604675293, 0.03084980510175228, 0.05609253793954849, 0.039116088300943375, 0.27781447768211365, 0.022532960399985313, 0.05209442600607872, 0.21780811250209808, 0.009599275887012482, 0.0040978435426950455, 0.003034740686416626, 0.0017333821160718799, 0.0013580142986029387, 0.004341691732406616, 0.0055438741110265255, 0.1997249573469162], [0.021380115300416946, 0.007451274432241917, 0.02679167129099369, 0.009715354070067406, 0.01041471492499113, 0.02453741803765297, 0.022088997066020966, 0.0370662659406662, 0.36317312717437744, 0.01284188125282526, 0.010637428611516953, 0.01088764052838087, 0.006658137310296297, 0.0060299355536699295, 0.0230949018150568, 0.01575629413127899, 0.3914748430252075], [0.008759306743741035, 0.0017021362436935306, 0.0030789608135819435, 0.0022681960836052895, 0.0004023327201139182, 0.019204553216695786, 0.009455198422074318, 0.03205280378460884, 0.39825835824012756, 0.02105966955423355, 0.005749039817601442, 0.002790131140500307, 0.00196623126976192, 0.001175210578367114, 0.0037712149787694216, 0.0052514155395329, 0.48305514454841614], [0.013387811370193958, 0.004353857599198818, 0.009090623818337917, 0.0037649269215762615, 0.0017662190366536379, 0.01526618655771017, 0.012045747600495815, 0.0251274686306715, 0.3874477446079254, 0.08490371704101562, 0.002081465907394886, 0.0017140712589025497, 0.000830847246106714, 0.0007690382190048695, 0.00365238799713552, 0.00841774232685566, 0.4253802001476288], [0.016170823946595192, 0.00860834401100874, 0.0013970256550237536, 0.030484246090054512, 0.002820461755618453, 0.00030802551191300154, 0.004427966196089983, 0.013040955178439617, 0.1426769196987152, 0.08620618283748627, 0.011666359379887581, 0.032822202891111374, 0.23797467350959778, 0.06326288729906082, 0.0210683923214674, 0.1790618747472763, 0.1480027139186859], [0.013409675098955631, 0.0016358235152438283, 0.000607586232945323, 0.0022632814943790436, 0.00014700574683956802, 0.002604493172839284, 0.0004976140917278826, 0.007984621450304985, 0.13281553983688354, 0.045495904982089996, 0.009842057712376118, 0.05439065396785736, 0.042849864810705185, 0.3019333779811859, 0.07328135520219803, 0.16856414079666138, 0.14167706668376923], [0.02218128740787506, 0.021137135103344917, 0.003321901196613908, 0.015765530988574028, 0.0027436725795269012, 0.0002585668698884547, 0.005819383542984724, 0.012072925455868244, 0.2434394657611847, 0.07781201601028442, 0.12173343449831009, 0.01955941878259182, 0.03972085937857628, 0.0325206033885479, 0.027027705684304237, 0.0850103497505188, 0.269875705242157], [0.04302673786878586, 0.01941583678126335, 0.006394318770617247, 0.009697443805634975, 0.0006676638731732965, 0.00038252034573815763, 0.0006676221964880824, 0.008733977563679218, 0.15230520069599152, 0.05339881032705307, 0.09822818636894226, 0.04369979351758957, 0.03310321271419525, 0.1294233649969101, 0.0293069276958704, 0.205490380525589, 0.16605804860591888], [0.03028547763824463, 0.004970422480255365, 0.0024086711928248405, 0.0006666664266958833, 0.00012095970305381343, 0.0019201028626412153, 0.00012939599400851876, 0.004376744385808706, 0.04789287596940994, 0.6670366525650024, 0.14895570278167725, 0.010437785647809505, 0.005437977612018585, 0.0013922702055424452, 0.0025613312609493732, 0.005723379552364349, 0.06568364053964615], [0.021704891696572304, 0.006437145639210939, 0.024342045187950134, 0.00929927546530962, 0.010311801917850971, 0.020022470504045486, 0.018554266542196274, 0.03209354728460312, 0.3309526741504669, 0.017253145575523376, 0.01439250260591507, 0.018619323149323463, 0.011425826698541641, 0.010454332455992699, 0.036537181586027145, 0.02314048819243908, 0.39445915818214417]], [[0.015340819023549557, 0.039972566068172455, 0.173325315117836, 0.08965891599655151, 0.20859722793102264, 0.19164416193962097, 0.1145470142364502, 0.04613492265343666, 0.0662824958562851, 0.0008031209581531584, 0.0031141480430960655, 0.001587149454280734, 0.0017294768476858735, 0.0008746676030568779, 0.003912828397005796, 0.001216887729242444, 0.0412583164870739], [0.10709633678197861, 0.07283935695886612, 0.15425942838191986, 0.04153507202863693, 0.017221730202436447, 0.05370108783245087, 0.03696885332465172, 0.12750950455665588, 0.2103251814842224, 0.004115224815905094, 0.0036073909141123295, 0.0016724473098292947, 0.0033570046070963144, 0.0027165482752025127, 0.004280829336494207, 0.006954418495297432, 0.15183955430984497], [0.14431950449943542, 0.07073533535003662, 0.01710463874042034, 0.015207719057798386, 0.03428482264280319, 0.05912376940250397, 0.010197699069976807, 0.05737580731511116, 0.28605106472969055, 0.010608941316604614, 0.00594597402960062, 0.0006583124632015824, 0.010156827978789806, 0.003376911161467433, 0.006534238811582327, 0.004466262646019459, 0.26385220885276794], [0.08174649626016617, 0.057545844465494156, 0.07483689486980438, 0.007350401487201452, 0.003945960663259029, 0.03843236342072487, 0.018390337005257607, 0.0839841365814209, 0.334446519613266, 0.0011158331762999296, 0.0026339907199144363, 0.0006781599950045347, 0.0012645306997001171, 0.0019380846060812473, 0.003171138698235154, 0.01854158751666546, 0.26997771859169006], [0.06425239145755768, 0.035323187708854675, 0.09783182293176651, 0.03267088904976845, 0.01850711926817894, 0.15324881672859192, 0.030414724722504616, 0.06134774535894394, 0.2496424913406372, 0.0014450299786403775, 0.0016293092630803585, 0.0008701831102371216, 0.001944629242643714, 0.0036254243459552526, 0.006345509551465511, 0.007463006302714348, 0.23343759775161743], [0.04493410140275955, 0.07069997489452362, 0.075708769261837, 0.012936316430568695, 0.06519918888807297, 0.06192650645971298, 0.072085902094841, 0.1528291553258896, 0.18797913193702698, 0.0017491821199655533, 0.003069923259317875, 0.0013769040815532207, 0.008406654000282288, 0.013589076697826385, 0.018448323011398315, 0.03519933298230171, 0.173861563205719], [0.08976485580205917, 0.06796978414058685, 0.043668922036886215, 0.02196810208261013, 0.028072841465473175, 0.08977725356817245, 0.025965522974729538, 0.11346259713172913, 0.2186966836452484, 0.0037033664993941784, 0.002970197005197406, 0.001287805032916367, 0.002708122134208679, 0.00792046170681715, 0.021867603063583374, 0.08752845227718353, 0.17266739904880524], [0.09163565188646317, 0.029838059097528458, 0.06207060441374779, 0.034162405878305435, 0.011816048063337803, 0.04278750717639923, 0.03643510490655899, 0.07961342483758926, 0.31168997287750244, 0.011864416301250458, 0.006808191072195768, 0.001561734126880765, 0.0042076497338712215, 0.0066185323521494865, 0.010175579227507114, 0.0249174814671278, 0.23379768431186676], [0.055009081959724426, 0.016647810116410255, 0.032131969928741455, 0.022200580686330795, 0.023030877113342285, 0.0218951478600502, 0.022324176505208015, 0.06163572892546654, 0.310249388217926, 0.012168697081506252, 0.011409128084778786, 0.019892089068889618, 0.014376652427017689, 0.021667052060365677, 0.023300351575016975, 0.04172728583216667, 0.29033398628234863], [0.1711912453174591, 0.010623871348798275, 0.011231782846152782, 0.003477185033261776, 0.0017342083156108856, 0.005840560887008905, 0.009801999665796757, 0.06413424015045166, 0.276796817779541, 0.019873522222042084, 0.060984332114458084, 0.025610795244574547, 0.010124742984771729, 0.005425992421805859, 0.010943528264760971, 0.005278751719743013, 0.3069263696670532], [0.26481521129608154, 0.009488977491855621, 0.015699239447712898, 0.0005160804721526802, 0.00034936791053041816, 0.0016722793225198984, 0.0015524107730016112, 0.0413542240858078, 0.26811230182647705, 0.030595878139138222, 0.023074021562933922, 0.005258235614746809, 0.016411537304520607, 0.005732754245400429, 0.006106399931013584, 0.018263444304466248, 0.2909976840019226], [0.12795551121234894, 0.013441663235425949, 0.004942802712321281, 0.002160585718229413, 0.0010796907590702176, 0.0038911595474928617, 0.0012969158124178648, 0.017203569412231445, 0.2819002866744995, 0.06505705416202545, 0.06328089535236359, 0.007845091633498669, 0.040057312697172165, 0.017944490537047386, 0.018586907535791397, 0.022392813116312027, 0.3109632730484009], [0.13007551431655884, 0.015273413620889187, 0.012284835800528526, 0.0038090432062745094, 0.0016354549443349242, 0.005744705442339182, 0.0016458057798445225, 0.03220919519662857, 0.24617919325828552, 0.024126902222633362, 0.09028711915016174, 0.043389659374952316, 0.013567181304097176, 0.0170480664819479, 0.05928710475564003, 0.025768481194972992, 0.277668297290802], [0.15170516073703766, 0.01491902582347393, 0.02569616213440895, 0.025702238082885742, 0.006355874240398407, 0.025803154334425926, 0.004133834969252348, 0.02999289706349373, 0.19618767499923706, 0.020703846588730812, 0.06998427957296371, 0.017897240817546844, 0.029291734099388123, 0.023805996403098106, 0.06463689357042313, 0.018756501376628876, 0.2744275629520416], [0.15583063662052155, 0.01573105715215206, 0.022779693827033043, 0.014888818375766277, 0.003644403303042054, 0.017298415303230286, 0.004269361961632967, 0.02750309184193611, 0.16951683163642883, 0.031332943588495255, 0.05508267506957054, 0.007559443823993206, 0.08190315961837769, 0.07170398533344269, 0.03221050649881363, 0.032327037304639816, 0.25641801953315735], [0.18699736893177032, 0.002329472219571471, 0.021755244582891464, 0.01376196090131998, 0.000809724791906774, 0.010529701597988605, 0.0045575243420898914, 0.06504624336957932, 0.21019411087036133, 0.010116730816662312, 0.028706198558211327, 0.011727341450750828, 0.009715944528579712, 0.02404075674712658, 0.04453139379620552, 0.03886324167251587, 0.31631720066070557], [0.06448955088853836, 0.013963649980723858, 0.02917107380926609, 0.018412627279758453, 0.019564948976039886, 0.017242856323719025, 0.01677178405225277, 0.05014842748641968, 0.26806533336639404, 0.015491144731640816, 0.01348561979830265, 0.02619824931025505, 0.019132710993289948, 0.03409269452095032, 0.0333671048283577, 0.06559543311595917, 0.2948067784309387]], [[0.08785546571016312, 0.023154892027378082, 0.06429734826087952, 0.031786054372787476, 0.01862933672964573, 0.005499887280166149, 0.014141811057925224, 0.016133353114128113, 0.13085180521011353, 0.04257943853735924, 0.11620363593101501, 0.018868422135710716, 0.10987429320812225, 0.060715850442647934, 0.052005037665367126, 0.059579454362392426, 0.14782392978668213], [0.050355229526758194, 0.029105104506015778, 0.1870446503162384, 0.00807579793035984, 0.007529054768383503, 0.006330855656415224, 0.01622489094734192, 0.019295884296298027, 0.06541924923658371, 0.023559704422950745, 0.37408357858657837, 0.01484439056366682, 0.02336292155086994, 0.013132275082170963, 0.031180664896965027, 0.05434305593371391, 0.07611273229122162], [0.022724397480487823, 0.04422933980822563, 0.5426883697509766, 0.0024908646009862423, 0.0013878637691959739, 0.00812041386961937, 0.000753621687181294, 0.03339673578739166, 0.13236024975776672, 0.009963495656847954, 0.0060404203832149506, 0.0012752666370943189, 0.003757701488211751, 0.0022014561109244823, 0.0043153315782547, 0.014550285413861275, 0.16974428296089172], [0.09590562433004379, 0.03011862188577652, 0.019929463043808937, 0.016256431117653847, 0.03461933881044388, 0.12509606778621674, 0.048083506524562836, 0.029528716579079628, 0.13458402454853058, 0.022195324301719666, 0.1285013109445572, 0.01789618656039238, 0.03151247650384903, 0.015516906976699829, 0.02850770764052868, 0.0776928961277008, 0.1440553516149521], [0.07536934316158295, 0.009664124809205532, 0.0061071328818798065, 0.040697697550058365, 0.12455844134092331, 0.27005907893180847, 0.022782867774367332, 0.02231401391327381, 0.11287368088960648, 0.02343214675784111, 0.02277006208896637, 0.028779348358511925, 0.06950505077838898, 0.005047628190368414, 0.00668099382892251, 0.04103831946849823, 0.1183200478553772], [0.09464231878519058, 0.017008045688271523, 0.08113357424736023, 0.009828610345721245, 0.011414406821131706, 0.3514114320278168, 0.0028048157691955566, 0.022607969120144844, 0.1563003808259964, 0.017244970425963402, 0.0035932743921875954, 0.009811855852603912, 0.012112116441130638, 0.00018629043188411742, 0.0028494782745838165, 0.03587246686220169, 0.17117799818515778], [0.09787283092737198, 0.025256548076868057, 0.018364306539297104, 0.012211504392325878, 0.011416743509471416, 0.043396636843681335, 0.009356028400361538, 0.008607021532952785, 0.3004753589630127, 0.011029512621462345, 0.04762692749500275, 0.020061636343598366, 0.021751176565885544, 0.0032079427037388086, 0.0028403415344655514, 0.013647926971316338, 0.3528776168823242], [0.1900794953107834, 0.04235231876373291, 0.05770864710211754, 0.04342237114906311, 0.016603482887148857, 0.015736976638436317, 0.010431384667754173, 0.048416830599308014, 0.23508548736572266, 0.02296815626323223, 0.019949723035097122, 0.007292553782463074, 0.0045737349428236485, 0.004969010595232248, 0.002545671770349145, 0.04959002509713173, 0.2282741814851761], [0.11443354189395905, 0.026537958532571793, 0.04224732518196106, 0.02834514155983925, 0.01429543737322092, 0.01624898612499237, 0.016276659443974495, 0.03218364715576172, 0.21034273505210876, 0.03435136005282402, 0.023371227085590363, 0.024535851553082466, 0.05385018140077591, 0.02015874534845352, 0.03759355470538139, 0.07628673315048218, 0.22894097864627838], [0.10238467901945114, 0.009599142707884312, 0.051687631756067276, 0.021734952926635742, 0.030580295249819756, 0.13926364481449127, 0.019718030467629433, 0.013973359018564224, 0.13918884098529816, 0.050414979457855225, 0.008590475656092167, 0.02460332028567791, 0.10249323397874832, 0.02212272584438324, 0.055966947227716446, 0.05752737447619438, 0.15015044808387756], [0.01155109703540802, 0.3665461838245392, 0.4071566164493561, 0.0012388606555759907, 0.0016497502801939845, 0.00016208062879741192, 0.0007624436402693391, 0.02213725820183754, 0.024681735783815384, 0.0011338567128404975, 0.13830946385860443, 4.9935082643060014e-05, 5.2626295655500144e-05, 4.983631515642628e-05, 0.00015292532043531537, 0.0019380685407668352, 0.022427253425121307], [0.0988735631108284, 0.00810533668845892, 0.003693265374749899, 0.02403714507818222, 0.01930871233344078, 0.09083115309476852, 0.045186009258031845, 0.018657997250556946, 0.1284719854593277, 0.03536965325474739, 0.006351954769343138, 0.12163133919239044, 0.16789932548999786, 0.021654589101672173, 0.04068566858768463, 0.02959786169230938, 0.13964448869228363], [0.04811043664813042, 0.02305556833744049, 0.015595187433063984, 0.024432215839624405, 0.029340848326683044, 0.06254052370786667, 0.015492081642150879, 0.008921829983592033, 0.141980841755867, 0.05552118271589279, 0.0060678510926663876, 0.08895387500524521, 0.2157292515039444, 0.042491886764764786, 0.0706239864230156, 0.01184166967868805, 0.13930077850818634], [0.01191096380352974, 0.024347836151719093, 0.025750786066055298, 0.004004873801022768, 0.0018154301214963198, 0.00015546784561593086, 0.0013384380144998431, 0.008701673708856106, 0.11745009571313858, 0.0010557923233136535, 0.006696704309433699, 0.006256043445318937, 0.010908727534115314, 0.24774286150932312, 0.3984084129333496, 0.004950797185301781, 0.12850512564182281], [0.013543233275413513, 0.04978056252002716, 0.020450223237276077, 0.0015240791253745556, 0.0006331190816126764, 0.00042383544496260583, 0.0011867423309013247, 0.0089890006929636, 0.06815314292907715, 0.001464169123210013, 0.004446992184966803, 0.0030188108794391155, 0.004341593943536282, 0.4266420006752014, 0.32678458094596863, 0.003989062737673521, 0.06462882459163666], [0.15897759795188904, 0.03445937857031822, 0.04916132614016533, 0.020893627777695656, 0.04645692557096481, 0.11105263978242874, 0.049921754747629166, 0.021978070959448814, 0.14342592656612396, 0.026382392272353172, 0.01543849240988493, 0.026979804039001465, 0.02332753874361515, 0.056262921541929245, 0.056463100016117096, 0.024026915431022644, 0.13479170203208923], [0.12157228589057922, 0.027919812127947807, 0.03722265735268593, 0.029451880604028702, 0.015367691405117512, 0.016029197722673416, 0.01955902948975563, 0.03163148835301399, 0.20774368941783905, 0.03366883099079132, 0.022494222968816757, 0.026550494134426117, 0.05728454887866974, 0.02301979809999466, 0.03992536664009094, 0.0698113664984703, 0.22074756026268005]], [[0.1809348315000534, 0.033141739666461945, 0.06134340167045593, 0.02586374059319496, 0.05698597431182861, 0.04101647809147835, 0.004441611468791962, 0.10319960862398148, 0.1605917066335678, 0.04244471713900566, 0.020551731809973717, 0.019739849492907524, 0.008925075642764568, 0.006484847515821457, 0.007126779295504093, 0.05254935845732689, 0.17465852200984955], [0.15892164409160614, 0.028050478547811508, 0.07106715440750122, 0.013302326202392578, 0.007649114355444908, 0.02539973519742489, 0.010387849994003773, 0.07051824033260345, 0.2318175733089447, 0.014579078182578087, 0.03858432546257973, 0.018992438912391663, 0.011108368635177612, 0.010106214322149754, 0.011578834615647793, 0.03644125536084175, 0.24149538576602936], [0.22064755856990814, 0.020712655037641525, 0.012760325334966183, 0.001798607292585075, 0.0005470352480188012, 0.0029742869082838297, 0.0014105021255090833, 0.09252924472093582, 0.17975394427776337, 0.001134228310547769, 0.004774211905896664, 0.0027527494821697474, 0.007298382464796305, 0.03465916961431503, 0.21013043820858002, 0.016613628715276718, 0.18950308859348297], [0.12044814229011536, 0.025374386459589005, 0.04100681468844414, 0.01499580591917038, 0.006589438766241074, 0.029443036764860153, 0.0057571809738874435, 0.11901312321424484, 0.24544933438301086, 0.06079712137579918, 0.01924690417945385, 0.005409372039139271, 0.009470430202782154, 0.017526349052786827, 0.011250662617385387, 0.03778046742081642, 0.23044143617153168], [0.1839444488286972, 0.0174009520560503, 0.010004132054746151, 0.00861404836177826, 0.0006338510429486632, 0.002299963729456067, 0.0011391380103304982, 0.08039058744907379, 0.28471216559410095, 0.05869899317622185, 0.007503848988562822, 0.005337894428521395, 0.0030761451926082373, 0.0035611954517662525, 0.0022600397933274508, 0.049320802092552185, 0.281101793050766], [0.11486341059207916, 0.03624719753861427, 0.0134811382740736, 0.006569850258529186, 0.00294834328815341, 0.0005973271909169853, 0.003312266431748867, 0.12410323321819305, 0.26272472739219666, 0.05011356621980667, 0.006143853068351746, 0.0098728584125638, 0.007070998195558786, 0.04073260352015495, 0.0284722950309515, 0.03521924838423729, 0.25752702355384827], [0.08492541313171387, 0.02624005638062954, 0.027497906237840652, 0.01105910912156105, 0.0075006973929703236, 0.013003512285649776, 0.0016043659998103976, 0.0713658258318901, 0.360696405172348, 0.013685980811715126, 0.005241834092885256, 0.006291364319622517, 0.00592017499729991, 0.0056682005524635315, 0.0033997027203440666, 0.014159874059259892, 0.34173962473869324], [0.1624777913093567, 0.027494650334119797, 0.05821574851870537, 0.02999340370297432, 0.01853119768202305, 0.04037367179989815, 0.014206945896148682, 0.062569260597229, 0.2407609075307846, 0.029244987294077873, 0.01688460074365139, 0.01490802876651287, 0.006585956551134586, 0.004975704476237297, 0.005934206303209066, 0.03907892480492592, 0.22776396572589874], [0.13489772379398346, 0.025231139734387398, 0.04954930394887924, 0.018095532432198524, 0.01167614571750164, 0.024128669872879982, 0.012124291621148586, 0.04891978204250336, 0.2794085443019867, 0.014172542840242386, 0.009827866218984127, 0.01847536861896515, 0.01294876541942358, 0.020608723163604736, 0.024335220456123352, 0.019276799634099007, 0.2763236463069916], [0.1724925935268402, 0.013374142348766327, 0.003666842123493552, 0.02063440904021263, 0.03976757079362869, 0.0736643373966217, 0.0071897911839187145, 0.11219438165426254, 0.2592865824699402, 0.0073627387173473835, 0.00533401221036911, 0.005864250939339399, 0.0012766201980412006, 0.0010713671799749136, 0.0009084046469070017, 0.018872259184718132, 0.2570396363735199], [0.11329855769872665, 0.03443470597267151, 0.09738736599683762, 0.008637523278594017, 0.0037678724620491266, 0.015234452672302723, 0.004287968389689922, 0.1155705526471138, 0.29987820982933044, 0.0015607213135808706, 0.006748128216713667, 0.00410108920186758, 0.0005886416765861213, 0.001930480357259512, 0.004860387649387121, 0.00995497964322567, 0.2777583599090576], [0.13941368460655212, 0.02250714972615242, 0.017218532040715218, 0.011797267943620682, 0.006751397158950567, 0.035133786499500275, 0.008534512482583523, 0.08598820120096207, 0.2856442332267761, 0.020737716928124428, 0.00598968006670475, 0.0036782382521778345, 0.010901479981839657, 0.01046878844499588, 0.01310956384986639, 0.025129426270723343, 0.2969963252544403], [0.08463839441537857, 0.01270969957113266, 0.023268088698387146, 0.004411982372403145, 0.001581456046551466, 0.006553984247148037, 0.004063136409968138, 0.05127799138426781, 0.3887098729610443, 0.0012958789011463523, 0.0017608033958822489, 0.0032158505637198687, 0.0009611584828235209, 0.0022709595505148172, 0.0041665975004434586, 0.00840948149561882, 0.40070468187332153], [0.06317650526762009, 0.013546490110456944, 0.10369697213172913, 0.030292870476841927, 0.00045389420120045543, 0.025506222620606422, 0.0028651126194745302, 0.03794132545590401, 0.33888500928878784, 0.0013778435532003641, 0.003737699007615447, 0.006553072016686201, 0.003292630659416318, 0.00012181791680632159, 0.0015007142210379243, 0.029383007436990738, 0.337668776512146], [0.07858254015445709, 0.011650007218122482, 0.21158108115196228, 0.012160727754235268, 0.00045634384150616825, 0.016058901324868202, 0.0010243725264444947, 0.038150858134031296, 0.3007851243019104, 0.0011858895886689425, 0.0044764927588403225, 0.006565919145941734, 0.003261185484007001, 0.00033813808113336563, 0.0010404461063444614, 0.013363399542868137, 0.2993186116218567], [0.10067831724882126, 0.020996958017349243, 0.034526724368333817, 0.03736231103539467, 0.03129003942012787, 0.11438058316707611, 0.014055054634809494, 0.08983927965164185, 0.23418547213077545, 0.030118338763713837, 0.009555677883327007, 0.010188327170908451, 0.007669522427022457, 0.012831166386604309, 0.010416695848107338, 0.014109778217971325, 0.22779570519924164], [0.13072115182876587, 0.02590269036591053, 0.04422006383538246, 0.017026377841830254, 0.011821772903203964, 0.0222614798694849, 0.012583104893565178, 0.04756303131580353, 0.2808963358402252, 0.014840812422335148, 0.010037073865532875, 0.019958045333623886, 0.014719882979989052, 0.02412145584821701, 0.026685211807489395, 0.018039382994174957, 0.2786022424697876]], [[0.04505026340484619, 0.07827166467905045, 0.09604855626821518, 0.06703030318021774, 0.23643259704113007, 0.1305006593465805, 0.06686779856681824, 0.039583705365657806, 0.1435745507478714, 0.002423245459794998, 0.0014698203885927796, 0.0011046931613236666, 0.003745581489056349, 0.0023948117159307003, 0.0036148782819509506, 0.00675620511174202, 0.07513055205345154], [0.04302670806646347, 0.18307147920131683, 0.3858429193496704, 0.060169100761413574, 0.05653582885861397, 0.13165165483951569, 0.040114887058734894, 0.022694824263453484, 0.04527638107538223, 0.00038254389073699713, 0.001413798308931291, 0.0010469304397702217, 0.0012960820458829403, 0.0010233710054308176, 0.0024334387853741646, 0.0021251090802252293, 0.021894987672567368], [0.06647341698408127, 0.21464712917804718, 0.18111227452754974, 0.08106967806816101, 0.06356227397918701, 0.1531333029270172, 0.05150916799902916, 0.050863295793533325, 0.07258130609989166, 0.0009953025728464127, 0.0026850062422454357, 0.000850749434903264, 0.0038717202842235565, 0.002551537938416004, 0.007051249500364065, 0.004439063370227814, 0.042603474110364914], [0.03321882709860802, 0.04381920024752617, 0.4958009421825409, 0.03320477902889252, 0.04940241202712059, 0.2221946120262146, 0.0426170788705349, 0.016729939728975296, 0.028828183189034462, 0.0012910990044474602, 0.0011490392498672009, 0.0015459242276847363, 0.00342154991813004, 0.0014116587117314339, 0.002275099977850914, 0.005997054744511843, 0.017092492431402206], [0.02683352120220661, 0.04418424516916275, 0.2801573574542999, 0.02494996041059494, 0.09292231500148773, 0.3552698493003845, 0.09073033183813095, 0.01957930251955986, 0.029605014249682426, 0.0006485586054623127, 0.0009613399161025882, 0.002391634276136756, 0.005179325118660927, 0.0023970857728272676, 0.0023357386235147715, 0.003988428041338921, 0.017865970730781555], [0.037976719439029694, 0.10211415588855743, 0.4872848689556122, 0.02763751707971096, 0.0563923642039299, 0.12361831218004227, 0.043926745653152466, 0.03664442524313927, 0.03746054694056511, 0.0007798185106366873, 0.001410683966241777, 0.00242099491879344, 0.004327442497014999, 0.003006360959261656, 0.008761141449213028, 0.003939846530556679, 0.022298071533441544], [0.03187292441725731, 0.06969163566827774, 0.4894663393497467, 0.028749506920576096, 0.06464357674121857, 0.1943855881690979, 0.03190024942159653, 0.011887723580002785, 0.03328375518321991, 0.0006100916070863605, 0.0018650642596185207, 0.004422290716320276, 0.0026663593016564846, 0.002076885662972927, 0.003569720545783639, 0.007828420959413052, 0.02107987180352211], [0.099598728120327, 0.09981101751327515, 0.214353546500206, 0.07058857381343842, 0.0767793208360672, 0.14559821784496307, 0.0343535877764225, 0.06324350088834763, 0.09045762568712234, 0.003538709133863449, 0.005591178312897682, 0.0018577519804239273, 0.0047202627174556255, 0.005867878906428814, 0.008315022103488445, 0.012773307040333748, 0.06255174428224564], [0.07443418353796005, 0.061020322144031525, 0.0679527148604393, 0.043880853801965714, 0.07231029868125916, 0.09181582927703857, 0.06746522337198257, 0.026687515899538994, 0.13615556061267853, 0.020495878532528877, 0.013478260487318039, 0.030687518417835236, 0.035392433404922485, 0.04490387812256813, 0.04307127371430397, 0.05194752663373947, 0.11830070614814758], [0.006707136984914541, 0.0007751249358989298, 0.007154405117034912, 0.0008747496176511049, 0.008713368326425552, 0.017659800127148628, 0.004443692974746227, 0.0018326325807720423, 0.025456467643380165, 0.09875830262899399, 0.03879382088780403, 0.07041935622692108, 0.28564220666885376, 0.13473956286907196, 0.13820098340511322, 0.10802347958087921, 0.051804907619953156], [0.024382352828979492, 0.003080841153860092, 0.040075045078992844, 0.0006564279901795089, 0.00021732829918619245, 0.0028629901353269815, 0.0002489363250788301, 0.0104325320571661, 0.12660911679267883, 0.05459648743271828, 0.09873225539922714, 0.018078718334436417, 0.03541871905326843, 0.06448638439178467, 0.0915878489613533, 0.1710057109594345, 0.25752824544906616], [0.012275690212845802, 0.003109223674982786, 0.0065096900798380375, 0.0005955808446742594, 0.001726871239952743, 0.009039400145411491, 0.0035349258687347174, 0.0028183315880596638, 0.06100746616721153, 0.052785977721214294, 0.03861907869577408, 0.08222334086894989, 0.21188823878765106, 0.10806860774755478, 0.13078716397285461, 0.1616954505443573, 0.11331494897603989], [0.0070958007127046585, 0.0034747279714792967, 0.004522380884736776, 0.000441201264038682, 0.00252297380939126, 0.006314962636679411, 0.0031839117873460054, 0.0033157130237668753, 0.11163052171468735, 0.03220897167921066, 0.0360710509121418, 0.09017270058393478, 0.08811293542385101, 0.12983353435993195, 0.17740115523338318, 0.10423349589109421, 0.19946399331092834], [0.005360518582165241, 0.005920092575252056, 0.014196990989148617, 0.0020526512525975704, 0.0008544014417566359, 0.005424348171800375, 0.0019387701759114861, 0.0030925904866307974, 0.03941353037953377, 0.024063458666205406, 0.15672419965267181, 0.10631737858057022, 0.08241540938615799, 0.08744386583566666, 0.28911709785461426, 0.09944497048854828, 0.07621962577104568], [0.01063152588903904, 0.016026420518755913, 0.018201762810349464, 0.003788732923567295, 0.0016653469065204263, 0.013417461887001991, 0.006933057680726051, 0.009814702905714512, 0.0650595873594284, 0.023370452225208282, 0.08838334679603577, 0.1972845047712326, 0.07574187219142914, 0.11305368691682816, 0.15217573940753937, 0.09690532833337784, 0.10754647850990295], [0.007105095777660608, 0.002463369630277157, 0.0072436402551829815, 0.0020677070133388042, 0.0015495030675083399, 0.003229381749406457, 0.0027688222471624613, 0.0027251846622675657, 0.03658017888665199, 0.06451127678155899, 0.08186668902635574, 0.067957803606987, 0.13537313044071198, 0.15637332201004028, 0.17356529831886292, 0.1803516447544098, 0.0742679312825203], [0.05321567878127098, 0.030045511201024055, 0.03301960974931717, 0.02075480856001377, 0.03829619660973549, 0.047166064381599426, 0.03833368420600891, 0.016778869554400444, 0.1183844655752182, 0.04861001297831535, 0.02656489983201027, 0.05943974480032921, 0.0734231024980545, 0.08971790224313736, 0.07722220569849014, 0.09786650538444519, 0.13116073608398438]], [[0.10569038987159729, 0.004502948839217424, 0.024079453200101852, 0.0019498660694807768, 0.008209453895688057, 0.006098884157836437, 0.0007605664432048798, 0.00700840400531888, 0.1101892814040184, 0.17376708984375, 0.10775065422058105, 0.019746115431189537, 0.05785134434700012, 0.05345810577273369, 0.044767215847969055, 0.05876631289720535, 0.21540383994579315], [0.01661662384867668, 0.017693854868412018, 0.04413176700472832, 0.1434410661458969, 0.28888261318206787, 0.08839625120162964, 0.04850517585873604, 0.07484479993581772, 0.06788218021392822, 0.03543712571263313, 0.03158872574567795, 0.0029554632492363453, 0.013113525696098804, 0.00742218317463994, 0.014024225063621998, 0.04835288226604462, 0.056711506098508835], [0.04257485270500183, 0.021575259044766426, 0.05844569578766823, 0.06782323122024536, 0.2267894148826599, 0.2655283212661743, 0.047566529363393784, 0.03137277439236641, 0.025749782100319862, 0.03299620747566223, 0.02162506803870201, 0.008805074729025364, 0.017934827134013176, 0.01813795417547226, 0.04305272549390793, 0.04526890441775322, 0.02475348301231861], [0.007998867891728878, 0.04369574412703514, 0.04430621117353439, 0.013546271249651909, 0.516044020652771, 0.09230825304985046, 0.03511795401573181, 0.06353548169136047, 0.06222856417298317, 0.02697116695344448, 0.009595518000423908, 0.00516967847943306, 0.011450495570898056, 0.0069977170787751675, 0.007154654245823622, 0.004084578715264797, 0.04979473352432251], [0.013206902891397476, 0.06892095506191254, 0.06805934756994247, 0.022713949903845787, 0.18156558275222778, 0.06249779462814331, 0.019695373252034187, 0.07547712326049805, 0.24700523912906647, 0.031917136162519455, 0.005660418886691332, 0.001695773913525045, 0.002396519063040614, 0.0019424454076215625, 0.005785044748336077, 0.00648921076208353, 0.1849711686372757], [0.019461866468191147, 0.14723049104213715, 0.17949983477592468, 0.02210823819041252, 0.23121105134487152, 0.1149429976940155, 0.03185036778450012, 0.040695395320653915, 0.05639510601758957, 0.030490176752209663, 0.020482834428548813, 0.00451718270778656, 0.009721650741994381, 0.00874168612062931, 0.0168386772274971, 0.01832413487136364, 0.04748835042119026], [0.005909941624850035, 0.06017109751701355, 0.10025863349437714, 0.019689301028847694, 0.3750649094581604, 0.05171928182244301, 0.015745749697089195, 0.023602813482284546, 0.14339686930179596, 0.04924909770488739, 0.005327262915670872, 0.006825949065387249, 0.005076147615909576, 0.003422738751396537, 0.007243771106004715, 0.00904164370149374, 0.11825481802225113], [0.046112217009067535, 0.02968369424343109, 0.046950262039899826, 0.015041546896100044, 0.013082603923976421, 0.03571481630206108, 0.004960290621966124, 0.03936168923974037, 0.38922595977783203, 0.006581715773791075, 0.011494644917547703, 0.001759480801410973, 0.0034061535261571407, 0.0029946977738291025, 0.006316558923572302, 0.006861736532300711, 0.34045201539993286], [0.017157990485429764, 0.002983150305226445, 0.006804634816944599, 0.0027990450616925955, 0.0011747486423701048, 0.003979094792157412, 0.0017815124010667205, 0.010740444995462894, 0.4637400805950165, 0.0015114792622625828, 0.0017473289044573903, 0.002514385851100087, 0.0017765829106792808, 0.00416995445266366, 0.003151937620714307, 0.0027523667085915804, 0.47121521830558777], [0.031144404783844948, 0.0032304986380040646, 0.006225212477147579, 0.014562491327524185, 0.015543151646852493, 0.004616913851350546, 0.0017246290808543563, 0.07387255877256393, 0.1507762372493744, 0.07482866942882538, 0.04317133501172066, 0.0014033750630915165, 0.00862090103328228, 0.01879740133881569, 0.026756908744573593, 0.3351838290691376, 0.1895415335893631], [0.1371629387140274, 0.013908891938626766, 0.03474659100174904, 0.013529245741665363, 0.06299293786287308, 0.01617298647761345, 0.0051455372013151646, 0.027681633830070496, 0.07041380554437637, 0.20757271349430084, 0.011723799630999565, 0.0056944540701806545, 0.049169961363077164, 0.028415462002158165, 0.048320647329092026, 0.1753106266260147, 0.09203783422708511], [0.011123097501695156, 0.016143186017870903, 0.03923587501049042, 0.016816284507513046, 0.05433144420385361, 0.036057546734809875, 0.009735497646033764, 0.018259618431329727, 0.10486350208520889, 0.2065984308719635, 0.014990677125751972, 0.019538192078471184, 0.041061121970415115, 0.03878272697329521, 0.15423835813999176, 0.09221134334802628, 0.1260131448507309], [0.032573673874139786, 0.023952007293701172, 0.02631581947207451, 0.005479880608618259, 0.02787521481513977, 0.01638283208012581, 0.011507261544466019, 0.01969759911298752, 0.12929528951644897, 0.24302281439304352, 0.03511276841163635, 0.02504032291471958, 0.035602059215307236, 0.03311051428318024, 0.06870516389608383, 0.094892717897892, 0.17143408954143524], [0.0434468537569046, 0.019525857642292976, 0.06137891858816147, 0.005524791311472654, 0.009263289161026478, 0.013640828430652618, 0.009624834172427654, 0.00796736590564251, 0.10646946728229523, 0.0520395003259182, 0.027188673615455627, 0.08735772967338562, 0.23192018270492554, 0.041828349232673645, 0.0877753272652626, 0.05010579526424408, 0.14494216442108154], [0.023922940716147423, 0.02784579247236252, 0.07768482714891434, 0.00692017050459981, 0.029780805110931396, 0.04136477783322334, 0.02691960334777832, 0.007027658633887768, 0.07401113212108612, 0.049552347511053085, 0.020506612956523895, 0.07132012397050858, 0.21688765287399292, 0.10370450466871262, 0.060287248343229294, 0.06902183592319489, 0.09324201941490173], [0.06322718411684036, 0.008076313883066177, 0.011662594974040985, 0.0019380158046260476, 0.016504110768437386, 0.009529545903205872, 0.0029026938136667013, 0.009493683464825153, 0.18853189051151276, 0.11785640567541122, 0.03102685883641243, 0.0644078478217125, 0.1667085587978363, 0.012799013406038284, 0.018863562494516373, 0.009424970485270023, 0.26704680919647217], [0.019857307896018028, 0.0021450708154588938, 0.005012816749513149, 0.0019166666315868497, 0.0008360852370969951, 0.002760122297331691, 0.001324470853433013, 0.008984644897282124, 0.4432066082954407, 0.001812909496948123, 0.002007707953453064, 0.002680248348042369, 0.001971592428162694, 0.004784559365361929, 0.0035575549118220806, 0.003198385937139392, 0.4939432740211487]], [[0.027814464643597603, 0.00443950155749917, 0.001397183514200151, 0.0002083857252728194, 3.7494246498681605e-05, 2.5386454581166618e-05, 6.328503513941541e-05, 0.10604330897331238, 0.3530377149581909, 0.0015361392870545387, 0.000549941323697567, 0.0003939366724807769, 0.00014264264609664679, 0.0002210988022852689, 0.0005989435594528913, 0.005523563362658024, 0.4979669749736786], [0.017247455194592476, 0.0635785162448883, 0.0003088406811002642, 0.00918903760612011, 0.003995424136519432, 0.00029191700741648674, 0.0030890253838151693, 0.4550129473209381, 0.22965870797634125, 0.014839536510407925, 0.006614107172936201, 0.002536348532885313, 0.000974986469373107, 0.0009327701991423965, 0.0007736937841400504, 0.01048242673277855, 0.18047435581684113], [0.08090569823980331, 0.023964224383234978, 0.0034951448906213045, 0.004027833696454763, 0.00045044918078929186, 0.001151670003309846, 0.0013968851417303085, 0.35301870107650757, 0.2309027761220932, 0.00646870955824852, 0.010096047073602676, 0.0033250567503273487, 0.00207547377794981, 0.0032129844184964895, 0.007026944775134325, 0.03532453626394272, 0.23315687477588654], [0.03885795176029205, 0.030222663655877113, 0.0004996481584385037, 0.027570238336920738, 0.004759231582283974, 0.0008631166419945657, 0.0041338312439620495, 0.38542884588241577, 0.2475583255290985, 0.015973379835486412, 0.0023566600866615772, 0.002513837767764926, 0.00024826283333823085, 0.0009304859559051692, 0.0008309604017995298, 0.03279617428779602, 0.2044564187526703], [0.040752727538347244, 0.011801348067820072, 0.0002076939563266933, 0.0039470805786550045, 0.00039983310853131115, 0.0002750149287749082, 0.003061619820073247, 0.22722549736499786, 0.3695653975009918, 0.009168006479740143, 0.001248056534677744, 0.006091943476349115, 0.0007017600582912564, 0.00036267092218622565, 0.0005559092969633639, 0.006718838587403297, 0.3179166615009308], [0.05699879676103592, 0.012757841497659683, 0.0006037218845449388, 0.01760265603661537, 0.0016631146427243948, 0.0009390802006237209, 0.010467324405908585, 0.26976048946380615, 0.31057092547416687, 0.019301215186715126, 0.0016216158401221037, 0.008648935705423355, 0.0006879732245579362, 0.0003138946776743978, 0.000982358935289085, 0.023781467229127884, 0.26329851150512695], [0.048304278403520584, 0.056071698665618896, 0.0005962568102404475, 0.08050277084112167, 0.014024152420461178, 0.0012392849894240499, 0.07517539709806442, 0.21622328460216522, 0.21104072034358978, 0.020118094980716705, 0.0024908718187361956, 0.05518972501158714, 0.005171902012079954, 0.005346690304577351, 0.0053170290775597095, 0.029711619019508362, 0.1734762191772461], [0.02489214763045311, 0.025456756353378296, 0.002090893452987075, 0.006484267767518759, 0.0018003651639446616, 0.0015537601429969072, 0.008195525966584682, 0.5817081928253174, 0.16377954185009003, 0.009337611496448517, 0.005237726029008627, 0.0020785066299140453, 0.00268166814930737, 0.0040418654680252075, 0.0039846268482506275, 0.01747014932334423, 0.1392063945531845], [0.0938885509967804, 0.021537013351917267, 0.05297676846385002, 0.025926677510142326, 0.017236994579434395, 0.029053302481770515, 0.021106939762830734, 0.06421677023172379, 0.227000892162323, 0.0179744902998209, 0.018984228372573853, 0.028367090970277786, 0.040342655032873154, 0.03271690383553505, 0.0286756232380867, 0.05104014277458191, 0.22895486652851105], [0.04202964901924133, 0.00486003328114748, 0.00018054810061585158, 0.0016183494590222836, 7.086772529873997e-05, 6.904594920342788e-05, 0.00011169896606588736, 0.28318533301353455, 0.2987756133079529, 0.002084612613543868, 0.0005561957368627191, 0.0014683007029816508, 0.00016111831064336002, 0.0003762694541364908, 0.00042524022865109146, 0.00769030163064599, 0.3563368618488312], [0.046645548194646835, 0.10536626726388931, 0.0009154075523838401, 0.003514043753966689, 0.002029123017564416, 0.00010816318535944447, 0.0006653069285675883, 0.25556281208992004, 0.2609725296497345, 0.00598579877987504, 0.009157853201031685, 0.00217249384149909, 0.0008990955539047718, 0.0006298123043961823, 0.0006132062408141792, 0.007449880242347717, 0.2973126769065857], [0.06982585787773132, 0.05903950333595276, 0.004062683787196875, 0.05056963488459587, 0.002836712170392275, 0.0019816828425973654, 0.006462590768933296, 0.036660369485616684, 0.26363062858581543, 0.021319732069969177, 0.0076040467247366905, 0.1512872874736786, 0.0054129790514707565, 0.003192170290276408, 0.003939376212656498, 0.024088596925139427, 0.2880862057209015], [0.07513340562582016, 0.057168882340192795, 0.0011279579484835267, 0.04974115639925003, 0.008180253207683563, 0.0014728647656738758, 0.03360914811491966, 0.06232035532593727, 0.2810038924217224, 0.01645847037434578, 0.006773149129003286, 0.07859909534454346, 0.004702894017100334, 0.0042662410996854305, 0.0034575853496789932, 0.01548469066619873, 0.30049994587898254], [0.10604767501354218, 0.051608357578516006, 0.00986412912607193, 0.011918673291802406, 0.001169662456959486, 0.0010736732510849833, 0.009574701078236103, 0.07572280615568161, 0.22588378190994263, 0.014179660007357597, 0.025713196024298668, 0.018001293763518333, 0.013654589653015137, 0.04025905206799507, 0.0721614733338356, 0.05696943774819374, 0.2661978304386139], [0.10818764567375183, 0.05237952619791031, 0.016990026459097862, 0.02309701032936573, 0.0035215073730796576, 0.0037350791972130537, 0.0116533562541008, 0.06520050764083862, 0.26326754689216614, 0.011539528146386147, 0.02251790463924408, 0.01865800842642784, 0.011011118069291115, 0.016380244866013527, 0.0061696115881204605, 0.061180420219898224, 0.3045109510421753], [0.0737457424402237, 0.03129909932613373, 0.0011655950220301747, 0.010209014639258385, 0.0011789450654760003, 0.0006923654000274837, 0.002082490362226963, 0.2401101440191269, 0.282698392868042, 0.011561906896531582, 0.002791990991681814, 0.0034200961235910654, 0.0004263815062586218, 0.0023454977199435234, 0.003957652021199465, 0.026300577446818352, 0.3060140311717987], [0.103140689432621, 0.02037252113223076, 0.05589817836880684, 0.023949595168232918, 0.016545400023460388, 0.028015537187457085, 0.020148610696196556, 0.04926019534468651, 0.20932021737098694, 0.01920214109122753, 0.02016107551753521, 0.03421986103057861, 0.04606100171804428, 0.033302128314971924, 0.03154625743627548, 0.06052703782916069, 0.22832956910133362]], [[0.043620459735393524, 0.013688149861991405, 0.02132270112633705, 0.012352613732218742, 0.013686364516615868, 0.010911471210420132, 0.007792664226144552, 0.017630450427532196, 0.351685106754303, 0.02977720834314823, 0.005177556071430445, 0.009762643836438656, 0.0030171831604093313, 0.0018830967601388693, 0.004594854079186916, 0.022134874016046524, 0.43096256256103516], [0.14627765119075775, 0.05319944769144058, 0.056452568620443344, 0.03184007480740547, 0.012775368057191372, 0.0455734021961689, 0.01638052612543106, 0.05094487592577934, 0.24672669172286987, 0.012834310531616211, 0.019451498985290527, 0.004437034949660301, 0.007515087723731995, 0.0034487678203731775, 0.009209208190441132, 0.04539408162236214, 0.23753930628299713], [0.08936890959739685, 0.02511894516646862, 0.05725555121898651, 0.04902644455432892, 0.009916485287249088, 0.03211624547839165, 0.0037467998918145895, 0.07195933163166046, 0.2864566743373871, 0.008879095315933228, 0.013574939221143723, 0.017336087301373482, 0.0005076868110336363, 0.007889396511018276, 0.017351971939206123, 0.03887229412794113, 0.2706230878829956], [0.13999269902706146, 0.018951119855046272, 0.02788049355149269, 0.04758515581488609, 0.02192053012549877, 0.02668548934161663, 0.022239435464143753, 0.054796379059553146, 0.2883114814758301, 0.023426327854394913, 0.0016758095007389784, 0.006482351571321487, 0.004349341616034508, 0.0005028051673434675, 0.0020733249839395285, 0.06412021070718765, 0.24900710582733154], [0.08490943163633347, 0.002907664980739355, 0.003745162859559059, 0.013621503487229347, 0.05931868031620979, 0.025828076526522636, 0.015385743230581284, 0.020315563306212425, 0.37028348445892334, 0.010643023066222668, 0.00015088298823684454, 0.014465692453086376, 0.004985420498996973, 0.00021327633294276893, 0.0012386942980811, 0.015547817572951317, 0.3564397692680359], [0.10593833774328232, 0.012201346457004547, 0.04250318929553032, 0.026644155383110046, 0.05352950096130371, 0.04255330562591553, 0.013822122476994991, 0.03099014423787594, 0.32150712609291077, 0.010104465298354626, 0.0013246407033875585, 0.003202910767868161, 0.005515319295227528, 0.0004237081448081881, 0.0006285412819124758, 0.01919510029256344, 0.3099161684513092], [0.09868654608726501, 0.00935771781951189, 0.005823832005262375, 0.04432849958539009, 0.041400305926799774, 0.02160206437110901, 0.027517473325133324, 0.010422823019325733, 0.3399529755115509, 0.011831432580947876, 0.0005017879302613437, 0.015323443338274956, 0.02791789546608925, 0.0007802250911481678, 0.0022050116676837206, 0.01141795888543129, 0.33093005418777466], [0.11371080577373505, 0.02888372540473938, 0.04148754104971886, 0.027976270765066147, 0.01440836489200592, 0.05102725699543953, 0.01490216888487339, 0.03502277284860611, 0.3206639587879181, 0.009918124414980412, 0.009726091288030148, 0.006231365259736776, 0.0035987982992082834, 0.0019569459836930037, 0.006074149627238512, 0.010550345294177532, 0.3038613200187683], [0.07055298238992691, 0.02385905012488365, 0.032811734825372696, 0.01843986101448536, 0.010287412442266941, 0.020103586837649345, 0.015521356835961342, 0.028571221977472305, 0.30834975838661194, 0.016047365963459015, 0.01946934498846531, 0.0215065348893404, 0.01539499219506979, 0.01761496439576149, 0.026005560532212257, 0.024989552795886993, 0.33047476410865784], [0.15714114904403687, 0.009798171930015087, 0.02089603990316391, 0.01564641483128071, 0.005992190912365913, 0.12401308864355087, 0.006861633621156216, 0.024027202278375626, 0.24999937415122986, 0.05765307694673538, 0.001901008072309196, 0.007536872755736113, 0.0068319919519126415, 0.0029761791229248047, 0.005918752867728472, 0.05871230363845825, 0.24409452080726624], [0.09845472872257233, 0.07467485219240189, 0.05771476402878761, 0.03462075814604759, 0.00692892586812377, 0.02235138788819313, 0.011726402677595615, 0.03543424606323242, 0.2828075587749481, 0.007841966114938259, 0.026970697566866875, 0.0008492899942211807, 0.0020911977626383305, 0.0008162970771081746, 0.0027118290308862925, 0.05476989969611168, 0.27923518419265747], [0.09306015819311142, 0.007648893631994724, 0.006741845048964024, 0.04537758603692055, 0.02837543934583664, 0.052839599549770355, 0.03980449587106705, 0.019246159121394157, 0.21360930800437927, 0.0711301937699318, 0.001075957901775837, 0.09662097692489624, 0.06912503391504288, 0.004651287570595741, 0.006799530237913132, 0.019379233941435814, 0.22451423108577728], [0.10565908253192902, 0.0031379745341837406, 0.003920247312635183, 0.00873290840536356, 0.018205827102065086, 0.015193847008049488, 0.0060600885190069675, 0.013183402828872204, 0.12697561085224152, 0.037867020815610886, 0.0001516553747933358, 0.06356188654899597, 0.3673805594444275, 0.014160789549350739, 0.03530566766858101, 0.043977443128824234, 0.136525958776474], [0.07040902972221375, 0.002897935453802347, 0.0054587675258517265, 0.004833593033254147, 0.0002890506584662944, 0.00026882809470407665, 0.0007286523468792439, 0.03519909083843231, 0.15436917543411255, 0.014571050181984901, 0.00028408842626959085, 0.002398516982793808, 0.0037565536331385374, 0.2799164950847626, 0.1964329183101654, 0.06977500021457672, 0.15841124951839447], [0.12903918325901031, 0.0063051204197108746, 0.011549129150807858, 0.00694222841411829, 0.0018741313833743334, 0.003904499113559723, 0.0017282579792663455, 0.02414611168205738, 0.19700074195861816, 0.009427032433450222, 0.0019615599885582924, 0.005817327182739973, 0.0024116404820233583, 0.161089688539505, 0.18992066383361816, 0.04791185259819031, 0.19897080957889557], [0.12828588485717773, 0.04131525382399559, 0.0772983506321907, 0.11770670115947723, 0.015339246019721031, 0.10573671758174896, 0.03334542363882065, 0.05332576110959053, 0.1318526566028595, 0.0581563301384449, 0.01648130640387535, 0.006586473900824785, 0.006086861714720726, 0.0025096586905419827, 0.005156507715582848, 0.07773507386445999, 0.1230817586183548], [0.06652477383613586, 0.024116864427924156, 0.029861483722925186, 0.017497330904006958, 0.009013619273900986, 0.018054788932204247, 0.015801459550857544, 0.028136834502220154, 0.3079308569431305, 0.018371254205703735, 0.023927001282572746, 0.02474764734506607, 0.015799906104803085, 0.01705416664481163, 0.026087237522006035, 0.0261379387229681, 0.33093684911727905]], [[0.3714202344417572, 0.0008082580752670765, 0.004921107552945614, 0.0023124022409319878, 0.008429822511970997, 0.0027803501579910517, 0.0009329549502581358, 0.01018022932112217, 0.09070379287004471, 0.21554602682590485, 0.002360730664804578, 0.016385933384299278, 0.01642371155321598, 0.027331558987498283, 0.006902058608829975, 0.07383128255605698, 0.1487296223640442], [0.08675972372293472, 0.14067769050598145, 0.04812515527009964, 0.020088035613298416, 0.009617242030799389, 0.010450584813952446, 0.012499835342168808, 0.1748732030391693, 0.21748565137386322, 0.015658969059586525, 0.03144469112157822, 0.011955327354371548, 0.010668694041669369, 0.010807548649609089, 0.002061850856989622, 0.020632987841963768, 0.17619282007217407], [0.0725293755531311, 0.20923903584480286, 0.021027274429798126, 0.0720900148153305, 0.00836713332682848, 0.007222120650112629, 0.027240678668022156, 0.06309737265110016, 0.23385873436927795, 0.011242820881307125, 0.0373801663517952, 0.004680091980844736, 0.00672272639349103, 0.010328604839742184, 0.00721212662756443, 0.025662265717983246, 0.18209949135780334], [0.09022903442382812, 0.08880352228879929, 0.045566968619823456, 0.055039409548044205, 0.024568656459450722, 0.01271827332675457, 0.02863866277039051, 0.07884790748357773, 0.14280861616134644, 0.07419943064451218, 0.006527827586978674, 0.014664901420474052, 0.01115918718278408, 0.01978146657347679, 0.015055215917527676, 0.18148881196975708, 0.1099020391702652], [0.04574602097272873, 0.029647450894117355, 0.0055162603966891766, 0.11889509111642838, 0.007876790128648281, 0.005999610759317875, 0.04275389015674591, 0.04547538980841637, 0.33794835209846497, 0.05158661678433418, 0.003940480295568705, 0.012446975335478783, 0.005569761618971825, 0.0023762446362525225, 0.0019765596371144056, 0.02169104851782322, 0.2605535686016083], [0.10450854152441025, 0.11485996097326279, 0.01758735440671444, 0.08051685243844986, 0.012055641040205956, 0.005192741751670837, 0.030473876744508743, 0.05221586301922798, 0.2058601975440979, 0.05085112899541855, 0.013264506123960018, 0.016112718731164932, 0.029474318027496338, 0.01283396128565073, 0.019872985780239105, 0.06324204057455063, 0.17107723653316498], [0.02574041299521923, 0.02472294680774212, 0.0030025034211575985, 0.006111004389822483, 0.0012865137541666627, 0.0005421321257017553, 0.0017117687966674566, 0.051031507551670074, 0.4672141671180725, 0.010684902779757977, 0.001257814234122634, 0.0037198862992227077, 0.0013480400666594505, 0.0007414429564960301, 0.00024303501413669437, 0.006634723395109177, 0.3940071165561676], [0.058831315487623215, 0.0640510842204094, 0.038923509418964386, 0.08385838568210602, 0.05578083544969559, 0.036258772015571594, 0.024347303435206413, 0.14084777235984802, 0.21024928987026215, 0.05507132038474083, 0.007009382359683514, 0.007629613392055035, 0.006788703612983227, 0.008066006936132908, 0.0065047889947891235, 0.025228748098015785, 0.17055316269397736], [0.03716424107551575, 0.007060617674142122, 0.005000311881303787, 0.0021905212197452784, 0.0008960714330896735, 0.0014025680720806122, 0.0009846178581938148, 0.027591759338974953, 0.4532669186592102, 0.00410153204575181, 0.0014610773650929332, 0.0021570920944213867, 0.0011750677367672324, 0.0019096920732408762, 0.0030085877515375614, 0.0029159565456211567, 0.4477134943008423], [0.13584277033805847, 0.011695018969476223, 0.007748823147267103, 0.023095708340406418, 0.008667781949043274, 0.00662047928199172, 0.002217898378148675, 0.08604885637760162, 0.10866381973028183, 0.04227710887789726, 0.0028156449552625418, 0.008320897817611694, 0.02313046343624592, 0.030756695196032524, 0.041054826229810715, 0.32157638669013977, 0.1394667774438858], [0.22214257717132568, 0.397006630897522, 0.07799965888261795, 0.001591327483765781, 0.006439052522182465, 0.002981884405016899, 0.002046444686129689, 0.02057032100856304, 0.06509295105934143, 0.04864628240466118, 0.04549003764986992, 0.0032323230989277363, 0.0028355130925774574, 0.01112421415746212, 0.0009374177898280323, 0.01727222464978695, 0.07459127902984619], [0.03297732397913933, 0.007451741956174374, 0.0017498956294730306, 0.005414881277829409, 0.0005161985754966736, 0.0001763166073942557, 0.0017734040739014745, 0.011331173591315746, 0.38425061106681824, 0.011605875566601753, 0.003044986166059971, 0.031440362334251404, 0.007231414783746004, 0.01078992523252964, 0.010247860103845596, 0.014358142390847206, 0.46563994884490967], [0.06273996084928513, 0.0025111923459917307, 0.0016772485105320811, 0.0006500279414467514, 0.0005342610529623926, 0.0004249734338372946, 0.0008769634878262877, 0.0132936155423522, 0.38306766748428345, 0.009664541110396385, 0.0015835778322070837, 0.03590034320950508, 0.004795196000486612, 0.0029460359364748, 0.007573799695819616, 0.004010479431599379, 0.46775022149086], [0.08816497772932053, 0.009677629917860031, 0.015690773725509644, 0.004526781849563122, 0.00128223467618227, 0.0014866326237097383, 0.0031792079098522663, 0.034714143723249435, 0.2948341369628906, 0.01420605182647705, 0.009741378016769886, 0.051131006330251694, 0.011161072179675102, 0.03492269665002823, 0.055801570415496826, 0.02263258397579193, 0.3468469977378845], [0.07929017394781113, 0.008097521960735321, 0.02662476897239685, 0.004608360584825277, 0.0015260765794664621, 0.002503037452697754, 0.0043432870879769325, 0.023972520604729652, 0.34708476066589355, 0.013382026925683022, 0.006154095754027367, 0.03458422049880028, 0.01632077246904373, 0.022901706397533417, 0.020368412137031555, 0.012024697847664356, 0.37621352076530457], [0.09227947145700455, 0.022185293957591057, 0.013095438480377197, 0.11232389509677887, 0.011276493780314922, 0.00845241267234087, 0.00967930257320404, 0.0183134563267231, 0.10783451050519943, 0.08224445581436157, 0.04308618977665901, 0.11947230249643326, 0.028381820768117905, 0.053372155874967575, 0.013050739653408527, 0.13208967447280884, 0.1328624188899994], [0.04053887724876404, 0.005695616826415062, 0.004130534827709198, 0.001643113442696631, 0.0006864396273158491, 0.0010371835669502616, 0.0007898491458036005, 0.024652527645230293, 0.4360586702823639, 0.004592256620526314, 0.001775078009814024, 0.0027528100181370974, 0.0013917480828240514, 0.0020696839783340693, 0.0032685284968465567, 0.003168020863085985, 0.4657491147518158]], [[0.15393738448619843, 0.01451246626675129, 0.006779943127185106, 0.015984809026122093, 0.045987557619810104, 0.002752251224592328, 0.013063582591712475, 0.0060724602080881596, 0.12599165737628937, 0.257351815700531, 0.013315869495272636, 0.00793194305151701, 0.04584855958819389, 0.042014382779598236, 0.046460140496492386, 0.049255404621362686, 0.15273985266685486], [0.034783586859703064, 0.3728260397911072, 0.009114244021475315, 0.014268873259425163, 0.18110573291778564, 0.014605076983571053, 0.012200742959976196, 0.002340237610042095, 0.06465550512075424, 0.012748518027365208, 0.18899331986904144, 0.003487184876576066, 0.013940425589680672, 0.005007883068174124, 0.0038091898895800114, 0.0031012161634862423, 0.06301233172416687], [0.012023315764963627, 0.08860528469085693, 0.006199287716299295, 0.08796359598636627, 0.19533425569534302, 0.00969691015779972, 0.06508167833089828, 0.007929005660116673, 0.15826885402202606, 0.024426762014627457, 0.0939503088593483, 0.014294161461293697, 0.020569145679473877, 0.010646339505910873, 0.01675662212073803, 0.023205654695630074, 0.165048748254776], [0.04062730073928833, 0.027490030974149704, 0.00611188355833292, 0.1476425677537918, 0.5342229008674622, 0.011233964003622532, 0.02660192735493183, 0.004702100995928049, 0.06623287498950958, 0.005448800045996904, 0.009692905470728874, 0.020316582173109055, 0.017874833196401596, 0.005440391134470701, 0.004325408488512039, 0.016885949298739433, 0.05514964088797569], [0.011914280243217945, 0.015027663670480251, 0.006231158040463924, 0.0649731382727623, 0.43866267800331116, 0.004818764049559832, 0.02903776802122593, 0.0004989375593140721, 0.12065409868955612, 0.016685139387845993, 0.005857492797076702, 0.0959925651550293, 0.04475284740328789, 0.013124281540513039, 0.007821118459105492, 0.006436625029891729, 0.1175113320350647], [0.0030737738125026226, 0.020720308646559715, 0.002378624863922596, 0.0500325933098793, 0.6631656289100647, 0.0025604998227208853, 0.020892580971121788, 0.0023408210836350918, 0.05305691435933113, 0.02775217592716217, 0.018833626061677933, 0.03517640009522438, 0.018477145582437515, 0.005924113094806671, 0.011634751223027706, 0.010158419609069824, 0.0538216158747673], [0.03150756284594536, 0.018566293641924858, 0.00775852520018816, 0.09674064069986343, 0.2249096930027008, 0.00307087623514235, 0.01168697327375412, 0.0054312776774168015, 0.18694360554218292, 0.013946693390607834, 0.011964329518377781, 0.15759669244289398, 0.022865835577249527, 0.00760678993538022, 0.012257061898708344, 0.011732331477105618, 0.17541486024856567], [0.20167523622512817, 0.0012210005661472678, 0.009347226470708847, 0.0005275291041471064, 0.002158051822334528, 0.022112125530838966, 0.00027390773175284266, 0.7498869895935059, 0.003161301137879491, 0.0013955492759123445, 0.0005838156212121248, 6.107669469201937e-05, 0.0014142494183033705, 0.001286953454837203, 0.0014639680739492178, 0.0008529202896170318, 0.002578112529590726], [0.3392258882522583, 0.0003474419645499438, 0.017697548493742943, 0.00034864433109760284, 0.00013859718455933034, 0.011854150332510471, 9.607461834093556e-05, 0.5260440707206726, 0.04609724506735802, 0.0010699480772018433, 0.0005360493087209761, 0.00021951552480459213, 0.0007843192433938384, 0.002987075597047806, 0.003980542067438364, 0.003309902735054493, 0.045262932777404785], [0.14181214570999146, 0.002162131480872631, 0.0052556986920535564, 0.014523785561323166, 0.07398169487714767, 0.0019744380842894316, 0.007618424016982317, 0.01032099686563015, 0.22103512287139893, 0.06524402648210526, 0.007268873509019613, 0.02393418923020363, 0.07452501356601715, 0.03132077306509018, 0.026117483153939247, 0.02592371590435505, 0.2669815123081207], [0.04754903167486191, 0.055569376796483994, 0.001979036722332239, 0.0171392560005188, 0.19845329225063324, 0.0021873374935239553, 0.014013304375112057, 0.0008090201299637556, 0.13742053508758545, 0.2197365015745163, 0.04419075325131416, 0.007974792271852493, 0.06039087474346161, 0.012480903416872025, 0.011993058025836945, 0.00827112141996622, 0.15984182059764862], [0.015173112973570824, 0.0007959223003126681, 0.0003134974685963243, 0.006277746055275202, 0.07463832199573517, 0.0015087107894942164, 0.0013125193072482944, 0.0007432755082845688, 0.037144601345062256, 0.00182385987136513, 0.0015877608675509691, 0.7842802405357361, 0.008985773660242558, 0.0073459092527627945, 0.007578442804515362, 0.006970295216888189, 0.043520063161849976], [0.03597979247570038, 0.0019340186845511198, 0.0023743619676679373, 0.01472576055675745, 0.028376227244734764, 0.0008248861995525658, 0.0027777627110481262, 0.0034397589042782784, 0.30702465772628784, 0.01790892519056797, 0.003995273727923632, 0.10294529050588608, 0.04357773810625076, 0.01807667873799801, 0.03907795995473862, 0.02212400548160076, 0.3548368513584137], [0.014890733174979687, 0.020436201244592667, 0.0018043856834992766, 0.053086258471012115, 0.046342119574546814, 0.0017069646855816245, 0.020459666848182678, 0.0006417477852664888, 0.29479536414146423, 0.018787145614624023, 0.017174435779452324, 0.027899598702788353, 0.055454764515161514, 0.021909315139055252, 0.04137881472706795, 0.042646750807762146, 0.3205856382846832], [0.024464592337608337, 0.013698003254830837, 0.001383753726258874, 0.018582692369818687, 0.05824772268533707, 0.0020962106063961983, 0.008711977861821651, 0.002350544324144721, 0.33351701498031616, 0.02267107181251049, 0.009135224856436253, 0.01663285307586193, 0.04211343452334404, 0.009826556779444218, 0.016638237982988358, 0.014036930166184902, 0.4058931767940521], [0.09143819659948349, 0.025717345997691154, 0.006066449452191591, 0.059783030301332474, 0.06158558279275894, 0.004037764389067888, 0.023459356278181076, 0.010942014865577221, 0.13878405094146729, 0.06463637948036194, 0.025132765993475914, 0.021056028082966805, 0.06254459917545319, 0.03878892585635185, 0.08722954243421555, 0.13370639085769653, 0.14509160816669464], [0.36221015453338623, 0.0003070094098802656, 0.015256155282258987, 0.000311047479044646, 0.00012637523468583822, 0.011189128272235394, 8.444055129075423e-05, 0.5028384923934937, 0.04528357833623886, 0.0013326802290976048, 0.0006204037927091122, 0.0002672361151780933, 0.0009621839853934944, 0.0038990553002804518, 0.005101409275084734, 0.004158728290349245, 0.046051986515522]]], [[[0.18927259743213654, 0.010431046597659588, 0.12248282879590988, 0.044441480189561844, 0.1381075382232666, 0.18259955942630768, 0.0030434122309088707, 0.05265072360634804, 0.09715093672275543, 0.02211337722837925, 0.003408635500818491, 0.0007928932318463922, 0.0008180654840543866, 0.000782747520133853, 0.001088500488549471, 0.0325465127825737, 0.09826906025409698], [0.4576168954372406, 0.01333136297762394, 0.008512655273079872, 0.016376031562685966, 0.011698503978550434, 0.0038609658367931843, 0.002805528463795781, 0.03832927718758583, 0.16091957688331604, 0.04863307625055313, 0.026661721989512444, 0.004605063237249851, 0.004788256715983152, 0.0057881856337189674, 0.006243500858545303, 0.029359055683016777, 0.1604703664779663], [0.16821084916591644, 0.022766562178730965, 0.006992377806454897, 0.02717471495270729, 0.0031743382569402456, 0.0053077805787324905, 0.0024549546651542187, 0.10692514479160309, 0.24381498992443085, 0.020913150161504745, 0.039907149970531464, 0.008940433152019978, 0.009190364740788937, 0.009803677909076214, 0.06298371404409409, 0.01827634871006012, 0.24316340684890747], [0.29126155376434326, 0.010545321740210056, 0.019259599968791008, 0.01185180339962244, 0.009268714115023613, 0.01224701851606369, 0.002227277494966984, 0.04898959398269653, 0.23437990248203278, 0.05102422088384628, 0.04153236374258995, 0.0037946479860693216, 0.0010742247104644775, 0.00441014626994729, 0.005907652899622917, 0.0218978188931942, 0.23032817244529724], [0.33959028124809265, 0.004307648167014122, 0.007359442766755819, 0.006935570389032364, 0.002156347967684269, 0.006591904908418655, 0.0018830867484211922, 0.10025899112224579, 0.22600360214710236, 0.027474336326122284, 0.021335480734705925, 0.00456642359495163, 0.003787908237427473, 0.002601271728053689, 0.004669032525271177, 0.01605743169784546, 0.22442112863063812], [0.18910112977027893, 0.025402596220374107, 0.010071770288050175, 0.020809605717658997, 0.005389074329286814, 0.003959559835493565, 0.005513504613190889, 0.14725041389465332, 0.22948172688484192, 0.026723649352788925, 0.048146072775125504, 0.008850248530507088, 0.0074641769751906395, 0.013482389971613884, 0.011285046115517616, 0.021328939124941826, 0.22574016451835632], [0.18233320116996765, 0.010200539603829384, 0.009599958546459675, 0.01268526166677475, 0.0052976966835558414, 0.004495667759329081, 0.0024324727710336447, 0.06085687503218651, 0.31485700607299805, 0.0334327295422554, 0.01947925053536892, 0.004640441853553057, 0.0029081767424941063, 0.005523401312530041, 0.0034206847194582224, 0.019205650314688683, 0.30863088369369507], [0.6423034071922302, 0.005870582535862923, 0.01827112026512623, 0.021719224750995636, 0.041319411247968674, 0.01613541692495346, 0.0011786763789132237, 0.02372727170586586, 0.0688328742980957, 0.040762823075056076, 0.008561402559280396, 0.0004558821674436331, 0.001096932333894074, 0.0024400101974606514, 0.002004890004172921, 0.03827059268951416, 0.06704949587583542], [0.026845688000321388, 0.0043416875414550304, 0.011359176598489285, 0.003751387819647789, 0.002859462983906269, 0.0083563681691885, 0.0028680728282779455, 0.05268212780356407, 0.41785967350006104, 0.005655355751514435, 0.002984269754961133, 0.0027323425747454166, 0.002257852116599679, 0.0015629775589331985, 0.0030274735763669014, 0.011712834239006042, 0.4391431510448456], [0.2955872714519501, 0.03647439554333687, 0.03516606241464615, 0.05229403078556061, 0.04541053622961044, 0.038197215646505356, 0.01131829246878624, 0.04804878681898117, 0.2062891721725464, 0.0037680347450077534, 0.01011739019304514, 0.0020574380178004503, 0.0007088994607329369, 0.0012839497067034245, 0.0013907249085605145, 0.006108436733484268, 0.2057793289422989], [0.39648935198783875, 0.07168390601873398, 0.04072282090783119, 0.06400157511234283, 0.05617072433233261, 0.006503338925540447, 0.002926240209490061, 0.02677137218415737, 0.15194599330425262, 0.012600972317159176, 0.006800358649343252, 0.001529003493487835, 0.0008148597553372383, 0.0013255276717245579, 0.00173011957667768, 0.009520416148006916, 0.14846351742744446], [0.022976044565439224, 0.01136298943310976, 0.022971469908952713, 0.006778225302696228, 0.006943941116333008, 0.006844544783234596, 0.004990750923752785, 0.02489999495446682, 0.43060266971588135, 0.006087103392928839, 0.004580381792038679, 0.0027555355336517096, 0.001001044875010848, 0.0013686222955584526, 0.004359197802841663, 0.003597324714064598, 0.4378802180290222], [0.038779858499765396, 0.028326446190476418, 0.03964635357260704, 0.01673860475420952, 0.006986437831073999, 0.005188890267163515, 0.004770874977111816, 0.0352882444858551, 0.40507155656814575, 0.0027869499754160643, 0.00370847899466753, 0.001895884983241558, 0.0003599210758693516, 0.001882963697426021, 0.003024386242032051, 0.0034445396158844233, 0.4020995497703552], [0.030265744775533676, 0.033081598579883575, 0.016941331326961517, 0.0068838875740766525, 0.0014196623815223575, 0.0006329893949441612, 0.0014345220988616347, 0.008779450319707394, 0.434416264295578, 0.0019730671774595976, 0.003757168771699071, 0.001814311370253563, 0.0011841977247968316, 0.0007055472815409303, 0.002085272455587983, 0.0026086634024977684, 0.4520166516304016], [0.03977159038186073, 0.05664397031068802, 0.1319253295660019, 0.0070150080136954784, 0.0012772117042914033, 0.0012800352415069938, 0.0008774331072345376, 0.018531909212470055, 0.35738229751586914, 0.0012780457036569715, 0.005804226268082857, 0.0014257780276238918, 0.0008848903235048056, 0.0017981536220759153, 0.00331663666293025, 0.0024215076118707657, 0.3683658540248871], [0.35176828503608704, 0.016164936125278473, 0.01636815257370472, 0.05804995074868202, 0.039208583533763885, 0.03616916388273239, 0.006622049026191235, 0.049356747418642044, 0.1859654039144516, 0.01782640442252159, 0.017638415098190308, 0.0031769585330039263, 0.0014164091553539038, 0.0016962096560746431, 0.0017007789574563503, 0.011082235723733902, 0.18578936159610748], [0.02784043364226818, 0.004453934263437986, 0.011656972579658031, 0.003910311032086611, 0.00298675405792892, 0.008510884828865528, 0.0029135136865079403, 0.05326022952795029, 0.4165485203266144, 0.005664305295795202, 0.0030453111976385117, 0.0027993745170533657, 0.0022439612075686455, 0.0015768746379762888, 0.0030868847388774157, 0.011895126663148403, 0.4376065731048584]], [[0.0174055527895689, 0.0008041482651606202, 0.005415774881839752, 0.005430548917502165, 0.007022784557193518, 0.011655040085315704, 0.004077734425663948, 0.0031429261434823275, 0.20425714552402496, 0.2788724899291992, 0.012756521813571453, 0.0859110876917839, 0.05452902987599373, 0.0031133699230849743, 0.01023023296147585, 0.06431077420711517, 0.23106485605239868], [0.03756609559059143, 0.006432707887142897, 0.10978108644485474, 0.049905404448509216, 0.05798760801553726, 0.47537466883659363, 0.11170471459627151, 0.00948326289653778, 0.032491523772478104, 0.015356071293354034, 0.010734397917985916, 0.011889010667800903, 0.014589817263185978, 0.0035612403880804777, 0.00891591515392065, 0.014044330455362797, 0.030182091519236565], [0.14121782779693604, 0.025699904188513756, 0.10492323338985443, 0.06693383306264877, 0.062403906136751175, 0.15459267795085907, 0.013577568344771862, 0.03130374103784561, 0.12446609884500504, 0.04866069182753563, 0.007124198600649834, 0.026473749428987503, 0.03693388029932976, 0.006729588843882084, 0.017443014308810234, 0.019684500992298126, 0.1118316501379013], [0.018767958506941795, 0.007196382619440556, 0.12685152888298035, 0.0076694912277162075, 0.08767466992139816, 0.29656198620796204, 0.10521198809146881, 0.022935686632990837, 0.1381455808877945, 0.04354340210556984, 0.002713648835197091, 0.008753422647714615, 0.0028425983618944883, 0.00037776576937176287, 0.0005821179947815835, 0.0027566179633140564, 0.12741507589817047], [0.012743240222334862, 0.006293843500316143, 0.03677865490317345, 0.045493800193071365, 0.01767962984740734, 0.09241805225610733, 0.021722158417105675, 0.01710713841021061, 0.3714589774608612, 0.028512604534626007, 0.0009588159155100584, 0.00434930669143796, 0.0015234311576932669, 2.6777799575938843e-05, 0.0001277343835681677, 0.0012791450135409832, 0.34152671694755554], [0.009583891369402409, 0.011033361777663231, 0.04552806541323662, 0.05745559558272362, 0.03182575851678848, 0.020797912031412125, 0.018088068813085556, 0.05869559571146965, 0.36804962158203125, 0.026127096265554428, 0.0014398206258192658, 0.008589284494519234, 0.0009079747833311558, 0.00012609167606569827, 0.0003513997362460941, 0.0027684273663908243, 0.3386319577693939], [0.005887715145945549, 0.0017569750780239701, 0.03319530934095383, 0.03500526398420334, 0.047948453575372696, 0.11323526501655579, 0.019043460488319397, 0.012303123250603676, 0.35033300518989563, 0.03527313470840454, 0.00020056427456438541, 0.018717598170042038, 0.0024984527844935656, 9.920956654241309e-05, 0.00026256285491399467, 0.00157392886467278, 0.3226660192012787], [0.03928348422050476, 0.010921375826001167, 0.12296735495328903, 0.05201724171638489, 0.06250567734241486, 0.18986988067626953, 0.04174082726240158, 0.045394670218229294, 0.19477318227291107, 0.030004872009158134, 0.004432680085301399, 0.009594363160431385, 0.006146155763417482, 0.001040601753629744, 0.0028530617710202932, 0.009806586429476738, 0.17664802074432373], [0.008005880750715733, 0.0028870662208646536, 0.0030952156521379948, 0.0021079606376588345, 0.0017723506316542625, 0.004175329115241766, 0.0015474167885258794, 0.01918380707502365, 0.47835928201675415, 0.0031132446601986885, 0.002474838634952903, 0.0019334484823048115, 0.001392505131661892, 0.0008520058472640812, 0.0016742658335715532, 0.002512388164177537, 0.46491312980651855], [0.01473692711442709, 0.0007284142775461078, 0.0030098571442067623, 0.0050953528843820095, 0.034985266625881195, 0.0816836953163147, 0.01492468360811472, 0.007333504036068916, 0.3747553825378418, 0.014840122312307358, 0.0013085606042295694, 0.039486441761255264, 0.0026478422805666924, 0.0005709935212507844, 0.0010041547939181328, 0.01806369423866272, 0.38482511043548584], [0.03308449313044548, 0.005363058298826218, 0.07295247167348862, 0.02461327239871025, 0.07506665587425232, 0.10252267122268677, 0.026483017951250076, 0.002392088295891881, 0.02609376795589924, 0.1274683177471161, 0.01506918016821146, 0.23681846261024475, 0.05273933708667755, 0.029125070199370384, 0.0955008938908577, 0.04775208234786987, 0.026955148205161095], [0.02203182689845562, 0.0014520460972562432, 0.019051892682909966, 0.012256080284714699, 0.003868603380396962, 0.04836718738079071, 0.015189481899142265, 0.010207864455878735, 0.38660791516304016, 0.02431645430624485, 0.0017582984874024987, 0.010459288954734802, 0.03339405357837677, 0.007945789024233818, 0.0036622625775635242, 0.014522621408104897, 0.3849082887172699], [0.035299353301525116, 0.0019236616790294647, 0.01111103966832161, 0.010909855365753174, 0.007746526040136814, 0.09966705739498138, 0.020622698590159416, 0.008716409094631672, 0.12993064522743225, 0.04700079932808876, 0.001978689106181264, 0.22726276516914368, 0.04526595026254654, 0.04508696496486664, 0.14352884888648987, 0.03737841919064522, 0.12657026946544647], [0.019359715282917023, 0.0013941325014457107, 0.0012283913092687726, 0.005196215119212866, 0.00448927516117692, 0.002475927583873272, 0.0018629872938618064, 0.008321234956383705, 0.432026743888855, 0.04344695433974266, 0.0030722073279321194, 0.013888254761695862, 0.019411059096455574, 0.003676072461530566, 0.004668432287871838, 0.008724630810320377, 0.4267577826976776], [0.014869939535856247, 0.002363689010962844, 0.0009491543751209974, 0.002382102655246854, 0.0068388828076422215, 0.0032602129504084587, 0.00202627363614738, 0.007454190868884325, 0.4293583333492279, 0.032771483063697815, 0.0011923447018489242, 0.012779499404132366, 0.031087882816791534, 0.011963548138737679, 0.0036647554952651262, 0.01164622139185667, 0.42539161443710327], [0.023424305021762848, 0.004161475226283073, 0.053437765687704086, 0.0041063521057367325, 0.04978364706039429, 0.17035581171512604, 0.020288191735744476, 0.013689602725207806, 0.10812962055206299, 0.20115990936756134, 0.008319775573909283, 0.15714073181152344, 0.036948319524526596, 0.007364704739302397, 0.008542901836335659, 0.02468431554734707, 0.10846249014139175], [0.007420300506055355, 0.0025558052584528923, 0.0026494849007576704, 0.0017724173376336694, 0.0015149289974942803, 0.0034541103523224592, 0.0013401638716459274, 0.01764225959777832, 0.47893622517585754, 0.0031514132861047983, 0.0024319614749401808, 0.0019019941100850701, 0.0013559728395193815, 0.0007875753799453378, 0.0015469209756702185, 0.0023786742240190506, 0.4691597521305084]], [[0.05782919004559517, 0.004385638516396284, 0.007083403877913952, 0.004566224291920662, 0.00531862722709775, 0.0044893985614180565, 0.0014594682725146413, 0.0009645286481827497, 0.05730512738227844, 0.11441614478826523, 0.1662038266658783, 0.09033162891864777, 0.08029140532016754, 0.07159007340669632, 0.143330380320549, 0.12362919002771378, 0.06680573523044586], [0.08099692314863205, 0.04769745096564293, 0.08576824516057968, 0.08670607954263687, 0.08900582790374756, 0.12557728588581085, 0.046022556722164154, 0.019154828041791916, 0.19895946979522705, 0.0032632132060825825, 0.0036226403899490833, 0.0145344827324152, 0.0036901698913425207, 0.0025103853549808264, 0.006361159961670637, 0.007396908942610025, 0.17873236536979675], [0.11970715969800949, 0.03750305250287056, 0.05213442072272301, 0.08544757962226868, 0.06184489652514458, 0.048627447336912155, 0.04167449474334717, 0.013329438865184784, 0.25854194164276123, 0.006002457346767187, 0.011579615995287895, 0.009816060774028301, 0.0038635546807199717, 0.0017745092045515776, 0.006404664367437363, 0.01339015830308199, 0.22835849225521088], [0.058117642998695374, 0.06061365082859993, 0.28099334239959717, 0.046413976699113846, 0.09239953011274338, 0.16530562937259674, 0.02536696009337902, 0.005575292278081179, 0.11852320283651352, 0.0027486945036798716, 0.0048959581181406975, 0.005631591659039259, 0.0038956105709075928, 0.006491313222795725, 0.012672956101596355, 0.004923818167299032, 0.10543090850114822], [0.05503857508301735, 0.06344094127416611, 0.2773861587047577, 0.04516499117016792, 0.02277582325041294, 0.08959808200597763, 0.0358562171459198, 0.004877686966210604, 0.20451001822948456, 0.0029536979272961617, 0.003572909627109766, 0.0038970487657934427, 0.002326544839888811, 0.0029529291205108166, 0.007510020863264799, 0.0033560956362634897, 0.17478232085704803], [0.09637878090143204, 0.03728623688220978, 0.15503662824630737, 0.060819681733846664, 0.09520745277404785, 0.049415506422519684, 0.024210099130868912, 0.005593512672930956, 0.23579616844654083, 0.004846211988478899, 0.006965687498450279, 0.005287887994199991, 0.002022122498601675, 0.0026859708596020937, 0.00616758968681097, 0.006483485456556082, 0.20579688251018524], [0.03324959799647331, 0.07174746692180634, 0.11341799795627594, 0.04136042669415474, 0.026665732264518738, 0.10508661717176437, 0.017370909452438354, 0.010711060836911201, 0.28765395283699036, 0.0044604092836380005, 0.00794435665011406, 0.004573209676891565, 0.0019038983155041933, 0.0018391372868791223, 0.005927726160734892, 0.008415620774030685, 0.2576717734336853], [0.14671023190021515, 0.05794450268149376, 0.2770603597164154, 0.0366293340921402, 0.11070644855499268, 0.18868589401245117, 0.023222271353006363, 0.03035949543118477, 0.05243919417262077, 0.0033074491657316685, 0.00523516396060586, 0.0018959123408421874, 0.0032697939313948154, 0.0026890975423157215, 0.00789870135486126, 0.005680619273334742, 0.04626549035310745], [0.01790616102516651, 0.005568797700107098, 0.009265738539397717, 0.005200357176363468, 0.003629591315984726, 0.003195792669430375, 0.0022376838605850935, 0.08739952743053436, 0.4125373959541321, 0.006553320679813623, 0.008278394117951393, 0.0029775891453027725, 0.0016037097666412592, 0.0006179727497510612, 0.0021072537638247013, 0.011295883916318417, 0.41962477564811707], [0.029063992202281952, 0.0047799828462302685, 0.002818971872329712, 0.0034663034602999687, 0.001379151362925768, 0.0031255220528692007, 0.0012173574650660157, 0.0008229855448007584, 0.26591530442237854, 0.02438487485051155, 0.056342821568250656, 0.10847561061382294, 0.028441699221730232, 0.016355125233530998, 0.07422536611557007, 0.08082561194896698, 0.29835930466651917], [0.042893294245004654, 0.007728861179202795, 0.006665055640041828, 0.028495654463768005, 0.012110443785786629, 0.011421522125601768, 0.0060052587650716305, 0.0015260545769706368, 0.08183512091636658, 0.07674339413642883, 0.06005560979247093, 0.2807020843029022, 0.05430763587355614, 0.026237284764647484, 0.07856515794992447, 0.13309387862682343, 0.09161370247602463], [0.0271441787481308, 0.01470328588038683, 0.02288920059800148, 0.008312780410051346, 0.003094565123319626, 0.008655658923089504, 0.003037445480003953, 0.003105797106400132, 0.36296480894088745, 0.028500575572252274, 0.03270089998841286, 0.019113661721348763, 0.013181978836655617, 0.008487225510179996, 0.03910672664642334, 0.02765830047428608, 0.3773428797721863], [0.0169081911444664, 0.008299125358462334, 0.006622029468417168, 0.006994720082730055, 0.0016013933345675468, 0.0057757250033319, 0.0012783496640622616, 0.0015351736219599843, 0.3329033851623535, 0.039313022047281265, 0.043547533452510834, 0.09648048132658005, 0.006568219978362322, 0.008414344862103462, 0.02256062626838684, 0.04230526089668274, 0.35889238119125366], [0.023301851004362106, 0.002987081650644541, 0.004921111278235912, 0.0027839583344757557, 0.0005198765429668128, 0.0010687484173104167, 0.0013127231504768133, 0.003465663641691208, 0.4530599117279053, 0.005097770132124424, 0.009009651839733124, 0.0104592964053154, 0.005795119795948267, 0.0011189539218321443, 0.0024994288105517626, 0.005162742454558611, 0.4674362540245056], [0.04272375628352165, 0.002688746899366379, 0.005862189922481775, 0.0036073564551770687, 0.001545575330965221, 0.0015120545867830515, 0.0011338251642882824, 0.0015430613420903683, 0.41709572076797485, 0.009303785860538483, 0.014094715937972069, 0.02185630425810814, 0.009364325553178787, 0.004373994190245867, 0.004859173204749823, 0.019144974648952484, 0.43929022550582886], [0.136650949716568, 0.04313594102859497, 0.0302302036434412, 0.045243680477142334, 0.021728767082095146, 0.027933435514569283, 0.016294781118631363, 0.008790555410087109, 0.1291041225194931, 0.03983159363269806, 0.07692816108465195, 0.08455802500247955, 0.06422775983810425, 0.0204963106662035, 0.04479874670505524, 0.07839468121528625, 0.13165226578712463], [0.017510393634438515, 0.0051260823383927345, 0.007864479906857014, 0.004709544125944376, 0.003131305333226919, 0.0027298007626086473, 0.0020060879178345203, 0.07903189957141876, 0.41496965289115906, 0.007312878035008907, 0.009336182847619057, 0.0032839528284966946, 0.0017670848174020648, 0.0006519770831800997, 0.002209938131272793, 0.012409497983753681, 0.4259493052959442]], [[0.18975551426410675, 0.28629159927368164, 0.2007616013288498, 0.03271638602018356, 0.1258750855922699, 0.07203998416662216, 0.033064503222703934, 0.0237827580422163, 0.007570752874016762, 0.0018961087334901094, 0.0010089421411976218, 0.0010489406995475292, 0.0015997670125216246, 0.010862092487514019, 0.005378192290663719, 0.00022643024567514658, 0.00612123915925622], [0.12268954515457153, 0.29665079712867737, 0.20158503949642181, 0.13312841951847076, 0.06263607740402222, 0.029887787997722626, 0.09609538316726685, 0.04585343971848488, 0.002560230204835534, 0.0002643875777721405, 0.0021009996999055147, 0.0007170123280957341, 0.0005761652137152851, 0.0006644680979661644, 0.0006472732056863606, 0.0018781002145260572, 0.0020647963974624872], [0.09834279865026474, 0.0444544292986393, 0.294821172952652, 0.09888062626123428, 0.06472521275281906, 0.10571271181106567, 0.2087022364139557, 0.07377003878355026, 0.0036772144958376884, 0.00013159157242625952, 0.000514889950864017, 0.0007261170540004969, 0.0008958310354501009, 0.0005146915791556239, 0.0007717930129729211, 0.00042006841977126896, 0.0029386773239821196], [0.20053023099899292, 0.1995178759098053, 0.08394993841648102, 0.039753057062625885, 0.1017308458685875, 0.11949076503515244, 0.0353693850338459, 0.20238079130649567, 0.0037203552201390266, 0.0006184024969115853, 0.0009388746693730354, 0.0008904053829610348, 0.00036710224230773747, 0.002347832778468728, 0.001980625092983246, 0.003532483009621501, 0.0028810175135731697], [0.24109521508216858, 0.06905506551265717, 0.18498580157756805, 0.05258743464946747, 0.03267315402626991, 0.14198490977287292, 0.14849670231342316, 0.08981669694185257, 0.013725503347814083, 0.0014184127794578671, 0.0014362510992214084, 0.0026061460375785828, 0.002922236453741789, 0.0011852694442495704, 0.001491206930950284, 0.003344242461025715, 0.011175778694450855], [0.08579378575086594, 0.0538950189948082, 0.2694253623485565, 0.0670529305934906, 0.11867348104715347, 0.24133417010307312, 0.12008015066385269, 0.0385066457092762, 0.0015596980229020119, 4.522140079643577e-05, 0.00046963433851487935, 0.0004218488174956292, 0.00036008335882797837, 0.0004574651538860053, 0.00038533101906068623, 0.00027632914134301245, 0.0012629734119400382], [0.22816912829875946, 0.11075137555599213, 0.18351751565933228, 0.0603143647313118, 0.10824733227491379, 0.09826086461544037, 0.12833592295646667, 0.06259866803884506, 0.007371312938630581, 0.00022838734730612487, 0.0008989123743958771, 0.0012016290565952659, 0.0014324270887300372, 0.0007669661426916718, 0.0007746859337203205, 0.001289324020035565, 0.005841198842972517], [0.07802582532167435, 0.12547588348388672, 0.317453533411026, 0.06928490102291107, 0.16141177713871002, 0.0838765949010849, 0.09871988743543625, 0.03093957155942917, 0.005233691539615393, 0.001622765907086432, 0.004642815794795752, 0.002525020856410265, 0.0018603933276608586, 0.006656398065388203, 0.005491246934980154, 0.0022683138959109783, 0.004511373583227396], [0.06502555310726166, 7.126542186597362e-05, 0.020700860768556595, 0.0038387258537113667, 0.007685459218919277, 0.04076838865876198, 0.045081835240125656, 0.23812291026115417, 0.23148119449615479, 0.030816929414868355, 0.0006987892556935549, 0.0012259158538654447, 0.007048981264233589, 0.006049943156540394, 0.011828115209937096, 0.06896744668483734, 0.22058765590190887], [0.0008491140324622393, 0.0005212611868046224, 2.5599083528504707e-05, 0.0006783573189750314, 0.0001678473490756005, 9.31520844460465e-06, 0.00012656275066547096, 0.0001950762962223962, 0.09756988286972046, 0.26556169986724854, 0.28196024894714355, 0.04583445563912392, 0.09193549305200577, 0.013926739804446697, 0.029472045600414276, 0.0394529290497303, 0.1317133754491806], [0.0007177837542258203, 0.0008252694387920201, 0.00010313571692677215, 0.00040920067112892866, 0.00012154570868005976, 7.2462034950149246e-06, 0.00013535514881368726, 0.0004142120305914432, 0.05946400389075279, 0.32566601037979126, 0.20180393755435944, 0.030266478657722473, 0.08240750432014465, 0.038651201874017715, 0.05873998999595642, 0.11753781139850616, 0.08272930979728699], [0.0011240089079365134, 0.0004871144483331591, 2.9071303288219497e-05, 0.0002849288284778595, 0.00012817826063837856, 1.4750094123883173e-05, 0.00013278725964482874, 0.0005761770298704505, 0.09627234935760498, 0.1750241369009018, 0.23541271686553955, 0.031787142157554626, 0.15129630267620087, 0.019971439614892006, 0.03018873557448387, 0.12603642046451569, 0.131233811378479], [0.0005903768469579518, 0.0002158536808565259, 5.251400943961926e-05, 0.00026627047918736935, 6.02041109232232e-05, 1.2042210073559545e-05, 0.00013055406452622265, 0.00020666791533585638, 0.12170957773923874, 0.1829490214586258, 0.06646079570055008, 0.09687380492687225, 0.19819007813930511, 0.02818789705634117, 0.06094944477081299, 0.07096985727548599, 0.17217500507831573], [0.022938458248972893, 0.002456842688843608, 0.0009184491937048733, 0.004386201500892639, 0.0005793674499727786, 0.00019684068684000522, 0.0007839884492568672, 0.006411590147763491, 0.07629384845495224, 0.21221914887428284, 0.057410579174757004, 0.05714748799800873, 0.0629132017493248, 0.051415786147117615, 0.07971934974193573, 0.2734029293060303, 0.09080594033002853], [0.005536186043173075, 0.0004560565866995603, 0.0003791222407016903, 0.0013831116957589984, 0.0002366519474890083, 4.778942093253136e-05, 0.0003254574548918754, 0.00259949523024261, 0.14263667166233063, 0.11927974224090576, 0.08668158203363419, 0.04186565801501274, 0.08596266061067581, 0.10303383320569992, 0.09668242186307907, 0.12849071621894836, 0.18440285325050354], [0.004912117961794138, 0.001683229231275618, 0.00017866981215775013, 0.0006479433504864573, 0.0012386339949443936, 0.00021685042884200811, 0.0004188133461866528, 0.00474077183753252, 0.12158916890621185, 0.19421376287937164, 0.15419024229049683, 0.018400857225060463, 0.0642792135477066, 0.051191214472055435, 0.11149299889802933, 0.11672280728816986, 0.15388274192810059], [0.046810876578092575, 5.01327303936705e-05, 0.013078054413199425, 0.0025798736605793238, 0.005134680774062872, 0.024470267817378044, 0.02899685688316822, 0.1702173352241516, 0.2758837938308716, 0.044141292572021484, 0.000980180804617703, 0.0015524347545579076, 0.009378008544445038, 0.007391740567982197, 0.014959284104406834, 0.08218418806791306, 0.27219095826148987]], [[0.10778369009494781, 0.0232497937977314, 0.03110782615840435, 0.013731193728744984, 0.015079586766660213, 0.023576319217681885, 0.007709394674748182, 0.05609725043177605, 0.22407540678977966, 0.07210586220026016, 0.039677854627370834, 0.01689349114894867, 0.050142090767621994, 0.024312153458595276, 0.022013520821928978, 0.04806755110621452, 0.22437705099582672], [0.05314109846949577, 0.05907800793647766, 0.13679544627666473, 0.07387401163578033, 0.03131458908319473, 0.07529086619615555, 0.0689331516623497, 0.06880965083837509, 0.14657367765903473, 0.02871098183095455, 0.016123805195093155, 0.013743139803409576, 0.02172785997390747, 0.011980073526501656, 0.007454304024577141, 0.0484759546816349, 0.1379733830690384], [0.07213469594717026, 0.08035585284233093, 0.004166534636169672, 0.09203176200389862, 0.11806591600179672, 0.0749470666050911, 0.1191972866654396, 0.08482915908098221, 0.13209310173988342, 0.0020194791723042727, 0.01606658659875393, 0.00722781615331769, 0.02062395215034485, 0.0070595694705843925, 0.04329958185553551, 0.004986653104424477, 0.12089500576257706], [0.07898479700088501, 0.0479356087744236, 0.12577833235263824, 0.04626356437802315, 0.009973617270588875, 0.027034349739551544, 0.008731257170438766, 0.09568220376968384, 0.20882639288902283, 0.04436706006526947, 0.00855690985918045, 0.00463868910446763, 0.005511523690074682, 0.011984333395957947, 0.004928638692945242, 0.07905110716819763, 0.1917516142129898], [0.10369876027107239, 0.018532918766140938, 0.1902623176574707, 0.011236610822379589, 0.002089608693495393, 0.06078362837433815, 0.021155675873160362, 0.10914039611816406, 0.1801401972770691, 0.12007852643728256, 0.0021061464212834835, 0.007819721475243568, 0.003933988977223635, 0.0005202434258535504, 0.00022912738495506346, 0.005621068179607391, 0.16265098750591278], [0.07788316905498505, 0.05426955595612526, 0.12573187053203583, 0.019936494529247284, 0.03333894908428192, 0.004992308560758829, 0.05528872832655907, 0.08208587765693665, 0.1532691866159439, 0.02836434170603752, 0.00813301745802164, 0.048644959926605225, 0.050609294325113297, 0.08343028277158737, 0.027831746265292168, 0.006678480189293623, 0.13951171934604645], [0.06192693114280701, 0.03334799036383629, 0.17852658033370972, 0.012649052776396275, 0.056498933583498, 0.29842373728752136, 0.040331047028303146, 0.047012243419885635, 0.08710748702287674, 0.0652073547244072, 0.002463636454194784, 0.012166906148195267, 0.003558964701369405, 0.004711803514510393, 0.0029960169922560453, 0.013195016421377659, 0.07987632602453232], [0.06327886134386063, 0.0836036205291748, 0.10124838352203369, 0.05750996991991997, 0.09481742233037949, 0.08069600909948349, 0.05007690191268921, 0.09224551171064377, 0.15248338878154755, 0.023098070174455643, 0.021547719836235046, 0.011252366006374359, 0.007711201440542936, 0.004103386774659157, 0.0045389411970973015, 0.013189360499382019, 0.13859893381595612], [0.08977363258600235, 0.044923633337020874, 0.05061790347099304, 0.034864556044340134, 0.025146840140223503, 0.03320112079381943, 0.026888906955718994, 0.08315443247556686, 0.16213496029376984, 0.03551569953560829, 0.050996165722608566, 0.025959772989153862, 0.0315140075981617, 0.03536566346883774, 0.044262442737817764, 0.06387795507907867, 0.16180233657360077], [0.15068624913692474, 0.020011581480503082, 0.0038030114956200123, 0.03688008710741997, 0.07749611884355545, 0.031045880168676376, 0.044385720044374466, 0.02682865969836712, 0.15471012890338898, 0.0838741883635521, 0.049962118268013, 0.044467613101005554, 0.009598050266504288, 0.008946756832301617, 0.01274880301207304, 0.07569101452827454, 0.1688639223575592], [0.04740447923541069, 0.021780475974082947, 0.012858090922236443, 0.011991053819656372, 0.004323021043092012, 0.01407338585704565, 0.02045566774904728, 0.04039063677191734, 0.14332930743694305, 0.1817731112241745, 0.007597863208502531, 0.033480092883110046, 0.06982488930225372, 0.05618320405483246, 0.060275815427303314, 0.12317872047424316, 0.1510801762342453], [0.08884214609861374, 0.010657667182385921, 0.017407242208719254, 0.0036999410949647427, 0.014290076680481434, 0.05406496673822403, 0.00889695156365633, 0.023020818829536438, 0.12325640767812729, 0.19782155752182007, 0.062119461596012115, 0.024056755006313324, 0.0280571598559618, 0.037816375494003296, 0.04873092845082283, 0.12775467336177826, 0.12950685620307922], [0.08212973922491074, 0.0251918938010931, 0.0556969977915287, 0.005964886862784624, 0.013916494324803352, 0.09266016632318497, 0.011911566369235516, 0.04747019335627556, 0.17447666823863983, 0.07294398546218872, 0.08815183490514755, 0.0590052492916584, 0.011987412348389626, 0.008345074020326138, 0.024434493854641914, 0.044371023774147034, 0.1813422292470932], [0.06182695925235748, 0.032713308930397034, 0.07611880451440811, 0.028053686022758484, 0.0016748742200434208, 0.06534861773252487, 0.01005744282156229, 0.03510230779647827, 0.1235855296254158, 0.03601160645484924, 0.1817115843296051, 0.023733709007501602, 0.01251690462231636, 0.000523271388374269, 0.003131855046376586, 0.1747126579284668, 0.13317681849002838], [0.07456973195075989, 0.010289469733834267, 0.08816496282815933, 0.014516211114823818, 0.0009223271044902503, 0.02099846862256527, 0.00566053343936801, 0.024335535243153572, 0.12653867900371552, 0.04160265251994133, 0.17082461714744568, 0.0653349757194519, 0.09466809779405594, 0.015321015380322933, 0.015078390017151833, 0.09486056864261627, 0.13631370663642883], [0.05467785522341728, 0.016035791486501694, 0.012110044248402119, 0.033462610095739365, 0.0113012520596385, 0.01578878052532673, 0.015721647068858147, 0.02180643379688263, 0.12207046896219254, 0.09398935735225677, 0.08839790523052216, 0.10018263012170792, 0.01845436729490757, 0.0587228462100029, 0.043921519070863724, 0.16277523338794708, 0.13058136403560638], [0.0883234366774559, 0.04295876994729042, 0.046672359108924866, 0.03217342123389244, 0.02339833416044712, 0.03022189438343048, 0.024998480454087257, 0.07673180103302002, 0.15765050053596497, 0.040973346680402756, 0.056740548461675644, 0.028102349489927292, 0.03387371078133583, 0.03862035647034645, 0.048412393778562546, 0.07143495231866837, 0.15871340036392212]], [[0.07757756114006042, 0.024966368451714516, 0.006401863880455494, 0.022908572107553482, 0.013603247702121735, 0.018894625827670097, 0.014709298498928547, 0.02499750629067421, 0.3588676154613495, 0.015176106244325638, 0.01228202972561121, 0.008453314192593098, 0.00876674521714449, 0.008219013921916485, 0.008951781317591667, 0.02460065297782421, 0.3506237268447876], [0.1237139105796814, 0.053817301988601685, 0.11610157042741776, 0.012742266058921814, 0.0050428323447704315, 0.010134079493582249, 0.005440496373921633, 0.05104897916316986, 0.22674532234668732, 0.012964395806193352, 0.10031000524759293, 0.004582129884511232, 0.004866207949817181, 0.010016756132245064, 0.009577146731317043, 0.0319075845181942, 0.22098898887634277], [0.05845242366194725, 0.06696770340204239, 0.12722915410995483, 0.042245831340551376, 0.01069670170545578, 0.037848278880119324, 0.00223350222222507, 0.041564010083675385, 0.2396683394908905, 0.03153937682509422, 0.03421894088387489, 0.011553503572940826, 0.004738937132060528, 0.0008204185287468135, 0.004141980782151222, 0.0346074253320694, 0.25147339701652527], [0.056034788489341736, 0.06195364147424698, 0.06846596300601959, 0.03857123479247093, 0.010405567474663258, 0.01627117395401001, 0.013158216141164303, 0.02642313577234745, 0.2858181893825531, 0.008688432164490223, 0.05229492858052254, 0.011172953993082047, 0.00723689328879118, 0.0049502053298056126, 0.00789103377610445, 0.047324102371931076, 0.28333956003189087], [0.03916003555059433, 0.10130125284194946, 0.09455464780330658, 0.04280954599380493, 0.00639269407838583, 0.05185806378722191, 0.008054295554757118, 0.04308240860700607, 0.22189150750637054, 0.013388561084866524, 0.06549188494682312, 0.012005145661532879, 0.026264170184731483, 0.003614023793488741, 0.009567645378410816, 0.03260597214102745, 0.22795799374580383], [0.033841926604509354, 0.0349695049226284, 0.043661605566740036, 0.026684299111366272, 0.02233916148543358, 0.07484976947307587, 0.009794989600777626, 0.012129310518503189, 0.09662404656410217, 0.1375279724597931, 0.06735406816005707, 0.1248278096318245, 0.16557638347148895, 0.0012647965922951698, 0.014842272736132145, 0.03692548722028732, 0.09678657352924347], [0.051326751708984375, 0.03745132312178612, 0.030030163004994392, 0.03308398649096489, 0.0028164966497570276, 0.014546118676662445, 0.007192975375801325, 0.03424512594938278, 0.28664684295654297, 0.019697923213243484, 0.06117156893014908, 0.03609964996576309, 0.025255894288420677, 0.018068278208374977, 0.020205562934279442, 0.03162519633769989, 0.29053616523742676], [0.17185695469379425, 0.028961503878235817, 0.030272506177425385, 0.055181682109832764, 0.012850516475737095, 0.008090578950941563, 0.0055708191357553005, 0.02476285584270954, 0.24465125799179077, 0.04835999757051468, 0.03369203209877014, 0.013921026140451431, 0.008021002635359764, 0.005248946603387594, 0.010638822801411152, 0.05581967160105705, 0.242099791765213], [0.0477965883910656, 0.008591419085860252, 0.012560238130390644, 0.007843993604183197, 0.0036647343076765537, 0.009707380086183548, 0.004676171112805605, 0.017591839656233788, 0.4134973883628845, 0.014071790501475334, 0.006980078294873238, 0.008953343145549297, 0.008050679229199886, 0.004276555962860584, 0.005813945084810257, 0.010995090939104557, 0.41492876410484314], [0.04742226377129555, 0.030504191294312477, 0.022241177037358284, 0.04673941433429718, 0.019967779517173767, 0.008044990710914135, 0.012378828600049019, 0.02360449731349945, 0.19647781550884247, 0.04152660816907883, 0.026114612817764282, 0.04644668102264404, 0.11197292804718018, 0.03548828139901161, 0.02690413035452366, 0.10786480456590652, 0.19630101323127747], [0.08561167865991592, 0.26710274815559387, 0.15554147958755493, 0.006184375379234552, 0.0011585064930841327, 0.0028048576787114143, 0.0010972751770168543, 0.026849156245589256, 0.12017999589443207, 0.002236614702269435, 0.18039251863956451, 0.0007021683268249035, 0.0005380944930948317, 0.0013695275411009789, 0.0014217051211744547, 0.02658555656671524, 0.12022377550601959], [0.0411747582256794, 0.01335297804325819, 0.012766428291797638, 0.009585987776517868, 0.0031099379993975163, 0.0018097193678840995, 0.008015465922653675, 0.02464604191482067, 0.29103532433509827, 0.0032987233716994524, 0.005305584520101547, 0.03740245848894119, 0.15607498586177826, 0.0388929508626461, 0.043887872248888016, 0.007889741100370884, 0.30175110697746277], [0.054878272116184235, 0.016822323203086853, 0.009820486418902874, 0.00941557064652443, 0.009204561822116375, 0.003976711072027683, 0.00810614600777626, 0.02501188963651657, 0.2995590567588806, 0.003688205499202013, 0.00458797812461853, 0.013329659588634968, 0.09101948887109756, 0.12248995155096054, 0.021962657570838928, 0.01028417982161045, 0.2958429455757141], [0.018716024234890938, 0.009983398020267487, 0.011888500303030014, 0.0010097380727529526, 0.0002665521460585296, 6.889200449222699e-05, 0.00045605850755237043, 0.016255822032690048, 0.18820303678512573, 0.0025607829447835684, 0.0010256258537992835, 0.0012142137857154012, 0.0905708447098732, 0.2220073789358139, 0.24546314775943756, 0.0022201782558113337, 0.18808981776237488], [0.014399190433323383, 0.010208037681877613, 0.013844252564013004, 0.0006443368620239198, 9.486025373917073e-05, 3.585176818887703e-05, 0.0002541632275097072, 0.013982491567730904, 0.21761368215084076, 0.002050001872703433, 0.00045076539390720427, 0.0005245659849606454, 0.03005126491189003, 0.3267979025840759, 0.15003377199172974, 0.001569760381244123, 0.21744513511657715], [0.09393034130334854, 0.04503176733851433, 0.040884219110012054, 0.04297155514359474, 0.009656489826738834, 0.005742409732192755, 0.006128746550530195, 0.027677081525325775, 0.16846899688243866, 0.03622182458639145, 0.07857640832662582, 0.014126379042863846, 0.07771772146224976, 0.03430793434381485, 0.08873587846755981, 0.057713620364665985, 0.17210865020751953], [0.04696759581565857, 0.008279483765363693, 0.012381640262901783, 0.0076857213862240314, 0.0036634134594351053, 0.0095828827470541, 0.0046584513038396835, 0.016844969242811203, 0.4153643548488617, 0.013680282048881054, 0.006776736583560705, 0.008982094004750252, 0.00785152055323124, 0.0042439838871359825, 0.005718466360121965, 0.01076946035027504, 0.4165489673614502]], [[0.0047764405608177185, 0.014465292915701866, 0.050096191465854645, 0.05621565878391266, 0.029116248711943626, 0.09146157652139664, 0.012836563400924206, 0.5525392293930054, 0.0017905436689034104, 0.00014533997455146164, 0.00040994182927533984, 7.546547567471862e-05, 0.00042966019827872515, 0.0004822840273845941, 0.0005600082804448903, 0.18318414688110352, 0.0014153847005218267], [0.16168992221355438, 0.10332753509283066, 0.05339629203081131, 0.039670344442129135, 0.012893757782876492, 0.004433847963809967, 0.007579755503684282, 0.039914097636938095, 0.2549296021461487, 0.027747051790356636, 0.025680754333734512, 0.005039595067501068, 0.007310409098863602, 0.005721874535083771, 0.005866417661309242, 0.006263407412916422, 0.23853540420532227], [0.017180610448122025, 0.025060182437300682, 0.011769026517868042, 0.010031694546341896, 0.004610319156199694, 0.0018299936782568693, 0.0023333444260060787, 0.03782020881772041, 0.4099421799182892, 0.01139602530747652, 0.04021399840712547, 0.004097555298358202, 0.00659250607714057, 0.009781518951058388, 0.004275632556527853, 0.005514323245733976, 0.39755094051361084], [0.24205714464187622, 0.07515685260295868, 0.03261974826455116, 0.04049297422170639, 0.005498139653354883, 0.003589578904211521, 0.0038170493207871914, 0.02172235958278179, 0.2570441663265228, 0.010600860230624676, 0.03823235630989075, 0.002528026234358549, 0.002313795732334256, 0.006031970959156752, 0.004720599856227636, 0.011787116527557373, 0.24178721010684967], [0.08660157769918442, 0.0267828069627285, 0.015222783200442791, 0.006579977925866842, 0.012355274520814419, 0.0026335930451750755, 0.007058777380734682, 0.013183685019612312, 0.38458919525146484, 0.009724101983010769, 0.026512259617447853, 0.004221614450216293, 0.00862379465252161, 0.005914922337979078, 0.0035414511803537607, 0.004453083034604788, 0.38200119137763977], [0.0565742589533329, 0.022741135209798813, 0.01431846059858799, 0.006974519230425358, 0.01511232927441597, 0.013416020199656487, 0.01251869648694992, 0.04558227211236954, 0.3821878433227539, 0.011998691596090794, 0.00927774142473936, 0.0034956405870616436, 0.009231055155396461, 0.015898576006293297, 0.008460788987576962, 0.0031572398729622364, 0.36905476450920105], [0.145956888794899, 0.024433912709355354, 0.01110045239329338, 0.005589690059423447, 0.00852137804031372, 0.003935094457119703, 0.010604383423924446, 0.028988389298319817, 0.35665518045425415, 0.008224984630942345, 0.010671083815395832, 0.0015613113064318895, 0.015236658044159412, 0.011912493035197258, 0.007133821025490761, 0.010544104501605034, 0.33893024921417236], [0.20003503561019897, 0.03513435274362564, 0.01350048091262579, 0.01155111938714981, 0.005778894294053316, 0.006176818162202835, 0.007779107894748449, 0.07323987036943436, 0.3146964907646179, 0.004583782982081175, 0.01674829237163067, 0.00132132472936064, 0.0052017453126609325, 0.0061356485821306705, 0.003765933448448777, 0.006274424958974123, 0.2880767285823822], [0.01134582795202732, 0.0027886468451470137, 0.004393760114908218, 0.0012013252126052976, 0.0007892410503700376, 0.0006909978692419827, 0.00010258705879095942, 0.01349521055817604, 0.46758270263671875, 0.00317165139131248, 0.003815830685198307, 0.0014670805539935827, 0.0012084972113370895, 0.0014251519460231066, 0.002050597919151187, 0.0063584051094949245, 0.47811266779899597], [0.10397167503833771, 0.01670692302286625, 0.0042348396964371204, 0.002936998615041375, 0.0022281575947999954, 0.001219852943904698, 0.0021744510158896446, 0.02554144524037838, 0.30206283926963806, 0.08706522732973099, 0.005857251584529877, 0.007412291131913662, 0.06019121780991554, 0.03752140700817108, 0.0341554693877697, 0.00837808009237051, 0.2983419597148895], [0.11106002330780029, 0.05798957869410515, 0.009175832383334637, 0.006006509065628052, 0.0009313564514741302, 0.000524171395227313, 0.000814763130620122, 0.01001639012247324, 0.283229798078537, 0.03666605427861214, 0.06804057955741882, 0.00826227106153965, 0.0231171865016222, 0.020987797528505325, 0.024092931300401688, 0.054810263216495514, 0.2842743992805481], [0.21004676818847656, 0.0076301442459225655, 0.0025925468653440475, 0.0025854678824543953, 0.007142297923564911, 0.0010936055332422256, 0.003085079835727811, 0.007417768705636263, 0.22301018238067627, 0.09762229025363922, 0.01705210469663143, 0.016025260090827942, 0.07783763855695724, 0.06277673691511154, 0.028893250972032547, 0.011506946757435799, 0.22368192672729492], [0.16493965685367584, 0.016754286363720894, 0.010389899834990501, 0.005919300951063633, 0.004618823062628508, 0.0022923992946743965, 0.004112088121473789, 0.014372020028531551, 0.3123747706413269, 0.015304689295589924, 0.045718900859355927, 0.008876322768628597, 0.01618959754705429, 0.013929045759141445, 0.010676085948944092, 0.031918950378894806, 0.3216131329536438], [0.17038936913013458, 0.010884520597755909, 0.015259306877851486, 0.013368110172450542, 0.007837566547095776, 0.0039718723855912685, 0.010968479327857494, 0.010812520980834961, 0.20886962115764618, 0.027151932939887047, 0.11788447201251984, 0.01176005881279707, 0.03727806359529495, 0.04098964482545853, 0.04142532870173454, 0.05369703471660614, 0.21745195984840393], [0.13964858651161194, 0.006773388013243675, 0.0038053616881370544, 0.006036474369466305, 0.004589551594108343, 0.001276884926483035, 0.0057591600343585014, 0.01186785101890564, 0.29027774930000305, 0.014422743581235409, 0.0760827511548996, 0.01532750390470028, 0.03502415493130684, 0.0332510881125927, 0.021763911470770836, 0.031127475202083588, 0.3029654622077942], [0.2634395360946655, 0.01273544691503048, 0.005775334779173136, 0.013247941620647907, 0.0012775955256074667, 0.000984705751761794, 0.001921196817420423, 0.0161697156727314, 0.24089935421943665, 0.010158421471714973, 0.04824785143136978, 0.006508584134280682, 0.020357416942715645, 0.02361544407904148, 0.01762244664132595, 0.07775110751390457, 0.23928780853748322], [0.011516982689499855, 0.0026077942457050085, 0.003780677216127515, 0.0010428187670186162, 0.0006774596986360848, 0.0005879882955923676, 9.023277380038053e-05, 0.011555921286344528, 0.4670446217060089, 0.003327441867440939, 0.0041311620734632015, 0.0015518590807914734, 0.001283178455196321, 0.0014886875869706273, 0.0021921079605817795, 0.006300783716142178, 0.4808203876018524]], [[0.1623072475194931, 0.0012633251026272774, 6.962366751395166e-05, 0.00026393134612590075, 0.00012457440607249737, 0.0002578133135102689, 0.00023851668811403215, 0.013526447117328644, 0.25617942214012146, 0.139570415019989, 0.048960089683532715, 0.010567664168775082, 0.029556963592767715, 0.0061595244333148, 0.02951035648584366, 0.03424634039402008, 0.26719775795936584], [0.3390536904335022, 0.0889921486377716, 0.0001930597791215405, 7.445942901540548e-05, 9.19035210245056e-06, 1.4767938409931958e-05, 1.3521007531380747e-05, 0.014010481536388397, 0.16752415895462036, 0.0010525814723223448, 0.21573597192764282, 5.22137779626064e-05, 0.0007142201066017151, 0.00036420393735170364, 0.0010480753844603896, 0.0008295660954900086, 0.1703176498413086], [0.022874783724546432, 5.438602966023609e-05, 0.0037000118754804134, 7.93799881648738e-06, 3.052967940675444e-07, 1.4427190535570844e-06, 6.431093879655236e-07, 0.0016408545197919011, 0.3248033821582794, 0.07067390531301498, 0.17147256433963776, 0.00010828213999047875, 0.0022368491627275944, 0.007475680205971003, 0.01340938825160265, 0.015593297779560089, 0.36594629287719727], [0.07694058865308762, 0.0005037760711275041, 1.0563108844507951e-05, 0.21397846937179565, 0.0007803369080647826, 0.00026854363386519253, 0.0028669836465269327, 0.007937896996736526, 0.22375938296318054, 0.015676237642765045, 0.026943713426589966, 0.023994797840714455, 0.009724375791847706, 0.0024407189339399338, 0.003673345549032092, 0.14758728444576263, 0.24291294813156128], [0.0968499556183815, 4.014170917798765e-05, 1.4629287079515052e-06, 0.0002983074518851936, 0.10172491520643234, 0.0011016654316335917, 0.0001373549021081999, 0.002587493509054184, 0.3251079022884369, 0.004826262127608061, 0.0038076189812272787, 0.03343833610415459, 0.07753121852874756, 0.0012479076394811273, 0.0014325695810839534, 0.0008384762331843376, 0.34902843832969666], [0.058163005858659744, 8.544711818103679e-06, 1.0932297982435557e-06, 7.041184289846569e-05, 0.00019960934878326952, 0.05167846381664276, 2.9497832656488754e-05, 0.0013207800220698118, 0.338161438703537, 0.08370334655046463, 0.0014820311916992068, 0.018722429871559143, 0.07246594876050949, 0.0005756586324423552, 0.001453503267839551, 0.00210462580434978, 0.3698594570159912], [0.07716254144906998, 4.816689761355519e-05, 8.286838237836491e-07, 0.0006725772982463241, 7.168556476244703e-05, 9.905304614221677e-05, 0.12262681126594543, 0.004233615472912788, 0.31639158725738525, 0.03923267871141434, 0.003790271934121847, 0.06171872466802597, 0.021258851513266563, 0.0006978320889174938, 0.0019097381737083197, 0.012133904732763767, 0.3379511833190918], [0.1980915069580078, 0.0031299081165343523, 0.0031548039987683296, 0.001146852970123291, 0.004612255375832319, 0.005859014578163624, 0.001204004161991179, 0.053975775837898254, 0.2188843935728073, 0.13828830420970917, 0.04127419367432594, 0.0035133615601807833, 0.02101023495197296, 0.006222013849765062, 0.03766386955976486, 0.04638373479247093, 0.21558576822280884], [0.2045547366142273, 0.017288926988840103, 0.005911713931709528, 0.004890249576419592, 0.0024099410511553288, 0.0055905357003211975, 0.004014029633253813, 0.06379641592502594, 0.239961639046669, 0.07319413870573044, 0.02846449799835682, 0.009935220703482628, 0.020917033776640892, 0.010961675085127354, 0.026058079674839973, 0.041317325085401535, 0.24073384702205658], [0.3412293493747711, 0.0425233319401741, 0.02530532144010067, 0.010399009101092815, 0.000824531598482281, 0.015127566643059254, 0.008493355475366116, 0.15153510868549347, 0.003197578014805913, 0.3981427848339081, 0.0001430990669177845, 1.0313862730981782e-05, 1.5928937500575557e-05, 2.43582599068759e-06, 1.9739929484785534e-05, 0.00017232833488378674, 0.002858119085431099], [0.08824986964464188, 0.6997199654579163, 0.011842271313071251, 0.0011897149961441755, 2.6869691282627173e-05, 9.908813080983236e-05, 7.700332935201004e-05, 0.010119310580193996, 0.0006344643770717084, 4.224324129609158e-06, 0.1874210089445114, 6.41541078039154e-08, 3.8901990251360985e-07, 1.5369962511613267e-06, 2.8495185233623488e-06, 2.452236003591679e-05, 0.0005868630832992494], [0.3592156767845154, 0.003131461562588811, 0.00036553211975842714, 0.006802729796618223, 0.011866609565913677, 0.017082614824175835, 0.007123382296413183, 0.019259361550211906, 0.003832812188193202, 1.1280466424068436e-05, 2.5483777790213935e-06, 0.5673357844352722, 0.0001800861646188423, 2.9578353860415518e-05, 2.65734543063445e-05, 2.604628389235586e-05, 0.0037079621106386185], [0.5955706238746643, 0.031002193689346313, 0.0059892116114497185, 0.0078062317334115505, 0.015972916036844254, 0.13028669357299805, 0.008188439533114433, 0.1265796273946762, 0.004255733918398619, 4.628387978300452e-05, 4.282952068024315e-05, 0.000389767752494663, 0.06887504458427429, 0.000504101684782654, 0.00041015748865902424, 6.764943100279197e-05, 0.004012505989521742], [0.2370082139968872, 0.013091888278722763, 0.014713992364704609, 0.0027313160244375467, 0.00020957450033165514, 0.0007991665042936802, 0.000574834703002125, 0.1142205223441124, 0.003886783728376031, 4.559553417493589e-06, 5.656806752085686e-05, 1.345186319667846e-05, 0.00010998273501172662, 0.557847261428833, 0.050550296902656555, 0.0006638870690949261, 0.0035178351681679487], [0.09647241979837418, 0.007483694702386856, 0.009100493043661118, 0.0021675468888133764, 5.778981721960008e-05, 0.0003691861347761005, 0.00038284496986307204, 0.06353677809238434, 0.0017389238346368074, 7.33960132492939e-06, 2.791397855617106e-05, 4.250570782460272e-06, 2.4608452804386616e-05, 0.033816851675510406, 0.7830237746238708, 0.0002724375226534903, 0.001513192430138588], [0.26882848143577576, 0.023450184613466263, 0.005285943858325481, 0.12752436101436615, 0.0004531803715508431, 0.0017976476810872555, 0.0029235482215881348, 0.10919898003339767, 0.008442096412181854, 5.5021519074216485e-05, 0.00016640385729260743, 1.107062962546479e-05, 1.499476820754353e-05, 8.318276377394795e-05, 0.00012007253826595843, 0.4437243938446045, 0.007920338772237301], [0.22886542975902557, 0.023172790184617043, 0.008197464980185032, 0.006507922429591417, 0.0031450276728719473, 0.007757019717246294, 0.005424468778073788, 0.07678276300430298, 0.22266785800457, 0.065454863011837, 0.027140682563185692, 0.009864493273198605, 0.019179660826921463, 0.010259775444865227, 0.022666333243250847, 0.040682610124349594, 0.22223085165023804]], [[0.09246888011693954, 0.06194363906979561, 0.11018208414316177, 0.0610809363424778, 0.20336997509002686, 0.10996213555335999, 0.01868795044720173, 0.04144829511642456, 0.05479266121983528, 0.10289625823497772, 0.018722767010331154, 0.0013742772862315178, 0.01276630163192749, 0.004419051576405764, 0.004897411447018385, 0.04978408291935921, 0.051203250885009766], [0.08506936579942703, 0.049196187406778336, 0.12829461693763733, 0.04550391063094139, 0.14054259657859802, 0.0526413656771183, 0.029778851196169853, 0.045694414526224136, 0.05757182836532593, 0.11799205839633942, 0.12959042191505432, 0.00145761389285326, 0.004579771310091019, 0.0026518211234360933, 0.0022720787674188614, 0.052544161677360535, 0.05461887642741203], [0.09991312772035599, 0.02390151284635067, 0.17408640682697296, 0.014207236468791962, 0.011501027271151543, 0.03187821805477142, 0.012340192683041096, 0.03705303743481636, 0.21625526249408722, 0.03588656708598137, 0.07371551543474197, 0.004669873043894768, 0.011105416342616081, 0.009820433333516121, 0.007865686900913715, 0.022701747715473175, 0.21309876441955566], [0.08387314528226852, 0.011907560750842094, 0.0862431600689888, 0.0826898068189621, 0.11915934085845947, 0.04959939047694206, 0.013076802715659142, 0.01409516204148531, 0.047607846558094025, 0.0564408004283905, 0.01073156762868166, 0.0014565858291462064, 0.004775232635438442, 0.007413520477712154, 0.006316609680652618, 0.3586348295211792, 0.0459785982966423], [0.0606183297932148, 0.013322938233613968, 0.10909030586481094, 0.014323634095489979, 0.11583612114191055, 0.04240940883755684, 0.01285891979932785, 0.06441843509674072, 0.2113136649131775, 0.10709409415721893, 0.008821564726531506, 0.0008644995978102088, 0.0015205212403088808, 0.0006168255931697786, 0.0008936897502280772, 0.029101520776748657, 0.20689548552036285], [0.0518786758184433, 0.012471107766032219, 0.1649257242679596, 0.006757655646651983, 0.036428455263376236, 0.015883615240454674, 0.008681015111505985, 0.023485753685235977, 0.28365588188171387, 0.09019187092781067, 0.009715721011161804, 0.0006356050143949687, 0.0018064918695017695, 0.002422560937702656, 0.0015673176385462284, 0.013480921275913715, 0.27601158618927], [0.016165167093276978, 0.011963787488639355, 0.09751909971237183, 0.0057828170247375965, 0.021685222163796425, 0.0210827998816967, 0.005414087790995836, 0.01337400171905756, 0.35972151160240173, 0.06218336895108223, 0.020896082744002342, 0.002786192111670971, 0.0016405622009187937, 0.001782930688932538, 0.002505082171410322, 0.010956077836453915, 0.3445413410663605], [0.08164932578802109, 0.03990740329027176, 0.08788231760263443, 0.05205972492694855, 0.16068410873413086, 0.05053249001502991, 0.009451997466385365, 0.09337428212165833, 0.09370559453964233, 0.15410488843917847, 0.02712096832692623, 0.001029302948154509, 0.005088322330266237, 0.002205743221566081, 0.0021048653870821, 0.05023520812392235, 0.08886346966028214], [0.004474562592804432, 0.0011820620857179165, 0.007393202744424343, 0.001520694000646472, 0.001425054739229381, 0.0027973284013569355, 0.0004933666787110269, 0.010234818793833256, 0.47769516706466675, 0.002372149610891938, 0.001906862948089838, 0.0007091793813742697, 0.0006218882626853883, 0.0008513749344274402, 0.0007196696242317557, 0.0016267203027382493, 0.48397573828697205], [0.10300230979919434, 0.012551168911159039, 0.03135497868061066, 0.013058312237262726, 0.08720850199460983, 0.03815891966223717, 0.004374713636934757, 0.015692712739109993, 0.07346475124359131, 0.44246822595596313, 0.02071460522711277, 0.0010239272378385067, 0.008562631905078888, 0.01139331515878439, 0.014961163513362408, 0.04564831033349037, 0.07636153697967529], [0.1521003097295761, 0.020120013505220413, 0.08223660290241241, 0.0221259742975235, 0.058031730353832245, 0.03446701169013977, 0.013106283731758595, 0.017250314354896545, 0.059794191271066666, 0.21883663535118103, 0.13909012079238892, 0.003814751747995615, 0.006077473517507315, 0.012380351312458515, 0.00395074812695384, 0.09228211641311646, 0.06433528661727905], [0.023298460990190506, 0.007727380841970444, 0.059849195182323456, 0.003751971060410142, 0.007221390958875418, 0.014949124306440353, 0.005415600258857012, 0.005057912785559893, 0.3309497535228729, 0.1234544888138771, 0.023582691326737404, 0.003017864190042019, 0.0017162382137030363, 0.009371913969516754, 0.016971569508314133, 0.02475302293896675, 0.33891159296035767], [0.01758722774684429, 0.013618450611829758, 0.07672133296728134, 0.000871562457177788, 0.0018003752920776606, 0.007232997566461563, 0.004678796511143446, 0.003702498273923993, 0.39411067962646484, 0.06546493619680405, 0.007070925552397966, 0.003873503766953945, 0.005213557276874781, 0.0038225280586630106, 0.006586284842342138, 0.001729118637740612, 0.3859153389930725], [0.050994254648685455, 0.039802730083465576, 0.12303764373064041, 0.014415951445698738, 0.014315569773316383, 0.03778175264596939, 0.019377561286091805, 0.009150020778179169, 0.254240483045578, 0.07567020505666733, 0.023418530821800232, 0.008936692960560322, 0.01541205495595932, 0.01106566283851862, 0.031168535351753235, 0.029420187696814537, 0.24179214239120483], [0.031442221254110336, 0.01501182559877634, 0.03548745810985565, 0.009461838752031326, 0.004510349128395319, 0.012757851742208004, 0.010247272439301014, 0.010063671506941319, 0.3640801012516022, 0.03410377725958824, 0.01032322645187378, 0.008739592507481575, 0.018789246678352356, 0.020711369812488556, 0.03466292843222618, 0.01791529357433319, 0.361691951751709], [0.07557731866836548, 0.015311889350414276, 0.01394333690404892, 0.04659917578101158, 0.07440418004989624, 0.03132397308945656, 0.014012784697115421, 0.012508862651884556, 0.046278029680252075, 0.4481610655784607, 0.024148615077137947, 0.0030854649376124144, 0.008612181060016155, 0.023680653423070908, 0.026031577959656715, 0.08909101039171219, 0.047229815274477005], [0.004537979140877724, 0.0010722988517954946, 0.006664913147687912, 0.0013428947422653437, 0.0012812219792976975, 0.002524411305785179, 0.0004473469452932477, 0.009245374239981174, 0.4765443205833435, 0.002610776573419571, 0.002038220874965191, 0.0007411545375362039, 0.0006175400922074914, 0.0008927881135605276, 0.0007382421754300594, 0.0017119499389082193, 0.4869885742664337]], [[0.017373783513903618, 0.010760200209915638, 0.004052707459777594, 0.002160601783543825, 0.004703983198851347, 0.000394698727177456, 0.0004772089596372098, 0.008218641392886639, 0.08138436079025269, 0.07528041303157806, 0.5505829453468323, 0.007514370139688253, 0.0081545514985919, 0.012097654864192009, 0.06066875904798508, 0.06331667304039001, 0.09285833686590195], [0.011449586600065231, 0.006356136407703161, 0.8754265904426575, 0.008639363572001457, 0.003794182790443301, 0.004211607854813337, 0.0020771094132214785, 0.007402998860925436, 0.028407972306013107, 0.0015781077090650797, 0.01243663765490055, 0.000761339208111167, 0.0011568123009055853, 0.0005532116629183292, 0.007559823337942362, 0.001159479608759284, 0.027029061689972878], [0.03195991739630699, 0.2568446695804596, 0.12623031437397003, 0.008409995585680008, 0.004986082203686237, 0.007851914502680302, 0.004397053271532059, 0.04552983492612839, 0.21597664058208466, 0.000780573463998735, 0.017395876348018646, 0.005138861481100321, 0.002892897929996252, 0.007520338054746389, 0.024654734879732132, 0.02250443957746029, 0.21692578494548798], [0.04044754430651665, 0.015792282298207283, 0.0023268135264515877, 0.00258962856605649, 0.04314747080206871, 0.2793048620223999, 0.30927082896232605, 0.061317089945077896, 0.11304378509521484, 0.0016480220947414637, 0.0016632579499855638, 0.005961955059319735, 0.0024919621646404266, 0.0017828393029049039, 0.004487823229283094, 0.00265551102347672, 0.11206835508346558], [0.01992252841591835, 0.015503552742302418, 0.010178887285292149, 0.037280816584825516, 0.0024466016329824924, 0.6000202894210815, 0.1180553212761879, 0.04667108133435249, 0.06691066920757294, 0.004596197512000799, 0.0009887930937111378, 0.007241436745971441, 0.00015203337534330785, 0.00032288688817061484, 0.0035447953268885612, 0.0008390126167796552, 0.0653250515460968], [0.03467075899243355, 0.06156986579298973, 0.04821975156664848, 0.1019117683172226, 0.16641081869602203, 0.0029154496733099222, 0.3086279034614563, 0.04037686064839363, 0.1068916767835617, 0.004694036673754454, 0.006833398714661598, 0.0009412026265636086, 0.005467477720230818, 0.00034866968053393066, 0.003190305782482028, 0.004664421547204256, 0.10226564854383469], [0.0012558179441839457, 6.563087663380429e-05, 4.949299545842223e-05, 0.0015380426775664091, 0.00023054353368934244, 0.9875051975250244, 0.0004441349592525512, 0.0025152326561510563, 0.003047464182600379, 0.0002783294767141342, 6.7850196501240134e-06, 5.451321339933202e-05, 1.8367582015343942e-06, 3.508809459162876e-05, 0.00010729442874435335, 2.2561776859220117e-05, 0.002842082642018795], [0.053099703043699265, 0.0543893501162529, 0.03896797075867653, 0.06328529864549637, 0.060940925031900406, 0.016793664544820786, 0.042788613587617874, 0.06915182620286942, 0.21027907729148865, 0.0890103131532669, 0.07785212248563766, 0.005868659820407629, 0.003588279942050576, 0.004618037957698107, 0.0057329339906573296, 0.011873433366417885, 0.19175979495048523], [0.06063633784651756, 0.06326667219400406, 0.034328192472457886, 0.022750509902834892, 0.010062981396913528, 0.0041212965734303, 0.01725657843053341, 0.0666080117225647, 0.2555081844329834, 0.04517829790711403, 0.05627714470028877, 0.017643898725509644, 0.015165286138653755, 0.011751209385693073, 0.020329898223280907, 0.04869578778743744, 0.2504197061061859], [0.042590171098709106, 0.007069586776196957, 0.0012985594803467393, 0.014135523699223995, 0.00020970412879250944, 0.0025508131366223097, 0.0003640716022346169, 0.02199370414018631, 0.13977669179439545, 0.007103921379894018, 0.2491903156042099, 0.008471415378153324, 0.013476744294166565, 0.015292834490537643, 0.24435527622699738, 0.08526758849620819, 0.14685308933258057], [0.025622189044952393, 0.005079266615211964, 0.0159971471875906, 0.0022866185754537582, 0.0003106805379502475, 0.0007034053560346365, 0.0006128181703388691, 0.015516459941864014, 0.0847368910908699, 0.6358482241630554, 0.04185083135962486, 0.0064671714790165424, 0.007325771264731884, 0.012678802944719791, 0.021403003484010696, 0.03589853271842003, 0.08766209334135056], [0.01034579984843731, 0.0010164995910599828, 0.0007042950601316988, 0.0005764112574979663, 0.0001418629544787109, 7.555496267741546e-05, 6.739431410096586e-05, 0.0010716611286625266, 0.011676725931465626, 0.002192141953855753, 0.002111768117174506, 0.00011826671834569424, 0.9365773797035217, 0.004679031670093536, 0.014322083443403244, 0.0025440813042223454, 0.011778962798416615], [0.00584240211173892, 0.0006241857772693038, 0.0002169349609175697, 0.0004340888699516654, 9.15642740437761e-05, 0.00011733853898476809, 8.395465556532145e-05, 0.0064913625828921795, 0.03131890669465065, 0.00014143298903945833, 0.0012957515427842736, 0.9128997921943665, 0.00019785920449066907, 0.0010000524343922734, 0.006657343823462725, 0.001121798879466951, 0.031465109437704086], [0.011719241738319397, 0.001982304034754634, 0.0029356570448726416, 0.00029034720500931144, 0.0014887249562889338, 8.823991083772853e-05, 0.0013051838614046574, 0.0023637183476239443, 0.023899512365460396, 7.243487925734371e-05, 0.0020801685750484467, 0.002515074796974659, 0.013138941489160061, 0.013515998609364033, 0.8798472285270691, 0.017791997641324997, 0.024965189397335052], [0.014468244276940823, 0.002123360289260745, 0.0009089037775993347, 0.00027280973154120147, 0.0009915506234392524, 3.583553188946098e-05, 0.0006245332187972963, 0.003266494255512953, 0.03394186869263649, 0.0014993351651355624, 0.0031883211340755224, 0.005818007048219442, 0.009238418191671371, 0.8628991842269897, 0.0052667162381112576, 0.019341936334967613, 0.03611455112695694], [0.02876167744398117, 0.004317948129028082, 0.0021643307991325855, 0.002739173825830221, 0.0013453061692416668, 0.013219424523413181, 0.0009473168174736202, 0.008477412164211273, 0.05804387480020523, 0.027571791782975197, 0.058400530368089676, 0.059598151594400406, 0.030119767412543297, 0.1764165610074997, 0.40899723768234253, 0.054463885724544525, 0.06441550701856613], [0.06170149892568588, 0.05879565700888634, 0.030704542994499207, 0.021936966106295586, 0.010049635544419289, 0.004163258709013462, 0.01647026464343071, 0.06377705186605453, 0.2525229752063751, 0.050131164491176605, 0.05698935687541962, 0.017769869416952133, 0.015925999730825424, 0.012618206441402435, 0.02194317989051342, 0.0541968047618866, 0.2503035366535187]], [[0.005758460145443678, 0.0021250469144433737, 0.004918077029287815, 0.0015783997951075435, 0.0031314161606132984, 0.0012560640461742878, 0.0003333171480335295, 0.005877758841961622, 0.42379939556121826, 0.03887219354510307, 0.027776392176747322, 0.000757195521146059, 0.006674075033515692, 0.005416585598140955, 0.004057684447616339, 0.00699286675080657, 0.46067506074905396], [0.017574958503246307, 0.06447048485279083, 0.051008909940719604, 0.0031163066159933805, 0.001023966120555997, 0.004448094870895147, 0.001327427802607417, 0.01151659432798624, 0.4472600817680359, 0.000724693585652858, 0.002181157236918807, 3.543791171978228e-05, 0.0003073539410252124, 0.00014391100557986647, 0.00037076984881423414, 0.0008658475708216429, 0.3936239778995514], [0.002968674525618553, 0.005619123578071594, 0.028435001149773598, 0.0002892887860070914, 3.1841998861636966e-05, 0.00029665420879609883, 6.943188782315701e-05, 0.0044031897559762, 0.5065798759460449, 0.0004636448866222054, 0.0008735298179090023, 1.942684866662603e-05, 5.949027763563208e-05, 0.00013078321353532374, 0.0006501429015770555, 0.00033773420727811754, 0.4487721621990204], [0.01788296550512314, 0.24235442280769348, 0.11464615911245346, 0.024721350520849228, 0.004135359078645706, 0.005985644645988941, 0.011329052969813347, 0.015966244041919708, 0.28977298736572266, 0.009694698266685009, 0.00605228915810585, 0.002183745615184307, 0.00193732138723135, 0.000617838348262012, 0.0010090431896969676, 0.0023053723853081465, 0.24940550327301025], [0.004345357418060303, 0.053547076880931854, 0.02130398340523243, 0.007296844385564327, 0.011325634084641933, 0.003009550739079714, 0.00919779110699892, 0.008209788240492344, 0.45820072293281555, 0.00025447012740187347, 0.001014708774164319, 0.0012865019962191582, 0.0014641362940892577, 0.0001525093975942582, 0.0003483017208054662, 0.0002487985184416175, 0.41879361867904663], [0.006185310892760754, 0.052064698189496994, 0.05677692964673042, 0.006097305100411177, 0.007340249139815569, 0.023725558072328568, 0.011273540556430817, 0.008761817589402199, 0.4159131348133087, 0.0032796317245811224, 0.0023197925183922052, 0.001466546906158328, 0.001557107549160719, 0.0006841841386631131, 0.0010070785647258162, 0.0012539854506030679, 0.4002930521965027], [0.009984118863940239, 0.2552521824836731, 0.08297386020421982, 0.01195122767239809, 0.004918457940220833, 0.010436220094561577, 0.04108359292149544, 0.0127377575263381, 0.29193446040153503, 0.0002466780715622008, 0.0017972913337871432, 0.0028018862940371037, 0.0010170921450480819, 0.0002896444930229336, 0.0003109632816631347, 0.0011466684518381953, 0.27111801505088806], [0.016285758465528488, 0.12385275214910507, 0.11852085590362549, 0.2824400067329407, 0.16928309202194214, 0.07208912819623947, 0.03803791105747223, 0.0434800423681736, 0.04765653610229492, 0.02233661711215973, 0.008134892210364342, 0.0026699446607381105, 0.002235323190689087, 0.0026772483251988888, 0.001221737009473145, 0.005273064598441124, 0.043805088847875595], [0.003703151596710086, 0.0030523992609232664, 0.007243176456540823, 0.0023688124492764473, 0.004038053099066019, 0.0021750314626842737, 0.0012231331784278154, 0.00723686907440424, 0.47688260674476624, 0.0032990286126732826, 0.00206870399415493, 0.0008751602726988494, 0.0030658964533358812, 0.0014470196329057217, 0.002316804137080908, 0.0015734852058812976, 0.4774307310581207], [0.028774790465831757, 0.002642599167302251, 0.002106707077473402, 0.00568531034514308, 0.004500947892665863, 0.0288652665913105, 0.005638797301799059, 0.014731933362782001, 0.3937789797782898, 0.02373965084552765, 0.01259586215019226, 0.002859694417566061, 0.006989844609051943, 0.005218239035457373, 0.00419235322624445, 0.010987569577991962, 0.4466913938522339], [0.05040007829666138, 0.40499311685562134, 0.1488456279039383, 0.00640207901597023, 0.0005312006105668843, 0.0021755725611001253, 0.0006728880689479411, 0.005858015734702349, 0.0635240226984024, 0.0029547137673944235, 0.23792485892772675, 0.0003149133117403835, 0.0002752009895630181, 0.0005135594983585179, 0.0002646218636073172, 0.0051895552314817905, 0.06916012614965439], [0.008348342031240463, 0.004867127165198326, 0.0013254539808258414, 0.0005954488879069686, 0.0015938024735078216, 0.0030688317492604256, 0.008740752004086971, 0.008971484377980232, 0.4144304096698761, 0.0013387096114456654, 0.012678942643105984, 0.07251113653182983, 0.021529830992221832, 0.0016468254616484046, 0.0026867168489843607, 0.0015883127925917506, 0.43407773971557617], [0.01259857602417469, 0.011510941199958324, 0.006271845661103725, 0.0004519037320278585, 0.0005010212771594524, 0.0017907355213537812, 0.0021989252418279648, 0.01928710751235485, 0.4178101420402527, 0.0008950172923505306, 0.003501642495393753, 0.008178569376468658, 0.07352893799543381, 0.0016593364998698235, 0.0033335292246192694, 0.0014292368432506919, 0.4350525140762329], [0.026836425065994263, 0.01943366229534149, 0.03158280998468399, 0.006877897307276726, 0.0013161987299099565, 0.005196307320147753, 0.0027716970071196556, 0.027549246326088905, 0.22064585983753204, 0.09490353614091873, 0.11428601294755936, 0.018736863508820534, 0.022037819027900696, 0.06502929329872131, 0.10713031888008118, 0.007348590064793825, 0.22831745445728302], [0.023632125928997993, 0.007872000336647034, 0.017207829281687737, 0.0025761686265468597, 0.0006747061852365732, 0.0023692105896770954, 0.0013521189102903008, 0.02210311032831669, 0.3481515049934387, 0.028256116434931755, 0.0492672324180603, 0.01164205651730299, 0.026400674134492874, 0.030927538871765137, 0.0554853193461895, 0.008229000493884087, 0.3638533353805542], [0.03483754023909569, 0.05955659598112106, 0.03354164958000183, 0.0251525416970253, 0.004316721111536026, 0.005708860699087381, 0.002586419228464365, 0.02293725684285164, 0.03824807330965996, 0.2152269333600998, 0.37943756580352783, 0.03995276242494583, 0.028697805479168892, 0.017712391912937164, 0.012051386758685112, 0.041439756751060486, 0.03859568387269974], [0.00356517662294209, 0.0029283235780894756, 0.006426373030990362, 0.002057009842246771, 0.0034274396020919085, 0.001882188837043941, 0.001106921350583434, 0.006688086315989494, 0.47607871890068054, 0.003981856629252434, 0.0023538446985185146, 0.0009857633849605918, 0.0034294750075787306, 0.0015889498172327876, 0.0025830105878412724, 0.001771243056282401, 0.47914549708366394]], [[0.057300034910440445, 0.00101943698246032, 0.0021415636874735355, 0.0008546136086806655, 0.0054085771553218365, 0.002029214520007372, 0.0008198036812245846, 0.009260308928787708, 0.03953936696052551, 0.37982413172721863, 0.11117511987686157, 0.023168686777353287, 0.06998268514871597, 0.007911001332104206, 0.02765064686536789, 0.2104039192199707, 0.05151091516017914], [0.050369054079055786, 0.04385271668434143, 0.03822799772024155, 0.02151563949882984, 0.018855562433600426, 0.01827183924615383, 0.006778425071388483, 0.22453130781650543, 0.1340239942073822, 0.07135462760925293, 0.12506183981895447, 0.006461805198341608, 0.06561027467250824, 0.006908669136464596, 0.009605640545487404, 0.02335977740585804, 0.135210782289505], [0.11721554398536682, 0.041641246527433395, 0.00972040556371212, 0.014014014042913914, 0.0024876361712813377, 0.013287719339132309, 0.0128793865442276, 0.0887947529554367, 0.27240633964538574, 0.005507349967956543, 0.0697098821401596, 0.004777554888278246, 0.018232645466923714, 0.018764374777674675, 0.03664420172572136, 0.009778556413948536, 0.26413843035697937], [0.045295413583517075, 0.027806073427200317, 0.009272068738937378, 0.03675176575779915, 0.007415296975523233, 0.006798502057790756, 0.004238978959619999, 0.2488250732421875, 0.21867583692073822, 0.03023870475590229, 0.05722988769412041, 0.00428718002513051, 0.00888246763497591, 0.004540345631539822, 0.004844400100409985, 0.07130539417266846, 0.21359269320964813], [0.035432640463113785, 0.02858577109873295, 0.00421521719545126, 0.026622828096151352, 0.01288614422082901, 0.010608547367155552, 0.006954746320843697, 0.11331315338611603, 0.3651497960090637, 0.018921684473752975, 0.008791389875113964, 0.0070966617204248905, 0.0026162010617554188, 0.0007993182516656816, 0.0005278706084936857, 0.0074110026471316814, 0.35006698966026306], [0.06639274209737778, 0.019437698647379875, 0.005019697826355696, 0.011193592101335526, 0.007175098173320293, 0.004456063732504845, 0.01689990609884262, 0.0620136484503746, 0.34760984778404236, 0.020261550322175026, 0.02027243748307228, 0.0403585322201252, 0.006405416410416365, 0.010466115549206734, 0.00706848967820406, 0.008198833093047142, 0.346770316362381], [0.04457259550690651, 0.016032623127102852, 0.016786210238933563, 0.01425451971590519, 0.05170614272356033, 0.04014769569039345, 0.02640923112630844, 0.06022537499666214, 0.33386293053627014, 0.03130337968468666, 0.008061649277806282, 0.007199801970273256, 0.018669651821255684, 0.0010074260644614697, 0.0015692927408963442, 0.00830166693776846, 0.31988975405693054], [0.05643227696418762, 0.013646628707647324, 0.0317501500248909, 0.011067698709666729, 0.014415115118026733, 0.015359370037913322, 0.005356915760785341, 0.10379167646169662, 0.2578006684780121, 0.0454564169049263, 0.04180770367383957, 0.008032647892832756, 0.026290351524949074, 0.01669144816696644, 0.017197489738464355, 0.0743250846862793, 0.26057830452919006], [0.02858106605708599, 0.0043085659854114056, 0.007958337664604187, 0.003052199026569724, 0.0018483898602426052, 0.005658274050801992, 0.001412619836628437, 0.010081819258630276, 0.44751182198524475, 0.006560749374330044, 0.004632902331650257, 0.0027243869844824076, 0.0037464250344783068, 0.010423772037029266, 0.007968236692249775, 0.005649067461490631, 0.4478813409805298], [0.01825212873518467, 0.011661571450531483, 0.0027983144391328096, 0.009320065379142761, 0.003965599928051233, 0.0022205798886716366, 0.0019291775533929467, 0.06871742010116577, 0.3039730489253998, 0.04260949417948723, 0.015275034122169018, 0.03099219501018524, 0.007589003536850214, 0.004136906936764717, 0.003975234925746918, 0.1305551528930664, 0.3420291244983673], [0.08748237788677216, 0.02557387948036194, 0.018112313002347946, 0.0049604433588683605, 0.0014782048529013991, 0.0022030407562851906, 0.0009602387435734272, 0.05315152183175087, 0.20510943233966827, 0.05159322917461395, 0.0959496796131134, 0.01279450487345457, 0.10031656175851822, 0.008924460038542747, 0.030730612576007843, 0.07733865827322006, 0.2233208864927292], [0.0498603954911232, 0.007433606311678886, 0.0016537772025913, 0.005322957877069712, 0.0039930944330990314, 0.0035380616318434477, 0.004288866184651852, 0.0305508840829134, 0.35446223616600037, 0.04660920053720474, 0.007483022287487984, 0.01469020638614893, 0.013795307837426662, 0.006084782537072897, 0.008098689839243889, 0.06909304112195969, 0.3730418384075165], [0.07243383675813675, 0.007740843575447798, 0.012108874507248402, 0.004148117266595364, 0.002742878394201398, 0.0028195148333907127, 0.0024749175645411015, 0.013945343904197216, 0.3822646141052246, 0.011517291888594627, 0.014738879166543484, 0.01524115726351738, 0.0059837885200977325, 0.006411973387002945, 0.011587921530008316, 0.02359296754002571, 0.41024717688560486], [0.07854430377483368, 0.010273326188325882, 0.012068699114024639, 0.006702507380396128, 0.0009893893729895353, 0.004420892801135778, 0.0008018749067559838, 0.03200588747859001, 0.34090402722358704, 0.040411461144685745, 0.032732728868722916, 0.009501599706709385, 0.007069308776408434, 0.001155844540335238, 0.0020612222142517567, 0.051742397248744965, 0.3686145544052124], [0.05737154930830002, 0.005662776064127684, 0.017658615484833717, 0.0023623763117939234, 0.0003382973372936249, 0.00366365653462708, 0.0006075557903386652, 0.01110900565981865, 0.40067917108535767, 0.015711462125182152, 0.011430365033447742, 0.009247093461453915, 0.009218628518283367, 0.0039481609128415585, 0.002190220169723034, 0.01950480043888092, 0.4292961359024048], [0.08930555731058121, 0.008811046369373798, 0.003925340250134468, 0.0061110337264835835, 0.0007046632235869765, 0.0012062698369845748, 0.002200786955654621, 0.04369465634226799, 0.2070087343454361, 0.052017226815223694, 0.10487690567970276, 0.01837259903550148, 0.01100108027458191, 0.041804101318120956, 0.03691233694553375, 0.13987357914447784, 0.23217403888702393], [0.028904935345053673, 0.003862805664539337, 0.0069825011305511, 0.0027303777169436216, 0.0016403237823396921, 0.005138302221894264, 0.0012722150422632694, 0.009086940437555313, 0.4471859633922577, 0.006697922945022583, 0.004753866232931614, 0.0028129389975219965, 0.0038341365288943052, 0.010505229234695435, 0.008085634559392929, 0.005789699032902718, 0.4507160782814026]]], [[[0.0012268522987142205, 0.001193615491501987, 0.0008361958898603916, 0.0006956990691833198, 0.0005406527197919786, 0.0006869614589959383, 0.0001046524994308129, 0.00037079612957313657, 0.497846394777298, 0.00019136350601911545, 0.0009103208431042731, 0.0003853342786896974, 0.0001866445818450302, 0.00035458983620628715, 0.0005960086127743125, 0.001435288693755865, 0.49243876338005066], [0.0026062126271426678, 0.05955971032381058, 0.00483003119006753, 0.005125260911881924, 0.0005440955865196884, 6.521259638248011e-05, 1.5452906154678203e-05, 0.0016047164099290967, 0.48359861969947815, 0.00040745188016444445, 0.0005516891833394766, 8.585672912886366e-05, 4.36004156654235e-05, 9.114493877859786e-06, 1.6389247321058065e-05, 0.00013914727605879307, 0.440797358751297], [0.0012028494384139776, 0.016091173514723778, 0.003556471085175872, 0.0013756597181782126, 0.001338676200248301, 6.803135329391807e-05, 2.319568011444062e-06, 9.375611989526078e-05, 0.4932926893234253, 2.1794699932797812e-05, 6.046155613148585e-05, 0.00022290619381237775, 8.975849050329998e-05, 7.32401676941663e-05, 2.691619738470763e-05, 4.034143057651818e-05, 0.4824428856372833], [0.001231819624081254, 0.026759592816233635, 0.08602309226989746, 0.012478143908083439, 0.01793690025806427, 0.006892875302582979, 0.00045659096213057637, 0.00020609903731383383, 0.4271720051765442, 6.295902949204901e-06, 0.0001687098847469315, 1.4306229786598124e-05, 0.001585383783094585, 0.0010070924181491137, 0.0005593216046690941, 1.904971395561006e-05, 0.41748276352882385], [0.001968498807400465, 0.005546071566641331, 0.05872735381126404, 0.19377446174621582, 0.025837019085884094, 0.0069153644144535065, 0.00015923671890050173, 0.0002369584544794634, 0.3460055887699127, 4.942282430420164e-06, 0.00010580255184322596, 3.394395753275603e-05, 1.1801466826000251e-05, 0.00019035862351302058, 0.0002730124397203326, 0.0008204026380553842, 0.35938921570777893], [0.0006208086269907653, 0.0017168422928079963, 0.0010606016730889678, 0.009086660109460354, 0.031358879059553146, 0.0035127843730151653, 8.70905423653312e-05, 0.00016364851035177708, 0.4641072452068329, 9.295687277699471e-07, 5.042512384534348e-06, 2.548368229327025e-06, 3.4707863960647956e-07, 8.447937943856232e-06, 1.3873927855456714e-05, 0.00017733579443302006, 0.4880768954753876], [0.00010141226812265813, 0.00017872703028842807, 0.00048087057075463235, 0.0018851286731660366, 0.0323953777551651, 0.9014703631401062, 0.0012603531358763576, 0.0006397413089871407, 0.030593007802963257, 2.1202245079621207e-06, 1.9603039618232287e-06, 1.9454557786957594e-07, 4.4716239244735334e-07, 1.3283220141602214e-06, 5.0499393182690255e-06, 2.0365290765766986e-05, 0.030963612720370293], [0.002887450158596039, 0.0005018715164624155, 0.0007899686461314559, 0.0022305496968328953, 0.00206627044826746, 0.04613981768488884, 0.41361093521118164, 0.00941880140453577, 0.2649163007736206, 3.681482849060558e-05, 0.00017398048657923937, 5.955187134532025e-06, 1.1472105143184308e-05, 1.3377554751059506e-05, 0.00038810836849734187, 0.0006162631325423717, 0.25619208812713623], [0.020558619871735573, 0.015892986208200455, 0.011825784109532833, 0.009166625328361988, 0.007707756478339434, 0.005215456243604422, 0.002697019837796688, 0.019493063911795616, 0.4218929409980774, 0.007586413994431496, 0.011317050084471703, 0.007993200793862343, 0.004722606856375933, 0.00699605792760849, 0.005569026339799166, 0.023229949176311493, 0.4181354343891144], [0.0013022085186094046, 5.9417747252155095e-05, 9.618737749406137e-06, 3.1320553262048634e-06, 9.828867177930078e-07, 6.095452135923551e-06, 5.499676262843423e-06, 0.0038343945052474737, 0.5037134289741516, 0.01935252547264099, 0.006374059244990349, 0.0004613842465914786, 6.5750164139899425e-06, 5.526042059500469e-06, 0.00011230498785153031, 0.0007515779579989612, 0.46400120854377747], [0.0014909309102222323, 0.00021644899970851839, 9.499776206212118e-05, 4.059539423906244e-05, 6.020482032909058e-06, 5.000700548407622e-05, 4.731058652396314e-06, 0.00040831719525158405, 0.06021977216005325, 0.8638006448745728, 0.00991840846836567, 0.0027865043375641108, 0.0007232613861560822, 0.00013436703011393547, 0.00023054922348819673, 0.0007160796667449176, 0.05915839597582817], [0.0002811781596392393, 0.0001679945271462202, 0.0010434634750708938, 1.0034946171799675e-05, 1.377331614094146e-06, 6.784912898183393e-07, 2.9217943620096776e-07, 8.49154093884863e-05, 0.4209435284137726, 0.010656886734068394, 0.13909605145454407, 0.010132971219718456, 0.022762980312108994, 0.0021747977007180452, 0.00034168214187957346, 9.013150702230632e-05, 0.3922111988067627], [3.402019865461625e-05, 4.9337726522935554e-05, 8.313170110341161e-05, 2.2319716663332656e-05, 5.39800566912163e-07, 4.11734895067184e-08, 3.3303881874502395e-09, 1.2204695849504787e-06, 0.06548122316598892, 0.0004900486092083156, 0.013175411149859428, 0.8559287190437317, 0.0009163409704342484, 0.0008550789207220078, 8.614702528575435e-05, 1.536821582703851e-05, 0.06286101788282394], [0.00035689142532646656, 0.00030578699079342186, 0.004799241665750742, 0.0001143141562351957, 2.7493884772411548e-05, 1.7332099560007919e-06, 5.367700239844453e-08, 2.3701875306869624e-06, 0.42885276675224304, 0.00018278085917700082, 0.007353080902248621, 0.02059979736804962, 0.08663886040449142, 0.021290861070156097, 0.01294338796287775, 0.0006382240680977702, 0.41589227318763733], [0.00035609223414212465, 0.0005162984598428011, 0.0014577305410057306, 0.00018065032782033086, 0.0002686360676307231, 1.0376428690506145e-05, 2.878275324746937e-07, 2.868041701731272e-05, 0.40768325328826904, 9.130642865784466e-05, 0.005906779319047928, 0.012902558781206608, 0.034313399344682693, 0.11630579084157944, 0.010384070686995983, 0.001335323671810329, 0.4082588851451874], [0.0006982879713177681, 4.500218346947804e-05, 0.001986839808523655, 0.00023020044318400323, 6.763750570826232e-05, 0.00026030655135400593, 0.00014494087372440845, 4.463098957785405e-05, 0.09784181416034698, 0.0001967396237887442, 0.00044995578355155885, 0.0003799397964030504, 0.005566427018493414, 0.1335822492837906, 0.6433798670768738, 0.013692405074834824, 0.10143276304006577], [0.02094348333775997, 0.016241909936070442, 0.011949323117733002, 0.009936582297086716, 0.008415109477937222, 0.0055074081756174564, 0.002825394505634904, 0.017137518152594566, 0.4179816246032715, 0.007598317228257656, 0.01184071134775877, 0.00819436740130186, 0.0051026432774960995, 0.008000517264008522, 0.0063572959043085575, 0.02648719772696495, 0.4154805541038513]], [[0.0038423731457442045, 0.0979103371500969, 0.006096473429352045, 0.009875924326479435, 0.008829496800899506, 0.00291089853271842, 0.00470890523865819, 0.21763639152050018, 0.3291061520576477, 0.0002714426664169878, 0.009124048985540867, 0.00036560409353114665, 0.0002964880259241909, 0.00016312215302605182, 0.00011988421465503052, 4.996878851670772e-05, 0.3086925745010376], [0.007899913005530834, 0.11704446375370026, 0.015460697934031487, 0.051603641360998154, 0.02448287047445774, 0.018248176202178, 0.006813539192080498, 0.04040774703025818, 0.3675488531589508, 0.002186807570978999, 0.00276686972938478, 0.0002940267149824649, 0.00015135544526856393, 9.212002623826265e-05, 5.921020056121051e-05, 0.0002555855899117887, 0.34468403458595276], [0.025731662288308144, 0.208003968000412, 0.0133800795301795, 0.033890265971422195, 0.02012753300368786, 0.02156728319823742, 0.020578458905220032, 0.07638607919216156, 0.27651548385620117, 0.007654054090380669, 0.02330482006072998, 0.00032096198992803693, 0.0017971759662032127, 0.0005989883211441338, 0.0024323780089616776, 0.0035198742989450693, 0.26419106125831604], [0.01676766946911812, 0.3595621585845947, 0.016705617308616638, 0.056803129613399506, 0.049385491758584976, 0.023534834384918213, 0.013142966665327549, 0.053659047931432724, 0.20421680808067322, 0.012541486881673336, 0.001466069370508194, 0.000197612214833498, 0.00021747058781329542, 8.428033470408991e-05, 7.821858889656141e-05, 0.0004215656954329461, 0.19121558964252472], [0.016914812847971916, 0.10681729018688202, 0.03576813265681267, 0.18344727158546448, 0.06506672501564026, 0.026374896988272667, 0.06274399161338806, 0.04797997325658798, 0.22855304181575775, 0.001385140116326511, 0.0012575380969792604, 0.0026216129772365093, 0.0004486197722144425, 0.0007807505899108946, 0.0009508355869911611, 0.001133957994170487, 0.21775534749031067], [0.025768442079424858, 0.03815072774887085, 0.03208613023161888, 0.11320128291845322, 0.09737738966941833, 0.05092741549015045, 0.11139798909425735, 0.05256582796573639, 0.23593246936798096, 0.0017827348783612251, 0.0013278929982334375, 0.0028817562852054834, 0.0018652592552825809, 0.002160343574360013, 0.002896508201956749, 0.0024851509369909763, 0.2271927297115326], [0.030600255355238914, 0.03992250934243202, 0.03523583710193634, 0.27605047821998596, 0.13545475900173187, 0.07433675974607468, 0.051648277789354324, 0.04537327215075493, 0.15507520735263824, 0.0034015460405498743, 0.0008114134543575346, 0.0004506103286985308, 0.0003584881778806448, 0.0004759130533784628, 0.0011438089422881603, 0.0016666320152580738, 0.1479942500591278], [0.011768552474677563, 0.1284898817539215, 0.05738763138651848, 0.16645966470241547, 0.15865668654441833, 0.12594562768936157, 0.03153849020600319, 0.11341845989227295, 0.10127582401037216, 0.003067975165322423, 0.0018515866249799728, 0.000811909674666822, 0.00079435232328251, 0.0003807050234172493, 0.000823809124995023, 0.0011845029657706618, 0.09614430367946625], [0.006472982931882143, 0.022074781358242035, 0.006032588891685009, 0.008875316008925438, 0.004342956934124231, 0.0038167426828294992, 0.0030285187531262636, 0.012726720422506332, 0.4365517497062683, 0.011765614151954651, 0.02310115285217762, 0.003569986904039979, 0.004852436948567629, 0.0020988862961530685, 0.004189661238342524, 0.011541095562279224, 0.43495887517929077], [0.01010880060493946, 0.00956813246011734, 0.0025345291942358017, 0.010100681334733963, 0.004937953315675259, 0.0056816148571670055, 0.0026845817919820547, 0.018983561545610428, 0.39188602566719055, 0.11719891428947449, 0.011757936328649521, 0.006067921407520771, 0.004328660201281309, 0.0011421196395531297, 0.0036594390403479338, 0.013909421861171722, 0.3854497969150543], [0.011299828998744488, 0.06264476478099823, 0.00280944025143981, 0.03150974586606026, 0.019483143463730812, 0.02926880307495594, 0.014397852122783661, 0.038409505039453506, 0.3181813359260559, 0.08464206010103226, 0.044704537838697433, 0.005826888605952263, 0.0024582785554230213, 0.0012011387152597308, 0.0038834293372929096, 0.015836486592888832, 0.3134428560733795], [0.01150188036262989, 0.0044487714767456055, 0.003086444456130266, 0.005620704032480717, 0.005225773900747299, 0.005101312417536974, 0.0033509477507323027, 0.012873990461230278, 0.05570987984538078, 0.6618878245353699, 0.04546627029776573, 0.003613860346376896, 0.012015326879918575, 0.009610079228878021, 0.022729383781552315, 0.08204647153615952, 0.055710915476083755], [0.023843204602599144, 0.007940849289298058, 0.006602409295737743, 0.018516946583986282, 0.005194849334657192, 0.018354322761297226, 0.011972201056778431, 0.020020194351673126, 0.12768268585205078, 0.36009350419044495, 0.05813515931367874, 0.02671346440911293, 0.016857435926795006, 0.023078473284840584, 0.02597385086119175, 0.12283898144960403, 0.12618137896060944], [0.017453981563448906, 0.006566982716321945, 0.006437224335968494, 0.010258943773806095, 0.007524041924625635, 0.007805170025676489, 0.003535826923325658, 0.022132975980639458, 0.0758049488067627, 0.27864304184913635, 0.07962139695882797, 0.08276437222957611, 0.09034915268421173, 0.058843646198511124, 0.04596675559878349, 0.1311248540878296, 0.075166717171669], [0.009776161052286625, 0.005764814559370279, 0.002830076962709427, 0.008658399805426598, 0.004898515529930592, 0.008362919092178345, 0.005278115626424551, 0.016466772183775902, 0.0846642255783081, 0.36173009872436523, 0.06562229990959167, 0.029381074011325836, 0.0829448252916336, 0.04596933349967003, 0.01576196774840355, 0.16803304851055145, 0.08385728299617767], [0.0147054148837924, 0.020168650895357132, 0.007537460420280695, 0.004244955722242594, 0.006553541868925095, 0.0066261375322937965, 0.0021409504115581512, 0.028843004256486893, 0.05934390798211098, 0.4644696116447449, 0.15407297015190125, 0.045852839946746826, 0.03271123021841049, 0.015708668157458305, 0.015105503611266613, 0.06326187402009964, 0.05865337327122688], [0.006397331599146128, 0.021570011973381042, 0.00579069321975112, 0.008682731539011002, 0.004288266878575087, 0.0036858643870800734, 0.002901490079239011, 0.012283897958695889, 0.4360095262527466, 0.012330247089266777, 0.02403009869158268, 0.0037268218584358692, 0.004980555735528469, 0.0021687231492251158, 0.004302582237869501, 0.012045906856656075, 0.43480512499809265]], [[0.009063911624252796, 0.0008625846239738166, 0.0033756839111447334, 0.001652573118917644, 0.009214906021952629, 0.010952332057058811, 0.0025385506451129913, 0.001659492845647037, 0.05112340301275253, 0.4380345046520233, 0.1822289228439331, 0.08894407749176025, 0.02986772544682026, 0.027813255786895752, 0.016022173687815666, 0.0747062936425209, 0.05193968489766121], [0.030323171988129616, 0.011549224145710468, 0.02178393304347992, 0.12024854123592377, 0.1289067268371582, 0.1871342957019806, 0.35925328731536865, 0.029256725683808327, 0.0321379229426384, 0.009199031628668308, 0.004667792934924364, 0.009137160144746304, 0.012683101929724216, 0.0035537932999432087, 0.0030310810543596745, 0.006271325517445803, 0.030862925574183464], [0.06644298136234283, 0.07353031635284424, 0.08068853616714478, 0.08615818619728088, 0.05244072154164314, 0.0946999117732048, 0.10104087740182877, 0.07332208007574081, 0.09360750019550323, 0.010609259828925133, 0.11760304123163223, 0.008927362971007824, 0.019986722618341446, 0.005015614442527294, 0.006804815027862787, 0.017998838797211647, 0.09112320095300674], [0.01714845560491085, 0.010454491712152958, 0.03376057371497154, 0.01652185246348381, 0.35368624329566956, 0.07130531966686249, 0.04183783009648323, 0.021007705479860306, 0.206453338265419, 0.024041080847382545, 0.0005371371516957879, 0.003641566028818488, 0.0024012846406549215, 0.0004044374800287187, 0.00027393706841394305, 0.0006514793494716287, 0.1958731710910797], [0.024712054058909416, 0.028879081830382347, 0.025591792538762093, 0.0830875039100647, 0.22685730457305908, 0.012127013877034187, 0.013243654742836952, 0.019917773082852364, 0.2849058508872986, 0.006959776859730482, 0.0003480169107206166, 0.0022449621465057135, 0.00022857473231852055, 0.0001925065735122189, 5.834653347847052e-05, 0.0008453947957605124, 0.2698003053665161], [0.017363451421260834, 0.03167405724525452, 0.058454278856515884, 0.07243829220533371, 0.06682407855987549, 0.0028190664015710354, 0.019437329843640327, 0.024486254900693893, 0.35692834854125977, 0.007929218001663685, 0.0008091423660516739, 0.0017295961733907461, 0.003142121247947216, 0.0001985627895919606, 0.00018417609680909663, 0.0004582138790283352, 0.3351239562034607], [0.03096614219248295, 0.01818840764462948, 0.018256308510899544, 0.08340602368116379, 0.46653053164482117, 0.011320777237415314, 0.012873721309006214, 0.02072528377175331, 0.15964293479919434, 0.012586020864546299, 0.0008307071402668953, 0.0037708906456828117, 0.009140275418758392, 0.00019693837384693325, 9.386949386680499e-05, 0.0002821652451530099, 0.15118898451328278], [0.021320726722478867, 0.0069495257921516895, 0.03907027840614319, 0.017465760931372643, 0.15855297446250916, 0.17425209283828735, 0.014796898700296879, 0.012508236803114414, 0.2606799304485321, 0.014482776634395123, 0.0017777791945263743, 0.015015839599072933, 0.004568885546177626, 0.0017355424351990223, 0.0022575752809643745, 0.001487387577071786, 0.25307780504226685], [0.008644532412290573, 0.0057877833023667336, 0.009599537588655949, 0.0044794511049985886, 0.006598783656954765, 0.004999629221856594, 0.003857773495838046, 0.00496251042932272, 0.45481136441230774, 0.011323085054755211, 0.00651855394244194, 0.01277847122400999, 0.006761050317436457, 0.002228126395493746, 0.002959158271551132, 0.008155886083841324, 0.4455343186855316], [0.016474297270178795, 0.0007862914353609085, 0.005609103478491306, 0.0013036939781159163, 0.013178386725485325, 0.031232384964823723, 0.003996184095740318, 0.0027088404167443514, 0.19672152400016785, 0.15460164844989777, 0.011832552962005138, 0.28343135118484497, 0.018459884449839592, 0.011896039359271526, 0.03203675523400307, 0.017319830134510994, 0.19841118156909943], [0.011102980002760887, 0.002027091570198536, 0.007352579850703478, 0.003563682083040476, 0.0034767219331115484, 0.009599216282367706, 0.006617088336497545, 0.002679733093827963, 0.05418064817786217, 0.08351188153028488, 0.020119065418839455, 0.09925579279661179, 0.05405725538730621, 0.05946948006749153, 0.07493478059768677, 0.45395129919052124, 0.054100628942251205], [0.026370501145720482, 0.00532302912324667, 0.009548664093017578, 0.016433287411928177, 0.010021233931183815, 0.001343895448371768, 0.005150559823960066, 0.018646899610757828, 0.11135309934616089, 0.32311341166496277, 0.007008376065641642, 0.02277667261660099, 0.020729457959532738, 0.06919568032026291, 0.02322600781917572, 0.2209407538175583, 0.10881854593753815], [0.00976437795907259, 0.0032595740631222725, 0.0021889826748520136, 0.003149980679154396, 0.0028265949804335833, 0.0058457511477172375, 0.0012064318871125579, 0.011398770846426487, 0.059283848851919174, 0.1415555477142334, 0.004987755790352821, 0.05386420339345932, 0.017745163291692734, 0.13775202631950378, 0.2205449342727661, 0.2650304436683655, 0.059595633298158646], [0.008760376833379269, 0.002713883528485894, 0.0039603495970368385, 0.0016811072127893567, 0.0034731728956103325, 0.001324359094724059, 0.00037808556226082146, 0.0028924550861120224, 0.1261860430240631, 0.09943632781505585, 0.01668786071240902, 0.12166517972946167, 0.20644888281822205, 0.05490894243121147, 0.05007820576429367, 0.17126207053661346, 0.12814268469810486], [0.003855594666674733, 0.0010279123671352863, 0.0015991622349247336, 0.001383748254738748, 0.004134461749345064, 0.001294485991820693, 0.0006854782695882022, 0.0012635185848921537, 0.06345689296722412, 0.05816950649023056, 0.006413677707314491, 0.2604367733001709, 0.24804487824440002, 0.05097700655460358, 0.021885981783270836, 0.2107435017824173, 0.06462740898132324], [0.004982471000403166, 0.0006992732523940504, 0.0017675221897661686, 0.0004335168923716992, 0.009008869528770447, 0.0020184493623673916, 0.0007313895621336997, 0.0014360100030899048, 0.07364760339260101, 0.1780526489019394, 0.009435616433620453, 0.35736867785453796, 0.2140316516160965, 0.027324117720127106, 0.01903369463980198, 0.025390230119228363, 0.07463827729225159], [0.008594616316258907, 0.0056075723841786385, 0.009349030442535877, 0.004368793219327927, 0.006372013129293919, 0.004783434793353081, 0.0037150168791413307, 0.0048795295879244804, 0.45506751537323, 0.011634405702352524, 0.00648960517719388, 0.012840671464800835, 0.006777993403375149, 0.0022574723698198795, 0.003014270681887865, 0.008313097059726715, 0.445934921503067]], [[0.04591652378439903, 0.06300190091133118, 0.16419069468975067, 0.06137210130691528, 0.03333040326833725, 0.11815725266933441, 0.02318153716623783, 0.12986509501934052, 0.11233090609312057, 0.05288806930184364, 0.00782070867717266, 0.007269850000739098, 0.0032817272003740072, 0.008160431869328022, 0.01143732201308012, 0.044403888285160065, 0.1133914515376091], [0.05948485806584358, 0.030614571645855904, 0.04631494730710983, 0.04725201427936554, 0.024686913937330246, 0.07342551648616791, 0.01190608087927103, 0.1029941663146019, 0.19130326807498932, 0.05489321053028107, 0.0618562214076519, 0.010713323019444942, 0.008033191785216331, 0.015370874665677547, 0.019974352791905403, 0.0536336675286293, 0.1875428408384323], [0.008375815115869045, 0.08590077608823776, 0.11599132418632507, 0.03065883368253708, 0.02831793576478958, 0.17639218270778656, 0.030109606683254242, 0.07108864188194275, 0.08749613910913467, 0.06038052588701248, 0.13203848898410797, 0.01169673167169094, 0.016224045306444168, 0.022964222356677055, 0.012506515718996525, 0.02547159045934677, 0.08438663184642792], [0.014101564884185791, 0.009941528551280499, 0.012831049971282482, 0.04680471494793892, 0.0229649655520916, 0.03828982263803482, 0.007251002360135317, 0.06968002021312714, 0.28135332465171814, 0.07196445018053055, 0.021891625598073006, 0.010489667765796185, 0.0037817968986928463, 0.009669381193816662, 0.014900454320013523, 0.08749127388000488, 0.27659332752227783], [0.023000601679086685, 0.014771489426493645, 0.017490161582827568, 0.079710453748703, 0.028272580355405807, 0.027533959597349167, 0.005006590858101845, 0.07247548550367355, 0.2600434422492981, 0.040930040180683136, 0.039835136383771896, 0.003263308899477124, 0.0016803618054836988, 0.009910948574543, 0.0272970050573349, 0.0922524631023407, 0.2565259337425232], [0.007276624441146851, 0.015737686306238174, 0.044347167015075684, 0.0654127299785614, 0.06074805557727814, 0.2576485574245453, 0.01003256905823946, 0.029188068583607674, 0.16256673634052277, 0.03380874544382095, 0.028989844024181366, 0.016662636771798134, 0.014031721279025078, 0.012928691692650318, 0.028152860701084137, 0.05670379474759102, 0.1557634472846985], [0.046840086579322815, 0.005050460807979107, 0.008912740275263786, 0.04096522554755211, 0.0037268521264195442, 0.02124677784740925, 0.0024555400013923645, 0.030869917944073677, 0.3147437572479248, 0.05737714841961861, 0.025457613170146942, 0.019202768802642822, 0.012414413504302502, 0.012507575564086437, 0.03809475526213646, 0.05198213458061218, 0.3081522285938263], [0.04578913748264313, 0.015169307589530945, 0.05198633670806885, 0.04619758948683739, 0.017973976209759712, 0.03155815973877907, 0.006569531746208668, 0.05196365341544151, 0.295901358127594, 0.039483342319726944, 0.014930213801562786, 0.01637307181954384, 0.005796234123408794, 0.019513661041855812, 0.016688790172338486, 0.03114703670144081, 0.2929585576057434], [0.036378540098667145, 0.006205890327692032, 0.016910836100578308, 0.00830363854765892, 0.00342999747954309, 0.00617930619046092, 0.001616147463209927, 0.01737803965806961, 0.41895776987075806, 0.012113629840314388, 0.006057837046682835, 0.007107787765562534, 0.00616078544408083, 0.0055975657887756824, 0.012781639583408833, 0.016707587987184525, 0.41811296343803406], [0.05884114280343056, 0.009341621771454811, 0.07733424752950668, 0.04282677546143532, 0.004803631454706192, 0.009805548936128616, 0.004415364004671574, 0.042979758232831955, 0.3523355722427368, 0.009957455098628998, 0.0038648745976388454, 0.0032010285649448633, 0.001637027831748128, 0.0014145619934424758, 0.0028786929324269295, 0.014316998422145844, 0.3600457012653351], [0.1566653698682785, 0.04843460023403168, 0.07605812698602676, 0.09281890094280243, 0.02433890849351883, 0.037761494517326355, 0.009676758199930191, 0.11950207501649857, 0.1123947724699974, 0.030063573271036148, 0.1210775226354599, 0.0033524015452712774, 0.0035345377400517464, 0.0009526506764814258, 0.0023503759875893593, 0.046079669147729874, 0.11493832617998123], [0.09321621060371399, 0.022234490141272545, 0.051143743097782135, 0.057122860103845596, 0.009956824593245983, 0.05840011686086655, 0.006564661394804716, 0.09109149128198624, 0.26993706822395325, 0.008527032099664211, 0.014413979835808277, 0.011482027359306812, 0.002143146703019738, 0.0029713260009884834, 0.016046395525336266, 0.015013432130217552, 0.26973533630371094], [0.042803239077329636, 0.014748111367225647, 0.051076192408800125, 0.020201250910758972, 0.004679969511926174, 0.023354481905698776, 0.004600305110216141, 0.0502362921833992, 0.3526424765586853, 0.009942014701664448, 0.013681070879101753, 0.0074101281352341175, 0.005489821545779705, 0.008449274115264416, 0.020850056782364845, 0.013680189847946167, 0.3561550974845886], [0.018149415031075478, 0.0329611599445343, 0.06975128501653671, 0.013419806957244873, 0.0017656076233834028, 0.037007421255111694, 0.001938949222676456, 0.08108069747686386, 0.3140479624271393, 0.004590584896504879, 0.01664614863693714, 0.0005911394255235791, 0.0026736888103187084, 0.02962396666407585, 0.056544847786426544, 0.003622097196057439, 0.3155851364135742], [0.01956355944275856, 0.027016250416636467, 0.13853345811367035, 0.008343035355210304, 0.0012429470662027597, 0.03948315605521202, 0.002260174136608839, 0.0677444115281105, 0.2722562253475189, 0.0036843710113316774, 0.01055007055401802, 0.0005664242198690772, 0.0028834156692028046, 0.06952077150344849, 0.061710719019174576, 0.0033693057484924793, 0.271271675825119], [0.06428898125886917, 0.02880546823143959, 0.09898865967988968, 0.1424073874950409, 0.05490938201546669, 0.0940185934305191, 0.018556715920567513, 0.12920494377613068, 0.12412295490503311, 0.02156408131122589, 0.009758148342370987, 0.0064997440204024315, 0.0009732784237712622, 0.003025449812412262, 0.002336277160793543, 0.07398392260074615, 0.12655596435070038], [0.036315545439720154, 0.006136774085462093, 0.016873344779014587, 0.008397938683629036, 0.0034421177115291357, 0.00616659689694643, 0.0016272537177428603, 0.01722121238708496, 0.41913989186286926, 0.012165863066911697, 0.005988001823425293, 0.007207722403109074, 0.006098099984228611, 0.00557590089738369, 0.012698270380496979, 0.01672135479748249, 0.41822412610054016]], [[0.017480259761214256, 0.20148500800132751, 0.03903725743293762, 0.06706959754228592, 0.012287254445254803, 0.013176810927689075, 0.002272723475471139, 0.27102038264274597, 0.18708552420139313, 0.0020295148715376854, 0.0004082861414644867, 9.248564310837537e-05, 0.00010379328887211159, 0.00010172392649110407, 0.0001489232381572947, 0.0038650024216622114, 0.18233542144298553], [0.016926229000091553, 0.06871692836284637, 0.014908969402313232, 0.02210349775850773, 0.003666487755253911, 0.0023261106107383966, 0.0011758703039959073, 0.05407288670539856, 0.41736021637916565, 0.002624241868034005, 0.0006797122769057751, 0.00010801738972077146, 0.00018314596673008054, 0.00021032973018009216, 0.0007358366274274886, 0.001531356479972601, 0.39267027378082275], [0.13162341713905334, 0.5688703060150146, 0.0772111639380455, 0.005058556329458952, 6.459522410295904e-05, 0.00017680223390925676, 0.0001300355070270598, 0.0010197939118370414, 0.11028080433607101, 0.00010029523400589824, 0.0009325147839263082, 2.193685941165313e-05, 0.00010872191342059523, 6.0461050452431664e-05, 0.00017671070236247033, 0.0003205718530807644, 0.10384334623813629], [0.014943387359380722, 0.15152794122695923, 0.03337767720222473, 0.04420100152492523, 0.04978689178824425, 0.0066736130975186825, 0.002962433034554124, 0.025334719568490982, 0.3377862870693207, 0.0003827627224382013, 0.00021558078879024833, 0.0004318539286032319, 0.0004898869665339589, 0.0017401190707460046, 0.000680110533721745, 0.0005245347274467349, 0.32894113659858704], [0.013496278785169125, 0.06256356090307236, 0.09802360087633133, 0.35747820138931274, 0.0443490669131279, 0.018599987030029297, 0.0035999685060232878, 0.011299500241875648, 0.1924462467432022, 7.386571087408811e-05, 0.00017820157518144697, 0.0004630174080375582, 6.960820610402152e-05, 0.0018604402430355549, 0.0007925601094029844, 0.0009891301160678267, 0.19371670484542847], [0.012661732733249664, 0.01475112047046423, 0.03170580789446831, 0.12517398595809937, 0.20579063892364502, 0.029060887172818184, 0.00819248054176569, 0.01069746632128954, 0.2803666591644287, 9.427111217519268e-05, 7.925676618469879e-05, 0.0001329022488789633, 4.380678365123458e-05, 0.000238862368860282, 0.0002338258782401681, 0.0006765327998436987, 0.2800998091697693], [0.005842386279255152, 0.0017539823893457651, 0.005652809515595436, 0.14941003918647766, 0.5916652083396912, 0.1219407394528389, 0.0037342447321861982, 0.004851237405091524, 0.05674576759338379, 2.914754622906912e-05, 5.7750745327211916e-05, 0.00016429985407739878, 3.022764076376916e-06, 0.00011887985601788387, 4.649962647818029e-05, 0.00031188392313197255, 0.05767207220196724], [0.019650772213935852, 0.040749937295913696, 0.017664263024926186, 0.08067885786294937, 0.021262740716338158, 0.03944716602563858, 0.04182502254843712, 0.1251455843448639, 0.3070489168167114, 0.0010175948264077306, 0.0017584979068487883, 6.12578442087397e-05, 0.00023389598936773837, 0.0003069673548452556, 0.0003227578417863697, 0.0037570991553366184, 0.2990686893463135], [0.013733944855630398, 0.026839664205908775, 0.01571626588702202, 0.012752034701406956, 0.005264668259769678, 0.006642777938395739, 0.0037175819743424654, 0.08288726955652237, 0.35747939348220825, 0.027546469122171402, 0.011358617804944515, 0.003480267710983753, 0.008092930540442467, 0.0069106868468225, 0.007899426855146885, 0.05221763253211975, 0.35746023058891296], [0.010016730055212975, 0.0008128750487230718, 0.00013660082186106592, 0.001132918638177216, 0.0006749625317752361, 0.0002507451572455466, 0.00022765566245652735, 0.12235474586486816, 0.36872923374176025, 0.06490994989871979, 0.040692925453186035, 0.0004655596276279539, 0.0004783187177963555, 0.0004585811693686992, 0.0009283209801651537, 0.026849865913391113, 0.36087992787361145], [0.016589360311627388, 0.0012915093684569001, 0.0010521794902160764, 0.000551754143089056, 0.00017932747141458094, 0.0004100268997717649, 0.0002537450345698744, 0.060603126883506775, 0.23340116441249847, 0.357169508934021, 0.0604865588247776, 0.0024894257076084614, 0.0031617896165698767, 0.002296684542670846, 0.006000869441777468, 0.026059865951538086, 0.2280031442642212], [0.012261469848453999, 0.001130763441324234, 0.0007099805516190827, 0.00047054074821062386, 0.0001816151780076325, 4.707575135398656e-05, 2.783210038614925e-05, 0.004106875974684954, 0.3882300555706024, 0.07577414065599442, 0.08262647688388824, 0.003469713730737567, 0.022445926442742348, 0.00809937808662653, 0.009913328103721142, 0.00890932697802782, 0.38159558176994324], [0.006444597151130438, 9.139658504864201e-05, 0.0005467387964017689, 0.0005172885139472783, 0.00024158574524335563, 8.468495070701465e-05, 2.1504802134586498e-05, 0.0009999327594414353, 0.18081440031528473, 0.021489791572093964, 0.015058313496410847, 0.560596227645874, 0.0035930301528424025, 0.02342190593481064, 0.0031429133377969265, 0.004967023618519306, 0.17796869575977325], [0.010958514176309109, 0.0015925709158182144, 0.0017796818865463138, 0.0014066712465137243, 0.00047277554403990507, 0.0001338341971859336, 7.649955659871921e-05, 0.0011293202405795455, 0.38668951392173767, 0.019182046875357628, 0.04777476191520691, 0.035996802151203156, 0.05052071809768677, 0.019790317863225937, 0.01855073869228363, 0.018881184980273247, 0.3850640654563904], [0.02273857221007347, 0.000298291037324816, 0.0024406120646744967, 0.0008683144696988165, 0.0009576916927471757, 0.00039632045081816614, 8.98492507985793e-05, 0.001589466817677021, 0.25167495012283325, 0.016077794134616852, 0.011704719625413418, 0.16532965004444122, 0.032487887889146805, 0.20103679597377777, 0.009229163639247417, 0.023146359249949455, 0.2599335312843323], [0.016290074214339256, 0.002957190154120326, 0.002680645789951086, 0.0015214915620163083, 0.0009634462767280638, 0.0008814203320071101, 0.00016314278764184564, 0.0032475993502885103, 0.26095134019851685, 0.018887383863329887, 0.0353982113301754, 0.012096144258975983, 0.06347209960222244, 0.1776033192873001, 0.08369502425193787, 0.05194621533155441, 0.26724523305892944], [0.013944759033620358, 0.026672909036278725, 0.015988383442163467, 0.012970458716154099, 0.005408325232565403, 0.006646183785051107, 0.0036593861877918243, 0.07993745803833008, 0.35463467240333557, 0.02831931598484516, 0.012103920802474022, 0.0036694647278636694, 0.008654714561998844, 0.0076136114075779915, 0.008814017288386822, 0.055927813053131104, 0.35503455996513367]], [[0.014837761409580708, 0.085702084004879, 0.18005020916461945, 0.06088872253894806, 0.035098619759082794, 0.3227255940437317, 0.025438392534852028, 0.057057935744524, 0.10069388151168823, 0.0037763488944619894, 0.0025825605262070894, 0.0024706560652703047, 0.0010416223667562008, 0.0025366521440446377, 0.00286444672383368, 0.003513069124892354, 0.09872142225503922], [0.0681460052728653, 0.0618312768638134, 0.008035487495362759, 0.01888233795762062, 0.002018442377448082, 0.0022372847888618708, 0.0008813529275357723, 0.035775840282440186, 0.3668569326400757, 0.006882202345877886, 0.044318173080682755, 0.001700531574897468, 0.0014839189825579524, 0.0019607634749263525, 0.004078064113855362, 0.015904247760772705, 0.3590069115161896], [0.03437953442335129, 0.026006393134593964, 0.004117678385227919, 0.004914199933409691, 0.0011157924309372902, 0.0014436618657782674, 0.000660546706058085, 0.04258754476904869, 0.4291918873786926, 0.003527373308315873, 0.009808585979044437, 0.0009844688465818763, 0.001145608490332961, 0.006327305920422077, 0.01049965899437666, 0.0077958861365914345, 0.41549381613731384], [0.03358268365263939, 0.01694011315703392, 0.0019685649313032627, 0.06609854847192764, 0.008756306022405624, 0.003526550717651844, 0.013533340767025948, 0.03698752075433731, 0.30237850546836853, 0.03498884290456772, 0.024515783414244652, 0.01361811999231577, 0.008705361746251583, 0.0022068338003009558, 0.011655578389763832, 0.12867657840251923, 0.2918608784675598], [0.01708546094596386, 0.011726808734238148, 0.0009878892451524734, 0.025934971868991852, 0.015839044004678726, 0.00646226666867733, 0.01318965945392847, 0.045935969799757004, 0.377254456281662, 0.034937478601932526, 0.02187684178352356, 0.0233621746301651, 0.01020959485322237, 0.0018312670290470123, 0.005703664384782314, 0.01857880689203739, 0.36908382177352905], [0.01989579387009144, 0.012307309545576572, 0.0018611198756843805, 0.01515846699476242, 0.021920310333371162, 0.008366244845092297, 0.006554576102644205, 0.088648721575737, 0.38216903805732727, 0.011448659002780914, 0.012523503974080086, 0.008944014087319374, 0.0034896284341812134, 0.004712685476988554, 0.009374471381306648, 0.018231382593512535, 0.37439408898353577], [0.012342882342636585, 0.015963461250066757, 0.0012975179124623537, 0.02431870810687542, 0.004630825947970152, 0.004724858794361353, 0.07893224060535431, 0.05416902154684067, 0.3657701313495636, 0.009526040405035019, 0.007649900391697884, 0.0056343767791986465, 0.0025639834348112345, 0.0005148480995558202, 0.005586004815995693, 0.048142801970243454, 0.35823243856430054], [0.03718230500817299, 0.010838188230991364, 0.006511701736599207, 0.009800695814192295, 0.0037312728818506002, 0.013592066243290901, 0.004582089837640524, 0.13572309911251068, 0.3581139147281647, 0.01870672218501568, 0.009837617166340351, 0.002930890303105116, 0.0020904738921672106, 0.0014542025746777654, 0.0065223355777561665, 0.032493725419044495, 0.34588873386383057], [0.02295801229774952, 0.005564752034842968, 0.008349373936653137, 0.0025019673630595207, 0.00110938074067235, 0.002276431769132614, 0.0017111244378611445, 0.01407159399241209, 0.43465757369995117, 0.010574308224022388, 0.008400256745517254, 0.009340275079011917, 0.005001489073038101, 0.005060956813395023, 0.013823838904500008, 0.028126081451773643, 0.426472544670105], [0.12645843625068665, 0.0052221729420125484, 0.0017872448079288006, 0.002644107211381197, 0.0003394242958165705, 0.0011288061505183578, 0.0002770152350421995, 0.03130936622619629, 0.39704394340515137, 0.011428967118263245, 0.006546787917613983, 0.0014884433476254344, 0.0020279143936932087, 0.002331080846488476, 0.006528398022055626, 0.010533617809414864, 0.3929043114185333], [0.3588545322418213, 0.031942736357450485, 0.004985657054930925, 0.00601204065605998, 0.0005203136242926121, 0.001135090715251863, 0.0003818913537543267, 0.014780141413211823, 0.2593924403190613, 0.011473086662590504, 0.027547687292099, 0.002986195031553507, 0.001712881843559444, 0.0010780958691611886, 0.005659767892211676, 0.015391579829156399, 0.256145715713501], [0.05141183361411095, 0.005684043746441603, 0.00038814410800114274, 0.0077974433079361916, 0.0033770787995308638, 0.0014042012626305223, 0.005024472251534462, 0.014184202067553997, 0.3518980145454407, 0.03468139097094536, 0.01638837531208992, 0.033687639981508255, 0.010603289119899273, 0.0037281420081853867, 0.010846403427422047, 0.0954248234629631, 0.35347044467926025], [0.06809087097644806, 0.0062261177226901054, 0.0013949081767350435, 0.008195164613425732, 0.003362770890817046, 0.003521934151649475, 0.012097174301743507, 0.01836719922721386, 0.36344847083091736, 0.02230188064277172, 0.010080968961119652, 0.018977761268615723, 0.01645754650235176, 0.005641183815896511, 0.011253847740590572, 0.06706871092319489, 0.3635134696960449], [0.10310215502977371, 0.0021119043231010437, 0.0040933191776275635, 0.002918021287769079, 0.0005248342058621347, 0.004524966701865196, 0.00134479277767241, 0.03162737190723419, 0.3795033097267151, 0.00479470007121563, 0.0064110723324120045, 0.0035229807253926992, 0.004907379858195782, 0.008322231471538544, 0.02414313517510891, 0.04080833122134209, 0.37733960151672363], [0.07745686173439026, 0.0014652019599452615, 0.0025874872226268053, 0.001946733333170414, 0.0003650042926892638, 0.0019092512084171176, 0.0019662012346088886, 0.037861742079257965, 0.40340253710746765, 0.005483775865286589, 0.003932313993573189, 0.002706279279664159, 0.00404629111289978, 0.007473548408597708, 0.014809651300311089, 0.032824985682964325, 0.3997621536254883], [0.12622614204883575, 0.006608657538890839, 0.0010806312784552574, 0.011813311837613583, 0.0006925358902662992, 0.0016104583628475666, 0.0064596678130328655, 0.04805987700819969, 0.2834981381893158, 0.01862853765487671, 0.022012902423739433, 0.006029351614415646, 0.004989866632968187, 0.0017491532489657402, 0.009248408488929272, 0.17184071242809296, 0.2794516682624817], [0.023507000878453255, 0.005494833458214998, 0.008005945943295956, 0.002449345076456666, 0.0011147186160087585, 0.0022155079059302807, 0.001679563894867897, 0.013942761346697807, 0.43389892578125, 0.010842311196029186, 0.008559994399547577, 0.00946419220417738, 0.005121259950101376, 0.0051180520094931126, 0.014033717103302479, 0.02873361110687256, 0.4258183240890503]], [[0.00848997849971056, 0.006697371136397123, 0.02224407158792019, 0.001738460618071258, 0.002630590694025159, 0.002615903038531542, 0.001488794689066708, 0.0017919568344950676, 0.2413429468870163, 0.05421631783246994, 0.138983815908432, 0.0561932697892189, 0.029965845867991447, 0.044409897178411484, 0.03141683340072632, 0.11605864018201828, 0.2397153377532959], [0.01825099252164364, 0.026805464178323746, 0.6148292422294617, 0.021728163585066795, 0.025519391521811485, 0.009578576311469078, 0.0033244453370571136, 0.008989238180220127, 0.1351548582315445, 0.000681057688780129, 0.001357431523501873, 0.00125163106713444, 0.0006632592412643135, 0.0010806823847815394, 0.0005186382331885397, 0.0012796970549970865, 0.12898722290992737], [0.011718683876097202, 0.012128150090575218, 0.01166569720953703, 0.009619781747460365, 0.01844712719321251, 0.0011218040017411113, 0.00028493141871877015, 0.0038101940881460905, 0.47031742334365845, 0.0001600809337105602, 0.0009218375198543072, 0.0006701533566229045, 0.0005535040982067585, 0.00033883846481330693, 0.0001901230134535581, 0.0057203322649002075, 0.4523313343524933], [0.00890746247023344, 0.23083403706550598, 0.39969971776008606, 0.004340294282883406, 0.0382809117436409, 0.0687628984451294, 0.0036950879730284214, 0.0031205194536596537, 0.11283029615879059, 0.013321366161108017, 0.002082439372316003, 0.0019242085982114077, 0.0015758576337248087, 0.001667595119215548, 0.0017008399590849876, 0.000729957246221602, 0.10652660578489304], [0.017912723124027252, 0.03370494395494461, 0.0476127490401268, 0.01868375390768051, 0.01692894846200943, 0.14335624873638153, 0.010662405751645565, 0.005335233639925718, 0.35275617241859436, 0.0044158524833619595, 0.0009084834018722177, 0.0009169220575131476, 0.0004780502640642226, 0.0017170432256534696, 0.0029020707588642836, 0.0047433460131287575, 0.33696505427360535], [0.005911227315664291, 0.012780345045030117, 0.010394775308668613, 0.004120598081499338, 0.007990815676748753, 0.003416532650589943, 0.0010815758723765612, 0.0013590577291324735, 0.48404502868652344, 0.00047257557162083685, 0.0013362827012315392, 0.00021733573521487415, 0.00030632695415988564, 0.0001164312707260251, 0.00024130770179908723, 0.0010701542487367988, 0.4651394486427307], [0.002640643622726202, 0.014562993310391903, 0.04752848297357559, 0.0038568938616663218, 0.027922293171286583, 0.839131236076355, 0.0009474137332290411, 0.002863657893612981, 0.029102692380547523, 0.0010849495884031057, 0.0001799976162146777, 0.0002541248104535043, 0.00014488214219454676, 0.0005791639559902251, 0.0006234379834495485, 0.00016335118561983109, 0.02841385081410408], [0.00906453188508749, 0.07517070323228836, 0.08855453878641129, 0.07748658955097198, 0.2896617650985718, 0.20755931735038757, 0.11318142712116241, 0.00893726572394371, 0.057658545672893524, 0.003579361829906702, 0.002044499618932605, 0.0036599847953766584, 0.003470990341156721, 0.0014864244731143117, 0.0013644316932186484, 0.0017540830885991454, 0.05536544695496559], [0.01159619353711605, 0.006290688645094633, 0.0052373409271240234, 0.002823084592819214, 0.0034340755082666874, 0.0026102978736162186, 0.001451929216273129, 0.0034936140291392803, 0.4648189842700958, 0.005440441891551018, 0.013607610948383808, 0.005401376634836197, 0.003911169711500406, 0.002514511113986373, 0.0027889576740562916, 0.009571418166160583, 0.4550081491470337], [0.028502266854047775, 0.00529392808675766, 0.004700710065662861, 0.011198698543012142, 0.012513823807239532, 0.004401367623358965, 0.0038434339221566916, 0.004696730989962816, 0.3300166726112366, 0.042416349053382874, 0.05656822398304939, 0.05021902173757553, 0.016728203743696213, 0.006905470043420792, 0.005496591329574585, 0.09490811824798584, 0.32159021496772766], [0.013376740738749504, 0.014142080210149288, 0.5393674373626709, 0.003383554518222809, 0.0016243438003584743, 0.001295609399676323, 0.0007454454316757619, 0.004174111410975456, 0.14934442937374115, 0.036283187568187714, 0.020287038758397102, 0.012836650013923645, 0.012336392886936665, 0.0054787821136415005, 0.007587513420730829, 0.030229957774281502, 0.1475067138671875], [0.005271125119179487, 0.0014437813078984618, 0.0037885287310928106, 0.00029790872940793633, 0.00033237607567571104, 0.0008875897619873285, 0.00027595151914283633, 0.0013433991698548198, 0.3374556005001068, 0.05397535115480423, 0.0461876317858696, 0.022840747609734535, 0.03349493443965912, 0.031100351363420486, 0.09129539132118225, 0.041359156370162964, 0.3286501467227936], [0.004411994479596615, 0.0007231537019833922, 0.005045815836638212, 0.002173850778490305, 0.0011977687245234847, 0.0027966168709099293, 0.002041046740487218, 0.0029724594205617905, 0.3489231467247009, 0.018506208434700966, 0.01627606712281704, 0.11237353086471558, 0.009774484671652317, 0.036311376839876175, 0.07095467299222946, 0.022027291357517242, 0.34349051117897034], [0.0036374840419739485, 0.0020712895784527063, 0.0020758684258908033, 0.000495396030601114, 0.0013039959594607353, 0.0002867391740437597, 7.446991367032751e-05, 0.0009140112670138478, 0.3891040086746216, 0.013963821344077587, 0.017246467992663383, 0.029554596170783043, 0.04664463549852371, 0.02377084083855152, 0.06745195388793945, 0.02254267781972885, 0.37886160612106323], [0.004389666952192783, 0.002140594646334648, 0.004794787149876356, 0.000491518818307668, 0.0021103057079017162, 0.00046957869199104607, 9.536885045235977e-05, 0.0011313948780298233, 0.2867840826511383, 0.019110489636659622, 0.07317928224802017, 0.1593218594789505, 0.05956564098596573, 0.08013103157281876, 0.01315735187381506, 0.010142222978174686, 0.2829848527908325], [0.009459279477596283, 0.009328803047537804, 0.0075727771036326885, 0.0006119813187979162, 0.0044566732831299305, 0.0007778770523145795, 0.0005679743480868638, 0.0017246439820155501, 0.12649807333946228, 0.08036120235919952, 0.17118582129478455, 0.19206595420837402, 0.07721170783042908, 0.10635712742805481, 0.05623708665370941, 0.030059166252613068, 0.12552385032176971], [0.011580069549381733, 0.006209952756762505, 0.0051584127359092236, 0.0027650215197354555, 0.003446427173912525, 0.002645504428073764, 0.001426133094355464, 0.003419037675485015, 0.4641340672969818, 0.005521963816136122, 0.013870655559003353, 0.005608419422060251, 0.0040552932769060135, 0.002646612236276269, 0.002938727615401149, 0.009850203059613705, 0.4547234773635864]], [[0.010057734325528145, 0.005002036225050688, 0.018494021147489548, 0.006920263636857271, 0.002388333436101675, 0.015272107906639576, 0.0014022223185747862, 0.010757633484899998, 0.44486743211746216, 0.00209295772947371, 0.0028060325421392918, 0.001693354337476194, 0.0025312923826277256, 0.00465938588604331, 0.008705212734639645, 0.02339906431734562, 0.43895095586776733], [0.00963846780359745, 0.029775895178318024, 0.011451346799731255, 0.008635523729026318, 0.008830179460346699, 0.005798475816845894, 0.0024684283416718245, 0.014253785833716393, 0.4656665623188019, 0.0004441560886334628, 0.0004839450994040817, 0.00022090444690547884, 0.0005268919048830867, 0.00014262841432355344, 0.0002728021936491132, 0.0010000448673963547, 0.44038984179496765], [0.029812926426529884, 0.0069160801358520985, 0.04169391840696335, 0.004743122961372137, 0.00613489979878068, 0.002656891942024231, 0.0006393708754330873, 0.0062254429794847965, 0.4592188596725464, 0.00046337631647475064, 0.0006490237428806722, 0.00024718104396015406, 0.0008758771582506597, 0.0007043457590043545, 0.0015771863982081413, 0.0012329698074609041, 0.436208575963974], [0.0022449996322393417, 0.02982807531952858, 0.006583040114492178, 0.00875064730644226, 0.014338579960167408, 0.03789481148123741, 0.009276355616748333, 0.01559943612664938, 0.4464631974697113, 0.0002598173450678587, 0.00013225982547737658, 0.0003473749093245715, 0.00016772405069787055, 0.00035238757845945656, 0.00042191363172605634, 0.00045209721429273486, 0.42688727378845215], [0.005365240853279829, 0.027452701702713966, 0.004356576129794121, 0.0726325660943985, 0.03444398567080498, 0.008861816488206387, 0.002771044382825494, 0.007664002478122711, 0.42534491419792175, 0.0003084332274738699, 0.00010986230336129665, 0.0005706094088964164, 0.000599258579313755, 0.0008192628738470376, 0.0006414668750949204, 0.0006772656342945993, 0.4073808789253235], [0.005453033372759819, 0.007485215086489916, 0.0016480284975841641, 0.01411443017423153, 0.02747797593474388, 0.009071814827620983, 0.0012492149835452437, 0.006488464307039976, 0.4698760509490967, 8.669096132507548e-05, 7.803433254593983e-05, 6.598359323106706e-05, 0.000368508422980085, 0.00031111689168028533, 0.0005133171798661351, 0.0005181719898246229, 0.4551939070224762], [0.0024155965074896812, 0.0036317617632448673, 0.001894674962386489, 0.007689658552408218, 0.13301603496074677, 0.2738424241542816, 0.003468499518930912, 0.009353997185826302, 0.2843243479728699, 6.778785609640181e-05, 5.096849781693891e-05, 0.0001579010277055204, 0.00047663316945545375, 0.00027328458963893354, 0.00018050920334644616, 0.00019660960242617875, 0.278959184885025], [0.007348518818616867, 0.011435589753091335, 0.019765570759773254, 0.07790988683700562, 0.07319408655166626, 0.43297529220581055, 0.04791959375143051, 0.043603118509054184, 0.14156070351600647, 0.000703852332662791, 0.0008035501814447343, 0.00033292590524069965, 0.000763967982493341, 0.0007253350340761244, 0.000616567675024271, 0.001542552257888019, 0.1387988030910492], [0.02268170565366745, 0.007042753044515848, 0.007176578976213932, 0.009017842821776867, 0.005312832072377205, 0.011243489570915699, 0.0037274998612701893, 0.02601756528019905, 0.42067641019821167, 0.009934372268617153, 0.010637120343744755, 0.005114453379064798, 0.006524781696498394, 0.0051660798490047455, 0.008624675683677197, 0.023224569857120514, 0.41787734627723694], [0.0016385697526857257, 0.001389342942275107, 0.0001360930473310873, 0.0016519591445103288, 0.0012623327784240246, 0.021749958395957947, 0.006197582930326462, 0.003028265666216612, 0.44024842977523804, 0.022182554006576538, 0.013732722960412502, 0.006271897349506617, 0.003500771475955844, 0.001067954464815557, 0.004510459024459124, 0.03708958998322487, 0.4343414008617401], [0.00313055538572371, 0.0014671973185613751, 0.00024487977498210967, 0.0007982774404808879, 0.001500700949691236, 0.002637650351971388, 0.0010448562679812312, 0.010068203322589397, 0.35006165504455566, 0.18227675557136536, 0.008268915116786957, 0.016725212335586548, 0.024091625586152077, 0.0025451574474573135, 0.009003991261124611, 0.03464454039931297, 0.35148975253105164], [0.0025075431913137436, 0.00043374294182285666, 0.00016046622477006167, 0.0002566356852184981, 0.0001102826718124561, 0.0001722670713206753, 2.693122223718092e-05, 0.008127672597765923, 0.45517560839653015, 0.03911096602678299, 0.014971334487199783, 0.012246373109519482, 0.008071092888712883, 0.003136136569082737, 0.0019348402274772525, 0.013914392329752445, 0.4396437704563141], [0.003943914547562599, 0.0013398902956396341, 0.00024014421796891838, 0.0005823546671308577, 0.0004198958049528301, 0.0008421209640800953, 0.00043195197940804064, 0.005074279848486185, 0.4111682176589966, 0.05455898120999336, 0.005699012894183397, 0.026465043425559998, 0.03013758733868599, 0.017765892669558525, 0.028048092499375343, 0.015839852392673492, 0.39744284749031067], [0.0018290388397872448, 0.000856737548019737, 0.0008140807040035725, 0.0003104869101662189, 0.00011284205538686365, 0.000292467069812119, 8.136712131090462e-05, 0.0038466425612568855, 0.44877469539642334, 0.01942555606365204, 0.004931693430989981, 0.00954618863761425, 0.010857670567929745, 0.01430565770715475, 0.018236681818962097, 0.026817047968506813, 0.4389609694480896], [0.006906155962496996, 0.0024820035323500633, 0.001469908864237368, 0.0006967110675759614, 0.00025552441366016865, 0.00014752382412552834, 7.985904085217044e-05, 0.005151177756488323, 0.3610455393791199, 0.026672488078475, 0.030713923275470734, 0.013119624927639961, 0.04527655616402626, 0.1075688898563385, 0.020399028435349464, 0.02217903360724449, 0.35583603382110596], [0.004034522455185652, 0.00046107714297249913, 0.0007041665958240628, 0.000661600730381906, 0.0006499440059997141, 0.0005654105334542692, 0.00021424367150757462, 0.004850264173001051, 0.25375962257385254, 0.05407317355275154, 0.008293156512081623, 0.06778424978256226, 0.031225314363837242, 0.17754624783992767, 0.09328951686620712, 0.04399356245994568, 0.25789394974708557], [0.022871652618050575, 0.007005993742495775, 0.007196023594588041, 0.009020509198307991, 0.005459469277411699, 0.011229055002331734, 0.0036002236884087324, 0.025591367855668068, 0.4187258183956146, 0.010436697863042355, 0.01091319415718317, 0.0054810200817883015, 0.006836700718849897, 0.005600787233561277, 0.009205058217048645, 0.024293290451169014, 0.4165331721305847]], [[0.006108490750193596, 0.00048298592446371913, 0.009644691832363605, 0.0010901641799136996, 0.0012856327230110765, 0.0035513541661202908, 0.0003678583016153425, 0.0006273784092627466, 0.017687829211354256, 0.15350079536437988, 0.21495573222637177, 0.017333583906292915, 0.06902571022510529, 0.11868312209844589, 0.1206250712275505, 0.24720345437526703, 0.017826182767748833], [0.03721974790096283, 0.04095926880836487, 0.14490556716918945, 0.06568209081888199, 0.11905517429113388, 0.22005000710487366, 0.07183218002319336, 0.01965632103383541, 0.11881532520055771, 0.004190849605947733, 0.0034088639076799154, 0.006869701202958822, 0.010367468930780888, 0.005993550177663565, 0.006495932582765818, 0.010392483323812485, 0.1141054555773735], [0.07519026100635529, 0.029349684715270996, 0.03602093458175659, 0.051357872784137726, 0.03302657604217529, 0.1732197403907776, 0.020981866866350174, 0.03328615427017212, 0.2525395452976227, 0.004731690511107445, 0.0031023784540593624, 0.007860047742724419, 0.007952983491122723, 0.005466417409479618, 0.008948655799031258, 0.014622583985328674, 0.24234260618686676], [0.050438426434993744, 0.04054679721593857, 0.33494460582733154, 0.02331814356148243, 0.027969859540462494, 0.2162870466709137, 0.03173430636525154, 0.015952864661812782, 0.11285558342933655, 0.003259655088186264, 0.0034685134887695312, 0.0042036669328808784, 0.006843035575002432, 0.004207336809486151, 0.003274918533861637, 0.012310788035392761, 0.10838446021080017], [0.05691436678171158, 0.044992052018642426, 0.39046740531921387, 0.02600630186498165, 0.011247477494180202, 0.1982293426990509, 0.025162890553474426, 0.01811601221561432, 0.08739137649536133, 0.007450995966792107, 0.004557818174362183, 0.0058028195053339005, 0.011403405107557774, 0.0068854414857923985, 0.007046618033200502, 0.014744245447218418, 0.08358140289783478], [0.09177535772323608, 0.033661339432001114, 0.19003207981586456, 0.01771298237144947, 0.009519659914076328, 0.04854452610015869, 0.012874523177742958, 0.020067719742655754, 0.2533319294452667, 0.006392565555870533, 0.004831385798752308, 0.015062008053064346, 0.019236113876104355, 0.007355678826570511, 0.012718730606138706, 0.014451921917498112, 0.24243146181106567], [0.03723860904574394, 0.0865321084856987, 0.26005181670188904, 0.04593465104699135, 0.02298891544342041, 0.18341778218746185, 0.01862463168799877, 0.011491465382277966, 0.1470467895269394, 0.005789309274405241, 0.004849296994507313, 0.00945041049271822, 0.006580303888767958, 0.005731581244617701, 0.007881954312324524, 0.00651024142280221, 0.13988018035888672], [0.02528735063970089, 0.07338886708021164, 0.3010205030441284, 0.09665419161319733, 0.07813757658004761, 0.24917075037956238, 0.04880642890930176, 0.008978785015642643, 0.029446927830576897, 0.004549788311123848, 0.006467815954238176, 0.00832538865506649, 0.012921258807182312, 0.00652841804549098, 0.005633087828755379, 0.01602678745985031, 0.028656112030148506], [0.005942951887845993, 0.0033881994895637035, 0.007797200232744217, 0.002649979665875435, 0.001656738226301968, 0.005419855006039143, 0.001296873320825398, 0.0036795062478631735, 0.4749843180179596, 0.005580626893788576, 0.005660484079271555, 0.003878110321238637, 0.0022622316610068083, 0.0034939160104840994, 0.005023148376494646, 0.004064449109137058, 0.4632215201854706], [0.006474870257079601, 0.0006117824814282358, 0.009809962473809719, 0.0015060602454468608, 0.002500672359019518, 0.0017212096136063337, 0.0006272914470173419, 0.00044546491699293256, 0.020383097231388092, 0.05131588131189346, 0.09697055071592331, 0.08580992370843887, 0.17250189185142517, 0.15189795196056366, 0.14122340083122253, 0.23551951348781586, 0.020680420100688934], [0.01393016055226326, 0.0013729787897318602, 0.009511454030871391, 0.001822108868509531, 0.0023439188953489065, 0.003921179566532373, 0.0011712448904290795, 0.001270924462005496, 0.0745932012796402, 0.06104925274848938, 0.03216121718287468, 0.04262640327215195, 0.10333573073148727, 0.16931265592575073, 0.2219616025686264, 0.1854526549577713, 0.07416332513093948], [0.01863090693950653, 0.004460332449525595, 0.014619794674217701, 0.0020859555806964636, 0.0007908749976195395, 0.0025836671702563763, 0.001338754897005856, 0.002101004356518388, 0.15120112895965576, 0.0440375916659832, 0.09921767562627792, 0.019260209053754807, 0.061059679836034775, 0.10695835202932358, 0.23787152767181396, 0.08528541773557663, 0.14849716424942017], [0.013786058872938156, 0.006823251023888588, 0.017722666263580322, 0.0032359580509364605, 0.0011598821729421616, 0.0031366825569421053, 0.0009321234538219869, 0.0023410385474562645, 0.1785549819469452, 0.05204802379012108, 0.08926312625408173, 0.03960205614566803, 0.0287737138569355, 0.12901489436626434, 0.17477378249168396, 0.08269420266151428, 0.17613764107227325], [0.010521615855395794, 0.0044441260397434235, 0.009941776283085346, 0.0028532410506159067, 0.003599172458052635, 0.008467171341180801, 0.0005294167785905302, 0.0025389876682311296, 0.33173704147338867, 0.04066403582692146, 0.09391944855451584, 0.05924486741423607, 0.05047112703323364, 0.007072144653648138, 0.01549836341291666, 0.03072803094983101, 0.3277694284915924], [0.005421232897788286, 0.0011851878371089697, 0.006782172713428736, 0.0005525992601178586, 0.0009180335327982903, 0.0028074176516383886, 0.00029931095195934176, 0.0015592406271025538, 0.3599278926849365, 0.04040796682238579, 0.09281772375106812, 0.038084808737039566, 0.03996624797582626, 0.01620369590818882, 0.019190222024917603, 0.01750001683831215, 0.3563762903213501], [0.018650809302926064, 0.0021492750383913517, 0.01273356843739748, 0.0012515883427113295, 0.0017890360904857516, 0.006261963862925768, 0.0009159680921584368, 0.001294730114750564, 0.07636277377605438, 0.058753978461027145, 0.10870809108018875, 0.0813615545630455, 0.14224953949451447, 0.15841716527938843, 0.14703968167304993, 0.10503080487251282, 0.07702938467264175], [0.00585370184853673, 0.0032456815242767334, 0.0074389330111444, 0.0025247905869036913, 0.0015582502819597721, 0.005153819918632507, 0.0012307422002777457, 0.003569426015019417, 0.47526243329048157, 0.005695832893252373, 0.005758575163781643, 0.003869175212457776, 0.0022632593754678965, 0.003518057521432638, 0.005080585367977619, 0.004129423294216394, 0.46384739875793457]], [[0.004491069354116917, 0.0027351307217031717, 0.0033803677652031183, 0.005743349902331829, 0.0022395208943635225, 0.0008278143359348178, 0.00034106202656403184, 0.013580447062849998, 0.18483808636665344, 0.11249332129955292, 0.13519611954689026, 0.005843060091137886, 0.0030350645538419485, 0.04950470104813576, 0.023332413285970688, 0.26362738013267517, 0.1887912154197693], [0.00804812740534544, 0.01932227984070778, 0.026770418509840965, 0.6470544338226318, 0.020555930212140083, 0.011104513891041279, 0.012925602495670319, 0.08041491359472275, 0.0513184480369091, 0.004597698338329792, 0.03217235952615738, 0.0010082327062264085, 0.001800397876650095, 0.0059030381962656975, 0.0019013967830687761, 0.025208251550793648, 0.04989396780729294], [0.019066080451011658, 0.044097863137722015, 0.0526462122797966, 0.05110037699341774, 0.0031227064318954945, 0.008649613708257675, 0.004430604167282581, 0.03587121143937111, 0.3683486878871918, 0.001988824922591448, 0.027555108070373535, 0.0006233253516256809, 0.0019463642966002226, 0.008852565661072731, 0.006860843859612942, 0.008148842491209507, 0.3566909432411194], [0.01181622315198183, 0.01627986691892147, 0.014005794189870358, 0.06803689897060394, 0.04136352241039276, 0.060439012944698334, 0.13425949215888977, 0.10341010987758636, 0.2644912004470825, 0.00419637793675065, 0.008456779643893242, 0.002130867913365364, 0.0008287517121061683, 0.004039273597300053, 0.0017279366729781032, 0.009923389181494713, 0.2545944154262543], [0.03295176103711128, 0.00981871783733368, 0.011098244227468967, 0.04524724930524826, 0.031882502138614655, 0.08037003129720688, 0.0789155438542366, 0.13111072778701782, 0.280385285615921, 0.007552378345280886, 0.005483344197273254, 0.002191618550568819, 0.0008577117114327848, 0.001828051288612187, 0.0018603377975523472, 0.011331876739859581, 0.26711463928222656], [0.01984240673482418, 0.003054012544453144, 0.0021687326952815056, 0.005747318267822266, 0.001473750569857657, 0.006713476497679949, 0.0026262446772307158, 0.04381173104047775, 0.4587130844593048, 0.008910521864891052, 0.0016071475110948086, 0.000905586639419198, 0.0007425961666740477, 0.0008714159484952688, 0.0015417730901390314, 0.004404224921017885, 0.4368661344051361], [0.018868526443839073, 0.0023677500430494547, 0.002823382383212447, 0.008436670526862144, 0.007943402975797653, 0.009686744771897793, 0.009699057787656784, 0.043270520865917206, 0.4554607570171356, 0.0033076212275773287, 0.0012700386578217149, 0.0010856080334633589, 0.0010807514190673828, 0.002286955015733838, 0.0016150734154507518, 0.0016566591802984476, 0.4291403591632843], [0.013559774495661259, 0.026531832292675972, 0.015721190720796585, 0.05076306685805321, 0.030098246410489082, 0.01254494022578001, 0.007677183486521244, 0.08505788445472717, 0.3477552533149719, 0.008530913852155209, 0.010583840310573578, 0.0018345118733122945, 0.0012463959865272045, 0.011005932465195656, 0.005545108579099178, 0.029818521812558174, 0.34172528982162476], [0.0128476582467556, 0.0070405807346105576, 0.0043700747191905975, 0.01533160824328661, 0.0027420285623520613, 0.0017848021816462278, 0.0012670168653130531, 0.011103778146207333, 0.4413999915122986, 0.009417522698640823, 0.013258809223771095, 0.005044627469033003, 0.004234619904309511, 0.011044901795685291, 0.005227820947766304, 0.010213804431259632, 0.4436703324317932], [0.013963457196950912, 0.0004852685087826103, 0.00031514567672275007, 0.0010715775424614549, 0.000465469405753538, 0.00011994507076451555, 9.289264562539756e-05, 0.0066409423016011715, 0.10461071133613586, 0.01795988157391548, 0.009873723611235619, 0.005708467215299606, 0.011519615538418293, 0.05709651857614517, 0.060107432305812836, 0.6019048094749451, 0.10806416720151901], [0.009923316538333893, 0.001042229006998241, 0.0028097371105104685, 0.003893047571182251, 0.0002943800063803792, 0.00021249905694276094, 0.00012919773871544749, 0.00298856059089303, 0.10818257927894592, 0.015430368483066559, 0.03214710205793381, 0.008477655239403248, 0.006266812793910503, 0.10698418319225311, 0.06688863039016724, 0.5240752100944519, 0.11025447398424149], [0.017295323312282562, 0.00030550482915714383, 0.00011151922080898657, 0.0005560052231885493, 0.0003936477587558329, 0.0002033496566582471, 8.925401198212057e-05, 0.002276224782690406, 0.2864246070384979, 0.015821443870663643, 0.0031072362326085567, 0.003026719903573394, 0.021945657208561897, 0.10184614360332489, 0.08656800538301468, 0.1685444712638855, 0.29148489236831665], [0.02513893134891987, 0.00035986705916002393, 0.0003152923018205911, 0.0015269137220457196, 0.0006833409424871206, 0.0007534757605753839, 0.0004035881720483303, 0.003052610205486417, 0.3965087831020355, 0.01016230508685112, 0.001222248189151287, 0.015222378075122833, 0.02500336244702339, 0.02272692508995533, 0.04186059907078743, 0.06124873831868172, 0.3938107192516327], [0.018043674528598785, 0.0005647705402225256, 0.00013937160838395357, 0.0004187797021586448, 0.00029265141347423196, 0.00011341588833602145, 6.516977009596303e-05, 0.003693226957693696, 0.40424126386642456, 0.0065319109708070755, 0.003817638847976923, 0.0015745162963867188, 0.01423345785588026, 0.032373636960983276, 0.06914874166250229, 0.03475236892700195, 0.40999534726142883], [0.008435001596808434, 0.0004022587963845581, 0.0004470115527510643, 0.0009707273566164076, 0.000670029257889837, 0.00029795794398523867, 0.0002571486111264676, 0.002384831430390477, 0.42509859800338745, 0.013429762795567513, 0.00517049478366971, 0.0032699573785066605, 0.0110192084684968, 0.023920413106679916, 0.03501049801707268, 0.03921378776431084, 0.43000227212905884], [0.006235255394130945, 0.0008490421460010111, 0.0007377707515843213, 0.0014265619684010744, 0.0005125260213389993, 0.00031963468063622713, 0.000337122764904052, 0.003331746906042099, 0.31864526867866516, 0.019486485049128532, 0.032194584608078, 0.011964375153183937, 0.010498319752514362, 0.08868256956338882, 0.04845643416047096, 0.13580313324928284, 0.32051917910575867], [0.01278546079993248, 0.006674907170236111, 0.004197892267256975, 0.014472641050815582, 0.002629952970892191, 0.0017473259940743446, 0.0012211804278194904, 0.010640420950949192, 0.4423478841781616, 0.009551836177706718, 0.013386709615588188, 0.005114047788083553, 0.004195861052721739, 0.0107945641502738, 0.005213086027652025, 0.010380597785115242, 0.4446457624435425]], [[0.023240748792886734, 0.07953847944736481, 0.16248755156993866, 0.12789462506771088, 0.06906704604625702, 0.27402371168136597, 0.032486360520124435, 0.10435017198324203, 0.05908270180225372, 0.003025195561349392, 0.000730594270862639, 0.000296466751024127, 0.0008506119484081864, 0.0008684821659699082, 0.0012133477721363306, 0.004668611567467451, 0.05617520585656166], [0.06305493414402008, 0.16579696536064148, 0.16351580619812012, 0.11282528191804886, 0.05173748731613159, 0.06269607692956924, 0.03162235766649246, 0.13088737428188324, 0.09096205234527588, 0.005293190944939852, 0.006355307064950466, 0.002758533926680684, 0.005849230568856001, 0.005586117040365934, 0.004126057494431734, 0.010644329711794853, 0.08628882467746735], [0.0837809145450592, 0.08363284170627594, 0.06468788534402847, 0.12506923079490662, 0.007336738519370556, 0.01852007582783699, 0.020320747047662735, 0.2166077196598053, 0.1771128624677658, 0.002309236442670226, 0.0019026253139600158, 0.001240355777554214, 0.001552533358335495, 0.0011545817833393812, 0.003917337395250797, 0.02118201181292534, 0.16967229545116425], [0.023773569613695145, 0.044085659086704254, 0.02132377028465271, 0.08987373858690262, 0.02066689357161522, 0.050990670919418335, 0.05786581337451935, 0.290880411863327, 0.1991594284772873, 0.0029574118088930845, 0.0007944938261061907, 0.0014390898868441582, 0.0016552872257307172, 0.0007095510372892022, 0.0009399499394930899, 0.003165513277053833, 0.1897188276052475], [0.010321545414626598, 0.06656690686941147, 0.005372785963118076, 0.0869201123714447, 0.007539425976574421, 0.019194528460502625, 0.046659961342811584, 0.3537028133869171, 0.20210368931293488, 0.0024764856789261103, 0.0008285234798677266, 0.0009028236963786185, 0.0011658631265163422, 0.0003240696096327156, 0.0003809835761785507, 0.0014742979547008872, 0.19406522810459137], [0.01850607432425022, 0.022093243896961212, 0.005990950856357813, 0.07804959267377853, 0.013770654797554016, 0.019559694454073906, 0.028089921921491623, 0.29072460532188416, 0.2574850618839264, 0.00461789732798934, 0.0008781043579801917, 0.0026221054140478373, 0.0015305732376873493, 0.000263807422015816, 0.0005275693256407976, 0.0028601663652807474, 0.25242987275123596], [0.010967651382088661, 0.02457348257303238, 0.010869220830500126, 0.038812778890132904, 0.009671305306255817, 0.0210882555693388, 0.0425233393907547, 0.22441640496253967, 0.31072431802749634, 0.0015137724112719297, 0.0008567758486606181, 0.0009829149348661304, 0.000794274965301156, 0.00040636619087308645, 0.0005918711540289223, 0.0012872687075287104, 0.299919992685318], [0.08603475987911224, 0.07631687819957733, 0.19062742590904236, 0.04701632633805275, 0.05650255084037781, 0.08549165725708008, 0.01968248188495636, 0.2152814269065857, 0.08952372521162033, 0.014798171818256378, 0.006798931863158941, 0.0013256615493446589, 0.00314573897048831, 0.002213665982708335, 0.006497263442724943, 0.0140540087595582, 0.08468930423259735], [0.008603562600910664, 0.002590964548289776, 0.004649112932384014, 0.00249645602889359, 0.0009996596490964293, 0.00149826449342072, 0.000688537722453475, 0.006989079527556896, 0.4781118333339691, 0.001995021477341652, 0.002414325950667262, 0.0019218079978600144, 0.002220926573500037, 0.0029377357568591833, 0.003877513576298952, 0.007813812233507633, 0.4701915383338928], [0.007183087058365345, 0.006589315831661224, 0.00023044638510327786, 0.005280859302729368, 0.001204530242830515, 0.0007620027172379196, 0.0018218496115878224, 0.02877768501639366, 0.29163217544555664, 0.11342033743858337, 0.03470993787050247, 0.012133374810218811, 0.007591197732836008, 0.012843171134591103, 0.01481074932962656, 0.15937325358390808, 0.3016361594200134], [0.033366575837135315, 0.023267026990652084, 0.012330911122262478, 0.008179254829883575, 0.001280084135942161, 0.0062731290236115456, 0.005200493149459362, 0.027896197512745857, 0.14378948509693146, 0.062079593539237976, 0.09295963495969772, 0.03584771230816841, 0.02228175662457943, 0.04181826859712601, 0.03472179174423218, 0.30199241638183594, 0.14671552181243896], [0.010625152848660946, 0.005256202537566423, 0.0009470693184994161, 0.004724381025880575, 0.0012652622535824776, 0.0022165272384881973, 0.002361852675676346, 0.023172251880168915, 0.32786795496940613, 0.09001118689775467, 0.03241894394159317, 0.023855891078710556, 0.028070909902453423, 0.013477046974003315, 0.02820405922830105, 0.06700853258371353, 0.33851683139801025], [0.008823768235743046, 0.007817736826837063, 0.002042504260316491, 0.007765134330838919, 0.0010390295647084713, 0.002331737894564867, 0.0037329283077269793, 0.03326355293393135, 0.3777431845664978, 0.03730939328670502, 0.017716044560074806, 0.021334825083613396, 0.0055310423485934734, 0.009275105781853199, 0.02409231849014759, 0.055510055273771286, 0.384671688079834], [0.027654128149151802, 0.00817696750164032, 0.004897586070001125, 0.005371118430048227, 0.0011204412439838052, 0.0036508420016616583, 0.005585335195064545, 0.019509349018335342, 0.22746598720550537, 0.07751960307359695, 0.06560271233320236, 0.05746680870652199, 0.06440310925245285, 0.016676539555191994, 0.06264568120241165, 0.12247893214225769, 0.22977489233016968], [0.0202791690826416, 0.005424231290817261, 0.0020729340612888336, 0.004089755471795797, 0.0003064309130422771, 0.0012946876231580973, 0.0028918322641402483, 0.022143656387925148, 0.29434025287628174, 0.021033572033047676, 0.02933582291007042, 0.035342998802661896, 0.03934631496667862, 0.031098520383238792, 0.06976334750652313, 0.12475145608186722, 0.296485036611557], [0.028809547424316406, 0.011441226117312908, 0.002548227086663246, 0.005870056804269552, 0.0010272151557728648, 0.0027636445593088865, 0.0021110731177031994, 0.03761543333530426, 0.19905677437782288, 0.12257896363735199, 0.1416686326265335, 0.022098811343312263, 0.031208565458655357, 0.024952851235866547, 0.023615265265107155, 0.13706472516059875, 0.20556896924972534], [0.008588515222072601, 0.00250594737008214, 0.004519786685705185, 0.002356642158702016, 0.0009649667190387845, 0.001457498176023364, 0.0006640133797191083, 0.006693936884403229, 0.47765469551086426, 0.002148671308532357, 0.0025937519967556, 0.0020521855913102627, 0.002333240583539009, 0.003032693872228265, 0.003999465610831976, 0.008252416737377644, 0.4701816439628601]], [[0.000982114695943892, 0.004091165028512478, 0.004939687438309193, 0.0011691843392327428, 0.0004179372626822442, 0.00024837313685566187, 0.00017504821880720556, 0.003871886059641838, 0.3642014265060425, 0.07570024579763412, 0.11817161738872528, 0.0011959581170231104, 0.0028538990300148726, 0.0026068768929690123, 0.006106139626353979, 0.054107941687107086, 0.35916051268577576], [0.006770129781216383, 0.040091175585985184, 0.5720412135124207, 0.05853549391031265, 0.015804467722773552, 0.00623184023424983, 0.000941671896725893, 0.0031304596923291683, 0.1481103152036667, 0.00018110869859810919, 0.0006976760923862457, 0.00011162082228111103, 0.00012310886813793331, 0.0004759879957418889, 0.0004055437457282096, 0.0005344916135072708, 0.1458137184381485], [0.01749485358595848, 0.02916434407234192, 0.02090737409889698, 0.07360083609819412, 0.019484400749206543, 0.008984182961285114, 0.004194698296487331, 0.012607067823410034, 0.4014410078525543, 0.00032298368751071393, 0.0004531797021627426, 0.00012644869275391102, 0.00033590340171940625, 0.001052728621289134, 0.0009646816179156303, 0.004289843607693911, 0.4045754671096802], [0.0065080225467681885, 0.01719985343515873, 0.020139502361416817, 0.021763848140835762, 0.12448582798242569, 0.10734974592924118, 0.01601879484951496, 0.018105080351233482, 0.3265039026737213, 7.600667595397681e-05, 0.000768825993873179, 8.489628089591861e-05, 0.0001785384665708989, 0.00040724262362346053, 0.00041737905121408403, 0.0008389552822336555, 0.33915355801582336], [0.005324306432157755, 0.0034710955806076527, 0.006156086456030607, 0.04033822566270828, 0.05107131227850914, 0.2590765058994293, 0.08856496214866638, 0.04075836390256882, 0.2466021478176117, 0.0002618652652017772, 0.0005048560560680926, 5.357438567443751e-05, 0.0004163106787018478, 0.0003822004946414381, 0.0024052902590483427, 0.004948529880493879, 0.24966426193714142], [0.008354321122169495, 0.00320628029294312, 0.004300081171095371, 0.014493655413389206, 0.014988232403993607, 0.02075227163732052, 0.05375239998102188, 0.15388235449790955, 0.3635590374469757, 0.0005612139939330518, 0.0017769794212654233, 2.2496307792607695e-05, 2.2088916011853144e-05, 6.533411215059459e-05, 0.00019873524433933198, 0.0019323339220136404, 0.35813212394714355], [0.005989552941173315, 0.000805228017270565, 0.0006162141798995435, 0.006485061254352331, 0.006694117095321417, 0.01136291865259409, 0.0027206800878047943, 0.19496288895606995, 0.3921332359313965, 0.0001232411159435287, 0.00018664235540200025, 1.6475127267767675e-05, 1.0163040315092076e-05, 8.045938557188492e-06, 2.573806887085084e-05, 0.0002803881361614913, 0.37757956981658936], [0.0021146731451153755, 0.00940559059381485, 0.00040572191937826574, 0.002102120313793421, 0.00087406812235713, 0.0010750140063464642, 0.001744489069096744, 0.021776355803012848, 0.47649356722831726, 0.03664303570985794, 0.006693859584629536, 0.000755955115891993, 0.0003247038403060287, 7.903648656792939e-05, 0.00012029314530082047, 0.0013174255145713687, 0.438073992729187], [0.02279108576476574, 0.023942915722727776, 0.01632073149085045, 0.008830530568957329, 0.003411548212170601, 0.0035038383211940527, 0.0020042245741933584, 0.025177041068673134, 0.40080955624580383, 0.03297889977693558, 0.02413228526711464, 0.005460791289806366, 0.005110255908221006, 0.003336946479976177, 0.005129239056259394, 0.026923280209302902, 0.3901367783546448], [0.0020170698408037424, 0.0008203468169085681, 0.0009687605779618025, 0.00016548443818464875, 1.966808304132428e-05, 2.170368497900199e-05, 1.7034979464369826e-05, 0.0006240619695745409, 0.2446744292974472, 0.12617836892604828, 0.2800847589969635, 0.0474822111427784, 0.01788557693362236, 0.010361931286752224, 0.0063131884671747684, 0.016214484348893166, 0.2461508959531784], [0.003918275237083435, 0.00034542419598437846, 0.00067752948962152, 0.0005303944344632328, 0.00014931897749193013, 6.736755312886089e-05, 5.1306968089193106e-05, 0.0017923499690368772, 0.3823898732662201, 0.022699471563100815, 0.02205655351281166, 0.06332850456237793, 0.02990773320198059, 0.030130116268992424, 0.017780542373657227, 0.03620373085141182, 0.3879714608192444], [0.0018869866617023945, 0.00017940874386113137, 0.0012492379173636436, 0.0003119969042018056, 9.89115287666209e-05, 3.0359014999703504e-05, 1.6386160496040247e-05, 0.00038734349072910845, 0.17270058393478394, 0.006391515955328941, 0.027016859501600266, 0.01094605028629303, 0.459575355052948, 0.03604191169142723, 0.059415191411972046, 0.04751691222190857, 0.1762349158525467], [0.0027314627077430487, 0.00019612615869846195, 0.0008190465741790831, 0.0019603949040174484, 0.0001202166240545921, 0.00015853694640100002, 4.0470415115123615e-05, 0.001131771132349968, 0.2684919238090515, 0.005442818161100149, 0.012507056817412376, 0.02179448865354061, 0.0248956810683012, 0.09579593688249588, 0.15712997317314148, 0.132270947098732, 0.27451324462890625], [0.004733952693641186, 0.00029556226218119264, 0.0008470766479149461, 0.0033797835931181908, 0.0016139313811436296, 0.00024948103236965835, 0.00015229708515107632, 0.002880000276491046, 0.24154411256313324, 0.0020931996405124664, 0.005377753172069788, 0.005055051762610674, 0.010699550621211529, 0.026457147672772408, 0.07186821103096008, 0.36919134855270386, 0.25356152653694153], [0.008436399511992931, 0.0003944433992728591, 0.0006710233283229172, 0.0019352240487933159, 0.0013254010118544102, 0.00017852858582045883, 0.0001184404463856481, 0.004959569778293371, 0.32671627402305603, 0.003515776712447405, 0.005910769104957581, 0.0023301499895751476, 0.0009229655261151493, 0.006790416315197945, 0.005160048604011536, 0.2907657325267792, 0.3398687541484833], [0.0015784422867000103, 0.0002764534729067236, 6.207280966918916e-05, 0.00012852295185439289, 0.00013409389066509902, 6.685530388494954e-05, 1.4973677934904117e-05, 0.00055623275693506, 0.47241654992103577, 0.0062804329209029675, 0.0037998200859874487, 0.0007399527239613235, 0.00010288133489666507, 0.0009065078338608146, 0.0009333392954431474, 0.00892754178494215, 0.5030752420425415], [0.02283552475273609, 0.02228902280330658, 0.016071077436208725, 0.008608848787844181, 0.003482910804450512, 0.003652083920314908, 0.002056853612884879, 0.024583343416452408, 0.4017147123813629, 0.032261256128549576, 0.02376566268503666, 0.00534425862133503, 0.005090110935270786, 0.003414693521335721, 0.005372276995331049, 0.027864601463079453, 0.39159271121025085]]], [[[3.7261415286593547e-07, 3.222988380002789e-05, 2.1976880816509947e-05, 7.972150797286304e-07, 3.978600915388597e-08, 6.765957095922204e-06, 1.1826134738157634e-08, 0.00016382770263589919, 0.49526330828666687, 3.740987253308958e-08, 3.211378327705461e-07, 6.937708185716929e-09, 1.113583010525776e-11, 3.039694718154351e-09, 7.562473980371465e-10, 7.514056221680221e-08, 0.5045101642608643], [2.4386691777067426e-08, 0.0011898259399458766, 0.9977213740348816, 6.672040035482496e-05, 2.0240988760633627e-06, 1.00907727755839e-05, 1.5420846821712075e-09, 1.8474871410489868e-08, 0.0005069724866189063, 6.589774559362382e-11, 5.7181419599317e-09, 1.4601390097013223e-09, 4.4432074020051004e-08, 2.2959119050369736e-09, 6.537946850571075e-10, 1.0630875069139734e-09, 0.0005028883460909128], [1.4852690810585045e-07, 1.246831288881367e-05, 4.1484221583232284e-05, 0.9986849427223206, 7.25875406715204e-06, 2.363831299589947e-06, 2.3903021784121847e-08, 5.352884500098298e-07, 0.0006439454737119377, 3.0372256359240124e-12, 7.303600085828421e-11, 2.5988408647315e-10, 4.88320772706885e-11, 5.637434696836863e-08, 5.461978247467414e-08, 1.4145443856250495e-06, 0.0006053330725990236], [5.53762424804205e-10, 1.0791179647640092e-06, 1.1149166994073312e-06, 1.9628765585366637e-05, 0.9962438344955444, 0.0037225347477942705, 6.1436082887667e-08, 2.9457176253799844e-08, 5.630980467685731e-06, 4.7451619185606003e-14, 1.9717025321469572e-12, 1.235864383920815e-12, 3.0372889533308856e-12, 2.6449308021536666e-11, 2.049460427755445e-12, 1.1233368679697264e-09, 6.0491220210678875e-06], [2.1145132519939658e-11, 1.3640261142811028e-09, 2.100065103149973e-06, 2.3976385818968993e-06, 0.001124573522247374, 0.9988652467727661, 1.8541946644745622e-07, 2.5892024080320653e-09, 2.6765630991576472e-06, 1.0314777596507133e-14, 2.467993969184224e-15, 4.917058446063209e-14, 6.861952846215491e-12, 1.0769500569107748e-10, 5.7983628315438906e-11, 3.320865457623334e-11, 2.7329479053150862e-06], [6.539127746230111e-12, 3.2532457630574108e-12, 2.8948669850148434e-11, 1.1665697297047473e-09, 2.4565700168510674e-11, 1.9457364430763846e-07, 0.9999946355819702, 4.988308319298085e-06, 9.613298601607312e-08, 2.918147494479495e-13, 1.3918184503134909e-14, 2.525621775514151e-19, 1.1193925036950416e-18, 1.6104017040686598e-17, 4.490480456551503e-14, 5.975308789429867e-12, 9.181178484141128e-08], [3.490912073300656e-11, 2.038438168261436e-11, 1.072288004916322e-11, 7.56949347646696e-09, 4.0809530234275915e-12, 1.068536107595719e-06, 0.00015022858860902488, 0.9998425245285034, 3.1012702947919024e-06, 3.3899256015115786e-13, 2.76252754785616e-16, 8.467104760623754e-20, 1.786232878675188e-20, 6.642720231221392e-18, 3.124306860452378e-15, 1.8195808193510743e-09, 2.999131083925022e-06], [3.9280561026089345e-09, 4.40032672486268e-05, 4.387047614073936e-09, 2.585681224687164e-09, 3.2712735298368045e-11, 2.2498031881923453e-08, 4.915975959640662e-10, 0.00041482673259451985, 0.5418294668197632, 0.002193771069869399, 1.8509306087821642e-08, 4.306588505947895e-12, 6.141861046831553e-17, 3.121117887285084e-16, 8.327319817860376e-15, 5.5383850283696745e-11, 0.4555179178714752], [0.0018904717871919274, 0.0026074456982314587, 0.0023896945640444756, 0.0009480819571763277, 0.00010249244223814458, 0.0004825378127861768, 3.3532203815411776e-05, 0.0020040026865899563, 0.49977996945381165, 0.0020556191448122263, 0.0033260819036513567, 0.0006128359236754477, 1.9764953322010115e-05, 0.0003356840752530843, 0.00031012206454761326, 0.0011823587119579315, 0.4819193184375763], [5.5900110929041347e-11, 5.489450671802842e-09, 4.5048097196964676e-11, 7.679462263581599e-14, 5.003851794585989e-15, 3.4032084333772417e-13, 1.7472556672446134e-14, 6.379510201354188e-12, 9.338275958725717e-06, 4.860562512476463e-06, 0.9999747276306152, 1.3033870800427394e-06, 2.6354447513199375e-09, 3.655958313864005e-10, 1.089804288478824e-11, 2.0741530021295418e-11, 9.709798177937046e-06], [3.0310332022054354e-07, 4.0704941284275264e-07, 2.063020758669154e-07, 1.2044509389852465e-08, 2.7207588959576867e-10, 2.9160379666492986e-10, 5.283444919090309e-14, 1.134775118316611e-08, 0.00834314152598381, 8.059894753387198e-05, 0.005084274336695671, 0.927973210811615, 0.048550404608249664, 0.0013918058248236775, 2.7358555598766543e-06, 3.4393863757031795e-07, 0.008572385646402836], [1.8136387574044233e-12, 4.380151623351036e-12, 2.2198569371578714e-10, 9.926656935679845e-15, 1.4419840104959447e-13, 9.505274985079776e-15, 1.7461437641582615e-19, 8.140769135973301e-18, 2.9086921315979453e-08, 1.5901915201288475e-11, 9.64218713761511e-08, 3.8658194512208865e-07, 0.9999967813491821, 2.142684934369754e-06, 5.351345748749736e-07, 2.2377740285794978e-11, 2.9111786759017377e-08], [1.7336019286773308e-09, 2.91932877871659e-09, 9.984889857150847e-07, 4.1409612094867043e-07, 3.302599946991558e-12, 4.7198887159760616e-11, 5.369033871465388e-14, 1.08984356261832e-10, 0.00017371562717016786, 1.8614059182908704e-09, 5.438069479168917e-07, 0.0009472542442381382, 1.4865820958220866e-05, 0.973537802696228, 0.024571465328335762, 0.0005725330556742847, 0.00018050771905109286], [1.9958056540758662e-08, 3.4345565280702317e-10, 4.64573872704932e-07, 3.787027225143902e-08, 2.4788260333252765e-09, 1.061526333501206e-08, 4.363850947264325e-11, 9.337582790314158e-11, 0.0031896645668894053, 1.1463789917343092e-08, 2.4626398698046614e-08, 2.8149049740022747e-06, 0.0001039750495692715, 0.00037147573311813176, 0.991554319858551, 0.0016060750931501389, 0.0031711491756141186], [8.44365430907601e-08, 2.1463577581926074e-09, 8.311811683370252e-08, 4.572948739678395e-07, 6.729678481143253e-10, 6.209824321423696e-10, 3.065240727906371e-09, 3.0237828241297393e-07, 0.005005085840821266, 2.0744550965900999e-07, 7.683606639830032e-08, 2.945804988829792e-10, 1.979439012700368e-08, 4.18948802689556e-05, 0.0003109700046479702, 0.989566445350647, 0.005074354819953442], [3.063812759052098e-09, 1.3592878644885786e-07, 1.2898936141425565e-08, 2.1179507037061285e-09, 4.562449973377625e-08, 2.579345803610522e-08, 8.326400007842294e-13, 4.925895495944133e-07, 0.4880203604698181, 1.9707320007000817e-06, 7.449017402905156e-09, 1.3098072973449781e-11, 1.2642247105675974e-14, 5.824303817014709e-10, 2.3212118893667366e-09, 0.0003028100181836635, 0.511674165725708], [0.0018656085012480617, 0.0025325578171759844, 0.002368832705542445, 0.0009074422414414585, 0.0001072189916158095, 0.0004995720810256898, 3.179698614985682e-05, 0.0018877851543948054, 0.4999793767929077, 0.002010409953072667, 0.0032622325234115124, 0.0006183038931339979, 2.003933332161978e-05, 0.00034324248554185033, 0.0003153206780552864, 0.0011667012004181743, 0.4820835590362549]], [[0.0031687787268310785, 0.0021072241943329573, 0.0009463902679271996, 0.00277671217918396, 0.0005172099336050451, 0.002292200457304716, 0.0003313654160592705, 0.0021580031607300043, 0.06574764847755432, 0.6438615322113037, 0.04106004908680916, 0.0467059351503849, 0.016375252977013588, 0.04054352268576622, 0.010232903994619846, 0.05405689403414726, 0.06711835414171219], [0.007784616202116013, 0.03844992816448212, 0.3426261246204376, 0.0698457658290863, 0.028900451958179474, 0.030795125290751457, 0.004827134311199188, 0.020057201385498047, 0.22330595552921295, 0.002653072588145733, 0.0019380440935492516, 0.0010743284365162253, 0.0005326402024365962, 0.0011532068019732833, 0.0005938852555118501, 0.003066868055611849, 0.222395658493042], [0.0031111501157283783, 0.004433536436408758, 0.006661070045083761, 0.005048063118010759, 0.002987812040373683, 0.0036905640736222267, 0.001532705151475966, 0.008228489197790623, 0.48094525933265686, 0.001087543903850019, 0.0008998917764984071, 0.0006031688535586, 0.0004564943665172905, 0.0007406265358440578, 0.0006603269721381366, 0.0021899729035794735, 0.476723313331604], [0.009134180843830109, 0.023849118500947952, 0.01980331540107727, 0.00792919285595417, 0.08268915861845016, 0.3063957691192627, 0.1324813961982727, 0.033980075269937515, 0.17825734615325928, 0.008773121051490307, 0.002051224699243903, 0.0028216890059411526, 0.004565601237118244, 0.004844783805310726, 0.002173337386921048, 0.0015979105373844504, 0.1786527931690216], [0.0033792974427342415, 0.003261215751990676, 0.001668277196586132, 0.005956524051725864, 0.025913964956998825, 0.2673491835594177, 0.24290718138217926, 0.008580110035836697, 0.21558590233325958, 0.003495622193440795, 0.001015661284327507, 0.0008783711236901581, 0.0019982093945145607, 0.0005529147456400096, 0.0004996185889467597, 0.0006683977553620934, 0.216289684176445], [0.006898961961269379, 0.002756655914708972, 0.002344513079151511, 0.001128703006543219, 0.002137027448043227, 0.006188714411109686, 0.004916543606668711, 0.013192027807235718, 0.47812193632125854, 0.0020387747790664434, 0.0024558338336646557, 0.0003375773085281253, 0.000317808473482728, 0.0004023729416076094, 0.00030882220016792417, 0.0007135040941648185, 0.4757401943206787], [0.011171341873705387, 0.003672228893265128, 0.0013586024288088083, 0.0016394970007240772, 0.009315996430814266, 0.05581178143620491, 0.0144527992233634, 0.01816549152135849, 0.4430449604988098, 0.0007274269592016935, 0.001332490355707705, 0.0002902174019254744, 0.0003721984685398638, 0.00020304735517129302, 0.00010823544289451092, 0.0001696606632322073, 0.4381638467311859], [0.0615169033408165, 0.020606184378266335, 0.003415802726522088, 0.02264251932501793, 0.014627281576395035, 0.011750688776373863, 0.003223121864721179, 0.07565398514270782, 0.338276743888855, 0.06219317764043808, 0.01544131338596344, 0.010523424483835697, 0.004260147921741009, 0.0021767974831163883, 0.002337446203455329, 0.01583000086247921, 0.33552438020706177], [0.013904713094234467, 0.006687380839139223, 0.01368147972971201, 0.006337393075227737, 0.0022896481677889824, 0.004136144183576107, 0.0010569773148745298, 0.008383078500628471, 0.4509871006011963, 0.012893562205135822, 0.007830215618014336, 0.003152543446049094, 0.0021458270493894815, 0.004008903633803129, 0.003495629411190748, 0.010987005196511745, 0.4480225741863251], [0.009342015720903873, 0.0005970665370114148, 0.0016270920168608427, 0.0008652874385006726, 0.00021021503198426217, 0.0008255654247477651, 5.688759847544134e-05, 0.0006628589471802115, 0.2532263994216919, 0.06279492378234863, 0.04000402241945267, 0.10017304122447968, 0.03889627754688263, 0.10627750307321548, 0.06585460156202316, 0.060199279338121414, 0.25838688015937805], [0.00470384256914258, 0.00025547738187015057, 0.001014219131320715, 0.0006298162043094635, 0.00017429704894311726, 0.00048186612548306584, 3.7683381378883496e-05, 0.0008605144685134292, 0.4193834662437439, 0.019610490649938583, 0.014176217839121819, 0.020950602367520332, 0.016732197254896164, 0.021587757393717766, 0.020667394623160362, 0.03181454911828041, 0.426919549703598], [0.005506251938641071, 0.00016714820230845362, 0.0006694486946798861, 5.820449223392643e-05, 6.0141283029224724e-05, 0.0006462655728682876, 5.355328903533518e-05, 0.00023431392037309706, 0.43320852518081665, 0.0037796704564243555, 0.005220563150942326, 0.005452694837003946, 0.02280672825872898, 0.031833767890930176, 0.04400983080267906, 0.009591441601514816, 0.43670135736465454], [0.0028302576392889023, 0.00018466179608367383, 0.00043115936568938196, 6.672646850347519e-05, 6.347324961097911e-05, 0.0007406906806863844, 0.00013406721700448543, 0.0007323641330003738, 0.4349660575389862, 0.005022261757403612, 0.012043071910738945, 0.004549701232463121, 0.006130059715360403, 0.022899653762578964, 0.06324814260005951, 0.006689904723316431, 0.4392678737640381], [0.0034591418225318193, 0.0001908911654027179, 0.0007750068325549364, 0.00028781365836039186, 6.777868838980794e-05, 0.0008258150774054229, 9.748530283104628e-05, 0.0006033903337083757, 0.4620514512062073, 0.011492528952658176, 0.005856774281710386, 0.0018466287292540073, 0.0012969066156074405, 0.007690042722970247, 0.017925282940268517, 0.019632447510957718, 0.46590057015419006], [0.00377830071374774, 0.00018883163284044713, 0.00120546855032444, 0.0001869543775683269, 4.318389983382076e-05, 0.0004842808411922306, 6.236963963601738e-05, 0.0004986025160178542, 0.47327324748039246, 0.005997870117425919, 0.003884568577632308, 0.0007923234952613711, 0.000982806202955544, 0.005837774369865656, 0.008305312134325504, 0.014881394803524017, 0.4795967638492584], [0.005138145759701729, 0.0006547124939970672, 0.00031399898580275476, 0.001303725061006844, 0.0004753138346131891, 0.001763355452567339, 0.00027513381792232394, 0.0016112664015963674, 0.4652751088142395, 0.009864411316812038, 0.009711635299026966, 0.002187425969168544, 0.0009307116852141917, 0.006786013953387737, 0.010836858302354813, 0.011738604865968227, 0.4711337387561798], [0.013840503990650177, 0.006591174751520157, 0.013618766330182552, 0.006268083117902279, 0.002270481549203396, 0.004129382781684399, 0.0010570719605311751, 0.008326280862092972, 0.45110708475112915, 0.012794177047908306, 0.007879385724663734, 0.003156723454594612, 0.0021648616530001163, 0.004040877800434828, 0.0035543092526495457, 0.011032868176698685, 0.4481678307056427]], [[0.004646711051464081, 0.02769767865538597, 0.018233714625239372, 0.0135768111795187, 0.013318194076418877, 0.053658414632081985, 0.011534101329743862, 0.03239040821790695, 0.39864856004714966, 0.009872550144791603, 0.0030370792374014854, 0.004227162338793278, 0.0005076945526525378, 0.0012006046017631888, 0.0015230132266879082, 0.005872041452676058, 0.4000552296638489], [0.0030200525652617216, 0.015542035922408104, 0.03529181331396103, 0.24123111367225647, 0.004646776709705591, 0.008606866002082825, 0.0007329742657020688, 0.003434254787862301, 0.33983224630355835, 0.0016027145320549607, 0.00038751622196286917, 0.0007601724937558174, 0.0010024802759289742, 0.00017135724192485213, 0.0004500047070905566, 0.008400284685194492, 0.3348873257637024], [0.00117931526619941, 0.009039977565407753, 0.006407999433577061, 0.0024088541977107525, 0.0008406472043134272, 0.0003036821726709604, 0.00010241178824799135, 0.0008063734858296812, 0.4865339696407318, 0.0006006041658110917, 0.0006850181962363422, 0.0003370451449882239, 0.0001005050289677456, 0.00025179461226798594, 0.0005235635908320546, 0.001439388026483357, 0.4884389042854309], [0.0006322811241261661, 0.013885417953133583, 0.03904265537858009, 0.02093936875462532, 0.016451114788651466, 0.10240742564201355, 0.0029610719066113234, 0.008978908881545067, 0.39699795842170715, 0.0006929365335963666, 9.564725769450888e-05, 0.00032427359838038683, 0.0003493450058158487, 0.00019777752459049225, 0.0002632479299791157, 0.0052959490567445755, 0.39048466086387634], [0.0005937740206718445, 0.0065855649299919605, 0.0012340358225628734, 0.02115865796804428, 0.0045451815240085125, 0.10851363837718964, 0.002723093843087554, 0.004589584190398455, 0.4261760413646698, 0.00048638577573001385, 3.7827634514542297e-05, 7.17494694981724e-05, 0.00011375904432497919, 8.189241634681821e-05, 0.0002782107039820403, 0.002025419380515814, 0.42078515887260437], [0.0014794886810705066, 0.004135075956583023, 0.0005052487249486148, 0.004656696692109108, 0.00471864826977253, 0.011638039723038673, 0.05843871086835861, 0.006999869365245104, 0.45093467831611633, 0.002576622413471341, 0.0004004511865787208, 0.0001797809381969273, 4.0434664697386324e-05, 0.0001752369716996327, 0.00027377723017707467, 0.0037011492531746626, 0.44914600253105164], [0.00045148268691264093, 0.006556532345712185, 0.002436431823298335, 0.013392260298132896, 0.013839494436979294, 0.5427978038787842, 0.009187949821352959, 0.02432774379849434, 0.1913284957408905, 0.0029970393516123295, 1.4134778211882804e-05, 3.397305044927634e-05, 4.923252708977088e-05, 7.818665471859276e-05, 0.00011753539001801983, 0.0027835711371153593, 0.1896081417798996], [0.004975053481757641, 0.005287251900881529, 0.0010606514988467097, 0.008493514731526375, 0.009217924438416958, 0.023655859753489494, 0.004463125951588154, 0.06002442538738251, 0.44074684381484985, 0.005570522975176573, 0.003539224388077855, 0.0005595625261776149, 2.568858144513797e-05, 3.507287328829989e-05, 3.211749572074041e-05, 0.0020424367394298315, 0.4302707612514496], [0.01662576012313366, 0.013676837086677551, 0.011885679326951504, 0.009910515509545803, 0.004302979912608862, 0.007309566717594862, 0.002795423846691847, 0.014664201065897942, 0.43024855852127075, 0.009110670536756516, 0.016728438436985016, 0.008570024743676186, 0.0020402141381055117, 0.00516263535246253, 0.005033999681472778, 0.01326029933989048, 0.42867419123649597], [0.00031312531791627407, 0.0001334080589003861, 4.8179990699281916e-05, 2.344835775147658e-05, 1.4353172446135432e-05, 8.410756709054112e-05, 1.7194215615745634e-05, 0.00043542252387851477, 0.48370641469955444, 0.016668910160660744, 0.00570331746712327, 0.004899709019809961, 8.922466076910496e-05, 0.00045920515549369156, 0.00039906823076307774, 0.003689597360789776, 0.4833153784275055], [0.0025753150694072247, 0.0007899104384705424, 0.0023585858289152384, 0.0030938785057514906, 5.673373743775301e-05, 0.00017418582865502685, 1.5397719835164025e-05, 0.0018498236313462257, 0.3883779048919678, 0.056232329457998276, 0.00946682970970869, 0.01435126457363367, 0.04634745046496391, 0.0021499686408787966, 0.004345921333879232, 0.07809703052043915, 0.3897174894809723], [0.0004876543825957924, 0.0002595835248939693, 0.0008621607557870448, 0.00016694313671905547, 4.679569246945903e-05, 5.4062729759607464e-05, 2.260996780023561e-06, 0.00020927352306898683, 0.38169941306114197, 0.0023388175759464502, 0.0013290435308590531, 0.016598215326666832, 0.1351580023765564, 0.026289353147149086, 0.04276518523693085, 0.014793241396546364, 0.37693995237350464], [0.0007472332799807191, 0.000532722391653806, 0.00033791776513680816, 0.0002527469478081912, 1.695405262580607e-05, 3.529287641867995e-05, 1.6808779719212907e-06, 0.00019044746295548975, 0.48241952061653137, 0.005815370008349419, 0.0012918816646561027, 0.01268912572413683, 0.0014524844009429216, 0.0027702704537659883, 0.0037103029899299145, 0.004510845988988876, 0.4832253158092499], [0.00044030402204953134, 0.0002678841119632125, 0.0002080110862152651, 0.0004459947522263974, 1.5997904483811e-05, 0.00011288871610304341, 1.1075761904066894e-05, 0.0001167506561614573, 0.2984003722667694, 0.0015657480107620358, 0.0008177456329576671, 0.027135416865348816, 0.007639724295586348, 0.03391946479678154, 0.14812976121902466, 0.17753243446350098, 0.3032402992248535], [0.001518476172350347, 0.0006707650027237833, 0.0003037183778360486, 0.0008619431755505502, 0.00010589713929221034, 0.0001338131696684286, 1.626178163860459e-05, 7.222404383355752e-05, 0.43262436985969543, 0.0012514317641034722, 0.007958325557410717, 0.011023764498531818, 0.0045568253844976425, 0.028736360371112823, 0.01900426484644413, 0.053583186119794846, 0.43757835030555725], [0.0007229795446619391, 0.0002856792707461864, 0.00018265539256390184, 0.0010278918780386448, 0.0002493975916877389, 0.00036922309664078057, 1.304705256188754e-05, 0.00017484095587860793, 0.4723462164402008, 0.0015171103877946734, 0.0034793203230947256, 0.000799223140347749, 0.0002524151641409844, 0.0015764248091727495, 0.0018667629919946194, 0.03574001044034958, 0.4793967604637146], [0.016689607873558998, 0.013602039776742458, 0.011726605705916882, 0.009826768189668655, 0.004278423264622688, 0.007250617258250713, 0.002754163695499301, 0.014515035785734653, 0.4299820363521576, 0.009232072159647942, 0.01706676557660103, 0.008602065965533257, 0.0020937330555170774, 0.005293664988130331, 0.005194936413317919, 0.01352635957300663, 0.42836514115333557]], [[0.0009357659728266299, 0.0009855087846517563, 0.006272437982261181, 0.0006815640954300761, 0.00017691338143777102, 0.000455359899206087, 6.815097731305286e-05, 0.00486785639077425, 0.48824578523635864, 0.0011436513159424067, 0.0012370236217975616, 0.0004392194387037307, 0.0001492508890805766, 0.0002657849108800292, 0.00023867652635090053, 0.0030885462183505297, 0.49074864387512207], [0.011824224144220352, 0.031619418412446976, 0.013066585175693035, 0.0033593676052987576, 0.000999400275759399, 0.0004325775080360472, 0.00030561830499209464, 0.010319091379642487, 0.4673183262348175, 0.00011453475599410012, 0.0018660679925233126, 7.23780831322074e-05, 0.00010274900705553591, 0.00011686662037391216, 0.0002201199094997719, 0.00024283005041070282, 0.45801982283592224], [0.002653721487149596, 0.007376522291451693, 0.012308141216635704, 0.0012607760727405548, 0.0008716582669876516, 0.00048471501213498414, 2.9569455364253372e-05, 0.0008004661649465561, 0.4883043169975281, 7.588630978716537e-05, 0.0005660575698129833, 9.463145397603512e-05, 3.113040293101221e-05, 3.555275179678574e-05, 0.0001165039575425908, 0.0004999481607228518, 0.48449042439460754], [0.0019072330323979259, 0.06150224432349205, 0.01568525843322277, 0.018371695652604103, 0.049505941569805145, 0.011806926690042019, 0.005584845319390297, 0.011089038103818893, 0.41280829906463623, 0.00034343224251642823, 0.001627131481654942, 0.0004034104058519006, 0.000142949735163711, 0.00019744868041016161, 0.0003961980401072651, 0.0011452591279521585, 0.40748274326324463], [0.0007226336747407913, 0.010250167921185493, 0.0017117736861109734, 0.004440348129719496, 0.0017453273758292198, 0.007101535797119141, 0.0011321828933432698, 0.005288560409098864, 0.4838944375514984, 3.477352220215835e-05, 0.0001616227236809209, 4.713012822321616e-05, 3.613242370192893e-06, 2.7937687264056876e-05, 0.00018145858484786004, 0.0010602050460875034, 0.4821964204311371], [0.0009220391511917114, 0.00203683041036129, 0.0016831494867801666, 0.0017126871971413493, 0.004069022834300995, 0.0038726930506527424, 0.00122427090536803, 0.003867652965709567, 0.4925641119480133, 0.00023894365585874766, 0.00020664882322307676, 1.2736146345559973e-05, 6.886805749672931e-06, 2.509949990781024e-05, 0.0002232462866231799, 0.0014253894332796335, 0.48590853810310364], [0.0005435695638880134, 0.004219656344503164, 0.004036516882479191, 0.007169567979872227, 0.02241043746471405, 0.671183705329895, 0.035876043140888214, 0.005130477715283632, 0.12443186342716217, 0.00025697500677779317, 5.910365507588722e-05, 2.2748319679521956e-05, 3.77723372366745e-05, 0.0001121274835895747, 6.217126065166667e-05, 0.00010925692913588136, 0.12433809041976929], [0.0059726727195084095, 0.0064332024194300175, 0.005674977786839008, 0.012177813798189163, 0.029017139226198196, 0.07363323122262955, 0.02635008841753006, 0.06776728481054306, 0.3844427764415741, 0.002214405918493867, 0.004718646872788668, 0.00012510159285739064, 0.00030144883203320205, 9.775700891623273e-05, 0.00012138995225541294, 0.0007765593472868204, 0.38017556071281433], [0.01789006032049656, 0.011232955381274223, 0.013579105027019978, 0.006586464587599039, 0.0031376779079437256, 0.005298648029565811, 0.0014133123913779855, 0.019931431859731674, 0.43546125292778015, 0.007066912483423948, 0.014798990450799465, 0.0063568647019565105, 0.003019228344783187, 0.0030720492359250784, 0.003858806099742651, 0.012525654397904873, 0.43477076292037964], [0.002307293238118291, 0.0005252473638392985, 8.809447899693623e-05, 0.0001066939948941581, 5.142863665241748e-05, 0.00013020240294281393, 2.280935223097913e-05, 0.0030361642129719257, 0.4866974949836731, 0.003110808553174138, 0.017023121938109398, 0.0004895227611996233, 0.00017146248137578368, 4.922522930428386e-05, 8.410107693634927e-05, 0.0006245755939744413, 0.48548176884651184], [0.003925621509552002, 0.0012905444018542767, 0.00038357198354788125, 0.00019414257258176804, 6.96040442562662e-05, 7.445819937856868e-05, 1.7682017642073333e-05, 0.002358929254114628, 0.47390303015708923, 0.010795599780976772, 0.021730123087763786, 0.004094819072633982, 0.0009392796782776713, 0.0022257231175899506, 0.0014261604519560933, 0.002192050451412797, 0.4743787348270416], [0.008202116936445236, 0.0015130232786759734, 0.0008207476348616183, 0.00011114784865640104, 3.075272616115399e-05, 5.873592454008758e-05, 3.500822640489787e-05, 0.0019902423955500126, 0.4695906341075897, 0.0009293457260355353, 0.02703288197517395, 0.0015253170859068632, 0.005303015001118183, 0.001179198152385652, 0.006391364149749279, 0.0037080796901136637, 0.47157853841781616], [0.0007976963534019887, 0.0008520035771653056, 0.00030975311528891325, 0.00020254332048352808, 1.3558767932408955e-05, 7.497619662899524e-05, 2.2740589429304237e-06, 0.00027519604191184044, 0.4260416328907013, 0.0004453066794667393, 0.010177896358072758, 0.1344641149044037, 0.000603098887950182, 0.00024383763957303017, 0.0008044102578423917, 0.0010347836650907993, 0.4236568212509155], [0.0019524323288351297, 0.0002637382713146508, 0.0003940958995372057, 0.0001262571895495057, 2.7685424356604926e-05, 7.109082798706368e-05, 1.3022981875110418e-05, 0.00043486119830049574, 0.46897876262664795, 0.0009151546400971711, 0.002930409973487258, 0.0016912224236875772, 0.0021614073775708675, 0.005406985059380531, 0.039821773767471313, 0.006688544526696205, 0.46812260150909424], [0.002520602662116289, 0.0002614275144878775, 0.0005641995812766254, 0.00016588994185440242, 0.00012261020310688764, 0.00019193170010112226, 3.556019510142505e-05, 0.0006151711568236351, 0.37359359860420227, 0.004681902006268501, 0.01112336665391922, 0.00816743541508913, 0.01294596679508686, 0.1693142205476761, 0.035054560750722885, 0.007097503636032343, 0.3735440671443939], [0.0023108343593776226, 0.0009366289596073329, 0.0003248245920985937, 0.000675665563903749, 0.00039208782254718244, 0.000510399870108813, 5.507854075403884e-05, 0.0022336547262966633, 0.47829505801200867, 0.0012756776995956898, 0.012313233688473701, 0.0016621029935777187, 0.001625137054361403, 0.004917402286082506, 0.004686739295721054, 0.008417991921305656, 0.4793674945831299], [0.017968175932765007, 0.01134131196886301, 0.013261078856885433, 0.006517610512673855, 0.0031680434476584196, 0.005264427978545427, 0.0013994675828143954, 0.019656673073768616, 0.4352993667125702, 0.007122380658984184, 0.015048257075250149, 0.006418908480554819, 0.0030963211320340633, 0.0031262042466551065, 0.003989494405686855, 0.012708148919045925, 0.4346141219139099]], [[0.0030689863488078117, 0.0033166492357850075, 0.00242445501498878, 0.0004114684124942869, 0.0001578721567057073, 0.0005789128481410444, 3.8072739698691294e-05, 0.0015109134837985039, 0.17528407275676727, 0.07361219078302383, 0.44687125086784363, 0.06202247738838196, 0.02273287996649742, 0.012525404803454876, 0.008559582754969597, 0.007263770792633295, 0.17962102591991425], [0.003965090494602919, 0.03982608765363693, 0.010935517959296703, 0.030606640502810478, 0.006151079200208187, 0.005054636858403683, 0.000700213888194412, 0.0068400949239730835, 0.44721174240112305, 0.001304612960666418, 0.0008193199173547328, 0.0011320802150294185, 0.0003346427693031728, 5.79663974349387e-05, 0.00015036006516311318, 0.0004494161403272301, 0.44446060061454773], [0.010818920098245144, 0.1957474648952484, 0.05118459090590477, 0.017250701785087585, 0.00452144630253315, 0.007591108791530132, 0.0002662086335476488, 0.002007861156016588, 0.3479042053222656, 0.0017605797620490193, 0.0048415581695735455, 0.0035292701795697212, 0.0038675395771861076, 0.00046889681834727526, 0.0007459585322067142, 0.0008902664994820952, 0.3466032147407532], [0.0012930310331285, 0.018686266615986824, 0.022953161969780922, 0.019466092810034752, 0.05568217858672142, 0.009044455364346504, 0.001302405260503292, 0.0017953389324247837, 0.43391719460487366, 0.00026276911376044154, 0.00012244898243807256, 0.0022720429114997387, 0.0011389699066057801, 0.0008332174038514495, 0.00018899368296843022, 0.0005446358700282872, 0.4304966926574707], [0.000962406222242862, 0.005701298825442791, 0.010019714944064617, 0.01962333731353283, 0.012387268245220184, 0.010740355588495731, 0.0003362670831847936, 0.001200356986373663, 0.4691201150417328, 6.658733036601916e-05, 1.943446659424808e-05, 0.00012924168549943715, 0.00012002202129224315, 0.00015755764616187662, 0.00019995974435005337, 0.0015169369289651513, 0.4676991403102875], [0.0022300526034086943, 0.0040331617929041386, 0.008002933114767075, 0.016305968165397644, 0.051353368908166885, 0.02401667647063732, 0.0011861160164698958, 0.003552023321390152, 0.44315075874328613, 0.00011782488581957296, 8.638935105409473e-05, 4.946976332576014e-05, 0.00012513506226241589, 7.789777737343684e-05, 0.00013485958334058523, 0.001111936173401773, 0.44446536898612976], [0.001013406552374363, 0.004529082681983709, 0.005132297053933144, 0.013445733115077019, 0.3318427503108978, 0.0748477652668953, 0.004088751971721649, 0.013508574105799198, 0.27495595812797546, 0.00016681548731867224, 2.5551471480866894e-05, 9.630837303120643e-05, 2.7533063985174522e-05, 4.698890552390367e-05, 2.442480945319403e-05, 0.0005585831822827458, 0.27568942308425903], [0.002854519058018923, 0.00703628733754158, 0.022958945482969284, 0.039655089378356934, 0.02283470332622528, 0.39655572175979614, 0.028923355042934418, 0.01945863850414753, 0.2272329330444336, 0.0009313879418186843, 0.0003862079174723476, 0.00021691610163543373, 0.0002444096899125725, 0.000510828394908458, 0.0006298835505731404, 0.0011067036539316177, 0.22846335172653198], [0.012420429848134518, 0.012259387411177158, 0.009217140264809132, 0.0065152873285114765, 0.005099431611597538, 0.01140523049980402, 0.002370786387473345, 0.011538098566234112, 0.43145236372947693, 0.009270879440009594, 0.01656862534582615, 0.00722168292850256, 0.006101866718381643, 0.00454137334600091, 0.0070095788687467575, 0.014235121197998524, 0.43277260661125183], [0.001373848645016551, 0.0002727459941525012, 0.0002512687351554632, 0.0011196366976946592, 0.0005515392404049635, 0.0022668209858238697, 0.0001824704377213493, 0.004791573155671358, 0.47241953015327454, 0.0212840735912323, 0.004951787181198597, 0.0022337117698043585, 0.0027306077536195517, 0.0016563142416998744, 0.0032291095703840256, 0.007374764885753393, 0.4733101725578308], [0.0019508089171722531, 0.0007906017708592117, 0.00024089193902909756, 0.0009003594750538468, 0.00032274119439534843, 0.0012441696599125862, 9.48059605434537e-05, 0.005818368401378393, 0.4264468848705292, 0.088047556579113, 0.017698992043733597, 0.010936638340353966, 0.004577295854687691, 0.001366672688163817, 0.0033455106895416975, 0.004470459185540676, 0.4317472279071808], [0.0014399546198546886, 0.0002332631847821176, 0.00045224191853776574, 4.9699898227117956e-05, 4.512643499765545e-05, 0.00029908542637713253, 1.8228014596388675e-05, 0.0016688129398971796, 0.4541323482990265, 0.020317096263170242, 0.020485615357756615, 0.01391658652573824, 0.024454424157738686, 0.0032055145129561424, 0.0021444011945277452, 0.0020901234820485115, 0.45504751801490784], [0.0014782125363126397, 0.0002664446656126529, 0.0013442249037325382, 4.679729318013415e-05, 1.4051792277314235e-05, 0.00012693411554209888, 2.119349574059015e-06, 0.0004978053621016443, 0.4407687187194824, 0.007875530049204826, 0.03794340789318085, 0.05507757142186165, 0.010426072403788567, 0.0008189357467927039, 0.0007481228676624596, 0.0004371738468762487, 0.44212791323661804], [0.0006987267988733947, 0.00017011218005791306, 0.000965818646363914, 0.00015281251398846507, 0.00017269969976041466, 0.0001944021787494421, 2.558222377047059e-06, 0.0001631873456062749, 0.4350961744785309, 0.010776503942906857, 0.010097411461174488, 0.04584597423672676, 0.046717602759599686, 0.0036445041187107563, 0.0031968147959560156, 0.0014907451113685966, 0.44061407446861267], [0.001102504669688642, 0.00012474732648115605, 0.0011422350071370602, 0.00010096780169988051, 0.0003126534866169095, 0.0003701750247273594, 8.78143691807054e-06, 0.00029479534714482725, 0.3615906536579132, 0.005539360921829939, 0.014459156431257725, 0.09316504746675491, 0.12162618339061737, 0.025408687070012093, 0.006769154686480761, 0.0020449822768568993, 0.36594003438949585], [0.0011829630238935351, 0.00034895879798568785, 0.007119147107005119, 0.0005344920791685581, 0.0006515107816085219, 0.0011389878345653415, 5.693728235200979e-05, 0.0009211533470079303, 0.39618223905563354, 0.004883582703769207, 0.003575598355382681, 0.01229837816208601, 0.021678829565644264, 0.10629958659410477, 0.032782260328531265, 0.006704023573547602, 0.4036415219306946], [0.01229869294911623, 0.01221025362610817, 0.009197334758937359, 0.0065560005605220795, 0.005198092665523291, 0.01150069572031498, 0.0023622915614396334, 0.011489861644804478, 0.4307621121406555, 0.009498207829892635, 0.016651909798383713, 0.007432642858475447, 0.006250835955142975, 0.004672306589782238, 0.007284434977918863, 0.014476056210696697, 0.43215832114219666]], [[0.0062873754650354385, 0.0033066386822611094, 0.005725296214222908, 0.002122096484526992, 0.0035054287873208523, 0.0018759208032861352, 0.0005465082940645516, 0.001364398980513215, 0.05486242100596428, 0.35307127237319946, 0.23264960944652557, 0.02684188447892666, 0.0388680100440979, 0.05338788777589798, 0.03981413692235947, 0.11988216638565063, 0.055888831615448], [0.010374179109930992, 0.017863847315311432, 0.08150981366634369, 0.08140186965465546, 0.07214724272489548, 0.23391591012477875, 0.11223496496677399, 0.049508534371852875, 0.13656170666217804, 0.011416579596698284, 0.0028409415390342474, 0.006919450126588345, 0.01042439229786396, 0.012274496257305145, 0.014705237932503223, 0.009614546783268452, 0.13628630340099335], [0.010608501732349396, 0.056547943502664566, 0.10995253175497055, 0.05565983057022095, 0.02825392782688141, 0.10524681210517883, 0.03965795785188675, 0.03382706269621849, 0.22549866139888763, 0.013226945884525776, 0.008492005057632923, 0.00804069358855486, 0.014080305583775043, 0.02046997658908367, 0.015657076612114906, 0.0300438292324543, 0.22473597526550293], [0.006527698133140802, 0.026134004816412926, 0.028784804046154022, 0.007164767477661371, 0.048842236399650574, 0.2568477392196655, 0.09427621960639954, 0.04196718707680702, 0.2316848188638687, 0.004028959199786186, 0.0033744387328624725, 0.005043047945946455, 0.004795629531145096, 0.0038917637430131435, 0.0017948336899280548, 0.0023471941240131855, 0.23249463737010956], [0.004678796045482159, 0.024227414280176163, 0.013375849463045597, 0.007306893356144428, 0.00541008310392499, 0.050092827528715134, 0.014733346179127693, 0.02605808526277542, 0.4214590787887573, 0.004866642411798239, 0.0017015838529914618, 0.0014875386841595173, 0.0014615926193073392, 0.003057771362364292, 0.0016313837841153145, 0.0021541989408433437, 0.41629675030708313], [0.01700776256620884, 0.042182184755802155, 0.02710765227675438, 0.021281739696860313, 0.020639576017856598, 0.006023309659212828, 0.006013905163854361, 0.02144630067050457, 0.3957773745059967, 0.01614018715918064, 0.005501651670783758, 0.009397325105965137, 0.007013344205915928, 0.0009224042296409607, 0.0011493106139823794, 0.011740141548216343, 0.39065587520599365], [0.008481322787702084, 0.021922994405031204, 0.015934770926833153, 0.009804973378777504, 0.02632986009120941, 0.06028136610984802, 0.009073665365576744, 0.013704154640436172, 0.4135402739048004, 0.0026396058965474367, 0.0011057837400585413, 0.0028944816440343857, 0.0034464530181139708, 0.000897968013305217, 0.000930494861677289, 0.0006320380489341915, 0.4083799123764038], [0.0426543653011322, 0.08419543504714966, 0.055145513266325, 0.051335304975509644, 0.14563463628292084, 0.027572128921747208, 0.016870353370904922, 0.02830444648861885, 0.24439531564712524, 0.01853090524673462, 0.012018369510769844, 0.006147198844701052, 0.004490226972848177, 0.002438419032841921, 0.001913479994982481, 0.015327800996601582, 0.24302606284618378], [0.003631844650954008, 0.00630282424390316, 0.010843838565051556, 0.004429279826581478, 0.002837232779711485, 0.005300014279782772, 0.0013003009371459484, 0.004197238944470882, 0.46347904205322266, 0.009454664774239063, 0.005623483564704657, 0.0024919926654547453, 0.0020668606739491224, 0.005056238267570734, 0.0030409570317715406, 0.0068252673372626305, 0.46311894059181213], [0.0039664702489972115, 0.0012100026942789555, 0.0013490068959072232, 0.0006717348005622625, 0.0013324781320989132, 0.0015365842264145613, 0.0005181505111977458, 0.0015928630018606782, 0.1233307421207428, 0.05346051976084709, 0.11342038214206696, 0.048529189079999924, 0.055899109691381454, 0.058765824884176254, 0.0325225405395031, 0.3756310045719147, 0.12626351416110992], [0.0014559559058398008, 0.0006339389947243035, 0.0026479223743081093, 0.00024594212300144136, 0.0001765353954397142, 0.0012350594624876976, 0.00013495075108949095, 0.00048230780521407723, 0.03289053589105606, 0.014156127348542213, 0.020841257646679878, 0.03300347179174423, 0.08467552065849304, 0.15145649015903473, 0.290687620639801, 0.3314812183380127, 0.03379521891474724], [0.0013450953410938382, 0.0007356879650615156, 0.0012934557162225246, 6.655571633018553e-05, 1.4959769941924606e-05, 0.00044271780643612146, 2.703746395127382e-05, 0.000240898531046696, 0.26482874155044556, 0.006245264783501625, 0.015628715977072716, 0.0026149589102715254, 0.009740754030644894, 0.1631568819284439, 0.1779329776763916, 0.0849837064743042, 0.2707015573978424], [0.002606040332466364, 0.0008344699162989855, 0.001209732610732317, 0.00025253143394365907, 0.00014520798868034035, 0.003140548476949334, 0.0001529784349258989, 0.0006057526916265488, 0.23604238033294678, 0.01167572196573019, 0.01795845851302147, 0.018712041899561882, 0.010940677486360073, 0.1811027228832245, 0.2549971342086792, 0.021172286942601204, 0.2384513020515442], [0.007668177597224712, 0.0030669323168694973, 0.0029126242734491825, 0.00011586756590986624, 0.0005006211576983333, 0.0002777589252218604, 6.353022035909817e-05, 0.001750412629917264, 0.3026740252971649, 0.02043387107551098, 0.053980227559804916, 0.02085098624229431, 0.14328381419181824, 0.05951334536075592, 0.044559378176927567, 0.03185036778450012, 0.30649808049201965], [0.0033411842305213213, 0.001311374711804092, 0.004674109630286694, 7.558760262327269e-05, 0.00026961808907799423, 0.0003397368418518454, 4.8722569772507995e-05, 0.0004819100140593946, 0.29047515988349915, 0.016495339572429657, 0.027204833924770355, 0.040732186287641525, 0.1415494680404663, 0.1156366840004921, 0.04778257757425308, 0.014617674052715302, 0.2949638068675995], [0.0054697091691195965, 0.0031442921608686447, 0.004017741419374943, 0.0006543616182170808, 0.0008626212948001921, 0.0014927604934200644, 0.0003636724140960723, 0.003298906609416008, 0.21456480026245117, 0.025571072474122047, 0.03551124036312103, 0.08946865797042847, 0.08170028775930405, 0.204983189702034, 0.0748935267329216, 0.03519828990101814, 0.2188047468662262], [0.0036279424093663692, 0.0062494720332324505, 0.010767522267997265, 0.004385904408991337, 0.00277776294387877, 0.005273555871099234, 0.001287155319005251, 0.0041479985229671, 0.4634871184825897, 0.0094976257532835, 0.005646751262247562, 0.002510426100343466, 0.0020773070864379406, 0.005139967426657677, 0.003092461032792926, 0.006879243068397045, 0.463151752948761]], [[0.0434751994907856, 0.07624716311693192, 0.06747912615537643, 0.02035519666969776, 0.010015725158154964, 0.0414426289498806, 0.03631532937288284, 0.06742885708808899, 0.18269914388656616, 0.029585689306259155, 0.12529835104942322, 0.0237087644636631, 0.01956157386302948, 0.019489718601107597, 0.020061686635017395, 0.03287490829825401, 0.1839608997106552], [0.035312458872795105, 0.04287431761622429, 0.3870684802532196, 0.01889089122414589, 0.0047857556492090225, 0.04934628680348396, 0.006713453214615583, 0.04850570484995842, 0.07312250137329102, 0.014558428898453712, 0.16590696573257446, 0.013183402828872204, 0.005659425165504217, 0.011663048528134823, 0.02039843611419201, 0.028879214078187943, 0.07313109189271927], [0.009067765437066555, 0.009693324565887451, 0.4875434935092926, 0.0014388547278940678, 0.00021393502538558096, 0.002667471067979932, 0.0006254262407310307, 0.027370432391762733, 0.13182732462882996, 0.0034815259277820587, 0.07815778255462646, 0.01245742104947567, 0.0028002781327813864, 0.031081482768058777, 0.061160601675510406, 0.008647194132208824, 0.13176578283309937], [0.043251343071460724, 0.05432870611548424, 0.2003648281097412, 0.07239138334989548, 0.02954348549246788, 0.13457031548023224, 0.008119238540530205, 0.06903116405010223, 0.08606088161468506, 0.021389802917838097, 0.1455184370279312, 0.005577497184276581, 0.004663320258259773, 0.002817539032548666, 0.004073464777320623, 0.03237688168883324, 0.08592164516448975], [0.01956501044332981, 0.04456562176346779, 0.10031446814537048, 0.050040360540151596, 0.2813097834587097, 0.12771634757518768, 0.012727844528853893, 0.046444378793239594, 0.03654434531927109, 0.01234675943851471, 0.190189391374588, 0.0016115154139697552, 0.0036612707190215588, 0.0013930225977674127, 0.0009064333862625062, 0.03406453877687454, 0.03659893944859505], [0.026218045502901077, 0.06079234927892685, 0.05672372877597809, 0.01798201911151409, 0.001952760387212038, 0.07390354573726654, 0.004739114083349705, 0.025562353432178497, 0.1153319776058197, 0.05080939084291458, 0.22117052972316742, 0.03781986981630325, 0.10344535112380981, 0.0023226733319461346, 0.005497083067893982, 0.08170291781425476, 0.11402627825737], [0.04773871228098869, 0.06627925485372543, 0.06205539405345917, 0.05496828258037567, 0.008842677809298038, 0.19613268971443176, 0.03337875381112099, 0.015735918655991554, 0.04694003611803055, 0.048762496560811996, 0.19610688090324402, 0.05871521309018135, 0.027684371918439865, 0.0031071281991899014, 0.0023632668890058994, 0.08435871452093124, 0.046830177307128906], [0.05267766863107681, 0.027090558782219887, 0.1338524967432022, 0.02360408753156662, 0.02441701479256153, 0.053336866199970245, 0.012728002853691578, 0.07358848303556442, 0.09732522070407867, 0.06038691848516464, 0.126238152384758, 0.027520151808857918, 0.019312327727675438, 0.024947965517640114, 0.03392765671014786, 0.11163274198770523, 0.09741368144750595], [0.0540308952331543, 0.04522665590047836, 0.10037654638290405, 0.03302600607275963, 0.020069647580385208, 0.039606042206287384, 0.01987120322883129, 0.043555453419685364, 0.20935256779193878, 0.030169669538736343, 0.035692472010850906, 0.027965085580945015, 0.02780071459710598, 0.016334030777215958, 0.023821622133255005, 0.06318362057209015, 0.2099178582429886], [0.14883196353912354, 0.0561506524682045, 0.018512427806854248, 0.0523001067340374, 0.022837985306978226, 0.06639589369297028, 0.06069033592939377, 0.03026256337761879, 0.03474833071231842, 0.20979785919189453, 0.060308873653411865, 0.06341985613107681, 0.024848708882927895, 0.008243841119110584, 0.004993164911866188, 0.1026022806763649, 0.03505522385239601], [0.07569590955972672, 0.06826606392860413, 0.14791373908519745, 0.006353020668029785, 0.001287593855522573, 0.025356687605381012, 0.006612796802073717, 0.016611628234386444, 0.09665815532207489, 0.009839272126555443, 0.4156748950481415, 0.009369410574436188, 0.0035524782724678516, 0.004436532035470009, 0.008466809056699276, 0.006887361407279968, 0.09701766073703766], [0.08131925016641617, 0.04038386791944504, 0.2807130515575409, 0.022350987419486046, 0.005161680281162262, 0.03141096979379654, 0.01706489361822605, 0.027880989015102386, 0.0755089595913887, 0.03333592787384987, 0.06743645668029785, 0.13742727041244507, 0.027865950018167496, 0.0034239927772432566, 0.010055961087346077, 0.06323617696762085, 0.07542363554239273], [0.07594527304172516, 0.05045931413769722, 0.17923316359519958, 0.019263068214058876, 0.007309482432901859, 0.08978694677352905, 0.03064342401921749, 0.040266070514917374, 0.06838121265172958, 0.007705403957515955, 0.05947738140821457, 0.01489026565104723, 0.07422855496406555, 0.07840986549854279, 0.11332403868436813, 0.022269994020462036, 0.06840652227401733], [0.016269274055957794, 0.07428978383541107, 0.06399387121200562, 0.02427583374083042, 0.00984142441302538, 0.04934109374880791, 0.01772794872522354, 0.08082874119281769, 0.17281591892242432, 0.001805666135624051, 0.014381326735019684, 0.004945421125739813, 0.029646364971995354, 0.17308469116687775, 0.0766250491142273, 0.017474712803959846, 0.17265284061431885], [0.015886226668953896, 0.04134271293878555, 0.058663565665483475, 0.027810800820589066, 0.005924344528466463, 0.03066580556333065, 0.01090441644191742, 0.05550302937626839, 0.14484284818172455, 0.0012009674683213234, 0.008928833529353142, 0.001456223544664681, 0.011961211450397968, 0.2594308853149414, 0.16970132291316986, 0.010675432160496712, 0.145101398229599], [0.10890478640794754, 0.06156468018889427, 0.0492355041205883, 0.05090511962771416, 0.031639374792575836, 0.042668417096138, 0.03171618655323982, 0.03961167111992836, 0.10332640260457993, 0.04986456036567688, 0.13834761083126068, 0.020664377138018608, 0.01220464613288641, 0.004305260255932808, 0.006431234069168568, 0.1449912041425705, 0.10361898690462112], [0.05445354804396629, 0.04526779055595398, 0.09894164651632309, 0.03292705863714218, 0.019971294328570366, 0.03926083445549011, 0.01988603174686432, 0.043445706367492676, 0.20997031033039093, 0.030376648530364037, 0.03586333245038986, 0.027953563258051872, 0.027930643409490585, 0.01642383076250553, 0.023868519812822342, 0.0629306435585022, 0.2105286866426468]], [[0.0031840449664741755, 0.21571789681911469, 0.04524892568588257, 0.04099930077791214, 0.009694595821201801, 0.12895631790161133, 0.004357876721769571, 0.1127181351184845, 0.21609258651733398, 0.002785061253234744, 0.002087533473968506, 0.0006042739260010421, 0.0006000974681228399, 0.0016227583400905132, 0.0010247959289699793, 0.0016243925783783197, 0.21268151700496674], [0.004006592091172934, 0.05269387364387512, 0.044160183519124985, 0.03270796686410904, 0.006540026981383562, 0.00946151651442051, 0.002772148232907057, 0.0238027460873127, 0.4141005873680115, 0.001061401329934597, 0.0009192836005240679, 0.0003084810741711408, 0.00016421879990957677, 0.00022142102534417063, 0.00021352406474761665, 0.002067337976768613, 0.4047985374927521], [0.011967779137194157, 0.20360039174556732, 0.0273871012032032, 0.0805215984582901, 0.009617360308766365, 0.029085135087370872, 0.004362944047898054, 0.029789013788104057, 0.29455703496932983, 0.004561576992273331, 0.002771953819319606, 0.0015155079308897257, 0.002506677992641926, 0.0017421378288418055, 0.0030295392498373985, 0.0037372498773038387, 0.28924694657325745], [0.0028203059919178486, 0.22022941708564758, 0.08479999005794525, 0.02473951317369938, 0.01705314591526985, 0.008756676688790321, 0.0037036833819001913, 0.0203179232776165, 0.30852213501930237, 0.0025849565863609314, 0.0006831066566519439, 0.0003921120660379529, 0.0005833411123603582, 0.000631358998361975, 0.000379806209821254, 0.0033486245665699244, 0.30045390129089355], [0.002009183866903186, 0.023240454494953156, 0.0190526582300663, 0.024731798097491264, 0.012375425547361374, 0.00394817627966404, 0.001384460018016398, 0.004934764001518488, 0.4578995406627655, 0.00037308729952201247, 0.00019942536891903728, 0.00023946145665831864, 0.00027265807148069143, 0.00013639855023939162, 0.00018612276471685618, 0.000731980602722615, 0.4482843279838562], [0.0076033552177250385, 0.09425722807645798, 0.04865274950861931, 0.11354836821556091, 0.09413701295852661, 0.023365287110209465, 0.006663545034825802, 0.023783979937434196, 0.28648820519447327, 0.002370882546529174, 0.000904439075384289, 0.0008742004865780473, 0.0045267329551279545, 0.001869221101514995, 0.0023903290275484324, 0.0036986833438277245, 0.28486594557762146], [0.0033919215202331543, 0.05983782932162285, 0.06063438579440117, 0.23119010031223297, 0.268436998128891, 0.022264478728175163, 0.006140152458101511, 0.014200322329998016, 0.1666257083415985, 0.00040535267908126116, 0.00037407761556096375, 6.247432611417025e-05, 0.0003031328087672591, 0.00015827975585125387, 0.00024232060241047293, 0.0010296277469024062, 0.16470283269882202], [0.006729861255735159, 0.08788341283798218, 0.10373534262180328, 0.1857779622077942, 0.12147389352321625, 0.1733231246471405, 0.03104526922106743, 0.04033413156867027, 0.1204276904463768, 0.0014714953722432256, 0.0014245584607124329, 0.0005047697923146188, 0.0016643000999465585, 0.001192077761515975, 0.0012797699309885502, 0.0020482675172388554, 0.11968409270048141], [0.00839389767497778, 0.013293436728417873, 0.005461883265525103, 0.01169236283749342, 0.006590526085346937, 0.008103218860924244, 0.0015514168189838529, 0.018558092415332794, 0.43971800804138184, 0.012590828351676464, 0.008479714393615723, 0.00353297870606184, 0.003901928197592497, 0.003213356714695692, 0.00506718410179019, 0.010710257105529308, 0.4391407370567322], [0.015712054446339607, 0.003016943810507655, 0.002891476498916745, 0.016477731987833977, 0.003098049433901906, 0.0032609866466373205, 0.0005190958618186414, 0.009564626030623913, 0.39708998799324036, 0.06891121715307236, 0.02599017135798931, 0.009533909149467945, 0.007644720375537872, 0.004496948327869177, 0.0111601073294878, 0.021410614252090454, 0.3992213010787964], [0.011905212886631489, 0.011302993632853031, 0.008778983727097511, 0.011205737479031086, 0.003432678757235408, 0.005752991884946823, 0.0009213303565047681, 0.03804676979780197, 0.2708134949207306, 0.09715063124895096, 0.12197071313858032, 0.03721364587545395, 0.021103635430336, 0.015403433702886105, 0.014941551722586155, 0.057241275906562805, 0.27281486988067627], [0.00725163659080863, 0.0015573929995298386, 0.0022282341960817575, 0.002828036667779088, 0.0013643758138641715, 0.00209349999204278, 0.00027652716380544007, 0.00869971513748169, 0.3416977822780609, 0.11482184380292892, 0.09516112506389618, 0.02310303784906864, 0.01358744315803051, 0.0075135184451937675, 0.011674463748931885, 0.02350008115172386, 0.3426411747932434], [0.014523872174322605, 0.0013822511537000537, 0.006334054749459028, 0.0019307088805362582, 0.0005568930064328015, 0.002475097542628646, 0.00025742192519828677, 0.01586259715259075, 0.21639077365398407, 0.1816307157278061, 0.25600665807724, 0.020945927128195763, 0.004577548708766699, 0.007972564548254013, 0.01322969514876604, 0.03920188173651695, 0.2167213261127472], [0.007418851833790541, 0.0014681847533211112, 0.00305807963013649, 0.002265361836180091, 0.000882843101862818, 0.001318708760663867, 0.0001229055633302778, 0.006177906412631273, 0.14417621493339539, 0.3530433177947998, 0.16043543815612793, 0.07088933885097504, 0.0468129888176918, 0.013300761580467224, 0.018453426659107208, 0.025853820145130157, 0.14432188868522644], [0.008744224905967712, 0.0017883465625345707, 0.00599333643913269, 0.0017488505691289902, 0.0006991210393607616, 0.0016012750566005707, 9.292181493947282e-05, 0.004622788168489933, 0.11953023821115494, 0.2536883056163788, 0.21079561114311218, 0.09379047900438309, 0.08386283367872238, 0.043063048273324966, 0.026585450395941734, 0.02345716953277588, 0.11993610858917236], [0.012803398072719574, 0.003155008191242814, 0.00859522819519043, 0.002518855966627598, 0.0006019544089213014, 0.0018383092246949673, 0.00011044396524084732, 0.004515702370554209, 0.13633836805820465, 0.1949165165424347, 0.20429983735084534, 0.04728134721517563, 0.03588426858186722, 0.08325108885765076, 0.068187415599823, 0.057584844529628754, 0.13811741769313812], [0.008475459180772305, 0.013212391175329685, 0.0054257274605333805, 0.011654380708932877, 0.006628814153373241, 0.008029801771044731, 0.001531823887489736, 0.018491938710212708, 0.4390735924243927, 0.01301492564380169, 0.008726131170988083, 0.0036282483488321304, 0.003982252441346645, 0.003302351338788867, 0.005225836299359798, 0.011017310433089733, 0.43857893347740173]], [[5.714677172363736e-06, 7.531060873589013e-06, 0.0001237595861312002, 0.0001824203645810485, 3.015415131812915e-06, 1.3844623026670888e-05, 1.2050754172321376e-08, 2.479518798281788e-06, 0.49366670846939087, 3.699452122418734e-07, 1.6712405340513214e-05, 1.120707722179759e-07, 3.456006680835344e-08, 2.8061722900929453e-07, 8.784086702462446e-08, 1.2627372143469984e-06, 0.5059755444526672], [8.525857424501737e-07, 0.0007749959477223456, 5.146398689248599e-05, 0.0002799722133204341, 1.0684244244885122e-07, 1.7900667614867416e-08, 5.984887030408004e-10, 3.9815680793253705e-05, 0.5097732543945312, 8.042762544846482e-08, 2.402672549806084e-08, 8.599534417896848e-10, 2.2099409108244927e-11, 9.186663582627652e-12, 2.1641358843860203e-11, 7.705302351723731e-08, 0.4890795052051544], [3.231378684631636e-07, 0.9981132745742798, 6.831890641478822e-05, 4.638550672098063e-05, 9.831397619564086e-06, 1.1858296034006344e-07, 4.995786076489317e-11, 4.471216730195238e-09, 0.0008773634908720851, 9.659983229992619e-11, 2.8497537662985906e-09, 5.718871154414273e-09, 3.743075538409357e-08, 3.439669438165538e-09, 2.8593399870047165e-10, 5.8693498949935474e-09, 0.0008843277464620769], [1.397115201307031e-09, 2.6192303721472854e-06, 0.9998918771743774, 9.90204862318933e-05, 5.5761820050292954e-08, 6.497455729004287e-08, 1.194159793271865e-08, 1.2937077797925411e-10, 3.2282780466630356e-06, 6.1323071186975e-14, 5.4551321793105956e-11, 1.3483410961638749e-14, 1.5693267518823717e-10, 5.848529993635054e-11, 3.640321821762882e-09, 2.840805646275868e-10, 3.1068761927599553e-06], [3.388044012009317e-11, 2.95115332171747e-09, 2.278439069414162e-06, 0.9984825253486633, 0.0015151363331824541, 2.0659163268987868e-08, 1.890719386610229e-10, 2.8548736725336754e-12, 2.5246126966749216e-08, 1.9433179123834894e-17, 2.295780753003296e-12, 1.081282704026203e-14, 9.676696295335239e-17, 1.0416897582694006e-14, 8.799661303446338e-14, 4.3361708668143706e-10, 2.6403824904264184e-08], [8.36674826643069e-11, 8.532065054467353e-10, 8.29904944765758e-09, 0.0002776994660962373, 0.9997115731239319, 1.0491678949620109e-05, 9.19305165325568e-08, 1.2629202371383652e-11, 1.6365794053285754e-08, 8.82434212828761e-16, 2.0271460156101248e-14, 1.1976214723096314e-15, 1.2829752248110816e-14, 1.2851795433530162e-14, 9.152966030229453e-16, 1.875364273595803e-11, 1.7220303405451887e-08], [1.1440866367143169e-18, 6.24125504855641e-19, 1.2712827481258654e-13, 3.7660291009843083e-13, 9.704320680370415e-10, 0.999998927116394, 1.0640302434694604e-06, 5.443953213025048e-17, 1.223048236715903e-15, 2.366011807559596e-21, 8.412004063327965e-24, 5.461388176484554e-23, 8.682448995029395e-22, 1.3391050747150491e-17, 2.5769241002670217e-16, 1.576629201788069e-18, 1.2523003077910934e-15], [1.1910175623519592e-10, 9.76662218980795e-13, 1.8872206020148496e-09, 6.939735008870684e-09, 6.119305617779958e-10, 0.00016604574921075255, 0.9998329877853394, 3.1072784167918144e-07, 2.9101207132953277e-07, 3.312937963784006e-14, 1.6418243717689074e-12, 3.2812739091506104e-18, 2.402679258621445e-14, 1.694799425040923e-14, 4.061255498566396e-11, 1.0015156481912868e-09, 2.931317339971429e-07], [0.027686618268489838, 0.010151353664696217, 0.024794626981019974, 0.02103099413216114, 0.0042915563099086285, 0.005246133543550968, 0.0006153103895485401, 0.02844744548201561, 0.40133506059646606, 0.006595885846763849, 0.03245443478226662, 0.0029201246798038483, 0.00209422898478806, 0.006193780340254307, 0.002613560762256384, 0.019782450050115585, 0.4037465751171112], [5.707126504717053e-08, 5.305807182498512e-11, 2.0431093882694595e-12, 1.0814625968835409e-13, 5.413075857777644e-15, 5.9568240097507275e-12, 3.8739598009519816e-13, 0.0006395395612344146, 0.5075867176055908, 2.1058724087197334e-05, 4.714403075922746e-06, 8.419962643779755e-11, 4.491483573954014e-12, 7.734564724803938e-12, 4.4801684584427903e-10, 8.460733056381287e-07, 0.491747111082077], [1.0530384564333417e-08, 1.3827381462050425e-09, 9.907910603068615e-11, 5.2415769641322996e-11, 1.614435988324045e-14, 1.9644556814579772e-11, 3.965761502825946e-14, 1.0437122277551225e-08, 0.00021847887546755373, 0.9983766078948975, 0.0011704300995916128, 9.414298801857512e-06, 1.973577212766031e-08, 7.474723062728117e-10, 1.1261970245257658e-09, 1.9410425267096798e-08, 0.00022511338465847075], [5.330696772887222e-09, 1.046445499697235e-10, 3.5324796421321025e-09, 3.2595062066098635e-11, 7.034046197069987e-14, 2.89433910933873e-16, 1.9071030187236317e-16, 1.9350456566952223e-12, 8.921795597416349e-06, 1.2232409972057212e-05, 0.9990942478179932, 2.6550827897153795e-05, 0.0008491174085065722, 5.2074426548642805e-08, 7.691279835242426e-10, 9.100802056405399e-11, 8.92963453225093e-06], [1.413380012799028e-14, 7.718452884209609e-14, 2.3376149309978743e-14, 4.0959548713902574e-15, 9.176170497819484e-15, 4.1570871582526214e-18, 4.6975032386115635e-23, 8.399624658721385e-19, 2.358336581576026e-10, 5.2525837845873724e-11, 1.6559253523951156e-08, 1.0, 3.5066620718282593e-09, 9.532768352471521e-09, 4.848402061774504e-12, 1.2009822872860996e-15, 2.4536295217814086e-10], [5.705686945134403e-08, 2.833989265482728e-09, 8.928861461754423e-06, 9.822356616950856e-08, 7.62967733436426e-09, 8.257136700729958e-14, 1.318182318670296e-15, 5.828378144695501e-14, 0.00011490472388686612, 5.522657886558591e-08, 0.008896159939467907, 0.0012328594457358122, 0.9895163178443909, 8.931191405281425e-05, 2.0326888261479326e-05, 1.5145957377171726e-06, 0.00011949613690376282], [3.950031413069155e-10, 2.8524934150842007e-12, 5.75962459947732e-08, 1.0115307202962498e-10, 1.6422271875704553e-10, 2.968542078818359e-11, 1.3658625656008932e-14, 1.1810138031919347e-15, 8.804174285614863e-06, 8.615912670817405e-12, 1.2587244668793574e-07, 1.0687680514820386e-05, 0.02868564985692501, 0.970523476600647, 0.0007618709933012724, 2.2159838408697397e-07, 9.148032404482365e-06], [7.083077679936878e-09, 1.2497617524198645e-11, 5.511309154826449e-06, 3.08378140800869e-08, 2.9887561175945265e-11, 7.224776776837416e-09, 1.1986701053956494e-07, 9.327864002039998e-12, 8.805703146208543e-06, 1.0804734711100661e-11, 2.158739142998911e-08, 5.426098806382562e-11, 5.5660048019490205e-06, 0.0001696567633189261, 0.9940999150276184, 0.005701203364878893, 9.169450095214415e-06], [0.028319815173745155, 0.010333376005291939, 0.025473307818174362, 0.02507404237985611, 0.004830158315598965, 0.005717465654015541, 0.000718376599252224, 0.025225600227713585, 0.3933270275592804, 0.007089710328727961, 0.03807156905531883, 0.0031177906785160303, 0.0023958347737789154, 0.006642082706093788, 0.0030525866895914078, 0.024333421140909195, 0.3962777554988861]], [[0.005391542799770832, 0.007001600693911314, 0.01654086448252201, 0.007268095389008522, 0.005217065569013357, 0.012687058188021183, 0.0018780648242682219, 0.025507211685180664, 0.44259437918663025, 0.00456001702696085, 0.012514159083366394, 0.0018214149167761207, 0.0014852266758680344, 0.0016768246423453093, 0.0020546717569231987, 0.01041596382856369, 0.4413858950138092], [0.006576152052730322, 0.10240702331066132, 0.018728697672486305, 0.14323820173740387, 0.049986474215984344, 0.03025483712553978, 0.012050971388816833, 0.049884919077157974, 0.2808198630809784, 0.00031938732718117535, 0.01515895128250122, 0.0010267799952998757, 0.003328900085762143, 0.0009151598787866533, 0.0006995670846663415, 0.0026942254044115543, 0.2819098234176636], [0.012973690405488014, 0.06871321052312851, 0.031490497291088104, 0.10958608984947205, 0.04596468806266785, 0.04817672818899155, 0.011864996515214443, 0.0465908944606781, 0.2963188588619232, 0.0024943770840764046, 0.010976185090839863, 0.0007986612617969513, 0.003831664100289345, 0.002208451274782419, 0.0031803790479898453, 0.007687777280807495, 0.29714277386665344], [0.004054914694279432, 0.03101220168173313, 0.014836825430393219, 0.08251379430294037, 0.025474147871136665, 0.0367685928940773, 0.019961180165410042, 0.1350509375333786, 0.3203428089618683, 0.000971910310909152, 0.0038676627445966005, 0.0001037776964949444, 0.0001480377250118181, 0.0003008987696375698, 0.0002856427454389632, 0.0034889793023467064, 0.32081761956214905], [0.003940700553357601, 0.004999156575649977, 0.0032750770915299654, 0.07968626916408539, 0.02742406167089939, 0.06991948932409286, 0.09462787955999374, 0.12835530936717987, 0.2933743894100189, 0.000949179579038173, 0.0018484863685443997, 0.00013900731573812664, 0.00010231795749859884, 6.0651109379250556e-05, 0.00011319718760205433, 0.0014628792414441705, 0.28972193598747253], [0.00998516846448183, 0.003294517984613776, 0.0027820756658911705, 0.019927389919757843, 0.027486037462949753, 0.021844541653990746, 0.02705955132842064, 0.16139407455921173, 0.356993168592453, 0.005335778463631868, 0.005052140913903713, 0.0007035201997496188, 0.00046640902291983366, 0.0002491034974809736, 0.0004917875048704445, 0.0010880891932174563, 0.35584667325019836], [0.004408373963087797, 0.00316426414065063, 0.0014020120725035667, 0.023342369124293327, 0.025323715060949326, 0.025710592046380043, 0.03184136748313904, 0.12601809203624725, 0.38134074211120605, 0.0007688571349717677, 0.0006233482854440808, 0.00017133104847744107, 0.0001142708642873913, 1.1815919606306124e-05, 4.521145092439838e-05, 0.0003314129717182368, 0.3753822445869446], [0.002143165795132518, 0.006253203842788935, 0.0013561963569372892, 0.0030949197243899107, 0.0021872781217098236, 0.002259022556245327, 0.0016221548430621624, 0.017215300351381302, 0.4804159998893738, 0.003592889290302992, 0.003877464681863785, 0.0007696565007790923, 0.00047792476834729314, 0.00012241075455676764, 0.00021420551638584584, 0.0019411430694162846, 0.47245708107948303], [0.01601012982428074, 0.012033963575959206, 0.01078930776566267, 0.011333223432302475, 0.004751932807266712, 0.008196607232093811, 0.005289657507091761, 0.02050664834678173, 0.41423702239990234, 0.012046046555042267, 0.01618734933435917, 0.008055870421230793, 0.007911546155810356, 0.007270640227943659, 0.009202688001096249, 0.023804429918527603, 0.4123729467391968], [0.004570821300148964, 0.0006219990318641067, 0.0008660269086249173, 0.0007282443693839014, 0.00011756434105336666, 0.0001524199906270951, 9.679755748948082e-06, 0.00121091038454324, 0.43794164061546326, 0.01100597158074379, 0.05880236253142357, 0.010513713583350182, 0.003600803669542074, 0.005937621463090181, 0.0041281781159341335, 0.01480777096003294, 0.4449843764305115], [0.003852137131616473, 0.001867673359811306, 0.002219864632934332, 0.0004865672090090811, 0.00015351915499195457, 0.0003103021008428186, 3.419929635128938e-05, 0.002339719096198678, 0.24926511943340302, 0.023571200668811798, 0.18127913773059845, 0.06604747474193573, 0.0900469720363617, 0.054545655846595764, 0.02487427555024624, 0.04440683126449585, 0.25469937920570374], [0.0023099894169718027, 0.0006187451654113829, 0.0017197662964463234, 0.0009706380660645664, 0.0003896088746841997, 0.0001397169689880684, 1.049382353812689e-05, 0.0013366942293941975, 0.38504689931869507, 0.007943826727569103, 0.04948156327009201, 0.037139248102903366, 0.03286372497677803, 0.021734939888119698, 0.023877650499343872, 0.043642472475767136, 0.3907740116119385], [0.005205004010349512, 0.0004466577956918627, 0.0012418323894962668, 0.0009301879908889532, 0.0027220447082072496, 0.0021583547350019217, 0.00024887837935239077, 0.0021135604474693537, 0.3151141405105591, 0.013325474224984646, 0.007533856201916933, 0.05050894618034363, 0.024504736065864563, 0.04204701632261276, 0.19397099316120148, 0.018031859770417213, 0.3198965787887573], [0.0035345754586160183, 0.00020995068189222366, 0.002809529658406973, 0.0004845350340474397, 0.0007872952264733613, 0.002412022091448307, 7.994176121428609e-05, 0.0012910199584439397, 0.3895937502384186, 0.002214687177911401, 0.016438975930213928, 0.01857096515595913, 0.007398077752441168, 0.019597051665186882, 0.04473528638482094, 0.08896366506814957, 0.4008787274360657], [0.0032323135528713465, 0.0002426189457764849, 0.0010305322939530015, 0.00041538651566952467, 0.0005048421444371343, 0.0018313778564333916, 5.4521082347491756e-05, 0.0021139876917004585, 0.408632755279541, 0.002944200299680233, 0.010133915580809116, 0.004700675141066313, 0.0037719127722084522, 0.0186750628054142, 0.034819480031728745, 0.08516407757997513, 0.42173242568969727], [0.0018415561644360423, 0.0002441449323669076, 0.00016823195619508624, 0.00023019398213364184, 0.0001538503129268065, 0.00042028201278299093, 7.054630987113342e-05, 0.00042174546979367733, 0.4848628342151642, 0.0014554180670529604, 0.004560873843729496, 0.0007168111042119563, 0.0002870234311558306, 0.0017560055712237954, 0.005887182429432869, 0.006457427516579628, 0.4904659688472748], [0.01604890450835228, 0.011827213689684868, 0.010717342607676983, 0.01119537279009819, 0.004707286600023508, 0.008161387406289577, 0.005274169147014618, 0.02044428512454033, 0.4137292206287384, 0.012168054468929768, 0.01641322299838066, 0.008189268410205841, 0.008064016699790955, 0.00740379374474287, 0.009403572417795658, 0.02437535673379898, 0.41187745332717896]], [[0.011896337382495403, 0.04553978517651558, 0.2977008819580078, 0.016144176945090294, 0.014812009409070015, 0.05180941894650459, 0.006068960297852755, 0.018725192174315453, 0.06805863231420517, 0.08364249765872955, 0.09200550615787506, 0.06783529371023178, 0.02006317488849163, 0.02658402919769287, 0.032708488404750824, 0.07826431840658188, 0.06814133375883102], [0.07108449190855026, 0.10104425251483917, 0.047358378767967224, 0.01654794067144394, 0.008046175353229046, 0.009992127306759357, 0.009700554423034191, 0.06148039177060127, 0.17401942610740662, 0.11008325219154358, 0.1427319049835205, 0.013201718218624592, 0.015427488833665848, 0.003291880711913109, 0.005101888906210661, 0.04001959040760994, 0.17086847126483917], [0.06808757036924362, 0.046941373497247696, 0.018322275951504707, 0.011204362846910954, 0.004199360962957144, 0.011305831372737885, 0.009801087900996208, 0.04053309187293053, 0.266318142414093, 0.05707777664065361, 0.08191963285207748, 0.011768994852900505, 0.035173192620277405, 0.005533100105822086, 0.01537717878818512, 0.05184144154191017, 0.26459556818008423], [0.07591699808835983, 0.05357486382126808, 0.024092543870210648, 0.025861689820885658, 0.008523015305399895, 0.022105766460299492, 0.015525205992162228, 0.0807480439543724, 0.2269948124885559, 0.10711406916379929, 0.06361471861600876, 0.019678829237818718, 0.008481882512569427, 0.004295858088880777, 0.0053276256658136845, 0.03433699905872345, 0.2238069623708725], [0.058995891362428665, 0.03078671172261238, 0.013344567269086838, 0.025047797709703445, 0.01611863449215889, 0.026517633348703384, 0.021701818332076073, 0.07825782150030136, 0.33156299591064453, 0.028799893334507942, 0.015614050440490246, 0.014394245110452175, 0.0024725585244596004, 0.002137289149686694, 0.0018767892615869641, 0.007450197357684374, 0.3249210715293884], [0.030031220987439156, 0.011588482186198235, 0.009314131923019886, 0.013186336494982243, 0.012996258214116096, 0.0043689189478755, 0.007965936325490475, 0.058860596269369125, 0.31455063819885254, 0.08418512344360352, 0.037953004240989685, 0.03637489676475525, 0.009662586264312267, 0.0030015516094863415, 0.004162016790360212, 0.04946955293416977, 0.31232884526252747], [0.027438925579190254, 0.034748516976833344, 0.008749268017709255, 0.022606780752539635, 0.02249724417924881, 0.02475479245185852, 0.026207972317934036, 0.06713223457336426, 0.3269135355949402, 0.046424880623817444, 0.020834898576140404, 0.011768336407840252, 0.006369994953274727, 0.0026754827704280615, 0.005533265881240368, 0.024527231231331825, 0.32081660628318787], [0.04745704308152199, 0.04258449748158455, 0.03822675719857216, 0.02935813181102276, 0.013506618328392506, 0.05341669172048569, 0.018804382532835007, 0.19889415800571442, 0.16479218006134033, 0.055756378918886185, 0.019973155111074448, 0.008547870442271233, 0.004493501503020525, 0.004714685026556253, 0.010971049778163433, 0.12483490258455276, 0.1636679768562317], [0.004619167651981115, 0.003336237743496895, 0.005120809189975262, 0.002401411999017, 0.0011635300470516086, 0.001786738052032888, 0.0006125796353444457, 0.013043121434748173, 0.47580668330192566, 0.005447726231068373, 0.0029154850635677576, 0.0012503197649493814, 0.0006939501035958529, 0.0011493226047605276, 0.001484293956309557, 0.00751108955591917, 0.47165751457214355], [0.006681482307612896, 0.01350687351077795, 0.0010673771612346172, 0.010909723117947578, 0.0029024267569184303, 0.0034648317378014326, 0.002712294226512313, 0.030649906024336815, 0.4172075688838959, 0.024898499250411987, 0.013032658025622368, 0.013816745951771736, 0.0016599389491602778, 0.001979984575882554, 0.0033442906569689512, 0.03448781371116638, 0.41767752170562744], [0.021973080933094025, 0.11463961005210876, 0.008249381557106972, 0.008443331345915794, 0.0016807846259325743, 0.00857829861342907, 0.004734683781862259, 0.01720252074301243, 0.20377548038959503, 0.08148840069770813, 0.12394528090953827, 0.037925396114587784, 0.039062853902578354, 0.014924994669854641, 0.03167993575334549, 0.07768147438764572, 0.2040143609046936], [0.015987304970622063, 0.029722819104790688, 0.0038740970194339752, 0.010076967999339104, 0.030323894694447517, 0.0322301872074604, 0.016984013840556145, 0.014620089903473854, 0.3000859320163727, 0.03443753346800804, 0.02070557326078415, 0.03901701420545578, 0.050995927304029465, 0.020987316966056824, 0.035207320004701614, 0.04655110090970993, 0.29819294810295105], [0.009800056926906109, 0.022414375096559525, 0.011662283912301064, 0.013969166204333305, 0.005651111714541912, 0.013361428864300251, 0.006015367805957794, 0.020908601582050323, 0.3546835780143738, 0.03504370525479317, 0.014956529252231121, 0.06282033771276474, 0.00644267862662673, 0.006425785832107067, 0.02936325967311859, 0.0329553484916687, 0.35352644324302673], [0.045693472027778625, 0.028873935341835022, 0.007569416426122189, 0.02534460462629795, 0.00850349199026823, 0.013826144859194756, 0.016999240964651108, 0.043204594403505325, 0.2920227348804474, 0.04142223298549652, 0.04287896677851677, 0.04896218702197075, 0.009458008222281933, 0.0074393004179000854, 0.025354625657200813, 0.04927218705415726, 0.29317477345466614], [0.026541445404291153, 0.022693820297718048, 0.01782643422484398, 0.01720244064927101, 0.004403784405440092, 0.012205874547362328, 0.011370832100510597, 0.032343506813049316, 0.24245671927928925, 0.0388604998588562, 0.04566324129700661, 0.08541925251483917, 0.026139279827475548, 0.014914426021277905, 0.05854498967528343, 0.09926380217075348, 0.24414974451065063], [0.015273853205144405, 0.012693632394075394, 0.0030219326727092266, 0.008167976513504982, 0.0026210134383291006, 0.018482642248272896, 0.0122247114777565, 0.043228983879089355, 0.27787095308303833, 0.045327331870794296, 0.026973629370331764, 0.043306175619363785, 0.010407078079879284, 0.018379922956228256, 0.06542158126831055, 0.11675029993057251, 0.2798483371734619], [0.004644386470317841, 0.003321829717606306, 0.0050865886732935905, 0.002393309725448489, 0.0011556813260540366, 0.0017870698357000947, 0.0006104191415943205, 0.012987826950848103, 0.4755563735961914, 0.0055827489122748375, 0.0029940621461719275, 0.0012819472467526793, 0.0007164013222791255, 0.001179285580292344, 0.0015245575923472643, 0.00768388994038105, 0.4714936912059784]], [[0.017892248928546906, 0.09621790051460266, 0.27972814440727234, 0.04248691350221634, 0.036734793335199356, 0.08579163253307343, 0.047321733087301254, 0.16168665885925293, 0.10481302440166473, 0.0026634098030626774, 0.0029089536983519793, 0.002742952201515436, 0.005386663135141134, 0.001968739554286003, 0.0016956259496510029, 0.006729320622980595, 0.10323139280080795], [0.006097771693021059, 0.034571822732686996, 0.02834142930805683, 0.01489602867513895, 0.011280916631221771, 0.005926548037678003, 0.006407484412193298, 0.07840634882450104, 0.3984966576099396, 0.001380393048748374, 0.011279840022325516, 0.003508141962811351, 0.0010208252351731062, 0.001003950834274292, 0.0005153188249096274, 0.003190564224496484, 0.3936760425567627], [0.008414425887167454, 0.020426031202077866, 0.029306910932064056, 0.008140305057168007, 0.003373718587681651, 0.00570417195558548, 0.0032661971636116505, 0.042032670229673386, 0.42415526509284973, 0.0014886913122609258, 0.01338985562324524, 0.0024499224964529276, 0.001518317381851375, 0.005368678364902735, 0.005018692463636398, 0.006877680774778128, 0.41906851530075073], [0.0040637715719640255, 0.023357607424259186, 0.011164208874106407, 0.0061511932872235775, 0.005613989662379026, 0.0051599349826574326, 0.004296521190553904, 0.05728956684470177, 0.43970683217048645, 0.0021394025534391403, 0.0022374673280864954, 0.0016334035899490118, 0.0006734568160027266, 0.0006394304218702018, 0.0002148713101632893, 0.0014955428196117282, 0.43416279554367065], [0.00246781250461936, 0.005526396445930004, 0.003295141039416194, 0.001365789445117116, 0.004704872611910105, 0.002192872576415539, 0.002819143468514085, 0.034813810139894485, 0.47196128964424133, 0.0003973311686422676, 0.0007331280503422022, 0.0010172321926802397, 0.0003610823769122362, 0.00042566232150420547, 0.00015019436250440776, 0.000298165250569582, 0.46747010946273804], [0.012753617018461227, 0.026578955352306366, 0.03122747875750065, 0.007042259443551302, 0.019207507371902466, 0.015565520152449608, 0.019687412306666374, 0.08892396092414856, 0.3711673617362976, 0.004803582560271025, 0.0061154658906161785, 0.007158601190894842, 0.002716852119192481, 0.006478235591202974, 0.005087439436465502, 0.00709317484870553, 0.36839255690574646], [0.006345175672322512, 0.02158680185675621, 0.021593932062387466, 0.0076037319377064705, 0.008861963637173176, 0.004473880399018526, 0.01908325031399727, 0.09513793140649796, 0.4066341817378998, 0.0011972530046477914, 0.0007016954477876425, 0.0008068008464761078, 0.0003328810853417963, 0.00038028485141694546, 0.0003336805966682732, 0.002802535891532898, 0.4021241068840027], [0.009660806506872177, 0.10523632913827896, 0.054255932569503784, 0.10370367020368576, 0.09922593832015991, 0.019991405308246613, 0.03873194381594658, 0.16783082485198975, 0.1915450245141983, 0.011329763568937778, 0.0027545730117708445, 0.0011474986094981432, 0.0011327818501740694, 0.001007491140626371, 0.0003843840677291155, 0.0028942839708179235, 0.189167320728302], [0.015019276179373264, 0.010747543536126614, 0.014063682407140732, 0.004853293765336275, 0.004904619883745909, 0.007413987535983324, 0.002837849548086524, 0.0210548248142004, 0.42789772152900696, 0.011836061254143715, 0.015538095496594906, 0.009615554474294186, 0.005789626389741898, 0.007745843380689621, 0.005369522608816624, 0.008734038099646568, 0.4265786111354828], [0.006379035767167807, 0.0045412154868245125, 0.0032286308705806732, 0.0015580117469653487, 0.0008801146177574992, 0.003727972973138094, 0.0008744430961087346, 0.017086487263441086, 0.43658846616744995, 0.004015125334262848, 0.01637202501296997, 0.01082569919526577, 0.005043269135057926, 0.018027866259217262, 0.01666681468486786, 0.015894470736384392, 0.4382903277873993], [0.005039175506681204, 0.007503471802920103, 0.0037879012525081635, 0.0014426256529986858, 0.0004411647969391197, 0.0009918047580868006, 0.0003513083793222904, 0.01078211609274149, 0.42976224422454834, 0.003343496471643448, 0.03389886021614075, 0.028243690729141235, 0.0034834370017051697, 0.011447899974882603, 0.007948198355734348, 0.02151968702673912, 0.43001294136047363], [0.004690959118306637, 0.004124640021473169, 0.0030791957397013903, 0.0008392746676690876, 0.0004405039653647691, 0.0031554396264255047, 0.0007373033440671861, 0.017180629074573517, 0.4306209683418274, 0.0011428790166974068, 0.017727700993418694, 0.01323712058365345, 0.004286666866391897, 0.01373759564012289, 0.023414989933371544, 0.027665292844176292, 0.43391892313957214], [0.00862114317715168, 0.01135148387402296, 0.012981223873794079, 0.000691631983499974, 0.0003235400072298944, 0.0020609041675925255, 0.000785970943979919, 0.018089689314365387, 0.4154861271381378, 0.002915895078331232, 0.0375804640352726, 0.01098239328712225, 0.004822440445423126, 0.01784657873213291, 0.024782152846455574, 0.011576290242373943, 0.4191019833087921], [0.025518914684653282, 0.006133803632110357, 0.009012063033878803, 0.0025384153705090284, 0.0013000465696677566, 0.012946446426212788, 0.005756751634180546, 0.04848466068506241, 0.2682812213897705, 0.04943094402551651, 0.018901454284787178, 0.024830572307109833, 0.01123689766973257, 0.0640338659286499, 0.09055264294147491, 0.09320801496505737, 0.26783332228660583], [0.014500671997666359, 0.005180492997169495, 0.005493436940014362, 0.0009324002894572914, 0.0002000768727157265, 0.0024098618887364864, 0.0017877763602882624, 0.0339442640542984, 0.33759304881095886, 0.02328888699412346, 0.013789908029139042, 0.01204779651015997, 0.007757064886391163, 0.03551098331809044, 0.0496433861553669, 0.11847839504480362, 0.33744144439697266], [0.01168446708470583, 0.009222637861967087, 0.002364739775657654, 0.004237509332597256, 0.0008104023872874677, 0.0016773530514910817, 0.002601410960778594, 0.031581830233335495, 0.34230467677116394, 0.061746738851070404, 0.025163564831018448, 0.013345015235245228, 0.0035660546272993088, 0.029116347432136536, 0.023395469412207603, 0.09069269895553589, 0.34648916125297546], [0.014953400939702988, 0.010602684691548347, 0.013698993250727654, 0.004751116503030062, 0.004801769275218248, 0.007260110694915056, 0.002760824980214238, 0.02062361314892769, 0.4283122718334198, 0.011955776251852512, 0.015642190352082253, 0.009747856296598911, 0.005809553898870945, 0.007841427810490131, 0.005396663676947355, 0.00879810843616724, 0.427043616771698]]], [[[0.009784198366105556, 0.06344977021217346, 0.06350541859865189, 0.10532840341329575, 0.019043484702706337, 0.060828521847724915, 0.04589780792593956, 0.10801858454942703, 0.24758686125278473, 0.007371070794761181, 0.0020562754943966866, 0.003068702993914485, 0.001770065282471478, 0.0032568874303251505, 0.004766311030834913, 0.006450070068240166, 0.2478174865245819], [0.012747925706207752, 0.037697337567806244, 0.035048969089984894, 0.050928063690662384, 0.032982971519231796, 0.06089800223708153, 0.06137798726558685, 0.06971123814582825, 0.3180164098739624, 0.0015730548184365034, 0.0006176151218824089, 0.0009819604456424713, 0.0004689690831582993, 0.0003200812789145857, 0.0003572754212655127, 0.0007954053580760956, 0.31547674536705017], [0.020289044827222824, 0.03581579029560089, 0.03444864973425865, 0.020815229043364525, 0.01792898029088974, 0.029115784913301468, 0.020787101238965988, 0.040959130972623825, 0.38620296120643616, 0.0024387615267187357, 0.000964595761615783, 0.0016872045816853642, 0.0008631363161839545, 0.0010445145890116692, 0.0018621800700202584, 0.001427622977644205, 0.3833491802215576], [0.006655355915427208, 0.1915997862815857, 0.03431512787938118, 0.01052369736135006, 0.02027483657002449, 0.015129264444112778, 0.035484883934259415, 0.04475521668791771, 0.3216469883918762, 0.0025473006535321474, 0.0003266029816586524, 0.00013894002768211067, 0.00029300845926627517, 8.91031013452448e-05, 7.486743561457843e-05, 0.00041374441934749484, 0.3157312572002411], [0.004118661396205425, 0.08324164897203445, 0.04330205172300339, 0.06619128584861755, 0.031995534896850586, 0.014395874924957752, 0.03820759430527687, 0.024274663999676704, 0.34801867604255676, 0.0015811186749488115, 0.00024411195772700012, 0.0001614234206499532, 0.00010920059139607474, 0.00013633447815664113, 0.00019805652846116573, 0.0014219180447980762, 0.3424018323421478], [0.007169913500547409, 0.14041462540626526, 0.044219449162483215, 0.1257401555776596, 0.11478133499622345, 0.02485238015651703, 0.04211713746190071, 0.03533770889043808, 0.22608068585395813, 0.005142113659530878, 0.0007632905035279691, 0.000770245329476893, 0.0016080166678875685, 0.0005241295439191163, 0.0006482986500486732, 0.005554784554988146, 0.22427575290203094], [0.005102440714836121, 0.08522544801235199, 0.014583348296582699, 0.21162785589694977, 0.12515853345394135, 0.051443375647068024, 0.042615070939064026, 0.020999761298298836, 0.22143219411373138, 0.0012102406471967697, 0.00025780353462323546, 0.00016080736531876028, 0.00023815226450096816, 4.795687345904298e-05, 7.890781853348017e-05, 0.0008461686666123569, 0.218971848487854], [0.006187396124005318, 0.0747554674744606, 0.06622717529535294, 0.07507996261119843, 0.03612075373530388, 0.23256315290927887, 0.09893076121807098, 0.01960683986544609, 0.19426439702510834, 0.001043264172039926, 0.0001706254406599328, 0.0006140281329862773, 0.0008297772728838027, 0.00045525419409386814, 0.0004455914895515889, 0.0003260369994677603, 0.19237954914569855], [0.024467743933200836, 0.018417391926050186, 0.022621972486376762, 0.009935016743838787, 0.006936731282621622, 0.015614781528711319, 0.005365448538213968, 0.0148396585136652, 0.41056859493255615, 0.013656741008162498, 0.007858437485992908, 0.009717412292957306, 0.007288186810910702, 0.0059538655914366245, 0.005341776646673679, 0.01094656903296709, 0.41046974062919617], [0.03759179264307022, 0.005974110681563616, 0.0015596693847328424, 0.01028980128467083, 0.002490728860720992, 0.006004712078720331, 0.000806200027000159, 0.012712272815406322, 0.3938857913017273, 0.06413222849369049, 0.022870821878314018, 0.023894766345620155, 0.004525987897068262, 0.003469267161563039, 0.005853339098393917, 0.011140190064907074, 0.3927983045578003], [0.022916166111826897, 0.007795052137225866, 0.002382806269451976, 0.002217048779129982, 0.00043463564361445606, 0.0021345033310353756, 0.0009567904635332525, 0.017230048775672913, 0.2991914451122284, 0.16911499202251434, 0.026645198464393616, 0.02374105341732502, 0.0214175283908844, 0.024717751890420914, 0.04131259769201279, 0.03836309164762497, 0.29942935705184937], [0.0071457442827522755, 0.002279195236042142, 0.0003260670346207917, 0.0004371095565147698, 0.0001423008943675086, 0.00013660390686709434, 0.00023541183327324688, 0.004492998588830233, 0.1667223870754242, 0.22635170817375183, 0.06139340251684189, 0.03372678533196449, 0.03635207191109657, 0.08549913763999939, 0.03999122604727745, 0.16856907308101654, 0.16619867086410522], [0.011841129511594772, 0.005342570599168539, 0.0016491134883835912, 0.002306309062987566, 0.00027519321884028614, 0.0018119483720511198, 0.0004261615686118603, 0.006615588907152414, 0.15364013612270355, 0.09385194629430771, 0.22153621912002563, 0.06602104008197784, 0.035056423395872116, 0.061841849237680435, 0.13494563102722168, 0.04923003539443016, 0.1536087840795517], [0.007978757843375206, 0.0026990456972271204, 0.001542517333291471, 0.0008321352070197463, 0.00015852856449782848, 0.0003729863674379885, 0.00016807820065878332, 0.0006434714305214584, 0.14921028912067413, 0.10562007874250412, 0.08513916283845901, 0.15670670568943024, 0.2225346863269806, 0.04266449064016342, 0.04016302153468132, 0.03378509730100632, 0.14978085458278656], [0.008475298061966896, 0.0015436670510098338, 0.0007279440178535879, 0.0005443510599434376, 8.443139086011797e-05, 0.00047076420742087066, 9.88888496067375e-05, 0.0005164956673979759, 0.13775314390659332, 0.07110677659511566, 0.08375905454158783, 0.1144537702202797, 0.2723900377750397, 0.10427999496459961, 0.040895577520132065, 0.024877039715647697, 0.138022780418396], [0.023352667689323425, 0.007963527925312519, 0.0033872213680297136, 0.0018478332785889506, 0.0005030385800637305, 0.0026986205484718084, 0.0011642086319625378, 0.006802186369895935, 0.2550806701183319, 0.20330046117305756, 0.0661063939332962, 0.041094306856393814, 0.05341745540499687, 0.024447940289974213, 0.022258510813117027, 0.03148074075579643, 0.25509417057037354], [0.02454359456896782, 0.01837095245718956, 0.02251279354095459, 0.009905047714710236, 0.006903310772031546, 0.015575935132801533, 0.0053365156054496765, 0.01471058651804924, 0.41022977232933044, 0.01393903512507677, 0.007943134754896164, 0.009865550324320793, 0.007454370614141226, 0.006049365736544132, 0.005452387034893036, 0.011086850427091122, 0.4101208448410034]], [[0.023426394909620285, 0.09086892008781433, 0.05412374064326286, 0.04057744890451431, 0.0296955406665802, 0.3290298581123352, 0.06603242456912994, 0.025668540969491005, 0.1050044372677803, 0.07524964958429337, 0.024704841896891594, 0.006263480521738529, 0.0042268699035048485, 0.0026561543345451355, 0.006586187519133091, 0.011579404585063457, 0.10430606454610825], [0.024621548131108284, 0.038398053497076035, 0.1436786949634552, 0.003269249340519309, 0.0029172715730965137, 0.017160942777991295, 0.002876817248761654, 0.006300558336079121, 0.29066383838653564, 0.012737920507788658, 0.12349595874547958, 0.01720115914940834, 0.003269166685640812, 0.005530004855245352, 0.007470955140888691, 0.013863109983503819, 0.28654488921165466], [0.005516650155186653, 0.0022310451604425907, 0.6447200775146484, 0.0015197627944871783, 0.00022418788284994662, 0.0013377133291214705, 0.00021752827160526067, 0.0014123632572591305, 0.11988424509763718, 0.0025745059829205275, 0.049204569309949875, 0.0015075196279212832, 0.0005030538886785507, 0.007739703170955181, 0.016909180209040642, 0.025284694507718086, 0.11921317875385284], [0.013424402102828026, 0.003142555011436343, 0.08069439977407455, 0.049036744982004166, 0.018610630184412003, 0.03919357806444168, 0.011662953533232212, 0.0015985965728759766, 0.2843291461467743, 0.013888023793697357, 0.012861283496022224, 0.01952863298356533, 0.0065907444804906845, 0.026999998837709427, 0.025237450376152992, 0.11269043385982513, 0.28051042556762695], [0.003420221619307995, 0.00025893712881952524, 0.007037052419036627, 0.012030331417918205, 0.21710552275180817, 0.011932444758713245, 0.0025048949755728245, 0.00029943991103209555, 0.33892133831977844, 0.0020031831227242947, 0.0014148547779768705, 0.01591162383556366, 0.01427283976227045, 0.01989276334643364, 0.006487254519015551, 0.009423681534826756, 0.3370836675167084], [0.02035590261220932, 0.0015163960633799434, 0.023009400814771652, 0.01885882019996643, 0.022646859288215637, 0.1507120132446289, 0.005922086536884308, 0.003945509437471628, 0.2660212516784668, 0.06442612409591675, 0.008216682821512222, 0.016198374330997467, 0.019237861037254333, 0.019144710153341293, 0.01865171454846859, 0.07782933861017227, 0.2633069157600403], [0.015694277361035347, 0.002930335234850645, 0.04194282367825508, 0.012919040396809578, 0.00666051497682929, 0.040622636675834656, 0.0610898919403553, 0.0027305837720632553, 0.35911235213279724, 0.024171948432922363, 0.00694342190399766, 0.013802092522382736, 0.006761043332517147, 0.014705506153404713, 0.015210062265396118, 0.021005921065807343, 0.35369759798049927], [0.023699460551142693, 0.005310104228556156, 0.3213992416858673, 0.01682310737669468, 0.022914046421647072, 0.0522843562066555, 0.0055830152705311775, 0.02809286303818226, 0.23498646914958954, 0.01337648369371891, 0.0028448880184441805, 0.0040090568363666534, 0.0026992689818143845, 0.0044503165408968925, 0.006275787949562073, 0.023720959201455116, 0.23153062164783478], [0.008026348426938057, 0.004190546460449696, 0.015968410298228264, 0.002014709636569023, 0.003019441617652774, 0.011358496733009815, 0.002573121339082718, 0.007406445685774088, 0.4667324125766754, 0.0031410264782607555, 0.002090931637212634, 0.001405903953127563, 0.001393108512274921, 0.0014646362978965044, 0.00241012847982347, 0.0036539460998028517, 0.46315041184425354], [0.06173773109912872, 0.005219586193561554, 0.010637922212481499, 0.0069235581904649734, 0.006184763740748167, 0.05883077159523964, 0.011992666870355606, 0.008501331321895123, 0.28056904673576355, 0.254031777381897, 0.0026666794437915087, 0.005549427587538958, 0.0019293546210974455, 0.0005735139711759984, 0.0008336604223586619, 0.004465118981897831, 0.27935317158699036], [0.01389636006206274, 0.2612924575805664, 0.1891685575246811, 0.013017017394304276, 0.00388146610930562, 0.01795179955661297, 0.007501694839447737, 0.006427280139178038, 0.13973206281661987, 0.006873636040836573, 0.18422868847846985, 0.002623241161927581, 0.0009048343636095524, 0.002248573349788785, 0.004248838406056166, 0.006088587921112776, 0.13991506397724152], [0.008264562115073204, 0.0020955554209649563, 0.004778152797371149, 0.005036917049437761, 0.0038053111638873816, 0.01529700681567192, 0.005853740964084864, 0.002864048583433032, 0.39063626527786255, 0.0020188239868730307, 0.001178789883852005, 0.13836894929409027, 0.015611344948410988, 0.004985304549336433, 0.0058033945970237255, 0.007987669669091702, 0.3854142129421234], [0.008076338097453117, 0.003289994318038225, 0.012813783250749111, 0.0028527146205306053, 0.0031428243964910507, 0.040546756237745285, 0.0036880800034850836, 0.0013141152448952198, 0.39437147974967957, 0.0022148294374346733, 0.0009569390676915646, 0.006357843987643719, 0.05777463689446449, 0.03549087792634964, 0.031814076006412506, 0.0022707595489919186, 0.3930239677429199], [0.0015492504462599754, 0.0022451216354966164, 0.027323711663484573, 0.0018424221780151129, 0.0004783851618412882, 0.0038252221420407295, 0.0009323082631453872, 0.0019342771265655756, 0.38407397270202637, 0.0003855380055028945, 0.00018764693231787533, 0.0006471810047514737, 0.0022911105770617723, 0.11484184861183167, 0.07481786608695984, 0.0015381876146420836, 0.38108599185943604], [0.00311397947371006, 0.003953402396291494, 0.10373593121767044, 0.002683662809431553, 0.00041021895594894886, 0.011511394754052162, 0.0017577899852767587, 0.0016149088041856885, 0.3797663152217865, 0.0005000595701858401, 0.0001689191412879154, 0.00025194440968334675, 0.0020486365538090467, 0.04753920063376427, 0.06122308969497681, 0.00229973578825593, 0.37742090225219727], [0.008566826581954956, 0.004820035304874182, 0.10270403325557709, 0.027614807710051537, 0.010357152670621872, 0.04785694554448128, 0.007361290510743856, 0.004244815558195114, 0.3579777777194977, 0.007107240613549948, 0.001643623225390911, 0.002469724975526333, 0.002502693561837077, 0.008207248523831367, 0.01291501335799694, 0.03789015859365463, 0.3557606637477875], [0.00800420343875885, 0.004144016187638044, 0.015761403366923332, 0.001992602366954088, 0.002974899485707283, 0.011284622363746166, 0.0025480231270194054, 0.007330615539103746, 0.46702513098716736, 0.0031201334204524755, 0.0020701319444924593, 0.0013982948148623109, 0.001391572062857449, 0.0014604085590690374, 0.0024074267130345106, 0.003639474743977189, 0.46344706416130066]], [[0.0007928471313789487, 0.0010190174216404557, 0.0001585514983162284, 5.1434584747767076e-05, 7.742998423054814e-05, 5.713174687116407e-05, 1.3919206139689777e-05, 0.00010720450518419966, 0.008091758005321026, 0.4729365408420563, 0.48991313576698303, 0.001260687131434679, 0.0012585459044203162, 0.002653754549100995, 0.0013919114135205746, 0.012034980580210686, 0.00818114634603262], [0.0010029723634943366, 0.04209662228822708, 0.7135932445526123, 0.002554489765316248, 0.004366864915937185, 0.007230494171380997, 0.0012529529631137848, 0.0035684374161064625, 0.11116693913936615, 0.0003105650539509952, 0.0009245284018106759, 8.303656068164855e-05, 4.5787444832967594e-05, 0.0002466466976329684, 0.00010257070243824273, 0.00023893841716926545, 0.11121497303247452], [0.0036516403779387474, 0.0472995862364769, 0.10641839355230331, 0.004822524264454842, 0.0033394680358469486, 0.005479796323925257, 0.0005949529586359859, 0.0038098131772130728, 0.40914592146873474, 0.0005327476537786424, 0.0022035958245396614, 9.65610597631894e-05, 2.3932583644636907e-05, 0.00047764237388037145, 0.00025047536473721266, 0.0006909643416292965, 0.4111621379852295], [0.00224355049431324, 0.20634308457374573, 0.15376883745193481, 0.02267998643219471, 0.05664416030049324, 0.17337311804294586, 0.052645668387413025, 0.016855567693710327, 0.1496681421995163, 0.006643256638199091, 0.004730977118015289, 0.00032622195431031287, 0.0007639311370439827, 0.0015364665305241942, 0.0013437119778245687, 0.0009342811536043882, 0.14949901401996613], [0.00036538299173116684, 0.005143022630363703, 0.002708811778575182, 0.015038595534861088, 0.010681343264877796, 0.2885156273841858, 0.08330053091049194, 0.0021479318384081125, 0.2943871021270752, 0.00024521484738215804, 0.00019054162839893252, 0.0002420800010440871, 0.0010319185676053166, 0.00015022132720332593, 0.0004866015224251896, 0.0011610363144427538, 0.2942039668560028], [0.0019862966146320105, 0.008307765237987041, 0.007513422053307295, 0.005484171211719513, 0.0022039590403437614, 0.010158870369195938, 0.020145241171121597, 0.008998398669064045, 0.46509525179862976, 0.0007951314910314977, 0.0014751587295904756, 4.8424044507555664e-05, 0.00012909101496916264, 0.00014812868903391063, 0.0004014586447738111, 0.0013958034105598927, 0.4657135307788849], [0.0011545439483597875, 0.011793678626418114, 0.03125939145684242, 0.019059352576732635, 0.0045966277830302715, 0.5868287086486816, 0.015473531559109688, 0.009756382554769516, 0.15759997069835663, 0.0004776150162797421, 0.0008431479800492525, 0.0001769419468473643, 0.0003066942736040801, 0.00048201929894275963, 0.0004719459975603968, 0.0007038738112896681, 0.15901556611061096], [0.007597621995955706, 0.02762264385819435, 0.0015580342151224613, 0.003504459047690034, 0.0018398012034595013, 0.0010083654196932912, 0.0016443085623905063, 0.022401709109544754, 0.4108135998249054, 0.05752861872315407, 0.045575715601444244, 0.002179911360144615, 0.0007118297507986426, 0.0003898569557350129, 0.0004101578379049897, 0.010229206643998623, 0.40498408675193787], [0.015399283729493618, 0.018684647977352142, 0.014629903249442577, 0.00660094665363431, 0.004707104992121458, 0.0048784250393509865, 0.0035417857579886913, 0.009543202817440033, 0.4163462817668915, 0.031936950981616974, 0.026409320533275604, 0.004559976980090141, 0.004625579807907343, 0.004424510058015585, 0.004790178965777159, 0.012767665088176727, 0.4161543548107147], [0.0012899106368422508, 0.0014286903897300363, 0.00028151809237897396, 0.0002843741967808455, 2.6972358682542108e-05, 0.00013084612146485597, 4.491140498430468e-05, 0.0002051533228950575, 0.27967092394828796, 0.08779480308294296, 0.17805759608745575, 0.04674695059657097, 0.020709386095404625, 0.01918979547917843, 0.018726643174886703, 0.06531854718923569, 0.28009292483329773], [0.0007588337175548077, 0.0010279363486915827, 0.0025828767102211714, 8.240942406700924e-05, 1.8693173842621036e-05, 9.753202175488696e-05, 6.6001052800857e-06, 0.00011051636829506606, 0.4346608519554138, 0.005069286562502384, 0.07423696666955948, 0.015227903611958027, 0.003092620987445116, 0.010285470634698868, 0.005573331378400326, 0.0116641940549016, 0.4355039894580841], [0.0009207585244439542, 0.00025215683854185045, 0.00014215118426363915, 7.439858018187806e-05, 2.3911999960546382e-05, 0.0001456388272345066, 8.773212175583467e-05, 4.157734292675741e-05, 0.041626106947660446, 0.004591154400259256, 0.013006534427404404, 0.03127625957131386, 0.7725826501846313, 0.02847745455801487, 0.04133325815200806, 0.023614436388015747, 0.04180379584431648], [0.0006537518347613513, 0.00027108658105134964, 0.00011661239841487259, 0.00017735996516421437, 1.6529331333003938e-05, 0.0005820655496791005, 2.5977740733651444e-05, 8.661939500598237e-05, 0.07484365999698639, 0.007562749087810516, 0.005310478154569864, 0.00762539729475975, 0.057572752237319946, 0.37981534004211426, 0.3452264070510864, 0.04433475434780121, 0.07577834278345108], [0.0011331927962601185, 0.0008856852073222399, 0.0003775305231101811, 0.00017986708553507924, 2.373816641920712e-05, 0.000122232420835644, 0.00010523421224206686, 0.0001699059794191271, 0.34300947189331055, 0.004500371403992176, 0.025135058909654617, 0.01057968009263277, 0.02187531068921089, 0.015773041173815727, 0.11920908838510513, 0.11226807534694672, 0.34465259313583374], [0.001784972962923348, 0.0010175504721701145, 0.0019429970998317003, 0.0005001031677238643, 6.0668273363262415e-05, 0.0004930826253257692, 9.65116560109891e-05, 0.00031560324714519083, 0.37393417954444885, 0.005092592444270849, 0.030623409897089005, 0.011288324370980263, 0.010929844342172146, 0.03941577672958374, 0.068989597260952, 0.0736636146903038, 0.37985122203826904], [0.0009639525087550282, 0.006386091932654381, 0.0012288535945117474, 0.0006315894424915314, 0.00011385047400835901, 0.0006355810328386724, 0.0001658378168940544, 0.0002279883046867326, 0.39411845803260803, 0.0013962500961497426, 0.11110951751470566, 0.011784755624830723, 0.0014553541550412774, 0.008263815194368362, 0.014601712115108967, 0.04610944539308548, 0.4008070230484009], [0.015386379323899746, 0.01851164735853672, 0.014620572328567505, 0.006580662913620472, 0.00470785703510046, 0.004902621731162071, 0.003557579591870308, 0.009431354701519012, 0.4165700674057007, 0.03163239359855652, 0.026281578466296196, 0.004576405510306358, 0.00468110479414463, 0.004471130669116974, 0.00486260000616312, 0.012844269163906574, 0.4163818061351776]], [[0.008268628269433975, 0.03745492175221443, 0.09149684011936188, 0.02669140137732029, 0.02633247897028923, 0.011395346373319626, 0.007168611511588097, 0.03556559234857559, 0.26884135603904724, 0.025360368192195892, 0.027727726846933365, 0.03671010956168175, 0.014761500991880894, 0.03874959051609039, 0.0320102758705616, 0.04242224991321564, 0.2690429985523224], [0.016845375299453735, 0.0218306016176939, 0.036527182906866074, 0.011158578097820282, 0.009073068387806416, 0.014578185975551605, 0.0058029755018651485, 0.030473915860056877, 0.35241812467575073, 0.0281349066644907, 0.021122025325894356, 0.020940164104104042, 0.01173543743789196, 0.007091095671057701, 0.01605815440416336, 0.04283600673079491, 0.35337433218955994], [0.02414902113378048, 0.008548571728169918, 0.0028651379980146885, 0.003636774141341448, 0.0033346032723784447, 0.0073812128975987434, 0.005321365315467119, 0.012973500415682793, 0.34287354350090027, 0.00543315289542079, 0.004977128002792597, 0.0048849876038730145, 0.025981323793530464, 0.05213598906993866, 0.12927523255348206, 0.02463546395301819, 0.3415929079055786], [0.03723059967160225, 0.02151254005730152, 0.01725471392273903, 0.005822973325848579, 0.006301756948232651, 0.024294724687933922, 0.007894588634371758, 0.04295893386006355, 0.3110547661781311, 0.107973113656044, 0.004542628303170204, 0.022724678739905357, 0.0069719417952001095, 0.008445045910775661, 0.017451029270887375, 0.04614988714456558, 0.31141600012779236], [0.031034693121910095, 0.010611320845782757, 0.008594815619289875, 0.002274045255035162, 0.0001026106983772479, 0.004529307130724192, 0.0015667160041630268, 0.07144632935523987, 0.32413357496261597, 0.11960802227258682, 0.0012866504257544875, 0.06574541330337524, 0.0027275211177766323, 0.0015447484329342842, 0.005019684322178364, 0.024004632607102394, 0.32576993107795715], [0.01629139482975006, 0.006612601689994335, 0.013118643313646317, 0.005902975331991911, 0.0012208023108541965, 0.0009645412210375071, 0.0028060423210263252, 0.020595334470272064, 0.30390551686286926, 0.06789546459913254, 0.0035564410500228405, 0.12111339718103409, 0.014632150530815125, 0.009795651771128178, 0.03575066849589348, 0.0714687928557396, 0.3043694496154785], [0.01867850311100483, 0.014446166343986988, 0.02077842876315117, 0.008636676706373692, 0.002688441891223192, 0.012393290176987648, 0.0021478869020938873, 0.03494225814938545, 0.3763873875141144, 0.032709840685129166, 0.005623155739158392, 0.039324406534433365, 0.006350561510771513, 0.0029939881060272455, 0.006746789440512657, 0.03811773657798767, 0.37703457474708557], [0.02582516334950924, 0.01827569305896759, 0.010876113548874855, 0.012015820480883121, 0.014953626319766045, 0.013011423870921135, 0.007065214682370424, 0.054383695125579834, 0.3805626630783081, 0.02532600425183773, 0.0035393217112869024, 0.007039695978164673, 0.003352570114657283, 0.0032674113754183054, 0.005297438241541386, 0.03360140323638916, 0.38160696625709534], [0.05303102731704712, 0.03728470951318741, 0.048727720975875854, 0.025673650205135345, 0.021410545334219933, 0.030488714575767517, 0.020884282886981964, 0.06786485761404037, 0.23328326642513275, 0.03891906514763832, 0.039990827441215515, 0.018312886357307434, 0.020030900835990906, 0.020705249160528183, 0.033295806497335434, 0.05638739839196205, 0.23370924592018127], [0.0017501875991001725, 0.008840775117278099, 0.028043758124113083, 0.031723182648420334, 0.009798775427043438, 0.013512959703803062, 0.003650103695690632, 0.010985199362039566, 0.41752153635025024, 0.0004744687466882169, 0.0041789342649281025, 0.010179707780480385, 0.009091350249946117, 0.0059426273219287395, 0.01243901439011097, 0.01269543170928955, 0.419172078371048], [0.00284730177372694, 0.013878148049116135, 0.17281247675418854, 0.00869311485439539, 0.00299784354865551, 0.010952113196253777, 0.0032772806007415056, 0.006277928594499826, 0.33355259895324707, 0.0016168219735845923, 0.0172574482858181, 0.014700569212436676, 0.010268103331327438, 0.0166130643337965, 0.03358970955014229, 0.01717262528836727, 0.33349278569221497], [0.014402853325009346, 0.0066318204626441, 0.06104583293199539, 0.007202048320323229, 0.012211530469357967, 0.07296831160783768, 0.00637474050745368, 0.006198493298143148, 0.3520578444004059, 0.008541238494217396, 0.006529742851853371, 0.0017727972008287907, 0.009005926549434662, 0.01664128340780735, 0.03240308538079262, 0.03185691311955452, 0.35415562987327576], [0.017481131479144096, 0.011335554532706738, 0.20226339995861053, 0.005008322186768055, 0.004057300742715597, 0.04900494962930679, 0.007772776763886213, 0.0037359201814979315, 0.2660984694957733, 0.011456032283604145, 0.030969975516200066, 0.023719724267721176, 0.015175752341747284, 0.02228698693215847, 0.040218982845544815, 0.021382706239819527, 0.2680320143699646], [0.013568823225796223, 0.006216733250766993, 0.11433801800012589, 0.0025357038248330355, 0.0010122503153979778, 0.013036418706178665, 0.0015781839611008763, 0.003966239280998707, 0.35356152057647705, 0.006130673922598362, 0.019616687670350075, 0.044375985860824585, 0.028211383149027824, 0.006961803417652845, 0.014315254986286163, 0.015410322695970535, 0.35516390204429626], [0.01631595566868782, 0.0045090303756296635, 0.19948728382587433, 0.005116892978549004, 0.0019825510680675507, 0.0364498496055603, 0.002869738033041358, 0.0038624706212431192, 0.2989121377468109, 0.006110471207648516, 0.017513882368803024, 0.0305311381816864, 0.028081119060516357, 0.010026843287050724, 0.008271484635770321, 0.028830019757151604, 0.30112913250923157], [0.014537427574396133, 0.035470303148031235, 0.06111142784357071, 0.022311337292194366, 0.010467912070453167, 0.056074269115924835, 0.011992115527391434, 0.053276047110557556, 0.31310322880744934, 0.007786608301103115, 0.009195945225656033, 0.024453556165099144, 0.011921915225684643, 0.017283309251070023, 0.023421403020620346, 0.013317687436938286, 0.31427547335624695], [0.05304360017180443, 0.03713420405983925, 0.048477653414011, 0.02553393691778183, 0.02128525823354721, 0.030364230275154114, 0.020786810666322708, 0.06785456091165543, 0.23367692530155182, 0.038843583315610886, 0.039974577724933624, 0.018305344507098198, 0.020090973004698753, 0.020757785066962242, 0.03350004181265831, 0.05627121776342392, 0.2340993881225586]], [[0.015332890674471855, 0.08737398684024811, 0.13119736313819885, 0.11513181775808334, 0.08929683268070221, 0.14574450254440308, 0.015729151666164398, 0.06846041232347488, 0.1487916111946106, 0.003590339794754982, 0.002598183462396264, 0.00648346496745944, 0.005243256688117981, 0.007748070172965527, 0.004428984597325325, 0.004524675197899342, 0.1483244001865387], [0.00045611002133227885, 0.0272374264895916, 0.7365787029266357, 0.011382960714399815, 0.008532898500561714, 0.007291649002581835, 0.0002838654909282923, 0.0006219688220880926, 0.10372467339038849, 4.369181260699406e-05, 0.00014400701911654323, 9.360193507745862e-05, 0.001165196648798883, 0.0002982378355227411, 0.00020724395290017128, 0.0004113147151656449, 0.10152650624513626], [0.0010970134753733873, 0.008627325296401978, 0.0011478657834231853, 0.06937770545482635, 0.0007389226811937988, 0.001014365116134286, 0.00018403785361442715, 0.0004872368590440601, 0.46219727396965027, 2.8902964913868345e-05, 1.1730639016604982e-05, 2.594712350401096e-05, 8.167533087544143e-05, 0.0005488924216479063, 0.0003741225809790194, 0.0003166523529216647, 0.4537402093410492], [0.0013795864069834352, 0.004270108882337809, 0.004544945899397135, 0.009267534129321575, 0.508529007434845, 0.10408904403448105, 0.0029551649931818247, 0.005478258710354567, 0.1773230880498886, 0.00015470014477614313, 0.00013584447151515633, 0.00015626999083906412, 0.00012891901133116335, 0.0003881491138599813, 4.326139242039062e-05, 0.0004734944086521864, 0.18068256974220276], [0.00012416482786647975, 0.0003148867399431765, 0.010896027088165283, 0.0013689488405361772, 0.03405134752392769, 0.8216419816017151, 0.0025357746053487062, 0.0009020163561217487, 0.06360246986150742, 0.00012422488362062722, 1.7076361018553143e-06, 1.3382806173467543e-05, 0.00031805282924324274, 7.130322774173692e-05, 3.7954763683956116e-05, 0.0001722505403449759, 0.06382343173027039], [0.0034128748811781406, 0.004842598456889391, 0.006920861080288887, 0.010850788094103336, 0.008168933913111687, 0.06358261406421661, 0.2975803017616272, 0.29324543476104736, 0.15307745337486267, 0.0023303343914449215, 0.00014334356819745153, 4.2055185076605994e-06, 4.670958514907397e-05, 3.832589936791919e-05, 0.00026926500140689313, 0.0022524523083120584, 0.15323345363140106], [0.0007266945322044194, 0.0031308603938668966, 0.00010069265408674255, 0.0021271025761961937, 0.0002731928543653339, 0.0007131104357540607, 9.368578321300447e-05, 0.44086721539497375, 0.274982750415802, 0.00010711299546528608, 9.076368769456167e-06, 7.243413051583047e-07, 1.4265960999182425e-06, 7.108249064913252e-06, 2.8156011467217468e-05, 0.0014256952563300729, 0.27540552616119385], [0.00011903046106453985, 0.013572759926319122, 0.0006089909002184868, 0.00011892664042534307, 9.199198393616825e-05, 0.00032549016759730875, 0.00010943587403744459, 0.009040736593306065, 0.47148117423057556, 0.05361013859510422, 8.289861580124125e-05, 8.080041880020872e-06, 1.4870154245727463e-06, 1.324291474702477e-06, 4.2500773815845605e-06, 1.946221527759917e-05, 0.4508037865161896], [0.005189702846109867, 0.012265386991202831, 0.006382113788276911, 0.004765898920595646, 0.001068382989615202, 0.0024016504175961018, 0.0008469437016174197, 0.00228643836453557, 0.4743560254573822, 0.006803077179938555, 0.0033591068349778652, 0.002013253979384899, 0.0036491057835519314, 0.004276950843632221, 0.0035748400259763002, 0.003063627751544118, 0.4636973738670349], [0.0003162229841109365, 0.0005452186451293528, 0.00018235394963994622, 2.0276085706427693e-05, 1.4840428775642067e-05, 6.071090410841862e-06, 4.924350378132658e-06, 9.694212167232763e-06, 0.23698459565639496, 0.0097284484654665, 0.4996904134750366, 0.0031426376663148403, 0.002990666078403592, 0.0032123925630003214, 0.0007807569345459342, 0.0018054945394396782, 0.2405649721622467], [0.002815808169543743, 0.00027634910657070577, 8.259742753580213e-05, 4.025722955702804e-05, 5.677327408193378e-06, 9.242954547517002e-06, 1.3219652146290173e-06, 3.0146355129545555e-05, 0.2824788987636566, 0.003929779399186373, 0.016445059329271317, 0.25540682673454285, 0.04932299256324768, 0.08758853375911713, 0.014621732756495476, 0.0021700274664908648, 0.2847747802734375], [0.0001613196509424597, 0.00015652301954105496, 0.00022793607786297798, 9.761581168277189e-06, 1.6123145542223938e-05, 1.0778161595226265e-05, 2.1070418654289824e-07, 3.25007476931205e-06, 0.034072209149599075, 0.0010804982157424092, 0.003334064967930317, 0.001677484717220068, 0.8715766668319702, 0.03627843037247658, 0.014506389386951923, 0.0024912741500884295, 0.03439714387059212], [0.0011209776857867837, 7.069364073686302e-05, 2.443575249344576e-05, 4.715206887340173e-05, 1.1577607210710994e-06, 1.985137350857258e-05, 7.195953344307782e-08, 2.5476107111899182e-05, 0.03079245053231716, 0.003739392152056098, 0.0004390341055113822, 0.03862687945365906, 0.0012236925540491939, 0.8444976806640625, 0.021412890404462814, 0.02663004770874977, 0.031328171491622925], [0.0028630648739635944, 0.0003615134337451309, 0.0005932210478931665, 7.836609438527375e-05, 1.48615808939212e-05, 5.582963422057219e-05, 5.609221261693165e-05, 0.00017876076162792742, 0.12457794696092606, 0.0032715334091335535, 0.0009346397127956152, 0.011404628865420818, 0.010117012076079845, 0.010504492558538914, 0.4387831389904022, 0.27237674593925476, 0.1238282173871994], [0.0020121426787227392, 0.0004418434400577098, 0.0004007595998700708, 7.266362081281841e-05, 1.1482536137918942e-05, 3.289573942311108e-05, 7.671415914956015e-06, 0.00011622636520769447, 0.27430617809295654, 0.01101713627576828, 0.0035365212243050337, 0.0018025655299425125, 0.0013382205506786704, 0.04214424267411232, 0.025255758315324783, 0.36160311102867126, 0.2759005129337311], [6.147086241981015e-05, 7.92171704233624e-05, 6.8173344516253565e-06, 3.0592286748287734e-06, 1.7755475028025103e-06, 4.146075411881611e-07, 2.066401449951627e-08, 3.991208359366283e-06, 0.4962970018386841, 0.0004623720597010106, 5.322854485712014e-05, 6.72201258566929e-06, 1.5004201259216643e-06, 4.483361408347264e-05, 9.870579378912225e-05, 0.0017888223519548774, 0.5010899901390076], [0.005202671512961388, 0.012121658772230148, 0.006360610015690327, 0.004695909563452005, 0.0010616891086101532, 0.0023953637573868036, 0.0008446436258964241, 0.00224735913798213, 0.47433656454086304, 0.006857879459857941, 0.0033710896968841553, 0.002047613961622119, 0.003722872119396925, 0.0043522813357412815, 0.0036460082046687603, 0.003080519149079919, 0.46365535259246826]], [[0.0034775647800415754, 0.03159920871257782, 0.05590981990098953, 0.09823749214410782, 0.10339411348104477, 0.07069417834281921, 0.005476534832268953, 0.06776495277881622, 0.2793913185596466, 0.00024863501312211156, 0.0002154050162062049, 0.0005617032875306904, 0.0003246032865718007, 0.000404341088142246, 0.0003020506410393864, 0.002176842885091901, 0.27982115745544434], [0.008573872037231922, 0.05241953954100609, 0.07574405521154404, 0.13590601086616516, 0.09709564596414566, 0.0661124438047409, 0.021933045238256454, 0.2839035391807556, 0.107901930809021, 0.008241520263254642, 0.012359398417174816, 0.0014585974859073758, 0.0010023469803854823, 0.0014763358049094677, 0.0011748215183615685, 0.01733115129172802, 0.1073656752705574], [0.019055355340242386, 0.07649022340774536, 0.01817990653216839, 0.13498955965042114, 0.05024317279458046, 0.019877104088664055, 0.011236602440476418, 0.19218626618385315, 0.21583965420722961, 0.003534552874043584, 0.02421685680747032, 0.0010112921008840203, 0.0005394059116952121, 0.0008861830574460328, 0.0012040042784065008, 0.014476785436272621, 0.21603302657604218], [0.004294311162084341, 0.013928457163274288, 0.01173633337020874, 0.005180185195058584, 0.06110323593020439, 0.04316576197743416, 0.07968101650476456, 0.4290054440498352, 0.16713520884513855, 0.010588867589831352, 0.00045926665188744664, 0.0007760879234410822, 0.0027186928782612085, 0.0006557187880389392, 0.0006137004820629954, 0.00283538899384439, 0.16612239181995392], [0.0016497024334967136, 0.022838836535811424, 0.006187095306813717, 0.00518178241327405, 0.009203464724123478, 0.03367726132273674, 0.02489609085023403, 0.27488264441490173, 0.3074115514755249, 0.005414559505879879, 0.00029026262927800417, 0.0002940870472230017, 0.0005888287560082972, 0.0002710361732169986, 0.0003273374168202281, 0.001962077571079135, 0.3049234449863434], [0.0061516608111560345, 0.020987696945667267, 0.007116274442523718, 0.011045906692743301, 0.01160528976470232, 0.017344776540994644, 0.01732688955962658, 0.30683523416519165, 0.2953673005104065, 0.007297547068446875, 0.0008926233276724815, 0.00045485360897146165, 0.000581452390179038, 0.00028437949367798865, 0.0002766584511846304, 0.0019043647916987538, 0.2945271134376526], [0.002840831410139799, 0.015938006341457367, 0.001819100696593523, 0.009596051648259163, 0.019610881805419922, 0.023622745648026466, 0.025773910805583, 0.2889944612979889, 0.3031492233276367, 0.004943017847836018, 0.0006686780252493918, 0.00047086767153814435, 0.0004358016885817051, 0.0003125704824924469, 0.0002133495727321133, 0.0013570489827543497, 0.30025342106819153], [0.00299728661775589, 0.016334213316440582, 0.006849631667137146, 0.007513015065342188, 0.01134041603654623, 0.008366581052541733, 0.0017930356552824378, 0.020179539918899536, 0.45790374279022217, 0.001626592711545527, 0.0017355451127514243, 0.0035774908028542995, 0.0018636470194905996, 0.0008732988499104977, 0.0007912074215710163, 0.0026463426183909178, 0.4536086320877075], [0.010281422175467014, 0.013918614946305752, 0.008130177855491638, 0.009474700316786766, 0.006027864292263985, 0.00677644694224, 0.005115867126733065, 0.023688988760113716, 0.4229169189929962, 0.009497158229351044, 0.009117139503359795, 0.007020134013146162, 0.007555877789855003, 0.0046909274533391, 0.00682138791307807, 0.028370724990963936, 0.4205957353115082], [0.0042145587503910065, 0.0010441363556310534, 0.0006377632962539792, 0.0011667822254821658, 0.0010258278343826532, 0.0005677206791006029, 3.2791085686767474e-05, 0.0011144705349579453, 0.2470298409461975, 0.03610122203826904, 0.04339418560266495, 0.09156223386526108, 0.041395701467990875, 0.0786336362361908, 0.06773170083761215, 0.13311634957790375, 0.25123104453086853], [0.0034249979071319103, 0.000506819284055382, 0.00038873654557392, 0.00021361271501518786, 0.00014307523088064045, 0.00011555873788893223, 1.228543624165468e-05, 0.001233634422533214, 0.24699576199054718, 0.026036961004137993, 0.06679626554250717, 0.04954139515757561, 0.030739396810531616, 0.0409163236618042, 0.04544500634074211, 0.2383892685174942, 0.24910098314285278], [0.0035930986050516367, 0.000839382701087743, 0.00038004014641046524, 0.00031339217093773186, 0.0003435770922806114, 0.0002344125387025997, 4.8426983994431794e-05, 0.0013733734376728535, 0.28140950202941895, 0.059839677065610886, 0.007820780389010906, 0.017975620925426483, 0.03606802225112915, 0.10146521776914597, 0.05773484706878662, 0.1469259262084961, 0.283634752035141], [0.008248011581599712, 0.001164585235528648, 0.000787003489676863, 0.0013185007264837623, 0.0005290344706736505, 0.0005944612203165889, 0.00019232532940804958, 0.003563093952834606, 0.21334154903888702, 0.055123236030340195, 0.0065027326345443726, 0.014273758046329021, 0.027189431712031364, 0.13482527434825897, 0.1495932787656784, 0.1668870896100998, 0.21586664021015167], [0.008838209323585033, 0.0009578358149155974, 0.0006026042974554002, 0.0005058144452050328, 0.0003895729314535856, 0.00021828866738360375, 9.7125448519364e-05, 0.0036123190075159073, 0.31504592299461365, 0.03376302495598793, 0.014995087869465351, 0.013953003101050854, 0.02050885744392872, 0.025464463979005814, 0.05557874217629433, 0.1891227662563324, 0.3163464069366455], [0.009858655743300915, 0.0006366753368638456, 0.0008422978571616113, 0.0005318766343407333, 0.00026757846353575587, 0.00014633627142757177, 4.972214446752332e-05, 0.0026745321229100227, 0.3385658860206604, 0.04986807703971863, 0.011264432221651077, 0.008093265816569328, 0.011924004182219505, 0.02401355840265751, 0.032612886279821396, 0.16846559941768646, 0.34018462896347046], [0.001805409207008779, 0.0008551637874916196, 0.0003144161310046911, 0.00035307041252963245, 0.0002351838193135336, 0.0002557503175921738, 6.508798833237961e-05, 0.0007884406368248165, 0.44601312279701233, 0.017261018976569176, 0.00692727928981185, 0.007832877337932587, 0.0062919314950704575, 0.009370478801429272, 0.010679401457309723, 0.043872933834791183, 0.4470784068107605], [0.010171118192374706, 0.013675413094460964, 0.007990268059074879, 0.009264682419598103, 0.005918261595070362, 0.006664508022367954, 0.005044593475759029, 0.02332248166203499, 0.4234662353992462, 0.009536954574286938, 0.009077874012291431, 0.0070459372363984585, 0.007624299731105566, 0.0047212266363203526, 0.006855986081063747, 0.028470631688833237, 0.42114946246147156]], [[0.004887207876890898, 0.09218461811542511, 0.15319420397281647, 0.07867231220006943, 0.058687757700681686, 0.04031192138791084, 0.02903556078672409, 0.0410614088177681, 0.23716753721237183, 0.007121799048036337, 0.008981598541140556, 0.002165687968954444, 0.0014122417196631432, 0.002105581806972623, 0.0015918848803266883, 0.0053741117008030415, 0.23604467511177063], [0.009231239557266235, 0.1236560270190239, 0.022629527375102043, 0.05002673715353012, 0.037872832268476486, 0.03985787183046341, 0.02874763123691082, 0.28249600529670715, 0.18674787878990173, 0.0075362492352724075, 0.016184628009796143, 0.0008745047962293029, 0.0021673243027180433, 0.0008553347433917224, 0.0008103384752757847, 0.003815885866060853, 0.18649008870124817], [0.01404890138655901, 0.10284174233675003, 0.08528555184602737, 0.04372251406311989, 0.03245510160923004, 0.040445420891046524, 0.02477218210697174, 0.06268306076526642, 0.2827574908733368, 0.0035818982869386673, 0.011300148442387581, 0.0008870619931258261, 0.0033040109556168318, 0.0023080918472260237, 0.0026857848279178143, 0.005545157007873058, 0.2813759744167328], [0.006038513965904713, 0.03949063643813133, 0.005797176621854305, 0.09925459325313568, 0.02386895939707756, 0.032976455986499786, 0.017759665846824646, 0.18907178938388824, 0.2833767831325531, 0.006219392642378807, 0.006231232546269894, 0.0006101291510276496, 0.00012717396020889282, 0.0005338769406080246, 0.0003746833826880902, 0.0062690912745893, 0.2819998562335968], [0.002521602204069495, 0.016350949183106422, 0.0033416952937841415, 0.03995287045836449, 0.07000948488712311, 0.02433883026242256, 0.01780638098716736, 0.044615235179662704, 0.38533449172973633, 0.0032739436719566584, 0.0008054864592850208, 0.006840225774794817, 0.00040076259756460786, 8.500029071001336e-05, 4.2904430301859975e-05, 0.0009749686578288674, 0.38330528140068054], [0.005210545379668474, 0.01654096134006977, 0.018878497183322906, 0.03578563034534454, 0.07948151230812073, 0.04479643702507019, 0.030459219589829445, 0.03408002853393555, 0.35390305519104004, 0.0031239681411534548, 0.0012768832966685295, 0.01191434171050787, 0.004412607755511999, 0.0024894692469388247, 0.0011454205960035324, 0.0024682427756488323, 0.3540332019329071], [0.0027643081266433, 0.014556143432855606, 0.008377637714147568, 0.02064206823706627, 0.033564548939466476, 0.03545372560620308, 0.05153476819396019, 0.06944683939218521, 0.3785746693611145, 0.002259686589241028, 0.0011002124520018697, 0.0008007656433619559, 0.0007070419378578663, 0.00016003272321540862, 0.00033185811480507255, 0.004071988631039858, 0.3756536543369293], [0.009665495716035366, 0.02650030516088009, 0.018499763682484627, 0.02206851914525032, 0.015454926528036594, 0.00791473314166069, 0.010234802030026913, 0.039958685636520386, 0.4194757342338562, 0.00378127908334136, 0.0016167000867426395, 0.0009473819518461823, 0.0005677852896042168, 0.0003473362885415554, 0.0007301612640731037, 0.007014446426182985, 0.41522181034088135], [0.024570448324084282, 0.019677545875310898, 0.017218880355358124, 0.013285048305988312, 0.008420281112194061, 0.01549629494547844, 0.005629510153084993, 0.01922103762626648, 0.39717188477516174, 0.013577992096543312, 0.016583584249019623, 0.007222366519272327, 0.005691088270395994, 0.010249377228319645, 0.007742955815047026, 0.020735086873173714, 0.3975064754486084], [0.04220651835203171, 0.002967719454318285, 0.0013663778081536293, 0.012281054630875587, 0.0016574827022850513, 0.004034803248941898, 0.0004788103105966002, 0.009097910486161709, 0.3218281865119934, 0.09642675518989563, 0.019853629171848297, 0.017431534826755524, 0.003854323411360383, 0.01840837113559246, 0.03803499415516853, 0.08679964393377304, 0.3232719302177429], [0.07389518618583679, 0.02702295035123825, 0.00906301662325859, 0.006894672755151987, 0.0012193075381219387, 0.0018576144939288497, 0.0005177877028472722, 0.004382263869047165, 0.20492593944072723, 0.04272201657295227, 0.2199498564004898, 0.01852991059422493, 0.03315722197294235, 0.047228626906871796, 0.04824305325746536, 0.05503121763467789, 0.20535928010940552], [0.036650121212005615, 0.0035245295148342848, 0.0021447516046464443, 0.005979917943477631, 0.007065457291901112, 0.006401651073247194, 0.0012935495469719172, 0.0033250292763113976, 0.2875789999961853, 0.06084888055920601, 0.03639991581439972, 0.08477707207202911, 0.042717210948467255, 0.05288488045334816, 0.03312809392809868, 0.046427514404058456, 0.28885242342948914], [0.023842820897698402, 0.0061490521766245365, 0.005258009769022465, 0.0035124272108078003, 0.0053131962195038795, 0.018536686897277832, 0.0030191775877028704, 0.005316915921866894, 0.2628737986087799, 0.07341355830430984, 0.07603912800550461, 0.07556675374507904, 0.044206514954566956, 0.0389987975358963, 0.050193026661872864, 0.04326396808028221, 0.2644961476325989], [0.034894365817308426, 0.002716735005378723, 0.0049328734166920185, 0.004232902079820633, 0.0011289374670013785, 0.007285014260560274, 0.001031046500429511, 0.002013083314523101, 0.3236958384513855, 0.03377455845475197, 0.049055930227041245, 0.03724876791238785, 0.029088081791996956, 0.03194654360413551, 0.057522960007190704, 0.05186576768755913, 0.32756659388542175], [0.03478550165891647, 0.002006437862291932, 0.003205270040780306, 0.001726489164866507, 0.00032062374521046877, 0.0034780981950461864, 0.0008909434545785189, 0.0019548924174159765, 0.33229196071624756, 0.020736699923872948, 0.05146470293402672, 0.014043686911463737, 0.01939854770898819, 0.05233379080891609, 0.06514052301645279, 0.061929140239953995, 0.3342926800251007], [0.01941808871924877, 0.003352021798491478, 0.001101992791518569, 0.007002298254519701, 0.0003007906780112535, 0.0019097430631518364, 0.001869277679361403, 0.006612168624997139, 0.3788433372974396, 0.014932313933968544, 0.02211517095565796, 0.004549604374915361, 0.001707464107312262, 0.003550103632733226, 0.025039352476596832, 0.12980656325817108, 0.37788963317871094], [0.02468899078667164, 0.019475648179650307, 0.01713993400335312, 0.013175126165151596, 0.008375738747417927, 0.015332572162151337, 0.005559501703828573, 0.01896260306239128, 0.3974204659461975, 0.013591830618679523, 0.016566835343837738, 0.007298782467842102, 0.00572617631405592, 0.010327349416911602, 0.007790754083544016, 0.020805934444069862, 0.397761732339859]], [[0.002128626685589552, 0.0001650748454267159, 4.5277676690602675e-05, 0.00023853186576161534, 3.4295742807444185e-05, 4.8937235987978056e-05, 2.1546569769270718e-05, 0.00044212714419700205, 0.01773514598608017, 0.9070485234260559, 0.012381895445287228, 0.0010898754699155688, 0.0020974017679691315, 0.003340748604387045, 0.0028547111432999372, 0.03231913223862648, 0.018008200451731682], [0.017532993108034134, 0.02404000796377659, 0.022591181099414825, 0.17755717039108276, 0.1322290599346161, 0.11881161481142044, 0.025408482179045677, 0.0972733125090599, 0.16660676896572113, 0.0031857462599873543, 0.012833202257752419, 0.008590567857027054, 0.007573004812002182, 0.0054169874638319016, 0.0023101670667529106, 0.01047569327056408, 0.16756410896778107], [0.015672365203499794, 0.01221366785466671, 0.024227742105722427, 0.010929143987596035, 0.010850447230041027, 0.03210141137242317, 0.0034414620604366064, 0.01649285852909088, 0.4273480772972107, 0.0016216645017266273, 0.0023261969909071922, 0.0015799971297383308, 0.0031087459065020084, 0.003981929738074541, 0.002801507944241166, 0.005657135043293238, 0.42564547061920166], [0.004369066096842289, 0.009990341030061245, 0.0031546952668577433, 0.01742328144609928, 0.13566173613071442, 0.11935246735811234, 0.0863148421049118, 0.0766659528017044, 0.25982850790023804, 0.01487801130861044, 0.002321388339623809, 0.0018796907970681787, 0.002045274944975972, 0.002377577591687441, 0.0010308694327250123, 0.002976121613755822, 0.25973016023635864], [0.001658593537285924, 0.010550912469625473, 0.004066081717610359, 0.016361169517040253, 0.06585894525051117, 0.08938878774642944, 0.04111625254154205, 0.029496224597096443, 0.36590638756752014, 0.002836958970874548, 0.0027977772988379, 0.0005122866132296622, 0.0007054119487293065, 0.0004253517254255712, 0.0004300023429095745, 0.0018425952875986695, 0.3660461902618408], [0.009245432913303375, 0.02254329062998295, 0.007270926143974066, 0.009432904422283173, 0.014281123876571655, 0.028561009094119072, 0.008832152932882309, 0.04768485203385353, 0.4108608365058899, 0.00856798980385065, 0.006119867321103811, 0.002005388494580984, 0.005063846707344055, 0.0014947752933949232, 0.001158251310698688, 0.003853730857372284, 0.4130237102508545], [0.0066557084210217, 0.03205523267388344, 0.009396317414939404, 0.035940494388341904, 0.13497395813465118, 0.1119065061211586, 0.04104582965373993, 0.06691551953554153, 0.26584550738334656, 0.013496950268745422, 0.0051397597417235374, 0.003169870935380459, 0.0027979668229818344, 0.0006697298958897591, 0.0006810688646510243, 0.0035471816081553698, 0.2657623589038849], [0.04367454722523689, 0.030709803104400635, 0.016729312017560005, 0.01720341108739376, 0.00866479892283678, 0.008728940039873123, 0.005692319944500923, 0.03621846064925194, 0.2991501986980438, 0.1713738888502121, 0.02975728176534176, 0.011335433460772038, 0.005311070941388607, 0.0026588791515678167, 0.0025084898807108402, 0.010416730307042599, 0.2998664081096649], [0.018770838156342506, 0.01709742099046707, 0.015042035840451717, 0.0079502509906888, 0.004236956592649221, 0.00667175417765975, 0.003529805690050125, 0.009282759390771389, 0.38503390550613403, 0.048978179693222046, 0.012677504681050777, 0.012153059244155884, 0.012410905212163925, 0.018826885148882866, 0.012641770765185356, 0.029373768717050552, 0.38532206416130066], [0.007248852401971817, 0.0006536538130603731, 0.00027366416179575026, 0.0010001006303355098, 0.0004254161030985415, 0.0003303191333543509, 6.740252138115466e-05, 0.0005658965674228966, 0.20623686909675598, 0.07669994980096817, 0.036322467029094696, 0.17617207765579224, 0.06659115850925446, 0.08317657560110092, 0.029041403904557228, 0.10588031262159348, 0.20931388437747955], [0.007227039895951748, 0.0008173251408152282, 0.0006482942844741046, 0.00023533531930297613, 0.00015515927225351334, 0.00033517213887535036, 5.904723366256803e-05, 0.0008556207176297903, 0.23546801507472992, 0.029780752956867218, 0.04066469147801399, 0.06829444319009781, 0.1393667608499527, 0.11184526979923248, 0.05083135515451431, 0.07527793943881989, 0.23813778162002563], [0.0020861823577433825, 0.0005855682538822293, 0.0002817694912664592, 0.0002902026171796024, 0.0008734660805203021, 0.0004221069975756109, 0.00010047149407910183, 0.0005499849794432521, 0.1790439933538437, 0.012791124172508717, 0.031504470854997635, 0.04601998254656792, 0.1111421138048172, 0.18906612694263458, 0.0766419917345047, 0.16815905272960663, 0.18044136464595795], [0.002612813375890255, 0.0009280943777412176, 0.0006409710622392595, 0.0012536129215732217, 0.0016723297303542495, 0.001090942183509469, 0.00018335638742428273, 0.0005617794231511652, 0.07714205980300903, 0.01918867975473404, 0.023990241810679436, 0.1229245737195015, 0.09795556217432022, 0.3478703498840332, 0.1517382562160492, 0.07199549674987793, 0.07825086265802383], [0.018478814512491226, 0.0011746564414352179, 0.0015585775254294276, 0.000332654919475317, 0.0003404796589165926, 0.0008957167738117278, 0.00015863262524362653, 0.0010032805148512125, 0.2193526327610016, 0.008870132267475128, 0.021755710244178772, 0.053611453622579575, 0.13596691191196442, 0.09854352474212646, 0.1066683828830719, 0.10902105271816254, 0.22226744890213013], [0.01483730599284172, 0.0006593500729650259, 0.0008523913566023111, 0.00026163633447140455, 0.0007682826835662127, 0.0011232589604333043, 0.00022558816999662668, 0.0007851230911910534, 0.24282337725162506, 0.012469442561268806, 0.013273941352963448, 0.0535944402217865, 0.15776245296001434, 0.1544434130191803, 0.04526647925376892, 0.054500918835401535, 0.24635261297225952], [0.008819248527288437, 0.0011423503747209907, 0.0020832931622862816, 0.0010823191842064261, 0.0007126519922167063, 0.0011981941061094403, 0.0009082540054805577, 0.0005889273015782237, 0.336907297372818, 0.03445626050233841, 0.02366233803331852, 0.06282828748226166, 0.055039532482624054, 0.03904608264565468, 0.057980407029390335, 0.03356192633509636, 0.3399827480316162], [0.0186923835426569, 0.01690245233476162, 0.014929926954209805, 0.007862180471420288, 0.0042130774818360806, 0.006667010486125946, 0.003520797472447157, 0.009226231835782528, 0.38489478826522827, 0.049256760627031326, 0.012612680904567242, 0.012188095599412918, 0.012523261830210686, 0.0189913772046566, 0.012764660641551018, 0.029581010341644287, 0.38517332077026367]], [[0.0010247679892927408, 0.005229088943451643, 0.0010495471069589257, 0.0010058552725240588, 0.001038134447298944, 0.0009390295017510653, 0.0005392783787101507, 0.5504570007324219, 0.21954546868801117, 0.00029976683435961604, 0.00021563368500210345, 0.00016625561693217605, 5.6110340665327385e-05, 7.001328776823357e-05, 3.409140117582865e-05, 0.00012891496589872986, 0.21820102632045746], [0.0012778689851984382, 0.009162486530840397, 0.0328250452876091, 0.003567345906049013, 0.002338143065571785, 0.0036760936491191387, 0.000227054872084409, 0.0017234844854101539, 0.4731438159942627, 0.00040190800791606307, 0.0002828743017744273, 0.00043458875734359026, 0.00016116838378366083, 0.0001923443196574226, 0.00015386042650789022, 0.0013821901520714164, 0.4690496325492859], [0.0022763442248106003, 0.00740745710209012, 0.0025567414704710245, 0.011181683279573917, 0.000770330720115453, 0.001676621614024043, 0.0004511750303208828, 0.00041692942613735795, 0.48413601517677307, 9.840984421316534e-05, 0.00027428523753769696, 0.00015854492085054517, 4.828941746382043e-05, 0.001816609757952392, 0.0006966443615965545, 0.0008187078638002276, 0.48521530628204346], [0.0011705560609698296, 0.008067402988672256, 0.0026227105408906937, 0.0049263667315244675, 0.09535650908946991, 0.021231994032859802, 0.0010216492228209972, 0.003180760657414794, 0.4285867214202881, 8.057921513682231e-05, 0.0004226982709951699, 0.00014216330600902438, 0.00010825470963027328, 0.0002754598972387612, 0.00010117785859620199, 0.0005521111306734383, 0.43215274810791016], [0.0003494688426144421, 0.0019008400849997997, 0.0022555068135261536, 0.001176475896500051, 0.06195712462067604, 0.22238466143608093, 0.00451246602460742, 0.0016097957268357277, 0.35109052062034607, 0.00011170908692292869, 6.849321653135121e-05, 0.0002079346013488248, 0.0006750866887159646, 0.00030630803667008877, 0.0001665297313593328, 0.00023527316807303578, 0.35099175572395325], [0.0017486204160377383, 0.002781594404950738, 0.0014616771368309855, 0.0038021630607545376, 0.0022196206264197826, 0.032525621354579926, 0.21113842725753784, 0.027756614610552788, 0.35746777057647705, 0.000316612800816074, 0.00024039334675762802, 6.83173057041131e-05, 4.879559492110275e-05, 9.615962335374206e-05, 0.000509117788169533, 0.001208844012580812, 0.3566097021102905], [0.0004453497240319848, 0.001446605776436627, 5.3005853260401636e-05, 0.000581208209041506, 0.000476109329611063, 0.00357592711225152, 0.0007324761827476323, 0.04861157760024071, 0.4700387120246887, 8.546111348550767e-05, 1.569770938658621e-05, 1.3062812286079861e-05, 4.503134732658509e-06, 8.778869414527435e-06, 2.3977501768968068e-05, 0.000676079245749861, 0.473211407661438], [0.0003688672441057861, 0.005001384764909744, 0.0007465973030775785, 0.00025294339866377413, 9.366084850626066e-05, 0.0004360731691122055, 0.0001310702064074576, 0.017705680802464485, 0.4902704060077667, 0.01108487043529749, 0.0012696747435256839, 1.6961041183094494e-05, 1.606821024324745e-05, 2.6223893655696884e-05, 4.410685141920112e-05, 0.0007321340963244438, 0.47180330753326416], [0.01662318967282772, 0.02117673121392727, 0.006367746740579605, 0.007473534904420376, 0.002645942848175764, 0.004686752799898386, 0.0022847596555948257, 0.008850357495248318, 0.4445846974849701, 0.012698285281658173, 0.007260583806782961, 0.004748089704662561, 0.002695214468985796, 0.004964962601661682, 0.0060354857705533504, 0.007824470289051533, 0.439079225063324], [0.001039639231748879, 0.00066462840186432, 0.0003141103661619127, 0.0003110688121523708, 5.037196024204604e-05, 5.567113112192601e-05, 6.031482917023823e-05, 0.00020879422663711011, 0.4536387622356415, 0.008490917272865772, 0.06578566879034042, 0.004481554962694645, 0.0007164674461819232, 0.002962316619232297, 0.0015529401134699583, 0.0031631551682949066, 0.4565037190914154], [0.005417697597295046, 0.001244330545887351, 0.00045445087016560137, 0.00025911355623975396, 7.74667933001183e-05, 7.100872608134523e-05, 3.109538965873071e-06, 0.0002748302067629993, 0.45596230030059814, 0.001998456194996834, 0.02770964428782463, 0.024129144847393036, 0.001417644089087844, 0.013193752616643906, 0.0018762232502922416, 0.0027496733237057924, 0.4631612002849579], [0.0005341338110156357, 0.0005509090260602534, 0.00014135749370325357, 6.147487147245556e-05, 0.000654037925414741, 0.0001497407502029091, 9.764014976099133e-06, 5.7867619034368545e-05, 0.15545834600925446, 0.000894496391993016, 0.002201249124482274, 0.042716607451438904, 0.6323442459106445, 0.006296771578490734, 0.0034781070426106453, 0.0004351684474386275, 0.15401571989059448], [0.00589332077652216, 0.001838227966800332, 0.00035328068770468235, 0.0008550429483875632, 0.00031401694286614656, 0.0009424583404324949, 2.2615948182647116e-05, 0.0007348060607910156, 0.3383333086967468, 0.0018929222133010626, 0.004326787311583757, 0.028116373345255852, 0.0023997006937861443, 0.2180381417274475, 0.012924258597195148, 0.035915032029151917, 0.3470996618270874], [0.003046461148187518, 0.0006254838081076741, 0.00031666524591855705, 0.0002944391162600368, 7.619494863320142e-05, 0.00042745916289277375, 0.0008550071506761014, 0.00016449196846224368, 0.434641033411026, 0.0009253900498151779, 0.000537925458047539, 0.007318825460970402, 0.0019181403331458569, 0.011391165666282177, 0.08509541302919388, 0.01205976027995348, 0.44030600786209106], [0.004372192081063986, 0.0008403134997934103, 0.00048056451487354934, 0.0006669890717603266, 0.00011491409532027319, 0.00020409106218721718, 0.0002397648204350844, 0.0005446789436973631, 0.44790083169937134, 0.0025964793749153614, 0.0016089759301394224, 0.0016555238980799913, 0.0009669976425357163, 0.006223927717655897, 0.011356275528669357, 0.06944501399993896, 0.45078244805336], [0.0005076297675259411, 0.0003180759958922863, 0.00014328464749269187, 4.1302351746708155e-05, 6.657034828094766e-05, 7.083241507643834e-05, 3.6509957226371625e-06, 0.00012765530846081674, 0.48913514614105225, 0.0006058869184926152, 0.0013564061373472214, 9.543503983877599e-05, 1.8725990230450407e-05, 0.0002683386264834553, 0.0001432435237802565, 0.009009743109345436, 0.498088002204895], [0.016727419570088387, 0.021148066967725754, 0.006418176926672459, 0.00743089010939002, 0.002662388375028968, 0.004726768005639315, 0.0022881985642015934, 0.00873578991740942, 0.4442789554595947, 0.012830240651965141, 0.007379855029284954, 0.004797589965164661, 0.0027426090091466904, 0.00507731456309557, 0.006111932452768087, 0.007871641777455807, 0.4387722313404083]], [[0.004602161236107349, 0.0025023785419762135, 0.0013971495209261775, 0.001910419319756329, 0.0006659245700575411, 0.0016302717849612236, 0.00043538844329304993, 0.0019634782802313566, 0.46796220541000366, 0.0066135600209236145, 0.009582077153027058, 0.007155739236623049, 0.0041506486013531685, 0.006435934454202652, 0.00901520624756813, 0.005004014819860458, 0.46897345781326294], [0.017191050574183464, 0.016913849860429764, 0.0344238206744194, 0.02109345607459545, 0.008878347463905811, 0.006207023281604052, 0.006159850396215916, 0.015799345448613167, 0.4227338135242462, 0.0017972465138882399, 0.004773606080561876, 0.001033432548865676, 0.0009794686920940876, 0.001003576209768653, 0.004898270592093468, 0.011695140972733498, 0.42441868782043457], [0.008392194285988808, 0.08104880154132843, 0.01639089733362198, 0.006375494878739119, 0.013459350913763046, 0.0038444167003035545, 0.0007482392829842865, 0.003799224039539695, 0.42443859577178955, 0.0011884078849107027, 0.002815657528117299, 0.004419669043272734, 0.0014225720660760999, 0.0013864398933947086, 0.0025226864963769913, 0.0023590491618961096, 0.42538824677467346], [0.001486602588556707, 0.0023683635517954826, 0.011529610492289066, 0.007295703049749136, 0.0021177884191274643, 0.0013771061785519123, 0.0008855614578351378, 0.0035826507955789566, 0.48522916436195374, 0.00017089073662646115, 0.00014168610505294055, 4.951690061716363e-05, 0.00018147750233765692, 0.00024248930276371539, 0.0006021489971317351, 9.054239490069449e-05, 0.4826485812664032], [0.0012847722973674536, 0.00261834729462862, 0.010125018656253815, 0.056709691882133484, 0.005156891420483589, 0.005446788854897022, 0.001008740160614252, 0.002050968585535884, 0.45814934372901917, 0.00010242780990665779, 0.00015250947035383433, 6.70484805596061e-05, 7.06777791492641e-05, 5.0836366426665336e-05, 0.00021239288616925478, 0.0011829208815470338, 0.4556106626987457], [0.002733484609052539, 0.006255648098886013, 0.008446780033409595, 0.010157633572816849, 0.03459753096103668, 0.005892027635127306, 0.0007083110976964235, 0.0033653967548161745, 0.4613305628299713, 0.00016709024203009903, 0.0002751776482909918, 0.00021413154900074005, 0.0001541209639981389, 0.00013619572564493865, 0.00023766029335092753, 0.0018110321834683418, 0.46351704001426697], [0.0028857793658971786, 0.007232632488012314, 0.007882855832576752, 0.05577976256608963, 0.04952952638268471, 0.02531002089381218, 0.0037053029518574476, 0.01959269307553768, 0.4113808870315552, 0.0001758130529196933, 0.00022426406212616712, 4.656359305954538e-05, 0.00011739401088561863, 0.0002498358371667564, 0.00044342526234686375, 0.0034575778990983963, 0.41198569536209106], [0.0034128515981137753, 0.003939729183912277, 0.003936275839805603, 0.010643941350281239, 0.0017725180368870497, 0.01996697299182415, 0.04185958579182625, 0.09607525169849396, 0.4100092351436615, 0.0002560635039117187, 0.00019517939654178917, 5.081154085928574e-05, 0.0004636063240468502, 0.00022052621352486312, 0.0014667102368548512, 0.001228218898177147, 0.4045025408267975], [0.024587204679846764, 0.010375452227890491, 0.012562116608023643, 0.008037853054702282, 0.005945245269685984, 0.009264680556952953, 0.007508115377277136, 0.011149978265166283, 0.41665399074554443, 0.007268840912729502, 0.013528822921216488, 0.006114609073847532, 0.009252402931451797, 0.010822935961186886, 0.016326000913977623, 0.011976811103522778, 0.4186249375343323], [0.0050188470631837845, 0.0002915015793405473, 0.00023480033269152045, 0.0006145444931462407, 0.00025124227977357805, 0.00018362949776928872, 0.00015460331633221358, 0.005477811209857464, 0.4828645884990692, 0.003675277577713132, 0.001866189413703978, 0.001357611850835383, 0.00043765248847194016, 0.0006097626173868775, 0.0014317381428554654, 0.011709474958479404, 0.4838205873966217], [0.006460617296397686, 0.0012748385779559612, 0.00016554942703805864, 0.00031482777558267117, 0.00018507674394641072, 0.0002885719295591116, 4.4775377318728715e-05, 0.0008923065033741295, 0.42102834582328796, 0.08835764229297638, 0.028642477467656136, 0.010229963809251785, 0.001758950063958764, 0.0018499108264222741, 0.009059443138539791, 0.005212091840803623, 0.4242345988750458], [0.0026999281253665686, 0.00026880137738771737, 0.00017479014059063047, 0.00014111267228145152, 9.407080506207421e-05, 3.429561184020713e-05, 5.40986047781189e-06, 0.0005949672777205706, 0.4694885015487671, 0.00799261499196291, 0.014231435023248196, 0.021989963948726654, 0.002557610860094428, 0.0010916937608271837, 0.002367876237258315, 0.004309205338358879, 0.4719575345516205], [0.0034246710129082203, 0.0005615180125460029, 0.000610478047747165, 0.0011244489578530192, 0.00014604648458771408, 5.383366806199774e-05, 2.5323708541691303e-05, 0.0017176289111375809, 0.4572793245315552, 0.008899073116481304, 0.012763104401528835, 0.03410309553146362, 0.002338482765480876, 0.0012693756725639105, 0.0030886861495673656, 0.01198536902666092, 0.46060964465141296], [0.002563945949077606, 0.00047227853792719543, 0.0012528554070740938, 0.00033863491262309253, 0.00013920357741881162, 6.576144369319081e-05, 1.2760151548718568e-05, 0.00013825444329995662, 0.4418810307979584, 0.008696864359080791, 0.0223518256098032, 0.033775683492422104, 0.02944188192486763, 0.004639053251594305, 0.0071303569711744785, 0.0016632245387881994, 0.44543638825416565], [0.002857710001990199, 0.0004494079330470413, 0.0005151801742613316, 0.0002472929481882602, 9.285211126552895e-05, 6.0330894484650344e-05, 4.444272053660825e-05, 0.0004616081132553518, 0.42209476232528687, 0.004248170182108879, 0.013329898938536644, 0.02593597210943699, 0.03146273270249367, 0.03693414479494095, 0.028025370091199875, 0.008159694261848927, 0.42508044838905334], [0.0024459820706397295, 0.0003664670221041888, 0.00022018687741365284, 0.00020101053814869374, 7.080255454638973e-05, 0.00013722095172852278, 8.841782255331054e-05, 0.0007888933760114014, 0.4634504020214081, 0.0008423767285421491, 0.004170592408627272, 0.0013360264711081982, 0.0037458320148289204, 0.014925336465239525, 0.0375409871339798, 0.003994698636233807, 0.4656746983528137], [0.02457481063902378, 0.010203752666711807, 0.012434737756848335, 0.008004684001207352, 0.005903394427150488, 0.00911440048366785, 0.007329131942242384, 0.010916314087808132, 0.4171464145183563, 0.00732713658362627, 0.013628934510052204, 0.0061233569867908955, 0.009307322092354298, 0.01072712242603302, 0.016225721687078476, 0.011902778409421444, 0.4191300868988037]], [[0.00048719378537498415, 0.0016921494388952851, 0.00040300501859746873, 0.00021417596144601703, 8.935183723224327e-05, 0.0030993835534900427, 0.0007810798706486821, 0.9193664193153381, 0.023055903613567352, 1.4859769180475269e-05, 1.6625217540422454e-06, 8.735669894122111e-07, 6.831931841588812e-06, 8.76136346050771e-06, 8.568998964619823e-06, 0.027730019763112068, 0.0230398029088974], [0.0027713614981621504, 0.08397112786769867, 0.05193910375237465, 0.016939187422394753, 0.0022041278425604105, 0.0029977767262607813, 0.003563196863979101, 0.00877379346638918, 0.41430044174194336, 0.0010869173565879464, 0.00045260091428644955, 7.394230487989262e-05, 0.0004003988578915596, 0.0001496725744800642, 0.0003172729047946632, 0.0010901883943006396, 0.40896889567375183], [0.0010921587236225605, 0.42779940366744995, 0.006578531581908464, 0.0014727141242474318, 0.0017975274240598083, 0.0010941035579890013, 6.023854439263232e-05, 5.6039738410618156e-05, 0.27791574597358704, 0.00023584242444485426, 0.0006934786215424538, 0.0015141678741201758, 0.0006554787396453321, 0.0012277252972126007, 0.00031151380972005427, 0.00026277234428562224, 0.2772325277328491], [0.0006737246876582503, 0.008373060263693333, 0.12172280251979828, 0.004986476618796587, 0.0007816603174433112, 0.004545122850686312, 0.007766250520944595, 0.0001776995341060683, 0.42826735973358154, 1.9760309442062862e-05, 0.0001840673794504255, 1.2046632946294267e-05, 0.0007476943428628147, 0.00014097412349656224, 0.0002640757884364575, 5.718844477087259e-05, 0.4212802052497864], [0.0004160635871812701, 0.002634591655805707, 0.016594745218753815, 0.27470913529396057, 0.021080875769257545, 0.0028178137727081776, 0.0011507784947752953, 4.058673221152276e-05, 0.34122875332832336, 4.665302549256012e-05, 0.0003152368008159101, 0.0002806786505971104, 4.328700015321374e-05, 5.6680775742279366e-05, 4.936538971378468e-05, 0.00026608278858475387, 0.33826860785484314], [0.002481795847415924, 0.007451680954545736, 0.0084501001983881, 0.04968898370862007, 0.423367977142334, 0.009024492464959621, 0.0009456521947868168, 0.00020793182193301618, 0.24719859659671783, 0.00025041832122951746, 0.0007307803025469184, 0.00017736315203364938, 0.0007285236497409642, 0.00012039943976560608, 3.8593112549278885e-05, 0.00025225148419849575, 0.24888446927070618], [0.0002650237292982638, 0.0014228214276954532, 0.005571195390075445, 0.017781691625714302, 0.04897824674844742, 0.3531229496002197, 0.0011916421353816986, 0.00011059032840421423, 0.2850455939769745, 0.0004459808988031, 4.851774065173231e-05, 3.70494817616418e-05, 7.732710218988359e-05, 0.0001507394335931167, 4.627926682587713e-05, 4.071185321663506e-05, 0.2856636345386505], [0.0011373042361810803, 0.002236234489828348, 0.005291897803544998, 0.00887035671621561, 0.0009603105136193335, 0.14108602702617645, 0.305453360080719, 0.022427262738347054, 0.2565997242927551, 7.286720210686326e-05, 3.5261724406154826e-05, 5.444881026051007e-06, 8.468711166642606e-05, 7.878318865550682e-05, 0.00033633114071562886, 0.0020188838243484497, 0.2533053159713745], [0.012357382103800774, 0.011543367058038712, 0.006351469550281763, 0.003990822937339544, 0.0031228475272655487, 0.008493022993206978, 0.002075342694297433, 0.014676825143396854, 0.44728443026542664, 0.005217724945396185, 0.004288507625460625, 0.0017007944406941533, 0.004521556664258242, 0.002942086895927787, 0.0026725721545517445, 0.019184140488505363, 0.44957709312438965], [0.003252732567489147, 0.001031869906000793, 0.00011463941336842254, 0.0001942763919942081, 0.0002165366749977693, 0.0007036080351099372, 0.0007079083006829023, 0.4053356647491455, 0.2332354336977005, 0.005686624441295862, 0.0012051259400323033, 0.0001960455410880968, 0.00021020985150244087, 0.00020092290651518852, 0.000660199613776058, 0.11466763913631439, 0.23238053917884827], [0.0006034534890204668, 0.0018712034216150641, 0.00013304398453328758, 0.0002786715922411531, 2.8423986805137247e-05, 0.00024064678291324526, 5.6940584727271926e-06, 0.0010354567784816027, 0.05986001342535019, 0.8489680290222168, 0.019986065104603767, 0.0007610179018229246, 0.0002992941881529987, 0.00024667492834851146, 0.000490342266857624, 0.004653351381421089, 0.06053868308663368], [0.0059765977784991264, 0.000524194270838052, 0.0002881841210182756, 0.0003286635037511587, 4.3188923882553354e-05, 6.399136964319041e-06, 2.1653295334544964e-06, 0.0001395211584167555, 0.2144690901041031, 0.023702329024672508, 0.3933728337287903, 0.014213722199201584, 0.10905706882476807, 0.016671810299158096, 0.0012892454396933317, 0.004276878200471401, 0.21563810110092163], [0.0015593486605212092, 0.0005676263244822621, 0.0001093849350581877, 0.0004160494136158377, 6.473961548181251e-05, 1.101725865737535e-05, 3.079825603435893e-07, 0.00017149228369817138, 0.08103245496749878, 0.022821588441729546, 0.0220235213637352, 0.7777501940727234, 0.00701160030439496, 0.0026483137626200914, 0.000208628160180524, 0.001501770573668182, 0.08210194855928421], [0.001838727155700326, 0.0003195495519321412, 0.0004254066734574735, 0.0001387432566843927, 0.00031990231946110725, 1.268110099772457e-05, 2.8119807211623993e-06, 5.5413551308447495e-05, 0.051038116216659546, 0.006010955665260553, 0.08126302808523178, 0.02901894599199295, 0.7542858719825745, 0.01028755959123373, 0.0037121635396033525, 0.009578914381563663, 0.05169110372662544], [0.003990883473306894, 0.0007089286809787154, 0.001718937768600881, 0.00024039673735387623, 0.0001616957742953673, 0.00010392876720288768, 1.709900243440643e-05, 0.000396753748646006, 0.1947663128376007, 0.0028357200790196657, 0.01638449728488922, 0.020234866067767143, 0.43291497230529785, 0.1071450337767601, 0.008218012750148773, 0.013646451756358147, 0.19651556015014648], [0.0023730352986603975, 0.001130700926296413, 0.004566582851111889, 0.000842994952108711, 9.885642793960869e-05, 0.0027004461735486984, 0.0012006893521174788, 0.0014957990497350693, 0.16556678712368011, 0.006459176540374756, 0.006770133972167969, 0.005367286037653685, 0.028224142268300056, 0.10047725588083267, 0.3277108371257782, 0.178965762257576, 0.16604936122894287], [0.01220922265201807, 0.011317525990307331, 0.006292174104601145, 0.003991291858255863, 0.003126810770481825, 0.008478366769850254, 0.0020465741399675608, 0.013959069736301899, 0.4476650059223175, 0.005234155338257551, 0.004362147767096758, 0.0017368204426020384, 0.004593800287693739, 0.002976416377350688, 0.002690965309739113, 0.019312363117933273, 0.45000725984573364]], [[0.005989899858832359, 0.09139303117990494, 0.026810016483068466, 0.0487980991601944, 0.019986731931567192, 0.16587631404399872, 0.04014173522591591, 0.1424010545015335, 0.15417440235614777, 0.06021136790513992, 0.016384968534111977, 0.003913346212357283, 0.01495314110070467, 0.004269339144229889, 0.01245495118200779, 0.03743751719594002, 0.1548040509223938], [0.00306897284463048, 0.01342796441167593, 0.021265119314193726, 0.004360045772045851, 0.0008838544599711895, 0.004062327556312084, 0.003115238156169653, 0.007174549158662558, 0.007799121551215649, 0.01093027088791132, 0.9070063829421997, 0.001290512620471418, 0.0006622169748879969, 0.0004304322646930814, 0.0002703519130591303, 0.006418721284717321, 0.007833967916667461], [0.009499392472207546, 0.019101914018392563, 0.0457623191177845, 0.012029091827571392, 0.0009536636061966419, 0.0019731668289750814, 0.002190505852922797, 0.004658089019358158, 0.01986420340836048, 0.004015312995761633, 0.8174616098403931, 0.0017430142033845186, 0.0016311665531247854, 0.0014775906456634402, 0.004162629600614309, 0.03352399542927742, 0.01995236426591873], [0.008867834694683552, 0.01500577200204134, 0.007340576499700546, 0.02920330874621868, 0.023288758471608162, 0.05022633820772171, 0.05796845257282257, 0.26596730947494507, 0.15862727165222168, 0.04648205637931824, 0.05273868516087532, 0.03601903095841408, 0.010650807991623878, 0.0013882775092497468, 0.0015978427836671472, 0.07621385157108307, 0.15841388702392578], [0.0036607510410249233, 0.006391186732798815, 0.0024480626452714205, 0.027321306988596916, 0.040052711963653564, 0.07521122694015503, 0.03156106919050217, 0.23935608565807343, 0.23948360979557037, 0.022186512127518654, 0.015814848244190216, 0.0037308423779904842, 0.017118770629167557, 0.0014685160713270307, 0.001379501074552536, 0.034448184072971344, 0.23836688697338104], [0.01754981093108654, 0.00525283720344305, 0.002489976119250059, 0.04242882505059242, 0.03509701415896416, 0.049582283943891525, 0.05015264078974724, 0.13408371806144714, 0.20574714243412018, 0.10756000131368637, 0.022729581221938133, 0.01845385693013668, 0.03551193326711655, 0.0006498933071270585, 0.0025396374985575676, 0.06564154475927353, 0.20452941954135895], [0.008984477259218693, 0.013667243532836437, 0.0026346510276198387, 0.03665647283196449, 0.01680963672697544, 0.024209333583712578, 0.03122330643236637, 0.2037796527147293, 0.19723962247371674, 0.11971084773540497, 0.043877311050891876, 0.045669861137866974, 0.015251833945512772, 0.0007043184596113861, 0.0010175270726904273, 0.04241645708680153, 0.19614742696285248], [0.01112351194024086, 0.01963193342089653, 0.0034421244636178017, 0.04310804605484009, 0.011914917267858982, 0.020744027569890022, 0.019482852891087532, 0.2168053239583969, 0.2290947139263153, 0.08332706987857819, 0.015509034506976604, 0.044853806495666504, 0.004712630528956652, 0.00038340501487255096, 0.000517758191563189, 0.04627804830670357, 0.22907079756259918], [0.055878978222608566, 0.03644617646932602, 0.05720988288521767, 0.03407743200659752, 0.025291848927736282, 0.03501643240451813, 0.03312542662024498, 0.06352921575307846, 0.22881262004375458, 0.04139076545834541, 0.03536530211567879, 0.025959070771932602, 0.0290086530148983, 0.010200546123087406, 0.014316685497760773, 0.045015912503004074, 0.2293550819158554], [0.020283760502934456, 0.008238658308982849, 0.00964807253330946, 0.010557932779192924, 0.005391087848693132, 0.24193178117275238, 0.014401191845536232, 0.03575732931494713, 0.15041330456733704, 0.2862628996372223, 0.0012126839719712734, 0.007830708287656307, 0.004214932676404715, 0.0025427164509892464, 0.00570731982588768, 0.0444498248398304, 0.15115581452846527], [0.004184054210782051, 0.3481873869895935, 0.42574769258499146, 0.005593194160610437, 0.00118062028195709, 0.002844767179340124, 0.0020074776839464903, 0.002557175699621439, 0.018180372193455696, 0.003460957668721676, 0.1550169289112091, 0.0005566927138715982, 0.0003957227454520762, 0.00041422987123951316, 0.0002905112341977656, 0.011004360392689705, 0.018377842381596565], [0.010354574769735336, 0.006637608632445335, 0.010179916396737099, 0.011776612140238285, 0.009650168009102345, 0.08078241348266602, 0.034377872943878174, 0.03934403136372566, 0.2453005462884903, 0.1109478771686554, 0.0027653821744024754, 0.12711076438426971, 0.02045830897986889, 0.0023299572058022022, 0.0015487141208723187, 0.040169768035411835, 0.24626556038856506], [0.03475775942206383, 0.003283452009782195, 0.0074998075142502785, 0.0038045400287956, 0.007586288265883923, 0.05190139263868332, 0.010764279402792454, 0.010243196971714497, 0.13020431995391846, 0.05889685079455376, 0.003898381255567074, 0.03150215372443199, 0.2923051714897156, 0.0839773640036583, 0.06827591359615326, 0.07029414921998978, 0.13080503046512604], [0.01877177134156227, 0.003274571383371949, 0.004848450887948275, 0.002747440943494439, 0.003594530513510108, 0.015208389610052109, 0.003513134317472577, 0.012410419061779976, 0.14927075803279877, 0.011832121759653091, 0.006414338946342468, 0.005159125197678804, 0.09488371759653091, 0.18686027824878693, 0.273154616355896, 0.05748378485441208, 0.15057261288166046], [0.021789737045764923, 0.003158853854984045, 0.007846553809940815, 0.0029973729979246855, 0.004203712567687035, 0.02625352330505848, 0.0038595679216086864, 0.01715152896940708, 0.14619556069374084, 0.01832089200615883, 0.006865106523036957, 0.007780106738209724, 0.14834704995155334, 0.1852159947156906, 0.20343685150146484, 0.049172524362802505, 0.14740507304668427], [0.034868333488702774, 0.014031435362994671, 0.006361465901136398, 0.010672181844711304, 0.015724845230579376, 0.0812961533665657, 0.013889340683817863, 0.1020364910364151, 0.1819848120212555, 0.09930936992168427, 0.008308115415275097, 0.07921653240919113, 0.03570425882935524, 0.005831372924149036, 0.004057868849486113, 0.12305734306573868, 0.18365009129047394], [0.05576321855187416, 0.03638318553566933, 0.057337719947099686, 0.033809397369623184, 0.02530876360833645, 0.03488156199455261, 0.0330699197947979, 0.06335695087909698, 0.22903399169445038, 0.04144205525517464, 0.03539574518799782, 0.025934269651770592, 0.02917262725532055, 0.010211492888629436, 0.014317767694592476, 0.04499416425824165, 0.2295871078968048]]], [[[0.005297467112541199, 0.16783204674720764, 0.3675132393836975, 0.04940835013985634, 0.022031916305422783, 0.028231138363480568, 0.008519068360328674, 0.07967200875282288, 0.11491129547357559, 0.003222285071387887, 0.028030067682266235, 0.0010792185785248876, 0.000500990659929812, 0.0007302633603103459, 0.000869597599375993, 0.007325959857553244, 0.11482513695955276], [0.004766474943608046, 0.12688788771629333, 0.12460390478372574, 0.02893034555017948, 0.013653712347149849, 0.017232440412044525, 0.009274342097342014, 0.08878704905509949, 0.28614553809165955, 0.0028164705727249384, 0.007499368861317635, 0.00021854243823327124, 0.0007668511243537068, 0.00013776372361462563, 0.00018941382586490363, 0.002091463888064027, 0.2859983444213867], [0.002550829667598009, 0.033975888043642044, 0.04040086641907692, 0.018888572230935097, 0.01103578507900238, 0.004325386602431536, 0.006601816974580288, 0.030958233401179314, 0.42200005054473877, 0.0005571680376306176, 0.0044917212799191475, 0.00038567467709071934, 0.0002042024425463751, 0.00023301954206544906, 0.0002402973041171208, 0.0012122293701395392, 0.4219382703304291], [0.004832226317375898, 0.06285307556390762, 0.040567006915807724, 0.07684948295354843, 0.03633752837777138, 0.04217629134654999, 0.022437050938606262, 0.10074576735496521, 0.3018655776977539, 0.003207303350791335, 0.0017004829132929444, 0.00041987671284005046, 0.00022912098211236298, 0.00010279820708092302, 0.0002585861657280475, 0.003697959240525961, 0.30171987414360046], [0.0035615579690784216, 0.023039570078253746, 0.03205538168549538, 0.027895918115973473, 0.045681148767471313, 0.01721591129899025, 0.010281956754624844, 0.059282220900058746, 0.38620585203170776, 0.002207000507041812, 0.0005496328230947256, 0.00047149305464699864, 0.00023021025117486715, 8.827996498439461e-05, 0.00021609636314678937, 0.0052264113910496235, 0.3857913613319397], [0.008434980176389217, 0.04755670204758644, 0.054221782833337784, 0.02550545334815979, 0.04541904479265213, 0.017660027369856834, 0.021139560267329216, 0.06945955008268356, 0.3433700501918793, 0.007943536154925823, 0.002520049223676324, 0.001113853882998228, 0.001180359860882163, 0.0013389542000368237, 0.002726425416767597, 0.007442825473845005, 0.342966765165329], [0.00492860097438097, 0.07522725313901901, 0.037394050508737564, 0.040790509432554245, 0.05941012501716614, 0.014410487376153469, 0.01341920904815197, 0.06265387684106827, 0.33901768922805786, 0.0030511284712702036, 0.0013138599460944533, 0.00019944993255194277, 0.0003325746220070869, 5.539594349102117e-05, 0.0001470465649617836, 0.008935135789215565, 0.3387135863304138], [0.005471080541610718, 0.1889464408159256, 0.07867632806301117, 0.06225866824388504, 0.021826161071658134, 0.023536572232842445, 0.027204491198062897, 0.04511084780097008, 0.2683037221431732, 0.0040791709907352924, 0.0031182393431663513, 0.0005477099330164492, 0.0007156832725740969, 0.000564315530937165, 0.0008533255313523114, 0.0010418876772746444, 0.2677452862262726], [0.01980801671743393, 0.008580448105931282, 0.014234697446227074, 0.00992380827665329, 0.01028298120945692, 0.0091600576415658, 0.005750687327235937, 0.018989911302924156, 0.420198917388916, 0.005519409663975239, 0.009300841018557549, 0.006858759094029665, 0.004189517814666033, 0.010243996046483517, 0.010956753976643085, 0.015462791547179222, 0.4205385744571686], [0.026824219152331352, 0.024535151198506355, 0.032377954572439194, 0.06428729742765427, 0.05188821628689766, 0.06091118976473808, 0.005562410224229097, 0.07729799300432205, 0.2642455995082855, 0.03744874894618988, 0.026658358052372932, 0.01375736203044653, 0.00215017213486135, 0.0019419833552092314, 0.0023957695811986923, 0.04324641451239586, 0.264471173286438], [0.02811388112604618, 0.1908879280090332, 0.10133616626262665, 0.06870381534099579, 0.01579757034778595, 0.02287447638809681, 0.0036996754352003336, 0.04725593701004982, 0.13034150004386902, 0.031646616756916046, 0.11990267783403397, 0.010809540748596191, 0.01338377594947815, 0.006467808969318867, 0.00892630871385336, 0.06948082149028778, 0.13037154078483582], [0.03820781409740448, 0.013281067833304405, 0.012624234892427921, 0.020400894805788994, 0.030536005273461342, 0.09677345305681229, 0.009445511735975742, 0.027323702350258827, 0.13141368329524994, 0.22022569179534912, 0.05348948761820793, 0.03902488946914673, 0.007149926386773586, 0.008481760509312153, 0.027124639600515366, 0.13289502263069153, 0.13160213828086853], [0.07273712754249573, 0.024743838235735893, 0.03470733389258385, 0.0245047640055418, 0.01619902066886425, 0.07490096241235733, 0.009171618148684502, 0.03618757054209709, 0.07154164463281631, 0.04914092645049095, 0.16088786721229553, 0.1108478307723999, 0.03542714565992355, 0.022601546719670296, 0.039940010756254196, 0.14479517936706543, 0.07166562229394913], [0.0283042024821043, 0.011317034251987934, 0.02489718608558178, 0.015414466150105, 0.0015972380060702562, 0.028210356831550598, 0.0049884323962032795, 0.02013750746846199, 0.14350950717926025, 0.013215675950050354, 0.0776049941778183, 0.08741527050733566, 0.05300682783126831, 0.08616761863231659, 0.1291641891002655, 0.13118891417980194, 0.1438606083393097], [0.03766375407576561, 0.021850580349564552, 0.04736213758587837, 0.02441374585032463, 0.001717879087664187, 0.020973367616534233, 0.006252184975892305, 0.018372710794210434, 0.1686561405658722, 0.013071833178400993, 0.15169283747673035, 0.05590406060218811, 0.04113074764609337, 0.04716875031590462, 0.0711827203631401, 0.10357741266489029, 0.16900914907455444], [0.04237581044435501, 0.034525468945503235, 0.01796027459204197, 0.07954207062721252, 0.005555150099098682, 0.011201413348317146, 0.004228738136589527, 0.03591584041714668, 0.23428994417190552, 0.08004027605056763, 0.08197487890720367, 0.0256463922560215, 0.011752222664654255, 0.011631840839982033, 0.028098609298467636, 0.06081730127334595, 0.2344437688589096], [0.019834494218230247, 0.008578206412494183, 0.014228561893105507, 0.009924551472067833, 0.010270298458635807, 0.009148378856480122, 0.005743163637816906, 0.018999049440026283, 0.4201512038707733, 0.005528767127543688, 0.009308217093348503, 0.006860585417598486, 0.004192777909338474, 0.010260799899697304, 0.010981878265738487, 0.015497867949306965, 0.42049112915992737]], [[0.004420050885528326, 0.1266983151435852, 0.16905458271503448, 0.07324151694774628, 0.0168790090829134, 0.06080598756670952, 0.015546832233667374, 0.1149018406867981, 0.20513631403446198, 0.000623668369371444, 0.0006565509829670191, 0.00024722624220885336, 0.0002423793775960803, 0.001202116720378399, 0.0012709980364888906, 0.004020807798951864, 0.20505185425281525], [0.003970958758145571, 0.1215076893568039, 0.07590468972921371, 0.04486093670129776, 0.004666517488658428, 0.009503792971372604, 0.005105611868202686, 0.0201373640447855, 0.3544002175331116, 0.0024523886386305094, 0.0003674894105643034, 0.0003268657310400158, 0.00043549813563004136, 0.00032785756047815084, 0.0006079814629629254, 0.0015747409779578447, 0.3538493812084198], [0.004103243350982666, 0.24471741914749146, 0.05287128686904907, 0.030641809105873108, 0.0027440302073955536, 0.00585038959980011, 0.0046775764785707, 0.008326535113155842, 0.31769245862960815, 0.002939981408417225, 0.0014126028399914503, 0.0005398806533776224, 0.0011916563380509615, 0.0009985454380512238, 0.0014705669600516558, 0.002631161827594042, 0.31719082593917847], [0.004044024273753166, 0.23380111157894135, 0.15574638545513153, 0.019537171348929405, 0.015819698572158813, 0.03960483521223068, 0.08028294146060944, 0.03317998722195625, 0.2058725506067276, 0.002567046321928501, 0.0007795484270900488, 0.00016869918908923864, 0.0008866242715157568, 0.0004209131875541061, 0.0006938352016732097, 0.0010381081374362111, 0.20555660128593445], [0.002462410368025303, 0.04369528964161873, 0.07162564992904663, 0.09851499646902084, 0.038973867893218994, 0.017387233674526215, 0.004132942762225866, 0.00568706588819623, 0.3570542633533478, 0.00098380574490875, 0.0005859395023435354, 0.0004364593478385359, 0.0003401575959287584, 0.00041530063026584685, 0.0003914370317943394, 0.0004994593327865005, 0.35681360960006714], [0.0027360650710761547, 0.024508515372872353, 0.030636055395007133, 0.06254623830318451, 0.05546869710087776, 0.019308557733893394, 0.009677473455667496, 0.005218904465436935, 0.39305683970451355, 0.0012013415107503533, 0.00033970651566050947, 0.00018978756270371377, 0.0004091697046533227, 0.00045075680827721953, 0.00039951736107468605, 0.0009409427875652909, 0.392911434173584], [0.0016681656707078218, 0.010791630484163761, 0.032815542072057724, 0.07728085666894913, 0.23383007943630219, 0.0634358674287796, 0.0039275032468140125, 0.0025694130454212427, 0.286190390586853, 0.00036607604124583304, 9.939416486304253e-05, 0.00023683186736889184, 0.00016975868493318558, 0.00015493850514758378, 6.693822069792077e-05, 0.0003024028264917433, 0.2860943377017975], [0.00348345167003572, 0.023145731538534164, 0.029527956619858742, 0.08934146165847778, 0.08331946283578873, 0.08211545646190643, 0.06002994626760483, 0.018208447843790054, 0.3024033308029175, 0.000712734879925847, 0.0003517790464684367, 0.00036900214035995305, 0.0004219951806589961, 0.0006284616538323462, 0.0008821941446512938, 0.002642233157530427, 0.30241644382476807], [0.011426216922700405, 0.009049708023667336, 0.012192009948194027, 0.015569650568068027, 0.008999671787023544, 0.011024982668459415, 0.0033921634312719107, 0.012049413286149502, 0.43733328580856323, 0.008446041494607925, 0.009078006260097027, 0.006193111650645733, 0.002964327810332179, 0.002092530718073249, 0.0037298286333680153, 0.00897007156163454, 0.4374888837337494], [0.030517419800162315, 0.0017176135443150997, 0.004947955720126629, 0.0203742366284132, 0.002899325918406248, 0.0026137458626180887, 0.0012104575289413333, 0.03256400674581528, 0.40427279472351074, 0.022246314212679863, 0.008757486008107662, 0.008829270489513874, 0.0024329901207238436, 0.002917352830991149, 0.0050587886944413185, 0.04412335902452469, 0.40451690554618835], [0.00934809073805809, 0.011453364044427872, 0.0036958991549909115, 0.0031375307589769363, 0.0008310616249218583, 0.00158501707483083, 0.00016332736413460225, 0.01181812584400177, 0.295293927192688, 0.2820739150047302, 0.020782075822353363, 0.010273581370711327, 0.0029598919209092855, 0.00500992638990283, 0.011379297822713852, 0.034435030072927475, 0.2957599461078644], [0.009084653109312057, 0.0006854653474874794, 0.0005500874249264598, 0.0018192435381934047, 0.0005331854335963726, 0.0003550722321961075, 0.0001159801977337338, 0.0018130653770640492, 0.34873291850090027, 0.14139458537101746, 0.04208522289991379, 0.045032303780317307, 0.025682520121335983, 0.006735603790730238, 0.007984030060470104, 0.018208835273981094, 0.3491871953010559], [0.0053117056377232075, 0.00025196128990501165, 0.00045175079139880836, 0.001449344796128571, 0.0004991032183170319, 0.0003659848007373512, 3.623289376264438e-05, 0.0008738187607377768, 0.3923167288303375, 0.06722195446491241, 0.02436753734946251, 0.07532060146331787, 0.0110842389985919, 0.005339708644896746, 0.007177589926868677, 0.015029292553663254, 0.3929024934768677], [0.0014845877885818481, 0.00020282679179217666, 0.0004995363997295499, 0.00012627163960132748, 7.107922283466905e-05, 0.0002511218190193176, 3.331775587867014e-05, 0.00013318117999006063, 0.38176634907722473, 0.06554548442363739, 0.0251153577119112, 0.02480188012123108, 0.08795204013586044, 0.011713107116520405, 0.014296168461441994, 0.0037748883478343487, 0.382232666015625], [0.0025338674895465374, 0.00031027416116558015, 0.0005934437504038215, 0.00026551485643722117, 0.0002827864373102784, 0.0005936676752753556, 7.575721974717453e-05, 0.00022718444233760238, 0.3242541551589966, 0.07145193219184875, 0.03864063322544098, 0.032356005162000656, 0.1333603858947754, 0.04058241844177246, 0.021624408662319183, 0.007989378646016121, 0.3248581886291504], [0.008402728475630283, 0.0018791983602568507, 0.002023938577622175, 0.0016244550934061408, 0.000734977365937084, 0.0017260321183130145, 0.00037761463318020105, 0.005386863369494677, 0.23020325601100922, 0.1504465788602829, 0.09307001531124115, 0.041518714278936386, 0.03147316351532936, 0.05656770244240761, 0.09995003789663315, 0.04387686029076576, 0.23073779046535492], [0.011424877680838108, 0.009034248068928719, 0.01216176524758339, 0.015556448139250278, 0.008996876887977123, 0.011022094637155533, 0.003387703327462077, 0.012043501250445843, 0.4373071491718292, 0.008479166775941849, 0.009105510078370571, 0.006214453838765621, 0.0029697800055146217, 0.002097861375659704, 0.0037407982163131237, 0.008994069881737232, 0.43746358156204224]], [[0.005105744581669569, 0.0911070853471756, 0.020794546231627464, 0.06420891731977463, 0.009805277921259403, 0.04237595573067665, 0.013696841895580292, 0.03515808284282684, 0.1733161062002182, 0.12482968717813492, 0.050272002816200256, 0.011151405051350594, 0.0037445160560309887, 0.0075047630816698074, 0.020641835406422615, 0.15274009108543396, 0.17354722321033478], [0.006423650309443474, 0.05394363030791283, 0.17512978613376617, 0.43607503175735474, 0.030811473727226257, 0.07436548173427582, 0.019245577976107597, 0.08345205336809158, 0.05096716433763504, 0.003018262330442667, 0.0037483456544578075, 0.0004999149823561311, 0.00013760202273260802, 0.00021285071852616966, 0.0005034448695369065, 0.010472883470356464, 0.050992876291275024], [0.018413737416267395, 0.1352156549692154, 0.15041641891002655, 0.17828987538814545, 0.06867485493421555, 0.09728401154279709, 0.035086825489997864, 0.11978700011968613, 0.08465901762247086, 0.0027507860213518143, 0.01060415804386139, 0.0007669285405427217, 0.0008080457337200642, 0.0005498760147020221, 0.0008260412723757327, 0.011163183487951756, 0.08470353484153748], [0.003984613344073296, 0.11092612147331238, 0.14696677029132843, 0.06717951595783234, 0.026056475937366486, 0.06739041954278946, 0.029580779373645782, 0.05975344777107239, 0.2299407422542572, 0.00662103109061718, 0.005812695249915123, 0.0020389158744364977, 0.00023032139870338142, 0.0004292786761652678, 0.001284569501876831, 0.011850080452859402, 0.22995422780513763], [0.002610620576888323, 0.05329253897070885, 0.07848281413316727, 0.03147653117775917, 0.02376451902091503, 0.05199495702981949, 0.015109510160982609, 0.030399631708860397, 0.3475860059261322, 0.006430253852158785, 0.0017697770381346345, 0.0037355064414441586, 0.000640927697531879, 0.00023232429521158338, 0.00042635094723664224, 0.004968475550413132, 0.3470793664455414], [0.005790722090750933, 0.05595386400818825, 0.07701115310192108, 0.11726585030555725, 0.03268156573176384, 0.04541349038481712, 0.046410590410232544, 0.049196332693099976, 0.26831933856010437, 0.006442303769290447, 0.004564326256513596, 0.0011788730043917894, 0.0008824720280244946, 0.0004101727972738445, 0.0012996913865208626, 0.019185950979590416, 0.2679932713508606], [0.0011707909870892763, 0.018569553270936012, 0.02420329675078392, 0.03415117412805557, 0.0223215464502573, 0.0692625343799591, 0.01225161924958229, 0.020756829530000687, 0.39523300528526306, 0.002469658385962248, 0.0005711872945539653, 0.0008048827294260263, 6.381727143889293e-05, 2.9046395866316743e-05, 8.3308776083868e-05, 0.0032584371510893106, 0.39479920268058777], [0.004729016218334436, 0.11458010226488113, 0.08157681673765182, 0.26571789383888245, 0.038655489683151245, 0.12337535619735718, 0.05719822645187378, 0.030496535822749138, 0.13191869854927063, 0.0026473761536180973, 0.004670982714742422, 0.0005967780598439276, 0.00017445682897232473, 0.0006383605650626123, 0.0015284724067896605, 0.009621094912290573, 0.13187429308891296], [0.0020520559046417475, 0.0018406618619337678, 0.006071656476706266, 0.0019317823462188244, 0.001352562103420496, 0.006889020558446646, 0.0007401554612442851, 0.002467881189659238, 0.48450881242752075, 0.00202777236700058, 0.0012497866991907358, 0.0006144680082798004, 0.0003891513333655894, 0.0005871561588719487, 0.0005445200949907303, 0.0020153741352260113, 0.4847172498703003], [0.013733774423599243, 0.009574252180755138, 0.008746680803596973, 0.008951568976044655, 0.0027222868520766497, 0.024615788832306862, 0.002326545538380742, 0.0062681217677891254, 0.21995943784713745, 0.07933208346366882, 0.07519316673278809, 0.04829152300953865, 0.009177383035421371, 0.02306598238646984, 0.034876879304647446, 0.2128230631351471, 0.22034139931201935], [0.004843204747885466, 0.0336439311504364, 0.06470245867967606, 0.06942503899335861, 0.005320457741618156, 0.030456779524683952, 0.0027195822913199663, 0.01646280847489834, 0.09513810276985168, 0.0799405500292778, 0.049472659826278687, 0.03985505923628807, 0.0036948134656995535, 0.01668129302561283, 0.025873491540551186, 0.3663578927516937, 0.09541188925504684], [0.0061147394590079784, 0.009982898831367493, 0.008776696398854256, 0.006483661476522684, 0.01151349488645792, 0.19783256947994232, 0.003573478665202856, 0.006222090683877468, 0.09631194919347763, 0.1189933642745018, 0.011652293615043163, 0.30500897765159607, 0.05492006987333298, 0.0038331488613039255, 0.003744743065908551, 0.05868811532855034, 0.09634772688150406], [0.0029577920213341713, 0.006268859375268221, 0.020655956119298935, 0.0010027632815763354, 0.003831166308373213, 0.12467428296804428, 0.0014100599801167846, 0.0011361995711922646, 0.2098654806613922, 0.091877780854702, 0.009355146437883377, 0.23754984140396118, 0.05319197475910187, 0.0069496240466833115, 0.005284553859382868, 0.014030836522579193, 0.20995762944221497], [0.006022319663316011, 0.010365533642470837, 0.022541331127285957, 0.0010288951452821493, 0.0013846724759787321, 0.03282004967331886, 0.0010796115966513753, 0.0019692357163876295, 0.4094730019569397, 0.02030200883746147, 0.026183828711509705, 0.023900650441646576, 0.016958018764853477, 0.004261720925569534, 0.003201414132490754, 0.0085412273183465, 0.40996649861335754], [0.005099293310195208, 0.006434600334614515, 0.014146889559924603, 0.0011425132397562265, 0.0007825923967175186, 0.022038228809833527, 0.0009783431887626648, 0.0014403992099687457, 0.4417753219604492, 0.013710400089621544, 0.01806250773370266, 0.00962051097303629, 0.008859865367412567, 0.003519561141729355, 0.0021580432076007128, 0.007934906519949436, 0.4422961473464966], [0.00424864050000906, 0.018053347244858742, 0.014590892009437084, 0.006673718336969614, 0.006026660092175007, 0.07573217898607254, 0.010383738204836845, 0.005573029164224863, 0.28597158193588257, 0.05072358250617981, 0.048723578453063965, 0.09867778420448303, 0.007499033119529486, 0.029175635427236557, 0.02901400998234749, 0.022380990907549858, 0.2865515649318695], [0.0020503560081124306, 0.0018381867557764053, 0.006066328380256891, 0.0019284342415630817, 0.0013502700021490455, 0.006877555977553129, 0.0007384041091427207, 0.0024629896506667137, 0.4845215678215027, 0.0020299579482525587, 0.0012505349004641175, 0.0006148909451439977, 0.00038951373426243663, 0.0005877254297956824, 0.0005448164301924407, 0.002017260529100895, 0.48473113775253296]], [[0.004559527616947889, 0.000788952864240855, 0.0025498527102172375, 0.00043330114567652345, 0.00045689012040384114, 0.0006891385419294238, 6.610320997424424e-05, 0.004297088366001844, 0.32817378640174866, 0.09726065397262573, 0.042058736085891724, 0.016970792785286903, 0.007064131088554859, 0.009209049865603447, 0.0269177109003067, 0.1292913854122162, 0.3292129337787628], [0.0119582274928689, 0.028980802744627, 0.0328555703163147, 0.2566097378730774, 0.02039879374206066, 0.040396884083747864, 0.01524291280657053, 0.05649041384458542, 0.25364869832992554, 0.0063878498040139675, 0.004316553007811308, 0.0011726761003956199, 0.001430540345609188, 0.0015171411214396358, 0.0008085212903097272, 0.014190485700964928, 0.25359416007995605], [0.005526285618543625, 0.014378851279616356, 0.061596766114234924, 0.00858283694833517, 0.0023474351037293673, 0.0147481644526124, 0.0024471022188663483, 0.01132805272936821, 0.43023717403411865, 0.0010106076952069998, 0.0031537143513560295, 0.0008174902759492397, 0.0006932400865480304, 0.00444023497402668, 0.0027562291361391544, 0.004864922259002924, 0.4310709238052368], [0.0059042214415967464, 0.03491642326116562, 0.005537510383874178, 0.04781602323055267, 0.037210576236248016, 0.15455812215805054, 0.038282498717308044, 0.01857975497841835, 0.32544761896133423, 0.0013055438175797462, 0.0003880287695210427, 0.0004887021495960653, 0.0006392252980731428, 0.0004481000651139766, 0.00046945796930231154, 0.002928073052316904, 0.32508018612861633], [0.006990362424403429, 0.02298472821712494, 0.004950795788317919, 0.09477657079696655, 0.03258771449327469, 0.13215355575084686, 0.020249199122190475, 0.016518551856279373, 0.3308350741863251, 0.002744380384683609, 0.00039450314943678677, 0.00027286590193398297, 0.0005930708721280098, 0.0011334207374602556, 0.0003167016548104584, 0.0018019923008978367, 0.3306964337825775], [0.013341106474399567, 0.029822537675499916, 0.00875923316925764, 0.10356228053569794, 0.0186845101416111, 0.0708804503083229, 0.28577691316604614, 0.01769726350903511, 0.20928701758384705, 0.006457692477852106, 0.0008896054932847619, 0.0006834467058070004, 0.0022377928253263235, 0.0029984142165631056, 0.004237498622387648, 0.015372789464890957, 0.20931147038936615], [0.006526425946503878, 0.010434571653604507, 0.0012898542918264866, 0.12139632552862167, 0.012297768145799637, 0.06764482706785202, 0.007496734149754047, 0.023653080686926842, 0.37102803587913513, 0.0018435518722981215, 0.00016437556769233197, 5.465562207973562e-05, 3.5044467949774116e-05, 7.795871351845562e-05, 3.9380931411869824e-05, 0.005023255944252014, 0.3709942400455475], [0.0038711640518158674, 0.003608987433835864, 0.007837025448679924, 0.014432350173592567, 0.0029854201711714268, 0.016951048746705055, 0.0020319868344813585, 0.005767277907580137, 0.46739304065704346, 0.00128552142996341, 0.002121981466189027, 0.0013270488707348704, 0.00030418383539654315, 0.0006217916961759329, 0.0005152271478436887, 0.001263331389054656, 0.4676826596260071], [0.005330605898052454, 0.003307645907625556, 0.010106753557920456, 0.006291170604526997, 0.005423597060143948, 0.00964100006967783, 0.001972002675756812, 0.0021975080017000437, 0.456297367811203, 0.0037741262931376696, 0.003716695122420788, 0.006658582016825676, 0.0034265785943716764, 0.014179150573909283, 0.007708790712058544, 0.003593786619603634, 0.4563746154308319], [0.003284159814938903, 0.001018995768390596, 0.001203836058266461, 0.0016154367476701736, 0.0017419243231415749, 0.003985143266618252, 0.0003202772350050509, 0.0009198729530908167, 0.4503265917301178, 0.011200111359357834, 0.018842868506908417, 0.03046409785747528, 0.002788781886920333, 0.007832895033061504, 0.006276383996009827, 0.0074068219400942326, 0.4507717490196228], [0.002434982219710946, 0.0002808681165333837, 0.0006167256506159902, 0.0015070175286382437, 0.00026110096951015294, 0.00045292111462913454, 0.0001414354337612167, 0.0028285107109695673, 0.122406966984272, 0.00938814040273428, 0.007447195239365101, 0.018445292487740517, 0.00810359138995409, 0.02039041556417942, 0.021811190992593765, 0.660796582698822, 0.12268698215484619], [0.0013778489083051682, 0.00036587839713320136, 0.00036740044015459716, 0.0003835103998426348, 0.0004604478308465332, 0.0003604190133046359, 0.00010386012581875548, 0.0005261037149466574, 0.4114050567150116, 0.008736945688724518, 0.003853559959679842, 0.00979110598564148, 0.07607895135879517, 0.027503682300448418, 0.006908680312335491, 0.03988710790872574, 0.4118894934654236], [0.002003398025408387, 0.0005276554729789495, 0.0002911758201662451, 0.0014142632717266679, 6.888956704642624e-05, 0.0006521879695355892, 1.5909998182905838e-05, 0.0005114514497108757, 0.3222295939922333, 0.0038738083094358444, 0.006736425217241049, 0.009132626466453075, 0.012696393765509129, 0.1576133519411087, 0.04806869477033615, 0.11098641902208328, 0.3231777846813202], [0.002857973799109459, 0.0010368343209847808, 0.0007925468380562961, 0.000811257166787982, 0.00016788629000075161, 0.0005031348555348814, 0.0003956520522478968, 0.000386344559956342, 0.21825887262821198, 0.004878087900578976, 0.014012823812663555, 0.017162933945655823, 0.09953681379556656, 0.06072201579809189, 0.30620676279067993, 0.05378515273332596, 0.21848493814468384], [0.0033068566117435694, 0.0004578383232001215, 0.00046508637024089694, 0.000969412038102746, 0.00020914622291456908, 0.0002484262513462454, 0.00012482100282795727, 0.0009671279112808406, 0.3901226222515106, 0.005459696985781193, 0.019207900390028954, 0.015136857517063618, 0.024081578478217125, 0.07690244913101196, 0.02174494042992592, 0.04950181767344475, 0.391093373298645], [0.0011034932686015964, 0.00041215107194148004, 0.0003774958022404462, 0.0010573997860774398, 0.00021009071497246623, 0.0011409358121454716, 0.00012127727677579969, 0.0006731980829499662, 0.4345414340496063, 0.001520061632618308, 0.0063075111247599125, 0.017148710787296295, 0.013547779992222786, 0.03630455210804939, 0.027358246967196465, 0.02274540811777115, 0.43543022871017456], [0.005336220841854811, 0.0033057851251214743, 0.010103982873260975, 0.006290243938565254, 0.0054209367372095585, 0.009648711420595646, 0.001973511418327689, 0.0021955694537609816, 0.45624688267707825, 0.003775506978854537, 0.0037189340218901634, 0.0066702477633953094, 0.0034362846054136753, 0.014226618222892284, 0.007730051409453154, 0.003597069764509797, 0.4563234746456146]], [[0.003370942547917366, 0.04881782457232475, 0.03230999782681465, 0.0675431564450264, 0.03540462628006935, 0.3920157849788666, 0.10692373663187027, 0.1143830195069313, 0.08525600284337997, 0.00179760018363595, 0.0013329824432730675, 0.01075056754052639, 0.005185674410313368, 0.0023407794069498777, 0.0021522543393075466, 0.005133139435201883, 0.08528196066617966], [0.006229700054973364, 0.03315015882253647, 0.01571987196803093, 0.07278934866189957, 0.02622600458562374, 0.07043248414993286, 0.1663273721933365, 0.07251719385385513, 0.2675327956676483, 0.00032645263127051294, 0.0003248643479309976, 0.0002673377748578787, 0.00011943218851229176, 0.00021623271459247917, 0.00013916415628045797, 0.00014406828267965466, 0.26753750443458557], [0.007965737022459507, 0.047513965517282486, 0.037971071898937225, 0.018080836161971092, 0.03044014796614647, 0.07502014189958572, 0.06291737407445908, 0.031013887375593185, 0.33791661262512207, 0.0017014400800690055, 0.001945211784914136, 0.002674452029168606, 0.0023524488788098097, 0.0017909761518239975, 0.0013948706910014153, 0.001281709992326796, 0.3380189538002014], [0.003741672495380044, 0.0804874524474144, 0.012497924268245697, 0.008312543854117393, 0.08569295704364777, 0.028727207332849503, 0.02198808826506138, 0.029839633032679558, 0.3631247878074646, 0.001788897323422134, 0.0006236655754037201, 0.00042825372656807303, 0.00010942654625978321, 7.633345376234502e-06, 1.2319670531724114e-05, 0.00011274260032223538, 0.36250489950180054], [0.015540530905127525, 0.04487740620970726, 0.007292138412594795, 0.2619316875934601, 0.021228685975074768, 0.011393985711038113, 0.025789447128772736, 0.03199133276939392, 0.2898111343383789, 0.0005804746760986745, 0.00011200936569366604, 0.00011535434168763459, 3.435305552557111e-05, 8.08266759122489e-06, 1.885876372398343e-05, 0.00021526942146010697, 0.28905925154685974], [0.023224031552672386, 0.16655676066875458, 0.018678585067391396, 0.36063358187675476, 0.030334828421473503, 0.011313293129205704, 0.04599607363343239, 0.02245994284749031, 0.15696081519126892, 0.004470486659556627, 0.0013387985527515411, 0.00039366536657325923, 0.00011838461796287447, 5.950408012722619e-05, 0.00010068350093206391, 0.0006687200511805713, 0.15669189393520355], [0.04010115936398506, 0.08965997397899628, 0.003936432301998138, 0.46130096912384033, 0.0445362813770771, 0.010296289809048176, 0.016315732151269913, 0.04378350451588631, 0.14492268860340118, 0.0003446432820055634, 0.0001834815484471619, 1.958394750545267e-05, 4.12821646023076e-06, 3.717936181146797e-07, 1.5065513707668288e-06, 3.8350674003595486e-05, 0.14455482363700867], [0.008242328651249409, 0.02511579543352127, 0.016535207629203796, 0.057554397732019424, 0.03570202365517616, 0.17274735867977142, 0.10733512789011002, 0.024890093132853508, 0.27348363399505615, 0.0018323649419471622, 0.0009202899527736008, 0.000946124317124486, 0.000476937711937353, 9.822175343288109e-05, 0.00014358140469994396, 0.000658158038277179, 0.27331820130348206], [0.014842351898550987, 0.01327650435268879, 0.016149787232279778, 0.011800777167081833, 0.005971558857709169, 0.008221070282161236, 0.004974676296114922, 0.0046539511531591415, 0.4087497591972351, 0.018472520634531975, 0.02015983685851097, 0.021893126890063286, 0.009429410099983215, 0.0056530870497226715, 0.006247894838452339, 0.020583558827638626, 0.40892016887664795], [0.011694489046931267, 0.0035602026619017124, 0.0014882980613037944, 0.001248420448973775, 0.008290162310004234, 0.05803222954273224, 0.00529091339558363, 0.004606747999787331, 0.40420520305633545, 0.018067996948957443, 0.005787001922726631, 0.06573593616485596, 0.0035199448466300964, 0.0014263902558013797, 0.001586321392096579, 0.0006910592783242464, 0.40476879477500916], [0.0017565799644216895, 0.0016134293982759118, 0.0027119028382003307, 0.000956268107984215, 0.0012822869466617703, 0.009463975206017494, 0.0012486862251535058, 0.0025284753646701574, 0.45313942432403564, 0.007141444366425276, 0.005156685598194599, 0.02251514233648777, 0.00954648107290268, 0.015542554669082165, 0.006399105302989483, 0.005228354129940271, 0.4537692964076996], [0.011386871337890625, 0.002111377427354455, 0.000706756953150034, 0.0013555969344452024, 0.0011755507439374924, 0.0006833676598034799, 0.0002750402200035751, 0.002838957356289029, 0.325282484292984, 0.08476478606462479, 0.025457805022597313, 0.06521104276180267, 0.011414819397032261, 0.004828022792935371, 0.004017669707536697, 0.13297070562839508, 0.3255191147327423], [0.006476139649748802, 0.0008783658850006759, 0.0005277867894619703, 0.00039031635969877243, 0.0004664714797399938, 0.0007430788828060031, 8.506329322699457e-05, 0.0007464757072739303, 0.16273601353168488, 0.04920459911227226, 0.012257130816578865, 0.06546778976917267, 0.02271001785993576, 0.20734331011772156, 0.2077716588973999, 0.09920534491539001, 0.16299042105674744], [0.008416908793151379, 0.0013125152327120304, 0.0007978067151270807, 0.0002654278068803251, 0.0002587765920907259, 0.0005732472636736929, 0.0001422864879714325, 0.0010867429664358497, 0.18285620212554932, 0.025519372895359993, 0.02488243579864502, 0.040679220110177994, 0.0383002944290638, 0.008951788768172264, 0.013566715642809868, 0.4692017138004303, 0.1831885278224945], [0.005189163610339165, 0.0006860109278932214, 0.0006969798705540597, 0.0001929131685756147, 0.00023091590264812112, 0.0004794131964445114, 6.954477430554107e-05, 0.001333426684141159, 0.11603162437677383, 0.03667369484901428, 0.019567517563700676, 0.035262979567050934, 0.05337856709957123, 0.011384841986000538, 0.014427675865590572, 0.5881808996200562, 0.1162138506770134], [0.006338529754430056, 0.00722100492566824, 0.001404008362442255, 0.0005628236103802919, 0.002245223382487893, 0.0029457947239279747, 8.703795174369588e-05, 0.003137916326522827, 0.1470586508512497, 0.4715854525566101, 0.13366767764091492, 0.040407732129096985, 0.01296455878764391, 0.00249129137955606, 0.0028746367897838354, 0.01769717037677765, 0.14731045067310333], [0.014840803109109402, 0.013255669735372066, 0.01613742485642433, 0.011793873272836208, 0.005963553674519062, 0.008214526809751987, 0.00497058080509305, 0.0046472446992993355, 0.4087449610233307, 0.018484093248844147, 0.02016022428870201, 0.02191845513880253, 0.009438002482056618, 0.00566423824056983, 0.006259399000555277, 0.02059193141758442, 0.40891486406326294]], [[0.003993752412497997, 0.0013385460479184985, 0.0047914679162204266, 0.003591368906199932, 0.005904020741581917, 0.02256336808204651, 0.0030767114367336035, 0.0019530488643795252, 0.1198609247803688, 0.283425897359848, 0.03495556488633156, 0.20913217961788177, 0.06221076101064682, 0.018787436187267303, 0.027225757017731667, 0.07696833461523056, 0.12022089958190918], [0.008261207491159439, 0.027138326317071915, 0.15395762026309967, 0.012650390155613422, 0.06177956238389015, 0.28440341353416443, 0.034142471849918365, 0.023110302165150642, 0.171820729970932, 0.009930008091032505, 0.0017126131569966674, 0.017165325582027435, 0.012370679527521133, 0.0027852668426930904, 0.004340345039963722, 0.0025703483261168003, 0.17186138033866882], [0.004771775100380182, 0.007082073949277401, 0.0314272902905941, 0.0036075180396437645, 0.004755150992423296, 0.023166656494140625, 0.0028421124443411827, 0.005856794770807028, 0.43119698762893677, 0.002630728529766202, 0.001089355326257646, 0.003610256128013134, 0.011623641476035118, 0.01512613333761692, 0.016638105735182762, 0.003055887995287776, 0.4315195083618164], [0.007425465155392885, 0.0703849047422409, 0.1774425506591797, 0.010957038961350918, 0.021544698625802994, 0.3787921965122223, 0.044837888330221176, 0.02039637416601181, 0.1019025593996048, 0.012729426845908165, 0.0011528690811246634, 0.03222086280584335, 0.010329254902899265, 0.0010545023251324892, 0.0016127856215462089, 0.005335953086614609, 0.10188055783510208], [0.0029996430967003107, 0.026763509958982468, 0.11934029310941696, 0.008635981939733028, 0.010709026828408241, 0.36904826760292053, 0.009430112317204475, 0.010960892774164677, 0.19858476519584656, 0.003216436365619302, 0.00029846461256965995, 0.03673403337597847, 0.0030582044273614883, 0.00015367318701464683, 0.0003008657367900014, 0.0014007758582010865, 0.1983650177717209], [0.005889039020985365, 0.019350072368979454, 0.046852149069309235, 0.0023042012471705675, 0.002209374448284507, 0.11938966810703278, 0.004886500537395477, 0.009063913486897945, 0.3805636167526245, 0.006478199269622564, 0.0003868359490297735, 0.005807084031403065, 0.007590980269014835, 0.0018962349276989698, 0.0044573531486094, 0.0025140647776424885, 0.38036060333251953], [0.003942021634429693, 0.033246442675590515, 0.04661192744970322, 0.01026337593793869, 0.006899035535752773, 0.3677421510219574, 0.010542401112616062, 0.009582511149346828, 0.24771469831466675, 0.006913176272064447, 0.00033522487501613796, 0.005386059638112783, 0.0015197106404229999, 0.00020825258980039507, 0.00041800516191869974, 0.0013687267201021314, 0.2473062127828598], [0.01034742034971714, 0.061718616634607315, 0.1919936239719391, 0.04037828743457794, 0.08423028886318207, 0.3948482275009155, 0.02267433889210224, 0.008270499296486378, 0.07766542583703995, 0.007564121391624212, 0.0011984413722530007, 0.013658230192959309, 0.004363464191555977, 0.0009361953125335276, 0.001155634643509984, 0.0013657136587426066, 0.07763147354125977], [0.0008756560855545104, 0.0006081643514335155, 0.0023821000941097736, 0.00030475048697553575, 0.0004171414184384048, 0.0029615648090839386, 0.000215228705201298, 0.0004806671931874007, 0.4894660711288452, 0.0014607614139094949, 0.0008804139215499163, 0.00390710961073637, 0.002176470123231411, 0.0010624444112181664, 0.001183721236884594, 0.0016297680558636785, 0.48998796939849854], [0.00045986881013959646, 0.00023576388775836676, 0.0013989780563861132, 0.00010590633610263467, 0.0004886252572759986, 0.016101066023111343, 0.00040648257709108293, 0.0001501672377344221, 0.10604394972324371, 0.015456512570381165, 0.0019657572265714407, 0.6424494385719299, 0.08990637212991714, 0.003565523074939847, 0.005717775318771601, 0.009308787994086742, 0.10623905807733536], [0.0004179886309430003, 0.0002866630384232849, 0.007188134361058474, 4.7599485696991906e-05, 0.0002682063786778599, 0.002377929165959358, 0.00022887489467393607, 0.0003644666576292366, 0.2808360755443573, 0.021073203533887863, 0.017181675881147385, 0.10318883508443832, 0.12473752349615097, 0.06642117351293564, 0.07715761661529541, 0.01649664156138897, 0.2817273437976837], [0.002286522416397929, 0.0004298420390114188, 0.004341352265328169, 1.834712384152226e-05, 3.2181233109440655e-05, 0.0025266497395932674, 5.141443034517579e-05, 0.00014303512580227107, 0.2495524287223816, 0.04128806293010712, 0.012103419750928879, 0.22171904146671295, 0.11481130123138428, 0.03248943015933037, 0.0337817519903183, 0.03457116335630417, 0.24985402822494507], [0.00038123567355796695, 9.707362187327817e-05, 0.0037924812640994787, 6.3657971622888e-06, 7.5434822974784765e-06, 0.001650141435675323, 9.586333362676669e-06, 3.309451130917296e-05, 0.25731226801872253, 0.0029601987916976213, 0.0020629994105547667, 0.018755417317152023, 0.0825469046831131, 0.22304780781269073, 0.1476300209760666, 0.0020913563203066587, 0.25761550664901733], [0.00010912123980233446, 1.460025850974489e-05, 0.0005517355748452246, 7.672455240026466e-07, 6.79503386891156e-07, 6.506004137918353e-05, 3.4186251696155523e-07, 9.851538379734848e-06, 0.4753793478012085, 0.00047420631744898856, 0.0013176656793802977, 0.001310355612076819, 0.012645707465708256, 0.015349369496107101, 0.016213014721870422, 0.0004618706298060715, 0.47609618306159973], [0.00048527796752750874, 4.1633076762082055e-05, 0.0012162142666056752, 4.105159405298764e-06, 2.70862892648438e-06, 0.00017066102009266615, 2.098478944390081e-06, 3.438854037085548e-05, 0.4711749851703644, 0.001355909276753664, 0.0020190614741295576, 0.0013871805276721716, 0.012695368379354477, 0.01855277456343174, 0.01767147146165371, 0.001271175337024033, 0.47191494703292847], [0.0006318666273728013, 0.00035305492929182947, 0.005681788083165884, 3.624396049417555e-05, 9.087371290661395e-05, 0.00661341892555356, 0.00013336549454834312, 0.00014994664525147527, 0.31037285923957825, 0.011156744323670864, 0.003724417183548212, 0.11595451831817627, 0.117418572306633, 0.05031771957874298, 0.05532537028193474, 0.011041784659028053, 0.3109974265098572], [0.0008743352955207229, 0.0006069379160180688, 0.0023802067153155804, 0.00030366468126885593, 0.00041568270535208285, 0.00295811053365469, 0.00021453610679600388, 0.00047938781790435314, 0.48947224020957947, 0.0014585658209398389, 0.0008794754976406693, 0.003908841405063868, 0.002178118098527193, 0.001063348725438118, 0.001184888300485909, 0.0016276933019980788, 0.4899939298629761]], [[0.017378585413098335, 0.016709530726075172, 0.02192264050245285, 0.006534617859870195, 0.007567672058939934, 0.010273301042616367, 0.001278425334021449, 0.007229949347674847, 0.2549307644367218, 0.31588026881217957, 0.015049525536596775, 0.007510794326663017, 0.012872375547885895, 0.013264773413538933, 0.008210907690227032, 0.028310120105743408, 0.25507572293281555], [0.004910493269562721, 0.044622451066970825, 0.5181931853294373, 0.034329064190387726, 0.005756134167313576, 0.00505676819011569, 0.0009837147081270814, 0.00718067679554224, 0.18384355306625366, 0.0012999624013900757, 0.002331748139113188, 0.00013568071881309152, 0.00017605161701794714, 0.00041269147186540067, 0.0006365765002556145, 0.006179030053317547, 0.183952197432518], [0.004916549194604158, 0.004587911535054445, 0.006970101036131382, 0.00858533289283514, 0.002715707290917635, 0.0028984439559280872, 0.0006683073006570339, 0.004440039861947298, 0.4792018234729767, 0.000495097425300628, 0.00048353467718698084, 0.0002778747002594173, 0.00023284953203983605, 0.0007232891512103379, 0.0008334909798577428, 0.002175401896238327, 0.4797942340373993], [0.004823579452931881, 0.08613643795251846, 0.046431463211774826, 0.01404997706413269, 0.06901515275239944, 0.186106875538826, 0.1479484587907791, 0.04693770781159401, 0.1904032975435257, 0.003807324916124344, 0.0029984903521835804, 0.0006426495965570211, 0.006278607994318008, 0.0008054818026721478, 0.0009979152819141746, 0.0019089989364147186, 0.19070765376091003], [0.0015614632284268737, 0.013726693578064442, 0.010440804995596409, 0.015902111306786537, 0.025265377014875412, 0.14347372949123383, 0.15251313149929047, 0.018069107085466385, 0.3025244176387787, 0.005606281571090221, 0.001221132348291576, 0.0007744447211734951, 0.0025148848071694374, 0.00040608234121464193, 0.0010330518707633018, 0.0020804970990866423, 0.3028867244720459], [0.016508065164089203, 0.02882392331957817, 0.017055852338671684, 0.014521168544888496, 0.002405213424935937, 0.010217517614364624, 0.006835163105279207, 0.030444404110312462, 0.4195799231529236, 0.006856197956949472, 0.01098709274083376, 0.00044689461356028914, 0.002688364125788212, 0.0013488751137629151, 0.0011925341095775366, 0.010072179138660431, 0.42001670598983765], [0.004602294880896807, 0.035371385514736176, 0.014008241705596447, 0.009971531108021736, 0.009580656886100769, 0.06832344830036163, 0.009846439585089684, 0.039506785571575165, 0.3995838761329651, 0.0028326997999101877, 0.002592699835076928, 0.0005638798465952277, 0.0008217107388190925, 0.0004992752801626921, 0.00022885753423906863, 0.0019354952964931726, 0.3997306227684021], [0.03437762334942818, 0.04071313515305519, 0.005630429834127426, 0.007909218780696392, 0.0022738506086170673, 0.0037646866403520107, 0.0008697047014720738, 0.01726190373301506, 0.3828907608985901, 0.09313038736581802, 0.01115424931049347, 0.0016766426851972938, 0.001661903690546751, 0.0006327586015686393, 0.0005437562358565629, 0.012841450050473213, 0.3826677203178406], [0.0118757588788867, 0.010547298938035965, 0.015713268890976906, 0.004203309305012226, 0.002388142514973879, 0.005080929026007652, 0.0007666688761673868, 0.007001087535172701, 0.4492567479610443, 0.008105170913040638, 0.010031886398792267, 0.003984170034527779, 0.0040039196610450745, 0.0033216525334864855, 0.004154632333666086, 0.010170423425734043, 0.44939473271369934], [0.00242200237698853, 0.0006884213071316481, 0.0010571640450507402, 0.0002763421507552266, 0.00018616033776197582, 0.0003920215822290629, 1.3083158592053223e-05, 0.0003109037643298507, 0.40929940342903137, 0.009260457940399647, 0.019178481772542, 0.02430614084005356, 0.016871890053153038, 0.0205436609685421, 0.009651831351220608, 0.07537394762039185, 0.41016823053359985], [0.004388017579913139, 0.002366981701925397, 0.03622645512223244, 0.0009531985269859433, 0.0002512405626475811, 0.0004244873416610062, 4.269340570317581e-05, 0.0003534597344696522, 0.37502631545066833, 0.007312152534723282, 0.030159318819642067, 0.009330742061138153, 0.011044470593333244, 0.02573368512094021, 0.034838516265153885, 0.08544372022151947, 0.37610459327697754], [0.0009547278750687838, 0.0002353080635657534, 0.0006676624761894345, 6.409281195374206e-05, 0.00014516402734443545, 0.0009299312951043248, 6.701538222841918e-05, 0.00026237909332849085, 0.35412874817848206, 0.00664070388302207, 0.007738995831459761, 0.034573283046483994, 0.0982760339975357, 0.044279731810092926, 0.0750938430428505, 0.020250245928764343, 0.3556921184062958], [0.002919350517913699, 0.00014477870718110353, 0.0002495268709026277, 9.211659198626876e-05, 8.105031156446785e-05, 0.00046425312757492065, 3.639682472567074e-05, 0.0002960775454994291, 0.266645222902298, 0.0034487799275666475, 0.007037733681499958, 0.03626633808016777, 0.07264333218336105, 0.16536551713943481, 0.14654715359210968, 0.030192406848073006, 0.267569899559021], [0.0057327416725456715, 0.00039516514516435564, 0.0010263306321576238, 9.072724787984043e-05, 9.439009591005743e-05, 8.05477102403529e-05, 2.011364631471224e-05, 0.0004609979805536568, 0.3992825448513031, 0.0013898939359933138, 0.010485448874533176, 0.00984457228332758, 0.07212023437023163, 0.02815556339919567, 0.05751651152968407, 0.012880034744739532, 0.400424063205719], [0.009527510963380337, 0.0007869577966630459, 0.002823961665853858, 0.00030767550924792886, 0.00032794426078908145, 0.00022554697352461517, 4.873703437624499e-05, 0.0006668545538559556, 0.36844947934150696, 0.0012574668508023024, 0.021574070677161217, 0.022150013595819473, 0.11362261325120926, 0.04010310024023056, 0.026650484651327133, 0.021952174603939056, 0.36952540278434753], [0.0030902656726539135, 0.0009195098537020385, 0.002098046476021409, 0.00016877925372682512, 0.0001234145020134747, 0.00043374343658797443, 4.0177517803385854e-05, 0.0005335178575478494, 0.40975987911224365, 0.003098654095083475, 0.0851627066731453, 0.007376433815807104, 0.024546731263399124, 0.015984579920768738, 0.014852664433419704, 0.020247885957360268, 0.41156280040740967], [0.011872228235006332, 0.01052071899175644, 0.015665380284190178, 0.004193538334220648, 0.002381826750934124, 0.005071197170764208, 0.0007656891830265522, 0.006987031549215317, 0.44931381940841675, 0.008105535060167313, 0.010029582306742668, 0.00398656539618969, 0.004004540853202343, 0.0033217878080904484, 0.004157494753599167, 0.010170815512537956, 0.4494522511959076]], [[0.008913540281355381, 0.0006829314515925944, 0.0031281630508601665, 0.00030009192414581776, 0.00035089219454675913, 0.001759113627485931, 0.00012913417594972998, 0.002070555230602622, 0.12233410030603409, 0.13772368431091309, 0.20343159139156342, 0.055641625076532364, 0.0701574981212616, 0.09910611808300018, 0.10137367993593216, 0.07043067365884781, 0.12246666848659515], [0.02751176618039608, 0.024159034714102745, 0.023592820391058922, 0.1445832997560501, 0.09750015288591385, 0.202224999666214, 0.07653571665287018, 0.25673431158065796, 0.0577586367726326, 0.009779456071555614, 0.003952621482312679, 0.0024773424956947565, 0.005470562726259232, 0.0023116853553801775, 0.0025955087039619684, 0.0050215646624565125, 0.05779048427939415], [0.024475907906889915, 0.04074174165725708, 0.0396224707365036, 0.03859742730855942, 0.03222135081887245, 0.028866969048976898, 0.018479159101843834, 0.07570339739322662, 0.32481980323791504, 0.004880881868302822, 0.024638567119836807, 0.0037614803295582533, 0.007175808772444725, 0.0018003600416705012, 0.00440263282507658, 0.004995821043848991, 0.3248162269592285], [0.008884324692189693, 0.022125890478491783, 0.009825317189097404, 0.0071654715575277805, 0.09772569686174393, 0.27357006072998047, 0.15740445256233215, 0.07360731810331345, 0.17294158041477203, 0.0015457518165931106, 0.0008029846358112991, 0.0005358491907827556, 0.00021044538880232722, 0.0002988128107972443, 0.0002829236618708819, 0.00037414743565022945, 0.1726989895105362], [0.018512140959501266, 0.017526833340525627, 0.024002408608794212, 0.008231657557189465, 0.023621628060936928, 0.05641362816095352, 0.013824665918946266, 0.046111639589071274, 0.3905484080314636, 0.006062052678316832, 0.0015031128423288465, 0.0006979292957112193, 0.000531914469320327, 0.0007963349926285446, 0.0006721874815411866, 0.0009894188260659575, 0.3899540305137634], [0.01988168992102146, 0.011795835569500923, 0.01707560196518898, 0.01203068532049656, 0.014804729260504246, 0.021116729825735092, 0.008912310935556889, 0.042481083422899246, 0.4177875220775604, 0.008459176868200302, 0.001814587158150971, 0.0017486230935901403, 0.0016087424010038376, 0.0004658525576815009, 0.00046563157229684293, 0.0017203915631398559, 0.41783076524734497], [0.018928244709968567, 0.030062800273299217, 0.009632110595703125, 0.012683519162237644, 0.03175576776266098, 0.050014324486255646, 0.02692190743982792, 0.14257201552391052, 0.3364681899547577, 0.002494734711945057, 0.0014001242816448212, 0.00022686805459670722, 0.00018708065908867866, 6.835155363660306e-05, 0.0001292120141442865, 0.0005419838707894087, 0.3359127342700958], [0.020654411986470222, 0.009708467870950699, 0.01484447717666626, 0.005635581444948912, 0.005327051039785147, 0.0017440877854824066, 0.0007545474800281227, 0.0054176882840693, 0.4599474370479584, 0.0015233741141855717, 0.004458594601601362, 0.002075082855299115, 0.001972536789253354, 0.0014049700694158673, 0.0015179242473095655, 0.002926965244114399, 0.46008673310279846], [0.011228637769818306, 0.005883045960217714, 0.016290275380015373, 0.006677302066236734, 0.0024471115320920944, 0.00513409823179245, 0.0019039304461330175, 0.005942048039287329, 0.43917980790138245, 0.008366926573216915, 0.014395671896636486, 0.00581879448145628, 0.008429646492004395, 0.007404949050396681, 0.006506940815597773, 0.014795057475566864, 0.43959569931030273], [0.00846025999635458, 0.0019214152125641704, 0.0017327957320958376, 0.00046790350461378694, 0.00016445685469079763, 0.0004813381237909198, 1.4800290955463424e-05, 0.001295703579671681, 0.27926596999168396, 0.05723419040441513, 0.05265139788389206, 0.012116220779716969, 0.03297659382224083, 0.03268353268504143, 0.052441976964473724, 0.18608899414539337, 0.28000253438949585], [0.005607645493000746, 0.000500095309689641, 0.0006661454099230468, 0.00041022986988537014, 0.00019211370090488344, 0.0011753732105717063, 0.00010459329496370628, 0.0005150376819074154, 0.10101576894521713, 0.03585054352879524, 0.04353448003530502, 0.060530513525009155, 0.20973624289035797, 0.07495477050542831, 0.1386769711971283, 0.22527427971363068, 0.10125516355037689], [0.0031953253783285618, 0.0001699210552033037, 0.0005718045867979527, 5.319255433278158e-05, 0.00010029536497313529, 0.00025709191686473787, 1.1546352652658243e-05, 0.0005885058199055493, 0.29203155636787415, 0.03565583750605583, 0.014455920085310936, 0.015718411654233932, 0.0232790969312191, 0.07432617247104645, 0.10934000462293625, 0.13751719892024994, 0.292728066444397], [0.006303438451141119, 0.0004736166447401047, 0.0006107649533078074, 0.000232794918701984, 0.00021594610007014126, 0.0007799601880833507, 3.803833169513382e-05, 0.0018736189231276512, 0.26635947823524475, 0.054509490728378296, 0.024582084268331528, 0.00883593037724495, 0.06305274367332458, 0.08420052379369736, 0.14148066937923431, 0.07952277362346649, 0.2669280767440796], [0.0038487864658236504, 0.00015592215640936047, 0.00042468926403671503, 3.970479156123474e-05, 8.894040365703404e-05, 0.00016048956604208797, 8.422052815149073e-06, 0.00034785515163093805, 0.2874422073364258, 0.024063101038336754, 0.010985521599650383, 0.014809911139309406, 0.27835899591445923, 0.03128990903496742, 0.04255788028240204, 0.017614761367440224, 0.28780290484428406], [0.004141564015299082, 0.00011860784434247762, 0.0004029510309919715, 4.821887705475092e-05, 0.00014665107300970703, 0.0002101055288221687, 1.4009598999109585e-05, 0.00042269821278750896, 0.3891921639442444, 0.020305251702666283, 0.006058109924197197, 0.01306024007499218, 0.13343219459056854, 0.014593067578971386, 0.014638426713645458, 0.013438066467642784, 0.3897777497768402], [0.0035496836062520742, 0.00017536882660351694, 0.00031609530560672283, 0.00013904485967941582, 0.0001091164376703091, 0.00018140740576200187, 2.416700590401888e-05, 0.0004794143605977297, 0.2794491946697235, 0.011725141666829586, 0.026393679901957512, 0.05920784920454025, 0.07417434453964233, 0.09884730726480484, 0.14340732991695404, 0.021796440705657005, 0.2800244987010956], [0.011221363209187984, 0.0058611370623111725, 0.016246208921074867, 0.0066537074744701385, 0.0024400674737989902, 0.005121526774019003, 0.0018985304050147533, 0.005926494486629963, 0.4392649233341217, 0.008359838277101517, 0.014372322708368301, 0.005819439422339201, 0.0084309671074152, 0.007405674550682306, 0.006508531514555216, 0.014788822270929813, 0.439680278301239]], [[0.0306701622903347, 0.1292310506105423, 0.10861409455537796, 0.08514351397752762, 0.10937508940696716, 0.0569685660302639, 0.05747164413332939, 0.021217547357082367, 0.11061517149209976, 0.016052134335041046, 0.06287457793951035, 0.025008130818605423, 0.004577512387186289, 0.007040305994451046, 0.005467359907925129, 0.05901488661766052, 0.11065822094678879], [0.03356469050049782, 0.21835041046142578, 0.02970985881984234, 0.03822793439030647, 0.02221178635954857, 0.018977049738168716, 0.010037008672952652, 0.08172161877155304, 0.17314298450946808, 0.019709866493940353, 0.09214501082897186, 0.004933816846460104, 0.0051571037620306015, 0.003140565473586321, 0.0043029142543673515, 0.07132761925458908, 0.17333978414535522], [0.0723181962966919, 0.036544524133205414, 0.02399425394833088, 0.01596604473888874, 0.016080062836408615, 0.01109517365694046, 0.007149949669837952, 0.08885099738836288, 0.3059309720993042, 0.004997994750738144, 0.035782746970653534, 0.005109894089400768, 0.010521999560296535, 0.009112564846873283, 0.013246867805719376, 0.03709539398550987, 0.30620241165161133], [0.01740470714867115, 0.059176620095968246, 0.021376149728894234, 0.03125555440783501, 0.014173476956784725, 0.05698207765817642, 0.009542708285152912, 0.02592284232378006, 0.2579106390476227, 0.014003976248204708, 0.08979861438274384, 0.031223073601722717, 0.006575165782123804, 0.0029036386404186487, 0.006337929517030716, 0.0970286875963211, 0.25838419795036316], [0.02452060393989086, 0.01349394116550684, 0.007710483390837908, 0.0056761871092021465, 0.01003273669630289, 0.013025617226958275, 0.004285040311515331, 0.01440286822617054, 0.42611417174339294, 0.004331996664404869, 0.02761840634047985, 0.006583582144230604, 0.002759317634627223, 0.000283123372355476, 0.0004700732242781669, 0.012028670869767666, 0.426663339138031], [0.011455507948994637, 0.007416325155645609, 0.006022854708135128, 0.008872303180396557, 0.013097690418362617, 0.012978608720004559, 0.006898950319737196, 0.014621845446527004, 0.43546822667121887, 0.0021214657463133335, 0.012420115992426872, 0.011270076967775822, 0.003285323502495885, 0.0017255217535421252, 0.0019435553112998605, 0.014284607954323292, 0.4361169636249542], [0.018834713846445084, 0.027964124456048012, 0.005101025104522705, 0.010365412570536137, 0.02215101383626461, 0.009694105945527554, 0.01132423896342516, 0.015313981100916862, 0.40941616892814636, 0.003711278084665537, 0.020651908591389656, 0.0056063514202833176, 0.0012981811305508018, 0.0004608895687852055, 0.0007714182720519602, 0.02760343626141548, 0.40973177552223206], [0.030829759314656258, 0.0648462176322937, 0.023091088980436325, 0.04657803475856781, 0.0401473343372345, 0.024723216891288757, 0.01378705631941557, 0.2512493431568146, 0.08023130148649216, 0.0229116789996624, 0.031449105590581894, 0.010500955395400524, 0.004389235749840736, 0.0022131619043648243, 0.0034238931257277727, 0.2693057060241699, 0.08032295852899551], [0.005665841978043318, 0.0019548346754163504, 0.003917010501027107, 0.0008303453214466572, 0.0008599025895819068, 0.0011831223964691162, 0.00021934133837930858, 0.004241488873958588, 0.48433801531791687, 0.0005546637694351375, 0.005041162483394146, 0.0005469773896038532, 0.00041578782838769257, 0.0009226111578755081, 0.0005357841146178544, 0.004128101281821728, 0.4846450686454773], [0.007197539787739515, 0.23467621207237244, 0.013682407326996326, 0.015267045237123966, 0.003186084097251296, 0.021842489019036293, 0.012569568119943142, 0.027540503069758415, 0.3220365345478058, 0.0021230594720691442, 0.0018589351093396544, 0.0028974744491279125, 0.000833368394523859, 0.0013429964892566204, 0.0028887407388538122, 0.007370350416749716, 0.32268673181533813], [0.0019134434405714273, 0.8684930205345154, 0.013678018003702164, 0.008373302407562733, 0.000564310816116631, 0.001247801585122943, 0.00232503330335021, 0.015443975105881691, 0.040955789387226105, 0.0006007515476085246, 0.0022852441761642694, 9.639908967074007e-05, 5.9586280258372426e-05, 0.00016088646952994168, 0.0003261975944042206, 0.0024946739431470633, 0.04098157584667206], [0.013910728506743908, 0.042021580040454865, 0.016952531412243843, 0.03136570006608963, 0.014598763547837734, 0.1592356562614441, 0.015181680209934711, 0.022869009524583817, 0.31176286935806274, 0.004690026864409447, 0.005013104062527418, 0.012045932933688164, 0.007709654048085213, 0.0047163693234324455, 0.005965595133602619, 0.019548481330275536, 0.31241244077682495], [0.01881362870335579, 0.11324555426836014, 0.04581518471240997, 0.006511281244456768, 0.0021469241473823786, 0.018125640228390694, 0.004843913950026035, 0.032868269830942154, 0.3230080008506775, 0.0020155785605311394, 0.010078292340040207, 0.002984242979437113, 0.009081819094717503, 0.03491366282105446, 0.04017724469304085, 0.011806333437561989, 0.323564350605011], [0.022907566279172897, 0.06779477745294571, 0.029140233993530273, 0.003092866623774171, 0.0005785891553387046, 0.005700143054127693, 0.0015060430159792304, 0.031208284199237823, 0.3441377282142639, 0.0019301283173263073, 0.007523950655013323, 0.00226850644685328, 0.005685861688107252, 0.051253870129585266, 0.06688147783279419, 0.013709302060306072, 0.34468066692352295], [0.03022623248398304, 0.06777824461460114, 0.04176308959722519, 0.008315070532262325, 0.0011556034442037344, 0.014348349533975124, 0.004499042872339487, 0.04966636374592781, 0.33269402384757996, 0.0022566067054867744, 0.006280732341110706, 0.0025585852563381195, 0.005187130067497492, 0.03270724043250084, 0.04982475936412811, 0.017508534714579582, 0.3332303464412689], [0.006955794524401426, 0.17732207477092743, 0.01780001074075699, 0.0211767740547657, 0.0011854704935103655, 0.02470485307276249, 0.004915482830256224, 0.06268854439258575, 0.2819146513938904, 0.005918231792747974, 0.011893280781805515, 0.010618392378091812, 0.0022999285720288754, 0.008420434780418873, 0.015374165959656239, 0.06433295458555222, 0.28247886896133423], [0.005663195159286261, 0.00195591920055449, 0.0039177704602479935, 0.0008304807706736028, 0.0008589510107412934, 0.0011833644239231944, 0.00021922329324297607, 0.004245697520673275, 0.4843338429927826, 0.0005552212824113667, 0.005040270276367664, 0.00054716388694942, 0.0004161388787906617, 0.0009227770497091115, 0.0005362536758184433, 0.004131972789764404, 0.48464182019233704]], [[0.014101995155215263, 0.0031319938134402037, 0.013989981263875961, 0.0014078596141189337, 0.0012245603138580918, 0.0025030383840203285, 0.0005961312563158572, 0.006321529857814312, 0.42616912722587585, 0.03948110714554787, 0.016117794439196587, 0.00408739922568202, 0.0059061478823423386, 0.00850494671612978, 0.009124873206019402, 0.0209654588252306, 0.42636609077453613], [0.00667915353551507, 0.07592984288930893, 0.13586674630641937, 0.016810910776257515, 0.005916202906519175, 0.020199300721287727, 0.005483024753630161, 0.0344231016933918, 0.3477858603000641, 0.001067489036358893, 0.0010366725036874413, 0.0001745819899952039, 0.00017410116561222821, 0.00014942655980121344, 0.00018256505427416414, 0.0005827136337757111, 0.3475383520126343], [0.0013855311553925276, 0.008228878490626812, 0.01238162536174059, 0.0027839727699756622, 0.0006923131295479834, 0.0024311773013323545, 0.0007201561238616705, 0.02193097025156021, 0.47435352206230164, 0.00041124087874777615, 0.00019700895063579082, 4.164076381130144e-05, 4.4116928620496765e-05, 4.400230318424292e-05, 8.783100929576904e-05, 0.0006969596142880619, 0.4735690653324127], [0.002417391398921609, 0.3900287449359894, 0.36608269810676575, 0.010427892208099365, 0.003142738016322255, 0.007896148599684238, 0.006289131008088589, 0.018262505531311035, 0.0960964635014534, 0.0015240313950926065, 0.0008374750032089651, 7.17956354492344e-05, 8.443900151178241e-05, 0.00012302333198022097, 0.00021348362497519702, 0.0005965592572465539, 0.09590543806552887], [0.0015184064395725727, 0.22997330129146576, 0.18070445954799652, 0.10410165041685104, 0.008204692974686623, 0.010274489410221577, 0.006799566559493542, 0.014073384925723076, 0.22097383439540863, 0.0013285573804751039, 0.0005724547663703561, 0.00010126011329703033, 9.585007501300424e-05, 0.00011687017831718549, 0.00019451510161161423, 0.0004434861766640097, 0.22052322328090668], [0.005328285042196512, 0.2500512897968292, 0.19683198630809784, 0.07495176047086716, 0.00790240429341793, 0.016132958233356476, 0.007773575372993946, 0.019797131419181824, 0.20896711945533752, 0.0012602112255990505, 0.0013638047967106104, 7.213281787699088e-05, 0.00010111636220244691, 7.543480751337484e-05, 0.00015952668036334217, 0.0006899815052747726, 0.20854128897190094], [0.002569479402154684, 0.36234259605407715, 0.21984915435314178, 0.14997535943984985, 0.026156507432460785, 0.019880864769220352, 0.01249348558485508, 0.00593593530356884, 0.1001373901963234, 0.0001871999556897208, 0.0003869208157993853, 2.979900273203384e-05, 1.823881575546693e-05, 1.1048969099647366e-05, 2.4806040528346784e-05, 0.00010531870066188276, 0.09989587962627411], [0.004533677361905575, 0.22503994405269623, 0.26184529066085815, 0.10608796030282974, 0.0166179146617651, 0.04023632034659386, 0.020721064880490303, 0.02675922028720379, 0.14761383831501007, 0.0014124589506536722, 0.00039877681410871446, 7.560791709693149e-05, 0.00023732869885861874, 0.00015420631098095328, 0.00017564419249538332, 0.0006804355653002858, 0.1474103033542633], [0.007221407722681761, 0.006796389352530241, 0.010733025148510933, 0.007969130761921406, 0.007599503733217716, 0.014522723853588104, 0.002767052734270692, 0.00809000339359045, 0.4498912990093231, 0.006547246593981981, 0.004517809022217989, 0.0035991850309073925, 0.003991721197962761, 0.0026475691702216864, 0.0033872632775455713, 0.009543891996145248, 0.4501747786998749], [0.3512765169143677, 0.014916264452040195, 0.021187733858823776, 0.0066393110901117325, 0.0036652141716331244, 0.011030099354684353, 0.0008259069290943444, 0.0042607784271240234, 0.23751099407672882, 0.039788030087947845, 0.02307143807411194, 0.011269490234553814, 0.014527969062328339, 0.007612792309373617, 0.007331886328756809, 0.00760337058454752, 0.23748233914375305], [0.39027178287506104, 0.05514398217201233, 0.09285689145326614, 0.0015682718949392438, 0.0006360787665471435, 0.0021107911597937346, 0.00022214429918676615, 0.005069678649306297, 0.19254492223262787, 0.015209605917334557, 0.0291146170347929, 0.00305691035464406, 0.001490374794229865, 0.002215137705206871, 0.0020979573018848896, 0.01397025492042303, 0.19242073595523834], [0.04371083527803421, 0.004963824525475502, 0.00699589354917407, 0.0007851978880353272, 0.00011472513142507523, 0.0006069503724575043, 9.038080315804109e-05, 0.007394604850560427, 0.33151960372924805, 0.04085860401391983, 0.1715882122516632, 0.0026457186322659254, 0.0058319298550486565, 0.007919266819953918, 0.015167702920734882, 0.02824433520436287, 0.3315621316432953], [0.046981312334537506, 0.004018538165837526, 0.009274945594370365, 0.0004495770263019949, 0.00029229841311462224, 0.0009502055472694337, 8.165868348442018e-05, 0.002550405915826559, 0.27733877301216125, 0.03745574131608009, 0.17546671628952026, 0.016825569793581963, 0.05789818987250328, 0.015623614192008972, 0.020805571228265762, 0.056364353746175766, 0.2776225805282593], [0.04903415963053703, 0.0016058763721957803, 0.002727618906646967, 0.00013428492820821702, 8.316965977428481e-05, 0.00015778667875565588, 2.465477882651612e-05, 0.0011611670488491654, 0.31936269998550415, 0.030109889805316925, 0.12831424176692963, 0.009387314319610596, 0.07172176986932755, 0.010500491596758366, 0.01019746158272028, 0.04580685868859291, 0.3196706175804138], [0.04805561155080795, 0.001573901972733438, 0.00275638815946877, 0.00014177306729834527, 8.820529910735786e-05, 0.00014219914737623185, 2.893396776926238e-05, 0.0013406769139692187, 0.2199636995792389, 0.053565435111522675, 0.2178190052509308, 0.014501224271953106, 0.13189467787742615, 0.0197797492146492, 0.01715659350156784, 0.05102687329053879, 0.22016507387161255], [0.02694329060614109, 0.0038517338689416647, 0.005755877587944269, 0.0005134200328029692, 0.00020089467579964548, 0.0008437603246420622, 7.693852967349812e-05, 0.0016048187389969826, 0.05389372631907463, 0.1562335342168808, 0.5041548609733582, 0.0427958220243454, 0.0445295125246048, 0.0338008739054203, 0.04015284404158592, 0.03066342882812023, 0.05398472398519516], [0.0072292122058570385, 0.006797793321311474, 0.010727515444159508, 0.007966537028551102, 0.0075949616730213165, 0.014515780843794346, 0.002764822682365775, 0.008085415698587894, 0.449893057346344, 0.006554997526109219, 0.00451909564435482, 0.003602497512474656, 0.003991097677499056, 0.00264632236212492, 0.0033866448793560266, 0.009547917172312737, 0.45017632842063904]], [[0.008094942197203636, 0.05347401648759842, 0.06868884712457657, 0.022479234263300896, 0.007062177639454603, 0.07778959721326828, 0.02728486992418766, 0.31556832790374756, 0.18579818308353424, 0.003284105332568288, 0.005533246323466301, 0.000588096387218684, 0.002263931091874838, 0.0011695821303874254, 0.007385763805359602, 0.027563799172639847, 0.18597130477428436], [0.032820768654346466, 0.015053312294185162, 0.006902780849486589, 0.12183355540037155, 0.0030391982290893793, 0.009068361483514309, 0.004252078011631966, 0.09053013473749161, 0.3315392732620239, 0.008241813629865646, 0.005077504087239504, 0.0014919729437679052, 0.0005980879068374634, 0.0005341222858987749, 0.002417521784082055, 0.035039082169532776, 0.3315604627132416], [0.016076579689979553, 0.17232777178287506, 0.026452945545315742, 0.014585222117602825, 0.00563916377723217, 0.016264697536826134, 0.0018672752194106579, 0.013093174435198307, 0.35499516129493713, 0.0045522586442530155, 0.010172532871365547, 0.0009862747974693775, 0.0018992063123732805, 0.0012225777609273791, 0.001290588523261249, 0.0036098496057093143, 0.3549647033214569], [0.02365567535161972, 0.027602864429354668, 0.04038480296730995, 0.02793971821665764, 0.015309684909880161, 0.04333667829632759, 0.17577026784420013, 0.01426380779594183, 0.2972904443740845, 0.003046703524887562, 0.008387365378439426, 0.0007170605240389705, 0.0073933349922299385, 0.0005713555146940053, 0.004207481164485216, 0.012904184870421886, 0.29721856117248535], [0.00926718395203352, 0.0078605767339468, 0.0025192447938024998, 0.12503410875797272, 0.03325778618454933, 0.003977193962782621, 0.00436778087168932, 0.003456494305282831, 0.4004097282886505, 0.0009426865144632757, 0.002076572272926569, 0.0046088807284832, 0.00018185916997026652, 6.9033162617415655e-06, 9.313737973570824e-05, 0.0015832779463380575, 0.400356650352478], [0.011854424141347408, 0.010262026451528072, 0.0023927909787744284, 0.01831168681383133, 0.06493142992258072, 0.02948126196861267, 0.0030606219079345465, 0.006773980334401131, 0.41928762197494507, 0.001949335797689855, 0.0026379567570984364, 0.003050676081329584, 0.0023753070272505283, 0.0002932828792836517, 0.00032652748632244766, 0.0028833970427513123, 0.4201277792453766], [0.0006215369794517756, 0.0013187429867684841, 0.0010648934403434396, 0.001685951603576541, 0.0028078299947082996, 0.329177588224411, 0.002374198054894805, 0.0010156488278880715, 0.328119158744812, 0.0006956520956009626, 0.00028857923462055624, 0.0004372325201984495, 0.0003889017680194229, 0.0004590452299453318, 0.0007199443061836064, 0.00028731179190799594, 0.32853779196739197], [0.010330775752663612, 0.003101440379396081, 0.003557569347321987, 0.003753412514925003, 0.0019682685378938913, 0.03873402625322342, 0.032005567103624344, 0.012639900669455528, 0.43935567140579224, 0.0008920336258597672, 0.0014183634193614125, 0.00034004414919763803, 0.001212591421790421, 0.0005576686235144734, 0.006215730682015419, 0.004421238787472248, 0.43949562311172485], [0.003451764350757003, 0.004260295536369085, 0.011713149026036263, 0.001808184664696455, 0.0011895919451490045, 0.019062334671616554, 0.0011603202437981963, 0.007481859065592289, 0.4696280062198639, 0.00047569835442118347, 0.001369165489450097, 0.0004413688729982823, 0.0009748844895511866, 0.001188384834676981, 0.0030356338247656822, 0.0022334882523864508, 0.47052595019340515], [0.02605816349387169, 0.003016142174601555, 0.002690139226615429, 0.007562269456684589, 0.002303873421624303, 0.0036895438097417355, 0.0018773652845993638, 0.07105898857116699, 0.40488743782043457, 0.0035810673143714666, 0.009799979627132416, 0.0013905256055295467, 0.0010200737742707133, 0.0007637428352609277, 0.002712862566113472, 0.05201295018196106, 0.4055749475955963], [0.0035913274623453617, 0.0010720061836764216, 0.0010018488392233849, 0.0033355047926306725, 0.0001323146279901266, 0.003134104423224926, 0.0002547465555835515, 0.0032371242996305227, 0.3600497543811798, 0.03255592659115791, 0.00844657327979803, 0.0013226051814854145, 0.0013993188040331006, 0.0025083678774535656, 0.028355672955513, 0.18871331214904785, 0.3608894348144531], [0.0070548816584050655, 0.0023712152615189552, 0.001550803193822503, 0.003921508323401213, 0.006832292303442955, 0.0034315071534365416, 0.00039159043808467686, 0.002478585345670581, 0.44345492124557495, 0.0061225262470543385, 0.01490763295441866, 0.023628395050764084, 0.01964668557047844, 0.0012203985825181007, 0.003153120167553425, 0.015161688439548016, 0.44467225670814514], [0.0007552026654593647, 0.0005630005616694689, 0.0010447625536471605, 0.0016857271548360586, 0.0006955614662729204, 0.0016771393129602075, 2.3739517928333953e-05, 0.0006778514361940324, 0.43621811270713806, 0.0028379284776747227, 0.00440567173063755, 0.10615360736846924, 0.0010189628228545189, 0.002470681443810463, 0.0014177076518535614, 0.0011358860647305846, 0.4372183084487915], [0.0048145423643291, 0.0006659235223196447, 0.002118205651640892, 0.0002564437163528055, 0.0005792009178549051, 0.0019248262979090214, 7.794657722115517e-05, 0.001564805512316525, 0.42184388637542725, 0.002308264374732971, 0.003088922705501318, 0.0025350600481033325, 0.09524479508399963, 0.012615809217095375, 0.02285119704902172, 0.004467251244932413, 0.42304283380508423], [0.0017860936932265759, 0.0003986872034147382, 0.0010466970270499587, 0.00010602938709780574, 0.00027892348589375615, 0.004014311823993921, 6.816748646087945e-05, 0.001171948853880167, 0.37222161889076233, 0.0019134641624987125, 0.0028039757162332535, 0.0013835164718329906, 0.051162686198949814, 0.15810172259807587, 0.028686050325632095, 0.0017096925294026732, 0.3731464147567749], [0.0012392906937748194, 0.000447441911092028, 0.0004849039833061397, 0.0001046251054503955, 2.6767898816615343e-05, 0.002990967594087124, 0.0007074871100485325, 0.0026994289364665747, 0.33472374081611633, 0.0013471560087054968, 0.0016055441228672862, 7.17670627636835e-05, 0.010808278806507587, 0.0245121531188488, 0.25391072034835815, 0.02891133353114128, 0.33540835976600647], [0.0034567664843052626, 0.004264825955033302, 0.011721509508788586, 0.0018094680272042751, 0.0011919555254280567, 0.01906663365662098, 0.001162043772637844, 0.007479685824364424, 0.4695979952812195, 0.0004765710618812591, 0.0013745477190241218, 0.00044156648800708354, 0.0009788194438442588, 0.00119111523963511, 0.003048097714781761, 0.0022417947184294462, 0.4704965353012085]], [[0.011494450271129608, 0.1056753396987915, 0.14259448647499084, 0.01466490887105465, 0.003258237149566412, 0.01550604309886694, 0.003145223017781973, 0.02096683345735073, 0.13297244906425476, 0.05743110552430153, 0.03015841916203499, 0.0389116033911705, 0.1059289276599884, 0.09665253758430481, 0.0629948079586029, 0.024561140686273575, 0.1330835223197937], [0.2518675923347473, 0.12611256539821625, 0.0707661584019661, 0.025797918438911438, 0.011234050616621971, 0.016703082248568535, 0.0018467145273461938, 0.036212287843227386, 0.19849352538585663, 0.00791910570114851, 0.026128726080060005, 0.00259676412679255, 0.008003918454051018, 0.004369635134935379, 0.0027292920276522636, 0.010857478715479374, 0.1983613520860672], [0.14094854891300201, 0.020768947899341583, 0.08483533561229706, 0.015197689644992352, 0.011387383565306664, 0.015814412385225296, 0.0017038810765370727, 0.01713261753320694, 0.3235255181789398, 0.004637308418750763, 0.0087659303098917, 0.004394723568111658, 0.0051969848573207855, 0.007367085199803114, 0.00740556325763464, 0.007463669404387474, 0.32345446944236755], [0.14042551815509796, 0.05451280623674393, 0.04517815262079239, 0.11608359962701797, 0.017070801928639412, 0.03402253985404968, 0.00793897733092308, 0.040031250566244125, 0.23015020787715912, 0.013535000383853912, 0.022532662376761436, 0.010652712546288967, 0.0040230113081634045, 0.007804324850440025, 0.0044662002474069595, 0.021488994359970093, 0.230083167552948], [0.10517188906669617, 0.02593086287379265, 0.01791229471564293, 0.016029169782996178, 0.026955334469676018, 0.025387370958924294, 0.0053213778883218765, 0.02726718597114086, 0.35265544056892395, 0.003775682533159852, 0.01254457887262106, 0.014647881500422955, 0.005954829044640064, 0.0022444489877671003, 0.001237290445715189, 0.00422986876219511, 0.3527345657348633], [0.09310118108987808, 0.019886154681444168, 0.026790637522935867, 0.036002833396196365, 0.052248764783144, 0.0403936430811882, 0.010142670944333076, 0.03901827707886696, 0.28439417481422424, 0.009205828420817852, 0.022906597703695297, 0.037429023534059525, 0.01118883490562439, 0.012235239148139954, 0.009026508778333664, 0.011575348675251007, 0.2844543159008026], [0.17094743251800537, 0.03463995084166527, 0.022731846198439598, 0.03674470633268356, 0.030596012249588966, 0.05025780200958252, 0.028098659589886665, 0.087189219892025, 0.24808280169963837, 0.005561640486121178, 0.004467607941478491, 0.008465217426419258, 0.0059404075145721436, 0.0010698680998757482, 0.003112250939011574, 0.014009238220751286, 0.24808534979820251], [0.45542004704475403, 0.060510557144880295, 0.04547007009387016, 0.032123271375894547, 0.01229883637279272, 0.009476783685386181, 0.004891568794846535, 0.05004727095365524, 0.09917984902858734, 0.0872807651758194, 0.009856261312961578, 0.005068885162472725, 0.002886431524530053, 0.004178632982075214, 0.0037750352639704943, 0.01835758425295353, 0.09917805343866348], [0.01808297075331211, 0.016369227319955826, 0.022413259372115135, 0.009024355560541153, 0.0037517249584198, 0.012545007281005383, 0.0015387294115498662, 0.007615323644131422, 0.42495277523994446, 0.008896546438336372, 0.012218263000249863, 0.007445402443408966, 0.004232125822454691, 0.010823560878634453, 0.009586363099515438, 0.005522599443793297, 0.42498186230659485], [0.030904555693268776, 0.005233855452388525, 0.005232740193605423, 0.006245039869099855, 0.002885732799768448, 0.0033345373813062906, 0.00021746174024883658, 0.007539806887507439, 0.320516973733902, 0.03267636522650719, 0.06684144586324692, 0.041735198348760605, 0.044929832220077515, 0.04556313529610634, 0.030500568449497223, 0.03500097617506981, 0.32064172625541687], [0.16324588656425476, 0.0377468541264534, 0.02225053496658802, 0.006403243634849787, 0.0011054535862058401, 0.001307761762291193, 0.0001230977795785293, 0.004360295366495848, 0.19181936979293823, 0.043603502213954926, 0.18681085109710693, 0.01281976979225874, 0.04040856286883354, 0.039505716413259506, 0.027644475921988487, 0.029005667194724083, 0.1918388158082962], [0.012014487758278847, 0.000724561745300889, 0.0014692392433062196, 0.001263819052837789, 0.0007874579168856144, 0.001040360308252275, 6.0711492551490664e-05, 0.0021830452606081963, 0.35230132937431335, 0.008910754695534706, 0.06052950769662857, 0.04283847659826279, 0.04604322835803032, 0.06615665555000305, 0.03554577752947807, 0.015453685075044632, 0.3526768088340759], [0.017622312530875206, 0.00336457509547472, 0.0030180918984115124, 0.0009081779280677438, 0.0008655793499201536, 0.0021538741420954466, 0.00027592063997872174, 0.0033041350543498993, 0.3011479079723358, 0.012592162936925888, 0.06187283992767334, 0.05160209536552429, 0.05003559961915016, 0.1102721244096756, 0.0592404305934906, 0.020149582996964455, 0.30157455801963806], [0.010676038451492786, 0.0018604862270876765, 0.00298200617544353, 0.0008635569247417152, 0.0008081691339612007, 0.0021948975045233965, 0.00016103209054563195, 0.003594336798414588, 0.2945776879787445, 0.01586633361876011, 0.039214838296175, 0.06276243925094604, 0.028571534901857376, 0.1381729394197464, 0.07774385064840317, 0.02470300905406475, 0.29524677991867065], [0.009150904603302479, 0.0011663652257993817, 0.004386876709759235, 0.0006134104332886636, 0.00037297443486750126, 0.0016677802195772529, 0.00034677787334658206, 0.004496353212743998, 0.26944512128829956, 0.009201380424201488, 0.026962686330080032, 0.04254379868507385, 0.03161583095788956, 0.1555890291929245, 0.13962318003177643, 0.03272422403097153, 0.2700932025909424], [0.037863388657569885, 0.006062420085072517, 0.007003359496593475, 0.011017350479960442, 0.0006147028179839253, 0.0012180289486423135, 0.0007586687570437789, 0.008524162694811821, 0.19980841875076294, 0.032465577125549316, 0.06660166382789612, 0.022771429270505905, 0.023665955290198326, 0.10512524098157883, 0.12625247240066528, 0.15012992918491364, 0.20011721551418304], [0.01809459738433361, 0.01634572632610798, 0.022411169484257698, 0.009017257951200008, 0.0037496103905141354, 0.01253217738121748, 0.0015377674717456102, 0.007608179003000259, 0.4249314069747925, 0.008907167240977287, 0.012235441245138645, 0.007458020932972431, 0.004240697715431452, 0.010841863229870796, 0.00960106123238802, 0.0055270423181355, 0.4249608814716339]]], [[[0.004501211456954479, 0.004373828414827585, 0.009144347161054611, 0.0027684099040925503, 0.0025746675673872232, 0.0037479326128959656, 0.0016625919379293919, 0.05154859274625778, 0.4297069311141968, 0.0048317089676856995, 0.013595408760011196, 0.006370397750288248, 0.0018691695295274258, 0.0030129116494208574, 0.013100193813443184, 0.017499612644314766, 0.42969197034835815], [0.005753401201218367, 0.01831168681383133, 0.02107814885675907, 0.004837893880903721, 0.0012881109723821282, 0.0030228637624531984, 0.0010686108144000173, 0.006525450851768255, 0.4655260443687439, 0.0009159205364994705, 0.004144875332713127, 0.0001511790615040809, 0.000310602190438658, 0.00045612110989168286, 0.0008489047759212554, 0.00035496437340043485, 0.46540531516075134], [0.011743827722966671, 0.03520679846405983, 0.10114102065563202, 0.006715947296470404, 0.0017529180040583014, 0.0069766356609761715, 0.004334402736276388, 0.003187409369274974, 0.36732563376426697, 0.002418787917122245, 0.0691961944103241, 0.0013466948876157403, 0.0027232251595705748, 0.0070961844176054, 0.00970343966037035, 0.001868013758212328, 0.36726292967796326], [0.009491744451224804, 0.034993384033441544, 0.006564239040017128, 0.014083215035498142, 0.02153053693473339, 0.01987009309232235, 0.009973045438528061, 0.02964828535914421, 0.42288005352020264, 0.002428583335131407, 0.002552286721765995, 0.000801368267275393, 0.00041510656592436135, 0.0004253717779647559, 0.0005719332257285714, 0.000939021585509181, 0.422831654548645], [0.005613191518932581, 0.011162448674440384, 0.0057660117745399475, 0.0162003505975008, 0.02793758362531662, 0.019466856494545937, 0.007780468091368675, 0.0032483902759850025, 0.4482859969139099, 0.0031867031939327717, 0.0006914493860676885, 0.0012891717487946153, 0.0005928617902100086, 8.706475637154654e-05, 0.00014216042472980917, 0.00036609344533644617, 0.44818317890167236], [0.0017418719362467527, 0.0061788493767380714, 0.0014878829242661595, 0.012656177394092083, 0.035600848495960236, 0.022403134033083916, 0.3129439949989319, 0.005552809685468674, 0.2972131371498108, 0.0012754567433148623, 0.0007351312087848783, 0.001718595391139388, 0.0012440882856026292, 0.00026829823036678135, 0.000921970116905868, 0.000867162540089339, 0.2971906065940857], [0.0008726202067919075, 0.006295676808804274, 0.0007531626033596694, 0.010366065427660942, 0.08210226148366928, 0.008303712122142315, 0.022033119574189186, 0.003135386621579528, 0.4322756826877594, 0.00041073214379139245, 0.0003198066842742264, 0.0004931416478939354, 0.00017012680473271757, 3.870506043313071e-05, 3.4888595109805465e-05, 0.00021492960513569415, 0.4321800470352173], [0.0022380982991307974, 0.00966330710798502, 0.008955548517405987, 0.009663127362728119, 0.047767650336027145, 0.0670449361205101, 0.04050540551543236, 0.01018594391644001, 0.39040666818618774, 0.003840586170554161, 0.0027971358504146338, 0.0054350970312952995, 0.002211071318015456, 0.002032962627708912, 0.003516688710078597, 0.0033688440453261137, 0.3903668224811554], [0.007743512745946646, 0.009111804887652397, 0.012172924354672432, 0.007813864387571812, 0.005727047566324472, 0.007207770366221666, 0.002514919266104698, 0.012152468785643578, 0.4359882175922394, 0.009005377069115639, 0.011797516606748104, 0.006628283765166998, 0.011358375661075115, 0.005317809525877237, 0.008896240964531898, 0.010583445429801941, 0.43598031997680664], [0.012588928453624249, 0.0013544835383072495, 0.0015553359407931566, 0.0020706872455775738, 0.002199663547798991, 0.002492997096851468, 0.0010217223316431046, 0.05034833028912544, 0.44348299503326416, 0.015470292419195175, 0.0027092820964753628, 0.003907528705894947, 0.0012801098637282848, 0.0003190620627719909, 0.0016870779218152165, 0.014010925777256489, 0.4435005486011505], [0.007804046850651503, 0.004072785377502441, 0.008133047260344028, 0.0004669491318054497, 0.0002093572256853804, 0.002058142563328147, 0.0003444065514486283, 0.004300117492675781, 0.4514681100845337, 0.0065030502155423164, 0.03084670566022396, 0.0024440872948616743, 0.0018245814135298133, 0.010384547524154186, 0.012381423264741898, 0.005348686594516039, 0.4514099955558777], [0.003393959952518344, 0.0005457264487631619, 0.0009249283466488123, 0.00021497557463590056, 0.0008176355040632188, 0.001818253193050623, 0.0004902033833786845, 0.0032263316679745913, 0.4439389407634735, 0.03419370576739311, 0.005556849297136068, 0.007802516687661409, 0.036292534321546555, 0.0034274854697287083, 0.004506535362452269, 0.008955223485827446, 0.44389426708221436], [0.0018320564413443208, 0.0003716461651492864, 0.000324055552482605, 0.00014362945512402803, 0.00016216984658967704, 0.000514940416906029, 4.355606506578624e-05, 0.005368218291550875, 0.46559807658195496, 0.0025404260959476233, 0.004732829984277487, 0.003940280061215162, 0.011875110678374767, 0.010931579396128654, 0.012412017211318016, 0.01364436186850071, 0.4655649960041046], [0.0014850726583972573, 0.00011802715744124725, 0.0008217638824135065, 0.00012065221380908042, 4.093854659004137e-05, 0.0005166061455383897, 0.00015953266120050102, 0.0008084694272838533, 0.37677836418151855, 0.0021748675499111414, 0.0051635028794407845, 0.002537112683057785, 0.026357294991612434, 0.028110623359680176, 0.169892355799675, 0.008167466148734093, 0.3767472803592682], [0.003294230904430151, 0.00033279674244113266, 0.0007408987148664892, 0.000442603079136461, 0.00019620837701950222, 0.0004491563013289124, 0.0001495390315540135, 0.0019639015663415194, 0.41839131712913513, 0.003579656360670924, 0.010000142268836498, 0.008302449248731136, 0.023938611149787903, 0.03047921136021614, 0.046471431851387024, 0.032934267073869705, 0.4183334708213806], [0.006158680655062199, 0.00310391653329134, 0.0015586575027555227, 0.0006172744906507432, 0.0008120969287119806, 0.0013164085103198886, 0.0003573308349587023, 0.00891830213367939, 0.45797470211982727, 0.011699290946125984, 0.016948793083429337, 0.004730531945824623, 0.004524250514805317, 0.007554435636848211, 0.008959400467574596, 0.0068288021720945835, 0.4579371511936188], [0.007743419613689184, 0.009110390208661556, 0.012174246832728386, 0.007811848074197769, 0.005725608207285404, 0.007207364309579134, 0.0025142175145447254, 0.012147991918027401, 0.4359967112541199, 0.009005923755466938, 0.011797298677265644, 0.0066274902783334255, 0.011356879957020283, 0.005317707546055317, 0.008894514292478561, 0.010579385794699192, 0.43598902225494385]], [[0.05500565841794014, 0.07907280325889587, 0.14519888162612915, 0.05313940346240997, 0.027378901839256287, 0.06464529037475586, 0.023832106962800026, 0.11844321340322495, 0.04383838176727295, 0.1628100425004959, 0.030247002840042114, 0.02467288076877594, 0.005937832407653332, 0.016153080388903618, 0.02845032513141632, 0.07733137160539627, 0.043842751532793045], [0.023144584149122238, 0.15949459373950958, 0.07547881454229355, 0.05163402855396271, 0.0034584200475364923, 0.01709667220711708, 0.0022526525426656008, 0.07899746298789978, 0.04438091069459915, 0.017276925966143608, 0.417903333902359, 0.002382363425567746, 0.0012518300209194422, 0.0021544185001403093, 0.0052099977619946, 0.05349516496062279, 0.044387832283973694], [0.03018958494067192, 0.013904554769396782, 0.10633675754070282, 0.004693527240306139, 0.0010161870159208775, 0.008086013607680798, 0.0009161251364275813, 0.013961795717477798, 0.17537234723567963, 0.0134042426943779, 0.294309139251709, 0.002574810292571783, 0.010791764594614506, 0.05678164213895798, 0.057391054928302765, 0.034848328679800034, 0.17542219161987305], [0.0322427973151207, 0.03888971731066704, 0.019525598734617233, 0.08670300990343094, 0.024935364723205566, 0.03739354386925697, 0.008489496074616909, 0.05931416153907776, 0.0636199340224266, 0.012645446695387363, 0.48845574259757996, 0.0131989112123847, 0.0008399324724450707, 0.003099683206528425, 0.002868443727493286, 0.04414999857544899, 0.06362830847501755], [0.013958035036921501, 0.009518736973404884, 0.013694201596081257, 0.021240878850221634, 0.3290359377861023, 0.015161389485001564, 0.002235882682725787, 0.01667523942887783, 0.1552753448486328, 0.00930524617433548, 0.15459536015987396, 0.06258784234523773, 0.003043663688004017, 0.003170684212818742, 0.000922352191992104, 0.03426472470164299, 0.15531444549560547], [0.09022142738103867, 0.008172409608960152, 0.013705871067941189, 0.016927240416407585, 0.006855400279164314, 0.18984641134738922, 0.00844250526279211, 0.04138652980327606, 0.08040346950292587, 0.1566128432750702, 0.15791141986846924, 0.03608215972781181, 0.0034717756789177656, 0.008231736719608307, 0.006995255593210459, 0.0943189263343811, 0.08041474223136902], [0.022063646465539932, 0.020291585475206375, 0.011164980009198189, 0.03502907603979111, 0.041304126381874084, 0.07303271442651749, 0.12347570061683655, 0.05339911952614784, 0.16995121538639069, 0.060373611748218536, 0.13012462854385376, 0.0345107801258564, 0.001532015623524785, 0.003784201806411147, 0.002534886123612523, 0.047472503036260605, 0.1699550300836563], [0.030267830938100815, 0.042354077100753784, 0.013915269635617733, 0.03567072004079819, 0.020955514162778854, 0.0346904918551445, 0.030345195904374123, 0.14292708039283752, 0.12766218185424805, 0.22668428719043732, 0.02831847593188286, 0.035298217087984085, 0.0016911088023334742, 0.005833702627569437, 0.0081093218177557, 0.08762441575527191, 0.1276521533727646], [0.0001718346611596644, 0.00021719918004237115, 0.0034541180357337, 0.00024095996923279017, 0.00011667813669191673, 0.000967999454587698, 0.00010302486771252006, 0.0017862790264189243, 0.4941920042037964, 0.0005170623189769685, 0.0001244523300556466, 0.00015349021123256534, 0.00014720424951519817, 0.0007089170394465327, 0.0013552111340686679, 0.0015393394278362393, 0.49420425295829773], [0.01588812656700611, 0.0010315702529624104, 0.008586847223341465, 0.0009884057799354196, 0.0003435119579080492, 0.002630555536597967, 0.00039102384471334517, 0.003894477616995573, 0.2348274141550064, 0.4309026598930359, 0.0009672751766629517, 0.005064318422228098, 0.0011017322540283203, 0.000966705207247287, 0.002340958919376135, 0.05520881712436676, 0.23486560583114624], [0.009342451579868793, 0.05607994645833969, 0.510791003704071, 0.006808256730437279, 0.001141824177466333, 0.004852733574807644, 0.0011920402757823467, 0.01898159086704254, 0.143728569149971, 0.0025913240388035774, 0.07708827406167984, 0.0005765605601482093, 0.0006768029415979981, 0.002820103894919157, 0.00777112552896142, 0.011798436753451824, 0.14375892281532288], [0.0028723059222102165, 0.0014120596460998058, 0.009227815084159374, 0.003988068085163832, 0.02966693788766861, 0.011397862806916237, 0.0005270162364467978, 0.006430366076529026, 0.38929644227027893, 0.0022136883344501257, 0.0019798101857304573, 0.13533657789230347, 0.002485048258677125, 0.0021746326237916946, 0.0007012259447947145, 0.01097901351749897, 0.38931092619895935], [0.0012272599851712584, 7.144422852434218e-05, 0.010025410912930965, 0.00013270610361360013, 0.0004065584216732532, 0.0015950807137414813, 0.00019645580323413014, 0.00124370155390352, 0.4234521985054016, 0.0009382801363244653, 0.0005369192222133279, 0.0023743321653455496, 0.04441436752676964, 0.051388707011938095, 0.027517491951584816, 0.01092185452580452, 0.42355719208717346], [0.0008392810705117881, 5.2232524467399344e-05, 0.02096264623105526, 1.680667446635198e-05, 3.6571407690644264e-05, 0.00014054466737434268, 9.94121000985615e-06, 0.0002865015994757414, 0.35948604345321655, 0.0001519509678473696, 0.0004473890585359186, 0.00013214154751040041, 0.0017960927216336131, 0.2205939143896103, 0.034240104258060455, 0.0012268349528312683, 0.35958102345466614], [0.0017474531196057796, 0.00022035287111066282, 0.02963101491332054, 0.00011886267748195678, 7.718217239016667e-05, 0.0004676202079281211, 8.743834041524678e-05, 0.0010765993501991034, 0.3383174538612366, 0.001049364684149623, 0.0012820132542401552, 0.00035466099507175386, 0.0019908971153199673, 0.13292162120342255, 0.1451721340417862, 0.007109761703759432, 0.3383755385875702], [0.021908197551965714, 0.00498328497633338, 0.019608203321695328, 0.004583290778100491, 0.001847091712988913, 0.004265143536031246, 0.0009079720475710928, 0.011341296136379242, 0.2740553319454193, 0.08672411739826202, 0.01579955592751503, 0.05184173956513405, 0.005202573724091053, 0.015828149393200874, 0.01651645638048649, 0.19051915407180786, 0.2740684151649475], [0.00017185213800985366, 0.00021722384553868324, 0.0034548414405435324, 0.00024097792629618198, 0.00011669990635709837, 0.0009680627845227718, 0.00010301864676875994, 0.0017863840330392122, 0.49419182538986206, 0.0005171222728677094, 0.00012446963228285313, 0.00015348604938481003, 0.00014722903142683208, 0.000708930310793221, 0.0013551667798310518, 0.0015390710905194283, 0.4942035973072052]], [[0.009983888827264309, 0.012479771859943867, 0.0379372164607048, 0.018908319994807243, 0.04736575111746788, 0.05656116455793381, 0.006177559960633516, 0.01817246899008751, 0.253245085477829, 0.11088255047798157, 0.009979486465454102, 0.13842372596263885, 0.005928863771259785, 0.0024945370387285948, 0.005972075741738081, 0.012237956747412682, 0.25324955582618713], [0.0010962304659187794, 0.005900590680539608, 0.05890846997499466, 0.002672501839697361, 0.015961067751049995, 0.031188447028398514, 0.001254487899132073, 0.004985729698091745, 0.4210337996482849, 0.007219382096081972, 0.0030119181610643864, 0.0217897966504097, 0.0009453329257667065, 0.00029282699688337743, 0.0011047397274523973, 0.0015492497477680445, 0.4210852086544037], [0.0026565995067358017, 0.006091269664466381, 0.29472246766090393, 0.004774508532136679, 0.011862169951200485, 0.06338194757699966, 0.00385458767414093, 0.011962421238422394, 0.27261829376220703, 0.006758219096809626, 0.005464981775730848, 0.017780551686882973, 0.004257873632013798, 0.003060202347114682, 0.014453092589974403, 0.003659906331449747, 0.2726409435272217], [0.002068099332973361, 0.0012092689285054803, 0.018525023013353348, 0.005870106630027294, 0.05795413628220558, 0.2288891077041626, 0.007025697268545628, 0.007116485852748156, 0.3098927438259125, 0.017222190275788307, 0.0010942252120003104, 0.029528802260756493, 0.0008049707394093275, 0.00016539113130420446, 0.0010713819647207856, 0.0016853123670443892, 0.30987706780433655], [0.009873364120721817, 0.0037150296848267317, 0.013257404789328575, 0.004095037933439016, 0.2319595366716385, 0.2108556181192398, 0.006140767131000757, 0.01784897781908512, 0.228399395942688, 0.016163554042577744, 0.001412366284057498, 0.025659902021288872, 0.0008126451866701245, 5.702931230189279e-05, 0.00026056068600155413, 0.0011112093925476074, 0.22837737202644348], [0.0036283480003476143, 0.0041855149902403355, 0.009509332478046417, 0.005139931570738554, 0.05514099821448326, 0.19311267137527466, 0.017713511362671852, 0.013732376508414745, 0.3297848701477051, 0.012830095365643501, 0.000998817733488977, 0.018047822639346123, 0.003052294021472335, 0.00040483244811184704, 0.0017198577988892794, 0.0012585220392793417, 0.3297401964664459], [0.0017280016327276826, 0.0013096170732751489, 0.009638432413339615, 0.002139687305316329, 0.07050427794456482, 0.5646119713783264, 0.014436493627727032, 0.0034729260951280594, 0.16168776154518127, 0.005289510358124971, 0.00022451739641837776, 0.002790948608890176, 0.0001560000964673236, 7.321799785131589e-05, 0.0001176289952127263, 0.00014549212937708944, 0.16167351603507996], [0.0029530408792197704, 0.0016580215888097882, 0.036084700375795364, 0.0054904380813241005, 0.02332261949777603, 0.22864317893981934, 0.00553099624812603, 0.013828903436660767, 0.3274851441383362, 0.007748475763946772, 0.0014988093171268702, 0.007949343882501125, 0.001540480530820787, 0.0014903619885444641, 0.004578712861984968, 0.002753122244030237, 0.32744359970092773], [3.902724711224437e-05, 0.00020014696929138154, 0.006746484898030758, 0.00017261934408452362, 0.0008057331433519721, 0.004272001329809427, 0.00014293991262093186, 0.000420522439526394, 0.49143433570861816, 0.000612407922744751, 0.00011897298827534541, 0.0014546907041221857, 0.0009421492577530444, 0.0003291982284281403, 0.0005824245163239539, 0.00030612730188295245, 0.49142026901245117], [0.0008159451535902917, 0.0019716641400009394, 0.0015863175503909588, 0.0014490805333480239, 0.01784668304026127, 0.015122092328965664, 0.002642808947712183, 0.0014867791905999184, 0.3657147288322449, 0.07436860352754593, 0.0007625097059644759, 0.14331616461277008, 0.0037979348562657833, 0.00026234154938720167, 0.0007955819019116461, 0.002419836353510618, 0.3656409680843353], [0.0002842471585609019, 0.0003834663948509842, 0.030082153156399727, 0.0004621845728252083, 0.0024098469875752926, 0.0069940234534442425, 0.00021518887660931796, 0.0013230638578534126, 0.45084455609321594, 0.0017722854390740395, 0.0018699874635785818, 0.042331140488386154, 0.0027967356145381927, 0.001432573888450861, 0.003567560575902462, 0.0023831757716834545, 0.4508477747440338], [0.00039180953172035515, 0.0003424776077736169, 0.0009246414410881698, 0.0003522321640048176, 0.0026745947543531656, 0.007486753631383181, 0.00020531416521407664, 0.0007922695949673653, 0.2351929247379303, 0.0056252493523061275, 0.0012809357140213251, 0.49343544244766235, 0.007410246878862381, 0.0010397847509011626, 0.0028285905718803406, 0.004843174014240503, 0.23517364263534546], [0.00026364991208538413, 8.898486703401431e-05, 0.0053575304336845875, 9.771686745807528e-05, 0.00042288913391530514, 0.01138501800596714, 6.368692993419245e-05, 0.0005012238980270922, 0.389102578163147, 0.0029816459864377975, 0.001325044664554298, 0.06445591151714325, 0.03266829624772072, 0.04981726035475731, 0.05062754824757576, 0.001787409302778542, 0.3890535831451416], [0.0003404819581191987, 5.4740292398491874e-05, 0.008900810964405537, 0.00010428200766909868, 0.00029593889485113323, 0.005408338736742735, 5.199187216931023e-05, 0.0005899358657188714, 0.4575193524360657, 0.0009523829212412238, 0.0004792267282027751, 0.006858252454549074, 0.005225388333201408, 0.009324923157691956, 0.0457257404923439, 0.0006928796065039933, 0.4574752748012543], [0.0004817889421246946, 4.532076491159387e-05, 0.0042493995279073715, 0.0002934910880867392, 0.0006679616053588688, 0.016728131100535393, 0.00012264867837075144, 0.0008263042545877397, 0.43796640634536743, 0.00406191311776638, 0.00047287490451708436, 0.016646642237901688, 0.009893788024783134, 0.021815525367856026, 0.04536492004990578, 0.0024478782434016466, 0.43791502714157104], [0.0009492544340901077, 0.00017433894390705973, 0.002477735746651888, 0.0005932174972258508, 0.0038767859805375338, 0.012750811874866486, 0.0003385962045285851, 0.002436733106151223, 0.40985995531082153, 0.007026831619441509, 0.001425848575308919, 0.12117136269807816, 0.004300972446799278, 0.0023057821672409773, 0.010606086812913418, 0.009920543059706688, 0.40978530049324036], [3.902604294125922e-05, 0.00020014384062960744, 0.00674806535243988, 0.00017257820582017303, 0.0008056421647779644, 0.004272097256034613, 0.00014288480451796204, 0.00042047977331094444, 0.49143368005752563, 0.0006123405182734132, 0.00011897396325366572, 0.001454747631214559, 0.0009421166032552719, 0.00032916056807152927, 0.0005823957035318017, 0.0003060749440919608, 0.49141961336135864]], [[0.032056502997875214, 0.010396290570497513, 0.015295733697712421, 0.03466075658798218, 0.006166001781821251, 0.04971836879849434, 0.012483939528465271, 0.13631999492645264, 0.15887533128261566, 0.04347488656640053, 0.10472960025072098, 0.028351252898573875, 0.014055064879357815, 0.03376052528619766, 0.10987947136163712, 0.050930436700582504, 0.15884585678577423], [0.008995823562145233, 0.00992346927523613, 0.007500631734728813, 0.046528611332178116, 0.04820972681045532, 0.18998265266418457, 0.11824003607034683, 0.0372595377266407, 0.2562979757785797, 0.007199322339147329, 0.00538942264392972, 0.004069355316460133, 0.0004276138497516513, 0.0016412222757935524, 0.0010410601971670985, 0.00106534524820745, 0.2562282085418701], [0.021411150693893433, 0.047703538089990616, 0.10232898592948914, 0.03733992949128151, 0.03766040876507759, 0.11897614598274231, 0.0506802462041378, 0.031268585473299026, 0.19380474090576172, 0.02286101132631302, 0.062114544212818146, 0.018452299758791924, 0.0095830662176013, 0.022546708583831787, 0.023739181458950043, 0.0057471501640975475, 0.1937822848558426], [0.00624337000772357, 0.02810903638601303, 0.002788703888654709, 0.058533985167741776, 0.05198986083269119, 0.27157357335090637, 0.06384073197841644, 0.10072252154350281, 0.2027946263551712, 0.0033327797427773476, 0.00393783301115036, 0.001168720773421228, 0.0001587439328432083, 0.0002526993921492249, 0.00019798599532805383, 0.0016236546216532588, 0.2027311772108078], [0.005281516350805759, 0.02992180362343788, 0.0028618823271244764, 0.14439712464809418, 0.03131960332393646, 0.2857397794723511, 0.11261887103319168, 0.09503091871738434, 0.14438088238239288, 0.0012080990709364414, 0.0008347250986844301, 0.00047063728561624885, 0.00010091638978337869, 0.00017698350711725652, 0.00038561035762540996, 0.0009233275195583701, 0.14434728026390076], [0.003834928385913372, 0.10124709457159042, 0.005146465729922056, 0.15266816318035126, 0.06025151163339615, 0.12032583355903625, 0.2511679530143738, 0.04756077378988266, 0.12202106416225433, 0.005186551716178656, 0.0035664166789501905, 0.0012715347111225128, 0.00020305767247918993, 0.00035754733835346997, 0.0007406423101201653, 0.002453552559018135, 0.12199698388576508], [0.0033996826969087124, 0.03380386531352997, 0.0007758723222650588, 0.12973277270793915, 0.017714232206344604, 0.16954386234283447, 0.08114208281040192, 0.0858435332775116, 0.23676303029060364, 0.0027009497862309217, 0.0010039940243586898, 0.0002459725656080991, 8.721144695300609e-06, 2.6344872821937315e-05, 4.151917528361082e-05, 0.0005614097462967038, 0.2366921454668045], [0.008400858379900455, 0.02070557326078415, 0.015996700152754784, 0.06361551582813263, 0.017598766833543777, 0.13456398248672485, 0.050780609250068665, 0.040891122072935104, 0.2709446847438812, 0.04782627522945404, 0.01911432482302189, 0.014265851117670536, 0.002070075599476695, 0.003564816899597645, 0.007148840464651585, 0.011631689965724945, 0.2708803415298462], [0.009515166282653809, 0.0057467930018901825, 0.020698145031929016, 0.006951060611754656, 0.0016171589959412813, 0.005546164233237505, 0.0018599111353978515, 0.012142998166382313, 0.4494422674179077, 0.006894415244460106, 0.009952890686690807, 0.002874460071325302, 0.0024511839728802443, 0.0039934152737259865, 0.005317137576639652, 0.005563290789723396, 0.44943347573280334], [0.010265350341796875, 0.0007271991344168782, 0.0020748984534293413, 0.006470965221524239, 0.004647182300686836, 0.02495316043496132, 0.004376586992293596, 0.019086726009845734, 0.39907562732696533, 0.01336431223899126, 0.0035965440329164267, 0.05161060392856598, 0.012056192383170128, 0.022006116807460785, 0.016485655680298805, 0.010210510343313217, 0.39899247884750366], [0.0035913074389100075, 0.0002924537402577698, 0.0014126746682450175, 0.0005315051530487835, 0.00045797027996741235, 0.0024736823979765177, 0.0007246494642458856, 0.0014117991086095572, 0.34815284609794617, 0.00928526185452938, 0.0326879546046257, 0.1453167200088501, 0.03693412244319916, 0.03979038447141647, 0.024780292063951492, 0.004088966641575098, 0.34806737303733826], [0.0017830331344157457, 0.0006095629651099443, 0.001498137484304607, 0.0011462521506473422, 0.00012160695769125596, 0.0019455889705568552, 0.00025656327488832176, 0.003645409597083926, 0.34520167112350464, 0.01398733165115118, 0.014827712439000607, 0.02972370944917202, 0.031245725229382515, 0.057907432317733765, 0.06627213954925537, 0.0846913680434227, 0.345136821269989], [0.0010460170451551676, 0.00042093763477168977, 0.00102064514067024, 0.00017245141498278826, 2.50552075158339e-05, 0.0006248498684726655, 2.0519792087725364e-05, 0.0007345680496655405, 0.21919678151607513, 0.0035739270970225334, 0.006113364826887846, 0.016842838376760483, 0.054038155823946, 0.11411003023386002, 0.2806050479412079, 0.08233063668012619, 0.21912424266338348], [0.0027897641994059086, 0.00032222093432210386, 0.0009469204233027995, 0.0003079338348470628, 3.647866833489388e-05, 0.0001821361802285537, 2.9321527108550072e-05, 0.0012315426720306277, 0.39664387702941895, 0.004479799885302782, 0.013538465835154057, 0.012492658570408821, 0.018693499267101288, 0.02576184645295143, 0.04336852207779884, 0.08259730786085129, 0.3965776860713959], [0.00315264449454844, 0.0006893305107951164, 0.0012596087763085961, 0.0010785312624648213, 0.00011652849207166582, 0.00047276317491196096, 0.0001240053679794073, 0.0013188425218686461, 0.34483689069747925, 0.01911953091621399, 0.02735181339085102, 0.021236585453152657, 0.02602602168917656, 0.04578559100627899, 0.05585281550884247, 0.10683567821979523, 0.34474286437034607], [0.004238822963088751, 0.0010416173608973622, 0.0011608782224357128, 0.001929256715811789, 0.0007014150614850223, 0.002099083038046956, 0.0003314564819447696, 0.0030433230567723513, 0.3350204527378082, 0.1508602350950241, 0.06984193623065948, 0.035625044256448746, 0.018946995958685875, 0.007210142444819212, 0.008949807845056057, 0.02401505969464779, 0.33498451113700867], [0.009513512253761292, 0.005746804177761078, 0.020702652633190155, 0.006949977483600378, 0.0016167706344276667, 0.005546154920011759, 0.0018596745794638991, 0.012139549478888512, 0.4494446814060211, 0.006893577985465527, 0.009953784756362438, 0.0028741711284965277, 0.002450744854286313, 0.00399274006485939, 0.005316801369190216, 0.005561901722103357, 0.4494365453720093]], [[0.02201945334672928, 0.009027697145938873, 0.032331161201000214, 0.004459274001419544, 0.0021900285501033068, 0.02506580762565136, 0.005229596048593521, 0.6000418066978455, 0.05712622404098511, 0.047318875789642334, 0.04208676144480705, 0.01878889836370945, 0.01100761629641056, 0.014472916722297668, 0.028678569942712784, 0.02303166873753071, 0.05712360888719559], [0.007737127598375082, 0.030812488868832588, 0.031892113387584686, 0.08731178194284439, 0.005368366371840239, 0.05073761194944382, 0.014418342150747776, 0.036519549787044525, 0.3461238741874695, 0.010027594864368439, 0.026250414550304413, 0.00016817255527712405, 0.00015765403804834932, 0.0010028915712609887, 0.001455741818062961, 0.003909650258719921, 0.34610655903816223], [0.02537836693227291, 0.31254807114601135, 0.04768180102109909, 0.06509914249181747, 0.01019293162971735, 0.015864742919802666, 0.01885341852903366, 0.021906644105911255, 0.10669095069169998, 0.014680557884275913, 0.23162738978862762, 0.0005949627957306802, 0.001334000495262444, 0.006100136786699295, 0.0038041158113628626, 0.010946354828774929, 0.10669633746147156], [0.006006432697176933, 0.03231984004378319, 0.038529787212610245, 0.028598928824067116, 0.006937342695891857, 0.030993791297078133, 0.00580917252227664, 0.008805856108665466, 0.41546109318733215, 0.0033303960226476192, 0.0036240648478269577, 0.00010415743599878624, 6.836989632574841e-05, 0.0004043545632157475, 0.0009410078637301922, 0.00268644280731678, 0.4153790771961212], [0.004309828858822584, 0.008982242085039616, 0.015822498127818108, 0.08436593413352966, 0.02391568012535572, 0.019350839778780937, 0.011883500963449478, 0.009931501932442188, 0.4088864326477051, 0.001352126244455576, 0.00044505909318104386, 0.00015005332534201443, 7.851625559851527e-05, 0.000251096673309803, 0.0004647541791200638, 0.0010720709105953574, 0.4087378978729248], [0.004350624978542328, 0.022907787933945656, 0.016605200245976448, 0.13308945298194885, 0.09927629679441452, 0.06143169105052948, 0.06401731818914413, 0.009242607280611992, 0.2913244962692261, 0.0013278208207339048, 0.0016432307893410325, 0.0006061104359105229, 0.00024091789964586496, 0.0003382884315215051, 0.0005019005620852113, 0.001827525207772851, 0.29126864671707153], [0.0017430573934689164, 0.0021533863618969917, 0.004625838715583086, 0.04571322724223137, 0.07076537609100342, 0.017948703840374947, 0.010505865328013897, 0.004608344752341509, 0.420003741979599, 0.00041284612962044775, 0.00029996121884323657, 0.00018194009317085147, 2.7954380129813217e-05, 2.7285574105917476e-05, 8.197926945285872e-05, 0.0009955595014616847, 0.41990479826927185], [0.0021737252827733755, 0.006099942605942488, 0.024855613708496094, 0.017203547060489655, 0.019096961244940758, 0.13573649525642395, 0.03677177056670189, 0.01638028770685196, 0.35558435320854187, 0.0013476863969117403, 0.0009757888619787991, 0.005145919043570757, 0.002242211252450943, 0.00546660041436553, 0.01270740944892168, 0.002665742067620158, 0.35554587841033936], [0.003539199708029628, 0.002544875955209136, 0.007256964221596718, 0.004046475049108267, 0.0044435495510697365, 0.0037248609587550163, 0.0018972872057929635, 0.004992651753127575, 0.470051109790802, 0.0043053762055933475, 0.005080239847302437, 0.003791006049141288, 0.0025038542225956917, 0.003738861531019211, 0.0043176887556910515, 0.003739487612619996, 0.4700266718864441], [0.027007190510630608, 0.001144341309554875, 0.004571306053549051, 0.009942305274307728, 0.004773323889821768, 0.015492538921535015, 0.004386585205793381, 0.18447452783584595, 0.34689250588417053, 0.044540755450725555, 0.0014445970300585032, 0.0027259483467787504, 0.0011709938989952207, 0.0009229084243997931, 0.0011893725022673607, 0.002547580748796463, 0.34677326679229736], [0.01035662554204464, 0.36357831954956055, 0.030606241896748543, 0.010603401809930801, 0.002265665913000703, 0.014132695272564888, 0.003270332934334874, 0.015869682654738426, 0.16809943318367004, 0.0554884634912014, 0.06190205737948418, 0.007307892199605703, 0.0063376291655004025, 0.016986148431897163, 0.02671973966062069, 0.03841036558151245, 0.16806529462337494], [0.012368589639663696, 0.0005988056655041873, 0.0055748699232935905, 0.0011514169164001942, 0.0003573269641492516, 0.0017117818351835012, 0.0004942324012517929, 0.014243056066334248, 0.33247968554496765, 0.10244113951921463, 0.022647444158792496, 0.014821763150393963, 0.04102979972958565, 0.027110502123832703, 0.03695995733141899, 0.05362994223833084, 0.33237966895103455], [0.007134624756872654, 9.11016104510054e-05, 0.0019429543754085898, 0.0007092615705914795, 7.831214315956458e-05, 0.0006194607703946531, 0.00010128509165951982, 0.00848400965332985, 0.31726089119911194, 0.03739418089389801, 0.018090492114424706, 0.007450600620359182, 0.026212206110358238, 0.1153101697564125, 0.07408571988344193, 0.06789854168891907, 0.3171362578868866], [0.005280784796923399, 0.00010671798372641206, 0.0022685693111270666, 0.0003289356245659292, 9.638527262723073e-05, 0.0003200808132532984, 5.77688442717772e-05, 0.0019909897819161415, 0.3979056775569916, 0.026777086779475212, 0.04193045198917389, 0.01477155089378357, 0.03404515981674194, 0.026092752814292908, 0.018333883956074715, 0.03187673166394234, 0.3978165090084076], [0.00884844921529293, 0.0002136916300514713, 0.0027677733451128006, 0.0008039968088269234, 0.00036250983248464763, 0.0010101236402988434, 0.0002644643245730549, 0.007317489944398403, 0.3504657745361328, 0.03324560448527336, 0.027514945715665817, 0.01531909592449665, 0.05001102387905121, 0.07604879885911942, 0.03302668780088425, 0.042410850524902344, 0.3503687083721161], [0.003965915646404028, 0.00034100053017027676, 0.0024970900267362595, 0.00020173723169136792, 0.00027977459831163287, 0.0016938039334490895, 0.0002447431907057762, 0.006611271761357784, 0.4386836886405945, 0.03347305953502655, 0.01927226595580578, 0.00544659374281764, 0.007328846957534552, 0.008015447296202183, 0.0159282423555851, 0.01738661713898182, 0.4386299252510071], [0.0035383636131882668, 0.0025446955114603043, 0.00725580332800746, 0.0040457542054355145, 0.004442990757524967, 0.0037245384883135557, 0.0018970160745084286, 0.004990899004042149, 0.470054566860199, 0.004304471891373396, 0.005079758819192648, 0.0037909853272140026, 0.0025038346648216248, 0.003739033592864871, 0.00431768549606204, 0.0037392727099359035, 0.47003036737442017]], [[0.034211575984954834, 0.01681220531463623, 0.009847846813499928, 0.009349208325147629, 0.0041638887487351894, 0.005393133033066988, 0.0010565099073573947, 0.017047423869371414, 0.0670618861913681, 0.295781672000885, 0.09655699133872986, 0.04122977703809738, 0.011680122464895248, 0.023682251572608948, 0.03944287821650505, 0.2596244513988495, 0.0670582577586174], [0.02383306808769703, 0.055035825818777084, 0.016329841688275337, 0.32319092750549316, 0.14824272692203522, 0.14989987015724182, 0.04199032858014107, 0.061328768730163574, 0.04090506210923195, 0.044618159532547, 0.011934743262827396, 0.006733455695211887, 0.003417801344767213, 0.0020054092165082693, 0.003505244618281722, 0.02612491138279438, 0.040903929620981216], [0.04003510624170303, 0.058568406850099564, 0.05922171100974083, 0.09497296810150146, 0.09406023472547531, 0.10919816046953201, 0.03708501160144806, 0.03633036091923714, 0.13635589182376862, 0.03626762703061104, 0.020786143839359283, 0.03476434573531151, 0.01393949519842863, 0.01633043959736824, 0.030041249468922615, 0.045669056475162506, 0.136373832821846], [0.013670033775269985, 0.046428851783275604, 0.01472416426986456, 0.10707675665616989, 0.13724064826965332, 0.2865857481956482, 0.09979114681482315, 0.07673534750938416, 0.08371677249670029, 0.028196999803185463, 0.004327837377786636, 0.003999743144959211, 0.0011839843355119228, 0.00289732264354825, 0.002057417295873165, 0.007659147493541241, 0.08370807021856308], [0.009469017386436462, 0.02597261592745781, 0.008779006078839302, 0.021283557638525963, 0.02966986410319805, 0.040575433522462845, 0.009046480059623718, 0.01946263574063778, 0.41349610686302185, 0.004062858875840902, 0.0015230657299980521, 0.0006315033533610404, 0.00037841216544620693, 0.0003693833714351058, 0.00041127012809738517, 0.0014291186816990376, 0.41343972086906433], [0.012364711612462997, 0.042831432074308395, 0.009253389202058315, 0.021675603464245796, 0.06050897762179375, 0.06864707916975021, 0.015883387997746468, 0.031479611992836, 0.3503115177154541, 0.020495956763625145, 0.0037178273778408766, 0.005999482702463865, 0.00213565188460052, 0.0006266881828196347, 0.0012144312495365739, 0.00257364334538579, 0.35028061270713806], [0.013573982752859592, 0.034206684678792953, 0.007922335527837276, 0.014327924698591232, 0.042687542736530304, 0.05377575382590294, 0.007645609322935343, 0.025050124153494835, 0.3941844701766968, 0.008470116183161736, 0.0014952346682548523, 0.0008349107229150832, 0.00035855252644978464, 0.00019745880854316056, 0.0003096552682109177, 0.0008380338549613953, 0.3941214978694916], [0.027498319745063782, 0.029279883950948715, 0.0084079559892416, 0.029261551797389984, 0.029109962284564972, 0.05856119468808174, 0.011591793037950993, 0.03410026803612709, 0.16831956803798676, 0.24784566462039948, 0.021695904433727264, 0.027697384357452393, 0.012594706378877163, 0.01625233329832554, 0.01723012514412403, 0.09224571287631989, 0.16830769181251526], [0.007430814206600189, 0.0014702703338116407, 0.004582446999847889, 0.0035377428866922855, 0.0019018020248040557, 0.0042159054428339005, 0.0006589196273125708, 0.0028507858514785767, 0.4762049913406372, 0.0026564847212284803, 0.0015937137650325894, 0.0021955850534141064, 0.0013482471695169806, 0.0035036050248891115, 0.0030389942694455385, 0.006620925385504961, 0.47618862986564636], [0.01929418556392193, 0.0017930505564436316, 0.0027071412187069654, 0.0029387830290943384, 0.0016958864871412516, 0.00361742009408772, 0.00030662037897855043, 0.0037588845007121563, 0.3377045691013336, 0.0389956533908844, 0.03704278916120529, 0.05408988893032074, 0.019846929237246513, 0.017108717933297157, 0.022621285170316696, 0.09877514094114304, 0.3377031087875366], [0.011113089509308338, 0.0023214544635266066, 0.0038044159300625324, 0.0016115517355501652, 0.00017502247646916658, 0.0007494862074963748, 0.00010430567635921761, 0.0005412192549556494, 0.051977988332509995, 0.03481358662247658, 0.03960137814283371, 0.084522545337677, 0.09750930219888687, 0.06195175647735596, 0.18594969809055328, 0.3712804615497589, 0.05197278782725334], [0.006063234992325306, 0.000846399343572557, 0.0011745269875973463, 0.00033833799534477293, 0.00016545945254620165, 0.0009734552586451173, 6.123600178398192e-05, 0.0014926505973562598, 0.31551551818847656, 0.024892011657357216, 0.05996222048997879, 0.07134450972080231, 0.049014415591955185, 0.028017137199640274, 0.04636963829398155, 0.07827495038509369, 0.3154942989349365], [0.00262807821854949, 0.0005650873645208776, 0.003037067363038659, 0.00021142713376320899, 5.9324316680431366e-05, 0.0003725021379068494, 1.7115278751589358e-05, 0.0003473295655567199, 0.4170318841934204, 0.0072318799793720245, 0.03499625250697136, 0.01587594673037529, 0.03145710006356239, 0.014190719462931156, 0.021859483793377876, 0.03311891481280327, 0.416999876499176], [0.004415043164044619, 0.00022474485740531236, 0.002269104588776827, 0.00010095648030983284, 8.960922423284501e-05, 0.000361275568138808, 1.312790482188575e-05, 0.00043595919851213694, 0.4322253465652466, 0.004399092867970467, 0.01436392217874527, 0.023750100284814835, 0.0405680388212204, 0.013014176860451698, 0.02123536914587021, 0.010338425636291504, 0.43219566345214844], [0.004892313852906227, 0.00023919758677948266, 0.0023272621911019087, 0.00013567914720624685, 0.00016173708718270063, 0.000793195329606533, 3.282621401012875e-05, 0.0005918071838095784, 0.354447603225708, 0.011797952465713024, 0.02755153365433216, 0.07371135801076889, 0.07054832577705383, 0.036510664969682693, 0.04366889223456383, 0.018182838335633278, 0.35440686345100403], [0.0039558326825499535, 0.0007501658983528614, 0.00278658140450716, 0.0005297908210195601, 0.00022008243831805885, 0.0020868489518761635, 0.0001640199770918116, 0.0008718154858797789, 0.1485101282596588, 0.049807239323854446, 0.046874646097421646, 0.10570333153009415, 0.10788444429636002, 0.15616106986999512, 0.12706676125526428, 0.0981421172618866, 0.14848512411117554], [0.007429203949868679, 0.0014697505393996835, 0.0045815566554665565, 0.003535981522873044, 0.001900902483612299, 0.004214308690279722, 0.0006586132803931832, 0.002850001212209463, 0.47621262073516846, 0.002655469812452793, 0.0015931368106976151, 0.002194697270169854, 0.001347757875919342, 0.0035028476268053055, 0.0030383591074496508, 0.006618522107601166, 0.4761962592601776]], [[0.007342258933931589, 0.005289183929562569, 0.057965364307165146, 0.01359894871711731, 0.016347892582416534, 0.024260323494672775, 0.01266200840473175, 0.0067443023435771465, 0.2716454863548279, 0.01971416547894478, 0.012520871125161648, 0.014196696691215038, 0.04266674444079399, 0.06630115956068039, 0.13645882904529572, 0.020663229748606682, 0.27162256836891174], [0.004718608222901821, 0.004804551135748625, 0.03644603490829468, 0.0021660723723471165, 0.00405998807400465, 0.009271413087844849, 0.0009630289860069752, 0.002065699314698577, 0.408748060464859, 0.011775637045502663, 0.021446844562888145, 0.008897126652300358, 0.006316294893622398, 0.003781345207244158, 0.004298872780054808, 0.06142734736204147, 0.4088129699230194], [0.017590979114174843, 0.012374886311590672, 0.0575079619884491, 0.005325912963598967, 0.004765295423567295, 0.029956623911857605, 0.0030257082544267178, 0.006685345899313688, 0.23306594789028168, 0.024049175903201103, 0.04038354009389877, 0.009856132790446281, 0.042130276560783386, 0.09189905971288681, 0.13149170577526093, 0.05680578202009201, 0.23308561742305756], [0.007738214917480946, 0.020861180499196053, 0.04431042820215225, 0.01072751171886921, 0.00828919280320406, 0.054776716977357864, 0.009719755500555038, 0.011707751080393791, 0.3009161055088043, 0.0277887973934412, 0.028559036552906036, 0.04810072481632233, 0.002099274890497327, 0.0015611655544489622, 0.002469548024237156, 0.11942794919013977, 0.30094653367996216], [0.009736539795994759, 0.0378955714404583, 0.07339980453252792, 0.008573864586651325, 0.0188324935734272, 0.043614309281110764, 0.010713892057538033, 0.018319837749004364, 0.32341569662094116, 0.02491355687379837, 0.026236336678266525, 0.032557472586631775, 0.004630800802260637, 0.0009867883054539561, 0.0012890314683318138, 0.041428811848163605, 0.32345518469810486], [0.009431334212422371, 0.01969774253666401, 0.045395780354738235, 0.004923742730170488, 0.005302988458424807, 0.021677237004041672, 0.004910940304398537, 0.010395796038210392, 0.355645090341568, 0.04134989529848099, 0.03338254243135452, 0.01068473793566227, 0.0164481233805418, 0.007780981250107288, 0.00869892630726099, 0.0486072413623333, 0.35566696524620056], [0.0025329156778752804, 0.008143888786435127, 0.025551708415150642, 0.0038154004141688347, 0.011496835388243198, 0.03676953911781311, 0.010166124440729618, 0.004093665163964033, 0.42380449175834656, 0.010812873020768166, 0.004187391605228186, 0.01433098129928112, 0.0008310636621899903, 0.00033202828490175307, 0.0005916719092056155, 0.01870124228298664, 0.42383822798728943], [0.003795252414420247, 0.006939374841749668, 0.016827022656798363, 0.003939308691769838, 0.007899114862084389, 0.009253655560314655, 0.003670887090265751, 0.008351124823093414, 0.4310227334499359, 0.01016200426965952, 0.011044018901884556, 0.0020499739330261946, 0.003955901600420475, 0.007320732809603214, 0.009769922122359276, 0.03294747695326805, 0.4310513138771057], [0.00024200878397095948, 0.0002893012424465269, 0.001712887198664248, 0.00018770343740470707, 0.00026283087208867073, 0.0012016755063086748, 0.00010922306682914495, 0.0004782282921951264, 0.4944605827331543, 0.0015525927301496267, 0.0007399389869533479, 0.0003649100835900754, 0.0012989139650017023, 0.0005600829608738422, 0.0007393680280074477, 0.001344136893749237, 0.49445563554763794], [0.0013866130029782653, 0.005871532950550318, 0.023850541561841965, 0.006831673439592123, 0.01076328195631504, 0.027858398854732513, 0.00746561773121357, 0.0033177388831973076, 0.4308522641658783, 0.0086296908557415, 0.0031608473509550095, 0.016628323122859, 0.006861709523946047, 0.0010324710747227073, 0.0020657717250287533, 0.012614213861525059, 0.4308093190193176], [0.0009324098937213421, 0.009005698375403881, 0.12817418575286865, 0.005110134836286306, 0.004926423542201519, 0.017032776027917862, 0.0016021302435547113, 0.003961032256484032, 0.3813273012638092, 0.004088959656655788, 0.01034250296652317, 0.0032591482158750296, 0.008266283199191093, 0.007278989069163799, 0.013533996418118477, 0.01982678845524788, 0.38133111596107483], [0.0014086292358115315, 0.01973111554980278, 0.03312067314982414, 0.0136190727353096, 0.007451701909303665, 0.0669705793261528, 0.004936018958687782, 0.005385294556617737, 0.3732222318649292, 0.019086068496108055, 0.00604903744533658, 0.030388230457901955, 0.020120464265346527, 0.0037113020662218332, 0.005693543236702681, 0.01595265418291092, 0.37315335869789124], [0.0008046383736655116, 0.0021469006314873695, 0.08405700325965881, 0.0008114477968774736, 0.0005295602022670209, 0.019747097045183182, 0.0003779945254791528, 0.0023352308198809624, 0.38533809781074524, 0.006498157046735287, 0.0035718500148504972, 0.010609368793666363, 0.03272995725274086, 0.0163689237087965, 0.029737919569015503, 0.01900268718600273, 0.3853331506252289], [0.0004162238328717649, 0.0031301509588956833, 0.37210801243782043, 0.0004689492052420974, 0.0003051193489227444, 0.004983124788850546, 0.00019488473481032997, 0.003192055271938443, 0.28785377740859985, 0.0006544249481521547, 0.0034931583795696497, 0.0006911834352649748, 0.004751863889396191, 0.009870128706097603, 0.01829581707715988, 0.0016989682335406542, 0.2878921926021576], [0.0011663216864690185, 0.0043210797011852264, 0.23192588984966278, 0.0010645224247127771, 0.0011210808297619224, 0.013649830594658852, 0.0007274510571733117, 0.004436183255165815, 0.34652113914489746, 0.0019121508812531829, 0.004305894486606121, 0.004267499316483736, 0.006691674701869488, 0.00914900191128254, 0.018012328073382378, 0.004173153080046177, 0.346554696559906], [0.0012923432514071465, 0.005745100788772106, 0.0410291850566864, 0.0061951130628585815, 0.004716198891401291, 0.05092328414320946, 0.0034200085792690516, 0.005871372297406197, 0.3981214165687561, 0.007784734945744276, 0.003887999104335904, 0.01815454103052616, 0.008322193287312984, 0.004131244961172342, 0.008158727549016476, 0.0341779999434948, 0.39806845784187317], [0.00024203262000810355, 0.0002893440832849592, 0.0017130045453086495, 0.00018771323084365577, 0.0002628451038617641, 0.001201755367219448, 0.00010921725333901122, 0.00047829069080762565, 0.49446070194244385, 0.0015524531481787562, 0.0007399208843708038, 0.00036488217301666737, 0.0012988195521757007, 0.0005600320873782039, 0.0007393269333988428, 0.0013441115152090788, 0.4944555163383484]], [[0.011225278489291668, 0.08637942373752594, 0.3434559106826782, 0.016438249498605728, 0.008100219070911407, 0.07892300188541412, 0.01237565465271473, 0.008576193824410439, 0.19029225409030914, 0.014559449627995491, 0.008128352463245392, 0.0023905187845230103, 0.0035392807330936193, 0.004680223297327757, 0.011737367138266563, 0.008919155225157738, 0.19027940928936005], [0.010478172451257706, 0.02222963236272335, 0.2032272219657898, 0.02222554199397564, 0.004256505519151688, 0.027198852971196175, 0.0010530843865126371, 0.01999310776591301, 0.2806755304336548, 0.004849882796406746, 0.10028526186943054, 0.0008345918613485992, 0.00013025582302361727, 0.0004532651510089636, 0.0009005948668345809, 0.0204936433583498, 0.28071486949920654], [0.006719703786075115, 0.017140096053481102, 0.036309871822595596, 0.008806989528238773, 0.0024871204514056444, 0.013140728697180748, 0.0009257051278837025, 0.012525665573775768, 0.40423715114593506, 0.03412898629903793, 0.0356706902384758, 0.006613811943680048, 0.0016629870515316725, 0.0022627764847129583, 0.0041103120893239975, 0.008976761251688004, 0.40428072214126587], [0.006439415737986565, 0.15789085626602173, 0.2814522385597229, 0.015390543267130852, 0.009777168743312359, 0.1501360535621643, 0.009111810475587845, 0.01897352747619152, 0.1511683613061905, 0.005062689073383808, 0.034249525517225266, 0.0017478674417361617, 0.0005563477170653641, 0.0013296814868226647, 0.0022447407245635986, 0.0033061415888369083, 0.1511630266904831], [0.005585191771388054, 0.02367774397134781, 0.03565746918320656, 0.014873327687382698, 0.005642132367938757, 0.1677893102169037, 0.015058684162795544, 0.017713716253638268, 0.3489764928817749, 0.0030811151955276728, 0.008572879247367382, 0.0008401154191233218, 0.0004128070722799748, 0.0004435096343513578, 0.0012179847108200192, 0.0015483907191082835, 0.3489091098308563], [0.005259981378912926, 0.013628759421408176, 0.017593633383512497, 0.012642270885407925, 0.006528645753860474, 0.06890452653169632, 0.004953328520059586, 0.018367042765021324, 0.415364533662796, 0.007657022215425968, 0.006642375141382217, 0.0016416418366134167, 0.0008575631072744727, 0.0007466812967322767, 0.0015570770483464003, 0.0023182244040071964, 0.4153369963169098], [0.0042573800310492516, 0.053442616015672684, 0.06325071305036545, 0.008720970712602139, 0.005359509028494358, 0.1580357402563095, 0.0036830517929047346, 0.012660630978643894, 0.32914820313453674, 0.004504846874624491, 0.025017024949193, 0.0009471885277889669, 0.00015033608360681683, 0.0002836589119397104, 0.0006481963791884482, 0.000803065428044647, 0.3290868401527405], [0.029304970055818558, 0.003726552939042449, 0.008575376123189926, 0.007524827029556036, 0.0017882914980873466, 0.0252279881387949, 0.0022730655036866665, 0.003500640392303467, 0.38705939054489136, 0.04550926387310028, 0.014229928143322468, 0.0025907002855092287, 0.00118525349535048, 0.015766041353344917, 0.031047776341438293, 0.0337134450674057, 0.3869765102863312], [0.0016340221045538783, 0.0016920161433517933, 0.0028635046910494566, 0.001346999080851674, 0.0004376067372504622, 0.002504469593986869, 0.0003215808537788689, 0.0013427583035081625, 0.4913976490497589, 0.001826461055316031, 0.0011392956366762519, 0.0003445375186856836, 0.00018468966300133616, 0.00030858046375215054, 0.00044085789704695344, 0.0009231326985172927, 0.49129173159599304], [0.002939850790426135, 0.0005531003698706627, 0.0016929705161601305, 0.00045350485015660524, 0.0005009350716136396, 0.0037033669650554657, 0.0001537794159958139, 0.0003302709956187755, 0.4657132625579834, 0.011632434092462063, 0.001419806038029492, 0.012236066162586212, 0.006117582321166992, 0.0035453762393444777, 0.008101333864033222, 0.015246381983160973, 0.4656599760055542], [0.0008697846787981689, 0.03876110538840294, 0.8116664886474609, 0.0028138107154518366, 0.0003176196478307247, 0.0020559115801006556, 0.00010808309889398515, 0.0012973751872777939, 0.06517297774553299, 0.0005107528995722532, 0.005497978534549475, 0.00040624092798680067, 0.00025715981610119343, 0.0008760042837820947, 0.0013726482866331935, 0.0028307323809713125, 0.0651855319738388], [0.002932384144514799, 0.001202060142531991, 0.004318029619753361, 0.000601722567807883, 0.0003402053262107074, 0.0024965633638203144, 0.0001309834624407813, 0.0004605480935424566, 0.43529924750328064, 0.008781759068369865, 0.006061234045773745, 0.018651865422725677, 0.018963588401675224, 0.017608607187867165, 0.03521234542131424, 0.011660086922347546, 0.43527868390083313], [0.0002947629545815289, 8.013160550035536e-05, 0.0008749440312385559, 2.2814278054283932e-05, 1.1411410014261492e-05, 0.0003599145566113293, 5.216239514993504e-06, 7.26806465536356e-05, 0.46771079301834106, 0.0006527308723889291, 0.0014285106444731355, 0.004529457539319992, 0.008153524249792099, 0.01995600201189518, 0.02669931761920452, 0.0015057934215292335, 0.4676418900489807], [0.00038839029730297625, 0.0002121735451510176, 0.0016546635888516903, 1.7177873814944178e-05, 1.6769132344052196e-05, 7.291803922271356e-05, 3.3862354484881507e-06, 3.388873301446438e-05, 0.49221375584602356, 0.0004887273535132408, 0.0023083367850631475, 0.001150878262706101, 0.0029770766850560904, 0.002056026365607977, 0.0038805746007710695, 0.0003996133746113628, 0.4921257495880127], [0.0005696721491403878, 0.00016754624084569514, 0.0013661098200827837, 3.0145627533784136e-05, 2.614959521451965e-05, 0.00011952449131058529, 3.174215180479223e-06, 5.1975275709992275e-05, 0.486555278301239, 0.0006732653127983212, 0.0027948033530265093, 0.0031715119257569313, 0.007096114102751017, 0.0033131868112832308, 0.0068524060770869255, 0.0006988043896853924, 0.4865102767944336], [0.001554980524815619, 0.0010073400335386395, 0.010658119805157185, 0.00022103890660218894, 0.00018469037604518235, 0.002465177094563842, 4.299525244277902e-05, 0.00028053944697603583, 0.43429407477378845, 0.00404906552284956, 0.007025830913335085, 0.013269378803670406, 0.006431270856410265, 0.028431324288249016, 0.04766011983156204, 0.008167565800249577, 0.434256374835968], [0.0016335126711055636, 0.001691757352091372, 0.0028633354231715202, 0.0013467242242768407, 0.0004374742857180536, 0.00250390381552279, 0.0003214747703168541, 0.0013426014920696616, 0.4913995563983917, 0.001825762796215713, 0.0011391544248908758, 0.00034441237221471965, 0.00018459916464053094, 0.00030850368784740567, 0.00044070681906305254, 0.0009227529517374933, 0.49129363894462585]], [[0.004802422598004341, 0.04327290505170822, 0.4406757652759552, 0.01974538527429104, 0.03706861659884453, 0.12726028263568878, 0.01102712657302618, 0.060926999896764755, 0.09759535640478134, 0.0010732098016887903, 0.00477633997797966, 0.004354223143309355, 0.0075611998327076435, 0.021549830213189125, 0.01947927288711071, 0.0012218202464282513, 0.09760917723178864], [0.024918969720602036, 0.0366438664495945, 0.03995693847537041, 0.01301480084657669, 0.013736829161643982, 0.06795073300600052, 0.008111495524644852, 0.02620220184326172, 0.37319836020469666, 0.015649547800421715, 0.0015865013701841235, 0.0014273712877184153, 0.0011091805063188076, 0.0005717066815122962, 0.0005742243374697864, 0.002128882333636284, 0.37321847677230835], [0.019929062575101852, 0.013913124799728394, 0.07033034414052963, 0.00717996247112751, 0.005102917551994324, 0.014738578349351883, 0.0020695424173027277, 0.008932841941714287, 0.41734403371810913, 0.006230517290532589, 0.0032804086804389954, 0.001566218095831573, 0.002244587754830718, 0.0028147208504378796, 0.003891450585797429, 0.003037906251847744, 0.41739359498023987], [0.0049225445836782455, 0.03331628441810608, 0.029413171112537384, 0.016821231693029404, 0.031009098514914513, 0.576980471611023, 0.021983487531542778, 0.014413699507713318, 0.13102410733699799, 0.007210178766399622, 0.0002836399944499135, 0.0005375956534408033, 0.00020388355187606066, 0.00026844724197871983, 0.00024708264390937984, 0.0003567923849914223, 0.1310083568096161], [0.004226659424602985, 0.023975584656000137, 0.010864896699786186, 0.012158861383795738, 0.021514398977160454, 0.3112958073616028, 0.008783627301454544, 0.00891265831887722, 0.29474860429763794, 0.007526637054979801, 0.0002445836435072124, 0.0005103609873913229, 9.466143819736317e-05, 9.674780449131504e-05, 0.00011283303319942206, 0.00024979287991300225, 0.2946832776069641], [0.004654037766158581, 0.02252720482647419, 0.0074753486551344395, 0.011750046163797379, 0.02255662903189659, 0.13071687519550323, 0.009193984791636467, 0.009196486324071884, 0.38766252994537354, 0.004856901243329048, 0.0003617899492383003, 0.00041130336467176676, 0.0001566927821841091, 0.0002147807099390775, 0.00016747067274991423, 0.0004744065518025309, 0.38762351870536804], [0.004152404144406319, 0.014231369830667973, 0.009062220342457294, 0.008333803154528141, 0.026055270805954933, 0.3651374280452728, 0.01039719209074974, 0.004701258148998022, 0.2770838141441345, 0.0032267882488667965, 8.66769187268801e-05, 0.0002767474506981671, 4.3074851419078186e-05, 6.098686935729347e-05, 2.6956120564136654e-05, 8.592664380557835e-05, 0.2770380973815918], [0.021857190877199173, 0.02221902832388878, 0.022329362109303474, 0.025610214099287987, 0.04088062420487404, 0.5305039286613464, 0.034370992332696915, 0.012073270976543427, 0.1182389184832573, 0.017350083217024803, 0.002472481457516551, 0.007692005019634962, 0.004206728655844927, 0.006269238889217377, 0.007918941788375378, 0.0077732219360768795, 0.11823378503322601], [0.0017337921308353543, 0.0030861664563417435, 0.01025660801678896, 0.005325845908373594, 0.004743407946079969, 0.0043726046569645405, 0.0013555297628045082, 0.005132235586643219, 0.476494699716568, 0.001839584787376225, 0.0014997259713709354, 0.0012099746381863952, 0.0005585922044701874, 0.0013055087765678763, 0.0020755177829414606, 0.00253225932829082, 0.47647789120674133], [0.005156632512807846, 0.0037536039017140865, 0.0009086272912099957, 0.0023667102213948965, 0.0039019936230033636, 0.007949050515890121, 0.0007064175442792475, 0.0060774642042815685, 0.4031248390674591, 0.010361080057919025, 0.01743444800376892, 0.06903760135173798, 0.014082523994147778, 0.005928965285420418, 0.00888635590672493, 0.0372118204832077, 0.4031117558479309], [0.020703626796603203, 0.0038349353708326817, 0.008022149093449116, 0.0007702941074967384, 0.0006618727929890156, 0.0029190373606979847, 0.0002220144378952682, 0.004296736791729927, 0.3731485903263092, 0.04218515753746033, 0.08228074014186859, 0.031110359355807304, 0.015590585768222809, 0.014183164574205875, 0.014379311352968216, 0.012546231038868427, 0.3731452226638794], [0.02043827436864376, 0.00297157047316432, 0.002060101367533207, 0.0020266524516046047, 0.0015315841883420944, 0.007308500818908215, 0.0005509117036126554, 0.005090559367090464, 0.3903138339519501, 0.055433426052331924, 0.03458389639854431, 0.03879685699939728, 0.010790652595460415, 0.011912178248167038, 0.013224744237959385, 0.0127617958933115, 0.39020442962646484], [0.007665707264095545, 0.0008497973321937025, 0.000939651858061552, 0.0006695283809676766, 0.0005491375923156738, 0.003032625885680318, 0.00022678243112750351, 0.0044931089505553246, 0.38759922981262207, 0.013476496562361717, 0.018534790724515915, 0.051197607070207596, 0.04886180907487869, 0.022453969344496727, 0.03069416806101799, 0.02120506763458252, 0.3875504434108734], [0.003972369711846113, 0.0003475842531770468, 0.004646051209419966, 0.000189351529115811, 0.00012068887008354068, 0.00042042802670039237, 5.229484668234363e-05, 0.0005960733979009092, 0.31577935814857483, 0.009224594570696354, 0.02860410325229168, 0.021281154826283455, 0.06747666001319885, 0.06687156111001968, 0.15383942425251007, 0.010832159779965878, 0.3157462179660797], [0.006405148655176163, 0.0004619395767804235, 0.0032182387076318264, 0.0002953801886178553, 0.00019719215924851596, 0.0009006281034089625, 8.601732406532392e-05, 0.000995539128780365, 0.2914329469203949, 0.016873087733983994, 0.026423050090670586, 0.06542758643627167, 0.09191963076591492, 0.10732707381248474, 0.07904724776744843, 0.017607389017939568, 0.2913818061351776], [0.011955956928431988, 0.0012952210381627083, 0.003121613524854183, 0.0007634687353856862, 0.0012090912787243724, 0.011508745141327381, 0.000755888526327908, 0.0029435663018375635, 0.2396102249622345, 0.016590097919106483, 0.03856492042541504, 0.2682875096797943, 0.06995374709367752, 0.027016276493668556, 0.04017585888504982, 0.026673370972275734, 0.23957446217536926], [0.001733526703901589, 0.003085970412939787, 0.010256913490593433, 0.005324626807123423, 0.0047429935075342655, 0.00437204772606492, 0.001355079934000969, 0.005131586920469999, 0.4764973819255829, 0.0018392452038824558, 0.0014995927922427654, 0.001209583948366344, 0.0005584249156527221, 0.001305189449340105, 0.002075109863653779, 0.0025315717794001102, 0.47648102045059204]], [[0.013117813505232334, 0.008098403923213482, 0.010422585532069206, 0.010187382809817791, 0.004713926464319229, 0.006223341450095177, 0.0013900540070608258, 0.0031612920574843884, 0.278816282749176, 0.1533406674861908, 0.018616637215018272, 0.05333128944039345, 0.03856160119175911, 0.043811071664094925, 0.05566154792904854, 0.02177065797150135, 0.2787754535675049], [0.01857866160571575, 0.0334869883954525, 0.19755996763706207, 0.061560168862342834, 0.013692032545804977, 0.007148916833102703, 0.0007388664525933564, 0.006307287607342005, 0.3185655176639557, 0.004810902290046215, 0.010067527182400227, 0.0016736246179789305, 0.001253933529369533, 0.0005668008816428483, 0.0003800280101131648, 0.004981522914022207, 0.3186272084712982], [0.029682936146855354, 0.029349101707339287, 0.07013234496116638, 0.059802062809467316, 0.008564185351133347, 0.02735242433845997, 0.003952173516154289, 0.012651151977479458, 0.3595016896724701, 0.007054249756038189, 0.008204019628465176, 0.0027342899702489376, 0.002221735892817378, 0.004332819953560829, 0.0047174980863928795, 0.010111250914633274, 0.35963594913482666], [0.0077959210611879826, 0.028146687895059586, 0.01009969413280487, 0.04137321561574936, 0.023168833926320076, 0.024428246542811394, 0.004944842774420977, 0.016011575236916542, 0.4117893576622009, 0.008584678173065186, 0.004332812502980232, 0.0017546509625390172, 0.001383823691867292, 0.0005015212227590382, 0.0006448395433835685, 0.003256439231336117, 0.4117828905582428], [0.0023616384714841843, 0.0025101813953369856, 0.001981954788789153, 0.017642617225646973, 0.016993114724755287, 0.0628584772348404, 0.026610571891069412, 0.010981774888932705, 0.42253628373146057, 0.004521613474935293, 0.0005874623311683536, 0.003300200682133436, 0.001077298424206674, 0.0007348316721618176, 0.0009223945089615881, 0.0018239575438201427, 0.4225556254386902], [0.014427495189011097, 0.010286967270076275, 0.006035214755684137, 0.027604013681411743, 0.008493300527334213, 0.041072405874729156, 0.06672386825084686, 0.022101007401943207, 0.3874407708644867, 0.007566208951175213, 0.004074813332408667, 0.0014341933419927955, 0.0010749190114438534, 0.0015067352214828134, 0.0025543291121721268, 0.010188916698098183, 0.38741472363471985], [0.026588501408696175, 0.0037885294295847416, 0.0010902700014412403, 0.015293297357857227, 0.00928205344825983, 0.021101998165249825, 0.00847663078457117, 0.06032055616378784, 0.4168863594532013, 0.014265535399317741, 0.0007915281457826495, 0.00041516582132317126, 0.00019905800581909716, 0.00034425067133270204, 0.00028463194030337036, 0.0039726607501506805, 0.4168988764286041], [0.045723702758550644, 0.033884722739458084, 0.003029413754120469, 0.012300671078264713, 0.0076831188052892685, 0.0032175045926123857, 0.00438816100358963, 0.01879998855292797, 0.20053091645240784, 0.3998010456562042, 0.03413761034607887, 0.0030063919257372618, 0.005374548956751823, 0.0021507670171558857, 0.0029345527291297913, 0.02259133756160736, 0.2004455327987671], [0.00950670801103115, 0.006360482424497604, 0.006913545075803995, 0.006201249547302723, 0.002522949827834964, 0.001999116037040949, 0.001546689891256392, 0.0027654708828777075, 0.4664774537086487, 0.002863365225493908, 0.008714480325579643, 0.0023594358935952187, 0.002408387837931514, 0.0029252413660287857, 0.00513874227181077, 0.00484278192743659, 0.46645388007164], [0.008629594929516315, 0.001708197989501059, 0.002025236841291189, 0.0023719894234091043, 0.0008510857005603611, 0.0009804141009226441, 0.00013176919310353696, 0.0010573595063760877, 0.348469078540802, 0.038811374455690384, 0.05650472268462181, 0.06714165955781937, 0.017051519826054573, 0.037102315574884415, 0.02756950445473194, 0.04113469645380974, 0.3484596014022827], [0.0036961748264729977, 0.0006609916454181075, 0.006478509400039911, 0.0003824311716016382, 0.00019235412764828652, 0.0003311468753963709, 2.688347376533784e-05, 0.0003698018554132432, 0.4551027715206146, 0.001121414010412991, 0.024338943883776665, 0.02962563931941986, 0.009845007210969925, 0.0036482997238636017, 0.0026537631638348103, 0.006296379026025534, 0.4552295207977295], [0.0037085015792399645, 0.00023839814821258187, 0.00044611498015001416, 0.00015975686255842447, 0.00022645543504040688, 0.0004211831546854228, 0.0001540853118058294, 0.001110937213525176, 0.423181414604187, 0.00908377580344677, 0.007291960529983044, 0.04109862819314003, 0.021270181983709335, 0.03761274367570877, 0.022875383496284485, 0.00790230929851532, 0.42321833968162537], [0.0017346509266644716, 0.00027703019441105425, 0.00022470187104772776, 0.0008069750037975609, 0.00013695089728571475, 0.0004563125839922577, 6.025877155479975e-05, 0.0016847483348101377, 0.43454083800315857, 0.005768592935055494, 0.002900096820667386, 0.010208350606262684, 0.012509077787399292, 0.04577448591589928, 0.024502741172909737, 0.023809567093849182, 0.434604674577713], [0.0038286782801151276, 0.0004189589526504278, 0.0016265838639810681, 0.0004575164057314396, 0.0003479748556856066, 0.0005466233124025166, 0.0006431098445318639, 0.0009765605791471899, 0.3458881676197052, 0.00152682070620358, 0.01032771822065115, 0.007440901827067137, 0.029312364757061005, 0.034641120582818985, 0.18826401233673096, 0.027860963717103004, 0.34589195251464844], [0.009709269739687443, 0.0014678140869364142, 0.0013686555903404951, 0.0012886165641248226, 0.0003045746707357466, 0.0002003006375161931, 0.00017352910072077066, 0.0022574313916265965, 0.4187323749065399, 0.0013383610639721155, 0.0184189360588789, 0.002249507699161768, 0.0072153047658503056, 0.007377192378044128, 0.013753866776823997, 0.09537209570407867, 0.4187721014022827], [0.004442513920366764, 0.0018429121701046824, 0.0008071271586231887, 0.0004041954525746405, 0.00020296951697673649, 0.00022633881599176675, 6.789335748180747e-05, 0.0018520749872550368, 0.42731305956840515, 0.006970832124352455, 0.029111023992300034, 0.014330967329442501, 0.01756431721150875, 0.013669525273144245, 0.018036406487226486, 0.03582446649670601, 0.4273332357406616], [0.009503469802439213, 0.006356164813041687, 0.0069097778759896755, 0.006198044866323471, 0.002521409187465906, 0.0019983239471912384, 0.0015461619477719069, 0.0027641630731523037, 0.46649280190467834, 0.002862069755792618, 0.008709602989256382, 0.0023584114387631416, 0.0024072949308902025, 0.002924242988228798, 0.005137558560818434, 0.004841338377445936, 0.4664692282676697]], [[0.0014217473799362779, 0.4327671527862549, 0.12439285218715668, 0.15220020711421967, 0.029902581125497818, 0.11447388678789139, 0.046448271721601486, 0.07468608766794205, 0.007738347630947828, 0.0039823842234909534, 0.003657964523881674, 0.0002105834282701835, 6.279854278545827e-05, 4.7327528591267765e-05, 6.027510607964359e-05, 0.00020931052858941257, 0.007738148327916861], [0.0025363736785948277, 0.03541402518749237, 0.052925657480955124, 0.014418115839362144, 0.01893611252307892, 0.054413557052612305, 0.01979811303317547, 0.035387106239795685, 0.3818458914756775, 0.0013298604171723127, 0.0004945113323628902, 0.00016952953592408448, 7.105655095074326e-05, 6.787781603634357e-05, 7.845473010092974e-05, 0.00032202654983848333, 0.3817918002605438], [0.0027015546802431345, 0.006700333673506975, 0.043405238538980484, 0.003792858449742198, 0.0036352125462144613, 0.036592476069927216, 0.005310469307005405, 0.012500829994678497, 0.43899205327033997, 0.0013350893277674913, 0.0009313570917584002, 0.000807685952167958, 0.0005065089208073914, 0.0011528858449310064, 0.0018404115689918399, 0.0008356950711458921, 0.43895938992500305], [0.00540897436439991, 0.10127042233943939, 0.05591277405619621, 0.033410366624593735, 0.020175721496343613, 0.06627439707517624, 0.016734622418880463, 0.03981173783540726, 0.327175110578537, 0.004323293454945087, 0.001152380253188312, 0.00032795529114082456, 4.296662882552482e-05, 3.927437501261011e-05, 7.340604497585446e-05, 0.000773404142819345, 0.3270932137966156], [0.004826727323234081, 0.04516058787703514, 0.04640071094036102, 0.013324998319149017, 0.01076861098408699, 0.040280282497406006, 0.010642425157129765, 0.01808926649391651, 0.40218549966812134, 0.002842686837539077, 0.0008875089697539806, 0.0013959720963612199, 9.383770520798862e-05, 5.161189619684592e-05, 9.606620733393356e-05, 0.0009053338435478508, 0.4020480215549469], [0.0008109406917355955, 0.013139616698026657, 0.015460602939128876, 0.009605919010937214, 0.011555064469575882, 0.028167374432086945, 0.006068364717066288, 0.0039143855683505535, 0.45500457286834717, 0.0004680295241996646, 0.00021170727268327028, 0.0003027835919056088, 2.6208121198578738e-05, 1.822735612222459e-05, 3.400551213417202e-05, 0.00025985995307564735, 0.45495229959487915], [0.0017788712866604328, 0.02897207997739315, 0.02017119899392128, 0.01585901714861393, 0.01995980739593506, 0.02352507971227169, 0.007356503512710333, 0.004465160891413689, 0.4384469985961914, 0.0004845038056373596, 0.0003701139648910612, 0.00011911632464034483, 8.199156582122669e-06, 4.208972313790582e-06, 7.020726116024889e-06, 0.00013428495731204748, 0.43833789229393005], [0.006350433919578791, 0.11474436521530151, 0.027969256043434143, 0.15098193287849426, 0.11883902549743652, 0.1403542459011078, 0.1263056844472885, 0.009755566716194153, 0.14019428193569183, 0.01710766926407814, 0.002535186242312193, 0.0011205796618014574, 0.0005596016999334097, 0.0004692888760473579, 0.0008872764883562922, 0.0016481770435348153, 0.1401773989200592], [0.0005767003167420626, 0.007012310437858105, 0.009128198958933353, 0.0030264779925346375, 0.00312613183632493, 0.0033963299356400967, 0.0015526911010965705, 0.003860238939523697, 0.4834290146827698, 0.00020796949684154242, 0.0005166163900867105, 0.0001183771455544047, 0.0001405861257808283, 0.00010265725723002106, 0.00017407634004484862, 0.00023290878743864596, 0.48339858651161194], [0.009943000040948391, 0.08666341006755829, 0.05113058537244797, 0.15121519565582275, 0.04337833821773529, 0.19687271118164062, 0.04700572043657303, 0.24347195029258728, 0.041926655918359756, 0.03751019388437271, 0.010983506217598915, 0.019836317747831345, 0.0022527913097292185, 0.0011509857140481472, 0.0011464903363958001, 0.013586047105491161, 0.041926056146621704], [0.0014119517290964723, 0.7438477277755737, 0.18238483369350433, 0.007836255244910717, 0.0014915303327143192, 0.017385834828019142, 0.0015342158731073141, 0.013741030357778072, 0.009541365318000317, 0.002130868611857295, 0.007135801017284393, 0.00048347958363592625, 0.0005797253106720746, 0.00017572475189808756, 0.0002793150197248906, 0.000499148853123188, 0.00954129733145237], [0.0125378193333745, 0.026334155350923538, 0.03486799821257591, 0.008456194773316383, 0.00423596752807498, 0.08268411457538605, 0.005967812146991491, 0.07549329847097397, 0.14900922775268555, 0.2121109962463379, 0.05890762433409691, 0.07907682657241821, 0.004554620012640953, 0.0018162972992286086, 0.002661042381078005, 0.09230703860521317, 0.14897891879081726], [0.010746347717940807, 0.03254609927535057, 0.05686062201857567, 0.01049854513257742, 0.0016719589475542307, 0.013465404510498047, 0.00181117607280612, 0.023636385798454285, 0.18136626482009888, 0.10759623348712921, 0.07695320248603821, 0.02583392709493637, 0.025831174105405807, 0.005419582594186068, 0.009587625041604042, 0.23482336103916168, 0.18135206401348114], [0.008182276971638203, 0.0268693994730711, 0.061490096151828766, 0.0035834158770740032, 0.0014096557861194015, 0.01323088351637125, 0.0008793769520707428, 0.021163199096918106, 0.33670350909233093, 0.02327154017984867, 0.07586771249771118, 0.00998992845416069, 0.013206991367042065, 0.004559640306979418, 0.008705583401024342, 0.05418507754802704, 0.33670157194137573], [0.009336317889392376, 0.022399883717298508, 0.0800076499581337, 0.005171736236661673, 0.002033066237345338, 0.024112407118082047, 0.0014970602933317423, 0.028743445873260498, 0.22898197174072266, 0.07501322031021118, 0.08667917549610138, 0.03702550753951073, 0.02168935351073742, 0.011824038811028004, 0.016242511570453644, 0.12028791010379791, 0.22895477712154388], [0.014653075486421585, 0.09359308332204819, 0.06696392595767975, 0.030087772756814957, 0.008392314426600933, 0.04794955998659134, 0.00445424672216177, 0.0848001018166542, 0.13116835057735443, 0.08989185094833374, 0.2309030294418335, 0.01841660402715206, 0.006168010178953409, 0.0034973679576069117, 0.004369367379695177, 0.03351617977023125, 0.131175234913826], [0.0005765205714851618, 0.007011388894170523, 0.009128485806286335, 0.003025729674845934, 0.0031256552319973707, 0.0033960165455937386, 0.0015523354522883892, 0.00385962869040668, 0.483430951833725, 0.00020788029360119253, 0.0005164339672774076, 0.00011835042823804542, 0.0001405497023370117, 0.00010263162403134629, 0.00017403013771399856, 0.00023278914159163833, 0.48340076208114624]], [[0.0054621268063783646, 0.010775531642138958, 0.010822338983416557, 0.0013390656094998121, 0.00243496079929173, 0.00045186441275291145, 0.0019211984472349286, 0.002204312477260828, 0.39071816205978394, 0.026501759886741638, 0.10900821536779404, 0.005289906170219183, 0.011000261642038822, 0.004237881861627102, 0.007327502127736807, 0.01974298804998398, 0.39076194167137146], [0.005540849175304174, 0.007657076232135296, 0.005999905988574028, 0.0009645955287851393, 0.0008379403734579682, 0.0003889902727678418, 0.00033875813824124634, 0.004134131595492363, 0.4738336503505707, 0.002655788091942668, 0.012576981447637081, 0.001038345624692738, 0.0007706217584200203, 0.0007471159915439785, 0.0014480231329798698, 0.007153247948735952, 0.47391408681869507], [0.015541911125183105, 0.0068945568054914474, 0.02948879264295101, 0.002800110261887312, 0.0017331276321783662, 0.0015955963172018528, 0.0009080298477783799, 0.003400082467123866, 0.4429281949996948, 0.004179005045443773, 0.028227677568793297, 0.004841392394155264, 0.0027231143321841955, 0.0038517233915627003, 0.0034703370183706284, 0.004359300248324871, 0.44305703043937683], [0.004030806943774223, 0.0023721149191260338, 0.004427744075655937, 0.004131880588829517, 0.0042313700541853905, 0.0003483241889625788, 0.0005506584420800209, 0.0012992547126486897, 0.46475949883461, 0.0011937768431380391, 0.03412598744034767, 0.004045457113534212, 0.00038871620199643075, 0.0008475618669763207, 0.0017787367105484009, 0.006578113883733749, 0.4648900330066681], [0.0045615751296281815, 0.000625844462774694, 0.0009384976583532989, 0.001587355276569724, 0.052836935967206955, 0.0010898241307586432, 0.0009035097900778055, 0.0004805387288797647, 0.4556460380554199, 0.0008434260380454361, 0.007327162194997072, 0.014572212472558022, 0.000952302769292146, 0.0009939376031979918, 0.0002982941805385053, 0.0005160043947398663, 0.45582640171051025], [0.003065963974222541, 0.00030861934646964073, 0.00260927714407444, 0.0003185052773915231, 0.0013434437569230795, 0.011038393713533878, 0.0030781454406678677, 0.0016100298380479217, 0.47997310757637024, 0.000791336118709296, 0.0029782289639115334, 0.002553225727751851, 0.002838377607986331, 0.004467496648430824, 0.0021496093831956387, 0.0007641137926839292, 0.4801120460033417], [0.003937758971005678, 0.0009687698911875486, 0.0025841405149549246, 0.00105827406514436, 0.0017189363716170192, 0.0025435893330723047, 0.04865572601556778, 0.0019228439778089523, 0.45894601941108704, 0.0011991563951596618, 0.01051073893904686, 0.0014299608301371336, 0.0003771988849621266, 0.0006182062206789851, 0.0015479909488931298, 0.002920611761510372, 0.4590602517127991], [0.0012521537719294429, 0.00136866036336869, 0.0011505135335028172, 0.00061587686650455, 0.0010837919544428587, 0.00032870942959561944, 0.0015233196318149567, 0.009442169219255447, 0.4743685722351074, 0.0032608904875814915, 0.0023852873127907515, 0.0005035788635723293, 0.0003850368957500905, 0.001196642522700131, 0.0020421657245606184, 0.024681614711880684, 0.47441110014915466], [0.0008236513822339475, 0.000444251811131835, 0.0021578792948275805, 0.0002792058512568474, 0.0002449047169648111, 0.00033739025820977986, 0.0001881759671960026, 0.0008484295685775578, 0.495647668838501, 0.0004577460349537432, 0.0006627468392252922, 0.00020130944903939962, 0.0002016120561165735, 0.0006469369982369244, 0.0004911141586489975, 0.0006841516005806625, 0.49568289518356323], [0.013037633150815964, 0.018690086901187897, 0.004026381298899651, 0.004426171537488699, 0.0033282272052019835, 0.005436718929558992, 0.0027315388433635235, 0.01824168488383293, 0.42915579676628113, 0.05087289959192276, 0.0041920156218111515, 0.002957636956125498, 0.0007176595972850919, 0.0025587647687643766, 0.0038630410563200712, 0.006566693540662527, 0.42919713258743286], [0.025324296206235886, 0.147345632314682, 0.057872604578733444, 0.017510246485471725, 0.007632342632859945, 0.00196324591524899, 0.0030827131122350693, 0.005808958318084478, 0.33767402172088623, 0.00392056442797184, 0.043076906353235245, 0.0011429940350353718, 0.0013255821540951729, 0.0011679292656481266, 0.0032028909772634506, 0.004219250753521919, 0.33772990107536316], [0.00488286791369319, 0.0014228641521185637, 0.0014186428161337972, 0.0016192320035770535, 0.006347362417727709, 0.003868976142257452, 0.0008083171560429037, 0.0023226921912282705, 0.37939590215682983, 0.0016564402030780911, 0.003364108968526125, 0.20521804690361023, 0.002826505806297064, 0.0033466373570263386, 0.0011116265086457133, 0.000903092441149056, 0.37948673963546753], [0.008429301902651787, 0.0014230565866455436, 0.0018184679793193936, 0.0005790888681076467, 0.0005666679935529828, 0.002539448207244277, 0.0003403763403184712, 0.0008198717259801924, 0.4670635461807251, 0.0010416965233162045, 0.003266405314207077, 0.0022578921634703875, 0.03571547195315361, 0.003969886340200901, 0.0025147718843072653, 0.0004118141660001129, 0.46724221110343933], [0.00721557205542922, 0.0016549703432247043, 0.0027384429704397917, 0.0007532829768024385, 0.00025981050566770136, 0.0031068362295627594, 0.00020074972417205572, 0.0029467649292200804, 0.47148194909095764, 0.0014773086877539754, 0.0010916618630290031, 0.0017898738151416183, 0.0017837052000686526, 0.026358338072896004, 0.004297489766031504, 0.0012102590408176184, 0.47163283824920654], [0.005021656863391399, 0.001859129755757749, 0.004142876714468002, 0.0022685411386191845, 0.00035529042361304164, 0.00232604518532753, 0.0007750412332825363, 0.004323585424572229, 0.4724622666835785, 0.0017799192573875189, 0.001966010080650449, 0.0009916526032611728, 0.0009251998271793127, 0.005796909797936678, 0.01794496551156044, 0.004505910910665989, 0.47255510091781616], [0.008154839277267456, 0.02595994435250759, 0.006805789656937122, 0.003566473489627242, 0.0012965814676135778, 0.0010429797694087029, 0.0018441297579556704, 0.023445017635822296, 0.4350196421146393, 0.005314759910106659, 0.00759453559294343, 0.0008125887834466994, 0.0007174907950684428, 0.0035929169971495867, 0.005824682302772999, 0.033950477838516235, 0.43505698442459106], [0.0008235423010773957, 0.00044418280594982207, 0.002157955663278699, 0.0002792046871036291, 0.0002449402236379683, 0.00033743807580322027, 0.00018814951181411743, 0.0008484559948556125, 0.49564844369888306, 0.00045763739035464823, 0.0006625339738093317, 0.00020129949552938342, 0.0002016184153035283, 0.0006469786749221385, 0.0004910673596896231, 0.0006840649293735623, 0.4956824779510498]]], [[[0.005732377991080284, 0.3514588177204132, 0.2964673340320587, 0.06345114856958389, 0.012595510110259056, 0.025448625907301903, 0.0077896867878735065, 0.04899793863296509, 0.039190519601106644, 0.015181167051196098, 0.037044424563646317, 0.007308067753911018, 0.008211001753807068, 0.001809056499041617, 0.00350956036709249, 0.03661438822746277, 0.0391903892159462], [0.0005831412854604423, 0.005897948984056711, 0.005931115243583918, 0.002548228483647108, 0.00184024462942034, 0.0020030317828059196, 0.0011322355130687356, 0.00522688589990139, 0.485613614320755, 0.0005153777310624719, 0.0016568899154663086, 0.00028812288655899465, 7.073071174090728e-05, 0.00011156703840242699, 7.928682316560298e-05, 0.0008843469549901783, 0.4856173098087311], [0.006051767151802778, 0.025484049692749977, 0.014306224882602692, 0.018225982785224915, 0.022202614694833755, 0.018330147489905357, 0.02057119645178318, 0.05229593440890312, 0.3860950767993927, 0.004677866119891405, 0.013790030032396317, 0.003182276152074337, 0.0027174786664545536, 0.0023203850723803043, 0.0023720802273601294, 0.021273797377943993, 0.386103093624115], [0.0022077858448028564, 0.006235931068658829, 0.008990605361759663, 0.0028674642089754343, 0.0013845654902979732, 0.0013887172099202871, 0.0011729495599865913, 0.0041052792221307755, 0.483561247587204, 0.0006579301552847028, 0.00221068924292922, 0.0003203283413313329, 0.00013618030061479658, 5.894057539990172e-05, 7.135565829230472e-05, 0.0010692396899685264, 0.48356056213378906], [0.0005427972064353526, 0.002994760638102889, 0.002723918529227376, 0.0009661453659646213, 0.001360641443170607, 0.0007815246935933828, 0.0007203997811302543, 0.0019217494409531355, 0.4933844804763794, 0.00012822668941225857, 0.0005460653337650001, 0.00011933306814171374, 4.748602441395633e-05, 2.402633435849566e-05, 2.608287650218699e-05, 0.0003296727081760764, 0.49338260293006897], [0.0010129687143489718, 0.007765775080770254, 0.004310577176511288, 0.0019061594503000379, 0.0028310746420174837, 0.003936925902962685, 0.0023409686982631683, 0.007053268142044544, 0.48249849677085876, 0.00044314799015410244, 0.001351499930024147, 0.00033148686634376645, 0.00018409447511658072, 0.00011737001477740705, 0.00011431476013967767, 0.0013041032943874598, 0.48249757289886475], [0.0002752021246124059, 0.0020299421157687902, 0.0017969366163015366, 0.000838438339997083, 0.00126757996622473, 0.0009055556729435921, 0.001063876785337925, 0.0012842414434999228, 0.4949764311313629, 0.00012654908641707152, 0.0002103675651596859, 7.829531386960298e-05, 9.834147931542248e-06, 3.648479150797357e-06, 7.4688073254947085e-06, 0.00015460114809684455, 0.49497124552726746], [0.006205603946000338, 0.02894463762640953, 0.03254945948719978, 0.006254755426198244, 0.008885656483471394, 0.01554496306926012, 0.010654150508344173, 0.019698526710271835, 0.4201321303844452, 0.005831683054566383, 0.005642343312501907, 0.0041975583881139755, 0.0032122544944286346, 0.0011955649824813008, 0.003001833101734519, 0.007913363166153431, 0.4201355278491974], [0.01651868410408497, 0.201225146651268, 0.10876559466123581, 0.07697559893131256, 0.0358927920460701, 0.05594801902770996, 0.053777437657117844, 0.042877811938524246, 0.08794908225536346, 0.043479740619659424, 0.06669101864099503, 0.018756907433271408, 0.02486284449696541, 0.01193234696984291, 0.01986880972981453, 0.046529270708560944, 0.08794885128736496], [0.005237212870270014, 0.008204932324588299, 0.006721633020788431, 0.003457236336544156, 0.0009096243302337825, 0.0022951653227210045, 0.0014071743935346603, 0.004623871762305498, 0.45259833335876465, 0.016047505661845207, 0.005976941902190447, 0.01417023129761219, 0.005539620760828257, 0.0032766296062618494, 0.005577230826020241, 0.011365116573870182, 0.4525914192199707], [0.0015229549026116729, 0.0012927246280014515, 0.006463420111685991, 0.0007905112579464912, 0.0005120253772474825, 0.0020386299584060907, 0.00032930023735389113, 0.0038861543871462345, 0.48021435737609863, 0.003572792513296008, 0.0025588429998606443, 0.004928890150040388, 0.0022167316637933254, 0.0035262969322502613, 0.002239897148683667, 0.0036948949564248323, 0.48021137714385986], [0.003779294667765498, 0.0022959159687161446, 0.003394491970539093, 0.0005672530387528241, 0.00046678452054038644, 0.0006091655814088881, 0.00021471164654940367, 0.0035200235433876514, 0.45558834075927734, 0.005751579534262419, 0.012999902479350567, 0.02065327949821949, 0.009368163533508778, 0.0033462520223110914, 0.0043659815564751625, 0.01749434880912304, 0.45558443665504456], [0.001026890822686255, 0.0014788956614211202, 0.001881602220237255, 0.00029091897886246443, 0.0003161149797961116, 0.0003643568779807538, 7.497551996493712e-05, 0.002344898646697402, 0.4841398000717163, 0.0013726098695769906, 0.0038558829110115767, 0.0041435458697378635, 0.004675861448049545, 0.0021155723370611668, 0.0016229794127866626, 0.006166336592286825, 0.4841287136077881], [0.0005873802583664656, 0.001616647350601852, 0.0024820810649544, 0.00015130001702345908, 0.00011801149958046153, 0.00048023794079199433, 4.3296000512782484e-05, 0.0012299279915168881, 0.4861294627189636, 0.001728222006931901, 0.006255460437387228, 0.0021400803234428167, 0.0025567286647856236, 0.004833409562706947, 0.00113230652641505, 0.002396430354565382, 0.48611903190612793], [0.001079473178833723, 0.002940128790214658, 0.006113069597631693, 0.0005145452450960875, 0.00025237377849407494, 0.0008021829416975379, 0.00014207401545718312, 0.002515962580218911, 0.4718865752220154, 0.0041077290661633015, 0.011648755520582199, 0.005741051398217678, 0.005975864361971617, 0.003786431858316064, 0.002050690818578005, 0.00856279768049717, 0.4718802869319916], [0.006499884184449911, 0.006831463426351547, 0.027302555739879608, 0.0019565920811146498, 0.0003006450133398175, 0.0008454597555100918, 0.0002922608400695026, 0.005557238589972258, 0.41151976585388184, 0.0067992680706083775, 0.040100276470184326, 0.008731737732887268, 0.007158646825700998, 0.007498839404433966, 0.007007658015936613, 0.05007214844226837, 0.4115254580974579], [0.016518589109182358, 0.2012253850698471, 0.10876526683568954, 0.07697532325983047, 0.0358927883207798, 0.05594798922538757, 0.053777195513248444, 0.04287824034690857, 0.08795088529586792, 0.04347857087850571, 0.06669024378061295, 0.018756138160824776, 0.02486267313361168, 0.011932287365198135, 0.019868843257427216, 0.04652900993824005, 0.08795066177845001]], [[0.012525881640613079, 0.04398968070745468, 0.02303292043507099, 0.028735680505633354, 0.05447067320346832, 0.02095254696905613, 0.013736053369939327, 0.014820651151239872, 0.2374809831380844, 0.03010939247906208, 0.06556187570095062, 0.049282003194093704, 0.05331811308860779, 0.01583646610379219, 0.024575941264629364, 0.07409147918224335, 0.2374797910451889], [0.0024372937623411417, 0.134346604347229, 0.07361678034067154, 0.02018393948674202, 0.02191765606403351, 0.012914825230836868, 0.012561282142996788, 0.010130390524864197, 0.32136479020118713, 0.012248959392309189, 0.01814456470310688, 0.006313006859272718, 0.010171320289373398, 0.0025753118097782135, 0.005846621468663216, 0.01385420747101307, 0.32137244939804077], [0.0022742741275578737, 0.01674554869532585, 0.1313985139131546, 0.0064729610458016396, 0.009539332240819931, 0.04080741107463837, 0.0053956652991473675, 0.0058334264904260635, 0.3513639271259308, 0.004868340212851763, 0.01493094302713871, 0.0028643771074712276, 0.008764074184000492, 0.016498828306794167, 0.020793871954083443, 0.010085796006023884, 0.35136276483535767], [0.004033764358609915, 0.0934067890048027, 0.017098961398005486, 0.23926609754562378, 0.025055259466171265, 0.02209092676639557, 0.017848674207925797, 0.02969762496650219, 0.2323877215385437, 0.010440210811793804, 0.016172656789422035, 0.019009361043572426, 0.0034970883280038834, 0.0017230180092155933, 0.0068774898536503315, 0.029006443917751312, 0.23238806426525116], [0.0027077263221144676, 0.02353522926568985, 0.010064241476356983, 0.014403527602553368, 0.46600544452667236, 0.029868287965655327, 0.027744952589273453, 0.0025174468755722046, 0.18897020816802979, 0.002408346626907587, 0.004377763718366623, 0.027403753250837326, 0.006692078895866871, 0.0008054658537730575, 0.0019218800589442253, 0.0015989654930308461, 0.18897461891174316], [0.0008461983525194228, 0.012745287269353867, 0.012791633605957031, 0.010122657753527164, 0.020089758560061455, 0.3043075501918793, 0.02599339187145233, 0.002321284031495452, 0.2897864878177643, 0.0013545018155127764, 0.0016651070909574628, 0.00969926081597805, 0.007144162431359291, 0.003859245916828513, 0.005632257089018822, 0.001859018811956048, 0.2897820770740509], [0.0022274802904576063, 0.024129878729581833, 0.018129782751202583, 0.01143691223114729, 0.02954508364200592, 0.059192776679992676, 0.5413843989372253, 0.005082998424768448, 0.1447935700416565, 0.0016921827336773276, 0.0028813534881919622, 0.004716459661722183, 0.0023062152322381735, 0.0013718843692913651, 0.004138705786317587, 0.00217791018076241, 0.14479246735572815], [0.0007924042292870581, 0.004342886619269848, 0.0147187989205122, 0.001271353685297072, 0.005935266613960266, 0.0057135592214763165, 0.0023225632030516863, 0.008487299084663391, 0.44882526993751526, 0.009427139535546303, 0.003554626600816846, 0.008465141989290714, 0.003829637309536338, 0.00869431346654892, 0.006292673293501139, 0.018498538061976433, 0.44882848858833313], [0.017075542360544205, 0.04165670648217201, 0.09032362699508667, 0.04640958830714226, 0.05838962271809578, 0.12241877615451813, 0.04562798887491226, 0.03744145482778549, 0.06261170655488968, 0.041652701795101166, 0.042466986924409866, 0.041372764855623245, 0.054647766053676605, 0.12319710105657578, 0.07539340108633041, 0.03670293837785721, 0.06261132657527924], [0.003205417888239026, 0.011904819868505001, 0.012091731652617455, 0.006897874176502228, 0.006012268364429474, 0.008998489007353783, 0.007844949141144753, 0.004762975033372641, 0.3378387689590454, 0.15228553116321564, 0.01657586544752121, 0.016285276040434837, 0.024118781089782715, 0.003952993080019951, 0.005927578080445528, 0.04346243292093277, 0.3378344178199768], [0.002724470105022192, 0.010024412535130978, 0.020794983953237534, 0.0012117858277633786, 0.004923355299979448, 0.002882680157199502, 0.0018071690574288368, 0.0013564227847382426, 0.44120553135871887, 0.008368640206754208, 0.012222128920257092, 0.01048631314188242, 0.010790479369461536, 0.00938624981790781, 0.015173789113759995, 0.005441887769848108, 0.4411996304988861], [0.0008884118869900703, 0.004966572392731905, 0.002345796674489975, 0.0038140511605888605, 0.029633598402142525, 0.016497116535902023, 0.003562374971807003, 0.002009723801165819, 0.274200439453125, 0.0027811340987682343, 0.0029459157958626747, 0.3134748041629791, 0.04021326079964638, 0.012165484018623829, 0.011341501027345657, 0.0049714939668774605, 0.27418839931488037], [0.0013292423682287335, 0.0031741235870867968, 0.004420950077474117, 0.0005869693122804165, 0.004190822131931782, 0.004853463731706142, 0.0027528819628059864, 0.0005065901787020266, 0.18304698169231415, 0.0037007001228630543, 0.00225565442815423, 0.02467900700867176, 0.5225248336791992, 0.023075195029377937, 0.029583530500531197, 0.006277815438807011, 0.1830413043498993], [0.0011934485519304872, 0.0011972703505307436, 0.008055170997977257, 0.000421518343500793, 0.0007108537829481065, 0.006399841513484716, 0.0005738665931858122, 0.0006422411534003913, 0.3648245334625244, 0.0005503998836502433, 0.001250285655260086, 0.0036745623219758272, 0.011885044164955616, 0.18483692407608032, 0.04650628939270973, 0.002467802260071039, 0.36480993032455444], [0.0035652942024171352, 0.002929875161498785, 0.00750355701893568, 0.003339452436193824, 0.0029645191971212626, 0.018696559593081474, 0.007979441434144974, 0.002393589820712805, 0.3285079300403595, 0.002056811936199665, 0.0036669259425252676, 0.01678227074444294, 0.019413670524954796, 0.07943206280469894, 0.16439281404018402, 0.00788420531898737, 0.3284910023212433], [0.007000735029578209, 0.01993590034544468, 0.005948950070887804, 0.009566698223352432, 0.003581451019272208, 0.0037530423142015934, 0.003943718038499355, 0.014704895205795765, 0.16458885371685028, 0.06221707910299301, 0.014026223681867123, 0.05116696655750275, 0.05257246643304825, 0.016880260780453682, 0.025000395253300667, 0.3805259168148041, 0.16458648443222046], [0.017075348645448685, 0.041656214743852615, 0.09032460302114487, 0.04640873521566391, 0.058390405029058456, 0.1224188581109047, 0.04562682658433914, 0.03744121640920639, 0.06261271983385086, 0.041652072221040726, 0.042466502636671066, 0.04137236252427101, 0.05464804917573929, 0.12319736182689667, 0.0753936842083931, 0.03670267015695572, 0.06261233985424042]], [[0.02255246601998806, 0.016537176445126534, 0.19021019339561462, 0.05639459565281868, 0.010413448326289654, 0.009903442114591599, 0.01795833371579647, 0.03141360729932785, 0.014352582395076752, 0.0074180252850055695, 0.4516300857067108, 0.018311072140932083, 0.014141831547021866, 0.010655286721885204, 0.046470582485198975, 0.06728436797857285, 0.014353012666106224], [0.0051886700093746185, 0.05415106564760208, 0.015387012623250484, 0.007505962625145912, 0.0021845127921551466, 0.023573867976665497, 0.005414517596364021, 0.08547712862491608, 0.38570675253868103, 0.004522663541138172, 0.005325814243406057, 0.0003068078658543527, 0.0006961135077290237, 0.003771910211071372, 0.004824344534426928, 0.010274983011186123, 0.38568779826164246], [0.006280183792114258, 0.457738995552063, 0.07577209174633026, 0.026058992370963097, 0.014405171386897564, 0.016351960599422455, 0.0043957652524113655, 0.007036853581666946, 0.15638478100299835, 0.004735412076115608, 0.04083384573459625, 0.003947857301682234, 0.003733963705599308, 0.010412978008389473, 0.006634787190705538, 0.008894695900380611, 0.15638169646263123], [0.011539377272129059, 0.09949619323015213, 0.1040518581867218, 0.05344853177666664, 0.009582693688571453, 0.2608286142349243, 0.050707630813121796, 0.0085514010861516, 0.16759783029556274, 0.0026775398291647434, 0.021397093310952187, 0.0012701137457042933, 0.004175036679953337, 0.010991677641868591, 0.023143569007515907, 0.002945619635283947, 0.16759516298770905], [0.02973167598247528, 0.07690531015396118, 0.047165174037218094, 0.2296413630247116, 0.0742604061961174, 0.10394757241010666, 0.019687842577695847, 0.0037941480986773968, 0.18572740256786346, 0.011022750288248062, 0.006715601310133934, 0.0030377975199371576, 0.0033546590711921453, 0.0038184982258826494, 0.00878156628459692, 0.0066856760531663895, 0.18572252988815308], [0.003935239743441343, 0.032638661563396454, 0.013407550752162933, 0.024493277072906494, 0.05912860110402107, 0.15248402953147888, 0.022822679951786995, 0.00414193095639348, 0.3344057500362396, 0.0027189224492758512, 0.002054766984656453, 0.0016770398942753673, 0.0033895059023052454, 0.005474029574543238, 0.0016631443286314607, 0.001165649970062077, 0.3343992233276367], [0.00023041841632220894, 0.0014078803360462189, 0.0013588329311460257, 0.0012348921736702323, 0.0034998420160263777, 0.9151123762130737, 0.006135380361229181, 0.0001292256492888555, 0.03173745423555374, 0.0007335039554163814, 0.0001920120557770133, 0.00022399597219191492, 0.00024870727793313563, 0.004835208412259817, 0.0011713503627106547, 1.2268412319826894e-05, 0.03173675015568733], [0.004210618790239096, 0.010797660797834396, 0.03953735530376434, 0.031317777931690216, 0.012942219153046608, 0.18070651590824127, 0.22081008553504944, 0.0014434935292229056, 0.2072792649269104, 0.0025198671501129866, 0.024099325761198997, 0.006713059265166521, 0.016088169068098068, 0.003081422531977296, 0.02703266777098179, 0.00414266949519515, 0.2072777897119522], [0.03075684793293476, 0.050250958651304245, 0.10121431946754456, 0.05514764413237572, 0.044641293585300446, 0.047108590602874756, 0.030974021181464195, 0.08693362772464752, 0.03872528299689293, 0.026210786774754524, 0.10376135259866714, 0.03895127400755882, 0.034228626638650894, 0.04499056562781334, 0.05360503867268562, 0.17377375066280365, 0.03872605040669441], [0.03641815111041069, 0.008052133023738861, 0.0018064351752400398, 0.0030028284527361393, 0.0008273310377262533, 0.0025297130923718214, 0.002727655228227377, 0.5159849524497986, 0.1005997285246849, 0.0241503044962883, 0.0033834988716989756, 0.0022061350755393505, 0.003551473841071129, 0.013575058430433273, 0.011995721608400345, 0.16859211027622223, 0.10059676319360733], [0.018927721306681633, 0.010604850016534328, 0.010019751265645027, 0.005446989554911852, 0.0017387995030730963, 0.015060827136039734, 0.002329367445781827, 0.027639588341116905, 0.3296438157558441, 0.09403447806835175, 0.01991122029721737, 0.013736003078520298, 0.008927475661039352, 0.029324132949113846, 0.04000852629542351, 0.04301200062036514, 0.3296343982219696], [0.027998588979244232, 0.010734878480434418, 0.013445778749883175, 0.008256393484771252, 0.007886757142841816, 0.016468830406665802, 0.005183707922697067, 0.021891770884394646, 0.2058113068342209, 0.053535327315330505, 0.035523660480976105, 0.08833994716405869, 0.0796736627817154, 0.058038126677274704, 0.05007735639810562, 0.1113213524222374, 0.20581258833408356], [0.024024153128266335, 0.0024413098581135273, 0.007671091705560684, 0.002746078185737133, 0.005442376714199781, 0.009366065263748169, 0.0014803579542785883, 0.007753412704914808, 0.18916790187358856, 0.058506570756435394, 0.01770136132836342, 0.1720457524061203, 0.04430493712425232, 0.2029067575931549, 0.050709571689367294, 0.014567193575203419, 0.18916507065296173], [0.002812630496919155, 0.0019144911784678698, 0.0052632298320531845, 0.000284150562947616, 0.0019059226615354419, 0.0025077250320464373, 0.0006264394032768905, 0.0011376042384654284, 0.4189135432243347, 0.009348278865218163, 0.005259343422949314, 0.02028665691614151, 0.03277909755706787, 0.058848679065704346, 0.012434656731784344, 0.006771378219127655, 0.41890615224838257], [0.00345527078025043, 0.0012366781011223793, 0.002847040770575404, 0.00020404857059475034, 0.0014283418422564864, 0.01842554472386837, 0.0013994519831612706, 0.0015247557312250137, 0.12187078595161438, 0.009246139787137508, 0.0021591787226498127, 0.03268887475132942, 0.02692278102040291, 0.5951436161994934, 0.05675017833709717, 0.0028317251708358526, 0.12186546623706818], [0.0061354744248092175, 0.003449586918577552, 0.008863916620612144, 0.0025198073126375675, 0.0005928147002123296, 0.02298600971698761, 0.00788487121462822, 0.0038011176511645317, 0.2517220675945282, 0.009041408076882362, 0.011061213910579681, 0.010346817784011364, 0.029818782582879066, 0.08406944572925568, 0.27485084533691406, 0.021141648292541504, 0.25171419978141785], [0.030755406245589256, 0.050251420587301254, 0.10121684521436691, 0.05514812469482422, 0.044641029089689255, 0.04710926488041878, 0.03097490780055523, 0.08692710101604462, 0.0387251079082489, 0.026210878044366837, 0.10376205295324326, 0.038951434195041656, 0.03423009440302849, 0.04498929902911186, 0.05360664427280426, 0.17377449572086334, 0.03872588276863098]], [[0.04554121941328049, 0.009199986234307289, 0.0063534872606396675, 0.010801888071000576, 0.001969326054677367, 0.01824416220188141, 0.027314908802509308, 0.008589928038418293, 0.3695932626724243, 0.012321523390710354, 0.0057823676615953445, 0.010587123222649097, 0.005133056081831455, 0.038473568856716156, 0.03444083780050278, 0.026070941239595413, 0.36958232522010803], [0.006388530135154724, 0.011096514761447906, 0.015440454706549644, 0.010007442906498909, 0.00395668251439929, 0.029812294989824295, 0.010998351499438286, 0.005796106997877359, 0.44774049520492554, 0.002114752307534218, 0.000970024848356843, 0.000916947377845645, 0.0004213794891256839, 0.0017221391899511218, 0.0034923176281154156, 0.0013794493861496449, 0.44774603843688965], [0.009414441883563995, 0.026494426652789116, 0.06022033840417862, 0.017888369038701057, 0.014413007535040379, 0.018028074875473976, 0.01071783434599638, 0.015700355172157288, 0.3943559229373932, 0.0030113717075437307, 0.0059552849270403385, 0.00252044596709311, 0.003164339577779174, 0.00593807315453887, 0.006492985878139734, 0.01132645271718502, 0.3943582773208618], [0.0088624507188797, 0.016770992428064346, 0.008489384315907955, 0.0279600378125906, 0.010298780165612698, 0.1716640442609787, 0.12188942730426788, 0.007638775743544102, 0.3034001886844635, 0.005140735302120447, 0.001223384984768927, 0.0018318829825147986, 0.00040970585541799664, 0.003559007542207837, 0.004720765631645918, 0.0027475282549858093, 0.30339279770851135], [0.006954554468393326, 0.007336656097322702, 0.0025394682306796312, 0.005201582331210375, 0.005734742619097233, 0.03356388956308365, 0.00523295346647501, 0.00269103329628706, 0.4635368585586548, 0.0014110163319855928, 0.00015829451149329543, 0.0005777047481387854, 0.00011080861440859735, 0.0005434292834252119, 0.0007688202895224094, 0.00011086231097579002, 0.4635273516178131], [0.0073263514786958694, 0.01873069256544113, 0.0031164493411779404, 0.008841820992529392, 0.11086704581975937, 0.11712416261434555, 0.029057204723358154, 0.004409668035805225, 0.3437116742134094, 0.0014607772463932633, 0.00045140658039599657, 0.007177236024290323, 0.0012704264372587204, 0.0014691947726532817, 0.0009623391670174897, 0.00031864267657510936, 0.3437049686908722], [0.002099486766383052, 0.0037424040492624044, 0.001077237888239324, 0.0023204409517347813, 0.01250382699072361, 0.7251942157745361, 0.022480551153421402, 0.0012375111691653728, 0.11314277350902557, 0.0013801399618387222, 6.686729466309771e-05, 0.00027393829077482224, 4.0218885260401294e-05, 0.0008534585358574986, 0.0003895273548550904, 5.673698251484893e-05, 0.11314071714878082], [0.014805400744080544, 0.005912791937589645, 0.009252442978322506, 0.011960674077272415, 0.014281476847827435, 0.07294703274965286, 0.09243258833885193, 0.01328662782907486, 0.35832977294921875, 0.009634271264076233, 0.0018515965202823281, 0.002754193963482976, 0.002813354367390275, 0.0015979899326339364, 0.016356630250811577, 0.013453013263642788, 0.3583301901817322], [0.06075502187013626, 0.04756705090403557, 0.024505222216248512, 0.041119206696748734, 0.055909715592861176, 0.04023066163063049, 0.08756592869758606, 0.047822505235672, 0.10716397315263748, 0.0730045735836029, 0.043590791523456573, 0.07098162174224854, 0.05784333497285843, 0.013427472673356533, 0.033653624355793, 0.08769694715738297, 0.10716239362955093], [0.05291523039340973, 0.001984847243875265, 0.001994884107261896, 0.0008217752911150455, 0.0010112912859767675, 0.004462121520191431, 0.002114827511832118, 0.01088201068341732, 0.42574578523635864, 0.008098365738987923, 0.004711825400590897, 0.00586341880261898, 0.0011751024285331368, 0.0256133284419775, 0.017413906753063202, 0.009441502392292023, 0.42574962973594666], [0.009042135439813137, 0.0015484930481761694, 0.0107125174254179, 0.000604674220085144, 8.401161176152527e-05, 0.0026000775396823883, 0.0005113151855766773, 0.0016089691780507565, 0.43598538637161255, 0.0035414290614426136, 0.00770805636420846, 0.002135239774361253, 0.0014354768209159374, 0.04802033677697182, 0.02825295552611351, 0.01022831816226244, 0.4359806180000305], [0.04007783904671669, 0.001881256466731429, 0.0024513639509677887, 0.0006194608868099749, 0.0020508689340204, 0.008939762599766254, 0.0008169619832187891, 0.005018626339733601, 0.3767133951187134, 0.015994325280189514, 0.014044477604329586, 0.04408397525548935, 0.014529246836900711, 0.05312582477927208, 0.03202439844608307, 0.010926838032901287, 0.37670135498046875], [0.013736987486481667, 0.0011371597647666931, 0.004555847495794296, 0.0003044239419978112, 0.0003189755661878735, 0.010978755541145802, 0.00034805815084837377, 0.0018808480817824602, 0.2441849410533905, 0.005386872682720423, 0.005235855933278799, 0.01776091754436493, 0.006309798918664455, 0.3805254101753235, 0.05955587327480316, 0.0035995652433484793, 0.24417981505393982], [0.009031491354107857, 0.0023163161240518093, 0.013704449869692326, 0.0006354933721013367, 0.0006238433998078108, 0.00426264014095068, 0.0003713623736985028, 0.0014617580454796553, 0.22843414545059204, 0.005722798407077789, 0.007863953709602356, 0.014869583770632744, 0.03801451250910759, 0.21501068770885468, 0.22400610148906708, 0.005238768644630909, 0.22843213379383087], [0.008795831352472305, 0.0017278454033657908, 0.007302428595721722, 0.0005352278240025043, 0.0016677632229402661, 0.01279748696833849, 0.0014263754710555077, 0.0007649898761883378, 0.1651044487953186, 0.007080018520355225, 0.008906455710530281, 0.011133446358144283, 0.014726677909493446, 0.5179486870765686, 0.07256244868040085, 0.0024222692009061575, 0.16509759426116943], [0.02172226458787918, 0.0026696454733610153, 0.006795316468924284, 0.0023306121584028006, 0.00031043755006976426, 0.013657729141414165, 0.0035940948873758316, 0.003131263656541705, 0.306375116109848, 0.019295470789074898, 0.0281047485768795, 0.019133297726511955, 0.005344226956367493, 0.07714380323886871, 0.13694310188293457, 0.047081828117370605, 0.30636706948280334], [0.06075282767415047, 0.04756716638803482, 0.024505963549017906, 0.04111969843506813, 0.0559094063937664, 0.0402311272919178, 0.08756700903177261, 0.04782210290431976, 0.1071636900305748, 0.07300541549921036, 0.04359082877635956, 0.07098083198070526, 0.057844895869493484, 0.013427520170807838, 0.033653680235147476, 0.08769567310810089, 0.10716213285923004]], [[0.008072351105511189, 0.0970616415143013, 0.0479985736310482, 0.08865855634212494, 0.0073208580724895, 0.09594166278839111, 0.012942367233335972, 0.09502130001783371, 0.0848035141825676, 0.14559076726436615, 0.018215667456388474, 0.03304503858089447, 0.00839836522936821, 0.005301028955727816, 0.016955891624093056, 0.14986765384674072, 0.08480477333068848], [0.00029199241544120014, 0.002026236616075039, 0.009927725419402122, 0.0008937967359088361, 0.0009448904893361032, 0.002929836278781295, 0.0007016254239715636, 0.0032919365912675858, 0.48573508858680725, 0.0006974827847443521, 0.0005899725365452468, 0.0008616857812739909, 0.0009893173119053245, 0.00039425274007953703, 0.0009596660383976996, 0.0030321709346026182, 0.4857323169708252], [0.02352430857717991, 0.01939789205789566, 0.026672454550862312, 0.014020427130162716, 0.02560737356543541, 0.023188726976513863, 0.01013965718448162, 0.026953069493174553, 0.3564034402370453, 0.012372939847409725, 0.01160029973834753, 0.013721444644033909, 0.014973224140703678, 0.011269966140389442, 0.031242715194821358, 0.022506842389702797, 0.35640522837638855], [0.0004150836612097919, 0.0019953183364123106, 0.0048773144371807575, 0.0008740141638554633, 0.0006392838549800217, 0.0035667086485773325, 0.0012115498539060354, 0.0022593247704207897, 0.4888775646686554, 0.0007568212458863854, 0.0005134233506396413, 0.001029378385283053, 0.0007043932564556599, 0.00032219517743214965, 0.0010616589570418, 0.0020265160128474236, 0.48886939883232117], [0.0003148639516439289, 0.001826586900278926, 0.00446000462397933, 0.0005542636499740183, 0.0010195644572377205, 0.003765629604458809, 0.0013322030426934361, 0.0013798534637317061, 0.4904574155807495, 0.00042579194996505976, 0.0008980543352663517, 0.000635086209513247, 0.00027596595464274287, 0.00016428271192125976, 0.00040110538247972727, 0.0016371335368603468, 0.49045225977897644], [0.0014843936078250408, 0.008924184367060661, 0.02247716300189495, 0.003506989683955908, 0.0028947722166776657, 0.010724671185016632, 0.0046979463659226894, 0.005851625464856625, 0.45741426944732666, 0.0028790198266506195, 0.0022173512261360884, 0.0026488876901566982, 0.0033455409575253725, 0.0025797525886446238, 0.005034410394728184, 0.005907638464123011, 0.4574113190174103], [2.7402362320572138e-05, 0.0003943797782994807, 0.001930851023644209, 0.00012959442392457277, 0.00015123074990697205, 0.0006607579416595399, 0.0002049604954663664, 0.00030978998984210193, 0.4977753162384033, 6.23662126599811e-05, 6.033935278537683e-05, 9.53183916863054e-05, 6.083087282604538e-05, 3.3789641747716814e-05, 0.00011050031753256917, 0.00022006798826623708, 0.4977724552154541], [0.004204594995826483, 0.007253636140376329, 0.031624481081962585, 0.003278732532635331, 0.002680302830412984, 0.025581251829862595, 0.003637828165665269, 0.01038562972098589, 0.415348082780838, 0.006600002758204937, 0.0032698549330234528, 0.003010248066857457, 0.004509266000241041, 0.013244258239865303, 0.037509091198444366, 0.012514753267168999, 0.415348082780838], [0.02602558396756649, 0.11502430588006973, 0.13907042145729065, 0.08255820721387863, 0.03488663583993912, 0.05803551897406578, 0.033057402819395065, 0.10341104865074158, 0.02057592198252678, 0.06378481537103653, 0.05510827153921127, 0.02587272599339485, 0.033313728868961334, 0.06530474871397018, 0.07745680212974548, 0.04593774676322937, 0.020576084032654762], [5.040438554715365e-05, 0.0021397005766630173, 0.00895668100565672, 0.000232657344895415, 0.00023611639335285872, 0.002490076469257474, 0.00017552664212416857, 0.0028803490567952394, 0.48868849873542786, 0.0007212411146610975, 0.0007951589650474489, 0.00033781962702050805, 0.0006165526574477553, 0.0002109793567797169, 0.0007292263326235116, 0.00205221027135849, 0.48868685960769653], [0.0003890593652613461, 0.000693493231665343, 0.0018270111177116632, 0.0003544257197063416, 0.0003338260285090655, 0.0014996877871453762, 0.0002062274288618937, 0.0028919950127601624, 0.4902200996875763, 0.0007828455418348312, 0.00048663292545825243, 0.002222022507339716, 0.001564528327435255, 0.0006616450264118612, 0.0019176488276571035, 0.00373026542365551, 0.4902186989784241], [0.000591022486332804, 0.005605257581919432, 0.013088002800941467, 0.0014561369316652417, 0.0010515452595427632, 0.006971160415560007, 0.0012339871609583497, 0.007519707549363375, 0.46225234866142273, 0.0006260748486965895, 0.003564959391951561, 0.004405129235237837, 0.006562281399965286, 0.007454396691173315, 0.009721138514578342, 0.0056509170681238174, 0.46224597096443176], [6.160011980682611e-05, 0.0006976075819693506, 0.004922997672110796, 0.00011092484783148393, 0.00012217674520798028, 0.0016010383842512965, 8.087490277830511e-05, 0.0013516803737729788, 0.4888431429862976, 0.00014752670540474355, 0.0003647179401014, 0.0003796535893343389, 0.0030504059977829456, 0.0029147095046937466, 0.005478133447468281, 0.0010295744286850095, 0.4888433814048767], [0.000166792786330916, 0.0015397928655147552, 0.007944038137793541, 0.00013711916108150035, 0.00011599745630519465, 0.0006569723482243717, 0.00010692119394661859, 0.0019003862980753183, 0.4794031083583832, 7.980596274137497e-05, 0.0012594269355759025, 0.000490149948745966, 0.007886458188295364, 0.006780900061130524, 0.010846252553164959, 0.001284137717448175, 0.47940173745155334], [0.0002697754534892738, 0.003752934280782938, 0.008374127559363842, 0.00041484954999759793, 0.00019416961004026234, 0.0014724100474268198, 0.0003446594637352973, 0.0032207488548010588, 0.4782703220844269, 0.0001742991735227406, 0.0021611363627016544, 0.0009780267719179392, 0.005905776284635067, 0.005196746438741684, 0.0085239103063941, 0.0024807851295918226, 0.47826531529426575], [0.0003798682300839573, 0.0012959493324160576, 0.0038639199919998646, 0.0003593916189856827, 0.00022305548191070557, 0.002155375201255083, 0.0004883090150542557, 0.0025148089043796062, 0.48420318961143494, 0.0015796689549461007, 0.001260863384231925, 0.0017355747986584902, 0.0030727966222912073, 0.0015600246842950583, 0.005307079292833805, 0.005799435079097748, 0.4842008948326111], [0.026025498285889626, 0.11502338945865631, 0.13907143473625183, 0.08255776762962341, 0.03488677367568016, 0.058035679161548615, 0.033057257533073425, 0.10341017693281174, 0.020576415583491325, 0.06378437578678131, 0.055108219385147095, 0.025872791185975075, 0.033314116299152374, 0.06530431658029556, 0.07745753973722458, 0.04593765735626221, 0.02057657577097416]], [[0.04480824992060661, 0.03297186642885208, 0.03367864340543747, 0.025074781849980354, 0.022815730422735214, 0.061785053461790085, 0.016387585550546646, 0.06054631993174553, 0.16260534524917603, 0.1300194412469864, 0.06651037186384201, 0.0332353413105011, 0.012909423559904099, 0.01947220414876938, 0.036484528332948685, 0.07809310406446457, 0.16260197758674622], [0.0010800542077049613, 0.0026196117978543043, 0.00236563035286963, 0.002990636508911848, 0.003610211657360196, 0.008666242472827435, 0.0030203580390661955, 0.0036620297469198704, 0.48523062467575073, 0.00047510152217000723, 0.0004351798561401665, 0.00017731636762619019, 5.776186299044639e-05, 7.527276466134936e-05, 6.850382487755269e-05, 0.00023697895812802017, 0.4852283000946045], [0.0028387606143951416, 0.010509196668863297, 0.014097252860665321, 0.011465372517704964, 0.009642244316637516, 0.017164289951324463, 0.018239587545394897, 0.009173719212412834, 0.4459141194820404, 0.0013492201687768102, 0.004466199316084385, 0.001956002553924918, 0.0017063363920897245, 0.0011636473936960101, 0.0012486072955653071, 0.003153716679662466, 0.4459116756916046], [0.006845681928098202, 0.024603400379419327, 0.023730771616101265, 0.008230338804423809, 0.011099331080913544, 0.034567300230264664, 0.006372840143740177, 0.023801378905773163, 0.42740878462791443, 0.0034354578237980604, 0.001242276281118393, 0.00020345202938187867, 9.469996439293027e-05, 0.00032897398341447115, 0.00036875149817205966, 0.0002733061264734715, 0.4273930788040161], [0.002326486399397254, 0.014244666323065758, 0.007843371480703354, 0.006786344572901726, 0.001599332899786532, 0.01107979565858841, 0.0037854891270399094, 0.004203256219625473, 0.4735513925552368, 0.00065084348898381, 0.0002197490684920922, 2.4478951672790572e-05, 5.385138592828298e-06, 2.81820884993067e-05, 3.485134584479965e-05, 9.33391202124767e-05, 0.47352316975593567], [0.001679741544649005, 0.021424351260066032, 0.017392024397850037, 0.006670094095170498, 0.003000916913151741, 0.011584553867578506, 0.0038224360905587673, 0.007737676613032818, 0.4624473452568054, 0.000476703280583024, 0.0005946724559180439, 9.42141778068617e-05, 4.75219203508459e-05, 7.814638229319826e-05, 8.306042582262307e-05, 0.00042882596608251333, 0.46243762969970703], [0.0007834460702724755, 0.008080177940428257, 0.007475530728697777, 0.0026598579715937376, 0.002991017885506153, 0.00956282950937748, 0.0011644703336060047, 0.002033824101090431, 0.4824669659137726, 0.00015426297613885254, 0.0001202375497086905, 1.7891805327963084e-05, 4.126811290916521e-06, 9.059407602762803e-06, 8.434074516117107e-06, 2.0615409084712155e-05, 0.48244717717170715], [0.014767533168196678, 0.052761223167181015, 0.044683732092380524, 0.0628630742430687, 0.07557976245880127, 0.22296178340911865, 0.054364241659641266, 0.011514107696712017, 0.18531815707683563, 0.009669188410043716, 0.0156327486038208, 0.01374389324337244, 0.0038618582766503096, 0.0127576794475317, 0.02555658668279648, 0.008647947572171688, 0.18531642854213715], [0.0330275297164917, 0.08639538288116455, 0.0546003133058548, 0.0877411738038063, 0.06216031312942505, 0.0857500210404396, 0.0941241979598999, 0.05902399495244026, 0.052815992385149, 0.07450896501541138, 0.07156369090080261, 0.045038677752017975, 0.01917661540210247, 0.023329945281147957, 0.03058750182390213, 0.06733981519937515, 0.052815914154052734], [0.0019794555846601725, 0.0003886910271830857, 0.0012518479488790035, 0.000655899231787771, 0.00027334477636031806, 0.0012694813776761293, 0.00015124864876270294, 0.0007694882224313915, 0.4904400408267975, 0.0012937705032527447, 0.0046974350698292255, 0.002628656104207039, 0.000338042969815433, 0.0007595503702759743, 0.0009430511854588985, 0.0017310597468167543, 0.4904288053512573], [0.0024472924415022135, 0.00020496420620474964, 0.0007056475151330233, 0.00013834694982506335, 6.45154868834652e-05, 0.00045146237243898213, 7.685282616876066e-05, 0.0004525057156570256, 0.4852296710014343, 0.002709990134462714, 0.006238013505935669, 0.006091473624110222, 0.0009261975064873695, 0.0021920346189290285, 0.0018912581726908684, 0.004965838044881821, 0.4852139353752136], [0.005546792410314083, 0.0005828047287650406, 0.0036694954615086317, 0.0003416200925130397, 6.882456364110112e-05, 0.00035175622906535864, 6.822581781307235e-05, 0.0007095675682649016, 0.4506056010723114, 0.00519830035045743, 0.01881220005452633, 0.0057239956222474575, 0.0035084798000752926, 0.015229422599077225, 0.02350020594894886, 0.01549785677343607, 0.4505849778652191], [0.0010218201205134392, 0.00012966724170837551, 0.0016478016041219234, 6.639950152020901e-05, 3.411811121623032e-05, 0.00024926173500716686, 1.4227876818040386e-05, 0.00019059350597672164, 0.4902417063713074, 0.0006493504042737186, 0.005307517014443874, 0.0040329815819859505, 0.0012620934285223484, 0.001588954241015017, 0.002162833232432604, 0.0011746532982215285, 0.49022603034973145], [0.003501582657918334, 0.0002870450261980295, 0.0022576579358428717, 9.947834041668102e-05, 9.544621570967138e-05, 0.0002486974117346108, 5.0738548452500254e-05, 0.00028689997270703316, 0.4697716534137726, 0.0010977355996146798, 0.011452978476881981, 0.007928447797894478, 0.008680086582899094, 0.008618864230811596, 0.01085326261818409, 0.005007029976695776, 0.4697624742984772], [0.004642265383154154, 0.00047803219058550894, 0.005091956816613674, 0.0001775922137312591, 0.0001717896229820326, 0.00044829200487583876, 6.620610656682402e-05, 0.0005473966593854129, 0.4605410099029541, 0.001668676151894033, 0.02111070789396763, 0.0099417082965374, 0.007544473744928837, 0.007995713502168655, 0.012053235433995724, 0.006989119108766317, 0.4605318009853363], [0.003942297305911779, 0.0007076837355270982, 0.008048424497246742, 0.0001359309972031042, 0.0003430764772929251, 0.003192560514435172, 0.00015848218754399568, 0.0003523774794302881, 0.3234092891216278, 0.007097167428582907, 0.17125971615314484, 0.05100984871387482, 0.019227804616093636, 0.03558855503797531, 0.04701126366853714, 0.00511261448264122, 0.3234029710292816], [0.03302721306681633, 0.08639654517173767, 0.054601170122623444, 0.08774027228355408, 0.06215977296233177, 0.08575105667114258, 0.09412454068660736, 0.05902286618947983, 0.05281829461455345, 0.07450903952121735, 0.07156340032815933, 0.04503767564892769, 0.019176090136170387, 0.023329636082053185, 0.030587175861001015, 0.0673370286822319, 0.05281822755932808]], [[0.011812104843556881, 0.0302154291421175, 0.018373887985944748, 0.018068216741085052, 0.08424177020788193, 0.013353501446545124, 0.0195289496332407, 0.03867679834365845, 0.3335633873939514, 0.01228831335902214, 0.015609201975166798, 0.032111670821905136, 0.012758095748722553, 0.0061138225719332695, 0.004474921151995659, 0.015248680487275124, 0.3335612416267395], [0.006903189234435558, 0.6584064364433289, 0.016305482015013695, 0.03119552694261074, 0.004088892601430416, 0.0051860446110367775, 0.00527097936719656, 0.008094911463558674, 0.10295216739177704, 0.011894120834767818, 0.027632376179099083, 0.0011993215885013342, 0.0015239602653309703, 0.0035313968546688557, 0.005179283674806356, 0.007686154451221228, 0.10294996201992035], [0.0017404663376510143, 0.013024003244936466, 0.0638813003897667, 0.003166348207741976, 0.0034793063532561064, 0.007856602780520916, 0.0028877202421426773, 0.0008187157800421119, 0.4356599450111389, 0.0032003161031752825, 0.013003394939005375, 0.0014218718279153109, 0.0023714208509773016, 0.0047865635715425014, 0.004659844562411308, 0.0023978373501449823, 0.43564435839653015], [0.006643806584179401, 0.06759169697761536, 0.02867521345615387, 0.2508712410926819, 0.024001769721508026, 0.008677888661623001, 0.013167690485715866, 0.004075413569808006, 0.2602134346961975, 0.017179351300001144, 0.013721817173063755, 0.0033908530604094267, 0.0012215559836477041, 0.0019341274164617062, 0.01065319124609232, 0.02777142822742462, 0.26020947098731995], [0.00528071029111743, 0.012586739845573902, 0.012856184504926205, 0.02790392003953457, 0.26394325494766235, 0.010174043476581573, 0.013306442648172379, 0.001976189436390996, 0.288747102022171, 0.01774829439818859, 0.02144251950085163, 0.018231764435768127, 0.0022519645281136036, 0.0029482017271220684, 0.0046544428914785385, 0.007204971741884947, 0.288743257522583], [0.00331202638335526, 0.005231511313468218, 0.019232284277677536, 0.004627323243767023, 0.0071184998378157616, 0.17192494869232178, 0.03073861449956894, 0.008179274387657642, 0.3352595865726471, 0.003848151070997119, 0.0038266179617494345, 0.00354035128839314, 0.006275768391788006, 0.03807111084461212, 0.020371876657009125, 0.0031910173129290342, 0.33525094389915466], [0.004287909250706434, 0.007329930085688829, 0.007054599467664957, 0.013850883580744267, 0.017220720648765564, 0.01657622680068016, 0.3182325065135956, 0.014877156354486942, 0.27220070362091064, 0.010209450498223305, 0.004915465135127306, 0.004503487143665552, 0.0014725106302648783, 0.003366798395290971, 0.024533716961741447, 0.007173631340265274, 0.2721942663192749], [0.0003735290083568543, 0.003015767550095916, 0.0038555413484573364, 0.000892238283995539, 0.0009258562931790948, 0.0008289494435302913, 0.0013859763275831938, 0.015143233351409435, 0.4687168598175049, 0.006721692159771919, 0.0010464602382853627, 0.0018745623528957367, 0.0017630831571295857, 0.003176035126671195, 0.010428940877318382, 0.011136632412672043, 0.4687146246433258], [0.00581139512360096, 0.07754470407962799, 0.0825522243976593, 0.05138538032770157, 0.13005641102790833, 0.15425322949886322, 0.08939588069915771, 0.04182581230998039, 0.04756972938776016, 0.04192528501152992, 0.034860797226428986, 0.04306088015437126, 0.05358944088220596, 0.04296611621975899, 0.03213052451610565, 0.023502783849835396, 0.04756931960582733], [0.002896580845117569, 0.014758261851966381, 0.002491266932338476, 0.004866006784141064, 0.030563633888959885, 0.005324942991137505, 0.005761244799941778, 0.00210519228130579, 0.09599211812019348, 0.6503998637199402, 0.024209290742874146, 0.012130741961300373, 0.026340357959270477, 0.0034807685296982527, 0.006608541589230299, 0.016079507768154144, 0.0959915742278099], [0.016279008239507675, 0.04880198463797569, 0.014401706866919994, 0.011640900745987892, 0.01635190285742283, 0.005985967814922333, 0.0052584814839065075, 0.003336048685014248, 0.2932893931865692, 0.02742045558989048, 0.21441768109798431, 0.011885302141308784, 0.011931284330785275, 0.007051394321024418, 0.008538610301911831, 0.010119940154254436, 0.29329007863998413], [0.0018675478640943766, 0.002484744181856513, 0.002930452348664403, 0.0023932955227792263, 0.03036515973508358, 0.006949533708393574, 0.0023170437198132277, 0.0013139477232471108, 0.22744709253311157, 0.016735607758164406, 0.007536791265010834, 0.3523162603378296, 0.08877135813236237, 0.011215425096452236, 0.0065015750005841255, 0.011413875967264175, 0.2274402678012848], [0.0028463867492973804, 0.006073690019547939, 0.005173449870198965, 0.0015207557007670403, 0.004376476164907217, 0.010370762087404728, 0.0016389323864132166, 0.0016645870637148619, 0.25066664814949036, 0.011171055026352406, 0.013316246680915356, 0.0318145677447319, 0.34112435579299927, 0.027619145810604095, 0.03056422248482704, 0.009395316243171692, 0.2506634294986725], [0.0011369027197360992, 0.0021319715306162834, 0.004433348774909973, 0.0006461366428993642, 0.0007294805254787207, 0.0038345232605934143, 0.0003027234924957156, 0.0010619123931974173, 0.2531304359436035, 0.0012920188019052148, 0.00338237383402884, 0.01653657853603363, 0.010879944078624249, 0.4128892719745636, 0.03201054409146309, 0.0024761981330811977, 0.25312548875808716], [0.0036597352009266615, 0.004679576028138399, 0.009837104938924313, 0.0026691535022109747, 0.0023126774467527866, 0.004960954189300537, 0.003464070614427328, 0.007896728813648224, 0.29014158248901367, 0.009089658968150616, 0.008716607466340065, 0.016759952530264854, 0.0276813842356205, 0.07457028329372406, 0.22423134744167328, 0.01918860711157322, 0.2901404798030853], [0.008345572277903557, 0.017568746581673622, 0.008071848191320896, 0.025688832625746727, 0.010864408686757088, 0.002627164125442505, 0.0021679294295608997, 0.008575713261961937, 0.14276736974716187, 0.06415924429893494, 0.02072158455848694, 0.026198796927928925, 0.0295125599950552, 0.0070204283110797405, 0.024105645716190338, 0.4588351547718048, 0.142768993973732], [0.005811500363051891, 0.07754436135292053, 0.08255141228437424, 0.0513850562274456, 0.13005733489990234, 0.1542530506849289, 0.08939344435930252, 0.04182568937540054, 0.04757062718272209, 0.04192609712481499, 0.03486085683107376, 0.043061356991529465, 0.05358906835317612, 0.04296655207872391, 0.03213036432862282, 0.023502981290221214, 0.04757021740078926]], [[0.0019849087111651897, 0.08855611830949783, 0.2910389006137848, 0.04698808118700981, 0.009876053780317307, 0.05755433812737465, 0.012332109734416008, 0.1292228102684021, 0.10991544276475906, 0.027511289343237877, 0.00549459271132946, 0.005734039004892111, 0.012193862348794937, 0.02143184095621109, 0.04460465535521507, 0.02564733475446701, 0.1099136546254158], [0.0006276286439970136, 0.007423233240842819, 0.013901297003030777, 0.016408072784543037, 0.0030015490483492613, 0.006943728309124708, 0.0038856177125126123, 0.018543429672718048, 0.46218937635421753, 0.00046874547842890024, 0.0005420306697487831, 0.00021973784896545112, 0.00012679400970228016, 0.00028480769833549857, 0.0003197281330358237, 0.002932084258645773, 0.46218210458755493], [0.00610472122207284, 0.00838943850249052, 0.042543087154626846, 0.010234312154352665, 0.007001273334026337, 0.014032558538019657, 0.008933191187679768, 0.04775406792759895, 0.4150524437427521, 0.0044616395607590675, 0.003059007693082094, 0.0023303984198719263, 0.0019287529867142439, 0.0028897172305732965, 0.0021838685497641563, 0.008044886402785778, 0.4150567054748535], [0.0012368588941171765, 0.011893616989254951, 0.02590339630842209, 0.00960689689964056, 0.008803652599453926, 0.01800016686320305, 0.015136396512389183, 0.024688607081770897, 0.4402122497558594, 0.0007514867465943098, 0.0005996265099383891, 0.0002394503098912537, 8.770742715569213e-05, 0.00026368172257207334, 0.0004236908571328968, 0.0019566179253160954, 0.44019609689712524], [0.0011976668611168861, 0.010508932173252106, 0.010565870441496372, 0.0056952061131596565, 0.0018003394361585379, 0.006022824440151453, 0.0022222239058464766, 0.003512006951496005, 0.4780665636062622, 0.0003465223126113415, 0.0005982271977700293, 0.000129126594401896, 5.479178071254864e-05, 0.00016803036851342767, 0.00024263568047899753, 0.0008168180356733501, 0.47805219888687134], [0.003102764254435897, 0.005295590963214636, 0.02131984569132328, 0.0018823794089257717, 0.0015874860109761357, 0.006617260631173849, 0.0009350915206596255, 0.0032096952199935913, 0.47591397166252136, 0.0014818526105955243, 0.0007619521929882467, 0.00015171317500062287, 0.00034284955472685397, 0.000257182284258306, 0.00030193428392522037, 0.0009315503411926329, 0.47590693831443787], [0.0005954334046691656, 0.0034797864500433207, 0.006197834853082895, 0.0016791351372376084, 0.003445325419306755, 0.004933944437652826, 0.0012294044718146324, 0.001167881884612143, 0.4882079064846039, 0.0002100910642184317, 0.0004091616428922862, 3.307452061562799e-05, 1.6781505109975114e-05, 4.9918708100449294e-05, 3.62369573849719e-05, 0.00010921825014520437, 0.48819881677627563], [0.013242204673588276, 0.036340516060590744, 0.05910816788673401, 0.03873424232006073, 0.04125585779547691, 0.05659734085202217, 0.023972276598215103, 0.034682974219322205, 0.3300987184047699, 0.006830625701695681, 0.006497418042272329, 0.0014774419832974672, 0.001694126520305872, 0.00455170962959528, 0.006821697577834129, 0.007999786175787449, 0.3300948739051819], [0.01587531715631485, 0.08117248117923737, 0.15265178680419922, 0.11273135244846344, 0.06255227327346802, 0.06127280369400978, 0.09383638203144073, 0.06239417940378189, 0.034661296755075455, 0.061965107917785645, 0.026844659820199013, 0.028733020648360252, 0.050168730318546295, 0.043751060962677, 0.047621648758649826, 0.029106590896844864, 0.0346611812710762], [0.0007625267608091235, 0.0007473639561794698, 0.002661657752469182, 0.0004905101377516985, 0.00019620751845650375, 0.0008391743176616728, 0.00020052216132171452, 0.0018509100191295147, 0.4909779727458954, 0.0012319288216531277, 0.000976788462139666, 0.0006127048982307315, 0.0002627545618452132, 0.0007706846226938069, 0.001420506159774959, 0.005029009189456701, 0.49096885323524475], [0.00043426849879324436, 0.002019111532717943, 0.0071866740472614765, 0.0008678800077177584, 0.00010529885184951127, 0.00035610012128017843, 0.00010900545748881996, 0.008771699853241444, 0.47931337356567383, 0.0009992095874622464, 0.0029752247501164675, 0.0005808927235193551, 0.0008009190205484629, 0.004420299082994461, 0.004240072797983885, 0.0075162677094340324, 0.479303777217865], [0.0015254586469382048, 0.0017632500967010856, 0.00968964397907257, 0.000147362778079696, 3.1503583159064874e-05, 0.0003131706907879561, 2.6138917746720836e-05, 0.0011554609518498182, 0.48007282614707947, 0.0005642945761792362, 0.005718571599572897, 0.0006580896442756057, 0.00476815877482295, 0.003074191976338625, 0.006273750215768814, 0.00415963726118207, 0.4800584018230438], [0.0004753679677378386, 0.0005127072799950838, 0.0028559572529047728, 5.456441795104183e-05, 3.32090312440414e-05, 0.00012077058636350557, 1.2964500456291717e-05, 0.0005332885775715113, 0.49256739020347595, 0.00035157211823388934, 0.0035839087795466185, 0.00028851311071775854, 0.000575128651689738, 0.002278165426105261, 0.0021125096827745438, 0.0010798713192343712, 0.4925641119480133], [0.0009278013603761792, 0.0002872979093808681, 0.004842829424887896, 2.2579160940949805e-05, 1.3637698430102319e-05, 0.00013281195424497128, 2.1045088942628354e-05, 0.00023501082614529878, 0.49199047684669495, 0.00047653273213654757, 0.0031366932671517134, 0.00021838283282704651, 0.0015071578091010451, 0.0019947593100368977, 0.0017317443853244185, 0.00047306291526183486, 0.4919881224632263], [0.0015131620457395911, 0.0007497292244806886, 0.006425360217690468, 9.67730738921091e-05, 3.854112947010435e-05, 0.00026940027601085603, 5.812298695673235e-05, 0.0005062506534159184, 0.4816824197769165, 0.0012696698540821671, 0.006251254118978977, 0.0009212627774104476, 0.002716516610234976, 0.01004814077168703, 0.005060023628175259, 0.0007168963784351945, 0.48167645931243896], [0.0018249948043376207, 0.002975980518385768, 0.025478724390268326, 0.0014519713586196303, 0.000921664759516716, 0.002535453299060464, 0.0004907372058369219, 0.004317663609981537, 0.44556838274002075, 0.004286850802600384, 0.009634511545300484, 0.0046390448696911335, 0.0037978794425725937, 0.018636900931596756, 0.02111905999481678, 0.00675989082083106, 0.4455603063106537], [0.015875382348895073, 0.08117321878671646, 0.15265372395515442, 0.11273261159658432, 0.06255240738391876, 0.061273347586393356, 0.0938355028629303, 0.0623948834836483, 0.03466196730732918, 0.06196365877985954, 0.02684403769671917, 0.02873244509100914, 0.05016680806875229, 0.04375050216913223, 0.0476214624941349, 0.029106171801686287, 0.034661851823329926]], [[0.023521874099969864, 0.13887333869934082, 0.020319197326898575, 0.08378175646066666, 0.023465899750590324, 0.07573378086090088, 0.057652510702610016, 0.4154953360557556, 0.027856072410941124, 0.03151163086295128, 0.04038861021399498, 0.004716391675174236, 0.0022513114381581545, 0.004074785392731428, 0.004794635809957981, 0.0177069753408432, 0.02785603143274784], [0.0007662298157811165, 0.018135299906134605, 0.011443358846008778, 0.009041102603077888, 0.002577859442681074, 0.018399721011519432, 0.0027045251335948706, 0.009740771725773811, 0.4632851481437683, 9.92259883787483e-05, 0.00035741852479986846, 1.979589978873264e-05, 1.205618173116818e-05, 2.6383597287349403e-05, 6.090150782256387e-05, 5.580222205026075e-05, 0.4632743299007416], [0.002366321859881282, 0.10162416845560074, 0.031625375151634216, 0.0313563346862793, 0.010172008536756039, 0.04109764099121094, 0.009599265642464161, 0.024887461215257645, 0.36734747886657715, 0.0021581666078418493, 0.0033202350605279207, 0.0003368133620824665, 0.000686759885866195, 0.0017312692943960428, 0.0029334593564271927, 0.0014132607029750943, 0.3673441410064697], [0.0004695113457273692, 0.06625770032405853, 0.026233257725834846, 0.024390406906604767, 0.0022858772426843643, 0.012010159902274609, 0.003493283875286579, 0.009133169427514076, 0.4276075065135956, 9.602065983926877e-05, 0.000298014230793342, 8.248635822383221e-06, 6.328611561912112e-06, 2.4179114916478284e-05, 3.294492489658296e-05, 6.319790554698557e-05, 0.42759016156196594], [0.0003092829720117152, 0.0526396781206131, 0.013272004202008247, 0.01004702877253294, 0.006345823872834444, 0.01564851403236389, 0.006943189539015293, 0.009577170945703983, 0.4424114525318146, 0.00014846559497527778, 0.00011577551777008921, 1.6292860891553573e-05, 1.394977152813226e-05, 4.444810838322155e-05, 5.568798223976046e-05, 1.6206218788283877e-05, 0.44239500164985657], [0.0005457582883536816, 0.010768098756670952, 0.008021951653063297, 0.006373038049787283, 0.011970696970820427, 0.017858441919088364, 0.012966259382665157, 0.0038098637014627457, 0.4635918438434601, 0.0001516962656751275, 7.444067887263373e-05, 6.174557347549126e-05, 4.51018349849619e-05, 4.19144744228106e-05, 4.8041616537375376e-05, 9.0475965407677e-05, 0.46358057856559753], [0.00016606459394097328, 0.00496461009606719, 0.002816763473674655, 0.004834216553717852, 0.008082536049187183, 0.0035655887331813574, 0.0043146051466465, 0.0007516908226534724, 0.4852212071418762, 2.134717578883283e-05, 2.520662201277446e-05, 7.673579602851532e-06, 2.4434507395199034e-06, 3.6411822748050326e-06, 5.242377937975107e-06, 8.29257805889938e-06, 0.4852089583873749], [0.009132195264101028, 0.0876205638051033, 0.03505895659327507, 0.1058327928185463, 0.03761347383260727, 0.24760237336158752, 0.08190281689167023, 0.044790688902139664, 0.15226894617080688, 0.01582510583102703, 0.012782753445208073, 0.0029895156621932983, 0.0023663993924856186, 0.003747776383534074, 0.006415943615138531, 0.0017819269560277462, 0.15226785838603973], [0.024940278381109238, 0.11619962751865387, 0.0494433231651783, 0.1186584085226059, 0.037716783583164215, 0.08430974185466766, 0.06299067288637161, 0.14452670514583588, 0.03058304637670517, 0.07242625951766968, 0.06421176344156265, 0.02264004945755005, 0.022385884076356888, 0.02793087065219879, 0.0417201966047287, 0.04873313754796982, 0.03058326616883278], [0.0033791474997997284, 0.004582847468554974, 0.003426425391808152, 0.004246036987751722, 0.00424323370680213, 0.0056143151596188545, 0.003030066844075918, 0.016488224267959595, 0.47164738178253174, 0.004719053860753775, 0.0038119915407150984, 0.0009640498901717365, 0.00029877875931560993, 0.00018914479005616158, 0.0005421480163931847, 0.0011769999982789159, 0.4716401994228363], [0.006413278169929981, 0.003272519214078784, 0.003110843012109399, 0.0008817933849059045, 0.0004821987240575254, 0.001507546054199338, 0.0002947902830783278, 0.008211481384932995, 0.4588344991207123, 0.022323373705148697, 0.020337840542197227, 0.002382119884714484, 0.0005742342909798026, 0.0010874224826693535, 0.0016048356192186475, 0.009861364960670471, 0.45881983637809753], [0.010251188650727272, 0.0025566192343831062, 0.004620653111487627, 0.001298433286137879, 0.0008595691761001945, 0.0018477147677913308, 0.0008575071697123349, 0.020378297194838524, 0.3563784062862396, 0.1091570034623146, 0.03954612463712692, 0.014599290676414967, 0.006599105428904295, 0.0049652280285954475, 0.0075399610213935375, 0.06217719614505768, 0.35636770725250244], [0.00885496474802494, 0.0013921349309384823, 0.0040003652684390545, 0.0003038168651983142, 0.0003060829476453364, 0.0005859033553861082, 0.00016064838564489037, 0.006968801375478506, 0.37125954031944275, 0.03355438634753227, 0.0159759521484375, 0.017153006047010422, 0.039842359721660614, 0.02561977691948414, 0.03359735384583473, 0.06917178630828857, 0.3712531626224518], [0.0016649097669869661, 0.0002731268177740276, 0.000957038311753422, 0.00015346088912338018, 0.00010003867646446452, 0.0004095886251889169, 7.774698315188289e-05, 0.0005874835187569261, 0.4576214849948883, 0.004385953303426504, 0.004524656105786562, 0.0075546796433627605, 0.016576867550611496, 0.0069027249701321125, 0.01310378685593605, 0.02749699354171753, 0.45760926604270935], [0.0031203110702335835, 0.0004939856007695198, 0.001712761353701353, 0.0003070902603212744, 0.00013497289910446852, 0.0002767530095297843, 0.00015221690409816802, 0.0014088372699916363, 0.45046287775039673, 0.01996263675391674, 0.012735324911773205, 0.00896986573934555, 0.010660086758434772, 0.009114466607570648, 0.014385048300027847, 0.01565508171916008, 0.4504474103450775], [0.008723906241357327, 0.0023722914047539234, 0.005307583138346672, 0.0014423956163227558, 0.00028802952147088945, 0.0011578716803342104, 0.0002818116918206215, 0.006803450174629688, 0.37336069345474243, 0.04519135132431984, 0.055846381932497025, 0.008100657723844051, 0.00407094182446599, 0.0025663163978606462, 0.0038833587896078825, 0.10725120455026627, 0.3733517825603485], [0.02493949420750141, 0.11620031297206879, 0.04944377392530441, 0.11865917593240738, 0.03771592304110527, 0.08430953323841095, 0.06298968940973282, 0.1445235311985016, 0.030583694577217102, 0.07242827862501144, 0.06421227008104324, 0.02263951674103737, 0.022385504096746445, 0.027931073680520058, 0.04172063618898392, 0.04873381555080414, 0.030583910644054413]], [[0.15641790628433228, 0.019472215324640274, 0.015247542411088943, 0.013404838740825653, 0.01967945322394371, 0.016380392014980316, 0.0046415734104812145, 0.023537883535027504, 0.1628110259771347, 0.06615925580263138, 0.1434141844511032, 0.022935261949896812, 0.04915748909115791, 0.015306605957448483, 0.04002919793128967, 0.06859113276004791, 0.16281402111053467], [0.017557820305228233, 0.007604199927300215, 0.059121958911418915, 0.0214568879455328, 0.009003871120512486, 0.022746462374925613, 0.003168415045365691, 0.0034808821510523558, 0.4249211549758911, 0.0005404543480835855, 0.0032355240546166897, 0.0004610133182723075, 0.0004868287069257349, 0.00017495555221103132, 0.0003916494606528431, 0.0007276583346538246, 0.42492014169692993], [0.039214447140693665, 0.03568170592188835, 0.03868825361132622, 0.13644924759864807, 0.035623498260974884, 0.03159964829683304, 0.016966361552476883, 0.049791209399700165, 0.28974586725234985, 0.006439655087888241, 0.004995717667043209, 0.0036415448412299156, 0.005137015599757433, 0.00295317848213017, 0.004329044371843338, 0.008989431895315647, 0.28975409269332886], [0.004575551021844149, 0.016080105677247047, 0.005927844904363155, 0.010002032853662968, 0.024588558822870255, 0.036488890647888184, 0.011798032559454441, 0.018629098311066628, 0.43407586216926575, 0.0009250261937268078, 0.0013515491737052798, 0.00027101539308205247, 0.0005121860303916037, 0.00016572978347539902, 0.00026561651611700654, 0.0002657518198247999, 0.43407711386680603], [0.001959542278200388, 0.0025327231269329786, 0.0030955239199101925, 0.0028464850038290024, 0.016441889107227325, 0.06613459438085556, 0.03430316969752312, 0.00459279352799058, 0.4327998161315918, 0.0007739319116808474, 0.0002040095132542774, 0.00039185595232993364, 0.00025424480554647744, 0.00020460222731344402, 0.0004650890768971294, 0.00019668148888740689, 0.4328029155731201], [0.037771280854940414, 0.005310892593115568, 0.007604767568409443, 0.010762638412415981, 0.0161296259611845, 0.05960553511977196, 0.06713485717773438, 0.025119103491306305, 0.3785499632358551, 0.0012296921340748668, 0.0014666297938674688, 0.0009050819207914174, 0.0007641538977622986, 0.0007323913159780204, 0.006183965131640434, 0.002177775138989091, 0.3785516023635864], [0.007608044892549515, 0.0012920108856633306, 0.0018191651906818151, 0.004531044512987137, 0.0038887360133230686, 0.011789485812187195, 0.00818362832069397, 0.01839609630405903, 0.47020336985588074, 0.0009354655048809946, 0.0003364763979334384, 0.00011879779049195349, 3.82945072487928e-05, 6.553070852532983e-05, 0.00014574828674085438, 0.00043933792039752007, 0.4702087640762329], [0.027132174000144005, 0.025193430483341217, 0.011770728044211864, 0.014639303088188171, 0.002379937097430229, 0.02090044878423214, 0.00795811414718628, 0.006066437810659409, 0.4164263904094696, 0.0202657300978899, 0.007372016087174416, 0.0011321034980937839, 0.002829032251611352, 0.004533847793936729, 0.0069343033246695995, 0.008051430806517601, 0.41641467809677124], [0.10680033266544342, 0.06203277036547661, 0.03412771224975586, 0.05610813945531845, 0.07080619037151337, 0.0797877162694931, 0.08210408687591553, 0.06484805792570114, 0.07475332170724869, 0.04809525981545448, 0.03827739134430885, 0.048354387283325195, 0.06098698452115059, 0.021728895604610443, 0.03311336413025856, 0.04332215338945389, 0.07475318759679794], [0.019269606098532677, 0.00725571857765317, 0.0066689965315163136, 0.00751078687608242, 0.0048647779040038586, 0.002715942682698369, 0.0013545786496251822, 0.0009377734386362135, 0.4067264497280121, 0.0065541947260499, 0.05163077265024185, 0.02010190673172474, 0.01942593976855278, 0.008450549095869064, 0.01945435255765915, 0.01034926250576973, 0.4067283868789673], [0.014850589446723461, 0.0007954047177918255, 0.002272674348205328, 0.001676072715781629, 0.0007673733052797616, 0.0008293810533359647, 0.0003126039227936417, 0.004069962073117495, 0.4549323618412018, 0.0011458296794444323, 0.012946616858243942, 0.013650696724653244, 0.016378093510866165, 0.005186373833566904, 0.008234103210270405, 0.007014406844973564, 0.4549373388290405], [0.007937241345643997, 0.0007685436285100877, 0.0012934806291013956, 0.0003093542472925037, 0.0010962937958538532, 0.0011660130694508553, 0.0010253441287204623, 0.0008749557309783995, 0.4423920810222626, 0.003065013326704502, 0.0037059795577079058, 0.012568687088787556, 0.01972794532775879, 0.02009713090956211, 0.03529074788093567, 0.006283702794462442, 0.4423975646495819], [0.002921934938058257, 0.0001419578184140846, 0.0004929805872961879, 0.00016105009126476943, 2.8721247872454114e-05, 0.0002528908080421388, 0.00011184791219420731, 0.0009949568193405867, 0.4591265022754669, 0.0005495003424584866, 0.0005930094048380852, 0.0014745795633643866, 0.005237529519945383, 0.017662763595581055, 0.04676802456378937, 0.0043440028093755245, 0.4591376781463623], [0.032425396144390106, 0.0006863664602860808, 0.002291613258421421, 0.0006443239981308579, 0.00025190733140334487, 0.0004435233131516725, 0.0010602165712043643, 0.0007373038679361343, 0.1700630933046341, 0.001335600041784346, 0.00491587957367301, 0.002912278752774, 0.017438678070902824, 0.02692965231835842, 0.5491586327552795, 0.018639331683516502, 0.1700662523508072], [0.022167976945638657, 0.0005000227829441428, 0.000897312187589705, 0.000802194292191416, 0.00028129349811933935, 0.0001393986021867022, 0.0002552941150497645, 0.0026496597565710545, 0.4467669725418091, 0.001127135707065463, 0.003938448615372181, 0.00238685286603868, 0.006141508463770151, 0.006979458965361118, 0.04369859769940376, 0.01449078693985939, 0.44677698612213135], [0.014680979773402214, 0.0009328353917226195, 0.0022696952801197767, 0.0008816945482976735, 0.00023396973847411573, 0.0007060410571284592, 0.00020840123761445284, 0.001735792844556272, 0.4654737114906311, 0.0012439667480066419, 0.012691715732216835, 0.002031312556937337, 0.007129490841180086, 0.006993147544562817, 0.0094226049259305, 0.007895111106336117, 0.46546947956085205], [0.10679879784584045, 0.06203247979283333, 0.034127745777368546, 0.05610756203532219, 0.07080429047346115, 0.07978823781013489, 0.08210393041372299, 0.06484825909137726, 0.07475675642490387, 0.04809548705816269, 0.03827643394470215, 0.048353563994169235, 0.060985006392002106, 0.021729055792093277, 0.03311335667967796, 0.04332233592867851, 0.07475663721561432]], [[0.013176705688238144, 0.005161315202713013, 0.016505764797329903, 0.007590837310999632, 0.0016054105944931507, 0.005887800361961126, 0.003234897507354617, 0.006028172094374895, 0.12390077859163284, 0.18407712876796722, 0.13811609148979187, 0.045445073395967484, 0.04202461987733841, 0.017699168995022774, 0.09280543029308319, 0.17283934354782104, 0.12390147894620895], [0.021443398669362068, 0.028819488361477852, 0.026590051129460335, 0.044059544801712036, 0.015567255206406116, 0.03343338891863823, 0.005174342542886734, 0.04697897657752037, 0.36972150206565857, 0.004567495547235012, 0.011032997630536556, 0.0014533872017636895, 0.0011132156942039728, 0.002293672412633896, 0.0022270982153713703, 0.01580410823225975, 0.3697202801704407], [0.05235188826918602, 0.07659924030303955, 0.020960111171007156, 0.10546980053186417, 0.034934885799884796, 0.08055611699819565, 0.039510879665613174, 0.052212055772542953, 0.20576702058315277, 0.011551078408956528, 0.06883895397186279, 0.005183523986488581, 0.0058635990135371685, 0.004531262908130884, 0.005609424784779549, 0.024288151413202286, 0.2057720273733139], [0.012753496877849102, 0.0335836187005043, 0.004521586932241917, 0.02164275012910366, 0.013727124780416489, 0.051030516624450684, 0.0207216776907444, 0.039971765130758286, 0.39101681113243103, 0.006261177361011505, 0.00848576333373785, 0.0009272063034586608, 0.00020743250206578523, 0.0008275808650068939, 0.0011753778671845794, 0.002123234560713172, 0.3910229504108429], [0.005798910744488239, 0.010359423235058784, 0.005070396699011326, 0.007865171879529953, 0.016487397253513336, 0.0580795481801033, 0.0337136834859848, 0.013551490381360054, 0.41953566670417786, 0.003788940142840147, 0.003466266207396984, 0.0008004122064448893, 0.000282483350019902, 0.0002160463045584038, 0.000699541880749166, 0.0007460000924766064, 0.4195384681224823], [0.00393800251185894, 0.0039023335557430983, 0.0009665403049439192, 0.001600784482434392, 0.00348343956284225, 0.009006298147141933, 0.0024692006409168243, 0.014226838015019894, 0.4755876958370209, 0.005188953597098589, 0.0017260070890188217, 0.0007557006902061403, 0.0004662904539145529, 0.0001499742502346635, 0.00020037752983625978, 0.0007393888081423938, 0.4755922257900238], [0.0021674446761608124, 0.0010239852126687765, 0.0005559400306083262, 0.0006442322046495974, 0.0038170935586094856, 0.0078084697015583515, 0.001562552759423852, 0.006016518454998732, 0.48701512813568115, 0.0013564227847382426, 0.0003556346637196839, 0.0002704523503780365, 6.861519068479538e-05, 6.115328142186627e-05, 6.001251676934771e-05, 0.00019832341058645397, 0.4870179295539856], [0.4883216917514801, 0.013175233267247677, 0.0066181062720716, 0.016256779432296753, 0.010362658649682999, 0.023859072476625443, 0.004718733951449394, 0.009193960577249527, 0.13308556377887726, 0.08767428249120712, 0.01155879721045494, 0.006227867677807808, 0.003182590240612626, 0.010955565609037876, 0.010828515514731407, 0.030895376577973366, 0.1330852210521698], [0.037800997495651245, 0.040572162717580795, 0.05631931871175766, 0.049554742872714996, 0.01427275687456131, 0.03410729393362999, 0.025968428701162338, 0.03067152015864849, 0.06917910277843475, 0.16030406951904297, 0.08772019296884537, 0.02232789620757103, 0.07457009702920914, 0.028874531388282776, 0.07092004269361496, 0.1276581585407257, 0.06917877495288849], [0.0008673241245560348, 0.00025335082318633795, 0.0011092043714597821, 0.00029223907040432096, 8.393027383135632e-05, 0.0003506191133055836, 8.632068056613207e-05, 0.0009567261440679431, 0.480203777551651, 0.000651464972179383, 0.00099703180603683, 0.004229824990034103, 0.003330813255161047, 0.0042216358706355095, 0.012175913900136948, 0.009986993856728077, 0.48020264506340027], [0.00031348250922746956, 0.0002760564675554633, 0.0007404544157907367, 0.00025952429859898984, 0.00011853656178573146, 0.0003784389409702271, 0.00012961360334884375, 0.00038633306394331157, 0.47311708331108093, 0.0011230229865759611, 0.003838638309389353, 0.008371005766093731, 0.0037728906609117985, 0.006408975925296545, 0.009095384739339352, 0.018555408343672752, 0.4731152653694153], [0.0015080039156600833, 0.00011031392932636663, 0.00035811110865324736, 5.836683340021409e-05, 9.118313755607232e-05, 0.0004463361983653158, 5.205834531807341e-05, 0.0008099426631815732, 0.469679594039917, 0.0034400050062686205, 0.0009291977621614933, 0.008965149521827698, 0.007681253831833601, 0.008524042554199696, 0.02079007774591446, 0.0068803709000349045, 0.46967601776123047], [0.00014411115262191743, 1.797882214304991e-05, 5.547910768655129e-05, 8.314833394251764e-06, 8.024654562177602e-06, 9.283597319154069e-05, 7.963246389408596e-06, 0.00011805116810137406, 0.4926674962043762, 0.000634836673270911, 0.00017357290198560804, 0.002435597823932767, 0.0035501786042004824, 0.002023017033934593, 0.003990857861936092, 0.0014111888594925404, 0.4926604628562927], [0.0002528421755414456, 8.991628419607878e-05, 0.00015268342394847423, 2.1105477571836673e-05, 3.551561894710176e-05, 0.0003127124800812453, 3.562685378710739e-05, 0.0001280292053706944, 0.4921146035194397, 0.0008119418052956462, 0.0004944773390889168, 0.0021628658287227154, 0.004797687754034996, 0.0020084420684725046, 0.0033324521500617266, 0.0011478214291855693, 0.4921012222766876], [0.000621431099716574, 0.00014864774129819125, 0.00023478243383578956, 4.270831777830608e-05, 5.6734777899691835e-05, 0.00041610802873037755, 4.376408105599694e-05, 0.00043217334314249456, 0.4898018538951874, 0.002745814388617873, 0.001155576785095036, 0.004421143792569637, 0.003324240678921342, 0.002318187616765499, 0.0024319584481418133, 0.0020098050590604544, 0.48979508876800537], [0.002523797797039151, 0.0001109023141907528, 0.00031307057361118495, 0.00011027910659322515, 9.871073416434228e-05, 0.001450195093639195, 0.00010195697541348636, 0.00030163241899572313, 0.4784378111362457, 0.0023756709415465593, 0.0007601972320117056, 0.005252471659332514, 0.0028385103214532137, 0.008432993665337563, 0.012459885329008102, 0.0060107228346168995, 0.478421151638031], [0.037801533937454224, 0.04057252034544945, 0.056319110095500946, 0.04955459013581276, 0.014272769913077354, 0.03410734981298447, 0.02596845105290413, 0.03067133203148842, 0.0691823959350586, 0.16030064225196838, 0.08772062510251999, 0.02232799492776394, 0.07456885278224945, 0.028874382376670837, 0.07091954350471497, 0.12765587866306305, 0.06918206810951233]], [[0.02594617009162903, 0.01230535376816988, 0.04566877335309982, 0.014121030457317829, 0.0072386907413601875, 0.005428669974207878, 0.0038478251080960035, 0.010239314287900925, 0.23248372972011566, 0.11886419355869293, 0.07697320729494095, 0.037396643310785294, 0.04120451584458351, 0.01877675950527191, 0.027979085221886635, 0.08904127776622772, 0.23248472809791565], [0.011459922417998314, 0.05789390951395035, 0.01801096275448799, 0.04013005644083023, 0.02041839435696602, 0.01897086761891842, 0.021832888945937157, 0.024326378479599953, 0.38134026527404785, 0.008276933804154396, 0.005633383523672819, 0.002469992032274604, 0.0014278696617111564, 0.0008420258527621627, 0.0006289502489380538, 0.004989249631762505, 0.38134798407554626], [0.018261579796671867, 0.09114214777946472, 0.16401386260986328, 0.0360700897872448, 0.012661230750381947, 0.016071118414402008, 0.017078490927815437, 0.04107184335589409, 0.2622493505477905, 0.023134000599384308, 0.023985888808965683, 0.0041265543550252914, 0.005320061929523945, 0.004773941356688738, 0.005675092339515686, 0.01211258489638567, 0.26225224137306213], [0.026431027799844742, 0.07835447788238525, 0.051074057817459106, 0.050566960126161575, 0.009912065230309963, 0.015570848248898983, 0.012985849753022194, 0.028361964970827103, 0.34938952326774597, 0.006874042097479105, 0.00850733183324337, 0.0013631429756060243, 0.0005309132393449545, 0.001485362066887319, 0.0011285279178991914, 0.008078392595052719, 0.349385529756546], [0.005289734341204166, 0.015012618154287338, 0.016920097172260284, 0.010304713621735573, 0.009516424499452114, 0.015370819717645645, 0.008242348209023476, 0.00926060788333416, 0.4524623155593872, 0.002068092580884695, 0.0010510390857234597, 0.0007059122435748577, 0.0002391476446064189, 0.00038428109837695956, 0.00021039703278802335, 0.0005056892987340689, 0.45245563983917236], [0.0011316104792058468, 0.003120411653071642, 0.007049898616969585, 0.001835630158893764, 0.00404246523976326, 0.011740568093955517, 0.0031257460359483957, 0.0027404569555073977, 0.4807789921760559, 0.001110286801122129, 0.0004653401265386492, 0.00046777038369327784, 0.0001648969337111339, 0.0007357471622526646, 0.00046614118036814034, 0.00025472865672782063, 0.4807691276073456], [0.0010782276513054967, 0.0035341789480298758, 0.003947503864765167, 0.0023307425435632467, 0.003992586396634579, 0.0067064277827739716, 0.0033561058808118105, 0.0038338955491781235, 0.48468706011772156, 0.0007214153883978724, 0.00022754530073143542, 0.00034482477349229157, 3.258667857153341e-05, 0.00019096818869002163, 0.00017288138042204082, 0.00016022541967686266, 0.4846828877925873], [0.0256809014827013, 0.054203908890485764, 0.0433545745909214, 0.039166368544101715, 0.02749815210700035, 0.025256246328353882, 0.029343988746404648, 0.10214278101921082, 0.284392774105072, 0.03327256813645363, 0.01417594775557518, 0.005234787706285715, 0.002139626070857048, 0.003898981725797057, 0.005336273927241564, 0.020508065819740295, 0.2843939960002899], [0.06152637302875519, 0.08685845136642456, 0.07395375519990921, 0.10133867710828781, 0.05650842934846878, 0.07045254856348038, 0.05788238346576691, 0.08833659440279007, 0.036645665764808655, 0.06538642942905426, 0.0700591653585434, 0.033106256276369095, 0.03278014063835144, 0.02277837134897709, 0.035660289227962494, 0.0700807124376297, 0.03664569929242134], [0.004676518030464649, 0.0031360462307929993, 0.00363340275362134, 0.003114111255854368, 0.0012234658934175968, 0.0020019891671836376, 0.0012811042834073305, 0.001659985980950296, 0.46609458327293396, 0.017725354060530663, 0.01013166457414627, 0.003987094387412071, 0.0026930836029350758, 0.004663575440645218, 0.0029930698219686747, 0.0048863692209124565, 0.4660985767841339], [0.01576705276966095, 0.008137473836541176, 0.00823168084025383, 0.002878444269299507, 0.001097788685001433, 0.0012301240349188447, 0.0005687138182111084, 0.002053564880043268, 0.4531867504119873, 0.009104028344154358, 0.021802496165037155, 0.007647151127457619, 0.004888709168881178, 0.003563282545655966, 0.0020407040137797594, 0.004628247581422329, 0.45317378640174866], [0.00821777805685997, 0.0020071391481906176, 0.003210144117474556, 0.0022897415328770876, 0.0020597458351403475, 0.0018156185979023576, 0.0007164882845245302, 0.0025200650561600924, 0.4308318793773651, 0.016442222520709038, 0.029273027554154396, 0.02130606211721897, 0.013162292540073395, 0.012006673961877823, 0.014473862946033478, 0.008844751864671707, 0.4308224320411682], [0.003607742488384247, 0.002082864986732602, 0.002438334282487631, 0.0006609036354348063, 0.00048501777928322554, 0.0006028188508935273, 0.00021439116972032934, 0.0012559863971546292, 0.4611201286315918, 0.024737287312746048, 0.011383121833205223, 0.009255729615688324, 0.007210845127701759, 0.005084443371742964, 0.0037273671478033066, 0.005014441441744566, 0.4611183702945709], [0.0006512915715575218, 0.0003765949804801494, 0.001882007229141891, 0.00011552838259376585, 7.678028487134725e-05, 0.00023868531570769846, 4.377133154775947e-05, 0.00032607774483039975, 0.4857759475708008, 0.0016089871060103178, 0.004354927688837051, 0.0013350502122193575, 0.001293679466471076, 0.009053926914930344, 0.0057799434289336205, 0.0013069482520222664, 0.48577964305877686], [0.001743889064528048, 0.0008932267082855105, 0.0020098548848181963, 0.0003422063891775906, 0.00016670221521053463, 0.0004903741646558046, 0.00020190900249872357, 0.0013927064137533307, 0.47526586055755615, 0.006756106857210398, 0.005365082528442144, 0.004125990439206362, 0.0025008816737681627, 0.009753044694662094, 0.010474382899701595, 0.0032557386439293623, 0.47526201605796814], [0.006617892999202013, 0.012943742796778679, 0.010595467872917652, 0.00929759070277214, 0.0028671440668404102, 0.0015740265371277928, 0.0010232983622699976, 0.0028833618853241205, 0.40054240822792053, 0.04197985678911209, 0.05761570855975151, 0.012360600754618645, 0.005970218684524298, 0.008420190773904324, 0.010422347113490105, 0.014354380778968334, 0.40053170919418335], [0.06152573227882385, 0.08685911446809769, 0.07395310699939728, 0.1013396754860878, 0.056508619338274, 0.07045254111289978, 0.05788153409957886, 0.08833646029233932, 0.036645811051130295, 0.06538806855678558, 0.07005905359983444, 0.03310585767030716, 0.03277968615293503, 0.022778529673814774, 0.03566054627299309, 0.07007981836795807, 0.03664584457874298]]]], \\\"left_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\", \\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\", \\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"]}, {\\\"name\\\": \\\"Sentence A -\\u003e Sentence A\\\", \\\"attn\\\": [[[[0.004888075869530439, 0.007019796874374151, 0.0036452263593673706, 0.0029327375814318657, 0.0015320930397138, 0.004241756163537502, 0.004263122100383043, 0.008528415113687515, 0.1241171583533287], [0.014576531015336514, 0.010581646114587784, 0.11558718979358673, 0.029583653435111046, 0.1619575172662735, 0.1749114692211151, 0.0751379206776619, 0.21962450444698334, 0.012747607193887234], [0.0931827500462532, 0.030849847942590714, 0.21771998703479767, 0.008905305527150631, 0.01596658118069172, 0.10586155205965042, 0.014499418437480927, 0.15799841284751892, 0.1769568771123886], [0.014329124242067337, 0.026282774284482002, 0.12526121735572815, 0.01783166266977787, 0.16241025924682617, 0.19412513077259064, 0.09234662353992462, 0.18385455012321472, 0.012565611861646175], [0.041057515889406204, 0.05136800557374954, 0.11638717353343964, 0.04390865936875343, 0.204985111951828, 0.20272210240364075, 0.05150476470589638, 0.07285190373659134, 0.02087394706904888], [0.1666662096977234, 0.02896984852850437, 0.15163454413414001, 0.01802794449031353, 0.04654997959733009, 0.2804989814758301, 0.02848292514681816, 0.017328821122646332, 0.035481903702020645], [0.020301301032304764, 0.03030841425061226, 0.146507129073143, 0.03279529884457588, 0.1822977364063263, 0.14855298399925232, 0.04740176722407341, 0.11926399916410446, 0.0055979457683861256], [0.1180451288819313, 0.049101572483778, 0.06027330830693245, 0.006074968259781599, 0.10929204523563385, 0.04498586431145668, 0.00842977873980999, 0.3069465160369873, 0.06189660355448723], [2.1634889435517834e-06, 2.7986959594272776e-07, 6.047267930853195e-08, 7.992905892706403e-08, 2.950351074559876e-09, 6.677720598702308e-09, 3.565340378486326e-08, 1.6712645489747047e-08, 0.0002647333894856274]], [[0.4522051513195038, 0.07623647898435593, 0.027919242158532143, 0.035999845713377, 0.08349619060754776, 0.019427096471190453, 0.05187578126788139, 0.027510447427630424, 0.01445896178483963], [0.22317545115947723, 0.06382100284099579, 0.05888044089078903, 0.049211613833904266, 0.13121356070041656, 0.06643986701965332, 0.0620323047041893, 0.10699689388275146, 0.0343746654689312], [0.06794585287570953, 0.1672438085079193, 0.22915023565292358, 0.024345679208636284, 0.16521067917346954, 0.09566453844308853, 0.03178289905190468, 0.049769431352615356, 0.015491669997572899], [0.0019585308618843555, 0.7207427620887756, 0.07722131162881851, 0.004655138123780489, 0.03747379034757614, 0.05254172161221504, 0.008140715770423412, 0.016761539503932, 0.012247414328157902], [0.025915242731571198, 0.026313217356801033, 0.1458832025527954, 0.2851893901824951, 0.23177862167358398, 0.12325704842805862, 0.053885672241449356, 0.04005128890275955, 0.008830639533698559], [0.06897823512554169, 0.03946160525083542, 0.40949440002441406, 0.02331404760479927, 0.20725378394126892, 0.07915252447128296, 0.06029766425490379, 0.046219512820243835, 0.007097764406353235], [0.11204667389392853, 0.002064715139567852, 0.07884853333234787, 0.0231044702231884, 0.4335665702819824, 0.22349999845027924, 0.015278663486242294, 0.021423274651169777, 0.00486252224072814], [0.045064717531204224, 0.061848171055316925, 0.06443827599287033, 0.049729522317647934, 0.2260524332523346, 0.07010719925165176, 0.17648132145404816, 0.160780131816864, 0.032271843403577805], [0.003729620948433876, 0.019178112968802452, 0.008320917375385761, 0.003610414220020175, 0.01731022074818611, 0.019468005746603012, 0.015363910235464573, 0.7111199498176575, 0.07527204602956772]], [[0.07207582890987396, 0.030081165954470634, 0.0698365718126297, 0.05415603145956993, 0.040005918592214584, 0.04452523961663246, 0.05477667227387428, 0.07413895428180695, 0.020463814958930016], [0.02388051338493824, 0.09712941199541092, 0.13507598638534546, 0.12161228060722351, 0.07565468549728394, 0.09102176129817963, 0.03974504768848419, 0.07507934421300888, 0.12584571540355682], [0.14521171152591705, 0.1255667805671692, 0.007684384007006884, 0.03585522249341011, 0.09271423518657684, 0.021124502643942833, 0.05305418372154236, 0.11939787119626999, 0.05426167696714401], [0.021534226834774017, 0.16972415149211884, 0.04721628129482269, 0.06455666571855545, 0.12413521111011505, 0.09946053475141525, 0.02451961673796177, 0.05252651125192642, 0.1565346121788025], [0.18212783336639404, 0.05782119929790497, 0.16624435782432556, 0.061060693114995956, 0.025745224207639694, 0.05096830800175667, 0.09386604279279709, 0.04790102317929268, 0.09353011846542358], [0.2883266806602478, 0.020761892199516296, 0.045150283724069595, 0.012247641570866108, 0.0693461000919342, 0.0051894644275307655, 0.08609198778867722, 0.08481674641370773, 0.08602578192949295], [0.07446767389774323, 0.1230199858546257, 0.10566249489784241, 0.06260287761688232, 0.041301827877759933, 0.0890895202755928, 0.05263271555304527, 0.08570503443479538, 0.0857565850019455], [0.14375796914100647, 0.12766575813293457, 0.07687808573246002, 0.06146235391497612, 0.025420017540454865, 0.09101464599370956, 0.08417452126741409, 0.05357314273715019, 0.01134533155709505], [0.040774792432785034, 0.13950109481811523, 0.02118922770023346, 0.0640266165137291, 0.044749144464731216, 0.03973620384931564, 0.061510711908340454, 0.08475141227245331, 0.014940092340111732]], [[0.03515833616256714, 0.0798664465546608, 0.01630859263241291, 0.14789149165153503, 0.08934218436479568, 0.03217592090368271, 0.06830880045890808, 0.030619218945503235, 0.17491836845874786], [0.00906633771955967, 0.007233552634716034, 0.0071291569620370865, 0.0901627242565155, 0.08500444144010544, 0.03731818124651909, 0.017713570967316628, 0.04864385724067688, 0.6713555455207825], [0.02119581773877144, 0.013936267234385014, 0.18366488814353943, 0.04073388874530792, 0.14117489755153656, 0.29261794686317444, 0.022417636588215828, 0.19487611949443817, 0.05600067228078842], [0.019561290740966797, 0.030619964003562927, 0.024989742785692215, 0.007378019858151674, 0.15077579021453857, 0.031912967562675476, 0.0557866245508194, 0.06938115507364273, 0.5711490511894226], [0.014949947595596313, 0.0364830456674099, 0.10173313319683075, 0.06478868424892426, 0.11181814223527908, 0.2349889725446701, 0.02512570470571518, 0.2544487416744232, 0.06896540522575378], [0.07112161815166473, 0.09935048967599869, 0.17491373419761658, 0.10266263037919998, 0.2617430090904236, 0.09294117987155914, 0.03491080179810524, 0.07117832452058792, 0.04160849004983902], [0.006367841735482216, 0.021246016025543213, 0.08985381573438644, 0.3080625832080841, 0.2526113986968994, 0.11120738834142685, 0.028941325843334198, 0.09924904257059097, 0.06420885026454926], [0.02697315625846386, 0.04311920329928398, 0.1649632751941681, 0.08712518215179443, 0.10151567310094833, 0.09761759638786316, 0.11727719753980637, 0.11513151228427887, 0.21653573215007782], [0.002932084957137704, 0.08548032492399216, 0.015188615769147873, 0.32496634125709534, 0.06970572471618652, 0.007528556976467371, 0.06105625256896019, 0.04819296672940254, 0.3530505299568176]], [[0.008703794330358505, 0.028337936848402023, 0.036497388035058975, 0.3179890811443329, 0.0342254638671875, 0.014647513628005981, 0.15658988058567047, 0.07963840663433075, 0.0504162460565567], [0.003257530275732279, 0.014143377542495728, 0.030460435897111893, 0.5566112399101257, 0.0674440786242485, 0.02056693658232689, 0.02118591219186783, 0.08736512809991837, 0.12027458846569061], [0.019974956288933754, 0.011629141867160797, 0.07035370171070099, 0.02859698049724102, 0.08074373006820679, 0.13332095742225647, 0.06927911937236786, 0.46246176958084106, 0.04819855839014053], [0.014392857439815998, 0.6814941763877869, 0.024798402562737465, 0.00337932538241148, 0.053651124238967896, 0.0072357975877821445, 0.007232386618852615, 0.022842107340693474, 0.08711760491132736], [0.027468478307127953, 0.10789855569601059, 0.19367998838424683, 0.06358932703733444, 0.04233098775148392, 0.23926369845867157, 0.005481854546815157, 0.04740671068429947, 0.06732773035764694], [0.02020617201924324, 0.02203536406159401, 0.033887434750795364, 0.050584208220243454, 0.5214219093322754, 0.0702914372086525, 0.042194753885269165, 0.10264209657907486, 0.07326971739530563], [0.025835225358605385, 0.024546880275011063, 0.06501937657594681, 0.17729876935482025, 0.23874863982200623, 0.12987853586673737, 0.0258779339492321, 0.11599919945001602, 0.06498986482620239], [0.012444564141333103, 0.02419978938996792, 0.09062561392784119, 0.04456598684191704, 0.09836862236261368, 0.03768983855843544, 0.04686807841062546, 0.30903956294059753, 0.15584996342658997], [0.004296176601201296, 0.025899868458509445, 0.015311871655285358, 0.1919618397951126, 0.04361548274755478, 0.030678419396281242, 0.03896272927522659, 0.5280066132545471, 0.06130514666438103]], [[0.3151586353778839, 0.1100153848528862, 0.013261418789625168, 0.007182653062045574, 0.006734122522175312, 0.015668433159589767, 0.026092085987329483, 0.012030692771077156, 0.05885550379753113], [0.12868036329746246, 0.05020623654127121, 0.04352681711316109, 0.044267669320106506, 0.06922342628240585, 0.0586404874920845, 0.11787914484739304, 0.21278542280197144, 0.011017017997801304], [0.014511588029563427, 0.03831863030791283, 0.3213781714439392, 0.057754017412662506, 0.041259948164224625, 0.18111389875411987, 0.022478805854916573, 0.035277530550956726, 0.02839508280158043], [0.09856840968132019, 0.03302838280797005, 0.05710271745920181, 0.07177997380495071, 0.08965713530778885, 0.07356850057840347, 0.059109900146722794, 0.1575271189212799, 0.041145049035549164], [0.13763386011123657, 0.023727694526314735, 0.04992688447237015, 0.0822889655828476, 0.04870613291859627, 0.03208567947149277, 0.21788309514522552, 0.10060948133468628, 0.04463799297809601], [0.06399432569742203, 0.09939510375261307, 0.04323585331439972, 0.23998641967773438, 0.039040617644786835, 0.031802985817193985, 0.07835780084133148, 0.03297166898846626, 0.05566003546118736], [0.10354834794998169, 0.1194508746266365, 0.023394186049699783, 0.15901106595993042, 0.05579296872019768, 0.01770668849349022, 0.1913813352584839, 0.07892581075429916, 0.034141018986701965], [0.004442719276994467, 0.03570292517542839, 0.20076386630535126, 0.18386435508728027, 0.09603149443864822, 0.08761825412511826, 0.06705799698829651, 0.11942239105701447, 0.0375593900680542], [0.011864487081766129, 0.11439939588308334, 0.0051422445103526115, 0.014265062287449837, 0.02085231989622116, 0.0035430071875452995, 0.011535421945154667, 0.0012360550463199615, 0.7664823532104492]], [[0.05366489663720131, 0.013326861895620823, 0.035705629736185074, 0.017725413665175438, 0.021139897406101227, 0.016126224771142006, 0.03905770927667618, 0.08667251467704773, 0.03724033012986183], [0.10719181597232819, 0.06171116232872009, 0.3013807535171509, 0.03794829919934273, 0.05507837235927582, 0.07111842930316925, 0.06489422917366028, 0.2455788105726242, 0.010625060647726059], [0.2356697916984558, 0.10945609211921692, 0.3206360936164856, 0.03839602693915367, 0.03337891027331352, 0.06335017085075378, 0.05203716456890106, 0.12023136764764786, 0.007034218404442072], [0.008345738984644413, 0.5164564251899719, 0.20191191136837006, 0.05351008102297783, 0.06803572177886963, 0.05143987759947777, 0.01573142223060131, 0.034689582884311676, 0.007977493107318878], [0.06676739454269409, 0.27349960803985596, 0.4561753273010254, 0.055715933442115784, 0.09682420641183853, 0.026370450854301453, 0.007020842283964157, 0.008348268456757069, 0.0007414669962599874], [0.1661752313375473, 0.0685761496424675, 0.4658031165599823, 0.07675064355134964, 0.13027821481227875, 0.03830696642398834, 0.014079157263040543, 0.02513439953327179, 0.0010443981736898422], [0.01189227681607008, 0.03440048173069954, 0.12620249390602112, 0.06225048750638962, 0.5502164363861084, 0.17143751680850983, 0.016833234578371048, 0.008786951191723347, 0.001322822761721909], [0.0033392421901226044, 0.014496413059532642, 0.030030017718672752, 0.1475164294242859, 0.3980634808540344, 0.047243718057870865, 0.04660404473543167, 0.26027533411979675, 0.009565036743879318], [0.007030535489320755, 0.030325111001729965, 0.023130590096116066, 0.016618795692920685, 0.1984899491071701, 0.12919509410858154, 0.20506642758846283, 0.38063156604766846, 0.00394117645919323]], [[0.022592751309275627, 0.041242972016334534, 0.06407269835472107, 0.041319869458675385, 0.06316812336444855, 0.12288127094507217, 0.03249724954366684, 0.01767602376639843, 0.03114771470427513], [0.0024522601161152124, 0.05789865553379059, 0.2315445989370346, 0.304757684469223, 0.18794825673103333, 0.05799189209938049, 0.048881154507398605, 0.034303195774555206, 0.052871618419885635], [0.07386548072099686, 0.07841330021619797, 0.05245635658502579, 0.0539100207388401, 0.2018413543701172, 0.19102394580841064, 0.0738258808851242, 0.1676979660987854, 0.03512115776538849], [0.01166706345975399, 0.033831946551799774, 0.09444530308246613, 0.031177956610918045, 0.2863520681858063, 0.2343894988298416, 0.08405474573373795, 0.1434207260608673, 0.05359455198049545], [0.003358527086675167, 0.033571645617485046, 0.09078340977430344, 0.024664288386702538, 0.14903205633163452, 0.29403719305992126, 0.11627621948719025, 0.2077040821313858, 0.04962916672229767], [0.10242671519517899, 0.01428561843931675, 0.27957308292388916, 0.02694641798734665, 0.02779257670044899, 0.04037510231137276, 0.05366629734635353, 0.37752828001976013, 0.03707906976342201], [0.008889823220670223, 0.044925156980752945, 0.15463511645793915, 0.025073954835534096, 0.07735048979520798, 0.23808468878269196, 0.03327044099569321, 0.24279668927192688, 0.0773877203464508], [0.00512270350009203, 0.02222408540546894, 0.013582033105194569, 0.056794486939907074, 0.018675442785024643, 0.021052811294794083, 0.03266278654336929, 0.5071450471878052, 0.25193968415260315], [0.0005366563564166427, 0.010071475990116596, 0.02656141296029091, 0.013414682820439339, 0.014030099846422672, 0.012698138132691383, 0.021791649982333183, 0.8589319586753845, 0.009669174440205097]], [[0.025229431688785553, 0.1906249225139618, 0.018277404829859734, 0.011615282855927944, 0.029721707105636597, 0.008722244761884212, 0.07310659438371658, 0.10010955482721329, 0.05713200196623802], [0.012608767487108707, 0.12484779208898544, 0.026645516976714134, 0.03025100752711296, 0.09148713201284409, 0.022706059738993645, 0.049812521785497665, 0.09678985923528671, 0.2959100902080536], [0.1415875405073166, 0.03529421240091324, 0.22378429770469666, 0.06198011711239815, 0.1561271846294403, 0.12882360816001892, 0.0391521230340004, 0.0539872832596302, 0.0032149699982255697], [0.017227372154593468, 0.10166235268115997, 0.03571029007434845, 0.03298285976052284, 0.12852007150650024, 0.04406985640525818, 0.09933997690677643, 0.07160454988479614, 0.2834462821483612], [0.028876036405563354, 0.09424487501382828, 0.04294281452894211, 0.041587136685848236, 0.10838973522186279, 0.17510558664798737, 0.08401867747306824, 0.14879046380519867, 0.08715034276247025], [0.07790114730596542, 0.037476781755685806, 0.04905135557055473, 0.00814921222627163, 0.26637306809425354, 0.12962016463279724, 0.09078303724527359, 0.05145665630698204, 0.0279252827167511], [0.08221862465143204, 0.11170019954442978, 0.04120054468512535, 0.045744847506284714, 0.09016142785549164, 0.04958293214440346, 0.11624215543270111, 0.05828208848834038, 0.16475266218185425], [0.13198214769363403, 0.08994144201278687, 0.22639891505241394, 0.11927301436662674, 0.11254222691059113, 0.1049356609582901, 0.0779351145029068, 0.043838679790496826, 0.0007090592989698052], [0.3768383860588074, 0.12330149859189987, 0.02853669784963131, 0.03096090629696846, 0.04759572446346283, 0.059986863285303116, 0.1724219024181366, 0.07827011495828629, 0.007937856018543243]], [[0.5297853946685791, 0.028465336188673973, 0.02506268583238125, 0.029630254954099655, 0.04766254499554634, 0.01360179390758276, 0.03147514909505844, 0.02458438090980053, 0.04230737313628197], [0.17063994705677032, 0.05888991057872772, 0.5528180599212646, 0.05428105592727661, 0.025899801403284073, 0.001957215601578355, 0.04174285754561424, 0.010018263012170792, 0.037448253482580185], [0.8909273147583008, 0.08032894879579544, 0.0025539323687553406, 0.010308152996003628, 0.0017845286056399345, 0.00020814086019527167, 0.00026543892454355955, 0.001113833743147552, 0.004582714289426804], [0.10857869684696198, 0.01627052016556263, 0.17978540062904358, 0.015306293964385986, 0.5894787311553955, 0.0069667198695242405, 0.01477954350411892, 0.0030409551691263914, 0.026412608101963997], [0.33767518401145935, 0.04650860279798508, 0.041055794805288315, 0.17031604051589966, 0.07923808693885803, 0.15906578302383423, 0.03530227020382881, 0.04126405343413353, 0.004364499822258949], [0.5636687278747559, 0.0009270262089557946, 0.021299337968230247, 0.0045332107692956924, 0.07245277613401413, 0.00034146313555538654, 0.3119720220565796, 0.003071835031732917, 0.006842904724180698], [0.0034285683650523424, 0.0004321909218560904, 1.4425149856833741e-05, 0.0006366359302774072, 0.0007624393911100924, 0.9838820695877075, 7.799694139976054e-05, 0.0074768359772861, 0.0011207726784050465], [0.029951950535178185, 0.0008752135909162462, 0.0002883475390262902, 0.0006025819457136095, 0.008834654465317726, 0.0030747363343834877, 0.06330305337905884, 0.5941256284713745, 0.28267496824264526], [0.7789714932441711, 0.00022499822080135345, 0.00016182770195882767, 0.0001228098408319056, 5.0754322728607804e-05, 0.00016056757885962725, 0.001908572157844901, 0.16523577272891998, 0.03237298130989075]], [[0.0028138835914433002, 0.14595000445842743, 0.004342307336628437, 0.007798220496624708, 0.47588446736335754, 0.005292847286909819, 0.01191490888595581, 0.0007258609985001385, 0.012314080260694027], [0.30839553475379944, 0.02442958578467369, 0.04210550710558891, 0.12423135340213776, 0.024058213457465172, 0.13344943523406982, 0.07468478381633759, 0.07993800938129425, 0.07432860136032104], [0.007676139939576387, 0.0639035552740097, 0.09770851582288742, 0.025784390047192574, 0.015926800668239594, 0.19102120399475098, 0.023956621065735817, 0.22462424635887146, 0.08848381042480469], [0.562584638595581, 0.03440006449818611, 0.055883146822452545, 0.012190770357847214, 0.04682030528783798, 0.06307457387447357, 0.012469426728785038, 0.07332248985767365, 0.07798133790493011], [0.18359829485416412, 0.038653552532196045, 0.15460149943828583, 0.011411380022764206, 0.013630617409944534, 0.18495121598243713, 0.02157178893685341, 0.12013169378042221, 0.1598767638206482], [0.13900348544120789, 0.08148740977048874, 0.23679934442043304, 0.02080403082072735, 0.015821468085050583, 0.09797590970993042, 0.07375107705593109, 0.011617355048656464, 0.10100888460874557], [0.09020019322633743, 0.03774154558777809, 0.1005101203918457, 0.03667706623673439, 0.024326425045728683, 0.4774423837661743, 0.001731462893076241, 0.028049172833561897, 0.09966190904378891], [0.030797069892287254, 0.07728295028209686, 0.06687948852777481, 0.12017962336540222, 0.02633104845881462, 0.07644528150558472, 0.138240247964859, 0.02326146326959133, 0.14521564543247223], [0.8316414952278137, 0.049767155200242996, 0.0029625813476741314, 0.014293511398136616, 0.016213009133934975, 0.005573486443608999, 0.009432957507669926, 0.0010794304544106126, 0.04657946154475212]], [[4.6997854951769114e-05, 0.0006311151664704084, 6.937955186003819e-05, 0.0009768882300704718, 0.00014576448302250355, 9.334934293292463e-05, 0.000660013291053474, 2.3489619707106613e-05, 0.29161715507507324], [0.03953053429722786, 0.04480615258216858, 0.17624598741531372, 0.3320455849170685, 0.18302905559539795, 0.11669808626174927, 0.0127596789970994, 0.03359492868185043, 0.015715327113866806], [0.056025855243206024, 0.017212849110364914, 0.3687164783477783, 0.01077384501695633, 0.07087904214859009, 0.3237742483615875, 0.03511696681380272, 0.08068202435970306, 0.008143906481564045], [0.015551937744021416, 0.03036537393927574, 0.06994624435901642, 0.05071200802922249, 0.2754291594028473, 0.4450528025627136, 0.016826530918478966, 0.026995129883289337, 0.006157469004392624], [0.048887137323617935, 0.07722077518701553, 0.09643282741308212, 0.04219973459839821, 0.23919518291950226, 0.318155974149704, 0.059559255838394165, 0.07164259999990463, 0.0015539806336164474], [0.010238614864647388, 0.02784811519086361, 0.3302167057991028, 0.011526755057275295, 0.11658567935228348, 0.39849233627319336, 0.032393720000982285, 0.03154754638671875, 0.0013876929879188538], [0.01862824521958828, 0.07213407754898071, 0.1532040387392044, 0.01613878458738327, 0.2503899931907654, 0.2708008289337158, 0.061421703547239304, 0.028818242251873016, 0.001575593021698296], [0.0953814759850502, 0.12914900481700897, 0.015792902559041977, 0.06117771565914154, 0.03243299946188927, 0.022912047803401947, 0.10839948058128357, 0.437074214220047, 0.019374022260308266], [0.046842750161886215, 0.11623495817184448, 0.063980333507061, 0.04431002587080002, 0.1427324116230011, 0.0582481324672699, 0.0772114247083664, 0.0188564732670784, 0.011267701163887978]]], [[[0.6799723505973816, 0.02714240550994873, 0.00449505215510726, 0.009819257073104382, 0.001969903474673629, 0.0013555795885622501, 0.004159142728894949, 0.025402676314115524, 0.10693111270666122], [0.23385626077651978, 0.1443607360124588, 0.034189365804195404, 0.007658595219254494, 0.0007355501875281334, 0.0038644634187221527, 0.0035510926973074675, 0.019739340990781784, 0.43852442502975464], [0.6984356045722961, 0.16992157697677612, 0.02908949740231037, 0.007290296722203493, 0.0009568631066940725, 0.0018246949184685946, 0.004464342724531889, 0.05042754486203194, 0.014225407503545284], [0.25565215945243835, 0.15518487989902496, 0.03777023404836655, 0.024677015841007233, 0.013732791878283024, 0.011438226327300072, 0.02491465024650097, 0.23803526163101196, 0.0382743664085865], [0.06467265635728836, 0.466308057308197, 0.023762144148349762, 0.038105469197034836, 0.030488623306155205, 0.007472719997167587, 0.04738154262304306, 0.19471128284931183, 0.03719029948115349], [0.3908434212207794, 0.24928702414035797, 0.0104661975055933, 0.07785845547914505, 0.019612586125731468, 0.002427377039566636, 0.06945327669382095, 0.07400713860988617, 0.046541303396224976], [0.24660643935203552, 0.07539991289377213, 0.028458595275878906, 0.043353334069252014, 0.0176022257655859, 0.007150956429541111, 0.021256957203149796, 0.2747271656990051, 0.12031912803649902], [0.11268492043018341, 0.13597719371318817, 0.004825045820325613, 0.1361781507730484, 0.01413441076874733, 0.017867518588900566, 0.024349015206098557, 0.15218032896518707, 0.20350806415081024], [0.8579596877098083, 0.05068559572100639, 0.0011143614538013935, 0.017629515379667282, 0.0016797656426206231, 0.0018244433449581265, 0.003344691824167967, 0.03524310514330864, 0.012730668298900127]], [[0.7820881605148315, 0.04792488366365433, 0.014661292545497417, 0.016982680186629295, 0.00801462959498167, 0.01270146295428276, 0.0072418879717588425, 0.0037491123657673597, 0.05504460260272026], [0.9579739570617676, 0.0325721837580204, 0.004223098047077656, 0.0007561913807876408, 0.0002811573795042932, 0.0010076769394800067, 0.0004763439064845443, 0.00012394772784318775, 0.0019999793730676174], [0.25807806849479675, 0.7257601618766785, 0.0036532790400087833, 0.002803741255775094, 0.000127884850371629, 0.0001944909308804199, 0.00010639076208462939, 9.574835712555796e-05, 0.007093087304383516], [0.5073351263999939, 0.37685626745224, 0.09392479062080383, 0.005651452578604221, 0.0036995012778788805, 0.0016434623394161463, 4.996777352062054e-05, 2.4235627279267646e-05, 0.006225328426808119], [0.7279987931251526, 0.03613729029893875, 0.030276218429207802, 0.16253936290740967, 0.023364052176475525, 0.009557483717799187, 0.000169901002664119, 9.23241168493405e-06, 0.0019033962162211537], [0.8503820896148682, 0.004731119144707918, 0.0057678669691085815, 0.05592240020632744, 0.06056181341409683, 0.017557615414261818, 0.0017805345123633742, 5.563851664192043e-05, 0.0012225237442180514], [0.033895328640937805, 0.0010555146727710962, 0.0030241620261222124, 0.062069300562143326, 0.20510265231132507, 0.6801595091819763, 0.004191290121525526, 0.000631717499345541, 0.0039703440852463245], [0.05470624938607216, 0.0019496014574542642, 0.0010779440635815263, 0.012869438156485558, 0.06390991806983948, 0.5245635509490967, 0.24727720022201538, 0.009119056165218353, 0.06429312378168106], [0.8222008943557739, 0.0036109539214521646, 0.00017287030641455203, 0.0003112527774646878, 0.0014039340894669294, 0.0442749559879303, 0.07270245999097824, 0.00214636349119246, 0.05206447094678879]], [[0.9978406429290771, 0.00011925151920877397, 0.0016092193545773625, 0.00013301437138579786, 2.2027106751920655e-05, 5.232667535892688e-05, 2.5703395294840448e-05, 4.942137820762582e-05, 8.158062883012462e-06], [8.979030098998919e-06, 3.896623912424957e-09, 5.4202651256218815e-09, 2.543145442770057e-14, 1.101031903995818e-13, 2.0076509085840272e-13, 2.3550812341954774e-11, 2.934307657964652e-11, 0.9934830069541931], [4.1906554315573885e-07, 0.9999994039535522, 7.34803551338814e-09, 1.1345141714969031e-08, 3.385365035304334e-17, 6.2080984409716884e-15, 3.1602278138272037e-18, 3.0666432934700616e-12, 1.1275758105000477e-09], [5.224077312959707e-07, 9.750529272878339e-09, 0.9999995231628418, 1.1000453881138128e-08, 2.6140032360899568e-09, 2.9892975907752455e-16, 2.1034500204575069e-16, 2.1213622526628732e-17, 1.2590438414061822e-10], [4.6030545490793884e-05, 2.293247462148429e-06, 0.00037161048385314643, 0.9995773434638977, 2.250132183689857e-06, 4.6300823441924877e-07, 5.316659579699345e-16, 2.3741115478159887e-14, 7.435826428842053e-16], [0.018579285591840744, 4.151894539977663e-12, 6.140186451375484e-05, 9.829395821725484e-06, 0.9812160134315491, 2.487194251443725e-05, 0.0001041195064317435, 5.1184369243006955e-11, 3.86299880972274e-09], [0.00012907169002573937, 3.5032698245704257e-15, 1.1614941322103667e-13, 3.358269751174703e-08, 1.654805998896336e-07, 0.9998706579208374, 5.506277744871113e-08, 4.730205205305538e-08, 2.6334917728987465e-17], [7.92926311987685e-06, 4.2648854283247606e-15, 3.9308125846090544e-14, 1.0462367158335564e-14, 2.5681021753598543e-08, 6.90549359205761e-06, 0.999983549118042, 9.731803629620117e-07, 5.952467745373724e-07], [0.0004670645284932107, 3.789615732330276e-09, 3.1329287580005027e-13, 4.771542929109425e-14, 2.4122488251012873e-15, 1.0435915100970306e-05, 8.471471664961427e-05, 0.9993988275527954, 3.6443841509026242e-06]], [[0.6867114305496216, 0.03072221577167511, 0.02288508228957653, 0.03828873857855797, 0.010716172866523266, 0.01141773909330368, 0.004283017944544554, 0.03079269640147686, 0.038320280611515045], [0.9179489612579346, 0.01180310919880867, 0.010726666077971458, 0.020051773637533188, 0.0016027606325224042, 0.004612643271684647, 0.0002809829020407051, 0.0002525901945773512, 0.024664320051670074], [0.8211691379547119, 0.1309223175048828, 0.024959741160273552, 0.006833124440163374, 0.00022249194444157183, 0.001361209899187088, 6.993339047767222e-05, 0.0012610647827386856, 0.006858004257082939], [0.6250025033950806, 0.025590239092707634, 0.02464127726852894, 0.032638270407915115, 0.12564685940742493, 0.0638093426823616, 0.004042367916554213, 0.0011176529806107283, 0.07262792438268661], [0.10142362862825394, 0.015944037586450577, 0.0013855933211743832, 0.7803941369056702, 0.006138871423900127, 0.06482014805078506, 0.005172446835786104, 0.0024370690807700157, 0.011203977279365063], [0.6328158974647522, 0.002295407000929117, 0.008679562248289585, 0.006556634325534105, 0.06341486424207687, 0.001312406500801444, 0.11151009052991867, 0.013993396423757076, 0.1289055198431015], [0.030852865427732468, 0.00012281769886612892, 9.478269930696115e-05, 0.006045677233487368, 2.0646064513130113e-05, 0.9589614272117615, 3.609429040807299e-05, 0.0012943459441885352, 0.002023724839091301], [0.13162577152252197, 0.0018182883504778147, 0.0007394116837531328, 0.0040082866325974464, 0.0031610361766070127, 0.033398039638996124, 0.031590502709150314, 0.022854074835777283, 0.7127038836479187], [0.8541693687438965, 0.0031623607501387596, 0.00033561396412551403, 0.0018735644407570362, 8.419633377343416e-05, 0.0016818540170788765, 0.000544621201697737, 0.025828152894973755, 0.10088209807872772]], [[0.9886454343795776, 0.0011779565829783678, 0.00030400737887248397, 0.00012165625230409205, 2.9719922167714685e-05, 0.000114607231807895, 0.00015266070840880275, 0.0002697186137083918, 0.002555631333962083], [0.00012312506441958249, 2.2491219624498626e-06, 0.9998682737350464, 3.7476127090485534e-06, 1.1516051472426625e-06, 1.6988759010683196e-10, 4.189681934718692e-11, 5.6954840149670005e-11, 2.943820334166958e-07], [0.0019646044820547104, 1.8304528566659428e-05, 3.488785978333908e-06, 0.9979130625724792, 5.8246841945219785e-05, 2.2545918909600005e-05, 2.2775170638311693e-10, 6.466739643773423e-11, 2.0568549641275524e-10], [0.0014229671796783805, 3.69457173188259e-11, 3.710270539158955e-05, 2.158892311854288e-05, 0.9980875849723816, 0.0003797092940658331, 2.448420309519861e-05, 1.357150086755965e-10, 1.4164611705780317e-09], [0.00010283046867698431, 5.913301098781076e-11, 1.2800245238753227e-11, 9.958495866158046e-06, 1.0289192687196191e-05, 0.9997897744178772, 8.527067984687164e-05, 9.051705092133489e-07, 1.158867793393803e-11], [3.761385960387997e-05, 1.7626241178431146e-12, 5.928518960474083e-12, 1.2972305521441463e-12, 1.1677327194092868e-07, 1.5900121070444584e-05, 0.9999305009841919, 3.7730426356574753e-06, 1.2042067282891367e-05], [5.474664067151025e-05, 3.172784701632736e-08, 4.725575399738835e-13, 4.002094228933162e-12, 4.103583792214316e-13, 0.0003697780193760991, 1.7827973351813853e-05, 0.9990984201431274, 0.0004525601107161492], [6.210646461113356e-06, 2.05234627514983e-07, 1.123528505786453e-07, 4.893497065894259e-12, 1.1849732306501437e-10, 2.0365622077633816e-08, 5.126334508531727e-05, 0.009265629574656487, 0.9870928525924683], [0.9257515668869019, 2.1175487745495047e-06, 1.5206325088001904e-06, 4.09737950235467e-08, 1.8180952349091534e-14, 1.0640440750719904e-09, 9.174758175412023e-12, 5.0516191549832e-06, 0.0008269921527244151]], [[0.8630772829055786, 0.009417934343218803, 0.023290077224373817, 0.011665173806250095, 0.004272020887583494, 0.008473897352814674, 0.006163272075355053, 0.024672338739037514, 0.007038861978799105], [0.3920648992061615, 0.052510641515254974, 0.09347162395715714, 0.05435951054096222, 0.012896507047116756, 0.029805241152644157, 0.029427027329802513, 0.1072259396314621, 0.07465437799692154], [0.549708902835846, 0.020483342930674553, 0.001213102601468563, 0.0254861731082201, 0.023106595501303673, 0.08964689075946808, 0.02495274506509304, 0.05637064576148987, 0.08471304178237915], [0.5503023266792297, 0.030575549229979515, 0.026888040825724602, 0.019520802423357964, 0.013726988807320595, 0.035793207585811615, 0.032544586807489395, 0.14805740118026733, 0.07116218656301498], [0.45880764722824097, 0.030589710921049118, 0.02685512602329254, 0.014284702017903328, 0.009987078607082367, 0.16840608417987823, 0.05472039803862572, 0.08392486721277237, 0.0615713894367218], [0.5898685455322266, 0.01875513419508934, 0.012980069033801556, 0.025802338495850563, 0.021997399628162384, 0.0052882228046655655, 0.037984080612659454, 0.1341247409582138, 0.09574691206216812], [0.810656726360321, 0.011328445747494698, 0.006232826504856348, 0.006166239269077778, 0.005784434266388416, 0.017217343673110008, 0.0182981938123703, 0.04530853405594826, 0.03496453911066055], [0.3907400667667389, 0.04912613704800606, 0.023248184472322464, 0.06526510417461395, 0.011706170625984669, 0.044962625950574875, 0.016534950584173203, 0.085541270673275, 0.12448907643556595], [0.8035562634468079, 0.012781054712831974, 0.024935845285654068, 0.01797124184668064, 0.007260740268975496, 0.030758274719119072, 0.014644631184637547, 0.04623901844024658, 0.018935518339276314]], [[0.5741932392120361, 0.012504521757364273, 0.0032251307275146246, 0.008242546580731869, 0.0012622808571904898, 0.001786747365258634, 0.003126392839476466, 0.053322870284318924, 0.026428010314702988], [0.20268955826759338, 0.08628605306148529, 0.05451688915491104, 0.09015201032161713, 0.045336656272411346, 0.02782316878437996, 0.0411144495010376, 0.10645437240600586, 0.19452407956123352], [0.3195413649082184, 0.051214396953582764, 0.014866630546748638, 0.0767570286989212, 0.025990968570113182, 0.028270505368709564, 0.025723908096551895, 0.11174130439758301, 0.15366213023662567], [0.3675423264503479, 0.0774235650897026, 0.03533709794282913, 0.014811630360782146, 0.035400137305259705, 0.09095746278762817, 0.049049243330955505, 0.03926897421479225, 0.15405672788619995], [0.6945473551750183, 0.0503956563770771, 0.010528292506933212, 0.022740384563803673, 0.007032043766230345, 0.020692061632871628, 0.012314744293689728, 0.019432220607995987, 0.11901033669710159], [0.3998269736766815, 0.12892471253871918, 0.011652396060526371, 0.16042250394821167, 0.03744393214583397, 0.010028867051005363, 0.021646952256560326, 0.04304993897676468, 0.11173513531684875], [0.7311561107635498, 0.05060664191842079, 0.002645167987793684, 0.01531821396201849, 0.002850837307050824, 0.005628698039799929, 0.0022328824270516634, 0.06881626695394516, 0.08304977416992188], [0.8169430494308472, 0.020087622106075287, 0.0022841242607682943, 0.011465916410088539, 0.0016324989264830947, 0.001390981487929821, 0.004851995967328548, 0.03758576884865761, 0.06289665400981903], [0.6632129549980164, 0.05847909674048424, 0.002494317013770342, 0.009768658317625523, 0.002031132346019149, 0.002338845981284976, 0.010559553280472755, 0.17106842994689941, 0.04927026852965355]], [[0.8776012659072876, 0.00662739435210824, 0.010952865704894066, 0.018764959648251534, 0.0007523531094193459, 0.0034415407571941614, 0.003725002519786358, 0.02912301942706108, 0.02777864597737789], [0.25119268894195557, 0.0333518423140049, 0.02163023129105568, 0.16566267609596252, 0.01169008668512106, 0.015552700497210026, 0.008446073159575462, 0.2172682136297226, 0.10930515825748444], [0.6220285296440125, 0.02608654648065567, 0.01771676167845726, 0.08517983555793762, 0.024062316864728928, 0.01849222742021084, 0.013419565744698048, 0.03866398707032204, 0.05563565716147423], [0.07823210954666138, 0.04072333127260208, 0.004590645432472229, 0.1454194188117981, 0.007617459166795015, 0.019016485661268234, 0.008790089748799801, 0.09965246170759201, 0.1428917795419693], [0.2561625838279724, 0.07746205478906631, 0.00812583975493908, 0.03874392807483673, 0.0030905823223292828, 0.012665940448641777, 0.00525591941550374, 0.17169280350208282, 0.30743277072906494], [0.3294699192047119, 0.06063373386859894, 0.019198186695575714, 0.06185320392251015, 0.010971380397677422, 0.00912288948893547, 0.011579442769289017, 0.08766274899244308, 0.2896593511104584], [0.4176972508430481, 0.0192489642649889, 0.009520499967038631, 0.030035965144634247, 0.004126968793570995, 0.00760663254186511, 0.003234869334846735, 0.13726726174354553, 0.20067276060581207], [0.16225913166999817, 0.05023084953427315, 0.009315179660916328, 0.09372425824403763, 0.035310257226228714, 0.017323270440101624, 0.0196775421500206, 0.26553502678871155, 0.08117852360010147], [0.7915427088737488, 0.006852870341390371, 0.003815377363935113, 0.020265713334083557, 0.0007379118469543755, 0.002701258985325694, 0.0016143325483426452, 0.11479590088129044, 0.030341999605298042]], [[0.8576313257217407, 0.0035589467734098434, 0.0023343702778220177, 0.011643779464066029, 0.0023435167968273163, 0.0009843561565503478, 0.004606286529451609, 0.0310975369066, 0.014209676533937454], [0.8489042520523071, 0.004750748630613089, 0.0015615337761119008, 0.07200687378644943, 0.006777613889425993, 0.001286262646317482, 0.003625889541581273, 0.033543311059474945, 0.012470915913581848], [0.7480865716934204, 0.032843753695487976, 0.010309809818863869, 0.004586915951222181, 0.011372610926628113, 0.002150770276784897, 0.00414713378995657, 0.054756972938776016, 0.07125963270664215], [0.7276181578636169, 0.016752418130636215, 0.003972754348069429, 0.0015012893127277493, 0.03757693991065025, 0.038614653050899506, 0.019139813259243965, 0.05786258727312088, 0.040642306208610535], [0.6681697368621826, 0.007104968652129173, 0.007620250806212425, 0.10908336192369461, 0.0011078156530857086, 0.1432497352361679, 0.0020194146782159805, 0.020140277221798897, 0.019400393590331078], [0.6687548756599426, 0.005474054720252752, 0.0038148353341966867, 0.016389863565564156, 0.004948354326188564, 0.0005677415756508708, 0.23476062715053558, 0.03413522616028786, 0.0206003375351429], [0.7011111974716187, 0.004106187727302313, 0.0019048100803047419, 0.006826437544077635, 0.00035246365587227046, 0.18927736580371857, 0.000133782290504314, 0.01854376681149006, 0.05831955000758171], [0.7954146265983582, 0.009297670796513557, 0.0054098195396363735, 0.01658659242093563, 0.006253013852983713, 0.0019941539503633976, 0.030341122299432755, 0.04850636422634125, 0.0278739295899868], [0.9561313390731812, 0.0008841339149512351, 0.0004002015630248934, 0.002304780762642622, 0.00020183758169878274, 9.033607057062909e-05, 0.0011839112266898155, 0.019468409940600395, 0.011608057655394077]], [[0.3735335171222687, 0.038137149065732956, 0.03146331384778023, 0.028175292536616325, 0.0326337032020092, 0.05052849277853966, 0.013374547474086285, 0.04622263461351395, 0.13894814252853394], [0.22967460751533508, 0.034670423716306686, 0.041244275867938995, 0.04330058395862579, 0.04595201462507248, 0.022269340232014656, 0.02730032242834568, 0.0400838665664196, 0.1635829210281372], [0.45324236154556274, 0.03315805271267891, 0.006221025716513395, 0.02173622138798237, 0.00608855253085494, 0.00733786029741168, 0.012667971663177013, 0.06111518666148186, 0.08922546356916428], [0.16107189655303955, 0.020354239270091057, 0.039148855954408646, 0.04595628380775452, 0.07263963669538498, 0.034465864300727844, 0.040672462433576584, 0.017364749684929848, 0.2517130970954895], [0.2829039990901947, 0.05327393114566803, 0.014372805133461952, 0.026191797107458115, 0.023442428559064865, 0.013819298706948757, 0.015427010133862495, 0.04461078345775604, 0.2218894064426422], [0.2120259702205658, 0.02644788846373558, 0.021377813071012497, 0.02652422897517681, 0.017786791548132896, 0.0036319836508482695, 0.0227498859167099, 0.07672607898712158, 0.1642524152994156], [0.5835537314414978, 0.014582430012524128, 0.0017409727443009615, 0.0056937201879918575, 0.0018474537646397948, 0.0006850791978649795, 0.001000245800241828, 0.024731658399105072, 0.16851060092449188], [0.3185100555419922, 0.022960592061281204, 0.012767384760081768, 0.020211584866046906, 0.00849288422614336, 0.008760292083024979, 0.009923161938786507, 0.1465807855129242, 0.11985625326633453], [0.20566314458847046, 0.024741927161812782, 0.06761927902698517, 0.028798935934901237, 0.04770471900701523, 0.05940704420208931, 0.048026882112026215, 0.08339041471481323, 0.08626167476177216]], [[0.07105383276939392, 0.012199198827147484, 0.0025606751441955566, 0.014098068699240685, 0.008684908971190453, 0.006134395487606525, 0.0025567002594470978, 0.02494713105261326, 0.2922031283378601], [0.08587107807397842, 0.12017085403203964, 0.016761885955929756, 0.04377687722444534, 0.07643292844295502, 0.09050150215625763, 0.012779103592038155, 0.08882007002830505, 0.2766035795211792], [0.2587868571281433, 0.04579025134444237, 0.08576206117868423, 0.021298151463270187, 0.09947577118873596, 0.12108191102743149, 0.05031105875968933, 0.04778400808572769, 0.0487239807844162], [0.12059859931468964, 0.1198631227016449, 0.05578691139817238, 0.04377533495426178, 0.08134181797504425, 0.07904281467199326, 0.04682939872145653, 0.1108696460723877, 0.17096678912639618], [0.5149787068367004, 0.05842049419879913, 0.008388128131628036, 0.02404666878283024, 0.019166626036167145, 0.015623842366039753, 0.026531415060162544, 0.11565623432397842, 0.15655408799648285], [0.3521033525466919, 0.056938089430332184, 0.03832908347249031, 0.04835940897464752, 0.04904603585600853, 0.0739038959145546, 0.019523030146956444, 0.0829160213470459, 0.15739896893501282], [0.7653680443763733, 0.030797362327575684, 0.007287879008799791, 0.018698200583457947, 0.011425950564444065, 0.00856215599924326, 0.009349917992949486, 0.03901175409555435, 0.06177561730146408], [0.11037973314523697, 0.060056522488594055, 0.03372233361005783, 0.01978255808353424, 0.048144903033971786, 0.04038994386792183, 0.03741992637515068, 0.30095505714416504, 0.09967333823442459], [0.05031547322869301, 0.03718769922852516, 0.0047621093690395355, 0.027348151430487633, 0.02537132240831852, 0.021788131445646286, 0.006878376938402653, 0.11521006375551224, 0.5184921622276306]], [[0.13619019091129303, 0.07917975634336472, 0.03191395476460457, 0.04470569267868996, 0.02777736820280552, 0.04517613351345062, 0.0329587385058403, 0.12386400252580643, 0.05149879306554794], [0.21094262599945068, 0.06072332337498665, 0.03154246509075165, 0.039620619267225266, 0.05296778678894043, 0.05292663723230362, 0.05951029062271118, 0.11615844815969467, 0.14391648769378662], [0.34229591488838196, 0.05349472165107727, 0.00044914547470398247, 0.04652364179491997, 0.01909130997955799, 0.0064160870388150215, 0.05236538127064705, 0.037946734577417374, 0.21899962425231934], [0.1226445883512497, 0.040392011404037476, 0.02360180765390396, 0.03356942534446716, 0.0331718809902668, 0.14128978550434113, 0.034561868757009506, 0.1505764275789261, 0.0805952250957489], [0.1335122436285019, 0.046422168612480164, 0.045643869787454605, 0.06108638271689415, 0.003401512047275901, 0.1501297801733017, 0.1097494512796402, 0.054603055119514465, 0.17308315634727478], [0.13850677013397217, 0.0639893040060997, 0.00850216206163168, 0.09153279662132263, 0.03693598508834839, 0.0058687045238912106, 0.05740666389465332, 0.10620807111263275, 0.19798418879508972], [0.2302083969116211, 0.05530844256281853, 0.05514807254076004, 0.050639744848012924, 0.013585008680820465, 0.08023469895124435, 0.05732687935233116, 0.05652659386396408, 0.18080158531665802], [0.25972920656204224, 0.06390157341957092, 0.019162608310580254, 0.04985982924699783, 0.041011158376932144, 0.045371364802122116, 0.034367289394140244, 0.15957415103912354, 0.06398110091686249], [0.09034276008605957, 0.07754916697740555, 0.03454980626702309, 0.06535446643829346, 0.03883584216237068, 0.10664921253919601, 0.03620612248778343, 0.20718428492546082, 0.0517723374068737]]], [[[0.6822956204414368, 0.035260070115327835, 0.00263024540618062, 0.013483773916959763, 0.010092920623719692, 0.00952314306050539, 0.0016194175696000457, 0.03664538636803627, 0.019463056698441505], [0.3195177912712097, 0.09742715954780579, 0.01119675301015377, 0.12037629634141922, 0.04995123669505119, 0.044034916907548904, 0.011735173873603344, 0.14329250156879425, 0.08690748363733292], [0.52382892370224, 0.02846101112663746, 0.018757235258817673, 0.03017124906182289, 0.030158022418618202, 0.09563451260328293, 0.007803021930158138, 0.02280348353087902, 0.1261315643787384], [0.3216986656188965, 0.23807315528392792, 0.0008802164811640978, 0.06642764061689377, 0.04236074537038803, 0.02113865502178669, 0.01180385984480381, 0.1970285326242447, 0.016916584223508835], [0.45321059226989746, 0.06610734760761261, 0.00047098653158172965, 0.16192032396793365, 0.04743068665266037, 0.01764250174164772, 0.06689406931400299, 0.11394446343183517, 0.011730327270925045], [0.48540663719177246, 0.0315280556678772, 0.0009604609222151339, 0.09195850789546967, 0.06993946433067322, 0.024767903611063957, 0.06700718402862549, 0.14951883256435394, 0.016719719395041466], [0.4349879026412964, 0.07053473591804504, 0.0001326032797805965, 0.23243191838264465, 0.08468427509069443, 0.010827518999576569, 0.009237083606421947, 0.095780149102211, 0.0049951933324337006], [0.43343231081962585, 0.07787344604730606, 0.0031263334676623344, 0.069603331387043, 0.052730485796928406, 0.015508756041526794, 0.006747057661414146, 0.21662920713424683, 0.024357153102755547], [0.7126644253730774, 0.05738997459411621, 0.0017661815509200096, 0.011781885288655758, 0.02944267727434635, 0.012645489536225796, 0.005664742551743984, 0.11641773581504822, 0.01747857965528965]], [[0.26030296087265015, 0.024937255308032036, 0.0119309788569808, 0.03835250809788704, 0.007886629551649094, 0.022854356095194817, 0.018406454473733902, 0.02492615021765232, 0.08671466261148453], [0.5228820443153381, 0.2498551905155182, 0.0047102575190365314, 0.02850227989256382, 0.001522764447145164, 0.0018293781904503703, 0.007469263859093189, 0.015240908600389957, 0.08303587883710861], [0.5664864778518677, 0.008889389224350452, 0.09324275702238083, 0.004385432228446007, 0.0002986930776387453, 0.0038385335355997086, 0.0002485603035893291, 0.02305116504430771, 0.18619360029697418], [0.2929644286632538, 0.0634969100356102, 0.003967739641666412, 0.3829934597015381, 0.005042236298322678, 0.0014616843545809388, 0.01442265696823597, 0.015202870592474937, 0.07655645906925201], [0.23808839917182922, 0.010087027214467525, 0.0003861273289658129, 0.014740384183824062, 0.5390181541442871, 0.008710535243153572, 0.03599068522453308, 0.010943606495857239, 0.04784562438726425], [0.11473768949508667, 0.000960657955147326, 0.0009823553264141083, 0.0009865137981250882, 0.0003537834854796529, 0.7655156254768372, 0.0008234000415541232, 0.010097494348883629, 0.05844496935606003], [0.5163162350654602, 0.00897502526640892, 0.0004555540217552334, 0.012591302394866943, 0.011259350925683975, 0.002138142241165042, 0.29595574736595154, 0.01212291605770588, 0.09115639328956604], [0.21852906048297882, 0.08968650549650192, 0.05212351679801941, 0.10586758702993393, 0.0189121775329113, 0.03629008308053017, 0.023462336510419846, 0.093361496925354, 0.1368219405412674], [0.6237765550613403, 0.07191742956638336, 0.005616202484816313, 0.04252871498465538, 0.002756607485935092, 0.010773872956633568, 0.004928263369947672, 0.06351715326309204, 0.09769699722528458]], [[0.22436125576496124, 0.03122175857424736, 0.021436095237731934, 0.014033504761755466, 0.019719915464520454, 0.0338527113199234, 0.012618753127753735, 0.039174940437078476, 0.03941758722066879], [0.2595123052597046, 0.13314905762672424, 0.029556741937994957, 0.0541284941136837, 0.02760419435799122, 0.02228226512670517, 0.09031977504491806, 0.16102033853530884, 0.07728604972362518], [0.594242513179779, 0.15180082619190216, 0.013355364091694355, 0.013014501892030239, 0.0018408140167593956, 0.0003923088952433318, 0.0116496616974473, 0.16529680788516998, 0.0057604662142694], [0.27030667662620544, 0.13621576130390167, 0.028462644666433334, 0.0646762028336525, 0.02358029969036579, 0.02551363967359066, 0.09418133646249771, 0.11567646265029907, 0.023073725402355194], [0.5074316263198853, 0.07996106147766113, 0.002697526477277279, 0.011143394745886326, 0.00106679683085531, 0.0004081881488673389, 0.0045843543484807014, 0.3531482517719269, 0.012267665937542915], [0.5707200765609741, 0.13657622039318085, 0.01322108879685402, 0.00804736465215683, 0.0021786789875477552, 0.0002577733830548823, 0.00417737290263176, 0.2190672606229782, 0.009484305046498775], [0.4644774794578552, 0.06806331127882004, 0.011435909196734428, 0.03586268797516823, 0.005579446908086538, 0.002100869081914425, 0.008821384981274605, 0.23808692395687103, 0.08800483494997025], [0.3335186541080475, 0.03827006742358208, 0.013124575838446617, 0.041150301694869995, 0.03460875526070595, 0.015999259427189827, 0.034882307052612305, 0.22065448760986328, 0.106643445789814], [0.48089906573295593, 0.05632786452770233, 0.006751597858965397, 0.02877786196768284, 0.020115992054343224, 0.007723397575318813, 0.02941860258579254, 0.31117892265319824, 0.012199708260595798]], [[0.7269570827484131, 0.01789163611829281, 0.00799620058387518, 0.006585173774510622, 0.003356094704940915, 0.005447388626635075, 0.004194266628473997, 0.020981440320611, 0.04622857645153999], [0.006191821303218603, 0.019481344148516655, 0.7337139248847961, 0.20860829949378967, 0.015124008990824223, 0.0032596897799521685, 0.0004418274329509586, 0.0014926388394087553, 0.004156946670264006], [0.8142242431640625, 0.014280052855610847, 0.03292576223611832, 0.05281565710902214, 0.03126922622323036, 0.022389255464076996, 0.0006104055210016668, 0.004441654775291681, 0.008216227404773235], [0.08254825323820114, 0.007273707073181868, 0.007603869307786226, 0.02100532129406929, 0.453010618686676, 0.3249257802963257, 0.024505997076630592, 0.023346200585365295, 0.015324040316045284], [0.054695867002010345, 0.0005519826081581414, 0.00016194878844544291, 0.0021179390605539083, 0.01695120520889759, 0.2183791697025299, 0.6605658531188965, 0.037342529743909836, 0.0054132589139044285], [0.4551451802253723, 0.0027073537930846214, 0.0006436753319576383, 0.0011482848785817623, 0.011742557398974895, 0.05413889139890671, 0.09749658405780792, 0.2391180545091629, 0.1270204335451126], [0.20939292013645172, 0.002777647925540805, 0.00017728346574585885, 7.00855816830881e-05, 0.0017265296773985028, 0.014145530760288239, 0.0033955376129597425, 0.06417017430067062, 0.6963275671005249], [0.2170998603105545, 0.012498983182013035, 0.004142874386161566, 0.0018711151788011193, 0.0015724966069683433, 0.008559465408325195, 0.016058972105383873, 0.06742995232343674, 0.5090731978416443], [0.9664286971092224, 0.001338437432423234, 0.00028009433299303055, 0.0003492311807349324, 6.550805119331926e-05, 0.00017494872736278921, 7.833373820176348e-05, 0.001981660258024931, 0.020104890689253807]], [[0.8424743413925171, 0.020767195150256157, 0.017066778615117073, 0.030537346377968788, 0.006614766549319029, 0.005440154112875462, 0.0016326821641996503, 0.013458272442221642, 0.03050542250275612], [0.9286220669746399, 0.02002856880426407, 0.003596397815272212, 0.022788656875491142, 7.081696821842343e-05, 0.00013932306319475174, 3.967220618505962e-05, 0.004535026848316193, 0.015291046351194382], [0.8238195776939392, 0.11171792447566986, 0.009885051287710667, 0.013269836083054543, 0.00012634409358724952, 5.4048166930442676e-05, 4.074934167874744e-06, 0.0011064414866268635, 0.02488909661769867], [0.5379607677459717, 0.2255418598651886, 0.17621786892414093, 0.021368632093071938, 0.004112194292247295, 0.0008770033018663526, 1.3368659892876167e-05, 0.001554579590447247, 0.021221648901700974], [0.31428298354148865, 0.04264606535434723, 0.15583379566669464, 0.44417861104011536, 0.026532310992479324, 0.0041827731765806675, 4.7395064029842615e-05, 0.0005624418263323605, 0.003462761640548706], [0.6452857255935669, 0.009519824758172035, 0.03558145463466644, 0.2224140167236328, 0.04735264554619789, 0.0073654139414429665, 0.0004941757651977241, 0.004128024913370609, 0.012794092297554016], [0.0703856572508812, 0.009479045867919922, 0.008982180617749691, 0.32753419876098633, 0.3548038899898529, 0.19466352462768555, 0.0014312994899228215, 0.014763517305254936, 0.011699704453349113], [0.03372747078537941, 0.008814230561256409, 0.001266675884835422, 0.035009779036045074, 0.03177085146307945, 0.2526962459087372, 0.5360028147697449, 0.0579359233379364, 0.03556671366095543], [0.9428878426551819, 0.004099049139767885, 8.053931378526613e-05, 0.0006541602779179811, 0.00027153469272889197, 0.0020265269558876753, 0.0007708747871220112, 0.013570916838943958, 0.034691255539655685]], [[0.13585063815116882, 0.03866572305560112, 0.04863022640347481, 0.057078033685684204, 0.013443577103316784, 0.03305221349000931, 0.023145761340856552, 0.06955958902835846, 0.05880245193839073], [0.5049821734428406, 0.009588302113115788, 0.028704777359962463, 0.02410416305065155, 0.027530856430530548, 0.03328945115208626, 0.018587250262498856, 0.03651125356554985, 0.08305874466896057], [0.413239449262619, 0.012525207363069057, 0.00013884906366001815, 0.006962826009839773, 0.0015833210200071335, 0.0064878398552536964, 0.008617706596851349, 0.02073638327419758, 0.2738681137561798], [0.4644061326980591, 0.02647235244512558, 0.015102909877896309, 0.01899535208940506, 0.020528098568320274, 0.021546365693211555, 0.01763543114066124, 0.057087041437625885, 0.10842602699995041], [0.4537603259086609, 0.054237838834524155, 0.025721164420247078, 0.013679997995495796, 0.003925945609807968, 0.010583984665572643, 0.012050645425915718, 0.0709696039557457, 0.0841531902551651], [0.3236851096153259, 0.02184567041695118, 0.030767865478992462, 0.009230084717273712, 0.004454542882740498, 0.0008581345900893211, 0.006186081562191248, 0.045718878507614136, 0.1715051233768463], [0.3586571514606476, 0.052442245185375214, 0.012864110060036182, 0.031898707151412964, 0.02906748093664646, 0.014049002900719643, 0.009729764424264431, 0.04979103431105614, 0.08141439408063889], [0.3849962651729584, 0.050567422062158585, 0.008055496029555798, 0.043122902512550354, 0.05336153879761696, 0.06670928746461868, 0.050491299480199814, 0.06062683090567589, 0.06767594814300537], [0.20832321047782898, 0.06806044280529022, 0.10066117346286774, 0.04903802275657654, 0.03328399732708931, 0.06784899532794952, 0.028927646577358246, 0.0522085539996624, 0.0665426179766655]], [[0.6305399537086487, 0.013836522586643696, 0.0045390864834189415, 0.032936010509729385, 0.007649693172425032, 0.0670883059501648, 0.03395257517695427, 0.1258867084980011, 0.02737734094262123], [3.2544471650908235e-07, 8.826628800306935e-06, 0.9999598264694214, 9.92667719401652e-06, 2.072483221127186e-05, 8.55941928445958e-10, 2.8486098896385315e-11, 3.9725792100320234e-11, 9.391175836981347e-08], [2.529266112105688e-06, 1.9670103768021363e-08, 8.621441338618752e-08, 0.999936580657959, 6.0605616454267874e-05, 5.344023890074823e-08, 4.222052937298548e-13, 4.923435791004405e-12, 2.970525908585486e-11], [6.528964036078833e-08, 8.423086880759989e-12, 1.1022739698773876e-07, 1.9075298496318283e-06, 0.9999896287918091, 8.229199920606334e-06, 7.930240286668777e-08, 2.148528577272657e-11, 5.028918947935779e-11], [1.5617771964571148e-08, 6.323242575162133e-14, 3.3915491942648757e-13, 8.867329626127685e-08, 2.841474997694604e-05, 0.9999475479125977, 2.3323991626966745e-05, 3.7015877296653343e-07, 2.314658339129527e-13], [1.6909840194756498e-09, 2.017942917934912e-15, 2.488679191382532e-14, 1.3938886835398751e-14, 2.899916751175624e-09, 6.724070544805727e-08, 0.9999951124191284, 4.743439149024198e-06, 3.368182532881292e-08], [8.437435212726996e-07, 8.693154160931138e-13, 1.5337625931350092e-17, 1.3982279486253642e-14, 4.0529874310748885e-15, 2.1671358751973457e-07, 2.492410544618906e-07, 0.9999982118606567, 4.201515366730746e-07], [5.5076153415711815e-08, 2.177206326337e-08, 9.0482942319281e-12, 3.8809450444987625e-14, 1.2180908408668256e-13, 4.118511087725096e-12, 8.705407950060362e-09, 3.216765253455378e-05, 0.9999666213989258], [0.5838304758071899, 8.245188837463502e-06, 5.752878173836962e-09, 4.666404151976167e-07, 1.2834948381890143e-11, 1.9467684353458026e-07, 6.317766865215901e-10, 0.3820224106311798, 0.03408528119325638]], [[0.5532012581825256, 0.056342318654060364, 0.03966352343559265, 0.03867947682738304, 0.03004496358335018, 0.01268330030143261, 0.010136581026017666, 0.07777208089828491, 0.03803224116563797], [0.5323253870010376, 0.1547735184431076, 0.06920365989208221, 0.07850660383701324, 0.027272718027234077, 0.02668316662311554, 0.011791568249464035, 0.06699660420417786, 0.0019511543214321136], [0.8686466217041016, 0.019428841769695282, 0.038878124207258224, 0.015753012150526047, 0.004335517063736916, 0.005629232153296471, 0.0017180751310661435, 0.029525702819228172, 0.0025612516328692436], [0.5975949168205261, 0.19521313905715942, 0.053961459547281265, 0.045708246529102325, 0.011879975907504559, 0.00916756596416235, 0.006334370467811823, 0.04775369539856911, 0.007359594572335482], [0.5984036326408386, 0.16447636485099792, 0.07010787725448608, 0.0465536043047905, 0.01334342174232006, 0.028260599821805954, 0.0049822828732430935, 0.035501059144735336, 0.006532648112624884], [0.45495522022247314, 0.16411268711090088, 0.19026070833206177, 0.06585612148046494, 0.012993479147553444, 0.029177438467741013, 0.004995911847800016, 0.0324215330183506, 0.006586913485080004], [0.28162336349487305, 0.3457529544830322, 0.05234357714653015, 0.16156591475009918, 0.017905384302139282, 0.01776779815554619, 0.0077798920683562756, 0.05413322150707245, 0.016239142045378685], [0.07252369821071625, 0.33544278144836426, 0.0365300178527832, 0.37979522347450256, 0.042211804538965225, 0.016170253977179527, 0.013714698143303394, 0.02604314312338829, 0.023853445425629616], [0.6320256590843201, 0.08633964508771896, 0.008443334139883518, 0.07852686196565628, 0.01582266390323639, 0.00956010352820158, 0.004057909362018108, 0.07843121141195297, 0.06210179254412651]], [[0.4138449430465698, 0.015741320326924324, 0.03365154564380646, 0.022843606770038605, 0.015682043507695198, 0.010899519547820091, 0.0066413069143891335, 0.19493958353996277, 0.09664005041122437], [0.38431495428085327, 0.053014714270830154, 0.0372779555618763, 0.012496811337769032, 0.005788793321698904, 0.0037077544257044792, 0.0134745417162776, 0.07773943990468979, 0.1278482973575592], [0.34350141882896423, 0.13274376094341278, 0.002483364660292864, 0.014857056550681591, 0.000526853313203901, 0.0014163340674713254, 0.002856469713151455, 0.020499447360634804, 0.2057843953371048], [0.42395320534706116, 0.02319582924246788, 0.01924785226583481, 0.0210964847356081, 0.005129100289195776, 0.00829885434359312, 0.008690069429576397, 0.12591443955898285, 0.1475519984960556], [0.38901641964912415, 0.02602742798626423, 0.008820665068924427, 0.006004012189805508, 0.0006900631124153733, 0.004542734939604998, 0.008454530499875546, 0.14808832108974457, 0.12141386419534683], [0.2766445279121399, 0.020056121051311493, 0.006883652415126562, 0.015231121331453323, 0.006841578520834446, 0.005508384667336941, 0.007430134806782007, 0.13110877573490143, 0.17385096848011017], [0.4422587454319, 0.01684163697063923, 0.023267410695552826, 0.016402849927544594, 0.009863986633718014, 0.02482590824365616, 0.004770989995449781, 0.09477363526821136, 0.13843879103660583], [0.30784881114959717, 0.026232510805130005, 0.02758960612118244, 0.023647038266062737, 0.023645328357815742, 0.03204881772398949, 0.010660781525075436, 0.1672738492488861, 0.11527412384748459], [0.26737070083618164, 0.034848008304834366, 0.049771130084991455, 0.020302241668105125, 0.02331160381436348, 0.02999437041580677, 0.017250830307602882, 0.13247382640838623, 0.10412835329771042]], [[0.286782443523407, 0.11950644850730896, 0.07631204277276993, 0.04265960678458214, 0.03633423149585724, 0.10302546620368958, 0.024834631010890007, 0.05489618703722954, 0.23462238907814026], [0.03478582948446274, 0.03113018162548542, 0.017365338280797005, 0.15052133798599243, 0.08781075477600098, 0.14323875308036804, 0.130378857254982, 0.10430116951465607, 0.2626897394657135], [0.3390771150588989, 0.08934470266103745, 0.024043571203947067, 0.016423728317022324, 0.04631766676902771, 0.1507132202386856, 0.04646822065114975, 0.08614522218704224, 0.15007032454013824], [0.052080072462558746, 0.05866844579577446, 0.010263591073453426, 0.028599200770258904, 0.01862446218729019, 0.06299461424350739, 0.12307022511959076, 0.16749276220798492, 0.4332520067691803], [0.22408659756183624, 0.08363652229309082, 0.014496050775051117, 0.010944507084786892, 0.013982304371893406, 0.08459407091140747, 0.05463037267327309, 0.15326762199401855, 0.29476168751716614], [0.19019478559494019, 0.15248160064220428, 0.056798193603754044, 0.02988666109740734, 0.05498085170984268, 0.11691134423017502, 0.04486076161265373, 0.10599389672279358, 0.12796634435653687], [0.25588855147361755, 0.08099603652954102, 0.021259302273392677, 0.03044278733432293, 0.024179581552743912, 0.03296676650643349, 0.021636776626110077, 0.10443328320980072, 0.33520951867103577], [0.37115785479545593, 0.047299884259700775, 0.03770899400115013, 0.06030043587088585, 0.01998249441385269, 0.024084556847810745, 0.014646393246948719, 0.07542679458856583, 0.2001403570175171], [0.7695024609565735, 0.07120281457901001, 0.015925290063023567, 0.022137219086289406, 0.014115013182163239, 0.023239165544509888, 0.004949232563376427, 0.026149947196245193, 0.047435663640499115]], [[0.4112699329853058, 0.006541939917951822, 0.02332466095685959, 0.02276770770549774, 0.02225331962108612, 0.03796745464205742, 0.004989867564290762, 0.009168654680252075, 0.00970390159636736], [0.22945763170719147, 0.020674921572208405, 0.0797308161854744, 0.10179751366376877, 0.11564330756664276, 0.29135334491729736, 0.016323914751410484, 0.028985261917114258, 0.05532391369342804], [0.7307668328285217, 0.027968106791377068, 0.0050850496627390385, 0.01716719940304756, 0.015816666185855865, 0.011446071788668633, 0.004138565622270107, 0.02189067378640175, 0.08811809122562408], [0.09374886006116867, 0.011991279199719429, 0.07913437485694885, 0.01592109352350235, 0.1669420301914215, 0.3696483075618744, 0.05733688920736313, 0.012812071479856968, 0.024349208921194077], [0.06328000128269196, 0.02153896540403366, 0.0394800640642643, 0.09025799483060837, 0.052132051438093185, 0.3809486925601959, 0.15937446057796478, 0.017447615042328835, 0.0526924803853035], [0.07619411498308182, 0.04668833687901497, 0.06802711635828018, 0.13332922756671906, 0.13175615668296814, 0.07951398938894272, 0.10803163051605225, 0.01928500086069107, 0.1472310870885849], [0.016898347064852715, 0.015739023685455322, 0.017490092664957047, 0.1362493485212326, 0.25357428193092346, 0.41659215092658997, 0.012602162547409534, 0.007041164208203554, 0.025470763444900513], [0.5225013494491577, 0.07134781777858734, 0.005588449537754059, 0.059401046484708786, 0.040952008217573166, 0.015175732783973217, 0.0037966424133628607, 0.09752402454614639, 0.07115839421749115], [0.7201520800590515, 0.043823327869176865, 0.003056393237784505, 0.013115474954247475, 0.0053733098320662975, 0.008851438760757446, 0.0026200308930128813, 0.09460372477769852, 0.03894883021712303]], [[0.7454310059547424, 0.023761693388223648, 0.003255219431594014, 0.022921547293663025, 0.01218433491885662, 0.0024156144354492426, 0.013529102317988873, 0.026090769097208977, 0.06894727796316147], [0.7644087076187134, 0.10793653875589371, 0.0046956646256148815, 0.006380660459399223, 0.0054332055151462555, 0.00211281212978065, 0.0014909531455487013, 0.012437206692993641, 0.06100831925868988], [0.6263486742973328, 0.04645629972219467, 0.23294302821159363, 0.005369207821786404, 0.0010211096378043294, 0.0009457694832235575, 0.0003134069265797734, 0.007978001609444618, 0.04452388733625412], [0.6000315546989441, 0.03173704817891121, 0.0017599010607227683, 0.20251692831516266, 0.0069443294778466225, 0.0005679914029315114, 0.003230038098990917, 0.011964483186602592, 0.06734354048967361], [0.6242268085479736, 0.019113929942250252, 0.0005189512157812715, 0.007207277696579695, 0.2535454034805298, 0.003649613820016384, 0.010663324035704136, 0.0037125758826732635, 0.03419102728366852], [0.611883282661438, 0.023905223235487938, 0.005256030708551407, 0.0039953733794391155, 0.021683868020772934, 0.20945993065834045, 0.005543800536543131, 0.011983480304479599, 0.04765421897172928], [0.3935457170009613, 0.008486141450703144, 0.0004028867988381535, 0.0174289271235466, 0.021901069208979607, 0.0023701621685177088, 0.4826660752296448, 0.004353047348558903, 0.02093913033604622], [0.6028467416763306, 0.03769001364707947, 0.028475457802414894, 0.03120230883359909, 0.018437113612890244, 0.013266599737107754, 0.01148221269249916, 0.06290264427661896, 0.0769723653793335], [0.7800852656364441, 0.043357085436582565, 0.0025201698299497366, 0.010703466832637787, 0.0059421188198029995, 0.0017845203401520848, 0.0047697341069579124, 0.033111076802015305, 0.02892328053712845]]], [[[0.20538556575775146, 0.006783756893128157, 0.0063742040656507015, 0.030155163258314133, 0.0012839731061831117, 0.004238997120410204, 0.0025502729695290327, 0.030539020895957947, 0.12862206995487213], [0.5357323288917542, 0.06808635592460632, 0.026822850108146667, 0.05122525990009308, 0.0031411380041390657, 0.01969270035624504, 0.009553084149956703, 0.16382397711277008, 0.0852455124258995], [0.7164422273635864, 0.07096374034881592, 0.017240209504961967, 0.03909487649798393, 0.003829126711934805, 0.01916281320154667, 0.0075177038088440895, 0.05583331733942032, 0.014150304719805717], [0.304108589887619, 0.20673112571239471, 0.06677430123090744, 0.049756307154893875, 0.008345875889062881, 0.022099127992987633, 0.017671670764684677, 0.12516650557518005, 0.11123248934745789], [0.5903051495552063, 0.03608828783035278, 0.03995300456881523, 0.12305960804224014, 0.012417576275765896, 0.030747177079319954, 0.00961415097117424, 0.05638304352760315, 0.051010169088840485], [0.18413367867469788, 0.023990681394934654, 0.32321006059646606, 0.1411694586277008, 0.04371248185634613, 0.06313467770814896, 0.03103500045835972, 0.04628429189324379, 0.04610616713762283], [0.16810491681098938, 0.11710225045681, 0.17226579785346985, 0.09263493865728378, 0.02276747301220894, 0.029245691373944283, 0.015072470530867577, 0.10670068114995956, 0.15321768820285797], [0.14960162341594696, 0.09268868714570999, 0.06603402644395828, 0.10647189617156982, 0.02834557555615902, 0.08273094147443771, 0.04079456627368927, 0.1163577139377594, 0.14658527076244354], [0.7728886604309082, 0.018508274108171463, 0.008784030564129353, 0.01565266214311123, 0.0026726776268333197, 0.016554074361920357, 0.005139840301126242, 0.07173344492912292, 0.03822699934244156]], [[0.030539169907569885, 0.02875026874244213, 0.06822026520967484, 0.023251529783010483, 0.013749457895755768, 0.01913834735751152, 0.0069595989771187305, 0.010247768834233284, 0.05387391522526741], [0.052944429218769073, 0.09264461696147919, 0.19800376892089844, 0.09800095856189728, 0.07139851152896881, 0.1356605738401413, 0.052425216883420944, 0.03596577048301697, 0.027081986889243126], [0.08105944097042084, 0.08162585645914078, 0.09906909614801407, 0.18268047273159027, 0.056270454078912735, 0.10172320902347565, 0.03685358911752701, 0.042729396373033524, 0.01830418035387993], [0.08996124565601349, 0.05384872108697891, 0.056726980954408646, 0.09951606392860413, 0.027063090354204178, 0.07598155736923218, 0.020372234284877777, 0.102356918156147, 0.13701073825359344], [0.05538564920425415, 0.034674808382987976, 0.05091593414545059, 0.04707299917936325, 0.013468349352478981, 0.031550176441669464, 0.018559744581580162, 0.30694717168807983, 0.17568787932395935], [0.0379943773150444, 0.05438225716352463, 0.06459691375494003, 0.13985489308834076, 0.06155803054571152, 0.07143308222293854, 0.025858715176582336, 0.1815710961818695, 0.04422144591808319], [0.03593188151717186, 0.0802558958530426, 0.11214897036552429, 0.14159120619297028, 0.05939282104372978, 0.12235785275697708, 0.031530119478702545, 0.13292339444160461, 0.03320692107081413], [0.08188726752996445, 0.079721599817276, 0.08180434256792068, 0.1742558628320694, 0.121385857462883, 0.08700862526893616, 0.058161478489637375, 0.09384908527135849, 0.039518803358078], [0.10896807163953781, 0.025675645098090172, 0.022387707605957985, 0.016805820167064667, 0.003379481378942728, 0.007485288195312023, 0.003515147138386965, 0.36154910922050476, 0.17249315977096558]], [[0.11574086546897888, 0.03910510987043381, 0.07187940180301666, 0.06111738830804825, 0.013943717814981937, 0.07700829952955246, 0.021459145471453667, 0.07959326356649399, 0.1575775444507599], [0.17140600085258484, 0.024477750062942505, 0.04528594762086868, 0.021172508597373962, 0.004341131076216698, 0.0551883764564991, 0.008823134005069733, 0.14520800113677979, 0.21773682534694672], [0.10825788974761963, 0.0362422838807106, 0.07992580533027649, 0.032638467848300934, 0.01952669583261013, 0.3589767813682556, 0.013312151655554771, 0.0045678336173295975, 0.08004390448331833], [0.12401217967271805, 0.01814933307468891, 0.021389776840806007, 0.006738147232681513, 0.003697388805449009, 0.04121708869934082, 0.002729542087763548, 0.10315649956464767, 0.33265554904937744], [0.07825490087270737, 0.009201773442327976, 0.006448546424508095, 0.0014714559074491262, 0.0003126643714495003, 0.004056004341691732, 0.00034153382875956595, 0.22924011945724487, 0.36345067620277405], [0.1532689779996872, 0.034383002668619156, 0.02343110926449299, 0.014916395768523216, 0.009058364666998386, 0.04522303491830826, 0.001690057571977377, 0.05718221515417099, 0.3356769382953644], [0.11485268920660019, 0.010244856588542461, 0.0029909468721598387, 0.0029443015810102224, 0.002445399295538664, 0.008238011039793491, 0.00015095675189513713, 0.1396235078573227, 0.3869325816631317], [0.19137787818908691, 0.01847575604915619, 0.017389247193932533, 0.012108166702091694, 0.0026623427402228117, 0.012141812592744827, 0.004095043987035751, 0.2350376546382904, 0.25106942653656006], [0.1774381846189499, 0.018427303060889244, 0.01918407343327999, 0.009497717022895813, 0.001488909823819995, 0.01567409560084343, 0.00342578929848969, 0.2394871860742569, 0.24724702537059784]], [[0.3063393533229828, 0.016823729500174522, 0.02133076824247837, 0.014787032268941402, 0.004586333874613047, 0.008930913172662258, 0.0046145180240273476, 0.02900872379541397, 0.10513562709093094], [0.028736766427755356, 0.017690913751721382, 0.21235576272010803, 0.45701807737350464, 0.05954978987574577, 0.047599636018276215, 0.02696293033659458, 0.030378146097064018, 0.04113154113292694], [0.3970986008644104, 0.014471332542598248, 0.009949607774615288, 0.041678477078676224, 0.019086839631199837, 0.08480267226696014, 0.014518244192004204, 0.09341216087341309, 0.1397390514612198], [0.04054252430796623, 0.0030526411719620228, 0.003028194885700941, 0.0067199477925896645, 0.02198825217783451, 0.18767423927783966, 0.23067983984947205, 0.31219494342803955, 0.0907425507903099], [0.14558541774749756, 0.003993839956820011, 0.001597037073224783, 0.0047955890186131, 0.015098282136023045, 0.10384045541286469, 0.1618817001581192, 0.2784561216831207, 0.19429436326026917], [0.2417854368686676, 0.012175928801298141, 0.005689199548214674, 0.004064121749252081, 0.008398755453526974, 0.04072807356715202, 0.036037832498550415, 0.20900744199752808, 0.2611490786075592], [0.2627291977405548, 0.012396474368870258, 0.0016125416150316596, 0.004647783935070038, 0.007459305692464113, 0.03738383576273918, 0.01006923709064722, 0.20709355175495148, 0.3122168183326721], [0.10630419850349426, 0.016108835116028786, 0.015444967895746231, 0.02033955417573452, 0.007889826782047749, 0.014650100842118263, 0.008080512285232544, 0.06066301465034485, 0.1440199315547943], [0.6476292014122009, 0.016348058357834816, 0.0040677934885025024, 0.014692348428070545, 0.0018367322627454996, 0.00444315280765295, 0.001242246595211327, 0.008662236854434013, 0.11497929692268372]], [[0.09979113936424255, 0.03883330523967743, 0.024698302149772644, 0.04483076557517052, 0.01476182322949171, 0.024045243859291077, 0.02374119870364666, 0.045566145330667496, 0.2279992550611496], [0.09115432947874069, 0.023153360933065414, 0.11604630202054977, 0.20041850209236145, 0.013324467465281487, 0.05764161795377731, 0.03696964681148529, 0.04960782825946808, 0.18983232975006104], [0.07463133335113525, 0.04899638146162033, 0.07019500434398651, 0.028235049918293953, 0.006032094359397888, 0.0024028075858950615, 0.0014688250375911593, 0.03557515889406204, 0.3454008102416992], [0.025600118562579155, 0.0034379849676042795, 0.0003415506216697395, 0.0005461337277665734, 0.0020815925672650337, 0.4802185893058777, 0.42890799045562744, 0.03081451915204525, 0.008687668479979038], [0.03598932921886444, 0.007123661693185568, 0.00096351612592116, 0.06700829416513443, 0.005794658791273832, 0.6877670288085938, 0.050140462815761566, 0.04110276699066162, 0.05055509880185127], [0.05010809004306793, 0.03691926226019859, 0.009549910202622414, 0.10618976503610611, 0.009127706289291382, 0.003283189609646797, 0.036792412400245667, 0.04685065895318985, 0.35068732500076294], [0.017171761021018028, 0.005655510351061821, 0.0009492615354247391, 0.10877551883459091, 0.02639276161789894, 0.7780289053916931, 0.0014328344259411097, 0.008183993399143219, 0.02630131132900715], [0.056040696799755096, 0.0481586717069149, 0.0392625592648983, 0.1332060545682907, 0.03988102450966835, 0.06426862627267838, 0.07791052758693695, 0.033656325191259384, 0.22239747643470764], [0.06940141320228577, 0.033307887613773346, 0.019474318251013756, 0.012008906342089176, 0.0012323374394327402, 0.0044489032588899136, 0.006613615900278091, 0.04443608224391937, 0.4192591607570648]], [[0.07720981538295746, 0.005479374434798956, 0.009653094224631786, 0.004942193161696196, 0.006296050269156694, 0.01879698596894741, 0.0029290001839399338, 0.009101291187107563, 0.10884293913841248], [0.10081841051578522, 0.025208599865436554, 0.10823255777359009, 0.13100038468837738, 0.08873111009597778, 0.19428133964538574, 0.03402477875351906, 0.06430313736200333, 0.09153364598751068], [0.14288413524627686, 0.06653030216693878, 0.0826490968465805, 0.13423201441764832, 0.05755477026104927, 0.24242113530635834, 0.05778031051158905, 0.035578690469264984, 0.022000988945364952], [0.2095443457365036, 0.03183833882212639, 0.10361836105585098, 0.013735993765294552, 0.03363284468650818, 0.29154878854751587, 0.027082743123173714, 0.046949706971645355, 0.08824890106916428], [0.6052699089050293, 0.04618102312088013, 0.041307274252176285, 0.00972806941717863, 0.008821822702884674, 0.06025583669543266, 0.020914316177368164, 0.10611087083816528, 0.054035525768995285], [0.14543011784553528, 0.06284019351005554, 0.1127016618847847, 0.042584896087646484, 0.024357737973332405, 0.23440591990947723, 0.06719357520341873, 0.041610680520534515, 0.044048063457012177], [0.2758655548095703, 0.0684211477637291, 0.0871393010020256, 0.07007474452257156, 0.039556119590997696, 0.17759110033512115, 0.02543524280190468, 0.07229757308959961, 0.07552193105220795], [0.20471413433551788, 0.16547903418540955, 0.053886789828538895, 0.03470611199736595, 0.01586093008518219, 0.05950860306620598, 0.014329487457871437, 0.17287319898605347, 0.1188010722398758], [0.3850259482860565, 0.042620699852705, 0.018977511674165726, 0.01876058056950569, 0.0035124258138239384, 0.015309530310332775, 0.008836154825985432, 0.284096360206604, 0.08778875321149826]], [[0.28848257660865784, 0.01257616002112627, 0.03430843725800514, 0.01477912999689579, 0.0012256235349923372, 0.011869112029671669, 0.0016546170227229595, 0.014108515344560146, 0.052278775721788406], [0.33222827315330505, 0.08015219122171402, 0.1915275603532791, 0.026452526450157166, 0.009152380749583244, 0.0619947649538517, 0.008375460281968117, 0.0412161648273468, 0.10321027785539627], [0.35098302364349365, 0.08266192674636841, 0.1004398837685585, 0.017580751329660416, 0.004722627345472574, 0.02698211371898651, 0.0024964134208858013, 0.04608785733580589, 0.17449690401554108], [0.0868002325296402, 0.08214076608419418, 0.44636648893356323, 0.029118763282895088, 0.024936877191066742, 0.09903780370950699, 0.013524153269827366, 0.006854426581412554, 0.028886616230010986], [0.20907022058963776, 0.07866306602954865, 0.1263018548488617, 0.11595798283815384, 0.008618229068815708, 0.12594379484653473, 0.018959959968924522, 0.0438644140958786, 0.11279072612524033], [0.10368841886520386, 0.1136193498969078, 0.3677966892719269, 0.09205619990825653, 0.020554449409246445, 0.0713471844792366, 0.015230441465973854, 0.010558288544416428, 0.046624623239040375], [0.17326810956001282, 0.13135133683681488, 0.242970809340477, 0.10898085683584213, 0.02750818431377411, 0.0680653303861618, 0.003113165497779846, 0.00896274484694004, 0.09048771858215332], [0.2926902174949646, 0.13678932189941406, 0.04789775237441063, 0.026008330285549164, 0.007970488630235195, 0.02025541663169861, 0.007859368808567524, 0.12335386872291565, 0.15670572221279144], [0.21157123148441315, 0.019517263397574425, 0.005391857586801052, 0.006420148070901632, 0.0008940987754613161, 0.0031574838794767857, 0.0011618149001151323, 0.2074192315340042, 0.26527830958366394]], [[0.05956319347023964, 0.00179675268009305, 0.017128366976976395, 0.0016953638987615705, 0.0006857583066448569, 0.0016695238882675767, 0.0007776255952194333, 0.024795446544885635, 0.0002714041620492935], [0.23613636195659637, 0.14318731427192688, 0.05672837048768997, 0.07801620662212372, 0.027653949335217476, 0.05892806127667427, 0.014872346073389053, 0.016281506046652794, 0.2645290493965149], [0.21454371511936188, 0.1391931027173996, 0.040841612964868546, 0.0954454243183136, 0.08106456696987152, 0.0962277501821518, 0.046839989721775055, 0.02815232053399086, 0.09633154422044754], [0.20170310139656067, 0.1908068209886551, 0.06540999561548233, 0.045815546065568924, 0.042473193258047104, 0.08222468197345734, 0.016856539994478226, 0.011652784422039986, 0.2298145741224289], [0.19613812863826752, 0.1202336922287941, 0.011509637348353863, 0.011758795939385891, 0.006277972832322121, 0.013663249090313911, 0.005513791926205158, 0.008629501797258854, 0.47911304235458374], [0.2702300548553467, 0.1306772381067276, 0.02260442264378071, 0.03576706349849701, 0.021464085206389427, 0.014047701843082905, 0.016266534104943275, 0.02396782673895359, 0.3145864009857178], [0.3473818302154541, 0.19484259188175201, 0.05956964194774628, 0.03729168325662613, 0.017642799764871597, 0.03212764486670494, 0.005095197819173336, 0.009113706648349762, 0.18504053354263306], [0.14215287566184998, 0.10905203223228455, 0.13271881639957428, 0.06678072363138199, 0.055062223225831985, 0.20480968058109283, 0.02073928527534008, 0.00976736843585968, 0.10605435073375702], [0.11422670632600784, 0.03828209638595581, 0.00507381884381175, 0.004419131204485893, 0.009561950340867043, 0.01285400427877903, 0.002909034490585327, 0.01814098097383976, 0.3899940252304077]], [[0.06590607762336731, 0.08417094498872757, 0.030377818271517754, 0.04855623096227646, 0.030268382281064987, 0.04047302156686783, 0.09107440710067749, 0.05338447913527489, 0.06584428995847702], [0.06757715344429016, 0.0675671249628067, 0.09888757020235062, 0.2440209537744522, 0.024376049637794495, 0.06080688163638115, 0.02390352077782154, 0.03119654394686222, 0.06538015604019165], [0.07708651572465897, 0.0774746686220169, 0.21630482375621796, 0.11478409171104431, 0.0349455252289772, 0.1190795749425888, 0.005108577664941549, 0.07545206695795059, 0.08367180824279785], [0.07453086972236633, 0.08956724405288696, 0.037647850811481476, 0.034554578363895416, 0.20350435376167297, 0.15637822449207306, 0.10547322779893875, 0.04996996000409126, 0.04764339700341225], [0.0946265459060669, 0.07392112910747528, 0.008441055193543434, 0.11359913647174835, 0.16658742725849152, 0.16855019330978394, 0.051401760429143906, 0.04358818382024765, 0.07750405371189117], [0.03593434393405914, 0.05929824337363243, 0.07843022793531418, 0.11796325445175171, 0.3195796310901642, 0.1901479810476303, 0.028238395228981972, 0.016250809654593468, 0.026243215426802635], [0.19025366008281708, 0.07703237235546112, 0.0106458505615592, 0.15518680214881897, 0.057999636977910995, 0.06947861611843109, 0.010456075891852379, 0.05313672497868538, 0.13994288444519043], [0.09631843119859695, 0.10552708804607391, 0.06001431122422218, 0.16572625935077667, 0.053799256682395935, 0.03079824335873127, 0.02580343745648861, 0.043431080877780914, 0.07854826003313065], [0.058672234416007996, 0.0571172721683979, 0.037414152175188065, 0.08807271718978882, 0.0670572891831398, 0.0643443614244461, 0.07295747101306915, 0.05352793261408806, 0.03435320034623146]], [[0.2920938730239868, 0.03843783959746361, 0.00454994710162282, 0.016129150986671448, 0.01057481486350298, 0.007902449928224087, 0.006613697856664658, 0.04029064252972603, 0.2139209657907486], [0.23590433597564697, 0.09341491013765335, 0.0005686991498805583, 0.0005786936380900443, 0.00023391096328850836, 0.00042569151264615357, 0.0003405431052669883, 0.043897975236177444, 0.287322074174881], [0.18811707198619843, 0.0016972137382254004, 0.18767330050468445, 0.00016323788440786302, 5.168560892343521e-05, 0.0009534471901133657, 8.584388706367463e-05, 0.1018204540014267, 0.25854259729385376], [0.28926950693130493, 0.0015674886526539922, 9.536379366181791e-05, 0.07221740484237671, 0.0005470728501677513, 0.0002228240336989984, 0.0010531652951613069, 0.019259821623563766, 0.3193008303642273], [0.20780760049819946, 0.0005846386193297803, 1.0100829967996106e-05, 0.0006643246742896736, 0.17330071330070496, 5.8346362493466586e-05, 0.00034883408807218075, 0.005748165771365166, 0.3434559404850006], [0.3277789354324341, 0.001324411015957594, 0.00033646103111095726, 0.000353420851752162, 0.00025029273820109665, 0.03000376746058464, 4.544815055851359e-06, 0.007027946412563324, 0.3152473270893097], [0.2296553999185562, 0.0009228094131685793, 3.078273221035488e-05, 0.0019436333095654845, 0.0003447277413215488, 2.3380230231850874e-06, 0.13296885788440704, 0.0057099550031125546, 0.3332619071006775], [0.3935525417327881, 0.10131669789552689, 0.0077517409808933735, 0.01885724999010563, 0.005897756200283766, 0.0032082691323012114, 0.0014689310919493437, 0.019251234829425812, 0.1920815259218216], [0.3139020502567291, 0.04612087458372116, 0.034567691385746, 0.018136130645871162, 0.014624722301959991, 0.03642646223306656, 0.0028493322897702456, 0.06824260950088501, 0.15243707597255707]], [[0.22404423356056213, 0.009187303483486176, 0.030839409679174423, 0.003122019814327359, 0.00626831641420722, 0.0075899092480540276, 0.001497644349001348, 0.016502829268574715, 0.11780377477407455], [0.2127855122089386, 0.028610223904252052, 0.011633998714387417, 0.022930029779672623, 0.0068074800074100494, 0.01159227266907692, 0.006404152140021324, 0.16352684795856476, 0.30165189504623413], [0.24353277683258057, 0.04662283882498741, 0.05093754455447197, 0.016677314415574074, 0.006513838656246662, 0.010542158037424088, 0.005945499986410141, 0.07141199707984924, 0.26227810978889465], [0.2752525210380554, 0.04256882891058922, 0.008304232731461525, 0.04304187372326851, 0.0323055200278759, 0.014715862460434437, 0.006687971297651529, 0.2134365737438202, 0.19429191946983337], [0.32165247201919556, 0.0450129359960556, 0.011882772669196129, 0.09307406097650528, 0.04269018396735191, 0.03969000279903412, 0.01161148026585579, 0.1484362930059433, 0.1635918766260147], [0.18568414449691772, 0.09832528978586197, 0.03872985765337944, 0.13517391681671143, 0.11998328566551208, 0.03997296094894409, 0.031380970031023026, 0.12693044543266296, 0.09478933364152908], [0.16496127843856812, 0.047331273555755615, 0.009102138690650463, 0.06733017414808273, 0.035812873393297195, 0.030542360618710518, 0.006878948770463467, 0.31680160760879517, 0.17043671011924744], [0.19085519015789032, 0.06018442288041115, 0.011834525503218174, 0.08649411052465439, 0.019225798547267914, 0.011613625101745129, 0.012696342542767525, 0.19684702157974243, 0.20097532868385315], [0.30690258741378784, 0.02679472230374813, 0.011255483143031597, 0.02604091912508011, 0.012265798635780811, 0.00618348503485322, 0.004539648536592722, 0.09630091488361359, 0.2539031207561493]], [[0.09703102707862854, 0.03220197558403015, 0.005146260838955641, 0.019691308960318565, 0.0015193107537925243, 0.013793233782052994, 0.002776895882561803, 0.06201622262597084, 0.3223714232444763], [0.17076697945594788, 0.0997667908668518, 0.02683289907872677, 0.015133483335375786, 0.01018153689801693, 0.01725509762763977, 0.011523970402777195, 0.07351073622703552, 0.16353842616081238], [0.2783249318599701, 0.02409948594868183, 0.03177265450358391, 0.0024664346128702164, 0.0008172832312993705, 0.0029011291917413473, 0.001166883739642799, 0.09870889782905579, 0.19315457344055176], [0.26640909910202026, 0.009586221538484097, 0.005568946711719036, 0.049182627350091934, 0.002268919488415122, 0.02529790624976158, 0.005396824795752764, 0.04639700427651405, 0.21966488659381866], [0.25860005617141724, 0.014897421933710575, 0.0019000177271664143, 0.00768154626712203, 0.00138087198138237, 0.01306932047009468, 0.004856158513575792, 0.10667171329259872, 0.2330295592546463], [0.299007385969162, 0.013951770961284637, 0.008937290869653225, 0.01354428380727768, 0.0009622995858080685, 0.006932614836841822, 0.002046124078333378, 0.12154050916433334, 0.20369122922420502], [0.26717832684516907, 0.021424047648906708, 0.005397978704422712, 0.007558157667517662, 0.0014462074032053351, 0.013391975313425064, 0.003012719564139843, 0.055652618408203125, 0.2632453143596649], [0.0903635323047638, 0.04783948138356209, 0.021035343408584595, 0.03132093325257301, 0.03722129389643669, 0.05907224491238594, 0.013983873650431633, 0.11372509598731995, 0.0825207456946373], [0.10567986965179443, 0.029719671234488487, 0.016413334757089615, 0.011662883684039116, 0.02987338788807392, 0.047923047095537186, 0.01618053950369358, 0.16713537275791168, 0.12307479977607727]]], [[[0.010973572731018066, 0.014845030382275581, 0.022055495530366898, 0.0026220425497740507, 0.007935742847621441, 0.01486633438616991, 0.009585713967680931, 0.02672129124403, 0.5104263424873352], [0.016189008951187134, 0.01502901315689087, 0.40647879242897034, 0.005121450871229172, 0.11581943929195404, 0.14942428469657898, 0.13546043634414673, 0.015917088836431503, 0.04806835576891899], [0.02789466083049774, 0.028451690450310707, 0.027696767821907997, 0.000520958739798516, 0.01085966918617487, 0.03831902891397476, 0.030618218705058098, 0.01882346160709858, 0.42063966393470764], [0.014665553346276283, 0.4109187424182892, 0.1008564829826355, 0.0032074612099677324, 0.0436251126229763, 0.1706613004207611, 0.06259061396121979, 0.012122035957872868, 0.08356226235628128], [0.01300919521600008, 0.2089272290468216, 0.06511922180652618, 0.023526335135102272, 0.029193414375185966, 0.25744959712028503, 0.1908273845911026, 0.022318068891763687, 0.0692194476723671], [0.047366488724946976, 0.07275886833667755, 0.14623956382274628, 0.16915209591388702, 0.051790446043014526, 0.02008923329412937, 0.06735452264547348, 0.09909037500619888, 0.11704691499471664], [0.018365757539868355, 0.05502869933843613, 0.031771980226039886, 0.7670526504516602, 0.034072138369083405, 0.04932161048054695, 0.0013193270424380898, 0.018009938299655914, 0.008231310173869133], [0.04401952400803566, 0.03226006031036377, 0.14829698204994202, 0.02315174601972103, 0.06532474607229233, 0.12351652979850769, 0.01807529293000698, 0.051587626338005066, 0.23651264607906342], [0.008014025166630745, 0.002453271532431245, 0.002284110290929675, 0.0005950079066678882, 0.0009291530004702508, 0.0014843737008050084, 0.0009571752743795514, 0.009511671029031277, 0.512028157711029]], [[0.12759742140769958, 0.002641474362462759, 0.018322398886084557, 0.0009617983014322817, 0.0003980716865044087, 0.0021033675875514746, 0.0011466017458587885, 0.005177818238735199, 0.2399589568376541], [0.05798911675810814, 0.01655115932226181, 0.21509882807731628, 0.0039933170191943645, 0.0006378262769430876, 0.009745080024003983, 0.0018475927645340562, 0.030218685045838356, 0.33957552909851074], [0.011131302453577518, 0.0037082000635564327, 0.3892751932144165, 0.004684797488152981, 0.0028307328466326, 0.013075975701212883, 0.005537704098969698, 0.007429618388414383, 0.2873665988445282], [0.07821319252252579, 0.034390296787023544, 0.08508602529764175, 0.0049172090366482735, 0.0010389633243903518, 0.023218179121613503, 0.00403863238170743, 0.03876839578151703, 0.3807511329650879], [0.04820982366800308, 0.026434097439050674, 0.04411632567644119, 0.00512579595670104, 0.0006215384928509593, 0.018394887447357178, 0.005331367254257202, 0.11766041815280914, 0.3907431364059448], [0.09430507570505142, 0.026930296793580055, 0.039912737905979156, 0.005324020516127348, 0.0009463638998568058, 0.017952777445316315, 0.0044166757725179195, 0.03244282305240631, 0.4042772650718689], [0.014356883242726326, 0.013352934271097183, 0.011027355678379536, 0.002892084186896682, 0.00046779081458225846, 0.0040612113662064075, 0.0005426998832263052, 0.03641800582408905, 0.4880227744579315], [0.08017683774232864, 0.031582266092300415, 0.1411472111940384, 0.00836728885769844, 0.0022520816419273615, 0.014069038443267345, 0.005743908695876598, 0.04028191789984703, 0.33867013454437256], [0.09928568452596664, 0.01973758265376091, 0.03508320450782776, 0.00711445277556777, 0.0009905463084578514, 0.0034138828050345182, 0.002053978154435754, 0.11052355915307999, 0.325686514377594]], [[0.03353704512119293, 0.004694098141044378, 0.025402426719665527, 0.006758269853889942, 0.009840640239417553, 0.024118728935718536, 0.012706905603408813, 0.03391854465007782, 0.3314789831638336], [0.013683877885341644, 0.027670934796333313, 0.03765421733260155, 0.021852822974324226, 0.005495890974998474, 0.02996671013534069, 0.08865571767091751, 0.03588790073990822, 0.39578983187675476], [0.025705086067318916, 0.04889628291130066, 0.07281841337680817, 0.0016010240651667118, 0.0006987453089095652, 0.006124191917479038, 0.01375453919172287, 0.02647683396935463, 0.3953234851360321], [0.01923833042383194, 0.09826676547527313, 0.06297760456800461, 0.015220953151583672, 0.006857878994196653, 0.007348500192165375, 0.012302327901124954, 0.028309660032391548, 0.3820899724960327], [0.007056498900055885, 0.04310993477702141, 0.05480656027793884, 0.43375951051712036, 0.013916335999965668, 0.0050793858245015144, 0.013597850687801838, 0.023951562121510506, 0.20993900299072266], [0.003572630463168025, 0.017683137208223343, 0.07362271100282669, 0.7128459811210632, 0.05613403767347336, 0.0027720273938030005, 0.014338690787553787, 0.008431363850831985, 0.053321585059165955], [0.0020653174724429846, 0.01215394027531147, 0.006761945318430662, 0.9123800992965698, 0.020709101110696793, 0.0011311762500554323, 0.00029579075635410845, 0.0023370953276753426, 0.020108764991164207], [0.04648226499557495, 0.02777552604675293, 0.03084980510175228, 0.05609253793954849, 0.039116088300943375, 0.27781447768211365, 0.022532960399985313, 0.05209442600607872, 0.21780811250209808], [0.021380115300416946, 0.007451274432241917, 0.02679167129099369, 0.009715354070067406, 0.01041471492499113, 0.02453741803765297, 0.022088997066020966, 0.0370662659406662, 0.36317312717437744]], [[0.015340819023549557, 0.039972566068172455, 0.173325315117836, 0.08965891599655151, 0.20859722793102264, 0.19164416193962097, 0.1145470142364502, 0.04613492265343666, 0.0662824958562851], [0.10709633678197861, 0.07283935695886612, 0.15425942838191986, 0.04153507202863693, 0.017221730202436447, 0.05370108783245087, 0.03696885332465172, 0.12750950455665588, 0.2103251814842224], [0.14431950449943542, 0.07073533535003662, 0.01710463874042034, 0.015207719057798386, 0.03428482264280319, 0.05912376940250397, 0.010197699069976807, 0.05737580731511116, 0.28605106472969055], [0.08174649626016617, 0.057545844465494156, 0.07483689486980438, 0.007350401487201452, 0.003945960663259029, 0.03843236342072487, 0.018390337005257607, 0.0839841365814209, 0.334446519613266], [0.06425239145755768, 0.035323187708854675, 0.09783182293176651, 0.03267088904976845, 0.01850711926817894, 0.15324881672859192, 0.030414724722504616, 0.06134774535894394, 0.2496424913406372], [0.04493410140275955, 0.07069997489452362, 0.075708769261837, 0.012936316430568695, 0.06519918888807297, 0.06192650645971298, 0.072085902094841, 0.1528291553258896, 0.18797913193702698], [0.08976485580205917, 0.06796978414058685, 0.043668922036886215, 0.02196810208261013, 0.028072841465473175, 0.08977725356817245, 0.025965522974729538, 0.11346259713172913, 0.2186966836452484], [0.09163565188646317, 0.029838059097528458, 0.06207060441374779, 0.034162405878305435, 0.011816048063337803, 0.04278750717639923, 0.03643510490655899, 0.07961342483758926, 0.31168997287750244], [0.055009081959724426, 0.016647810116410255, 0.032131969928741455, 0.022200580686330795, 0.023030877113342285, 0.0218951478600502, 0.022324176505208015, 0.06163572892546654, 0.310249388217926]], [[0.08785546571016312, 0.023154892027378082, 0.06429734826087952, 0.031786054372787476, 0.01862933672964573, 0.005499887280166149, 0.014141811057925224, 0.016133353114128113, 0.13085180521011353], [0.050355229526758194, 0.029105104506015778, 0.1870446503162384, 0.00807579793035984, 0.007529054768383503, 0.006330855656415224, 0.01622489094734192, 0.019295884296298027, 0.06541924923658371], [0.022724397480487823, 0.04422933980822563, 0.5426883697509766, 0.0024908646009862423, 0.0013878637691959739, 0.00812041386961937, 0.000753621687181294, 0.03339673578739166, 0.13236024975776672], [0.09590562433004379, 0.03011862188577652, 0.019929463043808937, 0.016256431117653847, 0.03461933881044388, 0.12509606778621674, 0.048083506524562836, 0.029528716579079628, 0.13458402454853058], [0.07536934316158295, 0.009664124809205532, 0.0061071328818798065, 0.040697697550058365, 0.12455844134092331, 0.27005907893180847, 0.022782867774367332, 0.02231401391327381, 0.11287368088960648], [0.09464231878519058, 0.017008045688271523, 0.08113357424736023, 0.009828610345721245, 0.011414406821131706, 0.3514114320278168, 0.0028048157691955566, 0.022607969120144844, 0.1563003808259964], [0.09787283092737198, 0.025256548076868057, 0.018364306539297104, 0.012211504392325878, 0.011416743509471416, 0.043396636843681335, 0.009356028400361538, 0.008607021532952785, 0.3004753589630127], [0.1900794953107834, 0.04235231876373291, 0.05770864710211754, 0.04342237114906311, 0.016603482887148857, 0.015736976638436317, 0.010431384667754173, 0.048416830599308014, 0.23508548736572266], [0.11443354189395905, 0.026537958532571793, 0.04224732518196106, 0.02834514155983925, 0.01429543737322092, 0.01624898612499237, 0.016276659443974495, 0.03218364715576172, 0.21034273505210876]], [[0.1809348315000534, 0.033141739666461945, 0.06134340167045593, 0.02586374059319496, 0.05698597431182861, 0.04101647809147835, 0.004441611468791962, 0.10319960862398148, 0.1605917066335678], [0.15892164409160614, 0.028050478547811508, 0.07106715440750122, 0.013302326202392578, 0.007649114355444908, 0.02539973519742489, 0.010387849994003773, 0.07051824033260345, 0.2318175733089447], [0.22064755856990814, 0.020712655037641525, 0.012760325334966183, 0.001798607292585075, 0.0005470352480188012, 0.0029742869082838297, 0.0014105021255090833, 0.09252924472093582, 0.17975394427776337], [0.12044814229011536, 0.025374386459589005, 0.04100681468844414, 0.01499580591917038, 0.006589438766241074, 0.029443036764860153, 0.0057571809738874435, 0.11901312321424484, 0.24544933438301086], [0.1839444488286972, 0.0174009520560503, 0.010004132054746151, 0.00861404836177826, 0.0006338510429486632, 0.002299963729456067, 0.0011391380103304982, 0.08039058744907379, 0.28471216559410095], [0.11486341059207916, 0.03624719753861427, 0.0134811382740736, 0.006569850258529186, 0.00294834328815341, 0.0005973271909169853, 0.003312266431748867, 0.12410323321819305, 0.26272472739219666], [0.08492541313171387, 0.02624005638062954, 0.027497906237840652, 0.01105910912156105, 0.0075006973929703236, 0.013003512285649776, 0.0016043659998103976, 0.0713658258318901, 0.360696405172348], [0.1624777913093567, 0.027494650334119797, 0.05821574851870537, 0.02999340370297432, 0.01853119768202305, 0.04037367179989815, 0.014206945896148682, 0.062569260597229, 0.2407609075307846], [0.13489772379398346, 0.025231139734387398, 0.04954930394887924, 0.018095532432198524, 0.01167614571750164, 0.024128669872879982, 0.012124291621148586, 0.04891978204250336, 0.2794085443019867]], [[0.04505026340484619, 0.07827166467905045, 0.09604855626821518, 0.06703030318021774, 0.23643259704113007, 0.1305006593465805, 0.06686779856681824, 0.039583705365657806, 0.1435745507478714], [0.04302670806646347, 0.18307147920131683, 0.3858429193496704, 0.060169100761413574, 0.05653582885861397, 0.13165165483951569, 0.040114887058734894, 0.022694824263453484, 0.04527638107538223], [0.06647341698408127, 0.21464712917804718, 0.18111227452754974, 0.08106967806816101, 0.06356227397918701, 0.1531333029270172, 0.05150916799902916, 0.050863295793533325, 0.07258130609989166], [0.03321882709860802, 0.04381920024752617, 0.4958009421825409, 0.03320477902889252, 0.04940241202712059, 0.2221946120262146, 0.0426170788705349, 0.016729939728975296, 0.028828183189034462], [0.02683352120220661, 0.04418424516916275, 0.2801573574542999, 0.02494996041059494, 0.09292231500148773, 0.3552698493003845, 0.09073033183813095, 0.01957930251955986, 0.029605014249682426], [0.037976719439029694, 0.10211415588855743, 0.4872848689556122, 0.02763751707971096, 0.0563923642039299, 0.12361831218004227, 0.043926745653152466, 0.03664442524313927, 0.03746054694056511], [0.03187292441725731, 0.06969163566827774, 0.4894663393497467, 0.028749506920576096, 0.06464357674121857, 0.1943855881690979, 0.03190024942159653, 0.011887723580002785, 0.03328375518321991], [0.099598728120327, 0.09981101751327515, 0.214353546500206, 0.07058857381343842, 0.0767793208360672, 0.14559821784496307, 0.0343535877764225, 0.06324350088834763, 0.09045762568712234], [0.07443418353796005, 0.061020322144031525, 0.0679527148604393, 0.043880853801965714, 0.07231029868125916, 0.09181582927703857, 0.06746522337198257, 0.026687515899538994, 0.13615556061267853]], [[0.10569038987159729, 0.004502948839217424, 0.024079453200101852, 0.0019498660694807768, 0.008209453895688057, 0.006098884157836437, 0.0007605664432048798, 0.00700840400531888, 0.1101892814040184], [0.01661662384867668, 0.017693854868412018, 0.04413176700472832, 0.1434410661458969, 0.28888261318206787, 0.08839625120162964, 0.04850517585873604, 0.07484479993581772, 0.06788218021392822], [0.04257485270500183, 0.021575259044766426, 0.05844569578766823, 0.06782323122024536, 0.2267894148826599, 0.2655283212661743, 0.047566529363393784, 0.03137277439236641, 0.025749782100319862], [0.007998867891728878, 0.04369574412703514, 0.04430621117353439, 0.013546271249651909, 0.516044020652771, 0.09230825304985046, 0.03511795401573181, 0.06353548169136047, 0.06222856417298317], [0.013206902891397476, 0.06892095506191254, 0.06805934756994247, 0.022713949903845787, 0.18156558275222778, 0.06249779462814331, 0.019695373252034187, 0.07547712326049805, 0.24700523912906647], [0.019461866468191147, 0.14723049104213715, 0.17949983477592468, 0.02210823819041252, 0.23121105134487152, 0.1149429976940155, 0.03185036778450012, 0.040695395320653915, 0.05639510601758957], [0.005909941624850035, 0.06017109751701355, 0.10025863349437714, 0.019689301028847694, 0.3750649094581604, 0.05171928182244301, 0.015745749697089195, 0.023602813482284546, 0.14339686930179596], [0.046112217009067535, 0.02968369424343109, 0.046950262039899826, 0.015041546896100044, 0.013082603923976421, 0.03571481630206108, 0.004960290621966124, 0.03936168923974037, 0.38922595977783203], [0.017157990485429764, 0.002983150305226445, 0.006804634816944599, 0.0027990450616925955, 0.0011747486423701048, 0.003979094792157412, 0.0017815124010667205, 0.010740444995462894, 0.4637400805950165]], [[0.027814464643597603, 0.00443950155749917, 0.001397183514200151, 0.0002083857252728194, 3.7494246498681605e-05, 2.5386454581166618e-05, 6.328503513941541e-05, 0.10604330897331238, 0.3530377149581909], [0.017247455194592476, 0.0635785162448883, 0.0003088406811002642, 0.00918903760612011, 0.003995424136519432, 0.00029191700741648674, 0.0030890253838151693, 0.4550129473209381, 0.22965870797634125], [0.08090569823980331, 0.023964224383234978, 0.0034951448906213045, 0.004027833696454763, 0.00045044918078929186, 0.001151670003309846, 0.0013968851417303085, 0.35301870107650757, 0.2309027761220932], [0.03885795176029205, 0.030222663655877113, 0.0004996481584385037, 0.027570238336920738, 0.004759231582283974, 0.0008631166419945657, 0.0041338312439620495, 0.38542884588241577, 0.2475583255290985], [0.040752727538347244, 0.011801348067820072, 0.0002076939563266933, 0.0039470805786550045, 0.00039983310853131115, 0.0002750149287749082, 0.003061619820073247, 0.22722549736499786, 0.3695653975009918], [0.05699879676103592, 0.012757841497659683, 0.0006037218845449388, 0.01760265603661537, 0.0016631146427243948, 0.0009390802006237209, 0.010467324405908585, 0.26976048946380615, 0.31057092547416687], [0.048304278403520584, 0.056071698665618896, 0.0005962568102404475, 0.08050277084112167, 0.014024152420461178, 0.0012392849894240499, 0.07517539709806442, 0.21622328460216522, 0.21104072034358978], [0.02489214763045311, 0.025456756353378296, 0.002090893452987075, 0.006484267767518759, 0.0018003651639446616, 0.0015537601429969072, 0.008195525966584682, 0.5817081928253174, 0.16377954185009003], [0.0938885509967804, 0.021537013351917267, 0.05297676846385002, 0.025926677510142326, 0.017236994579434395, 0.029053302481770515, 0.021106939762830734, 0.06421677023172379, 0.227000892162323]], [[0.043620459735393524, 0.013688149861991405, 0.02132270112633705, 0.012352613732218742, 0.013686364516615868, 0.010911471210420132, 0.007792664226144552, 0.017630450427532196, 0.351685106754303], [0.14627765119075775, 0.05319944769144058, 0.056452568620443344, 0.03184007480740547, 0.012775368057191372, 0.0455734021961689, 0.01638052612543106, 0.05094487592577934, 0.24672669172286987], [0.08936890959739685, 0.02511894516646862, 0.05725555121898651, 0.04902644455432892, 0.009916485287249088, 0.03211624547839165, 0.0037467998918145895, 0.07195933163166046, 0.2864566743373871], [0.13999269902706146, 0.018951119855046272, 0.02788049355149269, 0.04758515581488609, 0.02192053012549877, 0.02668548934161663, 0.022239435464143753, 0.054796379059553146, 0.2883114814758301], [0.08490943163633347, 0.002907664980739355, 0.003745162859559059, 0.013621503487229347, 0.05931868031620979, 0.025828076526522636, 0.015385743230581284, 0.020315563306212425, 0.37028348445892334], [0.10593833774328232, 0.012201346457004547, 0.04250318929553032, 0.026644155383110046, 0.05352950096130371, 0.04255330562591553, 0.013822122476994991, 0.03099014423787594, 0.32150712609291077], [0.09868654608726501, 0.00935771781951189, 0.005823832005262375, 0.04432849958539009, 0.041400305926799774, 0.02160206437110901, 0.027517473325133324, 0.010422823019325733, 0.3399529755115509], [0.11371080577373505, 0.02888372540473938, 0.04148754104971886, 0.027976270765066147, 0.01440836489200592, 0.05102725699543953, 0.01490216888487339, 0.03502277284860611, 0.3206639587879181], [0.07055298238992691, 0.02385905012488365, 0.032811734825372696, 0.01843986101448536, 0.010287412442266941, 0.020103586837649345, 0.015521356835961342, 0.028571221977472305, 0.30834975838661194]], [[0.3714202344417572, 0.0008082580752670765, 0.004921107552945614, 0.0023124022409319878, 0.008429822511970997, 0.0027803501579910517, 0.0009329549502581358, 0.01018022932112217, 0.09070379287004471], [0.08675972372293472, 0.14067769050598145, 0.04812515527009964, 0.020088035613298416, 0.009617242030799389, 0.010450584813952446, 0.012499835342168808, 0.1748732030391693, 0.21748565137386322], [0.0725293755531311, 0.20923903584480286, 0.021027274429798126, 0.0720900148153305, 0.00836713332682848, 0.007222120650112629, 0.027240678668022156, 0.06309737265110016, 0.23385873436927795], [0.09022903442382812, 0.08880352228879929, 0.045566968619823456, 0.055039409548044205, 0.024568656459450722, 0.01271827332675457, 0.02863866277039051, 0.07884790748357773, 0.14280861616134644], [0.04574602097272873, 0.029647450894117355, 0.0055162603966891766, 0.11889509111642838, 0.007876790128648281, 0.005999610759317875, 0.04275389015674591, 0.04547538980841637, 0.33794835209846497], [0.10450854152441025, 0.11485996097326279, 0.01758735440671444, 0.08051685243844986, 0.012055641040205956, 0.005192741751670837, 0.030473876744508743, 0.05221586301922798, 0.2058601975440979], [0.02574041299521923, 0.02472294680774212, 0.0030025034211575985, 0.006111004389822483, 0.0012865137541666627, 0.0005421321257017553, 0.0017117687966674566, 0.051031507551670074, 0.4672141671180725], [0.058831315487623215, 0.0640510842204094, 0.038923509418964386, 0.08385838568210602, 0.05578083544969559, 0.036258772015571594, 0.024347303435206413, 0.14084777235984802, 0.21024928987026215], [0.03716424107551575, 0.007060617674142122, 0.005000311881303787, 0.0021905212197452784, 0.0008960714330896735, 0.0014025680720806122, 0.0009846178581938148, 0.027591759338974953, 0.4532669186592102]], [[0.15393738448619843, 0.01451246626675129, 0.006779943127185106, 0.015984809026122093, 0.045987557619810104, 0.002752251224592328, 0.013063582591712475, 0.0060724602080881596, 0.12599165737628937], [0.034783586859703064, 0.3728260397911072, 0.009114244021475315, 0.014268873259425163, 0.18110573291778564, 0.014605076983571053, 0.012200742959976196, 0.002340237610042095, 0.06465550512075424], [0.012023315764963627, 0.08860528469085693, 0.006199287716299295, 0.08796359598636627, 0.19533425569534302, 0.00969691015779972, 0.06508167833089828, 0.007929005660116673, 0.15826885402202606], [0.04062730073928833, 0.027490030974149704, 0.00611188355833292, 0.1476425677537918, 0.5342229008674622, 0.011233964003622532, 0.02660192735493183, 0.004702100995928049, 0.06623287498950958], [0.011914280243217945, 0.015027663670480251, 0.006231158040463924, 0.0649731382727623, 0.43866267800331116, 0.004818764049559832, 0.02903776802122593, 0.0004989375593140721, 0.12065409868955612], [0.0030737738125026226, 0.020720308646559715, 0.002378624863922596, 0.0500325933098793, 0.6631656289100647, 0.0025604998227208853, 0.020892580971121788, 0.0023408210836350918, 0.05305691435933113], [0.03150756284594536, 0.018566293641924858, 0.00775852520018816, 0.09674064069986343, 0.2249096930027008, 0.00307087623514235, 0.01168697327375412, 0.0054312776774168015, 0.18694360554218292], [0.20167523622512817, 0.0012210005661472678, 0.009347226470708847, 0.0005275291041471064, 0.002158051822334528, 0.022112125530838966, 0.00027390773175284266, 0.7498869895935059, 0.003161301137879491], [0.3392258882522583, 0.0003474419645499438, 0.017697548493742943, 0.00034864433109760284, 0.00013859718455933034, 0.011854150332510471, 9.607461834093556e-05, 0.5260440707206726, 0.04609724506735802]]], [[[0.18927259743213654, 0.010431046597659588, 0.12248282879590988, 0.044441480189561844, 0.1381075382232666, 0.18259955942630768, 0.0030434122309088707, 0.05265072360634804, 0.09715093672275543], [0.4576168954372406, 0.01333136297762394, 0.008512655273079872, 0.016376031562685966, 0.011698503978550434, 0.0038609658367931843, 0.002805528463795781, 0.03832927718758583, 0.16091957688331604], [0.16821084916591644, 0.022766562178730965, 0.006992377806454897, 0.02717471495270729, 0.0031743382569402456, 0.0053077805787324905, 0.0024549546651542187, 0.10692514479160309, 0.24381498992443085], [0.29126155376434326, 0.010545321740210056, 0.019259599968791008, 0.01185180339962244, 0.009268714115023613, 0.01224701851606369, 0.002227277494966984, 0.04898959398269653, 0.23437990248203278], [0.33959028124809265, 0.004307648167014122, 0.007359442766755819, 0.006935570389032364, 0.002156347967684269, 0.006591904908418655, 0.0018830867484211922, 0.10025899112224579, 0.22600360214710236], [0.18910112977027893, 0.025402596220374107, 0.010071770288050175, 0.020809605717658997, 0.005389074329286814, 0.003959559835493565, 0.005513504613190889, 0.14725041389465332, 0.22948172688484192], [0.18233320116996765, 0.010200539603829384, 0.009599958546459675, 0.01268526166677475, 0.0052976966835558414, 0.004495667759329081, 0.0024324727710336447, 0.06085687503218651, 0.31485700607299805], [0.6423034071922302, 0.005870582535862923, 0.01827112026512623, 0.021719224750995636, 0.041319411247968674, 0.01613541692495346, 0.0011786763789132237, 0.02372727170586586, 0.0688328742980957], [0.026845688000321388, 0.0043416875414550304, 0.011359176598489285, 0.003751387819647789, 0.002859462983906269, 0.0083563681691885, 0.0028680728282779455, 0.05268212780356407, 0.41785967350006104]], [[0.0174055527895689, 0.0008041482651606202, 0.005415774881839752, 0.005430548917502165, 0.007022784557193518, 0.011655040085315704, 0.004077734425663948, 0.0031429261434823275, 0.20425714552402496], [0.03756609559059143, 0.006432707887142897, 0.10978108644485474, 0.049905404448509216, 0.05798760801553726, 0.47537466883659363, 0.11170471459627151, 0.00948326289653778, 0.032491523772478104], [0.14121782779693604, 0.025699904188513756, 0.10492323338985443, 0.06693383306264877, 0.062403906136751175, 0.15459267795085907, 0.013577568344771862, 0.03130374103784561, 0.12446609884500504], [0.018767958506941795, 0.007196382619440556, 0.12685152888298035, 0.0076694912277162075, 0.08767466992139816, 0.29656198620796204, 0.10521198809146881, 0.022935686632990837, 0.1381455808877945], [0.012743240222334862, 0.006293843500316143, 0.03677865490317345, 0.045493800193071365, 0.01767962984740734, 0.09241805225610733, 0.021722158417105675, 0.01710713841021061, 0.3714589774608612], [0.009583891369402409, 0.011033361777663231, 0.04552806541323662, 0.05745559558272362, 0.03182575851678848, 0.020797912031412125, 0.018088068813085556, 0.05869559571146965, 0.36804962158203125], [0.005887715145945549, 0.0017569750780239701, 0.03319530934095383, 0.03500526398420334, 0.047948453575372696, 0.11323526501655579, 0.019043460488319397, 0.012303123250603676, 0.35033300518989563], [0.03928348422050476, 0.010921375826001167, 0.12296735495328903, 0.05201724171638489, 0.06250567734241486, 0.18986988067626953, 0.04174082726240158, 0.045394670218229294, 0.19477318227291107], [0.008005880750715733, 0.0028870662208646536, 0.0030952156521379948, 0.0021079606376588345, 0.0017723506316542625, 0.004175329115241766, 0.0015474167885258794, 0.01918380707502365, 0.47835928201675415]], [[0.05782919004559517, 0.004385638516396284, 0.007083403877913952, 0.004566224291920662, 0.00531862722709775, 0.0044893985614180565, 0.0014594682725146413, 0.0009645286481827497, 0.05730512738227844], [0.08099692314863205, 0.04769745096564293, 0.08576824516057968, 0.08670607954263687, 0.08900582790374756, 0.12557728588581085, 0.046022556722164154, 0.019154828041791916, 0.19895946979522705], [0.11970715969800949, 0.03750305250287056, 0.05213442072272301, 0.08544757962226868, 0.06184489652514458, 0.048627447336912155, 0.04167449474334717, 0.013329438865184784, 0.25854194164276123], [0.058117642998695374, 0.06061365082859993, 0.28099334239959717, 0.046413976699113846, 0.09239953011274338, 0.16530562937259674, 0.02536696009337902, 0.005575292278081179, 0.11852320283651352], [0.05503857508301735, 0.06344094127416611, 0.2773861587047577, 0.04516499117016792, 0.02277582325041294, 0.08959808200597763, 0.0358562171459198, 0.004877686966210604, 0.20451001822948456], [0.09637878090143204, 0.03728623688220978, 0.15503662824630737, 0.060819681733846664, 0.09520745277404785, 0.049415506422519684, 0.024210099130868912, 0.005593512672930956, 0.23579616844654083], [0.03324959799647331, 0.07174746692180634, 0.11341799795627594, 0.04136042669415474, 0.026665732264518738, 0.10508661717176437, 0.017370909452438354, 0.010711060836911201, 0.28765395283699036], [0.14671023190021515, 0.05794450268149376, 0.2770603597164154, 0.0366293340921402, 0.11070644855499268, 0.18868589401245117, 0.023222271353006363, 0.03035949543118477, 0.05243919417262077], [0.01790616102516651, 0.005568797700107098, 0.009265738539397717, 0.005200357176363468, 0.003629591315984726, 0.003195792669430375, 0.0022376838605850935, 0.08739952743053436, 0.4125373959541321]], [[0.18975551426410675, 0.28629159927368164, 0.2007616013288498, 0.03271638602018356, 0.1258750855922699, 0.07203998416662216, 0.033064503222703934, 0.0237827580422163, 0.007570752874016762], [0.12268954515457153, 0.29665079712867737, 0.20158503949642181, 0.13312841951847076, 0.06263607740402222, 0.029887787997722626, 0.09609538316726685, 0.04585343971848488, 0.002560230204835534], [0.09834279865026474, 0.0444544292986393, 0.294821172952652, 0.09888062626123428, 0.06472521275281906, 0.10571271181106567, 0.2087022364139557, 0.07377003878355026, 0.0036772144958376884], [0.20053023099899292, 0.1995178759098053, 0.08394993841648102, 0.039753057062625885, 0.1017308458685875, 0.11949076503515244, 0.0353693850338459, 0.20238079130649567, 0.0037203552201390266], [0.24109521508216858, 0.06905506551265717, 0.18498580157756805, 0.05258743464946747, 0.03267315402626991, 0.14198490977287292, 0.14849670231342316, 0.08981669694185257, 0.013725503347814083], [0.08579378575086594, 0.0538950189948082, 0.2694253623485565, 0.0670529305934906, 0.11867348104715347, 0.24133417010307312, 0.12008015066385269, 0.0385066457092762, 0.0015596980229020119], [0.22816912829875946, 0.11075137555599213, 0.18351751565933228, 0.0603143647313118, 0.10824733227491379, 0.09826086461544037, 0.12833592295646667, 0.06259866803884506, 0.007371312938630581], [0.07802582532167435, 0.12547588348388672, 0.317453533411026, 0.06928490102291107, 0.16141177713871002, 0.0838765949010849, 0.09871988743543625, 0.03093957155942917, 0.005233691539615393], [0.06502555310726166, 7.126542186597362e-05, 0.020700860768556595, 0.0038387258537113667, 0.007685459218919277, 0.04076838865876198, 0.045081835240125656, 0.23812291026115417, 0.23148119449615479]], [[0.10778369009494781, 0.0232497937977314, 0.03110782615840435, 0.013731193728744984, 0.015079586766660213, 0.023576319217681885, 0.007709394674748182, 0.05609725043177605, 0.22407540678977966], [0.05314109846949577, 0.05907800793647766, 0.13679544627666473, 0.07387401163578033, 0.03131458908319473, 0.07529086619615555, 0.0689331516623497, 0.06880965083837509, 0.14657367765903473], [0.07213469594717026, 0.08035585284233093, 0.004166534636169672, 0.09203176200389862, 0.11806591600179672, 0.0749470666050911, 0.1191972866654396, 0.08482915908098221, 0.13209310173988342], [0.07898479700088501, 0.0479356087744236, 0.12577833235263824, 0.04626356437802315, 0.009973617270588875, 0.027034349739551544, 0.008731257170438766, 0.09568220376968384, 0.20882639288902283], [0.10369876027107239, 0.018532918766140938, 0.1902623176574707, 0.011236610822379589, 0.002089608693495393, 0.06078362837433815, 0.021155675873160362, 0.10914039611816406, 0.1801401972770691], [0.07788316905498505, 0.05426955595612526, 0.12573187053203583, 0.019936494529247284, 0.03333894908428192, 0.004992308560758829, 0.05528872832655907, 0.08208587765693665, 0.1532691866159439], [0.06192693114280701, 0.03334799036383629, 0.17852658033370972, 0.012649052776396275, 0.056498933583498, 0.29842373728752136, 0.040331047028303146, 0.047012243419885635, 0.08710748702287674], [0.06327886134386063, 0.0836036205291748, 0.10124838352203369, 0.05750996991991997, 0.09481742233037949, 0.08069600909948349, 0.05007690191268921, 0.09224551171064377, 0.15248338878154755], [0.08977363258600235, 0.044923633337020874, 0.05061790347099304, 0.034864556044340134, 0.025146840140223503, 0.03320112079381943, 0.026888906955718994, 0.08315443247556686, 0.16213496029376984]], [[0.07757756114006042, 0.024966368451714516, 0.006401863880455494, 0.022908572107553482, 0.013603247702121735, 0.018894625827670097, 0.014709298498928547, 0.02499750629067421, 0.3588676154613495], [0.1237139105796814, 0.053817301988601685, 0.11610157042741776, 0.012742266058921814, 0.0050428323447704315, 0.010134079493582249, 0.005440496373921633, 0.05104897916316986, 0.22674532234668732], [0.05845242366194725, 0.06696770340204239, 0.12722915410995483, 0.042245831340551376, 0.01069670170545578, 0.037848278880119324, 0.00223350222222507, 0.041564010083675385, 0.2396683394908905], [0.056034788489341736, 0.06195364147424698, 0.06846596300601959, 0.03857123479247093, 0.010405567474663258, 0.01627117395401001, 0.013158216141164303, 0.02642313577234745, 0.2858181893825531], [0.03916003555059433, 0.10130125284194946, 0.09455464780330658, 0.04280954599380493, 0.00639269407838583, 0.05185806378722191, 0.008054295554757118, 0.04308240860700607, 0.22189150750637054], [0.033841926604509354, 0.0349695049226284, 0.043661605566740036, 0.026684299111366272, 0.02233916148543358, 0.07484976947307587, 0.009794989600777626, 0.012129310518503189, 0.09662404656410217], [0.051326751708984375, 0.03745132312178612, 0.030030163004994392, 0.03308398649096489, 0.0028164966497570276, 0.014546118676662445, 0.007192975375801325, 0.03424512594938278, 0.28664684295654297], [0.17185695469379425, 0.028961503878235817, 0.030272506177425385, 0.055181682109832764, 0.012850516475737095, 0.008090578950941563, 0.0055708191357553005, 0.02476285584270954, 0.24465125799179077], [0.0477965883910656, 0.008591419085860252, 0.012560238130390644, 0.007843993604183197, 0.0036647343076765537, 0.009707380086183548, 0.004676171112805605, 0.017591839656233788, 0.4134973883628845]], [[0.0047764405608177185, 0.014465292915701866, 0.050096191465854645, 0.05621565878391266, 0.029116248711943626, 0.09146157652139664, 0.012836563400924206, 0.5525392293930054, 0.0017905436689034104], [0.16168992221355438, 0.10332753509283066, 0.05339629203081131, 0.039670344442129135, 0.012893757782876492, 0.004433847963809967, 0.007579755503684282, 0.039914097636938095, 0.2549296021461487], [0.017180610448122025, 0.025060182437300682, 0.011769026517868042, 0.010031694546341896, 0.004610319156199694, 0.0018299936782568693, 0.0023333444260060787, 0.03782020881772041, 0.4099421799182892], [0.24205714464187622, 0.07515685260295868, 0.03261974826455116, 0.04049297422170639, 0.005498139653354883, 0.003589578904211521, 0.0038170493207871914, 0.02172235958278179, 0.2570441663265228], [0.08660157769918442, 0.0267828069627285, 0.015222783200442791, 0.006579977925866842, 0.012355274520814419, 0.0026335930451750755, 0.007058777380734682, 0.013183685019612312, 0.38458919525146484], [0.0565742589533329, 0.022741135209798813, 0.01431846059858799, 0.006974519230425358, 0.01511232927441597, 0.013416020199656487, 0.01251869648694992, 0.04558227211236954, 0.3821878433227539], [0.145956888794899, 0.024433912709355354, 0.01110045239329338, 0.005589690059423447, 0.00852137804031372, 0.003935094457119703, 0.010604383423924446, 0.028988389298319817, 0.35665518045425415], [0.20003503561019897, 0.03513435274362564, 0.01350048091262579, 0.01155111938714981, 0.005778894294053316, 0.006176818162202835, 0.007779107894748449, 0.07323987036943436, 0.3146964907646179], [0.01134582795202732, 0.0027886468451470137, 0.004393760114908218, 0.0012013252126052976, 0.0007892410503700376, 0.0006909978692419827, 0.00010258705879095942, 0.01349521055817604, 0.46758270263671875]], [[0.1623072475194931, 0.0012633251026272774, 6.962366751395166e-05, 0.00026393134612590075, 0.00012457440607249737, 0.0002578133135102689, 0.00023851668811403215, 0.013526447117328644, 0.25617942214012146], [0.3390536904335022, 0.0889921486377716, 0.0001930597791215405, 7.445942901540548e-05, 9.19035210245056e-06, 1.4767938409931958e-05, 1.3521007531380747e-05, 0.014010481536388397, 0.16752415895462036], [0.022874783724546432, 5.438602966023609e-05, 0.0037000118754804134, 7.93799881648738e-06, 3.052967940675444e-07, 1.4427190535570844e-06, 6.431093879655236e-07, 0.0016408545197919011, 0.3248033821582794], [0.07694058865308762, 0.0005037760711275041, 1.0563108844507951e-05, 0.21397846937179565, 0.0007803369080647826, 0.00026854363386519253, 0.0028669836465269327, 0.007937896996736526, 0.22375938296318054], [0.0968499556183815, 4.014170917798765e-05, 1.4629287079515052e-06, 0.0002983074518851936, 0.10172491520643234, 0.0011016654316335917, 0.0001373549021081999, 0.002587493509054184, 0.3251079022884369], [0.058163005858659744, 8.544711818103679e-06, 1.0932297982435557e-06, 7.041184289846569e-05, 0.00019960934878326952, 0.05167846381664276, 2.9497832656488754e-05, 0.0013207800220698118, 0.338161438703537], [0.07716254144906998, 4.816689761355519e-05, 8.286838237836491e-07, 0.0006725772982463241, 7.168556476244703e-05, 9.905304614221677e-05, 0.12262681126594543, 0.004233615472912788, 0.31639158725738525], [0.1980915069580078, 0.0031299081165343523, 0.0031548039987683296, 0.001146852970123291, 0.004612255375832319, 0.005859014578163624, 0.001204004161991179, 0.053975775837898254, 0.2188843935728073], [0.2045547366142273, 0.017288926988840103, 0.005911713931709528, 0.004890249576419592, 0.0024099410511553288, 0.0055905357003211975, 0.004014029633253813, 0.06379641592502594, 0.239961639046669]], [[0.09246888011693954, 0.06194363906979561, 0.11018208414316177, 0.0610809363424778, 0.20336997509002686, 0.10996213555335999, 0.01868795044720173, 0.04144829511642456, 0.05479266121983528], [0.08506936579942703, 0.049196187406778336, 0.12829461693763733, 0.04550391063094139, 0.14054259657859802, 0.0526413656771183, 0.029778851196169853, 0.045694414526224136, 0.05757182836532593], [0.09991312772035599, 0.02390151284635067, 0.17408640682697296, 0.014207236468791962, 0.011501027271151543, 0.03187821805477142, 0.012340192683041096, 0.03705303743481636, 0.21625526249408722], [0.08387314528226852, 0.011907560750842094, 0.0862431600689888, 0.0826898068189621, 0.11915934085845947, 0.04959939047694206, 0.013076802715659142, 0.01409516204148531, 0.047607846558094025], [0.0606183297932148, 0.013322938233613968, 0.10909030586481094, 0.014323634095489979, 0.11583612114191055, 0.04240940883755684, 0.01285891979932785, 0.06441843509674072, 0.2113136649131775], [0.0518786758184433, 0.012471107766032219, 0.1649257242679596, 0.006757655646651983, 0.036428455263376236, 0.015883615240454674, 0.008681015111505985, 0.023485753685235977, 0.28365588188171387], [0.016165167093276978, 0.011963787488639355, 0.09751909971237183, 0.0057828170247375965, 0.021685222163796425, 0.0210827998816967, 0.005414087790995836, 0.01337400171905756, 0.35972151160240173], [0.08164932578802109, 0.03990740329027176, 0.08788231760263443, 0.05205972492694855, 0.16068410873413086, 0.05053249001502991, 0.009451997466385365, 0.09337428212165833, 0.09370559453964233], [0.004474562592804432, 0.0011820620857179165, 0.007393202744424343, 0.001520694000646472, 0.001425054739229381, 0.0027973284013569355, 0.0004933666787110269, 0.010234818793833256, 0.47769516706466675]], [[0.017373783513903618, 0.010760200209915638, 0.004052707459777594, 0.002160601783543825, 0.004703983198851347, 0.000394698727177456, 0.0004772089596372098, 0.008218641392886639, 0.08138436079025269], [0.011449586600065231, 0.006356136407703161, 0.8754265904426575, 0.008639363572001457, 0.003794182790443301, 0.004211607854813337, 0.0020771094132214785, 0.007402998860925436, 0.028407972306013107], [0.03195991739630699, 0.2568446695804596, 0.12623031437397003, 0.008409995585680008, 0.004986082203686237, 0.007851914502680302, 0.004397053271532059, 0.04552983492612839, 0.21597664058208466], [0.04044754430651665, 0.015792282298207283, 0.0023268135264515877, 0.00258962856605649, 0.04314747080206871, 0.2793048620223999, 0.30927082896232605, 0.061317089945077896, 0.11304378509521484], [0.01992252841591835, 0.015503552742302418, 0.010178887285292149, 0.037280816584825516, 0.0024466016329824924, 0.6000202894210815, 0.1180553212761879, 0.04667108133435249, 0.06691066920757294], [0.03467075899243355, 0.06156986579298973, 0.04821975156664848, 0.1019117683172226, 0.16641081869602203, 0.0029154496733099222, 0.3086279034614563, 0.04037686064839363, 0.1068916767835617], [0.0012558179441839457, 6.563087663380429e-05, 4.949299545842223e-05, 0.0015380426775664091, 0.00023054353368934244, 0.9875051975250244, 0.0004441349592525512, 0.0025152326561510563, 0.003047464182600379], [0.053099703043699265, 0.0543893501162529, 0.03896797075867653, 0.06328529864549637, 0.060940925031900406, 0.016793664544820786, 0.042788613587617874, 0.06915182620286942, 0.21027907729148865], [0.06063633784651756, 0.06326667219400406, 0.034328192472457886, 0.022750509902834892, 0.010062981396913528, 0.0041212965734303, 0.01725657843053341, 0.0666080117225647, 0.2555081844329834]], [[0.005758460145443678, 0.0021250469144433737, 0.004918077029287815, 0.0015783997951075435, 0.0031314161606132984, 0.0012560640461742878, 0.0003333171480335295, 0.005877758841961622, 0.42379939556121826], [0.017574958503246307, 0.06447048485279083, 0.051008909940719604, 0.0031163066159933805, 0.001023966120555997, 0.004448094870895147, 0.001327427802607417, 0.01151659432798624, 0.4472600817680359], [0.002968674525618553, 0.005619123578071594, 0.028435001149773598, 0.0002892887860070914, 3.1841998861636966e-05, 0.00029665420879609883, 6.943188782315701e-05, 0.0044031897559762, 0.5065798759460449], [0.01788296550512314, 0.24235442280769348, 0.11464615911245346, 0.024721350520849228, 0.004135359078645706, 0.005985644645988941, 0.011329052969813347, 0.015966244041919708, 0.28977298736572266], [0.004345357418060303, 0.053547076880931854, 0.02130398340523243, 0.007296844385564327, 0.011325634084641933, 0.003009550739079714, 0.00919779110699892, 0.008209788240492344, 0.45820072293281555], [0.006185310892760754, 0.052064698189496994, 0.05677692964673042, 0.006097305100411177, 0.007340249139815569, 0.023725558072328568, 0.011273540556430817, 0.008761817589402199, 0.4159131348133087], [0.009984118863940239, 0.2552521824836731, 0.08297386020421982, 0.01195122767239809, 0.004918457940220833, 0.010436220094561577, 0.04108359292149544, 0.0127377575263381, 0.29193446040153503], [0.016285758465528488, 0.12385275214910507, 0.11852085590362549, 0.2824400067329407, 0.16928309202194214, 0.07208912819623947, 0.03803791105747223, 0.0434800423681736, 0.04765653610229492], [0.003703151596710086, 0.0030523992609232664, 0.007243176456540823, 0.0023688124492764473, 0.004038053099066019, 0.0021750314626842737, 0.0012231331784278154, 0.00723686907440424, 0.47688260674476624]], [[0.057300034910440445, 0.00101943698246032, 0.0021415636874735355, 0.0008546136086806655, 0.0054085771553218365, 0.002029214520007372, 0.0008198036812245846, 0.009260308928787708, 0.03953936696052551], [0.050369054079055786, 0.04385271668434143, 0.03822799772024155, 0.02151563949882984, 0.018855562433600426, 0.01827183924615383, 0.006778425071388483, 0.22453130781650543, 0.1340239942073822], [0.11721554398536682, 0.041641246527433395, 0.00972040556371212, 0.014014014042913914, 0.0024876361712813377, 0.013287719339132309, 0.0128793865442276, 0.0887947529554367, 0.27240633964538574], [0.045295413583517075, 0.027806073427200317, 0.009272068738937378, 0.03675176575779915, 0.007415296975523233, 0.006798502057790756, 0.004238978959619999, 0.2488250732421875, 0.21867583692073822], [0.035432640463113785, 0.02858577109873295, 0.00421521719545126, 0.026622828096151352, 0.01288614422082901, 0.010608547367155552, 0.006954746320843697, 0.11331315338611603, 0.3651497960090637], [0.06639274209737778, 0.019437698647379875, 0.005019697826355696, 0.011193592101335526, 0.007175098173320293, 0.004456063732504845, 0.01689990609884262, 0.0620136484503746, 0.34760984778404236], [0.04457259550690651, 0.016032623127102852, 0.016786210238933563, 0.01425451971590519, 0.05170614272356033, 0.04014769569039345, 0.02640923112630844, 0.06022537499666214, 0.33386293053627014], [0.05643227696418762, 0.013646628707647324, 0.0317501500248909, 0.011067698709666729, 0.014415115118026733, 0.015359370037913322, 0.005356915760785341, 0.10379167646169662, 0.2578006684780121], [0.02858106605708599, 0.0043085659854114056, 0.007958337664604187, 0.003052199026569724, 0.0018483898602426052, 0.005658274050801992, 0.001412619836628437, 0.010081819258630276, 0.44751182198524475]]], [[[0.0012268522987142205, 0.001193615491501987, 0.0008361958898603916, 0.0006956990691833198, 0.0005406527197919786, 0.0006869614589959383, 0.0001046524994308129, 0.00037079612957313657, 0.497846394777298], [0.0026062126271426678, 0.05955971032381058, 0.00483003119006753, 0.005125260911881924, 0.0005440955865196884, 6.521259638248011e-05, 1.5452906154678203e-05, 0.0016047164099290967, 0.48359861969947815], [0.0012028494384139776, 0.016091173514723778, 0.003556471085175872, 0.0013756597181782126, 0.001338676200248301, 6.803135329391807e-05, 2.319568011444062e-06, 9.375611989526078e-05, 0.4932926893234253], [0.001231819624081254, 0.026759592816233635, 0.08602309226989746, 0.012478143908083439, 0.01793690025806427, 0.006892875302582979, 0.00045659096213057637, 0.00020609903731383383, 0.4271720051765442], [0.001968498807400465, 0.005546071566641331, 0.05872735381126404, 0.19377446174621582, 0.025837019085884094, 0.0069153644144535065, 0.00015923671890050173, 0.0002369584544794634, 0.3460055887699127], [0.0006208086269907653, 0.0017168422928079963, 0.0010606016730889678, 0.009086660109460354, 0.031358879059553146, 0.0035127843730151653, 8.70905423653312e-05, 0.00016364851035177708, 0.4641072452068329], [0.00010141226812265813, 0.00017872703028842807, 0.00048087057075463235, 0.0018851286731660366, 0.0323953777551651, 0.9014703631401062, 0.0012603531358763576, 0.0006397413089871407, 0.030593007802963257], [0.002887450158596039, 0.0005018715164624155, 0.0007899686461314559, 0.0022305496968328953, 0.00206627044826746, 0.04613981768488884, 0.41361093521118164, 0.00941880140453577, 0.2649163007736206], [0.020558619871735573, 0.015892986208200455, 0.011825784109532833, 0.009166625328361988, 0.007707756478339434, 0.005215456243604422, 0.002697019837796688, 0.019493063911795616, 0.4218929409980774]], [[0.0038423731457442045, 0.0979103371500969, 0.006096473429352045, 0.009875924326479435, 0.008829496800899506, 0.00291089853271842, 0.00470890523865819, 0.21763639152050018, 0.3291061520576477], [0.007899913005530834, 0.11704446375370026, 0.015460697934031487, 0.051603641360998154, 0.02448287047445774, 0.018248176202178, 0.006813539192080498, 0.04040774703025818, 0.3675488531589508], [0.025731662288308144, 0.208003968000412, 0.0133800795301795, 0.033890265971422195, 0.02012753300368786, 0.02156728319823742, 0.020578458905220032, 0.07638607919216156, 0.27651548385620117], [0.01676766946911812, 0.3595621585845947, 0.016705617308616638, 0.056803129613399506, 0.049385491758584976, 0.023534834384918213, 0.013142966665327549, 0.053659047931432724, 0.20421680808067322], [0.016914812847971916, 0.10681729018688202, 0.03576813265681267, 0.18344727158546448, 0.06506672501564026, 0.026374896988272667, 0.06274399161338806, 0.04797997325658798, 0.22855304181575775], [0.025768442079424858, 0.03815072774887085, 0.03208613023161888, 0.11320128291845322, 0.09737738966941833, 0.05092741549015045, 0.11139798909425735, 0.05256582796573639, 0.23593246936798096], [0.030600255355238914, 0.03992250934243202, 0.03523583710193634, 0.27605047821998596, 0.13545475900173187, 0.07433675974607468, 0.051648277789354324, 0.04537327215075493, 0.15507520735263824], [0.011768552474677563, 0.1284898817539215, 0.05738763138651848, 0.16645966470241547, 0.15865668654441833, 0.12594562768936157, 0.03153849020600319, 0.11341845989227295, 0.10127582401037216], [0.006472982931882143, 0.022074781358242035, 0.006032588891685009, 0.008875316008925438, 0.004342956934124231, 0.0038167426828294992, 0.0030285187531262636, 0.012726720422506332, 0.4365517497062683]], [[0.009063911624252796, 0.0008625846239738166, 0.0033756839111447334, 0.001652573118917644, 0.009214906021952629, 0.010952332057058811, 0.0025385506451129913, 0.001659492845647037, 0.05112340301275253], [0.030323171988129616, 0.011549224145710468, 0.02178393304347992, 0.12024854123592377, 0.1289067268371582, 0.1871342957019806, 0.35925328731536865, 0.029256725683808327, 0.0321379229426384], [0.06644298136234283, 0.07353031635284424, 0.08068853616714478, 0.08615818619728088, 0.05244072154164314, 0.0946999117732048, 0.10104087740182877, 0.07332208007574081, 0.09360750019550323], [0.01714845560491085, 0.010454491712152958, 0.03376057371497154, 0.01652185246348381, 0.35368624329566956, 0.07130531966686249, 0.04183783009648323, 0.021007705479860306, 0.206453338265419], [0.024712054058909416, 0.028879081830382347, 0.025591792538762093, 0.0830875039100647, 0.22685730457305908, 0.012127013877034187, 0.013243654742836952, 0.019917773082852364, 0.2849058508872986], [0.017363451421260834, 0.03167405724525452, 0.058454278856515884, 0.07243829220533371, 0.06682407855987549, 0.0028190664015710354, 0.019437329843640327, 0.024486254900693893, 0.35692834854125977], [0.03096614219248295, 0.01818840764462948, 0.018256308510899544, 0.08340602368116379, 0.46653053164482117, 0.011320777237415314, 0.012873721309006214, 0.02072528377175331, 0.15964293479919434], [0.021320726722478867, 0.0069495257921516895, 0.03907027840614319, 0.017465760931372643, 0.15855297446250916, 0.17425209283828735, 0.014796898700296879, 0.012508236803114414, 0.2606799304485321], [0.008644532412290573, 0.0057877833023667336, 0.009599537588655949, 0.0044794511049985886, 0.006598783656954765, 0.004999629221856594, 0.003857773495838046, 0.00496251042932272, 0.45481136441230774]], [[0.04591652378439903, 0.06300190091133118, 0.16419069468975067, 0.06137210130691528, 0.03333040326833725, 0.11815725266933441, 0.02318153716623783, 0.12986509501934052, 0.11233090609312057], [0.05948485806584358, 0.030614571645855904, 0.04631494730710983, 0.04725201427936554, 0.024686913937330246, 0.07342551648616791, 0.01190608087927103, 0.1029941663146019, 0.19130326807498932], [0.008375815115869045, 0.08590077608823776, 0.11599132418632507, 0.03065883368253708, 0.02831793576478958, 0.17639218270778656, 0.030109606683254242, 0.07108864188194275, 0.08749613910913467], [0.014101564884185791, 0.009941528551280499, 0.012831049971282482, 0.04680471494793892, 0.0229649655520916, 0.03828982263803482, 0.007251002360135317, 0.06968002021312714, 0.28135332465171814], [0.023000601679086685, 0.014771489426493645, 0.017490161582827568, 0.079710453748703, 0.028272580355405807, 0.027533959597349167, 0.005006590858101845, 0.07247548550367355, 0.2600434422492981], [0.007276624441146851, 0.015737686306238174, 0.044347167015075684, 0.0654127299785614, 0.06074805557727814, 0.2576485574245453, 0.01003256905823946, 0.029188068583607674, 0.16256673634052277], [0.046840086579322815, 0.005050460807979107, 0.008912740275263786, 0.04096522554755211, 0.0037268521264195442, 0.02124677784740925, 0.0024555400013923645, 0.030869917944073677, 0.3147437572479248], [0.04578913748264313, 0.015169307589530945, 0.05198633670806885, 0.04619758948683739, 0.017973976209759712, 0.03155815973877907, 0.006569531746208668, 0.05196365341544151, 0.295901358127594], [0.036378540098667145, 0.006205890327692032, 0.016910836100578308, 0.00830363854765892, 0.00342999747954309, 0.00617930619046092, 0.001616147463209927, 0.01737803965806961, 0.41895776987075806]], [[0.017480259761214256, 0.20148500800132751, 0.03903725743293762, 0.06706959754228592, 0.012287254445254803, 0.013176810927689075, 0.002272723475471139, 0.27102038264274597, 0.18708552420139313], [0.016926229000091553, 0.06871692836284637, 0.014908969402313232, 0.02210349775850773, 0.003666487755253911, 0.0023261106107383966, 0.0011758703039959073, 0.05407288670539856, 0.41736021637916565], [0.13162341713905334, 0.5688703060150146, 0.0772111639380455, 0.005058556329458952, 6.459522410295904e-05, 0.00017680223390925676, 0.0001300355070270598, 0.0010197939118370414, 0.11028080433607101], [0.014943387359380722, 0.15152794122695923, 0.03337767720222473, 0.04420100152492523, 0.04978689178824425, 0.0066736130975186825, 0.002962433034554124, 0.025334719568490982, 0.3377862870693207], [0.013496278785169125, 0.06256356090307236, 0.09802360087633133, 0.35747820138931274, 0.0443490669131279, 0.018599987030029297, 0.0035999685060232878, 0.011299500241875648, 0.1924462467432022], [0.012661732733249664, 0.01475112047046423, 0.03170580789446831, 0.12517398595809937, 0.20579063892364502, 0.029060887172818184, 0.00819248054176569, 0.01069746632128954, 0.2803666591644287], [0.005842386279255152, 0.0017539823893457651, 0.005652809515595436, 0.14941003918647766, 0.5916652083396912, 0.1219407394528389, 0.0037342447321861982, 0.004851237405091524, 0.05674576759338379], [0.019650772213935852, 0.040749937295913696, 0.017664263024926186, 0.08067885786294937, 0.021262740716338158, 0.03944716602563858, 0.04182502254843712, 0.1251455843448639, 0.3070489168167114], [0.013733944855630398, 0.026839664205908775, 0.01571626588702202, 0.012752034701406956, 0.005264668259769678, 0.006642777938395739, 0.0037175819743424654, 0.08288726955652237, 0.35747939348220825]], [[0.014837761409580708, 0.085702084004879, 0.18005020916461945, 0.06088872253894806, 0.035098619759082794, 0.3227255940437317, 0.025438392534852028, 0.057057935744524, 0.10069388151168823], [0.0681460052728653, 0.0618312768638134, 0.008035487495362759, 0.01888233795762062, 0.002018442377448082, 0.0022372847888618708, 0.0008813529275357723, 0.035775840282440186, 0.3668569326400757], [0.03437953442335129, 0.026006393134593964, 0.004117678385227919, 0.004914199933409691, 0.0011157924309372902, 0.0014436618657782674, 0.000660546706058085, 0.04258754476904869, 0.4291918873786926], [0.03358268365263939, 0.01694011315703392, 0.0019685649313032627, 0.06609854847192764, 0.008756306022405624, 0.003526550717651844, 0.013533340767025948, 0.03698752075433731, 0.30237850546836853], [0.01708546094596386, 0.011726808734238148, 0.0009878892451524734, 0.025934971868991852, 0.015839044004678726, 0.00646226666867733, 0.01318965945392847, 0.045935969799757004, 0.377254456281662], [0.01989579387009144, 0.012307309545576572, 0.0018611198756843805, 0.01515846699476242, 0.021920310333371162, 0.008366244845092297, 0.006554576102644205, 0.088648721575737, 0.38216903805732727], [0.012342882342636585, 0.015963461250066757, 0.0012975179124623537, 0.02431870810687542, 0.004630825947970152, 0.004724858794361353, 0.07893224060535431, 0.05416902154684067, 0.3657701313495636], [0.03718230500817299, 0.010838188230991364, 0.006511701736599207, 0.009800695814192295, 0.0037312728818506002, 0.013592066243290901, 0.004582089837640524, 0.13572309911251068, 0.3581139147281647], [0.02295801229774952, 0.005564752034842968, 0.008349373936653137, 0.0025019673630595207, 0.00110938074067235, 0.002276431769132614, 0.0017111244378611445, 0.01407159399241209, 0.43465757369995117]], [[0.00848997849971056, 0.006697371136397123, 0.02224407158792019, 0.001738460618071258, 0.002630590694025159, 0.002615903038531542, 0.001488794689066708, 0.0017919568344950676, 0.2413429468870163], [0.01825099252164364, 0.026805464178323746, 0.6148292422294617, 0.021728163585066795, 0.025519391521811485, 0.009578576311469078, 0.0033244453370571136, 0.008989238180220127, 0.1351548582315445], [0.011718683876097202, 0.012128150090575218, 0.01166569720953703, 0.009619781747460365, 0.01844712719321251, 0.0011218040017411113, 0.00028493141871877015, 0.0038101940881460905, 0.47031742334365845], [0.00890746247023344, 0.23083403706550598, 0.39969971776008606, 0.004340294282883406, 0.0382809117436409, 0.0687628984451294, 0.0036950879730284214, 0.0031205194536596537, 0.11283029615879059], [0.017912723124027252, 0.03370494395494461, 0.0476127490401268, 0.01868375390768051, 0.01692894846200943, 0.14335624873638153, 0.010662405751645565, 0.005335233639925718, 0.35275617241859436], [0.005911227315664291, 0.012780345045030117, 0.010394775308668613, 0.004120598081499338, 0.007990815676748753, 0.003416532650589943, 0.0010815758723765612, 0.0013590577291324735, 0.48404502868652344], [0.002640643622726202, 0.014562993310391903, 0.04752848297357559, 0.0038568938616663218, 0.027922293171286583, 0.839131236076355, 0.0009474137332290411, 0.002863657893612981, 0.029102692380547523], [0.00906453188508749, 0.07517070323228836, 0.08855453878641129, 0.07748658955097198, 0.2896617650985718, 0.20755931735038757, 0.11318142712116241, 0.00893726572394371, 0.057658545672893524], [0.01159619353711605, 0.006290688645094633, 0.0052373409271240234, 0.002823084592819214, 0.0034340755082666874, 0.0026102978736162186, 0.001451929216273129, 0.0034936140291392803, 0.4648189842700958]], [[0.010057734325528145, 0.005002036225050688, 0.018494021147489548, 0.006920263636857271, 0.002388333436101675, 0.015272107906639576, 0.0014022223185747862, 0.010757633484899998, 0.44486743211746216], [0.00963846780359745, 0.029775895178318024, 0.011451346799731255, 0.008635523729026318, 0.008830179460346699, 0.005798475816845894, 0.0024684283416718245, 0.014253785833716393, 0.4656665623188019], [0.029812926426529884, 0.0069160801358520985, 0.04169391840696335, 0.004743122961372137, 0.00613489979878068, 0.002656891942024231, 0.0006393708754330873, 0.0062254429794847965, 0.4592188596725464], [0.0022449996322393417, 0.02982807531952858, 0.006583040114492178, 0.00875064730644226, 0.014338579960167408, 0.03789481148123741, 0.009276355616748333, 0.01559943612664938, 0.4464631974697113], [0.005365240853279829, 0.027452701702713966, 0.004356576129794121, 0.0726325660943985, 0.03444398567080498, 0.008861816488206387, 0.002771044382825494, 0.007664002478122711, 0.42534491419792175], [0.005453033372759819, 0.007485215086489916, 0.0016480284975841641, 0.01411443017423153, 0.02747797593474388, 0.009071814827620983, 0.0012492149835452437, 0.006488464307039976, 0.4698760509490967], [0.0024155965074896812, 0.0036317617632448673, 0.001894674962386489, 0.007689658552408218, 0.13301603496074677, 0.2738424241542816, 0.003468499518930912, 0.009353997185826302, 0.2843243479728699], [0.007348518818616867, 0.011435589753091335, 0.019765570759773254, 0.07790988683700562, 0.07319408655166626, 0.43297529220581055, 0.04791959375143051, 0.043603118509054184, 0.14156070351600647], [0.02268170565366745, 0.007042753044515848, 0.007176578976213932, 0.009017842821776867, 0.005312832072377205, 0.011243489570915699, 0.0037274998612701893, 0.02601756528019905, 0.42067641019821167]], [[0.006108490750193596, 0.00048298592446371913, 0.009644691832363605, 0.0010901641799136996, 0.0012856327230110765, 0.0035513541661202908, 0.0003678583016153425, 0.0006273784092627466, 0.017687829211354256], [0.03721974790096283, 0.04095926880836487, 0.14490556716918945, 0.06568209081888199, 0.11905517429113388, 0.22005000710487366, 0.07183218002319336, 0.01965632103383541, 0.11881532520055771], [0.07519026100635529, 0.029349684715270996, 0.03602093458175659, 0.051357872784137726, 0.03302657604217529, 0.1732197403907776, 0.020981866866350174, 0.03328615427017212, 0.2525395452976227], [0.050438426434993744, 0.04054679721593857, 0.33494460582733154, 0.02331814356148243, 0.027969859540462494, 0.2162870466709137, 0.03173430636525154, 0.015952864661812782, 0.11285558342933655], [0.05691436678171158, 0.044992052018642426, 0.39046740531921387, 0.02600630186498165, 0.011247477494180202, 0.1982293426990509, 0.025162890553474426, 0.01811601221561432, 0.08739137649536133], [0.09177535772323608, 0.033661339432001114, 0.19003207981586456, 0.01771298237144947, 0.009519659914076328, 0.04854452610015869, 0.012874523177742958, 0.020067719742655754, 0.2533319294452667], [0.03723860904574394, 0.0865321084856987, 0.26005181670188904, 0.04593465104699135, 0.02298891544342041, 0.18341778218746185, 0.01862463168799877, 0.011491465382277966, 0.1470467895269394], [0.02528735063970089, 0.07338886708021164, 0.3010205030441284, 0.09665419161319733, 0.07813757658004761, 0.24917075037956238, 0.04880642890930176, 0.008978785015642643, 0.029446927830576897], [0.005942951887845993, 0.0033881994895637035, 0.007797200232744217, 0.002649979665875435, 0.001656738226301968, 0.005419855006039143, 0.001296873320825398, 0.0036795062478631735, 0.4749843180179596]], [[0.004491069354116917, 0.0027351307217031717, 0.0033803677652031183, 0.005743349902331829, 0.0022395208943635225, 0.0008278143359348178, 0.00034106202656403184, 0.013580447062849998, 0.18483808636665344], [0.00804812740534544, 0.01932227984070778, 0.026770418509840965, 0.6470544338226318, 0.020555930212140083, 0.011104513891041279, 0.012925602495670319, 0.08041491359472275, 0.0513184480369091], [0.019066080451011658, 0.044097863137722015, 0.0526462122797966, 0.05110037699341774, 0.0031227064318954945, 0.008649613708257675, 0.004430604167282581, 0.03587121143937111, 0.3683486878871918], [0.01181622315198183, 0.01627986691892147, 0.014005794189870358, 0.06803689897060394, 0.04136352241039276, 0.060439012944698334, 0.13425949215888977, 0.10341010987758636, 0.2644912004470825], [0.03295176103711128, 0.00981871783733368, 0.011098244227468967, 0.04524724930524826, 0.031882502138614655, 0.08037003129720688, 0.0789155438542366, 0.13111072778701782, 0.280385285615921], [0.01984240673482418, 0.003054012544453144, 0.0021687326952815056, 0.005747318267822266, 0.001473750569857657, 0.006713476497679949, 0.0026262446772307158, 0.04381173104047775, 0.4587130844593048], [0.018868526443839073, 0.0023677500430494547, 0.002823382383212447, 0.008436670526862144, 0.007943402975797653, 0.009686744771897793, 0.009699057787656784, 0.043270520865917206, 0.4554607570171356], [0.013559774495661259, 0.026531832292675972, 0.015721190720796585, 0.05076306685805321, 0.030098246410489082, 0.01254494022578001, 0.007677183486521244, 0.08505788445472717, 0.3477552533149719], [0.0128476582467556, 0.0070405807346105576, 0.0043700747191905975, 0.01533160824328661, 0.0027420285623520613, 0.0017848021816462278, 0.0012670168653130531, 0.011103778146207333, 0.4413999915122986]], [[0.023240748792886734, 0.07953847944736481, 0.16248755156993866, 0.12789462506771088, 0.06906704604625702, 0.27402371168136597, 0.032486360520124435, 0.10435017198324203, 0.05908270180225372], [0.06305493414402008, 0.16579696536064148, 0.16351580619812012, 0.11282528191804886, 0.05173748731613159, 0.06269607692956924, 0.03162235766649246, 0.13088737428188324, 0.09096205234527588], [0.0837809145450592, 0.08363284170627594, 0.06468788534402847, 0.12506923079490662, 0.007336738519370556, 0.01852007582783699, 0.020320747047662735, 0.2166077196598053, 0.1771128624677658], [0.023773569613695145, 0.044085659086704254, 0.02132377028465271, 0.08987373858690262, 0.02066689357161522, 0.050990670919418335, 0.05786581337451935, 0.290880411863327, 0.1991594284772873], [0.010321545414626598, 0.06656690686941147, 0.005372785963118076, 0.0869201123714447, 0.007539425976574421, 0.019194528460502625, 0.046659961342811584, 0.3537028133869171, 0.20210368931293488], [0.01850607432425022, 0.022093243896961212, 0.005990950856357813, 0.07804959267377853, 0.013770654797554016, 0.019559694454073906, 0.028089921921491623, 0.29072460532188416, 0.2574850618839264], [0.010967651382088661, 0.02457348257303238, 0.010869220830500126, 0.038812778890132904, 0.009671305306255817, 0.0210882555693388, 0.0425233393907547, 0.22441640496253967, 0.31072431802749634], [0.08603475987911224, 0.07631687819957733, 0.19062742590904236, 0.04701632633805275, 0.05650255084037781, 0.08549165725708008, 0.01968248188495636, 0.2152814269065857, 0.08952372521162033], [0.008603562600910664, 0.002590964548289776, 0.004649112932384014, 0.00249645602889359, 0.0009996596490964293, 0.00149826449342072, 0.000688537722453475, 0.006989079527556896, 0.4781118333339691]], [[0.000982114695943892, 0.004091165028512478, 0.004939687438309193, 0.0011691843392327428, 0.0004179372626822442, 0.00024837313685566187, 0.00017504821880720556, 0.003871886059641838, 0.3642014265060425], [0.006770129781216383, 0.040091175585985184, 0.5720412135124207, 0.05853549391031265, 0.015804467722773552, 0.00623184023424983, 0.000941671896725893, 0.0031304596923291683, 0.1481103152036667], [0.01749485358595848, 0.02916434407234192, 0.02090737409889698, 0.07360083609819412, 0.019484400749206543, 0.008984182961285114, 0.004194698296487331, 0.012607067823410034, 0.4014410078525543], [0.0065080225467681885, 0.01719985343515873, 0.020139502361416817, 0.021763848140835762, 0.12448582798242569, 0.10734974592924118, 0.01601879484951496, 0.018105080351233482, 0.3265039026737213], [0.005324306432157755, 0.0034710955806076527, 0.006156086456030607, 0.04033822566270828, 0.05107131227850914, 0.2590765058994293, 0.08856496214866638, 0.04075836390256882, 0.2466021478176117], [0.008354321122169495, 0.00320628029294312, 0.004300081171095371, 0.014493655413389206, 0.014988232403993607, 0.02075227163732052, 0.05375239998102188, 0.15388235449790955, 0.3635590374469757], [0.005989552941173315, 0.000805228017270565, 0.0006162141798995435, 0.006485061254352331, 0.006694117095321417, 0.01136291865259409, 0.0027206800878047943, 0.19496288895606995, 0.3921332359313965], [0.0021146731451153755, 0.00940559059381485, 0.00040572191937826574, 0.002102120313793421, 0.00087406812235713, 0.0010750140063464642, 0.001744489069096744, 0.021776355803012848, 0.47649356722831726], [0.02279108576476574, 0.023942915722727776, 0.01632073149085045, 0.008830530568957329, 0.003411548212170601, 0.0035038383211940527, 0.0020042245741933584, 0.025177041068673134, 0.40080955624580383]]], [[[3.7261415286593547e-07, 3.222988380002789e-05, 2.1976880816509947e-05, 7.972150797286304e-07, 3.978600915388597e-08, 6.765957095922204e-06, 1.1826134738157634e-08, 0.00016382770263589919, 0.49526330828666687], [2.4386691777067426e-08, 0.0011898259399458766, 0.9977213740348816, 6.672040035482496e-05, 2.0240988760633627e-06, 1.00907727755839e-05, 1.5420846821712075e-09, 1.8474871410489868e-08, 0.0005069724866189063], [1.4852690810585045e-07, 1.246831288881367e-05, 4.1484221583232284e-05, 0.9986849427223206, 7.25875406715204e-06, 2.363831299589947e-06, 2.3903021784121847e-08, 5.352884500098298e-07, 0.0006439454737119377], [5.53762424804205e-10, 1.0791179647640092e-06, 1.1149166994073312e-06, 1.9628765585366637e-05, 0.9962438344955444, 0.0037225347477942705, 6.1436082887667e-08, 2.9457176253799844e-08, 5.630980467685731e-06], [2.1145132519939658e-11, 1.3640261142811028e-09, 2.100065103149973e-06, 2.3976385818968993e-06, 0.001124573522247374, 0.9988652467727661, 1.8541946644745622e-07, 2.5892024080320653e-09, 2.6765630991576472e-06], [6.539127746230111e-12, 3.2532457630574108e-12, 2.8948669850148434e-11, 1.1665697297047473e-09, 2.4565700168510674e-11, 1.9457364430763846e-07, 0.9999946355819702, 4.988308319298085e-06, 9.613298601607312e-08], [3.490912073300656e-11, 2.038438168261436e-11, 1.072288004916322e-11, 7.56949347646696e-09, 4.0809530234275915e-12, 1.068536107595719e-06, 0.00015022858860902488, 0.9998425245285034, 3.1012702947919024e-06], [3.9280561026089345e-09, 4.40032672486268e-05, 4.387047614073936e-09, 2.585681224687164e-09, 3.2712735298368045e-11, 2.2498031881923453e-08, 4.915975959640662e-10, 0.00041482673259451985, 0.5418294668197632], [0.0018904717871919274, 0.0026074456982314587, 0.0023896945640444756, 0.0009480819571763277, 0.00010249244223814458, 0.0004825378127861768, 3.3532203815411776e-05, 0.0020040026865899563, 0.49977996945381165]], [[0.0031687787268310785, 0.0021072241943329573, 0.0009463902679271996, 0.00277671217918396, 0.0005172099336050451, 0.002292200457304716, 0.0003313654160592705, 0.0021580031607300043, 0.06574764847755432], [0.007784616202116013, 0.03844992816448212, 0.3426261246204376, 0.0698457658290863, 0.028900451958179474, 0.030795125290751457, 0.004827134311199188, 0.020057201385498047, 0.22330595552921295], [0.0031111501157283783, 0.004433536436408758, 0.006661070045083761, 0.005048063118010759, 0.002987812040373683, 0.0036905640736222267, 0.001532705151475966, 0.008228489197790623, 0.48094525933265686], [0.009134180843830109, 0.023849118500947952, 0.01980331540107727, 0.00792919285595417, 0.08268915861845016, 0.3063957691192627, 0.1324813961982727, 0.033980075269937515, 0.17825734615325928], [0.0033792974427342415, 0.003261215751990676, 0.001668277196586132, 0.005956524051725864, 0.025913964956998825, 0.2673491835594177, 0.24290718138217926, 0.008580110035836697, 0.21558590233325958], [0.006898961961269379, 0.002756655914708972, 0.002344513079151511, 0.001128703006543219, 0.002137027448043227, 0.006188714411109686, 0.004916543606668711, 0.013192027807235718, 0.47812193632125854], [0.011171341873705387, 0.003672228893265128, 0.0013586024288088083, 0.0016394970007240772, 0.009315996430814266, 0.05581178143620491, 0.0144527992233634, 0.01816549152135849, 0.4430449604988098], [0.0615169033408165, 0.020606184378266335, 0.003415802726522088, 0.02264251932501793, 0.014627281576395035, 0.011750688776373863, 0.003223121864721179, 0.07565398514270782, 0.338276743888855], [0.013904713094234467, 0.006687380839139223, 0.01368147972971201, 0.006337393075227737, 0.0022896481677889824, 0.004136144183576107, 0.0010569773148745298, 0.008383078500628471, 0.4509871006011963]], [[0.004646711051464081, 0.02769767865538597, 0.018233714625239372, 0.0135768111795187, 0.013318194076418877, 0.053658414632081985, 0.011534101329743862, 0.03239040821790695, 0.39864856004714966], [0.0030200525652617216, 0.015542035922408104, 0.03529181331396103, 0.24123111367225647, 0.004646776709705591, 0.008606866002082825, 0.0007329742657020688, 0.003434254787862301, 0.33983224630355835], [0.00117931526619941, 0.009039977565407753, 0.006407999433577061, 0.0024088541977107525, 0.0008406472043134272, 0.0003036821726709604, 0.00010241178824799135, 0.0008063734858296812, 0.4865339696407318], [0.0006322811241261661, 0.013885417953133583, 0.03904265537858009, 0.02093936875462532, 0.016451114788651466, 0.10240742564201355, 0.0029610719066113234, 0.008978908881545067, 0.39699795842170715], [0.0005937740206718445, 0.0065855649299919605, 0.0012340358225628734, 0.02115865796804428, 0.0045451815240085125, 0.10851363837718964, 0.002723093843087554, 0.004589584190398455, 0.4261760413646698], [0.0014794886810705066, 0.004135075956583023, 0.0005052487249486148, 0.004656696692109108, 0.00471864826977253, 0.011638039723038673, 0.05843871086835861, 0.006999869365245104, 0.45093467831611633], [0.00045148268691264093, 0.006556532345712185, 0.002436431823298335, 0.013392260298132896, 0.013839494436979294, 0.5427978038787842, 0.009187949821352959, 0.02432774379849434, 0.1913284957408905], [0.004975053481757641, 0.005287251900881529, 0.0010606514988467097, 0.008493514731526375, 0.009217924438416958, 0.023655859753489494, 0.004463125951588154, 0.06002442538738251, 0.44074684381484985], [0.01662576012313366, 0.013676837086677551, 0.011885679326951504, 0.009910515509545803, 0.004302979912608862, 0.007309566717594862, 0.002795423846691847, 0.014664201065897942, 0.43024855852127075]], [[0.0009357659728266299, 0.0009855087846517563, 0.006272437982261181, 0.0006815640954300761, 0.00017691338143777102, 0.000455359899206087, 6.815097731305286e-05, 0.00486785639077425, 0.48824578523635864], [0.011824224144220352, 0.031619418412446976, 0.013066585175693035, 0.0033593676052987576, 0.000999400275759399, 0.0004325775080360472, 0.00030561830499209464, 0.010319091379642487, 0.4673183262348175], [0.002653721487149596, 0.007376522291451693, 0.012308141216635704, 0.0012607760727405548, 0.0008716582669876516, 0.00048471501213498414, 2.9569455364253372e-05, 0.0008004661649465561, 0.4883043169975281], [0.0019072330323979259, 0.06150224432349205, 0.01568525843322277, 0.018371695652604103, 0.049505941569805145, 0.011806926690042019, 0.005584845319390297, 0.011089038103818893, 0.41280829906463623], [0.0007226336747407913, 0.010250167921185493, 0.0017117736861109734, 0.004440348129719496, 0.0017453273758292198, 0.007101535797119141, 0.0011321828933432698, 0.005288560409098864, 0.4838944375514984], [0.0009220391511917114, 0.00203683041036129, 0.0016831494867801666, 0.0017126871971413493, 0.004069022834300995, 0.0038726930506527424, 0.00122427090536803, 0.003867652965709567, 0.4925641119480133], [0.0005435695638880134, 0.004219656344503164, 0.004036516882479191, 0.007169567979872227, 0.02241043746471405, 0.671183705329895, 0.035876043140888214, 0.005130477715283632, 0.12443186342716217], [0.0059726727195084095, 0.0064332024194300175, 0.005674977786839008, 0.012177813798189163, 0.029017139226198196, 0.07363323122262955, 0.02635008841753006, 0.06776728481054306, 0.3844427764415741], [0.01789006032049656, 0.011232955381274223, 0.013579105027019978, 0.006586464587599039, 0.0031376779079437256, 0.005298648029565811, 0.0014133123913779855, 0.019931431859731674, 0.43546125292778015]], [[0.0030689863488078117, 0.0033166492357850075, 0.00242445501498878, 0.0004114684124942869, 0.0001578721567057073, 0.0005789128481410444, 3.8072739698691294e-05, 0.0015109134837985039, 0.17528407275676727], [0.003965090494602919, 0.03982608765363693, 0.010935517959296703, 0.030606640502810478, 0.006151079200208187, 0.005054636858403683, 0.000700213888194412, 0.0068400949239730835, 0.44721174240112305], [0.010818920098245144, 0.1957474648952484, 0.05118459090590477, 0.017250701785087585, 0.00452144630253315, 0.007591108791530132, 0.0002662086335476488, 0.002007861156016588, 0.3479042053222656], [0.0012930310331285, 0.018686266615986824, 0.022953161969780922, 0.019466092810034752, 0.05568217858672142, 0.009044455364346504, 0.001302405260503292, 0.0017953389324247837, 0.43391719460487366], [0.000962406222242862, 0.005701298825442791, 0.010019714944064617, 0.01962333731353283, 0.012387268245220184, 0.010740355588495731, 0.0003362670831847936, 0.001200356986373663, 0.4691201150417328], [0.0022300526034086943, 0.0040331617929041386, 0.008002933114767075, 0.016305968165397644, 0.051353368908166885, 0.02401667647063732, 0.0011861160164698958, 0.003552023321390152, 0.44315075874328613], [0.001013406552374363, 0.004529082681983709, 0.005132297053933144, 0.013445733115077019, 0.3318427503108978, 0.0748477652668953, 0.004088751971721649, 0.013508574105799198, 0.27495595812797546], [0.002854519058018923, 0.00703628733754158, 0.022958945482969284, 0.039655089378356934, 0.02283470332622528, 0.39655572175979614, 0.028923355042934418, 0.01945863850414753, 0.2272329330444336], [0.012420429848134518, 0.012259387411177158, 0.009217140264809132, 0.0065152873285114765, 0.005099431611597538, 0.01140523049980402, 0.002370786387473345, 0.011538098566234112, 0.43145236372947693]], [[0.0062873754650354385, 0.0033066386822611094, 0.005725296214222908, 0.002122096484526992, 0.0035054287873208523, 0.0018759208032861352, 0.0005465082940645516, 0.001364398980513215, 0.05486242100596428], [0.010374179109930992, 0.017863847315311432, 0.08150981366634369, 0.08140186965465546, 0.07214724272489548, 0.23391591012477875, 0.11223496496677399, 0.049508534371852875, 0.13656170666217804], [0.010608501732349396, 0.056547943502664566, 0.10995253175497055, 0.05565983057022095, 0.02825392782688141, 0.10524681210517883, 0.03965795785188675, 0.03382706269621849, 0.22549866139888763], [0.006527698133140802, 0.026134004816412926, 0.028784804046154022, 0.007164767477661371, 0.048842236399650574, 0.2568477392196655, 0.09427621960639954, 0.04196718707680702, 0.2316848188638687], [0.004678796045482159, 0.024227414280176163, 0.013375849463045597, 0.007306893356144428, 0.00541008310392499, 0.050092827528715134, 0.014733346179127693, 0.02605808526277542, 0.4214590787887573], [0.01700776256620884, 0.042182184755802155, 0.02710765227675438, 0.021281739696860313, 0.020639576017856598, 0.006023309659212828, 0.006013905163854361, 0.02144630067050457, 0.3957773745059967], [0.008481322787702084, 0.021922994405031204, 0.015934770926833153, 0.009804973378777504, 0.02632986009120941, 0.06028136610984802, 0.009073665365576744, 0.013704154640436172, 0.4135402739048004], [0.0426543653011322, 0.08419543504714966, 0.055145513266325, 0.051335304975509644, 0.14563463628292084, 0.027572128921747208, 0.016870353370904922, 0.02830444648861885, 0.24439531564712524], [0.003631844650954008, 0.00630282424390316, 0.010843838565051556, 0.004429279826581478, 0.002837232779711485, 0.005300014279782772, 0.0013003009371459484, 0.004197238944470882, 0.46347904205322266]], [[0.0434751994907856, 0.07624716311693192, 0.06747912615537643, 0.02035519666969776, 0.010015725158154964, 0.0414426289498806, 0.03631532937288284, 0.06742885708808899, 0.18269914388656616], [0.035312458872795105, 0.04287431761622429, 0.3870684802532196, 0.01889089122414589, 0.0047857556492090225, 0.04934628680348396, 0.006713453214615583, 0.04850570484995842, 0.07312250137329102], [0.009067765437066555, 0.009693324565887451, 0.4875434935092926, 0.0014388547278940678, 0.00021393502538558096, 0.002667471067979932, 0.0006254262407310307, 0.027370432391762733, 0.13182732462882996], [0.043251343071460724, 0.05432870611548424, 0.2003648281097412, 0.07239138334989548, 0.02954348549246788, 0.13457031548023224, 0.008119238540530205, 0.06903116405010223, 0.08606088161468506], [0.01956501044332981, 0.04456562176346779, 0.10031446814537048, 0.050040360540151596, 0.2813097834587097, 0.12771634757518768, 0.012727844528853893, 0.046444378793239594, 0.03654434531927109], [0.026218045502901077, 0.06079234927892685, 0.05672372877597809, 0.01798201911151409, 0.001952760387212038, 0.07390354573726654, 0.004739114083349705, 0.025562353432178497, 0.1153319776058197], [0.04773871228098869, 0.06627925485372543, 0.06205539405345917, 0.05496828258037567, 0.008842677809298038, 0.19613268971443176, 0.03337875381112099, 0.015735918655991554, 0.04694003611803055], [0.05267766863107681, 0.027090558782219887, 0.1338524967432022, 0.02360408753156662, 0.02441701479256153, 0.053336866199970245, 0.012728002853691578, 0.07358848303556442, 0.09732522070407867], [0.0540308952331543, 0.04522665590047836, 0.10037654638290405, 0.03302600607275963, 0.020069647580385208, 0.039606042206287384, 0.01987120322883129, 0.043555453419685364, 0.20935256779193878]], [[0.0031840449664741755, 0.21571789681911469, 0.04524892568588257, 0.04099930077791214, 0.009694595821201801, 0.12895631790161133, 0.004357876721769571, 0.1127181351184845, 0.21609258651733398], [0.004006592091172934, 0.05269387364387512, 0.044160183519124985, 0.03270796686410904, 0.006540026981383562, 0.00946151651442051, 0.002772148232907057, 0.0238027460873127, 0.4141005873680115], [0.011967779137194157, 0.20360039174556732, 0.0273871012032032, 0.0805215984582901, 0.009617360308766365, 0.029085135087370872, 0.004362944047898054, 0.029789013788104057, 0.29455703496932983], [0.0028203059919178486, 0.22022941708564758, 0.08479999005794525, 0.02473951317369938, 0.01705314591526985, 0.008756676688790321, 0.0037036833819001913, 0.0203179232776165, 0.30852213501930237], [0.002009183866903186, 0.023240454494953156, 0.0190526582300663, 0.024731798097491264, 0.012375425547361374, 0.00394817627966404, 0.001384460018016398, 0.004934764001518488, 0.4578995406627655], [0.0076033552177250385, 0.09425722807645798, 0.04865274950861931, 0.11354836821556091, 0.09413701295852661, 0.023365287110209465, 0.006663545034825802, 0.023783979937434196, 0.28648820519447327], [0.0033919215202331543, 0.05983782932162285, 0.06063438579440117, 0.23119010031223297, 0.268436998128891, 0.022264478728175163, 0.006140152458101511, 0.014200322329998016, 0.1666257083415985], [0.006729861255735159, 0.08788341283798218, 0.10373534262180328, 0.1857779622077942, 0.12147389352321625, 0.1733231246471405, 0.03104526922106743, 0.04033413156867027, 0.1204276904463768], [0.00839389767497778, 0.013293436728417873, 0.005461883265525103, 0.01169236283749342, 0.006590526085346937, 0.008103218860924244, 0.0015514168189838529, 0.018558092415332794, 0.43971800804138184]], [[5.714677172363736e-06, 7.531060873589013e-06, 0.0001237595861312002, 0.0001824203645810485, 3.015415131812915e-06, 1.3844623026670888e-05, 1.2050754172321376e-08, 2.479518798281788e-06, 0.49366670846939087], [8.525857424501737e-07, 0.0007749959477223456, 5.146398689248599e-05, 0.0002799722133204341, 1.0684244244885122e-07, 1.7900667614867416e-08, 5.984887030408004e-10, 3.9815680793253705e-05, 0.5097732543945312], [3.231378684631636e-07, 0.9981132745742798, 6.831890641478822e-05, 4.638550672098063e-05, 9.831397619564086e-06, 1.1858296034006344e-07, 4.995786076489317e-11, 4.471216730195238e-09, 0.0008773634908720851], [1.397115201307031e-09, 2.6192303721472854e-06, 0.9998918771743774, 9.90204862318933e-05, 5.5761820050292954e-08, 6.497455729004287e-08, 1.194159793271865e-08, 1.2937077797925411e-10, 3.2282780466630356e-06], [3.388044012009317e-11, 2.95115332171747e-09, 2.278439069414162e-06, 0.9984825253486633, 0.0015151363331824541, 2.0659163268987868e-08, 1.890719386610229e-10, 2.8548736725336754e-12, 2.5246126966749216e-08], [8.36674826643069e-11, 8.532065054467353e-10, 8.29904944765758e-09, 0.0002776994660962373, 0.9997115731239319, 1.0491678949620109e-05, 9.19305165325568e-08, 1.2629202371383652e-11, 1.6365794053285754e-08], [1.1440866367143169e-18, 6.24125504855641e-19, 1.2712827481258654e-13, 3.7660291009843083e-13, 9.704320680370415e-10, 0.999998927116394, 1.0640302434694604e-06, 5.443953213025048e-17, 1.223048236715903e-15], [1.1910175623519592e-10, 9.76662218980795e-13, 1.8872206020148496e-09, 6.939735008870684e-09, 6.119305617779958e-10, 0.00016604574921075255, 0.9998329877853394, 3.1072784167918144e-07, 2.9101207132953277e-07], [0.027686618268489838, 0.010151353664696217, 0.024794626981019974, 0.02103099413216114, 0.0042915563099086285, 0.005246133543550968, 0.0006153103895485401, 0.02844744548201561, 0.40133506059646606]], [[0.005391542799770832, 0.007001600693911314, 0.01654086448252201, 0.007268095389008522, 0.005217065569013357, 0.012687058188021183, 0.0018780648242682219, 0.025507211685180664, 0.44259437918663025], [0.006576152052730322, 0.10240702331066132, 0.018728697672486305, 0.14323820173740387, 0.049986474215984344, 0.03025483712553978, 0.012050971388816833, 0.049884919077157974, 0.2808198630809784], [0.012973690405488014, 0.06871321052312851, 0.031490497291088104, 0.10958608984947205, 0.04596468806266785, 0.04817672818899155, 0.011864996515214443, 0.0465908944606781, 0.2963188588619232], [0.004054914694279432, 0.03101220168173313, 0.014836825430393219, 0.08251379430294037, 0.025474147871136665, 0.0367685928940773, 0.019961180165410042, 0.1350509375333786, 0.3203428089618683], [0.003940700553357601, 0.004999156575649977, 0.0032750770915299654, 0.07968626916408539, 0.02742406167089939, 0.06991948932409286, 0.09462787955999374, 0.12835530936717987, 0.2933743894100189], [0.00998516846448183, 0.003294517984613776, 0.0027820756658911705, 0.019927389919757843, 0.027486037462949753, 0.021844541653990746, 0.02705955132842064, 0.16139407455921173, 0.356993168592453], [0.004408373963087797, 0.00316426414065063, 0.0014020120725035667, 0.023342369124293327, 0.025323715060949326, 0.025710592046380043, 0.03184136748313904, 0.12601809203624725, 0.38134074211120605], [0.002143165795132518, 0.006253203842788935, 0.0013561963569372892, 0.0030949197243899107, 0.0021872781217098236, 0.002259022556245327, 0.0016221548430621624, 0.017215300351381302, 0.4804159998893738], [0.01601012982428074, 0.012033963575959206, 0.01078930776566267, 0.011333223432302475, 0.004751932807266712, 0.008196607232093811, 0.005289657507091761, 0.02050664834678173, 0.41423702239990234]], [[0.011896337382495403, 0.04553978517651558, 0.2977008819580078, 0.016144176945090294, 0.014812009409070015, 0.05180941894650459, 0.006068960297852755, 0.018725192174315453, 0.06805863231420517], [0.07108449190855026, 0.10104425251483917, 0.047358378767967224, 0.01654794067144394, 0.008046175353229046, 0.009992127306759357, 0.009700554423034191, 0.06148039177060127, 0.17401942610740662], [0.06808757036924362, 0.046941373497247696, 0.018322275951504707, 0.011204362846910954, 0.004199360962957144, 0.011305831372737885, 0.009801087900996208, 0.04053309187293053, 0.266318142414093], [0.07591699808835983, 0.05357486382126808, 0.024092543870210648, 0.025861689820885658, 0.008523015305399895, 0.022105766460299492, 0.015525205992162228, 0.0807480439543724, 0.2269948124885559], [0.058995891362428665, 0.03078671172261238, 0.013344567269086838, 0.025047797709703445, 0.01611863449215889, 0.026517633348703384, 0.021701818332076073, 0.07825782150030136, 0.33156299591064453], [0.030031220987439156, 0.011588482186198235, 0.009314131923019886, 0.013186336494982243, 0.012996258214116096, 0.0043689189478755, 0.007965936325490475, 0.058860596269369125, 0.31455063819885254], [0.027438925579190254, 0.034748516976833344, 0.008749268017709255, 0.022606780752539635, 0.02249724417924881, 0.02475479245185852, 0.026207972317934036, 0.06713223457336426, 0.3269135355949402], [0.04745704308152199, 0.04258449748158455, 0.03822675719857216, 0.02935813181102276, 0.013506618328392506, 0.05341669172048569, 0.018804382532835007, 0.19889415800571442, 0.16479218006134033], [0.004619167651981115, 0.003336237743496895, 0.005120809189975262, 0.002401411999017, 0.0011635300470516086, 0.001786738052032888, 0.0006125796353444457, 0.013043121434748173, 0.47580668330192566]], [[0.017892248928546906, 0.09621790051460266, 0.27972814440727234, 0.04248691350221634, 0.036734793335199356, 0.08579163253307343, 0.047321733087301254, 0.16168665885925293, 0.10481302440166473], [0.006097771693021059, 0.034571822732686996, 0.02834142930805683, 0.01489602867513895, 0.011280916631221771, 0.005926548037678003, 0.006407484412193298, 0.07840634882450104, 0.3984966576099396], [0.008414425887167454, 0.020426031202077866, 0.029306910932064056, 0.008140305057168007, 0.003373718587681651, 0.00570417195558548, 0.0032661971636116505, 0.042032670229673386, 0.42415526509284973], [0.0040637715719640255, 0.023357607424259186, 0.011164208874106407, 0.0061511932872235775, 0.005613989662379026, 0.0051599349826574326, 0.004296521190553904, 0.05728956684470177, 0.43970683217048645], [0.00246781250461936, 0.005526396445930004, 0.003295141039416194, 0.001365789445117116, 0.004704872611910105, 0.002192872576415539, 0.002819143468514085, 0.034813810139894485, 0.47196128964424133], [0.012753617018461227, 0.026578955352306366, 0.03122747875750065, 0.007042259443551302, 0.019207507371902466, 0.015565520152449608, 0.019687412306666374, 0.08892396092414856, 0.3711673617362976], [0.006345175672322512, 0.02158680185675621, 0.021593932062387466, 0.0076037319377064705, 0.008861963637173176, 0.004473880399018526, 0.01908325031399727, 0.09513793140649796, 0.4066341817378998], [0.009660806506872177, 0.10523632913827896, 0.054255932569503784, 0.10370367020368576, 0.09922593832015991, 0.019991405308246613, 0.03873194381594658, 0.16783082485198975, 0.1915450245141983], [0.015019276179373264, 0.010747543536126614, 0.014063682407140732, 0.004853293765336275, 0.004904619883745909, 0.007413987535983324, 0.002837849548086524, 0.0210548248142004, 0.42789772152900696]]], [[[0.009784198366105556, 0.06344977021217346, 0.06350541859865189, 0.10532840341329575, 0.019043484702706337, 0.060828521847724915, 0.04589780792593956, 0.10801858454942703, 0.24758686125278473], [0.012747925706207752, 0.037697337567806244, 0.035048969089984894, 0.050928063690662384, 0.032982971519231796, 0.06089800223708153, 0.06137798726558685, 0.06971123814582825, 0.3180164098739624], [0.020289044827222824, 0.03581579029560089, 0.03444864973425865, 0.020815229043364525, 0.01792898029088974, 0.029115784913301468, 0.020787101238965988, 0.040959130972623825, 0.38620296120643616], [0.006655355915427208, 0.1915997862815857, 0.03431512787938118, 0.01052369736135006, 0.02027483657002449, 0.015129264444112778, 0.035484883934259415, 0.04475521668791771, 0.3216469883918762], [0.004118661396205425, 0.08324164897203445, 0.04330205172300339, 0.06619128584861755, 0.031995534896850586, 0.014395874924957752, 0.03820759430527687, 0.024274663999676704, 0.34801867604255676], [0.007169913500547409, 0.14041462540626526, 0.044219449162483215, 0.1257401555776596, 0.11478133499622345, 0.02485238015651703, 0.04211713746190071, 0.03533770889043808, 0.22608068585395813], [0.005102440714836121, 0.08522544801235199, 0.014583348296582699, 0.21162785589694977, 0.12515853345394135, 0.051443375647068024, 0.042615070939064026, 0.020999761298298836, 0.22143219411373138], [0.006187396124005318, 0.0747554674744606, 0.06622717529535294, 0.07507996261119843, 0.03612075373530388, 0.23256315290927887, 0.09893076121807098, 0.01960683986544609, 0.19426439702510834], [0.024467743933200836, 0.018417391926050186, 0.022621972486376762, 0.009935016743838787, 0.006936731282621622, 0.015614781528711319, 0.005365448538213968, 0.0148396585136652, 0.41056859493255615]], [[0.023426394909620285, 0.09086892008781433, 0.05412374064326286, 0.04057744890451431, 0.0296955406665802, 0.3290298581123352, 0.06603242456912994, 0.025668540969491005, 0.1050044372677803], [0.024621548131108284, 0.038398053497076035, 0.1436786949634552, 0.003269249340519309, 0.0029172715730965137, 0.017160942777991295, 0.002876817248761654, 0.006300558336079121, 0.29066383838653564], [0.005516650155186653, 0.0022310451604425907, 0.6447200775146484, 0.0015197627944871783, 0.00022418788284994662, 0.0013377133291214705, 0.00021752827160526067, 0.0014123632572591305, 0.11988424509763718], [0.013424402102828026, 0.003142555011436343, 0.08069439977407455, 0.049036744982004166, 0.018610630184412003, 0.03919357806444168, 0.011662953533232212, 0.0015985965728759766, 0.2843291461467743], [0.003420221619307995, 0.00025893712881952524, 0.007037052419036627, 0.012030331417918205, 0.21710552275180817, 0.011932444758713245, 0.0025048949755728245, 0.00029943991103209555, 0.33892133831977844], [0.02035590261220932, 0.0015163960633799434, 0.023009400814771652, 0.01885882019996643, 0.022646859288215637, 0.1507120132446289, 0.005922086536884308, 0.003945509437471628, 0.2660212516784668], [0.015694277361035347, 0.002930335234850645, 0.04194282367825508, 0.012919040396809578, 0.00666051497682929, 0.040622636675834656, 0.0610898919403553, 0.0027305837720632553, 0.35911235213279724], [0.023699460551142693, 0.005310104228556156, 0.3213992416858673, 0.01682310737669468, 0.022914046421647072, 0.0522843562066555, 0.0055830152705311775, 0.02809286303818226, 0.23498646914958954], [0.008026348426938057, 0.004190546460449696, 0.015968410298228264, 0.002014709636569023, 0.003019441617652774, 0.011358496733009815, 0.002573121339082718, 0.007406445685774088, 0.4667324125766754]], [[0.0007928471313789487, 0.0010190174216404557, 0.0001585514983162284, 5.1434584747767076e-05, 7.742998423054814e-05, 5.713174687116407e-05, 1.3919206139689777e-05, 0.00010720450518419966, 0.008091758005321026], [0.0010029723634943366, 0.04209662228822708, 0.7135932445526123, 0.002554489765316248, 0.004366864915937185, 0.007230494171380997, 0.0012529529631137848, 0.0035684374161064625, 0.11116693913936615], [0.0036516403779387474, 0.0472995862364769, 0.10641839355230331, 0.004822524264454842, 0.0033394680358469486, 0.005479796323925257, 0.0005949529586359859, 0.0038098131772130728, 0.40914592146873474], [0.00224355049431324, 0.20634308457374573, 0.15376883745193481, 0.02267998643219471, 0.05664416030049324, 0.17337311804294586, 0.052645668387413025, 0.016855567693710327, 0.1496681421995163], [0.00036538299173116684, 0.005143022630363703, 0.002708811778575182, 0.015038595534861088, 0.010681343264877796, 0.2885156273841858, 0.08330053091049194, 0.0021479318384081125, 0.2943871021270752], [0.0019862966146320105, 0.008307765237987041, 0.007513422053307295, 0.005484171211719513, 0.0022039590403437614, 0.010158870369195938, 0.020145241171121597, 0.008998398669064045, 0.46509525179862976], [0.0011545439483597875, 0.011793678626418114, 0.03125939145684242, 0.019059352576732635, 0.0045966277830302715, 0.5868287086486816, 0.015473531559109688, 0.009756382554769516, 0.15759997069835663], [0.007597621995955706, 0.02762264385819435, 0.0015580342151224613, 0.003504459047690034, 0.0018398012034595013, 0.0010083654196932912, 0.0016443085623905063, 0.022401709109544754, 0.4108135998249054], [0.015399283729493618, 0.018684647977352142, 0.014629903249442577, 0.00660094665363431, 0.004707104992121458, 0.0048784250393509865, 0.0035417857579886913, 0.009543202817440033, 0.4163462817668915]], [[0.008268628269433975, 0.03745492175221443, 0.09149684011936188, 0.02669140137732029, 0.02633247897028923, 0.011395346373319626, 0.007168611511588097, 0.03556559234857559, 0.26884135603904724], [0.016845375299453735, 0.0218306016176939, 0.036527182906866074, 0.011158578097820282, 0.009073068387806416, 0.014578185975551605, 0.0058029755018651485, 0.030473915860056877, 0.35241812467575073], [0.02414902113378048, 0.008548571728169918, 0.0028651379980146885, 0.003636774141341448, 0.0033346032723784447, 0.0073812128975987434, 0.005321365315467119, 0.012973500415682793, 0.34287354350090027], [0.03723059967160225, 0.02151254005730152, 0.01725471392273903, 0.005822973325848579, 0.006301756948232651, 0.024294724687933922, 0.007894588634371758, 0.04295893386006355, 0.3110547661781311], [0.031034693121910095, 0.010611320845782757, 0.008594815619289875, 0.002274045255035162, 0.0001026106983772479, 0.004529307130724192, 0.0015667160041630268, 0.07144632935523987, 0.32413357496261597], [0.01629139482975006, 0.006612601689994335, 0.013118643313646317, 0.005902975331991911, 0.0012208023108541965, 0.0009645412210375071, 0.0028060423210263252, 0.020595334470272064, 0.30390551686286926], [0.01867850311100483, 0.014446166343986988, 0.02077842876315117, 0.008636676706373692, 0.002688441891223192, 0.012393290176987648, 0.0021478869020938873, 0.03494225814938545, 0.3763873875141144], [0.02582516334950924, 0.01827569305896759, 0.010876113548874855, 0.012015820480883121, 0.014953626319766045, 0.013011423870921135, 0.007065214682370424, 0.054383695125579834, 0.3805626630783081], [0.05303102731704712, 0.03728470951318741, 0.048727720975875854, 0.025673650205135345, 0.021410545334219933, 0.030488714575767517, 0.020884282886981964, 0.06786485761404037, 0.23328326642513275]], [[0.015332890674471855, 0.08737398684024811, 0.13119736313819885, 0.11513181775808334, 0.08929683268070221, 0.14574450254440308, 0.015729151666164398, 0.06846041232347488, 0.1487916111946106], [0.00045611002133227885, 0.0272374264895916, 0.7365787029266357, 0.011382960714399815, 0.008532898500561714, 0.007291649002581835, 0.0002838654909282923, 0.0006219688220880926, 0.10372467339038849], [0.0010970134753733873, 0.008627325296401978, 0.0011478657834231853, 0.06937770545482635, 0.0007389226811937988, 0.001014365116134286, 0.00018403785361442715, 0.0004872368590440601, 0.46219727396965027], [0.0013795864069834352, 0.004270108882337809, 0.004544945899397135, 0.009267534129321575, 0.508529007434845, 0.10408904403448105, 0.0029551649931818247, 0.005478258710354567, 0.1773230880498886], [0.00012416482786647975, 0.0003148867399431765, 0.010896027088165283, 0.0013689488405361772, 0.03405134752392769, 0.8216419816017151, 0.0025357746053487062, 0.0009020163561217487, 0.06360246986150742], [0.0034128748811781406, 0.004842598456889391, 0.006920861080288887, 0.010850788094103336, 0.008168933913111687, 0.06358261406421661, 0.2975803017616272, 0.29324543476104736, 0.15307745337486267], [0.0007266945322044194, 0.0031308603938668966, 0.00010069265408674255, 0.0021271025761961937, 0.0002731928543653339, 0.0007131104357540607, 9.368578321300447e-05, 0.44086721539497375, 0.274982750415802], [0.00011903046106453985, 0.013572759926319122, 0.0006089909002184868, 0.00011892664042534307, 9.199198393616825e-05, 0.00032549016759730875, 0.00010943587403744459, 0.009040736593306065, 0.47148117423057556], [0.005189702846109867, 0.012265386991202831, 0.006382113788276911, 0.004765898920595646, 0.001068382989615202, 0.0024016504175961018, 0.0008469437016174197, 0.00228643836453557, 0.4743560254573822]], [[0.0034775647800415754, 0.03159920871257782, 0.05590981990098953, 0.09823749214410782, 0.10339411348104477, 0.07069417834281921, 0.005476534832268953, 0.06776495277881622, 0.2793913185596466], [0.008573872037231922, 0.05241953954100609, 0.07574405521154404, 0.13590601086616516, 0.09709564596414566, 0.0661124438047409, 0.021933045238256454, 0.2839035391807556, 0.107901930809021], [0.019055355340242386, 0.07649022340774536, 0.01817990653216839, 0.13498955965042114, 0.05024317279458046, 0.019877104088664055, 0.011236602440476418, 0.19218626618385315, 0.21583965420722961], [0.004294311162084341, 0.013928457163274288, 0.01173633337020874, 0.005180185195058584, 0.06110323593020439, 0.04316576197743416, 0.07968101650476456, 0.4290054440498352, 0.16713520884513855], [0.0016497024334967136, 0.022838836535811424, 0.006187095306813717, 0.00518178241327405, 0.009203464724123478, 0.03367726132273674, 0.02489609085023403, 0.27488264441490173, 0.3074115514755249], [0.0061516608111560345, 0.020987696945667267, 0.007116274442523718, 0.011045906692743301, 0.01160528976470232, 0.017344776540994644, 0.01732688955962658, 0.30683523416519165, 0.2953673005104065], [0.002840831410139799, 0.015938006341457367, 0.001819100696593523, 0.009596051648259163, 0.019610881805419922, 0.023622745648026466, 0.025773910805583, 0.2889944612979889, 0.3031492233276367], [0.00299728661775589, 0.016334213316440582, 0.006849631667137146, 0.007513015065342188, 0.01134041603654623, 0.008366581052541733, 0.0017930356552824378, 0.020179539918899536, 0.45790374279022217], [0.010281422175467014, 0.013918614946305752, 0.008130177855491638, 0.009474700316786766, 0.006027864292263985, 0.00677644694224, 0.005115867126733065, 0.023688988760113716, 0.4229169189929962]], [[0.004887207876890898, 0.09218461811542511, 0.15319420397281647, 0.07867231220006943, 0.058687757700681686, 0.04031192138791084, 0.02903556078672409, 0.0410614088177681, 0.23716753721237183], [0.009231239557266235, 0.1236560270190239, 0.022629527375102043, 0.05002673715353012, 0.037872832268476486, 0.03985787183046341, 0.02874763123691082, 0.28249600529670715, 0.18674787878990173], [0.01404890138655901, 0.10284174233675003, 0.08528555184602737, 0.04372251406311989, 0.03245510160923004, 0.040445420891046524, 0.02477218210697174, 0.06268306076526642, 0.2827574908733368], [0.006038513965904713, 0.03949063643813133, 0.005797176621854305, 0.09925459325313568, 0.02386895939707756, 0.032976455986499786, 0.017759665846824646, 0.18907178938388824, 0.2833767831325531], [0.002521602204069495, 0.016350949183106422, 0.0033416952937841415, 0.03995287045836449, 0.07000948488712311, 0.02433883026242256, 0.01780638098716736, 0.044615235179662704, 0.38533449172973633], [0.005210545379668474, 0.01654096134006977, 0.018878497183322906, 0.03578563034534454, 0.07948151230812073, 0.04479643702507019, 0.030459219589829445, 0.03408002853393555, 0.35390305519104004], [0.0027643081266433, 0.014556143432855606, 0.008377637714147568, 0.02064206823706627, 0.033564548939466476, 0.03545372560620308, 0.05153476819396019, 0.06944683939218521, 0.3785746693611145], [0.009665495716035366, 0.02650030516088009, 0.018499763682484627, 0.02206851914525032, 0.015454926528036594, 0.00791473314166069, 0.010234802030026913, 0.039958685636520386, 0.4194757342338562], [0.024570448324084282, 0.019677545875310898, 0.017218880355358124, 0.013285048305988312, 0.008420281112194061, 0.01549629494547844, 0.005629510153084993, 0.01922103762626648, 0.39717188477516174]], [[0.002128626685589552, 0.0001650748454267159, 4.5277676690602675e-05, 0.00023853186576161534, 3.4295742807444185e-05, 4.8937235987978056e-05, 2.1546569769270718e-05, 0.00044212714419700205, 0.01773514598608017], [0.017532993108034134, 0.02404000796377659, 0.022591181099414825, 0.17755717039108276, 0.1322290599346161, 0.11881161481142044, 0.025408482179045677, 0.0972733125090599, 0.16660676896572113], [0.015672365203499794, 0.01221366785466671, 0.024227742105722427, 0.010929143987596035, 0.010850447230041027, 0.03210141137242317, 0.0034414620604366064, 0.01649285852909088, 0.4273480772972107], [0.004369066096842289, 0.009990341030061245, 0.0031546952668577433, 0.01742328144609928, 0.13566173613071442, 0.11935246735811234, 0.0863148421049118, 0.0766659528017044, 0.25982850790023804], [0.001658593537285924, 0.010550912469625473, 0.004066081717610359, 0.016361169517040253, 0.06585894525051117, 0.08938878774642944, 0.04111625254154205, 0.029496224597096443, 0.36590638756752014], [0.009245432913303375, 0.02254329062998295, 0.007270926143974066, 0.009432904422283173, 0.014281123876571655, 0.028561009094119072, 0.008832152932882309, 0.04768485203385353, 0.4108608365058899], [0.0066557084210217, 0.03205523267388344, 0.009396317414939404, 0.035940494388341904, 0.13497395813465118, 0.1119065061211586, 0.04104582965373993, 0.06691551953554153, 0.26584550738334656], [0.04367454722523689, 0.030709803104400635, 0.016729312017560005, 0.01720341108739376, 0.00866479892283678, 0.008728940039873123, 0.005692319944500923, 0.03621846064925194, 0.2991501986980438], [0.018770838156342506, 0.01709742099046707, 0.015042035840451717, 0.0079502509906888, 0.004236956592649221, 0.00667175417765975, 0.003529805690050125, 0.009282759390771389, 0.38503390550613403]], [[0.0010247679892927408, 0.005229088943451643, 0.0010495471069589257, 0.0010058552725240588, 0.001038134447298944, 0.0009390295017510653, 0.0005392783787101507, 0.5504570007324219, 0.21954546868801117], [0.0012778689851984382, 0.009162486530840397, 0.0328250452876091, 0.003567345906049013, 0.002338143065571785, 0.0036760936491191387, 0.000227054872084409, 0.0017234844854101539, 0.4731438159942627], [0.0022763442248106003, 0.00740745710209012, 0.0025567414704710245, 0.011181683279573917, 0.000770330720115453, 0.001676621614024043, 0.0004511750303208828, 0.00041692942613735795, 0.48413601517677307], [0.0011705560609698296, 0.008067402988672256, 0.0026227105408906937, 0.0049263667315244675, 0.09535650908946991, 0.021231994032859802, 0.0010216492228209972, 0.003180760657414794, 0.4285867214202881], [0.0003494688426144421, 0.0019008400849997997, 0.0022555068135261536, 0.001176475896500051, 0.06195712462067604, 0.22238466143608093, 0.00451246602460742, 0.0016097957268357277, 0.35109052062034607], [0.0017486204160377383, 0.002781594404950738, 0.0014616771368309855, 0.0038021630607545376, 0.0022196206264197826, 0.032525621354579926, 0.21113842725753784, 0.027756614610552788, 0.35746777057647705], [0.0004453497240319848, 0.001446605776436627, 5.3005853260401636e-05, 0.000581208209041506, 0.000476109329611063, 0.00357592711225152, 0.0007324761827476323, 0.04861157760024071, 0.4700387120246887], [0.0003688672441057861, 0.005001384764909744, 0.0007465973030775785, 0.00025294339866377413, 9.366084850626066e-05, 0.0004360731691122055, 0.0001310702064074576, 0.017705680802464485, 0.4902704060077667], [0.01662318967282772, 0.02117673121392727, 0.006367746740579605, 0.007473534904420376, 0.002645942848175764, 0.004686752799898386, 0.0022847596555948257, 0.008850357495248318, 0.4445846974849701]], [[0.004602161236107349, 0.0025023785419762135, 0.0013971495209261775, 0.001910419319756329, 0.0006659245700575411, 0.0016302717849612236, 0.00043538844329304993, 0.0019634782802313566, 0.46796220541000366], [0.017191050574183464, 0.016913849860429764, 0.0344238206744194, 0.02109345607459545, 0.008878347463905811, 0.006207023281604052, 0.006159850396215916, 0.015799345448613167, 0.4227338135242462], [0.008392194285988808, 0.08104880154132843, 0.01639089733362198, 0.006375494878739119, 0.013459350913763046, 0.0038444167003035545, 0.0007482392829842865, 0.003799224039539695, 0.42443859577178955], [0.001486602588556707, 0.0023683635517954826, 0.011529610492289066, 0.007295703049749136, 0.0021177884191274643, 0.0013771061785519123, 0.0008855614578351378, 0.0035826507955789566, 0.48522916436195374], [0.0012847722973674536, 0.00261834729462862, 0.010125018656253815, 0.056709691882133484, 0.005156891420483589, 0.005446788854897022, 0.001008740160614252, 0.002050968585535884, 0.45814934372901917], [0.002733484609052539, 0.006255648098886013, 0.008446780033409595, 0.010157633572816849, 0.03459753096103668, 0.005892027635127306, 0.0007083110976964235, 0.0033653967548161745, 0.4613305628299713], [0.0028857793658971786, 0.007232632488012314, 0.007882855832576752, 0.05577976256608963, 0.04952952638268471, 0.02531002089381218, 0.0037053029518574476, 0.01959269307553768, 0.4113808870315552], [0.0034128515981137753, 0.003939729183912277, 0.003936275839805603, 0.010643941350281239, 0.0017725180368870497, 0.01996697299182415, 0.04185958579182625, 0.09607525169849396, 0.4100092351436615], [0.024587204679846764, 0.010375452227890491, 0.012562116608023643, 0.008037853054702282, 0.005945245269685984, 0.009264680556952953, 0.007508115377277136, 0.011149978265166283, 0.41665399074554443]], [[0.00048719378537498415, 0.0016921494388952851, 0.00040300501859746873, 0.00021417596144601703, 8.935183723224327e-05, 0.0030993835534900427, 0.0007810798706486821, 0.9193664193153381, 0.023055903613567352], [0.0027713614981621504, 0.08397112786769867, 0.05193910375237465, 0.016939187422394753, 0.0022041278425604105, 0.0029977767262607813, 0.003563196863979101, 0.00877379346638918, 0.41430044174194336], [0.0010921587236225605, 0.42779940366744995, 0.006578531581908464, 0.0014727141242474318, 0.0017975274240598083, 0.0010941035579890013, 6.023854439263232e-05, 5.6039738410618156e-05, 0.27791574597358704], [0.0006737246876582503, 0.008373060263693333, 0.12172280251979828, 0.004986476618796587, 0.0007816603174433112, 0.004545122850686312, 0.007766250520944595, 0.0001776995341060683, 0.42826735973358154], [0.0004160635871812701, 0.002634591655805707, 0.016594745218753815, 0.27470913529396057, 0.021080875769257545, 0.0028178137727081776, 0.0011507784947752953, 4.058673221152276e-05, 0.34122875332832336], [0.002481795847415924, 0.007451680954545736, 0.0084501001983881, 0.04968898370862007, 0.423367977142334, 0.009024492464959621, 0.0009456521947868168, 0.00020793182193301618, 0.24719859659671783], [0.0002650237292982638, 0.0014228214276954532, 0.005571195390075445, 0.017781691625714302, 0.04897824674844742, 0.3531229496002197, 0.0011916421353816986, 0.00011059032840421423, 0.2850455939769745], [0.0011373042361810803, 0.002236234489828348, 0.005291897803544998, 0.00887035671621561, 0.0009603105136193335, 0.14108602702617645, 0.305453360080719, 0.022427262738347054, 0.2565997242927551], [0.012357382103800774, 0.011543367058038712, 0.006351469550281763, 0.003990822937339544, 0.0031228475272655487, 0.008493022993206978, 0.002075342694297433, 0.014676825143396854, 0.44728443026542664]], [[0.005989899858832359, 0.09139303117990494, 0.026810016483068466, 0.0487980991601944, 0.019986731931567192, 0.16587631404399872, 0.04014173522591591, 0.1424010545015335, 0.15417440235614777], [0.00306897284463048, 0.01342796441167593, 0.021265119314193726, 0.004360045772045851, 0.0008838544599711895, 0.004062327556312084, 0.003115238156169653, 0.007174549158662558, 0.007799121551215649], [0.009499392472207546, 0.019101914018392563, 0.0457623191177845, 0.012029091827571392, 0.0009536636061966419, 0.0019731668289750814, 0.002190505852922797, 0.004658089019358158, 0.01986420340836048], [0.008867834694683552, 0.01500577200204134, 0.007340576499700546, 0.02920330874621868, 0.023288758471608162, 0.05022633820772171, 0.05796845257282257, 0.26596730947494507, 0.15862727165222168], [0.0036607510410249233, 0.006391186732798815, 0.0024480626452714205, 0.027321306988596916, 0.040052711963653564, 0.07521122694015503, 0.03156106919050217, 0.23935608565807343, 0.23948360979557037], [0.01754981093108654, 0.00525283720344305, 0.002489976119250059, 0.04242882505059242, 0.03509701415896416, 0.049582283943891525, 0.05015264078974724, 0.13408371806144714, 0.20574714243412018], [0.008984477259218693, 0.013667243532836437, 0.0026346510276198387, 0.03665647283196449, 0.01680963672697544, 0.024209333583712578, 0.03122330643236637, 0.2037796527147293, 0.19723962247371674], [0.01112351194024086, 0.01963193342089653, 0.0034421244636178017, 0.04310804605484009, 0.011914917267858982, 0.020744027569890022, 0.019482852891087532, 0.2168053239583969, 0.2290947139263153], [0.055878978222608566, 0.03644617646932602, 0.05720988288521767, 0.03407743200659752, 0.025291848927736282, 0.03501643240451813, 0.03312542662024498, 0.06352921575307846, 0.22881262004375458]]], [[[0.005297467112541199, 0.16783204674720764, 0.3675132393836975, 0.04940835013985634, 0.022031916305422783, 0.028231138363480568, 0.008519068360328674, 0.07967200875282288, 0.11491129547357559], [0.004766474943608046, 0.12688788771629333, 0.12460390478372574, 0.02893034555017948, 0.013653712347149849, 0.017232440412044525, 0.009274342097342014, 0.08878704905509949, 0.28614553809165955], [0.002550829667598009, 0.033975888043642044, 0.04040086641907692, 0.018888572230935097, 0.01103578507900238, 0.004325386602431536, 0.006601816974580288, 0.030958233401179314, 0.42200005054473877], [0.004832226317375898, 0.06285307556390762, 0.040567006915807724, 0.07684948295354843, 0.03633752837777138, 0.04217629134654999, 0.022437050938606262, 0.10074576735496521, 0.3018655776977539], [0.0035615579690784216, 0.023039570078253746, 0.03205538168549538, 0.027895918115973473, 0.045681148767471313, 0.01721591129899025, 0.010281956754624844, 0.059282220900058746, 0.38620585203170776], [0.008434980176389217, 0.04755670204758644, 0.054221782833337784, 0.02550545334815979, 0.04541904479265213, 0.017660027369856834, 0.021139560267329216, 0.06945955008268356, 0.3433700501918793], [0.00492860097438097, 0.07522725313901901, 0.037394050508737564, 0.040790509432554245, 0.05941012501716614, 0.014410487376153469, 0.01341920904815197, 0.06265387684106827, 0.33901768922805786], [0.005471080541610718, 0.1889464408159256, 0.07867632806301117, 0.06225866824388504, 0.021826161071658134, 0.023536572232842445, 0.027204491198062897, 0.04511084780097008, 0.2683037221431732], [0.01980801671743393, 0.008580448105931282, 0.014234697446227074, 0.00992380827665329, 0.01028298120945692, 0.0091600576415658, 0.005750687327235937, 0.018989911302924156, 0.420198917388916]], [[0.004420050885528326, 0.1266983151435852, 0.16905458271503448, 0.07324151694774628, 0.0168790090829134, 0.06080598756670952, 0.015546832233667374, 0.1149018406867981, 0.20513631403446198], [0.003970958758145571, 0.1215076893568039, 0.07590468972921371, 0.04486093670129776, 0.004666517488658428, 0.009503792971372604, 0.005105611868202686, 0.0201373640447855, 0.3544002175331116], [0.004103243350982666, 0.24471741914749146, 0.05287128686904907, 0.030641809105873108, 0.0027440302073955536, 0.00585038959980011, 0.0046775764785707, 0.008326535113155842, 0.31769245862960815], [0.004044024273753166, 0.23380111157894135, 0.15574638545513153, 0.019537171348929405, 0.015819698572158813, 0.03960483521223068, 0.08028294146060944, 0.03317998722195625, 0.2058725506067276], [0.002462410368025303, 0.04369528964161873, 0.07162564992904663, 0.09851499646902084, 0.038973867893218994, 0.017387233674526215, 0.004132942762225866, 0.00568706588819623, 0.3570542633533478], [0.0027360650710761547, 0.024508515372872353, 0.030636055395007133, 0.06254623830318451, 0.05546869710087776, 0.019308557733893394, 0.009677473455667496, 0.005218904465436935, 0.39305683970451355], [0.0016681656707078218, 0.010791630484163761, 0.032815542072057724, 0.07728085666894913, 0.23383007943630219, 0.0634358674287796, 0.0039275032468140125, 0.0025694130454212427, 0.286190390586853], [0.00348345167003572, 0.023145731538534164, 0.029527956619858742, 0.08934146165847778, 0.08331946283578873, 0.08211545646190643, 0.06002994626760483, 0.018208447843790054, 0.3024033308029175], [0.011426216922700405, 0.009049708023667336, 0.012192009948194027, 0.015569650568068027, 0.008999671787023544, 0.011024982668459415, 0.0033921634312719107, 0.012049413286149502, 0.43733328580856323]], [[0.005105744581669569, 0.0911070853471756, 0.020794546231627464, 0.06420891731977463, 0.009805277921259403, 0.04237595573067665, 0.013696841895580292, 0.03515808284282684, 0.1733161062002182], [0.006423650309443474, 0.05394363030791283, 0.17512978613376617, 0.43607503175735474, 0.030811473727226257, 0.07436548173427582, 0.019245577976107597, 0.08345205336809158, 0.05096716433763504], [0.018413737416267395, 0.1352156549692154, 0.15041641891002655, 0.17828987538814545, 0.06867485493421555, 0.09728401154279709, 0.035086825489997864, 0.11978700011968613, 0.08465901762247086], [0.003984613344073296, 0.11092612147331238, 0.14696677029132843, 0.06717951595783234, 0.026056475937366486, 0.06739041954278946, 0.029580779373645782, 0.05975344777107239, 0.2299407422542572], [0.002610620576888323, 0.05329253897070885, 0.07848281413316727, 0.03147653117775917, 0.02376451902091503, 0.05199495702981949, 0.015109510160982609, 0.030399631708860397, 0.3475860059261322], [0.005790722090750933, 0.05595386400818825, 0.07701115310192108, 0.11726585030555725, 0.03268156573176384, 0.04541349038481712, 0.046410590410232544, 0.049196332693099976, 0.26831933856010437], [0.0011707909870892763, 0.018569553270936012, 0.02420329675078392, 0.03415117412805557, 0.0223215464502573, 0.0692625343799591, 0.01225161924958229, 0.020756829530000687, 0.39523300528526306], [0.004729016218334436, 0.11458010226488113, 0.08157681673765182, 0.26571789383888245, 0.038655489683151245, 0.12337535619735718, 0.05719822645187378, 0.030496535822749138, 0.13191869854927063], [0.0020520559046417475, 0.0018406618619337678, 0.006071656476706266, 0.0019317823462188244, 0.001352562103420496, 0.006889020558446646, 0.0007401554612442851, 0.002467881189659238, 0.48450881242752075]], [[0.004559527616947889, 0.000788952864240855, 0.0025498527102172375, 0.00043330114567652345, 0.00045689012040384114, 0.0006891385419294238, 6.610320997424424e-05, 0.004297088366001844, 0.32817378640174866], [0.0119582274928689, 0.028980802744627, 0.0328555703163147, 0.2566097378730774, 0.02039879374206066, 0.040396884083747864, 0.01524291280657053, 0.05649041384458542, 0.25364869832992554], [0.005526285618543625, 0.014378851279616356, 0.061596766114234924, 0.00858283694833517, 0.0023474351037293673, 0.0147481644526124, 0.0024471022188663483, 0.01132805272936821, 0.43023717403411865], [0.0059042214415967464, 0.03491642326116562, 0.005537510383874178, 0.04781602323055267, 0.037210576236248016, 0.15455812215805054, 0.038282498717308044, 0.01857975497841835, 0.32544761896133423], [0.006990362424403429, 0.02298472821712494, 0.004950795788317919, 0.09477657079696655, 0.03258771449327469, 0.13215355575084686, 0.020249199122190475, 0.016518551856279373, 0.3308350741863251], [0.013341106474399567, 0.029822537675499916, 0.00875923316925764, 0.10356228053569794, 0.0186845101416111, 0.0708804503083229, 0.28577691316604614, 0.01769726350903511, 0.20928701758384705], [0.006526425946503878, 0.010434571653604507, 0.0012898542918264866, 0.12139632552862167, 0.012297768145799637, 0.06764482706785202, 0.007496734149754047, 0.023653080686926842, 0.37102803587913513], [0.0038711640518158674, 0.003608987433835864, 0.007837025448679924, 0.014432350173592567, 0.0029854201711714268, 0.016951048746705055, 0.0020319868344813585, 0.005767277907580137, 0.46739304065704346], [0.005330605898052454, 0.003307645907625556, 0.010106753557920456, 0.006291170604526997, 0.005423597060143948, 0.00964100006967783, 0.001972002675756812, 0.0021975080017000437, 0.456297367811203]], [[0.003370942547917366, 0.04881782457232475, 0.03230999782681465, 0.0675431564450264, 0.03540462628006935, 0.3920157849788666, 0.10692373663187027, 0.1143830195069313, 0.08525600284337997], [0.006229700054973364, 0.03315015882253647, 0.01571987196803093, 0.07278934866189957, 0.02622600458562374, 0.07043248414993286, 0.1663273721933365, 0.07251719385385513, 0.2675327956676483], [0.007965737022459507, 0.047513965517282486, 0.037971071898937225, 0.018080836161971092, 0.03044014796614647, 0.07502014189958572, 0.06291737407445908, 0.031013887375593185, 0.33791661262512207], [0.003741672495380044, 0.0804874524474144, 0.012497924268245697, 0.008312543854117393, 0.08569295704364777, 0.028727207332849503, 0.02198808826506138, 0.029839633032679558, 0.3631247878074646], [0.015540530905127525, 0.04487740620970726, 0.007292138412594795, 0.2619316875934601, 0.021228685975074768, 0.011393985711038113, 0.025789447128772736, 0.03199133276939392, 0.2898111343383789], [0.023224031552672386, 0.16655676066875458, 0.018678585067391396, 0.36063358187675476, 0.030334828421473503, 0.011313293129205704, 0.04599607363343239, 0.02245994284749031, 0.15696081519126892], [0.04010115936398506, 0.08965997397899628, 0.003936432301998138, 0.46130096912384033, 0.0445362813770771, 0.010296289809048176, 0.016315732151269913, 0.04378350451588631, 0.14492268860340118], [0.008242328651249409, 0.02511579543352127, 0.016535207629203796, 0.057554397732019424, 0.03570202365517616, 0.17274735867977142, 0.10733512789011002, 0.024890093132853508, 0.27348363399505615], [0.014842351898550987, 0.01327650435268879, 0.016149787232279778, 0.011800777167081833, 0.005971558857709169, 0.008221070282161236, 0.004974676296114922, 0.0046539511531591415, 0.4087497591972351]], [[0.003993752412497997, 0.0013385460479184985, 0.0047914679162204266, 0.003591368906199932, 0.005904020741581917, 0.02256336808204651, 0.0030767114367336035, 0.0019530488643795252, 0.1198609247803688], [0.008261207491159439, 0.027138326317071915, 0.15395762026309967, 0.012650390155613422, 0.06177956238389015, 0.28440341353416443, 0.034142471849918365, 0.023110302165150642, 0.171820729970932], [0.004771775100380182, 0.007082073949277401, 0.0314272902905941, 0.0036075180396437645, 0.004755150992423296, 0.023166656494140625, 0.0028421124443411827, 0.005856794770807028, 0.43119698762893677], [0.007425465155392885, 0.0703849047422409, 0.1774425506591797, 0.010957038961350918, 0.021544698625802994, 0.3787921965122223, 0.044837888330221176, 0.02039637416601181, 0.1019025593996048], [0.0029996430967003107, 0.026763509958982468, 0.11934029310941696, 0.008635981939733028, 0.010709026828408241, 0.36904826760292053, 0.009430112317204475, 0.010960892774164677, 0.19858476519584656], [0.005889039020985365, 0.019350072368979454, 0.046852149069309235, 0.0023042012471705675, 0.002209374448284507, 0.11938966810703278, 0.004886500537395477, 0.009063913486897945, 0.3805636167526245], [0.003942021634429693, 0.033246442675590515, 0.04661192744970322, 0.01026337593793869, 0.006899035535752773, 0.3677421510219574, 0.010542401112616062, 0.009582511149346828, 0.24771469831466675], [0.01034742034971714, 0.061718616634607315, 0.1919936239719391, 0.04037828743457794, 0.08423028886318207, 0.3948482275009155, 0.02267433889210224, 0.008270499296486378, 0.07766542583703995], [0.0008756560855545104, 0.0006081643514335155, 0.0023821000941097736, 0.00030475048697553575, 0.0004171414184384048, 0.0029615648090839386, 0.000215228705201298, 0.0004806671931874007, 0.4894660711288452]], [[0.017378585413098335, 0.016709530726075172, 0.02192264050245285, 0.006534617859870195, 0.007567672058939934, 0.010273301042616367, 0.001278425334021449, 0.007229949347674847, 0.2549307644367218], [0.004910493269562721, 0.044622451066970825, 0.5181931853294373, 0.034329064190387726, 0.005756134167313576, 0.00505676819011569, 0.0009837147081270814, 0.00718067679554224, 0.18384355306625366], [0.004916549194604158, 0.004587911535054445, 0.006970101036131382, 0.00858533289283514, 0.002715707290917635, 0.0028984439559280872, 0.0006683073006570339, 0.004440039861947298, 0.4792018234729767], [0.004823579452931881, 0.08613643795251846, 0.046431463211774826, 0.01404997706413269, 0.06901515275239944, 0.186106875538826, 0.1479484587907791, 0.04693770781159401, 0.1904032975435257], [0.0015614632284268737, 0.013726693578064442, 0.010440804995596409, 0.015902111306786537, 0.025265377014875412, 0.14347372949123383, 0.15251313149929047, 0.018069107085466385, 0.3025244176387787], [0.016508065164089203, 0.02882392331957817, 0.017055852338671684, 0.014521168544888496, 0.002405213424935937, 0.010217517614364624, 0.006835163105279207, 0.030444404110312462, 0.4195799231529236], [0.004602294880896807, 0.035371385514736176, 0.014008241705596447, 0.009971531108021736, 0.009580656886100769, 0.06832344830036163, 0.009846439585089684, 0.039506785571575165, 0.3995838761329651], [0.03437762334942818, 0.04071313515305519, 0.005630429834127426, 0.007909218780696392, 0.0022738506086170673, 0.0037646866403520107, 0.0008697047014720738, 0.01726190373301506, 0.3828907608985901], [0.0118757588788867, 0.010547298938035965, 0.015713268890976906, 0.004203309305012226, 0.002388142514973879, 0.005080929026007652, 0.0007666688761673868, 0.007001087535172701, 0.4492567479610443]], [[0.008913540281355381, 0.0006829314515925944, 0.0031281630508601665, 0.00030009192414581776, 0.00035089219454675913, 0.001759113627485931, 0.00012913417594972998, 0.002070555230602622, 0.12233410030603409], [0.02751176618039608, 0.024159034714102745, 0.023592820391058922, 0.1445832997560501, 0.09750015288591385, 0.202224999666214, 0.07653571665287018, 0.25673431158065796, 0.0577586367726326], [0.024475907906889915, 0.04074174165725708, 0.0396224707365036, 0.03859742730855942, 0.03222135081887245, 0.028866969048976898, 0.018479159101843834, 0.07570339739322662, 0.32481980323791504], [0.008884324692189693, 0.022125890478491783, 0.009825317189097404, 0.0071654715575277805, 0.09772569686174393, 0.27357006072998047, 0.15740445256233215, 0.07360731810331345, 0.17294158041477203], [0.018512140959501266, 0.017526833340525627, 0.024002408608794212, 0.008231657557189465, 0.023621628060936928, 0.05641362816095352, 0.013824665918946266, 0.046111639589071274, 0.3905484080314636], [0.01988168992102146, 0.011795835569500923, 0.01707560196518898, 0.01203068532049656, 0.014804729260504246, 0.021116729825735092, 0.008912310935556889, 0.042481083422899246, 0.4177875220775604], [0.018928244709968567, 0.030062800273299217, 0.009632110595703125, 0.012683519162237644, 0.03175576776266098, 0.050014324486255646, 0.02692190743982792, 0.14257201552391052, 0.3364681899547577], [0.020654411986470222, 0.009708467870950699, 0.01484447717666626, 0.005635581444948912, 0.005327051039785147, 0.0017440877854824066, 0.0007545474800281227, 0.0054176882840693, 0.4599474370479584], [0.011228637769818306, 0.005883045960217714, 0.016290275380015373, 0.006677302066236734, 0.0024471115320920944, 0.00513409823179245, 0.0019039304461330175, 0.005942048039287329, 0.43917980790138245]], [[0.0306701622903347, 0.1292310506105423, 0.10861409455537796, 0.08514351397752762, 0.10937508940696716, 0.0569685660302639, 0.05747164413332939, 0.021217547357082367, 0.11061517149209976], [0.03356469050049782, 0.21835041046142578, 0.02970985881984234, 0.03822793439030647, 0.02221178635954857, 0.018977049738168716, 0.010037008672952652, 0.08172161877155304, 0.17314298450946808], [0.0723181962966919, 0.036544524133205414, 0.02399425394833088, 0.01596604473888874, 0.016080062836408615, 0.01109517365694046, 0.007149949669837952, 0.08885099738836288, 0.3059309720993042], [0.01740470714867115, 0.059176620095968246, 0.021376149728894234, 0.03125555440783501, 0.014173476956784725, 0.05698207765817642, 0.009542708285152912, 0.02592284232378006, 0.2579106390476227], [0.02452060393989086, 0.01349394116550684, 0.007710483390837908, 0.0056761871092021465, 0.01003273669630289, 0.013025617226958275, 0.004285040311515331, 0.01440286822617054, 0.42611417174339294], [0.011455507948994637, 0.007416325155645609, 0.006022854708135128, 0.008872303180396557, 0.013097690418362617, 0.012978608720004559, 0.006898950319737196, 0.014621845446527004, 0.43546822667121887], [0.018834713846445084, 0.027964124456048012, 0.005101025104522705, 0.010365412570536137, 0.02215101383626461, 0.009694105945527554, 0.01132423896342516, 0.015313981100916862, 0.40941616892814636], [0.030829759314656258, 0.0648462176322937, 0.023091088980436325, 0.04657803475856781, 0.0401473343372345, 0.024723216891288757, 0.01378705631941557, 0.2512493431568146, 0.08023130148649216], [0.005665841978043318, 0.0019548346754163504, 0.003917010501027107, 0.0008303453214466572, 0.0008599025895819068, 0.0011831223964691162, 0.00021934133837930858, 0.004241488873958588, 0.48433801531791687]], [[0.014101995155215263, 0.0031319938134402037, 0.013989981263875961, 0.0014078596141189337, 0.0012245603138580918, 0.0025030383840203285, 0.0005961312563158572, 0.006321529857814312, 0.42616912722587585], [0.00667915353551507, 0.07592984288930893, 0.13586674630641937, 0.016810910776257515, 0.005916202906519175, 0.020199300721287727, 0.005483024753630161, 0.0344231016933918, 0.3477858603000641], [0.0013855311553925276, 0.008228878490626812, 0.01238162536174059, 0.0027839727699756622, 0.0006923131295479834, 0.0024311773013323545, 0.0007201561238616705, 0.02193097025156021, 0.47435352206230164], [0.002417391398921609, 0.3900287449359894, 0.36608269810676575, 0.010427892208099365, 0.003142738016322255, 0.007896148599684238, 0.006289131008088589, 0.018262505531311035, 0.0960964635014534], [0.0015184064395725727, 0.22997330129146576, 0.18070445954799652, 0.10410165041685104, 0.008204692974686623, 0.010274489410221577, 0.006799566559493542, 0.014073384925723076, 0.22097383439540863], [0.005328285042196512, 0.2500512897968292, 0.19683198630809784, 0.07495176047086716, 0.00790240429341793, 0.016132958233356476, 0.007773575372993946, 0.019797131419181824, 0.20896711945533752], [0.002569479402154684, 0.36234259605407715, 0.21984915435314178, 0.14997535943984985, 0.026156507432460785, 0.019880864769220352, 0.01249348558485508, 0.00593593530356884, 0.1001373901963234], [0.004533677361905575, 0.22503994405269623, 0.26184529066085815, 0.10608796030282974, 0.0166179146617651, 0.04023632034659386, 0.020721064880490303, 0.02675922028720379, 0.14761383831501007], [0.007221407722681761, 0.006796389352530241, 0.010733025148510933, 0.007969130761921406, 0.007599503733217716, 0.014522723853588104, 0.002767052734270692, 0.00809000339359045, 0.4498912990093231]], [[0.008094942197203636, 0.05347401648759842, 0.06868884712457657, 0.022479234263300896, 0.007062177639454603, 0.07778959721326828, 0.02728486992418766, 0.31556832790374756, 0.18579818308353424], [0.032820768654346466, 0.015053312294185162, 0.006902780849486589, 0.12183355540037155, 0.0030391982290893793, 0.009068361483514309, 0.004252078011631966, 0.09053013473749161, 0.3315392732620239], [0.016076579689979553, 0.17232777178287506, 0.026452945545315742, 0.014585222117602825, 0.00563916377723217, 0.016264697536826134, 0.0018672752194106579, 0.013093174435198307, 0.35499516129493713], [0.02365567535161972, 0.027602864429354668, 0.04038480296730995, 0.02793971821665764, 0.015309684909880161, 0.04333667829632759, 0.17577026784420013, 0.01426380779594183, 0.2972904443740845], [0.00926718395203352, 0.0078605767339468, 0.0025192447938024998, 0.12503410875797272, 0.03325778618454933, 0.003977193962782621, 0.00436778087168932, 0.003456494305282831, 0.4004097282886505], [0.011854424141347408, 0.010262026451528072, 0.0023927909787744284, 0.01831168681383133, 0.06493142992258072, 0.02948126196861267, 0.0030606219079345465, 0.006773980334401131, 0.41928762197494507], [0.0006215369794517756, 0.0013187429867684841, 0.0010648934403434396, 0.001685951603576541, 0.0028078299947082996, 0.329177588224411, 0.002374198054894805, 0.0010156488278880715, 0.328119158744812], [0.010330775752663612, 0.003101440379396081, 0.003557569347321987, 0.003753412514925003, 0.0019682685378938913, 0.03873402625322342, 0.032005567103624344, 0.012639900669455528, 0.43935567140579224], [0.003451764350757003, 0.004260295536369085, 0.011713149026036263, 0.001808184664696455, 0.0011895919451490045, 0.019062334671616554, 0.0011603202437981963, 0.007481859065592289, 0.4696280062198639]], [[0.011494450271129608, 0.1056753396987915, 0.14259448647499084, 0.01466490887105465, 0.003258237149566412, 0.01550604309886694, 0.003145223017781973, 0.02096683345735073, 0.13297244906425476], [0.2518675923347473, 0.12611256539821625, 0.0707661584019661, 0.025797918438911438, 0.011234050616621971, 0.016703082248568535, 0.0018467145273461938, 0.036212287843227386, 0.19849352538585663], [0.14094854891300201, 0.020768947899341583, 0.08483533561229706, 0.015197689644992352, 0.011387383565306664, 0.015814412385225296, 0.0017038810765370727, 0.01713261753320694, 0.3235255181789398], [0.14042551815509796, 0.05451280623674393, 0.04517815262079239, 0.11608359962701797, 0.017070801928639412, 0.03402253985404968, 0.00793897733092308, 0.040031250566244125, 0.23015020787715912], [0.10517188906669617, 0.02593086287379265, 0.01791229471564293, 0.016029169782996178, 0.026955334469676018, 0.025387370958924294, 0.0053213778883218765, 0.02726718597114086, 0.35265544056892395], [0.09310118108987808, 0.019886154681444168, 0.026790637522935867, 0.036002833396196365, 0.052248764783144, 0.0403936430811882, 0.010142670944333076, 0.03901827707886696, 0.28439417481422424], [0.17094743251800537, 0.03463995084166527, 0.022731846198439598, 0.03674470633268356, 0.030596012249588966, 0.05025780200958252, 0.028098659589886665, 0.087189219892025, 0.24808280169963837], [0.45542004704475403, 0.060510557144880295, 0.04547007009387016, 0.032123271375894547, 0.01229883637279272, 0.009476783685386181, 0.004891568794846535, 0.05004727095365524, 0.09917984902858734], [0.01808297075331211, 0.016369227319955826, 0.022413259372115135, 0.009024355560541153, 0.0037517249584198, 0.012545007281005383, 0.0015387294115498662, 0.007615323644131422, 0.42495277523994446]]], [[[0.004501211456954479, 0.004373828414827585, 0.009144347161054611, 0.0027684099040925503, 0.0025746675673872232, 0.0037479326128959656, 0.0016625919379293919, 0.05154859274625778, 0.4297069311141968], [0.005753401201218367, 0.01831168681383133, 0.02107814885675907, 0.004837893880903721, 0.0012881109723821282, 0.0030228637624531984, 0.0010686108144000173, 0.006525450851768255, 0.4655260443687439], [0.011743827722966671, 0.03520679846405983, 0.10114102065563202, 0.006715947296470404, 0.0017529180040583014, 0.0069766356609761715, 0.004334402736276388, 0.003187409369274974, 0.36732563376426697], [0.009491744451224804, 0.034993384033441544, 0.006564239040017128, 0.014083215035498142, 0.02153053693473339, 0.01987009309232235, 0.009973045438528061, 0.02964828535914421, 0.42288005352020264], [0.005613191518932581, 0.011162448674440384, 0.0057660117745399475, 0.0162003505975008, 0.02793758362531662, 0.019466856494545937, 0.007780468091368675, 0.0032483902759850025, 0.4482859969139099], [0.0017418719362467527, 0.0061788493767380714, 0.0014878829242661595, 0.012656177394092083, 0.035600848495960236, 0.022403134033083916, 0.3129439949989319, 0.005552809685468674, 0.2972131371498108], [0.0008726202067919075, 0.006295676808804274, 0.0007531626033596694, 0.010366065427660942, 0.08210226148366928, 0.008303712122142315, 0.022033119574189186, 0.003135386621579528, 0.4322756826877594], [0.0022380982991307974, 0.00966330710798502, 0.008955548517405987, 0.009663127362728119, 0.047767650336027145, 0.0670449361205101, 0.04050540551543236, 0.01018594391644001, 0.39040666818618774], [0.007743512745946646, 0.009111804887652397, 0.012172924354672432, 0.007813864387571812, 0.005727047566324472, 0.007207770366221666, 0.002514919266104698, 0.012152468785643578, 0.4359882175922394]], [[0.05500565841794014, 0.07907280325889587, 0.14519888162612915, 0.05313940346240997, 0.027378901839256287, 0.06464529037475586, 0.023832106962800026, 0.11844321340322495, 0.04383838176727295], [0.023144584149122238, 0.15949459373950958, 0.07547881454229355, 0.05163402855396271, 0.0034584200475364923, 0.01709667220711708, 0.0022526525426656008, 0.07899746298789978, 0.04438091069459915], [0.03018958494067192, 0.013904554769396782, 0.10633675754070282, 0.004693527240306139, 0.0010161870159208775, 0.008086013607680798, 0.0009161251364275813, 0.013961795717477798, 0.17537234723567963], [0.0322427973151207, 0.03888971731066704, 0.019525598734617233, 0.08670300990343094, 0.024935364723205566, 0.03739354386925697, 0.008489496074616909, 0.05931416153907776, 0.0636199340224266], [0.013958035036921501, 0.009518736973404884, 0.013694201596081257, 0.021240878850221634, 0.3290359377861023, 0.015161389485001564, 0.002235882682725787, 0.01667523942887783, 0.1552753448486328], [0.09022142738103867, 0.008172409608960152, 0.013705871067941189, 0.016927240416407585, 0.006855400279164314, 0.18984641134738922, 0.00844250526279211, 0.04138652980327606, 0.08040346950292587], [0.022063646465539932, 0.020291585475206375, 0.011164980009198189, 0.03502907603979111, 0.041304126381874084, 0.07303271442651749, 0.12347570061683655, 0.05339911952614784, 0.16995121538639069], [0.030267830938100815, 0.042354077100753784, 0.013915269635617733, 0.03567072004079819, 0.020955514162778854, 0.0346904918551445, 0.030345195904374123, 0.14292708039283752, 0.12766218185424805], [0.0001718346611596644, 0.00021719918004237115, 0.0034541180357337, 0.00024095996923279017, 0.00011667813669191673, 0.000967999454587698, 0.00010302486771252006, 0.0017862790264189243, 0.4941920042037964]], [[0.009983888827264309, 0.012479771859943867, 0.0379372164607048, 0.018908319994807243, 0.04736575111746788, 0.05656116455793381, 0.006177559960633516, 0.01817246899008751, 0.253245085477829], [0.0010962304659187794, 0.005900590680539608, 0.05890846997499466, 0.002672501839697361, 0.015961067751049995, 0.031188447028398514, 0.001254487899132073, 0.004985729698091745, 0.4210337996482849], [0.0026565995067358017, 0.006091269664466381, 0.29472246766090393, 0.004774508532136679, 0.011862169951200485, 0.06338194757699966, 0.00385458767414093, 0.011962421238422394, 0.27261829376220703], [0.002068099332973361, 0.0012092689285054803, 0.018525023013353348, 0.005870106630027294, 0.05795413628220558, 0.2288891077041626, 0.007025697268545628, 0.007116485852748156, 0.3098927438259125], [0.009873364120721817, 0.0037150296848267317, 0.013257404789328575, 0.004095037933439016, 0.2319595366716385, 0.2108556181192398, 0.006140767131000757, 0.01784897781908512, 0.228399395942688], [0.0036283480003476143, 0.0041855149902403355, 0.009509332478046417, 0.005139931570738554, 0.05514099821448326, 0.19311267137527466, 0.017713511362671852, 0.013732376508414745, 0.3297848701477051], [0.0017280016327276826, 0.0013096170732751489, 0.009638432413339615, 0.002139687305316329, 0.07050427794456482, 0.5646119713783264, 0.014436493627727032, 0.0034729260951280594, 0.16168776154518127], [0.0029530408792197704, 0.0016580215888097882, 0.036084700375795364, 0.0054904380813241005, 0.02332261949777603, 0.22864317893981934, 0.00553099624812603, 0.013828903436660767, 0.3274851441383362], [3.902724711224437e-05, 0.00020014696929138154, 0.006746484898030758, 0.00017261934408452362, 0.0008057331433519721, 0.004272001329809427, 0.00014293991262093186, 0.000420522439526394, 0.49143433570861816]], [[0.032056502997875214, 0.010396290570497513, 0.015295733697712421, 0.03466075658798218, 0.006166001781821251, 0.04971836879849434, 0.012483939528465271, 0.13631999492645264, 0.15887533128261566], [0.008995823562145233, 0.00992346927523613, 0.007500631734728813, 0.046528611332178116, 0.04820972681045532, 0.18998265266418457, 0.11824003607034683, 0.0372595377266407, 0.2562979757785797], [0.021411150693893433, 0.047703538089990616, 0.10232898592948914, 0.03733992949128151, 0.03766040876507759, 0.11897614598274231, 0.0506802462041378, 0.031268585473299026, 0.19380474090576172], [0.00624337000772357, 0.02810903638601303, 0.002788703888654709, 0.058533985167741776, 0.05198986083269119, 0.27157357335090637, 0.06384073197841644, 0.10072252154350281, 0.2027946263551712], [0.005281516350805759, 0.02992180362343788, 0.0028618823271244764, 0.14439712464809418, 0.03131960332393646, 0.2857397794723511, 0.11261887103319168, 0.09503091871738434, 0.14438088238239288], [0.003834928385913372, 0.10124709457159042, 0.005146465729922056, 0.15266816318035126, 0.06025151163339615, 0.12032583355903625, 0.2511679530143738, 0.04756077378988266, 0.12202106416225433], [0.0033996826969087124, 0.03380386531352997, 0.0007758723222650588, 0.12973277270793915, 0.017714232206344604, 0.16954386234283447, 0.08114208281040192, 0.0858435332775116, 0.23676303029060364], [0.008400858379900455, 0.02070557326078415, 0.015996700152754784, 0.06361551582813263, 0.017598766833543777, 0.13456398248672485, 0.050780609250068665, 0.040891122072935104, 0.2709446847438812], [0.009515166282653809, 0.0057467930018901825, 0.020698145031929016, 0.006951060611754656, 0.0016171589959412813, 0.005546164233237505, 0.0018599111353978515, 0.012142998166382313, 0.4494422674179077]], [[0.02201945334672928, 0.009027697145938873, 0.032331161201000214, 0.004459274001419544, 0.0021900285501033068, 0.02506580762565136, 0.005229596048593521, 0.6000418066978455, 0.05712622404098511], [0.007737127598375082, 0.030812488868832588, 0.031892113387584686, 0.08731178194284439, 0.005368366371840239, 0.05073761194944382, 0.014418342150747776, 0.036519549787044525, 0.3461238741874695], [0.02537836693227291, 0.31254807114601135, 0.04768180102109909, 0.06509914249181747, 0.01019293162971735, 0.015864742919802666, 0.01885341852903366, 0.021906644105911255, 0.10669095069169998], [0.006006432697176933, 0.03231984004378319, 0.038529787212610245, 0.028598928824067116, 0.006937342695891857, 0.030993791297078133, 0.00580917252227664, 0.008805856108665466, 0.41546109318733215], [0.004309828858822584, 0.008982242085039616, 0.015822498127818108, 0.08436593413352966, 0.02391568012535572, 0.019350839778780937, 0.011883500963449478, 0.009931501932442188, 0.4088864326477051], [0.004350624978542328, 0.022907787933945656, 0.016605200245976448, 0.13308945298194885, 0.09927629679441452, 0.06143169105052948, 0.06401731818914413, 0.009242607280611992, 0.2913244962692261], [0.0017430573934689164, 0.0021533863618969917, 0.004625838715583086, 0.04571322724223137, 0.07076537609100342, 0.017948703840374947, 0.010505865328013897, 0.004608344752341509, 0.420003741979599], [0.0021737252827733755, 0.006099942605942488, 0.024855613708496094, 0.017203547060489655, 0.019096961244940758, 0.13573649525642395, 0.03677177056670189, 0.01638028770685196, 0.35558435320854187], [0.003539199708029628, 0.002544875955209136, 0.007256964221596718, 0.004046475049108267, 0.0044435495510697365, 0.0037248609587550163, 0.0018972872057929635, 0.004992651753127575, 0.470051109790802]], [[0.034211575984954834, 0.01681220531463623, 0.009847846813499928, 0.009349208325147629, 0.0041638887487351894, 0.005393133033066988, 0.0010565099073573947, 0.017047423869371414, 0.0670618861913681], [0.02383306808769703, 0.055035825818777084, 0.016329841688275337, 0.32319092750549316, 0.14824272692203522, 0.14989987015724182, 0.04199032858014107, 0.061328768730163574, 0.04090506210923195], [0.04003510624170303, 0.058568406850099564, 0.05922171100974083, 0.09497296810150146, 0.09406023472547531, 0.10919816046953201, 0.03708501160144806, 0.03633036091923714, 0.13635589182376862], [0.013670033775269985, 0.046428851783275604, 0.01472416426986456, 0.10707675665616989, 0.13724064826965332, 0.2865857481956482, 0.09979114681482315, 0.07673534750938416, 0.08371677249670029], [0.009469017386436462, 0.02597261592745781, 0.008779006078839302, 0.021283557638525963, 0.02966986410319805, 0.040575433522462845, 0.009046480059623718, 0.01946263574063778, 0.41349610686302185], [0.012364711612462997, 0.042831432074308395, 0.009253389202058315, 0.021675603464245796, 0.06050897762179375, 0.06864707916975021, 0.015883387997746468, 0.031479611992836, 0.3503115177154541], [0.013573982752859592, 0.034206684678792953, 0.007922335527837276, 0.014327924698591232, 0.042687542736530304, 0.05377575382590294, 0.007645609322935343, 0.025050124153494835, 0.3941844701766968], [0.027498319745063782, 0.029279883950948715, 0.0084079559892416, 0.029261551797389984, 0.029109962284564972, 0.05856119468808174, 0.011591793037950993, 0.03410026803612709, 0.16831956803798676], [0.007430814206600189, 0.0014702703338116407, 0.004582446999847889, 0.0035377428866922855, 0.0019018020248040557, 0.0042159054428339005, 0.0006589196273125708, 0.0028507858514785767, 0.4762049913406372]], [[0.007342258933931589, 0.005289183929562569, 0.057965364307165146, 0.01359894871711731, 0.016347892582416534, 0.024260323494672775, 0.01266200840473175, 0.0067443023435771465, 0.2716454863548279], [0.004718608222901821, 0.004804551135748625, 0.03644603490829468, 0.0021660723723471165, 0.00405998807400465, 0.009271413087844849, 0.0009630289860069752, 0.002065699314698577, 0.408748060464859], [0.017590979114174843, 0.012374886311590672, 0.0575079619884491, 0.005325912963598967, 0.004765295423567295, 0.029956623911857605, 0.0030257082544267178, 0.006685345899313688, 0.23306594789028168], [0.007738214917480946, 0.020861180499196053, 0.04431042820215225, 0.01072751171886921, 0.00828919280320406, 0.054776716977357864, 0.009719755500555038, 0.011707751080393791, 0.3009161055088043], [0.009736539795994759, 0.0378955714404583, 0.07339980453252792, 0.008573864586651325, 0.0188324935734272, 0.043614309281110764, 0.010713892057538033, 0.018319837749004364, 0.32341569662094116], [0.009431334212422371, 0.01969774253666401, 0.045395780354738235, 0.004923742730170488, 0.005302988458424807, 0.021677237004041672, 0.004910940304398537, 0.010395796038210392, 0.355645090341568], [0.0025329156778752804, 0.008143888786435127, 0.025551708415150642, 0.0038154004141688347, 0.011496835388243198, 0.03676953911781311, 0.010166124440729618, 0.004093665163964033, 0.42380449175834656], [0.003795252414420247, 0.006939374841749668, 0.016827022656798363, 0.003939308691769838, 0.007899114862084389, 0.009253655560314655, 0.003670887090265751, 0.008351124823093414, 0.4310227334499359], [0.00024200878397095948, 0.0002893012424465269, 0.001712887198664248, 0.00018770343740470707, 0.00026283087208867073, 0.0012016755063086748, 0.00010922306682914495, 0.0004782282921951264, 0.4944605827331543]], [[0.011225278489291668, 0.08637942373752594, 0.3434559106826782, 0.016438249498605728, 0.008100219070911407, 0.07892300188541412, 0.01237565465271473, 0.008576193824410439, 0.19029225409030914], [0.010478172451257706, 0.02222963236272335, 0.2032272219657898, 0.02222554199397564, 0.004256505519151688, 0.027198852971196175, 0.0010530843865126371, 0.01999310776591301, 0.2806755304336548], [0.006719703786075115, 0.017140096053481102, 0.036309871822595596, 0.008806989528238773, 0.0024871204514056444, 0.013140728697180748, 0.0009257051278837025, 0.012525665573775768, 0.40423715114593506], [0.006439415737986565, 0.15789085626602173, 0.2814522385597229, 0.015390543267130852, 0.009777168743312359, 0.1501360535621643, 0.009111810475587845, 0.01897352747619152, 0.1511683613061905], [0.005585191771388054, 0.02367774397134781, 0.03565746918320656, 0.014873327687382698, 0.005642132367938757, 0.1677893102169037, 0.015058684162795544, 0.017713716253638268, 0.3489764928817749], [0.005259981378912926, 0.013628759421408176, 0.017593633383512497, 0.012642270885407925, 0.006528645753860474, 0.06890452653169632, 0.004953328520059586, 0.018367042765021324, 0.415364533662796], [0.0042573800310492516, 0.053442616015672684, 0.06325071305036545, 0.008720970712602139, 0.005359509028494358, 0.1580357402563095, 0.0036830517929047346, 0.012660630978643894, 0.32914820313453674], [0.029304970055818558, 0.003726552939042449, 0.008575376123189926, 0.007524827029556036, 0.0017882914980873466, 0.0252279881387949, 0.0022730655036866665, 0.003500640392303467, 0.38705939054489136], [0.0016340221045538783, 0.0016920161433517933, 0.0028635046910494566, 0.001346999080851674, 0.0004376067372504622, 0.002504469593986869, 0.0003215808537788689, 0.0013427583035081625, 0.4913976490497589]], [[0.004802422598004341, 0.04327290505170822, 0.4406757652759552, 0.01974538527429104, 0.03706861659884453, 0.12726028263568878, 0.01102712657302618, 0.060926999896764755, 0.09759535640478134], [0.024918969720602036, 0.0366438664495945, 0.03995693847537041, 0.01301480084657669, 0.013736829161643982, 0.06795073300600052, 0.008111495524644852, 0.02620220184326172, 0.37319836020469666], [0.019929062575101852, 0.013913124799728394, 0.07033034414052963, 0.00717996247112751, 0.005102917551994324, 0.014738578349351883, 0.0020695424173027277, 0.008932841941714287, 0.41734403371810913], [0.0049225445836782455, 0.03331628441810608, 0.029413171112537384, 0.016821231693029404, 0.031009098514914513, 0.576980471611023, 0.021983487531542778, 0.014413699507713318, 0.13102410733699799], [0.004226659424602985, 0.023975584656000137, 0.010864896699786186, 0.012158861383795738, 0.021514398977160454, 0.3112958073616028, 0.008783627301454544, 0.00891265831887722, 0.29474860429763794], [0.004654037766158581, 0.02252720482647419, 0.0074753486551344395, 0.011750046163797379, 0.02255662903189659, 0.13071687519550323, 0.009193984791636467, 0.009196486324071884, 0.38766252994537354], [0.004152404144406319, 0.014231369830667973, 0.009062220342457294, 0.008333803154528141, 0.026055270805954933, 0.3651374280452728, 0.01039719209074974, 0.004701258148998022, 0.2770838141441345], [0.021857190877199173, 0.02221902832388878, 0.022329362109303474, 0.025610214099287987, 0.04088062420487404, 0.5305039286613464, 0.034370992332696915, 0.012073270976543427, 0.1182389184832573], [0.0017337921308353543, 0.0030861664563417435, 0.01025660801678896, 0.005325845908373594, 0.004743407946079969, 0.0043726046569645405, 0.0013555297628045082, 0.005132235586643219, 0.476494699716568]], [[0.013117813505232334, 0.008098403923213482, 0.010422585532069206, 0.010187382809817791, 0.004713926464319229, 0.006223341450095177, 0.0013900540070608258, 0.0031612920574843884, 0.278816282749176], [0.01857866160571575, 0.0334869883954525, 0.19755996763706207, 0.061560168862342834, 0.013692032545804977, 0.007148916833102703, 0.0007388664525933564, 0.006307287607342005, 0.3185655176639557], [0.029682936146855354, 0.029349101707339287, 0.07013234496116638, 0.059802062809467316, 0.008564185351133347, 0.02735242433845997, 0.003952173516154289, 0.012651151977479458, 0.3595016896724701], [0.0077959210611879826, 0.028146687895059586, 0.01009969413280487, 0.04137321561574936, 0.023168833926320076, 0.024428246542811394, 0.004944842774420977, 0.016011575236916542, 0.4117893576622009], [0.0023616384714841843, 0.0025101813953369856, 0.001981954788789153, 0.017642617225646973, 0.016993114724755287, 0.0628584772348404, 0.026610571891069412, 0.010981774888932705, 0.42253628373146057], [0.014427495189011097, 0.010286967270076275, 0.006035214755684137, 0.027604013681411743, 0.008493300527334213, 0.041072405874729156, 0.06672386825084686, 0.022101007401943207, 0.3874407708644867], [0.026588501408696175, 0.0037885294295847416, 0.0010902700014412403, 0.015293297357857227, 0.00928205344825983, 0.021101998165249825, 0.00847663078457117, 0.06032055616378784, 0.4168863594532013], [0.045723702758550644, 0.033884722739458084, 0.003029413754120469, 0.012300671078264713, 0.0076831188052892685, 0.0032175045926123857, 0.00438816100358963, 0.01879998855292797, 0.20053091645240784], [0.00950670801103115, 0.006360482424497604, 0.006913545075803995, 0.006201249547302723, 0.002522949827834964, 0.001999116037040949, 0.001546689891256392, 0.0027654708828777075, 0.4664774537086487]], [[0.0014217473799362779, 0.4327671527862549, 0.12439285218715668, 0.15220020711421967, 0.029902581125497818, 0.11447388678789139, 0.046448271721601486, 0.07468608766794205, 0.007738347630947828], [0.0025363736785948277, 0.03541402518749237, 0.052925657480955124, 0.014418115839362144, 0.01893611252307892, 0.054413557052612305, 0.01979811303317547, 0.035387106239795685, 0.3818458914756775], [0.0027015546802431345, 0.006700333673506975, 0.043405238538980484, 0.003792858449742198, 0.0036352125462144613, 0.036592476069927216, 0.005310469307005405, 0.012500829994678497, 0.43899205327033997], [0.00540897436439991, 0.10127042233943939, 0.05591277405619621, 0.033410366624593735, 0.020175721496343613, 0.06627439707517624, 0.016734622418880463, 0.03981173783540726, 0.327175110578537], [0.004826727323234081, 0.04516058787703514, 0.04640071094036102, 0.013324998319149017, 0.01076861098408699, 0.040280282497406006, 0.010642425157129765, 0.01808926649391651, 0.40218549966812134], [0.0008109406917355955, 0.013139616698026657, 0.015460602939128876, 0.009605919010937214, 0.011555064469575882, 0.028167374432086945, 0.006068364717066288, 0.0039143855683505535, 0.45500457286834717], [0.0017788712866604328, 0.02897207997739315, 0.02017119899392128, 0.01585901714861393, 0.01995980739593506, 0.02352507971227169, 0.007356503512710333, 0.004465160891413689, 0.4384469985961914], [0.006350433919578791, 0.11474436521530151, 0.027969256043434143, 0.15098193287849426, 0.11883902549743652, 0.1403542459011078, 0.1263056844472885, 0.009755566716194153, 0.14019428193569183], [0.0005767003167420626, 0.007012310437858105, 0.009128198958933353, 0.0030264779925346375, 0.00312613183632493, 0.0033963299356400967, 0.0015526911010965705, 0.003860238939523697, 0.4834290146827698]], [[0.0054621268063783646, 0.010775531642138958, 0.010822338983416557, 0.0013390656094998121, 0.00243496079929173, 0.00045186441275291145, 0.0019211984472349286, 0.002204312477260828, 0.39071816205978394], [0.005540849175304174, 0.007657076232135296, 0.005999905988574028, 0.0009645955287851393, 0.0008379403734579682, 0.0003889902727678418, 0.00033875813824124634, 0.004134131595492363, 0.4738336503505707], [0.015541911125183105, 0.0068945568054914474, 0.02948879264295101, 0.002800110261887312, 0.0017331276321783662, 0.0015955963172018528, 0.0009080298477783799, 0.003400082467123866, 0.4429281949996948], [0.004030806943774223, 0.0023721149191260338, 0.004427744075655937, 0.004131880588829517, 0.0042313700541853905, 0.0003483241889625788, 0.0005506584420800209, 0.0012992547126486897, 0.46475949883461], [0.0045615751296281815, 0.000625844462774694, 0.0009384976583532989, 0.001587355276569724, 0.052836935967206955, 0.0010898241307586432, 0.0009035097900778055, 0.0004805387288797647, 0.4556460380554199], [0.003065963974222541, 0.00030861934646964073, 0.00260927714407444, 0.0003185052773915231, 0.0013434437569230795, 0.011038393713533878, 0.0030781454406678677, 0.0016100298380479217, 0.47997310757637024], [0.003937758971005678, 0.0009687698911875486, 0.0025841405149549246, 0.00105827406514436, 0.0017189363716170192, 0.0025435893330723047, 0.04865572601556778, 0.0019228439778089523, 0.45894601941108704], [0.0012521537719294429, 0.00136866036336869, 0.0011505135335028172, 0.00061587686650455, 0.0010837919544428587, 0.00032870942959561944, 0.0015233196318149567, 0.009442169219255447, 0.4743685722351074], [0.0008236513822339475, 0.000444251811131835, 0.0021578792948275805, 0.0002792058512568474, 0.0002449047169648111, 0.00033739025820977986, 0.0001881759671960026, 0.0008484295685775578, 0.495647668838501]]], [[[0.005732377991080284, 0.3514588177204132, 0.2964673340320587, 0.06345114856958389, 0.012595510110259056, 0.025448625907301903, 0.0077896867878735065, 0.04899793863296509, 0.039190519601106644], [0.0005831412854604423, 0.005897948984056711, 0.005931115243583918, 0.002548228483647108, 0.00184024462942034, 0.0020030317828059196, 0.0011322355130687356, 0.00522688589990139, 0.485613614320755], [0.006051767151802778, 0.025484049692749977, 0.014306224882602692, 0.018225982785224915, 0.022202614694833755, 0.018330147489905357, 0.02057119645178318, 0.05229593440890312, 0.3860950767993927], [0.0022077858448028564, 0.006235931068658829, 0.008990605361759663, 0.0028674642089754343, 0.0013845654902979732, 0.0013887172099202871, 0.0011729495599865913, 0.0041052792221307755, 0.483561247587204], [0.0005427972064353526, 0.002994760638102889, 0.002723918529227376, 0.0009661453659646213, 0.001360641443170607, 0.0007815246935933828, 0.0007203997811302543, 0.0019217494409531355, 0.4933844804763794], [0.0010129687143489718, 0.007765775080770254, 0.004310577176511288, 0.0019061594503000379, 0.0028310746420174837, 0.003936925902962685, 0.0023409686982631683, 0.007053268142044544, 0.48249849677085876], [0.0002752021246124059, 0.0020299421157687902, 0.0017969366163015366, 0.000838438339997083, 0.00126757996622473, 0.0009055556729435921, 0.001063876785337925, 0.0012842414434999228, 0.4949764311313629], [0.006205603946000338, 0.02894463762640953, 0.03254945948719978, 0.006254755426198244, 0.008885656483471394, 0.01554496306926012, 0.010654150508344173, 0.019698526710271835, 0.4201321303844452], [0.01651868410408497, 0.201225146651268, 0.10876559466123581, 0.07697559893131256, 0.0358927920460701, 0.05594801902770996, 0.053777437657117844, 0.042877811938524246, 0.08794908225536346]], [[0.012525881640613079, 0.04398968070745468, 0.02303292043507099, 0.028735680505633354, 0.05447067320346832, 0.02095254696905613, 0.013736053369939327, 0.014820651151239872, 0.2374809831380844], [0.0024372937623411417, 0.134346604347229, 0.07361678034067154, 0.02018393948674202, 0.02191765606403351, 0.012914825230836868, 0.012561282142996788, 0.010130390524864197, 0.32136479020118713], [0.0022742741275578737, 0.01674554869532585, 0.1313985139131546, 0.0064729610458016396, 0.009539332240819931, 0.04080741107463837, 0.0053956652991473675, 0.0058334264904260635, 0.3513639271259308], [0.004033764358609915, 0.0934067890048027, 0.017098961398005486, 0.23926609754562378, 0.025055259466171265, 0.02209092676639557, 0.017848674207925797, 0.02969762496650219, 0.2323877215385437], [0.0027077263221144676, 0.02353522926568985, 0.010064241476356983, 0.014403527602553368, 0.46600544452667236, 0.029868287965655327, 0.027744952589273453, 0.0025174468755722046, 0.18897020816802979], [0.0008461983525194228, 0.012745287269353867, 0.012791633605957031, 0.010122657753527164, 0.020089758560061455, 0.3043075501918793, 0.02599339187145233, 0.002321284031495452, 0.2897864878177643], [0.0022274802904576063, 0.024129878729581833, 0.018129782751202583, 0.01143691223114729, 0.02954508364200592, 0.059192776679992676, 0.5413843989372253, 0.005082998424768448, 0.1447935700416565], [0.0007924042292870581, 0.004342886619269848, 0.0147187989205122, 0.001271353685297072, 0.005935266613960266, 0.0057135592214763165, 0.0023225632030516863, 0.008487299084663391, 0.44882526993751526], [0.017075542360544205, 0.04165670648217201, 0.09032362699508667, 0.04640958830714226, 0.05838962271809578, 0.12241877615451813, 0.04562798887491226, 0.03744145482778549, 0.06261170655488968]], [[0.02255246601998806, 0.016537176445126534, 0.19021019339561462, 0.05639459565281868, 0.010413448326289654, 0.009903442114591599, 0.01795833371579647, 0.03141360729932785, 0.014352582395076752], [0.0051886700093746185, 0.05415106564760208, 0.015387012623250484, 0.007505962625145912, 0.0021845127921551466, 0.023573867976665497, 0.005414517596364021, 0.08547712862491608, 0.38570675253868103], [0.006280183792114258, 0.457738995552063, 0.07577209174633026, 0.026058992370963097, 0.014405171386897564, 0.016351960599422455, 0.0043957652524113655, 0.007036853581666946, 0.15638478100299835], [0.011539377272129059, 0.09949619323015213, 0.1040518581867218, 0.05344853177666664, 0.009582693688571453, 0.2608286142349243, 0.050707630813121796, 0.0085514010861516, 0.16759783029556274], [0.02973167598247528, 0.07690531015396118, 0.047165174037218094, 0.2296413630247116, 0.0742604061961174, 0.10394757241010666, 0.019687842577695847, 0.0037941480986773968, 0.18572740256786346], [0.003935239743441343, 0.032638661563396454, 0.013407550752162933, 0.024493277072906494, 0.05912860110402107, 0.15248402953147888, 0.022822679951786995, 0.00414193095639348, 0.3344057500362396], [0.00023041841632220894, 0.0014078803360462189, 0.0013588329311460257, 0.0012348921736702323, 0.0034998420160263777, 0.9151123762130737, 0.006135380361229181, 0.0001292256492888555, 0.03173745423555374], [0.004210618790239096, 0.010797660797834396, 0.03953735530376434, 0.031317777931690216, 0.012942219153046608, 0.18070651590824127, 0.22081008553504944, 0.0014434935292229056, 0.2072792649269104], [0.03075684793293476, 0.050250958651304245, 0.10121431946754456, 0.05514764413237572, 0.044641293585300446, 0.047108590602874756, 0.030974021181464195, 0.08693362772464752, 0.03872528299689293]], [[0.04554121941328049, 0.009199986234307289, 0.0063534872606396675, 0.010801888071000576, 0.001969326054677367, 0.01824416220188141, 0.027314908802509308, 0.008589928038418293, 0.3695932626724243], [0.006388530135154724, 0.011096514761447906, 0.015440454706549644, 0.010007442906498909, 0.00395668251439929, 0.029812294989824295, 0.010998351499438286, 0.005796106997877359, 0.44774049520492554], [0.009414441883563995, 0.026494426652789116, 0.06022033840417862, 0.017888369038701057, 0.014413007535040379, 0.018028074875473976, 0.01071783434599638, 0.015700355172157288, 0.3943559229373932], [0.0088624507188797, 0.016770992428064346, 0.008489384315907955, 0.0279600378125906, 0.010298780165612698, 0.1716640442609787, 0.12188942730426788, 0.007638775743544102, 0.3034001886844635], [0.006954554468393326, 0.007336656097322702, 0.0025394682306796312, 0.005201582331210375, 0.005734742619097233, 0.03356388956308365, 0.00523295346647501, 0.00269103329628706, 0.4635368585586548], [0.0073263514786958694, 0.01873069256544113, 0.0031164493411779404, 0.008841820992529392, 0.11086704581975937, 0.11712416261434555, 0.029057204723358154, 0.004409668035805225, 0.3437116742134094], [0.002099486766383052, 0.0037424040492624044, 0.001077237888239324, 0.0023204409517347813, 0.01250382699072361, 0.7251942157745361, 0.022480551153421402, 0.0012375111691653728, 0.11314277350902557], [0.014805400744080544, 0.005912791937589645, 0.009252442978322506, 0.011960674077272415, 0.014281476847827435, 0.07294703274965286, 0.09243258833885193, 0.01328662782907486, 0.35832977294921875], [0.06075502187013626, 0.04756705090403557, 0.024505222216248512, 0.041119206696748734, 0.055909715592861176, 0.04023066163063049, 0.08756592869758606, 0.047822505235672, 0.10716397315263748]], [[0.008072351105511189, 0.0970616415143013, 0.0479985736310482, 0.08865855634212494, 0.0073208580724895, 0.09594166278839111, 0.012942367233335972, 0.09502130001783371, 0.0848035141825676], [0.00029199241544120014, 0.002026236616075039, 0.009927725419402122, 0.0008937967359088361, 0.0009448904893361032, 0.002929836278781295, 0.0007016254239715636, 0.0032919365912675858, 0.48573508858680725], [0.02352430857717991, 0.01939789205789566, 0.026672454550862312, 0.014020427130162716, 0.02560737356543541, 0.023188726976513863, 0.01013965718448162, 0.026953069493174553, 0.3564034402370453], [0.0004150836612097919, 0.0019953183364123106, 0.0048773144371807575, 0.0008740141638554633, 0.0006392838549800217, 0.0035667086485773325, 0.0012115498539060354, 0.0022593247704207897, 0.4888775646686554], [0.0003148639516439289, 0.001826586900278926, 0.00446000462397933, 0.0005542636499740183, 0.0010195644572377205, 0.003765629604458809, 0.0013322030426934361, 0.0013798534637317061, 0.4904574155807495], [0.0014843936078250408, 0.008924184367060661, 0.02247716300189495, 0.003506989683955908, 0.0028947722166776657, 0.010724671185016632, 0.0046979463659226894, 0.005851625464856625, 0.45741426944732666], [2.7402362320572138e-05, 0.0003943797782994807, 0.001930851023644209, 0.00012959442392457277, 0.00015123074990697205, 0.0006607579416595399, 0.0002049604954663664, 0.00030978998984210193, 0.4977753162384033], [0.004204594995826483, 0.007253636140376329, 0.031624481081962585, 0.003278732532635331, 0.002680302830412984, 0.025581251829862595, 0.003637828165665269, 0.01038562972098589, 0.415348082780838], [0.02602558396756649, 0.11502430588006973, 0.13907042145729065, 0.08255820721387863, 0.03488663583993912, 0.05803551897406578, 0.033057402819395065, 0.10341104865074158, 0.02057592198252678]], [[0.04480824992060661, 0.03297186642885208, 0.03367864340543747, 0.025074781849980354, 0.022815730422735214, 0.061785053461790085, 0.016387585550546646, 0.06054631993174553, 0.16260534524917603], [0.0010800542077049613, 0.0026196117978543043, 0.00236563035286963, 0.002990636508911848, 0.003610211657360196, 0.008666242472827435, 0.0030203580390661955, 0.0036620297469198704, 0.48523062467575073], [0.0028387606143951416, 0.010509196668863297, 0.014097252860665321, 0.011465372517704964, 0.009642244316637516, 0.017164289951324463, 0.018239587545394897, 0.009173719212412834, 0.4459141194820404], [0.006845681928098202, 0.024603400379419327, 0.023730771616101265, 0.008230338804423809, 0.011099331080913544, 0.034567300230264664, 0.006372840143740177, 0.023801378905773163, 0.42740878462791443], [0.002326486399397254, 0.014244666323065758, 0.007843371480703354, 0.006786344572901726, 0.001599332899786532, 0.01107979565858841, 0.0037854891270399094, 0.004203256219625473, 0.4735513925552368], [0.001679741544649005, 0.021424351260066032, 0.017392024397850037, 0.006670094095170498, 0.003000916913151741, 0.011584553867578506, 0.0038224360905587673, 0.007737676613032818, 0.4624473452568054], [0.0007834460702724755, 0.008080177940428257, 0.007475530728697777, 0.0026598579715937376, 0.002991017885506153, 0.00956282950937748, 0.0011644703336060047, 0.002033824101090431, 0.4824669659137726], [0.014767533168196678, 0.052761223167181015, 0.044683732092380524, 0.0628630742430687, 0.07557976245880127, 0.22296178340911865, 0.054364241659641266, 0.011514107696712017, 0.18531815707683563], [0.0330275297164917, 0.08639538288116455, 0.0546003133058548, 0.0877411738038063, 0.06216031312942505, 0.0857500210404396, 0.0941241979598999, 0.05902399495244026, 0.052815992385149]], [[0.011812104843556881, 0.0302154291421175, 0.018373887985944748, 0.018068216741085052, 0.08424177020788193, 0.013353501446545124, 0.0195289496332407, 0.03867679834365845, 0.3335633873939514], [0.006903189234435558, 0.6584064364433289, 0.016305482015013695, 0.03119552694261074, 0.004088892601430416, 0.0051860446110367775, 0.00527097936719656, 0.008094911463558674, 0.10295216739177704], [0.0017404663376510143, 0.013024003244936466, 0.0638813003897667, 0.003166348207741976, 0.0034793063532561064, 0.007856602780520916, 0.0028877202421426773, 0.0008187157800421119, 0.4356599450111389], [0.006643806584179401, 0.06759169697761536, 0.02867521345615387, 0.2508712410926819, 0.024001769721508026, 0.008677888661623001, 0.013167690485715866, 0.004075413569808006, 0.2602134346961975], [0.00528071029111743, 0.012586739845573902, 0.012856184504926205, 0.02790392003953457, 0.26394325494766235, 0.010174043476581573, 0.013306442648172379, 0.001976189436390996, 0.288747102022171], [0.00331202638335526, 0.005231511313468218, 0.019232284277677536, 0.004627323243767023, 0.0071184998378157616, 0.17192494869232178, 0.03073861449956894, 0.008179274387657642, 0.3352595865726471], [0.004287909250706434, 0.007329930085688829, 0.007054599467664957, 0.013850883580744267, 0.017220720648765564, 0.01657622680068016, 0.3182325065135956, 0.014877156354486942, 0.27220070362091064], [0.0003735290083568543, 0.003015767550095916, 0.0038555413484573364, 0.000892238283995539, 0.0009258562931790948, 0.0008289494435302913, 0.0013859763275831938, 0.015143233351409435, 0.4687168598175049], [0.00581139512360096, 0.07754470407962799, 0.0825522243976593, 0.05138538032770157, 0.13005641102790833, 0.15425322949886322, 0.08939588069915771, 0.04182581230998039, 0.04756972938776016]], [[0.0019849087111651897, 0.08855611830949783, 0.2910389006137848, 0.04698808118700981, 0.009876053780317307, 0.05755433812737465, 0.012332109734416008, 0.1292228102684021, 0.10991544276475906], [0.0006276286439970136, 0.007423233240842819, 0.013901297003030777, 0.016408072784543037, 0.0030015490483492613, 0.006943728309124708, 0.0038856177125126123, 0.018543429672718048, 0.46218937635421753], [0.00610472122207284, 0.00838943850249052, 0.042543087154626846, 0.010234312154352665, 0.007001273334026337, 0.014032558538019657, 0.008933191187679768, 0.04775406792759895, 0.4150524437427521], [0.0012368588941171765, 0.011893616989254951, 0.02590339630842209, 0.00960689689964056, 0.008803652599453926, 0.01800016686320305, 0.015136396512389183, 0.024688607081770897, 0.4402122497558594], [0.0011976668611168861, 0.010508932173252106, 0.010565870441496372, 0.0056952061131596565, 0.0018003394361585379, 0.006022824440151453, 0.0022222239058464766, 0.003512006951496005, 0.4780665636062622], [0.003102764254435897, 0.005295590963214636, 0.02131984569132328, 0.0018823794089257717, 0.0015874860109761357, 0.006617260631173849, 0.0009350915206596255, 0.0032096952199935913, 0.47591397166252136], [0.0005954334046691656, 0.0034797864500433207, 0.006197834853082895, 0.0016791351372376084, 0.003445325419306755, 0.004933944437652826, 0.0012294044718146324, 0.001167881884612143, 0.4882079064846039], [0.013242204673588276, 0.036340516060590744, 0.05910816788673401, 0.03873424232006073, 0.04125585779547691, 0.05659734085202217, 0.023972276598215103, 0.034682974219322205, 0.3300987184047699], [0.01587531715631485, 0.08117248117923737, 0.15265178680419922, 0.11273135244846344, 0.06255227327346802, 0.06127280369400978, 0.09383638203144073, 0.06239417940378189, 0.034661296755075455]], [[0.023521874099969864, 0.13887333869934082, 0.020319197326898575, 0.08378175646066666, 0.023465899750590324, 0.07573378086090088, 0.057652510702610016, 0.4154953360557556, 0.027856072410941124], [0.0007662298157811165, 0.018135299906134605, 0.011443358846008778, 0.009041102603077888, 0.002577859442681074, 0.018399721011519432, 0.0027045251335948706, 0.009740771725773811, 0.4632851481437683], [0.002366321859881282, 0.10162416845560074, 0.031625375151634216, 0.0313563346862793, 0.010172008536756039, 0.04109764099121094, 0.009599265642464161, 0.024887461215257645, 0.36734747886657715], [0.0004695113457273692, 0.06625770032405853, 0.026233257725834846, 0.024390406906604767, 0.0022858772426843643, 0.012010159902274609, 0.003493283875286579, 0.009133169427514076, 0.4276075065135956], [0.0003092829720117152, 0.0526396781206131, 0.013272004202008247, 0.01004702877253294, 0.006345823872834444, 0.01564851403236389, 0.006943189539015293, 0.009577170945703983, 0.4424114525318146], [0.0005457582883536816, 0.010768098756670952, 0.008021951653063297, 0.006373038049787283, 0.011970696970820427, 0.017858441919088364, 0.012966259382665157, 0.0038098637014627457, 0.4635918438434601], [0.00016606459394097328, 0.00496461009606719, 0.002816763473674655, 0.004834216553717852, 0.008082536049187183, 0.0035655887331813574, 0.0043146051466465, 0.0007516908226534724, 0.4852212071418762], [0.009132195264101028, 0.0876205638051033, 0.03505895659327507, 0.1058327928185463, 0.03761347383260727, 0.24760237336158752, 0.08190281689167023, 0.044790688902139664, 0.15226894617080688], [0.024940278381109238, 0.11619962751865387, 0.0494433231651783, 0.1186584085226059, 0.037716783583164215, 0.08430974185466766, 0.06299067288637161, 0.14452670514583588, 0.03058304637670517]], [[0.15641790628433228, 0.019472215324640274, 0.015247542411088943, 0.013404838740825653, 0.01967945322394371, 0.016380392014980316, 0.0046415734104812145, 0.023537883535027504, 0.1628110259771347], [0.017557820305228233, 0.007604199927300215, 0.059121958911418915, 0.0214568879455328, 0.009003871120512486, 0.022746462374925613, 0.003168415045365691, 0.0034808821510523558, 0.4249211549758911], [0.039214447140693665, 0.03568170592188835, 0.03868825361132622, 0.13644924759864807, 0.035623498260974884, 0.03159964829683304, 0.016966361552476883, 0.049791209399700165, 0.28974586725234985], [0.004575551021844149, 0.016080105677247047, 0.005927844904363155, 0.010002032853662968, 0.024588558822870255, 0.036488890647888184, 0.011798032559454441, 0.018629098311066628, 0.43407586216926575], [0.001959542278200388, 0.0025327231269329786, 0.0030955239199101925, 0.0028464850038290024, 0.016441889107227325, 0.06613459438085556, 0.03430316969752312, 0.00459279352799058, 0.4327998161315918], [0.037771280854940414, 0.005310892593115568, 0.007604767568409443, 0.010762638412415981, 0.0161296259611845, 0.05960553511977196, 0.06713485717773438, 0.025119103491306305, 0.3785499632358551], [0.007608044892549515, 0.0012920108856633306, 0.0018191651906818151, 0.004531044512987137, 0.0038887360133230686, 0.011789485812187195, 0.00818362832069397, 0.01839609630405903, 0.47020336985588074], [0.027132174000144005, 0.025193430483341217, 0.011770728044211864, 0.014639303088188171, 0.002379937097430229, 0.02090044878423214, 0.00795811414718628, 0.006066437810659409, 0.4164263904094696], [0.10680033266544342, 0.06203277036547661, 0.03412771224975586, 0.05610813945531845, 0.07080619037151337, 0.0797877162694931, 0.08210408687591553, 0.06484805792570114, 0.07475332170724869]], [[0.013176705688238144, 0.005161315202713013, 0.016505764797329903, 0.007590837310999632, 0.0016054105944931507, 0.005887800361961126, 0.003234897507354617, 0.006028172094374895, 0.12390077859163284], [0.021443398669362068, 0.028819488361477852, 0.026590051129460335, 0.044059544801712036, 0.015567255206406116, 0.03343338891863823, 0.005174342542886734, 0.04697897657752037, 0.36972150206565857], [0.05235188826918602, 0.07659924030303955, 0.020960111171007156, 0.10546980053186417, 0.034934885799884796, 0.08055611699819565, 0.039510879665613174, 0.052212055772542953, 0.20576702058315277], [0.012753496877849102, 0.0335836187005043, 0.004521586932241917, 0.02164275012910366, 0.013727124780416489, 0.051030516624450684, 0.0207216776907444, 0.039971765130758286, 0.39101681113243103], [0.005798910744488239, 0.010359423235058784, 0.005070396699011326, 0.007865171879529953, 0.016487397253513336, 0.0580795481801033, 0.0337136834859848, 0.013551490381360054, 0.41953566670417786], [0.00393800251185894, 0.0039023335557430983, 0.0009665403049439192, 0.001600784482434392, 0.00348343956284225, 0.009006298147141933, 0.0024692006409168243, 0.014226838015019894, 0.4755876958370209], [0.0021674446761608124, 0.0010239852126687765, 0.0005559400306083262, 0.0006442322046495974, 0.0038170935586094856, 0.0078084697015583515, 0.001562552759423852, 0.006016518454998732, 0.48701512813568115], [0.4883216917514801, 0.013175233267247677, 0.0066181062720716, 0.016256779432296753, 0.010362658649682999, 0.023859072476625443, 0.004718733951449394, 0.009193960577249527, 0.13308556377887726], [0.037800997495651245, 0.040572162717580795, 0.05631931871175766, 0.049554742872714996, 0.01427275687456131, 0.03410729393362999, 0.025968428701162338, 0.03067152015864849, 0.06917910277843475]], [[0.02594617009162903, 0.01230535376816988, 0.04566877335309982, 0.014121030457317829, 0.0072386907413601875, 0.005428669974207878, 0.0038478251080960035, 0.010239314287900925, 0.23248372972011566], [0.011459922417998314, 0.05789390951395035, 0.01801096275448799, 0.04013005644083023, 0.02041839435696602, 0.01897086761891842, 0.021832888945937157, 0.024326378479599953, 0.38134026527404785], [0.018261579796671867, 0.09114214777946472, 0.16401386260986328, 0.0360700897872448, 0.012661230750381947, 0.016071118414402008, 0.017078490927815437, 0.04107184335589409, 0.2622493505477905], [0.026431027799844742, 0.07835447788238525, 0.051074057817459106, 0.050566960126161575, 0.009912065230309963, 0.015570848248898983, 0.012985849753022194, 0.028361964970827103, 0.34938952326774597], [0.005289734341204166, 0.015012618154287338, 0.016920097172260284, 0.010304713621735573, 0.009516424499452114, 0.015370819717645645, 0.008242348209023476, 0.00926060788333416, 0.4524623155593872], [0.0011316104792058468, 0.003120411653071642, 0.007049898616969585, 0.001835630158893764, 0.00404246523976326, 0.011740568093955517, 0.0031257460359483957, 0.0027404569555073977, 0.4807789921760559], [0.0010782276513054967, 0.0035341789480298758, 0.003947503864765167, 0.0023307425435632467, 0.003992586396634579, 0.0067064277827739716, 0.0033561058808118105, 0.0038338955491781235, 0.48468706011772156], [0.0256809014827013, 0.054203908890485764, 0.0433545745909214, 0.039166368544101715, 0.02749815210700035, 0.025256246328353882, 0.029343988746404648, 0.10214278101921082, 0.284392774105072], [0.06152637302875519, 0.08685845136642456, 0.07395375519990921, 0.10133867710828781, 0.05650842934846878, 0.07045254856348038, 0.05788238346576691, 0.08833659440279007, 0.036645665764808655]]]], \\\"left_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\"]}, {\\\"name\\\": \\\"Sentence B -\\u003e Sentence B\\\", \\\"attn\\\": [[[[0.10870131105184555, 0.009214590303599834, 0.08462074398994446, 0.16989478468894958, 0.10135233402252197, 0.0493972972035408, 0.021988535299897194, 0.06349364668130875], [0.08645223826169968, 0.01271748449653387, 0.05253123864531517, 0.23775863647460938, 0.19187404215335846, 0.03741445392370224, 0.04090726003050804, 0.09690098464488983], [0.12232493609189987, 0.03188175708055496, 0.029339047148823738, 0.258259117603302, 0.06193901225924492, 0.05281803756952286, 0.04957601800560951, 0.041303928941488266], [0.11713917553424835, 0.02564113773405552, 0.09544307738542557, 0.08414534479379654, 0.06279367953538895, 0.09147869795560837, 0.0592023991048336, 0.21101054549217224], [0.042492810636758804, 0.032632045447826385, 0.07592606544494629, 0.03713872283697128, 0.09492141753435135, 0.13550794124603271, 0.0456867590546608, 0.13845527172088623], [0.05720151960849762, 0.018984483554959297, 0.030409062281250954, 0.04165385663509369, 0.22854256629943848, 0.036919306963682175, 0.029538234695792198, 0.2104029804468155], [0.0962849110364914, 0.023986605927348137, 0.16346056759357452, 0.16955357789993286, 0.08608866482973099, 0.01938687078654766, 0.017461832612752914, 0.11794460564851761], [1.0826789775819634e-06, 6.497870799648808e-06, 1.7855295482149813e-06, 8.23706250230316e-06, 8.747030619815632e-07, 1.802810402296018e-05, 4.153688496444374e-05, 0.999880313873291]], [[0.11308518052101135, 0.12625354528427124, 0.13461105525493622, 0.031244609504938126, 0.04327597841620445, 0.02240343578159809, 0.02710208110511303, 0.041078414767980576], [0.47171226143836975, 0.06813553720712662, 0.018448758870363235, 0.08434359729290009, 0.014303343370556831, 0.0060247816145420074, 0.005617797840386629, 0.027213556692004204], [0.05265144631266594, 0.2417776733636856, 0.045061975717544556, 0.0782533809542656, 0.02548084780573845, 0.006170281209051609, 0.04199046269059181, 0.06262443959712982], [0.06737424433231354, 0.14551088213920593, 0.2167421579360962, 0.19757318496704102, 0.0646800771355629, 0.01695670373737812, 0.057373709976673126, 0.049619704484939575], [0.029862700030207634, 0.04841899126768112, 0.539275050163269, 0.09850410372018814, 0.06712836027145386, 0.02949517033994198, 0.03715115785598755, 0.036787163466215134], [0.023142937570810318, 0.025920597836375237, 0.27663901448249817, 0.18025699257850647, 0.2660350501537323, 0.0187570471316576, 0.030158380046486855, 0.06147802993655205], [0.4382510483264923, 0.06007954105734825, 0.023391874507069588, 0.11213231086730957, 0.010536914691329002, 0.006349750328809023, 0.006076218094676733, 0.288510262966156], [0.0031625269912183285, 0.0070969704538583755, 0.011805384419858456, 0.01725119724869728, 0.000560812943149358, 0.0009160325862467289, 0.006874747108668089, 0.9489404559135437]], [[0.00783507525920868, 0.09679113328456879, 0.024453289806842804, 0.02132745087146759, 0.07777412235736847, 0.033756352961063385, 0.03557467460632324, 0.036254674196243286], [0.04908713325858116, 0.0825323835015297, 0.050595663487911224, 0.042241185903549194, 0.030702881515026093, 0.06782406568527222, 0.041330575942993164, 0.12438603490591049], [0.04354572296142578, 0.07399876415729523, 0.08210265636444092, 0.07860209047794342, 0.07368873804807663, 0.0557437464594841, 0.08313024044036865, 0.04106597602367401], [0.016926975920796394, 0.16411443054676056, 0.05676984786987305, 0.009580451063811779, 0.07468540966510773, 0.05725482851266861, 0.030714837834239006, 0.05273762717843056], [0.02641052007675171, 0.12195944786071777, 0.10071049630641937, 0.024074766784906387, 0.030658595263957977, 0.06795603036880493, 0.03804737329483032, 0.06280133873224258], [0.01597260683774948, 0.17404040694236755, 0.07636553794145584, 0.05074698477983475, 0.05537647008895874, 0.02398299053311348, 0.03783499076962471, 0.04169907048344612], [0.05305246263742447, 0.17477799952030182, 0.09143199026584625, 0.07000453770160675, 0.08606479316949844, 0.054692089557647705, 0.04827326163649559, 0.06029229983687401], [0.03453819453716278, 0.2534266412258148, 0.16793431341648102, 0.06967359781265259, 0.09238817542791367, 0.048972662538290024, 0.11378097534179688, 0.01999727636575699]], [[0.07474858313798904, 0.07118715345859528, 0.06656379997730255, 0.1229143962264061, 0.14376245439052582, 0.06306520104408264, 0.2047741562128067, 0.1685420423746109], [0.5319936871528625, 0.012461146339774132, 0.05339212715625763, 0.05954696238040924, 0.008004698902368546, 0.004466962534934282, 0.02240138314664364, 0.2884272336959839], [0.23742806911468506, 0.20335489511489868, 0.03166976571083069, 0.06257409602403641, 0.04587889090180397, 0.029524097219109535, 0.09712150692939758, 0.25460922718048096], [0.18211369216442108, 0.07259315997362137, 0.1317169964313507, 0.10589143633842468, 0.16349096596240997, 0.06330373883247375, 0.0840979814529419, 0.10710986703634262], [0.07818956673145294, 0.06174234300851822, 0.0683279037475586, 0.06935539096593857, 0.03648192062973976, 0.06454432755708694, 0.4329819679260254, 0.02518923580646515], [0.07364416122436523, 0.06945107132196426, 0.06775133311748505, 0.11162839829921722, 0.13545583188533783, 0.07084579020738602, 0.26834627985954285, 0.07951385527849197], [0.3170816898345947, 0.023111121729016304, 0.028089255094528198, 0.06838614493608475, 0.013917909003794193, 0.007903464138507843, 0.006222649943083525, 0.5089946389198303], [0.26299434900283813, 0.023124611005187035, 0.26984673738479614, 0.04125869646668434, 0.009962305426597595, 0.014961829409003258, 0.06820107251405716, 0.29970061779022217]], [[0.04521472379565239, 0.17385147511959076, 0.033378779888153076, 0.1641552746295929, 0.09768208861351013, 0.034414567053318024, 0.025280149653553963, 0.029695887118577957], [0.5432901978492737, 0.055639464408159256, 0.05342431366443634, 0.13850365579128265, 0.031961891800165176, 0.02108975686132908, 0.0324493832886219, 0.03641004487872124], [0.07546987384557724, 0.09363347291946411, 0.007881388999521732, 0.2760334312915802, 0.07278186082839966, 0.12219052761793137, 0.06377334892749786, 0.10580787062644958], [0.182551309466362, 0.07738935947418213, 0.14221714437007904, 0.0836256742477417, 0.08769398927688599, 0.13632802665233612, 0.13100314140319824, 0.04767309129238129], [0.06772533059120178, 0.017187099903821945, 0.031427476555109024, 0.14749610424041748, 0.015205055475234985, 0.46340328454971313, 0.025704599916934967, 0.07542426139116287], [0.016765698790550232, 0.015321548096835613, 0.02908072993159294, 0.006833572406321764, 0.7107034921646118, 0.0033725458197295666, 0.04717245325446129, 0.07036957889795303], [0.10786101967096329, 0.1786084622144699, 0.014133759774267673, 0.3131258189678192, 0.08723433315753937, 0.022915994748473167, 0.01567789539694786, 0.20677857100963593], [0.0387464240193367, 0.02254108153283596, 0.14072473347187042, 0.04632231220602989, 0.027118079364299774, 0.2534995377063751, 0.23111724853515625, 0.16146792471408844]], [[0.08855277299880981, 0.05956091731786728, 0.09327330440282822, 0.04130667448043823, 0.04341350495815277, 0.027116846293210983, 0.16473986208438873, 0.07293197512626648], [0.038782838732004166, 0.03816986456513405, 0.07811594009399414, 0.03940173611044884, 0.05490882694721222, 0.07377290725708008, 0.07111425697803497, 0.08394961059093475], [0.05391332507133484, 0.10950876027345657, 0.05121465027332306, 0.039336107671260834, 0.030011426657438278, 0.04578227922320366, 0.0755179226398468, 0.12302945554256439], [0.06311662495136261, 0.09550552070140839, 0.1489153504371643, 0.009929455816745758, 0.027894139289855957, 0.018275555223226547, 0.10901713371276855, 0.11275924742221832], [0.09932108223438263, 0.06320645660161972, 0.07227468490600586, 0.04815056174993515, 0.021891184151172638, 0.09003005176782608, 0.03844022750854492, 0.05508424714207649], [0.050591692328453064, 0.03648265078663826, 0.1787043809890747, 0.03039979189634323, 0.04410983622074127, 0.05463092029094696, 0.06780829280614853, 0.03362071514129639], [0.022231614217162132, 0.058685000985860825, 0.03210814297199249, 0.06691708415746689, 0.06509841978549957, 0.020255399867892265, 0.10095085948705673, 0.17894619703292847], [0.0034911194816231728, 0.01755925640463829, 0.0030430404003709555, 0.0007656373200006783, 0.0003766310110222548, 0.0003307466395199299, 0.0024407983291894197, 0.36305415630340576]], [[0.016943028196692467, 0.011061662808060646, 0.0012298504589125514, 0.005625784397125244, 0.002090521389618516, 0.0013406253419816494, 0.0009446584153920412, 0.00019689225882757455], [0.059228263795375824, 0.02252165786921978, 0.0065796407870948315, 0.004541346337646246, 0.0007519465289078653, 0.0016162429237738252, 0.0010733185335993767, 0.0003823531442321837], [0.13180671632289886, 0.051571331918239594, 0.003083230461925268, 0.011088494211435318, 0.0018862361321225762, 0.0010846008080989122, 0.0023257946595549583, 0.0004966087872162461], [0.23595298826694489, 0.2675606906414032, 0.0608065202832222, 0.05850319191813469, 0.003931818064302206, 0.004518663976341486, 0.0020161629654467106, 0.000395295734051615], [0.1697213053703308, 0.24143975973129272, 0.15802733600139618, 0.2151937186717987, 0.014083472080528736, 0.01092943362891674, 0.0060703023336827755, 0.0017515834188088775], [0.025678327307105064, 0.1431700438261032, 0.10860763490200043, 0.4547676742076874, 0.08180113136768341, 0.01281964872032404, 0.006552339531481266, 0.0031466681975871325], [0.011800726875662804, 0.3264195919036865, 0.08330187201499939, 0.3033777177333832, 0.18165475130081177, 0.04365663230419159, 0.01224252674728632, 0.003031285712495446], [0.0072792391292750835, 0.1268681287765503, 0.05033908411860466, 0.2587333619594574, 0.24454623460769653, 0.17340511083602905, 0.07920872420072556, 0.012613956816494465]], [[0.02696382813155651, 0.21083782613277435, 0.15946076810359955, 0.1944255530834198, 0.0941864550113678, 0.0901217982172966, 0.03318466991186142, 0.09731460362672806], [0.06708011776208878, 0.01935456693172455, 0.09393268078565598, 0.09119968116283417, 0.13621564209461212, 0.17743781208992004, 0.19761450588703156, 0.03479741886258125], [0.034138623625040054, 0.06695550680160522, 0.0347055122256279, 0.2647591233253479, 0.07598547637462616, 0.38272085785865784, 0.029523678123950958, 0.023565147072076797], [0.06593973934650421, 0.017517302185297012, 0.05015934631228447, 0.1409766674041748, 0.14035001397132874, 0.21759778261184692, 0.18434959650039673, 0.11757706105709076], [0.06164643540978432, 0.04712852090597153, 0.023603985086083412, 0.07742704451084137, 0.03240324556827545, 0.11892727762460709, 0.23681142926216125, 0.1061699315905571], [0.03335360810160637, 0.007960778661072254, 0.051070135086774826, 0.06304628401994705, 0.0462176539003849, 0.036121029406785965, 0.5187029242515564, 0.18887564539909363], [0.041254106909036636, 0.0301947221159935, 0.033651288598775864, 0.12942668795585632, 0.09611938893795013, 0.17631614208221436, 0.12154346704483032, 0.21739977598190308], [0.05029366910457611, 0.04462410509586334, 0.048011474311351776, 0.18008168041706085, 0.028116412460803986, 0.07472699880599976, 0.13831168413162231, 0.0734918862581253]], [[0.033943936228752136, 0.03359381482005119, 0.02261863648891449, 0.08283568173646927, 0.07018949091434479, 0.04248347505927086, 0.16127561032772064, 0.020356111228466034], [0.06607325375080109, 0.08509712666273117, 0.045208368450403214, 0.056096915155649185, 0.04158082604408264, 0.04673530161380768, 0.08800392597913742, 0.04409627243876457], [0.03394602984189987, 0.06617578864097595, 0.039348721504211426, 0.0755181759595871, 0.04657603055238724, 0.05110987275838852, 0.03752486780285835, 0.06845078617334366], [0.029135147109627724, 0.029502270743250847, 0.004957693628966808, 0.06609918177127838, 0.0657583475112915, 0.04484422132372856, 0.01947348192334175, 0.00607894454151392], [0.029132265597581863, 0.09598658233880997, 0.03790988028049469, 0.07511664181947708, 0.06056159734725952, 0.04498083144426346, 0.03499474376440048, 0.0248517207801342], [0.03518915921449661, 0.024192672222852707, 0.04659947007894516, 0.024818921461701393, 0.07859275490045547, 0.04899810999631882, 0.14249159395694733, 0.014201649464666843], [0.043288882821798325, 0.06034913659095764, 0.04891715571284294, 0.024664482101798058, 0.039178308099508286, 0.0678272470831871, 0.11166568100452423, 0.10117077082395554], [0.014225088059902191, 0.01238776370882988, 0.018895264714956284, 0.01611875183880329, 0.028241945430636406, 0.03211964666843414, 0.019706713035702705, 0.0014741843333467841]], [[0.0060508777387440205, 0.2624721825122833, 0.0013905806699767709, 0.009184601716697216, 0.0010160582605749369, 0.0011505259899422526, 0.0001983383990591392, 0.0013153988402336836], [0.2315906435251236, 0.05676010996103287, 0.3287101089954376, 0.0124549875035882, 0.007957584224641323, 0.006199636030942202, 0.015734124928712845, 0.0012047147611156106], [0.0009265700937248766, 0.05330977961421013, 0.006060315296053886, 0.904312014579773, 0.0032233658712357283, 0.0004049489216413349, 0.00010776261478895321, 0.0006190987187437713], [0.001638186746276915, 0.006756780203431845, 0.8357359170913696, 0.039099596440792084, 0.010943735018372536, 0.005432555451989174, 0.007262994069606066, 0.0006409725174307823], [0.0028394758701324463, 0.0052256714552640915, 0.0048163277097046375, 0.017115430906414986, 0.004212055820971727, 0.6857254505157471, 0.0031236365903168917, 0.01351089496165514], [0.00017394138558302075, 0.0009958456503227353, 0.0077655017375946045, 0.0036991583183407784, 0.9275467991828918, 0.0008852282771840692, 0.034538235515356064, 0.005635612644255161], [0.00013249741459731013, 0.0024288392160087824, 0.00199946784414351, 0.44115275144577026, 0.009732081554830074, 0.08865057677030563, 0.004404876381158829, 0.3625509738922119], [8.851963502820581e-05, 6.038512583472766e-05, 0.0003887961502186954, 0.0007887074025347829, 0.0009766381699591875, 0.005481830332428217, 0.05996217578649521, 0.08237022906541824]], [[0.072963185608387, 0.06884146481752396, 0.05169367417693138, 0.08162571489810944, 0.047629643231630325, 0.038143742829561234, 0.05487896502017975, 0.20926976203918457], [0.15273098647594452, 0.029039854183793068, 0.04898164048790932, 0.14647991955280304, 0.07680763304233551, 0.027846911922097206, 0.08949966728687286, 0.1130637377500534], [0.008304131217300892, 0.01879454404115677, 0.0023173950612545013, 0.023950031027197838, 0.003929700702428818, 0.018228409811854362, 0.050126682966947556, 0.0394442118704319], [0.05812854692339897, 0.030269967392086983, 0.04681221395730972, 0.150766521692276, 0.045657843351364136, 0.12843143939971924, 0.1375322937965393, 0.032014138996601105], [0.11510051786899567, 0.07717482000589371, 0.04640994593501091, 0.04570171236991882, 0.004313973244279623, 0.24344190955162048, 0.06968999654054642, 0.1387985348701477], [0.02562684379518032, 0.0072885556146502495, 0.013761120848357677, 0.05872292444109917, 0.36833906173706055, 0.042586952447891235, 0.02496686764061451, 0.19840611517429352], [0.1426798403263092, 0.04920092225074768, 0.03859607130289078, 0.099080890417099, 0.11154460906982422, 0.023387273773550987, 0.08972253650426865, 0.11933432519435883], [0.0019602940883487463, 0.10288668423891068, 0.007128584198653698, 0.008011512458324432, 0.0010378558654338121, 0.009276295080780983, 0.022623008117079735, 0.04174961894750595]], [[0.13006038963794708, 0.02957182563841343, 0.027847765013575554, 0.14845290780067444, 0.21169456839561462, 0.11597933620214462, 0.034082334488630295, 0.003420712659135461], [0.1717328578233719, 0.03971748799085617, 0.036973729729652405, 0.07784470915794373, 0.2781842350959778, 0.021035902202129364, 0.22194860875606537, 0.00794034544378519], [0.18966199457645416, 0.1029757410287857, 0.030085669830441475, 0.18181461095809937, 0.2510167956352234, 0.027508048340678215, 0.06017230078577995, 0.004599723499268293], [0.24112504720687866, 0.029882803559303284, 0.18160457909107208, 0.15794700384140015, 0.17487336695194244, 0.043853409588336945, 0.035820309072732925, 0.013462136499583721], [0.17980147898197174, 0.06359933316707611, 0.0506933331489563, 0.10207530111074448, 0.04617089033126831, 0.07591244578361511, 0.044013675302267075, 0.013633019290864468], [0.04445313289761543, 0.05322292819619179, 0.07571274787187576, 0.1090952679514885, 0.4110276699066162, 0.054814714938402176, 0.05832207575440407, 0.041860874742269516], [0.20005092024803162, 0.03075449913740158, 0.040954459458589554, 0.27685803174972534, 0.30435314774513245, 0.014973180368542671, 0.01312843058258295, 0.003037217538803816], [0.16598767042160034, 0.03899261727929115, 0.3594083786010742, 0.07863102853298187, 0.10893061012029648, 0.13735926151275635, 0.06446316838264465, 0.03269682079553604]]], [[[0.06858116388320923, 0.030163217335939407, 0.008098444901406765, 0.014598812907934189, 0.015145520679652691, 0.0024334462359547615, 0.0048456997610628605, 0.07829834520816803], [0.029435262084007263, 0.10852064937353134, 0.011918683536350727, 0.011145036667585373, 0.006393955554813147, 0.005007254425436258, 0.004316031467169523, 0.030658049508929253], [0.07236018776893616, 0.163868710398674, 0.1402699053287506, 0.05105699226260185, 0.03790202736854553, 0.026137081906199455, 0.015344827435910702, 0.07460454851388931], [0.1337895691394806, 0.0899280458688736, 0.055529944598674774, 0.04304825887084007, 0.01235974207520485, 0.00789712555706501, 0.032111991196870804, 0.0830860584974289], [0.12003193795681, 0.10299677401781082, 0.033140961080789566, 0.023945540189743042, 0.00817831326276064, 0.011400172486901283, 0.03788136690855026, 0.17495357990264893], [0.05469454079866409, 0.03985161334276199, 0.07988829165697098, 0.08394772559404373, 0.030257239937782288, 0.008133869618177414, 0.023840950801968575, 0.08692600578069687], [0.3029101490974426, 0.1314173936843872, 0.01983928494155407, 0.07148057222366333, 0.08766323328018188, 0.047424785792827606, 0.013654801994562149, 0.10781078040599823], [0.025799982249736786, 0.008624272421002388, 0.006171585526317358, 0.008236420340836048, 0.007794405333697796, 0.0012655055616050959, 0.003933065105229616, 0.04987429827451706]], [[0.044680897146463394, 0.004804521799087524, 6.054230107110925e-05, 8.418549987254664e-05, 7.166342402342707e-05, 2.625500928843394e-05, 6.972919891268248e-06, 0.0005136543768458068], [0.6376030445098877, 0.007936270907521248, 0.0007638441165909171, 3.6301262298366055e-05, 1.1749708392017055e-05, 9.331100045528729e-06, 1.4653620610260987e-06, 0.00025222208932973444], [0.6769182682037354, 0.12250786274671555, 0.004498713184148073, 0.010668106377124786, 0.0001167189548141323, 6.0324575315462425e-05, 1.2160943697381299e-05, 0.0007110754959285259], [0.11752672493457794, 0.08858245611190796, 0.603805422782898, 0.026070117950439453, 0.0011725848307833076, 4.2478350223973393e-05, 5.8079381233255845e-06, 0.0005597656709142029], [0.0011093392968177795, 0.0018167162779718637, 0.03265281021595001, 0.08163183182477951, 0.014997439458966255, 0.0003966383810620755, 3.467359783826396e-05, 0.0009558561723679304], [0.00013179796223994344, 0.0009575420408509672, 0.024181334301829338, 0.5397708415985107, 0.3449937105178833, 0.006616031285375357, 0.0003300385142210871, 0.003657291177660227], [0.00014259836461860687, 2.0684687115135603e-05, 0.00023706506181042641, 0.019701587036252022, 0.6781007051467896, 0.060226570814847946, 0.002976943738758564, 0.015292058698832989], [0.000359797035343945, 2.0281862816773355e-05, 2.8241032850928605e-05, 0.0002823210961651057, 0.007347555831074715, 0.015699291601777077, 0.008378030732274055, 0.036152441054582596]], [[1.615383666830894e-07, 1.190192722155814e-09, 1.7299311210874502e-20, 6.997273829999383e-18, 5.581980270214859e-22, 7.324843619290703e-15, 3.2802178063035334e-19, 9.522662606370469e-13], [1.0, 2.2638714514133795e-10, 3.048254981763421e-10, 1.5336042657574464e-21, 5.671920510829641e-21, 6.195612070538979e-22, 3.577947121378247e-20, 3.6804470777357844e-18], [4.423784957907628e-06, 0.9999934434890747, 1.3396468148130225e-06, 8.184388278209553e-09, 9.511902892160588e-18, 8.20213173638798e-15, 6.785533817008679e-21, 2.9895818893371784e-12], [2.1402211114462943e-09, 2.3257107351071227e-09, 0.9999998807907104, 1.085264216271753e-07, 1.4982251883566278e-08, 1.3446764504692265e-16, 2.0569484782719654e-19, 5.4941092267491395e-18], [1.1709769921625633e-16, 1.7135370899978852e-10, 2.909276417994988e-06, 0.9999676942825317, 8.07928154245019e-06, 1.2562693427753402e-06, 8.65050026256669e-16, 1.073124054895569e-11], [1.4757607706391077e-14, 2.3657686051503956e-18, 1.2648217584398935e-08, 1.933645080498536e-06, 0.9999861717224121, 2.531755569634697e-07, 4.590228197542956e-10, 2.0696248873215174e-14], [4.1619739427882377e-16, 7.44212949547887e-19, 2.283783632712968e-18, 3.6335732200853954e-09, 1.1618001281021861e-06, 0.9999302625656128, 3.769626744087873e-07, 2.6891315840771313e-08], [5.798336815132643e-07, 1.8211692868813287e-14, 9.820046685538042e-12, 9.017669965784292e-13, 2.7481069082568865e-06, 0.00014535938680637628, 0.9988910555839539, 0.00017812862643040717]], [[0.008333654142916203, 0.1362420916557312, 0.010320399887859821, 0.007747404742985964, 0.0007216338999569416, 3.8542049878742546e-05, 2.5408138753846288e-05, 0.0016234160866588354], [0.36891835927963257, 0.0070504918694496155, 0.08684717118740082, 0.0007881558267399669, 0.0004438000323716551, 0.0002631079696584493, 8.639064617455006e-05, 0.0005612584645859897], [0.0006238847854547203, 0.012749784626066685, 0.0008052944904193282, 0.9209931492805481, 0.0007772065000608563, 0.002841440960764885, 1.2346135008556303e-05, 0.0005850294837728143], [0.0010794708505272865, 0.001194193260744214, 0.7603306770324707, 0.0014369402779266238, 0.05168207362294197, 0.004313220269978046, 0.003552077105268836, 0.0013194206403568387], [0.00022432715923059732, 5.080715345684439e-05, 0.00113384157884866, 0.0008250142564065754, 0.0022441083565354347, 0.9214968681335449, 0.00994529202580452, 0.013709497638046741], [3.6834146612818586e-06, 1.5239354979712516e-05, 0.0010560369119048119, 0.00017052976181730628, 0.8894801139831543, 0.0011918795062229037, 0.006346599198877811, 0.007308706175535917], [2.6323972633690573e-05, 2.657203731359914e-05, 0.0001833403221098706, 0.002696598181501031, 0.003388036508113146, 0.004975316114723682, 0.005887418519705534, 0.5458222031593323], [3.493497206363827e-05, 1.9186065401299857e-05, 0.0002491232589818537, 0.00016850190877448767, 0.001038654358126223, 0.0015139169991016388, 0.00833853054791689, 0.09073840081691742]], [[8.683572332301992e-07, 0.9999451637268066, 2.6155770683544688e-05, 1.4885438304190757e-07, 9.907500438544742e-14, 3.834627927690182e-12, 1.0071887510750173e-14, 1.7108680694377654e-08], [1.58328248289763e-06, 7.254570277837047e-07, 0.9999924898147583, 1.8362860600973363e-06, 7.260941004005872e-08, 8.790926022067894e-14, 4.011585095887809e-16, 1.305729070873174e-12], [5.834889371664339e-15, 9.12531206154199e-08, 4.6762429519731086e-06, 0.9999698400497437, 1.1746075870178174e-05, 1.2869058707565273e-07, 8.500858128148824e-16, 5.203892872174265e-11], [3.90581664233558e-12, 7.16956723346594e-15, 5.807954721603892e-07, 1.4438900507229846e-05, 0.9999547004699707, 2.269754077133257e-05, 3.352676358758799e-08, 3.5850558632866125e-11], [2.3822000348359094e-14, 1.8689402510405767e-14, 1.1611832372374065e-12, 8.90751471160911e-06, 0.00099822913762182, 0.9974008798599243, 3.966835265600821e-06, 7.24479059499572e-06], [5.861375029780902e-08, 5.377814079471355e-13, 4.49807391333934e-09, 5.026326910240186e-09, 0.02058822102844715, 0.005779499653726816, 0.9524587392807007, 0.0030627641826868057], [1.093281645769828e-10, 2.876014704167318e-11, 6.462725862278751e-13, 1.7219453293804143e-11, 8.177224453120857e-10, 3.931522951461375e-05, 2.5519990231259726e-05, 0.9997057318687439], [5.55042789507354e-10, 1.2906146420674225e-12, 1.5136542685922905e-07, 1.1890407929093794e-11, 6.337234736975006e-08, 1.3905949725057098e-09, 1.3694237566141965e-07, 0.006620652042329311]], [[0.012919547036290169, 0.03929435461759567, 0.05826476588845253, 0.024818187579512596, 0.01629597134888172, 0.05150747671723366, 0.06774308532476425, 0.1496526598930359], [0.0369415283203125, 0.10659143328666687, 0.041053466498851776, 0.02049694024026394, 0.02732241153717041, 0.023360444232821465, 0.2281906008720398, 0.1975889503955841], [0.05883876234292984, 0.07948844134807587, 0.08321394771337509, 0.03127668797969818, 0.08211177587509155, 0.14281412959098816, 0.10061800479888916, 0.06557272374629974], [0.024520857259631157, 0.03407527133822441, 0.04352911189198494, 0.00524491909891367, 0.016903532668948174, 0.04117078706622124, 0.021592337638139725, 0.08923429995775223], [0.0323222391307354, 0.0627950131893158, 0.029029030352830887, 0.024998832494020462, 0.015789857134222984, 0.041054617613554, 0.02850533463060856, 0.0658973753452301], [0.01037565153092146, 0.010216180235147476, 0.035438038408756256, 0.004374670330435038, 0.021702168509364128, 0.008919978514313698, 0.012024350464344025, 0.04577553644776344], [0.021205205470323563, 0.046378012746572495, 0.045198991894721985, 0.015986425802111626, 0.02271859720349312, 0.06791386753320694, 0.03636806085705757, 0.15566006302833557], [0.018234021961688995, 0.023170528933405876, 0.03786152973771095, 0.02380889467895031, 0.030500659719109535, 0.05944862216711044, 0.0246978010982275, 0.030715957283973694]], [[0.010545618832111359, 0.11055044084787369, 0.11459872871637344, 0.09084811806678772, 0.011741390451788902, 0.06833772361278534, 0.05536438152194023, 0.2781578004360199], [0.017691710963845253, 0.2830744683742523, 0.047081612050533295, 0.008216802962124348, 0.07539959251880646, 0.09133248776197433, 0.09005158394575119, 0.24756070971488953], [0.018577340990304947, 0.057349395006895065, 0.04241904988884926, 0.04069127142429352, 0.03419868275523186, 0.04333440959453583, 0.03803611919283867, 0.2014770358800888], [0.04051860421895981, 0.024517381563782692, 0.07320301979780197, 0.01678163930773735, 0.037979718297719955, 0.07490969449281693, 0.05666041374206543, 0.16798508167266846], [0.01521233655512333, 0.05001373961567879, 0.05131158605217934, 0.026519812643527985, 0.004878588952124119, 0.03188614174723625, 0.018365615978837013, 0.17655903100967407], [0.013699924573302269, 0.03175954893231392, 0.08787105232477188, 0.03301326557993889, 0.015318159013986588, 0.013956508599221706, 0.005432327277958393, 0.06637221574783325], [0.020595623180270195, 0.1772778034210205, 0.12107231467962265, 0.0669911801815033, 0.10927382856607437, 0.12395750731229782, 0.005718687083572149, 0.14110778272151947], [0.0024355612695217133, 0.009591028094291687, 0.055832333862781525, 0.00789013970643282, 0.003163659945130348, 0.024065982550382614, 0.01920158974826336, 0.10945805162191391]], [[0.018523186445236206, 0.2292221188545227, 0.024372251704335213, 0.019012661650776863, 0.010590841993689537, 0.008312288671731949, 0.040300317108631134, 0.0998239517211914], [0.05909854546189308, 0.053116004914045334, 0.05388970673084259, 0.017586898058652878, 0.005337381269782782, 0.01151321828365326, 0.06378660351037979, 0.14968818426132202], [0.010891157202422619, 0.11645850539207458, 0.05118606239557266, 0.009040330536663532, 0.013287249021232128, 0.00977716688066721, 0.02126220427453518, 0.2674867808818817], [0.007201544474810362, 0.049710649996995926, 0.012938178144395351, 0.0016245770966634154, 0.00184776505921036, 0.00574436504393816, 0.006187069229781628, 0.2514195144176483], [0.002340165199711919, 0.048181820660829544, 0.01722092181444168, 0.002311774529516697, 0.0007722843438386917, 0.006738431751728058, 0.0065169264562428, 0.15683335065841675], [0.0004840571782551706, 0.011648942716419697, 0.003326687728986144, 0.0012034180108457804, 0.0019723689183592796, 0.0024822023697197437, 0.00037819697172380984, 0.025231916457414627], [0.049500998109579086, 0.2559291422367096, 0.09452560544013977, 0.037460122257471085, 0.024754220619797707, 0.018473124131560326, 0.057586729526519775, 0.19246000051498413], [0.014945917762815952, 0.02131113037467003, 0.005655888468027115, 0.0034914505667984486, 0.0072882394306361675, 0.01481031533330679, 0.008134969510138035, 0.04827490448951721]], [[0.000403700047172606, 0.02434423379600048, 0.007482303772121668, 0.008064993657171726, 0.017821308225393295, 0.004434784408658743, 0.0186977069824934, 0.02301398105919361], [0.014875762164592743, 0.0029208455234766006, 0.01893950253725052, 0.0057894461788237095, 0.005113658029586077, 0.01368883065879345, 0.13799335062503815, 0.05552607774734497], [0.0657443106174469, 0.02394588105380535, 0.0008405373664572835, 0.09982885420322418, 0.025732532143592834, 0.013917254284024239, 0.20898152887821198, 0.0644579753279686], [0.007373419124633074, 0.0034782993607223034, 0.05577393248677254, 0.007277036085724831, 0.010300948284566402, 0.07283075153827667, 0.461722731590271, 0.03045269474387169], [0.00018967319920193404, 0.000623972387984395, 0.0014647259376943111, 0.0023989758919924498, 2.5030429242178798e-05, 0.9709601402282715, 8.178821735782549e-05, 0.0029077206272631884], [0.00023621173750143498, 0.00020486157154664397, 0.0003908589715138078, 7.04294943716377e-05, 0.9395917057991028, 1.505894852016354e-05, 0.008266828954219818, 0.00266584986820817], [0.002455744193866849, 0.023927772417664528, 0.03450984135270119, 0.150416299700737, 0.00659153051674366, 0.23078298568725586, 0.0025820424780249596, 0.07085484266281128], [0.0007433689315803349, 0.0029321876354515553, 0.00365649932064116, 0.0028904969803988934, 0.0029285966884344816, 0.0006135914591141045, 0.002952106297016144, 0.0196691881865263]], [[5.1496841479092836e-05, 0.007824732922017574, 0.005259424448013306, 0.00016169581795111299, 0.0013910997658967972, 0.0010987307177856565, 0.001134963589720428, 0.30163922905921936], [0.003626033430919051, 0.020228257402777672, 0.0609300434589386, 0.0023989735636860132, 0.005765880458056927, 0.0017772174905985594, 0.008502776734530926, 0.19986100494861603], [0.0005887121078558266, 0.016627438366413116, 0.017559845000505447, 0.0018705057445913553, 0.00572785921394825, 0.005324434954673052, 0.004192609805613756, 0.17921604216098785], [0.00048001937102526426, 0.016649842262268066, 0.0107956537976861, 0.001416697516106069, 0.0062671834602952, 0.007340200245380402, 0.004741515498608351, 0.25097888708114624], [0.00027285455144010484, 0.010511644184589386, 0.015787869691848755, 0.0010111783631145954, 0.005062878597527742, 0.01514750998467207, 0.004822652321308851, 0.05307795852422714], [5.6375069107161835e-05, 0.007412794977426529, 0.003333469619974494, 0.0002909736940637231, 0.002818548120558262, 0.0018469386268407106, 0.001622440293431282, 0.08172480762004852], [0.0009688992868177593, 0.033865757286548615, 0.021851586177945137, 0.0020046941936016083, 0.007328392472118139, 0.0027511417865753174, 0.010170768946409225, 0.1660153567790985], [0.02784380130469799, 0.03212764859199524, 0.06105039641261101, 0.022889504209160805, 0.05149906128644943, 0.03397819399833679, 0.02152746357023716, 0.10727506130933762]], [[0.11208333820104599, 0.15393389761447906, 0.07611002773046494, 0.062354959547519684, 0.05040214955806732, 0.0070692203007638454, 0.04670001193881035, 0.07602640241384506], [0.013849584385752678, 0.038224197924137115, 0.20729359984397888, 0.08527719229459763, 0.1308830976486206, 0.014936280436813831, 0.07443074882030487, 0.11793221533298492], [0.02353779785335064, 0.023769183084368706, 0.04172907769680023, 0.044813789427280426, 0.05069916322827339, 0.015975650399923325, 0.0264284685254097, 0.08089090138673782], [0.09007612615823746, 0.010899905115365982, 0.07838040590286255, 0.019270729273557663, 0.05440118908882141, 0.025514716282486916, 0.01896488294005394, 0.0655881017446518], [0.0086777713149786, 0.0031826156191527843, 0.020852331072092056, 0.020300066098570824, 0.01988161914050579, 0.013894321396946907, 0.00928952544927597, 0.017051778733730316], [0.004117388743907213, 0.0006532202241942286, 0.010346027091145515, 0.016925079748034477, 0.012516843155026436, 0.005383260548114777, 0.0031019896268844604, 0.006903583183884621], [0.05768147110939026, 0.049425240606069565, 0.07149685174226761, 0.05951106548309326, 0.10963805764913559, 0.0229447390884161, 0.03814031183719635, 0.09062444418668747], [0.08401983976364136, 0.011291115544736385, 0.023983735591173172, 0.01690945029258728, 0.024086609482765198, 0.00714537687599659, 0.020114701241254807, 0.5446118116378784]], [[0.0013563567772507668, 0.0038155068177729845, 0.08406057208776474, 0.011772611178457737, 0.014186138287186623, 0.0073732552118599415, 0.04508255794644356, 0.11228843033313751], [0.01140142884105444, 0.005305478814989328, 0.1423553228378296, 0.09637564420700073, 0.03626321256160736, 0.07755101472139359, 0.08356667309999466, 0.16559194028377533], [0.022553693503141403, 0.01761680096387863, 0.07407406717538834, 0.09231282770633698, 0.020714614540338516, 0.04424132779240608, 0.09275511652231216, 0.15644221007823944], [0.01808399148285389, 0.013838488608598709, 0.0692896619439125, 0.005127372685819864, 0.04375274479389191, 0.022679675370454788, 0.015939589589834213, 0.252272367477417], [0.010181463323533535, 0.02268487960100174, 0.06266524642705917, 0.012716144323348999, 0.001053516985848546, 0.0036807595752179623, 0.05368969589471817, 0.23399367928504944], [0.006958476267755032, 0.027609024196863174, 0.06530915200710297, 0.01951870508491993, 0.006199215073138475, 0.0032057338394224644, 0.030796699225902557, 0.28820106387138367], [0.024630671367049217, 0.011827384121716022, 0.09941930323839188, 0.026330361142754555, 0.06422965973615646, 0.08038948476314545, 0.08413398265838623, 0.15264277160167694], [0.08449877798557281, 0.06590288877487183, 0.07416608184576035, 0.12163711339235306, 0.08837532997131348, 0.052650175988674164, 0.09376457333564758, 0.118632011115551]]], [[[0.06030169874429703, 0.12431337684392929, 0.11013025045394897, 0.05419253930449486, 0.0029536793008446693, 0.0008693889831192791, 0.04836363345384598, 0.028928592801094055], [0.05949152633547783, 0.0713064894080162, 0.06256473064422607, 0.0397312305867672, 0.013424444012343884, 0.0121604660525918, 0.08287225663661957, 0.19665774703025818], [0.03840700909495354, 0.03325706720352173, 0.046473968774080276, 0.060095787048339844, 0.017903203144669533, 0.008452055975794792, 0.1373477578163147, 0.0737197995185852], [0.06591495871543884, 0.029482051730155945, 0.04742943122982979, 0.09581159055233002, 0.05360044166445732, 0.042785268276929855, 0.12945809960365295, 0.093521848320961], [0.010589483194053173, 0.008681464940309525, 0.020977210253477097, 0.028243962675333023, 0.03647366538643837, 0.0943315178155899, 0.21241238713264465, 0.19134104251861572], [0.017331713810563087, 0.009642845019698143, 0.021944144740700722, 0.030234074220061302, 0.10904727131128311, 0.11775970458984375, 0.16735392808914185, 0.3365943729877472], [0.03117157705128193, 0.0459539033472538, 0.05523526668548584, 0.019978677853941917, 0.0040847123600542545, 0.0009635523310862482, 0.10833918303251266, 0.046537794172763824], [0.020178085193037987, 0.010771473869681358, 0.009192985482513905, 0.01983797550201416, 0.003090026555582881, 0.005178037099540234, 0.020579298958182335, 0.045992035418748856]], [[0.16235463321208954, 0.014189998619258404, 0.0033870653714984655, 0.005030840635299683, 0.000790201302152127, 0.001405485556460917, 0.004889284260571003, 0.11618164926767349], [0.015012288466095924, 0.428611159324646, 0.00602854834869504, 0.0027886908501386642, 0.008689564652740955, 0.0013605465646833181, 0.014249610714614391, 0.015825416892766953], [0.004660285077989101, 0.011767576448619366, 0.5612844228744507, 0.00652401614934206, 0.008163641206920147, 0.003781902836635709, 0.007013797294348478, 0.08565358817577362], [0.013319967314600945, 0.007715099025517702, 0.011939016170799732, 0.44796672463417053, 0.011809742078185081, 0.004552720580250025, 0.002404824597761035, 0.0520157590508461], [0.0004498498747125268, 0.0006767010781913996, 0.0009487619390711188, 0.0008650294621475041, 0.5057371854782104, 0.002964746905490756, 0.011714909225702286, 0.02957627736032009], [0.008621187880635262, 0.003783331485465169, 0.004712854977697134, 0.005618084222078323, 0.040853600949048996, 0.5851300954818726, 0.029646925628185272, 0.057307615876197815], [0.0074130212888121605, 0.008008171804249287, 0.0033505852334201336, 0.0006066468777135015, 0.04832366108894348, 0.009480200707912445, 0.18003545701503754, 0.08867539465427399], [0.00944092869758606, 0.008303634822368622, 0.002870802767574787, 0.0010940341744571924, 0.021532583981752396, 0.004500772804021835, 0.033830802887678146, 0.12077486515045166]], [[0.04654679819941521, 0.0565185509622097, 0.08150777220726013, 0.011012209579348564, 0.01555384136736393, 0.03829077258706093, 0.06883057206869125, 0.07604116201400757], [0.0584508515894413, 0.12515515089035034, 0.05331069603562355, 0.012712017633020878, 0.028217719867825508, 0.027167880907654762, 0.0398469939827919, 0.02518841065466404], [0.0018041590228676796, 0.00544142909348011, 0.012984873726963997, 0.0007626242586411536, 0.0030534672550857067, 0.004994462709873915, 0.006727222353219986, 0.010772330686450005], [0.004185807891190052, 0.005644181277602911, 0.015357761643826962, 0.0004456062160898, 0.0018210476264357567, 0.00569745060056448, 0.004917515441775322, 0.009346977807581425], [0.0039052702486515045, 0.005486944690346718, 0.07031803578138351, 0.0003826988395303488, 0.0032799742184579372, 0.01451216172426939, 0.019167032092809677, 0.010222065262496471], [0.0014771270798519254, 0.004741154611110687, 0.04112107679247856, 0.0005231461836956441, 0.004035986494272947, 0.005976933520287275, 0.003571887733414769, 0.009184031747281551], [0.058971405029296875, 0.04376852512359619, 0.09500115364789963, 0.04765741154551506, 0.17318540811538696, 0.15286332368850708, 0.12580904364585876, 0.051436807960271835], [0.020288845524191856, 0.03069455549120903, 0.06566030532121658, 0.012075920589268208, 0.03674916923046112, 0.012515691109001637, 0.015901319682598114, 0.011748884804546833]], [[0.028866425156593323, 0.10900643467903137, 0.23613987863063812, 0.024846957996487617, 0.004491351079195738, 0.0010350859956815839, 0.0006556663429364562, 0.0036426254082471132], [0.017514795064926147, 0.03259458392858505, 0.1252136379480362, 0.13784223794937134, 0.08326109498739243, 0.0021554052364081144, 0.005088401027023792, 0.004441919270902872], [0.00012616872845683247, 0.000515155668836087, 0.0005893527995795012, 0.966963529586792, 0.008206074126064777, 0.008268392644822598, 0.0005751883727498353, 0.0018765617860481143], [0.00044179102405905724, 0.0016879516188055277, 0.00476248050108552, 0.20452313125133514, 0.15664899349212646, 0.11206435412168503, 0.046345844864845276, 0.031769465655088425], [6.437341653509066e-05, 7.428012759191915e-05, 0.0008355104364454746, 0.04698832333087921, 0.016309339553117752, 0.3386057913303375, 0.06282110512256622, 0.07940312474966049], [1.3988978025736287e-05, 5.258775217953371e-06, 2.4656586901983246e-05, 0.0005134257371537387, 0.0003939476446248591, 0.003402730682864785, 0.008656292222440243, 0.06383830308914185], [0.00013651080371346325, 4.496298060985282e-05, 0.00017771369311958551, 0.0005697915330529213, 0.005081457085907459, 0.023721717298030853, 0.009262540377676487, 0.31805816292762756], [6.561361806234345e-05, 2.183180913561955e-05, 5.4876891226740554e-05, 4.194868597551249e-05, 5.985422103549354e-05, 8.497643284499645e-05, 0.0012499121949076653, 0.026748038828372955]], [[0.028572531417012215, 0.002274320228025317, 1.8463553715264425e-05, 4.518455534707755e-05, 6.70935696689412e-06, 1.0686344467103481e-05, 8.808149868855253e-05, 0.0006218262715265155], [0.7239992618560791, 0.02072248049080372, 0.0002314968587597832, 4.522140807239339e-05, 8.987371074908879e-06, 1.3283981388667598e-05, 2.272340680065099e-05, 0.0008177353302016854], [0.26926982402801514, 0.31648850440979004, 0.00241987407207489, 0.007648175582289696, 0.000723672506865114, 0.00018739915685728192, 0.00048627742216922343, 0.008654369041323662], [0.07659099251031876, 0.14643481373786926, 0.38026589155197144, 0.02378164604306221, 0.013440320268273354, 0.000335381249897182, 0.0003095087013207376, 0.006585441529750824], [0.006155412178486586, 0.1079195886850357, 0.021320685744285583, 0.24467571079730988, 0.016517268493771553, 0.002540757181122899, 0.001054976717568934, 0.009636360220611095], [0.002292442601174116, 0.0030651502311229706, 0.05615299195051193, 0.2469804733991623, 0.2729044556617737, 0.013038264587521553, 0.017613399773836136, 0.03775198757648468], [0.000818938366137445, 0.0032937233336269855, 0.0010027901735156775, 0.06035952642560005, 0.05003620311617851, 0.19541166722774506, 0.008891361765563488, 0.1138443797826767], [6.486845086328685e-05, 1.2421493011061102e-05, 1.1812937373179011e-05, 0.00011375109170330688, 0.00034109450643882155, 0.00035989226307719946, 0.0027593132108449936, 0.039893049746751785]], [[0.019487779587507248, 0.022791527211666107, 0.05048074573278427, 0.030267665162682533, 0.04473079741001129, 0.026651374995708466, 0.025211097672581673, 0.06337516009807587], [0.012979862280189991, 0.002545648254454136, 0.03083221986889839, 0.009862876497209072, 0.02961386740207672, 0.004422659054398537, 0.012797143310308456, 0.2132674902677536], [0.04932266101241112, 0.02883564680814743, 0.026826994493603706, 0.030788468196988106, 0.03354378789663315, 0.03812219202518463, 0.11195720732212067, 0.16461871564388275], [0.03509227931499481, 0.016312679275870323, 0.03991025313735008, 0.017345959320664406, 0.02898719720542431, 0.02318376488983631, 0.01810690388083458, 0.19070300459861755], [0.04792089760303497, 0.01392710953950882, 0.0453949049115181, 0.04636179283261299, 0.004614024423062801, 0.014951920136809349, 0.03140776604413986, 0.24640989303588867], [0.025036422535777092, 0.008694164454936981, 0.04175138100981712, 0.030951853841543198, 0.008862405084073544, 0.002793996362015605, 0.014308354817330837, 0.4347074031829834], [0.08586188405752182, 0.029238102957606316, 0.03297354653477669, 0.014953672885894775, 0.03236499801278114, 0.01676643267273903, 0.028713183477520943, 0.13634516298770905], [0.0738605409860611, 0.07141443341970444, 0.09754382073879242, 0.07313172519207001, 0.05476999282836914, 0.09293323010206223, 0.05512390658259392, 0.12710124254226685]], [[1.1948851863508025e-07, 0.9999997615814209, 6.417320719265263e-08, 3.2937383931397335e-09, 1.0746659579279603e-15, 2.168013227507614e-15, 1.2004500329578687e-16, 7.927677264651933e-11], [1.3880400729249232e-05, 1.3954622772871517e-05, 0.9999696016311646, 1.5996496358638979e-06, 8.27448502604966e-07, 8.824906781626073e-15, 9.99509177680713e-14, 3.980321714586177e-12], [1.8014880951870487e-15, 1.2126700532633095e-08, 4.563944457913749e-07, 0.9999938011169434, 5.748093826696277e-06, 1.5238370565384685e-08, 5.5693774922817643e-14, 3.1981927522961584e-11], [8.082797499614058e-15, 8.797089711418474e-14, 8.566816518396081e-07, 2.876574217225425e-05, 0.9999667406082153, 3.191944188074558e-06, 7.299175308617123e-08, 1.6584279088904808e-11], [7.450815735634902e-16, 1.330946854463666e-12, 1.93652090890728e-11, 4.107371933059767e-05, 2.728472463786602e-05, 0.9999278783798218, 8.492663710057968e-07, 1.0446374290040694e-06], [4.425728175865701e-13, 3.0584430607815414e-15, 1.8709970638769446e-12, 2.0804634057181026e-12, 1.3181132771933335e-06, 9.937001595972106e-05, 0.9998906850814819, 7.522501164203277e-06], [1.415863315479271e-09, 1.935891624782471e-08, 2.0340838735588562e-10, 1.3260680331583785e-09, 2.5515767276829138e-09, 1.687538497208152e-05, 0.0003194334567524493, 0.9996415376663208], [5.849731289642168e-12, 4.020725592746022e-12, 2.213971894704514e-09, 3.5863485792209104e-11, 9.381442822586905e-08, 4.217634574921192e-11, 7.109285797923803e-05, 0.02675137110054493]], [[0.022896751761436462, 0.011736011132597923, 0.030091075226664543, 0.03087509050965309, 0.00888113770633936, 0.024554667994379997, 0.008588316850364208, 0.007376732304692268], [0.05268087610602379, 0.023234298452734947, 0.011116155423223972, 0.008284005336463451, 0.0012907807249575853, 0.0025822781026363373, 0.0030365316197276115, 0.030902013182640076], [0.0589926615357399, 0.03870860114693642, 0.05600952357053757, 0.024603791534900665, 0.011302357539534569, 0.03366320580244064, 0.011313531547784805, 0.02938108891248703], [0.1711287945508957, 0.05339708924293518, 0.02752782590687275, 0.04059211164712906, 0.007898414507508278, 0.042110152542591095, 0.011627224273979664, 0.028223125264048576], [0.09770908206701279, 0.06522975862026215, 0.03083605132997036, 0.022121315822005272, 0.010094229131937027, 0.03254052624106407, 0.023675458505749702, 0.025301793590188026], [0.13390134274959564, 0.10613492131233215, 0.03660736605525017, 0.04226221516728401, 0.01067965105175972, 0.045506808906793594, 0.035594116896390915, 0.03169797360897064], [0.2986242473125458, 0.10834836214780807, 0.060008931905031204, 0.013476907275617123, 0.005045268218964338, 0.005938520189374685, 0.08591532707214355, 0.02975630760192871], [0.04978698492050171, 0.010989846661686897, 0.02566334418952465, 0.018260207027196884, 0.0032570993062108755, 0.005942781921476126, 0.008940869010984898, 0.21384775638580322]], [[0.00573089299723506, 0.007566092070192099, 0.005431079771369696, 0.0039748540148139, 0.009804329834878445, 0.002913386793807149, 0.025998499244451523, 0.13548336923122406], [0.006380574777722359, 0.020968908444046974, 0.01368224062025547, 0.0021789059974253178, 0.008229621686041355, 0.019149748608469963, 0.00503916060552001, 0.1691886931657791], [0.010036390274763107, 0.013500472530722618, 0.013146622106432915, 0.00506865419447422, 0.015606503002345562, 0.01366911455988884, 0.03025282733142376, 0.14565566182136536], [0.025159185752272606, 0.027027929201722145, 0.027973327785730362, 0.0016620683018118143, 0.009480061940848827, 0.0039490219205617905, 0.03490174189209938, 0.18045787513256073], [0.004156491719186306, 0.004465759266167879, 0.012106796726584435, 0.004197671543806791, 0.0010049620177596807, 0.004214158747345209, 0.009791282936930656, 0.18898402154445648], [0.0036947508342564106, 0.028842154890298843, 0.010896248742938042, 0.0035786530934274197, 0.005213903728872538, 0.003508517052978277, 0.006610180716961622, 0.15868982672691345], [0.008318630047142506, 0.0063333227299153805, 0.005276515148580074, 0.004300032742321491, 0.01400899887084961, 0.005900728050619364, 0.03782959282398224, 0.13181596994400024], [0.04150250554084778, 0.03269922733306885, 0.04594351723790169, 0.01914278231561184, 0.06390050798654556, 0.05484634265303612, 0.03425178676843643, 0.138983353972435]], [[0.10744603723287582, 0.039328381419181824, 0.1349569708108902, 0.16136221587657928, 0.17022734880447388, 0.13179045915603638, 0.07792867720127106, 0.0595378540456295], [0.06596345454454422, 0.03152703121304512, 0.040847454220056534, 0.15142947435379028, 0.07753805816173553, 0.0822928249835968, 0.3578556478023529, 0.14287038147449493], [0.024951240047812462, 0.015221133828163147, 0.020050378516316414, 0.090317003428936, 0.02660798653960228, 0.06543386727571487, 0.3014267683029175, 0.4037605822086334], [0.09324057400226593, 0.01634977012872696, 0.028369002044200897, 0.08609074354171753, 0.027643563225865364, 0.1378137469291687, 0.15092359483242035, 0.3365379869937897], [0.04273388907313347, 0.013541302643716335, 0.02769191935658455, 0.08493060618638992, 0.04111301898956299, 0.19647634029388428, 0.03953726217150688, 0.30057811737060547], [0.03810675069689751, 0.010126357898116112, 0.053033169358968735, 0.1087128072977066, 0.02350315824151039, 0.06834524869918823, 0.036916334182024, 0.5400442481040955], [0.044102929532527924, 0.013267609290778637, 0.036611706018447876, 0.06056676059961319, 0.047042496502399445, 0.06756952404975891, 0.010702383704483509, 0.2141205221414566], [0.012820535339415073, 0.009147114120423794, 0.010628257878124714, 0.024415597319602966, 0.01105279941111803, 0.01260040607303381, 0.007642004173249006, 0.05967523902654648]], [[0.020504456013441086, 0.051856253296136856, 0.02893981710076332, 0.3946288824081421, 0.09154099971055984, 0.06204678490757942, 0.038077302277088165, 0.039658959954977036], [0.0769314393401146, 0.019943565130233765, 0.02215023897588253, 0.5025283694267273, 0.046040091663599014, 0.13195335865020752, 0.024824930354952812, 0.026082901284098625], [0.004913864657282829, 0.00233283918350935, 0.0013138775248080492, 0.7574101090431213, 0.07086969912052155, 0.11138981580734253, 0.0130922207608819, 0.006583706475794315], [0.008854358457028866, 0.009282254613935947, 0.03747599571943283, 0.14675316214561462, 0.13725405931472778, 0.46554484963417053, 0.07357750833034515, 0.04116031900048256], [0.01609358936548233, 0.01310602854937315, 0.02185835689306259, 0.10493607819080353, 0.025696326047182083, 0.6175658106803894, 0.028523258864879608, 0.07885778695344925], [0.008007493801414967, 0.005296161863952875, 0.009536121971905231, 0.16916759312152863, 0.2546636462211609, 0.0654492974281311, 0.02887144312262535, 0.22784152626991272], [0.046326179057359695, 0.09114386141300201, 0.03134696185588837, 0.37953370809555054, 0.08949685096740723, 0.10434731841087341, 0.008043899200856686, 0.12035825848579407], [0.003716467646881938, 0.016210664063692093, 0.005639155860990286, 0.0035289255902171135, 0.008525787852704525, 0.0034673099871724844, 0.01348100509494543, 0.2081267386674881]], [[0.42651844024658203, 0.0034862100146710873, 0.002433923538774252, 0.0016345763579010963, 0.0006170259439386427, 0.0008696880540810525, 0.005298980511724949, 0.04986213147640228], [0.017274361103773117, 0.042885322123765945, 0.004727077204734087, 0.0017113384092226624, 0.0012923299800604582, 0.001020115683786571, 0.011617828160524368, 0.06836728751659393], [0.01536199264228344, 0.009218545630574226, 0.23167045414447784, 0.005852721631526947, 0.0015546750510111451, 0.0017423976678401232, 0.0047386703081429005, 0.06757446378469467], [0.020563539117574692, 0.006348449736833572, 0.008549364283680916, 0.37792837619781494, 0.0022796918638050556, 0.004963651765137911, 0.004051701631397009, 0.049174707382917404], [0.004139237105846405, 0.004156331066042185, 0.0024963708128780127, 0.004159219563007355, 0.2444210946559906, 0.0026620111893862486, 0.012758541852235794, 0.07694604992866516], [0.009172621183097363, 0.0028124956879764795, 0.004438498988747597, 0.0037392915692180395, 0.0033911976497620344, 0.2738668620586395, 0.011096665635704994, 0.055643387138843536], [0.03587152436375618, 0.006663530133664608, 0.004383022431284189, 0.0011924285208806396, 0.00426810747012496, 0.00205721496604383, 0.33695927262306213, 0.0402853861451149], [0.03925681859254837, 0.0029360095504671335, 0.005206204019486904, 0.0013880283804610372, 0.0014951186021789908, 0.0010882355272769928, 0.04603511467576027, 0.07952046394348145]]], [[[0.04658203572034836, 0.005555460695177317, 0.0018022536532953382, 0.001148938899859786, 0.0014217772986739874, 0.0023775380104780197, 0.09815413504838943, 0.09537312388420105], [0.29953938722610474, 0.012838444672524929, 0.0031419596634805202, 0.001825255574658513, 0.0013889739057049155, 0.004799085669219494, 0.10339698195457458, 0.08642999827861786], [0.6029919385910034, 0.06314750760793686, 0.002943486673757434, 0.01201237365603447, 0.004603798966854811, 0.004015857353806496, 0.013789675198495388, 0.046479154378175735], [0.37686920166015625, 0.11408039927482605, 0.04137282818555832, 0.020017584785819054, 0.02006438374519348, 0.02714480459690094, 0.014484409242868423, 0.027567988261580467], [0.1961711347103119, 0.13032746315002441, 0.00784977525472641, 0.02046329714357853, 0.01249148603528738, 0.01430736854672432, 0.013182936236262321, 0.017026925459504128], [0.35226666927337646, 0.18160906434059143, 0.010979590006172657, 0.05944208428263664, 0.02467181161046028, 0.022586803883314133, 0.012922752648591995, 0.039234187453985214], [0.2543063163757324, 0.10178137570619583, 0.006320924498140812, 0.04567937180399895, 0.019466541707515717, 0.04118887335062027, 0.05052950978279114, 0.20895008742809296], [0.006826807279139757, 0.005321907345205545, 0.003384564071893692, 0.0030748024582862854, 0.0062591517344117165, 0.008381938561797142, 0.027219180017709732, 0.04801825433969498]], [[0.046962905675172806, 0.012200532481074333, 0.04605535417795181, 0.015315336175262928, 0.024291306734085083, 0.006338980980217457, 0.07237901538610458, 0.09974216669797897], [0.038841504603624344, 0.04249999299645424, 0.026115793734788895, 0.07263584434986115, 0.07276958227157593, 0.057558510452508926, 0.0299290269613266, 0.0397169291973114], [0.025408895686268806, 0.02302015759050846, 0.013246193528175354, 0.037312932312488556, 0.04975418001413345, 0.05689382553100586, 0.053714487701654434, 0.24727939069271088], [0.02622462809085846, 0.014257804490625858, 0.049101997166872025, 0.08531162142753601, 0.07768764346837997, 0.1793392449617386, 0.03849849849939346, 0.13384966552257538], [0.015162641182541847, 0.02188735455274582, 0.06858666241168976, 0.04566754028201103, 0.04204744100570679, 0.13483184576034546, 0.043787337839603424, 0.08210629224777222], [0.015235984697937965, 0.024972660467028618, 0.08610875904560089, 0.05378352850675583, 0.07134295254945755, 0.08312346786260605, 0.10290849953889847, 0.05576132982969284], [0.022906925529241562, 0.02040037140250206, 0.04685918614268303, 0.04015630483627319, 0.049280162900686264, 0.05461256578564644, 0.12767784297466278, 0.2002382129430771], [0.01181227620691061, 0.011630960740149021, 0.017311351373791695, 0.006233724299818277, 0.01320717204362154, 0.016567962244153023, 0.03157003968954086, 0.2557390332221985]], [[0.006915548350661993, 0.023446639999747276, 0.02167346328496933, 0.002064015716314316, 0.0018096218118444085, 0.01284692995250225, 0.017827831208705902, 0.2838403582572937], [0.04236423224210739, 0.009922388009727001, 0.021295171231031418, 0.030363192781805992, 0.010341254062950611, 0.05385838821530342, 0.015181980095803738, 0.22673195600509644], [0.0027202002238482237, 0.0034526768140494823, 0.0010986845009028912, 0.0016637862427160144, 0.001018412527628243, 0.0048525771126151085, 0.0030614861752837896, 0.3853014409542084], [0.009352106600999832, 0.00640526320785284, 0.010342676192522049, 0.009683347307145596, 0.01485812570899725, 0.08279159665107727, 0.006566026248037815, 0.35758259892463684], [0.01684284582734108, 0.004527321085333824, 0.017688432708382607, 0.015695394948124886, 0.004822377115488052, 0.0427832193672657, 0.019392818212509155, 0.2858852446079254], [0.07127447426319122, 0.021105661988258362, 0.01765519566833973, 0.10097376257181168, 0.06024850532412529, 0.020846011117100716, 0.02582688070833683, 0.24880509078502655], [0.03422432020306587, 0.021881040185689926, 0.01574474386870861, 0.007600976619869471, 0.0021915428806096315, 0.017080625519156456, 0.012712590396404266, 0.3008806109428406], [0.0048760720528662205, 0.012409237213432789, 0.0070931739173829556, 0.002000832697376609, 0.0036244706716388464, 0.010943829081952572, 0.009887771680951118, 0.2570191025733948]], [[0.013927343301475048, 0.06827523559331894, 0.11747953295707703, 0.09750840067863464, 0.04995199292898178, 0.08169525861740112, 0.26087087392807007, 0.12732067704200745], [0.0037514795549213886, 0.01196987833827734, 0.03494424372911453, 0.03082987852394581, 0.09665343910455704, 0.07179718464612961, 0.49876922369003296, 0.09672056138515472], [0.001485280692577362, 0.0027171156834810972, 0.0016808612272143364, 0.04382693022489548, 0.03675924241542816, 0.16926313936710358, 0.25449761748313904, 0.20039351284503937], [0.006171513814479113, 0.004213098436594009, 0.007689651567488909, 0.035497721284627914, 0.05699235945940018, 0.08599193394184113, 0.03939202055335045, 0.35686710476875305], [0.0020864217076450586, 0.0012140811886638403, 0.00038299651350826025, 0.00644735898822546, 0.007998848333954811, 0.03876952454447746, 0.03144445642828941, 0.4030504822731018], [0.0023522975388914347, 0.0005863909027539194, 0.00032853358425199986, 0.003553203074261546, 0.003251932095736265, 0.0077364821918308735, 0.021639319136738777, 0.2969459295272827], [0.030697297304868698, 0.025672459974884987, 0.002026200294494629, 0.004858278203755617, 0.016958247870206833, 0.03626614063978195, 0.05675263702869415, 0.33316755294799805], [0.009200379252433777, 0.004334858153015375, 0.0014812416629865766, 0.0024717114865779877, 0.003434327896684408, 0.0037332160864025354, 0.014813580550253391, 0.160820871591568]], [[0.003247203305363655, 0.016734765842556953, 0.005816273856908083, 0.02339010126888752, 0.13839447498321533, 0.0783526673913002, 0.5656047463417053, 0.06418689340353012], [0.017783576622605324, 0.01628032885491848, 0.07789083570241928, 0.01078982837498188, 0.04307781532406807, 0.11294005811214447, 0.3558245599269867, 0.10164058953523636], [9.902526653604582e-05, 0.004073916934430599, 3.7136174796614796e-05, 0.9544261693954468, 0.01065280195325613, 0.00236969580873847, 0.010051416233181953, 0.006492914166301489], [0.005422523710876703, 0.020473744720220566, 0.3826789855957031, 0.008451919071376324, 0.08547884225845337, 0.24268482625484467, 0.019992487505078316, 0.09712338447570801], [0.0006792040658183396, 0.009112020954489708, 0.0662970095872879, 0.046854693442583084, 0.008737390860915184, 0.43581074476242065, 0.07052099704742432, 0.11608953028917313], [0.00586598040536046, 0.009586179628968239, 0.0005024527781642973, 0.018520750105381012, 0.1304548680782318, 0.0009591386769898236, 0.07688599079847336, 0.3586132228374481], [0.005887024104595184, 0.004573711659759283, 0.04550807178020477, 0.0049680983647704124, 0.3276149034500122, 0.5107601881027222, 0.005239696707576513, 0.02430511824786663], [0.015457957983016968, 0.01945636048913002, 0.008300923742353916, 0.00160056387539953, 0.005112434737384319, 0.011716611683368683, 0.019896110519766808, 0.4466214179992676]], [[0.06649059802293777, 0.05439984053373337, 0.0223244521766901, 0.011947850696742535, 0.00748045276850462, 0.007863557897508144, 0.025249430909752846, 0.17442286014556885], [0.1465049535036087, 0.0661725252866745, 0.014102384448051453, 0.009331862442195415, 0.03154764696955681, 0.16420786082744598, 0.06238081678748131, 0.0880052000284195], [0.07125592976808548, 0.037845902144908905, 0.011587291024625301, 0.0036953638773411512, 0.005372975952923298, 0.024161657318472862, 0.017375433817505836, 0.02179119549691677], [0.13569903373718262, 0.01877519302070141, 0.041450969874858856, 0.008395720273256302, 0.010868458077311516, 0.021202370524406433, 0.04074788838624954, 0.03540491312742233], [0.013668421655893326, 0.0023411950096488, 0.0041036056354641914, 0.00033969542710110545, 0.0006532130064442754, 0.005911857821047306, 0.010446146130561829, 0.005220680497586727], [0.0616401843726635, 0.022456318140029907, 0.020219188183546066, 0.002763928845524788, 0.003370145568624139, 0.013628877699375153, 0.030209604650735855, 0.025910403579473495], [0.14307032525539398, 0.029112787917256355, 0.019062435254454613, 0.0055292933247983456, 0.0032664563041180372, 0.008978256024420261, 0.04075730964541435, 0.08341030776500702], [0.005654643755406141, 0.014292689971625805, 0.019577741622924805, 0.0033030002377927303, 0.012694094330072403, 0.018401412293314934, 0.02777300588786602, 0.09873601794242859]], [[0.022071635350584984, 0.04092884808778763, 0.0585818774998188, 0.08269033581018448, 0.0855441763997078, 0.07963062077760696, 0.1571822166442871, 0.06544698029756546], [0.019024686887860298, 0.024176517501473427, 0.027583064511418343, 0.037872590124607086, 0.02919812686741352, 0.06729917228221893, 0.05900665372610092, 0.04263603314757347], [0.03106481395661831, 0.044395435601472855, 0.0172080360352993, 0.06188589334487915, 0.05043267086148262, 0.08090803027153015, 0.06390834599733353, 0.1465749889612198], [0.026559725403785706, 0.050885822623968124, 0.21843144297599792, 0.04302094131708145, 0.16049493849277496, 0.19344812631607056, 0.057423289865255356, 0.03698739409446716], [0.011178506538271904, 0.04127843677997589, 0.04643681272864342, 0.1468726247549057, 0.061722252517938614, 0.3135157823562622, 0.020892739295959473, 0.0814552828669548], [0.004130168817937374, 0.01765613816678524, 0.020457418635487556, 0.06887971609830856, 0.30653172731399536, 0.22313055396080017, 0.015358373522758484, 0.03249046206474304], [0.04562034457921982, 0.12475969642400742, 0.08526258915662766, 0.0796908289194107, 0.06958846002817154, 0.12920702993869781, 0.05237547308206558, 0.05033749341964722], [0.0021221372298896313, 0.0032666781917214394, 0.0015231661964207888, 0.0011074128560721874, 0.0008529155747964978, 0.001629339880309999, 0.007295794319361448, 0.3383190631866455]], [[0.14375847578048706, 0.1389721781015396, 0.15650571882724762, 0.18927054107189178, 0.039405226707458496, 0.14734160900115967, 0.15737663209438324, 0.00017208002100232989], [0.0813266858458519, 0.05959245562553406, 0.13896241784095764, 0.26633715629577637, 0.03404557704925537, 0.1678851842880249, 0.19371803104877472, 0.0003788716858252883], [0.10483808070421219, 0.19522158801555634, 0.046983249485492706, 0.1087883785367012, 0.05557802692055702, 0.13681387901306152, 0.21160779893398285, 0.0025560909416526556], [0.2691948413848877, 0.20285631716251373, 0.07688498497009277, 0.07929836958646774, 0.06059287488460541, 0.12732230126857758, 0.13470827043056488, 0.0008186959894374013], [0.11549419909715652, 0.17119476199150085, 0.09577608853578568, 0.1899692863225937, 0.024540485814213753, 0.10692265629768372, 0.21435683965682983, 0.0014267897931858897], [0.08809281885623932, 0.16689829528331757, 0.06508523225784302, 0.2711290419101715, 0.05329497531056404, 0.08856726437807083, 0.15377938747406006, 0.0026714380364865065], [0.1578301042318344, 0.1078701913356781, 0.11344996094703674, 0.17818157374858856, 0.050234604626894, 0.19941255450248718, 0.11708803474903107, 0.0009043181780725718], [0.0631398931145668, 0.054393865168094635, 0.08901600539684296, 0.07086573541164398, 0.022017978131771088, 0.0889204666018486, 0.0838044062256813, 0.20905570685863495]], [[0.048907581716775894, 0.06153663620352745, 0.05295651778578758, 0.03979042172431946, 0.01695133186876774, 0.01767057552933693, 0.38970163464546204, 0.02719184383749962], [0.03634963557124138, 0.06613592058420181, 0.011808985844254494, 0.00661960244178772, 0.019977176561951637, 0.034024834632873535, 0.46260493993759155, 0.035368964076042175], [0.11464853584766388, 0.02945755422115326, 0.021228795871138573, 0.09886714816093445, 0.018007831647992134, 0.016416052356362343, 0.11243856698274612, 0.057351112365722656], [0.0854516327381134, 0.015365722589194775, 0.13927532732486725, 0.0662253275513649, 0.10883750021457672, 0.08844134211540222, 0.10394864529371262, 0.07411099970340729], [0.030210701748728752, 0.028912976384162903, 0.05181695520877838, 0.020043091848492622, 0.20750917494297028, 0.39034661650657654, 0.016455737873911858, 0.03994926065206528], [0.018432436510920525, 0.03394339606165886, 0.055974170565605164, 0.02398219332098961, 0.24533863365650177, 0.12275483459234238, 0.032687053084373474, 0.07027378678321838], [0.41869840025901794, 0.06691352277994156, 0.039353806525468826, 0.08412089943885803, 0.016768695786595345, 0.02231862023472786, 0.010441322810947895, 0.042525846511125565], [0.10139051079750061, 0.1182694137096405, 0.09717908501625061, 0.0740463063120842, 0.04925260320305824, 0.029989754781126976, 0.06561510264873505, 0.03530462458729744]], [[0.22119642794132233, 0.00010934696911135688, 0.0006643557571806014, 3.328196544316597e-05, 9.428051271243021e-05, 0.0008516028174199164, 0.0016511741559952497, 0.18229711055755615], [0.00010933079465758055, 0.24741867184638977, 5.6484659580746666e-05, 0.0003197313053533435, 6.398563982656924e-06, 9.052497625816613e-05, 0.0010705945314839482, 0.16203829646110535], [0.00020654189574997872, 3.1595060136169195e-05, 0.28347548842430115, 1.4062512491364032e-05, 6.494088665931486e-06, 2.4871154892025515e-05, 0.000385942286811769, 0.1655144989490509], [0.00011430634185671806, 0.0010190752800554037, 0.00011227899085497484, 0.22408342361450195, 0.00010809279046952724, 9.568055247655138e-05, 0.0019795112311840057, 0.23761805891990662], [2.8114787710364908e-05, 9.27734981814865e-06, 1.0227522579953074e-05, 4.4142485421616584e-05, 0.38679930567741394, 0.0003356502566020936, 0.0004880965279880911, 0.15762969851493835], [0.0005381380906328559, 0.00010418159945402294, 3.7957102904329076e-05, 6.06112735113129e-05, 0.0007822462357580662, 0.0652136504650116, 0.0005113249644637108, 0.19804832339286804], [0.0003735825594048947, 0.00045285469968803227, 0.00014789750275667757, 0.00029891918529756367, 0.00028292369097471237, 9.962243348127231e-05, 0.0935000404715538, 0.2313941866159439], [0.011494921520352364, 0.01386911328881979, 0.0033865408040583134, 0.008826795034110546, 0.006341163069009781, 0.011007431894540787, 0.020613398402929306, 0.18322715163230896]], [[0.005859806668013334, 0.017655963078141212, 0.013937211595475674, 0.012490552850067616, 0.003946955315768719, 0.007475710939615965, 0.0757952332496643, 0.24019363522529602], [0.011346149258315563, 0.006001610308885574, 0.013856709003448486, 0.003458983963355422, 0.001941423979587853, 0.006526427809149027, 0.03637920320034027, 0.27839601039886475], [0.004961076658219099, 0.029356716200709343, 0.015592940151691437, 0.009380440227687359, 0.0031562307849526405, 0.010151279158890247, 0.07818426191806793, 0.1359224170446396], [0.002136186696588993, 0.014849446713924408, 0.016725076362490654, 0.0025098377373069525, 0.0032316420692950487, 0.004887160379439592, 0.013315770775079727, 0.1740463227033615], [0.002829605480656028, 0.03242478519678116, 0.03320515528321266, 0.021991034969687462, 0.0008035348728299141, 0.059604462236166, 0.019003497436642647, 0.0971836969256401], [0.0029629396740347147, 0.033561501652002335, 0.008458543568849564, 0.004247010685503483, 0.00549670634791255, 0.008897955529391766, 0.029893584549427032, 0.1884784996509552], [0.011478420346975327, 0.02154521830379963, 0.03223951533436775, 0.007771638687700033, 0.0027041954454034567, 0.019880862906575203, 0.019679173827171326, 0.23245543241500854], [0.011906598694622517, 0.015356337651610374, 0.012299875728785992, 0.00417743343859911, 0.0033858788665384054, 0.00439974432811141, 0.026879584416747093, 0.26961687207221985]], [[0.004200590308755636, 0.008484791032969952, 0.01640312373638153, 0.006441842298954725, 0.010949919931590557, 0.000888711423613131, 0.03805716708302498, 0.14589402079582214], [0.016607576981186867, 0.17710672318935394, 0.00237080454826355, 0.0007672299980185926, 0.002227987162768841, 0.001268949476070702, 0.016797464340925217, 0.08342400193214417], [0.0061604930087924, 0.0031443138141185045, 0.002245415234938264, 0.005060181953012943, 0.005507911089807749, 0.002887589391320944, 0.021300330758094788, 0.21780315041542053], [0.003336308291181922, 0.0040556928142905235, 0.008462403900921345, 0.002116583986207843, 0.004215013701468706, 0.00417370954528451, 0.04174119606614113, 0.2571059763431549], [0.0017129492480307817, 0.005325031466782093, 0.00914151594042778, 0.006560756359249353, 0.0046642497181892395, 0.010934620164334774, 0.057021237909793854, 0.19447149336338043], [0.0005891172331757843, 0.004202599171549082, 0.002888341899961233, 0.0014854454202577472, 0.006945270113646984, 0.000805056479293853, 0.011658421717584133, 0.23963919281959534], [0.027393124997615814, 0.003633933374658227, 0.0034882931504398584, 0.0015915933763608336, 0.014812763780355453, 0.009673142805695534, 0.08029397577047348, 0.20684362947940826], [0.02353556454181671, 0.015040814876556396, 0.024802949279546738, 0.04028703272342682, 0.07297728210687637, 0.02032008022069931, 0.0635015144944191, 0.18453703820705414]]], [[[0.0016963587841019034, 0.04343685135245323, 0.023814281448721886, 0.02632875181734562, 0.036393698304891586, 0.1093456894159317, 0.04231872782111168, 0.2793356478214264], [0.0020882582757622004, 0.0021655098535120487, 0.015465816482901573, 0.03194478154182434, 0.030286500230431557, 0.07281152158975601, 0.01618834026157856, 0.4195168912410736], [0.00044907856499776244, 0.010765604674816132, 0.0028897759038954973, 0.1274241805076599, 0.15617790818214417, 0.0760139673948288, 0.041925206780433655, 0.3026621341705322], [0.00045586933265440166, 0.004585266578942537, 0.009204753674566746, 0.04407932609319687, 0.3028356432914734, 0.2534273862838745, 0.0154296038672328, 0.1802086979150772], [0.010748859494924545, 0.011472832411527634, 0.006188303232192993, 0.015000557526946068, 0.006573528982698917, 0.013217327184975147, 0.7583897113800049, 0.06690241396427155], [0.005823454353958368, 0.01081096287816763, 0.004527913872152567, 0.016536278650164604, 0.012182661332190037, 0.011118763126432896, 0.7706246376037598, 0.04222780838608742], [0.6120604276657104, 0.1465435028076172, 0.014453024603426456, 0.028639061376452446, 0.009268267080187798, 0.01893697865307331, 0.00406336085870862, 0.031062575057148933], [0.000716417795047164, 0.0006372368079610169, 0.0007312323432415724, 0.0012041775044053793, 0.0008390186703763902, 0.0008140855352394283, 0.003646201454102993, 0.48727190494537354]], [[0.0034246111754328012, 0.011534811928868294, 0.0038573420606553555, 0.00985016580671072, 0.0008040035027079284, 0.0012686030240729451, 0.014856799505650997, 0.43500906229019165], [0.0054847379215061665, 0.010686046443879604, 0.011580334044992924, 0.029445620253682137, 0.010921631939709187, 0.01596014015376568, 0.012294610030949116, 0.16726449131965637], [0.0059769367799162865, 0.011746933683753014, 0.0029733304399996996, 0.012123722583055496, 0.002662101062014699, 0.014138547703623772, 0.016141939908266068, 0.4651659429073334], [0.00808185338973999, 0.002570420503616333, 0.01464450266212225, 0.00245995563454926, 0.0044882227666676044, 0.007807701360434294, 0.015765361487865448, 0.48114702105522156], [0.0020097922533750534, 0.00014643576287198812, 0.0008298148750327528, 0.005793146789073944, 0.09056054055690765, 0.6389860510826111, 0.0015513580292463303, 0.13936926424503326], [0.004524475894868374, 0.0020458821672946215, 0.002325686626136303, 0.011292899027466774, 0.0387813001871109, 0.08969075232744217, 0.009814504534006119, 0.4271290600299835], [0.00976563896983862, 0.01224400382488966, 0.00756114674732089, 0.017550110816955566, 0.006095872260630131, 0.005096809938549995, 0.02016581781208515, 0.3677200376987457], [0.005455663427710533, 0.008655020967125893, 0.004578886087983847, 0.00449566962197423, 0.0012366364244371653, 0.0026502416003495455, 0.015306497924029827, 0.37894758582115173]], [[0.02105966955423355, 0.005749039817601442, 0.002790131140500307, 0.00196623126976192, 0.001175210578367114, 0.0037712149787694216, 0.0052514155395329, 0.48305514454841614], [0.08490371704101562, 0.002081465907394886, 0.0017140712589025497, 0.000830847246106714, 0.0007690382190048695, 0.00365238799713552, 0.00841774232685566, 0.4253802001476288], [0.08620618283748627, 0.011666359379887581, 0.032822202891111374, 0.23797467350959778, 0.06326288729906082, 0.0210683923214674, 0.1790618747472763, 0.1480027139186859], [0.045495904982089996, 0.009842057712376118, 0.05439065396785736, 0.042849864810705185, 0.3019333779811859, 0.07328135520219803, 0.16856414079666138, 0.14167706668376923], [0.07781201601028442, 0.12173343449831009, 0.01955941878259182, 0.03972085937857628, 0.0325206033885479, 0.027027705684304237, 0.0850103497505188, 0.269875705242157], [0.05339881032705307, 0.09822818636894226, 0.04369979351758957, 0.03310321271419525, 0.1294233649969101, 0.0293069276958704, 0.205490380525589, 0.16605804860591888], [0.6670366525650024, 0.14895570278167725, 0.010437785647809505, 0.005437977612018585, 0.0013922702055424452, 0.0025613312609493732, 0.005723379552364349, 0.06568364053964615], [0.017253145575523376, 0.01439250260591507, 0.018619323149323463, 0.011425826698541641, 0.010454332455992699, 0.036537181586027145, 0.02314048819243908, 0.39445915818214417]], [[0.019873522222042084, 0.060984332114458084, 0.025610795244574547, 0.010124742984771729, 0.005425992421805859, 0.010943528264760971, 0.005278751719743013, 0.3069263696670532], [0.030595878139138222, 0.023074021562933922, 0.005258235614746809, 0.016411537304520607, 0.005732754245400429, 0.006106399931013584, 0.018263444304466248, 0.2909976840019226], [0.06505705416202545, 0.06328089535236359, 0.007845091633498669, 0.040057312697172165, 0.017944490537047386, 0.018586907535791397, 0.022392813116312027, 0.3109632730484009], [0.024126902222633362, 0.09028711915016174, 0.043389659374952316, 0.013567181304097176, 0.0170480664819479, 0.05928710475564003, 0.025768481194972992, 0.277668297290802], [0.020703846588730812, 0.06998427957296371, 0.017897240817546844, 0.029291734099388123, 0.023805996403098106, 0.06463689357042313, 0.018756501376628876, 0.2744275629520416], [0.031332943588495255, 0.05508267506957054, 0.007559443823993206, 0.08190315961837769, 0.07170398533344269, 0.03221050649881363, 0.032327037304639816, 0.25641801953315735], [0.010116730816662312, 0.028706198558211327, 0.011727341450750828, 0.009715944528579712, 0.02404075674712658, 0.04453139379620552, 0.03886324167251587, 0.31631720066070557], [0.015491144731640816, 0.01348561979830265, 0.02619824931025505, 0.019132710993289948, 0.03409269452095032, 0.0333671048283577, 0.06559543311595917, 0.2948067784309387]], [[0.050414979457855225, 0.008590475656092167, 0.02460332028567791, 0.10249323397874832, 0.02212272584438324, 0.055966947227716446, 0.05752737447619438, 0.15015044808387756], [0.0011338567128404975, 0.13830946385860443, 4.9935082643060014e-05, 5.2626295655500144e-05, 4.983631515642628e-05, 0.00015292532043531537, 0.0019380685407668352, 0.022427253425121307], [0.03536965325474739, 0.006351954769343138, 0.12163133919239044, 0.16789932548999786, 0.021654589101672173, 0.04068566858768463, 0.02959786169230938, 0.13964448869228363], [0.05552118271589279, 0.0060678510926663876, 0.08895387500524521, 0.2157292515039444, 0.042491886764764786, 0.0706239864230156, 0.01184166967868805, 0.13930077850818634], [0.0010557923233136535, 0.006696704309433699, 0.006256043445318937, 0.010908727534115314, 0.24774286150932312, 0.3984084129333496, 0.004950797185301781, 0.12850512564182281], [0.001464169123210013, 0.004446992184966803, 0.0030188108794391155, 0.004341593943536282, 0.4266420006752014, 0.32678458094596863, 0.003989062737673521, 0.06462882459163666], [0.026382392272353172, 0.01543849240988493, 0.026979804039001465, 0.02332753874361515, 0.056262921541929245, 0.056463100016117096, 0.024026915431022644, 0.13479170203208923], [0.03366883099079132, 0.022494222968816757, 0.026550494134426117, 0.05728454887866974, 0.02301979809999466, 0.03992536664009094, 0.0698113664984703, 0.22074756026268005]], [[0.0073627387173473835, 0.00533401221036911, 0.005864250939339399, 0.0012766201980412006, 0.0010713671799749136, 0.0009084046469070017, 0.018872259184718132, 0.2570396363735199], [0.0015607213135808706, 0.006748128216713667, 0.00410108920186758, 0.0005886416765861213, 0.001930480357259512, 0.004860387649387121, 0.00995497964322567, 0.2777583599090576], [0.020737716928124428, 0.00598968006670475, 0.0036782382521778345, 0.010901479981839657, 0.01046878844499588, 0.01310956384986639, 0.025129426270723343, 0.2969963252544403], [0.0012958789011463523, 0.0017608033958822489, 0.0032158505637198687, 0.0009611584828235209, 0.0022709595505148172, 0.0041665975004434586, 0.00840948149561882, 0.40070468187332153], [0.0013778435532003641, 0.003737699007615447, 0.006553072016686201, 0.003292630659416318, 0.00012181791680632159, 0.0015007142210379243, 0.029383007436990738, 0.337668776512146], [0.0011858895886689425, 0.0044764927588403225, 0.006565919145941734, 0.003261185484007001, 0.00033813808113336563, 0.0010404461063444614, 0.013363399542868137, 0.2993186116218567], [0.030118338763713837, 0.009555677883327007, 0.010188327170908451, 0.007669522427022457, 0.012831166386604309, 0.010416695848107338, 0.014109778217971325, 0.22779570519924164], [0.014840812422335148, 0.010037073865532875, 0.019958045333623886, 0.014719882979989052, 0.02412145584821701, 0.026685211807489395, 0.018039382994174957, 0.2786022424697876]], [[0.09875830262899399, 0.03879382088780403, 0.07041935622692108, 0.28564220666885376, 0.13473956286907196, 0.13820098340511322, 0.10802347958087921, 0.051804907619953156], [0.05459648743271828, 0.09873225539922714, 0.018078718334436417, 0.03541871905326843, 0.06448638439178467, 0.0915878489613533, 0.1710057109594345, 0.25752824544906616], [0.052785977721214294, 0.03861907869577408, 0.08222334086894989, 0.21188823878765106, 0.10806860774755478, 0.13078716397285461, 0.1616954505443573, 0.11331494897603989], [0.03220897167921066, 0.0360710509121418, 0.09017270058393478, 0.08811293542385101, 0.12983353435993195, 0.17740115523338318, 0.10423349589109421, 0.19946399331092834], [0.024063458666205406, 0.15672419965267181, 0.10631737858057022, 0.08241540938615799, 0.08744386583566666, 0.28911709785461426, 0.09944497048854828, 0.07621962577104568], [0.023370452225208282, 0.08838334679603577, 0.1972845047712326, 0.07574187219142914, 0.11305368691682816, 0.15217573940753937, 0.09690532833337784, 0.10754647850990295], [0.06451127678155899, 0.08186668902635574, 0.067957803606987, 0.13537313044071198, 0.15637332201004028, 0.17356529831886292, 0.1803516447544098, 0.0742679312825203], [0.04861001297831535, 0.02656489983201027, 0.05943974480032921, 0.0734231024980545, 0.08971790224313736, 0.07722220569849014, 0.09786650538444519, 0.13116073608398438]], [[0.07482866942882538, 0.04317133501172066, 0.0014033750630915165, 0.00862090103328228, 0.01879740133881569, 0.026756908744573593, 0.3351838290691376, 0.1895415335893631], [0.20757271349430084, 0.011723799630999565, 0.0056944540701806545, 0.049169961363077164, 0.028415462002158165, 0.048320647329092026, 0.1753106266260147, 0.09203783422708511], [0.2065984308719635, 0.014990677125751972, 0.019538192078471184, 0.041061121970415115, 0.03878272697329521, 0.15423835813999176, 0.09221134334802628, 0.1260131448507309], [0.24302281439304352, 0.03511276841163635, 0.02504032291471958, 0.035602059215307236, 0.03311051428318024, 0.06870516389608383, 0.094892717897892, 0.17143408954143524], [0.0520395003259182, 0.027188673615455627, 0.08735772967338562, 0.23192018270492554, 0.041828349232673645, 0.0877753272652626, 0.05010579526424408, 0.14494216442108154], [0.049552347511053085, 0.020506612956523895, 0.07132012397050858, 0.21688765287399292, 0.10370450466871262, 0.060287248343229294, 0.06902183592319489, 0.09324201941490173], [0.11785640567541122, 0.03102685883641243, 0.0644078478217125, 0.1667085587978363, 0.012799013406038284, 0.018863562494516373, 0.009424970485270023, 0.26704680919647217], [0.001812909496948123, 0.002007707953453064, 0.002680248348042369, 0.001971592428162694, 0.004784559365361929, 0.0035575549118220806, 0.003198385937139392, 0.4939432740211487]], [[0.002084612613543868, 0.0005561957368627191, 0.0014683007029816508, 0.00016111831064336002, 0.0003762694541364908, 0.00042524022865109146, 0.00769030163064599, 0.3563368618488312], [0.00598579877987504, 0.009157853201031685, 0.00217249384149909, 0.0008990955539047718, 0.0006298123043961823, 0.0006132062408141792, 0.007449880242347717, 0.2973126769065857], [0.021319732069969177, 0.0076040467247366905, 0.1512872874736786, 0.0054129790514707565, 0.003192170290276408, 0.003939376212656498, 0.024088596925139427, 0.2880862057209015], [0.01645847037434578, 0.006773149129003286, 0.07859909534454346, 0.004702894017100334, 0.0042662410996854305, 0.0034575853496789932, 0.01548469066619873, 0.30049994587898254], [0.014179660007357597, 0.025713196024298668, 0.018001293763518333, 0.013654589653015137, 0.04025905206799507, 0.0721614733338356, 0.05696943774819374, 0.2661978304386139], [0.011539528146386147, 0.02251790463924408, 0.01865800842642784, 0.011011118069291115, 0.016380244866013527, 0.0061696115881204605, 0.061180420219898224, 0.3045109510421753], [0.011561906896531582, 0.002791990991681814, 0.0034200961235910654, 0.0004263815062586218, 0.0023454977199435234, 0.003957652021199465, 0.026300577446818352, 0.3060140311717987], [0.01920214109122753, 0.02016107551753521, 0.03421986103057861, 0.04606100171804428, 0.033302128314971924, 0.03154625743627548, 0.06052703782916069, 0.22832956910133362]], [[0.05765307694673538, 0.001901008072309196, 0.007536872755736113, 0.0068319919519126415, 0.0029761791229248047, 0.005918752867728472, 0.05871230363845825, 0.24409452080726624], [0.007841966114938259, 0.026970697566866875, 0.0008492899942211807, 0.0020911977626383305, 0.0008162970771081746, 0.0027118290308862925, 0.05476989969611168, 0.27923518419265747], [0.0711301937699318, 0.001075957901775837, 0.09662097692489624, 0.06912503391504288, 0.004651287570595741, 0.006799530237913132, 0.019379233941435814, 0.22451423108577728], [0.037867020815610886, 0.0001516553747933358, 0.06356188654899597, 0.3673805594444275, 0.014160789549350739, 0.03530566766858101, 0.043977443128824234, 0.136525958776474], [0.014571050181984901, 0.00028408842626959085, 0.002398516982793808, 0.0037565536331385374, 0.2799164950847626, 0.1964329183101654, 0.06977500021457672, 0.15841124951839447], [0.009427032433450222, 0.0019615599885582924, 0.005817327182739973, 0.0024116404820233583, 0.161089688539505, 0.18992066383361816, 0.04791185259819031, 0.19897080957889557], [0.0581563301384449, 0.01648130640387535, 0.006586473900824785, 0.006086861714720726, 0.0025096586905419827, 0.005156507715582848, 0.07773507386445999, 0.1230817586183548], [0.018371254205703735, 0.023927001282572746, 0.02474764734506607, 0.015799906104803085, 0.01705416664481163, 0.026087237522006035, 0.0261379387229681, 0.33093684911727905]], [[0.04227710887789726, 0.0028156449552625418, 0.008320897817611694, 0.02313046343624592, 0.030756695196032524, 0.041054826229810715, 0.32157638669013977, 0.1394667774438858], [0.04864628240466118, 0.04549003764986992, 0.0032323230989277363, 0.0028355130925774574, 0.01112421415746212, 0.0009374177898280323, 0.01727222464978695, 0.07459127902984619], [0.011605875566601753, 0.003044986166059971, 0.031440362334251404, 0.007231414783746004, 0.01078992523252964, 0.010247860103845596, 0.014358142390847206, 0.46563994884490967], [0.009664541110396385, 0.0015835778322070837, 0.03590034320950508, 0.004795196000486612, 0.0029460359364748, 0.007573799695819616, 0.004010479431599379, 0.46775022149086], [0.01420605182647705, 0.009741378016769886, 0.051131006330251694, 0.011161072179675102, 0.03492269665002823, 0.055801570415496826, 0.02263258397579193, 0.3468469977378845], [0.013382026925683022, 0.006154095754027367, 0.03458422049880028, 0.01632077246904373, 0.022901706397533417, 0.020368412137031555, 0.012024697847664356, 0.37621352076530457], [0.08224445581436157, 0.04308618977665901, 0.11947230249643326, 0.028381820768117905, 0.053372155874967575, 0.013050739653408527, 0.13208967447280884, 0.1328624188899994], [0.004592256620526314, 0.001775078009814024, 0.0027528100181370974, 0.0013917480828240514, 0.0020696839783340693, 0.0032685284968465567, 0.003168020863085985, 0.4657491147518158]], [[0.06524402648210526, 0.007268873509019613, 0.02393418923020363, 0.07452501356601715, 0.03132077306509018, 0.026117483153939247, 0.02592371590435505, 0.2669815123081207], [0.2197365015745163, 0.04419075325131416, 0.007974792271852493, 0.06039087474346161, 0.012480903416872025, 0.011993058025836945, 0.00827112141996622, 0.15984182059764862], [0.00182385987136513, 0.0015877608675509691, 0.7842802405357361, 0.008985773660242558, 0.0073459092527627945, 0.007578442804515362, 0.006970295216888189, 0.043520063161849976], [0.01790892519056797, 0.003995273727923632, 0.10294529050588608, 0.04357773810625076, 0.01807667873799801, 0.03907795995473862, 0.02212400548160076, 0.3548368513584137], [0.018787145614624023, 0.017174435779452324, 0.027899598702788353, 0.055454764515161514, 0.021909315139055252, 0.04137881472706795, 0.042646750807762146, 0.3205856382846832], [0.02267107181251049, 0.009135224856436253, 0.01663285307586193, 0.04211343452334404, 0.009826556779444218, 0.016638237982988358, 0.014036930166184902, 0.4058931767940521], [0.06463637948036194, 0.025132765993475914, 0.021056028082966805, 0.06254459917545319, 0.03878892585635185, 0.08722954243421555, 0.13370639085769653, 0.14509160816669464], [0.0013326802290976048, 0.0006204037927091122, 0.0002672361151780933, 0.0009621839853934944, 0.0038990553002804518, 0.005101409275084734, 0.004158728290349245, 0.046051986515522]]], [[[0.0037680347450077534, 0.01011739019304514, 0.0020574380178004503, 0.0007088994607329369, 0.0012839497067034245, 0.0013907249085605145, 0.006108436733484268, 0.2057793289422989], [0.012600972317159176, 0.006800358649343252, 0.001529003493487835, 0.0008148597553372383, 0.0013255276717245579, 0.00173011957667768, 0.009520416148006916, 0.14846351742744446], [0.006087103392928839, 0.004580381792038679, 0.0027555355336517096, 0.001001044875010848, 0.0013686222955584526, 0.004359197802841663, 0.003597324714064598, 0.4378802180290222], [0.0027869499754160643, 0.00370847899466753, 0.001895884983241558, 0.0003599210758693516, 0.001882963697426021, 0.003024386242032051, 0.0034445396158844233, 0.4020995497703552], [0.0019730671774595976, 0.003757168771699071, 0.001814311370253563, 0.0011841977247968316, 0.0007055472815409303, 0.002085272455587983, 0.0026086634024977684, 0.4520166516304016], [0.0012780457036569715, 0.005804226268082857, 0.0014257780276238918, 0.0008848903235048056, 0.0017981536220759153, 0.00331663666293025, 0.0024215076118707657, 0.3683658540248871], [0.01782640442252159, 0.017638415098190308, 0.0031769585330039263, 0.0014164091553539038, 0.0016962096560746431, 0.0017007789574563503, 0.011082235723733902, 0.18578936159610748], [0.005664305295795202, 0.0030453111976385117, 0.0027993745170533657, 0.0022439612075686455, 0.0015768746379762888, 0.0030868847388774157, 0.011895126663148403, 0.4376065731048584]], [[0.014840122312307358, 0.0013085606042295694, 0.039486441761255264, 0.0026478422805666924, 0.0005709935212507844, 0.0010041547939181328, 0.01806369423866272, 0.38482511043548584], [0.1274683177471161, 0.01506918016821146, 0.23681846261024475, 0.05273933708667755, 0.029125070199370384, 0.0955008938908577, 0.04775208234786987, 0.026955148205161095], [0.02431645430624485, 0.0017582984874024987, 0.010459288954734802, 0.03339405357837677, 0.007945789024233818, 0.0036622625775635242, 0.014522621408104897, 0.3849082887172699], [0.04700079932808876, 0.001978689106181264, 0.22726276516914368, 0.04526595026254654, 0.04508696496486664, 0.14352884888648987, 0.03737841919064522, 0.12657026946544647], [0.04344695433974266, 0.0030722073279321194, 0.013888254761695862, 0.019411059096455574, 0.003676072461530566, 0.004668432287871838, 0.008724630810320377, 0.4267577826976776], [0.032771483063697815, 0.0011923447018489242, 0.012779499404132366, 0.031087882816791534, 0.011963548138737679, 0.0036647554952651262, 0.01164622139185667, 0.42539161443710327], [0.20115990936756134, 0.008319775573909283, 0.15714073181152344, 0.036948319524526596, 0.007364704739302397, 0.008542901836335659, 0.02468431554734707, 0.10846249014139175], [0.0031514132861047983, 0.0024319614749401808, 0.0019019941100850701, 0.0013559728395193815, 0.0007875753799453378, 0.0015469209756702185, 0.0023786742240190506, 0.4691597521305084]], [[0.02438487485051155, 0.056342821568250656, 0.10847561061382294, 0.028441699221730232, 0.016355125233530998, 0.07422536611557007, 0.08082561194896698, 0.29835930466651917], [0.07674339413642883, 0.06005560979247093, 0.2807020843029022, 0.05430763587355614, 0.026237284764647484, 0.07856515794992447, 0.13309387862682343, 0.09161370247602463], [0.028500575572252274, 0.03270089998841286, 0.019113661721348763, 0.013181978836655617, 0.008487225510179996, 0.03910672664642334, 0.02765830047428608, 0.3773428797721863], [0.039313022047281265, 0.043547533452510834, 0.09648048132658005, 0.006568219978362322, 0.008414344862103462, 0.02256062626838684, 0.04230526089668274, 0.35889238119125366], [0.005097770132124424, 0.009009651839733124, 0.0104592964053154, 0.005795119795948267, 0.0011189539218321443, 0.0024994288105517626, 0.005162742454558611, 0.4674362540245056], [0.009303785860538483, 0.014094715937972069, 0.02185630425810814, 0.009364325553178787, 0.004373994190245867, 0.004859173204749823, 0.019144974648952484, 0.43929022550582886], [0.03983159363269806, 0.07692816108465195, 0.08455802500247955, 0.06422775983810425, 0.0204963106662035, 0.04479874670505524, 0.07839468121528625, 0.13165226578712463], [0.007312878035008907, 0.009336182847619057, 0.0032839528284966946, 0.0017670848174020648, 0.0006519770831800997, 0.002209938131272793, 0.012409497983753681, 0.4259493052959442]], [[0.26556169986724854, 0.28196024894714355, 0.04583445563912392, 0.09193549305200577, 0.013926739804446697, 0.029472045600414276, 0.0394529290497303, 0.1317133754491806], [0.32566601037979126, 0.20180393755435944, 0.030266478657722473, 0.08240750432014465, 0.038651201874017715, 0.05873998999595642, 0.11753781139850616, 0.08272930979728699], [0.1750241369009018, 0.23541271686553955, 0.031787142157554626, 0.15129630267620087, 0.019971439614892006, 0.03018873557448387, 0.12603642046451569, 0.131233811378479], [0.1829490214586258, 0.06646079570055008, 0.09687380492687225, 0.19819007813930511, 0.02818789705634117, 0.06094944477081299, 0.07096985727548599, 0.17217500507831573], [0.21221914887428284, 0.057410579174757004, 0.05714748799800873, 0.0629132017493248, 0.051415786147117615, 0.07971934974193573, 0.2734029293060303, 0.09080594033002853], [0.11927974224090576, 0.08668158203363419, 0.04186565801501274, 0.08596266061067581, 0.10303383320569992, 0.09668242186307907, 0.12849071621894836, 0.18440285325050354], [0.19421376287937164, 0.15419024229049683, 0.018400857225060463, 0.0642792135477066, 0.051191214472055435, 0.11149299889802933, 0.11672280728816986, 0.15388274192810059], [0.044141292572021484, 0.000980180804617703, 0.0015524347545579076, 0.009378008544445038, 0.007391740567982197, 0.014959284104406834, 0.08218418806791306, 0.27219095826148987]], [[0.0838741883635521, 0.049962118268013, 0.044467613101005554, 0.009598050266504288, 0.008946756832301617, 0.01274880301207304, 0.07569101452827454, 0.1688639223575592], [0.1817731112241745, 0.007597863208502531, 0.033480092883110046, 0.06982488930225372, 0.05618320405483246, 0.060275815427303314, 0.12317872047424316, 0.1510801762342453], [0.19782155752182007, 0.062119461596012115, 0.024056755006313324, 0.0280571598559618, 0.037816375494003296, 0.04873092845082283, 0.12775467336177826, 0.12950685620307922], [0.07294398546218872, 0.08815183490514755, 0.0590052492916584, 0.011987412348389626, 0.008345074020326138, 0.024434493854641914, 0.044371023774147034, 0.1813422292470932], [0.03601160645484924, 0.1817115843296051, 0.023733709007501602, 0.01251690462231636, 0.000523271388374269, 0.003131855046376586, 0.1747126579284668, 0.13317681849002838], [0.04160265251994133, 0.17082461714744568, 0.0653349757194519, 0.09466809779405594, 0.015321015380322933, 0.015078390017151833, 0.09486056864261627, 0.13631370663642883], [0.09398935735225677, 0.08839790523052216, 0.10018263012170792, 0.01845436729490757, 0.0587228462100029, 0.043921519070863724, 0.16277523338794708, 0.13058136403560638], [0.040973346680402756, 0.056740548461675644, 0.028102349489927292, 0.03387371078133583, 0.03862035647034645, 0.048412393778562546, 0.07143495231866837, 0.15871340036392212]], [[0.04152660816907883, 0.026114612817764282, 0.04644668102264404, 0.11197292804718018, 0.03548828139901161, 0.02690413035452366, 0.10786480456590652, 0.19630101323127747], [0.002236614702269435, 0.18039251863956451, 0.0007021683268249035, 0.0005380944930948317, 0.0013695275411009789, 0.0014217051211744547, 0.02658555656671524, 0.12022377550601959], [0.0032987233716994524, 0.005305584520101547, 0.03740245848894119, 0.15607498586177826, 0.0388929508626461, 0.043887872248888016, 0.007889741100370884, 0.30175110697746277], [0.003688205499202013, 0.00458797812461853, 0.013329659588634968, 0.09101948887109756, 0.12248995155096054, 0.021962657570838928, 0.01028417982161045, 0.2958429455757141], [0.0025607829447835684, 0.0010256258537992835, 0.0012142137857154012, 0.0905708447098732, 0.2220073789358139, 0.24546314775943756, 0.0022201782558113337, 0.18808981776237488], [0.002050001872703433, 0.00045076539390720427, 0.0005245659849606454, 0.03005126491189003, 0.3267979025840759, 0.15003377199172974, 0.001569760381244123, 0.21744513511657715], [0.03622182458639145, 0.07857640832662582, 0.014126379042863846, 0.07771772146224976, 0.03430793434381485, 0.08873587846755981, 0.057713620364665985, 0.17210865020751953], [0.013680282048881054, 0.006776736583560705, 0.008982094004750252, 0.00785152055323124, 0.0042439838871359825, 0.005718466360121965, 0.01076946035027504, 0.4165489673614502]], [[0.08706522732973099, 0.005857251584529877, 0.007412291131913662, 0.06019121780991554, 0.03752140700817108, 0.0341554693877697, 0.00837808009237051, 0.2983419597148895], [0.03666605427861214, 0.06804057955741882, 0.00826227106153965, 0.0231171865016222, 0.020987797528505325, 0.024092931300401688, 0.054810263216495514, 0.2842743992805481], [0.09762229025363922, 0.01705210469663143, 0.016025260090827942, 0.07783763855695724, 0.06277673691511154, 0.028893250972032547, 0.011506946757435799, 0.22368192672729492], [0.015304689295589924, 0.045718900859355927, 0.008876322768628597, 0.01618959754705429, 0.013929045759141445, 0.010676085948944092, 0.031918950378894806, 0.3216131329536438], [0.027151932939887047, 0.11788447201251984, 0.01176005881279707, 0.03727806359529495, 0.04098964482545853, 0.04142532870173454, 0.05369703471660614, 0.21745195984840393], [0.014422743581235409, 0.0760827511548996, 0.01532750390470028, 0.03502415493130684, 0.0332510881125927, 0.021763911470770836, 0.031127475202083588, 0.3029654622077942], [0.010158421471714973, 0.04824785143136978, 0.006508584134280682, 0.020357416942715645, 0.02361544407904148, 0.01762244664132595, 0.07775110751390457, 0.23928780853748322], [0.003327441867440939, 0.0041311620734632015, 0.0015518590807914734, 0.001283178455196321, 0.0014886875869706273, 0.0021921079605817795, 0.006300783716142178, 0.4808203876018524]], [[0.3981427848339081, 0.0001430990669177845, 1.0313862730981782e-05, 1.5928937500575557e-05, 2.43582599068759e-06, 1.9739929484785534e-05, 0.00017232833488378674, 0.002858119085431099], [4.224324129609158e-06, 0.1874210089445114, 6.41541078039154e-08, 3.8901990251360985e-07, 1.5369962511613267e-06, 2.8495185233623488e-06, 2.452236003591679e-05, 0.0005868630832992494], [1.1280466424068436e-05, 2.5483777790213935e-06, 0.5673357844352722, 0.0001800861646188423, 2.9578353860415518e-05, 2.65734543063445e-05, 2.604628389235586e-05, 0.0037079621106386185], [4.628387978300452e-05, 4.282952068024315e-05, 0.000389767752494663, 0.06887504458427429, 0.000504101684782654, 0.00041015748865902424, 6.764943100279197e-05, 0.004012505989521742], [4.559553417493589e-06, 5.656806752085686e-05, 1.345186319667846e-05, 0.00010998273501172662, 0.557847261428833, 0.050550296902656555, 0.0006638870690949261, 0.0035178351681679487], [7.33960132492939e-06, 2.791397855617106e-05, 4.250570782460272e-06, 2.4608452804386616e-05, 0.033816851675510406, 0.7830237746238708, 0.0002724375226534903, 0.001513192430138588], [5.5021519074216485e-05, 0.00016640385729260743, 1.107062962546479e-05, 1.499476820754353e-05, 8.318276377394795e-05, 0.00012007253826595843, 0.4437243938446045, 0.007920338772237301], [0.065454863011837, 0.027140682563185692, 0.009864493273198605, 0.019179660826921463, 0.010259775444865227, 0.022666333243250847, 0.040682610124349594, 0.22223085165023804]], [[0.44246822595596313, 0.02071460522711277, 0.0010239272378385067, 0.008562631905078888, 0.01139331515878439, 0.014961163513362408, 0.04564831033349037, 0.07636153697967529], [0.21883663535118103, 0.13909012079238892, 0.003814751747995615, 0.006077473517507315, 0.012380351312458515, 0.00395074812695384, 0.09228211641311646, 0.06433528661727905], [0.1234544888138771, 0.023582691326737404, 0.003017864190042019, 0.0017162382137030363, 0.009371913969516754, 0.016971569508314133, 0.02475302293896675, 0.33891159296035767], [0.06546493619680405, 0.007070925552397966, 0.003873503766953945, 0.005213557276874781, 0.0038225280586630106, 0.006586284842342138, 0.001729118637740612, 0.3859153389930725], [0.07567020505666733, 0.023418530821800232, 0.008936692960560322, 0.01541205495595932, 0.01106566283851862, 0.031168535351753235, 0.029420187696814537, 0.24179214239120483], [0.03410377725958824, 0.01032322645187378, 0.008739592507481575, 0.018789246678352356, 0.020711369812488556, 0.03466292843222618, 0.01791529357433319, 0.361691951751709], [0.4481610655784607, 0.024148615077137947, 0.0030854649376124144, 0.008612181060016155, 0.023680653423070908, 0.026031577959656715, 0.08909101039171219, 0.047229815274477005], [0.002610776573419571, 0.002038220874965191, 0.0007411545375362039, 0.0006175400922074914, 0.0008927881135605276, 0.0007382421754300594, 0.0017119499389082193, 0.4869885742664337]], [[0.007103921379894018, 0.2491903156042099, 0.008471415378153324, 0.013476744294166565, 0.015292834490537643, 0.24435527622699738, 0.08526758849620819, 0.14685308933258057], [0.6358482241630554, 0.04185083135962486, 0.0064671714790165424, 0.007325771264731884, 0.012678802944719791, 0.021403003484010696, 0.03589853271842003, 0.08766209334135056], [0.002192141953855753, 0.002111768117174506, 0.00011826671834569424, 0.9365773797035217, 0.004679031670093536, 0.014322083443403244, 0.0025440813042223454, 0.011778962798416615], [0.00014143298903945833, 0.0012957515427842736, 0.9128997921943665, 0.00019785920449066907, 0.0010000524343922734, 0.006657343823462725, 0.001121798879466951, 0.031465109437704086], [7.243487925734371e-05, 0.0020801685750484467, 0.002515074796974659, 0.013138941489160061, 0.013515998609364033, 0.8798472285270691, 0.017791997641324997, 0.024965189397335052], [0.0014993351651355624, 0.0031883211340755224, 0.005818007048219442, 0.009238418191671371, 0.8628991842269897, 0.0052667162381112576, 0.019341936334967613, 0.03611455112695694], [0.027571791782975197, 0.058400530368089676, 0.059598151594400406, 0.030119767412543297, 0.1764165610074997, 0.40899723768234253, 0.054463885724544525, 0.06441550701856613], [0.050131164491176605, 0.05698935687541962, 0.017769869416952133, 0.015925999730825424, 0.012618206441402435, 0.02194317989051342, 0.0541968047618866, 0.2503035366535187]], [[0.02373965084552765, 0.01259586215019226, 0.002859694417566061, 0.006989844609051943, 0.005218239035457373, 0.00419235322624445, 0.010987569577991962, 0.4466913938522339], [0.0029547137673944235, 0.23792485892772675, 0.0003149133117403835, 0.0002752009895630181, 0.0005135594983585179, 0.0002646218636073172, 0.0051895552314817905, 0.06916012614965439], [0.0013387096114456654, 0.012678942643105984, 0.07251113653182983, 0.021529830992221832, 0.0016468254616484046, 0.0026867168489843607, 0.0015883127925917506, 0.43407773971557617], [0.0008950172923505306, 0.003501642495393753, 0.008178569376468658, 0.07352893799543381, 0.0016593364998698235, 0.0033335292246192694, 0.0014292368432506919, 0.4350525140762329], [0.09490353614091873, 0.11428601294755936, 0.018736863508820534, 0.022037819027900696, 0.06502929329872131, 0.10713031888008118, 0.007348590064793825, 0.22831745445728302], [0.028256116434931755, 0.0492672324180603, 0.01164205651730299, 0.026400674134492874, 0.030927538871765137, 0.0554853193461895, 0.008229000493884087, 0.3638533353805542], [0.2152269333600998, 0.37943756580352783, 0.03995276242494583, 0.028697805479168892, 0.017712391912937164, 0.012051386758685112, 0.041439756751060486, 0.03859568387269974], [0.003981856629252434, 0.0023538446985185146, 0.0009857633849605918, 0.0034294750075787306, 0.0015889498172327876, 0.0025830105878412724, 0.001771243056282401, 0.47914549708366394]], [[0.04260949417948723, 0.015275034122169018, 0.03099219501018524, 0.007589003536850214, 0.004136906936764717, 0.003975234925746918, 0.1305551528930664, 0.3420291244983673], [0.05159322917461395, 0.0959496796131134, 0.01279450487345457, 0.10031656175851822, 0.008924460038542747, 0.030730612576007843, 0.07733865827322006, 0.2233208864927292], [0.04660920053720474, 0.007483022287487984, 0.01469020638614893, 0.013795307837426662, 0.006084782537072897, 0.008098689839243889, 0.06909304112195969, 0.3730418384075165], [0.011517291888594627, 0.014738879166543484, 0.01524115726351738, 0.0059837885200977325, 0.006411973387002945, 0.011587921530008316, 0.02359296754002571, 0.41024717688560486], [0.040411461144685745, 0.032732728868722916, 0.009501599706709385, 0.007069308776408434, 0.001155844540335238, 0.0020612222142517567, 0.051742397248744965, 0.3686145544052124], [0.015711462125182152, 0.011430365033447742, 0.009247093461453915, 0.009218628518283367, 0.0039481609128415585, 0.002190220169723034, 0.01950480043888092, 0.4292961359024048], [0.052017226815223694, 0.10487690567970276, 0.01837259903550148, 0.01100108027458191, 0.041804101318120956, 0.03691233694553375, 0.13987357914447784, 0.23217403888702393], [0.006697922945022583, 0.004753866232931614, 0.0028129389975219965, 0.0038341365288943052, 0.010505229234695435, 0.008085634559392929, 0.005789699032902718, 0.4507160782814026]]], [[[0.01935252547264099, 0.006374059244990349, 0.0004613842465914786, 6.5750164139899425e-06, 5.526042059500469e-06, 0.00011230498785153031, 0.0007515779579989612, 0.46400120854377747], [0.8638006448745728, 0.00991840846836567, 0.0027865043375641108, 0.0007232613861560822, 0.00013436703011393547, 0.00023054922348819673, 0.0007160796667449176, 0.05915839597582817], [0.010656886734068394, 0.13909605145454407, 0.010132971219718456, 0.022762980312108994, 0.0021747977007180452, 0.00034168214187957346, 9.013150702230632e-05, 0.3922111988067627], [0.0004900486092083156, 0.013175411149859428, 0.8559287190437317, 0.0009163409704342484, 0.0008550789207220078, 8.614702528575435e-05, 1.536821582703851e-05, 0.06286101788282394], [0.00018278085917700082, 0.007353080902248621, 0.02059979736804962, 0.08663886040449142, 0.021290861070156097, 0.01294338796287775, 0.0006382240680977702, 0.41589227318763733], [9.130642865784466e-05, 0.005906779319047928, 0.012902558781206608, 0.034313399344682693, 0.11630579084157944, 0.010384070686995983, 0.001335323671810329, 0.4082588851451874], [0.0001967396237887442, 0.00044995578355155885, 0.0003799397964030504, 0.005566427018493414, 0.1335822492837906, 0.6433798670768738, 0.013692405074834824, 0.10143276304006577], [0.007598317228257656, 0.01184071134775877, 0.00819436740130186, 0.0051026432774960995, 0.008000517264008522, 0.0063572959043085575, 0.02648719772696495, 0.4154805541038513]], [[0.11719891428947449, 0.011757936328649521, 0.006067921407520771, 0.004328660201281309, 0.0011421196395531297, 0.0036594390403479338, 0.013909421861171722, 0.3854497969150543], [0.08464206010103226, 0.044704537838697433, 0.005826888605952263, 0.0024582785554230213, 0.0012011387152597308, 0.0038834293372929096, 0.015836486592888832, 0.3134428560733795], [0.6618878245353699, 0.04546627029776573, 0.003613860346376896, 0.012015326879918575, 0.009610079228878021, 0.022729383781552315, 0.08204647153615952, 0.055710915476083755], [0.36009350419044495, 0.05813515931367874, 0.02671346440911293, 0.016857435926795006, 0.023078473284840584, 0.02597385086119175, 0.12283898144960403, 0.12618137896060944], [0.27864304184913635, 0.07962139695882797, 0.08276437222957611, 0.09034915268421173, 0.058843646198511124, 0.04596675559878349, 0.1311248540878296, 0.075166717171669], [0.36173009872436523, 0.06562229990959167, 0.029381074011325836, 0.0829448252916336, 0.04596933349967003, 0.01576196774840355, 0.16803304851055145, 0.08385728299617767], [0.4644696116447449, 0.15407297015190125, 0.045852839946746826, 0.03271123021841049, 0.015708668157458305, 0.015105503611266613, 0.06326187402009964, 0.05865337327122688], [0.012330247089266777, 0.02403009869158268, 0.0037268218584358692, 0.004980555735528469, 0.0021687231492251158, 0.004302582237869501, 0.012045906856656075, 0.43480512499809265]], [[0.15460164844989777, 0.011832552962005138, 0.28343135118484497, 0.018459884449839592, 0.011896039359271526, 0.03203675523400307, 0.017319830134510994, 0.19841118156909943], [0.08351188153028488, 0.020119065418839455, 0.09925579279661179, 0.05405725538730621, 0.05946948006749153, 0.07493478059768677, 0.45395129919052124, 0.054100628942251205], [0.32311341166496277, 0.007008376065641642, 0.02277667261660099, 0.020729457959532738, 0.06919568032026291, 0.02322600781917572, 0.2209407538175583, 0.10881854593753815], [0.1415555477142334, 0.004987755790352821, 0.05386420339345932, 0.017745163291692734, 0.13775202631950378, 0.2205449342727661, 0.2650304436683655, 0.059595633298158646], [0.09943632781505585, 0.01668786071240902, 0.12166517972946167, 0.20644888281822205, 0.05490894243121147, 0.05007820576429367, 0.17126207053661346, 0.12814268469810486], [0.05816950649023056, 0.006413677707314491, 0.2604367733001709, 0.24804487824440002, 0.05097700655460358, 0.021885981783270836, 0.2107435017824173, 0.06462740898132324], [0.1780526489019394, 0.009435616433620453, 0.35736867785453796, 0.2140316516160965, 0.027324117720127106, 0.01903369463980198, 0.025390230119228363, 0.07463827729225159], [0.011634405702352524, 0.00648960517719388, 0.012840671464800835, 0.006777993403375149, 0.0022574723698198795, 0.003014270681887865, 0.008313097059726715, 0.445934921503067]], [[0.009957455098628998, 0.0038648745976388454, 0.0032010285649448633, 0.001637027831748128, 0.0014145619934424758, 0.0028786929324269295, 0.014316998422145844, 0.3600457012653351], [0.030063573271036148, 0.1210775226354599, 0.0033524015452712774, 0.0035345377400517464, 0.0009526506764814258, 0.0023503759875893593, 0.046079669147729874, 0.11493832617998123], [0.008527032099664211, 0.014413979835808277, 0.011482027359306812, 0.002143146703019738, 0.0029713260009884834, 0.016046395525336266, 0.015013432130217552, 0.26973533630371094], [0.009942014701664448, 0.013681070879101753, 0.0074101281352341175, 0.005489821545779705, 0.008449274115264416, 0.020850056782364845, 0.013680189847946167, 0.3561550974845886], [0.004590584896504879, 0.01664614863693714, 0.0005911394255235791, 0.0026736888103187084, 0.02962396666407585, 0.056544847786426544, 0.003622097196057439, 0.3155851364135742], [0.0036843710113316774, 0.01055007055401802, 0.0005664242198690772, 0.0028834156692028046, 0.06952077150344849, 0.061710719019174576, 0.0033693057484924793, 0.271271675825119], [0.02156408131122589, 0.009758148342370987, 0.0064997440204024315, 0.0009732784237712622, 0.003025449812412262, 0.002336277160793543, 0.07398392260074615, 0.12655596435070038], [0.012165863066911697, 0.005988001823425293, 0.007207722403109074, 0.006098099984228611, 0.00557590089738369, 0.012698270380496979, 0.01672135479748249, 0.41822412610054016]], [[0.06490994989871979, 0.040692925453186035, 0.0004655596276279539, 0.0004783187177963555, 0.0004585811693686992, 0.0009283209801651537, 0.026849865913391113, 0.36087992787361145], [0.357169508934021, 0.0604865588247776, 0.0024894257076084614, 0.0031617896165698767, 0.002296684542670846, 0.006000869441777468, 0.026059865951538086, 0.2280031442642212], [0.07577414065599442, 0.08262647688388824, 0.003469713730737567, 0.022445926442742348, 0.00809937808662653, 0.009913328103721142, 0.00890932697802782, 0.38159558176994324], [0.021489791572093964, 0.015058313496410847, 0.560596227645874, 0.0035930301528424025, 0.02342190593481064, 0.0031429133377969265, 0.004967023618519306, 0.17796869575977325], [0.019182046875357628, 0.04777476191520691, 0.035996802151203156, 0.05052071809768677, 0.019790317863225937, 0.01855073869228363, 0.018881184980273247, 0.3850640654563904], [0.016077794134616852, 0.011704719625413418, 0.16532965004444122, 0.032487887889146805, 0.20103679597377777, 0.009229163639247417, 0.023146359249949455, 0.2599335312843323], [0.018887383863329887, 0.0353982113301754, 0.012096144258975983, 0.06347209960222244, 0.1776033192873001, 0.08369502425193787, 0.05194621533155441, 0.26724523305892944], [0.02831931598484516, 0.012103920802474022, 0.0036694647278636694, 0.008654714561998844, 0.0076136114075779915, 0.008814017288386822, 0.055927813053131104, 0.35503455996513367]], [[0.011428967118263245, 0.006546787917613983, 0.0014884433476254344, 0.0020279143936932087, 0.002331080846488476, 0.006528398022055626, 0.010533617809414864, 0.3929043114185333], [0.011473086662590504, 0.027547687292099, 0.002986195031553507, 0.001712881843559444, 0.0010780958691611886, 0.005659767892211676, 0.015391579829156399, 0.256145715713501], [0.03468139097094536, 0.01638837531208992, 0.033687639981508255, 0.010603289119899273, 0.0037281420081853867, 0.010846403427422047, 0.0954248234629631, 0.35347044467926025], [0.02230188064277172, 0.010080968961119652, 0.018977761268615723, 0.01645754650235176, 0.005641183815896511, 0.011253847740590572, 0.06706871092319489, 0.3635134696960449], [0.00479470007121563, 0.0064110723324120045, 0.0035229807253926992, 0.004907379858195782, 0.008322231471538544, 0.02414313517510891, 0.04080833122134209, 0.37733960151672363], [0.005483775865286589, 0.003932313993573189, 0.002706279279664159, 0.00404629111289978, 0.007473548408597708, 0.014809651300311089, 0.032824985682964325, 0.3997621536254883], [0.01862853765487671, 0.022012902423739433, 0.006029351614415646, 0.004989866632968187, 0.0017491532489657402, 0.009248408488929272, 0.17184071242809296, 0.2794516682624817], [0.010842311196029186, 0.008559994399547577, 0.00946419220417738, 0.005121259950101376, 0.0051180520094931126, 0.014033717103302479, 0.02873361110687256, 0.4258183240890503]], [[0.042416349053382874, 0.05656822398304939, 0.05021902173757553, 0.016728203743696213, 0.006905470043420792, 0.005496591329574585, 0.09490811824798584, 0.32159021496772766], [0.036283187568187714, 0.020287038758397102, 0.012836650013923645, 0.012336392886936665, 0.0054787821136415005, 0.007587513420730829, 0.030229957774281502, 0.1475067138671875], [0.05397535115480423, 0.0461876317858696, 0.022840747609734535, 0.03349493443965912, 0.031100351363420486, 0.09129539132118225, 0.041359156370162964, 0.3286501467227936], [0.018506208434700966, 0.01627606712281704, 0.11237353086471558, 0.009774484671652317, 0.036311376839876175, 0.07095467299222946, 0.022027291357517242, 0.34349051117897034], [0.013963821344077587, 0.017246467992663383, 0.029554596170783043, 0.04664463549852371, 0.02377084083855152, 0.06745195388793945, 0.02254267781972885, 0.37886160612106323], [0.019110489636659622, 0.07317928224802017, 0.1593218594789505, 0.05956564098596573, 0.08013103157281876, 0.01315735187381506, 0.010142222978174686, 0.2829848527908325], [0.08036120235919952, 0.17118582129478455, 0.19206595420837402, 0.07721170783042908, 0.10635712742805481, 0.05623708665370941, 0.030059166252613068, 0.12552385032176971], [0.005521963816136122, 0.013870655559003353, 0.005608419422060251, 0.0040552932769060135, 0.002646612236276269, 0.002938727615401149, 0.009850203059613705, 0.4547234773635864]], [[0.022182554006576538, 0.013732722960412502, 0.006271897349506617, 0.003500771475955844, 0.001067954464815557, 0.004510459024459124, 0.03708958998322487, 0.4343414008617401], [0.18227675557136536, 0.008268915116786957, 0.016725212335586548, 0.024091625586152077, 0.0025451574474573135, 0.009003991261124611, 0.03464454039931297, 0.35148975253105164], [0.03911096602678299, 0.014971334487199783, 0.012246373109519482, 0.008071092888712883, 0.003136136569082737, 0.0019348402274772525, 0.013914392329752445, 0.4396437704563141], [0.05455898120999336, 0.005699012894183397, 0.026465043425559998, 0.03013758733868599, 0.017765892669558525, 0.028048092499375343, 0.015839852392673492, 0.39744284749031067], [0.01942555606365204, 0.004931693430989981, 0.00954618863761425, 0.010857670567929745, 0.01430565770715475, 0.018236681818962097, 0.026817047968506813, 0.4389609694480896], [0.026672488078475, 0.030713923275470734, 0.013119624927639961, 0.04527655616402626, 0.1075688898563385, 0.020399028435349464, 0.02217903360724449, 0.35583603382110596], [0.05407317355275154, 0.008293156512081623, 0.06778424978256226, 0.031225314363837242, 0.17754624783992767, 0.09328951686620712, 0.04399356245994568, 0.25789394974708557], [0.010436697863042355, 0.01091319415718317, 0.0054810200817883015, 0.006836700718849897, 0.005600787233561277, 0.009205058217048645, 0.024293290451169014, 0.4165331721305847]], [[0.05131588131189346, 0.09697055071592331, 0.08580992370843887, 0.17250189185142517, 0.15189795196056366, 0.14122340083122253, 0.23551951348781586, 0.020680420100688934], [0.06104925274848938, 0.03216121718287468, 0.04262640327215195, 0.10333573073148727, 0.16931265592575073, 0.2219616025686264, 0.1854526549577713, 0.07416332513093948], [0.0440375916659832, 0.09921767562627792, 0.019260209053754807, 0.061059679836034775, 0.10695835202932358, 0.23787152767181396, 0.08528541773557663, 0.14849716424942017], [0.05204802379012108, 0.08926312625408173, 0.03960205614566803, 0.0287737138569355, 0.12901489436626434, 0.17477378249168396, 0.08269420266151428, 0.17613764107227325], [0.04066403582692146, 0.09391944855451584, 0.05924486741423607, 0.05047112703323364, 0.007072144653648138, 0.01549836341291666, 0.03072803094983101, 0.3277694284915924], [0.04040796682238579, 0.09281772375106812, 0.038084808737039566, 0.03996624797582626, 0.01620369590818882, 0.019190222024917603, 0.01750001683831215, 0.3563762903213501], [0.058753978461027145, 0.10870809108018875, 0.0813615545630455, 0.14224953949451447, 0.15841716527938843, 0.14703968167304993, 0.10503080487251282, 0.07702938467264175], [0.005695832893252373, 0.005758575163781643, 0.003869175212457776, 0.0022632593754678965, 0.003518057521432638, 0.005080585367977619, 0.004129423294216394, 0.46384739875793457]], [[0.01795988157391548, 0.009873723611235619, 0.005708467215299606, 0.011519615538418293, 0.05709651857614517, 0.060107432305812836, 0.6019048094749451, 0.10806416720151901], [0.015430368483066559, 0.03214710205793381, 0.008477655239403248, 0.006266812793910503, 0.10698418319225311, 0.06688863039016724, 0.5240752100944519, 0.11025447398424149], [0.015821443870663643, 0.0031072362326085567, 0.003026719903573394, 0.021945657208561897, 0.10184614360332489, 0.08656800538301468, 0.1685444712638855, 0.29148489236831665], [0.01016230508685112, 0.001222248189151287, 0.015222378075122833, 0.02500336244702339, 0.02272692508995533, 0.04186059907078743, 0.06124873831868172, 0.3938107192516327], [0.0065319109708070755, 0.003817638847976923, 0.0015745162963867188, 0.01423345785588026, 0.032373636960983276, 0.06914874166250229, 0.03475236892700195, 0.40999534726142883], [0.013429762795567513, 0.00517049478366971, 0.0032699573785066605, 0.0110192084684968, 0.023920413106679916, 0.03501049801707268, 0.03921378776431084, 0.43000227212905884], [0.019486485049128532, 0.032194584608078, 0.011964375153183937, 0.010498319752514362, 0.08868256956338882, 0.04845643416047096, 0.13580313324928284, 0.32051917910575867], [0.009551836177706718, 0.013386709615588188, 0.005114047788083553, 0.004195861052721739, 0.0107945641502738, 0.005213086027652025, 0.010380597785115242, 0.4446457624435425]], [[0.11342033743858337, 0.03470993787050247, 0.012133374810218811, 0.007591197732836008, 0.012843171134591103, 0.01481074932962656, 0.15937325358390808, 0.3016361594200134], [0.062079593539237976, 0.09295963495969772, 0.03584771230816841, 0.02228175662457943, 0.04181826859712601, 0.03472179174423218, 0.30199241638183594, 0.14671552181243896], [0.09001118689775467, 0.03241894394159317, 0.023855891078710556, 0.028070909902453423, 0.013477046974003315, 0.02820405922830105, 0.06700853258371353, 0.33851683139801025], [0.03730939328670502, 0.017716044560074806, 0.021334825083613396, 0.0055310423485934734, 0.009275105781853199, 0.02409231849014759, 0.055510055273771286, 0.384671688079834], [0.07751960307359695, 0.06560271233320236, 0.05746680870652199, 0.06440310925245285, 0.016676539555191994, 0.06264568120241165, 0.12247893214225769, 0.22977489233016968], [0.021033572033047676, 0.02933582291007042, 0.035342998802661896, 0.03934631496667862, 0.031098520383238792, 0.06976334750652313, 0.12475145608186722, 0.296485036611557], [0.12257896363735199, 0.1416686326265335, 0.022098811343312263, 0.031208565458655357, 0.024952851235866547, 0.023615265265107155, 0.13706472516059875, 0.20556896924972534], [0.002148671308532357, 0.0025937519967556, 0.0020521855913102627, 0.002333240583539009, 0.003032693872228265, 0.003999465610831976, 0.008252416737377644, 0.4701816439628601]], [[0.12617836892604828, 0.2800847589969635, 0.0474822111427784, 0.01788557693362236, 0.010361931286752224, 0.0063131884671747684, 0.016214484348893166, 0.2461508959531784], [0.022699471563100815, 0.02205655351281166, 0.06332850456237793, 0.02990773320198059, 0.030130116268992424, 0.017780542373657227, 0.03620373085141182, 0.3879714608192444], [0.006391515955328941, 0.027016859501600266, 0.01094605028629303, 0.459575355052948, 0.03604191169142723, 0.059415191411972046, 0.04751691222190857, 0.1762349158525467], [0.005442818161100149, 0.012507056817412376, 0.02179448865354061, 0.0248956810683012, 0.09579593688249588, 0.15712997317314148, 0.132270947098732, 0.27451324462890625], [0.0020931996405124664, 0.005377753172069788, 0.005055051762610674, 0.010699550621211529, 0.026457147672772408, 0.07186821103096008, 0.36919134855270386, 0.25356152653694153], [0.003515776712447405, 0.005910769104957581, 0.0023301499895751476, 0.0009229655261151493, 0.006790416315197945, 0.005160048604011536, 0.2907657325267792, 0.3398687541484833], [0.0062804329209029675, 0.0037998200859874487, 0.0007399527239613235, 0.00010288133489666507, 0.0009065078338608146, 0.0009333392954431474, 0.00892754178494215, 0.5030752420425415], [0.032261256128549576, 0.02376566268503666, 0.00534425862133503, 0.005090110935270786, 0.003414693521335721, 0.005372276995331049, 0.027864601463079453, 0.39159271121025085]]], [[[4.860562512476463e-06, 0.9999747276306152, 1.3033870800427394e-06, 2.6354447513199375e-09, 3.655958313864005e-10, 1.089804288478824e-11, 2.0741530021295418e-11, 9.709798177937046e-06], [8.059894753387198e-05, 0.005084274336695671, 0.927973210811615, 0.048550404608249664, 0.0013918058248236775, 2.7358555598766543e-06, 3.4393863757031795e-07, 0.008572385646402836], [1.5901915201288475e-11, 9.64218713761511e-08, 3.8658194512208865e-07, 0.9999967813491821, 2.142684934369754e-06, 5.351345748749736e-07, 2.2377740285794978e-11, 2.9111786759017377e-08], [1.8614059182908704e-09, 5.438069479168917e-07, 0.0009472542442381382, 1.4865820958220866e-05, 0.973537802696228, 0.024571465328335762, 0.0005725330556742847, 0.00018050771905109286], [1.1463789917343092e-08, 2.4626398698046614e-08, 2.8149049740022747e-06, 0.0001039750495692715, 0.00037147573311813176, 0.991554319858551, 0.0016060750931501389, 0.0031711491756141186], [2.0744550965900999e-07, 7.683606639830032e-08, 2.945804988829792e-10, 1.979439012700368e-08, 4.18948802689556e-05, 0.0003109700046479702, 0.989566445350647, 0.005074354819953442], [1.9707320007000817e-06, 7.449017402905156e-09, 1.3098072973449781e-11, 1.2642247105675974e-14, 5.824303817014709e-10, 2.3212118893667366e-09, 0.0003028100181836635, 0.511674165725708], [0.002010409953072667, 0.0032622325234115124, 0.0006183038931339979, 2.003933332161978e-05, 0.00034324248554185033, 0.0003153206780552864, 0.0011667012004181743, 0.4820835590362549]], [[0.06279492378234863, 0.04000402241945267, 0.10017304122447968, 0.03889627754688263, 0.10627750307321548, 0.06585460156202316, 0.060199279338121414, 0.25838688015937805], [0.019610490649938583, 0.014176217839121819, 0.020950602367520332, 0.016732197254896164, 0.021587757393717766, 0.020667394623160362, 0.03181454911828041, 0.426919549703598], [0.0037796704564243555, 0.005220563150942326, 0.005452694837003946, 0.02280672825872898, 0.031833767890930176, 0.04400983080267906, 0.009591441601514816, 0.43670135736465454], [0.005022261757403612, 0.012043071910738945, 0.004549701232463121, 0.006130059715360403, 0.022899653762578964, 0.06324814260005951, 0.006689904723316431, 0.4392678737640381], [0.011492528952658176, 0.005856774281710386, 0.0018466287292540073, 0.0012969066156074405, 0.007690042722970247, 0.017925282940268517, 0.019632447510957718, 0.46590057015419006], [0.005997870117425919, 0.003884568577632308, 0.0007923234952613711, 0.000982806202955544, 0.005837774369865656, 0.008305312134325504, 0.014881394803524017, 0.4795967638492584], [0.009864411316812038, 0.009711635299026966, 0.002187425969168544, 0.0009307116852141917, 0.006786013953387737, 0.010836858302354813, 0.011738604865968227, 0.4711337387561798], [0.012794177047908306, 0.007879385724663734, 0.003156723454594612, 0.0021648616530001163, 0.004040877800434828, 0.0035543092526495457, 0.011032868176698685, 0.4481678307056427]], [[0.016668910160660744, 0.00570331746712327, 0.004899709019809961, 8.922466076910496e-05, 0.00045920515549369156, 0.00039906823076307774, 0.003689597360789776, 0.4833153784275055], [0.056232329457998276, 0.00946682970970869, 0.01435126457363367, 0.04634745046496391, 0.0021499686408787966, 0.004345921333879232, 0.07809703052043915, 0.3897174894809723], [0.0023388175759464502, 0.0013290435308590531, 0.016598215326666832, 0.1351580023765564, 0.026289353147149086, 0.04276518523693085, 0.014793241396546364, 0.37693995237350464], [0.005815370008349419, 0.0012918816646561027, 0.01268912572413683, 0.0014524844009429216, 0.0027702704537659883, 0.0037103029899299145, 0.004510845988988876, 0.4832253158092499], [0.0015657480107620358, 0.0008177456329576671, 0.027135416865348816, 0.007639724295586348, 0.03391946479678154, 0.14812976121902466, 0.17753243446350098, 0.3032402992248535], [0.0012514317641034722, 0.007958325557410717, 0.011023764498531818, 0.0045568253844976425, 0.028736360371112823, 0.01900426484644413, 0.053583186119794846, 0.43757835030555725], [0.0015171103877946734, 0.0034793203230947256, 0.000799223140347749, 0.0002524151641409844, 0.0015764248091727495, 0.0018667629919946194, 0.03574001044034958, 0.4793967604637146], [0.009232072159647942, 0.01706676557660103, 0.008602065965533257, 0.0020937330555170774, 0.005293664988130331, 0.005194936413317919, 0.01352635957300663, 0.42836514115333557]], [[0.003110808553174138, 0.017023121938109398, 0.0004895227611996233, 0.00017146248137578368, 4.922522930428386e-05, 8.410107693634927e-05, 0.0006245755939744413, 0.48548176884651184], [0.010795599780976772, 0.021730123087763786, 0.004094819072633982, 0.0009392796782776713, 0.0022257231175899506, 0.0014261604519560933, 0.002192050451412797, 0.4743787348270416], [0.0009293457260355353, 0.02703288197517395, 0.0015253170859068632, 0.005303015001118183, 0.001179198152385652, 0.006391364149749279, 0.0037080796901136637, 0.47157853841781616], [0.0004453066794667393, 0.010177896358072758, 0.1344641149044037, 0.000603098887950182, 0.00024383763957303017, 0.0008044102578423917, 0.0010347836650907993, 0.4236568212509155], [0.0009151546400971711, 0.002930409973487258, 0.0016912224236875772, 0.0021614073775708675, 0.005406985059380531, 0.039821773767471313, 0.006688544526696205, 0.46812260150909424], [0.004681902006268501, 0.01112336665391922, 0.00816743541508913, 0.01294596679508686, 0.1693142205476761, 0.035054560750722885, 0.007097503636032343, 0.3735440671443939], [0.0012756776995956898, 0.012313233688473701, 0.0016621029935777187, 0.001625137054361403, 0.004917402286082506, 0.004686739295721054, 0.008417991921305656, 0.4793674945831299], [0.007122380658984184, 0.015048257075250149, 0.006418908480554819, 0.0030963211320340633, 0.0031262042466551065, 0.003989494405686855, 0.012708148919045925, 0.4346141219139099]], [[0.0212840735912323, 0.004951787181198597, 0.0022337117698043585, 0.0027306077536195517, 0.0016563142416998744, 0.0032291095703840256, 0.007374764885753393, 0.4733101725578308], [0.088047556579113, 0.017698992043733597, 0.010936638340353966, 0.004577295854687691, 0.001366672688163817, 0.0033455106895416975, 0.004470459185540676, 0.4317472279071808], [0.020317096263170242, 0.020485615357756615, 0.01391658652573824, 0.024454424157738686, 0.0032055145129561424, 0.0021444011945277452, 0.0020901234820485115, 0.45504751801490784], [0.007875530049204826, 0.03794340789318085, 0.05507757142186165, 0.010426072403788567, 0.0008189357467927039, 0.0007481228676624596, 0.0004371738468762487, 0.44212791323661804], [0.010776503942906857, 0.010097411461174488, 0.04584597423672676, 0.046717602759599686, 0.0036445041187107563, 0.0031968147959560156, 0.0014907451113685966, 0.44061407446861267], [0.005539360921829939, 0.014459156431257725, 0.09316504746675491, 0.12162618339061737, 0.025408687070012093, 0.006769154686480761, 0.0020449822768568993, 0.36594003438949585], [0.004883582703769207, 0.003575598355382681, 0.01229837816208601, 0.021678829565644264, 0.10629958659410477, 0.032782260328531265, 0.006704023573547602, 0.4036415219306946], [0.009498207829892635, 0.016651909798383713, 0.007432642858475447, 0.006250835955142975, 0.004672306589782238, 0.007284434977918863, 0.014476056210696697, 0.43215832114219666]], [[0.05346051976084709, 0.11342038214206696, 0.048529189079999924, 0.055899109691381454, 0.058765824884176254, 0.0325225405395031, 0.3756310045719147, 0.12626351416110992], [0.014156127348542213, 0.020841257646679878, 0.03300347179174423, 0.08467552065849304, 0.15145649015903473, 0.290687620639801, 0.3314812183380127, 0.03379521891474724], [0.006245264783501625, 0.015628715977072716, 0.0026149589102715254, 0.009740754030644894, 0.1631568819284439, 0.1779329776763916, 0.0849837064743042, 0.2707015573978424], [0.01167572196573019, 0.01795845851302147, 0.018712041899561882, 0.010940677486360073, 0.1811027228832245, 0.2549971342086792, 0.021172286942601204, 0.2384513020515442], [0.02043387107551098, 0.053980227559804916, 0.02085098624229431, 0.14328381419181824, 0.05951334536075592, 0.044559378176927567, 0.03185036778450012, 0.30649808049201965], [0.016495339572429657, 0.027204833924770355, 0.040732186287641525, 0.1415494680404663, 0.1156366840004921, 0.04778257757425308, 0.014617674052715302, 0.2949638068675995], [0.025571072474122047, 0.03551124036312103, 0.08946865797042847, 0.08170028775930405, 0.204983189702034, 0.0748935267329216, 0.03519828990101814, 0.2188047468662262], [0.0094976257532835, 0.005646751262247562, 0.002510426100343466, 0.0020773070864379406, 0.005139967426657677, 0.003092461032792926, 0.006879243068397045, 0.463151752948761]], [[0.20979785919189453, 0.060308873653411865, 0.06341985613107681, 0.024848708882927895, 0.008243841119110584, 0.004993164911866188, 0.1026022806763649, 0.03505522385239601], [0.009839272126555443, 0.4156748950481415, 0.009369410574436188, 0.0035524782724678516, 0.004436532035470009, 0.008466809056699276, 0.006887361407279968, 0.09701766073703766], [0.03333592787384987, 0.06743645668029785, 0.13742727041244507, 0.027865950018167496, 0.0034239927772432566, 0.010055961087346077, 0.06323617696762085, 0.07542363554239273], [0.007705403957515955, 0.05947738140821457, 0.01489026565104723, 0.07422855496406555, 0.07840986549854279, 0.11332403868436813, 0.022269994020462036, 0.06840652227401733], [0.001805666135624051, 0.014381326735019684, 0.004945421125739813, 0.029646364971995354, 0.17308469116687775, 0.0766250491142273, 0.017474712803959846, 0.17265284061431885], [0.0012009674683213234, 0.008928833529353142, 0.001456223544664681, 0.011961211450397968, 0.2594308853149414, 0.16970132291316986, 0.010675432160496712, 0.145101398229599], [0.04986456036567688, 0.13834761083126068, 0.020664377138018608, 0.01220464613288641, 0.004305260255932808, 0.006431234069168568, 0.1449912041425705, 0.10361898690462112], [0.030376648530364037, 0.03586333245038986, 0.027953563258051872, 0.027930643409490585, 0.01642383076250553, 0.023868519812822342, 0.0629306435585022, 0.2105286866426468]], [[0.06891121715307236, 0.02599017135798931, 0.009533909149467945, 0.007644720375537872, 0.004496948327869177, 0.0111601073294878, 0.021410614252090454, 0.3992213010787964], [0.09715063124895096, 0.12197071313858032, 0.03721364587545395, 0.021103635430336, 0.015403433702886105, 0.014941551722586155, 0.057241275906562805, 0.27281486988067627], [0.11482184380292892, 0.09516112506389618, 0.02310303784906864, 0.01358744315803051, 0.0075135184451937675, 0.011674463748931885, 0.02350008115172386, 0.3426411747932434], [0.1816307157278061, 0.25600665807724, 0.020945927128195763, 0.004577548708766699, 0.007972564548254013, 0.01322969514876604, 0.03920188173651695, 0.2167213261127472], [0.3530433177947998, 0.16043543815612793, 0.07088933885097504, 0.0468129888176918, 0.013300761580467224, 0.018453426659107208, 0.025853820145130157, 0.14432188868522644], [0.2536883056163788, 0.21079561114311218, 0.09379047900438309, 0.08386283367872238, 0.043063048273324966, 0.026585450395941734, 0.02345716953277588, 0.11993610858917236], [0.1949165165424347, 0.20429983735084534, 0.04728134721517563, 0.03588426858186722, 0.08325108885765076, 0.068187415599823, 0.057584844529628754, 0.13811741769313812], [0.01301492564380169, 0.008726131170988083, 0.0036282483488321304, 0.003982252441346645, 0.003302351338788867, 0.005225836299359798, 0.011017310433089733, 0.43857893347740173]], [[2.1058724087197334e-05, 4.714403075922746e-06, 8.419962643779755e-11, 4.491483573954014e-12, 7.734564724803938e-12, 4.4801684584427903e-10, 8.460733056381287e-07, 0.491747111082077], [0.9983766078948975, 0.0011704300995916128, 9.414298801857512e-06, 1.973577212766031e-08, 7.474723062728117e-10, 1.1261970245257658e-09, 1.9410425267096798e-08, 0.00022511338465847075], [1.2232409972057212e-05, 0.9990942478179932, 2.6550827897153795e-05, 0.0008491174085065722, 5.2074426548642805e-08, 7.691279835242426e-10, 9.100802056405399e-11, 8.92963453225093e-06], [5.2525837845873724e-11, 1.6559253523951156e-08, 1.0, 3.5066620718282593e-09, 9.532768352471521e-09, 4.848402061774504e-12, 1.2009822872860996e-15, 2.4536295217814086e-10], [5.522657886558591e-08, 0.008896159939467907, 0.0012328594457358122, 0.9895163178443909, 8.931191405281425e-05, 2.0326888261479326e-05, 1.5145957377171726e-06, 0.00011949613690376282], [8.615912670817405e-12, 1.2587244668793574e-07, 1.0687680514820386e-05, 0.02868564985692501, 0.970523476600647, 0.0007618709933012724, 2.2159838408697397e-07, 9.148032404482365e-06], [1.0804734711100661e-11, 2.158739142998911e-08, 5.426098806382562e-11, 5.5660048019490205e-06, 0.0001696567633189261, 0.9940999150276184, 0.005701203364878893, 9.169450095214415e-06], [0.007089710328727961, 0.03807156905531883, 0.0031177906785160303, 0.0023958347737789154, 0.006642082706093788, 0.0030525866895914078, 0.024333421140909195, 0.3962777554988861]], [[0.01100597158074379, 0.05880236253142357, 0.010513713583350182, 0.003600803669542074, 0.005937621463090181, 0.0041281781159341335, 0.01480777096003294, 0.4449843764305115], [0.023571200668811798, 0.18127913773059845, 0.06604747474193573, 0.0900469720363617, 0.054545655846595764, 0.02487427555024624, 0.04440683126449585, 0.25469937920570374], [0.007943826727569103, 0.04948156327009201, 0.037139248102903366, 0.03286372497677803, 0.021734939888119698, 0.023877650499343872, 0.043642472475767136, 0.3907740116119385], [0.013325474224984646, 0.007533856201916933, 0.05050894618034363, 0.024504736065864563, 0.04204701632261276, 0.19397099316120148, 0.018031859770417213, 0.3198965787887573], [0.002214687177911401, 0.016438975930213928, 0.01857096515595913, 0.007398077752441168, 0.019597051665186882, 0.04473528638482094, 0.08896366506814957, 0.4008787274360657], [0.002944200299680233, 0.010133915580809116, 0.004700675141066313, 0.0037719127722084522, 0.0186750628054142, 0.034819480031728745, 0.08516407757997513, 0.42173242568969727], [0.0014554180670529604, 0.004560873843729496, 0.0007168111042119563, 0.0002870234311558306, 0.0017560055712237954, 0.005887182429432869, 0.006457427516579628, 0.4904659688472748], [0.012168054468929768, 0.01641322299838066, 0.008189268410205841, 0.008064016699790955, 0.00740379374474287, 0.009403572417795658, 0.02437535673379898, 0.41187745332717896]], [[0.024898499250411987, 0.013032658025622368, 0.013816745951771736, 0.0016599389491602778, 0.001979984575882554, 0.0033442906569689512, 0.03448781371116638, 0.41767752170562744], [0.08148840069770813, 0.12394528090953827, 0.037925396114587784, 0.039062853902578354, 0.014924994669854641, 0.03167993575334549, 0.07768147438764572, 0.2040143609046936], [0.03443753346800804, 0.02070557326078415, 0.03901701420545578, 0.050995927304029465, 0.020987316966056824, 0.035207320004701614, 0.04655110090970993, 0.29819294810295105], [0.03504370525479317, 0.014956529252231121, 0.06282033771276474, 0.00644267862662673, 0.006425785832107067, 0.02936325967311859, 0.0329553484916687, 0.35352644324302673], [0.04142223298549652, 0.04287896677851677, 0.04896218702197075, 0.009458008222281933, 0.0074393004179000854, 0.025354625657200813, 0.04927218705415726, 0.29317477345466614], [0.0388604998588562, 0.04566324129700661, 0.08541925251483917, 0.026139279827475548, 0.014914426021277905, 0.05854498967528343, 0.09926380217075348, 0.24414974451065063], [0.045327331870794296, 0.026973629370331764, 0.043306175619363785, 0.010407078079879284, 0.018379922956228256, 0.06542158126831055, 0.11675029993057251, 0.2798483371734619], [0.0055827489122748375, 0.0029940621461719275, 0.0012819472467526793, 0.0007164013222791255, 0.001179285580292344, 0.0015245575923472643, 0.00768388994038105, 0.4714936912059784]], [[0.004015125334262848, 0.01637202501296997, 0.01082569919526577, 0.005043269135057926, 0.018027866259217262, 0.01666681468486786, 0.015894470736384392, 0.4382903277873993], [0.003343496471643448, 0.03389886021614075, 0.028243690729141235, 0.0034834370017051697, 0.011447899974882603, 0.007948198355734348, 0.02151968702673912, 0.43001294136047363], [0.0011428790166974068, 0.017727700993418694, 0.01323712058365345, 0.004286666866391897, 0.01373759564012289, 0.023414989933371544, 0.027665292844176292, 0.43391892313957214], [0.002915895078331232, 0.0375804640352726, 0.01098239328712225, 0.004822440445423126, 0.01784657873213291, 0.024782152846455574, 0.011576290242373943, 0.4191019833087921], [0.04943094402551651, 0.018901454284787178, 0.024830572307109833, 0.01123689766973257, 0.0640338659286499, 0.09055264294147491, 0.09320801496505737, 0.26783332228660583], [0.02328888699412346, 0.013789908029139042, 0.01204779651015997, 0.007757064886391163, 0.03551098331809044, 0.0496433861553669, 0.11847839504480362, 0.33744144439697266], [0.061746738851070404, 0.025163564831018448, 0.013345015235245228, 0.0035660546272993088, 0.029116347432136536, 0.023395469412207603, 0.09069269895553589, 0.34648916125297546], [0.011955776251852512, 0.015642190352082253, 0.009747856296598911, 0.005809553898870945, 0.007841427810490131, 0.005396663676947355, 0.00879810843616724, 0.427043616771698]]], [[[0.06413222849369049, 0.022870821878314018, 0.023894766345620155, 0.004525987897068262, 0.003469267161563039, 0.005853339098393917, 0.011140190064907074, 0.3927983045578003], [0.16911499202251434, 0.026645198464393616, 0.02374105341732502, 0.0214175283908844, 0.024717751890420914, 0.04131259769201279, 0.03836309164762497, 0.29942935705184937], [0.22635170817375183, 0.06139340251684189, 0.03372678533196449, 0.03635207191109657, 0.08549913763999939, 0.03999122604727745, 0.16856907308101654, 0.16619867086410522], [0.09385194629430771, 0.22153621912002563, 0.06602104008197784, 0.035056423395872116, 0.061841849237680435, 0.13494563102722168, 0.04923003539443016, 0.1536087840795517], [0.10562007874250412, 0.08513916283845901, 0.15670670568943024, 0.2225346863269806, 0.04266449064016342, 0.04016302153468132, 0.03378509730100632, 0.14978085458278656], [0.07110677659511566, 0.08375905454158783, 0.1144537702202797, 0.2723900377750397, 0.10427999496459961, 0.040895577520132065, 0.024877039715647697, 0.138022780418396], [0.20330046117305756, 0.0661063939332962, 0.041094306856393814, 0.05341745540499687, 0.024447940289974213, 0.022258510813117027, 0.03148074075579643, 0.25509417057037354], [0.01393903512507677, 0.007943134754896164, 0.009865550324320793, 0.007454370614141226, 0.006049365736544132, 0.005452387034893036, 0.011086850427091122, 0.4101208448410034]], [[0.254031777381897, 0.0026666794437915087, 0.005549427587538958, 0.0019293546210974455, 0.0005735139711759984, 0.0008336604223586619, 0.004465118981897831, 0.27935317158699036], [0.006873636040836573, 0.18422868847846985, 0.002623241161927581, 0.0009048343636095524, 0.002248573349788785, 0.004248838406056166, 0.006088587921112776, 0.13991506397724152], [0.0020188239868730307, 0.001178789883852005, 0.13836894929409027, 0.015611344948410988, 0.004985304549336433, 0.0058033945970237255, 0.007987669669091702, 0.3854142129421234], [0.0022148294374346733, 0.0009569390676915646, 0.006357843987643719, 0.05777463689446449, 0.03549087792634964, 0.031814076006412506, 0.0022707595489919186, 0.3930239677429199], [0.0003855380055028945, 0.00018764693231787533, 0.0006471810047514737, 0.0022911105770617723, 0.11484184861183167, 0.07481786608695984, 0.0015381876146420836, 0.38108599185943604], [0.0005000595701858401, 0.0001689191412879154, 0.00025194440968334675, 0.0020486365538090467, 0.04753920063376427, 0.06122308969497681, 0.00229973578825593, 0.37742090225219727], [0.007107240613549948, 0.001643623225390911, 0.002469724975526333, 0.002502693561837077, 0.008207248523831367, 0.01291501335799694, 0.03789015859365463, 0.3557606637477875], [0.0031201334204524755, 0.0020701319444924593, 0.0013982948148623109, 0.001391572062857449, 0.0014604085590690374, 0.0024074267130345106, 0.003639474743977189, 0.46344706416130066]], [[0.08779480308294296, 0.17805759608745575, 0.04674695059657097, 0.020709386095404625, 0.01918979547917843, 0.018726643174886703, 0.06531854718923569, 0.28009292483329773], [0.005069286562502384, 0.07423696666955948, 0.015227903611958027, 0.003092620987445116, 0.010285470634698868, 0.005573331378400326, 0.0116641940549016, 0.4355039894580841], [0.004591154400259256, 0.013006534427404404, 0.03127625957131386, 0.7725826501846313, 0.02847745455801487, 0.04133325815200806, 0.023614436388015747, 0.04180379584431648], [0.007562749087810516, 0.005310478154569864, 0.00762539729475975, 0.057572752237319946, 0.37981534004211426, 0.3452264070510864, 0.04433475434780121, 0.07577834278345108], [0.004500371403992176, 0.025135058909654617, 0.01057968009263277, 0.02187531068921089, 0.015773041173815727, 0.11920908838510513, 0.11226807534694672, 0.34465259313583374], [0.005092592444270849, 0.030623409897089005, 0.011288324370980263, 0.010929844342172146, 0.03941577672958374, 0.068989597260952, 0.0736636146903038, 0.37985122203826904], [0.0013962500961497426, 0.11110951751470566, 0.011784755624830723, 0.0014553541550412774, 0.008263815194368362, 0.014601712115108967, 0.04610944539308548, 0.4008070230484009], [0.03163239359855652, 0.026281578466296196, 0.004576405510306358, 0.00468110479414463, 0.004471130669116974, 0.00486260000616312, 0.012844269163906574, 0.4163818061351776]], [[0.0004744687466882169, 0.0041789342649281025, 0.010179707780480385, 0.009091350249946117, 0.0059426273219287395, 0.01243901439011097, 0.01269543170928955, 0.419172078371048], [0.0016168219735845923, 0.0172574482858181, 0.014700569212436676, 0.010268103331327438, 0.0166130643337965, 0.03358970955014229, 0.01717262528836727, 0.33349278569221497], [0.008541238494217396, 0.006529742851853371, 0.0017727972008287907, 0.009005926549434662, 0.01664128340780735, 0.03240308538079262, 0.03185691311955452, 0.35415562987327576], [0.011456032283604145, 0.030969975516200066, 0.023719724267721176, 0.015175752341747284, 0.02228698693215847, 0.040218982845544815, 0.021382706239819527, 0.2680320143699646], [0.006130673922598362, 0.019616687670350075, 0.044375985860824585, 0.028211383149027824, 0.006961803417652845, 0.014315254986286163, 0.015410322695970535, 0.35516390204429626], [0.006110471207648516, 0.017513882368803024, 0.0305311381816864, 0.028081119060516357, 0.010026843287050724, 0.008271484635770321, 0.028830019757151604, 0.30112913250923157], [0.007786608301103115, 0.009195945225656033, 0.024453556165099144, 0.011921915225684643, 0.017283309251070023, 0.023421403020620346, 0.013317687436938286, 0.31427547335624695], [0.038843583315610886, 0.039974577724933624, 0.018305344507098198, 0.020090973004698753, 0.020757785066962242, 0.03350004181265831, 0.05627121776342392, 0.2340993881225586]], [[0.0097284484654665, 0.4996904134750366, 0.0031426376663148403, 0.002990666078403592, 0.0032123925630003214, 0.0007807569345459342, 0.0018054945394396782, 0.2405649721622467], [0.003929779399186373, 0.016445059329271317, 0.25540682673454285, 0.04932299256324768, 0.08758853375911713, 0.014621732756495476, 0.0021700274664908648, 0.2847747802734375], [0.0010804982157424092, 0.003334064967930317, 0.001677484717220068, 0.8715766668319702, 0.03627843037247658, 0.014506389386951923, 0.0024912741500884295, 0.03439714387059212], [0.003739392152056098, 0.0004390341055113822, 0.03862687945365906, 0.0012236925540491939, 0.8444976806640625, 0.021412890404462814, 0.02663004770874977, 0.031328171491622925], [0.0032715334091335535, 0.0009346397127956152, 0.011404628865420818, 0.010117012076079845, 0.010504492558538914, 0.4387831389904022, 0.27237674593925476, 0.1238282173871994], [0.01101713627576828, 0.0035365212243050337, 0.0018025655299425125, 0.0013382205506786704, 0.04214424267411232, 0.025255758315324783, 0.36160311102867126, 0.2759005129337311], [0.0004623720597010106, 5.322854485712014e-05, 6.72201258566929e-06, 1.5004201259216643e-06, 4.483361408347264e-05, 9.870579378912225e-05, 0.0017888223519548774, 0.5010899901390076], [0.006857879459857941, 0.0033710896968841553, 0.002047613961622119, 0.003722872119396925, 0.0043522813357412815, 0.0036460082046687603, 0.003080519149079919, 0.46365535259246826]], [[0.03610122203826904, 0.04339418560266495, 0.09156223386526108, 0.041395701467990875, 0.0786336362361908, 0.06773170083761215, 0.13311634957790375, 0.25123104453086853], [0.026036961004137993, 0.06679626554250717, 0.04954139515757561, 0.030739396810531616, 0.0409163236618042, 0.04544500634074211, 0.2383892685174942, 0.24910098314285278], [0.059839677065610886, 0.007820780389010906, 0.017975620925426483, 0.03606802225112915, 0.10146521776914597, 0.05773484706878662, 0.1469259262084961, 0.283634752035141], [0.055123236030340195, 0.0065027326345443726, 0.014273758046329021, 0.027189431712031364, 0.13482527434825897, 0.1495932787656784, 0.1668870896100998, 0.21586664021015167], [0.03376302495598793, 0.014995087869465351, 0.013953003101050854, 0.02050885744392872, 0.025464463979005814, 0.05557874217629433, 0.1891227662563324, 0.3163464069366455], [0.04986807703971863, 0.011264432221651077, 0.008093265816569328, 0.011924004182219505, 0.02401355840265751, 0.032612886279821396, 0.16846559941768646, 0.34018462896347046], [0.017261018976569176, 0.00692727928981185, 0.007832877337932587, 0.0062919314950704575, 0.009370478801429272, 0.010679401457309723, 0.043872933834791183, 0.4470784068107605], [0.009536954574286938, 0.009077874012291431, 0.0070459372363984585, 0.007624299731105566, 0.0047212266363203526, 0.006855986081063747, 0.028470631688833237, 0.42114946246147156]], [[0.09642675518989563, 0.019853629171848297, 0.017431534826755524, 0.003854323411360383, 0.01840837113559246, 0.03803499415516853, 0.08679964393377304, 0.3232719302177429], [0.04272201657295227, 0.2199498564004898, 0.01852991059422493, 0.03315722197294235, 0.047228626906871796, 0.04824305325746536, 0.05503121763467789, 0.20535928010940552], [0.06084888055920601, 0.03639991581439972, 0.08477707207202911, 0.042717210948467255, 0.05288488045334816, 0.03312809392809868, 0.046427514404058456, 0.28885242342948914], [0.07341355830430984, 0.07603912800550461, 0.07556675374507904, 0.044206514954566956, 0.0389987975358963, 0.050193026661872864, 0.04326396808028221, 0.2644961476325989], [0.03377455845475197, 0.049055930227041245, 0.03724876791238785, 0.029088081791996956, 0.03194654360413551, 0.057522960007190704, 0.05186576768755913, 0.32756659388542175], [0.020736699923872948, 0.05146470293402672, 0.014043686911463737, 0.01939854770898819, 0.05233379080891609, 0.06514052301645279, 0.061929140239953995, 0.3342926800251007], [0.014932313933968544, 0.02211517095565796, 0.004549604374915361, 0.001707464107312262, 0.003550103632733226, 0.025039352476596832, 0.12980656325817108, 0.37788963317871094], [0.013591830618679523, 0.016566835343837738, 0.007298782467842102, 0.00572617631405592, 0.010327349416911602, 0.007790754083544016, 0.020805934444069862, 0.397761732339859]], [[0.07669994980096817, 0.036322467029094696, 0.17617207765579224, 0.06659115850925446, 0.08317657560110092, 0.029041403904557228, 0.10588031262159348, 0.20931388437747955], [0.029780752956867218, 0.04066469147801399, 0.06829444319009781, 0.1393667608499527, 0.11184526979923248, 0.05083135515451431, 0.07527793943881989, 0.23813778162002563], [0.012791124172508717, 0.031504470854997635, 0.04601998254656792, 0.1111421138048172, 0.18906612694263458, 0.0766419917345047, 0.16815905272960663, 0.18044136464595795], [0.01918867975473404, 0.023990241810679436, 0.1229245737195015, 0.09795556217432022, 0.3478703498840332, 0.1517382562160492, 0.07199549674987793, 0.07825086265802383], [0.008870132267475128, 0.021755710244178772, 0.053611453622579575, 0.13596691191196442, 0.09854352474212646, 0.1066683828830719, 0.10902105271816254, 0.22226744890213013], [0.012469442561268806, 0.013273941352963448, 0.0535944402217865, 0.15776245296001434, 0.1544434130191803, 0.04526647925376892, 0.054500918835401535, 0.24635261297225952], [0.03445626050233841, 0.02366233803331852, 0.06282828748226166, 0.055039532482624054, 0.03904608264565468, 0.057980407029390335, 0.03356192633509636, 0.3399827480316162], [0.049256760627031326, 0.012612680904567242, 0.012188095599412918, 0.012523261830210686, 0.0189913772046566, 0.012764660641551018, 0.029581010341644287, 0.38517332077026367]], [[0.008490917272865772, 0.06578566879034042, 0.004481554962694645, 0.0007164674461819232, 0.002962316619232297, 0.0015529401134699583, 0.0031631551682949066, 0.4565037190914154], [0.001998456194996834, 0.02770964428782463, 0.024129144847393036, 0.001417644089087844, 0.013193752616643906, 0.0018762232502922416, 0.0027496733237057924, 0.4631612002849579], [0.000894496391993016, 0.002201249124482274, 0.042716607451438904, 0.6323442459106445, 0.006296771578490734, 0.0034781070426106453, 0.0004351684474386275, 0.15401571989059448], [0.0018929222133010626, 0.004326787311583757, 0.028116373345255852, 0.0023997006937861443, 0.2180381417274475, 0.012924258597195148, 0.035915032029151917, 0.3470996618270874], [0.0009253900498151779, 0.000537925458047539, 0.007318825460970402, 0.0019181403331458569, 0.011391165666282177, 0.08509541302919388, 0.01205976027995348, 0.44030600786209106], [0.0025964793749153614, 0.0016089759301394224, 0.0016555238980799913, 0.0009669976425357163, 0.006223927717655897, 0.011356275528669357, 0.06944501399993896, 0.45078244805336], [0.0006058869184926152, 0.0013564061373472214, 9.543503983877599e-05, 1.8725990230450407e-05, 0.0002683386264834553, 0.0001432435237802565, 0.009009743109345436, 0.498088002204895], [0.012830240651965141, 0.007379855029284954, 0.004797589965164661, 0.0027426090091466904, 0.00507731456309557, 0.006111932452768087, 0.007871641777455807, 0.4387722313404083]], [[0.003675277577713132, 0.001866189413703978, 0.001357611850835383, 0.00043765248847194016, 0.0006097626173868775, 0.0014317381428554654, 0.011709474958479404, 0.4838205873966217], [0.08835764229297638, 0.028642477467656136, 0.010229963809251785, 0.001758950063958764, 0.0018499108264222741, 0.009059443138539791, 0.005212091840803623, 0.4242345988750458], [0.00799261499196291, 0.014231435023248196, 0.021989963948726654, 0.002557610860094428, 0.0010916937608271837, 0.002367876237258315, 0.004309205338358879, 0.4719575345516205], [0.008899073116481304, 0.012763104401528835, 0.03410309553146362, 0.002338482765480876, 0.0012693756725639105, 0.0030886861495673656, 0.01198536902666092, 0.46060964465141296], [0.008696864359080791, 0.0223518256098032, 0.033775683492422104, 0.02944188192486763, 0.004639053251594305, 0.0071303569711744785, 0.0016632245387881994, 0.44543638825416565], [0.004248170182108879, 0.013329898938536644, 0.02593597210943699, 0.03146273270249367, 0.03693414479494095, 0.028025370091199875, 0.008159694261848927, 0.42508044838905334], [0.0008423767285421491, 0.004170592408627272, 0.0013360264711081982, 0.0037458320148289204, 0.014925336465239525, 0.0375409871339798, 0.003994698636233807, 0.4656746983528137], [0.00732713658362627, 0.013628934510052204, 0.0061233569867908955, 0.009307322092354298, 0.01072712242603302, 0.016225721687078476, 0.011902778409421444, 0.4191300868988037]], [[0.005686624441295862, 0.0012051259400323033, 0.0001960455410880968, 0.00021020985150244087, 0.00020092290651518852, 0.000660199613776058, 0.11466763913631439, 0.23238053917884827], [0.8489680290222168, 0.019986065104603767, 0.0007610179018229246, 0.0002992941881529987, 0.00024667492834851146, 0.000490342266857624, 0.004653351381421089, 0.06053868308663368], [0.023702329024672508, 0.3933728337287903, 0.014213722199201584, 0.10905706882476807, 0.016671810299158096, 0.0012892454396933317, 0.004276878200471401, 0.21563810110092163], [0.022821588441729546, 0.0220235213637352, 0.7777501940727234, 0.00701160030439496, 0.0026483137626200914, 0.000208628160180524, 0.001501770573668182, 0.08210194855928421], [0.006010955665260553, 0.08126302808523178, 0.02901894599199295, 0.7542858719825745, 0.01028755959123373, 0.0037121635396033525, 0.009578914381563663, 0.05169110372662544], [0.0028357200790196657, 0.01638449728488922, 0.020234866067767143, 0.43291497230529785, 0.1071450337767601, 0.008218012750148773, 0.013646451756358147, 0.19651556015014648], [0.006459176540374756, 0.006770133972167969, 0.005367286037653685, 0.028224142268300056, 0.10047725588083267, 0.3277108371257782, 0.178965762257576, 0.16604936122894287], [0.005234155338257551, 0.004362147767096758, 0.0017368204426020384, 0.004593800287693739, 0.002976416377350688, 0.002690965309739113, 0.019312363117933273, 0.45000725984573364]], [[0.2862628996372223, 0.0012126839719712734, 0.007830708287656307, 0.004214932676404715, 0.0025427164509892464, 0.00570731982588768, 0.0444498248398304, 0.15115581452846527], [0.003460957668721676, 0.1550169289112091, 0.0005566927138715982, 0.0003957227454520762, 0.00041422987123951316, 0.0002905112341977656, 0.011004360392689705, 0.018377842381596565], [0.1109478771686554, 0.0027653821744024754, 0.12711076438426971, 0.02045830897986889, 0.0023299572058022022, 0.0015487141208723187, 0.040169768035411835, 0.24626556038856506], [0.05889685079455376, 0.003898381255567074, 0.03150215372443199, 0.2923051714897156, 0.0839773640036583, 0.06827591359615326, 0.07029414921998978, 0.13080503046512604], [0.011832121759653091, 0.006414338946342468, 0.005159125197678804, 0.09488371759653091, 0.18686027824878693, 0.273154616355896, 0.05748378485441208, 0.15057261288166046], [0.01832089200615883, 0.006865106523036957, 0.007780106738209724, 0.14834704995155334, 0.1852159947156906, 0.20343685150146484, 0.049172524362802505, 0.14740507304668427], [0.09930936992168427, 0.008308115415275097, 0.07921653240919113, 0.03570425882935524, 0.005831372924149036, 0.004057868849486113, 0.12305734306573868, 0.18365009129047394], [0.04144205525517464, 0.03539574518799782, 0.025934269651770592, 0.02917262725532055, 0.010211492888629436, 0.014317767694592476, 0.04499416425824165, 0.2295871078968048]]], [[[0.03744874894618988, 0.026658358052372932, 0.01375736203044653, 0.00215017213486135, 0.0019419833552092314, 0.0023957695811986923, 0.04324641451239586, 0.264471173286438], [0.031646616756916046, 0.11990267783403397, 0.010809540748596191, 0.01338377594947815, 0.006467808969318867, 0.00892630871385336, 0.06948082149028778, 0.13037154078483582], [0.22022569179534912, 0.05348948761820793, 0.03902488946914673, 0.007149926386773586, 0.008481760509312153, 0.027124639600515366, 0.13289502263069153, 0.13160213828086853], [0.04914092645049095, 0.16088786721229553, 0.1108478307723999, 0.03542714565992355, 0.022601546719670296, 0.039940010756254196, 0.14479517936706543, 0.07166562229394913], [0.013215675950050354, 0.0776049941778183, 0.08741527050733566, 0.05300682783126831, 0.08616761863231659, 0.1291641891002655, 0.13118891417980194, 0.1438606083393097], [0.013071833178400993, 0.15169283747673035, 0.05590406060218811, 0.04113074764609337, 0.04716875031590462, 0.0711827203631401, 0.10357741266489029, 0.16900914907455444], [0.08004027605056763, 0.08197487890720367, 0.0256463922560215, 0.011752222664654255, 0.011631840839982033, 0.028098609298467636, 0.06081730127334595, 0.2344437688589096], [0.005528767127543688, 0.009308217093348503, 0.006860585417598486, 0.004192777909338474, 0.010260799899697304, 0.010981878265738487, 0.015497867949306965, 0.42049112915992737]], [[0.022246314212679863, 0.008757486008107662, 0.008829270489513874, 0.0024329901207238436, 0.002917352830991149, 0.0050587886944413185, 0.04412335902452469, 0.40451690554618835], [0.2820739150047302, 0.020782075822353363, 0.010273581370711327, 0.0029598919209092855, 0.00500992638990283, 0.011379297822713852, 0.034435030072927475, 0.2957599461078644], [0.14139458537101746, 0.04208522289991379, 0.045032303780317307, 0.025682520121335983, 0.006735603790730238, 0.007984030060470104, 0.018208835273981094, 0.3491871953010559], [0.06722195446491241, 0.02436753734946251, 0.07532060146331787, 0.0110842389985919, 0.005339708644896746, 0.007177589926868677, 0.015029292553663254, 0.3929024934768677], [0.06554548442363739, 0.0251153577119112, 0.02480188012123108, 0.08795204013586044, 0.011713107116520405, 0.014296168461441994, 0.0037748883478343487, 0.382232666015625], [0.07145193219184875, 0.03864063322544098, 0.032356005162000656, 0.1333603858947754, 0.04058241844177246, 0.021624408662319183, 0.007989378646016121, 0.3248581886291504], [0.1504465788602829, 0.09307001531124115, 0.041518714278936386, 0.03147316351532936, 0.05656770244240761, 0.09995003789663315, 0.04387686029076576, 0.23073779046535492], [0.008479166775941849, 0.009105510078370571, 0.006214453838765621, 0.0029697800055146217, 0.002097861375659704, 0.0037407982163131237, 0.008994069881737232, 0.43746358156204224]], [[0.07933208346366882, 0.07519316673278809, 0.04829152300953865, 0.009177383035421371, 0.02306598238646984, 0.034876879304647446, 0.2128230631351471, 0.22034139931201935], [0.0799405500292778, 0.049472659826278687, 0.03985505923628807, 0.0036948134656995535, 0.01668129302561283, 0.025873491540551186, 0.3663578927516937, 0.09541188925504684], [0.1189933642745018, 0.011652293615043163, 0.30500897765159607, 0.05492006987333298, 0.0038331488613039255, 0.003744743065908551, 0.05868811532855034, 0.09634772688150406], [0.091877780854702, 0.009355146437883377, 0.23754984140396118, 0.05319197475910187, 0.0069496240466833115, 0.005284553859382868, 0.014030836522579193, 0.20995762944221497], [0.02030200883746147, 0.026183828711509705, 0.023900650441646576, 0.016958018764853477, 0.004261720925569534, 0.003201414132490754, 0.0085412273183465, 0.40996649861335754], [0.013710400089621544, 0.01806250773370266, 0.00962051097303629, 0.008859865367412567, 0.003519561141729355, 0.0021580432076007128, 0.007934906519949436, 0.4422961473464966], [0.05072358250617981, 0.048723578453063965, 0.09867778420448303, 0.007499033119529486, 0.029175635427236557, 0.02901400998234749, 0.022380990907549858, 0.2865515649318695], [0.0020299579482525587, 0.0012505349004641175, 0.0006148909451439977, 0.00038951373426243663, 0.0005877254297956824, 0.0005448164301924407, 0.002017260529100895, 0.48473113775253296]], [[0.011200111359357834, 0.018842868506908417, 0.03046409785747528, 0.002788781886920333, 0.007832895033061504, 0.006276383996009827, 0.0074068219400942326, 0.4507717490196228], [0.00938814040273428, 0.007447195239365101, 0.018445292487740517, 0.00810359138995409, 0.02039041556417942, 0.021811190992593765, 0.660796582698822, 0.12268698215484619], [0.008736945688724518, 0.003853559959679842, 0.00979110598564148, 0.07607895135879517, 0.027503682300448418, 0.006908680312335491, 0.03988710790872574, 0.4118894934654236], [0.0038738083094358444, 0.006736425217241049, 0.009132626466453075, 0.012696393765509129, 0.1576133519411087, 0.04806869477033615, 0.11098641902208328, 0.3231777846813202], [0.004878087900578976, 0.014012823812663555, 0.017162933945655823, 0.09953681379556656, 0.06072201579809189, 0.30620676279067993, 0.05378515273332596, 0.21848493814468384], [0.005459696985781193, 0.019207900390028954, 0.015136857517063618, 0.024081578478217125, 0.07690244913101196, 0.02174494042992592, 0.04950181767344475, 0.391093373298645], [0.001520061632618308, 0.0063075111247599125, 0.017148710787296295, 0.013547779992222786, 0.03630455210804939, 0.027358246967196465, 0.02274540811777115, 0.43543022871017456], [0.003775506978854537, 0.0037189340218901634, 0.0066702477633953094, 0.0034362846054136753, 0.014226618222892284, 0.007730051409453154, 0.003597069764509797, 0.4563234746456146]], [[0.018067996948957443, 0.005787001922726631, 0.06573593616485596, 0.0035199448466300964, 0.0014263902558013797, 0.001586321392096579, 0.0006910592783242464, 0.40476879477500916], [0.007141444366425276, 0.005156685598194599, 0.02251514233648777, 0.00954648107290268, 0.015542554669082165, 0.006399105302989483, 0.005228354129940271, 0.4537692964076996], [0.08476478606462479, 0.025457805022597313, 0.06521104276180267, 0.011414819397032261, 0.004828022792935371, 0.004017669707536697, 0.13297070562839508, 0.3255191147327423], [0.04920459911227226, 0.012257130816578865, 0.06546778976917267, 0.02271001785993576, 0.20734331011772156, 0.2077716588973999, 0.09920534491539001, 0.16299042105674744], [0.025519372895359993, 0.02488243579864502, 0.040679220110177994, 0.0383002944290638, 0.008951788768172264, 0.013566715642809868, 0.4692017138004303, 0.1831885278224945], [0.03667369484901428, 0.019567517563700676, 0.035262979567050934, 0.05337856709957123, 0.011384841986000538, 0.014427675865590572, 0.5881808996200562, 0.1162138506770134], [0.4715854525566101, 0.13366767764091492, 0.040407732129096985, 0.01296455878764391, 0.00249129137955606, 0.0028746367897838354, 0.01769717037677765, 0.14731045067310333], [0.018484093248844147, 0.02016022428870201, 0.02191845513880253, 0.009438002482056618, 0.00566423824056983, 0.006259399000555277, 0.02059193141758442, 0.40891486406326294]], [[0.015456512570381165, 0.0019657572265714407, 0.6424494385719299, 0.08990637212991714, 0.003565523074939847, 0.005717775318771601, 0.009308787994086742, 0.10623905807733536], [0.021073203533887863, 0.017181675881147385, 0.10318883508443832, 0.12473752349615097, 0.06642117351293564, 0.07715761661529541, 0.01649664156138897, 0.2817273437976837], [0.04128806293010712, 0.012103419750928879, 0.22171904146671295, 0.11481130123138428, 0.03248943015933037, 0.0337817519903183, 0.03457116335630417, 0.24985402822494507], [0.0029601987916976213, 0.0020629994105547667, 0.018755417317152023, 0.0825469046831131, 0.22304780781269073, 0.1476300209760666, 0.0020913563203066587, 0.25761550664901733], [0.00047420631744898856, 0.0013176656793802977, 0.001310355612076819, 0.012645707465708256, 0.015349369496107101, 0.016213014721870422, 0.0004618706298060715, 0.47609618306159973], [0.001355909276753664, 0.0020190614741295576, 0.0013871805276721716, 0.012695368379354477, 0.01855277456343174, 0.01767147146165371, 0.001271175337024033, 0.47191494703292847], [0.011156744323670864, 0.003724417183548212, 0.11595451831817627, 0.117418572306633, 0.05031771957874298, 0.05532537028193474, 0.011041784659028053, 0.3109974265098572], [0.0014585658209398389, 0.0008794754976406693, 0.003908841405063868, 0.002178118098527193, 0.001063348725438118, 0.001184888300485909, 0.0016276933019980788, 0.4899939298629761]], [[0.009260457940399647, 0.019178481772542, 0.02430614084005356, 0.016871890053153038, 0.0205436609685421, 0.009651831351220608, 0.07537394762039185, 0.41016823053359985], [0.007312152534723282, 0.030159318819642067, 0.009330742061138153, 0.011044470593333244, 0.02573368512094021, 0.034838516265153885, 0.08544372022151947, 0.37610459327697754], [0.00664070388302207, 0.007738995831459761, 0.034573283046483994, 0.0982760339975357, 0.044279731810092926, 0.0750938430428505, 0.020250245928764343, 0.3556921184062958], [0.0034487799275666475, 0.007037733681499958, 0.03626633808016777, 0.07264333218336105, 0.16536551713943481, 0.14654715359210968, 0.030192406848073006, 0.267569899559021], [0.0013898939359933138, 0.010485448874533176, 0.00984457228332758, 0.07212023437023163, 0.02815556339919567, 0.05751651152968407, 0.012880034744739532, 0.400424063205719], [0.0012574668508023024, 0.021574070677161217, 0.022150013595819473, 0.11362261325120926, 0.04010310024023056, 0.026650484651327133, 0.021952174603939056, 0.36952540278434753], [0.003098654095083475, 0.0851627066731453, 0.007376433815807104, 0.024546731263399124, 0.015984579920768738, 0.014852664433419704, 0.020247885957360268, 0.41156280040740967], [0.008105535060167313, 0.010029582306742668, 0.00398656539618969, 0.004004540853202343, 0.0033217878080904484, 0.004157494753599167, 0.010170815512537956, 0.4494522511959076]], [[0.05723419040441513, 0.05265139788389206, 0.012116220779716969, 0.03297659382224083, 0.03268353268504143, 0.052441976964473724, 0.18608899414539337, 0.28000253438949585], [0.03585054352879524, 0.04353448003530502, 0.060530513525009155, 0.20973624289035797, 0.07495477050542831, 0.1386769711971283, 0.22527427971363068, 0.10125516355037689], [0.03565583750605583, 0.014455920085310936, 0.015718411654233932, 0.0232790969312191, 0.07432617247104645, 0.10934000462293625, 0.13751719892024994, 0.292728066444397], [0.054509490728378296, 0.024582084268331528, 0.00883593037724495, 0.06305274367332458, 0.08420052379369736, 0.14148066937923431, 0.07952277362346649, 0.2669280767440796], [0.024063101038336754, 0.010985521599650383, 0.014809911139309406, 0.27835899591445923, 0.03128990903496742, 0.04255788028240204, 0.017614761367440224, 0.28780290484428406], [0.020305251702666283, 0.006058109924197197, 0.01306024007499218, 0.13343219459056854, 0.014593067578971386, 0.014638426713645458, 0.013438066467642784, 0.3897777497768402], [0.011725141666829586, 0.026393679901957512, 0.05920784920454025, 0.07417434453964233, 0.09884730726480484, 0.14340732991695404, 0.021796440705657005, 0.2800244987010956], [0.008359838277101517, 0.014372322708368301, 0.005819439422339201, 0.0084309671074152, 0.007405674550682306, 0.006508531514555216, 0.014788822270929813, 0.439680278301239]], [[0.0021230594720691442, 0.0018589351093396544, 0.0028974744491279125, 0.000833368394523859, 0.0013429964892566204, 0.0028887407388538122, 0.007370350416749716, 0.32268673181533813], [0.0006007515476085246, 0.0022852441761642694, 9.639908967074007e-05, 5.9586280258372426e-05, 0.00016088646952994168, 0.0003261975944042206, 0.0024946739431470633, 0.04098157584667206], [0.004690026864409447, 0.005013104062527418, 0.012045932933688164, 0.007709654048085213, 0.0047163693234324455, 0.005965595133602619, 0.019548481330275536, 0.31241244077682495], [0.0020155785605311394, 0.010078292340040207, 0.002984242979437113, 0.009081819094717503, 0.03491366282105446, 0.04017724469304085, 0.011806333437561989, 0.323564350605011], [0.0019301283173263073, 0.007523950655013323, 0.00226850644685328, 0.005685861688107252, 0.051253870129585266, 0.06688147783279419, 0.013709302060306072, 0.34468066692352295], [0.0022566067054867744, 0.006280732341110706, 0.0025585852563381195, 0.005187130067497492, 0.03270724043250084, 0.04982475936412811, 0.017508534714579582, 0.3332303464412689], [0.005918231792747974, 0.011893280781805515, 0.010618392378091812, 0.0022999285720288754, 0.008420434780418873, 0.015374165959656239, 0.06433295458555222, 0.28247886896133423], [0.0005552212824113667, 0.005040270276367664, 0.00054716388694942, 0.0004161388787906617, 0.0009227770497091115, 0.0005362536758184433, 0.004131972789764404, 0.48464182019233704]], [[0.039788030087947845, 0.02307143807411194, 0.011269490234553814, 0.014527969062328339, 0.007612792309373617, 0.007331886328756809, 0.00760337058454752, 0.23748233914375305], [0.015209605917334557, 0.0291146170347929, 0.00305691035464406, 0.001490374794229865, 0.002215137705206871, 0.0020979573018848896, 0.01397025492042303, 0.19242073595523834], [0.04085860401391983, 0.1715882122516632, 0.0026457186322659254, 0.0058319298550486565, 0.007919266819953918, 0.015167702920734882, 0.02824433520436287, 0.3315621316432953], [0.03745574131608009, 0.17546671628952026, 0.016825569793581963, 0.05789818987250328, 0.015623614192008972, 0.020805571228265762, 0.056364353746175766, 0.2776225805282593], [0.030109889805316925, 0.12831424176692963, 0.009387314319610596, 0.07172176986932755, 0.010500491596758366, 0.01019746158272028, 0.04580685868859291, 0.3196706175804138], [0.053565435111522675, 0.2178190052509308, 0.014501224271953106, 0.13189467787742615, 0.0197797492146492, 0.01715659350156784, 0.05102687329053879, 0.22016507387161255], [0.1562335342168808, 0.5041548609733582, 0.0427958220243454, 0.0445295125246048, 0.0338008739054203, 0.04015284404158592, 0.03066342882812023, 0.05398472398519516], [0.006554997526109219, 0.00451909564435482, 0.003602497512474656, 0.003991097677499056, 0.00264632236212492, 0.0033866448793560266, 0.009547917172312737, 0.45017632842063904]], [[0.0035810673143714666, 0.009799979627132416, 0.0013905256055295467, 0.0010200737742707133, 0.0007637428352609277, 0.002712862566113472, 0.05201295018196106, 0.4055749475955963], [0.03255592659115791, 0.00844657327979803, 0.0013226051814854145, 0.0013993188040331006, 0.0025083678774535656, 0.028355672955513, 0.18871331214904785, 0.3608894348144531], [0.0061225262470543385, 0.01490763295441866, 0.023628395050764084, 0.01964668557047844, 0.0012203985825181007, 0.003153120167553425, 0.015161688439548016, 0.44467225670814514], [0.0028379284776747227, 0.00440567173063755, 0.10615360736846924, 0.0010189628228545189, 0.002470681443810463, 0.0014177076518535614, 0.0011358860647305846, 0.4372183084487915], [0.002308264374732971, 0.003088922705501318, 0.0025350600481033325, 0.09524479508399963, 0.012615809217095375, 0.02285119704902172, 0.004467251244932413, 0.42304283380508423], [0.0019134641624987125, 0.0028039757162332535, 0.0013835164718329906, 0.051162686198949814, 0.15810172259807587, 0.028686050325632095, 0.0017096925294026732, 0.3731464147567749], [0.0013471560087054968, 0.0016055441228672862, 7.17670627636835e-05, 0.010808278806507587, 0.0245121531188488, 0.25391072034835815, 0.02891133353114128, 0.33540835976600647], [0.0004765710618812591, 0.0013745477190241218, 0.00044156648800708354, 0.0009788194438442588, 0.00119111523963511, 0.003048097714781761, 0.0022417947184294462, 0.4704965353012085]], [[0.03267636522650719, 0.06684144586324692, 0.041735198348760605, 0.044929832220077515, 0.04556313529610634, 0.030500568449497223, 0.03500097617506981, 0.32064172625541687], [0.043603502213954926, 0.18681085109710693, 0.01281976979225874, 0.04040856286883354, 0.039505716413259506, 0.027644475921988487, 0.029005667194724083, 0.1918388158082962], [0.008910754695534706, 0.06052950769662857, 0.04283847659826279, 0.04604322835803032, 0.06615665555000305, 0.03554577752947807, 0.015453685075044632, 0.3526768088340759], [0.012592162936925888, 0.06187283992767334, 0.05160209536552429, 0.05003559961915016, 0.1102721244096756, 0.0592404305934906, 0.020149582996964455, 0.30157455801963806], [0.01586633361876011, 0.039214838296175, 0.06276243925094604, 0.028571534901857376, 0.1381729394197464, 0.07774385064840317, 0.02470300905406475, 0.29524677991867065], [0.009201380424201488, 0.026962686330080032, 0.04254379868507385, 0.03161583095788956, 0.1555890291929245, 0.13962318003177643, 0.03272422403097153, 0.2700932025909424], [0.032465577125549316, 0.06660166382789612, 0.022771429270505905, 0.023665955290198326, 0.10512524098157883, 0.12625247240066528, 0.15012992918491364, 0.20011721551418304], [0.008907167240977287, 0.012235441245138645, 0.007458020932972431, 0.004240697715431452, 0.010841863229870796, 0.00960106123238802, 0.0055270423181355, 0.4249608814716339]]], [[[0.015470292419195175, 0.0027092820964753628, 0.003907528705894947, 0.0012801098637282848, 0.0003190620627719909, 0.0016870779218152165, 0.014010925777256489, 0.4435005486011505], [0.0065030502155423164, 0.03084670566022396, 0.0024440872948616743, 0.0018245814135298133, 0.010384547524154186, 0.012381423264741898, 0.005348686594516039, 0.4514099955558777], [0.03419370576739311, 0.005556849297136068, 0.007802516687661409, 0.036292534321546555, 0.0034274854697287083, 0.004506535362452269, 0.008955223485827446, 0.44389426708221436], [0.0025404260959476233, 0.004732829984277487, 0.003940280061215162, 0.011875110678374767, 0.010931579396128654, 0.012412017211318016, 0.01364436186850071, 0.4655649960041046], [0.0021748675499111414, 0.0051635028794407845, 0.002537112683057785, 0.026357294991612434, 0.028110623359680176, 0.169892355799675, 0.008167466148734093, 0.3767472803592682], [0.003579656360670924, 0.010000142268836498, 0.008302449248731136, 0.023938611149787903, 0.03047921136021614, 0.046471431851387024, 0.032934267073869705, 0.4183334708213806], [0.011699290946125984, 0.016948793083429337, 0.004730531945824623, 0.004524250514805317, 0.007554435636848211, 0.008959400467574596, 0.0068288021720945835, 0.4579371511936188], [0.009005923755466938, 0.011797298677265644, 0.0066274902783334255, 0.011356879957020283, 0.005317707546055317, 0.008894514292478561, 0.010579385794699192, 0.43598902225494385]], [[0.4309026598930359, 0.0009672751766629517, 0.005064318422228098, 0.0011017322540283203, 0.000966705207247287, 0.002340958919376135, 0.05520881712436676, 0.23486560583114624], [0.0025913240388035774, 0.07708827406167984, 0.0005765605601482093, 0.0006768029415979981, 0.002820103894919157, 0.00777112552896142, 0.011798436753451824, 0.14375892281532288], [0.0022136883344501257, 0.0019798101857304573, 0.13533657789230347, 0.002485048258677125, 0.0021746326237916946, 0.0007012259447947145, 0.01097901351749897, 0.38931092619895935], [0.0009382801363244653, 0.0005369192222133279, 0.0023743321653455496, 0.04441436752676964, 0.051388707011938095, 0.027517491951584816, 0.01092185452580452, 0.42355719208717346], [0.0001519509678473696, 0.0004473890585359186, 0.00013214154751040041, 0.0017960927216336131, 0.2205939143896103, 0.034240104258060455, 0.0012268349528312683, 0.35958102345466614], [0.001049364684149623, 0.0012820132542401552, 0.00035466099507175386, 0.0019908971153199673, 0.13292162120342255, 0.1451721340417862, 0.007109761703759432, 0.3383755385875702], [0.08672411739826202, 0.01579955592751503, 0.05184173956513405, 0.005202573724091053, 0.015828149393200874, 0.01651645638048649, 0.19051915407180786, 0.2740684151649475], [0.0005171222728677094, 0.00012446963228285313, 0.00015348604938481003, 0.00014722903142683208, 0.000708930310793221, 0.0013551667798310518, 0.0015390710905194283, 0.4942035973072052]], [[0.07436860352754593, 0.0007625097059644759, 0.14331616461277008, 0.0037979348562657833, 0.00026234154938720167, 0.0007955819019116461, 0.002419836353510618, 0.3656409680843353], [0.0017722854390740395, 0.0018699874635785818, 0.042331140488386154, 0.0027967356145381927, 0.001432573888450861, 0.003567560575902462, 0.0023831757716834545, 0.4508477747440338], [0.0056252493523061275, 0.0012809357140213251, 0.49343544244766235, 0.007410246878862381, 0.0010397847509011626, 0.0028285905718803406, 0.004843174014240503, 0.23517364263534546], [0.0029816459864377975, 0.001325044664554298, 0.06445591151714325, 0.03266829624772072, 0.04981726035475731, 0.05062754824757576, 0.001787409302778542, 0.3890535831451416], [0.0009523829212412238, 0.0004792267282027751, 0.006858252454549074, 0.005225388333201408, 0.009324923157691956, 0.0457257404923439, 0.0006928796065039933, 0.4574752748012543], [0.00406191311776638, 0.00047287490451708436, 0.016646642237901688, 0.009893788024783134, 0.021815525367856026, 0.04536492004990578, 0.0024478782434016466, 0.43791502714157104], [0.007026831619441509, 0.001425848575308919, 0.12117136269807816, 0.004300972446799278, 0.0023057821672409773, 0.010606086812913418, 0.009920543059706688, 0.40978530049324036], [0.0006123405182734132, 0.00011897396325366572, 0.001454747631214559, 0.0009421166032552719, 0.00032916056807152927, 0.0005823957035318017, 0.0003060749440919608, 0.49141961336135864]], [[0.01336431223899126, 0.0035965440329164267, 0.05161060392856598, 0.012056192383170128, 0.022006116807460785, 0.016485655680298805, 0.010210510343313217, 0.39899247884750366], [0.00928526185452938, 0.0326879546046257, 0.1453167200088501, 0.03693412244319916, 0.03979038447141647, 0.024780292063951492, 0.004088966641575098, 0.34806737303733826], [0.01398733165115118, 0.014827712439000607, 0.02972370944917202, 0.031245725229382515, 0.057907432317733765, 0.06627213954925537, 0.0846913680434227, 0.345136821269989], [0.0035739270970225334, 0.006113364826887846, 0.016842838376760483, 0.054038155823946, 0.11411003023386002, 0.2806050479412079, 0.08233063668012619, 0.21912424266338348], [0.004479799885302782, 0.013538465835154057, 0.012492658570408821, 0.018693499267101288, 0.02576184645295143, 0.04336852207779884, 0.08259730786085129, 0.3965776860713959], [0.01911953091621399, 0.02735181339085102, 0.021236585453152657, 0.02602602168917656, 0.04578559100627899, 0.05585281550884247, 0.10683567821979523, 0.34474286437034607], [0.1508602350950241, 0.06984193623065948, 0.035625044256448746, 0.018946995958685875, 0.007210142444819212, 0.008949807845056057, 0.02401505969464779, 0.33498451113700867], [0.006893577985465527, 0.009953784756362438, 0.0028741711284965277, 0.002450744854286313, 0.00399274006485939, 0.005316801369190216, 0.005561901722103357, 0.4494365453720093]], [[0.044540755450725555, 0.0014445970300585032, 0.0027259483467787504, 0.0011709938989952207, 0.0009229084243997931, 0.0011893725022673607, 0.002547580748796463, 0.34677326679229736], [0.0554884634912014, 0.06190205737948418, 0.007307892199605703, 0.0063376291655004025, 0.016986148431897163, 0.02671973966062069, 0.03841036558151245, 0.16806529462337494], [0.10244113951921463, 0.022647444158792496, 0.014821763150393963, 0.04102979972958565, 0.027110502123832703, 0.03695995733141899, 0.05362994223833084, 0.33237966895103455], [0.03739418089389801, 0.018090492114424706, 0.007450600620359182, 0.026212206110358238, 0.1153101697564125, 0.07408571988344193, 0.06789854168891907, 0.3171362578868866], [0.026777086779475212, 0.04193045198917389, 0.01477155089378357, 0.03404515981674194, 0.026092752814292908, 0.018333883956074715, 0.03187673166394234, 0.3978165090084076], [0.03324560448527336, 0.027514945715665817, 0.01531909592449665, 0.05001102387905121, 0.07604879885911942, 0.03302668780088425, 0.042410850524902344, 0.3503687083721161], [0.03347305953502655, 0.01927226595580578, 0.00544659374281764, 0.007328846957534552, 0.008015447296202183, 0.0159282423555851, 0.01738661713898182, 0.4386299252510071], [0.004304471891373396, 0.005079758819192648, 0.0037909853272140026, 0.0025038346648216248, 0.003739033592864871, 0.00431768549606204, 0.0037392727099359035, 0.47003036737442017]], [[0.0389956533908844, 0.03704278916120529, 0.05408988893032074, 0.019846929237246513, 0.017108717933297157, 0.022621285170316696, 0.09877514094114304, 0.3377031087875366], [0.03481358662247658, 0.03960137814283371, 0.084522545337677, 0.09750930219888687, 0.06195175647735596, 0.18594969809055328, 0.3712804615497589, 0.05197278782725334], [0.024892011657357216, 0.05996222048997879, 0.07134450972080231, 0.049014415591955185, 0.028017137199640274, 0.04636963829398155, 0.07827495038509369, 0.3154942989349365], [0.0072318799793720245, 0.03499625250697136, 0.01587594673037529, 0.03145710006356239, 0.014190719462931156, 0.021859483793377876, 0.03311891481280327, 0.416999876499176], [0.004399092867970467, 0.01436392217874527, 0.023750100284814835, 0.0405680388212204, 0.013014176860451698, 0.02123536914587021, 0.010338425636291504, 0.43219566345214844], [0.011797952465713024, 0.02755153365433216, 0.07371135801076889, 0.07054832577705383, 0.036510664969682693, 0.04366889223456383, 0.018182838335633278, 0.35440686345100403], [0.049807239323854446, 0.046874646097421646, 0.10570333153009415, 0.10788444429636002, 0.15616106986999512, 0.12706676125526428, 0.0981421172618866, 0.14848512411117554], [0.002655469812452793, 0.0015931368106976151, 0.002194697270169854, 0.001347757875919342, 0.0035028476268053055, 0.0030383591074496508, 0.006618522107601166, 0.4761962592601776]], [[0.0086296908557415, 0.0031608473509550095, 0.016628323122859, 0.006861709523946047, 0.0010324710747227073, 0.0020657717250287533, 0.012614213861525059, 0.4308093190193176], [0.004088959656655788, 0.01034250296652317, 0.0032591482158750296, 0.008266283199191093, 0.007278989069163799, 0.013533996418118477, 0.01982678845524788, 0.38133111596107483], [0.019086068496108055, 0.00604903744533658, 0.030388230457901955, 0.020120464265346527, 0.0037113020662218332, 0.005693543236702681, 0.01595265418291092, 0.37315335869789124], [0.006498157046735287, 0.0035718500148504972, 0.010609368793666363, 0.03272995725274086, 0.0163689237087965, 0.029737919569015503, 0.01900268718600273, 0.3853331506252289], [0.0006544249481521547, 0.0034931583795696497, 0.0006911834352649748, 0.004751863889396191, 0.009870128706097603, 0.01829581707715988, 0.0016989682335406542, 0.2878921926021576], [0.0019121508812531829, 0.004305894486606121, 0.004267499316483736, 0.006691674701869488, 0.00914900191128254, 0.018012328073382378, 0.004173153080046177, 0.346554696559906], [0.007784734945744276, 0.003887999104335904, 0.01815454103052616, 0.008322193287312984, 0.004131244961172342, 0.008158727549016476, 0.0341779999434948, 0.39806845784187317], [0.0015524531481787562, 0.0007399208843708038, 0.00036488217301666737, 0.0012988195521757007, 0.0005600320873782039, 0.0007393269333988428, 0.0013441115152090788, 0.4944555163383484]], [[0.011632434092462063, 0.001419806038029492, 0.012236066162586212, 0.006117582321166992, 0.0035453762393444777, 0.008101333864033222, 0.015246381983160973, 0.4656599760055542], [0.0005107528995722532, 0.005497978534549475, 0.00040624092798680067, 0.00025715981610119343, 0.0008760042837820947, 0.0013726482866331935, 0.0028307323809713125, 0.0651855319738388], [0.008781759068369865, 0.006061234045773745, 0.018651865422725677, 0.018963588401675224, 0.017608607187867165, 0.03521234542131424, 0.011660086922347546, 0.43527868390083313], [0.0006527308723889291, 0.0014285106444731355, 0.004529457539319992, 0.008153524249792099, 0.01995600201189518, 0.02669931761920452, 0.0015057934215292335, 0.4676418900489807], [0.0004887273535132408, 0.0023083367850631475, 0.001150878262706101, 0.0029770766850560904, 0.002056026365607977, 0.0038805746007710695, 0.0003996133746113628, 0.4921257495880127], [0.0006732653127983212, 0.0027948033530265093, 0.0031715119257569313, 0.007096114102751017, 0.0033131868112832308, 0.0068524060770869255, 0.0006988043896853924, 0.4865102767944336], [0.00404906552284956, 0.007025830913335085, 0.013269378803670406, 0.006431270856410265, 0.028431324288249016, 0.04766011983156204, 0.008167565800249577, 0.434256374835968], [0.001825762796215713, 0.0011391544248908758, 0.00034441237221471965, 0.00018459916464053094, 0.00030850368784740567, 0.00044070681906305254, 0.0009227529517374933, 0.49129363894462585]], [[0.010361080057919025, 0.01743444800376892, 0.06903760135173798, 0.014082523994147778, 0.005928965285420418, 0.00888635590672493, 0.0372118204832077, 0.4031117558479309], [0.04218515753746033, 0.08228074014186859, 0.031110359355807304, 0.015590585768222809, 0.014183164574205875, 0.014379311352968216, 0.012546231038868427, 0.3731452226638794], [0.055433426052331924, 0.03458389639854431, 0.03879685699939728, 0.010790652595460415, 0.011912178248167038, 0.013224744237959385, 0.0127617958933115, 0.39020442962646484], [0.013476496562361717, 0.018534790724515915, 0.051197607070207596, 0.04886180907487869, 0.022453969344496727, 0.03069416806101799, 0.02120506763458252, 0.3875504434108734], [0.009224594570696354, 0.02860410325229168, 0.021281154826283455, 0.06747666001319885, 0.06687156111001968, 0.15383942425251007, 0.010832159779965878, 0.3157462179660797], [0.016873087733983994, 0.026423050090670586, 0.06542758643627167, 0.09191963076591492, 0.10732707381248474, 0.07904724776744843, 0.017607389017939568, 0.2913818061351776], [0.016590097919106483, 0.03856492042541504, 0.2682875096797943, 0.06995374709367752, 0.027016276493668556, 0.04017585888504982, 0.026673370972275734, 0.23957446217536926], [0.0018392452038824558, 0.0014995927922427654, 0.001209583948366344, 0.0005584249156527221, 0.001305189449340105, 0.002075109863653779, 0.0025315717794001102, 0.47648102045059204]], [[0.038811374455690384, 0.05650472268462181, 0.06714165955781937, 0.017051519826054573, 0.037102315574884415, 0.02756950445473194, 0.04113469645380974, 0.3484596014022827], [0.001121414010412991, 0.024338943883776665, 0.02962563931941986, 0.009845007210969925, 0.0036482997238636017, 0.0026537631638348103, 0.006296379026025534, 0.4552295207977295], [0.00908377580344677, 0.007291960529983044, 0.04109862819314003, 0.021270181983709335, 0.03761274367570877, 0.022875383496284485, 0.00790230929851532, 0.42321833968162537], [0.005768592935055494, 0.002900096820667386, 0.010208350606262684, 0.012509077787399292, 0.04577448591589928, 0.024502741172909737, 0.023809567093849182, 0.434604674577713], [0.00152682070620358, 0.01032771822065115, 0.007440901827067137, 0.029312364757061005, 0.034641120582818985, 0.18826401233673096, 0.027860963717103004, 0.34589195251464844], [0.0013383610639721155, 0.0184189360588789, 0.002249507699161768, 0.0072153047658503056, 0.007377192378044128, 0.013753866776823997, 0.09537209570407867, 0.4187721014022827], [0.006970832124352455, 0.029111023992300034, 0.014330967329442501, 0.01756431721150875, 0.013669525273144245, 0.018036406487226486, 0.03582446649670601, 0.4273332357406616], [0.002862069755792618, 0.008709602989256382, 0.0023584114387631416, 0.0024072949308902025, 0.002924242988228798, 0.005137558560818434, 0.004841338377445936, 0.4664692282676697]], [[0.03751019388437271, 0.010983506217598915, 0.019836317747831345, 0.0022527913097292185, 0.0011509857140481472, 0.0011464903363958001, 0.013586047105491161, 0.041926056146621704], [0.002130868611857295, 0.007135801017284393, 0.00048347958363592625, 0.0005797253106720746, 0.00017572475189808756, 0.0002793150197248906, 0.000499148853123188, 0.00954129733145237], [0.2121109962463379, 0.05890762433409691, 0.07907682657241821, 0.004554620012640953, 0.0018162972992286086, 0.002661042381078005, 0.09230703860521317, 0.14897891879081726], [0.10759623348712921, 0.07695320248603821, 0.02583392709493637, 0.025831174105405807, 0.005419582594186068, 0.009587625041604042, 0.23482336103916168, 0.18135206401348114], [0.02327154017984867, 0.07586771249771118, 0.00998992845416069, 0.013206991367042065, 0.004559640306979418, 0.008705583401024342, 0.05418507754802704, 0.33670157194137573], [0.07501322031021118, 0.08667917549610138, 0.03702550753951073, 0.02168935351073742, 0.011824038811028004, 0.016242511570453644, 0.12028791010379791, 0.22895477712154388], [0.08989185094833374, 0.2309030294418335, 0.01841660402715206, 0.006168010178953409, 0.0034973679576069117, 0.004369367379695177, 0.03351617977023125, 0.131175234913826], [0.00020788029360119253, 0.0005164339672774076, 0.00011835042823804542, 0.0001405497023370117, 0.00010263162403134629, 0.00017403013771399856, 0.00023278914159163833, 0.48340076208114624]], [[0.05087289959192276, 0.0041920156218111515, 0.002957636956125498, 0.0007176595972850919, 0.0025587647687643766, 0.0038630410563200712, 0.006566693540662527, 0.42919713258743286], [0.00392056442797184, 0.043076906353235245, 0.0011429940350353718, 0.0013255821540951729, 0.0011679292656481266, 0.0032028909772634506, 0.004219250753521919, 0.33772990107536316], [0.0016564402030780911, 0.003364108968526125, 0.20521804690361023, 0.002826505806297064, 0.0033466373570263386, 0.0011116265086457133, 0.000903092441149056, 0.37948673963546753], [0.0010416965233162045, 0.003266405314207077, 0.0022578921634703875, 0.03571547195315361, 0.003969886340200901, 0.0025147718843072653, 0.0004118141660001129, 0.46724221110343933], [0.0014773086877539754, 0.0010916618630290031, 0.0017898738151416183, 0.0017837052000686526, 0.026358338072896004, 0.004297489766031504, 0.0012102590408176184, 0.47163283824920654], [0.0017799192573875189, 0.001966010080650449, 0.0009916526032611728, 0.0009251998271793127, 0.005796909797936678, 0.01794496551156044, 0.004505910910665989, 0.47255510091781616], [0.005314759910106659, 0.00759453559294343, 0.0008125887834466994, 0.0007174907950684428, 0.0035929169971495867, 0.005824682302772999, 0.033950477838516235, 0.43505698442459106], [0.00045763739035464823, 0.0006625339738093317, 0.00020129949552938342, 0.0002016184153035283, 0.0006469786749221385, 0.0004910673596896231, 0.0006840649293735623, 0.4956824779510498]]], [[[0.016047505661845207, 0.005976941902190447, 0.01417023129761219, 0.005539620760828257, 0.0032766296062618494, 0.005577230826020241, 0.011365116573870182, 0.4525914192199707], [0.003572792513296008, 0.0025588429998606443, 0.004928890150040388, 0.0022167316637933254, 0.0035262969322502613, 0.002239897148683667, 0.0036948949564248323, 0.48021137714385986], [0.005751579534262419, 0.012999902479350567, 0.02065327949821949, 0.009368163533508778, 0.0033462520223110914, 0.0043659815564751625, 0.01749434880912304, 0.45558443665504456], [0.0013726098695769906, 0.0038558829110115767, 0.0041435458697378635, 0.004675861448049545, 0.0021155723370611668, 0.0016229794127866626, 0.006166336592286825, 0.4841287136077881], [0.001728222006931901, 0.006255460437387228, 0.0021400803234428167, 0.0025567286647856236, 0.004833409562706947, 0.00113230652641505, 0.002396430354565382, 0.48611903190612793], [0.0041077290661633015, 0.011648755520582199, 0.005741051398217678, 0.005975864361971617, 0.003786431858316064, 0.002050690818578005, 0.00856279768049717, 0.4718802869319916], [0.0067992680706083775, 0.040100276470184326, 0.008731737732887268, 0.007158646825700998, 0.007498839404433966, 0.007007658015936613, 0.05007214844226837, 0.4115254580974579], [0.04347857087850571, 0.06669024378061295, 0.018756138160824776, 0.02486267313361168, 0.011932287365198135, 0.019868843257427216, 0.04652900993824005, 0.08795066177845001]], [[0.15228553116321564, 0.01657586544752121, 0.016285276040434837, 0.024118781089782715, 0.003952993080019951, 0.005927578080445528, 0.04346243292093277, 0.3378344178199768], [0.008368640206754208, 0.012222128920257092, 0.01048631314188242, 0.010790479369461536, 0.00938624981790781, 0.015173789113759995, 0.005441887769848108, 0.4411996304988861], [0.0027811340987682343, 0.0029459157958626747, 0.3134748041629791, 0.04021326079964638, 0.012165484018623829, 0.011341501027345657, 0.0049714939668774605, 0.27418839931488037], [0.0037007001228630543, 0.00225565442815423, 0.02467900700867176, 0.5225248336791992, 0.023075195029377937, 0.029583530500531197, 0.006277815438807011, 0.1830413043498993], [0.0005503998836502433, 0.001250285655260086, 0.0036745623219758272, 0.011885044164955616, 0.18483692407608032, 0.04650628939270973, 0.002467802260071039, 0.36480993032455444], [0.002056811936199665, 0.0036669259425252676, 0.01678227074444294, 0.019413670524954796, 0.07943206280469894, 0.16439281404018402, 0.00788420531898737, 0.3284910023212433], [0.06221707910299301, 0.014026223681867123, 0.05116696655750275, 0.05257246643304825, 0.016880260780453682, 0.025000395253300667, 0.3805259168148041, 0.16458648443222046], [0.041652072221040726, 0.042466502636671066, 0.04137236252427101, 0.05464804917573929, 0.12319736182689667, 0.0753936842083931, 0.03670267015695572, 0.06261233985424042]], [[0.0241503044962883, 0.0033834988716989756, 0.0022061350755393505, 0.003551473841071129, 0.013575058430433273, 0.011995721608400345, 0.16859211027622223, 0.10059676319360733], [0.09403447806835175, 0.01991122029721737, 0.013736003078520298, 0.008927475661039352, 0.029324132949113846, 0.04000852629542351, 0.04301200062036514, 0.3296343982219696], [0.053535327315330505, 0.035523660480976105, 0.08833994716405869, 0.0796736627817154, 0.058038126677274704, 0.05007735639810562, 0.1113213524222374, 0.20581258833408356], [0.058506570756435394, 0.01770136132836342, 0.1720457524061203, 0.04430493712425232, 0.2029067575931549, 0.050709571689367294, 0.014567193575203419, 0.18916507065296173], [0.009348278865218163, 0.005259343422949314, 0.02028665691614151, 0.03277909755706787, 0.058848679065704346, 0.012434656731784344, 0.006771378219127655, 0.41890615224838257], [0.009246139787137508, 0.0021591787226498127, 0.03268887475132942, 0.02692278102040291, 0.5951436161994934, 0.05675017833709717, 0.0028317251708358526, 0.12186546623706818], [0.009041408076882362, 0.011061213910579681, 0.010346817784011364, 0.029818782582879066, 0.08406944572925568, 0.27485084533691406, 0.021141648292541504, 0.25171419978141785], [0.026210878044366837, 0.10376205295324326, 0.038951434195041656, 0.03423009440302849, 0.04498929902911186, 0.05360664427280426, 0.17377449572086334, 0.03872588276863098]], [[0.008098365738987923, 0.004711825400590897, 0.00586341880261898, 0.0011751024285331368, 0.0256133284419775, 0.017413906753063202, 0.009441502392292023, 0.42574962973594666], [0.0035414290614426136, 0.00770805636420846, 0.002135239774361253, 0.0014354768209159374, 0.04802033677697182, 0.02825295552611351, 0.01022831816226244, 0.4359806180000305], [0.015994325280189514, 0.014044477604329586, 0.04408397525548935, 0.014529246836900711, 0.05312582477927208, 0.03202439844608307, 0.010926838032901287, 0.37670135498046875], [0.005386872682720423, 0.005235855933278799, 0.01776091754436493, 0.006309798918664455, 0.3805254101753235, 0.05955587327480316, 0.0035995652433484793, 0.24417981505393982], [0.005722798407077789, 0.007863953709602356, 0.014869583770632744, 0.03801451250910759, 0.21501068770885468, 0.22400610148906708, 0.005238768644630909, 0.22843213379383087], [0.007080018520355225, 0.008906455710530281, 0.011133446358144283, 0.014726677909493446, 0.5179486870765686, 0.07256244868040085, 0.0024222692009061575, 0.16509759426116943], [0.019295470789074898, 0.0281047485768795, 0.019133297726511955, 0.005344226956367493, 0.07714380323886871, 0.13694310188293457, 0.047081828117370605, 0.30636706948280334], [0.07300541549921036, 0.04359082877635956, 0.07098083198070526, 0.057844895869493484, 0.013427520170807838, 0.033653680235147476, 0.08769567310810089, 0.10716213285923004]], [[0.0007212411146610975, 0.0007951589650474489, 0.00033781962702050805, 0.0006165526574477553, 0.0002109793567797169, 0.0007292263326235116, 0.00205221027135849, 0.48868685960769653], [0.0007828455418348312, 0.00048663292545825243, 0.002222022507339716, 0.001564528327435255, 0.0006616450264118612, 0.0019176488276571035, 0.00373026542365551, 0.4902186989784241], [0.0006260748486965895, 0.003564959391951561, 0.004405129235237837, 0.006562281399965286, 0.007454396691173315, 0.009721138514578342, 0.0056509170681238174, 0.46224597096443176], [0.00014752670540474355, 0.0003647179401014, 0.0003796535893343389, 0.0030504059977829456, 0.0029147095046937466, 0.005478133447468281, 0.0010295744286850095, 0.4888433814048767], [7.980596274137497e-05, 0.0012594269355759025, 0.000490149948745966, 0.007886458188295364, 0.006780900061130524, 0.010846252553164959, 0.001284137717448175, 0.47940173745155334], [0.0001742991735227406, 0.0021611363627016544, 0.0009780267719179392, 0.005905776284635067, 0.005196746438741684, 0.0085239103063941, 0.0024807851295918226, 0.47826531529426575], [0.0015796689549461007, 0.001260863384231925, 0.0017355747986584902, 0.0030727966222912073, 0.0015600246842950583, 0.005307079292833805, 0.005799435079097748, 0.4842008948326111], [0.06378437578678131, 0.055108219385147095, 0.025872791185975075, 0.033314116299152374, 0.06530431658029556, 0.07745753973722458, 0.04593765735626221, 0.02057657577097416]], [[0.0012937705032527447, 0.0046974350698292255, 0.002628656104207039, 0.000338042969815433, 0.0007595503702759743, 0.0009430511854588985, 0.0017310597468167543, 0.4904288053512573], [0.002709990134462714, 0.006238013505935669, 0.006091473624110222, 0.0009261975064873695, 0.0021920346189290285, 0.0018912581726908684, 0.004965838044881821, 0.4852139353752136], [0.00519830035045743, 0.01881220005452633, 0.0057239956222474575, 0.0035084798000752926, 0.015229422599077225, 0.02350020594894886, 0.01549785677343607, 0.4505849778652191], [0.0006493504042737186, 0.005307517014443874, 0.0040329815819859505, 0.0012620934285223484, 0.001588954241015017, 0.002162833232432604, 0.0011746532982215285, 0.49022603034973145], [0.0010977355996146798, 0.011452978476881981, 0.007928447797894478, 0.008680086582899094, 0.008618864230811596, 0.01085326261818409, 0.005007029976695776, 0.4697624742984772], [0.001668676151894033, 0.02111070789396763, 0.0099417082965374, 0.007544473744928837, 0.007995713502168655, 0.012053235433995724, 0.006989119108766317, 0.4605318009853363], [0.007097167428582907, 0.17125971615314484, 0.05100984871387482, 0.019227804616093636, 0.03558855503797531, 0.04701126366853714, 0.00511261448264122, 0.3234029710292816], [0.07450903952121735, 0.07156340032815933, 0.04503767564892769, 0.019176090136170387, 0.023329636082053185, 0.030587175861001015, 0.0673370286822319, 0.05281822755932808]], [[0.6503998637199402, 0.024209290742874146, 0.012130741961300373, 0.026340357959270477, 0.0034807685296982527, 0.006608541589230299, 0.016079507768154144, 0.0959915742278099], [0.02742045558989048, 0.21441768109798431, 0.011885302141308784, 0.011931284330785275, 0.007051394321024418, 0.008538610301911831, 0.010119940154254436, 0.29329007863998413], [0.016735607758164406, 0.007536791265010834, 0.3523162603378296, 0.08877135813236237, 0.011215425096452236, 0.0065015750005841255, 0.011413875967264175, 0.2274402678012848], [0.011171055026352406, 0.013316246680915356, 0.0318145677447319, 0.34112435579299927, 0.027619145810604095, 0.03056422248482704, 0.009395316243171692, 0.2506634294986725], [0.0012920188019052148, 0.00338237383402884, 0.01653657853603363, 0.010879944078624249, 0.4128892719745636, 0.03201054409146309, 0.0024761981330811977, 0.25312548875808716], [0.009089658968150616, 0.008716607466340065, 0.016759952530264854, 0.0276813842356205, 0.07457028329372406, 0.22423134744167328, 0.01918860711157322, 0.2901404798030853], [0.06415924429893494, 0.02072158455848694, 0.026198796927928925, 0.0295125599950552, 0.0070204283110797405, 0.024105645716190338, 0.4588351547718048, 0.142768993973732], [0.04192609712481499, 0.03486085683107376, 0.043061356991529465, 0.05358906835317612, 0.04296655207872391, 0.03213036432862282, 0.023502981290221214, 0.04757021740078926]], [[0.0012319288216531277, 0.000976788462139666, 0.0006127048982307315, 0.0002627545618452132, 0.0007706846226938069, 0.001420506159774959, 0.005029009189456701, 0.49096885323524475], [0.0009992095874622464, 0.0029752247501164675, 0.0005808927235193551, 0.0008009190205484629, 0.004420299082994461, 0.004240072797983885, 0.0075162677094340324, 0.479303777217865], [0.0005642945761792362, 0.005718571599572897, 0.0006580896442756057, 0.00476815877482295, 0.003074191976338625, 0.006273750215768814, 0.00415963726118207, 0.4800584018230438], [0.00035157211823388934, 0.0035839087795466185, 0.00028851311071775854, 0.000575128651689738, 0.002278165426105261, 0.0021125096827745438, 0.0010798713192343712, 0.4925641119480133], [0.00047653273213654757, 0.0031366932671517134, 0.00021838283282704651, 0.0015071578091010451, 0.0019947593100368977, 0.0017317443853244185, 0.00047306291526183486, 0.4919881224632263], [0.0012696698540821671, 0.006251254118978977, 0.0009212627774104476, 0.002716516610234976, 0.01004814077168703, 0.005060023628175259, 0.0007168963784351945, 0.48167645931243896], [0.004286850802600384, 0.009634511545300484, 0.0046390448696911335, 0.0037978794425725937, 0.018636900931596756, 0.02111905999481678, 0.00675989082083106, 0.4455603063106537], [0.06196365877985954, 0.02684403769671917, 0.02873244509100914, 0.05016680806875229, 0.04375050216913223, 0.0476214624941349, 0.029106171801686287, 0.034661851823329926]], [[0.004719053860753775, 0.0038119915407150984, 0.0009640498901717365, 0.00029877875931560993, 0.00018914479005616158, 0.0005421480163931847, 0.0011769999982789159, 0.4716401994228363], [0.022323373705148697, 0.020337840542197227, 0.002382119884714484, 0.0005742342909798026, 0.0010874224826693535, 0.0016048356192186475, 0.009861364960670471, 0.45881983637809753], [0.1091570034623146, 0.03954612463712692, 0.014599290676414967, 0.006599105428904295, 0.0049652280285954475, 0.0075399610213935375, 0.06217719614505768, 0.35636770725250244], [0.03355438634753227, 0.0159759521484375, 0.017153006047010422, 0.039842359721660614, 0.02561977691948414, 0.03359735384583473, 0.06917178630828857, 0.3712531626224518], [0.004385953303426504, 0.004524656105786562, 0.0075546796433627605, 0.016576867550611496, 0.0069027249701321125, 0.01310378685593605, 0.02749699354171753, 0.45760926604270935], [0.01996263675391674, 0.012735324911773205, 0.00896986573934555, 0.010660086758434772, 0.009114466607570648, 0.014385048300027847, 0.01565508171916008, 0.4504474103450775], [0.04519135132431984, 0.055846381932497025, 0.008100657723844051, 0.00407094182446599, 0.0025663163978606462, 0.0038833587896078825, 0.10725120455026627, 0.3733517825603485], [0.07242827862501144, 0.06421227008104324, 0.02263951674103737, 0.022385504096746445, 0.027931073680520058, 0.04172063618898392, 0.04873381555080414, 0.030583910644054413]], [[0.0065541947260499, 0.05163077265024185, 0.02010190673172474, 0.01942593976855278, 0.008450549095869064, 0.01945435255765915, 0.01034926250576973, 0.4067283868789673], [0.0011458296794444323, 0.012946616858243942, 0.013650696724653244, 0.016378093510866165, 0.005186373833566904, 0.008234103210270405, 0.007014406844973564, 0.4549373388290405], [0.003065013326704502, 0.0037059795577079058, 0.012568687088787556, 0.01972794532775879, 0.02009713090956211, 0.03529074788093567, 0.006283702794462442, 0.4423975646495819], [0.0005495003424584866, 0.0005930094048380852, 0.0014745795633643866, 0.005237529519945383, 0.017662763595581055, 0.04676802456378937, 0.0043440028093755245, 0.4591376781463623], [0.001335600041784346, 0.00491587957367301, 0.002912278752774, 0.017438678070902824, 0.02692965231835842, 0.5491586327552795, 0.018639331683516502, 0.1700662523508072], [0.001127135707065463, 0.003938448615372181, 0.00238685286603868, 0.006141508463770151, 0.006979458965361118, 0.04369859769940376, 0.01449078693985939, 0.44677698612213135], [0.0012439667480066419, 0.012691715732216835, 0.002031312556937337, 0.007129490841180086, 0.006993147544562817, 0.0094226049259305, 0.007895111106336117, 0.46546947956085205], [0.04809548705816269, 0.03827643394470215, 0.048353563994169235, 0.060985006392002106, 0.021729055792093277, 0.03311335667967796, 0.04332233592867851, 0.07475663721561432]], [[0.000651464972179383, 0.00099703180603683, 0.004229824990034103, 0.003330813255161047, 0.0042216358706355095, 0.012175913900136948, 0.009986993856728077, 0.48020264506340027], [0.0011230229865759611, 0.003838638309389353, 0.008371005766093731, 0.0037728906609117985, 0.006408975925296545, 0.009095384739339352, 0.018555408343672752, 0.4731152653694153], [0.0034400050062686205, 0.0009291977621614933, 0.008965149521827698, 0.007681253831833601, 0.008524042554199696, 0.02079007774591446, 0.0068803709000349045, 0.46967601776123047], [0.000634836673270911, 0.00017357290198560804, 0.002435597823932767, 0.0035501786042004824, 0.002023017033934593, 0.003990857861936092, 0.0014111888594925404, 0.4926604628562927], [0.0008119418052956462, 0.0004944773390889168, 0.0021628658287227154, 0.004797687754034996, 0.0020084420684725046, 0.0033324521500617266, 0.0011478214291855693, 0.4921012222766876], [0.002745814388617873, 0.001155576785095036, 0.004421143792569637, 0.003324240678921342, 0.002318187616765499, 0.0024319584481418133, 0.0020098050590604544, 0.48979508876800537], [0.0023756709415465593, 0.0007601972320117056, 0.005252471659332514, 0.0028385103214532137, 0.008432993665337563, 0.012459885329008102, 0.0060107228346168995, 0.478421151638031], [0.16030064225196838, 0.08772062510251999, 0.02232799492776394, 0.07456885278224945, 0.028874382376670837, 0.07091954350471497, 0.12765587866306305, 0.06918206810951233]], [[0.017725354060530663, 0.01013166457414627, 0.003987094387412071, 0.0026930836029350758, 0.004663575440645218, 0.0029930698219686747, 0.0048863692209124565, 0.4660985767841339], [0.009104028344154358, 0.021802496165037155, 0.007647151127457619, 0.004888709168881178, 0.003563282545655966, 0.0020407040137797594, 0.004628247581422329, 0.45317378640174866], [0.016442222520709038, 0.029273027554154396, 0.02130606211721897, 0.013162292540073395, 0.012006673961877823, 0.014473862946033478, 0.008844751864671707, 0.4308224320411682], [0.024737287312746048, 0.011383121833205223, 0.009255729615688324, 0.007210845127701759, 0.005084443371742964, 0.0037273671478033066, 0.005014441441744566, 0.4611183702945709], [0.0016089871060103178, 0.004354927688837051, 0.0013350502122193575, 0.001293679466471076, 0.009053926914930344, 0.0057799434289336205, 0.0013069482520222664, 0.48577964305877686], [0.006756106857210398, 0.005365082528442144, 0.004125990439206362, 0.0025008816737681627, 0.009753044694662094, 0.010474382899701595, 0.0032557386439293623, 0.47526201605796814], [0.04197985678911209, 0.05761570855975151, 0.012360600754618645, 0.005970218684524298, 0.008420190773904324, 0.010422347113490105, 0.014354380778968334, 0.40053170919418335], [0.06538806855678558, 0.07005905359983444, 0.03310585767030716, 0.03277968615293503, 0.022778529673814774, 0.03566054627299309, 0.07007981836795807, 0.03664584457874298]]]], \\\"left_text\\\": [\\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"]}, {\\\"name\\\": \\\"Sentence A -\\u003e Sentence B\\\", \\\"attn\\\": [[[[0.011008302681148052, 0.007964405231177807, 0.012401134707033634, 0.012626986019313335, 0.01822158694267273, 0.03751054406166077, 0.032849520444869995, 0.7062491178512573], [0.05111600458621979, 0.01784636825323105, 0.016188524663448334, 0.034550972282886505, 0.04032806307077408, 0.008430905640125275, 0.014747894369065762, 0.002083284081891179], [0.011161367408931255, 0.007392543368041515, 0.02728419005870819, 0.011595254763960838, 0.06580255925655365, 0.029527466744184494, 0.0062408046796917915, 0.01905512809753418], [0.0387045256793499, 0.007175581995397806, 0.014191791415214539, 0.03388706594705582, 0.05341388285160065, 0.013310998678207397, 0.009375548921525478, 0.0009336062357760966], [0.03042193129658699, 0.0036483488511294127, 0.01124507561326027, 0.052854206413030624, 0.055095743387937546, 0.018138518556952477, 0.021030552685260773, 0.0019064793596044183], [0.026137450709939003, 0.007835391908884048, 0.04781508445739746, 0.0928763672709465, 0.02130993641912937, 0.012126856483519077, 0.007968500256538391, 0.010289200581610203], [0.07653960585594177, 0.005564410705119371, 0.01443084329366684, 0.04294794425368309, 0.07773218303918839, 0.036374710500240326, 0.011816887184977531, 0.001566849066875875], [0.039379481226205826, 0.007954319939017296, 0.10972070693969727, 0.026415210217237473, 0.023425700142979622, 0.014062038622796535, 0.0026519885286688805, 0.011344718746840954], [1.152576032836805e-06, 1.1555251148820389e-05, 5.2061750466236845e-06, 1.371363214275334e-05, 4.478007667785278e-06, 5.161368608241901e-05, 0.0001593561319168657, 0.9994856119155884]], [[0.027349503710865974, 0.013545246794819832, 0.06334026157855988, 0.030286243185400963, 0.02672632411122322, 0.03649211302399635, 0.00903548114001751, 0.004095627460628748], [0.04030245915055275, 0.05449175089597702, 0.015260525979101658, 0.01441941037774086, 0.051165707409381866, 0.012906704097986221, 0.009400923736393452, 0.005906717851758003], [0.03189234808087349, 0.005836388096213341, 0.015635255724191666, 0.02730834297835827, 0.03977164626121521, 0.02932717837393284, 0.002584383124485612, 0.0010396799771115184], [0.05264122784137726, 0.005919741000980139, 0.0015853171935305, 0.004358803387731314, 0.0019629127345979214, 0.0005766953690908849, 0.00020377084729261696, 0.001008533057756722], [0.0016609665472060442, 0.004477020353078842, 0.010466582141816616, 0.014143839478492737, 0.018876660615205765, 0.003539198776707053, 0.005014950409531593, 0.0007165209972299635], [0.01039657648652792, 0.004642943385988474, 0.007727229502052069, 0.008718782104551792, 0.01666164956986904, 0.008082425221800804, 0.0013291724026203156, 0.001171768526546657], [0.0015719160437583923, 0.0013278420083224773, 0.008107521571218967, 0.01719454489648342, 0.046971384435892105, 0.0064142923802137375, 0.003084664698690176, 0.0006322385743260384], [0.03418389707803726, 0.007624479942023754, 0.03132493048906326, 0.007417135406285524, 0.01037380937486887, 0.016183815896511078, 0.004492961801588535, 0.0016253096982836723], [0.03925952687859535, 0.029104769229888916, 0.017176028341054916, 0.018435312435030937, 0.002877231454476714, 0.002948450157418847, 0.0017658548895269632, 0.015059570781886578]], [[0.04867997393012047, 0.09254953265190125, 0.07381545752286911, 0.09486182779073715, 0.082914799451828, 0.07271520793437958, 0.04404165968298912, 0.030361313372850418], [0.0545763336122036, 0.01604420691728592, 0.011612973175942898, 0.027364207431674004, 0.019178539514541626, 0.021193353459239006, 0.03272027149796486, 0.032265398651361465], [0.01743321679532528, 0.10690226405858994, 0.02871570736169815, 0.04158058017492294, 0.04895868897438049, 0.04626128450036049, 0.018562469631433487, 0.036715105175971985], [0.042592115700244904, 0.028904670849442482, 0.030724521726369858, 0.021228116005659103, 0.023331813514232635, 0.0168754905462265, 0.03380384296178818, 0.04233171045780182], [0.038641296327114105, 0.029350461438298225, 0.015338404104113579, 0.012258137576282024, 0.042409393936395645, 0.034138504415750504, 0.023105019703507423, 0.025494007393717766], [0.01470259390771389, 0.04659475013613701, 0.024310611188411713, 0.018510956317186356, 0.055132340639829636, 0.08806735277175903, 0.010098050348460674, 0.04462667927145958], [0.05045425519347191, 0.055470049381256104, 0.04604503884911537, 0.018547367304563522, 0.02415427938103676, 0.025428179651498795, 0.029278477653861046, 0.03038364090025425], [0.07383982092142105, 0.054581303149461746, 0.062397975474596024, 0.03553818166255951, 0.02532547153532505, 0.025117862969636917, 0.03893119841814041, 0.008976396173238754], [0.0757886990904808, 0.09931029379367828, 0.08393636345863342, 0.05245032161474228, 0.059110067784786224, 0.027142135426402092, 0.07597208023071289, 0.015110681764781475]], [[0.0416850820183754, 0.04187638685107231, 0.051688242703676224, 0.04284347966313362, 0.010884474031627178, 0.02676309645175934, 0.04683941602706909, 0.06283047050237656], [0.0013698127586394548, 0.001527724089100957, 0.003079200629144907, 0.0036342886742204428, 0.002154689049348235, 0.0011569688795134425, 0.0025306325405836105, 0.010919292457401752], [0.0019989456050097942, 0.004539075773209333, 0.0021221840288490057, 0.0043496135622262955, 0.009173189289867878, 0.00819883868098259, 0.001727689290419221, 0.0012723386753350496], [0.024206284433603287, 0.0011899482924491167, 0.0009746656287461519, 0.0016707185423001647, 0.0010043636430054903, 0.001857830211520195, 0.0005939669790677726, 0.00694759888574481], [0.02933378890156746, 0.019377965480089188, 0.0010600468376651406, 0.009931511245667934, 0.011072607710957527, 0.010862203314900398, 0.0034645176492631435, 0.0015955098206177354], [0.022633247077465057, 0.004940207116305828, 0.0032543574925512075, 0.008275501430034637, 0.005043844226747751, 0.0024784624110907316, 0.0015372901689261198, 0.0014068287564441562], [0.0013314973330125213, 0.0024215762969106436, 0.00171946850605309, 0.004013487603515387, 0.004174456931650639, 0.0027731608133763075, 0.0011439566733315587, 0.0006740911048837006], [0.0010895318118855357, 0.004290437325835228, 0.0062949806451797485, 0.004447329323738813, 0.004242948722094297, 0.007139301858842373, 0.0003665502299554646, 0.0018705135444179177], [0.00633058650419116, 0.001208824454806745, 0.010793852619826794, 0.003044052980840206, 0.0009751369943842292, 0.002682421123608947, 0.003046723548322916, 0.0038170877378433943]], [[0.007810052018612623, 0.02126569114625454, 0.04604148864746094, 0.014514554291963577, 0.025807274505496025, 0.04341826215386391, 0.08485356718301773, 0.029243331402540207], [0.003574702423065901, 0.004306348040699959, 0.00856547337025404, 0.005849181208759546, 0.006364749278873205, 0.02825976349413395, 0.014159289188683033, 0.007611260283738375], [0.009691307321190834, 0.0013374672271311283, 0.013957006856799126, 0.007881246507167816, 0.01621880754828453, 0.01895863004028797, 0.004472723230719566, 0.0029238893184810877], [0.0298911165446043, 0.030503615736961365, 0.0018633375875651836, 0.026354365050792694, 0.004749304614961147, 0.0009832560317590833, 0.0005606042104773223, 0.0029506373684853315], [0.01831057108938694, 0.035194605588912964, 0.003690612269565463, 0.0874093770980835, 0.027725795283913612, 0.029748598113656044, 0.0012340922839939594, 0.002238919958472252], [0.01757563278079033, 0.002588002709671855, 0.0020996304228901863, 0.015356292948126793, 0.01379159465432167, 0.007605087012052536, 0.0010641419794410467, 0.0033865529112517834], [0.016615135595202446, 0.013382242992520332, 0.02174832671880722, 0.021303698420524597, 0.03887410834431648, 0.013686718419194221, 0.002741637174040079, 0.003453668439760804], [0.03142288699746132, 0.018415672704577446, 0.03722061589360237, 0.02271999791264534, 0.011616760864853859, 0.039878398180007935, 0.009723562747240067, 0.009350127540528774], [0.006227157078683376, 0.0064658611081540585, 0.019711071625351906, 0.003964062314480543, 0.0032162752468138933, 0.014402758330106735, 0.004201842471957207, 0.0017728424863889813]], [[0.04550478234887123, 0.053476933389902115, 0.01804729551076889, 0.024768279865384102, 0.012427376583218575, 0.021046994253993034, 0.025330809876322746, 0.23439855873584747], [0.025592343881726265, 0.0421178936958313, 0.05956674739718437, 0.0440940335392952, 0.03432290256023407, 0.030304770916700363, 0.02068067155778408, 0.007094115484505892], [0.06441372632980347, 0.04830627143383026, 0.023198122158646584, 0.01992473006248474, 0.03235041722655296, 0.04213673993945122, 0.019411567598581314, 0.0097707100212574], [0.019606277346611023, 0.012599573470652103, 0.02298656664788723, 0.05791425704956055, 0.07773377001285553, 0.03326566517353058, 0.0734192356467247, 0.020987525582313538], [0.025675037875771523, 0.02627575397491455, 0.09429445117712021, 0.013071255758404732, 0.024463418871164322, 0.030244100838899612, 0.03953491896390915, 0.00894131325185299], [0.0603729672729969, 0.026775527745485306, 0.04063938930630684, 0.013095780275762081, 0.023802625015378, 0.024258354678750038, 0.11301542073488235, 0.01359516754746437], [0.021089935675263405, 0.0282573401927948, 0.04269837960600853, 0.014099941588938236, 0.02838147059082985, 0.02851889468729496, 0.045091379433870316, 0.008510440587997437], [0.012371964752674103, 0.026716334745287895, 0.014715065248310566, 0.019626814872026443, 0.03156737610697746, 0.01938757486641407, 0.03194998577237129, 0.011201484128832817], [0.001131283468566835, 0.0036152286920696497, 0.0008522254647687078, 0.00034796056570485234, 0.00024297041818499565, 0.00016062580107245594, 0.0008736010058782995, 0.043455757200717926]], [[0.131747767329216, 0.07875160872936249, 0.02515810914337635, 0.06670679897069931, 0.022565120831131935, 0.06760559231042862, 0.047641776502132416, 0.23916368186473846], [0.011863687075674534, 0.015315487049520016, 0.003497633384540677, 0.004441088531166315, 0.005406490061432123, 0.003567544976249337, 0.00022161522065289319, 0.0001594703207956627], [0.00836984533816576, 0.003998216241598129, 0.0022902516648173332, 0.0016475931042805314, 0.0008114398224279284, 0.002471902407705784, 0.0002081232814816758, 1.2680451618507504e-05], [0.007897846400737762, 0.02351473830640316, 0.002882627537474036, 0.005294881761074066, 0.0012846369063481688, 0.0009333751513622701, 8.39518615975976e-05, 9.552006304147653e-06], [0.0035285507328808308, 0.0013157157227396965, 0.00038352955016307533, 0.0023205154575407505, 0.000476876157335937, 0.0004446223028935492, 6.371040944941342e-05, 2.9752748105238425e-06], [0.0031104814261198044, 0.001444032066501677, 0.0006676503107883036, 0.003515154356136918, 0.0036656686570495367, 0.001331364386714995, 9.938723815139383e-05, 1.809268542274367e-05], [0.0011419992661103606, 0.001093560946173966, 0.0009655383182689548, 0.006927405018359423, 0.005606699734926224, 0.0006572494748979807, 0.00020566907187458128, 5.9139758377568796e-05], [0.0031682979315519333, 0.011523754335939884, 0.004697142168879509, 0.011235179379582405, 0.0065018306486308575, 0.003318639937788248, 0.002174386056140065, 0.00024708223645575345], [0.0008863060502335429, 0.0019725332967936993, 0.0002003176778089255, 0.0011080717667937279, 0.0011153894010931253, 0.00026514811906963587, 2.0453282559174113e-05, 2.6044726837426424e-06]], [[0.1399928480386734, 0.03838957101106644, 0.06812949478626251, 0.04396490007638931, 0.08401870727539062, 0.056498318910598755, 0.07249383628368378, 0.05991361662745476], [0.0021386321168392897, 0.001978401793166995, 0.002313601551577449, 0.003174731507897377, 0.003533181268721819, 0.005604541394859552, 0.001970448298379779, 0.0006372025818563998], [0.025920525193214417, 0.001833446673117578, 0.0021894965320825577, 0.0048238663002848625, 0.0052408636547625065, 0.025936903432011604, 0.00504214596003294, 0.000857346341945231], [0.005088564939796925, 0.001422438770532608, 0.0007215141085907817, 0.007617046125233173, 0.0029152221977710724, 0.007982546463608742, 0.0010119563667103648, 0.0003069056256208569], [0.01149197481572628, 0.001370060839690268, 0.0011997469700872898, 0.005541961174458265, 0.004602860659360886, 0.005630850791931152, 0.0006087329820729792, 0.0004972346359863877], [0.022837096825242043, 0.0018641973147168756, 0.0008440730161964893, 0.0017874921904876828, 0.0046611069701612, 0.006668757647275925, 0.0012950439704582095, 0.00036907749017700553], [0.03436198830604553, 0.011761189438402653, 0.006235687993466854, 0.0059006488882005215, 0.02326914854347706, 0.013922258280217648, 0.0011311275884509087, 0.0010038753971457481], [0.009966454468667507, 0.026696957647800446, 0.01665411703288555, 0.004814067855477333, 0.0027057058177888393, 0.004738589283078909, 0.003753240453079343, 0.0014718392631039023], [0.007888669148087502, 0.006772278342396021, 0.0049042715691030025, 0.00709201954305172, 0.0023182425647974014, 0.002772808773443103, 0.000488156802020967, 5.827374479849823e-05]], [[0.05475836247205734, 0.04314306005835533, 0.1592230200767517, 0.036683451384305954, 0.021975398063659668, 0.07122796773910522, 0.018974140286445618, 0.07947549968957901], [0.0319729819893837, 0.02228666841983795, 0.0232565738260746, 0.02562052384018898, 0.021012352779507637, 0.027559524402022362, 0.020890893414616585, 0.07634176313877106], [0.016723942011594772, 0.011417727917432785, 0.007595948409289122, 0.02660720981657505, 0.03540116921067238, 0.038540177047252655, 0.01873904839158058, 0.0010234653018414974], [0.013986077159643173, 0.012742975726723671, 0.013676805421710014, 0.022733399644494057, 0.020076457411050797, 0.02279636636376381, 0.023109592497348785, 0.056314706802368164], [0.029224565252661705, 0.009517844766378403, 0.010138439014554024, 0.05474145710468292, 0.034425996243953705, 0.017445022240281105, 0.015107192099094391, 0.01829385571181774], [0.0244514849036932, 0.018658295273780823, 0.005730919074267149, 0.11969494074583054, 0.023751411586999893, 0.05797486752271652, 0.003649243153631687, 0.007352083455771208], [0.04565241187810898, 0.018964026123285294, 0.028694765642285347, 0.027565328404307365, 0.03266844525933266, 0.037144891917705536, 0.016734721139073372, 0.03268992155790329], [0.011589981615543365, 0.019597677513957024, 0.0017998183611780405, 0.012662512250244617, 0.008410376496613026, 0.021716704592108727, 0.016524679958820343, 0.0001418645988451317], [0.00919436477124691, 0.004470595624297857, 0.009378609247505665, 0.010524829849600792, 0.01043486874550581, 0.019735919311642647, 0.008899723179638386, 0.001511107780970633]], [[0.023439422249794006, 0.04026693105697632, 0.026047907769680023, 0.023394061252474785, 0.05324985086917877, 0.01479105744510889, 0.019583487883210182, 0.02665235474705696], [0.003583453129976988, 0.019389398396015167, 0.005982087459415197, 0.004441962111741304, 0.004561947658658028, 0.0007211402407847345, 0.007333206012845039, 0.0002913186326622963], [0.0019126191036775708, 0.004298180341720581, 0.00032235425896942616, 9.852810035226867e-05, 0.0006160056218504906, 0.00030618280288763344, 0.00010265781747875735, 0.00027038660482503474], [0.0021361846011132, 0.016677897423505783, 0.014800668694078922, 0.0028928909450769424, 0.0005878520314581692, 0.001204014988616109, 0.00043835901306010783, 0.0006426859763450921], [0.0019668610766530037, 0.0009451291407458484, 0.012885362841188908, 0.056752391159534454, 0.004813986364752054, 0.0029920327942818403, 0.0012678267667070031, 0.003586124163120985], [0.000274136895313859, 0.0015084922779351473, 0.00021697493502870202, 0.006742208264768124, 0.003178044455125928, 0.002103708451613784, 0.00017256222781725228, 0.0006945595378056169], [0.0019184118136763573, 1.1265839930274524e-05, 5.301832061377354e-05, 2.1885936803300865e-05, 7.566863473584817e-07, 0.00012025000614812598, 1.2447904737200588e-05, 3.0048226108192466e-05], [0.00859396904706955, 0.005169601645320654, 0.00016499900084454566, 0.00032435308094136417, 0.00011302684288239107, 0.0012292881729081273, 0.00026034965412691236, 0.00041327576036565006], [0.01315589714795351, 0.003399125300347805, 0.003103874158114195, 0.0008009437005966902, 0.00011767839168896899, 0.00014725646178703755, 4.433339199749753e-05, 2.0980391127523035e-05]], [[0.0026334223803132772, 0.07959385216236115, 0.005817516706883907, 0.1497550904750824, 0.031208788976073265, 0.019496599212288857, 0.010442382656037807, 0.03401554748415947], [0.02326391264796257, 0.02260420098900795, 0.01761590875685215, 0.006955130957067013, 0.010127308778464794, 0.008846303448081017, 0.017809618264436722, 0.007156712934374809], [0.026195261627435684, 0.0027917984407395124, 0.0498599074780941, 0.026894720271229744, 0.10260621458292007, 0.0195894967764616, 0.003518287790939212, 0.02945900708436966], [0.005355661269277334, 0.008300283923745155, 0.006190975196659565, 0.007199685089290142, 0.004158606752753258, 0.015873489901423454, 0.010205147787928581, 0.003989442251622677], [0.014547049067914486, 0.006147957872599363, 0.009481131099164486, 0.011048650369048119, 0.009451921097934246, 0.03990714251995087, 0.008042896166443825, 0.012946530245244503], [0.02710365317761898, 0.017612215131521225, 0.04142763838171959, 0.016874289140105247, 0.04132341593503952, 0.02388180047273636, 0.010554374195635319, 0.04295368120074272], [0.01091250404715538, 0.012680169194936752, 0.019383061677217484, 0.007540566381067038, 0.01482369378209114, 0.009787033312022686, 0.009432034566998482, 0.019100753590464592], [0.04453102499246597, 0.029573574662208557, 0.04475005716085434, 0.019740616902709007, 0.02711784467101097, 0.04582895338535309, 0.03775162249803543, 0.04607353359460831], [0.0003252702590543777, 0.01323314942419529, 0.0011480662506073713, 0.0008952190401032567, 0.0003345238510519266, 0.0024672735016793013, 0.0018658393528312445, 0.00218773540109396]], [[2.4740964363445528e-05, 0.0006135533330962062, 0.0031444982159882784, 0.0003683871473185718, 0.00017555931117385626, 7.470789569197223e-05, 0.0013607771834358573, 0.6999736428260803], [0.0036370456218719482, 0.010267579928040504, 0.00218258542008698, 0.005212061107158661, 0.012401428073644638, 0.002899571554735303, 0.008493664674460888, 0.0004806677170563489], [0.0030751919839531183, 0.0030450355261564255, 0.0010525588877499104, 0.003112898673862219, 0.007238247897475958, 0.009245934896171093, 0.0015897175762802362, 0.00031523313373327255], [0.007323973346501589, 0.004209441598504782, 0.0030876509845256805, 0.0154345678165555, 0.023224053904414177, 0.0007701454451307654, 0.008718673139810562, 0.00019485618395265192], [0.015555096790194511, 0.003240046324208379, 0.002364320680499077, 0.009810944087803364, 0.009992782957851887, 0.0017093762289732695, 0.0024366870056837797, 4.321666347095743e-05], [0.009461781941354275, 0.0010100621730089188, 0.0009106516372412443, 0.013249075971543789, 0.01028874795883894, 0.00420496566221118, 0.0005801247316412628, 5.738190156989731e-05], [0.01956940069794655, 0.0040082307532429695, 0.009477389045059681, 0.018582522869110107, 0.05924008786678314, 0.012405281886458397, 0.0034569555427879095, 0.000148552397149615], [0.02425185963511467, 0.01198923122137785, 0.011240901425480843, 0.0031097654718905687, 0.0028721927665174007, 0.01974177360534668, 0.004250083584338427, 0.0008503730059601367], [0.04962540045380592, 0.01674911007285118, 0.15991328656673431, 0.04218771681189537, 0.05088194087147713, 0.06612319499254227, 0.030405566096305847, 0.004429609049111605]]], [[[0.012828328646719456, 0.006657484918832779, 0.0055929021909832954, 0.007443425711244345, 0.003951537888497114, 0.0024434442166239023, 0.0033005631994456053, 0.09653487801551819], [0.006758406292647123, 0.0011488659074530005, 0.0007718694978393614, 0.001132420264184475, 0.0007442851783707738, 0.00030478578992187977, 0.0005385232507251203, 0.1021210327744484], [0.006289962213486433, 0.0059830788522958755, 0.004073913209140301, 0.002104290062561631, 0.0010259129339829087, 0.0005240275640971959, 0.0002769042912404984, 0.003086149226874113], [0.14787907898426056, 0.02151949517428875, 0.0031485676299780607, 0.0046502891927957535, 0.008991790004074574, 0.007363536395132542, 0.002457389375194907, 0.004310287069529295], [0.0477716326713562, 0.012031198479235172, 0.007923559285700321, 0.014606311917304993, 0.0023776490706950426, 0.002137018134817481, 0.0008437778451479971, 0.0022160594817250967], [0.020975718274712563, 0.014098751358687878, 0.006800937000662088, 0.00822970550507307, 0.0018139125313609838, 0.0017884612316265702, 0.001977817388251424, 0.0038180428091436625], [0.09786100685596466, 0.010012742131948471, 0.01042100414633751, 0.020670607686042786, 0.005555460229516029, 0.005415540188550949, 0.0021889323834329844, 0.01299986056983471], [0.07395793497562408, 0.018989522010087967, 0.01504137646406889, 0.02558129094541073, 0.0068090385757386684, 0.004267056472599506, 0.013145030476152897, 0.04050413891673088], [0.010830081067979336, 0.0018767962465062737, 0.001406803959980607, 0.001417699153535068, 0.0010427485685795546, 0.0002791360893752426, 0.00020951115584466606, 0.0007252647774294019]], [[0.003660280955955386, 0.0010702796280384064, 0.00267069973051548, 0.0035881618969142437, 0.005693497601896524, 0.0035346068907529116, 0.0018381420522928238, 0.029535597190260887], [0.00036444494617171586, 3.25585606333334e-05, 2.79550895356806e-05, 2.9101092877681367e-05, 3.9847553125582635e-05, 5.077746027382091e-05, 3.528599108904018e-06, 3.730615571839735e-05], [0.0016282694414258003, 0.00010966626723529771, 3.3055210224119946e-05, 8.349178096977994e-05, 1.1528873073984869e-05, 5.186936687096022e-05, 3.2471805752720684e-05, 0.0001368197990814224], [0.002448765793815255, 0.00015015737153589725, 0.001129818963818252, 0.00010489134001545608, 7.976889901328832e-05, 0.00013148282596375793, 3.22655905620195e-05, 0.0005127229378558695], [0.000315505254548043, 1.8634178559295833e-05, 0.004917223937809467, 0.00012365241127554327, 4.237943721818738e-05, 0.00017242750618606806, 0.00014038177323527634, 0.0023138895630836487], [7.857527816668153e-05, 6.276907242863672e-06, 6.2852877817931585e-06, 0.00010676040983526036, 5.278475146042183e-05, 3.7783367588417605e-05, 9.50717439991422e-05, 0.001634836895391345], [2.7234320441493765e-05, 8.475791219098028e-06, 0.00015581303159706295, 0.00015729408187326044, 0.0011690135579556227, 5.669281381415203e-05, 0.00016572343884035945, 0.004159883130341768], [0.0023305239155888557, 0.0003047142818104476, 0.0001762459723977372, 0.0015969412634149194, 0.004433896392583847, 0.001325238379649818, 0.0010602757101878524, 0.009006074629724026], [0.0009648748091422021, 1.688771226326935e-05, 3.3469716527179116e-06, 1.0593680599413346e-05, 2.3963213607203215e-05, 1.704150599834975e-05, 2.8868830668216106e-06, 7.236194505821913e-05]], [[1.35425289045088e-05, 1.1349892474754597e-06, 2.4876499082893133e-05, 5.181487267691409e-06, 4.688846820499748e-05, 1.3019774087297264e-05, 3.3104165595432278e-06, 3.225059845135547e-05], [4.8199296116824275e-12, 7.507496957003673e-14, 1.364648682684183e-13, 1.21502970445303e-12, 9.09517686858985e-12, 4.394645758409865e-11, 8.093931747705715e-14, 0.0065079620108008385], [1.3559458977852046e-07, 7.147400726825737e-11, 3.397338562815405e-13, 6.513183191430216e-15, 5.192420492765228e-17, 3.594293265796189e-12, 3.731144896084587e-14, 3.875924026175426e-10], [1.475635585945767e-12, 4.228627725755274e-10, 1.2593409821903823e-11, 5.000276722625513e-14, 1.238122140924359e-15, 6.925083878735194e-14, 9.1514862636706e-15, 2.93911339710462e-10], [1.0979859599649644e-12, 1.7454149375952877e-15, 3.145248950175983e-09, 1.821642100672486e-14, 1.6304959769494753e-12, 1.5849924030994804e-15, 5.612808259619281e-14, 3.4754887856536243e-09], [2.127676949459103e-17, 5.345292893206566e-15, 5.917247486268706e-13, 2.375515062436051e-10, 5.136434055863504e-10, 2.9389792682854576e-11, 8.277491647841473e-13, 4.442789759195875e-06], [2.3540642062779234e-17, 7.126719301338613e-25, 2.448989567402712e-16, 1.5626280863140067e-16, 1.6481727094230791e-10, 7.419276463843888e-16, 2.4820565094362135e-17, 5.739518544001189e-16], [3.804324392265917e-15, 6.027423586935047e-17, 1.3984100368862222e-18, 1.7570112031961571e-12, 2.003625130392317e-12, 2.1574479702746174e-10, 7.453508771011579e-15, 4.912495323722288e-12], [3.527200533426367e-05, 9.416418952511754e-17, 4.360459967411726e-15, 1.809690391671345e-16, 1.2652847519722954e-12, 1.009537180414466e-12, 1.8396963368926683e-13, 5.700012927341248e-15]], [[0.013301149010658264, 0.0077605461701750755, 0.013062524609267712, 0.012182185426354408, 0.021070564165711403, 0.007635727524757385, 0.010611308738589287, 0.04023851454257965], [0.00020162669534329325, 0.0012812917120754719, 0.0029853179585188627, 0.0005285842344164848, 0.00023236988636199385, 0.0008858073852024972, 0.00021149087115190923, 0.0017296596197411418], [3.9932550862431526e-05, 3.187872425769456e-05, 7.340813317568973e-05, 7.717863627476618e-05, 2.593474528111983e-05, 0.002406905870884657, 2.8805574402213097e-05, 0.003658830188214779], [0.0007836133008822799, 0.0019296242389827967, 0.0032756892032921314, 0.002491659950464964, 0.0004455614252947271, 0.00024836932425387204, 0.0004241968272253871, 0.015284932218492031], [0.0002616133715491742, 4.450437336345203e-05, 0.0017202859744429588, 0.0003087419318035245, 0.00047019548946991563, 0.00026256879209540784, 0.0014795943861827254, 0.006532443221658468], [0.00012364305439405143, 0.00030478736152872443, 8.412752504227683e-05, 0.00044975971104577184, 0.00020423531532287598, 0.0006169237312860787, 0.0003424381138756871, 0.028390269726514816], [9.979544847737998e-05, 1.600839095772244e-05, 3.708043368533254e-05, 1.3899812074669171e-06, 1.0249133083561901e-05, 1.7678674339549616e-05, 1.8422400898998603e-05, 0.00034701148979365826], [0.029326019808650017, 0.006909247953444719, 0.0010558917419984937, 0.001110812765546143, 0.0002692130801733583, 0.0013846646761521697, 0.0005927095771767199, 0.017452197149395943], [0.00603360403329134, 0.002171572297811508, 0.0023209508508443832, 0.00017480627866461873, 3.198076956323348e-05, 1.4696759535581805e-05, 1.0519379429752007e-05, 0.0006798626272939146]], [[5.1056675147265196e-05, 5.5865521062514745e-06, 4.5394292101264e-05, 5.57652092538774e-05, 0.00024598665186204016, 0.00025159225333482027, 6.50939327897504e-05, 0.0059081739746034145], [6.281051412315719e-08, 3.7893823900958523e-07, 6.439719868467364e-07, 2.0168966496925123e-09, 1.6085531795440033e-09, 1.2656582726311427e-10, 3.04882030732756e-09, 7.335481910786257e-08], [3.695548311810626e-10, 3.671797088600215e-08, 6.804237273172475e-06, 7.631212611158844e-06, 3.785282842727611e-08, 1.2182895581247521e-08, 4.082504299895984e-12, 5.236968718236312e-06], [3.958717322726695e-15, 1.1113107829807678e-11, 8.269280016293123e-08, 1.0931212273135316e-05, 1.5374325812445022e-05, 1.5234522976470544e-08, 7.316957803538138e-12, 1.6359697596612932e-08], [1.2823685798142581e-14, 1.2882969117960207e-17, 4.103716498560228e-12, 1.4342118603849485e-09, 9.564984111420927e-07, 1.5141912168559202e-09, 1.2919617632667357e-12, 1.3474682480918432e-10], [1.27425210682576e-13, 6.690619229704573e-15, 5.625537026058322e-16, 6.16997728949964e-12, 2.721539105188242e-10, 1.069576649470605e-09, 7.119462137883392e-12, 2.1790073911898133e-10], [6.681837930955226e-06, 8.784787066079373e-15, 7.419378425434914e-15, 5.240268600450147e-14, 5.104410227829703e-10, 2.7146327408189563e-09, 1.6195658147921677e-09, 1.612212030543958e-09], [0.0035647419281303883, 1.7849451978690922e-05, 3.0845964671399884e-11, 6.780086908575456e-11, 2.4968964396077098e-11, 7.69648238474474e-08, 4.4828155409959436e-08, 1.0285099278917187e-06], [0.07340732961893082, 6.836831971668289e-07, 4.149583219259512e-06, 1.4148986886633463e-12, 7.536693491516644e-12, 4.740169194661359e-12, 1.550774092473617e-11, 3.890842492637603e-07]], [[0.0032842769287526608, 0.004253109451383352, 0.006838890723884106, 0.002599535509943962, 0.011256331577897072, 0.008555570617318153, 0.002235301537439227, 0.0029058922082185745], [0.04705985635519028, 0.043424081057310104, 0.0070302775129675865, 0.010759469121694565, 0.009716746397316456, 0.0157957524061203, 0.008702083490788937, 0.011095934547483921], [0.006005365401506424, 0.002833570120856166, 0.021683407947421074, 0.007548775989562273, 0.04268113523721695, 0.018044063821434975, 0.006976840551942587, 0.018545404076576233], [0.012592713348567486, 0.0042679328471422195, 0.0068765124306082726, 0.005832963157445192, 0.01444137655198574, 0.01589852198958397, 0.004487735219299793, 0.007031257729977369], [0.025903776288032532, 0.0033701432403177023, 0.0076616848818957806, 0.010998652316629887, 0.012767758220434189, 0.02170509472489357, 0.0039957123808562756, 0.004450083244591951], [0.0033742880914360285, 0.0042791469022631645, 0.004489787854254246, 0.004475981462746859, 0.0124308867380023, 0.018316278234124184, 0.003949243109673262, 0.0061368742026388645], [0.01318723801523447, 0.0025726647581905127, 0.0038032219745218754, 0.0030547098722308874, 0.008291657082736492, 0.008166318759322166, 0.0016105305403470993, 0.0033563056495040655], [0.02289278246462345, 0.019575482234358788, 0.030194755643606186, 0.012327072210609913, 0.025540387257933617, 0.027823053300380707, 0.018777035176753998, 0.03125588595867157], [0.0028259160462766886, 0.002181886462494731, 0.0034745356533676386, 0.002745936391875148, 0.004514575935900211, 0.004851344507187605, 0.001148574985563755, 0.001174572971649468]], [[0.008219636976718903, 0.023518644273281097, 0.04498233273625374, 0.010571406222879887, 0.016603585332632065, 0.026691682636737823, 0.050330497324466705, 0.13499043881893158], [0.008587893098592758, 0.033243097364902496, 0.016469962894916534, 0.005892107263207436, 0.008873704820871353, 0.014095144346356392, 0.02834934927523136, 0.03559156134724617], [0.007536351680755615, 0.01829458400607109, 0.04470610246062279, 0.017729828134179115, 0.02007473260164261, 0.02074720710515976, 0.017658770084381104, 0.04548421874642372], [0.006111237220466137, 0.015658603981137276, 0.01747303269803524, 0.01916801743209362, 0.023795347660779953, 0.022851433604955673, 0.0030534700490534306, 0.02804175205528736], [0.002985910512506962, 0.003830861998721957, 0.005278422962874174, 0.006301358807832003, 0.0023673754185438156, 0.007373325526714325, 0.0015319056110456586, 0.013637778349220753], [0.01357713621109724, 0.00540901068598032, 0.015569718554615974, 0.005956452339887619, 0.0009468344505876303, 0.0038878561463207006, 0.015587719157338142, 0.01433385070413351], [0.002250721212476492, 0.00232191220857203, 0.008067918010056019, 0.000833215017337352, 0.0005995264509692788, 0.004286202136427164, 0.0019492965657263994, 0.01738661341369152], [0.0023080070968717337, 0.0048829419538378716, 0.007877598516643047, 0.0034686748404055834, 0.0005604965263046324, 0.003596033900976181, 0.003210047259926796, 0.014957590959966183], [0.0006172613357193768, 0.0017056178767234087, 0.007440407760441303, 0.0018978295847773552, 0.0005519973929040134, 0.005243014544248581, 0.0032876520417630672, 0.01003282330930233]], [[0.001914686756208539, 0.0032124517019838095, 0.0017763579962775111, 0.000871374795679003, 0.002051367424428463, 0.0025103408843278885, 0.0015429703053086996, 0.007353329565376043], [0.01435747742652893, 0.05421922728419304, 0.02296730875968933, 0.02153152972459793, 0.0068146781995892525, 0.010145852342247963, 0.009537152014672756, 0.026327045634388924], [0.0010692670475691557, 0.008543822914361954, 0.03143540397286415, 0.005866530351340771, 0.008571469224989414, 0.020987262949347496, 0.007115433923900127, 0.015125509351491928], [0.0385059155523777, 0.19105876982212067, 0.02594279870390892, 0.006845252588391304, 0.007760895416140556, 0.007776272017508745, 0.1252707540988922, 0.04990566149353981], [0.008990831673145294, 0.04920628294348717, 0.007357138209044933, 0.0024497273843735456, 0.0008408415596932173, 0.002509200247004628, 0.0045184604823589325, 0.04349511116743088], [0.0032091380562633276, 0.0656164288520813, 0.00411161407828331, 0.003682821523398161, 0.0010671907803043723, 0.0027477291878312826, 0.0019078386249020696, 0.03750643879175186], [0.003377969842404127, 0.05162574723362923, 0.022239336743950844, 0.003773950506001711, 0.0024406807497143745, 0.005954192019999027, 0.004451571963727474, 0.07672533392906189], [0.04301990941166878, 0.036015741527080536, 0.024799132719635963, 0.05605807527899742, 0.01838778145611286, 0.03537435829639435, 0.019140124320983887, 0.032650768756866455], [0.0035393075086176395, 0.00794365257024765, 0.0013714618980884552, 0.0011070661712437868, 0.001627924619242549, 0.00333821726962924, 0.0017490566242486238, 0.00665521202608943]], [[0.0026605057064443827, 0.009000306017696857, 0.01042757648974657, 0.005360001232475042, 0.010293062776327133, 0.0031872615218162537, 0.008197681978344917, 0.02246376872062683], [0.000747190264519304, 0.002796000335365534, 0.002933111973106861, 0.0009169327677227557, 0.0008911656332202256, 0.00020687858341261744, 0.004317204933613539, 0.002263969974592328], [0.005582462530583143, 0.002373775467276573, 0.0020448798313736916, 0.0013284224551171064, 0.01117971446365118, 0.014428600668907166, 0.001823707134462893, 0.021724402904510498], [0.0009828616166487336, 0.007196398451924324, 0.019254416227340698, 0.010812829248607159, 0.005125744733959436, 0.004715250805020332, 0.0012710698647424579, 0.0069603631272912025], [0.0006289963494054973, 0.0005470628966577351, 0.0010945165995508432, 0.001985864946618676, 0.001582885510288179, 0.0023982792627066374, 0.011197861284017563, 0.0026686417404562235], [0.001731404336169362, 0.0013607572764158249, 0.0005741699715144932, 0.0009447954944334924, 0.002901238389313221, 0.0007564186817035079, 0.00022216420620679855, 0.002063155872747302], [0.0016027692472562194, 0.00048173958202823997, 0.00042119232239201665, 0.0005566726322285831, 0.0034372766967862844, 0.0009736423962749541, 0.0003709353331942111, 0.011580321937799454], [0.0051125953905284405, 0.0073864213190972805, 0.009928753599524498, 0.015728585422039032, 0.007736681029200554, 0.002530696103349328, 0.004698095843195915, 0.005200940649956465], [0.00035967526491731405, 0.001262657344341278, 0.0012706874404102564, 0.0008979036938399076, 0.0009642917430028319, 0.00011343483492964879, 0.00038954554474912584, 0.0024687419645488262]], [[0.0477592758834362, 0.024808010086417198, 0.029793299734592438, 0.01637670025229454, 0.013817003928124905, 0.0061633531004190445, 0.012795994058251381, 0.09546954929828644], [0.01997598260641098, 0.019254615530371666, 0.02283354476094246, 0.015857456251978874, 0.02877051569521427, 0.024520542472600937, 0.029684290289878845, 0.19102467596530914], [0.005172321107238531, 0.05202239379286766, 0.0599580779671669, 0.0017671817913651466, 0.01614348217844963, 0.014242874458432198, 0.018999941647052765, 0.14090104401111603], [0.013882714323699474, 0.03836634010076523, 0.032069891691207886, 0.004672692157328129, 0.010478120297193527, 0.0032568827737122774, 0.022733552381396294, 0.19115287065505981], [0.00625128298997879, 0.026458971202373505, 0.023577969521284103, 0.008739727549254894, 0.01095854677259922, 0.020010443404316902, 0.011110113933682442, 0.19696158170700073], [0.004436826799064875, 0.03852701932191849, 0.08026958256959915, 0.005283876322209835, 0.03645509108901024, 0.040931928902864456, 0.01553935743868351, 0.20703327655792236], [0.0003048207436222583, 0.006129890214651823, 0.003425778355449438, 0.001119274995289743, 0.004436238668859005, 0.0029371757991611958, 0.00416212622076273, 0.17513884603977203], [0.03225841745734215, 0.013813583180308342, 0.02071741595864296, 0.01739857718348503, 0.024038037285208702, 0.04033084586262703, 0.029226355254650116, 0.15415368974208832], [0.052099354565143585, 0.025296296924352646, 0.040977224707603455, 0.03595142066478729, 0.044560398906469345, 0.024285128340125084, 0.019443849101662636, 0.10577233135700226]], [[0.018601419404149055, 0.01195479929447174, 0.017571862787008286, 0.03227439522743225, 0.014315432868897915, 0.009152935817837715, 0.019747136160731316, 0.44194403290748596], [0.06306277960538864, 0.009938867762684822, 0.027706030756235123, 0.014983905479311943, 0.010762662626802921, 0.00418244069442153, 0.005504508037120104, 0.052140891551971436], [0.04223991930484772, 0.008862549439072609, 0.034561045467853546, 0.04788665845990181, 0.03858169913291931, 0.030462663620710373, 0.004667768720537424, 0.013723610900342464], [0.01799362152814865, 0.03737979754805565, 0.02985372766852379, 0.017130425199866295, 0.02200266160070896, 0.01299415621906519, 0.006473066285252571, 0.02709820866584778], [0.010565543547272682, 0.00266649154946208, 0.006114508491009474, 0.007601200602948666, 0.007083969656378031, 0.0029878446366637945, 0.002527581760659814, 0.02108660526573658], [0.03231349214911461, 0.004474566783756018, 0.00917704775929451, 0.014867352321743965, 0.022781047970056534, 0.007837261073291302, 0.004463817458599806, 0.025567548349499702], [0.003178230719640851, 0.0034053113777190447, 0.0029300337191671133, 0.004756912123411894, 0.007815472781658173, 0.008469609543681145, 0.0030167042277753353, 0.014150852337479591], [0.07136626541614532, 0.03025778755545616, 0.0460725836455822, 0.024612154811620712, 0.01792958751320839, 0.013087261468172073, 0.007668165490031242, 0.03848179802298546], [0.030065657570958138, 0.0035236235707998276, 0.007906991988420486, 0.006021547131240368, 0.007876724936068058, 0.003299053991213441, 0.005652575753629208, 0.12830035388469696]], [[0.07249888777732849, 0.04246753454208374, 0.058487556874752045, 0.056250590831041336, 0.05078359320759773, 0.049788471311330795, 0.0382404625415802, 0.05821827054023743], [0.03390298783779144, 0.01596452109515667, 0.0435335636138916, 0.01744716987013817, 0.021830270066857338, 0.027046184986829758, 0.0157967247068882, 0.05616976320743561], [0.010216470807790756, 0.006880542263388634, 0.015377227216959, 0.02915443666279316, 0.02698325365781784, 0.03277679905295372, 0.02056245319545269, 0.08046623319387436], [0.09598302841186523, 0.010058676823973656, 0.04970911145210266, 0.03134823217988014, 0.03427494689822197, 0.053327612578868866, 0.03709784522652626, 0.0277975145727396], [0.04177732393145561, 0.008323014713823795, 0.08298651874065399, 0.008997861295938492, 0.017226438969373703, 0.009730478748679161, 0.0076748076826334, 0.04565189406275749], [0.06629233807325363, 0.021415511146187782, 0.041560862213373184, 0.0216192826628685, 0.04996025562286377, 0.0258440300822258, 0.011483612470328808, 0.0548895038664341], [0.03227950260043144, 0.0084602115675807, 0.0704965889453888, 0.016363631933927536, 0.008549617603421211, 0.013112160377204418, 0.0107195395976305, 0.060239389538764954], [0.028466304764151573, 0.013219913467764854, 0.03698974847793579, 0.026138199493288994, 0.053603410720825195, 0.021687759086489677, 0.0411180704832077, 0.04181830585002899], [0.05870107188820839, 0.028977826237678528, 0.037805333733558655, 0.054174941033124924, 0.033762793987989426, 0.02283877320587635, 0.026870692148804665, 0.028424501419067383]]], [[[0.022302372381091118, 0.043861303478479385, 0.011156735941767693, 0.0245597492903471, 0.004603949375450611, 0.0038147231098264456, 0.02780424803495407, 0.05088333785533905], [0.013612714596092701, 0.04531298950314522, 0.013159109279513359, 0.01894041895866394, 0.0022922256030142307, 0.0018899071728810668, 0.005071460269391537, 0.015281840227544308], [0.011107896454632282, 0.006723277736455202, 0.0013152105966582894, 0.018898582085967064, 0.003657741704955697, 0.013297272846102715, 0.0014744699001312256, 0.05977644398808479], [0.005837828852236271, 0.026597993448376656, 0.03644804656505585, 0.00785502977669239, 0.0005335125606507063, 0.00025057175662368536, 0.004023133777081966, 0.002125779166817665], [0.012875119224190712, 0.008049319498240948, 0.015101907774806023, 0.012054195627570152, 0.0011627222411334515, 0.000563008536119014, 0.008045155555009842, 0.002797310473397374], [0.0143564622849226, 0.007434335071593523, 0.009912626817822456, 0.011083364486694336, 0.003885942278429866, 0.00208507152274251, 0.008306787349283695, 0.005128646735101938], [0.010793130844831467, 0.007235290016978979, 0.011028170585632324, 0.0046798549592494965, 0.0009857806144282222, 0.00011326972162351012, 0.02063368633389473, 0.00091942009748891], [0.025131117552518845, 0.024896914139389992, 0.014240911230444908, 0.00902417954057455, 0.003260604804381728, 0.0013814592966809869, 0.015226085670292377, 0.006830764468759298], [0.010960976593196392, 0.004601067863404751, 0.004442916251718998, 0.005712913349270821, 0.0007291765650734305, 0.0007241361308842897, 0.0036139606963843107, 0.0039633456617593765]], [[0.019164158031344414, 0.034623999148607254, 0.040964607149362564, 0.010998984798789024, 0.07520788908004761, 0.03389676660299301, 0.08578357100486755, 0.2030480057001114], [0.005514114163815975, 0.01869751326739788, 0.0015216560568660498, 0.0007400493486784399, 0.0031062287744134665, 0.0019343933090567589, 0.011887768283486366, 0.04155036062002182], [0.004172870423644781, 0.0018810393521562219, 0.000216798041947186, 0.00030662701465189457, 0.0030485582537949085, 0.0008845346746966243, 0.004338380414992571, 0.0985165685415268], [0.014224136248230934, 0.024202097207307816, 0.0031307926401495934, 0.0019311335636302829, 0.03346136584877968, 0.001373190782032907, 0.03842684626579285, 0.027141958475112915], [0.006522782146930695, 0.0011998129775747657, 0.0017976046074181795, 0.02926289290189743, 0.0070022395811975, 0.001948303310200572, 0.0015431599458679557, 0.04491274058818817], [0.0011152173392474651, 0.00046246341662481427, 0.0007048386614769697, 0.00024133393890224397, 0.004020757973194122, 0.0014535851078107953, 0.003951926715672016, 0.035147469490766525], [0.0022656195797026157, 0.006693446077406406, 0.001294752350077033, 0.002201332012191415, 0.0014744959771633148, 0.0006546106887981296, 0.0012760474346578121, 0.03316907584667206], [0.0327131561934948, 0.04305531829595566, 0.01102403923869133, 0.013256549835205078, 0.024074526503682137, 0.00987568125128746, 0.031168457120656967, 0.05977753922343254], [0.003188671311363578, 0.004592030309140682, 0.001247798791155219, 0.0004021433705929667, 0.008964680135250092, 0.0014624991454184055, 0.012995840050280094, 0.043634504079818726]], [[0.3097091019153595, 0.0364307276904583, 0.02144465781748295, 0.03611835464835167, 0.04168879985809326, 0.018086425960063934, 0.03709793463349342, 0.06358738988637924], [0.0170094296336174, 0.03624677658081055, 0.019100148230791092, 0.01108310092240572, 0.026370098814368248, 0.022499585524201393, 0.004521022085100412, 0.008310568518936634], [0.0007728811469860375, 0.01601817086338997, 0.010109257884323597, 0.001657823333516717, 0.0016253077192232013, 0.009594626724720001, 0.0018021098803728819, 0.0010666298912838101], [0.018290143460035324, 0.07670951634645462, 0.027966663241386414, 0.01960626430809498, 0.028858521953225136, 0.035123687237501144, 0.00953949149698019, 0.002219011075794697], [0.0007239445112645626, 0.0043886261992156506, 0.008659426122903824, 0.000407509010983631, 0.0028253772761672735, 0.008663775399327278, 0.0006861094734631479, 0.0009364447323605418], [0.0007010713452473283, 0.010957865975797176, 0.006696528289467096, 0.001869760686531663, 0.0015118465526029468, 0.01242093462496996, 0.0005763688823208213, 0.0015355368377640843], [0.0008978701662272215, 0.009406577795743942, 0.03075648471713066, 0.001903757220134139, 0.005021379794925451, 0.01724247634410858, 0.0021622073836624622, 0.010176380164921284], [0.017461303621530533, 0.019272973760962486, 0.0266261026263237, 0.015617902390658855, 0.022518768906593323, 0.0036819051019847393, 0.017316684126853943, 0.03865256905555725], [0.004238551948219538, 0.00707376841455698, 0.015346447005867958, 0.003231395734474063, 0.00975171197205782, 0.0037738943938165903, 0.0019818206783384085, 0.0012094136327505112]], [[0.005640462040901184, 0.0043085734359920025, 0.004060355946421623, 0.008057504892349243, 0.009216810576617718, 0.006843645591288805, 0.013159217312932014, 0.10907569527626038], [0.0009886649204418063, 0.0014647089410573244, 0.0021933538373559713, 0.0005162816378287971, 0.00037877087015658617, 0.00017860450316220522, 0.0008612748351879418, 0.0009478495921939611], [0.00015931884991005063, 0.00016934095765464008, 0.00022205487766768783, 0.0016439077444374561, 0.001120731234550476, 0.0002189180813729763, 0.0011454833438619971, 0.014147806912660599], [0.00020244077313691378, 8.737038297113031e-05, 0.0003801225684583187, 0.003071874612942338, 0.017686055973172188, 0.0035992234479635954, 0.0017139840638265014, 0.013715008273720741], [2.2825843188911676e-05, 1.4719857972522732e-05, 5.231525847193552e-06, 0.0014829125721007586, 0.0001251043431693688, 0.00023160403361544013, 0.00025381791056133807, 0.0016839680029079318], [0.0009941611206158996, 0.00025643015396781266, 3.041134732484352e-05, 0.0021528557408601046, 0.0004836696607526392, 0.001114178798161447, 0.0004480742500163615, 0.0053592342883348465], [0.0028625503182411194, 0.0006282955291680992, 1.543108191981446e-05, 0.00041611684719100595, 4.507028279476799e-05, 0.00018130823445972055, 0.00011334386363159865, 0.003554614493623376], [0.11453909426927567, 0.031752388924360275, 0.0026793505530804396, 0.0011193726677447557, 0.0008053377969190478, 0.001154088880866766, 0.0009438367560505867, 0.008699722588062286], [0.005200414452701807, 0.0019855231512337923, 0.0007284999010153115, 0.00019032112322747707, 5.707058880943805e-05, 2.724666046560742e-05, 8.845505362842232e-05, 0.0009204759262502193]], [[0.0014763184590265155, 0.0013993160100653768, 0.0013031117850914598, 0.0026500681415200233, 0.002508195349946618, 0.0011464474955573678, 0.0027528086211532354, 0.018266746774315834], [0.0037771102506667376, 0.0004201025585643947, 1.952280945261009e-05, 3.7738984246971086e-05, 1.6232061170740053e-05, 2.1951214876025915e-05, 0.00020372123981360346, 0.00039198403828777373], [0.009586002677679062, 0.0005006412975490093, 0.00014171192015055567, 0.00028805973124690354, 6.761758413631469e-05, 0.00013069888518657535, 0.000522487738635391, 0.0038903942331671715], [0.0011821899097412825, 0.001655652653425932, 0.00015697117487434298, 0.0012310550082474947, 0.0004780261078849435, 0.0008851875318214297, 0.0004430878907442093, 0.005100049078464508], [7.51363841118291e-05, 5.014517228119075e-05, 0.0004029714036732912, 0.00018296969938091934, 0.0011074799112975597, 0.00011250215902691707, 0.00046336802188307047, 0.005876149982213974], [2.5512426873319782e-05, 1.954131221282296e-05, 6.062111788196489e-05, 0.0001494393654866144, 0.00040767790051177144, 6.688174471491948e-05, 0.0002183979086112231, 0.014116551727056503], [2.3687292923568748e-05, 9.652789231040515e-06, 0.00014789635315537453, 8.100362174445763e-05, 0.0005806274130009115, 7.68949612393044e-05, 0.00022560838260687888, 0.005111573729664087], [0.00020314754510764033, 0.00010977837519021705, 4.61096569779329e-05, 0.0004139691009186208, 0.0008369717979803681, 0.00028542723157443106, 0.0007192555349320173, 0.0045946016907691956], [0.00017296920123044401, 1.1985094715782907e-05, 2.2545780211657984e-06, 9.408482583239675e-06, 9.158355169347487e-06, 3.9623714656045195e-06, 2.531175960029941e-05, 0.0007122426759451628]], [[0.05664479732513428, 0.026932552456855774, 0.05179768428206444, 0.027190882712602615, 0.06470070034265518, 0.07086866348981857, 0.11984605342149734, 0.10379039496183395], [0.01266869343817234, 0.011085844598710537, 0.027623886242508888, 0.03671414777636528, 0.029543912038207054, 0.023825420066714287, 0.028190666809678078, 0.06399066746234894], [0.005007362458854914, 0.005136431660503149, 0.0035143813583999872, 0.004742327146232128, 0.04365547373890877, 0.01293324213474989, 0.004330870695412159, 0.17652028799057007], [0.042855385690927505, 0.01931384764611721, 0.013597359880805016, 0.015839267522096634, 0.05947119742631912, 0.009244520217180252, 0.021759919822216034, 0.0677187591791153], [0.031178399920463562, 0.0366213321685791, 0.00939774326980114, 0.013918706215918064, 0.06000952422618866, 0.03888501226902008, 0.015090123750269413, 0.06581655889749527], [0.026558367535471916, 0.005739764776080847, 0.013840556144714355, 0.022642487660050392, 0.12898200750350952, 0.04955184459686279, 0.00797287654131651, 0.1304604709148407], [0.05634895712137222, 0.03208122029900551, 0.0504123829305172, 0.0416836217045784, 0.0623234398663044, 0.03486863896250725, 0.023609913885593414, 0.05875788629055023], [0.017989609390497208, 0.02545297145843506, 0.02230505831539631, 0.022549761459231377, 0.032941050827503204, 0.015017562545835972, 0.034142062067985535, 0.04399494454264641], [0.029269542545080185, 0.026736853644251823, 0.04613800719380379, 0.03177730739116669, 0.04003340005874634, 0.05294112116098404, 0.03267202526330948, 0.06553708016872406]], [[0.0010132133029401302, 0.0018573992419987917, 0.0021541041787713766, 0.0021136924624443054, 0.007822198793292046, 0.0014996201498433948, 0.008735890500247478, 0.030997510999441147], [4.833690336880636e-09, 8.114652416679746e-08, 3.9294722142813043e-08, 7.899159548685475e-09, 3.377479629307345e-09, 5.181800301345962e-12, 4.137807457782472e-11, 1.1337122352017559e-08], [1.2886797376009552e-14, 7.766647741602739e-11, 2.4854626801129598e-08, 1.0230869484928462e-08, 5.4494329049248336e-09, 5.6081311469724504e-12, 1.7548589534635561e-12, 8.678625107449989e-08], [8.539821432791466e-19, 2.2222681865264465e-14, 1.9242945778485954e-11, 2.643016472347881e-08, 4.6661735808584126e-08, 3.351308217481447e-13, 4.0474795823947085e-13, 4.61706922694205e-10], [2.1867818424894936e-20, 2.5121741775112543e-20, 2.0662504774662457e-15, 6.958709303228616e-11, 1.9743777102121385e-07, 7.65698615623478e-12, 5.523978559188007e-14, 3.5566189750257937e-13], [2.253982350882471e-20, 3.780881693350748e-18, 8.838211587627427e-21, 7.180966391111851e-16, 1.1499171061158612e-14, 8.49888031045215e-13, 1.0084179314067548e-13, 1.2828998930888846e-12], [6.335293990529078e-15, 1.1928601007625873e-18, 6.8868317765386e-19, 5.350111557764377e-17, 9.068647796681845e-14, 3.39397319927201e-13, 8.036672022315727e-11, 1.1925148368785443e-10], [1.0836401997948997e-06, 8.793723083044824e-09, 2.01036849521068e-14, 8.753855116911541e-14, 4.725474839987337e-15, 2.1649178283400516e-10, 3.1397637267893685e-10, 1.7409753638730763e-07], [3.852992449537851e-05, 5.320953277987428e-07, 3.422514538442556e-08, 1.5867980540651416e-11, 2.715362101834984e-10, 7.599941726291193e-13, 4.6943437581603575e-08, 1.3796115126751829e-05]], [[0.03220519796013832, 0.017286520451307297, 0.020977260544896126, 0.018596161156892776, 0.005839972291141748, 0.007870838046073914, 0.004911614581942558, 0.035756729543209076], [0.004935264587402344, 0.0031958685722202063, 0.010602833703160286, 0.003001566743478179, 0.0025491933338344097, 0.00433856388553977, 0.0014863472897559404, 0.00038601586129516363], [0.0016666437732055783, 0.0005319021875038743, 0.003815141972154379, 0.0020704681519418955, 0.000967944273725152, 0.003187979105859995, 0.0005086196470074356, 0.0007750251097604632], [0.011753327213227749, 0.002259613713249564, 0.005855126306414604, 0.001898201066069305, 0.0008690456161275506, 0.00139363924972713, 0.00034822712768800557, 0.0006498877773992717], [0.011454530991613865, 0.0021471695508807898, 0.009114529006183147, 0.002691093599423766, 0.0015645851381123066, 0.003315793350338936, 0.00044704400352202356, 0.0011036875657737255], [0.01298792939633131, 0.004090048372745514, 0.006424514576792717, 0.004632594529539347, 0.0026550579350441694, 0.006023467984050512, 0.0009622133802622557, 0.0008641633321531117], [0.01777135580778122, 0.009227383881807327, 0.009185978211462498, 0.003163370070978999, 0.0014642621390521526, 0.0018090787343680859, 0.0009410274215042591, 0.0013262118445709348], [0.020088205114006996, 0.014628589153289795, 0.006271610502153635, 0.0045039597898721695, 0.0015506271738559008, 0.0010628878371790051, 0.0034001225139945745, 0.002208855701610446], [0.006691532675176859, 0.001426843460649252, 0.00310129695571959, 0.0020541688427329063, 0.0004347480717115104, 0.0006546744261868298, 0.0006432244554162025, 0.00968436524271965]], [[0.006038829684257507, 0.014062641188502312, 0.005369545891880989, 0.007208073511719704, 0.014250769279897213, 0.013415188528597355, 0.016677482053637505, 0.11209353059530258], [0.009027216583490372, 0.0709308311343193, 0.01932387799024582, 0.0035592385102063417, 0.012192214839160442, 0.02046065591275692, 0.006793126463890076, 0.14204955101013184], [0.005792947486042976, 0.03025529906153679, 0.012564677745103836, 0.0027609115932136774, 0.009033207781612873, 0.03158942982554436, 0.0019602493848651648, 0.18137414753437042], [0.003959733992815018, 0.02188599668443203, 0.0051724594086408615, 0.0031703878194093704, 0.01515312772244215, 0.010491645894944668, 0.0176838431507349, 0.1394050270318985], [0.01639496348798275, 0.0512174554169178, 0.013398749753832817, 0.0035529788583517075, 0.00910888146609068, 0.0059879012405872345, 0.016754763200879097, 0.17052622139453888], [0.0381644070148468, 0.012454668059945107, 0.023148326203227043, 0.0053474814631044865, 0.006028864532709122, 0.006741642020642757, 0.02624371461570263, 0.238315612077713], [0.01664751023054123, 0.011707759462296963, 0.005985583644360304, 0.008532466366887093, 0.013245580717921257, 0.0024772812612354755, 0.0345623753964901, 0.1353975534439087], [0.03180953115224838, 0.02256588079035282, 0.018395451828837395, 0.010827098973095417, 0.019151100888848305, 0.010898242704570293, 0.03597255423665047, 0.11615926027297974], [0.02380506694316864, 0.03607712313532829, 0.028966717422008514, 0.012602908536791801, 0.0405997633934021, 0.03566276282072067, 0.023394886404275894, 0.11943970620632172]], [[0.0021968164946883917, 0.002057985169813037, 0.0007947196718305349, 0.002507756231352687, 0.00151840690523386, 0.0021910627838224173, 0.0011357461335137486, 0.008624030277132988], [0.007864793762564659, 0.006434972397983074, 0.0027722869999706745, 0.003984807059168816, 0.002128488151356578, 0.0019014875870198011, 0.0064744604751467705, 0.006216733250766993], [0.012368574738502502, 0.0034732106141746044, 0.00234759203158319, 0.006303110159933567, 0.0037920058239251375, 0.004264255985617638, 0.0030035923700779676, 0.015843791887164116], [0.019116826355457306, 0.008781783282756805, 0.0007888870895840228, 0.002466844627633691, 0.002778966212645173, 0.0029416296165436506, 0.004267221782356501, 0.0038125175051391125], [0.03884619101881981, 0.007844607345759869, 0.001682354835793376, 0.0062625776045024395, 0.0018393936334177852, 0.003886400256305933, 0.0013151189778000116, 0.0039236280135810375], [0.0610201470553875, 0.017916876822710037, 0.008008237928152084, 0.01611694134771824, 0.004397506359964609, 0.007689605467021465, 0.002148750936612487, 0.0026276055723428726], [0.033265646547079086, 0.021807251498103142, 0.005573037546128035, 0.016317183151841164, 0.002520807785913348, 0.004758956376463175, 0.003464784473180771, 0.005279782693833113], [0.020905308425426483, 0.024684112519025803, 0.015228666365146637, 0.02734709344804287, 0.008885354734957218, 0.008785221725702286, 0.01299190055578947, 0.0304245725274086], [0.0007462466601282358, 0.0007108491845428944, 0.0004665984015446156, 0.0011221858439967036, 0.0004872485587839037, 0.0009618697222322226, 0.00016233728092629462, 0.0006858899141661823]], [[0.03240775316953659, 0.04215411841869354, 0.0317578949034214, 0.09039811044931412, 0.02919706143438816, 0.07500243186950684, 0.06916675716638565, 0.08192838728427887], [0.007606500294059515, 0.004138293210417032, 0.0018948618089780211, 0.01900690607726574, 0.002498459303751588, 0.005057576112449169, 0.0066720847971737385, 0.013834607787430286], [0.0034374678507447243, 0.001880038995295763, 0.003780041355639696, 0.005703059025108814, 0.006435824558138847, 0.0048405989073216915, 0.005694309249520302, 0.04583141952753067], [0.027165934443473816, 0.0037199168000370264, 0.0040178969502449036, 0.08545336872339249, 0.006317549850791693, 0.03306496515870094, 0.002056002151221037, 0.006320246960967779], [0.009289161302149296, 0.0017756182933226228, 0.00933381263166666, 0.03767690435051918, 0.006524651311337948, 0.037689078599214554, 0.011168084107339382, 0.009390389546751976], [0.023561041802167892, 0.002295850310474634, 0.006923544220626354, 0.049914032220840454, 0.010081931948661804, 0.062146540731191635, 0.012490381486713886, 0.02252999134361744], [0.006369700189679861, 0.002861456712707877, 0.012836974114179611, 0.03677951917052269, 0.020078064873814583, 0.012934664264321327, 0.0032085878774523735, 0.0032736302819103003], [0.0077368044294416904, 0.03836851567029953, 0.010419495403766632, 0.009051177650690079, 0.011220301501452923, 0.001824891776777804, 0.009759859181940556, 0.024173462763428688], [0.004689762368798256, 0.014173009432852268, 0.00405072420835495, 0.0035712451208382845, 0.004917531739920378, 0.001998207764700055, 0.0056523410603404045, 0.030402589589357376]], [[0.018017960712313652, 0.0027146367356181145, 0.00639007706195116, 0.0030325057450681925, 0.0018426241585984826, 0.003650534898042679, 0.015466910786926746, 0.030348103493452072], [0.007382468320429325, 0.0016343558672815561, 0.0013618385419249535, 0.0012899088906124234, 0.0003206930705346167, 0.0010767277562990785, 0.0010599680244922638, 0.019969919696450233], [0.0031423652544617653, 0.0018346847500652075, 0.0006665418623015285, 0.0002872981713153422, 0.00023165806487668306, 0.0016010282561182976, 0.001039514783769846, 0.025297556072473526], [0.016813602298498154, 0.01274928916245699, 0.0047269416972994804, 0.0009576157317496836, 0.00033305323449894786, 0.0006615793099626899, 0.014093714766204357, 0.02356833405792713], [0.009160098619759083, 0.0008684711065143347, 0.003681628266349435, 0.004689417779445648, 0.0008745684172026813, 0.0012711231829598546, 0.0012352277990430593, 0.021390443667769432], [0.024897560477256775, 0.0017804787494242191, 0.001103617250919342, 0.0053433929570019245, 0.002078966936096549, 0.0012750972528010607, 0.0021715799812227488, 0.019984012469649315], [0.010180255398154259, 0.0016431808471679688, 0.010159194469451904, 0.006031869910657406, 0.0005958513356745243, 0.0017177504487335682, 0.004697853699326515, 0.0128809604793787], [0.04021906480193138, 0.010503670200705528, 0.003980573732405901, 0.006058174651116133, 0.0021799185778945684, 0.006940903607755899, 0.016928203403949738, 0.029913997277617455], [0.026653597131371498, 0.002037797588855028, 0.003502677194774151, 0.000982927274890244, 0.0011341494973748922, 0.00118966493755579, 0.0248012263327837, 0.028501315042376518]]], [[[0.05158519744873047, 0.01424491498619318, 0.002449838677421212, 0.0007737547275610268, 0.005300894379615784, 0.0035220577847212553, 0.18150652945041656, 0.32468387484550476], [0.00542669091373682, 0.0006860120338387787, 0.00022843776969239116, 9.289468289352953e-05, 0.0003136755258310586, 0.0005599651485681534, 0.005443323403596878, 0.02392583154141903], [0.011224712245166302, 0.004090744070708752, 0.0018387379823252559, 0.004050412680953741, 0.005808195099234581, 0.00576509814709425, 0.01397284958511591, 0.009014918468892574], [0.019249949604272842, 0.005199807230383158, 0.0004899651976302266, 0.0027296992484480143, 0.0018834671936929226, 0.00445215031504631, 0.00792655535042286, 0.04618237540125847], [0.006114650052040815, 0.0008630385273136199, 0.0009219199419021606, 0.001853808993473649, 0.002416937379166484, 0.002234123181551695, 0.004057653248310089, 0.031959712505340576], [0.009255306795239449, 0.0028513886500149965, 0.0014766352251172066, 0.002761548850685358, 0.006424938794225454, 0.014643428847193718, 0.016654688864946365, 0.043155573308467865], [0.02762390486896038, 0.006497877184301615, 0.00043262660619802773, 0.0012848024489358068, 0.0010005588410422206, 0.003142428584396839, 0.003068478312343359, 0.07983730733394623], [0.019199004396796227, 0.010957010090351105, 0.008268793113529682, 0.006910491269081831, 0.005952821578830481, 0.015182022005319595, 0.014812256209552288, 0.08910740911960602], [0.003393480321392417, 0.0026131565682590008, 0.0015260158106684685, 0.00123747403267771, 0.0019421495962888002, 0.004238874185830355, 0.009388281963765621, 0.02550000511109829]], [[0.2077091932296753, 0.05816683918237686, 0.038307610899209976, 0.0837378203868866, 0.10971680283546448, 0.08714146912097931, 0.0647803470492363, 0.09570956230163574], [0.024452807381749153, 0.03851117193698883, 0.030895743519067764, 0.04019801691174507, 0.02991340309381485, 0.03225291520357132, 0.019992874935269356, 0.019657159224152565], [0.03293030336499214, 0.029222840443253517, 0.05593830719590187, 0.02558274380862713, 0.037739019840955734, 0.02928260713815689, 0.0731109157204628, 0.01587757281959057], [0.017944281920790672, 0.010511543601751328, 0.027916213497519493, 0.028221946209669113, 0.019278112798929214, 0.01726611517369747, 0.09487924724817276, 0.12114499509334564], [0.02435414306819439, 0.00538075203076005, 0.010141677223145962, 0.027629045769572258, 0.005349986720830202, 0.009835605509579182, 0.046852823346853256, 0.13619326055049896], [0.025690626353025436, 0.015467372722923756, 0.0621224045753479, 0.03957696259021759, 0.011829550378024578, 0.02686525508761406, 0.09962642192840576, 0.0373506173491478], [0.02018766663968563, 0.016067024320364, 0.02131885290145874, 0.059587642550468445, 0.01853979006409645, 0.021389342844486237, 0.06646954268217087, 0.02710116095840931], [0.02565612457692623, 0.0212326068431139, 0.030950915068387985, 0.022575564682483673, 0.011437599547207355, 0.010341361165046692, 0.03413999453186989, 0.026072870939970016], [0.009293747134506702, 0.01320483349263668, 0.019396182149648666, 0.007216122001409531, 0.012266108766198158, 0.01598326861858368, 0.030703043565154076, 0.16967728734016418]], [[0.029751181602478027, 0.08388756960630417, 0.01684390939772129, 0.010905494913458824, 0.008169524371623993, 0.019547272473573685, 0.039992909878492355, 0.15347738564014435], [0.012238367460668087, 0.02793825790286064, 0.018263230100274086, 0.006248244550079107, 0.0026568167377263308, 0.024396497756242752, 0.017701826989650726, 0.1969171166419983], [0.028185870498418808, 0.011232460848987103, 0.008648686110973358, 0.02792302519083023, 0.01824497990310192, 0.07378576695919037, 0.021478137001395226, 0.07700925320386887], [0.007812796160578728, 0.019281914457678795, 0.006965617649257183, 0.002313739387318492, 0.0015214583836495876, 0.015322021208703518, 0.004228692036122084, 0.28880825638771057], [0.002567756688222289, 0.005057985428720713, 0.0019221982220187783, 0.0001178562015411444, 0.0001304157340200618, 0.0007722618756815791, 0.0007931552827358246, 0.29586073756217957], [0.009877835400402546, 0.016316941007971764, 0.00472671864554286, 0.003640758339315653, 0.0012654875172302127, 0.011775690130889416, 0.009773808531463146, 0.2677927315235138], [0.00320964097045362, 0.00555385509505868, 0.0017245071940124035, 0.0003018413844984025, 0.0001602540141902864, 0.0019474123837426305, 0.0013394136913120747, 0.31733977794647217], [0.005480817519128323, 0.005988531745970249, 0.003865043167024851, 0.0008568412740714848, 0.001411333796568215, 0.006003897171467543, 0.00617101090028882, 0.22586509585380554], [0.003189969342201948, 0.010203894227743149, 0.005848280619829893, 0.001435308950021863, 0.0023856020998209715, 0.008146295323967934, 0.008177339099347591, 0.22874300181865692]], [[0.059194471687078476, 0.05338602513074875, 0.007604668382555246, 0.010456654243171215, 0.020206967368721962, 0.017974289134144783, 0.057149775326251984, 0.26247018575668335], [0.0038790039252489805, 0.016541559249162674, 0.006355626508593559, 0.0022419635206460953, 0.0024337326176464558, 0.0030229424592107534, 0.01285422220826149, 0.031247351318597794], [0.00176615035161376, 0.0017886348068714142, 0.0007569961016997695, 0.003783921245485544, 0.006175217218697071, 0.0034074848517775536, 0.012553250417113304, 0.1550113558769226], [0.005593448411673307, 0.002628719201311469, 0.0002680444740690291, 0.0023900410160422325, 0.007873853668570518, 0.025948332622647285, 0.012335292994976044, 0.04633917286992073], [0.00319237494841218, 0.0028353265952318907, 0.00036850603646598756, 0.0020457764621824026, 0.002072820905596018, 0.0030148939695209265, 0.0033264944795519114, 0.07360094785690308], [0.02339606173336506, 0.01484100054949522, 0.003204947104677558, 0.006629234179854393, 0.006790592335164547, 0.006227175239473581, 0.006845137104392052, 0.11302994936704636], [0.027805477380752563, 0.012193344533443451, 0.0014383170055225492, 0.004923100583255291, 0.003706008195877075, 0.0033784869592636824, 0.008767195045948029, 0.08217921108007431], [0.13078199326992035, 0.21670503914356232, 0.0280098095536232, 0.012757403776049614, 0.022060109302401543, 0.016466859728097916, 0.03797439858317375, 0.14174333214759827], [0.01123941782861948, 0.008930525742471218, 0.003104404080659151, 0.003805150045081973, 0.004457211121916771, 0.0035507732536643744, 0.010409817099571228, 0.14060157537460327]], [[0.05573498457670212, 0.042020007967948914, 0.02091025374829769, 0.005749198608100414, 0.008787647821009159, 0.009675520472228527, 0.025539932772517204, 0.287315309047699], [0.009514346718788147, 0.008521253243088722, 0.004084935877472162, 0.005067496560513973, 0.00562170147895813, 0.010833547450602055, 0.07247931510210037, 0.10572897642850876], [0.004062136169523001, 0.0056605031713843346, 0.0023208227939903736, 0.0015505142509937286, 0.002558220410719514, 0.004020435269922018, 0.010499661788344383, 0.3563901484012604], [0.00042085308814421296, 0.0010776181006804109, 0.002147944876924157, 0.001498684985563159, 0.0013826601207256317, 0.006192204542458057, 0.00028337270487099886, 0.006360561121255159], [0.0022147917188704014, 0.0018843431025743484, 0.0007442908827215433, 0.0013113131280988455, 0.0008725986699573696, 0.004595724865794182, 0.0025140070356428623, 0.03941816836595535], [0.003924740944057703, 0.005799079779535532, 0.0002189219812862575, 0.0018596570007503033, 0.0005153012461960316, 0.00283996993675828, 0.006714740768074989, 0.32861921191215515], [0.0010964705143123865, 0.0007076399633660913, 0.0006622506771236658, 0.00045109467464499176, 0.0028128265403211117, 0.0014420216903090477, 0.00017094130453187972, 0.01976483315229416], [0.03070741333067417, 0.04692991450428963, 0.01760638877749443, 0.00650670425966382, 0.005804271437227726, 0.00998917780816555, 0.01178609486669302, 0.15588806569576263], [0.012425372377038002, 0.021549394354224205, 0.00817781500518322, 0.0012089208466932178, 0.002642097882926464, 0.007863999344408512, 0.012665115296840668, 0.3232845664024353]], [[0.255292683839798, 0.08275441825389862, 0.009947802871465683, 0.021497810259461403, 0.005891737062484026, 0.010315139777958393, 0.0595274493098259, 0.3115222156047821], [0.02266654558479786, 0.02930597960948944, 0.011637458577752113, 0.004248590208590031, 0.004983082879334688, 0.00925781112164259, 0.024000205099582672, 0.055766358971595764], [0.04424966126680374, 0.016666648909449577, 0.005481308326125145, 0.0052717761136591434, 0.005180803593248129, 0.011721171438694, 0.05326942726969719, 0.016527727246284485], [0.07446525245904922, 0.005305198021233082, 0.0028499134350568056, 0.002666997956112027, 0.002208211924880743, 0.0036699718330055475, 0.0063538155518472195, 0.05628063157200813], [0.01358695887029171, 0.00205828039906919, 0.0011157057015225291, 0.0007620607502758503, 0.0011756200110539794, 0.0014770982088521123, 0.0027024950832128525, 0.024497119709849358], [0.12064123898744583, 0.01496205385774374, 0.004802182782441378, 0.005745191127061844, 0.007228384725749493, 0.008618212305009365, 0.03251977637410164, 0.03031005710363388], [0.032701559364795685, 0.013232419267296791, 0.004794727545231581, 0.0017865468980744481, 0.002480826573446393, 0.001856140443123877, 0.014901673421263695, 0.03634342551231384], [0.020981701090931892, 0.020500166341662407, 0.004532428923994303, 0.0035689889919012785, 0.003243064507842064, 0.004292394034564495, 0.02733711712062359, 0.07538477331399918], [0.0037358247209340334, 0.010208687745034695, 0.013469942845404148, 0.0023829557467252016, 0.008806977421045303, 0.011539126746356487, 0.017326166853308678, 0.06760238856077194]], [[0.07397178560495377, 0.04786080867052078, 0.01626724749803543, 0.027599243447184563, 0.03239141032099724, 0.059635698795318604, 0.18240614235401154, 0.12858480215072632], [0.004507344216108322, 0.009573579765856266, 0.008091576397418976, 0.010833711363375187, 0.006890119519084692, 0.017782362177968025, 0.011639094911515713, 0.07637260109186172], [0.008553984574973583, 0.009689396247267723, 0.0028808119241148233, 0.005259563680738211, 0.004764842800796032, 0.011774441227316856, 0.01401494350284338, 0.13661053776741028], [0.011359469033777714, 0.025728275999426842, 0.02881213091313839, 0.012763477861881256, 0.02961600013077259, 0.03945455700159073, 0.013702438212931156, 0.020897559821605682], [0.008140233345329762, 0.006522328592836857, 0.03023660182952881, 0.0016097958432510495, 0.010630470700562, 0.012144387699663639, 0.022322824224829674, 0.06822306662797928], [0.015065798535943031, 0.022050680592656136, 0.012994340620934963, 0.009115414693951607, 0.01933613047003746, 0.025137923657894135, 0.022907650098204613, 0.031916506588459015], [0.006018065381795168, 0.015656571835279465, 0.035565536469221115, 0.0020494465716183186, 0.006103125866502523, 0.01167663186788559, 0.009029789827764034, 0.05919254943728447], [0.005855523515492678, 0.027749791741371155, 0.008959303610026836, 0.003706427989527583, 0.003476644167676568, 0.0034832917153835297, 0.007415648549795151, 0.11982285976409912], [0.0016312404768541455, 0.0029793318826705217, 0.0016579229850322008, 0.0010355523554608226, 0.0007651904015801847, 0.0016296723624691367, 0.0065324921160936356, 0.2629570960998535]], [[0.04412422329187393, 0.13379958271980286, 0.09820152819156647, 0.1267201006412506, 0.07335173338651657, 0.19282320141792297, 0.22087225317955017, 0.0017239977605640888], [0.0012800769181922078, 0.006285484414547682, 0.0018658335320651531, 0.005999637767672539, 0.000898213591426611, 0.0020877092611044645, 0.008333098143339157, 0.0769166573882103], [0.017318041995167732, 0.02717973105609417, 0.010474808514118195, 0.02076856605708599, 0.0034293895587325096, 0.009962289594113827, 0.028956621885299683, 0.043270375579595566], [0.004043226130306721, 0.008136386051774025, 0.0031762518920004368, 0.011258060112595558, 0.0014403003733605146, 0.0037828453350812197, 0.006951686926186085, 0.07445399463176727], [0.000780194706749171, 0.0014525118749588728, 0.0008472095360048115, 0.0028031363617628813, 0.00034791469806805253, 0.0009374889195896685, 0.0015715241897851229, 0.1384221911430359], [0.001972568454220891, 0.005951384082436562, 0.003608008148148656, 0.00783790647983551, 0.0014839855721220374, 0.00308221485465765, 0.005734744947403669, 0.12071798741817474], [0.0014740314800292253, 0.009163438342511654, 0.002339687431231141, 0.015544865280389786, 0.0010590697638690472, 0.0033047597389668226, 0.006495994981378317, 0.07251261919736862], [0.008199530653655529, 0.0198756642639637, 0.006681375205516815, 0.020344208925962448, 0.007610614411532879, 0.019918302074074745, 0.01168823055922985, 0.05854463577270508], [0.0029826404061168432, 0.004728056490421295, 0.005474678706377745, 0.005925028584897518, 0.0015272676246240735, 0.005571904592216015, 0.006338297855108976, 0.37199029326438904]], [[0.20143471658229828, 0.04430174082517624, 0.00801195576786995, 0.022194521501660347, 0.023148616775870323, 0.03382888436317444, 0.09049656242132187, 0.06652738153934479], [0.028339162468910217, 0.06321700662374496, 0.015988469123840332, 0.005243256688117981, 0.01828606240451336, 0.020151490345597267, 0.11210758984088898, 0.05295104905962944], [0.008812044747173786, 0.02605229988694191, 0.005950480699539185, 0.003843178739771247, 0.018045805394649506, 0.03252892568707466, 0.03702116757631302, 0.06383847445249557], [0.058809179812669754, 0.022429628297686577, 0.025113781914114952, 0.021163804456591606, 0.004183787386864424, 0.01920655556023121, 0.01042927335947752, 0.039394330233335495], [0.018604621291160583, 0.015648480504751205, 0.03786034137010574, 0.012400555424392223, 0.01631971262395382, 0.01638578251004219, 0.020027238875627518, 0.0645337924361229], [0.02494652383029461, 0.005341187585145235, 0.01654711924493313, 0.04616314545273781, 0.00026560816331766546, 0.0020785636734217405, 0.012440221384167671, 0.020131448283791542], [0.022877782583236694, 0.01409536600112915, 0.04498327150940895, 0.006965731270611286, 0.005847529973834753, 0.007901111617684364, 0.02862342819571495, 0.104573093354702], [0.10692145675420761, 0.04204757884144783, 0.021169226616621017, 0.013394113630056381, 0.020619424059987068, 0.018860729411244392, 0.03934461623430252, 0.07767646759748459], [0.07669932395219803, 0.09463126957416534, 0.07032759487628937, 0.05824226513504982, 0.043223559856414795, 0.026333792135119438, 0.06254377216100693, 0.03448179364204407]], [[0.01930788718163967, 0.07602439820766449, 0.009178251959383488, 0.015704216435551643, 0.0034215927589684725, 0.0053702462464571, 0.04171208292245865, 0.19876797497272491], [0.0001553949696244672, 0.0351424366235733, 0.00034968854743056, 0.0008663987391628325, 0.00017870480951387435, 0.0009610105189494789, 0.0028025154024362564, 0.29685696959495544], [0.0017019759397953749, 0.004170809872448444, 1.5877159967203625e-05, 0.00018002472643274814, 0.0009695717017166317, 0.009097996167838573, 0.0026784855872392654, 0.24208037555217743], [0.002631148789077997, 0.0011153884697705507, 0.00145718886051327, 0.00030278589110821486, 0.0006343895802274346, 0.0008347824914380908, 0.05843406915664673, 0.231056809425354], [0.002203787211328745, 0.0006029244395904243, 0.0016555625479668379, 0.0005708352546207607, 4.940937287756242e-05, 1.6163879990926944e-05, 0.0005727290408685803, 0.2623499035835266], [0.0009667730773799121, 0.00019890819385182112, 4.651370181818493e-05, 7.607298175571486e-05, 0.0006661259103566408, 0.00017799067427404225, 0.0018292013555765152, 0.3137113153934479], [0.012380699627101421, 0.0022470541298389435, 0.0030546793714165688, 0.001296443399041891, 0.00011021554382750764, 2.0596973627107218e-05, 0.0009140309994108975, 0.2751358449459076], [0.003723181551322341, 0.015901226550340652, 0.0061441585421562195, 0.005703573115170002, 0.0019398258300498128, 0.0024472379591315985, 0.017573729157447815, 0.2031809538602829], [0.011110741645097733, 0.01596137136220932, 0.005699531175196171, 0.0139088723808527, 0.00915519054979086, 0.017806829884648323, 0.028394008055329323, 0.21065641939640045]], [[0.1815018355846405, 0.010765873827040195, 0.024326590821146965, 0.016497954726219177, 0.010893646627664566, 0.015117834322154522, 0.018350284546613693, 0.3056905269622803], [0.00226025958545506, 0.004792015999555588, 0.004492836073040962, 0.0010328976204618812, 0.0008022096590138972, 0.002699598204344511, 0.005397929809987545, 0.2125798463821411], [0.0038042343221604824, 0.004336316138505936, 0.005305994302034378, 0.0013808937510475516, 0.00198767171241343, 0.007124859374016523, 0.004154199734330177, 0.2574436068534851], [0.0024805362336337566, 0.005857239011675119, 0.01179262064397335, 0.002238689921796322, 0.0008794603636488318, 0.005074869375675917, 0.004582161549478769, 0.13648924231529236], [0.001413102843798697, 0.0033588726073503494, 0.00589297479018569, 0.002967578824609518, 0.0005604822654277086, 0.0030677730683237314, 0.006309079471975565, 0.09878811985254288], [0.0026213431265205145, 0.013192687183618546, 0.018202470615506172, 0.007382223382592201, 0.0019618868827819824, 0.013418799266219139, 0.005354241002351046, 0.06689624488353729], [0.003096112282946706, 0.006595946848392487, 0.012208394706249237, 0.0016734598902985454, 0.00037642274401150644, 0.0032162696588784456, 0.008693660609424114, 0.11494236439466476], [0.006559760309755802, 0.019277941435575485, 0.008613570593297482, 0.004053181037306786, 0.00227136118337512, 0.006634105462580919, 0.024815760552883148, 0.13704797625541687], [0.006021426524966955, 0.011271647177636623, 0.007742289453744888, 0.0027321702800691128, 0.0017309455433860421, 0.0032706332858651876, 0.013799375854432583, 0.20924486219882965]], [[0.02474409155547619, 0.00466509722173214, 0.004022928886115551, 0.002097614575177431, 0.0042184083722531796, 0.0014336570166051388, 0.030124951153993607, 0.37214547395706177], [0.043221037834882736, 0.14786438643932343, 0.009291380643844604, 0.0054242853075265884, 0.003237460507079959, 0.003805671352893114, 0.026077480986714363, 0.17256835103034973], [0.0034173615276813507, 0.02178138494491577, 0.0017446019919589162, 0.0021276427432894707, 0.045160967856645584, 0.03221365436911583, 0.012858804315328598, 0.24728335440158844], [0.016346022486686707, 0.0019607350695878267, 0.0046170842833817005, 0.0024304187390953302, 0.005317733157426119, 0.004196048714220524, 0.09821679443120956, 0.2371426671743393], [0.0030923134181648493, 0.0032360360492020845, 0.008482899516820908, 0.0058883060701191425, 0.006939415819942951, 0.005025846417993307, 0.036787211894989014, 0.2884610891342163], [0.004640206228941679, 0.006814151536673307, 0.00821527186781168, 0.0071725440211594105, 0.009322093799710274, 0.006301621440798044, 0.0319623239338398, 0.2549581825733185], [0.005558896344155073, 0.004034125711768866, 0.002607528818771243, 0.002253395738080144, 0.0027265259996056557, 0.0017540052067488432, 0.017231985926628113, 0.3255261182785034], [0.13152764737606049, 0.011705374345183372, 0.021000642329454422, 0.05724185332655907, 0.046011146157979965, 0.02264517918229103, 0.0858134999871254, 0.12697207927703857], [0.023399515077471733, 0.015143640339374542, 0.02448997274041176, 0.03629350662231445, 0.06455422192811966, 0.018759675323963165, 0.0634353831410408, 0.2062610685825348]]], [[[0.0002145023172488436, 0.0013254826189950109, 0.00035148864844813943, 0.0007792221149429679, 0.0006743393023498356, 0.000960935780312866, 0.0017869849689304829, 0.3738754391670227], [0.0008404847467318177, 0.0022975471802055836, 0.0048073758371174335, 0.010099419392645359, 0.00848411675542593, 0.023126358166337013, 0.005578957032412291, 0.03725787252187729], [0.0006749082240276039, 0.0015658607007935643, 0.0037833349779248238, 0.0038365276996046305, 0.005655630957335234, 0.011002609506249428, 0.0018818125827237964, 0.3677752614021301], [0.008915208280086517, 0.0058303349651396275, 0.007323183119297028, 0.006034854333847761, 0.0032316127326339483, 0.002881755819544196, 0.0003940360329579562, 0.0631793811917305], [0.0011302514467388391, 0.0022162070963531733, 0.00935986079275608, 0.0033115744590759277, 0.008103566244244576, 0.03962770849466324, 0.0007054639863781631, 0.055955443531274796], [0.0017620933940634131, 0.0060837347991764545, 0.004070416558533907, 0.014515632763504982, 0.006130069959908724, 0.06684812158346176, 0.005031967535614967, 0.10466952621936798], [0.0006400452693924308, 0.001183435320854187, 0.0021507628262043, 0.0015978373121470213, 0.0008830464212223887, 0.003773536765947938, 0.0003717515792232007, 0.00622624671086669], [0.008278613910079002, 0.012150119058787823, 0.008223667740821838, 0.006942181382328272, 0.00701279379427433, 0.018046025186777115, 0.004645165055990219, 0.19195625185966492], [0.00048043765127658844, 0.0004840755427721888, 0.0005090604536235332, 0.000877571408636868, 0.000561970635317266, 0.0005855957278981805, 0.002642277395352721, 0.45560210943222046]], [[0.029403721913695335, 0.04501628875732422, 0.013487356714904308, 0.05238167569041252, 0.03203549608588219, 0.01721315085887909, 0.05518418923020363, 0.35697028040885925], [0.0006990835536271334, 0.0030042503494769335, 0.0016487378161400557, 0.0037539382465183735, 0.0025319443084299564, 0.004574748687446117, 0.005559454206377268, 0.30257076025009155], [0.0012595867738127708, 0.001423293026164174, 0.0009203414665535092, 0.0012776433723047376, 0.001001540687866509, 0.0014781435020267963, 0.003450704738497734, 0.2641487717628479], [0.0012927333591505885, 0.004972738213837147, 0.003812238108366728, 0.001470681163482368, 0.00024343901895917952, 0.0005249351379461586, 0.005401398986577988, 0.3318597376346588], [0.0009903975296765566, 0.0023226693738251925, 0.002586232963949442, 0.0006157384486868978, 6.950420356588438e-05, 0.00017569551710039377, 0.003024033736437559, 0.3335783779621124], [0.0015575711149722338, 0.011453396640717983, 0.0009170050616376102, 0.0017110316548496485, 9.99456096906215e-05, 0.0005563996382988989, 0.007068190723657608, 0.35012832283973694], [0.0008454924100078642, 0.00048002315452322364, 0.0008909572497941554, 0.0009645803365856409, 0.00021340344392228872, 0.0007506029214709997, 0.004851281177252531, 0.4198618233203888], [0.0017679514130577445, 0.0040212357416749, 0.003211193485185504, 0.004232272505760193, 0.0037808921188116074, 0.003924116957932711, 0.006890976335853338, 0.30988073348999023], [0.0039240955375134945, 0.006915200036019087, 0.004005827009677887, 0.0034744315780699253, 0.0010585907148197293, 0.0023890682496130466, 0.012573249638080597, 0.36177003383636475]], [[0.021580014377832413, 0.011276914738118649, 0.009882969781756401, 0.00516238808631897, 0.0021049596834927797, 0.007396898698061705, 0.01761094108223915, 0.4425293207168579], [0.007235392462462187, 0.0030585213098675013, 0.0010365747148171067, 0.0016964009264484048, 0.000606441986747086, 0.009456994011998177, 0.006040855310857296, 0.31421080231666565], [0.004304227419197559, 0.0031535611487925053, 0.0004450964042916894, 0.0011390179861336946, 0.0006755361100658774, 0.024200377985835075, 0.004302963148802519, 0.3703804612159729], [0.0483933724462986, 0.0027331318706274033, 0.0028866578359156847, 0.0007129637524485588, 0.0004307494964450598, 0.0022417716681957245, 0.0015804794384166598, 0.3084089159965515], [0.005971364211291075, 0.0009546459186822176, 0.0027351337485015392, 4.728916610474698e-05, 0.000718635565135628, 0.0022134140599519014, 0.0011169197969138622, 0.18102595210075378], [0.0013619221281260252, 0.0001982022513402626, 0.00039412450860254467, 5.013330883230083e-05, 5.638580478262156e-05, 0.0007312584784813225, 0.0002478231326676905, 0.05423804000020027], [0.0026155223604291677, 0.00025410830858163536, 0.0005855978233739734, 1.1566933608264662e-05, 8.825767872622237e-05, 0.00012408426846377552, 9.855776443146169e-05, 0.018279030919075012], [0.009599275887012482, 0.0040978435426950455, 0.003034740686416626, 0.0017333821160718799, 0.0013580142986029387, 0.004341691732406616, 0.0055438741110265255, 0.1997249573469162], [0.01284188125282526, 0.010637428611516953, 0.01088764052838087, 0.006658137310296297, 0.0060299355536699295, 0.0230949018150568, 0.01575629413127899, 0.3914748430252075]], [[0.0008031209581531584, 0.0031141480430960655, 0.001587149454280734, 0.0017294768476858735, 0.0008746676030568779, 0.003912828397005796, 0.001216887729242444, 0.0412583164870739], [0.004115224815905094, 0.0036073909141123295, 0.0016724473098292947, 0.0033570046070963144, 0.0027165482752025127, 0.004280829336494207, 0.006954418495297432, 0.15183955430984497], [0.010608941316604614, 0.00594597402960062, 0.0006583124632015824, 0.010156827978789806, 0.003376911161467433, 0.006534238811582327, 0.004466262646019459, 0.26385220885276794], [0.0011158331762999296, 0.0026339907199144363, 0.0006781599950045347, 0.0012645306997001171, 0.0019380846060812473, 0.003171138698235154, 0.01854158751666546, 0.26997771859169006], [0.0014450299786403775, 0.0016293092630803585, 0.0008701831102371216, 0.001944629242643714, 0.0036254243459552526, 0.006345509551465511, 0.007463006302714348, 0.23343759775161743], [0.0017491821199655533, 0.003069923259317875, 0.0013769040815532207, 0.008406654000282288, 0.013589076697826385, 0.018448323011398315, 0.03519933298230171, 0.173861563205719], [0.0037033664993941784, 0.002970197005197406, 0.001287805032916367, 0.002708122134208679, 0.00792046170681715, 0.021867603063583374, 0.08752845227718353, 0.17266739904880524], [0.011864416301250458, 0.006808191072195768, 0.001561734126880765, 0.0042076497338712215, 0.0066185323521494865, 0.010175579227507114, 0.0249174814671278, 0.23379768431186676], [0.012168697081506252, 0.011409128084778786, 0.019892089068889618, 0.014376652427017689, 0.021667052060365677, 0.023300351575016975, 0.04172728583216667, 0.29033398628234863]], [[0.04257943853735924, 0.11620363593101501, 0.018868422135710716, 0.10987429320812225, 0.060715850442647934, 0.052005037665367126, 0.059579454362392426, 0.14782392978668213], [0.023559704422950745, 0.37408357858657837, 0.01484439056366682, 0.02336292155086994, 0.013132275082170963, 0.031180664896965027, 0.05434305593371391, 0.07611273229122162], [0.009963495656847954, 0.0060404203832149506, 0.0012752666370943189, 0.003757701488211751, 0.0022014561109244823, 0.0043153315782547, 0.014550285413861275, 0.16974428296089172], [0.022195324301719666, 0.1285013109445572, 0.01789618656039238, 0.03151247650384903, 0.015516906976699829, 0.02850770764052868, 0.0776928961277008, 0.1440553516149521], [0.02343214675784111, 0.02277006208896637, 0.028779348358511925, 0.06950505077838898, 0.005047628190368414, 0.00668099382892251, 0.04103831946849823, 0.1183200478553772], [0.017244970425963402, 0.0035932743921875954, 0.009811855852603912, 0.012112116441130638, 0.00018629043188411742, 0.0028494782745838165, 0.03587246686220169, 0.17117799818515778], [0.011029512621462345, 0.04762692749500275, 0.020061636343598366, 0.021751176565885544, 0.0032079427037388086, 0.0028403415344655514, 0.013647926971316338, 0.3528776168823242], [0.02296815626323223, 0.019949723035097122, 0.007292553782463074, 0.0045737349428236485, 0.004969010595232248, 0.002545671770349145, 0.04959002509713173, 0.2282741814851761], [0.03435136005282402, 0.023371227085590363, 0.024535851553082466, 0.05385018140077591, 0.02015874534845352, 0.03759355470538139, 0.07628673315048218, 0.22894097864627838]], [[0.04244471713900566, 0.020551731809973717, 0.019739849492907524, 0.008925075642764568, 0.006484847515821457, 0.007126779295504093, 0.05254935845732689, 0.17465852200984955], [0.014579078182578087, 0.03858432546257973, 0.018992438912391663, 0.011108368635177612, 0.010106214322149754, 0.011578834615647793, 0.03644125536084175, 0.24149538576602936], [0.001134228310547769, 0.004774211905896664, 0.0027527494821697474, 0.007298382464796305, 0.03465916961431503, 0.21013043820858002, 0.016613628715276718, 0.18950308859348297], [0.06079712137579918, 0.01924690417945385, 0.005409372039139271, 0.009470430202782154, 0.017526349052786827, 0.011250662617385387, 0.03778046742081642, 0.23044143617153168], [0.05869899317622185, 0.007503848988562822, 0.005337894428521395, 0.0030761451926082373, 0.0035611954517662525, 0.0022600397933274508, 0.049320802092552185, 0.281101793050766], [0.05011356621980667, 0.006143853068351746, 0.0098728584125638, 0.007070998195558786, 0.04073260352015495, 0.0284722950309515, 0.03521924838423729, 0.25752702355384827], [0.013685980811715126, 0.005241834092885256, 0.006291364319622517, 0.00592017499729991, 0.0056682005524635315, 0.0033997027203440666, 0.014159874059259892, 0.34173962473869324], [0.029244987294077873, 0.01688460074365139, 0.01490802876651287, 0.006585956551134586, 0.004975704476237297, 0.005934206303209066, 0.03907892480492592, 0.22776396572589874], [0.014172542840242386, 0.009827866218984127, 0.01847536861896515, 0.01294876541942358, 0.020608723163604736, 0.024335220456123352, 0.019276799634099007, 0.2763236463069916]], [[0.002423245459794998, 0.0014698203885927796, 0.0011046931613236666, 0.003745581489056349, 0.0023948117159307003, 0.0036148782819509506, 0.00675620511174202, 0.07513055205345154], [0.00038254389073699713, 0.001413798308931291, 0.0010469304397702217, 0.0012960820458829403, 0.0010233710054308176, 0.0024334387853741646, 0.0021251090802252293, 0.021894987672567368], [0.0009953025728464127, 0.0026850062422454357, 0.000850749434903264, 0.0038717202842235565, 0.002551537938416004, 0.007051249500364065, 0.004439063370227814, 0.042603474110364914], [0.0012910990044474602, 0.0011490392498672009, 0.0015459242276847363, 0.00342154991813004, 0.0014116587117314339, 0.002275099977850914, 0.005997054744511843, 0.017092492431402206], [0.0006485586054623127, 0.0009613399161025882, 0.002391634276136756, 0.005179325118660927, 0.0023970857728272676, 0.0023357386235147715, 0.003988428041338921, 0.017865970730781555], [0.0007798185106366873, 0.001410683966241777, 0.00242099491879344, 0.004327442497014999, 0.003006360959261656, 0.008761141449213028, 0.003939846530556679, 0.022298071533441544], [0.0006100916070863605, 0.0018650642596185207, 0.004422290716320276, 0.0026663593016564846, 0.002076885662972927, 0.003569720545783639, 0.007828420959413052, 0.02107987180352211], [0.003538709133863449, 0.005591178312897682, 0.0018577519804239273, 0.0047202627174556255, 0.005867878906428814, 0.008315022103488445, 0.012773307040333748, 0.06255174428224564], [0.020495878532528877, 0.013478260487318039, 0.030687518417835236, 0.035392433404922485, 0.04490387812256813, 0.04307127371430397, 0.05194752663373947, 0.11830070614814758]], [[0.17376708984375, 0.10775065422058105, 0.019746115431189537, 0.05785134434700012, 0.05345810577273369, 0.044767215847969055, 0.05876631289720535, 0.21540383994579315], [0.03543712571263313, 0.03158872574567795, 0.0029554632492363453, 0.013113525696098804, 0.00742218317463994, 0.014024225063621998, 0.04835288226604462, 0.056711506098508835], [0.03299620747566223, 0.02162506803870201, 0.008805074729025364, 0.017934827134013176, 0.01813795417547226, 0.04305272549390793, 0.04526890441775322, 0.02475348301231861], [0.02697116695344448, 0.009595518000423908, 0.00516967847943306, 0.011450495570898056, 0.0069977170787751675, 0.007154654245823622, 0.004084578715264797, 0.04979473352432251], [0.031917136162519455, 0.005660418886691332, 0.001695773913525045, 0.002396519063040614, 0.0019424454076215625, 0.005785044748336077, 0.00648921076208353, 0.1849711686372757], [0.030490176752209663, 0.020482834428548813, 0.00451718270778656, 0.009721650741994381, 0.00874168612062931, 0.0168386772274971, 0.01832413487136364, 0.04748835042119026], [0.04924909770488739, 0.005327262915670872, 0.006825949065387249, 0.005076147615909576, 0.003422738751396537, 0.007243771106004715, 0.00904164370149374, 0.11825481802225113], [0.006581715773791075, 0.011494644917547703, 0.001759480801410973, 0.0034061535261571407, 0.0029946977738291025, 0.006316558923572302, 0.006861736532300711, 0.34045201539993286], [0.0015114792622625828, 0.0017473289044573903, 0.002514385851100087, 0.0017765829106792808, 0.00416995445266366, 0.003151937620714307, 0.0027523667085915804, 0.47121521830558777]], [[0.0015361392870545387, 0.000549941323697567, 0.0003939366724807769, 0.00014264264609664679, 0.0002210988022852689, 0.0005989435594528913, 0.005523563362658024, 0.4979669749736786], [0.014839536510407925, 0.006614107172936201, 0.002536348532885313, 0.000974986469373107, 0.0009327701991423965, 0.0007736937841400504, 0.01048242673277855, 0.18047435581684113], [0.00646870955824852, 0.010096047073602676, 0.0033250567503273487, 0.00207547377794981, 0.0032129844184964895, 0.007026944775134325, 0.03532453626394272, 0.23315687477588654], [0.015973379835486412, 0.0023566600866615772, 0.002513837767764926, 0.00024826283333823085, 0.0009304859559051692, 0.0008309604017995298, 0.03279617428779602, 0.2044564187526703], [0.009168006479740143, 0.001248056534677744, 0.006091943476349115, 0.0007017600582912564, 0.00036267092218622565, 0.0005559092969633639, 0.006718838587403297, 0.3179166615009308], [0.019301215186715126, 0.0016216158401221037, 0.008648935705423355, 0.0006879732245579362, 0.0003138946776743978, 0.000982358935289085, 0.023781467229127884, 0.26329851150512695], [0.020118094980716705, 0.0024908718187361956, 0.05518972501158714, 0.005171902012079954, 0.005346690304577351, 0.0053170290775597095, 0.029711619019508362, 0.1734762191772461], [0.009337611496448517, 0.005237726029008627, 0.0020785066299140453, 0.00268166814930737, 0.0040418654680252075, 0.0039846268482506275, 0.01747014932334423, 0.1392063945531845], [0.0179744902998209, 0.018984228372573853, 0.028367090970277786, 0.040342655032873154, 0.03271690383553505, 0.0286756232380867, 0.05104014277458191, 0.22895486652851105]], [[0.02977720834314823, 0.005177556071430445, 0.009762643836438656, 0.0030171831604093313, 0.0018830967601388693, 0.004594854079186916, 0.022134874016046524, 0.43096256256103516], [0.012834310531616211, 0.019451498985290527, 0.004437034949660301, 0.007515087723731995, 0.0034487678203731775, 0.009209208190441132, 0.04539408162236214, 0.23753930628299713], [0.008879095315933228, 0.013574939221143723, 0.017336087301373482, 0.0005076868110336363, 0.007889396511018276, 0.017351971939206123, 0.03887229412794113, 0.2706230878829956], [0.023426327854394913, 0.0016758095007389784, 0.006482351571321487, 0.004349341616034508, 0.0005028051673434675, 0.0020733249839395285, 0.06412021070718765, 0.24900710582733154], [0.010643023066222668, 0.00015088298823684454, 0.014465692453086376, 0.004985420498996973, 0.00021327633294276893, 0.0012386942980811, 0.015547817572951317, 0.3564397692680359], [0.010104465298354626, 0.0013246407033875585, 0.003202910767868161, 0.005515319295227528, 0.0004237081448081881, 0.0006285412819124758, 0.01919510029256344, 0.3099161684513092], [0.011831432580947876, 0.0005017879302613437, 0.015323443338274956, 0.02791789546608925, 0.0007802250911481678, 0.0022050116676837206, 0.01141795888543129, 0.33093005418777466], [0.009918124414980412, 0.009726091288030148, 0.006231365259736776, 0.0035987982992082834, 0.0019569459836930037, 0.006074149627238512, 0.010550345294177532, 0.3038613200187683], [0.016047365963459015, 0.01946934498846531, 0.0215065348893404, 0.01539499219506979, 0.01761496439576149, 0.026005560532212257, 0.024989552795886993, 0.33047476410865784]], [[0.21554602682590485, 0.002360730664804578, 0.016385933384299278, 0.01642371155321598, 0.027331558987498283, 0.006902058608829975, 0.07383128255605698, 0.1487296223640442], [0.015658969059586525, 0.03144469112157822, 0.011955327354371548, 0.010668694041669369, 0.010807548649609089, 0.002061850856989622, 0.020632987841963768, 0.17619282007217407], [0.011242820881307125, 0.0373801663517952, 0.004680091980844736, 0.00672272639349103, 0.010328604839742184, 0.00721212662756443, 0.025662265717983246, 0.18209949135780334], [0.07419943064451218, 0.006527827586978674, 0.014664901420474052, 0.01115918718278408, 0.01978146657347679, 0.015055215917527676, 0.18148881196975708, 0.1099020391702652], [0.05158661678433418, 0.003940480295568705, 0.012446975335478783, 0.005569761618971825, 0.0023762446362525225, 0.0019765596371144056, 0.02169104851782322, 0.2605535686016083], [0.05085112899541855, 0.013264506123960018, 0.016112718731164932, 0.029474318027496338, 0.01283396128565073, 0.019872985780239105, 0.06324204057455063, 0.17107723653316498], [0.010684902779757977, 0.001257814234122634, 0.0037198862992227077, 0.0013480400666594505, 0.0007414429564960301, 0.00024303501413669437, 0.006634723395109177, 0.3940071165561676], [0.05507132038474083, 0.007009382359683514, 0.007629613392055035, 0.006788703612983227, 0.008066006936132908, 0.0065047889947891235, 0.025228748098015785, 0.17055316269397736], [0.00410153204575181, 0.0014610773650929332, 0.0021570920944213867, 0.0011750677367672324, 0.0019096920732408762, 0.0030085877515375614, 0.0029159565456211567, 0.4477134943008423]], [[0.257351815700531, 0.013315869495272636, 0.00793194305151701, 0.04584855958819389, 0.042014382779598236, 0.046460140496492386, 0.049255404621362686, 0.15273985266685486], [0.012748518027365208, 0.18899331986904144, 0.003487184876576066, 0.013940425589680672, 0.005007883068174124, 0.0038091898895800114, 0.0031012161634862423, 0.06301233172416687], [0.024426762014627457, 0.0939503088593483, 0.014294161461293697, 0.020569145679473877, 0.010646339505910873, 0.01675662212073803, 0.023205654695630074, 0.165048748254776], [0.005448800045996904, 0.009692905470728874, 0.020316582173109055, 0.017874833196401596, 0.005440391134470701, 0.004325408488512039, 0.016885949298739433, 0.05514964088797569], [0.016685139387845993, 0.005857492797076702, 0.0959925651550293, 0.04475284740328789, 0.013124281540513039, 0.007821118459105492, 0.006436625029891729, 0.1175113320350647], [0.02775217592716217, 0.018833626061677933, 0.03517640009522438, 0.018477145582437515, 0.005924113094806671, 0.011634751223027706, 0.010158419609069824, 0.0538216158747673], [0.013946693390607834, 0.011964329518377781, 0.15759669244289398, 0.022865835577249527, 0.00760678993538022, 0.012257061898708344, 0.011732331477105618, 0.17541486024856567], [0.0013955492759123445, 0.0005838156212121248, 6.107669469201937e-05, 0.0014142494183033705, 0.001286953454837203, 0.0014639680739492178, 0.0008529202896170318, 0.002578112529590726], [0.0010699480772018433, 0.0005360493087209761, 0.00021951552480459213, 0.0007843192433938384, 0.002987075597047806, 0.003980542067438364, 0.003309902735054493, 0.045262932777404785]]], [[[0.02211337722837925, 0.003408635500818491, 0.0007928932318463922, 0.0008180654840543866, 0.000782747520133853, 0.001088500488549471, 0.0325465127825737, 0.09826906025409698], [0.04863307625055313, 0.026661721989512444, 0.004605063237249851, 0.004788256715983152, 0.0057881856337189674, 0.006243500858545303, 0.029359055683016777, 0.1604703664779663], [0.020913150161504745, 0.039907149970531464, 0.008940433152019978, 0.009190364740788937, 0.009803677909076214, 0.06298371404409409, 0.01827634871006012, 0.24316340684890747], [0.05102422088384628, 0.04153236374258995, 0.0037946479860693216, 0.0010742247104644775, 0.00441014626994729, 0.005907652899622917, 0.0218978188931942, 0.23032817244529724], [0.027474336326122284, 0.021335480734705925, 0.00456642359495163, 0.003787908237427473, 0.002601271728053689, 0.004669032525271177, 0.01605743169784546, 0.22442112863063812], [0.026723649352788925, 0.048146072775125504, 0.008850248530507088, 0.0074641769751906395, 0.013482389971613884, 0.011285046115517616, 0.021328939124941826, 0.22574016451835632], [0.0334327295422554, 0.01947925053536892, 0.004640441853553057, 0.0029081767424941063, 0.005523401312530041, 0.0034206847194582224, 0.019205650314688683, 0.30863088369369507], [0.040762823075056076, 0.008561402559280396, 0.0004558821674436331, 0.001096932333894074, 0.0024400101974606514, 0.002004890004172921, 0.03827059268951416, 0.06704949587583542], [0.005655355751514435, 0.002984269754961133, 0.0027323425747454166, 0.002257852116599679, 0.0015629775589331985, 0.0030274735763669014, 0.011712834239006042, 0.4391431510448456]], [[0.2788724899291992, 0.012756521813571453, 0.0859110876917839, 0.05452902987599373, 0.0031133699230849743, 0.01023023296147585, 0.06431077420711517, 0.23106485605239868], [0.015356071293354034, 0.010734397917985916, 0.011889010667800903, 0.014589817263185978, 0.0035612403880804777, 0.00891591515392065, 0.014044330455362797, 0.030182091519236565], [0.04866069182753563, 0.007124198600649834, 0.026473749428987503, 0.03693388029932976, 0.006729588843882084, 0.017443014308810234, 0.019684500992298126, 0.1118316501379013], [0.04354340210556984, 0.002713648835197091, 0.008753422647714615, 0.0028425983618944883, 0.00037776576937176287, 0.0005821179947815835, 0.0027566179633140564, 0.12741507589817047], [0.028512604534626007, 0.0009588159155100584, 0.00434930669143796, 0.0015234311576932669, 2.6777799575938843e-05, 0.0001277343835681677, 0.0012791450135409832, 0.34152671694755554], [0.026127096265554428, 0.0014398206258192658, 0.008589284494519234, 0.0009079747833311558, 0.00012609167606569827, 0.0003513997362460941, 0.0027684273663908243, 0.3386319577693939], [0.03527313470840454, 0.00020056427456438541, 0.018717598170042038, 0.0024984527844935656, 9.920956654241309e-05, 0.00026256285491399467, 0.00157392886467278, 0.3226660192012787], [0.030004872009158134, 0.004432680085301399, 0.009594363160431385, 0.006146155763417482, 0.001040601753629744, 0.0028530617710202932, 0.009806586429476738, 0.17664802074432373], [0.0031132446601986885, 0.002474838634952903, 0.0019334484823048115, 0.001392505131661892, 0.0008520058472640812, 0.0016742658335715532, 0.002512388164177537, 0.46491312980651855]], [[0.11441614478826523, 0.1662038266658783, 0.09033162891864777, 0.08029140532016754, 0.07159007340669632, 0.143330380320549, 0.12362919002771378, 0.06680573523044586], [0.0032632132060825825, 0.0036226403899490833, 0.0145344827324152, 0.0036901698913425207, 0.0025103853549808264, 0.006361159961670637, 0.007396908942610025, 0.17873236536979675], [0.006002457346767187, 0.011579615995287895, 0.009816060774028301, 0.0038635546807199717, 0.0017745092045515776, 0.006404664367437363, 0.01339015830308199, 0.22835849225521088], [0.0027486945036798716, 0.0048959581181406975, 0.005631591659039259, 0.0038956105709075928, 0.006491313222795725, 0.012672956101596355, 0.004923818167299032, 0.10543090850114822], [0.0029536979272961617, 0.003572909627109766, 0.0038970487657934427, 0.002326544839888811, 0.0029529291205108166, 0.007510020863264799, 0.0033560956362634897, 0.17478232085704803], [0.004846211988478899, 0.006965687498450279, 0.005287887994199991, 0.002022122498601675, 0.0026859708596020937, 0.00616758968681097, 0.006483485456556082, 0.20579688251018524], [0.0044604092836380005, 0.00794435665011406, 0.004573209676891565, 0.0019038983155041933, 0.0018391372868791223, 0.005927726160734892, 0.008415620774030685, 0.2576717734336853], [0.0033074491657316685, 0.00523516396060586, 0.0018959123408421874, 0.0032697939313948154, 0.0026890975423157215, 0.00789870135486126, 0.005680619273334742, 0.04626549035310745], [0.006553320679813623, 0.008278394117951393, 0.0029775891453027725, 0.0016037097666412592, 0.0006179727497510612, 0.0021072537638247013, 0.011295883916318417, 0.41962477564811707]], [[0.0018961087334901094, 0.0010089421411976218, 0.0010489406995475292, 0.0015997670125216246, 0.010862092487514019, 0.005378192290663719, 0.00022643024567514658, 0.00612123915925622], [0.0002643875777721405, 0.0021009996999055147, 0.0007170123280957341, 0.0005761652137152851, 0.0006644680979661644, 0.0006472732056863606, 0.0018781002145260572, 0.0020647963974624872], [0.00013159157242625952, 0.000514889950864017, 0.0007261170540004969, 0.0008958310354501009, 0.0005146915791556239, 0.0007717930129729211, 0.00042006841977126896, 0.0029386773239821196], [0.0006184024969115853, 0.0009388746693730354, 0.0008904053829610348, 0.00036710224230773747, 0.002347832778468728, 0.001980625092983246, 0.003532483009621501, 0.0028810175135731697], [0.0014184127794578671, 0.0014362510992214084, 0.0026061460375785828, 0.002922236453741789, 0.0011852694442495704, 0.001491206930950284, 0.003344242461025715, 0.011175778694450855], [4.522140079643577e-05, 0.00046963433851487935, 0.0004218488174956292, 0.00036008335882797837, 0.0004574651538860053, 0.00038533101906068623, 0.00027632914134301245, 0.0012629734119400382], [0.00022838734730612487, 0.0008989123743958771, 0.0012016290565952659, 0.0014324270887300372, 0.0007669661426916718, 0.0007746859337203205, 0.001289324020035565, 0.005841198842972517], [0.001622765907086432, 0.004642815794795752, 0.002525020856410265, 0.0018603933276608586, 0.006656398065388203, 0.005491246934980154, 0.0022683138959109783, 0.004511373583227396], [0.030816929414868355, 0.0006987892556935549, 0.0012259158538654447, 0.007048981264233589, 0.006049943156540394, 0.011828115209937096, 0.06896744668483734, 0.22058765590190887]], [[0.07210586220026016, 0.039677854627370834, 0.01689349114894867, 0.050142090767621994, 0.024312153458595276, 0.022013520821928978, 0.04806755110621452, 0.22437705099582672], [0.02871098183095455, 0.016123805195093155, 0.013743139803409576, 0.02172785997390747, 0.011980073526501656, 0.007454304024577141, 0.0484759546816349, 0.1379733830690384], [0.0020194791723042727, 0.01606658659875393, 0.00722781615331769, 0.02062395215034485, 0.0070595694705843925, 0.04329958185553551, 0.004986653104424477, 0.12089500576257706], [0.04436706006526947, 0.00855690985918045, 0.00463868910446763, 0.005511523690074682, 0.011984333395957947, 0.004928638692945242, 0.07905110716819763, 0.1917516142129898], [0.12007852643728256, 0.0021061464212834835, 0.007819721475243568, 0.003933988977223635, 0.0005202434258535504, 0.00022912738495506346, 0.005621068179607391, 0.16265098750591278], [0.02836434170603752, 0.00813301745802164, 0.048644959926605225, 0.050609294325113297, 0.08343028277158737, 0.027831746265292168, 0.006678480189293623, 0.13951171934604645], [0.0652073547244072, 0.002463636454194784, 0.012166906148195267, 0.003558964701369405, 0.004711803514510393, 0.0029960169922560453, 0.013195016421377659, 0.07987632602453232], [0.023098070174455643, 0.021547719836235046, 0.011252366006374359, 0.007711201440542936, 0.004103386774659157, 0.0045389411970973015, 0.013189360499382019, 0.13859893381595612], [0.03551569953560829, 0.050996165722608566, 0.025959772989153862, 0.0315140075981617, 0.03536566346883774, 0.044262442737817764, 0.06387795507907867, 0.16180233657360077]], [[0.015176106244325638, 0.01228202972561121, 0.008453314192593098, 0.00876674521714449, 0.008219013921916485, 0.008951781317591667, 0.02460065297782421, 0.3506237268447876], [0.012964395806193352, 0.10031000524759293, 0.004582129884511232, 0.004866207949817181, 0.010016756132245064, 0.009577146731317043, 0.0319075845181942, 0.22098898887634277], [0.03153937682509422, 0.03421894088387489, 0.011553503572940826, 0.004738937132060528, 0.0008204185287468135, 0.004141980782151222, 0.0346074253320694, 0.25147339701652527], [0.008688432164490223, 0.05229492858052254, 0.011172953993082047, 0.00723689328879118, 0.0049502053298056126, 0.00789103377610445, 0.047324102371931076, 0.28333956003189087], [0.013388561084866524, 0.06549188494682312, 0.012005145661532879, 0.026264170184731483, 0.003614023793488741, 0.009567645378410816, 0.03260597214102745, 0.22795799374580383], [0.1375279724597931, 0.06735406816005707, 0.1248278096318245, 0.16557638347148895, 0.0012647965922951698, 0.014842272736132145, 0.03692548722028732, 0.09678657352924347], [0.019697923213243484, 0.06117156893014908, 0.03609964996576309, 0.025255894288420677, 0.018068278208374977, 0.020205562934279442, 0.03162519633769989, 0.29053616523742676], [0.04835999757051468, 0.03369203209877014, 0.013921026140451431, 0.008021002635359764, 0.005248946603387594, 0.010638822801411152, 0.05581967160105705, 0.242099791765213], [0.014071790501475334, 0.006980078294873238, 0.008953343145549297, 0.008050679229199886, 0.004276555962860584, 0.005813945084810257, 0.010995090939104557, 0.41492876410484314]], [[0.00014533997455146164, 0.00040994182927533984, 7.546547567471862e-05, 0.00042966019827872515, 0.0004822840273845941, 0.0005600082804448903, 0.18318414688110352, 0.0014153847005218267], [0.027747051790356636, 0.025680754333734512, 0.005039595067501068, 0.007310409098863602, 0.005721874535083771, 0.005866417661309242, 0.006263407412916422, 0.23853540420532227], [0.01139602530747652, 0.04021399840712547, 0.004097555298358202, 0.00659250607714057, 0.009781518951058388, 0.004275632556527853, 0.005514323245733976, 0.39755094051361084], [0.010600860230624676, 0.03823235630989075, 0.002528026234358549, 0.002313795732334256, 0.006031970959156752, 0.004720599856227636, 0.011787116527557373, 0.24178721010684967], [0.009724101983010769, 0.026512259617447853, 0.004221614450216293, 0.00862379465252161, 0.005914922337979078, 0.0035414511803537607, 0.004453083034604788, 0.38200119137763977], [0.011998691596090794, 0.00927774142473936, 0.0034956405870616436, 0.009231055155396461, 0.015898576006293297, 0.008460788987576962, 0.0031572398729622364, 0.36905476450920105], [0.008224984630942345, 0.010671083815395832, 0.0015613113064318895, 0.015236658044159412, 0.011912493035197258, 0.007133821025490761, 0.010544104501605034, 0.33893024921417236], [0.004583782982081175, 0.01674829237163067, 0.00132132472936064, 0.0052017453126609325, 0.0061356485821306705, 0.003765933448448777, 0.006274424958974123, 0.2880767285823822], [0.00317165139131248, 0.003815830685198307, 0.0014670805539935827, 0.0012084972113370895, 0.0014251519460231066, 0.002050597919151187, 0.0063584051094949245, 0.47811266779899597]], [[0.139570415019989, 0.048960089683532715, 0.010567664168775082, 0.029556963592767715, 0.0061595244333148, 0.02951035648584366, 0.03424634039402008, 0.26719775795936584], [0.0010525814723223448, 0.21573597192764282, 5.22137779626064e-05, 0.0007142201066017151, 0.00036420393735170364, 0.0010480753844603896, 0.0008295660954900086, 0.1703176498413086], [0.07067390531301498, 0.17147256433963776, 0.00010828213999047875, 0.0022368491627275944, 0.007475680205971003, 0.01340938825160265, 0.015593297779560089, 0.36594629287719727], [0.015676237642765045, 0.026943713426589966, 0.023994797840714455, 0.009724375791847706, 0.0024407189339399338, 0.003673345549032092, 0.14758728444576263, 0.24291294813156128], [0.004826262127608061, 0.0038076189812272787, 0.03343833610415459, 0.07753121852874756, 0.0012479076394811273, 0.0014325695810839534, 0.0008384762331843376, 0.34902843832969666], [0.08370334655046463, 0.0014820311916992068, 0.018722429871559143, 0.07246594876050949, 0.0005756586324423552, 0.001453503267839551, 0.00210462580434978, 0.3698594570159912], [0.03923267871141434, 0.003790271934121847, 0.06171872466802597, 0.021258851513266563, 0.0006978320889174938, 0.0019097381737083197, 0.012133904732763767, 0.3379511833190918], [0.13828830420970917, 0.04127419367432594, 0.0035133615601807833, 0.02101023495197296, 0.006222013849765062, 0.03766386955976486, 0.04638373479247093, 0.21558576822280884], [0.07319413870573044, 0.02846449799835682, 0.009935220703482628, 0.020917033776640892, 0.010961675085127354, 0.026058079674839973, 0.041317325085401535, 0.24073384702205658]], [[0.10289625823497772, 0.018722767010331154, 0.0013742772862315178, 0.01276630163192749, 0.004419051576405764, 0.004897411447018385, 0.04978408291935921, 0.051203250885009766], [0.11799205839633942, 0.12959042191505432, 0.00145761389285326, 0.004579771310091019, 0.0026518211234360933, 0.0022720787674188614, 0.052544161677360535, 0.05461887642741203], [0.03588656708598137, 0.07371551543474197, 0.004669873043894768, 0.011105416342616081, 0.009820433333516121, 0.007865686900913715, 0.022701747715473175, 0.21309876441955566], [0.0564408004283905, 0.01073156762868166, 0.0014565858291462064, 0.004775232635438442, 0.007413520477712154, 0.006316609680652618, 0.3586348295211792, 0.0459785982966423], [0.10709409415721893, 0.008821564726531506, 0.0008644995978102088, 0.0015205212403088808, 0.0006168255931697786, 0.0008936897502280772, 0.029101520776748657, 0.20689548552036285], [0.09019187092781067, 0.009715721011161804, 0.0006356050143949687, 0.0018064918695017695, 0.002422560937702656, 0.0015673176385462284, 0.013480921275913715, 0.27601158618927], [0.06218336895108223, 0.020896082744002342, 0.002786192111670971, 0.0016405622009187937, 0.001782930688932538, 0.002505082171410322, 0.010956077836453915, 0.3445413410663605], [0.15410488843917847, 0.02712096832692623, 0.001029302948154509, 0.005088322330266237, 0.002205743221566081, 0.0021048653870821, 0.05023520812392235, 0.08886346966028214], [0.002372149610891938, 0.001906862948089838, 0.0007091793813742697, 0.0006218882626853883, 0.0008513749344274402, 0.0007196696242317557, 0.0016267203027382493, 0.48397573828697205]], [[0.07528041303157806, 0.5505829453468323, 0.007514370139688253, 0.0081545514985919, 0.012097654864192009, 0.06066875904798508, 0.06331667304039001, 0.09285833686590195], [0.0015781077090650797, 0.01243663765490055, 0.000761339208111167, 0.0011568123009055853, 0.0005532116629183292, 0.007559823337942362, 0.001159479608759284, 0.027029061689972878], [0.000780573463998735, 0.017395876348018646, 0.005138861481100321, 0.002892897929996252, 0.007520338054746389, 0.024654734879732132, 0.02250443957746029, 0.21692578494548798], [0.0016480220947414637, 0.0016632579499855638, 0.005961955059319735, 0.0024919621646404266, 0.0017828393029049039, 0.004487823229283094, 0.00265551102347672, 0.11206835508346558], [0.004596197512000799, 0.0009887930937111378, 0.007241436745971441, 0.00015203337534330785, 0.00032288688817061484, 0.0035447953268885612, 0.0008390126167796552, 0.0653250515460968], [0.004694036673754454, 0.006833398714661598, 0.0009412026265636086, 0.005467477720230818, 0.00034866968053393066, 0.003190305782482028, 0.004664421547204256, 0.10226564854383469], [0.0002783294767141342, 6.7850196501240134e-06, 5.451321339933202e-05, 1.8367582015343942e-06, 3.508809459162876e-05, 0.00010729442874435335, 2.2561776859220117e-05, 0.002842082642018795], [0.0890103131532669, 0.07785212248563766, 0.005868659820407629, 0.003588279942050576, 0.004618037957698107, 0.0057329339906573296, 0.011873433366417885, 0.19175979495048523], [0.04517829790711403, 0.05627714470028877, 0.017643898725509644, 0.015165286138653755, 0.011751209385693073, 0.020329898223280907, 0.04869578778743744, 0.2504197061061859]], [[0.03887219354510307, 0.027776392176747322, 0.000757195521146059, 0.006674075033515692, 0.005416585598140955, 0.004057684447616339, 0.00699286675080657, 0.46067506074905396], [0.000724693585652858, 0.002181157236918807, 3.543791171978228e-05, 0.0003073539410252124, 0.00014391100557986647, 0.00037076984881423414, 0.0008658475708216429, 0.3936239778995514], [0.0004636448866222054, 0.0008735298179090023, 1.942684866662603e-05, 5.949027763563208e-05, 0.00013078321353532374, 0.0006501429015770555, 0.00033773420727811754, 0.4487721621990204], [0.009694698266685009, 0.00605228915810585, 0.002183745615184307, 0.00193732138723135, 0.000617838348262012, 0.0010090431896969676, 0.0023053723853081465, 0.24940550327301025], [0.00025447012740187347, 0.001014708774164319, 0.0012865019962191582, 0.0014641362940892577, 0.0001525093975942582, 0.0003483017208054662, 0.0002487985184416175, 0.41879361867904663], [0.0032796317245811224, 0.0023197925183922052, 0.001466546906158328, 0.001557107549160719, 0.0006841841386631131, 0.0010070785647258162, 0.0012539854506030679, 0.4002930521965027], [0.0002466780715622008, 0.0017972913337871432, 0.0028018862940371037, 0.0010170921450480819, 0.0002896444930229336, 0.0003109632816631347, 0.0011466684518381953, 0.27111801505088806], [0.02233661711215973, 0.008134892210364342, 0.0026699446607381105, 0.002235323190689087, 0.0026772483251988888, 0.001221737009473145, 0.005273064598441124, 0.043805088847875595], [0.0032990286126732826, 0.00206870399415493, 0.0008751602726988494, 0.0030658964533358812, 0.0014470196329057217, 0.002316804137080908, 0.0015734852058812976, 0.4774307310581207]], [[0.37982413172721863, 0.11117511987686157, 0.023168686777353287, 0.06998268514871597, 0.007911001332104206, 0.02765064686536789, 0.2104039192199707, 0.05151091516017914], [0.07135462760925293, 0.12506183981895447, 0.006461805198341608, 0.06561027467250824, 0.006908669136464596, 0.009605640545487404, 0.02335977740585804, 0.135210782289505], [0.005507349967956543, 0.0697098821401596, 0.004777554888278246, 0.018232645466923714, 0.018764374777674675, 0.03664420172572136, 0.009778556413948536, 0.26413843035697937], [0.03023870475590229, 0.05722988769412041, 0.00428718002513051, 0.00888246763497591, 0.004540345631539822, 0.004844400100409985, 0.07130539417266846, 0.21359269320964813], [0.018921684473752975, 0.008791389875113964, 0.0070966617204248905, 0.0026162010617554188, 0.0007993182516656816, 0.0005278706084936857, 0.0074110026471316814, 0.35006698966026306], [0.020261550322175026, 0.02027243748307228, 0.0403585322201252, 0.006405416410416365, 0.010466115549206734, 0.00706848967820406, 0.008198833093047142, 0.346770316362381], [0.03130337968468666, 0.008061649277806282, 0.007199801970273256, 0.018669651821255684, 0.0010074260644614697, 0.0015692927408963442, 0.00830166693776846, 0.31988975405693054], [0.0454564169049263, 0.04180770367383957, 0.008032647892832756, 0.026290351524949074, 0.01669144816696644, 0.017197489738464355, 0.0743250846862793, 0.26057830452919006], [0.006560749374330044, 0.004632902331650257, 0.0027243869844824076, 0.0037464250344783068, 0.010423772037029266, 0.007968236692249775, 0.005649067461490631, 0.4478813409805298]]], [[[0.00019136350601911545, 0.0009103208431042731, 0.0003853342786896974, 0.0001866445818450302, 0.00035458983620628715, 0.0005960086127743125, 0.001435288693755865, 0.49243876338005066], [0.00040745188016444445, 0.0005516891833394766, 8.585672912886366e-05, 4.36004156654235e-05, 9.114493877859786e-06, 1.6389247321058065e-05, 0.00013914727605879307, 0.440797358751297], [2.1794699932797812e-05, 6.046155613148585e-05, 0.00022290619381237775, 8.975849050329998e-05, 7.32401676941663e-05, 2.691619738470763e-05, 4.034143057651818e-05, 0.4824428856372833], [6.295902949204901e-06, 0.0001687098847469315, 1.4306229786598124e-05, 0.001585383783094585, 0.0010070924181491137, 0.0005593216046690941, 1.904971395561006e-05, 0.41748276352882385], [4.942282430420164e-06, 0.00010580255184322596, 3.394395753275603e-05, 1.1801466826000251e-05, 0.00019035862351302058, 0.0002730124397203326, 0.0008204026380553842, 0.35938921570777893], [9.295687277699471e-07, 5.042512384534348e-06, 2.548368229327025e-06, 3.4707863960647956e-07, 8.447937943856232e-06, 1.3873927855456714e-05, 0.00017733579443302006, 0.4880768954753876], [2.1202245079621207e-06, 1.9603039618232287e-06, 1.9454557786957594e-07, 4.4716239244735334e-07, 1.3283220141602214e-06, 5.0499393182690255e-06, 2.0365290765766986e-05, 0.030963612720370293], [3.681482849060558e-05, 0.00017398048657923937, 5.955187134532025e-06, 1.1472105143184308e-05, 1.3377554751059506e-05, 0.00038810836849734187, 0.0006162631325423717, 0.25619208812713623], [0.007586413994431496, 0.011317050084471703, 0.007993200793862343, 0.004722606856375933, 0.00699605792760849, 0.005569026339799166, 0.023229949176311493, 0.4181354343891144]], [[0.0002714426664169878, 0.009124048985540867, 0.00036560409353114665, 0.0002964880259241909, 0.00016312215302605182, 0.00011988421465503052, 4.996878851670772e-05, 0.3086925745010376], [0.002186807570978999, 0.00276686972938478, 0.0002940267149824649, 0.00015135544526856393, 9.212002623826265e-05, 5.921020056121051e-05, 0.0002555855899117887, 0.34468403458595276], [0.007654054090380669, 0.02330482006072998, 0.00032096198992803693, 0.0017971759662032127, 0.0005989883211441338, 0.0024323780089616776, 0.0035198742989450693, 0.26419106125831604], [0.012541486881673336, 0.001466069370508194, 0.000197612214833498, 0.00021747058781329542, 8.428033470408991e-05, 7.821858889656141e-05, 0.0004215656954329461, 0.19121558964252472], [0.001385140116326511, 0.0012575380969792604, 0.0026216129772365093, 0.0004486197722144425, 0.0007807505899108946, 0.0009508355869911611, 0.001133957994170487, 0.21775534749031067], [0.0017827348783612251, 0.0013278929982334375, 0.0028817562852054834, 0.0018652592552825809, 0.002160343574360013, 0.002896508201956749, 0.0024851509369909763, 0.2271927297115326], [0.0034015460405498743, 0.0008114134543575346, 0.0004506103286985308, 0.0003584881778806448, 0.0004759130533784628, 0.0011438089422881603, 0.0016666320152580738, 0.1479942500591278], [0.003067975165322423, 0.0018515866249799728, 0.000811909674666822, 0.00079435232328251, 0.0003807050234172493, 0.000823809124995023, 0.0011845029657706618, 0.09614430367946625], [0.011765614151954651, 0.02310115285217762, 0.003569986904039979, 0.004852436948567629, 0.0020988862961530685, 0.004189661238342524, 0.011541095562279224, 0.43495887517929077]], [[0.4380345046520233, 0.1822289228439331, 0.08894407749176025, 0.02986772544682026, 0.027813255786895752, 0.016022173687815666, 0.0747062936425209, 0.05193968489766121], [0.009199031628668308, 0.004667792934924364, 0.009137160144746304, 0.012683101929724216, 0.0035537932999432087, 0.0030310810543596745, 0.006271325517445803, 0.030862925574183464], [0.010609259828925133, 0.11760304123163223, 0.008927362971007824, 0.019986722618341446, 0.005015614442527294, 0.006804815027862787, 0.017998838797211647, 0.09112320095300674], [0.024041080847382545, 0.0005371371516957879, 0.003641566028818488, 0.0024012846406549215, 0.0004044374800287187, 0.00027393706841394305, 0.0006514793494716287, 0.1958731710910797], [0.006959776859730482, 0.0003480169107206166, 0.0022449621465057135, 0.00022857473231852055, 0.0001925065735122189, 5.834653347847052e-05, 0.0008453947957605124, 0.2698003053665161], [0.007929218001663685, 0.0008091423660516739, 0.0017295961733907461, 0.003142121247947216, 0.0001985627895919606, 0.00018417609680909663, 0.0004582138790283352, 0.3351239562034607], [0.012586020864546299, 0.0008307071402668953, 0.0037708906456828117, 0.009140275418758392, 0.00019693837384693325, 9.386949386680499e-05, 0.0002821652451530099, 0.15118898451328278], [0.014482776634395123, 0.0017777791945263743, 0.015015839599072933, 0.004568885546177626, 0.0017355424351990223, 0.0022575752809643745, 0.001487387577071786, 0.25307780504226685], [0.011323085054755211, 0.00651855394244194, 0.01277847122400999, 0.006761050317436457, 0.002228126395493746, 0.002959158271551132, 0.008155886083841324, 0.4455343186855316]], [[0.05288806930184364, 0.00782070867717266, 0.007269850000739098, 0.0032817272003740072, 0.008160431869328022, 0.01143732201308012, 0.044403888285160065, 0.1133914515376091], [0.05489321053028107, 0.0618562214076519, 0.010713323019444942, 0.008033191785216331, 0.015370874665677547, 0.019974352791905403, 0.0536336675286293, 0.1875428408384323], [0.06038052588701248, 0.13203848898410797, 0.01169673167169094, 0.016224045306444168, 0.022964222356677055, 0.012506515718996525, 0.02547159045934677, 0.08438663184642792], [0.07196445018053055, 0.021891625598073006, 0.010489667765796185, 0.0037817968986928463, 0.009669381193816662, 0.014900454320013523, 0.08749127388000488, 0.27659332752227783], [0.040930040180683136, 0.039835136383771896, 0.003263308899477124, 0.0016803618054836988, 0.009910948574543, 0.0272970050573349, 0.0922524631023407, 0.2565259337425232], [0.03380874544382095, 0.028989844024181366, 0.016662636771798134, 0.014031721279025078, 0.012928691692650318, 0.028152860701084137, 0.05670379474759102, 0.1557634472846985], [0.05737714841961861, 0.025457613170146942, 0.019202768802642822, 0.012414413504302502, 0.012507575564086437, 0.03809475526213646, 0.05198213458061218, 0.3081522285938263], [0.039483342319726944, 0.014930213801562786, 0.01637307181954384, 0.005796234123408794, 0.019513661041855812, 0.016688790172338486, 0.03114703670144081, 0.2929585576057434], [0.012113629840314388, 0.006057837046682835, 0.007107787765562534, 0.00616078544408083, 0.0055975657887756824, 0.012781639583408833, 0.016707587987184525, 0.41811296343803406]], [[0.0020295148715376854, 0.0004082861414644867, 9.248564310837537e-05, 0.00010379328887211159, 0.00010172392649110407, 0.0001489232381572947, 0.0038650024216622114, 0.18233542144298553], [0.002624241868034005, 0.0006797122769057751, 0.00010801738972077146, 0.00018314596673008054, 0.00021032973018009216, 0.0007358366274274886, 0.001531356479972601, 0.39267027378082275], [0.00010029523400589824, 0.0009325147839263082, 2.193685941165313e-05, 0.00010872191342059523, 6.0461050452431664e-05, 0.00017671070236247033, 0.0003205718530807644, 0.10384334623813629], [0.0003827627224382013, 0.00021558078879024833, 0.0004318539286032319, 0.0004898869665339589, 0.0017401190707460046, 0.000680110533721745, 0.0005245347274467349, 0.32894113659858704], [7.386571087408811e-05, 0.00017820157518144697, 0.0004630174080375582, 6.960820610402152e-05, 0.0018604402430355549, 0.0007925601094029844, 0.0009891301160678267, 0.19371670484542847], [9.427111217519268e-05, 7.925676618469879e-05, 0.0001329022488789633, 4.380678365123458e-05, 0.000238862368860282, 0.0002338258782401681, 0.0006765327998436987, 0.2800998091697693], [2.914754622906912e-05, 5.7750745327211916e-05, 0.00016429985407739878, 3.022764076376916e-06, 0.00011887985601788387, 4.649962647818029e-05, 0.00031188392313197255, 0.05767207220196724], [0.0010175948264077306, 0.0017584979068487883, 6.12578442087397e-05, 0.00023389598936773837, 0.0003069673548452556, 0.0003227578417863697, 0.0037570991553366184, 0.2990686893463135], [0.027546469122171402, 0.011358617804944515, 0.003480267710983753, 0.008092930540442467, 0.0069106868468225, 0.007899426855146885, 0.05221763253211975, 0.35746023058891296]], [[0.0037763488944619894, 0.0025825605262070894, 0.0024706560652703047, 0.0010416223667562008, 0.0025366521440446377, 0.00286444672383368, 0.003513069124892354, 0.09872142225503922], [0.006882202345877886, 0.044318173080682755, 0.001700531574897468, 0.0014839189825579524, 0.0019607634749263525, 0.004078064113855362, 0.015904247760772705, 0.3590069115161896], [0.003527373308315873, 0.009808585979044437, 0.0009844688465818763, 0.001145608490332961, 0.006327305920422077, 0.01049965899437666, 0.0077958861365914345, 0.41549381613731384], [0.03498884290456772, 0.024515783414244652, 0.01361811999231577, 0.008705361746251583, 0.0022068338003009558, 0.011655578389763832, 0.12867657840251923, 0.2918608784675598], [0.034937478601932526, 0.02187684178352356, 0.0233621746301651, 0.01020959485322237, 0.0018312670290470123, 0.005703664384782314, 0.01857880689203739, 0.36908382177352905], [0.011448659002780914, 0.012523503974080086, 0.008944014087319374, 0.0034896284341812134, 0.004712685476988554, 0.009374471381306648, 0.018231382593512535, 0.37439408898353577], [0.009526040405035019, 0.007649900391697884, 0.0056343767791986465, 0.0025639834348112345, 0.0005148480995558202, 0.005586004815995693, 0.048142801970243454, 0.35823243856430054], [0.01870672218501568, 0.009837617166340351, 0.002930890303105116, 0.0020904738921672106, 0.0014542025746777654, 0.0065223355777561665, 0.032493725419044495, 0.34588873386383057], [0.010574308224022388, 0.008400256745517254, 0.009340275079011917, 0.005001489073038101, 0.005060956813395023, 0.013823838904500008, 0.028126081451773643, 0.426472544670105]], [[0.05421631783246994, 0.138983815908432, 0.0561932697892189, 0.029965845867991447, 0.044409897178411484, 0.03141683340072632, 0.11605864018201828, 0.2397153377532959], [0.000681057688780129, 0.001357431523501873, 0.00125163106713444, 0.0006632592412643135, 0.0010806823847815394, 0.0005186382331885397, 0.0012796970549970865, 0.12898722290992737], [0.0001600809337105602, 0.0009218375198543072, 0.0006701533566229045, 0.0005535040982067585, 0.00033883846481330693, 0.0001901230134535581, 0.0057203322649002075, 0.4523313343524933], [0.013321366161108017, 0.002082439372316003, 0.0019242085982114077, 0.0015758576337248087, 0.001667595119215548, 0.0017008399590849876, 0.000729957246221602, 0.10652660578489304], [0.0044158524833619595, 0.0009084834018722177, 0.0009169220575131476, 0.0004780502640642226, 0.0017170432256534696, 0.0029020707588642836, 0.0047433460131287575, 0.33696505427360535], [0.00047257557162083685, 0.0013362827012315392, 0.00021733573521487415, 0.00030632695415988564, 0.0001164312707260251, 0.00024130770179908723, 0.0010701542487367988, 0.4651394486427307], [0.0010849495884031057, 0.0001799976162146777, 0.0002541248104535043, 0.00014488214219454676, 0.0005791639559902251, 0.0006234379834495485, 0.00016335118561983109, 0.02841385081410408], [0.003579361829906702, 0.002044499618932605, 0.0036599847953766584, 0.003470990341156721, 0.0014864244731143117, 0.0013644316932186484, 0.0017540830885991454, 0.05536544695496559], [0.005440441891551018, 0.013607610948383808, 0.005401376634836197, 0.003911169711500406, 0.002514511113986373, 0.0027889576740562916, 0.009571418166160583, 0.4550081491470337]], [[0.00209295772947371, 0.0028060325421392918, 0.001693354337476194, 0.0025312923826277256, 0.00465938588604331, 0.008705212734639645, 0.02339906431734562, 0.43895095586776733], [0.0004441560886334628, 0.0004839450994040817, 0.00022090444690547884, 0.0005268919048830867, 0.00014262841432355344, 0.0002728021936491132, 0.0010000448673963547, 0.44038984179496765], [0.00046337631647475064, 0.0006490237428806722, 0.00024718104396015406, 0.0008758771582506597, 0.0007043457590043545, 0.0015771863982081413, 0.0012329698074609041, 0.436208575963974], [0.0002598173450678587, 0.00013225982547737658, 0.0003473749093245715, 0.00016772405069787055, 0.00035238757845945656, 0.00042191363172605634, 0.00045209721429273486, 0.42688727378845215], [0.0003084332274738699, 0.00010986230336129665, 0.0005706094088964164, 0.000599258579313755, 0.0008192628738470376, 0.0006414668750949204, 0.0006772656342945993, 0.4073808789253235], [8.669096132507548e-05, 7.803433254593983e-05, 6.598359323106706e-05, 0.000368508422980085, 0.00031111689168028533, 0.0005133171798661351, 0.0005181719898246229, 0.4551939070224762], [6.778785609640181e-05, 5.096849781693891e-05, 0.0001579010277055204, 0.00047663316945545375, 0.00027328458963893354, 0.00018050920334644616, 0.00019660960242617875, 0.278959184885025], [0.000703852332662791, 0.0008035501814447343, 0.00033292590524069965, 0.000763967982493341, 0.0007253350340761244, 0.000616567675024271, 0.001542552257888019, 0.1387988030910492], [0.009934372268617153, 0.010637120343744755, 0.005114453379064798, 0.006524781696498394, 0.0051660798490047455, 0.008624675683677197, 0.023224569857120514, 0.41787734627723694]], [[0.15350079536437988, 0.21495573222637177, 0.017333583906292915, 0.06902571022510529, 0.11868312209844589, 0.1206250712275505, 0.24720345437526703, 0.017826182767748833], [0.004190849605947733, 0.0034088639076799154, 0.006869701202958822, 0.010367468930780888, 0.005993550177663565, 0.006495932582765818, 0.010392483323812485, 0.1141054555773735], [0.004731690511107445, 0.0031023784540593624, 0.007860047742724419, 0.007952983491122723, 0.005466417409479618, 0.008948655799031258, 0.014622583985328674, 0.24234260618686676], [0.003259655088186264, 0.0034685134887695312, 0.0042036669328808784, 0.006843035575002432, 0.004207336809486151, 0.003274918533861637, 0.012310788035392761, 0.10838446021080017], [0.007450995966792107, 0.004557818174362183, 0.0058028195053339005, 0.011403405107557774, 0.0068854414857923985, 0.007046618033200502, 0.014744245447218418, 0.08358140289783478], [0.006392565555870533, 0.004831385798752308, 0.015062008053064346, 0.019236113876104355, 0.007355678826570511, 0.012718730606138706, 0.014451921917498112, 0.24243146181106567], [0.005789309274405241, 0.004849296994507313, 0.00945041049271822, 0.006580303888767958, 0.005731581244617701, 0.007881954312324524, 0.00651024142280221, 0.13988018035888672], [0.004549788311123848, 0.006467815954238176, 0.00832538865506649, 0.012921258807182312, 0.00652841804549098, 0.005633087828755379, 0.01602678745985031, 0.028656112030148506], [0.005580626893788576, 0.005660484079271555, 0.003878110321238637, 0.0022622316610068083, 0.0034939160104840994, 0.005023148376494646, 0.004064449109137058, 0.4632215201854706]], [[0.11249332129955292, 0.13519611954689026, 0.005843060091137886, 0.0030350645538419485, 0.04950470104813576, 0.023332413285970688, 0.26362738013267517, 0.1887912154197693], [0.004597698338329792, 0.03217235952615738, 0.0010082327062264085, 0.001800397876650095, 0.0059030381962656975, 0.0019013967830687761, 0.025208251550793648, 0.04989396780729294], [0.001988824922591448, 0.027555108070373535, 0.0006233253516256809, 0.0019463642966002226, 0.008852565661072731, 0.006860843859612942, 0.008148842491209507, 0.3566909432411194], [0.00419637793675065, 0.008456779643893242, 0.002130867913365364, 0.0008287517121061683, 0.004039273597300053, 0.0017279366729781032, 0.009923389181494713, 0.2545944154262543], [0.007552378345280886, 0.005483344197273254, 0.002191618550568819, 0.0008577117114327848, 0.001828051288612187, 0.0018603377975523472, 0.011331876739859581, 0.26711463928222656], [0.008910521864891052, 0.0016071475110948086, 0.000905586639419198, 0.0007425961666740477, 0.0008714159484952688, 0.0015417730901390314, 0.004404224921017885, 0.4368661344051361], [0.0033076212275773287, 0.0012700386578217149, 0.0010856080334633589, 0.0010807514190673828, 0.002286955015733838, 0.0016150734154507518, 0.0016566591802984476, 0.4291403591632843], [0.008530913852155209, 0.010583840310573578, 0.0018345118733122945, 0.0012463959865272045, 0.011005932465195656, 0.005545108579099178, 0.029818521812558174, 0.34172528982162476], [0.009417522698640823, 0.013258809223771095, 0.005044627469033003, 0.004234619904309511, 0.011044901795685291, 0.005227820947766304, 0.010213804431259632, 0.4436703324317932]], [[0.003025195561349392, 0.000730594270862639, 0.000296466751024127, 0.0008506119484081864, 0.0008684821659699082, 0.0012133477721363306, 0.004668611567467451, 0.05617520585656166], [0.005293190944939852, 0.006355307064950466, 0.002758533926680684, 0.005849230568856001, 0.005586117040365934, 0.004126057494431734, 0.010644329711794853, 0.08628882467746735], [0.002309236442670226, 0.0019026253139600158, 0.001240355777554214, 0.001552533358335495, 0.0011545817833393812, 0.003917337395250797, 0.02118201181292534, 0.16967229545116425], [0.0029574118088930845, 0.0007944938261061907, 0.0014390898868441582, 0.0016552872257307172, 0.0007095510372892022, 0.0009399499394930899, 0.003165513277053833, 0.1897188276052475], [0.0024764856789261103, 0.0008285234798677266, 0.0009028236963786185, 0.0011658631265163422, 0.0003240696096327156, 0.0003809835761785507, 0.0014742979547008872, 0.19406522810459137], [0.00461789732798934, 0.0008781043579801917, 0.0026221054140478373, 0.0015305732376873493, 0.000263807422015816, 0.0005275693256407976, 0.0028601663652807474, 0.25242987275123596], [0.0015137724112719297, 0.0008567758486606181, 0.0009829149348661304, 0.000794274965301156, 0.00040636619087308645, 0.0005918711540289223, 0.0012872687075287104, 0.299919992685318], [0.014798171818256378, 0.006798931863158941, 0.0013256615493446589, 0.00314573897048831, 0.002213665982708335, 0.006497263442724943, 0.0140540087595582, 0.08468930423259735], [0.001995021477341652, 0.002414325950667262, 0.0019218079978600144, 0.002220926573500037, 0.0029377357568591833, 0.003877513576298952, 0.007813812233507633, 0.4701915383338928]], [[0.07570024579763412, 0.11817161738872528, 0.0011959581170231104, 0.0028538990300148726, 0.0026068768929690123, 0.006106139626353979, 0.054107941687107086, 0.35916051268577576], [0.00018110869859810919, 0.0006976760923862457, 0.00011162082228111103, 0.00012310886813793331, 0.0004759879957418889, 0.0004055437457282096, 0.0005344916135072708, 0.1458137184381485], [0.00032298368751071393, 0.0004531797021627426, 0.00012644869275391102, 0.00033590340171940625, 0.001052728621289134, 0.0009646816179156303, 0.004289843607693911, 0.4045754671096802], [7.600667595397681e-05, 0.000768825993873179, 8.489628089591861e-05, 0.0001785384665708989, 0.00040724262362346053, 0.00041737905121408403, 0.0008389552822336555, 0.33915355801582336], [0.0002618652652017772, 0.0005048560560680926, 5.357438567443751e-05, 0.0004163106787018478, 0.0003822004946414381, 0.0024052902590483427, 0.004948529880493879, 0.24966426193714142], [0.0005612139939330518, 0.0017769794212654233, 2.2496307792607695e-05, 2.2088916011853144e-05, 6.533411215059459e-05, 0.00019873524433933198, 0.0019323339220136404, 0.35813212394714355], [0.0001232411159435287, 0.00018664235540200025, 1.6475127267767675e-05, 1.0163040315092076e-05, 8.045938557188492e-06, 2.573806887085084e-05, 0.0002803881361614913, 0.37757956981658936], [0.03664303570985794, 0.006693859584629536, 0.000755955115891993, 0.0003247038403060287, 7.903648656792939e-05, 0.00012029314530082047, 0.0013174255145713687, 0.438073992729187], [0.03297889977693558, 0.02413228526711464, 0.005460791289806366, 0.005110255908221006, 0.003336946479976177, 0.005129239056259394, 0.026923280209302902, 0.3901367783546448]]], [[[3.740987253308958e-08, 3.211378327705461e-07, 6.937708185716929e-09, 1.113583010525776e-11, 3.039694718154351e-09, 7.562473980371465e-10, 7.514056221680221e-08, 0.5045101642608643], [6.589774559362382e-11, 5.7181419599317e-09, 1.4601390097013223e-09, 4.4432074020051004e-08, 2.2959119050369736e-09, 6.537946850571075e-10, 1.0630875069139734e-09, 0.0005028883460909128], [3.0372256359240124e-12, 7.303600085828421e-11, 2.5988408647315e-10, 4.88320772706885e-11, 5.637434696836863e-08, 5.461978247467414e-08, 1.4145443856250495e-06, 0.0006053330725990236], [4.7451619185606003e-14, 1.9717025321469572e-12, 1.235864383920815e-12, 3.0372889533308856e-12, 2.6449308021536666e-11, 2.049460427755445e-12, 1.1233368679697264e-09, 6.0491220210678875e-06], [1.0314777596507133e-14, 2.467993969184224e-15, 4.917058446063209e-14, 6.861952846215491e-12, 1.0769500569107748e-10, 5.7983628315438906e-11, 3.320865457623334e-11, 2.7329479053150862e-06], [2.918147494479495e-13, 1.3918184503134909e-14, 2.525621775514151e-19, 1.1193925036950416e-18, 1.6104017040686598e-17, 4.490480456551503e-14, 5.975308789429867e-12, 9.181178484141128e-08], [3.3899256015115786e-13, 2.76252754785616e-16, 8.467104760623754e-20, 1.786232878675188e-20, 6.642720231221392e-18, 3.124306860452378e-15, 1.8195808193510743e-09, 2.999131083925022e-06], [0.002193771069869399, 1.8509306087821642e-08, 4.306588505947895e-12, 6.141861046831553e-17, 3.121117887285084e-16, 8.327319817860376e-15, 5.5383850283696745e-11, 0.4555179178714752], [0.0020556191448122263, 0.0033260819036513567, 0.0006128359236754477, 1.9764953322010115e-05, 0.0003356840752530843, 0.00031012206454761326, 0.0011823587119579315, 0.4819193184375763]], [[0.6438615322113037, 0.04106004908680916, 0.0467059351503849, 0.016375252977013588, 0.04054352268576622, 0.010232903994619846, 0.05405689403414726, 0.06711835414171219], [0.002653072588145733, 0.0019380440935492516, 0.0010743284365162253, 0.0005326402024365962, 0.0011532068019732833, 0.0005938852555118501, 0.003066868055611849, 0.222395658493042], [0.001087543903850019, 0.0008998917764984071, 0.0006031688535586, 0.0004564943665172905, 0.0007406265358440578, 0.0006603269721381366, 0.0021899729035794735, 0.476723313331604], [0.008773121051490307, 0.002051224699243903, 0.0028216890059411526, 0.004565601237118244, 0.004844783805310726, 0.002173337386921048, 0.0015979105373844504, 0.1786527931690216], [0.003495622193440795, 0.001015661284327507, 0.0008783711236901581, 0.0019982093945145607, 0.0005529147456400096, 0.0004996185889467597, 0.0006683977553620934, 0.216289684176445], [0.0020387747790664434, 0.0024558338336646557, 0.0003375773085281253, 0.000317808473482728, 0.0004023729416076094, 0.00030882220016792417, 0.0007135040941648185, 0.4757401943206787], [0.0007274269592016935, 0.001332490355707705, 0.0002902174019254744, 0.0003721984685398638, 0.00020304735517129302, 0.00010823544289451092, 0.0001696606632322073, 0.4381638467311859], [0.06219317764043808, 0.01544131338596344, 0.010523424483835697, 0.004260147921741009, 0.0021767974831163883, 0.002337446203455329, 0.01583000086247921, 0.33552438020706177], [0.012893562205135822, 0.007830215618014336, 0.003152543446049094, 0.0021458270493894815, 0.004008903633803129, 0.003495629411190748, 0.010987005196511745, 0.4480225741863251]], [[0.009872550144791603, 0.0030370792374014854, 0.004227162338793278, 0.0005076945526525378, 0.0012006046017631888, 0.0015230132266879082, 0.005872041452676058, 0.4000552296638489], [0.0016027145320549607, 0.00038751622196286917, 0.0007601724937558174, 0.0010024802759289742, 0.00017135724192485213, 0.0004500047070905566, 0.008400284685194492, 0.3348873257637024], [0.0006006041658110917, 0.0006850181962363422, 0.0003370451449882239, 0.0001005050289677456, 0.00025179461226798594, 0.0005235635908320546, 0.001439388026483357, 0.4884389042854309], [0.0006929365335963666, 9.564725769450888e-05, 0.00032427359838038683, 0.0003493450058158487, 0.00019777752459049225, 0.0002632479299791157, 0.0052959490567445755, 0.39048466086387634], [0.00048638577573001385, 3.7827634514542297e-05, 7.17494694981724e-05, 0.00011375904432497919, 8.189241634681821e-05, 0.0002782107039820403, 0.002025419380515814, 0.42078515887260437], [0.002576622413471341, 0.0004004511865787208, 0.0001797809381969273, 4.0434664697386324e-05, 0.0001752369716996327, 0.00027377723017707467, 0.0037011492531746626, 0.44914600253105164], [0.0029970393516123295, 1.4134778211882804e-05, 3.397305044927634e-05, 4.923252708977088e-05, 7.818665471859276e-05, 0.00011753539001801983, 0.0027835711371153593, 0.1896081417798996], [0.005570522975176573, 0.003539224388077855, 0.0005595625261776149, 2.568858144513797e-05, 3.507287328829989e-05, 3.211749572074041e-05, 0.0020424367394298315, 0.4302707612514496], [0.009110670536756516, 0.016728438436985016, 0.008570024743676186, 0.0020402141381055117, 0.00516263535246253, 0.005033999681472778, 0.01326029933989048, 0.42867419123649597]], [[0.0011436513159424067, 0.0012370236217975616, 0.0004392194387037307, 0.0001492508890805766, 0.0002657849108800292, 0.00023867652635090053, 0.0030885462183505297, 0.49074864387512207], [0.00011453475599410012, 0.0018660679925233126, 7.23780831322074e-05, 0.00010274900705553591, 0.00011686662037391216, 0.0002201199094997719, 0.00024283005041070282, 0.45801982283592224], [7.588630978716537e-05, 0.0005660575698129833, 9.463145397603512e-05, 3.113040293101221e-05, 3.555275179678574e-05, 0.0001165039575425908, 0.0004999481607228518, 0.48449042439460754], [0.00034343224251642823, 0.001627131481654942, 0.0004034104058519006, 0.000142949735163711, 0.00019744868041016161, 0.0003961980401072651, 0.0011452591279521585, 0.40748274326324463], [3.477352220215835e-05, 0.0001616227236809209, 4.713012822321616e-05, 3.613242370192893e-06, 2.7937687264056876e-05, 0.00018145858484786004, 0.0010602050460875034, 0.4821964204311371], [0.00023894365585874766, 0.00020664882322307676, 1.2736146345559973e-05, 6.886805749672931e-06, 2.509949990781024e-05, 0.0002232462866231799, 0.0014253894332796335, 0.48590853810310364], [0.00025697500677779317, 5.910365507588722e-05, 2.2748319679521956e-05, 3.77723372366745e-05, 0.0001121274835895747, 6.217126065166667e-05, 0.00010925692913588136, 0.12433809041976929], [0.002214405918493867, 0.004718646872788668, 0.00012510159285739064, 0.00030144883203320205, 9.775700891623273e-05, 0.00012138995225541294, 0.0007765593472868204, 0.38017556071281433], [0.007066912483423948, 0.014798990450799465, 0.0063568647019565105, 0.003019228344783187, 0.0030720492359250784, 0.003858806099742651, 0.012525654397904873, 0.43477076292037964]], [[0.07361219078302383, 0.44687125086784363, 0.06202247738838196, 0.02273287996649742, 0.012525404803454876, 0.008559582754969597, 0.007263770792633295, 0.17962102591991425], [0.001304612960666418, 0.0008193199173547328, 0.0011320802150294185, 0.0003346427693031728, 5.79663974349387e-05, 0.00015036006516311318, 0.0004494161403272301, 0.44446060061454773], [0.0017605797620490193, 0.0048415581695735455, 0.0035292701795697212, 0.0038675395771861076, 0.00046889681834727526, 0.0007459585322067142, 0.0008902664994820952, 0.3466032147407532], [0.00026276911376044154, 0.00012244898243807256, 0.0022720429114997387, 0.0011389699066057801, 0.0008332174038514495, 0.00018899368296843022, 0.0005446358700282872, 0.4304966926574707], [6.658733036601916e-05, 1.943446659424808e-05, 0.00012924168549943715, 0.00012002202129224315, 0.00015755764616187662, 0.00019995974435005337, 0.0015169369289651513, 0.4676991403102875], [0.00011782488581957296, 8.638935105409473e-05, 4.946976332576014e-05, 0.00012513506226241589, 7.789777737343684e-05, 0.00013485958334058523, 0.001111936173401773, 0.44446536898612976], [0.00016681548731867224, 2.5551471480866894e-05, 9.630837303120643e-05, 2.7533063985174522e-05, 4.698890552390367e-05, 2.442480945319403e-05, 0.0005585831822827458, 0.27568942308425903], [0.0009313879418186843, 0.0003862079174723476, 0.00021691610163543373, 0.0002444096899125725, 0.000510828394908458, 0.0006298835505731404, 0.0011067036539316177, 0.22846335172653198], [0.009270879440009594, 0.01656862534582615, 0.00722168292850256, 0.006101866718381643, 0.00454137334600091, 0.0070095788687467575, 0.014235121197998524, 0.43277260661125183]], [[0.35307127237319946, 0.23264960944652557, 0.02684188447892666, 0.0388680100440979, 0.05338788777589798, 0.03981413692235947, 0.11988216638565063, 0.055888831615448], [0.011416579596698284, 0.0028409415390342474, 0.006919450126588345, 0.01042439229786396, 0.012274496257305145, 0.014705237932503223, 0.009614546783268452, 0.13628630340099335], [0.013226945884525776, 0.008492005057632923, 0.00804069358855486, 0.014080305583775043, 0.02046997658908367, 0.015657076612114906, 0.0300438292324543, 0.22473597526550293], [0.004028959199786186, 0.0033744387328624725, 0.005043047945946455, 0.004795629531145096, 0.0038917637430131435, 0.0017948336899280548, 0.0023471941240131855, 0.23249463737010956], [0.004866642411798239, 0.0017015838529914618, 0.0014875386841595173, 0.0014615926193073392, 0.003057771362364292, 0.0016313837841153145, 0.0021541989408433437, 0.41629675030708313], [0.01614018715918064, 0.005501651670783758, 0.009397325105965137, 0.007013344205915928, 0.0009224042296409607, 0.0011493106139823794, 0.011740141548216343, 0.39065587520599365], [0.0026396058965474367, 0.0011057837400585413, 0.0028944816440343857, 0.0034464530181139708, 0.000897968013305217, 0.000930494861677289, 0.0006320380489341915, 0.4083799123764038], [0.01853090524673462, 0.012018369510769844, 0.006147198844701052, 0.004490226972848177, 0.002438419032841921, 0.001913479994982481, 0.015327800996601582, 0.24302606284618378], [0.009454664774239063, 0.005623483564704657, 0.0024919926654547453, 0.0020668606739491224, 0.005056238267570734, 0.0030409570317715406, 0.0068252673372626305, 0.46311894059181213]], [[0.029585689306259155, 0.12529835104942322, 0.0237087644636631, 0.01956157386302948, 0.019489718601107597, 0.020061686635017395, 0.03287490829825401, 0.1839608997106552], [0.014558428898453712, 0.16590696573257446, 0.013183402828872204, 0.005659425165504217, 0.011663048528134823, 0.02039843611419201, 0.028879214078187943, 0.07313109189271927], [0.0034815259277820587, 0.07815778255462646, 0.01245742104947567, 0.0028002781327813864, 0.031081482768058777, 0.061160601675510406, 0.008647194132208824, 0.13176578283309937], [0.021389802917838097, 0.1455184370279312, 0.005577497184276581, 0.004663320258259773, 0.002817539032548666, 0.004073464777320623, 0.03237688168883324, 0.08592164516448975], [0.01234675943851471, 0.190189391374588, 0.0016115154139697552, 0.0036612707190215588, 0.0013930225977674127, 0.0009064333862625062, 0.03406453877687454, 0.03659893944859505], [0.05080939084291458, 0.22117052972316742, 0.03781986981630325, 0.10344535112380981, 0.0023226733319461346, 0.005497083067893982, 0.08170291781425476, 0.11402627825737], [0.048762496560811996, 0.19610688090324402, 0.05871521309018135, 0.027684371918439865, 0.0031071281991899014, 0.0023632668890058994, 0.08435871452093124, 0.046830177307128906], [0.06038691848516464, 0.126238152384758, 0.027520151808857918, 0.019312327727675438, 0.024947965517640114, 0.03392765671014786, 0.11163274198770523, 0.09741368144750595], [0.030169669538736343, 0.035692472010850906, 0.027965085580945015, 0.02780071459710598, 0.016334030777215958, 0.023821622133255005, 0.06318362057209015, 0.2099178582429886]], [[0.002785061253234744, 0.002087533473968506, 0.0006042739260010421, 0.0006000974681228399, 0.0016227583400905132, 0.0010247959289699793, 0.0016243925783783197, 0.21268151700496674], [0.001061401329934597, 0.0009192836005240679, 0.0003084810741711408, 0.00016421879990957677, 0.00022142102534417063, 0.00021352406474761665, 0.002067337976768613, 0.4047985374927521], [0.004561576992273331, 0.002771953819319606, 0.0015155079308897257, 0.002506677992641926, 0.0017421378288418055, 0.0030295392498373985, 0.0037372498773038387, 0.28924694657325745], [0.0025849565863609314, 0.0006831066566519439, 0.0003921120660379529, 0.0005833411123603582, 0.000631358998361975, 0.000379806209821254, 0.0033486245665699244, 0.30045390129089355], [0.00037308729952201247, 0.00019942536891903728, 0.00023946145665831864, 0.00027265807148069143, 0.00013639855023939162, 0.00018612276471685618, 0.000731980602722615, 0.4482843279838562], [0.002370882546529174, 0.000904439075384289, 0.0008742004865780473, 0.0045267329551279545, 0.001869221101514995, 0.0023903290275484324, 0.0036986833438277245, 0.28486594557762146], [0.00040535267908126116, 0.00037407761556096375, 6.247432611417025e-05, 0.0003031328087672591, 0.00015827975585125387, 0.00024232060241047293, 0.0010296277469024062, 0.16470283269882202], [0.0014714953722432256, 0.0014245584607124329, 0.0005047697923146188, 0.0016643000999465585, 0.001192077761515975, 0.0012797699309885502, 0.0020482675172388554, 0.11968409270048141], [0.012590828351676464, 0.008479714393615723, 0.00353297870606184, 0.003901928197592497, 0.003213356714695692, 0.00506718410179019, 0.010710257105529308, 0.4391407370567322]], [[3.699452122418734e-07, 1.6712405340513214e-05, 1.120707722179759e-07, 3.456006680835344e-08, 2.8061722900929453e-07, 8.784086702462446e-08, 1.2627372143469984e-06, 0.5059755444526672], [8.042762544846482e-08, 2.402672549806084e-08, 8.599534417896848e-10, 2.2099409108244927e-11, 9.186663582627652e-12, 2.1641358843860203e-11, 7.705302351723731e-08, 0.4890795052051544], [9.659983229992619e-11, 2.8497537662985906e-09, 5.718871154414273e-09, 3.743075538409357e-08, 3.439669438165538e-09, 2.8593399870047165e-10, 5.8693498949935474e-09, 0.0008843277464620769], [6.1323071186975e-14, 5.4551321793105956e-11, 1.3483410961638749e-14, 1.5693267518823717e-10, 5.848529993635054e-11, 3.640321821762882e-09, 2.840805646275868e-10, 3.1068761927599553e-06], [1.9433179123834894e-17, 2.295780753003296e-12, 1.081282704026203e-14, 9.676696295335239e-17, 1.0416897582694006e-14, 8.799661303446338e-14, 4.3361708668143706e-10, 2.6403824904264184e-08], [8.82434212828761e-16, 2.0271460156101248e-14, 1.1976214723096314e-15, 1.2829752248110816e-14, 1.2851795433530162e-14, 9.152966030229453e-16, 1.875364273595803e-11, 1.7220303405451887e-08], [2.366011807559596e-21, 8.412004063327965e-24, 5.461388176484554e-23, 8.682448995029395e-22, 1.3391050747150491e-17, 2.5769241002670217e-16, 1.576629201788069e-18, 1.2523003077910934e-15], [3.312937963784006e-14, 1.6418243717689074e-12, 3.2812739091506104e-18, 2.402679258621445e-14, 1.694799425040923e-14, 4.061255498566396e-11, 1.0015156481912868e-09, 2.931317339971429e-07], [0.006595885846763849, 0.03245443478226662, 0.0029201246798038483, 0.00209422898478806, 0.006193780340254307, 0.002613560762256384, 0.019782450050115585, 0.4037465751171112]], [[0.00456001702696085, 0.012514159083366394, 0.0018214149167761207, 0.0014852266758680344, 0.0016768246423453093, 0.0020546717569231987, 0.01041596382856369, 0.4413858950138092], [0.00031938732718117535, 0.01515895128250122, 0.0010267799952998757, 0.003328900085762143, 0.0009151598787866533, 0.0006995670846663415, 0.0026942254044115543, 0.2819098234176636], [0.0024943770840764046, 0.010976185090839863, 0.0007986612617969513, 0.003831664100289345, 0.002208451274782419, 0.0031803790479898453, 0.007687777280807495, 0.29714277386665344], [0.000971910310909152, 0.0038676627445966005, 0.0001037776964949444, 0.0001480377250118181, 0.0003008987696375698, 0.0002856427454389632, 0.0034889793023467064, 0.32081761956214905], [0.000949179579038173, 0.0018484863685443997, 0.00013900731573812664, 0.00010231795749859884, 6.0651109379250556e-05, 0.00011319718760205433, 0.0014628792414441705, 0.28972193598747253], [0.005335778463631868, 0.005052140913903713, 0.0007035201997496188, 0.00046640902291983366, 0.0002491034974809736, 0.0004917875048704445, 0.0010880891932174563, 0.35584667325019836], [0.0007688571349717677, 0.0006233482854440808, 0.00017133104847744107, 0.0001142708642873913, 1.1815919606306124e-05, 4.521145092439838e-05, 0.0003314129717182368, 0.3753822445869446], [0.003592889290302992, 0.003877464681863785, 0.0007696565007790923, 0.00047792476834729314, 0.00012241075455676764, 0.00021420551638584584, 0.0019411430694162846, 0.47245708107948303], [0.012046046555042267, 0.01618734933435917, 0.008055870421230793, 0.007911546155810356, 0.007270640227943659, 0.009202688001096249, 0.023804429918527603, 0.4123729467391968]], [[0.08364249765872955, 0.09200550615787506, 0.06783529371023178, 0.02006317488849163, 0.02658402919769287, 0.032708488404750824, 0.07826431840658188, 0.06814133375883102], [0.11008325219154358, 0.1427319049835205, 0.013201718218624592, 0.015427488833665848, 0.003291880711913109, 0.005101888906210661, 0.04001959040760994, 0.17086847126483917], [0.05707777664065361, 0.08191963285207748, 0.011768994852900505, 0.035173192620277405, 0.005533100105822086, 0.01537717878818512, 0.05184144154191017, 0.26459556818008423], [0.10711406916379929, 0.06361471861600876, 0.019678829237818718, 0.008481882512569427, 0.004295858088880777, 0.0053276256658136845, 0.03433699905872345, 0.2238069623708725], [0.028799893334507942, 0.015614050440490246, 0.014394245110452175, 0.0024725585244596004, 0.002137289149686694, 0.0018767892615869641, 0.007450197357684374, 0.3249210715293884], [0.08418512344360352, 0.037953004240989685, 0.03637489676475525, 0.009662586264312267, 0.0030015516094863415, 0.004162016790360212, 0.04946955293416977, 0.31232884526252747], [0.046424880623817444, 0.020834898576140404, 0.011768336407840252, 0.006369994953274727, 0.0026754827704280615, 0.005533265881240368, 0.024527231231331825, 0.32081660628318787], [0.055756378918886185, 0.019973155111074448, 0.008547870442271233, 0.004493501503020525, 0.004714685026556253, 0.010971049778163433, 0.12483490258455276, 0.1636679768562317], [0.005447726231068373, 0.0029154850635677576, 0.0012503197649493814, 0.0006939501035958529, 0.0011493226047605276, 0.001484293956309557, 0.00751108955591917, 0.47165751457214355]], [[0.0026634098030626774, 0.0029089536983519793, 0.002742952201515436, 0.005386663135141134, 0.001968739554286003, 0.0016956259496510029, 0.006729320622980595, 0.10323139280080795], [0.001380393048748374, 0.011279840022325516, 0.003508141962811351, 0.0010208252351731062, 0.001003950834274292, 0.0005153188249096274, 0.003190564224496484, 0.3936760425567627], [0.0014886913122609258, 0.01338985562324524, 0.0024499224964529276, 0.001518317381851375, 0.005368678364902735, 0.005018692463636398, 0.006877680774778128, 0.41906851530075073], [0.0021394025534391403, 0.0022374673280864954, 0.0016334035899490118, 0.0006734568160027266, 0.0006394304218702018, 0.0002148713101632893, 0.0014955428196117282, 0.43416279554367065], [0.0003973311686422676, 0.0007331280503422022, 0.0010172321926802397, 0.0003610823769122362, 0.00042566232150420547, 0.00015019436250440776, 0.000298165250569582, 0.46747010946273804], [0.004803582560271025, 0.0061154658906161785, 0.007158601190894842, 0.002716852119192481, 0.006478235591202974, 0.005087439436465502, 0.00709317484870553, 0.36839255690574646], [0.0011972530046477914, 0.0007016954477876425, 0.0008068008464761078, 0.0003328810853417963, 0.00038028485141694546, 0.0003336805966682732, 0.002802535891532898, 0.4021241068840027], [0.011329763568937778, 0.0027545730117708445, 0.0011474986094981432, 0.0011327818501740694, 0.001007491140626371, 0.0003843840677291155, 0.0028942839708179235, 0.189167320728302], [0.011836061254143715, 0.015538095496594906, 0.009615554474294186, 0.005789626389741898, 0.007745843380689621, 0.005369522608816624, 0.008734038099646568, 0.4265786111354828]]], [[[0.007371070794761181, 0.0020562754943966866, 0.003068702993914485, 0.001770065282471478, 0.0032568874303251505, 0.004766311030834913, 0.006450070068240166, 0.2478174865245819], [0.0015730548184365034, 0.0006176151218824089, 0.0009819604456424713, 0.0004689690831582993, 0.0003200812789145857, 0.0003572754212655127, 0.0007954053580760956, 0.31547674536705017], [0.0024387615267187357, 0.000964595761615783, 0.0016872045816853642, 0.0008631363161839545, 0.0010445145890116692, 0.0018621800700202584, 0.001427622977644205, 0.3833491802215576], [0.0025473006535321474, 0.0003266029816586524, 0.00013894002768211067, 0.00029300845926627517, 8.91031013452448e-05, 7.486743561457843e-05, 0.00041374441934749484, 0.3157312572002411], [0.0015811186749488115, 0.00024411195772700012, 0.0001614234206499532, 0.00010920059139607474, 0.00013633447815664113, 0.00019805652846116573, 0.0014219180447980762, 0.3424018323421478], [0.005142113659530878, 0.0007632905035279691, 0.000770245329476893, 0.0016080166678875685, 0.0005241295439191163, 0.0006482986500486732, 0.005554784554988146, 0.22427575290203094], [0.0012102406471967697, 0.00025780353462323546, 0.00016080736531876028, 0.00023815226450096816, 4.795687345904298e-05, 7.890781853348017e-05, 0.0008461686666123569, 0.218971848487854], [0.001043264172039926, 0.0001706254406599328, 0.0006140281329862773, 0.0008297772728838027, 0.00045525419409386814, 0.0004455914895515889, 0.0003260369994677603, 0.19237954914569855], [0.013656741008162498, 0.007858437485992908, 0.009717412292957306, 0.007288186810910702, 0.0059538655914366245, 0.005341776646673679, 0.01094656903296709, 0.41046974062919617]], [[0.07524964958429337, 0.024704841896891594, 0.006263480521738529, 0.0042268699035048485, 0.0026561543345451355, 0.006586187519133091, 0.011579404585063457, 0.10430606454610825], [0.012737920507788658, 0.12349595874547958, 0.01720115914940834, 0.003269166685640812, 0.005530004855245352, 0.007470955140888691, 0.013863109983503819, 0.28654488921165466], [0.0025745059829205275, 0.049204569309949875, 0.0015075196279212832, 0.0005030538886785507, 0.007739703170955181, 0.016909180209040642, 0.025284694507718086, 0.11921317875385284], [0.013888023793697357, 0.012861283496022224, 0.01952863298356533, 0.0065907444804906845, 0.026999998837709427, 0.025237450376152992, 0.11269043385982513, 0.28051042556762695], [0.0020031831227242947, 0.0014148547779768705, 0.01591162383556366, 0.01427283976227045, 0.01989276334643364, 0.006487254519015551, 0.009423681534826756, 0.3370836675167084], [0.06442612409591675, 0.008216682821512222, 0.016198374330997467, 0.019237861037254333, 0.019144710153341293, 0.01865171454846859, 0.07782933861017227, 0.2633069157600403], [0.024171948432922363, 0.00694342190399766, 0.013802092522382736, 0.006761043332517147, 0.014705506153404713, 0.015210062265396118, 0.021005921065807343, 0.35369759798049927], [0.01337648369371891, 0.0028448880184441805, 0.0040090568363666534, 0.0026992689818143845, 0.0044503165408968925, 0.006275787949562073, 0.023720959201455116, 0.23153062164783478], [0.0031410264782607555, 0.002090931637212634, 0.001405903953127563, 0.001393108512274921, 0.0014646362978965044, 0.00241012847982347, 0.0036539460998028517, 0.46315041184425354]], [[0.4729365408420563, 0.48991313576698303, 0.001260687131434679, 0.0012585459044203162, 0.002653754549100995, 0.0013919114135205746, 0.012034980580210686, 0.00818114634603262], [0.0003105650539509952, 0.0009245284018106759, 8.303656068164855e-05, 4.5787444832967594e-05, 0.0002466466976329684, 0.00010257070243824273, 0.00023893841716926545, 0.11121497303247452], [0.0005327476537786424, 0.0022035958245396614, 9.65610597631894e-05, 2.3932583644636907e-05, 0.00047764237388037145, 0.00025047536473721266, 0.0006909643416292965, 0.4111621379852295], [0.006643256638199091, 0.004730977118015289, 0.00032622195431031287, 0.0007639311370439827, 0.0015364665305241942, 0.0013437119778245687, 0.0009342811536043882, 0.14949901401996613], [0.00024521484738215804, 0.00019054162839893252, 0.0002420800010440871, 0.0010319185676053166, 0.00015022132720332593, 0.0004866015224251896, 0.0011610363144427538, 0.2942039668560028], [0.0007951314910314977, 0.0014751587295904756, 4.8424044507555664e-05, 0.00012909101496916264, 0.00014812868903391063, 0.0004014586447738111, 0.0013958034105598927, 0.4657135307788849], [0.0004776150162797421, 0.0008431479800492525, 0.0001769419468473643, 0.0003066942736040801, 0.00048201929894275963, 0.0004719459975603968, 0.0007038738112896681, 0.15901556611061096], [0.05752861872315407, 0.045575715601444244, 0.002179911360144615, 0.0007118297507986426, 0.0003898569557350129, 0.0004101578379049897, 0.010229206643998623, 0.40498408675193787], [0.031936950981616974, 0.026409320533275604, 0.004559976980090141, 0.004625579807907343, 0.004424510058015585, 0.004790178965777159, 0.012767665088176727, 0.4161543548107147]], [[0.025360368192195892, 0.027727726846933365, 0.03671010956168175, 0.014761500991880894, 0.03874959051609039, 0.0320102758705616, 0.04242224991321564, 0.2690429985523224], [0.0281349066644907, 0.021122025325894356, 0.020940164104104042, 0.01173543743789196, 0.007091095671057701, 0.01605815440416336, 0.04283600673079491, 0.35337433218955994], [0.00543315289542079, 0.004977128002792597, 0.0048849876038730145, 0.025981323793530464, 0.05213598906993866, 0.12927523255348206, 0.02463546395301819, 0.3415929079055786], [0.107973113656044, 0.004542628303170204, 0.022724678739905357, 0.0069719417952001095, 0.008445045910775661, 0.017451029270887375, 0.04614988714456558, 0.31141600012779236], [0.11960802227258682, 0.0012866504257544875, 0.06574541330337524, 0.0027275211177766323, 0.0015447484329342842, 0.005019684322178364, 0.024004632607102394, 0.32576993107795715], [0.06789546459913254, 0.0035564410500228405, 0.12111339718103409, 0.014632150530815125, 0.009795651771128178, 0.03575066849589348, 0.0714687928557396, 0.3043694496154785], [0.032709840685129166, 0.005623155739158392, 0.039324406534433365, 0.006350561510771513, 0.0029939881060272455, 0.006746789440512657, 0.03811773657798767, 0.37703457474708557], [0.02532600425183773, 0.0035393217112869024, 0.007039695978164673, 0.003352570114657283, 0.0032674113754183054, 0.005297438241541386, 0.03360140323638916, 0.38160696625709534], [0.03891906514763832, 0.039990827441215515, 0.018312886357307434, 0.020030900835990906, 0.020705249160528183, 0.033295806497335434, 0.05638739839196205, 0.23370924592018127]], [[0.003590339794754982, 0.002598183462396264, 0.00648346496745944, 0.005243256688117981, 0.007748070172965527, 0.004428984597325325, 0.004524675197899342, 0.1483244001865387], [4.369181260699406e-05, 0.00014400701911654323, 9.360193507745862e-05, 0.001165196648798883, 0.0002982378355227411, 0.00020724395290017128, 0.0004113147151656449, 0.10152650624513626], [2.8902964913868345e-05, 1.1730639016604982e-05, 2.594712350401096e-05, 8.167533087544143e-05, 0.0005488924216479063, 0.0003741225809790194, 0.0003166523529216647, 0.4537402093410492], [0.00015470014477614313, 0.00013584447151515633, 0.00015626999083906412, 0.00012891901133116335, 0.0003881491138599813, 4.326139242039062e-05, 0.0004734944086521864, 0.18068256974220276], [0.00012422488362062722, 1.7076361018553143e-06, 1.3382806173467543e-05, 0.00031805282924324274, 7.130322774173692e-05, 3.7954763683956116e-05, 0.0001722505403449759, 0.06382343173027039], [0.0023303343914449215, 0.00014334356819745153, 4.2055185076605994e-06, 4.670958514907397e-05, 3.832589936791919e-05, 0.00026926500140689313, 0.0022524523083120584, 0.15323345363140106], [0.00010711299546528608, 9.076368769456167e-06, 7.243413051583047e-07, 1.4265960999182425e-06, 7.108249064913252e-06, 2.8156011467217468e-05, 0.0014256952563300729, 0.27540552616119385], [0.05361013859510422, 8.289861580124125e-05, 8.080041880020872e-06, 1.4870154245727463e-06, 1.324291474702477e-06, 4.2500773815845605e-06, 1.946221527759917e-05, 0.4508037865161896], [0.006803077179938555, 0.0033591068349778652, 0.002013253979384899, 0.0036491057835519314, 0.004276950843632221, 0.0035748400259763002, 0.003063627751544118, 0.4636973738670349]], [[0.00024863501312211156, 0.0002154050162062049, 0.0005617032875306904, 0.0003246032865718007, 0.000404341088142246, 0.0003020506410393864, 0.002176842885091901, 0.27982115745544434], [0.008241520263254642, 0.012359398417174816, 0.0014585974859073758, 0.0010023469803854823, 0.0014763358049094677, 0.0011748215183615685, 0.01733115129172802, 0.1073656752705574], [0.003534552874043584, 0.02421685680747032, 0.0010112921008840203, 0.0005394059116952121, 0.0008861830574460328, 0.0012040042784065008, 0.014476785436272621, 0.21603302657604218], [0.010588867589831352, 0.00045926665188744664, 0.0007760879234410822, 0.0027186928782612085, 0.0006557187880389392, 0.0006137004820629954, 0.00283538899384439, 0.16612239181995392], [0.005414559505879879, 0.00029026262927800417, 0.0002940870472230017, 0.0005888287560082972, 0.0002710361732169986, 0.0003273374168202281, 0.001962077571079135, 0.3049234449863434], [0.007297547068446875, 0.0008926233276724815, 0.00045485360897146165, 0.000581452390179038, 0.00028437949367798865, 0.0002766584511846304, 0.0019043647916987538, 0.2945271134376526], [0.004943017847836018, 0.0006686780252493918, 0.00047086767153814435, 0.0004358016885817051, 0.0003125704824924469, 0.0002133495727321133, 0.0013570489827543497, 0.30025342106819153], [0.001626592711545527, 0.0017355451127514243, 0.0035774908028542995, 0.0018636470194905996, 0.0008732988499104977, 0.0007912074215710163, 0.0026463426183909178, 0.4536086320877075], [0.009497158229351044, 0.009117139503359795, 0.007020134013146162, 0.007555877789855003, 0.0046909274533391, 0.00682138791307807, 0.028370724990963936, 0.4205957353115082]], [[0.007121799048036337, 0.008981598541140556, 0.002165687968954444, 0.0014122417196631432, 0.002105581806972623, 0.0015918848803266883, 0.0053741117008030415, 0.23604467511177063], [0.0075362492352724075, 0.016184628009796143, 0.0008745047962293029, 0.0021673243027180433, 0.0008553347433917224, 0.0008103384752757847, 0.003815885866060853, 0.18649008870124817], [0.0035818982869386673, 0.011300148442387581, 0.0008870619931258261, 0.0033040109556168318, 0.0023080918472260237, 0.0026857848279178143, 0.005545157007873058, 0.2813759744167328], [0.006219392642378807, 0.006231232546269894, 0.0006101291510276496, 0.00012717396020889282, 0.0005338769406080246, 0.0003746833826880902, 0.0062690912745893, 0.2819998562335968], [0.0032739436719566584, 0.0008054864592850208, 0.006840225774794817, 0.00040076259756460786, 8.500029071001336e-05, 4.2904430301859975e-05, 0.0009749686578288674, 0.38330528140068054], [0.0031239681411534548, 0.0012768832966685295, 0.01191434171050787, 0.004412607755511999, 0.0024894692469388247, 0.0011454205960035324, 0.0024682427756488323, 0.3540332019329071], [0.002259686589241028, 0.0011002124520018697, 0.0008007656433619559, 0.0007070419378578663, 0.00016003272321540862, 0.00033185811480507255, 0.004071988631039858, 0.3756536543369293], [0.00378127908334136, 0.0016167000867426395, 0.0009473819518461823, 0.0005677852896042168, 0.0003473362885415554, 0.0007301612640731037, 0.007014446426182985, 0.41522181034088135], [0.013577992096543312, 0.016583584249019623, 0.007222366519272327, 0.005691088270395994, 0.010249377228319645, 0.007742955815047026, 0.020735086873173714, 0.3975064754486084]], [[0.9070485234260559, 0.012381895445287228, 0.0010898754699155688, 0.0020974017679691315, 0.003340748604387045, 0.0028547111432999372, 0.03231913223862648, 0.018008200451731682], [0.0031857462599873543, 0.012833202257752419, 0.008590567857027054, 0.007573004812002182, 0.0054169874638319016, 0.0023101670667529106, 0.01047569327056408, 0.16756410896778107], [0.0016216645017266273, 0.0023261969909071922, 0.0015799971297383308, 0.0031087459065020084, 0.003981929738074541, 0.002801507944241166, 0.005657135043293238, 0.42564547061920166], [0.01487801130861044, 0.002321388339623809, 0.0018796907970681787, 0.002045274944975972, 0.002377577591687441, 0.0010308694327250123, 0.002976121613755822, 0.25973016023635864], [0.002836958970874548, 0.0027977772988379, 0.0005122866132296622, 0.0007054119487293065, 0.0004253517254255712, 0.0004300023429095745, 0.0018425952875986695, 0.3660461902618408], [0.00856798980385065, 0.006119867321103811, 0.002005388494580984, 0.005063846707344055, 0.0014947752933949232, 0.001158251310698688, 0.003853730857372284, 0.4130237102508545], [0.013496950268745422, 0.0051397597417235374, 0.003169870935380459, 0.0027979668229818344, 0.0006697298958897591, 0.0006810688646510243, 0.0035471816081553698, 0.2657623589038849], [0.1713738888502121, 0.02975728176534176, 0.011335433460772038, 0.005311070941388607, 0.0026588791515678167, 0.0025084898807108402, 0.010416730307042599, 0.2998664081096649], [0.048978179693222046, 0.012677504681050777, 0.012153059244155884, 0.012410905212163925, 0.018826885148882866, 0.012641770765185356, 0.029373768717050552, 0.38532206416130066]], [[0.00029976683435961604, 0.00021563368500210345, 0.00016625561693217605, 5.6110340665327385e-05, 7.001328776823357e-05, 3.409140117582865e-05, 0.00012891496589872986, 0.21820102632045746], [0.00040190800791606307, 0.0002828743017744273, 0.00043458875734359026, 0.00016116838378366083, 0.0001923443196574226, 0.00015386042650789022, 0.0013821901520714164, 0.4690496325492859], [9.840984421316534e-05, 0.00027428523753769696, 0.00015854492085054517, 4.828941746382043e-05, 0.001816609757952392, 0.0006966443615965545, 0.0008187078638002276, 0.48521530628204346], [8.057921513682231e-05, 0.0004226982709951699, 0.00014216330600902438, 0.00010825470963027328, 0.0002754598972387612, 0.00010117785859620199, 0.0005521111306734383, 0.43215274810791016], [0.00011170908692292869, 6.849321653135121e-05, 0.0002079346013488248, 0.0006750866887159646, 0.00030630803667008877, 0.0001665297313593328, 0.00023527316807303578, 0.35099175572395325], [0.000316612800816074, 0.00024039334675762802, 6.83173057041131e-05, 4.879559492110275e-05, 9.615962335374206e-05, 0.000509117788169533, 0.001208844012580812, 0.3566097021102905], [8.546111348550767e-05, 1.569770938658621e-05, 1.3062812286079861e-05, 4.503134732658509e-06, 8.778869414527435e-06, 2.3977501768968068e-05, 0.000676079245749861, 0.473211407661438], [0.01108487043529749, 0.0012696747435256839, 1.6961041183094494e-05, 1.606821024324745e-05, 2.6223893655696884e-05, 4.410685141920112e-05, 0.0007321340963244438, 0.47180330753326416], [0.012698285281658173, 0.007260583806782961, 0.004748089704662561, 0.002695214468985796, 0.004964962601661682, 0.0060354857705533504, 0.007824470289051533, 0.439079225063324]], [[0.0066135600209236145, 0.009582077153027058, 0.007155739236623049, 0.0041506486013531685, 0.006435934454202652, 0.00901520624756813, 0.005004014819860458, 0.46897345781326294], [0.0017972465138882399, 0.004773606080561876, 0.001033432548865676, 0.0009794686920940876, 0.001003576209768653, 0.004898270592093468, 0.011695140972733498, 0.42441868782043457], [0.0011884078849107027, 0.002815657528117299, 0.004419669043272734, 0.0014225720660760999, 0.0013864398933947086, 0.0025226864963769913, 0.0023590491618961096, 0.42538824677467346], [0.00017089073662646115, 0.00014168610505294055, 4.951690061716363e-05, 0.00018147750233765692, 0.00024248930276371539, 0.0006021489971317351, 9.054239490069449e-05, 0.4826485812664032], [0.00010242780990665779, 0.00015250947035383433, 6.70484805596061e-05, 7.06777791492641e-05, 5.0836366426665336e-05, 0.00021239288616925478, 0.0011829208815470338, 0.4556106626987457], [0.00016709024203009903, 0.0002751776482909918, 0.00021413154900074005, 0.0001541209639981389, 0.00013619572564493865, 0.00023766029335092753, 0.0018110321834683418, 0.46351704001426697], [0.0001758130529196933, 0.00022426406212616712, 4.656359305954538e-05, 0.00011739401088561863, 0.0002498358371667564, 0.00044342526234686375, 0.0034575778990983963, 0.41198569536209106], [0.0002560635039117187, 0.00019517939654178917, 5.081154085928574e-05, 0.0004636063240468502, 0.00022052621352486312, 0.0014667102368548512, 0.001228218898177147, 0.4045025408267975], [0.007268840912729502, 0.013528822921216488, 0.006114609073847532, 0.009252402931451797, 0.010822935961186886, 0.016326000913977623, 0.011976811103522778, 0.4186249375343323]], [[1.4859769180475269e-05, 1.6625217540422454e-06, 8.735669894122111e-07, 6.831931841588812e-06, 8.76136346050771e-06, 8.568998964619823e-06, 0.027730019763112068, 0.0230398029088974], [0.0010869173565879464, 0.00045260091428644955, 7.394230487989262e-05, 0.0004003988578915596, 0.0001496725744800642, 0.0003172729047946632, 0.0010901883943006396, 0.40896889567375183], [0.00023584242444485426, 0.0006934786215424538, 0.0015141678741201758, 0.0006554787396453321, 0.0012277252972126007, 0.00031151380972005427, 0.00026277234428562224, 0.2772325277328491], [1.9760309442062862e-05, 0.0001840673794504255, 1.2046632946294267e-05, 0.0007476943428628147, 0.00014097412349656224, 0.0002640757884364575, 5.718844477087259e-05, 0.4212802052497864], [4.665302549256012e-05, 0.0003152368008159101, 0.0002806786505971104, 4.328700015321374e-05, 5.6680775742279366e-05, 4.936538971378468e-05, 0.00026608278858475387, 0.33826860785484314], [0.00025041832122951746, 0.0007307803025469184, 0.00017736315203364938, 0.0007285236497409642, 0.00012039943976560608, 3.8593112549278885e-05, 0.00025225148419849575, 0.24888446927070618], [0.0004459808988031, 4.851774065173231e-05, 3.70494817616418e-05, 7.732710218988359e-05, 0.0001507394335931167, 4.627926682587713e-05, 4.071185321663506e-05, 0.2856636345386505], [7.286720210686326e-05, 3.5261724406154826e-05, 5.444881026051007e-06, 8.468711166642606e-05, 7.878318865550682e-05, 0.00033633114071562886, 0.0020188838243484497, 0.2533053159713745], [0.005217724945396185, 0.004288507625460625, 0.0017007944406941533, 0.004521556664258242, 0.002942086895927787, 0.0026725721545517445, 0.019184140488505363, 0.44957709312438965]], [[0.06021136790513992, 0.016384968534111977, 0.003913346212357283, 0.01495314110070467, 0.004269339144229889, 0.01245495118200779, 0.03743751719594002, 0.1548040509223938], [0.01093027088791132, 0.9070063829421997, 0.001290512620471418, 0.0006622169748879969, 0.0004304322646930814, 0.0002703519130591303, 0.006418721284717321, 0.007833967916667461], [0.004015312995761633, 0.8174616098403931, 0.0017430142033845186, 0.0016311665531247854, 0.0014775906456634402, 0.004162629600614309, 0.03352399542927742, 0.01995236426591873], [0.04648205637931824, 0.05273868516087532, 0.03601903095841408, 0.010650807991623878, 0.0013882775092497468, 0.0015978427836671472, 0.07621385157108307, 0.15841388702392578], [0.022186512127518654, 0.015814848244190216, 0.0037308423779904842, 0.017118770629167557, 0.0014685160713270307, 0.001379501074552536, 0.034448184072971344, 0.23836688697338104], [0.10756000131368637, 0.022729581221938133, 0.01845385693013668, 0.03551193326711655, 0.0006498933071270585, 0.0025396374985575676, 0.06564154475927353, 0.20452941954135895], [0.11971084773540497, 0.043877311050891876, 0.045669861137866974, 0.015251833945512772, 0.0007043184596113861, 0.0010175270726904273, 0.04241645708680153, 0.19614742696285248], [0.08332706987857819, 0.015509034506976604, 0.044853806495666504, 0.004712630528956652, 0.00038340501487255096, 0.000517758191563189, 0.04627804830670357, 0.22907079756259918], [0.04139076545834541, 0.03536530211567879, 0.025959070771932602, 0.0290086530148983, 0.010200546123087406, 0.014316685497760773, 0.045015912503004074, 0.2293550819158554]]], [[[0.003222285071387887, 0.028030067682266235, 0.0010792185785248876, 0.000500990659929812, 0.0007302633603103459, 0.000869597599375993, 0.007325959857553244, 0.11482513695955276], [0.0028164705727249384, 0.007499368861317635, 0.00021854243823327124, 0.0007668511243537068, 0.00013776372361462563, 0.00018941382586490363, 0.002091463888064027, 0.2859983444213867], [0.0005571680376306176, 0.0044917212799191475, 0.00038567467709071934, 0.0002042024425463751, 0.00023301954206544906, 0.0002402973041171208, 0.0012122293701395392, 0.4219382703304291], [0.003207303350791335, 0.0017004829132929444, 0.00041987671284005046, 0.00022912098211236298, 0.00010279820708092302, 0.0002585861657280475, 0.003697959240525961, 0.30171987414360046], [0.002207000507041812, 0.0005496328230947256, 0.00047149305464699864, 0.00023021025117486715, 8.827996498439461e-05, 0.00021609636314678937, 0.0052264113910496235, 0.3857913613319397], [0.007943536154925823, 0.002520049223676324, 0.001113853882998228, 0.001180359860882163, 0.0013389542000368237, 0.002726425416767597, 0.007442825473845005, 0.342966765165329], [0.0030511284712702036, 0.0013138599460944533, 0.00019944993255194277, 0.0003325746220070869, 5.539594349102117e-05, 0.0001470465649617836, 0.008935135789215565, 0.3387135863304138], [0.0040791709907352924, 0.0031182393431663513, 0.0005477099330164492, 0.0007156832725740969, 0.000564315530937165, 0.0008533255313523114, 0.0010418876772746444, 0.2677452862262726], [0.005519409663975239, 0.009300841018557549, 0.006858759094029665, 0.004189517814666033, 0.010243996046483517, 0.010956753976643085, 0.015462791547179222, 0.4205385744571686]], [[0.000623668369371444, 0.0006565509829670191, 0.00024722624220885336, 0.0002423793775960803, 0.001202116720378399, 0.0012709980364888906, 0.004020807798951864, 0.20505185425281525], [0.0024523886386305094, 0.0003674894105643034, 0.0003268657310400158, 0.00043549813563004136, 0.00032785756047815084, 0.0006079814629629254, 0.0015747409779578447, 0.3538493812084198], [0.002939981408417225, 0.0014126028399914503, 0.0005398806533776224, 0.0011916563380509615, 0.0009985454380512238, 0.0014705669600516558, 0.002631161827594042, 0.31719082593917847], [0.002567046321928501, 0.0007795484270900488, 0.00016869918908923864, 0.0008866242715157568, 0.0004209131875541061, 0.0006938352016732097, 0.0010381081374362111, 0.20555660128593445], [0.00098380574490875, 0.0005859395023435354, 0.0004364593478385359, 0.0003401575959287584, 0.00041530063026584685, 0.0003914370317943394, 0.0004994593327865005, 0.35681360960006714], [0.0012013415107503533, 0.00033970651566050947, 0.00018978756270371377, 0.0004091697046533227, 0.00045075680827721953, 0.00039951736107468605, 0.0009409427875652909, 0.392911434173584], [0.00036607604124583304, 9.939416486304253e-05, 0.00023683186736889184, 0.00016975868493318558, 0.00015493850514758378, 6.693822069792077e-05, 0.0003024028264917433, 0.2860943377017975], [0.000712734879925847, 0.0003517790464684367, 0.00036900214035995305, 0.0004219951806589961, 0.0006284616538323462, 0.0008821941446512938, 0.002642233157530427, 0.30241644382476807], [0.008446041494607925, 0.009078006260097027, 0.006193111650645733, 0.002964327810332179, 0.002092530718073249, 0.0037298286333680153, 0.00897007156163454, 0.4374888837337494]], [[0.12482968717813492, 0.050272002816200256, 0.011151405051350594, 0.0037445160560309887, 0.0075047630816698074, 0.020641835406422615, 0.15274009108543396, 0.17354722321033478], [0.003018262330442667, 0.0037483456544578075, 0.0004999149823561311, 0.00013760202273260802, 0.00021285071852616966, 0.0005034448695369065, 0.010472883470356464, 0.050992876291275024], [0.0027507860213518143, 0.01060415804386139, 0.0007669285405427217, 0.0008080457337200642, 0.0005498760147020221, 0.0008260412723757327, 0.011163183487951756, 0.08470353484153748], [0.00662103109061718, 0.005812695249915123, 0.0020389158744364977, 0.00023032139870338142, 0.0004292786761652678, 0.001284569501876831, 0.011850080452859402, 0.22995422780513763], [0.006430253852158785, 0.0017697770381346345, 0.0037355064414441586, 0.000640927697531879, 0.00023232429521158338, 0.00042635094723664224, 0.004968475550413132, 0.3470793664455414], [0.006442303769290447, 0.004564326256513596, 0.0011788730043917894, 0.0008824720280244946, 0.0004101727972738445, 0.0012996913865208626, 0.019185950979590416, 0.2679932713508606], [0.002469658385962248, 0.0005711872945539653, 0.0008048827294260263, 6.381727143889293e-05, 2.9046395866316743e-05, 8.3308776083868e-05, 0.0032584371510893106, 0.39479920268058777], [0.0026473761536180973, 0.004670982714742422, 0.0005967780598439276, 0.00017445682897232473, 0.0006383605650626123, 0.0015284724067896605, 0.009621094912290573, 0.13187429308891296], [0.00202777236700058, 0.0012497866991907358, 0.0006144680082798004, 0.0003891513333655894, 0.0005871561588719487, 0.0005445200949907303, 0.0020153741352260113, 0.4847172498703003]], [[0.09726065397262573, 0.042058736085891724, 0.016970792785286903, 0.007064131088554859, 0.009209049865603447, 0.0269177109003067, 0.1292913854122162, 0.3292129337787628], [0.0063878498040139675, 0.004316553007811308, 0.0011726761003956199, 0.001430540345609188, 0.0015171411214396358, 0.0008085212903097272, 0.014190485700964928, 0.25359416007995605], [0.0010106076952069998, 0.0031537143513560295, 0.0008174902759492397, 0.0006932400865480304, 0.00444023497402668, 0.0027562291361391544, 0.004864922259002924, 0.4310709238052368], [0.0013055438175797462, 0.0003880287695210427, 0.0004887021495960653, 0.0006392252980731428, 0.0004481000651139766, 0.00046945796930231154, 0.002928073052316904, 0.32508018612861633], [0.002744380384683609, 0.00039450314943678677, 0.00027286590193398297, 0.0005930708721280098, 0.0011334207374602556, 0.0003167016548104584, 0.0018019923008978367, 0.3306964337825775], [0.006457692477852106, 0.0008896054932847619, 0.0006834467058070004, 0.0022377928253263235, 0.0029984142165631056, 0.004237498622387648, 0.015372789464890957, 0.20931147038936615], [0.0018435518722981215, 0.00016437556769233197, 5.465562207973562e-05, 3.5044467949774116e-05, 7.795871351845562e-05, 3.9380931411869824e-05, 0.005023255944252014, 0.3709942400455475], [0.00128552142996341, 0.002121981466189027, 0.0013270488707348704, 0.00030418383539654315, 0.0006217916961759329, 0.0005152271478436887, 0.001263331389054656, 0.4676826596260071], [0.0037741262931376696, 0.003716695122420788, 0.006658582016825676, 0.0034265785943716764, 0.014179150573909283, 0.007708790712058544, 0.003593786619603634, 0.4563746154308319]], [[0.00179760018363595, 0.0013329824432730675, 0.01075056754052639, 0.005185674410313368, 0.0023407794069498777, 0.0021522543393075466, 0.005133139435201883, 0.08528196066617966], [0.00032645263127051294, 0.0003248643479309976, 0.0002673377748578787, 0.00011943218851229176, 0.00021623271459247917, 0.00013916415628045797, 0.00014406828267965466, 0.26753750443458557], [0.0017014400800690055, 0.001945211784914136, 0.002674452029168606, 0.0023524488788098097, 0.0017909761518239975, 0.0013948706910014153, 0.001281709992326796, 0.3380189538002014], [0.001788897323422134, 0.0006236655754037201, 0.00042825372656807303, 0.00010942654625978321, 7.633345376234502e-06, 1.2319670531724114e-05, 0.00011274260032223538, 0.36250489950180054], [0.0005804746760986745, 0.00011200936569366604, 0.00011535434168763459, 3.435305552557111e-05, 8.08266759122489e-06, 1.885876372398343e-05, 0.00021526942146010697, 0.28905925154685974], [0.004470486659556627, 0.0013387985527515411, 0.00039366536657325923, 0.00011838461796287447, 5.950408012722619e-05, 0.00010068350093206391, 0.0006687200511805713, 0.15669189393520355], [0.0003446432820055634, 0.0001834815484471619, 1.958394750545267e-05, 4.12821646023076e-06, 3.717936181146797e-07, 1.5065513707668288e-06, 3.8350674003595486e-05, 0.14455482363700867], [0.0018323649419471622, 0.0009202899527736008, 0.000946124317124486, 0.000476937711937353, 9.822175343288109e-05, 0.00014358140469994396, 0.000658158038277179, 0.27331820130348206], [0.018472520634531975, 0.02015983685851097, 0.021893126890063286, 0.009429410099983215, 0.0056530870497226715, 0.006247894838452339, 0.020583558827638626, 0.40892016887664795]], [[0.283425897359848, 0.03495556488633156, 0.20913217961788177, 0.06221076101064682, 0.018787436187267303, 0.027225757017731667, 0.07696833461523056, 0.12022089958190918], [0.009930008091032505, 0.0017126131569966674, 0.017165325582027435, 0.012370679527521133, 0.0027852668426930904, 0.004340345039963722, 0.0025703483261168003, 0.17186138033866882], [0.002630728529766202, 0.001089355326257646, 0.003610256128013134, 0.011623641476035118, 0.01512613333761692, 0.016638105735182762, 0.003055887995287776, 0.4315195083618164], [0.012729426845908165, 0.0011528690811246634, 0.03222086280584335, 0.010329254902899265, 0.0010545023251324892, 0.0016127856215462089, 0.005335953086614609, 0.10188055783510208], [0.003216436365619302, 0.00029846461256965995, 0.03673403337597847, 0.0030582044273614883, 0.00015367318701464683, 0.0003008657367900014, 0.0014007758582010865, 0.1983650177717209], [0.006478199269622564, 0.0003868359490297735, 0.005807084031403065, 0.007590980269014835, 0.0018962349276989698, 0.0044573531486094, 0.0025140647776424885, 0.38036060333251953], [0.006913176272064447, 0.00033522487501613796, 0.005386059638112783, 0.0015197106404229999, 0.00020825258980039507, 0.00041800516191869974, 0.0013687267201021314, 0.2473062127828598], [0.007564121391624212, 0.0011984413722530007, 0.013658230192959309, 0.004363464191555977, 0.0009361953125335276, 0.001155634643509984, 0.0013657136587426066, 0.07763147354125977], [0.0014607614139094949, 0.0008804139215499163, 0.00390710961073637, 0.002176470123231411, 0.0010624444112181664, 0.001183721236884594, 0.0016297680558636785, 0.48998796939849854]], [[0.31588026881217957, 0.015049525536596775, 0.007510794326663017, 0.012872375547885895, 0.013264773413538933, 0.008210907690227032, 0.028310120105743408, 0.25507572293281555], [0.0012999624013900757, 0.002331748139113188, 0.00013568071881309152, 0.00017605161701794714, 0.00041269147186540067, 0.0006365765002556145, 0.006179030053317547, 0.183952197432518], [0.000495097425300628, 0.00048353467718698084, 0.0002778747002594173, 0.00023284953203983605, 0.0007232891512103379, 0.0008334909798577428, 0.002175401896238327, 0.4797942340373993], [0.003807324916124344, 0.0029984903521835804, 0.0006426495965570211, 0.006278607994318008, 0.0008054818026721478, 0.0009979152819141746, 0.0019089989364147186, 0.19070765376091003], [0.005606281571090221, 0.001221132348291576, 0.0007744447211734951, 0.0025148848071694374, 0.00040608234121464193, 0.0010330518707633018, 0.0020804970990866423, 0.3028867244720459], [0.006856197956949472, 0.01098709274083376, 0.00044689461356028914, 0.002688364125788212, 0.0013488751137629151, 0.0011925341095775366, 0.010072179138660431, 0.42001670598983765], [0.0028326997999101877, 0.002592699835076928, 0.0005638798465952277, 0.0008217107388190925, 0.0004992752801626921, 0.00022885753423906863, 0.0019354952964931726, 0.3997306227684021], [0.09313038736581802, 0.01115424931049347, 0.0016766426851972938, 0.001661903690546751, 0.0006327586015686393, 0.0005437562358565629, 0.012841450050473213, 0.3826677203178406], [0.008105170913040638, 0.010031886398792267, 0.003984170034527779, 0.0040039196610450745, 0.0033216525334864855, 0.004154632333666086, 0.010170423425734043, 0.44939473271369934]], [[0.13772368431091309, 0.20343159139156342, 0.055641625076532364, 0.0701574981212616, 0.09910611808300018, 0.10137367993593216, 0.07043067365884781, 0.12246666848659515], [0.009779456071555614, 0.003952621482312679, 0.0024773424956947565, 0.005470562726259232, 0.0023116853553801775, 0.0025955087039619684, 0.0050215646624565125, 0.05779048427939415], [0.004880881868302822, 0.024638567119836807, 0.0037614803295582533, 0.007175808772444725, 0.0018003600416705012, 0.00440263282507658, 0.004995821043848991, 0.3248162269592285], [0.0015457518165931106, 0.0008029846358112991, 0.0005358491907827556, 0.00021044538880232722, 0.0002988128107972443, 0.0002829236618708819, 0.00037414743565022945, 0.1726989895105362], [0.006062052678316832, 0.0015031128423288465, 0.0006979292957112193, 0.000531914469320327, 0.0007963349926285446, 0.0006721874815411866, 0.0009894188260659575, 0.3899540305137634], [0.008459176868200302, 0.001814587158150971, 0.0017486230935901403, 0.0016087424010038376, 0.0004658525576815009, 0.00046563157229684293, 0.0017203915631398559, 0.41783076524734497], [0.002494734711945057, 0.0014001242816448212, 0.00022686805459670722, 0.00018708065908867866, 6.835155363660306e-05, 0.0001292120141442865, 0.0005419838707894087, 0.3359127342700958], [0.0015233741141855717, 0.004458594601601362, 0.002075082855299115, 0.001972536789253354, 0.0014049700694158673, 0.0015179242473095655, 0.002926965244114399, 0.46008673310279846], [0.008366926573216915, 0.014395671896636486, 0.00581879448145628, 0.008429646492004395, 0.007404949050396681, 0.006506940815597773, 0.014795057475566864, 0.43959569931030273]], [[0.016052134335041046, 0.06287457793951035, 0.025008130818605423, 0.004577512387186289, 0.007040305994451046, 0.005467359907925129, 0.05901488661766052, 0.11065822094678879], [0.019709866493940353, 0.09214501082897186, 0.004933816846460104, 0.0051571037620306015, 0.003140565473586321, 0.0043029142543673515, 0.07132761925458908, 0.17333978414535522], [0.004997994750738144, 0.035782746970653534, 0.005109894089400768, 0.010521999560296535, 0.009112564846873283, 0.013246867805719376, 0.03709539398550987, 0.30620241165161133], [0.014003976248204708, 0.08979861438274384, 0.031223073601722717, 0.006575165782123804, 0.0029036386404186487, 0.006337929517030716, 0.0970286875963211, 0.25838419795036316], [0.004331996664404869, 0.02761840634047985, 0.006583582144230604, 0.002759317634627223, 0.000283123372355476, 0.0004700732242781669, 0.012028670869767666, 0.426663339138031], [0.0021214657463133335, 0.012420115992426872, 0.011270076967775822, 0.003285323502495885, 0.0017255217535421252, 0.0019435553112998605, 0.014284607954323292, 0.4361169636249542], [0.003711278084665537, 0.020651908591389656, 0.0056063514202833176, 0.0012981811305508018, 0.0004608895687852055, 0.0007714182720519602, 0.02760343626141548, 0.40973177552223206], [0.0229116789996624, 0.031449105590581894, 0.010500955395400524, 0.004389235749840736, 0.0022131619043648243, 0.0034238931257277727, 0.2693057060241699, 0.08032295852899551], [0.0005546637694351375, 0.005041162483394146, 0.0005469773896038532, 0.00041578782838769257, 0.0009226111578755081, 0.0005357841146178544, 0.004128101281821728, 0.4846450686454773]], [[0.03948110714554787, 0.016117794439196587, 0.00408739922568202, 0.0059061478823423386, 0.00850494671612978, 0.009124873206019402, 0.0209654588252306, 0.42636609077453613], [0.001067489036358893, 0.0010366725036874413, 0.0001745819899952039, 0.00017410116561222821, 0.00014942655980121344, 0.00018256505427416414, 0.0005827136337757111, 0.3475383520126343], [0.00041124087874777615, 0.00019700895063579082, 4.164076381130144e-05, 4.4116928620496765e-05, 4.400230318424292e-05, 8.783100929576904e-05, 0.0006969596142880619, 0.4735690653324127], [0.0015240313950926065, 0.0008374750032089651, 7.17956354492344e-05, 8.443900151178241e-05, 0.00012302333198022097, 0.00021348362497519702, 0.0005965592572465539, 0.09590543806552887], [0.0013285573804751039, 0.0005724547663703561, 0.00010126011329703033, 9.585007501300424e-05, 0.00011687017831718549, 0.00019451510161161423, 0.0004434861766640097, 0.22052322328090668], [0.0012602112255990505, 0.0013638047967106104, 7.213281787699088e-05, 0.00010111636220244691, 7.543480751337484e-05, 0.00015952668036334217, 0.0006899815052747726, 0.20854128897190094], [0.0001871999556897208, 0.0003869208157993853, 2.979900273203384e-05, 1.823881575546693e-05, 1.1048969099647366e-05, 2.4806040528346784e-05, 0.00010531870066188276, 0.09989587962627411], [0.0014124589506536722, 0.00039877681410871446, 7.560791709693149e-05, 0.00023732869885861874, 0.00015420631098095328, 0.00017564419249538332, 0.0006804355653002858, 0.1474103033542633], [0.006547246593981981, 0.004517809022217989, 0.0035991850309073925, 0.003991721197962761, 0.0026475691702216864, 0.0033872632775455713, 0.009543891996145248, 0.4501747786998749]], [[0.003284105332568288, 0.005533246323466301, 0.000588096387218684, 0.002263931091874838, 0.0011695821303874254, 0.007385763805359602, 0.027563799172639847, 0.18597130477428436], [0.008241813629865646, 0.005077504087239504, 0.0014919729437679052, 0.0005980879068374634, 0.0005341222858987749, 0.002417521784082055, 0.035039082169532776, 0.3315604627132416], [0.0045522586442530155, 0.010172532871365547, 0.0009862747974693775, 0.0018992063123732805, 0.0012225777609273791, 0.001290588523261249, 0.0036098496057093143, 0.3549647033214569], [0.003046703524887562, 0.008387365378439426, 0.0007170605240389705, 0.0073933349922299385, 0.0005713555146940053, 0.004207481164485216, 0.012904184870421886, 0.29721856117248535], [0.0009426865144632757, 0.002076572272926569, 0.0046088807284832, 0.00018185916997026652, 6.9033162617415655e-06, 9.313737973570824e-05, 0.0015832779463380575, 0.400356650352478], [0.001949335797689855, 0.0026379567570984364, 0.003050676081329584, 0.0023753070272505283, 0.0002932828792836517, 0.00032652748632244766, 0.0028833970427513123, 0.4201277792453766], [0.0006956520956009626, 0.00028857923462055624, 0.0004372325201984495, 0.0003889017680194229, 0.0004590452299453318, 0.0007199443061836064, 0.00028731179190799594, 0.32853779196739197], [0.0008920336258597672, 0.0014183634193614125, 0.00034004414919763803, 0.001212591421790421, 0.0005576686235144734, 0.006215730682015419, 0.004421238787472248, 0.43949562311172485], [0.00047569835442118347, 0.001369165489450097, 0.0004413688729982823, 0.0009748844895511866, 0.001188384834676981, 0.0030356338247656822, 0.0022334882523864508, 0.47052595019340515]], [[0.05743110552430153, 0.03015841916203499, 0.0389116033911705, 0.1059289276599884, 0.09665253758430481, 0.0629948079586029, 0.024561140686273575, 0.1330835223197937], [0.00791910570114851, 0.026128726080060005, 0.00259676412679255, 0.008003918454051018, 0.004369635134935379, 0.0027292920276522636, 0.010857478715479374, 0.1983613520860672], [0.004637308418750763, 0.0087659303098917, 0.004394723568111658, 0.0051969848573207855, 0.007367085199803114, 0.00740556325763464, 0.007463669404387474, 0.32345446944236755], [0.013535000383853912, 0.022532662376761436, 0.010652712546288967, 0.0040230113081634045, 0.007804324850440025, 0.0044662002474069595, 0.021488994359970093, 0.230083167552948], [0.003775682533159852, 0.01254457887262106, 0.014647881500422955, 0.005954829044640064, 0.0022444489877671003, 0.001237290445715189, 0.00422986876219511, 0.3527345657348633], [0.009205828420817852, 0.022906597703695297, 0.037429023534059525, 0.01118883490562439, 0.012235239148139954, 0.009026508778333664, 0.011575348675251007, 0.2844543159008026], [0.005561640486121178, 0.004467607941478491, 0.008465217426419258, 0.0059404075145721436, 0.0010698680998757482, 0.003112250939011574, 0.014009238220751286, 0.24808534979820251], [0.0872807651758194, 0.009856261312961578, 0.005068885162472725, 0.002886431524530053, 0.004178632982075214, 0.0037750352639704943, 0.01835758425295353, 0.09917805343866348], [0.008896546438336372, 0.012218263000249863, 0.007445402443408966, 0.004232125822454691, 0.010823560878634453, 0.009586363099515438, 0.005522599443793297, 0.42498186230659485]]], [[[0.0048317089676856995, 0.013595408760011196, 0.006370397750288248, 0.0018691695295274258, 0.0030129116494208574, 0.013100193813443184, 0.017499612644314766, 0.42969197034835815], [0.0009159205364994705, 0.004144875332713127, 0.0001511790615040809, 0.000310602190438658, 0.00045612110989168286, 0.0008489047759212554, 0.00035496437340043485, 0.46540531516075134], [0.002418787917122245, 0.0691961944103241, 0.0013466948876157403, 0.0027232251595705748, 0.0070961844176054, 0.00970343966037035, 0.001868013758212328, 0.36726292967796326], [0.002428583335131407, 0.002552286721765995, 0.000801368267275393, 0.00041510656592436135, 0.0004253717779647559, 0.0005719332257285714, 0.000939021585509181, 0.422831654548645], [0.0031867031939327717, 0.0006914493860676885, 0.0012891717487946153, 0.0005928617902100086, 8.706475637154654e-05, 0.00014216042472980917, 0.00036609344533644617, 0.44818317890167236], [0.0012754567433148623, 0.0007351312087848783, 0.001718595391139388, 0.0012440882856026292, 0.00026829823036678135, 0.000921970116905868, 0.000867162540089339, 0.2971906065940857], [0.00041073214379139245, 0.0003198066842742264, 0.0004931416478939354, 0.00017012680473271757, 3.870506043313071e-05, 3.4888595109805465e-05, 0.00021492960513569415, 0.4321800470352173], [0.003840586170554161, 0.0027971358504146338, 0.0054350970312952995, 0.002211071318015456, 0.002032962627708912, 0.003516688710078597, 0.0033688440453261137, 0.3903668224811554], [0.009005377069115639, 0.011797516606748104, 0.006628283765166998, 0.011358375661075115, 0.005317809525877237, 0.008896240964531898, 0.010583445429801941, 0.43598031997680664]], [[0.1628100425004959, 0.030247002840042114, 0.02467288076877594, 0.005937832407653332, 0.016153080388903618, 0.02845032513141632, 0.07733137160539627, 0.043842751532793045], [0.017276925966143608, 0.417903333902359, 0.002382363425567746, 0.0012518300209194422, 0.0021544185001403093, 0.0052099977619946, 0.05349516496062279, 0.044387832283973694], [0.0134042426943779, 0.294309139251709, 0.002574810292571783, 0.010791764594614506, 0.05678164213895798, 0.057391054928302765, 0.034848328679800034, 0.17542219161987305], [0.012645446695387363, 0.48845574259757996, 0.0131989112123847, 0.0008399324724450707, 0.003099683206528425, 0.002868443727493286, 0.04414999857544899, 0.06362830847501755], [0.00930524617433548, 0.15459536015987396, 0.06258784234523773, 0.003043663688004017, 0.003170684212818742, 0.000922352191992104, 0.03426472470164299, 0.15531444549560547], [0.1566128432750702, 0.15791141986846924, 0.03608215972781181, 0.0034717756789177656, 0.008231736719608307, 0.006995255593210459, 0.0943189263343811, 0.08041474223136902], [0.060373611748218536, 0.13012462854385376, 0.0345107801258564, 0.001532015623524785, 0.003784201806411147, 0.002534886123612523, 0.047472503036260605, 0.1699550300836563], [0.22668428719043732, 0.02831847593188286, 0.035298217087984085, 0.0016911088023334742, 0.005833702627569437, 0.0081093218177557, 0.08762441575527191, 0.1276521533727646], [0.0005170623189769685, 0.0001244523300556466, 0.00015349021123256534, 0.00014720424951519817, 0.0007089170394465327, 0.0013552111340686679, 0.0015393394278362393, 0.49420425295829773]], [[0.11088255047798157, 0.009979486465454102, 0.13842372596263885, 0.005928863771259785, 0.0024945370387285948, 0.005972075741738081, 0.012237956747412682, 0.25324955582618713], [0.007219382096081972, 0.0030119181610643864, 0.0217897966504097, 0.0009453329257667065, 0.00029282699688337743, 0.0011047397274523973, 0.0015492497477680445, 0.4210852086544037], [0.006758219096809626, 0.005464981775730848, 0.017780551686882973, 0.004257873632013798, 0.003060202347114682, 0.014453092589974403, 0.003659906331449747, 0.2726409435272217], [0.017222190275788307, 0.0010942252120003104, 0.029528802260756493, 0.0008049707394093275, 0.00016539113130420446, 0.0010713819647207856, 0.0016853123670443892, 0.30987706780433655], [0.016163554042577744, 0.001412366284057498, 0.025659902021288872, 0.0008126451866701245, 5.702931230189279e-05, 0.00026056068600155413, 0.0011112093925476074, 0.22837737202644348], [0.012830095365643501, 0.000998817733488977, 0.018047822639346123, 0.003052294021472335, 0.00040483244811184704, 0.0017198577988892794, 0.0012585220392793417, 0.3297401964664459], [0.005289510358124971, 0.00022451739641837776, 0.002790948608890176, 0.0001560000964673236, 7.321799785131589e-05, 0.0001176289952127263, 0.00014549212937708944, 0.16167351603507996], [0.007748475763946772, 0.0014988093171268702, 0.007949343882501125, 0.001540480530820787, 0.0014903619885444641, 0.004578712861984968, 0.002753122244030237, 0.32744359970092773], [0.000612407922744751, 0.00011897298827534541, 0.0014546907041221857, 0.0009421492577530444, 0.0003291982284281403, 0.0005824245163239539, 0.00030612730188295245, 0.49142026901245117]], [[0.04347488656640053, 0.10472960025072098, 0.028351252898573875, 0.014055064879357815, 0.03376052528619766, 0.10987947136163712, 0.050930436700582504, 0.15884585678577423], [0.007199322339147329, 0.00538942264392972, 0.004069355316460133, 0.0004276138497516513, 0.0016412222757935524, 0.0010410601971670985, 0.00106534524820745, 0.2562282085418701], [0.02286101132631302, 0.062114544212818146, 0.018452299758791924, 0.0095830662176013, 0.022546708583831787, 0.023739181458950043, 0.0057471501640975475, 0.1937822848558426], [0.0033327797427773476, 0.00393783301115036, 0.001168720773421228, 0.0001587439328432083, 0.0002526993921492249, 0.00019798599532805383, 0.0016236546216532588, 0.2027311772108078], [0.0012080990709364414, 0.0008347250986844301, 0.00047063728561624885, 0.00010091638978337869, 0.00017698350711725652, 0.00038561035762540996, 0.0009233275195583701, 0.14434728026390076], [0.005186551716178656, 0.0035664166789501905, 0.0012715347111225128, 0.00020305767247918993, 0.00035754733835346997, 0.0007406423101201653, 0.002453552559018135, 0.12199698388576508], [0.0027009497862309217, 0.0010039940243586898, 0.0002459725656080991, 8.721144695300609e-06, 2.6344872821937315e-05, 4.151917528361082e-05, 0.0005614097462967038, 0.2366921454668045], [0.04782627522945404, 0.01911432482302189, 0.014265851117670536, 0.002070075599476695, 0.003564816899597645, 0.007148840464651585, 0.011631689965724945, 0.2708803415298462], [0.006894415244460106, 0.009952890686690807, 0.002874460071325302, 0.0024511839728802443, 0.0039934152737259865, 0.005317137576639652, 0.005563290789723396, 0.44943347573280334]], [[0.047318875789642334, 0.04208676144480705, 0.01878889836370945, 0.01100761629641056, 0.014472916722297668, 0.028678569942712784, 0.02303166873753071, 0.05712360888719559], [0.010027594864368439, 0.026250414550304413, 0.00016817255527712405, 0.00015765403804834932, 0.0010028915712609887, 0.001455741818062961, 0.003909650258719921, 0.34610655903816223], [0.014680557884275913, 0.23162738978862762, 0.0005949627957306802, 0.001334000495262444, 0.006100136786699295, 0.0038041158113628626, 0.010946354828774929, 0.10669633746147156], [0.0033303960226476192, 0.0036240648478269577, 0.00010415743599878624, 6.836989632574841e-05, 0.0004043545632157475, 0.0009410078637301922, 0.00268644280731678, 0.4153790771961212], [0.001352126244455576, 0.00044505909318104386, 0.00015005332534201443, 7.851625559851527e-05, 0.000251096673309803, 0.0004647541791200638, 0.0010720709105953574, 0.4087378978729248], [0.0013278208207339048, 0.0016432307893410325, 0.0006061104359105229, 0.00024091789964586496, 0.0003382884315215051, 0.0005019005620852113, 0.001827525207772851, 0.29126864671707153], [0.00041284612962044775, 0.00029996121884323657, 0.00018194009317085147, 2.7954380129813217e-05, 2.7285574105917476e-05, 8.197926945285872e-05, 0.0009955595014616847, 0.41990479826927185], [0.0013476863969117403, 0.0009757888619787991, 0.005145919043570757, 0.002242211252450943, 0.00546660041436553, 0.01270740944892168, 0.002665742067620158, 0.35554587841033936], [0.0043053762055933475, 0.005080239847302437, 0.003791006049141288, 0.0025038542225956917, 0.003738861531019211, 0.0043176887556910515, 0.003739487612619996, 0.4700266718864441]], [[0.295781672000885, 0.09655699133872986, 0.04122977703809738, 0.011680122464895248, 0.023682251572608948, 0.03944287821650505, 0.2596244513988495, 0.0670582577586174], [0.044618159532547, 0.011934743262827396, 0.006733455695211887, 0.003417801344767213, 0.0020054092165082693, 0.003505244618281722, 0.02612491138279438, 0.040903929620981216], [0.03626762703061104, 0.020786143839359283, 0.03476434573531151, 0.01393949519842863, 0.01633043959736824, 0.030041249468922615, 0.045669056475162506, 0.136373832821846], [0.028196999803185463, 0.004327837377786636, 0.003999743144959211, 0.0011839843355119228, 0.00289732264354825, 0.002057417295873165, 0.007659147493541241, 0.08370807021856308], [0.004062858875840902, 0.0015230657299980521, 0.0006315033533610404, 0.00037841216544620693, 0.0003693833714351058, 0.00041127012809738517, 0.0014291186816990376, 0.41343972086906433], [0.020495956763625145, 0.0037178273778408766, 0.005999482702463865, 0.00213565188460052, 0.0006266881828196347, 0.0012144312495365739, 0.00257364334538579, 0.35028061270713806], [0.008470116183161736, 0.0014952346682548523, 0.0008349107229150832, 0.00035855252644978464, 0.00019745880854316056, 0.0003096552682109177, 0.0008380338549613953, 0.3941214978694916], [0.24784566462039948, 0.021695904433727264, 0.027697384357452393, 0.012594706378877163, 0.01625233329832554, 0.01723012514412403, 0.09224571287631989, 0.16830769181251526], [0.0026564847212284803, 0.0015937137650325894, 0.0021955850534141064, 0.0013482471695169806, 0.0035036050248891115, 0.0030389942694455385, 0.006620925385504961, 0.47618862986564636]], [[0.01971416547894478, 0.012520871125161648, 0.014196696691215038, 0.04266674444079399, 0.06630115956068039, 0.13645882904529572, 0.020663229748606682, 0.27162256836891174], [0.011775637045502663, 0.021446844562888145, 0.008897126652300358, 0.006316294893622398, 0.003781345207244158, 0.004298872780054808, 0.06142734736204147, 0.4088129699230194], [0.024049175903201103, 0.04038354009389877, 0.009856132790446281, 0.042130276560783386, 0.09189905971288681, 0.13149170577526093, 0.05680578202009201, 0.23308561742305756], [0.0277887973934412, 0.028559036552906036, 0.04810072481632233, 0.002099274890497327, 0.0015611655544489622, 0.002469548024237156, 0.11942794919013977, 0.30094653367996216], [0.02491355687379837, 0.026236336678266525, 0.032557472586631775, 0.004630800802260637, 0.0009867883054539561, 0.0012890314683318138, 0.041428811848163605, 0.32345518469810486], [0.04134989529848099, 0.03338254243135452, 0.01068473793566227, 0.0164481233805418, 0.007780981250107288, 0.00869892630726099, 0.0486072413623333, 0.35566696524620056], [0.010812873020768166, 0.004187391605228186, 0.01433098129928112, 0.0008310636621899903, 0.00033202828490175307, 0.0005916719092056155, 0.01870124228298664, 0.42383822798728943], [0.01016200426965952, 0.011044018901884556, 0.0020499739330261946, 0.003955901600420475, 0.007320732809603214, 0.009769922122359276, 0.03294747695326805, 0.4310513138771057], [0.0015525927301496267, 0.0007399389869533479, 0.0003649100835900754, 0.0012989139650017023, 0.0005600829608738422, 0.0007393680280074477, 0.001344136893749237, 0.49445563554763794]], [[0.014559449627995491, 0.008128352463245392, 0.0023905187845230103, 0.0035392807330936193, 0.004680223297327757, 0.011737367138266563, 0.008919155225157738, 0.19027940928936005], [0.004849882796406746, 0.10028526186943054, 0.0008345918613485992, 0.00013025582302361727, 0.0004532651510089636, 0.0009005948668345809, 0.0204936433583498, 0.28071486949920654], [0.03412898629903793, 0.0356706902384758, 0.006613811943680048, 0.0016629870515316725, 0.0022627764847129583, 0.0041103120893239975, 0.008976761251688004, 0.40428072214126587], [0.005062689073383808, 0.034249525517225266, 0.0017478674417361617, 0.0005563477170653641, 0.0013296814868226647, 0.0022447407245635986, 0.0033061415888369083, 0.1511630266904831], [0.0030811151955276728, 0.008572879247367382, 0.0008401154191233218, 0.0004128070722799748, 0.0004435096343513578, 0.0012179847108200192, 0.0015483907191082835, 0.3489091098308563], [0.007657022215425968, 0.006642375141382217, 0.0016416418366134167, 0.0008575631072744727, 0.0007466812967322767, 0.0015570770483464003, 0.0023182244040071964, 0.4153369963169098], [0.004504846874624491, 0.025017024949193, 0.0009471885277889669, 0.00015033608360681683, 0.0002836589119397104, 0.0006481963791884482, 0.000803065428044647, 0.3290868401527405], [0.04550926387310028, 0.014229928143322468, 0.0025907002855092287, 0.00118525349535048, 0.015766041353344917, 0.031047776341438293, 0.0337134450674057, 0.3869765102863312], [0.001826461055316031, 0.0011392956366762519, 0.0003445375186856836, 0.00018468966300133616, 0.00030858046375215054, 0.00044085789704695344, 0.0009231326985172927, 0.49129173159599304]], [[0.0010732098016887903, 0.00477633997797966, 0.004354223143309355, 0.0075611998327076435, 0.021549830213189125, 0.01947927288711071, 0.0012218202464282513, 0.09760917723178864], [0.015649547800421715, 0.0015865013701841235, 0.0014273712877184153, 0.0011091805063188076, 0.0005717066815122962, 0.0005742243374697864, 0.002128882333636284, 0.37321847677230835], [0.006230517290532589, 0.0032804086804389954, 0.001566218095831573, 0.002244587754830718, 0.0028147208504378796, 0.003891450585797429, 0.003037906251847744, 0.41739359498023987], [0.007210178766399622, 0.0002836399944499135, 0.0005375956534408033, 0.00020388355187606066, 0.00026844724197871983, 0.00024708264390937984, 0.0003567923849914223, 0.1310083568096161], [0.007526637054979801, 0.0002445836435072124, 0.0005103609873913229, 9.466143819736317e-05, 9.674780449131504e-05, 0.00011283303319942206, 0.00024979287991300225, 0.2946832776069641], [0.004856901243329048, 0.0003617899492383003, 0.00041130336467176676, 0.0001566927821841091, 0.0002147807099390775, 0.00016747067274991423, 0.0004744065518025309, 0.38762351870536804], [0.0032267882488667965, 8.66769187268801e-05, 0.0002767474506981671, 4.3074851419078186e-05, 6.098686935729347e-05, 2.6956120564136654e-05, 8.592664380557835e-05, 0.2770380973815918], [0.017350083217024803, 0.002472481457516551, 0.007692005019634962, 0.004206728655844927, 0.006269238889217377, 0.007918941788375378, 0.0077732219360768795, 0.11823378503322601], [0.001839584787376225, 0.0014997259713709354, 0.0012099746381863952, 0.0005585922044701874, 0.0013055087765678763, 0.0020755177829414606, 0.00253225932829082, 0.47647789120674133]], [[0.1533406674861908, 0.018616637215018272, 0.05333128944039345, 0.03856160119175911, 0.043811071664094925, 0.05566154792904854, 0.02177065797150135, 0.2787754535675049], [0.004810902290046215, 0.010067527182400227, 0.0016736246179789305, 0.001253933529369533, 0.0005668008816428483, 0.0003800280101131648, 0.004981522914022207, 0.3186272084712982], [0.007054249756038189, 0.008204019628465176, 0.0027342899702489376, 0.002221735892817378, 0.004332819953560829, 0.0047174980863928795, 0.010111250914633274, 0.35963594913482666], [0.008584678173065186, 0.004332812502980232, 0.0017546509625390172, 0.001383823691867292, 0.0005015212227590382, 0.0006448395433835685, 0.003256439231336117, 0.4117828905582428], [0.004521613474935293, 0.0005874623311683536, 0.003300200682133436, 0.001077298424206674, 0.0007348316721618176, 0.0009223945089615881, 0.0018239575438201427, 0.4225556254386902], [0.007566208951175213, 0.004074813332408667, 0.0014341933419927955, 0.0010749190114438534, 0.0015067352214828134, 0.0025543291121721268, 0.010188916698098183, 0.38741472363471985], [0.014265535399317741, 0.0007915281457826495, 0.00041516582132317126, 0.00019905800581909716, 0.00034425067133270204, 0.00028463194030337036, 0.0039726607501506805, 0.4168988764286041], [0.3998010456562042, 0.03413761034607887, 0.0030063919257372618, 0.005374548956751823, 0.0021507670171558857, 0.0029345527291297913, 0.02259133756160736, 0.2004455327987671], [0.002863365225493908, 0.008714480325579643, 0.0023594358935952187, 0.002408387837931514, 0.0029252413660287857, 0.00513874227181077, 0.00484278192743659, 0.46645388007164]], [[0.0039823842234909534, 0.003657964523881674, 0.0002105834282701835, 6.279854278545827e-05, 4.7327528591267765e-05, 6.027510607964359e-05, 0.00020931052858941257, 0.007738148327916861], [0.0013298604171723127, 0.0004945113323628902, 0.00016952953592408448, 7.105655095074326e-05, 6.787781603634357e-05, 7.845473010092974e-05, 0.00032202654983848333, 0.3817918002605438], [0.0013350893277674913, 0.0009313570917584002, 0.000807685952167958, 0.0005065089208073914, 0.0011528858449310064, 0.0018404115689918399, 0.0008356950711458921, 0.43895938992500305], [0.004323293454945087, 0.001152380253188312, 0.00032795529114082456, 4.296662882552482e-05, 3.927437501261011e-05, 7.340604497585446e-05, 0.000773404142819345, 0.3270932137966156], [0.002842686837539077, 0.0008875089697539806, 0.0013959720963612199, 9.383770520798862e-05, 5.161189619684592e-05, 9.606620733393356e-05, 0.0009053338435478508, 0.4020480215549469], [0.0004680295241996646, 0.00021170727268327028, 0.0003027835919056088, 2.6208121198578738e-05, 1.822735612222459e-05, 3.400551213417202e-05, 0.00025985995307564735, 0.45495229959487915], [0.0004845038056373596, 0.0003701139648910612, 0.00011911632464034483, 8.199156582122669e-06, 4.208972313790582e-06, 7.020726116024889e-06, 0.00013428495731204748, 0.43833789229393005], [0.01710766926407814, 0.002535186242312193, 0.0011205796618014574, 0.0005596016999334097, 0.0004692888760473579, 0.0008872764883562922, 0.0016481770435348153, 0.1401773989200592], [0.00020796949684154242, 0.0005166163900867105, 0.0001183771455544047, 0.0001405861257808283, 0.00010265725723002106, 0.00017407634004484862, 0.00023290878743864596, 0.48339858651161194]], [[0.026501759886741638, 0.10900821536779404, 0.005289906170219183, 0.011000261642038822, 0.004237881861627102, 0.007327502127736807, 0.01974298804998398, 0.39076194167137146], [0.002655788091942668, 0.012576981447637081, 0.001038345624692738, 0.0007706217584200203, 0.0007471159915439785, 0.0014480231329798698, 0.007153247948735952, 0.47391408681869507], [0.004179005045443773, 0.028227677568793297, 0.004841392394155264, 0.0027231143321841955, 0.0038517233915627003, 0.0034703370183706284, 0.004359300248324871, 0.44305703043937683], [0.0011937768431380391, 0.03412598744034767, 0.004045457113534212, 0.00038871620199643075, 0.0008475618669763207, 0.0017787367105484009, 0.006578113883733749, 0.4648900330066681], [0.0008434260380454361, 0.007327162194997072, 0.014572212472558022, 0.000952302769292146, 0.0009939376031979918, 0.0002982941805385053, 0.0005160043947398663, 0.45582640171051025], [0.000791336118709296, 0.0029782289639115334, 0.002553225727751851, 0.002838377607986331, 0.004467496648430824, 0.0021496093831956387, 0.0007641137926839292, 0.4801120460033417], [0.0011991563951596618, 0.01051073893904686, 0.0014299608301371336, 0.0003771988849621266, 0.0006182062206789851, 0.0015479909488931298, 0.002920611761510372, 0.4590602517127991], [0.0032608904875814915, 0.0023852873127907515, 0.0005035788635723293, 0.0003850368957500905, 0.001196642522700131, 0.0020421657245606184, 0.024681614711880684, 0.47441110014915466], [0.0004577460349537432, 0.0006627468392252922, 0.00020130944903939962, 0.0002016120561165735, 0.0006469369982369244, 0.0004911141586489975, 0.0006841516005806625, 0.49568289518356323]]], [[[0.015181167051196098, 0.037044424563646317, 0.007308067753911018, 0.008211001753807068, 0.001809056499041617, 0.00350956036709249, 0.03661438822746277, 0.0391903892159462], [0.0005153777310624719, 0.0016568899154663086, 0.00028812288655899465, 7.073071174090728e-05, 0.00011156703840242699, 7.928682316560298e-05, 0.0008843469549901783, 0.4856173098087311], [0.004677866119891405, 0.013790030032396317, 0.003182276152074337, 0.0027174786664545536, 0.0023203850723803043, 0.0023720802273601294, 0.021273797377943993, 0.386103093624115], [0.0006579301552847028, 0.00221068924292922, 0.0003203283413313329, 0.00013618030061479658, 5.894057539990172e-05, 7.135565829230472e-05, 0.0010692396899685264, 0.48356056213378906], [0.00012822668941225857, 0.0005460653337650001, 0.00011933306814171374, 4.748602441395633e-05, 2.402633435849566e-05, 2.608287650218699e-05, 0.0003296727081760764, 0.49338260293006897], [0.00044314799015410244, 0.001351499930024147, 0.00033148686634376645, 0.00018409447511658072, 0.00011737001477740705, 0.00011431476013967767, 0.0013041032943874598, 0.48249757289886475], [0.00012654908641707152, 0.0002103675651596859, 7.829531386960298e-05, 9.834147931542248e-06, 3.648479150797357e-06, 7.4688073254947085e-06, 0.00015460114809684455, 0.49497124552726746], [0.005831683054566383, 0.005642343312501907, 0.0041975583881139755, 0.0032122544944286346, 0.0011955649824813008, 0.003001833101734519, 0.007913363166153431, 0.4201355278491974], [0.043479740619659424, 0.06669101864099503, 0.018756907433271408, 0.02486284449696541, 0.01193234696984291, 0.01986880972981453, 0.046529270708560944, 0.08794885128736496]], [[0.03010939247906208, 0.06556187570095062, 0.049282003194093704, 0.05331811308860779, 0.01583646610379219, 0.024575941264629364, 0.07409147918224335, 0.2374797910451889], [0.012248959392309189, 0.01814456470310688, 0.006313006859272718, 0.010171320289373398, 0.0025753118097782135, 0.005846621468663216, 0.01385420747101307, 0.32137244939804077], [0.004868340212851763, 0.01493094302713871, 0.0028643771074712276, 0.008764074184000492, 0.016498828306794167, 0.020793871954083443, 0.010085796006023884, 0.35136276483535767], [0.010440210811793804, 0.016172656789422035, 0.019009361043572426, 0.0034970883280038834, 0.0017230180092155933, 0.0068774898536503315, 0.029006443917751312, 0.23238806426525116], [0.002408346626907587, 0.004377763718366623, 0.027403753250837326, 0.006692078895866871, 0.0008054658537730575, 0.0019218800589442253, 0.0015989654930308461, 0.18897461891174316], [0.0013545018155127764, 0.0016651070909574628, 0.00969926081597805, 0.007144162431359291, 0.003859245916828513, 0.005632257089018822, 0.001859018811956048, 0.2897820770740509], [0.0016921827336773276, 0.0028813534881919622, 0.004716459661722183, 0.0023062152322381735, 0.0013718843692913651, 0.004138705786317587, 0.00217791018076241, 0.14479246735572815], [0.009427139535546303, 0.003554626600816846, 0.008465141989290714, 0.003829637309536338, 0.00869431346654892, 0.006292673293501139, 0.018498538061976433, 0.44882848858833313], [0.041652701795101166, 0.042466986924409866, 0.041372764855623245, 0.054647766053676605, 0.12319710105657578, 0.07539340108633041, 0.03670293837785721, 0.06261132657527924]], [[0.0074180252850055695, 0.4516300857067108, 0.018311072140932083, 0.014141831547021866, 0.010655286721885204, 0.046470582485198975, 0.06728436797857285, 0.014353012666106224], [0.004522663541138172, 0.005325814243406057, 0.0003068078658543527, 0.0006961135077290237, 0.003771910211071372, 0.004824344534426928, 0.010274983011186123, 0.38568779826164246], [0.004735412076115608, 0.04083384573459625, 0.003947857301682234, 0.003733963705599308, 0.010412978008389473, 0.006634787190705538, 0.008894695900380611, 0.15638169646263123], [0.0026775398291647434, 0.021397093310952187, 0.0012701137457042933, 0.004175036679953337, 0.010991677641868591, 0.023143569007515907, 0.002945619635283947, 0.16759516298770905], [0.011022750288248062, 0.006715601310133934, 0.0030377975199371576, 0.0033546590711921453, 0.0038184982258826494, 0.00878156628459692, 0.0066856760531663895, 0.18572252988815308], [0.0027189224492758512, 0.002054766984656453, 0.0016770398942753673, 0.0033895059023052454, 0.005474029574543238, 0.0016631443286314607, 0.001165649970062077, 0.3343992233276367], [0.0007335039554163814, 0.0001920120557770133, 0.00022399597219191492, 0.00024870727793313563, 0.004835208412259817, 0.0011713503627106547, 1.2268412319826894e-05, 0.03173675015568733], [0.0025198671501129866, 0.024099325761198997, 0.006713059265166521, 0.016088169068098068, 0.003081422531977296, 0.02703266777098179, 0.00414266949519515, 0.2072777897119522], [0.026210786774754524, 0.10376135259866714, 0.03895127400755882, 0.034228626638650894, 0.04499056562781334, 0.05360503867268562, 0.17377375066280365, 0.03872605040669441]], [[0.012321523390710354, 0.0057823676615953445, 0.010587123222649097, 0.005133056081831455, 0.038473568856716156, 0.03444083780050278, 0.026070941239595413, 0.36958232522010803], [0.002114752307534218, 0.000970024848356843, 0.000916947377845645, 0.0004213794891256839, 0.0017221391899511218, 0.0034923176281154156, 0.0013794493861496449, 0.44774603843688965], [0.0030113717075437307, 0.0059552849270403385, 0.00252044596709311, 0.003164339577779174, 0.00593807315453887, 0.006492985878139734, 0.01132645271718502, 0.3943582773208618], [0.005140735302120447, 0.001223384984768927, 0.0018318829825147986, 0.00040970585541799664, 0.003559007542207837, 0.004720765631645918, 0.0027475282549858093, 0.30339279770851135], [0.0014110163319855928, 0.00015829451149329543, 0.0005777047481387854, 0.00011080861440859735, 0.0005434292834252119, 0.0007688202895224094, 0.00011086231097579002, 0.4635273516178131], [0.0014607772463932633, 0.00045140658039599657, 0.007177236024290323, 0.0012704264372587204, 0.0014691947726532817, 0.0009623391670174897, 0.00031864267657510936, 0.3437049686908722], [0.0013801399618387222, 6.686729466309771e-05, 0.00027393829077482224, 4.0218885260401294e-05, 0.0008534585358574986, 0.0003895273548550904, 5.673698251484893e-05, 0.11314071714878082], [0.009634271264076233, 0.0018515965202823281, 0.002754193963482976, 0.002813354367390275, 0.0015979899326339364, 0.016356630250811577, 0.013453013263642788, 0.3583301901817322], [0.0730045735836029, 0.043590791523456573, 0.07098162174224854, 0.05784333497285843, 0.013427472673356533, 0.033653624355793, 0.08769694715738297, 0.10716239362955093]], [[0.14559076726436615, 0.018215667456388474, 0.03304503858089447, 0.00839836522936821, 0.005301028955727816, 0.016955891624093056, 0.14986765384674072, 0.08480477333068848], [0.0006974827847443521, 0.0005899725365452468, 0.0008616857812739909, 0.0009893173119053245, 0.00039425274007953703, 0.0009596660383976996, 0.0030321709346026182, 0.4857323169708252], [0.012372939847409725, 0.01160029973834753, 0.013721444644033909, 0.014973224140703678, 0.011269966140389442, 0.031242715194821358, 0.022506842389702797, 0.35640522837638855], [0.0007568212458863854, 0.0005134233506396413, 0.001029378385283053, 0.0007043932564556599, 0.00032219517743214965, 0.0010616589570418, 0.0020265160128474236, 0.48886939883232117], [0.00042579194996505976, 0.0008980543352663517, 0.000635086209513247, 0.00027596595464274287, 0.00016428271192125976, 0.00040110538247972727, 0.0016371335368603468, 0.49045225977897644], [0.0028790198266506195, 0.0022173512261360884, 0.0026488876901566982, 0.0033455409575253725, 0.0025797525886446238, 0.005034410394728184, 0.005907638464123011, 0.4574113190174103], [6.23662126599811e-05, 6.033935278537683e-05, 9.53183916863054e-05, 6.083087282604538e-05, 3.3789641747716814e-05, 0.00011050031753256917, 0.00022006798826623708, 0.4977724552154541], [0.006600002758204937, 0.0032698549330234528, 0.003010248066857457, 0.004509266000241041, 0.013244258239865303, 0.037509091198444366, 0.012514753267168999, 0.415348082780838], [0.06378481537103653, 0.05510827153921127, 0.02587272599339485, 0.033313728868961334, 0.06530474871397018, 0.07745680212974548, 0.04593774676322937, 0.020576084032654762]], [[0.1300194412469864, 0.06651037186384201, 0.0332353413105011, 0.012909423559904099, 0.01947220414876938, 0.036484528332948685, 0.07809310406446457, 0.16260197758674622], [0.00047510152217000723, 0.0004351798561401665, 0.00017731636762619019, 5.776186299044639e-05, 7.527276466134936e-05, 6.850382487755269e-05, 0.00023697895812802017, 0.4852283000946045], [0.0013492201687768102, 0.004466199316084385, 0.001956002553924918, 0.0017063363920897245, 0.0011636473936960101, 0.0012486072955653071, 0.003153716679662466, 0.4459116756916046], [0.0034354578237980604, 0.001242276281118393, 0.00020345202938187867, 9.469996439293027e-05, 0.00032897398341447115, 0.00036875149817205966, 0.0002733061264734715, 0.4273930788040161], [0.00065084348898381, 0.0002197490684920922, 2.4478951672790572e-05, 5.385138592828298e-06, 2.81820884993067e-05, 3.485134584479965e-05, 9.33391202124767e-05, 0.47352316975593567], [0.000476703280583024, 0.0005946724559180439, 9.42141778068617e-05, 4.75219203508459e-05, 7.814638229319826e-05, 8.306042582262307e-05, 0.00042882596608251333, 0.46243762969970703], [0.00015426297613885254, 0.0001202375497086905, 1.7891805327963084e-05, 4.126811290916521e-06, 9.059407602762803e-06, 8.434074516117107e-06, 2.0615409084712155e-05, 0.48244717717170715], [0.009669188410043716, 0.0156327486038208, 0.01374389324337244, 0.0038618582766503096, 0.0127576794475317, 0.02555658668279648, 0.008647947572171688, 0.18531642854213715], [0.07450896501541138, 0.07156369090080261, 0.045038677752017975, 0.01917661540210247, 0.023329945281147957, 0.03058750182390213, 0.06733981519937515, 0.052815914154052734]], [[0.01228831335902214, 0.015609201975166798, 0.032111670821905136, 0.012758095748722553, 0.0061138225719332695, 0.004474921151995659, 0.015248680487275124, 0.3335612416267395], [0.011894120834767818, 0.027632376179099083, 0.0011993215885013342, 0.0015239602653309703, 0.0035313968546688557, 0.005179283674806356, 0.007686154451221228, 0.10294996201992035], [0.0032003161031752825, 0.013003394939005375, 0.0014218718279153109, 0.0023714208509773016, 0.0047865635715425014, 0.004659844562411308, 0.0023978373501449823, 0.43564435839653015], [0.017179351300001144, 0.013721817173063755, 0.0033908530604094267, 0.0012215559836477041, 0.0019341274164617062, 0.01065319124609232, 0.02777142822742462, 0.26020947098731995], [0.01774829439818859, 0.02144251950085163, 0.018231764435768127, 0.0022519645281136036, 0.0029482017271220684, 0.0046544428914785385, 0.007204971741884947, 0.288743257522583], [0.003848151070997119, 0.0038266179617494345, 0.00354035128839314, 0.006275768391788006, 0.03807111084461212, 0.020371876657009125, 0.0031910173129290342, 0.33525094389915466], [0.010209450498223305, 0.004915465135127306, 0.004503487143665552, 0.0014725106302648783, 0.003366798395290971, 0.024533716961741447, 0.007173631340265274, 0.2721942663192749], [0.006721692159771919, 0.0010464602382853627, 0.0018745623528957367, 0.0017630831571295857, 0.003176035126671195, 0.010428940877318382, 0.011136632412672043, 0.4687146246433258], [0.04192528501152992, 0.034860797226428986, 0.04306088015437126, 0.05358944088220596, 0.04296611621975899, 0.03213052451610565, 0.023502783849835396, 0.04756931960582733]], [[0.027511289343237877, 0.00549459271132946, 0.005734039004892111, 0.012193862348794937, 0.02143184095621109, 0.04460465535521507, 0.02564733475446701, 0.1099136546254158], [0.00046874547842890024, 0.0005420306697487831, 0.00021973784896545112, 0.00012679400970228016, 0.00028480769833549857, 0.0003197281330358237, 0.002932084258645773, 0.46218210458755493], [0.0044616395607590675, 0.003059007693082094, 0.0023303984198719263, 0.0019287529867142439, 0.0028897172305732965, 0.0021838685497641563, 0.008044886402785778, 0.4150567054748535], [0.0007514867465943098, 0.0005996265099383891, 0.0002394503098912537, 8.770742715569213e-05, 0.00026368172257207334, 0.0004236908571328968, 0.0019566179253160954, 0.44019609689712524], [0.0003465223126113415, 0.0005982271977700293, 0.000129126594401896, 5.479178071254864e-05, 0.00016803036851342767, 0.00024263568047899753, 0.0008168180356733501, 0.47805219888687134], [0.0014818526105955243, 0.0007619521929882467, 0.00015171317500062287, 0.00034284955472685397, 0.000257182284258306, 0.00030193428392522037, 0.0009315503411926329, 0.47590693831443787], [0.0002100910642184317, 0.0004091616428922862, 3.307452061562799e-05, 1.6781505109975114e-05, 4.9918708100449294e-05, 3.62369573849719e-05, 0.00010921825014520437, 0.48819881677627563], [0.006830625701695681, 0.006497418042272329, 0.0014774419832974672, 0.001694126520305872, 0.00455170962959528, 0.006821697577834129, 0.007999786175787449, 0.3300948739051819], [0.061965107917785645, 0.026844659820199013, 0.028733020648360252, 0.050168730318546295, 0.043751060962677, 0.047621648758649826, 0.029106590896844864, 0.0346611812710762]], [[0.03151163086295128, 0.04038861021399498, 0.004716391675174236, 0.0022513114381581545, 0.004074785392731428, 0.004794635809957981, 0.0177069753408432, 0.02785603143274784], [9.92259883787483e-05, 0.00035741852479986846, 1.979589978873264e-05, 1.205618173116818e-05, 2.6383597287349403e-05, 6.090150782256387e-05, 5.580222205026075e-05, 0.4632743299007416], [0.0021581666078418493, 0.0033202350605279207, 0.0003368133620824665, 0.000686759885866195, 0.0017312692943960428, 0.0029334593564271927, 0.0014132607029750943, 0.3673441410064697], [9.602065983926877e-05, 0.000298014230793342, 8.248635822383221e-06, 6.328611561912112e-06, 2.4179114916478284e-05, 3.294492489658296e-05, 6.319790554698557e-05, 0.42759016156196594], [0.00014846559497527778, 0.00011577551777008921, 1.6292860891553573e-05, 1.394977152813226e-05, 4.444810838322155e-05, 5.568798223976046e-05, 1.6206218788283877e-05, 0.44239500164985657], [0.0001516962656751275, 7.444067887263373e-05, 6.174557347549126e-05, 4.51018349849619e-05, 4.19144744228106e-05, 4.8041616537375376e-05, 9.0475965407677e-05, 0.46358057856559753], [2.134717578883283e-05, 2.520662201277446e-05, 7.673579602851532e-06, 2.4434507395199034e-06, 3.6411822748050326e-06, 5.242377937975107e-06, 8.29257805889938e-06, 0.4852089583873749], [0.01582510583102703, 0.012782753445208073, 0.0029895156621932983, 0.0023663993924856186, 0.003747776383534074, 0.006415943615138531, 0.0017819269560277462, 0.15226785838603973], [0.07242625951766968, 0.06421176344156265, 0.02264004945755005, 0.022385884076356888, 0.02793087065219879, 0.0417201966047287, 0.04873313754796982, 0.03058326616883278]], [[0.06615925580263138, 0.1434141844511032, 0.022935261949896812, 0.04915748909115791, 0.015306605957448483, 0.04002919793128967, 0.06859113276004791, 0.16281402111053467], [0.0005404543480835855, 0.0032355240546166897, 0.0004610133182723075, 0.0004868287069257349, 0.00017495555221103132, 0.0003916494606528431, 0.0007276583346538246, 0.42492014169692993], [0.006439655087888241, 0.004995717667043209, 0.0036415448412299156, 0.005137015599757433, 0.00295317848213017, 0.004329044371843338, 0.008989431895315647, 0.28975409269332886], [0.0009250261937268078, 0.0013515491737052798, 0.00027101539308205247, 0.0005121860303916037, 0.00016572978347539902, 0.00026561651611700654, 0.0002657518198247999, 0.43407711386680603], [0.0007739319116808474, 0.0002040095132542774, 0.00039185595232993364, 0.00025424480554647744, 0.00020460222731344402, 0.0004650890768971294, 0.00019668148888740689, 0.4328029155731201], [0.0012296921340748668, 0.0014666297938674688, 0.0009050819207914174, 0.0007641538977622986, 0.0007323913159780204, 0.006183965131640434, 0.002177775138989091, 0.3785516023635864], [0.0009354655048809946, 0.0003364763979334384, 0.00011879779049195349, 3.82945072487928e-05, 6.553070852532983e-05, 0.00014574828674085438, 0.00043933792039752007, 0.4702087640762329], [0.0202657300978899, 0.007372016087174416, 0.0011321034980937839, 0.002829032251611352, 0.004533847793936729, 0.0069343033246695995, 0.008051430806517601, 0.41641467809677124], [0.04809525981545448, 0.03827739134430885, 0.048354387283325195, 0.06098698452115059, 0.021728895604610443, 0.03311336413025856, 0.04332215338945389, 0.07475318759679794]], [[0.18407712876796722, 0.13811609148979187, 0.045445073395967484, 0.04202461987733841, 0.017699168995022774, 0.09280543029308319, 0.17283934354782104, 0.12390147894620895], [0.004567495547235012, 0.011032997630536556, 0.0014533872017636895, 0.0011132156942039728, 0.002293672412633896, 0.0022270982153713703, 0.01580410823225975, 0.3697202801704407], [0.011551078408956528, 0.06883895397186279, 0.005183523986488581, 0.0058635990135371685, 0.004531262908130884, 0.005609424784779549, 0.024288151413202286, 0.2057720273733139], [0.006261177361011505, 0.00848576333373785, 0.0009272063034586608, 0.00020743250206578523, 0.0008275808650068939, 0.0011753778671845794, 0.002123234560713172, 0.3910229504108429], [0.003788940142840147, 0.003466266207396984, 0.0008004122064448893, 0.000282483350019902, 0.0002160463045584038, 0.000699541880749166, 0.0007460000924766064, 0.4195384681224823], [0.005188953597098589, 0.0017260070890188217, 0.0007557006902061403, 0.0004662904539145529, 0.0001499742502346635, 0.00020037752983625978, 0.0007393888081423938, 0.4755922257900238], [0.0013564227847382426, 0.0003556346637196839, 0.0002704523503780365, 6.861519068479538e-05, 6.115328142186627e-05, 6.001251676934771e-05, 0.00019832341058645397, 0.4870179295539856], [0.08767428249120712, 0.01155879721045494, 0.006227867677807808, 0.003182590240612626, 0.010955565609037876, 0.010828515514731407, 0.030895376577973366, 0.1330852210521698], [0.16030406951904297, 0.08772019296884537, 0.02232789620757103, 0.07457009702920914, 0.028874531388282776, 0.07092004269361496, 0.1276581585407257, 0.06917877495288849]], [[0.11886419355869293, 0.07697320729494095, 0.037396643310785294, 0.04120451584458351, 0.01877675950527191, 0.027979085221886635, 0.08904127776622772, 0.23248472809791565], [0.008276933804154396, 0.005633383523672819, 0.002469992032274604, 0.0014278696617111564, 0.0008420258527621627, 0.0006289502489380538, 0.004989249631762505, 0.38134798407554626], [0.023134000599384308, 0.023985888808965683, 0.0041265543550252914, 0.005320061929523945, 0.004773941356688738, 0.005675092339515686, 0.01211258489638567, 0.26225224137306213], [0.006874042097479105, 0.00850733183324337, 0.0013631429756060243, 0.0005309132393449545, 0.001485362066887319, 0.0011285279178991914, 0.008078392595052719, 0.349385529756546], [0.002068092580884695, 0.0010510390857234597, 0.0007059122435748577, 0.0002391476446064189, 0.00038428109837695956, 0.00021039703278802335, 0.0005056892987340689, 0.45245563983917236], [0.001110286801122129, 0.0004653401265386492, 0.00046777038369327784, 0.0001648969337111339, 0.0007357471622526646, 0.00046614118036814034, 0.00025472865672782063, 0.4807691276073456], [0.0007214153883978724, 0.00022754530073143542, 0.00034482477349229157, 3.258667857153341e-05, 0.00019096818869002163, 0.00017288138042204082, 0.00016022541967686266, 0.4846828877925873], [0.03327256813645363, 0.01417594775557518, 0.005234787706285715, 0.002139626070857048, 0.003898981725797057, 0.005336273927241564, 0.020508065819740295, 0.2843939960002899], [0.06538642942905426, 0.0700591653585434, 0.033106256276369095, 0.03278014063835144, 0.02277837134897709, 0.035660289227962494, 0.0700807124376297, 0.03664569929242134]]]], \\\"left_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"]}, {\\\"name\\\": \\\"Sentence B -\\u003e Sentence A\\\", \\\"attn\\\": [[[[0.05085143446922302, 0.022023271769285202, 0.07580538094043732, 0.0070717972703278065, 0.047512125223875046, 0.07071699947118759, 0.017782360315322876, 0.08009849488735199, 0.019474850967526436], [0.04322425276041031, 0.00701436772942543, 0.07438955456018448, 0.00349072995595634, 0.020300857722759247, 0.03028024546802044, 0.011668267659842968, 0.043274637311697006, 0.00980078149586916], [0.022267881780862808, 0.023952627554535866, 0.06272710859775543, 0.0059244283474981785, 0.09645921736955643, 0.04347274824976921, 0.027442241087555885, 0.05181506276130676, 0.018496809527277946], [0.052432831376791, 0.02291150949895382, 0.04012122005224228, 0.004341240040957928, 0.02985801361501217, 0.01583763211965561, 0.015640828758478165, 0.02167329750955105, 0.05032937601208687], [0.06270148605108261, 0.018580680713057518, 0.15979012846946716, 0.015210376121103764, 0.02062022127211094, 0.02362925000488758, 0.038785237818956375, 0.01570395939052105, 0.0422176755964756], [0.0552029013633728, 0.03745970502495766, 0.08970589935779572, 0.007209817413240671, 0.010326535440981388, 0.014292473904788494, 0.015026808716356754, 0.041386928409338, 0.07573705166578293], [0.022899465635418892, 0.024759864434599876, 0.08564167469739914, 0.0077392589300870895, 0.038067229092121124, 0.03607000410556793, 0.01198351290076971, 0.04539123550057411, 0.033280134201049805], [5.39046709491231e-07, 1.2910049029812853e-08, 2.997915693470077e-09, 9.687985969009105e-10, 5.700149727227988e-11, 2.3968746432068144e-10, 2.120931874571852e-09, 2.0052830507211183e-09, 4.1204955778084695e-05]], [[0.1122286394238472, 0.005725213326513767, 0.007830118760466576, 0.018747668713331223, 0.046964243054389954, 0.02027987129986286, 0.04182044789195061, 0.060731735080480576, 0.14661774039268494], [0.0019868644885718822, 0.0029012442100793123, 0.03415127471089363, 0.003377157263457775, 0.021869391202926636, 0.016370456665754318, 0.01350669376552105, 0.13002537190914154, 0.08001197874546051], [0.0012034880928695202, 0.003988053649663925, 0.01811078004539013, 0.03138766437768936, 0.02679568901658058, 0.01594444178044796, 0.028057347983121872, 0.08293617516756058, 0.23756594955921173], [0.011548996903002262, 0.002671988680958748, 0.013300352729856968, 0.00573762645944953, 0.02851112000644207, 0.011765186674892902, 0.01182110421359539, 0.034734729677438736, 0.06407833099365234], [0.026585998013615608, 0.0010515417670831084, 0.004557711537927389, 0.005754321347922087, 0.01731204427778721, 0.004033405799418688, 0.005897670052945614, 0.011935831047594547, 0.0362488329410553], [0.041452087461948395, 0.000551372766494751, 0.012106509879231453, 0.0025557572953402996, 0.029549917206168175, 0.0024494952522218227, 0.004159799311310053, 0.009580275975167751, 0.01520668063312769], [0.0001405895600328222, 0.006572019308805466, 0.0031815404072403908, 0.0004570690798573196, 0.003964514471590519, 0.0015125961508601904, 0.001515182782895863, 0.0054846699349582195, 0.03184382990002632], [2.382694583502598e-05, 1.6672100173309445e-05, 1.213609539263416e-05, 3.5883535929315258e-06, 2.2867236111778766e-05, 8.452716429019347e-06, 1.6258918549283408e-05, 0.000548299984075129, 0.0027398846577852964]], [[0.4042286276817322, 0.02303842455148697, 0.04327826946973801, 0.02220737747848034, 0.024905072525143623, 0.017578905448317528, 0.031729016453027725, 0.05251544713973999, 0.04675205796957016], [0.02890595607459545, 0.0868535041809082, 0.03905981406569481, 0.07673788070678711, 0.06935548782348633, 0.017652153968811035, 0.039013754576444626, 0.04142361134290695, 0.11229785531759262], [0.051494911313056946, 0.05110412463545799, 0.07177115976810455, 0.03816363215446472, 0.06721803545951843, 0.055009134113788605, 0.05375649407505989, 0.038038868457078934, 0.041565731167793274], [0.30957141518592834, 0.026946723461151123, 0.030617903918027878, 0.00909468811005354, 0.012938322499394417, 0.005976587533950806, 0.0647820383310318, 0.042692121118307114, 0.03459575027227402], [0.17414706945419312, 0.02067970670759678, 0.10534961521625519, 0.03243619576096535, 0.03173006698489189, 0.03161533549427986, 0.05324887856841087, 0.03352835029363632, 0.04464622214436531], [0.14174634218215942, 0.07984764873981476, 0.05403934419155121, 0.018503038212656975, 0.043897174298763275, 0.04191182926297188, 0.05589395761489868, 0.0508967749774456, 0.03724489361047745], [0.0533464252948761, 0.04371226206421852, 0.019833769649267197, 0.02924042008817196, 0.06765838712453842, 0.03478259593248367, 0.037271589040756226, 0.03777080401778221, 0.03779437392950058], [0.06381995230913162, 0.03170640766620636, 0.004985055420547724, 0.016410794109106064, 0.010395670309662819, 0.00661464361473918, 0.03198925778269768, 0.03062201663851738, 0.0027444791048765182]], [[0.026182059198617935, 0.0026353721041232347, 0.014284180477261543, 0.0019502710783854127, 0.002652481198310852, 0.0106190862134099, 0.0039725396782159805, 0.01705651544034481, 0.0050896815955638885], [0.00655555771663785, 0.0012789893662557006, 0.0010506988037377596, 0.00044898202759213746, 0.0012205109233036637, 0.0004583994741551578, 0.0007158190128393471, 0.0017670101951807737, 0.00580983841791749], [0.019198056310415268, 0.001700622378848493, 0.0006798736867494881, 0.0012679336359724402, 0.0018198138568550348, 0.0021204801741987467, 0.0017914302879944444, 0.00396747887134552, 0.005293841939419508], [0.03541591390967369, 0.0010044040391221642, 0.009562980383634567, 0.0031110995914787054, 0.004129722248762846, 0.012886565178632736, 0.005492286290973425, 0.014601752161979675, 0.003477429738268256], [0.02291938289999962, 0.006745031103491783, 0.02585463784635067, 0.016562605276703835, 0.018693825230002403, 0.026624808087944984, 0.013393472880125046, 0.025357374921441078, 0.007036125287413597], [0.012972544878721237, 0.004065094515681267, 0.02714398130774498, 0.0024757881183177233, 0.008076858706772327, 0.02106679230928421, 0.010974295437335968, 0.03196815028786659, 0.0046197292394936085], [0.011609595268964767, 0.0008981616119854152, 0.00037887669168412685, 0.0001698910491541028, 0.0013160291127860546, 0.0010050254641100764, 0.0007526596309617162, 0.0023018934298306704, 0.007861015386879444], [0.0019937308970838785, 0.0008322559297084808, 0.00023586218594573438, 0.001045373734086752, 0.0003337216912768781, 0.0001086789125110954, 0.001255252631381154, 0.001599939540028572, 0.0025449173990637064]], [[0.024266233667731285, 0.01093385275453329, 0.016984064131975174, 0.004984752275049686, 0.007481112610548735, 0.03188614174723625, 0.00909456703811884, 0.2679964601993561, 0.022699784487485886], [0.015299608930945396, 0.015785014256834984, 0.008361319079995155, 0.0006249594152905047, 0.007860596291720867, 0.002455179812386632, 0.008047391660511494, 0.016079703345894814, 0.012717393226921558], [0.053870562463998795, 0.004424483515322208, 0.0043601482175290585, 0.001997340004891157, 0.01322959829121828, 0.014276626519858837, 0.0033141672611236572, 0.05482332780957222, 0.032131992280483246], [0.00925365462899208, 0.006607287097722292, 0.012390349991619587, 0.015145400539040565, 0.021609047427773476, 0.00757995992898941, 0.014946120791137218, 0.013473916798830032, 0.01051262766122818], [0.04649527370929718, 0.007164914160966873, 0.005849217996001244, 0.0012236693874001503, 0.0437605120241642, 0.007520769722759724, 0.017299002036452293, 0.010521815158426762, 0.016591574996709824], [0.014624546281993389, 0.004884281195700169, 0.00985758937895298, 0.003012509550899267, 0.03382030501961708, 0.00245943502523005, 0.013505540788173676, 0.007328514941036701, 0.010887760668992996], [0.01661417819559574, 0.016832664608955383, 0.004995496943593025, 0.0006262136739678681, 0.0031050376128405333, 0.0018032253719866276, 0.0009451500372961164, 0.003058635164052248, 0.005683426279574633], [0.011585846543312073, 0.0014485669089481235, 0.0012079791631549597, 0.010266603901982307, 0.003049129154533148, 0.0021340458188205957, 0.00614704005420208, 0.04010748863220215, 0.0025159502401947975]], [[0.062082190066576004, 0.05242917686700821, 0.02288883738219738, 0.06286608427762985, 0.021808043122291565, 0.0169636569917202, 0.12245861440896988, 0.028119267895817757, 0.01948828436434269], [0.21505969762802124, 0.01480448804795742, 0.024971431121230125, 0.02108367718756199, 0.008694419637322426, 0.020008806139230728, 0.0335586741566658, 0.15525440871715546, 0.028348395600914955], [0.0871221199631691, 0.034306786954402924, 0.016620954498648643, 0.040584951639175415, 0.01628957688808441, 0.011101530864834785, 0.13387727737426758, 0.08549814671278, 0.046284761279821396], [0.015155383385717869, 0.04207645356655121, 0.038503292948007584, 0.06510785967111588, 0.018866432830691338, 0.013820890337228775, 0.07301356643438339, 0.0866699293255806, 0.06137312203645706], [0.11631946265697479, 0.08591070771217346, 0.013996097259223461, 0.02553335763514042, 0.044912923127412796, 0.051308274269104004, 0.08520212769508362, 0.03852086141705513, 0.04989771172404289], [0.040084920823574066, 0.0794089138507843, 0.04568714648485184, 0.04725225269794464, 0.018014028668403625, 0.02296232245862484, 0.09286968410015106, 0.13630813360214233, 0.02106429450213909], [0.02700302191078663, 0.01747763529419899, 0.03070266917347908, 0.12967005372047424, 0.020561538636684418, 0.0304489117115736, 0.057144373655319214, 0.06352531909942627, 0.07827381044626236], [0.00249118753708899, 0.058819033205509186, 0.0013066079700365663, 0.004116188734769821, 0.0038019418716430664, 0.0012782010016962886, 0.00383367040194571, 0.0006938646547496319, 0.5325980186462402]], [[0.003567933337762952, 0.006447296589612961, 0.012742963619530201, 0.0049604326486587524, 0.031012924388051033, 0.023581689223647118, 0.07633425295352936, 0.7590482831001282, 0.04287115857005119], [0.002508379751816392, 0.008127317763864994, 0.006937735248357058, 0.003746312577277422, 0.012477690353989601, 0.01154171023517847, 0.029863722622394562, 0.6015902161598206, 0.2265121340751648], [0.0013870190596207976, 0.02100195735692978, 0.00815045926719904, 0.02463262714445591, 0.007942592725157738, 0.011483998037874699, 0.012731208465993404, 0.44544947147369385, 0.263877809047699], [0.013663713820278645, 0.013034246861934662, 0.016080224886536598, 0.006316511891782284, 0.026983000338077545, 0.01072967704385519, 0.025954073294997215, 0.15858541429042816, 0.09496775269508362], [0.011303563602268696, 0.008551310747861862, 0.017003187909722328, 0.014643363654613495, 0.014294256456196308, 0.006495532114058733, 0.008540479466319084, 0.054204944521188736, 0.047746505588293076], [0.0015166419325396419, 0.008756814524531364, 0.012863056734204292, 0.01837296597659588, 0.027307458221912384, 0.007392773870378733, 0.021870072931051254, 0.03886174038052559, 0.026515083387494087], [0.0009545692591927946, 0.001522948150523007, 0.002078883582726121, 0.0015379617689177394, 0.002696308773010969, 0.001345092081464827, 0.003131213830783963, 0.012030623853206635, 0.009217243641614914], [0.005904765799641609, 0.004374198615550995, 0.006154804956167936, 0.0007268937770277262, 0.003546689171344042, 0.001545797218568623, 0.0059205312281847, 0.013320356607437134, 0.00551215372979641]], [[0.005822913721203804, 0.0067282626405358315, 0.008053707890212536, 0.004308303818106651, 0.011623624712228775, 0.00645578233525157, 0.0034779582638293505, 0.02257639169692993, 0.024457497522234917], [0.006752613931894302, 0.021546373143792152, 0.022713132202625275, 0.03949722275137901, 0.02330799028277397, 0.02343795821070671, 0.007825855165719986, 0.018903149291872978, 0.018383199349045753], [0.010231377556920052, 0.006993897724896669, 0.0035543779376894236, 0.006209128070622683, 0.008916785940527916, 0.0025827386416494846, 0.013614773750305176, 0.02752945013344288, 0.008013597689568996], [0.0017297770828008652, 0.0035777920857071877, 0.004379001911729574, 0.00348403537645936, 0.013788655400276184, 0.010207629762589931, 0.006903520785272121, 0.01639179140329361, 0.0050702570006251335], [0.02367863617837429, 0.014378308318555355, 0.019954072311520576, 0.01592298410832882, 0.017052380368113518, 0.014680364169180393, 0.031541772186756134, 0.1418466866016388, 0.016826948150992393], [0.0025931817945092916, 0.005052092485129833, 0.00449332082644105, 0.007472687866538763, 0.00824285950511694, 0.006850372534245253, 0.00588183430954814, 0.01014531310647726, 0.003920306917279959], [0.006727236323058605, 0.008314987644553185, 0.016345614567399025, 0.013904438354074955, 0.018732335418462753, 0.022339019924402237, 0.013412481173872948, 0.04597458615899086, 0.008343709632754326], [0.001379967201501131, 0.0031912035774439573, 0.004053221084177494, 0.002789696678519249, 0.00516172219067812, 0.0034302109852433205, 0.015421082265675068, 0.3257053792476654, 0.0012095352867618203]], [[0.03135097771883011, 0.05269235000014305, 0.023349938914179802, 0.1323545277118683, 0.13828955590724945, 0.07383492588996887, 0.031481850892305374, 0.028434528037905693, 0.020914731547236443], [0.03490123152732849, 0.10801766067743301, 0.019449643790721893, 0.04172982648015022, 0.07739521563053131, 0.03016926348209381, 0.13350681960582733, 0.048867661505937576, 0.03307081386446953], [0.05154607072472572, 0.13161619007587433, 0.015470139682292938, 0.037308115512132645, 0.09358541667461395, 0.045323196798563004, 0.08748354762792587, 0.04389321058988571, 0.0751238763332367], [0.045170001685619354, 0.023220911622047424, 0.05770496651530266, 0.02595735527575016, 0.2384619265794754, 0.22330813109874725, 0.06707781553268433, 0.04752959683537483, 0.005720003042370081], [0.05315763130784035, 0.06410051882266998, 0.020315688103437424, 0.015302143059670925, 0.1043320894241333, 0.2639279365539551, 0.030412442982196808, 0.023462509736418724, 0.02145475521683693], [0.16818305850028992, 0.06326840817928314, 0.05614742264151573, 0.07093902677297592, 0.04383542761206627, 0.11131663620471954, 0.023724956437945366, 0.034650057554244995, 0.01285067480057478], [0.018804555758833885, 0.1452721804380417, 0.015372946858406067, 0.046491123735904694, 0.06757894158363342, 0.04078845679759979, 0.0687142089009285, 0.02868746407330036, 0.07122844457626343], [0.6231653690338135, 0.04444140940904617, 0.015488763339817524, 0.014099380932748318, 0.023624960333108902, 0.06599694490432739, 0.04869147017598152, 0.02038084715604782, 0.0009414941305294633]], [[0.12921631336212158, 0.0027394054923206568, 0.0015853192890062928, 0.00033284889650531113, 0.0005371670704334974, 2.662128463271074e-05, 0.004090360831469297, 0.05729591101408005, 0.5213974714279175], [0.14676052331924438, 0.009243791922926903, 0.004999727010726929, 0.009514186531305313, 0.0008303028298541903, 0.0013667411403730512, 0.0007688934565521777, 0.07283740490674973, 0.09306642413139343], [0.008004061877727509, 0.002158306771889329, 0.0015265600522980094, 0.0005280429031699896, 0.0004625661240424961, 2.4361703253816813e-05, 0.0011331778950989246, 0.0005862020188942552, 0.01661285199224949], [0.0762576013803482, 0.001045120763592422, 0.003688471857458353, 0.0010932286968454719, 0.00449006212875247, 0.002644736785441637, 0.00073879404226318, 0.0010261982679367065, 0.0015050700167194009], [0.2574582099914551, 0.0006624235538765788, 0.0005549232009798288, 0.0007254296215251088, 0.0025924642104655504, 5.587463601841591e-05, 7.177134830271825e-05, 7.798853766871616e-05, 0.0012320630485191941], [0.010709894821047783, 0.0007484433590434492, 8.900796819943935e-05, 0.0016312870429828763, 0.003602010430768132, 0.00010779048170661554, 0.000447740574600175, 0.0009123242925852537, 0.0005111492937430739], [0.08550012111663818, 0.0001672657672315836, 0.0005095266969874501, 7.990856829565018e-05, 0.0007041409844532609, 1.4359509805217385e-05, 0.0009417919791303575, 0.00023594428785145283, 0.0007948753773234785], [0.8495730757713318, 3.872965862683486e-06, 3.082321200054139e-05, 7.923857992864214e-06, 1.9904187865904532e-05, 5.858074018760817e-06, 4.14150272263214e-05, 0.00016338461136911064, 3.6585079215001315e-05]], [[0.020670412108302116, 0.029202111065387726, 0.04855913668870926, 0.016554342582821846, 0.021941810846328735, 0.09035651385784149, 0.026405109092593193, 0.03387559577822685, 0.087388776242733], [0.08915013074874878, 0.029178563505411148, 0.03518853709101677, 0.015873081982135773, 0.025689249858260155, 0.05005418136715889, 0.0025903002824634314, 0.042547184973955154, 0.025278348475694656], [0.7777273058891296, 0.0037733472418040037, 0.001478124177083373, 0.0043999142944812775, 0.006701088044792414, 0.01302959956228733, 0.002849529730156064, 0.008094757795333862, 0.016851214691996574], [0.014837793074548244, 0.008079626597464085, 0.04585641622543335, 0.015075299888849258, 0.11292103677988052, 0.09782068431377411, 0.013583811931312084, 0.052380986511707306, 0.009831427596509457], [0.04893508553504944, 0.026316823437809944, 0.008845926262438297, 0.00985388457775116, 0.026612350717186928, 0.01817840337753296, 0.06177006661891937, 0.006831398233771324, 0.052024707198143005], [0.0260305292904377, 0.01183387916535139, 0.015168212354183197, 0.0069733876734972, 0.038386184722185135, 0.030776556581258774, 0.03352782130241394, 0.027250410988926888, 0.07035466283559799], [0.135867178440094, 0.011997750960290432, 0.029999757185578346, 0.024606216698884964, 0.025782689452171326, 0.03336285427212715, 0.0061295004561543465, 0.02897804230451584, 0.029729513451457024], [0.7758133411407471, 0.007774508558213711, 0.0009717227076180279, 0.002736188704147935, 0.004408706910908222, 0.001264071324840188, 0.0030430478509515524, 0.00028356979601085186, 0.009030964225530624]], [[0.017834164202213287, 0.002756795845925808, 0.05350993201136589, 0.0021620094776153564, 0.023222211748361588, 0.13789162039756775, 0.009836714714765549, 0.051396630704402924, 0.0002801534137688577], [0.009180780500173569, 0.0043208966962993145, 0.013429312966763973, 0.01852136105298996, 0.020653001964092255, 0.06049400940537453, 0.0036788966972380877, 0.013552435673773289, 0.000791482103522867], [0.007877924479544163, 0.002594415098428726, 0.051812794059515, 0.010642011649906635, 0.036495789885520935, 0.022167861461639404, 0.0056761750020086765, 0.014539164490997791, 0.0003590921696741134], [0.019241195172071457, 0.005438725929707289, 0.003354135202243924, 0.0021407820750027895, 0.024612626060843468, 0.031923312693834305, 0.008155552670359612, 0.025547876954078674, 0.001017207046970725], [0.07355764508247375, 0.014865903183817863, 0.15413416922092438, 0.005740889813750982, 0.05969779193401337, 0.05063951388001442, 0.05190437659621239, 0.010656776838004589, 0.0029035040643066168], [0.01094046887010336, 0.0014406978152692318, 0.07255426049232483, 0.002811927581205964, 0.01564006134867668, 0.011477588675916195, 0.01629479043185711, 0.017017584294080734, 0.003313269931823015], [0.008660070598125458, 0.001521358615718782, 0.017713433131575584, 0.0025126044638454914, 0.019752124324440956, 0.0498618483543396, 0.004999701865017414, 0.010655038990080357, 0.00021393646602518857], [0.005447723437100649, 0.0013296524994075298, 0.0012926749186590314, 0.00039578264113515615, 0.0017018918879330158, 0.0008921298431232572, 0.0018021955620497465, 0.0005336333997547626, 0.00013476944877766073]]], [[[0.46295905113220215, 0.13443738222122192, 0.004037299659103155, 0.018081648275256157, 0.0010580584639683366, 0.005880589596927166, 0.00943515170365572, 0.03630466014146805, 0.10564146190881729], [0.04682144895195961, 0.6307578682899475, 0.017838003113865852, 0.01651613786816597, 0.0009469649521633983, 0.003794413059949875, 0.013334283605217934, 0.018501348793506622, 0.044094476848840714], [0.1607009619474411, 0.05023277550935745, 0.006000313442200422, 0.029496043920516968, 0.006779431365430355, 0.002788977697491646, 0.014734962023794651, 0.07584323734045029, 0.07187895476818085], [0.1354241818189621, 0.08385733515024185, 0.0069400290958583355, 0.023752328008413315, 0.014441447332501411, 0.001654807711020112, 0.02139156311750412, 0.18527966737747192, 0.06950785964727402], [0.22548837959766388, 0.02763162925839424, 0.020267117768526077, 0.0464756041765213, 0.0020414525642991066, 0.0037675665225833654, 0.006938498001545668, 0.04487454518675804, 0.10998658090829849], [0.21357214450836182, 0.05379948392510414, 0.0038793820422142744, 0.029647590592503548, 0.005487753544002771, 0.004448940046131611, 0.06838462501764297, 0.12135495245456696, 0.09188488125801086], [0.06259501725435257, 0.0189773328602314, 0.001851109554991126, 0.015108867548406124, 0.0012967042857781053, 0.003537708893418312, 0.008021938614547253, 0.057718198746442795, 0.04869207739830017], [0.8161494135856628, 0.013028709217905998, 0.0003173933073412627, 0.005968824494630098, 0.0003629127750173211, 0.00032984092831611633, 0.0013746650656685233, 0.02198980748653412, 0.02877907268702984]], [[0.08589247614145279, 0.002521045971661806, 9.903813770506531e-05, 2.902046253439039e-05, 5.1632541726576164e-05, 0.001955093815922737, 0.013761550188064575, 0.007914502173662186, 0.8375268578529358], [0.04499068856239319, 0.0022313909139484167, 5.856103962287307e-05, 8.88756949279923e-06, 5.031471573602175e-06, 7.308822387130931e-05, 0.0003000217257067561, 0.0006080602179281414, 0.30511003732681274], [0.0602448396384716, 0.005734770558774471, 0.001047954079695046, 0.0003169375122524798, 1.9530880308593623e-05, 4.236752647557296e-05, 4.507845369516872e-05, 0.00014290698163677007, 0.11691242456436157], [0.13928642868995667, 0.0018911127699539065, 0.00031404936453327537, 0.0010929979616776109, 0.00011156240361742675, 8.815286128083244e-05, 1.8082988390233368e-05, 4.896871905657463e-05, 0.019383331760764122], [0.8591821789741516, 0.0004334145924076438, 0.0007691459613852203, 0.004641552921384573, 0.00032690729130990803, 0.0001838502794271335, 6.091551313147647e-06, 5.274484010442393e-06, 0.0008562818984501064], [0.07389561831951141, 0.00020063506963197142, 0.00036372541217133403, 0.0016754217213019729, 0.00023393449373543262, 0.0005504963919520378, 0.00013764100731350482, 4.866508606937714e-05, 0.002255277009680867], [0.2204533964395523, 0.0014500131364911795, 0.0001964420371223241, 0.00010653816570993513, 6.076391218812205e-05, 0.00023710961977485567, 3.652758459793404e-05, 2.269806464028079e-05, 0.0007382851326838136], [0.9199901223182678, 0.008011292666196823, 0.0006773861241526902, 0.0002690139808692038, 0.0001248049666173756, 0.0004705950850620866, 0.00030268330010585487, 0.00012253946624696255, 0.0017638558056205511]], [[4.028221312069036e-09, 1.202604639136129e-12, 5.910990199777455e-15, 7.949550923721157e-24, 2.0833208137356815e-22, 2.415849996843477e-19, 1.5831309874148047e-10, 1.0074910683499638e-08, 0.9999998807907104], [9.274425671890185e-11, 9.278203205731472e-13, 1.9859090500534693e-12, 5.480665447994227e-20, 2.703900293551721e-27, 1.5144368390267484e-21, 1.143353135113929e-21, 1.096773886988256e-11, 9.49169276509565e-09], [4.601445198204601e-07, 1.4353030985958526e-09, 3.6727996644003724e-07, 1.6840390843972375e-12, 2.4918963191308993e-17, 1.0714103736119974e-20, 2.0580576757746107e-19, 9.888555117311301e-17, 5.2989868493114045e-08], [1.781740266437737e-08, 3.1141718994802435e-15, 3.094352329924277e-09, 9.614233020815988e-11, 1.4511063520499662e-14, 7.01376949886214e-16, 5.623298527462219e-20, 2.6621659888328972e-17, 6.566792991922904e-17], [1.9992752640973777e-05, 2.909532424016925e-13, 5.3876687833298575e-11, 2.260905240802913e-08, 2.989041902878853e-09, 7.952740896377541e-12, 4.779488436967849e-14, 5.2451502789652784e-17, 7.312851009186121e-16], [1.1599305253184866e-05, 1.2786926262297639e-14, 2.75421300349743e-11, 1.9026799450219678e-13, 1.1895821784221883e-12, 6.454959483592759e-11, 4.586023401309536e-12, 9.211971463418678e-12, 5.12880831842643e-16], [6.81937308399938e-05, 2.973534266037525e-11, 1.0895241143744211e-13, 2.5913077785025837e-15, 1.2421710642913529e-15, 2.205678565139757e-12, 1.773802354998466e-10, 1.0491045532301513e-10, 1.1577308122595609e-12], [0.0007783960900269449, 3.822862026936491e-09, 3.6788537727261428e-06, 1.6344290504344272e-11, 5.106468091257976e-13, 1.0013295054234206e-10, 4.988924551252438e-11, 1.547768420095963e-07, 1.083850897920513e-09]], [[0.5440881252288818, 0.002226114273071289, 0.0004809642268810421, 0.0008448027074337006, 0.0015203584916889668, 3.912287138518877e-05, 0.016177812591195107, 0.003808376146480441, 0.2657618224620819], [0.45468011498451233, 0.001125458860769868, 9.822353604249656e-05, 0.0008718791068531573, 7.856896445446182e-06, 8.684596832608804e-05, 6.943345215404406e-05, 0.0007444634102284908, 0.07735700160264969], [0.054494284093379974, 0.00015698189963586628, 0.0003893310495186597, 4.77485591545701e-05, 3.832458605756983e-05, 3.2978691706375685e-06, 3.5208902318117907e-06, 0.0001223939034389332, 0.005355996545404196], [0.1705039143562317, 0.001200605765916407, 0.00021320053201634437, 0.00028567147091962397, 0.00032327102962881327, 0.00017610772920306772, 9.03454129002057e-05, 0.00015771057223901153, 0.002141034696251154], [0.04980429634451866, 2.7052323275711387e-05, 0.00019509704725351185, 5.3726187616121024e-05, 6.828049663454294e-06, 1.8254033420816995e-05, 2.514758762117708e-06, 1.1881355021614581e-05, 0.00025059940526261926], [0.09360872954130173, 9.496775419393089e-06, 0.00033224793151021004, 7.093108433764428e-05, 0.00012873514788225293, 6.449621287174523e-05, 9.584928920958191e-05, 3.930669481633231e-05, 7.742291199974716e-05], [0.4327191412448883, 0.00019548767886590213, 0.00016073616279754788, 0.0006966596120037138, 0.001061582355760038, 0.0007304280297830701, 0.00014839984942227602, 5.163986133993603e-05, 0.001229947665706277], [0.8934411406517029, 0.00021064466272946447, 0.0003912361862603575, 0.0004131930763833225, 0.0001941204973263666, 0.00041724773473106325, 0.00017503774142824113, 0.0018019293202087283, 0.0008540275157429278]], [[1.8508901575842174e-06, 2.19125206868398e-09, 1.6795565898064524e-05, 4.536809150579302e-09, 2.7801302926455662e-11, 3.343717616427922e-15, 1.422884271344571e-12, 3.5772039085231466e-13, 9.085576493816916e-06], [2.8517765713331755e-06, 4.181531856883858e-11, 3.278168207998533e-07, 1.257287465250556e-07, 6.659325868518806e-13, 1.7481118549239616e-12, 3.512389619863998e-18, 1.8118530764263396e-13, 2.7467795832986086e-12], [1.3433592357614543e-05, 9.030181658854775e-13, 7.340586472004418e-10, 2.924488873290443e-09, 2.183284486534376e-08, 3.50359606778039e-12, 2.0744859823007555e-12, 5.561343892996826e-15, 7.704284259169025e-12], [7.652844033145811e-06, 6.385651989820884e-12, 1.0935914673826375e-10, 1.7228612980701996e-10, 7.213994158983272e-12, 3.6203240405541237e-09, 6.669143969711966e-12, 4.3078252076611534e-10, 1.1984286176283665e-12], [0.001580658252350986, 1.1428853696759944e-10, 1.6795747084796808e-11, 2.48450513634646e-11, 2.938254917150829e-10, 2.7266062740949337e-09, 9.963819991298806e-08, 3.9182912470181464e-10, 2.169834312226726e-09], [0.01810457557439804, 6.616645720214365e-08, 5.0183452913188376e-06, 2.132491339068565e-08, 8.615103075371167e-10, 1.1104132369155195e-07, 1.575727104352609e-08, 8.059056426645839e-07, 8.521518424231544e-08], [0.0002292962744832039, 3.981947827025323e-10, 8.661012884658703e-08, 7.519721734183804e-09, 1.5828169885878651e-09, 2.20777884862855e-09, 1.6159351634570385e-10, 5.391893043160678e-10, 2.5385523017007472e-08], [0.9933745265007019, 2.431813431180707e-11, 3.42266503139399e-06, 7.352741135946417e-07, 1.4506482237663931e-08, 4.0371310205955524e-07, 3.690414085433247e-10, 2.0913482057238753e-09, 7.683404468217248e-10]], [[0.2772272825241089, 0.018499623984098434, 0.006594883743673563, 0.005694271996617317, 0.004406025167554617, 0.00955114234238863, 0.00837589893490076, 0.20061449706554413, 0.04854036495089531], [0.11926595121622086, 0.009793884120881557, 0.01636076159775257, 0.03312721848487854, 0.0016426455695182085, 0.00883167702704668, 0.007008750922977924, 0.07547267526388168, 0.04695062339305878], [0.25112053751945496, 0.0043646590784192085, 0.007442587986588478, 0.01092055719345808, 0.0013913180446252227, 0.006583517417311668, 0.007620566058903933, 0.05494378134608269, 0.011677935719490051], [0.5414526462554932, 0.01744280755519867, 0.00881566945463419, 0.002870401134714484, 0.0020797024480998516, 0.013437996618449688, 0.018094586208462715, 0.08082153648138046, 0.03871343284845352], [0.5520836114883423, 0.009979329071938992, 0.03555531054735184, 0.01862558163702488, 0.004722306504845619, 0.006640487350523472, 0.011093690991401672, 0.04547552019357681, 0.015431882813572884], [0.8022099733352661, 0.004681755322962999, 0.0013911783462390304, 0.004345548804849386, 0.0005341732176020741, 0.0030271909199655056, 0.0032198047265410423, 0.018615253269672394, 0.01314855832606554], [0.4718855321407318, 0.004046672489494085, 0.00351886753924191, 0.002074547577649355, 0.0004978472134098411, 0.001010275911539793, 0.0022205645218491554, 0.08876756578683853, 0.01454891636967659], [0.6865681409835815, 0.003424773458391428, 0.00630495510995388, 0.003833218477666378, 0.0011550461640581489, 0.0033491929061710835, 0.0034860004670917988, 0.03877848759293556, 0.004662151448428631]], [[0.16094478964805603, 0.00748651335015893, 0.007378927897661924, 0.008781597949564457, 0.0065528214909136295, 0.0027143454644829035, 0.007923530414700508, 0.01616482064127922, 0.04190852865576744], [0.026192594319581985, 0.013724654912948608, 0.022249190136790276, 0.0027842477429658175, 0.0033832727931439877, 0.02037051133811474, 0.008052701130509377, 0.01027065608650446, 0.032563187181949615], [0.4662875533103943, 0.008070702664554119, 0.0023745433427393436, 0.0030211512930691242, 0.0015193852595984936, 0.003101447131484747, 0.003250443609431386, 0.01653403602540493, 0.01975741982460022], [0.3830494284629822, 0.021092059090733528, 0.006160008255392313, 0.01472031231969595, 0.005040530581027269, 0.014023304916918278, 0.004884559661149979, 0.023080378770828247, 0.03539381921291351], [0.5306687355041504, 0.010774489492177963, 0.002410204615443945, 0.006903544533997774, 0.0037025348283350468, 0.006171224173158407, 0.0035918622743338346, 0.031854502856731415, 0.029176101088523865], [0.6199820041656494, 0.013295439071953297, 0.004271314013749361, 0.005349303130060434, 0.0022974428720772266, 0.002429089741781354, 0.006736415904015303, 0.05976027995347977, 0.018455782905220985], [0.15816448628902435, 0.013517145998775959, 0.006362810265272856, 0.0011450161691755056, 0.0023240549489855766, 0.01284533180296421, 0.008271090686321259, 0.011708036996424198, 0.01966729760169983], [0.6879887580871582, 0.006788651458919048, 0.00042258354369550943, 0.0009651940781623125, 0.00018285839178133756, 0.00029145751614123583, 0.0017378886695951223, 0.05891162157058716, 0.011072656139731407]], [[0.18424901366233826, 0.032660216093063354, 0.001610534847714007, 0.037450630217790604, 0.005117237102240324, 0.007694576401263475, 0.0043250881135463715, 0.18914370238780975, 0.08759146183729172], [0.27753785252571106, 0.011008027009665966, 0.006587690208107233, 0.07437366247177124, 0.004310634918510914, 0.001986040035262704, 0.003545790910720825, 0.13499712944030762, 0.07163666188716888], [0.34596556425094604, 0.013450653292238712, 0.0028331198263913393, 0.008632787503302097, 0.0009093458065763116, 0.002470043720677495, 0.0037378643173724413, 0.05057791993021965, 0.07203326374292374], [0.49361008405685425, 0.014012736268341541, 0.002963628154247999, 0.002339404309168458, 0.0002618416037876159, 0.0020891716703772545, 0.0004461451608221978, 0.048211365938186646, 0.09939205646514893], [0.6466578841209412, 0.022861506789922714, 0.0025711418129503727, 0.005744633264839649, 0.0004050146380905062, 0.0008056352380663157, 0.0021389066241681576, 0.01559662725776434, 0.0623030923306942], [0.9146207571029663, 0.004662979394197464, 0.0035277309361845255, 0.0004554034094326198, 3.6263110814616084e-05, 0.000576634774915874, 0.00046026718337088823, 0.01739397458732128, 0.011538085527718067], [0.06585510075092316, 0.003417092375457287, 0.000556586601305753, 0.03965763747692108, 0.0020394448656588793, 0.001654840656556189, 0.0034783778246492147, 0.10150887817144394, 0.0511421374976635], [0.7843999862670898, 0.002134111011400819, 0.0014758622273802757, 0.005656109191477299, 0.000305965164443478, 0.000720208918210119, 0.0008353911689482629, 0.06391479074954987, 0.016644706949591637]], [[0.8086466193199158, 0.0018076999112963676, 0.0026719255838543177, 0.005714831408113241, 0.004672871436923742, 0.008148260414600372, 0.002197334775701165, 0.04261137917637825, 0.019266145303845406], [0.6064297556877136, 0.0015887290937826037, 0.000828389311209321, 0.05019272863864899, 0.0010525919497013092, 0.0038572647608816624, 0.0011728303506970406, 0.04813549295067787, 0.0318947434425354], [0.3405577838420868, 0.004098796751350164, 0.004238568712025881, 0.03632776439189911, 0.002307007322087884, 0.014611685648560524, 0.007300506345927715, 0.05870509892702103, 0.02840389870107174], [0.2727213203907013, 0.0013750094221904874, 0.000548491021618247, 0.0075427331030368805, 0.011776926927268505, 0.017849700525403023, 0.005563509184867144, 0.016161516308784485, 0.017250923439860344], [0.017791414633393288, 6.897769344504923e-05, 0.00028609062428586185, 1.345938380836742e-05, 4.6272616600617766e-05, 4.5617958676302806e-05, 0.0002721014025155455, 0.0011928243329748511, 0.0016312560765072703], [0.043708283454179764, 6.214966560946777e-05, 0.00013578722428064793, 0.0006393397343344986, 3.555925650289282e-05, 3.491224197205156e-05, 9.225129178958014e-05, 0.002938215620815754, 0.0009116427390836179], [0.4000444710254669, 0.0009383959113620222, 0.0004060991923324764, 0.0021434330847114325, 0.005039292387664318, 0.001639435300603509, 0.0036752354353666306, 0.04843703657388687, 0.015555567108094692], [0.9490056037902832, 0.00023433785827364773, 0.00012116568541387096, 0.0005305696395225823, 5.323494042386301e-05, 2.215595122834202e-05, 0.0002171236847061664, 0.009182914160192013, 0.004246760159730911]], [[0.2313961684703827, 0.01849144510924816, 0.001922601368278265, 0.0031502151396125555, 0.008005749434232712, 0.0010638654930517077, 0.0037781281862407923, 0.008075609803199768, 0.40555480122566223], [0.2717990279197693, 0.033821798861026764, 0.006114346440881491, 0.024118369445204735, 0.04741643741726875, 0.014171111397445202, 0.028722183778882027, 0.024612363427877426, 0.24613437056541443], [0.5097821950912476, 0.04205074533820152, 0.006268296390771866, 0.004365711472928524, 0.007546967826783657, 0.0015135875437408686, 0.009226033464074135, 0.041420575231313705, 0.14671842753887177], [0.39675262570381165, 0.03287053853273392, 0.004070722032338381, 0.006185806356370449, 0.00849553756415844, 0.0018438195111230016, 0.006622432731091976, 0.01594984158873558, 0.22853876650333405], [0.6560561656951904, 0.05533412843942642, 0.009237045422196388, 0.0037865994963794947, 0.0016252470668405294, 0.001150193391367793, 0.009355983696877956, 0.11712469905614853, 0.0406353659927845], [0.7575200796127319, 0.042246654629707336, 0.004704935010522604, 0.0019006738439202309, 0.0017903491389006376, 0.0011083963327109814, 0.0017711218679323792, 0.024275122210383415, 0.0655762329697609], [0.3511054217815399, 0.04247633367776871, 0.020423196256160736, 0.026353580877184868, 0.040917955338954926, 0.014872226864099503, 0.021964456886053085, 0.016227558255195618, 0.2207026481628418], [0.25313547253608704, 0.03037654422223568, 0.05789206176996231, 0.021365966647863388, 0.028907455503940582, 0.027612630277872086, 0.03802206739783287, 0.11806131154298782, 0.06643538922071457]], [[0.05373314023017883, 0.12956614792346954, 0.01833966374397278, 0.04342518746852875, 0.026944400742650032, 0.019927769899368286, 0.008102282881736755, 0.08040305227041245, 0.0348784513771534], [0.11677586287260056, 0.018950417637825012, 0.01927580125629902, 0.03196021914482117, 0.015552995726466179, 0.01696234568953514, 0.01217556744813919, 0.05748158320784569, 0.028038235381245613], [0.5650006532669067, 0.017072495073080063, 0.006416097283363342, 0.011153541505336761, 0.007141956593841314, 0.005084770265966654, 0.007194835226982832, 0.051024436950683594, 0.022067274898290634], [0.4541967511177063, 0.02689855918288231, 0.00857709813863039, 0.012632212601602077, 0.007487334311008453, 0.01462599541991949, 0.011586816050112247, 0.07194138318300247, 0.028957685455679893], [0.8418929576873779, 0.005041684024035931, 0.007445808965712786, 0.006985174026340246, 0.0038929677102714777, 0.005131320562213659, 0.002545701339840889, 0.006035570055246353, 0.00789889506995678], [0.9161903858184814, 0.001196592696942389, 0.0031136570032685995, 0.002729585627093911, 0.0028279514517635107, 0.002311522141098976, 0.0031989377457648516, 0.006149820052087307, 0.0023341660853475332], [0.2593376338481903, 0.03832323104143143, 0.017367225140333176, 0.02358234114944935, 0.026675889268517494, 0.02338641881942749, 0.012839704751968384, 0.06736445426940918, 0.03166091442108154], [0.07423175871372223, 0.012813451699912548, 0.0010853252606466413, 0.00595083087682724, 0.003418268635869026, 0.002421505516394973, 0.0014076873194426298, 0.0592389851808548, 0.10726946592330933]], [[0.21625906229019165, 0.04045278951525688, 0.012858305126428604, 0.10989797860383987, 0.020503783598542213, 0.04206298291683197, 0.05962509289383888, 0.10306674987077713, 0.11533786356449127], [0.09747344255447388, 0.01777718774974346, 0.004821004346013069, 0.04646192863583565, 0.017839256674051285, 0.01810486800968647, 0.03567995876073837, 0.0609109029173851, 0.08252067863941193], [0.11249347031116486, 0.023766499012708664, 0.023114655166864395, 0.042992446571588516, 0.032619692385196686, 0.05845371633768082, 0.07248760759830475, 0.036161720752716064, 0.07719957083463669], [0.2892049551010132, 0.024716205894947052, 0.010256482288241386, 0.017953963950276375, 0.0005146929761394858, 0.015512811951339245, 0.014164227060973644, 0.05134362354874611, 0.13534921407699585], [0.18097321689128876, 0.03645959869027138, 0.04169938340783119, 0.03479447960853577, 0.001791298040188849, 0.136783629655838, 0.02464781142771244, 0.026010729372501373, 0.11617446690797806], [0.16878485679626465, 0.041048578917980194, 0.03248143196105957, 0.049241114407777786, 0.008485502563416958, 0.054425302892923355, 0.029646243900060654, 0.029012341052293777, 0.1390765905380249], [0.22168339788913727, 0.01970122568309307, 0.017759354785084724, 0.021183690056204796, 0.003852823516353965, 0.04136800393462181, 0.01090035866945982, 0.0650753527879715, 0.054872192442417145], [0.10022874921560287, 0.02577802538871765, 0.011863223277032375, 0.017911396920681, 0.005067610181868076, 0.018355203792452812, 0.009556182660162449, 0.09161453694105148, 0.01999814249575138]]], [[[0.35545724630355835, 0.015700388699769974, 0.00022701396665070206, 0.047394681721925735, 0.01047397032380104, 0.003791484050452709, 0.0034794039092957973, 0.11609276384115219, 0.017329897731542587], [0.18819394707679749, 0.031523726880550385, 0.0019991977605968714, 0.03090377151966095, 0.002986564300954342, 0.007773544639348984, 0.0009980795439332724, 0.12662644684314728, 0.07078582048416138], [0.44700315594673157, 0.008147265762090683, 0.00018987641669809818, 0.026380542665719986, 0.006153915077447891, 0.0037664221599698067, 0.0018434333615005016, 0.07596214860677719, 0.01489653717726469], [0.34166258573532104, 0.014866519719362259, 0.0006122334743849933, 0.017381759360432625, 0.0047426060773432255, 0.005879465024918318, 0.0038198272231966257, 0.03887733817100525, 0.01415393128991127], [0.3062163293361664, 0.0043711792677640915, 0.0016276920214295387, 0.016264447942376137, 0.0015441137365996838, 0.008248157799243927, 0.001241195946931839, 0.026808761060237885, 0.030627401545643806], [0.1210237517952919, 0.002162128919735551, 0.0034830737859010696, 0.008340361528098583, 0.001517640077508986, 0.004227576311677694, 0.0005055739893577993, 0.011009505949914455, 0.03782225772738457], [0.5429201126098633, 0.009856241755187511, 8.317088213516399e-05, 0.015544903464615345, 0.0009551475523039699, 0.001194678246974945, 0.0003980295732617378, 0.10956937819719315, 0.007213618606328964], [0.806210458278656, 0.008082743734121323, 0.000343059393344447, 0.0011954146903008223, 0.002624648390337825, 0.0014450001763179898, 0.0006635795580223203, 0.03913620859384537, 0.005478864535689354]], [[0.41960352659225464, 0.01913681998848915, 0.0015677883056923747, 0.007768760900944471, 0.003421276342123747, 0.0009994249558076262, 0.0008573529776185751, 0.01781180500984192, 0.22060412168502808], [0.21278835833072662, 0.1617441177368164, 0.002280773827806115, 0.06295441091060638, 0.0023916931822896004, 0.0028469108510762453, 0.0061056348495185375, 0.03518082946538925, 0.02114127017557621], [0.1087644025683403, 0.007666837889701128, 0.0009514890844002366, 0.011494861915707588, 0.008100277744233608, 0.011865037493407726, 0.010352912358939648, 0.014303864911198616, 0.13765114545822144], [0.19253849983215332, 0.015032432973384857, 0.0015187135431915522, 0.015387236140668392, 0.10257664322853088, 0.012829083018004894, 0.011811327189207077, 0.03713827580213547, 0.05944398045539856], [0.35856541991233826, 0.0008786483085714281, 0.0012833033688366413, 0.004999963100999594, 0.0008144171442836523, 0.0038151931948959827, 0.0007613565539941192, 0.010301255621016026, 0.06564703583717346], [0.16855739057064056, 0.0035048709250986576, 0.0025944223161786795, 0.0023684853222221136, 0.0034197778441011906, 0.007350698113441467, 0.002209746977314353, 0.018640436232089996, 0.055680349469184875], [0.4214586317539215, 0.01272890530526638, 0.0037388994824141264, 0.034625470638275146, 0.0009176275343634188, 0.007532259449362755, 0.002153666689991951, 0.031964510679244995, 0.13898687064647675], [0.35087811946868896, 0.039255011826753616, 0.019050082191824913, 0.032050490379333496, 0.00489999633282423, 0.01617913320660591, 0.006983624771237373, 0.0962814912199974, 0.23207370936870575]], [[0.35051918029785156, 0.0277424193918705, 0.0026206346228718758, 0.00862390361726284, 0.0007308940985240042, 0.0006053828983567655, 0.002039568731561303, 0.18621663749217987, 0.02659977413713932], [0.29989585280418396, 0.21211478114128113, 0.012097137980163097, 0.03750472888350487, 0.006688349414616823, 0.004164774902164936, 0.006009112577885389, 0.038700759410858154, 0.012774821370840073], [0.8537232875823975, 0.008102361112833023, 0.000321030558552593, 0.0008533833315595984, 6.255933840293437e-05, 9.349741594633088e-05, 0.00017812031728681177, 0.08712994307279587, 0.0029953145422041416], [0.7217544913291931, 0.019425155594944954, 0.0007242090068757534, 0.0011370280990377069, 8.95856210263446e-05, 0.00022010953398421407, 0.00036339106736704707, 0.20532137155532837, 0.0035484805703163147], [0.6803311109542847, 0.04388759285211563, 0.010201721452176571, 0.004490840248763561, 0.00011520295083755627, 0.000227678261580877, 0.0004739072173833847, 0.12748093903064728, 0.0055168732069432735], [0.7427048087120056, 0.0446072518825531, 0.002733102533966303, 0.0013373729307204485, 0.00011133380030514672, 0.00011317487224005163, 0.0005121941212564707, 0.13273939490318298, 0.004510131198912859], [0.1489006131887436, 0.013011327013373375, 0.001975643215700984, 0.01670215092599392, 0.003309930209070444, 0.004668704699724913, 0.004907403606921434, 0.0430835522711277, 0.014747639186680317], [0.6095574498176575, 0.027133753523230553, 0.0025640218518674374, 0.005627874750643969, 0.002388184890151024, 0.0022122778464108706, 0.004465707577764988, 0.13545842468738556, 0.004957517609000206]], [[0.5758452415466309, 0.0030951141379773617, 0.004761130083352327, 0.002336776116862893, 0.0002411947789369151, 9.37568984227255e-05, 5.521527418750338e-05, 0.0003310434112790972, 0.004556070547550917], [0.575535237789154, 0.0008558345143683255, 0.005822916515171528, 0.0034926305525004864, 0.00010607944568619132, 3.480555460555479e-05, 7.737130545137916e-06, 0.0005968101904727519, 0.00543591845780611], [0.011750069446861744, 0.0001563738042023033, 0.00010440481128171086, 0.00020337167370598763, 9.635693277232349e-05, 7.71645427448675e-05, 3.69607332686428e-05, 0.00012413262447807938, 0.00033067449112422764], [0.43296104669570923, 0.0005168191273696721, 0.0007069097482599318, 0.0005931710475124419, 0.001529261120595038, 0.0021718121133744717, 0.0006062213215045631, 0.0011525223962962627, 0.0015182701172307134], [0.44735753536224365, 0.0005971206119284034, 0.00020121039415244013, 0.00035224054590798914, 0.0010305430041626096, 0.0007352453540079296, 0.001396332634612918, 0.000719264498911798, 0.002508622594177723], [0.9219660758972168, 0.0001357470900984481, 6.967592344153672e-05, 3.8046367990318686e-05, 4.9331447371514514e-05, 9.716444765217602e-05, 2.9237058697617613e-05, 0.0002664979256223887, 0.0004996331408619881], [0.6382927298545837, 0.00030877284007146955, 0.0003692670143209398, 0.00024581330944783986, 0.0006497515714727342, 0.0005276494193822145, 0.00027332419995218515, 0.000819970213342458, 0.001459851278923452], [0.9699109196662903, 4.7778554289834574e-05, 3.577940151444636e-05, 7.615400681970641e-05, 6.269367440836504e-05, 0.00016595187480561435, 4.878999607171863e-05, 0.0004922030493617058, 0.0008326738607138395]], [[0.7517618536949158, 0.006795246619731188, 2.971233152493369e-05, 6.851771468063816e-05, 9.587786735210102e-06, 8.76799676916562e-05, 0.00025413092225790024, 0.0253902617841959, 0.18396513164043427], [0.1123083084821701, 0.0032189374323934317, 0.0001560904347570613, 0.00016692676581442356, 4.609536517818924e-06, 2.86362374026794e-05, 2.0452031094464473e-05, 0.008180824108421803, 0.13005411624908447], [0.3030427098274231, 0.0024056655820459127, 0.0015615628799423575, 0.0003351920749992132, 2.1301857486832887e-05, 2.2717051251675002e-05, 9.577292075846344e-06, 0.0015301295788958669, 0.0851929783821106], [0.3067166805267334, 0.006327567156404257, 0.0058981324546039104, 0.008593618869781494, 0.0007845971849747002, 0.00015954340051393956, 6.4059922806336544e-06, 0.0009639994241297245, 0.022805364802479744], [0.5674072504043579, 0.0014256652211770415, 0.004462930839508772, 0.005321774631738663, 0.0003587827377486974, 0.00034828728530555964, 1.542511563457083e-05, 0.0006432884256355464, 0.010195896029472351], [0.32655876874923706, 0.0029003547970205545, 0.0011188285425305367, 0.003442995483055711, 0.0005175312981009483, 0.0004534115141723305, 0.00023586452880408615, 0.001353472820483148, 0.013619557954370975], [0.5315298438072205, 0.008303933776915073, 0.0026485719718039036, 0.0008984821615740657, 0.0003258080396335572, 0.0002836764615494758, 2.667535409273114e-05, 0.007615853566676378, 0.014708596281707287], [0.9526456594467163, 0.001157578662969172, 0.00025960744824260473, 0.00025637258659116924, 3.754347926587798e-05, 2.9654478566953912e-05, 6.0121774367871694e-06, 0.00033280765637755394, 0.0017185610486194491]], [[0.3789955973625183, 0.037152182310819626, 0.010874755680561066, 0.03396500647068024, 0.10259268432855606, 0.026040831580758095, 0.03895583748817444, 0.03963545337319374, 0.04879161715507507], [0.45390698313713074, 0.01578161120414734, 0.002659309422597289, 0.015172489918768406, 0.008991020731627941, 0.008198995143175125, 0.006894359830766916, 0.04144832864403725, 0.13062527775764465], [0.3126511573791504, 0.013460461981594563, 0.014526115730404854, 0.020325785502791405, 0.005681121721863747, 0.022071555256843567, 0.010904147289693356, 0.05966683477163315, 0.05669712275266647], [0.34673619270324707, 0.03479833900928497, 0.015622708946466446, 0.01585078053176403, 0.014937733300030231, 0.02222646400332451, 0.011489885859191418, 0.07666979730129242, 0.09202596545219421], [0.265542209148407, 0.01587287336587906, 0.04491280019283295, 0.02040855772793293, 0.005464802961796522, 0.02757847122848034, 0.00884027499705553, 0.04960956797003746, 0.11078210920095444], [0.20571383833885193, 0.007481779437512159, 0.025770504027605057, 0.005372941493988037, 0.002211174229159951, 0.005438560154289007, 0.0038994650822132826, 0.021414373070001602, 0.15559138357639313], [0.4156606197357178, 0.02930484153330326, 0.026763107627630234, 0.013759997673332691, 0.005073423497378826, 0.013990295119583607, 0.004897473379969597, 0.07260565459728241, 0.04072757810354233], [0.1410287767648697, 0.02858312800526619, 0.04393218085169792, 0.014255604706704617, 0.010514345951378345, 0.03033391572535038, 0.009186592884361744, 0.045470479875802994, 0.03081608936190605]], [[5.7256761831769865e-11, 1.8177569172106445e-10, 2.320407865852303e-08, 1.9377555116051326e-13, 7.127991637689499e-14, 1.1056474761007952e-19, 3.0347051741929764e-16, 1.8008803490473938e-15, 2.052946079800222e-08], [5.323220086950187e-09, 6.389700990538927e-10, 1.1875632921487522e-08, 6.567087496023305e-08, 7.4326997464777e-13, 1.0223632107998065e-13, 1.396551258652239e-18, 4.96227841803587e-13, 5.323364579007395e-12], [1.0771421976585316e-08, 2.2003044189162352e-13, 4.632805944426721e-11, 3.28119337256183e-11, 1.0404080263981541e-08, 1.0850452751998835e-13, 2.6929064159104217e-15, 1.3330198795106444e-14, 3.765587668069781e-12], [2.493611077625246e-07, 5.299155211857531e-13, 1.1903275587421547e-10, 1.0880147893743697e-09, 2.4969566345123262e-11, 1.0324902710578954e-08, 9.77908119065285e-12, 2.6851383339021595e-09, 1.4394319341071854e-13], [1.8986388568009716e-06, 4.610718404296499e-11, 8.233835835369518e-11, 6.760743007094838e-12, 2.851810787518616e-09, 3.964778783061007e-10, 5.249689394304369e-08, 7.894102260763702e-09, 4.00809740952468e-09], [4.469578414045827e-07, 1.1075131263471594e-11, 1.7032422694462923e-10, 3.0387373173290655e-11, 2.393469808199128e-13, 4.0017472842379664e-12, 3.5182193963700925e-11, 6.130878205112822e-07, 5.783045708973589e-10], [1.853988942457363e-05, 4.939836912853934e-07, 2.486839179027811e-08, 1.2427006090831583e-08, 2.9399421563880423e-08, 2.0895420116406882e-10, 9.624123720186617e-11, 2.476693907738081e-07, 2.7553328436624724e-06], [0.9719346761703491, 5.504319777749345e-10, 1.4860255248549947e-08, 3.1344953299594636e-07, 2.6074937764519746e-08, 5.130862632540811e-07, 7.049874017894808e-10, 0.0012406272580847144, 1.2392702046781778e-06]], [[0.23085694015026093, 0.07901652902364731, 0.0645921379327774, 0.0934542715549469, 0.04598722606897354, 0.1489679217338562, 0.04005139693617821, 0.12916989624500275, 0.02290383353829384], [0.1282517910003662, 0.11970190703868866, 0.27546557784080505, 0.09645581245422363, 0.04303727671504021, 0.0486985482275486, 0.022267837077379227, 0.05544966831803322, 0.07754463702440262], [0.33594632148742676, 0.05082051455974579, 0.034456152468919754, 0.041202712804079056, 0.02625332958996296, 0.050550829619169235, 0.03423580154776573, 0.11713456362485886, 0.04542499780654907], [0.20553381741046906, 0.04091273993253708, 0.05387537181377411, 0.025915907695889473, 0.01745276339352131, 0.1117686778306961, 0.026041816920042038, 0.07533708959817886, 0.06065702438354492], [0.29132547974586487, 0.0369611531496048, 0.05475737527012825, 0.03387456014752388, 0.011047767475247383, 0.07499942183494568, 0.01242034137248993, 0.10257245600223541, 0.07453318685293198], [0.2768704295158386, 0.02269923686981201, 0.03997763991355896, 0.03999859094619751, 0.006118018180131912, 0.03502439334988594, 0.006715311668813229, 0.04550514370203018, 0.08470675349235535], [0.09087251871824265, 0.07790589332580566, 0.008259941823780537, 0.050263792276382446, 0.0015010599745437503, 0.0023647723719477654, 0.0071073430590331554, 0.0640711635351181, 0.09053955972194672], [0.4310072064399719, 0.017707297578454018, 0.0019878328312188387, 0.007371167652308941, 0.0017849261639639735, 0.0016633382765576243, 0.0014728197129443288, 0.08371250331401825, 0.11660407483577728]], [[0.5043638348579407, 0.016932670027017593, 0.008245646022260189, 0.006345541216433048, 0.0009906567865982652, 0.03009425848722458, 0.0033600369933992624, 0.12765026092529297, 0.10511456429958344], [0.35094520449638367, 0.07002949714660645, 0.12524306774139404, 0.012268456630408764, 0.001154200523160398, 0.0026767258532345295, 0.00676990021020174, 0.04833091422915459, 0.13776424527168274], [0.4991609752178192, 0.021227175369858742, 0.00974359828978777, 0.010730346664786339, 0.0035101138055324554, 0.009130558930337429, 0.0062627410516142845, 0.10980536043643951, 0.08349296450614929], [0.39485251903533936, 0.023475006222724915, 0.01934136636555195, 0.008097521960735321, 0.007284289691597223, 0.017216060310602188, 0.00793531071394682, 0.10830052942037582, 0.10288619995117188], [0.427371084690094, 0.03612156957387924, 0.04242260754108429, 0.010294396430253983, 0.0015864993911236525, 0.003012707456946373, 0.0020101952832192183, 0.133174329996109, 0.1150854080915451], [0.47293442487716675, 0.03314460813999176, 0.11235389858484268, 0.006988054141402245, 0.0012328291777521372, 0.00203191046603024, 0.001444853376597166, 0.057328660041093826, 0.0915064886212349], [0.5206713676452637, 0.010389503091573715, 0.00975318904966116, 0.007274043280631304, 0.0034937274176627398, 0.008816676214337349, 0.0031152693554759026, 0.13774576783180237, 0.08495666086673737], [0.21432632207870483, 0.02852623723447323, 0.04401789605617523, 0.012210087850689888, 0.021547358483076096, 0.033439669758081436, 0.0158374086022377, 0.11682895570993423, 0.0819961205124855]], [[0.040177635848522186, 0.011777853593230247, 0.00882011465728283, 0.00946364738047123, 0.0060194083489477634, 0.010014758445322514, 0.004903868306428194, 0.018616097047924995, 0.007628618273884058], [0.01629234105348587, 0.003257130505517125, 0.0015530172968283296, 0.0035128684248775244, 0.0011220216983929276, 0.0021341063547879457, 0.00177157879807055, 0.007710831239819527, 0.01232178881764412], [0.013855875469744205, 0.0011795697500929236, 0.00026888184947893023, 0.0020687340293079615, 0.0010019063483923674, 0.00087642582366243, 0.0027233404107391834, 0.011062778532505035, 0.01919359713792801], [0.054893068969249725, 0.0035071270540356636, 0.0021123187616467476, 0.0021527493372559547, 0.004635155200958252, 0.0074526164680719376, 0.006016239989548922, 0.021458428353071213, 0.02080330066382885], [0.1645633727312088, 0.008548017591238022, 0.006314827129244804, 0.0009620448108762503, 0.007869841530919075, 0.016559472307562828, 0.005200117826461792, 0.028820451349020004, 0.014559376053512096], [0.0799129530787468, 0.003807197557762265, 0.0013913738075643778, 0.000612870731856674, 0.0028853504918515682, 0.004616248421370983, 0.0018951261881738901, 0.01443276647478342, 0.01165806595236063], [0.39095842838287354, 0.009962277486920357, 0.005361276213079691, 0.0020259995944797993, 0.004664258565753698, 0.007697983644902706, 0.005258324556052685, 0.060813479125499725, 0.019274108111858368], [0.7488322257995605, 0.019327891990542412, 0.007191813085228205, 0.004411950241774321, 0.0054576643742620945, 0.010101336985826492, 0.0029121648985892534, 0.03804980590939522, 0.015733148902654648]], [[0.03382587060332298, 0.005434365943074226, 0.007368527818471193, 0.023056980222463608, 0.07135003805160522, 0.055074676871299744, 0.028218988329172134, 0.024087920784950256, 0.024329189211130142], [0.038030121475458145, 0.0018306365236639977, 0.013132622465491295, 0.00721894484013319, 0.030249886214733124, 0.030445067211985588, 0.012572926469147205, 0.00420461967587471, 0.011860285885632038], [0.005298695061355829, 0.0002978661796078086, 0.0008504229481332004, 0.001166683272458613, 0.005232213530689478, 0.006284206174314022, 0.010548950172960758, 0.0008126021130010486, 0.0016021537594497204], [0.019848834723234177, 0.002248481148853898, 0.0037914998829364777, 0.009388803504407406, 0.0028502782806754112, 0.02107577584683895, 0.004424565471708775, 0.0009037400595843792, 0.015565553680062294], [0.04542720690369606, 0.0028814810793846846, 0.00680811470374465, 0.0019958368502557278, 0.00218284223228693, 0.001577401184476912, 0.01439460925757885, 0.0017413819441571832, 0.016353832557797432], [0.18546532094478607, 0.002832588739693165, 0.0023552849888801575, 0.0015924728941172361, 0.0019927071407437325, 0.007191985845565796, 0.0030983237084001303, 0.0014784990344196558, 0.025159573182463646], [0.05343467369675636, 0.0038337851874530315, 0.008542964234948158, 0.0019821568857878447, 0.017770718783140182, 0.01338198035955429, 0.00743396021425724, 0.006312246900051832, 0.0167104322463274], [0.6858828663825989, 0.005098638124763966, 0.0004517739580478519, 0.0009559339960105717, 0.00030007469467818737, 0.0008140559657476842, 0.00018304097466170788, 0.03445791080594063, 0.009159702807664871]], [[0.42324426770210266, 0.011288616806268692, 0.0005467518931254745, 0.012041036039590836, 0.0031406290363520384, 0.0019263856811448932, 0.0028645633719861507, 0.0030061996076256037, 0.0512206144630909], [0.708649218082428, 0.01720842905342579, 0.003170452546328306, 0.02616560459136963, 0.0013683292781934142, 0.0005194649565964937, 0.001235231407918036, 0.005676588974893093, 0.08711107075214386], [0.506205677986145, 0.012991094961762428, 0.0009140609763562679, 0.017971117049455643, 0.021719137206673622, 0.0009883606107905507, 0.02845015563070774, 0.002093513961881399, 0.07095304131507874], [0.40194886922836304, 0.013738472014665604, 0.002673707203939557, 0.009845610707998276, 0.016884448006749153, 0.006612048018723726, 0.018642190843820572, 0.0026986070442944765, 0.053096529096364975], [0.5849642753601074, 0.003050753381103277, 0.0007497180486097932, 0.0035835898015648127, 0.002282927744090557, 0.005114688538014889, 0.0020319900941103697, 0.003994002938270569, 0.04248917102813721], [0.5436418056488037, 0.00809877086430788, 0.004244583658874035, 0.0030467489268630743, 0.0022126876283437014, 0.0009749404853209853, 0.005800488404929638, 0.006387328263372183, 0.06143166869878769], [0.4284780025482178, 0.009500157088041306, 0.0005963937728665769, 0.05988456681370735, 0.0026090119499713182, 0.0007354257395491004, 0.005806018132716417, 0.014910107478499413, 0.04579974338412285], [0.7174838781356812, 0.0321839265525341, 0.002324790693819523, 0.009250638075172901, 0.004423764534294605, 0.0015458747511729598, 0.0035497453063726425, 0.016795845702290535, 0.035515401512384415]]], [[[0.5108107328414917, 0.007227804511785507, 0.002299201674759388, 0.03300045058131218, 0.0021519185975193977, 0.021485470235347748, 0.004803324583917856, 0.0941925197839737, 0.07161345332860947], [0.1152479350566864, 0.024364836513996124, 0.015423289500176907, 0.049664273858070374, 0.0035009263083338737, 0.033191319555044174, 0.023714696988463402, 0.10429858416318893, 0.1172340139746666], [0.09932304918766022, 0.010893166065216064, 0.011732902377843857, 0.014895597472786903, 0.00198561092838645, 0.012738666497170925, 0.004271339159458876, 0.03948477655649185, 0.05469103530049324], [0.20694038271903992, 0.004846381489187479, 0.031077606603503227, 0.01639833115041256, 0.006237424910068512, 0.022460181266069412, 0.007951758801937103, 0.028792904689908028, 0.033693451434373856], [0.41953518986701965, 0.014850947074592113, 0.05826641619205475, 0.01622067019343376, 0.0008975358214229345, 0.012132195755839348, 0.002710985252633691, 0.0375923328101635, 0.02597341313958168], [0.06252007931470871, 0.007303342223167419, 0.14199785888195038, 0.012512799352407455, 0.0017748326063156128, 0.01714741438627243, 0.0023939183447510004, 0.011096566915512085, 0.03954024612903595], [0.08404769003391266, 0.013540185987949371, 0.01109942514449358, 0.006828024052083492, 0.0010163389379158616, 0.005699891597032547, 0.002567519899457693, 0.029865993186831474, 0.11711191385984421], [0.7906316518783569, 0.009794555604457855, 0.006181848701089621, 0.006262470968067646, 0.0012316128704696894, 0.005284451879560947, 0.0013676556991413236, 0.0385441780090332, 0.0322149358689785]], [[0.11400028318166733, 0.05146404728293419, 0.033425137400627136, 0.13680297136306763, 0.021484075114130974, 0.015804370865225792, 0.008894810453057289, 0.20390522480010986, 0.09093347936868668], [0.04377024248242378, 0.08784858137369156, 0.24843871593475342, 0.08310889452695847, 0.01720166765153408, 0.07554163038730621, 0.01523678470402956, 0.013416796922683716, 0.03536954149603844], [0.06728500872850418, 0.029726272448897362, 0.031129619106650352, 0.01139065157622099, 0.006314235273748636, 0.023750007152557373, 0.008108539506793022, 0.11866075545549393, 0.19700491428375244], [0.029100202023983, 0.025020482018589973, 0.029811451211571693, 0.023501498624682426, 0.00899732019752264, 0.028097914531826973, 0.022307489067316055, 0.12569154798984528, 0.10320097208023071], [0.030792584642767906, 0.040409255772829056, 0.03531654179096222, 0.021777180954813957, 0.005455194041132927, 0.013928764499723911, 0.008388255722820759, 0.3305415213108063, 0.059313658624887466], [0.02783389389514923, 0.02994486689567566, 0.036308784037828445, 0.0445474311709404, 0.008001427166163921, 0.01849203184247017, 0.013227750547230244, 0.28607210516929626, 0.04233448579907417], [0.06782539933919907, 0.02991335093975067, 0.034766748547554016, 0.03465987741947174, 0.00479066651314497, 0.02222803793847561, 0.005951298866420984, 0.11263708770275116, 0.125095933675766], [0.10290864109992981, 0.015531357377767563, 0.010912599973380566, 0.008136613294482231, 0.001369072706438601, 0.002825130708515644, 0.0014492975315079093, 0.2821357548236847, 0.21065914630889893]], [[0.13920240104198456, 0.012078697793185711, 0.006467532366514206, 0.004354296252131462, 0.002679905155673623, 0.006293513812124729, 0.0027548607904464006, 0.22717343270778656, 0.22857098281383514], [0.1956690400838852, 0.025164686143398285, 0.04622100666165352, 0.02009396255016327, 0.0035865241661667824, 0.04055054858326912, 0.0053816260769963264, 0.04801809787750244, 0.20525597035884857], [0.08670563995838165, 0.006010875105857849, 0.00453865947201848, 0.002072048606351018, 0.00047739542787894607, 0.00574501371011138, 0.0005594416870735586, 0.13307473063468933, 0.35764697194099426], [0.09733188897371292, 0.01038606557995081, 0.009335525333881378, 0.003838004544377327, 0.0010971539886668324, 0.029846031218767166, 0.0009417555993422866, 0.03684823587536812, 0.3127937316894531], [0.19090856611728668, 0.031167497858405113, 0.025069117546081543, 0.017045386135578156, 0.00999945867806673, 0.02456376701593399, 0.002984082093462348, 0.03783676400780678, 0.252787709236145], [0.08572062104940414, 0.019358234480023384, 0.01523648202419281, 0.019156483933329582, 0.021120797842741013, 0.05896209180355072, 0.005831508431583643, 0.021511366590857506, 0.1863667517900467], [0.2162291705608368, 0.012456967495381832, 0.0039858282543718815, 0.006637371610850096, 0.0018097938736900687, 0.010658439248800278, 0.0012663427041843534, 0.0989227294921875, 0.23571692407131195], [0.18929561972618103, 0.013770287856459618, 0.010449860244989395, 0.00614132359623909, 0.000933479459490627, 0.008514552377164364, 0.0022178860381245613, 0.2171238213777542, 0.24369879066944122]], [[0.033121827989816666, 0.0012563845375552773, 0.007179287262260914, 0.06860857456922531, 0.0006718960939906538, 0.0009903188329190016, 0.0012938766740262508, 0.014231693930923939, 0.05561680719256401], [0.03574460744857788, 0.0010141897946596146, 0.005059435963630676, 0.03129911422729492, 0.0002695823204703629, 0.0014458884252235293, 0.0009555217111483216, 0.020558476448059082, 0.058217234909534454], [0.1278427541255951, 0.0007718975539319217, 0.0008515733061358333, 0.008008218370378017, 0.0006004553870297968, 0.005536243785172701, 0.005610785912722349, 0.04997546970844269, 0.09017884731292725], [0.21982243657112122, 0.0017051800386980176, 0.0019056284800171852, 0.0019899189937859774, 0.0013626805739477277, 0.005361906718462706, 0.0017031363677233458, 0.03321647644042969, 0.14011715352535248], [0.3612912595272064, 0.0023381037171930075, 0.0008506671874783933, 0.0014513884671032429, 0.0011168806813657284, 0.0033325699623674154, 0.00043653769535012543, 0.021657373756170273, 0.11613117903470993], [0.5138987898826599, 0.0022618251387029886, 0.0007979305228218436, 0.0020120753906667233, 0.0005921304691582918, 0.004058465827256441, 0.00022889605315867811, 0.017564691603183746, 0.12219111621379852], [0.4063866138458252, 0.001210736227221787, 0.0009560450562275946, 0.002112641232088208, 0.000904428365174681, 0.004357117228209972, 0.0011757173342630267, 0.012563016265630722, 0.06393489241600037], [0.7013733386993408, 0.0073241801001131535, 0.0022500320337712765, 0.009310482069849968, 0.00120065629016608, 0.0036680949851870537, 0.0010160686215385795, 0.006998822558671236, 0.06656818836927414]], [[0.011722260154783726, 0.0018850011983886361, 0.0012728053843602538, 0.012121759355068207, 0.0004469156265258789, 0.006978520192205906, 0.0011283374624326825, 0.007707122713327408, 0.0610102079808712], [0.0442114919424057, 0.004757745657116175, 0.009087950922548771, 0.039119478315114975, 0.003207913599908352, 0.012476588599383831, 0.006762477569282055, 0.019034622237086296, 0.12511411309242249], [0.004011786077171564, 0.0001014742738334462, 5.817809869768098e-05, 0.0003955201245844364, 0.00034679105738177896, 1.3518204468709882e-05, 0.00017554446822032332, 0.0015848720213398337, 0.005109278950840235], [0.043656863272190094, 0.0019583157263696194, 0.0007192094344645739, 0.0038125738501548767, 3.6382869438966736e-05, 0.004563064314424992, 0.0001681829453445971, 0.011236460879445076, 0.07154230028390884], [0.1314173936843872, 0.012020898051559925, 0.007338241674005985, 0.004280397202819586, 0.0006550037651322782, 0.0005949820042587817, 4.262571019353345e-05, 0.026250002905726433, 0.06329888105392456], [0.03955933824181557, 0.018778996542096138, 0.027329443022608757, 0.07223028689622879, 0.0019802565220743418, 0.001056011882610619, 0.00018029168131761253, 0.020361371338367462, 0.21713539958000183], [0.038896504789590836, 0.002310445299372077, 0.0018187969690188766, 0.0009306020801886916, 0.00023278601292986423, 0.0005830102600157261, 0.0005678428569808602, 0.012368783354759216, 0.013434451073408127], [0.07556984573602676, 0.02032707817852497, 0.012514768168330193, 0.006844404619187117, 0.0007995591149665415, 0.002468045800924301, 0.003937508910894394, 0.03575125336647034, 0.3136250078678131]], [[0.40637195110321045, 0.005644735414534807, 0.011581013910472393, 0.007326821330934763, 0.005657300353050232, 0.04194243252277374, 0.007262458559125662, 0.04291181266307831, 0.10112234205007553], [0.03554505482316017, 0.1258942037820816, 0.036509331315755844, 0.05995108187198639, 0.02699664793908596, 0.0375521183013916, 0.018652284517884254, 0.005674660671502352, 0.07097121328115463], [0.6659138798713684, 0.018083393573760986, 0.011816686950623989, 0.00923013687133789, 0.0016744232270866632, 0.017004702240228653, 0.00671832449734211, 0.05825703591108322, 0.018215656280517578], [0.40163323283195496, 0.014721721410751343, 0.013423760421574116, 0.016551053151488304, 0.026905778795480728, 0.06019182503223419, 0.01458576787263155, 0.11016889661550522, 0.02927340939640999], [0.8464874029159546, 0.007125409785658121, 0.011116609908640385, 0.006413394585251808, 0.0010565321426838636, 0.010183493606746197, 0.007261425722390413, 0.06178567558526993, 0.005885311868041754], [0.5370393991470337, 0.024095334112644196, 0.019729357212781906, 0.04203464463353157, 0.0067970119416713715, 0.05341538041830063, 0.020838703960180283, 0.09264549612998962, 0.02320600487291813], [0.4284515380859375, 0.026992104947566986, 0.009285747073590755, 0.01861882582306862, 0.007447022013366222, 0.04384639114141464, 0.006369845476001501, 0.06425353139638901, 0.0615478977560997], [0.4351096749305725, 0.020514443516731262, 0.008449352346360683, 0.009301923215389252, 0.001221774611622095, 0.005948420614004135, 0.0037798364646732807, 0.2338775247335434, 0.08136442303657532]], [[0.10086333006620407, 0.04043850302696228, 0.06336106359958649, 0.06956925988197327, 0.014053556136786938, 0.04208793118596077, 0.010049941949546337, 0.023839600384235382, 0.043660201132297516], [0.12707668542861938, 0.0523548349738121, 0.26883453130722046, 0.040691524744033813, 0.010961726307868958, 0.1296394318342209, 0.01433053333312273, 0.014453519135713577, 0.034860480576753616], [0.24688754975795746, 0.030769459903240204, 0.047778595238924026, 0.010946054011583328, 0.0031167911365628242, 0.029011135920882225, 0.0037711665499955416, 0.01944924332201481, 0.11189188808202744], [0.0705142617225647, 0.022703805938363075, 0.058183036744594574, 0.009261778555810452, 0.004325672518461943, 0.012400595471262932, 0.0015944127226248384, 0.007076756563037634, 0.026688102632761], [0.07891872525215149, 0.014068239368498325, 0.0841895118355751, 0.007075081579387188, 0.0031340019777417183, 0.009126100689172745, 0.003642712952569127, 0.021879103034734726, 0.05461389571428299], [0.044050343334674835, 0.015222175046801567, 0.19471687078475952, 0.007659707218408585, 0.0031954178120940924, 0.015198113396763802, 0.0015721445670351386, 0.004193637054413557, 0.02555701695382595], [0.0655519887804985, 0.026019321754574776, 0.1586287021636963, 0.03197231888771057, 0.009207548573613167, 0.034353431314229965, 0.004972562193870544, 0.005005646031349897, 0.027446508407592773], [0.20587339997291565, 0.010222149081528187, 0.0022830842062830925, 0.002935391617938876, 0.000358555291313678, 0.0013521627988666296, 0.0005329405539669096, 0.18011945486068726, 0.24020645022392273]], [[0.011238610371947289, 0.00045380022493191063, 0.004181951750069857, 0.0003760939580388367, 0.00017070409376174212, 0.0002088031469611451, 0.00023954050266183913, 0.010314065031707287, 1.3955426766187884e-05], [0.031784750521183014, 0.0015507922507822514, 0.013885190710425377, 0.0018220108468085527, 0.0005439352826215327, 0.0008825199911370873, 0.00027660062187351286, 0.0069628870114684105, 4.4935241021448746e-05], [0.08621974289417267, 0.003574413014575839, 0.007178200408816338, 0.0013829863164573908, 0.0004100213118363172, 0.0005498532555066049, 0.0007883554790169001, 0.037121593952178955, 0.00038770571700297296], [0.022168036550283432, 0.0011089545441791415, 0.00752820260822773, 0.0009223827510140836, 0.00025024719070643187, 0.0004022939538117498, 0.0004331802192609757, 0.01542576216161251, 8.430749585386366e-05], [0.038268525153398514, 0.002309854608029127, 0.0049010575748980045, 0.0006654354510828853, 0.00024545693304389715, 0.0005895740468986332, 0.0006904510082677007, 0.03247307613492012, 0.0001754794648149982], [0.04470892250537872, 0.00579972704872489, 0.014608947560191154, 0.00284426542930305, 0.0014223706675693393, 0.0019662072882056236, 0.0019196448847651482, 0.03656250983476639, 0.0006488657672889531], [0.0324103944003582, 0.002985625062137842, 0.019528495147824287, 0.0015649838605895638, 0.0010861161863431334, 0.004385427106171846, 0.0005067905294708908, 0.012419597245752811, 0.00014126817404758185], [0.14372624456882477, 0.018153995275497437, 0.008819352835416794, 0.0026029872242361307, 0.005939857102930546, 0.0091972341760993, 0.0020077270455658436, 0.06999135762453079, 0.058347154408693314]], [[0.027944881469011307, 0.0242831539362669, 0.012918280437588692, 0.16402386128902435, 0.03439036011695862, 0.015647124499082565, 0.010424001142382622, 0.030613740906119347, 0.025048082694411278], [0.03677641227841377, 0.023587673902511597, 0.14763346314430237, 0.042520828545093536, 0.008023045025765896, 0.006664303131401539, 0.006648252718150616, 0.01626436971127987, 0.03899155184626579], [0.053710758686065674, 0.01573863998055458, 0.000860692816786468, 0.08311107754707336, 0.23616304993629456, 0.029673194512724876, 0.04085135459899902, 0.019149426370859146, 0.052326127886772156], [0.07678169757127762, 0.03138824552297592, 0.0069891014136374, 0.024354055523872375, 0.030870748683810234, 0.020590312778949738, 0.011850254610180855, 0.03463532775640488, 0.08088368922472], [0.04260123893618584, 0.013429353944957256, 0.08451063185930252, 0.005342602264136076, 0.006419896148145199, 0.00040298490785062313, 0.011343014426529408, 0.009916880168020725, 0.04078890383243561], [0.09958776086568832, 0.024511493742465973, 0.12924376130104065, 0.020699242129921913, 0.004476725589483976, 0.002866498427465558, 0.012254253029823303, 0.022414108738303185, 0.08055975288152695], [0.04026741534471512, 0.060288798063993454, 0.033687297254800797, 0.022989923134446144, 0.02891065925359726, 0.03710899502038956, 0.014900666661560535, 0.018785668537020683, 0.04191936179995537], [0.046111952513456345, 0.045371007174253464, 0.025911172851920128, 0.06766625493764877, 0.04622233286499977, 0.04765365645289421, 0.07085514813661575, 0.04710721969604492, 0.03205384686589241]], [[0.3952358067035675, 0.0018169309478253126, 0.0006401372374966741, 0.0022998496424406767, 0.00395448412746191, 0.0013010089751332998, 0.006638898979872465, 0.010611708275973797, 0.17060349881649017], [0.32721415162086487, 0.09639663249254227, 0.0016054569277912378, 0.0004703406593762338, 0.0002142055018339306, 0.00013674484216608107, 0.0007460075430572033, 0.013670305721461773, 0.14843612909317017], [0.30754250288009644, 0.0009476087288931012, 3.085290927629103e-06, 0.001100786030292511, 0.000625999120529741, 5.30617508047726e-05, 0.0006682449020445347, 0.004559790715575218, 0.23483937978744507], [0.22668159008026123, 0.0026423290837556124, 2.5871360776363872e-05, 0.0003170525305904448, 0.0018173913704231381, 0.00018161829211749136, 0.0013966673286631703, 0.010686048306524754, 0.2911210060119629], [0.22935882210731506, 0.001239060889929533, 0.0002068211615551263, 0.0007138069486245513, 0.00012699555372819304, 0.0002493307401891798, 3.352266867295839e-05, 0.004078928846865892, 0.21864815056324005], [0.4362337291240692, 0.0049179838970303535, 0.003379747038707137, 0.000696059491019696, 5.3383315389510244e-05, 0.0001347169018117711, 4.089279173058458e-05, 0.017139635980129242, 0.27210748195648193], [0.33256620168685913, 0.0036038111429661512, 0.0003811477217823267, 0.008409728296101093, 0.00041850630077533424, 0.00026936628273688257, 0.00011917229858227074, 0.010657011531293392, 0.31702518463134766], [0.327828586101532, 0.039426300674676895, 0.018262511119246483, 0.011622877791523933, 0.011556536890566349, 0.03138080611824989, 0.002868588315322995, 0.0779644176363945, 0.22032298147678375]], [[0.20987045764923096, 0.005762506276369095, 0.0012960791354998946, 0.009004318155348301, 0.001947010401636362, 0.0025654539931565523, 0.0050395093858242035, 0.21396028995513916, 0.17319928109645844], [0.29504281282424927, 0.011301913298666477, 0.007198079489171505, 0.010319914668798447, 0.005185090471059084, 0.004785916768014431, 0.002487111371010542, 0.11605797708034515, 0.18971474468708038], [0.3753051161766052, 0.017154471948742867, 0.0019981185905635357, 0.036559104919433594, 0.005707910284399986, 0.003839462297037244, 0.003966993652284145, 0.15112626552581787, 0.11763722449541092], [0.26478636264801025, 0.021863367408514023, 0.002591127762570977, 0.013034133240580559, 0.004433171823620796, 0.0015097843715921044, 0.0042487927712500095, 0.30276185274124146, 0.15307000279426575], [0.3923172056674957, 0.0379229411482811, 0.004498607944697142, 0.01900322549045086, 0.009744742885231972, 0.0049546645022928715, 0.006934881675988436, 0.18183450400829315, 0.07574349641799927], [0.32964029908180237, 0.02343744784593582, 0.004301612265408039, 0.014635363593697548, 0.0034210134763270617, 0.005026042461395264, 0.007740766741335392, 0.174477681517601, 0.1553230732679367], [0.3046429753303528, 0.02137015387415886, 0.005005453247576952, 0.015783295035362244, 0.009150386787950993, 0.003989753313362598, 0.0032189199700951576, 0.13954909145832062, 0.14953553676605225], [0.2823575437068939, 0.016558093950152397, 0.007606648374348879, 0.01545813400298357, 0.005638604983687401, 0.0032766794320195913, 0.0029583959840238094, 0.09284613281488419, 0.22527742385864258]], [[0.31985634565353394, 0.03799072653055191, 0.0038136872462928295, 0.043138500303030014, 0.0222634207457304, 0.05659031867980957, 0.021846959367394447, 0.16525664925575256, 0.09792320430278778], [0.23613311350345612, 0.22397688031196594, 0.05252093821763992, 0.023578016087412834, 0.0063842060044407845, 0.007359006442129612, 0.006432905327528715, 0.07066486775875092, 0.07237928360700607], [0.4162965714931488, 0.023703033104538918, 0.005078424233943224, 0.00811045989394188, 0.00425873976200819, 0.021713633090257645, 0.004882904700934887, 0.09108726680278778, 0.16075964272022247], [0.27463674545288086, 0.017799386754631996, 0.03629354387521744, 0.00939211342483759, 0.00317370449192822, 0.01879732683300972, 0.005804486107081175, 0.11809951812028885, 0.19079633057117462], [0.3024560511112213, 0.032547786831855774, 0.040002916008234024, 0.012277884408831596, 0.0030880861449986696, 0.01899184100329876, 0.004788948222994804, 0.15415412187576294, 0.14186060428619385], [0.30245688557624817, 0.021099543198943138, 0.030815938487648964, 0.003993559628725052, 0.0021287144627422094, 0.026269113644957542, 0.0024147252552211285, 0.1673903614282608, 0.17521771788597107], [0.2843210697174072, 0.03152967616915703, 0.003723833477124572, 0.06585222482681274, 0.003251809859648347, 0.011879992671310902, 0.003824991174042225, 0.06839574873447418, 0.17949014902114868], [0.10668598115444183, 0.02907514199614525, 0.021513856947422028, 0.012126919813454151, 0.03529800474643707, 0.049412794411182404, 0.01754113845527172, 0.17067867517471313, 0.11266523599624634]]], [[[0.05893915519118309, 0.004959069192409515, 0.09357424080371857, 0.00190543953794986, 0.009960702620446682, 0.04426253214478493, 0.015621045604348183, 0.00938519649207592, 0.19872264564037323], [0.01992052234709263, 0.006161093711853027, 0.007589926477521658, 0.00046238701906986535, 0.005520354025065899, 0.024907352402806282, 0.012775149196386337, 0.005661738570779562, 0.32653382420539856], [0.036059796810150146, 0.010527840815484524, 0.004981519654393196, 0.0029798285104334354, 0.0007715271203778684, 0.006110026966780424, 0.0034477165900170803, 0.010959194973111153, 0.20585474371910095], [0.016502052545547485, 0.003211716189980507, 0.004133071284741163, 0.0006781511474400759, 0.002640243386849761, 0.01132307667285204, 0.003016370115801692, 0.008973664604127407, 0.13929511606693268], [0.028918199241161346, 0.004348126705735922, 0.004228840582072735, 0.002513051498681307, 0.0009302482358179986, 0.0009891161462292075, 0.0013943141093477607, 0.0123847471550107, 0.05579974129796028], [0.03434761241078377, 0.004570739809423685, 0.009555219672620296, 0.0029089529998600483, 0.0013298295671120286, 0.002127466257661581, 0.0007698537083342671, 0.03190582990646362, 0.03863202780485153], [0.03200674429535866, 0.009288210421800613, 0.029990360140800476, 0.000543253670912236, 0.007822990417480469, 0.017453720793128014, 0.0022451900877058506, 0.011948894709348679, 0.023673368617892265], [0.00889130961149931, 0.001662836642935872, 0.0015882020816206932, 0.0004541071830317378, 0.0006766048027202487, 0.0011294177966192365, 0.000691256660502404, 0.007943513803184032, 0.48110243678092957]], [[0.14523206651210785, 0.004370057489722967, 0.00713363429531455, 0.000566799018997699, 0.0002683750935830176, 0.002279791748151183, 0.0010023448849096894, 0.01880032569169998, 0.33974114060401917], [0.10187390446662903, 0.008110197260975838, 0.4530135989189148, 0.0032188883051276207, 0.0011650349479168653, 0.01108372863382101, 0.0020951619371771812, 0.008180157281458378, 0.1476217806339264], [0.07199853658676147, 0.005378678906708956, 0.001824289676733315, 0.0007286925683729351, 5.777660044259392e-05, 0.0007411994156427681, 0.0003564495127648115, 0.00934547744691372, 0.3786395192146301], [0.04819687083363533, 0.007004470564424992, 0.002005811780691147, 0.0011418426875025034, 0.00014645527699030936, 0.0006488825310952961, 0.00036462140269577503, 0.01453134510666132, 0.38899460434913635], [0.0028171250596642494, 0.0002581830194685608, 0.010321768000721931, 0.0002449669409543276, 7.836687473172788e-06, 1.269724452868104e-05, 2.6008741770056076e-05, 0.0007407551165670156, 0.10632429271936417], [0.022478634491562843, 0.0018809805624186993, 0.03874971345067024, 0.0013490472920238972, 0.00017873753677122295, 0.00021559018932748586, 0.0003060683375224471, 0.006406242027878761, 0.3428303301334381], [0.1784118115901947, 0.013392035849392414, 0.031874459236860275, 0.001495323027484119, 0.00045151100493967533, 0.007161801680922508, 0.0009671953157521784, 0.015159158036112785, 0.3048873245716095], [0.10374398529529572, 0.016477977856993675, 0.02411801367998123, 0.005720147863030434, 0.0007447206880897284, 0.00245878123678267, 0.0017309562535956502, 0.09839294850826263, 0.32528623938560486]], [[0.008759306743741035, 0.0017021362436935306, 0.0030789608135819435, 0.0022681960836052895, 0.0004023327201139182, 0.019204553216695786, 0.009455198422074318, 0.03205280378460884, 0.39825835824012756], [0.013387811370193958, 0.004353857599198818, 0.009090623818337917, 0.0037649269215762615, 0.0017662190366536379, 0.01526618655771017, 0.012045747600495815, 0.0251274686306715, 0.3874477446079254], [0.016170823946595192, 0.00860834401100874, 0.0013970256550237536, 0.030484246090054512, 0.002820461755618453, 0.00030802551191300154, 0.004427966196089983, 0.013040955178439617, 0.1426769196987152], [0.013409675098955631, 0.0016358235152438283, 0.000607586232945323, 0.0022632814943790436, 0.00014700574683956802, 0.002604493172839284, 0.0004976140917278826, 0.007984621450304985, 0.13281553983688354], [0.02218128740787506, 0.021137135103344917, 0.003321901196613908, 0.015765530988574028, 0.0027436725795269012, 0.0002585668698884547, 0.005819383542984724, 0.012072925455868244, 0.2434394657611847], [0.04302673786878586, 0.01941583678126335, 0.006394318770617247, 0.009697443805634975, 0.0006676638731732965, 0.00038252034573815763, 0.0006676221964880824, 0.008733977563679218, 0.15230520069599152], [0.03028547763824463, 0.004970422480255365, 0.0024086711928248405, 0.0006666664266958833, 0.00012095970305381343, 0.0019201028626412153, 0.00012939599400851876, 0.004376744385808706, 0.04789287596940994], [0.021704891696572304, 0.006437145639210939, 0.024342045187950134, 0.00929927546530962, 0.010311801917850971, 0.020022470504045486, 0.018554266542196274, 0.03209354728460312, 0.3309526741504669]], [[0.1711912453174591, 0.010623871348798275, 0.011231782846152782, 0.003477185033261776, 0.0017342083156108856, 0.005840560887008905, 0.009801999665796757, 0.06413424015045166, 0.276796817779541], [0.26481521129608154, 0.009488977491855621, 0.015699239447712898, 0.0005160804721526802, 0.00034936791053041816, 0.0016722793225198984, 0.0015524107730016112, 0.0413542240858078, 0.26811230182647705], [0.12795551121234894, 0.013441663235425949, 0.004942802712321281, 0.002160585718229413, 0.0010796907590702176, 0.0038911595474928617, 0.0012969158124178648, 0.017203569412231445, 0.2819002866744995], [0.13007551431655884, 0.015273413620889187, 0.012284835800528526, 0.0038090432062745094, 0.0016354549443349242, 0.005744705442339182, 0.0016458057798445225, 0.03220919519662857, 0.24617919325828552], [0.15170516073703766, 0.01491902582347393, 0.02569616213440895, 0.025702238082885742, 0.006355874240398407, 0.025803154334425926, 0.004133834969252348, 0.02999289706349373, 0.19618767499923706], [0.15583063662052155, 0.01573105715215206, 0.022779693827033043, 0.014888818375766277, 0.003644403303042054, 0.017298415303230286, 0.004269361961632967, 0.02750309184193611, 0.16951683163642883], [0.18699736893177032, 0.002329472219571471, 0.021755244582891464, 0.01376196090131998, 0.000809724791906774, 0.010529701597988605, 0.0045575243420898914, 0.06504624336957932, 0.21019411087036133], [0.06448955088853836, 0.013963649980723858, 0.02917107380926609, 0.018412627279758453, 0.019564948976039886, 0.017242856323719025, 0.01677178405225277, 0.05014842748641968, 0.26806533336639404]], [[0.10238467901945114, 0.009599142707884312, 0.051687631756067276, 0.021734952926635742, 0.030580295249819756, 0.13926364481449127, 0.019718030467629433, 0.013973359018564224, 0.13918884098529816], [0.01155109703540802, 0.3665461838245392, 0.4071566164493561, 0.0012388606555759907, 0.0016497502801939845, 0.00016208062879741192, 0.0007624436402693391, 0.02213725820183754, 0.024681735783815384], [0.0988735631108284, 0.00810533668845892, 0.003693265374749899, 0.02403714507818222, 0.01930871233344078, 0.09083115309476852, 0.045186009258031845, 0.018657997250556946, 0.1284719854593277], [0.04811043664813042, 0.02305556833744049, 0.015595187433063984, 0.024432215839624405, 0.029340848326683044, 0.06254052370786667, 0.015492081642150879, 0.008921829983592033, 0.141980841755867], [0.01191096380352974, 0.024347836151719093, 0.025750786066055298, 0.004004873801022768, 0.0018154301214963198, 0.00015546784561593086, 0.0013384380144998431, 0.008701673708856106, 0.11745009571313858], [0.013543233275413513, 0.04978056252002716, 0.020450223237276077, 0.0015240791253745556, 0.0006331190816126764, 0.00042383544496260583, 0.0011867423309013247, 0.0089890006929636, 0.06815314292907715], [0.15897759795188904, 0.03445937857031822, 0.04916132614016533, 0.020893627777695656, 0.04645692557096481, 0.11105263978242874, 0.049921754747629166, 0.021978070959448814, 0.14342592656612396], [0.12157228589057922, 0.027919812127947807, 0.03722265735268593, 0.029451880604028702, 0.015367691405117512, 0.016029197722673416, 0.01955902948975563, 0.03163148835301399, 0.20774368941783905]], [[0.1724925935268402, 0.013374142348766327, 0.003666842123493552, 0.02063440904021263, 0.03976757079362869, 0.0736643373966217, 0.0071897911839187145, 0.11219438165426254, 0.2592865824699402], [0.11329855769872665, 0.03443470597267151, 0.09738736599683762, 0.008637523278594017, 0.0037678724620491266, 0.015234452672302723, 0.004287968389689922, 0.1155705526471138, 0.29987820982933044], [0.13941368460655212, 0.02250714972615242, 0.017218532040715218, 0.011797267943620682, 0.006751397158950567, 0.035133786499500275, 0.008534512482583523, 0.08598820120096207, 0.2856442332267761], [0.08463839441537857, 0.01270969957113266, 0.023268088698387146, 0.004411982372403145, 0.001581456046551466, 0.006553984247148037, 0.004063136409968138, 0.05127799138426781, 0.3887098729610443], [0.06317650526762009, 0.013546490110456944, 0.10369697213172913, 0.030292870476841927, 0.00045389420120045543, 0.025506222620606422, 0.0028651126194745302, 0.03794132545590401, 0.33888500928878784], [0.07858254015445709, 0.011650007218122482, 0.21158108115196228, 0.012160727754235268, 0.00045634384150616825, 0.016058901324868202, 0.0010243725264444947, 0.038150858134031296, 0.3007851243019104], [0.10067831724882126, 0.020996958017349243, 0.034526724368333817, 0.03736231103539467, 0.03129003942012787, 0.11438058316707611, 0.014055054634809494, 0.08983927965164185, 0.23418547213077545], [0.13072115182876587, 0.02590269036591053, 0.04422006383538246, 0.017026377841830254, 0.011821772903203964, 0.0222614798694849, 0.012583104893565178, 0.04756303131580353, 0.2808963358402252]], [[0.006707136984914541, 0.0007751249358989298, 0.007154405117034912, 0.0008747496176511049, 0.008713368326425552, 0.017659800127148628, 0.004443692974746227, 0.0018326325807720423, 0.025456467643380165], [0.024382352828979492, 0.003080841153860092, 0.040075045078992844, 0.0006564279901795089, 0.00021732829918619245, 0.0028629901353269815, 0.0002489363250788301, 0.0104325320571661, 0.12660911679267883], [0.012275690212845802, 0.003109223674982786, 0.0065096900798380375, 0.0005955808446742594, 0.001726871239952743, 0.009039400145411491, 0.0035349258687347174, 0.0028183315880596638, 0.06100746616721153], [0.0070958007127046585, 0.0034747279714792967, 0.004522380884736776, 0.000441201264038682, 0.00252297380939126, 0.006314962636679411, 0.0031839117873460054, 0.0033157130237668753, 0.11163052171468735], [0.005360518582165241, 0.005920092575252056, 0.014196990989148617, 0.0020526512525975704, 0.0008544014417566359, 0.005424348171800375, 0.0019387701759114861, 0.0030925904866307974, 0.03941353037953377], [0.01063152588903904, 0.016026420518755913, 0.018201762810349464, 0.003788732923567295, 0.0016653469065204263, 0.013417461887001991, 0.006933057680726051, 0.009814702905714512, 0.0650595873594284], [0.007105095777660608, 0.002463369630277157, 0.0072436402551829815, 0.0020677070133388042, 0.0015495030675083399, 0.003229381749406457, 0.0027688222471624613, 0.0027251846622675657, 0.03658017888665199], [0.05321567878127098, 0.030045511201024055, 0.03301960974931717, 0.02075480856001377, 0.03829619660973549, 0.047166064381599426, 0.03833368420600891, 0.016778869554400444, 0.1183844655752182]], [[0.031144404783844948, 0.0032304986380040646, 0.006225212477147579, 0.014562491327524185, 0.015543151646852493, 0.004616913851350546, 0.0017246290808543563, 0.07387255877256393, 0.1507762372493744], [0.1371629387140274, 0.013908891938626766, 0.03474659100174904, 0.013529245741665363, 0.06299293786287308, 0.01617298647761345, 0.0051455372013151646, 0.027681633830070496, 0.07041380554437637], [0.011123097501695156, 0.016143186017870903, 0.03923587501049042, 0.016816284507513046, 0.05433144420385361, 0.036057546734809875, 0.009735497646033764, 0.018259618431329727, 0.10486350208520889], [0.032573673874139786, 0.023952007293701172, 0.02631581947207451, 0.005479880608618259, 0.02787521481513977, 0.01638283208012581, 0.011507261544466019, 0.01969759911298752, 0.12929528951644897], [0.0434468537569046, 0.019525857642292976, 0.06137891858816147, 0.005524791311472654, 0.009263289161026478, 0.013640828430652618, 0.009624834172427654, 0.00796736590564251, 0.10646946728229523], [0.023922940716147423, 0.02784579247236252, 0.07768482714891434, 0.00692017050459981, 0.029780805110931396, 0.04136477783322334, 0.02691960334777832, 0.007027658633887768, 0.07401113212108612], [0.06322718411684036, 0.008076313883066177, 0.011662594974040985, 0.0019380158046260476, 0.016504110768437386, 0.009529545903205872, 0.0029026938136667013, 0.009493683464825153, 0.18853189051151276], [0.019857307896018028, 0.0021450708154588938, 0.005012816749513149, 0.0019166666315868497, 0.0008360852370969951, 0.002760122297331691, 0.001324470853433013, 0.008984644897282124, 0.4432066082954407]], [[0.04202964901924133, 0.00486003328114748, 0.00018054810061585158, 0.0016183494590222836, 7.086772529873997e-05, 6.904594920342788e-05, 0.00011169896606588736, 0.28318533301353455, 0.2987756133079529], [0.046645548194646835, 0.10536626726388931, 0.0009154075523838401, 0.003514043753966689, 0.002029123017564416, 0.00010816318535944447, 0.0006653069285675883, 0.25556281208992004, 0.2609725296497345], [0.06982585787773132, 0.05903950333595276, 0.004062683787196875, 0.05056963488459587, 0.002836712170392275, 0.0019816828425973654, 0.006462590768933296, 0.036660369485616684, 0.26363062858581543], [0.07513340562582016, 0.057168882340192795, 0.0011279579484835267, 0.04974115639925003, 0.008180253207683563, 0.0014728647656738758, 0.03360914811491966, 0.06232035532593727, 0.2810038924217224], [0.10604767501354218, 0.051608357578516006, 0.00986412912607193, 0.011918673291802406, 0.001169662456959486, 0.0010736732510849833, 0.009574701078236103, 0.07572280615568161, 0.22588378190994263], [0.10818764567375183, 0.05237952619791031, 0.016990026459097862, 0.02309701032936573, 0.0035215073730796576, 0.0037350791972130537, 0.0116533562541008, 0.06520050764083862, 0.26326754689216614], [0.0737457424402237, 0.03129909932613373, 0.0011655950220301747, 0.010209014639258385, 0.0011789450654760003, 0.0006923654000274837, 0.002082490362226963, 0.2401101440191269, 0.282698392868042], [0.103140689432621, 0.02037252113223076, 0.05589817836880684, 0.023949595168232918, 0.016545400023460388, 0.028015537187457085, 0.020148610696196556, 0.04926019534468651, 0.20932021737098694]], [[0.15714114904403687, 0.009798171930015087, 0.02089603990316391, 0.01564641483128071, 0.005992190912365913, 0.12401308864355087, 0.006861633621156216, 0.024027202278375626, 0.24999937415122986], [0.09845472872257233, 0.07467485219240189, 0.05771476402878761, 0.03462075814604759, 0.00692892586812377, 0.02235138788819313, 0.011726402677595615, 0.03543424606323242, 0.2828075587749481], [0.09306015819311142, 0.007648893631994724, 0.006741845048964024, 0.04537758603692055, 0.02837543934583664, 0.052839599549770355, 0.03980449587106705, 0.019246159121394157, 0.21360930800437927], [0.10565908253192902, 0.0031379745341837406, 0.003920247312635183, 0.00873290840536356, 0.018205827102065086, 0.015193847008049488, 0.0060600885190069675, 0.013183402828872204, 0.12697561085224152], [0.07040902972221375, 0.002897935453802347, 0.0054587675258517265, 0.004833593033254147, 0.0002890506584662944, 0.00026882809470407665, 0.0007286523468792439, 0.03519909083843231, 0.15436917543411255], [0.12903918325901031, 0.0063051204197108746, 0.011549129150807858, 0.00694222841411829, 0.0018741313833743334, 0.003904499113559723, 0.0017282579792663455, 0.02414611168205738, 0.19700074195861816], [0.12828588485717773, 0.04131525382399559, 0.0772983506321907, 0.11770670115947723, 0.015339246019721031, 0.10573671758174896, 0.03334542363882065, 0.05332576110959053, 0.1318526566028595], [0.06652477383613586, 0.024116864427924156, 0.029861483722925186, 0.017497330904006958, 0.009013619273900986, 0.018054788932204247, 0.015801459550857544, 0.028136834502220154, 0.3079308569431305]], [[0.13584277033805847, 0.011695018969476223, 0.007748823147267103, 0.023095708340406418, 0.008667781949043274, 0.00662047928199172, 0.002217898378148675, 0.08604885637760162, 0.10866381973028183], [0.22214257717132568, 0.397006630897522, 0.07799965888261795, 0.001591327483765781, 0.006439052522182465, 0.002981884405016899, 0.002046444686129689, 0.02057032100856304, 0.06509295105934143], [0.03297732397913933, 0.007451741956174374, 0.0017498956294730306, 0.005414881277829409, 0.0005161985754966736, 0.0001763166073942557, 0.0017734040739014745, 0.011331173591315746, 0.38425061106681824], [0.06273996084928513, 0.0025111923459917307, 0.0016772485105320811, 0.0006500279414467514, 0.0005342610529623926, 0.0004249734338372946, 0.0008769634878262877, 0.0132936155423522, 0.38306766748428345], [0.08816497772932053, 0.009677629917860031, 0.015690773725509644, 0.004526781849563122, 0.00128223467618227, 0.0014866326237097383, 0.0031792079098522663, 0.034714143723249435, 0.2948341369628906], [0.07929017394781113, 0.008097521960735321, 0.02662476897239685, 0.004608360584825277, 0.0015260765794664621, 0.002503037452697754, 0.0043432870879769325, 0.023972520604729652, 0.34708476066589355], [0.09227947145700455, 0.022185293957591057, 0.013095438480377197, 0.11232389509677887, 0.011276493780314922, 0.00845241267234087, 0.00967930257320404, 0.0183134563267231, 0.10783451050519943], [0.04053887724876404, 0.005695616826415062, 0.004130534827709198, 0.001643113442696631, 0.0006864396273158491, 0.0010371835669502616, 0.0007898491458036005, 0.024652527645230293, 0.4360586702823639]], [[0.14181214570999146, 0.002162131480872631, 0.0052556986920535564, 0.014523785561323166, 0.07398169487714767, 0.0019744380842894316, 0.007618424016982317, 0.01032099686563015, 0.22103512287139893], [0.04754903167486191, 0.055569376796483994, 0.001979036722332239, 0.0171392560005188, 0.19845329225063324, 0.0021873374935239553, 0.014013304375112057, 0.0008090201299637556, 0.13742053508758545], [0.015173112973570824, 0.0007959223003126681, 0.0003134974685963243, 0.006277746055275202, 0.07463832199573517, 0.0015087107894942164, 0.0013125193072482944, 0.0007432755082845688, 0.037144601345062256], [0.03597979247570038, 0.0019340186845511198, 0.0023743619676679373, 0.01472576055675745, 0.028376227244734764, 0.0008248861995525658, 0.0027777627110481262, 0.0034397589042782784, 0.30702465772628784], [0.014890733174979687, 0.020436201244592667, 0.0018043856834992766, 0.053086258471012115, 0.046342119574546814, 0.0017069646855816245, 0.020459666848182678, 0.0006417477852664888, 0.29479536414146423], [0.024464592337608337, 0.013698003254830837, 0.001383753726258874, 0.018582692369818687, 0.05824772268533707, 0.0020962106063961983, 0.008711977861821651, 0.002350544324144721, 0.33351701498031616], [0.09143819659948349, 0.025717345997691154, 0.006066449452191591, 0.059783030301332474, 0.06158558279275894, 0.004037764389067888, 0.023459356278181076, 0.010942014865577221, 0.13878405094146729], [0.36221015453338623, 0.0003070094098802656, 0.015256155282258987, 0.000311047479044646, 0.00012637523468583822, 0.011189128272235394, 8.444055129075423e-05, 0.5028384923934937, 0.04528357833623886]]], [[[0.2955872714519501, 0.03647439554333687, 0.03516606241464615, 0.05229403078556061, 0.04541053622961044, 0.038197215646505356, 0.01131829246878624, 0.04804878681898117, 0.2062891721725464], [0.39648935198783875, 0.07168390601873398, 0.04072282090783119, 0.06400157511234283, 0.05617072433233261, 0.006503338925540447, 0.002926240209490061, 0.02677137218415737, 0.15194599330425262], [0.022976044565439224, 0.01136298943310976, 0.022971469908952713, 0.006778225302696228, 0.006943941116333008, 0.006844544783234596, 0.004990750923752785, 0.02489999495446682, 0.43060266971588135], [0.038779858499765396, 0.028326446190476418, 0.03964635357260704, 0.01673860475420952, 0.006986437831073999, 0.005188890267163515, 0.004770874977111816, 0.0352882444858551, 0.40507155656814575], [0.030265744775533676, 0.033081598579883575, 0.016941331326961517, 0.0068838875740766525, 0.0014196623815223575, 0.0006329893949441612, 0.0014345220988616347, 0.008779450319707394, 0.434416264295578], [0.03977159038186073, 0.05664397031068802, 0.1319253295660019, 0.0070150080136954784, 0.0012772117042914033, 0.0012800352415069938, 0.0008774331072345376, 0.018531909212470055, 0.35738229751586914], [0.35176828503608704, 0.016164936125278473, 0.01636815257370472, 0.05804995074868202, 0.039208583533763885, 0.03616916388273239, 0.006622049026191235, 0.049356747418642044, 0.1859654039144516], [0.02784043364226818, 0.004453934263437986, 0.011656972579658031, 0.003910311032086611, 0.00298675405792892, 0.008510884828865528, 0.0029135136865079403, 0.05326022952795029, 0.4165485203266144]], [[0.01473692711442709, 0.0007284142775461078, 0.0030098571442067623, 0.0050953528843820095, 0.034985266625881195, 0.0816836953163147, 0.01492468360811472, 0.007333504036068916, 0.3747553825378418], [0.03308449313044548, 0.005363058298826218, 0.07295247167348862, 0.02461327239871025, 0.07506665587425232, 0.10252267122268677, 0.026483017951250076, 0.002392088295891881, 0.02609376795589924], [0.02203182689845562, 0.0014520460972562432, 0.019051892682909966, 0.012256080284714699, 0.003868603380396962, 0.04836718738079071, 0.015189481899142265, 0.010207864455878735, 0.38660791516304016], [0.035299353301525116, 0.0019236616790294647, 0.01111103966832161, 0.010909855365753174, 0.007746526040136814, 0.09966705739498138, 0.020622698590159416, 0.008716409094631672, 0.12993064522743225], [0.019359715282917023, 0.0013941325014457107, 0.0012283913092687726, 0.005196215119212866, 0.00448927516117692, 0.002475927583873272, 0.0018629872938618064, 0.008321234956383705, 0.432026743888855], [0.014869939535856247, 0.002363689010962844, 0.0009491543751209974, 0.002382102655246854, 0.0068388828076422215, 0.0032602129504084587, 0.00202627363614738, 0.007454190868884325, 0.4293583333492279], [0.023424305021762848, 0.004161475226283073, 0.053437765687704086, 0.0041063521057367325, 0.04978364706039429, 0.17035581171512604, 0.020288191735744476, 0.013689602725207806, 0.10812962055206299], [0.007420300506055355, 0.0025558052584528923, 0.0026494849007576704, 0.0017724173376336694, 0.0015149289974942803, 0.0034541103523224592, 0.0013401638716459274, 0.01764225959777832, 0.47893622517585754]], [[0.029063992202281952, 0.0047799828462302685, 0.002818971872329712, 0.0034663034602999687, 0.001379151362925768, 0.0031255220528692007, 0.0012173574650660157, 0.0008229855448007584, 0.26591530442237854], [0.042893294245004654, 0.007728861179202795, 0.006665055640041828, 0.028495654463768005, 0.012110443785786629, 0.011421522125601768, 0.0060052587650716305, 0.0015260545769706368, 0.08183512091636658], [0.0271441787481308, 0.01470328588038683, 0.02288920059800148, 0.008312780410051346, 0.003094565123319626, 0.008655658923089504, 0.003037445480003953, 0.003105797106400132, 0.36296480894088745], [0.0169081911444664, 0.008299125358462334, 0.006622029468417168, 0.006994720082730055, 0.0016013933345675468, 0.0057757250033319, 0.0012783496640622616, 0.0015351736219599843, 0.3329033851623535], [0.023301851004362106, 0.002987081650644541, 0.004921111278235912, 0.0027839583344757557, 0.0005198765429668128, 0.0010687484173104167, 0.0013127231504768133, 0.003465663641691208, 0.4530599117279053], [0.04272375628352165, 0.002688746899366379, 0.005862189922481775, 0.0036073564551770687, 0.001545575330965221, 0.0015120545867830515, 0.0011338251642882824, 0.0015430613420903683, 0.41709572076797485], [0.136650949716568, 0.04313594102859497, 0.0302302036434412, 0.045243680477142334, 0.021728767082095146, 0.027933435514569283, 0.016294781118631363, 0.008790555410087109, 0.1291041225194931], [0.017510393634438515, 0.0051260823383927345, 0.007864479906857014, 0.004709544125944376, 0.003131305333226919, 0.0027298007626086473, 0.0020060879178345203, 0.07903189957141876, 0.41496965289115906]], [[0.0008491140324622393, 0.0005212611868046224, 2.5599083528504707e-05, 0.0006783573189750314, 0.0001678473490756005, 9.31520844460465e-06, 0.00012656275066547096, 0.0001950762962223962, 0.09756988286972046], [0.0007177837542258203, 0.0008252694387920201, 0.00010313571692677215, 0.00040920067112892866, 0.00012154570868005976, 7.2462034950149246e-06, 0.00013535514881368726, 0.0004142120305914432, 0.05946400389075279], [0.0011240089079365134, 0.0004871144483331591, 2.9071303288219497e-05, 0.0002849288284778595, 0.00012817826063837856, 1.4750094123883173e-05, 0.00013278725964482874, 0.0005761770298704505, 0.09627234935760498], [0.0005903768469579518, 0.0002158536808565259, 5.251400943961926e-05, 0.00026627047918736935, 6.02041109232232e-05, 1.2042210073559545e-05, 0.00013055406452622265, 0.00020666791533585638, 0.12170957773923874], [0.022938458248972893, 0.002456842688843608, 0.0009184491937048733, 0.004386201500892639, 0.0005793674499727786, 0.00019684068684000522, 0.0007839884492568672, 0.006411590147763491, 0.07629384845495224], [0.005536186043173075, 0.0004560565866995603, 0.0003791222407016903, 0.0013831116957589984, 0.0002366519474890083, 4.778942093253136e-05, 0.0003254574548918754, 0.00259949523024261, 0.14263667166233063], [0.004912117961794138, 0.001683229231275618, 0.00017866981215775013, 0.0006479433504864573, 0.0012386339949443936, 0.00021685042884200811, 0.0004188133461866528, 0.00474077183753252, 0.12158916890621185], [0.046810876578092575, 5.01327303936705e-05, 0.013078054413199425, 0.0025798736605793238, 0.005134680774062872, 0.024470267817378044, 0.02899685688316822, 0.1702173352241516, 0.2758837938308716]], [[0.15068624913692474, 0.020011581480503082, 0.0038030114956200123, 0.03688008710741997, 0.07749611884355545, 0.031045880168676376, 0.044385720044374466, 0.02682865969836712, 0.15471012890338898], [0.04740447923541069, 0.021780475974082947, 0.012858090922236443, 0.011991053819656372, 0.004323021043092012, 0.01407338585704565, 0.02045566774904728, 0.04039063677191734, 0.14332930743694305], [0.08884214609861374, 0.010657667182385921, 0.017407242208719254, 0.0036999410949647427, 0.014290076680481434, 0.05406496673822403, 0.00889695156365633, 0.023020818829536438, 0.12325640767812729], [0.08212973922491074, 0.0251918938010931, 0.0556969977915287, 0.005964886862784624, 0.013916494324803352, 0.09266016632318497, 0.011911566369235516, 0.04747019335627556, 0.17447666823863983], [0.06182695925235748, 0.032713308930397034, 0.07611880451440811, 0.028053686022758484, 0.0016748742200434208, 0.06534861773252487, 0.01005744282156229, 0.03510230779647827, 0.1235855296254158], [0.07456973195075989, 0.010289469733834267, 0.08816496282815933, 0.014516211114823818, 0.0009223271044902503, 0.02099846862256527, 0.00566053343936801, 0.024335535243153572, 0.12653867900371552], [0.05467785522341728, 0.016035791486501694, 0.012110044248402119, 0.033462610095739365, 0.0113012520596385, 0.01578878052532673, 0.015721647068858147, 0.02180643379688263, 0.12207046896219254], [0.0883234366774559, 0.04295876994729042, 0.046672359108924866, 0.03217342123389244, 0.02339833416044712, 0.03022189438343048, 0.024998480454087257, 0.07673180103302002, 0.15765050053596497]], [[0.04742226377129555, 0.030504191294312477, 0.022241177037358284, 0.04673941433429718, 0.019967779517173767, 0.008044990710914135, 0.012378828600049019, 0.02360449731349945, 0.19647781550884247], [0.08561167865991592, 0.26710274815559387, 0.15554147958755493, 0.006184375379234552, 0.0011585064930841327, 0.0028048576787114143, 0.0010972751770168543, 0.026849156245589256, 0.12017999589443207], [0.0411747582256794, 0.01335297804325819, 0.012766428291797638, 0.009585987776517868, 0.0031099379993975163, 0.0018097193678840995, 0.008015465922653675, 0.02464604191482067, 0.29103532433509827], [0.054878272116184235, 0.016822323203086853, 0.009820486418902874, 0.00941557064652443, 0.009204561822116375, 0.003976711072027683, 0.00810614600777626, 0.02501188963651657, 0.2995590567588806], [0.018716024234890938, 0.009983398020267487, 0.011888500303030014, 0.0010097380727529526, 0.0002665521460585296, 6.889200449222699e-05, 0.00045605850755237043, 0.016255822032690048, 0.18820303678512573], [0.014399190433323383, 0.010208037681877613, 0.013844252564013004, 0.0006443368620239198, 9.486025373917073e-05, 3.585176818887703e-05, 0.0002541632275097072, 0.013982491567730904, 0.21761368215084076], [0.09393034130334854, 0.04503176733851433, 0.040884219110012054, 0.04297155514359474, 0.009656489826738834, 0.005742409732192755, 0.006128746550530195, 0.027677081525325775, 0.16846899688243866], [0.04696759581565857, 0.008279483765363693, 0.012381640262901783, 0.0076857213862240314, 0.0036634134594351053, 0.0095828827470541, 0.0046584513038396835, 0.016844969242811203, 0.4153643548488617]], [[0.10397167503833771, 0.01670692302286625, 0.0042348396964371204, 0.002936998615041375, 0.0022281575947999954, 0.001219852943904698, 0.0021744510158896446, 0.02554144524037838, 0.30206283926963806], [0.11106002330780029, 0.05798957869410515, 0.009175832383334637, 0.006006509065628052, 0.0009313564514741302, 0.000524171395227313, 0.000814763130620122, 0.01001639012247324, 0.283229798078537], [0.21004676818847656, 0.0076301442459225655, 0.0025925468653440475, 0.0025854678824543953, 0.007142297923564911, 0.0010936055332422256, 0.003085079835727811, 0.007417768705636263, 0.22301018238067627], [0.16493965685367584, 0.016754286363720894, 0.010389899834990501, 0.005919300951063633, 0.004618823062628508, 0.0022923992946743965, 0.004112088121473789, 0.014372020028531551, 0.3123747706413269], [0.17038936913013458, 0.010884520597755909, 0.015259306877851486, 0.013368110172450542, 0.007837566547095776, 0.0039718723855912685, 0.010968479327857494, 0.010812520980834961, 0.20886962115764618], [0.13964858651161194, 0.006773388013243675, 0.0038053616881370544, 0.006036474369466305, 0.004589551594108343, 0.001276884926483035, 0.0057591600343585014, 0.01186785101890564, 0.29027774930000305], [0.2634395360946655, 0.01273544691503048, 0.005775334779173136, 0.013247941620647907, 0.0012775955256074667, 0.000984705751761794, 0.001921196817420423, 0.0161697156727314, 0.24089935421943665], [0.011516982689499855, 0.0026077942457050085, 0.003780677216127515, 0.0010428187670186162, 0.0006774596986360848, 0.0005879882955923676, 9.023277380038053e-05, 0.011555921286344528, 0.4670446217060089]], [[0.3412293493747711, 0.0425233319401741, 0.02530532144010067, 0.010399009101092815, 0.000824531598482281, 0.015127566643059254, 0.008493355475366116, 0.15153510868549347, 0.003197578014805913], [0.08824986964464188, 0.6997199654579163, 0.011842271313071251, 0.0011897149961441755, 2.6869691282627173e-05, 9.908813080983236e-05, 7.700332935201004e-05, 0.010119310580193996, 0.0006344643770717084], [0.3592156767845154, 0.003131461562588811, 0.00036553211975842714, 0.006802729796618223, 0.011866609565913677, 0.017082614824175835, 0.007123382296413183, 0.019259361550211906, 0.003832812188193202], [0.5955706238746643, 0.031002193689346313, 0.0059892116114497185, 0.0078062317334115505, 0.015972916036844254, 0.13028669357299805, 0.008188439533114433, 0.1265796273946762, 0.004255733918398619], [0.2370082139968872, 0.013091888278722763, 0.014713992364704609, 0.0027313160244375467, 0.00020957450033165514, 0.0007991665042936802, 0.000574834703002125, 0.1142205223441124, 0.003886783728376031], [0.09647241979837418, 0.007483694702386856, 0.009100493043661118, 0.0021675468888133764, 5.778981721960008e-05, 0.0003691861347761005, 0.00038284496986307204, 0.06353677809238434, 0.0017389238346368074], [0.26882848143577576, 0.023450184613466263, 0.005285943858325481, 0.12752436101436615, 0.0004531803715508431, 0.0017976476810872555, 0.0029235482215881348, 0.10919898003339767, 0.008442096412181854], [0.22886542975902557, 0.023172790184617043, 0.008197464980185032, 0.006507922429591417, 0.0031450276728719473, 0.007757019717246294, 0.005424468778073788, 0.07678276300430298, 0.22266785800457]], [[0.10300230979919434, 0.012551168911159039, 0.03135497868061066, 0.013058312237262726, 0.08720850199460983, 0.03815891966223717, 0.004374713636934757, 0.015692712739109993, 0.07346475124359131], [0.1521003097295761, 0.020120013505220413, 0.08223660290241241, 0.0221259742975235, 0.058031730353832245, 0.03446701169013977, 0.013106283731758595, 0.017250314354896545, 0.059794191271066666], [0.023298460990190506, 0.007727380841970444, 0.059849195182323456, 0.003751971060410142, 0.007221390958875418, 0.014949124306440353, 0.005415600258857012, 0.005057912785559893, 0.3309497535228729], [0.01758722774684429, 0.013618450611829758, 0.07672133296728134, 0.000871562457177788, 0.0018003752920776606, 0.007232997566461563, 0.004678796511143446, 0.003702498273923993, 0.39411067962646484], [0.050994254648685455, 0.039802730083465576, 0.12303764373064041, 0.014415951445698738, 0.014315569773316383, 0.03778175264596939, 0.019377561286091805, 0.009150020778179169, 0.254240483045578], [0.031442221254110336, 0.01501182559877634, 0.03548745810985565, 0.009461838752031326, 0.004510349128395319, 0.012757851742208004, 0.010247272439301014, 0.010063671506941319, 0.3640801012516022], [0.07557731866836548, 0.015311889350414276, 0.01394333690404892, 0.04659917578101158, 0.07440418004989624, 0.03132397308945656, 0.014012784697115421, 0.012508862651884556, 0.046278029680252075], [0.004537979140877724, 0.0010722988517954946, 0.006664913147687912, 0.0013428947422653437, 0.0012812219792976975, 0.002524411305785179, 0.0004473469452932477, 0.009245374239981174, 0.4765443205833435]], [[0.042590171098709106, 0.007069586776196957, 0.0012985594803467393, 0.014135523699223995, 0.00020970412879250944, 0.0025508131366223097, 0.0003640716022346169, 0.02199370414018631, 0.13977669179439545], [0.025622189044952393, 0.005079266615211964, 0.0159971471875906, 0.0022866185754537582, 0.0003106805379502475, 0.0007034053560346365, 0.0006128181703388691, 0.015516459941864014, 0.0847368910908699], [0.01034579984843731, 0.0010164995910599828, 0.0007042950601316988, 0.0005764112574979663, 0.0001418629544787109, 7.555496267741546e-05, 6.739431410096586e-05, 0.0010716611286625266, 0.011676725931465626], [0.00584240211173892, 0.0006241857772693038, 0.0002169349609175697, 0.0004340888699516654, 9.15642740437761e-05, 0.00011733853898476809, 8.395465556532145e-05, 0.0064913625828921795, 0.03131890669465065], [0.011719241738319397, 0.001982304034754634, 0.0029356570448726416, 0.00029034720500931144, 0.0014887249562889338, 8.823991083772853e-05, 0.0013051838614046574, 0.0023637183476239443, 0.023899512365460396], [0.014468244276940823, 0.002123360289260745, 0.0009089037775993347, 0.00027280973154120147, 0.0009915506234392524, 3.583553188946098e-05, 0.0006245332187972963, 0.003266494255512953, 0.03394186869263649], [0.02876167744398117, 0.004317948129028082, 0.0021643307991325855, 0.002739173825830221, 0.0013453061692416668, 0.013219424523413181, 0.0009473168174736202, 0.008477412164211273, 0.05804387480020523], [0.06170149892568588, 0.05879565700888634, 0.030704542994499207, 0.021936966106295586, 0.010049635544419289, 0.004163258709013462, 0.01647026464343071, 0.06377705186605453, 0.2525229752063751]], [[0.028774790465831757, 0.002642599167302251, 0.002106707077473402, 0.00568531034514308, 0.004500947892665863, 0.0288652665913105, 0.005638797301799059, 0.014731933362782001, 0.3937789797782898], [0.05040007829666138, 0.40499311685562134, 0.1488456279039383, 0.00640207901597023, 0.0005312006105668843, 0.0021755725611001253, 0.0006728880689479411, 0.005858015734702349, 0.0635240226984024], [0.008348342031240463, 0.004867127165198326, 0.0013254539808258414, 0.0005954488879069686, 0.0015938024735078216, 0.0030688317492604256, 0.008740752004086971, 0.008971484377980232, 0.4144304096698761], [0.01259857602417469, 0.011510941199958324, 0.006271845661103725, 0.0004519037320278585, 0.0005010212771594524, 0.0017907355213537812, 0.0021989252418279648, 0.01928710751235485, 0.4178101420402527], [0.026836425065994263, 0.01943366229534149, 0.03158280998468399, 0.006877897307276726, 0.0013161987299099565, 0.005196307320147753, 0.0027716970071196556, 0.027549246326088905, 0.22064585983753204], [0.023632125928997993, 0.007872000336647034, 0.017207829281687737, 0.0025761686265468597, 0.0006747061852365732, 0.0023692105896770954, 0.0013521189102903008, 0.02210311032831669, 0.3481515049934387], [0.03483754023909569, 0.05955659598112106, 0.03354164958000183, 0.0251525416970253, 0.004316721111536026, 0.005708860699087381, 0.002586419228464365, 0.02293725684285164, 0.03824807330965996], [0.00356517662294209, 0.0029283235780894756, 0.006426373030990362, 0.002057009842246771, 0.0034274396020919085, 0.001882188837043941, 0.001106921350583434, 0.006688086315989494, 0.47607871890068054]], [[0.01825212873518467, 0.011661571450531483, 0.0027983144391328096, 0.009320065379142761, 0.003965599928051233, 0.0022205798886716366, 0.0019291775533929467, 0.06871742010116577, 0.3039730489253998], [0.08748237788677216, 0.02557387948036194, 0.018112313002347946, 0.0049604433588683605, 0.0014782048529013991, 0.0022030407562851906, 0.0009602387435734272, 0.05315152183175087, 0.20510943233966827], [0.0498603954911232, 0.007433606311678886, 0.0016537772025913, 0.005322957877069712, 0.0039930944330990314, 0.0035380616318434477, 0.004288866184651852, 0.0305508840829134, 0.35446223616600037], [0.07243383675813675, 0.007740843575447798, 0.012108874507248402, 0.004148117266595364, 0.002742878394201398, 0.0028195148333907127, 0.0024749175645411015, 0.013945343904197216, 0.3822646141052246], [0.07854430377483368, 0.010273326188325882, 0.012068699114024639, 0.006702507380396128, 0.0009893893729895353, 0.004420892801135778, 0.0008018749067559838, 0.03200588747859001, 0.34090402722358704], [0.05737154930830002, 0.005662776064127684, 0.017658615484833717, 0.0023623763117939234, 0.0003382973372936249, 0.00366365653462708, 0.0006075557903386652, 0.01110900565981865, 0.40067917108535767], [0.08930555731058121, 0.008811046369373798, 0.003925340250134468, 0.0061110337264835835, 0.0007046632235869765, 0.0012062698369845748, 0.002200786955654621, 0.04369465634226799, 0.2070087343454361], [0.028904935345053673, 0.003862805664539337, 0.0069825011305511, 0.0027303777169436216, 0.0016403237823396921, 0.005138302221894264, 0.0012722150422632694, 0.009086940437555313, 0.4471859633922577]]], [[[0.0013022085186094046, 5.9417747252155095e-05, 9.618737749406137e-06, 3.1320553262048634e-06, 9.828867177930078e-07, 6.095452135923551e-06, 5.499676262843423e-06, 0.0038343945052474737, 0.5037134289741516], [0.0014909309102222323, 0.00021644899970851839, 9.499776206212118e-05, 4.059539423906244e-05, 6.020482032909058e-06, 5.000700548407622e-05, 4.731058652396314e-06, 0.00040831719525158405, 0.06021977216005325], [0.0002811781596392393, 0.0001679945271462202, 0.0010434634750708938, 1.0034946171799675e-05, 1.377331614094146e-06, 6.784912898183393e-07, 2.9217943620096776e-07, 8.49154093884863e-05, 0.4209435284137726], [3.402019865461625e-05, 4.9337726522935554e-05, 8.313170110341161e-05, 2.2319716663332656e-05, 5.39800566912163e-07, 4.11734895067184e-08, 3.3303881874502395e-09, 1.2204695849504787e-06, 0.06548122316598892], [0.00035689142532646656, 0.00030578699079342186, 0.004799241665750742, 0.0001143141562351957, 2.7493884772411548e-05, 1.7332099560007919e-06, 5.367700239844453e-08, 2.3701875306869624e-06, 0.42885276675224304], [0.00035609223414212465, 0.0005162984598428011, 0.0014577305410057306, 0.00018065032782033086, 0.0002686360676307231, 1.0376428690506145e-05, 2.878275324746937e-07, 2.868041701731272e-05, 0.40768325328826904], [0.0006982879713177681, 4.500218346947804e-05, 0.001986839808523655, 0.00023020044318400323, 6.763750570826232e-05, 0.00026030655135400593, 0.00014494087372440845, 4.463098957785405e-05, 0.09784181416034698], [0.02094348333775997, 0.016241909936070442, 0.011949323117733002, 0.009936582297086716, 0.008415109477937222, 0.0055074081756174564, 0.002825394505634904, 0.017137518152594566, 0.4179816246032715]], [[0.01010880060493946, 0.00956813246011734, 0.0025345291942358017, 0.010100681334733963, 0.004937953315675259, 0.0056816148571670055, 0.0026845817919820547, 0.018983561545610428, 0.39188602566719055], [0.011299828998744488, 0.06264476478099823, 0.00280944025143981, 0.03150974586606026, 0.019483143463730812, 0.02926880307495594, 0.014397852122783661, 0.038409505039453506, 0.3181813359260559], [0.01150188036262989, 0.0044487714767456055, 0.003086444456130266, 0.005620704032480717, 0.005225773900747299, 0.005101312417536974, 0.0033509477507323027, 0.012873990461230278, 0.05570987984538078], [0.023843204602599144, 0.007940849289298058, 0.006602409295737743, 0.018516946583986282, 0.005194849334657192, 0.018354322761297226, 0.011972201056778431, 0.020020194351673126, 0.12768268585205078], [0.017453981563448906, 0.006566982716321945, 0.006437224335968494, 0.010258943773806095, 0.007524041924625635, 0.007805170025676489, 0.003535826923325658, 0.022132975980639458, 0.0758049488067627], [0.009776161052286625, 0.005764814559370279, 0.002830076962709427, 0.008658399805426598, 0.004898515529930592, 0.008362919092178345, 0.005278115626424551, 0.016466772183775902, 0.0846642255783081], [0.0147054148837924, 0.020168650895357132, 0.007537460420280695, 0.004244955722242594, 0.006553541868925095, 0.0066261375322937965, 0.0021409504115581512, 0.028843004256486893, 0.05934390798211098], [0.006397331599146128, 0.021570011973381042, 0.00579069321975112, 0.008682731539011002, 0.004288266878575087, 0.0036858643870800734, 0.002901490079239011, 0.012283897958695889, 0.4360095262527466]], [[0.016474297270178795, 0.0007862914353609085, 0.005609103478491306, 0.0013036939781159163, 0.013178386725485325, 0.031232384964823723, 0.003996184095740318, 0.0027088404167443514, 0.19672152400016785], [0.011102980002760887, 0.002027091570198536, 0.007352579850703478, 0.003563682083040476, 0.0034767219331115484, 0.009599216282367706, 0.006617088336497545, 0.002679733093827963, 0.05418064817786217], [0.026370501145720482, 0.00532302912324667, 0.009548664093017578, 0.016433287411928177, 0.010021233931183815, 0.001343895448371768, 0.005150559823960066, 0.018646899610757828, 0.11135309934616089], [0.00976437795907259, 0.0032595740631222725, 0.0021889826748520136, 0.003149980679154396, 0.0028265949804335833, 0.0058457511477172375, 0.0012064318871125579, 0.011398770846426487, 0.059283848851919174], [0.008760376833379269, 0.002713883528485894, 0.0039603495970368385, 0.0016811072127893567, 0.0034731728956103325, 0.001324359094724059, 0.00037808556226082146, 0.0028924550861120224, 0.1261860430240631], [0.003855594666674733, 0.0010279123671352863, 0.0015991622349247336, 0.001383748254738748, 0.004134461749345064, 0.001294485991820693, 0.0006854782695882022, 0.0012635185848921537, 0.06345689296722412], [0.004982471000403166, 0.0006992732523940504, 0.0017675221897661686, 0.0004335168923716992, 0.009008869528770447, 0.0020184493623673916, 0.0007313895621336997, 0.0014360100030899048, 0.07364760339260101], [0.008594616316258907, 0.0056075723841786385, 0.009349030442535877, 0.004368793219327927, 0.006372013129293919, 0.004783434793353081, 0.0037150168791413307, 0.0048795295879244804, 0.45506751537323]], [[0.05884114280343056, 0.009341621771454811, 0.07733424752950668, 0.04282677546143532, 0.004803631454706192, 0.009805548936128616, 0.004415364004671574, 0.042979758232831955, 0.3523355722427368], [0.1566653698682785, 0.04843460023403168, 0.07605812698602676, 0.09281890094280243, 0.02433890849351883, 0.037761494517326355, 0.009676758199930191, 0.11950207501649857, 0.1123947724699974], [0.09321621060371399, 0.022234490141272545, 0.051143743097782135, 0.057122860103845596, 0.009956824593245983, 0.05840011686086655, 0.006564661394804716, 0.09109149128198624, 0.26993706822395325], [0.042803239077329636, 0.014748111367225647, 0.051076192408800125, 0.020201250910758972, 0.004679969511926174, 0.023354481905698776, 0.004600305110216141, 0.0502362921833992, 0.3526424765586853], [0.018149415031075478, 0.0329611599445343, 0.06975128501653671, 0.013419806957244873, 0.0017656076233834028, 0.037007421255111694, 0.001938949222676456, 0.08108069747686386, 0.3140479624271393], [0.01956355944275856, 0.027016250416636467, 0.13853345811367035, 0.008343035355210304, 0.0012429470662027597, 0.03948315605521202, 0.002260174136608839, 0.0677444115281105, 0.2722562253475189], [0.06428898125886917, 0.02880546823143959, 0.09898865967988968, 0.1424073874950409, 0.05490938201546669, 0.0940185934305191, 0.018556715920567513, 0.12920494377613068, 0.12412295490503311], [0.036315545439720154, 0.006136774085462093, 0.016873344779014587, 0.008397938683629036, 0.0034421177115291357, 0.00616659689694643, 0.0016272537177428603, 0.01722121238708496, 0.41913989186286926]], [[0.010016730055212975, 0.0008128750487230718, 0.00013660082186106592, 0.001132918638177216, 0.0006749625317752361, 0.0002507451572455466, 0.00022765566245652735, 0.12235474586486816, 0.36872923374176025], [0.016589360311627388, 0.0012915093684569001, 0.0010521794902160764, 0.000551754143089056, 0.00017932747141458094, 0.0004100268997717649, 0.0002537450345698744, 0.060603126883506775, 0.23340116441249847], [0.012261469848453999, 0.001130763441324234, 0.0007099805516190827, 0.00047054074821062386, 0.0001816151780076325, 4.707575135398656e-05, 2.783210038614925e-05, 0.004106875974684954, 0.3882300555706024], [0.006444597151130438, 9.139658504864201e-05, 0.0005467387964017689, 0.0005172885139472783, 0.00024158574524335563, 8.468495070701465e-05, 2.1504802134586498e-05, 0.0009999327594414353, 0.18081440031528473], [0.010958514176309109, 0.0015925709158182144, 0.0017796818865463138, 0.0014066712465137243, 0.00047277554403990507, 0.0001338341971859336, 7.649955659871921e-05, 0.0011293202405795455, 0.38668951392173767], [0.02273857221007347, 0.000298291037324816, 0.0024406120646744967, 0.0008683144696988165, 0.0009576916927471757, 0.00039632045081816614, 8.98492507985793e-05, 0.001589466817677021, 0.25167495012283325], [0.016290074214339256, 0.002957190154120326, 0.002680645789951086, 0.0015214915620163083, 0.0009634462767280638, 0.0008814203320071101, 0.00016314278764184564, 0.0032475993502885103, 0.26095134019851685], [0.013944759033620358, 0.026672909036278725, 0.015988383442163467, 0.012970458716154099, 0.005408325232565403, 0.006646183785051107, 0.0036593861877918243, 0.07993745803833008, 0.35463467240333557]], [[0.12645843625068665, 0.0052221729420125484, 0.0017872448079288006, 0.002644107211381197, 0.0003394242958165705, 0.0011288061505183578, 0.0002770152350421995, 0.03130936622619629, 0.39704394340515137], [0.3588545322418213, 0.031942736357450485, 0.004985657054930925, 0.00601204065605998, 0.0005203136242926121, 0.001135090715251863, 0.0003818913537543267, 0.014780141413211823, 0.2593924403190613], [0.05141183361411095, 0.005684043746441603, 0.00038814410800114274, 0.0077974433079361916, 0.0033770787995308638, 0.0014042012626305223, 0.005024472251534462, 0.014184202067553997, 0.3518980145454407], [0.06809087097644806, 0.0062261177226901054, 0.0013949081767350435, 0.008195164613425732, 0.003362770890817046, 0.003521934151649475, 0.012097174301743507, 0.01836719922721386, 0.36344847083091736], [0.10310215502977371, 0.0021119043231010437, 0.0040933191776275635, 0.002918021287769079, 0.0005248342058621347, 0.004524966701865196, 0.00134479277767241, 0.03162737190723419, 0.3795033097267151], [0.07745686173439026, 0.0014652019599452615, 0.0025874872226268053, 0.001946733333170414, 0.0003650042926892638, 0.0019092512084171176, 0.0019662012346088886, 0.037861742079257965, 0.40340253710746765], [0.12622614204883575, 0.006608657538890839, 0.0010806312784552574, 0.011813311837613583, 0.0006925358902662992, 0.0016104583628475666, 0.0064596678130328655, 0.04805987700819969, 0.2834981381893158], [0.023507000878453255, 0.005494833458214998, 0.008005945943295956, 0.002449345076456666, 0.0011147186160087585, 0.0022155079059302807, 0.001679563894867897, 0.013942761346697807, 0.43389892578125]], [[0.028502266854047775, 0.00529392808675766, 0.004700710065662861, 0.011198698543012142, 0.012513823807239532, 0.004401367623358965, 0.0038434339221566916, 0.004696730989962816, 0.3300166726112366], [0.013376740738749504, 0.014142080210149288, 0.5393674373626709, 0.003383554518222809, 0.0016243438003584743, 0.001295609399676323, 0.0007454454316757619, 0.004174111410975456, 0.14934442937374115], [0.005271125119179487, 0.0014437813078984618, 0.0037885287310928106, 0.00029790872940793633, 0.00033237607567571104, 0.0008875897619873285, 0.00027595151914283633, 0.0013433991698548198, 0.3374556005001068], [0.004411994479596615, 0.0007231537019833922, 0.005045815836638212, 0.002173850778490305, 0.0011977687245234847, 0.0027966168709099293, 0.002041046740487218, 0.0029724594205617905, 0.3489231467247009], [0.0036374840419739485, 0.0020712895784527063, 0.0020758684258908033, 0.000495396030601114, 0.0013039959594607353, 0.0002867391740437597, 7.446991367032751e-05, 0.0009140112670138478, 0.3891040086746216], [0.004389666952192783, 0.002140594646334648, 0.004794787149876356, 0.000491518818307668, 0.0021103057079017162, 0.00046957869199104607, 9.536885045235977e-05, 0.0011313948780298233, 0.2867840826511383], [0.009459279477596283, 0.009328803047537804, 0.0075727771036326885, 0.0006119813187979162, 0.0044566732831299305, 0.0007778770523145795, 0.0005679743480868638, 0.0017246439820155501, 0.12649807333946228], [0.011580069549381733, 0.006209952756762505, 0.0051584127359092236, 0.0027650215197354555, 0.003446427173912525, 0.002645504428073764, 0.001426133094355464, 0.003419037675485015, 0.4641340672969818]], [[0.0016385697526857257, 0.001389342942275107, 0.0001360930473310873, 0.0016519591445103288, 0.0012623327784240246, 0.021749958395957947, 0.006197582930326462, 0.003028265666216612, 0.44024842977523804], [0.00313055538572371, 0.0014671973185613751, 0.00024487977498210967, 0.0007982774404808879, 0.001500700949691236, 0.002637650351971388, 0.0010448562679812312, 0.010068203322589397, 0.35006165504455566], [0.0025075431913137436, 0.00043374294182285666, 0.00016046622477006167, 0.0002566356852184981, 0.0001102826718124561, 0.0001722670713206753, 2.693122223718092e-05, 0.008127672597765923, 0.45517560839653015], [0.003943914547562599, 0.0013398902956396341, 0.00024014421796891838, 0.0005823546671308577, 0.0004198958049528301, 0.0008421209640800953, 0.00043195197940804064, 0.005074279848486185, 0.4111682176589966], [0.0018290388397872448, 0.000856737548019737, 0.0008140807040035725, 0.0003104869101662189, 0.00011284205538686365, 0.000292467069812119, 8.136712131090462e-05, 0.0038466425612568855, 0.44877469539642334], [0.006906155962496996, 0.0024820035323500633, 0.001469908864237368, 0.0006967110675759614, 0.00025552441366016865, 0.00014752382412552834, 7.985904085217044e-05, 0.005151177756488323, 0.3610455393791199], [0.004034522455185652, 0.00046107714297249913, 0.0007041665958240628, 0.000661600730381906, 0.0006499440059997141, 0.0005654105334542692, 0.00021424367150757462, 0.004850264173001051, 0.25375962257385254], [0.022871652618050575, 0.007005993742495775, 0.007196023594588041, 0.009020509198307991, 0.005459469277411699, 0.011229055002331734, 0.0036002236884087324, 0.025591367855668068, 0.4187258183956146]], [[0.006474870257079601, 0.0006117824814282358, 0.009809962473809719, 0.0015060602454468608, 0.002500672359019518, 0.0017212096136063337, 0.0006272914470173419, 0.00044546491699293256, 0.020383097231388092], [0.01393016055226326, 0.0013729787897318602, 0.009511454030871391, 0.001822108868509531, 0.0023439188953489065, 0.003921179566532373, 0.0011712448904290795, 0.001270924462005496, 0.0745932012796402], [0.01863090693950653, 0.004460332449525595, 0.014619794674217701, 0.0020859555806964636, 0.0007908749976195395, 0.0025836671702563763, 0.001338754897005856, 0.002101004356518388, 0.15120112895965576], [0.013786058872938156, 0.006823251023888588, 0.017722666263580322, 0.0032359580509364605, 0.0011598821729421616, 0.0031366825569421053, 0.0009321234538219869, 0.0023410385474562645, 0.1785549819469452], [0.010521615855395794, 0.0044441260397434235, 0.009941776283085346, 0.0028532410506159067, 0.003599172458052635, 0.008467171341180801, 0.0005294167785905302, 0.0025389876682311296, 0.33173704147338867], [0.005421232897788286, 0.0011851878371089697, 0.006782172713428736, 0.0005525992601178586, 0.0009180335327982903, 0.0028074176516383886, 0.00029931095195934176, 0.0015592406271025538, 0.3599278926849365], [0.018650809302926064, 0.0021492750383913517, 0.01273356843739748, 0.0012515883427113295, 0.0017890360904857516, 0.006261963862925768, 0.0009159680921584368, 0.001294730114750564, 0.07636277377605438], [0.00585370184853673, 0.0032456815242767334, 0.0074389330111444, 0.0025247905869036913, 0.0015582502819597721, 0.005153819918632507, 0.0012307422002777457, 0.003569426015019417, 0.47526243329048157]], [[0.013963457196950912, 0.0004852685087826103, 0.00031514567672275007, 0.0010715775424614549, 0.000465469405753538, 0.00011994507076451555, 9.289264562539756e-05, 0.0066409423016011715, 0.10461071133613586], [0.009923316538333893, 0.001042229006998241, 0.0028097371105104685, 0.003893047571182251, 0.0002943800063803792, 0.00021249905694276094, 0.00012919773871544749, 0.00298856059089303, 0.10818257927894592], [0.017295323312282562, 0.00030550482915714383, 0.00011151922080898657, 0.0005560052231885493, 0.0003936477587558329, 0.0002033496566582471, 8.925401198212057e-05, 0.002276224782690406, 0.2864246070384979], [0.02513893134891987, 0.00035986705916002393, 0.0003152923018205911, 0.0015269137220457196, 0.0006833409424871206, 0.0007534757605753839, 0.0004035881720483303, 0.003052610205486417, 0.3965087831020355], [0.018043674528598785, 0.0005647705402225256, 0.00013937160838395357, 0.0004187797021586448, 0.00029265141347423196, 0.00011341588833602145, 6.516977009596303e-05, 0.003693226957693696, 0.40424126386642456], [0.008435001596808434, 0.0004022587963845581, 0.0004470115527510643, 0.0009707273566164076, 0.000670029257889837, 0.00029795794398523867, 0.0002571486111264676, 0.002384831430390477, 0.42509859800338745], [0.006235255394130945, 0.0008490421460010111, 0.0007377707515843213, 0.0014265619684010744, 0.0005125260213389993, 0.00031963468063622713, 0.000337122764904052, 0.003331746906042099, 0.31864526867866516], [0.01278546079993248, 0.006674907170236111, 0.004197892267256975, 0.014472641050815582, 0.002629952970892191, 0.0017473259940743446, 0.0012211804278194904, 0.010640420950949192, 0.4423478841781616]], [[0.007183087058365345, 0.006589315831661224, 0.00023044638510327786, 0.005280859302729368, 0.001204530242830515, 0.0007620027172379196, 0.0018218496115878224, 0.02877768501639366, 0.29163217544555664], [0.033366575837135315, 0.023267026990652084, 0.012330911122262478, 0.008179254829883575, 0.001280084135942161, 0.0062731290236115456, 0.005200493149459362, 0.027896197512745857, 0.14378948509693146], [0.010625152848660946, 0.005256202537566423, 0.0009470693184994161, 0.004724381025880575, 0.0012652622535824776, 0.0022165272384881973, 0.002361852675676346, 0.023172251880168915, 0.32786795496940613], [0.008823768235743046, 0.007817736826837063, 0.002042504260316491, 0.007765134330838919, 0.0010390295647084713, 0.002331737894564867, 0.0037329283077269793, 0.03326355293393135, 0.3777431845664978], [0.027654128149151802, 0.00817696750164032, 0.004897586070001125, 0.005371118430048227, 0.0011204412439838052, 0.0036508420016616583, 0.005585335195064545, 0.019509349018335342, 0.22746598720550537], [0.0202791690826416, 0.005424231290817261, 0.0020729340612888336, 0.004089755471795797, 0.0003064309130422771, 0.0012946876231580973, 0.0028918322641402483, 0.022143656387925148, 0.29434025287628174], [0.028809547424316406, 0.011441226117312908, 0.002548227086663246, 0.005870056804269552, 0.0010272151557728648, 0.0027636445593088865, 0.0021110731177031994, 0.03761543333530426, 0.19905677437782288], [0.008588515222072601, 0.00250594737008214, 0.004519786685705185, 0.002356642158702016, 0.0009649667190387845, 0.001457498176023364, 0.0006640133797191083, 0.006693936884403229, 0.47765469551086426]], [[0.0020170698408037424, 0.0008203468169085681, 0.0009687605779618025, 0.00016548443818464875, 1.966808304132428e-05, 2.170368497900199e-05, 1.7034979464369826e-05, 0.0006240619695745409, 0.2446744292974472], [0.003918275237083435, 0.00034542419598437846, 0.00067752948962152, 0.0005303944344632328, 0.00014931897749193013, 6.736755312886089e-05, 5.1306968089193106e-05, 0.0017923499690368772, 0.3823898732662201], [0.0018869866617023945, 0.00017940874386113137, 0.0012492379173636436, 0.0003119969042018056, 9.89115287666209e-05, 3.0359014999703504e-05, 1.6386160496040247e-05, 0.00038734349072910845, 0.17270058393478394], [0.0027314627077430487, 0.00019612615869846195, 0.0008190465741790831, 0.0019603949040174484, 0.0001202166240545921, 0.00015853694640100002, 4.0470415115123615e-05, 0.001131771132349968, 0.2684919238090515], [0.004733952693641186, 0.00029556226218119264, 0.0008470766479149461, 0.0033797835931181908, 0.0016139313811436296, 0.00024948103236965835, 0.00015229708515107632, 0.002880000276491046, 0.24154411256313324], [0.008436399511992931, 0.0003944433992728591, 0.0006710233283229172, 0.0019352240487933159, 0.0013254010118544102, 0.00017852858582045883, 0.0001184404463856481, 0.004959569778293371, 0.32671627402305603], [0.0015784422867000103, 0.0002764534729067236, 6.207280966918916e-05, 0.00012852295185439289, 0.00013409389066509902, 6.685530388494954e-05, 1.4973677934904117e-05, 0.00055623275693506, 0.47241654992103577], [0.02283552475273609, 0.02228902280330658, 0.016071077436208725, 0.008608848787844181, 0.003482910804450512, 0.003652083920314908, 0.002056853612884879, 0.024583343416452408, 0.4017147123813629]]], [[[5.5900110929041347e-11, 5.489450671802842e-09, 4.5048097196964676e-11, 7.679462263581599e-14, 5.003851794585989e-15, 3.4032084333772417e-13, 1.7472556672446134e-14, 6.379510201354188e-12, 9.338275958725717e-06], [3.0310332022054354e-07, 4.0704941284275264e-07, 2.063020758669154e-07, 1.2044509389852465e-08, 2.7207588959576867e-10, 2.9160379666492986e-10, 5.283444919090309e-14, 1.134775118316611e-08, 0.00834314152598381], [1.8136387574044233e-12, 4.380151623351036e-12, 2.2198569371578714e-10, 9.926656935679845e-15, 1.4419840104959447e-13, 9.505274985079776e-15, 1.7461437641582615e-19, 8.140769135973301e-18, 2.9086921315979453e-08], [1.7336019286773308e-09, 2.91932877871659e-09, 9.984889857150847e-07, 4.1409612094867043e-07, 3.302599946991558e-12, 4.7198887159760616e-11, 5.369033871465388e-14, 1.08984356261832e-10, 0.00017371562717016786], [1.9958056540758662e-08, 3.4345565280702317e-10, 4.64573872704932e-07, 3.787027225143902e-08, 2.4788260333252765e-09, 1.061526333501206e-08, 4.363850947264325e-11, 9.337582790314158e-11, 0.0031896645668894053], [8.44365430907601e-08, 2.1463577581926074e-09, 8.311811683370252e-08, 4.572948739678395e-07, 6.729678481143253e-10, 6.209824321423696e-10, 3.065240727906371e-09, 3.0237828241297393e-07, 0.005005085840821266], [3.063812759052098e-09, 1.3592878644885786e-07, 1.2898936141425565e-08, 2.1179507037061285e-09, 4.562449973377625e-08, 2.579345803610522e-08, 8.326400007842294e-13, 4.925895495944133e-07, 0.4880203604698181], [0.0018656085012480617, 0.0025325578171759844, 0.002368832705542445, 0.0009074422414414585, 0.0001072189916158095, 0.0004995720810256898, 3.179698614985682e-05, 0.0018877851543948054, 0.4999793767929077]], [[0.009342015720903873, 0.0005970665370114148, 0.0016270920168608427, 0.0008652874385006726, 0.00021021503198426217, 0.0008255654247477651, 5.688759847544134e-05, 0.0006628589471802115, 0.2532263994216919], [0.00470384256914258, 0.00025547738187015057, 0.001014219131320715, 0.0006298162043094635, 0.00017429704894311726, 0.00048186612548306584, 3.7683381378883496e-05, 0.0008605144685134292, 0.4193834662437439], [0.005506251938641071, 0.00016714820230845362, 0.0006694486946798861, 5.820449223392643e-05, 6.0141283029224724e-05, 0.0006462655728682876, 5.355328903533518e-05, 0.00023431392037309706, 0.43320852518081665], [0.0028302576392889023, 0.00018466179608367383, 0.00043115936568938196, 6.672646850347519e-05, 6.347324961097911e-05, 0.0007406906806863844, 0.00013406721700448543, 0.0007323641330003738, 0.4349660575389862], [0.0034591418225318193, 0.0001908911654027179, 0.0007750068325549364, 0.00028781365836039186, 6.777868838980794e-05, 0.0008258150774054229, 9.748530283104628e-05, 0.0006033903337083757, 0.4620514512062073], [0.00377830071374774, 0.00018883163284044713, 0.00120546855032444, 0.0001869543775683269, 4.318389983382076e-05, 0.0004842808411922306, 6.236963963601738e-05, 0.0004986025160178542, 0.47327324748039246], [0.005138145759701729, 0.0006547124939970672, 0.00031399898580275476, 0.001303725061006844, 0.0004753138346131891, 0.001763355452567339, 0.00027513381792232394, 0.0016112664015963674, 0.4652751088142395], [0.013840503990650177, 0.006591174751520157, 0.013618766330182552, 0.006268083117902279, 0.002270481549203396, 0.004129382781684399, 0.0010570719605311751, 0.008326280862092972, 0.45110708475112915]], [[0.00031312531791627407, 0.0001334080589003861, 4.8179990699281916e-05, 2.344835775147658e-05, 1.4353172446135432e-05, 8.410756709054112e-05, 1.7194215615745634e-05, 0.00043542252387851477, 0.48370641469955444], [0.0025753150694072247, 0.0007899104384705424, 0.0023585858289152384, 0.0030938785057514906, 5.673373743775301e-05, 0.00017418582865502685, 1.5397719835164025e-05, 0.0018498236313462257, 0.3883779048919678], [0.0004876543825957924, 0.0002595835248939693, 0.0008621607557870448, 0.00016694313671905547, 4.679569246945903e-05, 5.4062729759607464e-05, 2.260996780023561e-06, 0.00020927352306898683, 0.38169941306114197], [0.0007472332799807191, 0.000532722391653806, 0.00033791776513680816, 0.0002527469478081912, 1.695405262580607e-05, 3.529287641867995e-05, 1.6808779719212907e-06, 0.00019044746295548975, 0.48241952061653137], [0.00044030402204953134, 0.0002678841119632125, 0.0002080110862152651, 0.0004459947522263974, 1.5997904483811e-05, 0.00011288871610304341, 1.1075761904066894e-05, 0.0001167506561614573, 0.2984003722667694], [0.001518476172350347, 0.0006707650027237833, 0.0003037183778360486, 0.0008619431755505502, 0.00010589713929221034, 0.0001338131696684286, 1.626178163860459e-05, 7.222404383355752e-05, 0.43262436985969543], [0.0007229795446619391, 0.0002856792707461864, 0.00018265539256390184, 0.0010278918780386448, 0.0002493975916877389, 0.00036922309664078057, 1.304705256188754e-05, 0.00017484095587860793, 0.4723462164402008], [0.016689607873558998, 0.013602039776742458, 0.011726605705916882, 0.009826768189668655, 0.004278423264622688, 0.007250617258250713, 0.002754163695499301, 0.014515035785734653, 0.4299820363521576]], [[0.002307293238118291, 0.0005252473638392985, 8.809447899693623e-05, 0.0001066939948941581, 5.142863665241748e-05, 0.00013020240294281393, 2.280935223097913e-05, 0.0030361642129719257, 0.4866974949836731], [0.003925621509552002, 0.0012905444018542767, 0.00038357198354788125, 0.00019414257258176804, 6.96040442562662e-05, 7.445819937856868e-05, 1.7682017642073333e-05, 0.002358929254114628, 0.47390303015708923], [0.008202116936445236, 0.0015130232786759734, 0.0008207476348616183, 0.00011114784865640104, 3.075272616115399e-05, 5.873592454008758e-05, 3.500822640489787e-05, 0.0019902423955500126, 0.4695906341075897], [0.0007976963534019887, 0.0008520035771653056, 0.00030975311528891325, 0.00020254332048352808, 1.3558767932408955e-05, 7.497619662899524e-05, 2.2740589429304237e-06, 0.00027519604191184044, 0.4260416328907013], [0.0019524323288351297, 0.0002637382713146508, 0.0003940958995372057, 0.0001262571895495057, 2.7685424356604926e-05, 7.109082798706368e-05, 1.3022981875110418e-05, 0.00043486119830049574, 0.46897876262664795], [0.002520602662116289, 0.0002614275144878775, 0.0005641995812766254, 0.00016588994185440242, 0.00012261020310688764, 0.00019193170010112226, 3.556019510142505e-05, 0.0006151711568236351, 0.37359359860420227], [0.0023108343593776226, 0.0009366289596073329, 0.0003248245920985937, 0.000675665563903749, 0.00039208782254718244, 0.000510399870108813, 5.507854075403884e-05, 0.0022336547262966633, 0.47829505801200867], [0.017968175932765007, 0.01134131196886301, 0.013261078856885433, 0.006517610512673855, 0.0031680434476584196, 0.005264427978545427, 0.0013994675828143954, 0.019656673073768616, 0.4352993667125702]], [[0.001373848645016551, 0.0002727459941525012, 0.0002512687351554632, 0.0011196366976946592, 0.0005515392404049635, 0.0022668209858238697, 0.0001824704377213493, 0.004791573155671358, 0.47241953015327454], [0.0019508089171722531, 0.0007906017708592117, 0.00024089193902909756, 0.0009003594750538468, 0.00032274119439534843, 0.0012441696599125862, 9.48059605434537e-05, 0.005818368401378393, 0.4264468848705292], [0.0014399546198546886, 0.0002332631847821176, 0.00045224191853776574, 4.9699898227117956e-05, 4.512643499765545e-05, 0.00029908542637713253, 1.8228014596388675e-05, 0.0016688129398971796, 0.4541323482990265], [0.0014782125363126397, 0.0002664446656126529, 0.0013442249037325382, 4.679729318013415e-05, 1.4051792277314235e-05, 0.00012693411554209888, 2.119349574059015e-06, 0.0004978053621016443, 0.4407687187194824], [0.0006987267988733947, 0.00017011218005791306, 0.000965818646363914, 0.00015281251398846507, 0.00017269969976041466, 0.0001944021787494421, 2.558222377047059e-06, 0.0001631873456062749, 0.4350961744785309], [0.001102504669688642, 0.00012474732648115605, 0.0011422350071370602, 0.00010096780169988051, 0.0003126534866169095, 0.0003701750247273594, 8.78143691807054e-06, 0.00029479534714482725, 0.3615906536579132], [0.0011829630238935351, 0.00034895879798568785, 0.007119147107005119, 0.0005344920791685581, 0.0006515107816085219, 0.0011389878345653415, 5.693728235200979e-05, 0.0009211533470079303, 0.39618223905563354], [0.01229869294911623, 0.01221025362610817, 0.009197334758937359, 0.0065560005605220795, 0.005198092665523291, 0.01150069572031498, 0.0023622915614396334, 0.011489861644804478, 0.4307621121406555]], [[0.0039664702489972115, 0.0012100026942789555, 0.0013490068959072232, 0.0006717348005622625, 0.0013324781320989132, 0.0015365842264145613, 0.0005181505111977458, 0.0015928630018606782, 0.1233307421207428], [0.0014559559058398008, 0.0006339389947243035, 0.0026479223743081093, 0.00024594212300144136, 0.0001765353954397142, 0.0012350594624876976, 0.00013495075108949095, 0.00048230780521407723, 0.03289053589105606], [0.0013450953410938382, 0.0007356879650615156, 0.0012934557162225246, 6.655571633018553e-05, 1.4959769941924606e-05, 0.00044271780643612146, 2.703746395127382e-05, 0.000240898531046696, 0.26482874155044556], [0.002606040332466364, 0.0008344699162989855, 0.001209732610732317, 0.00025253143394365907, 0.00014520798868034035, 0.003140548476949334, 0.0001529784349258989, 0.0006057526916265488, 0.23604238033294678], [0.007668177597224712, 0.0030669323168694973, 0.0029126242734491825, 0.00011586756590986624, 0.0005006211576983333, 0.0002777589252218604, 6.353022035909817e-05, 0.001750412629917264, 0.3026740252971649], [0.0033411842305213213, 0.001311374711804092, 0.004674109630286694, 7.558760262327269e-05, 0.00026961808907799423, 0.0003397368418518454, 4.8722569772507995e-05, 0.0004819100140593946, 0.29047515988349915], [0.0054697091691195965, 0.0031442921608686447, 0.004017741419374943, 0.0006543616182170808, 0.0008626212948001921, 0.0014927604934200644, 0.0003636724140960723, 0.003298906609416008, 0.21456480026245117], [0.0036279424093663692, 0.0062494720332324505, 0.010767522267997265, 0.004385904408991337, 0.00277776294387877, 0.005273555871099234, 0.001287155319005251, 0.0041479985229671, 0.4634871184825897]], [[0.14883196353912354, 0.0561506524682045, 0.018512427806854248, 0.0523001067340374, 0.022837985306978226, 0.06639589369297028, 0.06069033592939377, 0.03026256337761879, 0.03474833071231842], [0.07569590955972672, 0.06826606392860413, 0.14791373908519745, 0.006353020668029785, 0.001287593855522573, 0.025356687605381012, 0.006612796802073717, 0.016611628234386444, 0.09665815532207489], [0.08131925016641617, 0.04038386791944504, 0.2807130515575409, 0.022350987419486046, 0.005161680281162262, 0.03141096979379654, 0.01706489361822605, 0.027880989015102386, 0.0755089595913887], [0.07594527304172516, 0.05045931413769722, 0.17923316359519958, 0.019263068214058876, 0.007309482432901859, 0.08978694677352905, 0.03064342401921749, 0.040266070514917374, 0.06838121265172958], [0.016269274055957794, 0.07428978383541107, 0.06399387121200562, 0.02427583374083042, 0.00984142441302538, 0.04934109374880791, 0.01772794872522354, 0.08082874119281769, 0.17281591892242432], [0.015886226668953896, 0.04134271293878555, 0.058663565665483475, 0.027810800820589066, 0.005924344528466463, 0.03066580556333065, 0.01090441644191742, 0.05550302937626839, 0.14484284818172455], [0.10890478640794754, 0.06156468018889427, 0.0492355041205883, 0.05090511962771416, 0.031639374792575836, 0.042668417096138, 0.03171618655323982, 0.03961167111992836, 0.10332640260457993], [0.05445354804396629, 0.04526779055595398, 0.09894164651632309, 0.03292705863714218, 0.019971294328570366, 0.03926083445549011, 0.01988603174686432, 0.043445706367492676, 0.20997031033039093]], [[0.015712054446339607, 0.003016943810507655, 0.002891476498916745, 0.016477731987833977, 0.003098049433901906, 0.0032609866466373205, 0.0005190958618186414, 0.009564626030623913, 0.39708998799324036], [0.011905212886631489, 0.011302993632853031, 0.008778983727097511, 0.011205737479031086, 0.003432678757235408, 0.005752991884946823, 0.0009213303565047681, 0.03804676979780197, 0.2708134949207306], [0.00725163659080863, 0.0015573929995298386, 0.0022282341960817575, 0.002828036667779088, 0.0013643758138641715, 0.00209349999204278, 0.00027652716380544007, 0.00869971513748169, 0.3416977822780609], [0.014523872174322605, 0.0013822511537000537, 0.006334054749459028, 0.0019307088805362582, 0.0005568930064328015, 0.002475097542628646, 0.00025742192519828677, 0.01586259715259075, 0.21639077365398407], [0.007418851833790541, 0.0014681847533211112, 0.00305807963013649, 0.002265361836180091, 0.000882843101862818, 0.001318708760663867, 0.0001229055633302778, 0.006177906412631273, 0.14417621493339539], [0.008744224905967712, 0.0017883465625345707, 0.00599333643913269, 0.0017488505691289902, 0.0006991210393607616, 0.0016012750566005707, 9.292181493947282e-05, 0.004622788168489933, 0.11953023821115494], [0.012803398072719574, 0.003155008191242814, 0.00859522819519043, 0.002518855966627598, 0.0006019544089213014, 0.0018383092246949673, 0.00011044396524084732, 0.004515702370554209, 0.13633836805820465], [0.008475459180772305, 0.013212391175329685, 0.0054257274605333805, 0.011654380708932877, 0.006628814153373241, 0.008029801771044731, 0.001531823887489736, 0.018491938710212708, 0.4390735924243927]], [[5.707126504717053e-08, 5.305807182498512e-11, 2.0431093882694595e-12, 1.0814625968835409e-13, 5.413075857777644e-15, 5.9568240097507275e-12, 3.8739598009519816e-13, 0.0006395395612344146, 0.5075867176055908], [1.0530384564333417e-08, 1.3827381462050425e-09, 9.907910603068615e-11, 5.2415769641322996e-11, 1.614435988324045e-14, 1.9644556814579772e-11, 3.965761502825946e-14, 1.0437122277551225e-08, 0.00021847887546755373], [5.330696772887222e-09, 1.046445499697235e-10, 3.5324796421321025e-09, 3.2595062066098635e-11, 7.034046197069987e-14, 2.89433910933873e-16, 1.9071030187236317e-16, 1.9350456566952223e-12, 8.921795597416349e-06], [1.413380012799028e-14, 7.718452884209609e-14, 2.3376149309978743e-14, 4.0959548713902574e-15, 9.176170497819484e-15, 4.1570871582526214e-18, 4.6975032386115635e-23, 8.399624658721385e-19, 2.358336581576026e-10], [5.705686945134403e-08, 2.833989265482728e-09, 8.928861461754423e-06, 9.822356616950856e-08, 7.62967733436426e-09, 8.257136700729958e-14, 1.318182318670296e-15, 5.828378144695501e-14, 0.00011490472388686612], [3.950031413069155e-10, 2.8524934150842007e-12, 5.75962459947732e-08, 1.0115307202962498e-10, 1.6422271875704553e-10, 2.968542078818359e-11, 1.3658625656008932e-14, 1.1810138031919347e-15, 8.804174285614863e-06], [7.083077679936878e-09, 1.2497617524198645e-11, 5.511309154826449e-06, 3.08378140800869e-08, 2.9887561175945265e-11, 7.224776776837416e-09, 1.1986701053956494e-07, 9.327864002039998e-12, 8.805703146208543e-06], [0.028319815173745155, 0.010333376005291939, 0.025473307818174362, 0.02507404237985611, 0.004830158315598965, 0.005717465654015541, 0.000718376599252224, 0.025225600227713585, 0.3933270275592804]], [[0.004570821300148964, 0.0006219990318641067, 0.0008660269086249173, 0.0007282443693839014, 0.00011756434105336666, 0.0001524199906270951, 9.679755748948082e-06, 0.00121091038454324, 0.43794164061546326], [0.003852137131616473, 0.001867673359811306, 0.002219864632934332, 0.0004865672090090811, 0.00015351915499195457, 0.0003103021008428186, 3.419929635128938e-05, 0.002339719096198678, 0.24926511943340302], [0.0023099894169718027, 0.0006187451654113829, 0.0017197662964463234, 0.0009706380660645664, 0.0003896088746841997, 0.0001397169689880684, 1.049382353812689e-05, 0.0013366942293941975, 0.38504689931869507], [0.005205004010349512, 0.0004466577956918627, 0.0012418323894962668, 0.0009301879908889532, 0.0027220447082072496, 0.0021583547350019217, 0.00024887837935239077, 0.0021135604474693537, 0.3151141405105591], [0.0035345754586160183, 0.00020995068189222366, 0.002809529658406973, 0.0004845350340474397, 0.0007872952264733613, 0.002412022091448307, 7.994176121428609e-05, 0.0012910199584439397, 0.3895937502384186], [0.0032323135528713465, 0.0002426189457764849, 0.0010305322939530015, 0.00041538651566952467, 0.0005048421444371343, 0.0018313778564333916, 5.4521082347491756e-05, 0.0021139876917004585, 0.408632755279541], [0.0018415561644360423, 0.0002441449323669076, 0.00016823195619508624, 0.00023019398213364184, 0.0001538503129268065, 0.00042028201278299093, 7.054630987113342e-05, 0.00042174546979367733, 0.4848628342151642], [0.01604890450835228, 0.011827213689684868, 0.010717342607676983, 0.01119537279009819, 0.004707286600023508, 0.008161387406289577, 0.005274169147014618, 0.02044428512454033, 0.4137292206287384]], [[0.006681482307612896, 0.01350687351077795, 0.0010673771612346172, 0.010909723117947578, 0.0029024267569184303, 0.0034648317378014326, 0.002712294226512313, 0.030649906024336815, 0.4172075688838959], [0.021973080933094025, 0.11463961005210876, 0.008249381557106972, 0.008443331345915794, 0.0016807846259325743, 0.00857829861342907, 0.004734683781862259, 0.01720252074301243, 0.20377548038959503], [0.015987304970622063, 0.029722819104790688, 0.0038740970194339752, 0.010076967999339104, 0.030323894694447517, 0.0322301872074604, 0.016984013840556145, 0.014620089903473854, 0.3000859320163727], [0.009800056926906109, 0.022414375096559525, 0.011662283912301064, 0.013969166204333305, 0.005651111714541912, 0.013361428864300251, 0.006015367805957794, 0.020908601582050323, 0.3546835780143738], [0.045693472027778625, 0.028873935341835022, 0.007569416426122189, 0.02534460462629795, 0.00850349199026823, 0.013826144859194756, 0.016999240964651108, 0.043204594403505325, 0.2920227348804474], [0.026541445404291153, 0.022693820297718048, 0.01782643422484398, 0.01720244064927101, 0.004403784405440092, 0.012205874547362328, 0.011370832100510597, 0.032343506813049316, 0.24245671927928925], [0.015273853205144405, 0.012693632394075394, 0.0030219326727092266, 0.008167976513504982, 0.0026210134383291006, 0.018482642248272896, 0.0122247114777565, 0.043228983879089355, 0.27787095308303833], [0.004644386470317841, 0.003321829717606306, 0.0050865886732935905, 0.002393309725448489, 0.0011556813260540366, 0.0017870698357000947, 0.0006104191415943205, 0.012987826950848103, 0.4755563735961914]], [[0.006379035767167807, 0.0045412154868245125, 0.0032286308705806732, 0.0015580117469653487, 0.0008801146177574992, 0.003727972973138094, 0.0008744430961087346, 0.017086487263441086, 0.43658846616744995], [0.005039175506681204, 0.007503471802920103, 0.0037879012525081635, 0.0014426256529986858, 0.0004411647969391197, 0.0009918047580868006, 0.0003513083793222904, 0.01078211609274149, 0.42976224422454834], [0.004690959118306637, 0.004124640021473169, 0.0030791957397013903, 0.0008392746676690876, 0.0004405039653647691, 0.0031554396264255047, 0.0007373033440671861, 0.017180629074573517, 0.4306209683418274], [0.00862114317715168, 0.01135148387402296, 0.012981223873794079, 0.000691631983499974, 0.0003235400072298944, 0.0020609041675925255, 0.000785970943979919, 0.018089689314365387, 0.4154861271381378], [0.025518914684653282, 0.006133803632110357, 0.009012063033878803, 0.0025384153705090284, 0.0013000465696677566, 0.012946446426212788, 0.005756751634180546, 0.04848466068506241, 0.2682812213897705], [0.014500671997666359, 0.005180492997169495, 0.005493436940014362, 0.0009324002894572914, 0.0002000768727157265, 0.0024098618887364864, 0.0017877763602882624, 0.0339442640542984, 0.33759304881095886], [0.01168446708470583, 0.009222637861967087, 0.002364739775657654, 0.004237509332597256, 0.0008104023872874677, 0.0016773530514910817, 0.002601410960778594, 0.031581830233335495, 0.34230467677116394], [0.014953400939702988, 0.010602684691548347, 0.013698993250727654, 0.004751116503030062, 0.004801769275218248, 0.007260110694915056, 0.002760824980214238, 0.02062361314892769, 0.4283122718334198]]], [[[0.03759179264307022, 0.005974110681563616, 0.0015596693847328424, 0.01028980128467083, 0.002490728860720992, 0.006004712078720331, 0.000806200027000159, 0.012712272815406322, 0.3938857913017273], [0.022916166111826897, 0.007795052137225866, 0.002382806269451976, 0.002217048779129982, 0.00043463564361445606, 0.0021345033310353756, 0.0009567904635332525, 0.017230048775672913, 0.2991914451122284], [0.0071457442827522755, 0.002279195236042142, 0.0003260670346207917, 0.0004371095565147698, 0.0001423008943675086, 0.00013660390686709434, 0.00023541183327324688, 0.004492998588830233, 0.1667223870754242], [0.011841129511594772, 0.005342570599168539, 0.0016491134883835912, 0.002306309062987566, 0.00027519321884028614, 0.0018119483720511198, 0.0004261615686118603, 0.006615588907152414, 0.15364013612270355], [0.007978757843375206, 0.0026990456972271204, 0.001542517333291471, 0.0008321352070197463, 0.00015852856449782848, 0.0003729863674379885, 0.00016807820065878332, 0.0006434714305214584, 0.14921028912067413], [0.008475298061966896, 0.0015436670510098338, 0.0007279440178535879, 0.0005443510599434376, 8.443139086011797e-05, 0.00047076420742087066, 9.88888496067375e-05, 0.0005164956673979759, 0.13775314390659332], [0.023352667689323425, 0.007963527925312519, 0.0033872213680297136, 0.0018478332785889506, 0.0005030385800637305, 0.0026986205484718084, 0.0011642086319625378, 0.006802186369895935, 0.2550806701183319], [0.02454359456896782, 0.01837095245718956, 0.02251279354095459, 0.009905047714710236, 0.006903310772031546, 0.015575935132801533, 0.0053365156054496765, 0.01471058651804924, 0.41022977232933044]], [[0.06173773109912872, 0.005219586193561554, 0.010637922212481499, 0.0069235581904649734, 0.006184763740748167, 0.05883077159523964, 0.011992666870355606, 0.008501331321895123, 0.28056904673576355], [0.01389636006206274, 0.2612924575805664, 0.1891685575246811, 0.013017017394304276, 0.00388146610930562, 0.01795179955661297, 0.007501694839447737, 0.006427280139178038, 0.13973206281661987], [0.008264562115073204, 0.0020955554209649563, 0.004778152797371149, 0.005036917049437761, 0.0038053111638873816, 0.01529700681567192, 0.005853740964084864, 0.002864048583433032, 0.39063626527786255], [0.008076338097453117, 0.003289994318038225, 0.012813783250749111, 0.0028527146205306053, 0.0031428243964910507, 0.040546756237745285, 0.0036880800034850836, 0.0013141152448952198, 0.39437147974967957], [0.0015492504462599754, 0.0022451216354966164, 0.027323711663484573, 0.0018424221780151129, 0.0004783851618412882, 0.0038252221420407295, 0.0009323082631453872, 0.0019342771265655756, 0.38407397270202637], [0.00311397947371006, 0.003953402396291494, 0.10373593121767044, 0.002683662809431553, 0.00041021895594894886, 0.011511394754052162, 0.0017577899852767587, 0.0016149088041856885, 0.3797663152217865], [0.008566826581954956, 0.004820035304874182, 0.10270403325557709, 0.027614807710051537, 0.010357152670621872, 0.04785694554448128, 0.007361290510743856, 0.004244815558195114, 0.3579777777194977], [0.00800420343875885, 0.004144016187638044, 0.015761403366923332, 0.001992602366954088, 0.002974899485707283, 0.011284622363746166, 0.0025480231270194054, 0.007330615539103746, 0.46702513098716736]], [[0.0012899106368422508, 0.0014286903897300363, 0.00028151809237897396, 0.0002843741967808455, 2.6972358682542108e-05, 0.00013084612146485597, 4.491140498430468e-05, 0.0002051533228950575, 0.27967092394828796], [0.0007588337175548077, 0.0010279363486915827, 0.0025828767102211714, 8.240942406700924e-05, 1.8693173842621036e-05, 9.753202175488696e-05, 6.6001052800857e-06, 0.00011051636829506606, 0.4346608519554138], [0.0009207585244439542, 0.00025215683854185045, 0.00014215118426363915, 7.439858018187806e-05, 2.3911999960546382e-05, 0.0001456388272345066, 8.773212175583467e-05, 4.157734292675741e-05, 0.041626106947660446], [0.0006537518347613513, 0.00027108658105134964, 0.00011661239841487259, 0.00017735996516421437, 1.6529331333003938e-05, 0.0005820655496791005, 2.5977740733651444e-05, 8.661939500598237e-05, 0.07484365999698639], [0.0011331927962601185, 0.0008856852073222399, 0.0003775305231101811, 0.00017986708553507924, 2.373816641920712e-05, 0.000122232420835644, 0.00010523421224206686, 0.0001699059794191271, 0.34300947189331055], [0.001784972962923348, 0.0010175504721701145, 0.0019429970998317003, 0.0005001031677238643, 6.0668273363262415e-05, 0.0004930826253257692, 9.65116560109891e-05, 0.00031560324714519083, 0.37393417954444885], [0.0009639525087550282, 0.006386091932654381, 0.0012288535945117474, 0.0006315894424915314, 0.00011385047400835901, 0.0006355810328386724, 0.0001658378168940544, 0.0002279883046867326, 0.39411845803260803], [0.015386379323899746, 0.01851164735853672, 0.014620572328567505, 0.006580662913620472, 0.00470785703510046, 0.004902621731162071, 0.003557579591870308, 0.009431354701519012, 0.4165700674057007]], [[0.0017501875991001725, 0.008840775117278099, 0.028043758124113083, 0.031723182648420334, 0.009798775427043438, 0.013512959703803062, 0.003650103695690632, 0.010985199362039566, 0.41752153635025024], [0.00284730177372694, 0.013878148049116135, 0.17281247675418854, 0.00869311485439539, 0.00299784354865551, 0.010952113196253777, 0.0032772806007415056, 0.006277928594499826, 0.33355259895324707], [0.014402853325009346, 0.0066318204626441, 0.06104583293199539, 0.007202048320323229, 0.012211530469357967, 0.07296831160783768, 0.00637474050745368, 0.006198493298143148, 0.3520578444004059], [0.017481131479144096, 0.011335554532706738, 0.20226339995861053, 0.005008322186768055, 0.004057300742715597, 0.04900494962930679, 0.007772776763886213, 0.0037359201814979315, 0.2660984694957733], [0.013568823225796223, 0.006216733250766993, 0.11433801800012589, 0.0025357038248330355, 0.0010122503153979778, 0.013036418706178665, 0.0015781839611008763, 0.003966239280998707, 0.35356152057647705], [0.01631595566868782, 0.0045090303756296635, 0.19948728382587433, 0.005116892978549004, 0.0019825510680675507, 0.0364498496055603, 0.002869738033041358, 0.0038624706212431192, 0.2989121377468109], [0.014537427574396133, 0.035470303148031235, 0.06111142784357071, 0.022311337292194366, 0.010467912070453167, 0.056074269115924835, 0.011992115527391434, 0.053276047110557556, 0.31310322880744934], [0.05304360017180443, 0.03713420405983925, 0.048477653414011, 0.02553393691778183, 0.02128525823354721, 0.030364230275154114, 0.020786810666322708, 0.06785456091165543, 0.23367692530155182]], [[0.0003162229841109365, 0.0005452186451293528, 0.00018235394963994622, 2.0276085706427693e-05, 1.4840428775642067e-05, 6.071090410841862e-06, 4.924350378132658e-06, 9.694212167232763e-06, 0.23698459565639496], [0.002815808169543743, 0.00027634910657070577, 8.259742753580213e-05, 4.025722955702804e-05, 5.677327408193378e-06, 9.242954547517002e-06, 1.3219652146290173e-06, 3.0146355129545555e-05, 0.2824788987636566], [0.0001613196509424597, 0.00015652301954105496, 0.00022793607786297798, 9.761581168277189e-06, 1.6123145542223938e-05, 1.0778161595226265e-05, 2.1070418654289824e-07, 3.25007476931205e-06, 0.034072209149599075], [0.0011209776857867837, 7.069364073686302e-05, 2.443575249344576e-05, 4.715206887340173e-05, 1.1577607210710994e-06, 1.985137350857258e-05, 7.195953344307782e-08, 2.5476107111899182e-05, 0.03079245053231716], [0.0028630648739635944, 0.0003615134337451309, 0.0005932210478931665, 7.836609438527375e-05, 1.48615808939212e-05, 5.582963422057219e-05, 5.609221261693165e-05, 0.00017876076162792742, 0.12457794696092606], [0.0020121426787227392, 0.0004418434400577098, 0.0004007595998700708, 7.266362081281841e-05, 1.1482536137918942e-05, 3.289573942311108e-05, 7.671415914956015e-06, 0.00011622636520769447, 0.27430617809295654], [6.147086241981015e-05, 7.92171704233624e-05, 6.8173344516253565e-06, 3.0592286748287734e-06, 1.7755475028025103e-06, 4.146075411881611e-07, 2.066401449951627e-08, 3.991208359366283e-06, 0.4962970018386841], [0.005202671512961388, 0.012121658772230148, 0.006360610015690327, 0.004695909563452005, 0.0010616891086101532, 0.0023953637573868036, 0.0008446436258964241, 0.00224735913798213, 0.47433656454086304]], [[0.0042145587503910065, 0.0010441363556310534, 0.0006377632962539792, 0.0011667822254821658, 0.0010258278343826532, 0.0005677206791006029, 3.2791085686767474e-05, 0.0011144705349579453, 0.2470298409461975], [0.0034249979071319103, 0.000506819284055382, 0.00038873654557392, 0.00021361271501518786, 0.00014307523088064045, 0.00011555873788893223, 1.228543624165468e-05, 0.001233634422533214, 0.24699576199054718], [0.0035930986050516367, 0.000839382701087743, 0.00038004014641046524, 0.00031339217093773186, 0.0003435770922806114, 0.0002344125387025997, 4.8426983994431794e-05, 0.0013733734376728535, 0.28140950202941895], [0.008248011581599712, 0.001164585235528648, 0.000787003489676863, 0.0013185007264837623, 0.0005290344706736505, 0.0005944612203165889, 0.00019232532940804958, 0.003563093952834606, 0.21334154903888702], [0.008838209323585033, 0.0009578358149155974, 0.0006026042974554002, 0.0005058144452050328, 0.0003895729314535856, 0.00021828866738360375, 9.7125448519364e-05, 0.0036123190075159073, 0.31504592299461365], [0.009858655743300915, 0.0006366753368638456, 0.0008422978571616113, 0.0005318766343407333, 0.00026757846353575587, 0.00014633627142757177, 4.972214446752332e-05, 0.0026745321229100227, 0.3385658860206604], [0.001805409207008779, 0.0008551637874916196, 0.0003144161310046911, 0.00035307041252963245, 0.0002351838193135336, 0.0002557503175921738, 6.508798833237961e-05, 0.0007884406368248165, 0.44601312279701233], [0.010171118192374706, 0.013675413094460964, 0.007990268059074879, 0.009264682419598103, 0.005918261595070362, 0.006664508022367954, 0.005044593475759029, 0.02332248166203499, 0.4234662353992462]], [[0.04220651835203171, 0.002967719454318285, 0.0013663778081536293, 0.012281054630875587, 0.0016574827022850513, 0.004034803248941898, 0.0004788103105966002, 0.009097910486161709, 0.3218281865119934], [0.07389518618583679, 0.02702295035123825, 0.00906301662325859, 0.006894672755151987, 0.0012193075381219387, 0.0018576144939288497, 0.0005177877028472722, 0.004382263869047165, 0.20492593944072723], [0.036650121212005615, 0.0035245295148342848, 0.0021447516046464443, 0.005979917943477631, 0.007065457291901112, 0.006401651073247194, 0.0012935495469719172, 0.0033250292763113976, 0.2875789999961853], [0.023842820897698402, 0.0061490521766245365, 0.005258009769022465, 0.0035124272108078003, 0.0053131962195038795, 0.018536686897277832, 0.0030191775877028704, 0.005316915921866894, 0.2628737986087799], [0.034894365817308426, 0.002716735005378723, 0.0049328734166920185, 0.004232902079820633, 0.0011289374670013785, 0.007285014260560274, 0.001031046500429511, 0.002013083314523101, 0.3236958384513855], [0.03478550165891647, 0.002006437862291932, 0.003205270040780306, 0.001726489164866507, 0.00032062374521046877, 0.0034780981950461864, 0.0008909434545785189, 0.0019548924174159765, 0.33229196071624756], [0.01941808871924877, 0.003352021798491478, 0.001101992791518569, 0.007002298254519701, 0.0003007906780112535, 0.0019097430631518364, 0.001869277679361403, 0.006612168624997139, 0.3788433372974396], [0.02468899078667164, 0.019475648179650307, 0.01713993400335312, 0.013175126165151596, 0.008375738747417927, 0.015332572162151337, 0.005559501703828573, 0.01896260306239128, 0.3974204659461975]], [[0.007248852401971817, 0.0006536538130603731, 0.00027366416179575026, 0.0010001006303355098, 0.0004254161030985415, 0.0003303191333543509, 6.740252138115466e-05, 0.0005658965674228966, 0.20623686909675598], [0.007227039895951748, 0.0008173251408152282, 0.0006482942844741046, 0.00023533531930297613, 0.00015515927225351334, 0.00033517213887535036, 5.904723366256803e-05, 0.0008556207176297903, 0.23546801507472992], [0.0020861823577433825, 0.0005855682538822293, 0.0002817694912664592, 0.0002902026171796024, 0.0008734660805203021, 0.0004221069975756109, 0.00010047149407910183, 0.0005499849794432521, 0.1790439933538437], [0.002612813375890255, 0.0009280943777412176, 0.0006409710622392595, 0.0012536129215732217, 0.0016723297303542495, 0.001090942183509469, 0.00018335638742428273, 0.0005617794231511652, 0.07714205980300903], [0.018478814512491226, 0.0011746564414352179, 0.0015585775254294276, 0.000332654919475317, 0.0003404796589165926, 0.0008957167738117278, 0.00015863262524362653, 0.0010032805148512125, 0.2193526327610016], [0.01483730599284172, 0.0006593500729650259, 0.0008523913566023111, 0.00026163633447140455, 0.0007682826835662127, 0.0011232589604333043, 0.00022558816999662668, 0.0007851230911910534, 0.24282337725162506], [0.008819248527288437, 0.0011423503747209907, 0.0020832931622862816, 0.0010823191842064261, 0.0007126519922167063, 0.0011981941061094403, 0.0009082540054805577, 0.0005889273015782237, 0.336907297372818], [0.0186923835426569, 0.01690245233476162, 0.014929926954209805, 0.007862180471420288, 0.0042130774818360806, 0.006667010486125946, 0.003520797472447157, 0.009226231835782528, 0.38489478826522827]], [[0.001039639231748879, 0.00066462840186432, 0.0003141103661619127, 0.0003110688121523708, 5.037196024204604e-05, 5.567113112192601e-05, 6.031482917023823e-05, 0.00020879422663711011, 0.4536387622356415], [0.005417697597295046, 0.001244330545887351, 0.00045445087016560137, 0.00025911355623975396, 7.74667933001183e-05, 7.100872608134523e-05, 3.109538965873071e-06, 0.0002748302067629993, 0.45596230030059814], [0.0005341338110156357, 0.0005509090260602534, 0.00014135749370325357, 6.147487147245556e-05, 0.000654037925414741, 0.0001497407502029091, 9.764014976099133e-06, 5.7867619034368545e-05, 0.15545834600925446], [0.00589332077652216, 0.001838227966800332, 0.00035328068770468235, 0.0008550429483875632, 0.00031401694286614656, 0.0009424583404324949, 2.2615948182647116e-05, 0.0007348060607910156, 0.3383333086967468], [0.003046461148187518, 0.0006254838081076741, 0.00031666524591855705, 0.0002944391162600368, 7.619494863320142e-05, 0.00042745916289277375, 0.0008550071506761014, 0.00016449196846224368, 0.434641033411026], [0.004372192081063986, 0.0008403134997934103, 0.00048056451487354934, 0.0006669890717603266, 0.00011491409532027319, 0.00020409106218721718, 0.0002397648204350844, 0.0005446789436973631, 0.44790083169937134], [0.0005076297675259411, 0.0003180759958922863, 0.00014328464749269187, 4.1302351746708155e-05, 6.657034828094766e-05, 7.083241507643834e-05, 3.6509957226371625e-06, 0.00012765530846081674, 0.48913514614105225], [0.016727419570088387, 0.021148066967725754, 0.006418176926672459, 0.00743089010939002, 0.002662388375028968, 0.004726768005639315, 0.0022881985642015934, 0.00873578991740942, 0.4442789554595947]], [[0.0050188470631837845, 0.0002915015793405473, 0.00023480033269152045, 0.0006145444931462407, 0.00025124227977357805, 0.00018362949776928872, 0.00015460331633221358, 0.005477811209857464, 0.4828645884990692], [0.006460617296397686, 0.0012748385779559612, 0.00016554942703805864, 0.00031482777558267117, 0.00018507674394641072, 0.0002885719295591116, 4.4775377318728715e-05, 0.0008923065033741295, 0.42102834582328796], [0.0026999281253665686, 0.00026880137738771737, 0.00017479014059063047, 0.00014111267228145152, 9.407080506207421e-05, 3.429561184020713e-05, 5.40986047781189e-06, 0.0005949672777205706, 0.4694885015487671], [0.0034246710129082203, 0.0005615180125460029, 0.000610478047747165, 0.0011244489578530192, 0.00014604648458771408, 5.383366806199774e-05, 2.5323708541691303e-05, 0.0017176289111375809, 0.4572793245315552], [0.002563945949077606, 0.00047227853792719543, 0.0012528554070740938, 0.00033863491262309253, 0.00013920357741881162, 6.576144369319081e-05, 1.2760151548718568e-05, 0.00013825444329995662, 0.4418810307979584], [0.002857710001990199, 0.0004494079330470413, 0.0005151801742613316, 0.0002472929481882602, 9.285211126552895e-05, 6.0330894484650344e-05, 4.444272053660825e-05, 0.0004616081132553518, 0.42209476232528687], [0.0024459820706397295, 0.0003664670221041888, 0.00022018687741365284, 0.00020101053814869374, 7.080255454638973e-05, 0.00013722095172852278, 8.841782255331054e-05, 0.0007888933760114014, 0.4634504020214081], [0.02457481063902378, 0.010203752666711807, 0.012434737756848335, 0.008004684001207352, 0.005903394427150488, 0.00911440048366785, 0.007329131942242384, 0.010916314087808132, 0.4171464145183563]], [[0.003252732567489147, 0.001031869906000793, 0.00011463941336842254, 0.0001942763919942081, 0.0002165366749977693, 0.0007036080351099372, 0.0007079083006829023, 0.4053356647491455, 0.2332354336977005], [0.0006034534890204668, 0.0018712034216150641, 0.00013304398453328758, 0.0002786715922411531, 2.8423986805137247e-05, 0.00024064678291324526, 5.6940584727271926e-06, 0.0010354567784816027, 0.05986001342535019], [0.0059765977784991264, 0.000524194270838052, 0.0002881841210182756, 0.0003286635037511587, 4.3188923882553354e-05, 6.399136964319041e-06, 2.1653295334544964e-06, 0.0001395211584167555, 0.2144690901041031], [0.0015593486605212092, 0.0005676263244822621, 0.0001093849350581877, 0.0004160494136158377, 6.473961548181251e-05, 1.101725865737535e-05, 3.079825603435893e-07, 0.00017149228369817138, 0.08103245496749878], [0.001838727155700326, 0.0003195495519321412, 0.0004254066734574735, 0.0001387432566843927, 0.00031990231946110725, 1.268110099772457e-05, 2.8119807211623993e-06, 5.5413551308447495e-05, 0.051038116216659546], [0.003990883473306894, 0.0007089286809787154, 0.001718937768600881, 0.00024039673735387623, 0.0001616957742953673, 0.00010392876720288768, 1.709900243440643e-05, 0.000396753748646006, 0.1947663128376007], [0.0023730352986603975, 0.001130700926296413, 0.004566582851111889, 0.000842994952108711, 9.885642793960869e-05, 0.0027004461735486984, 0.0012006893521174788, 0.0014957990497350693, 0.16556678712368011], [0.01220922265201807, 0.011317525990307331, 0.006292174104601145, 0.003991291858255863, 0.003126810770481825, 0.008478366769850254, 0.0020465741399675608, 0.013959069736301899, 0.4476650059223175]], [[0.020283760502934456, 0.008238658308982849, 0.00964807253330946, 0.010557932779192924, 0.005391087848693132, 0.24193178117275238, 0.014401191845536232, 0.03575732931494713, 0.15041330456733704], [0.004184054210782051, 0.3481873869895935, 0.42574769258499146, 0.005593194160610437, 0.00118062028195709, 0.002844767179340124, 0.0020074776839464903, 0.002557175699621439, 0.018180372193455696], [0.010354574769735336, 0.006637608632445335, 0.010179916396737099, 0.011776612140238285, 0.009650168009102345, 0.08078241348266602, 0.034377872943878174, 0.03934403136372566, 0.2453005462884903], [0.03475775942206383, 0.003283452009782195, 0.0074998075142502785, 0.0038045400287956, 0.007586288265883923, 0.05190139263868332, 0.010764279402792454, 0.010243196971714497, 0.13020431995391846], [0.01877177134156227, 0.003274571383371949, 0.004848450887948275, 0.002747440943494439, 0.003594530513510108, 0.015208389610052109, 0.003513134317472577, 0.012410419061779976, 0.14927075803279877], [0.021789737045764923, 0.003158853854984045, 0.007846553809940815, 0.0029973729979246855, 0.004203712567687035, 0.02625352330505848, 0.0038595679216086864, 0.01715152896940708, 0.14619556069374084], [0.034868333488702774, 0.014031435362994671, 0.006361465901136398, 0.010672181844711304, 0.015724845230579376, 0.0812961533665657, 0.013889340683817863, 0.1020364910364151, 0.1819848120212555], [0.05576321855187416, 0.03638318553566933, 0.057337719947099686, 0.033809397369623184, 0.02530876360833645, 0.03488156199455261, 0.0330699197947979, 0.06335695087909698, 0.22903399169445038]]], [[[0.026824219152331352, 0.024535151198506355, 0.032377954572439194, 0.06428729742765427, 0.05188821628689766, 0.06091118976473808, 0.005562410224229097, 0.07729799300432205, 0.2642455995082855], [0.02811388112604618, 0.1908879280090332, 0.10133616626262665, 0.06870381534099579, 0.01579757034778595, 0.02287447638809681, 0.0036996754352003336, 0.04725593701004982, 0.13034150004386902], [0.03820781409740448, 0.013281067833304405, 0.012624234892427921, 0.020400894805788994, 0.030536005273461342, 0.09677345305681229, 0.009445511735975742, 0.027323702350258827, 0.13141368329524994], [0.07273712754249573, 0.024743838235735893, 0.03470733389258385, 0.0245047640055418, 0.01619902066886425, 0.07490096241235733, 0.009171618148684502, 0.03618757054209709, 0.07154164463281631], [0.0283042024821043, 0.011317034251987934, 0.02489718608558178, 0.015414466150105, 0.0015972380060702562, 0.028210356831550598, 0.0049884323962032795, 0.02013750746846199, 0.14350950717926025], [0.03766375407576561, 0.021850580349564552, 0.04736213758587837, 0.02441374585032463, 0.001717879087664187, 0.020973367616534233, 0.006252184975892305, 0.018372710794210434, 0.1686561405658722], [0.04237581044435501, 0.034525468945503235, 0.01796027459204197, 0.07954207062721252, 0.005555150099098682, 0.011201413348317146, 0.004228738136589527, 0.03591584041714668, 0.23428994417190552], [0.019834494218230247, 0.008578206412494183, 0.014228561893105507, 0.009924551472067833, 0.010270298458635807, 0.009148378856480122, 0.005743163637816906, 0.018999049440026283, 0.4201512038707733]], [[0.030517419800162315, 0.0017176135443150997, 0.004947955720126629, 0.0203742366284132, 0.002899325918406248, 0.0026137458626180887, 0.0012104575289413333, 0.03256400674581528, 0.40427279472351074], [0.00934809073805809, 0.011453364044427872, 0.0036958991549909115, 0.0031375307589769363, 0.0008310616249218583, 0.00158501707483083, 0.00016332736413460225, 0.01181812584400177, 0.295293927192688], [0.009084653109312057, 0.0006854653474874794, 0.0005500874249264598, 0.0018192435381934047, 0.0005331854335963726, 0.0003550722321961075, 0.0001159801977337338, 0.0018130653770640492, 0.34873291850090027], [0.0053117056377232075, 0.00025196128990501165, 0.00045175079139880836, 0.001449344796128571, 0.0004991032183170319, 0.0003659848007373512, 3.623289376264438e-05, 0.0008738187607377768, 0.3923167288303375], [0.0014845877885818481, 0.00020282679179217666, 0.0004995363997295499, 0.00012627163960132748, 7.107922283466905e-05, 0.0002511218190193176, 3.331775587867014e-05, 0.00013318117999006063, 0.38176634907722473], [0.0025338674895465374, 0.00031027416116558015, 0.0005934437504038215, 0.00026551485643722117, 0.0002827864373102784, 0.0005936676752753556, 7.575721974717453e-05, 0.00022718444233760238, 0.3242541551589966], [0.008402728475630283, 0.0018791983602568507, 0.002023938577622175, 0.0016244550934061408, 0.000734977365937084, 0.0017260321183130145, 0.00037761463318020105, 0.005386863369494677, 0.23020325601100922], [0.011424877680838108, 0.009034248068928719, 0.01216176524758339, 0.015556448139250278, 0.008996876887977123, 0.011022094637155533, 0.003387703327462077, 0.012043501250445843, 0.4373071491718292]], [[0.013733774423599243, 0.009574252180755138, 0.008746680803596973, 0.008951568976044655, 0.0027222868520766497, 0.024615788832306862, 0.002326545538380742, 0.0062681217677891254, 0.21995943784713745], [0.004843204747885466, 0.0336439311504364, 0.06470245867967606, 0.06942503899335861, 0.005320457741618156, 0.030456779524683952, 0.0027195822913199663, 0.01646280847489834, 0.09513810276985168], [0.0061147394590079784, 0.009982898831367493, 0.008776696398854256, 0.006483661476522684, 0.01151349488645792, 0.19783256947994232, 0.003573478665202856, 0.006222090683877468, 0.09631194919347763], [0.0029577920213341713, 0.006268859375268221, 0.020655956119298935, 0.0010027632815763354, 0.003831166308373213, 0.12467428296804428, 0.0014100599801167846, 0.0011361995711922646, 0.2098654806613922], [0.006022319663316011, 0.010365533642470837, 0.022541331127285957, 0.0010288951452821493, 0.0013846724759787321, 0.03282004967331886, 0.0010796115966513753, 0.0019692357163876295, 0.4094730019569397], [0.005099293310195208, 0.006434600334614515, 0.014146889559924603, 0.0011425132397562265, 0.0007825923967175186, 0.022038228809833527, 0.0009783431887626648, 0.0014403992099687457, 0.4417753219604492], [0.00424864050000906, 0.018053347244858742, 0.014590892009437084, 0.006673718336969614, 0.006026660092175007, 0.07573217898607254, 0.010383738204836845, 0.005573029164224863, 0.28597158193588257], [0.0020503560081124306, 0.0018381867557764053, 0.006066328380256891, 0.0019284342415630817, 0.0013502700021490455, 0.006877555977553129, 0.0007384041091427207, 0.0024629896506667137, 0.4845215678215027]], [[0.003284159814938903, 0.001018995768390596, 0.001203836058266461, 0.0016154367476701736, 0.0017419243231415749, 0.003985143266618252, 0.0003202772350050509, 0.0009198729530908167, 0.4503265917301178], [0.002434982219710946, 0.0002808681165333837, 0.0006167256506159902, 0.0015070175286382437, 0.00026110096951015294, 0.00045292111462913454, 0.0001414354337612167, 0.0028285107109695673, 0.122406966984272], [0.0013778489083051682, 0.00036587839713320136, 0.00036740044015459716, 0.0003835103998426348, 0.0004604478308465332, 0.0003604190133046359, 0.00010386012581875548, 0.0005261037149466574, 0.4114050567150116], [0.002003398025408387, 0.0005276554729789495, 0.0002911758201662451, 0.0014142632717266679, 6.888956704642624e-05, 0.0006521879695355892, 1.5909998182905838e-05, 0.0005114514497108757, 0.3222295939922333], [0.002857973799109459, 0.0010368343209847808, 0.0007925468380562961, 0.000811257166787982, 0.00016788629000075161, 0.0005031348555348814, 0.0003956520522478968, 0.000386344559956342, 0.21825887262821198], [0.0033068566117435694, 0.0004578383232001215, 0.00046508637024089694, 0.000969412038102746, 0.00020914622291456908, 0.0002484262513462454, 0.00012482100282795727, 0.0009671279112808406, 0.3901226222515106], [0.0011034932686015964, 0.00041215107194148004, 0.0003774958022404462, 0.0010573997860774398, 0.00021009071497246623, 0.0011409358121454716, 0.00012127727677579969, 0.0006731980829499662, 0.4345414340496063], [0.005336220841854811, 0.0033057851251214743, 0.010103982873260975, 0.006290243938565254, 0.0054209367372095585, 0.009648711420595646, 0.001973511418327689, 0.0021955694537609816, 0.45624688267707825]], [[0.011694489046931267, 0.0035602026619017124, 0.0014882980613037944, 0.001248420448973775, 0.008290162310004234, 0.05803222954273224, 0.00529091339558363, 0.004606747999787331, 0.40420520305633545], [0.0017565799644216895, 0.0016134293982759118, 0.0027119028382003307, 0.000956268107984215, 0.0012822869466617703, 0.009463975206017494, 0.0012486862251535058, 0.0025284753646701574, 0.45313942432403564], [0.011386871337890625, 0.002111377427354455, 0.000706756953150034, 0.0013555969344452024, 0.0011755507439374924, 0.0006833676598034799, 0.0002750402200035751, 0.002838957356289029, 0.325282484292984], [0.006476139649748802, 0.0008783658850006759, 0.0005277867894619703, 0.00039031635969877243, 0.0004664714797399938, 0.0007430788828060031, 8.506329322699457e-05, 0.0007464757072739303, 0.16273601353168488], [0.008416908793151379, 0.0013125152327120304, 0.0007978067151270807, 0.0002654278068803251, 0.0002587765920907259, 0.0005732472636736929, 0.0001422864879714325, 0.0010867429664358497, 0.18285620212554932], [0.005189163610339165, 0.0006860109278932214, 0.0006969798705540597, 0.0001929131685756147, 0.00023091590264812112, 0.0004794131964445114, 6.954477430554107e-05, 0.001333426684141159, 0.11603162437677383], [0.006338529754430056, 0.00722100492566824, 0.001404008362442255, 0.0005628236103802919, 0.002245223382487893, 0.0029457947239279747, 8.703795174369588e-05, 0.003137916326522827, 0.1470586508512497], [0.014840803109109402, 0.013255669735372066, 0.01613742485642433, 0.011793873272836208, 0.005963553674519062, 0.008214526809751987, 0.00497058080509305, 0.0046472446992993355, 0.4087449610233307]], [[0.00045986881013959646, 0.00023576388775836676, 0.0013989780563861132, 0.00010590633610263467, 0.0004886252572759986, 0.016101066023111343, 0.00040648257709108293, 0.0001501672377344221, 0.10604394972324371], [0.0004179886309430003, 0.0002866630384232849, 0.007188134361058474, 4.7599485696991906e-05, 0.0002682063786778599, 0.002377929165959358, 0.00022887489467393607, 0.0003644666576292366, 0.2808360755443573], [0.002286522416397929, 0.0004298420390114188, 0.004341352265328169, 1.834712384152226e-05, 3.2181233109440655e-05, 0.0025266497395932674, 5.141443034517579e-05, 0.00014303512580227107, 0.2495524287223816], [0.00038123567355796695, 9.707362187327817e-05, 0.0037924812640994787, 6.3657971622888e-06, 7.5434822974784765e-06, 0.001650141435675323, 9.586333362676669e-06, 3.309451130917296e-05, 0.25731226801872253], [0.00010912123980233446, 1.460025850974489e-05, 0.0005517355748452246, 7.672455240026466e-07, 6.79503386891156e-07, 6.506004137918353e-05, 3.4186251696155523e-07, 9.851538379734848e-06, 0.4753793478012085], [0.00048527796752750874, 4.1633076762082055e-05, 0.0012162142666056752, 4.105159405298764e-06, 2.70862892648438e-06, 0.00017066102009266615, 2.098478944390081e-06, 3.438854037085548e-05, 0.4711749851703644], [0.0006318666273728013, 0.00035305492929182947, 0.005681788083165884, 3.624396049417555e-05, 9.087371290661395e-05, 0.00661341892555356, 0.00013336549454834312, 0.00014994664525147527, 0.31037285923957825], [0.0008743352955207229, 0.0006069379160180688, 0.0023802067153155804, 0.00030366468126885593, 0.00041568270535208285, 0.00295811053365469, 0.00021453610679600388, 0.00047938781790435314, 0.48947224020957947]], [[0.00242200237698853, 0.0006884213071316481, 0.0010571640450507402, 0.0002763421507552266, 0.00018616033776197582, 0.0003920215822290629, 1.3083158592053223e-05, 0.0003109037643298507, 0.40929940342903137], [0.004388017579913139, 0.002366981701925397, 0.03622645512223244, 0.0009531985269859433, 0.0002512405626475811, 0.0004244873416610062, 4.269340570317581e-05, 0.0003534597344696522, 0.37502631545066833], [0.0009547278750687838, 0.0002353080635657534, 0.0006676624761894345, 6.409281195374206e-05, 0.00014516402734443545, 0.0009299312951043248, 6.701538222841918e-05, 0.00026237909332849085, 0.35412874817848206], [0.002919350517913699, 0.00014477870718110353, 0.0002495268709026277, 9.211659198626876e-05, 8.105031156446785e-05, 0.00046425312757492065, 3.639682472567074e-05, 0.0002960775454994291, 0.266645222902298], [0.0057327416725456715, 0.00039516514516435564, 0.0010263306321576238, 9.072724787984043e-05, 9.439009591005743e-05, 8.05477102403529e-05, 2.011364631471224e-05, 0.0004609979805536568, 0.3992825448513031], [0.009527510963380337, 0.0007869577966630459, 0.002823961665853858, 0.00030767550924792886, 0.00032794426078908145, 0.00022554697352461517, 4.873703437624499e-05, 0.0006668545538559556, 0.36844947934150696], [0.0030902656726539135, 0.0009195098537020385, 0.002098046476021409, 0.00016877925372682512, 0.0001234145020134747, 0.00043374343658797443, 4.0177517803385854e-05, 0.0005335178575478494, 0.40975987911224365], [0.011872228235006332, 0.01052071899175644, 0.015665380284190178, 0.004193538334220648, 0.002381826750934124, 0.005071197170764208, 0.0007656891830265522, 0.006987031549215317, 0.44931381940841675]], [[0.00846025999635458, 0.0019214152125641704, 0.0017327957320958376, 0.00046790350461378694, 0.00016445685469079763, 0.0004813381237909198, 1.4800290955463424e-05, 0.001295703579671681, 0.27926596999168396], [0.005607645493000746, 0.000500095309689641, 0.0006661454099230468, 0.00041022986988537014, 0.00019211370090488344, 0.0011753732105717063, 0.00010459329496370628, 0.0005150376819074154, 0.10101576894521713], [0.0031953253783285618, 0.0001699210552033037, 0.0005718045867979527, 5.319255433278158e-05, 0.00010029536497313529, 0.00025709191686473787, 1.1546352652658243e-05, 0.0005885058199055493, 0.29203155636787415], [0.006303438451141119, 0.0004736166447401047, 0.0006107649533078074, 0.000232794918701984, 0.00021594610007014126, 0.0007799601880833507, 3.803833169513382e-05, 0.0018736189231276512, 0.26635947823524475], [0.0038487864658236504, 0.00015592215640936047, 0.00042468926403671503, 3.970479156123474e-05, 8.894040365703404e-05, 0.00016048956604208797, 8.422052815149073e-06, 0.00034785515163093805, 0.2874422073364258], [0.004141564015299082, 0.00011860784434247762, 0.0004029510309919715, 4.821887705475092e-05, 0.00014665107300970703, 0.0002101055288221687, 1.4009598999109585e-05, 0.00042269821278750896, 0.3891921639442444], [0.0035496836062520742, 0.00017536882660351694, 0.00031609530560672283, 0.00013904485967941582, 0.0001091164376703091, 0.00018140740576200187, 2.416700590401888e-05, 0.0004794143605977297, 0.2794491946697235], [0.011221363209187984, 0.0058611370623111725, 0.016246208921074867, 0.0066537074744701385, 0.0024400674737989902, 0.005121526774019003, 0.0018985304050147533, 0.005926494486629963, 0.4392649233341217]], [[0.007197539787739515, 0.23467621207237244, 0.013682407326996326, 0.015267045237123966, 0.003186084097251296, 0.021842489019036293, 0.012569568119943142, 0.027540503069758415, 0.3220365345478058], [0.0019134434405714273, 0.8684930205345154, 0.013678018003702164, 0.008373302407562733, 0.000564310816116631, 0.001247801585122943, 0.00232503330335021, 0.015443975105881691, 0.040955789387226105], [0.013910728506743908, 0.042021580040454865, 0.016952531412243843, 0.03136570006608963, 0.014598763547837734, 0.1592356562614441, 0.015181680209934711, 0.022869009524583817, 0.31176286935806274], [0.01881362870335579, 0.11324555426836014, 0.04581518471240997, 0.006511281244456768, 0.0021469241473823786, 0.018125640228390694, 0.004843913950026035, 0.032868269830942154, 0.3230080008506775], [0.022907566279172897, 0.06779477745294571, 0.029140233993530273, 0.003092866623774171, 0.0005785891553387046, 0.005700143054127693, 0.0015060430159792304, 0.031208284199237823, 0.3441377282142639], [0.03022623248398304, 0.06777824461460114, 0.04176308959722519, 0.008315070532262325, 0.0011556034442037344, 0.014348349533975124, 0.004499042872339487, 0.04966636374592781, 0.33269402384757996], [0.006955794524401426, 0.17732207477092743, 0.01780001074075699, 0.0211767740547657, 0.0011854704935103655, 0.02470485307276249, 0.004915482830256224, 0.06268854439258575, 0.2819146513938904], [0.005663195159286261, 0.00195591920055449, 0.0039177704602479935, 0.0008304807706736028, 0.0008589510107412934, 0.0011833644239231944, 0.00021922329324297607, 0.004245697520673275, 0.4843338429927826]], [[0.3512765169143677, 0.014916264452040195, 0.021187733858823776, 0.0066393110901117325, 0.0036652141716331244, 0.011030099354684353, 0.0008259069290943444, 0.0042607784271240234, 0.23751099407672882], [0.39027178287506104, 0.05514398217201233, 0.09285689145326614, 0.0015682718949392438, 0.0006360787665471435, 0.0021107911597937346, 0.00022214429918676615, 0.005069678649306297, 0.19254492223262787], [0.04371083527803421, 0.004963824525475502, 0.00699589354917407, 0.0007851978880353272, 0.00011472513142507523, 0.0006069503724575043, 9.038080315804109e-05, 0.007394604850560427, 0.33151960372924805], [0.046981312334537506, 0.004018538165837526, 0.009274945594370365, 0.0004495770263019949, 0.00029229841311462224, 0.0009502055472694337, 8.165868348442018e-05, 0.002550405915826559, 0.27733877301216125], [0.04903415963053703, 0.0016058763721957803, 0.002727618906646967, 0.00013428492820821702, 8.316965977428481e-05, 0.00015778667875565588, 2.465477882651612e-05, 0.0011611670488491654, 0.31936269998550415], [0.04805561155080795, 0.001573901972733438, 0.00275638815946877, 0.00014177306729834527, 8.820529910735786e-05, 0.00014219914737623185, 2.893396776926238e-05, 0.0013406769139692187, 0.2199636995792389], [0.02694329060614109, 0.0038517338689416647, 0.005755877587944269, 0.0005134200328029692, 0.00020089467579964548, 0.0008437603246420622, 7.693852967349812e-05, 0.0016048187389969826, 0.05389372631907463], [0.0072292122058570385, 0.006797793321311474, 0.010727515444159508, 0.007966537028551102, 0.0075949616730213165, 0.014515780843794346, 0.002764822682365775, 0.008085415698587894, 0.449893057346344]], [[0.02605816349387169, 0.003016142174601555, 0.002690139226615429, 0.007562269456684589, 0.002303873421624303, 0.0036895438097417355, 0.0018773652845993638, 0.07105898857116699, 0.40488743782043457], [0.0035913274623453617, 0.0010720061836764216, 0.0010018488392233849, 0.0033355047926306725, 0.0001323146279901266, 0.003134104423224926, 0.0002547465555835515, 0.0032371242996305227, 0.3600497543811798], [0.0070548816584050655, 0.0023712152615189552, 0.001550803193822503, 0.003921508323401213, 0.006832292303442955, 0.0034315071534365416, 0.00039159043808467686, 0.002478585345670581, 0.44345492124557495], [0.0007552026654593647, 0.0005630005616694689, 0.0010447625536471605, 0.0016857271548360586, 0.0006955614662729204, 0.0016771393129602075, 2.3739517928333953e-05, 0.0006778514361940324, 0.43621811270713806], [0.0048145423643291, 0.0006659235223196447, 0.002118205651640892, 0.0002564437163528055, 0.0005792009178549051, 0.0019248262979090214, 7.794657722115517e-05, 0.001564805512316525, 0.42184388637542725], [0.0017860936932265759, 0.0003986872034147382, 0.0010466970270499587, 0.00010602938709780574, 0.00027892348589375615, 0.004014311823993921, 6.816748646087945e-05, 0.001171948853880167, 0.37222161889076233], [0.0012392906937748194, 0.000447441911092028, 0.0004849039833061397, 0.0001046251054503955, 2.6767898816615343e-05, 0.002990967594087124, 0.0007074871100485325, 0.0026994289364665747, 0.33472374081611633], [0.0034567664843052626, 0.004264825955033302, 0.011721509508788586, 0.0018094680272042751, 0.0011919555254280567, 0.01906663365662098, 0.001162043772637844, 0.007479685824364424, 0.4695979952812195]], [[0.030904555693268776, 0.005233855452388525, 0.005232740193605423, 0.006245039869099855, 0.002885732799768448, 0.0033345373813062906, 0.00021746174024883658, 0.007539806887507439, 0.320516973733902], [0.16324588656425476, 0.0377468541264534, 0.02225053496658802, 0.006403243634849787, 0.0011054535862058401, 0.001307761762291193, 0.0001230977795785293, 0.004360295366495848, 0.19181936979293823], [0.012014487758278847, 0.000724561745300889, 0.0014692392433062196, 0.001263819052837789, 0.0007874579168856144, 0.001040360308252275, 6.0711492551490664e-05, 0.0021830452606081963, 0.35230132937431335], [0.017622312530875206, 0.00336457509547472, 0.0030180918984115124, 0.0009081779280677438, 0.0008655793499201536, 0.0021538741420954466, 0.00027592063997872174, 0.0033041350543498993, 0.3011479079723358], [0.010676038451492786, 0.0018604862270876765, 0.00298200617544353, 0.0008635569247417152, 0.0008081691339612007, 0.0021948975045233965, 0.00016103209054563195, 0.003594336798414588, 0.2945776879787445], [0.009150904603302479, 0.0011663652257993817, 0.004386876709759235, 0.0006134104332886636, 0.00037297443486750126, 0.0016677802195772529, 0.00034677787334658206, 0.004496353212743998, 0.26944512128829956], [0.037863388657569885, 0.006062420085072517, 0.007003359496593475, 0.011017350479960442, 0.0006147028179839253, 0.0012180289486423135, 0.0007586687570437789, 0.008524162694811821, 0.19980841875076294], [0.01809459738433361, 0.01634572632610798, 0.022411169484257698, 0.009017257951200008, 0.0037496103905141354, 0.01253217738121748, 0.0015377674717456102, 0.007608179003000259, 0.4249314069747925]]], [[[0.012588928453624249, 0.0013544835383072495, 0.0015553359407931566, 0.0020706872455775738, 0.002199663547798991, 0.002492997096851468, 0.0010217223316431046, 0.05034833028912544, 0.44348299503326416], [0.007804046850651503, 0.004072785377502441, 0.008133047260344028, 0.0004669491318054497, 0.0002093572256853804, 0.002058142563328147, 0.0003444065514486283, 0.004300117492675781, 0.4514681100845337], [0.003393959952518344, 0.0005457264487631619, 0.0009249283466488123, 0.00021497557463590056, 0.0008176355040632188, 0.001818253193050623, 0.0004902033833786845, 0.0032263316679745913, 0.4439389407634735], [0.0018320564413443208, 0.0003716461651492864, 0.000324055552482605, 0.00014362945512402803, 0.00016216984658967704, 0.000514940416906029, 4.355606506578624e-05, 0.005368218291550875, 0.46559807658195496], [0.0014850726583972573, 0.00011802715744124725, 0.0008217638824135065, 0.00012065221380908042, 4.093854659004137e-05, 0.0005166061455383897, 0.00015953266120050102, 0.0008084694272838533, 0.37677836418151855], [0.003294230904430151, 0.00033279674244113266, 0.0007408987148664892, 0.000442603079136461, 0.00019620837701950222, 0.0004491563013289124, 0.0001495390315540135, 0.0019639015663415194, 0.41839131712913513], [0.006158680655062199, 0.00310391653329134, 0.0015586575027555227, 0.0006172744906507432, 0.0008120969287119806, 0.0013164085103198886, 0.0003573308349587023, 0.00891830213367939, 0.45797470211982727], [0.007743419613689184, 0.009110390208661556, 0.012174246832728386, 0.007811848074197769, 0.005725608207285404, 0.007207364309579134, 0.0025142175145447254, 0.012147991918027401, 0.4359967112541199]], [[0.01588812656700611, 0.0010315702529624104, 0.008586847223341465, 0.0009884057799354196, 0.0003435119579080492, 0.002630555536597967, 0.00039102384471334517, 0.003894477616995573, 0.2348274141550064], [0.009342451579868793, 0.05607994645833969, 0.510791003704071, 0.006808256730437279, 0.001141824177466333, 0.004852733574807644, 0.0011920402757823467, 0.01898159086704254, 0.143728569149971], [0.0028723059222102165, 0.0014120596460998058, 0.009227815084159374, 0.003988068085163832, 0.02966693788766861, 0.011397862806916237, 0.0005270162364467978, 0.006430366076529026, 0.38929644227027893], [0.0012272599851712584, 7.144422852434218e-05, 0.010025410912930965, 0.00013270610361360013, 0.0004065584216732532, 0.0015950807137414813, 0.00019645580323413014, 0.00124370155390352, 0.4234521985054016], [0.0008392810705117881, 5.2232524467399344e-05, 0.02096264623105526, 1.680667446635198e-05, 3.6571407690644264e-05, 0.00014054466737434268, 9.94121000985615e-06, 0.0002865015994757414, 0.35948604345321655], [0.0017474531196057796, 0.00022035287111066282, 0.02963101491332054, 0.00011886267748195678, 7.718217239016667e-05, 0.0004676202079281211, 8.743834041524678e-05, 0.0010765993501991034, 0.3383174538612366], [0.021908197551965714, 0.00498328497633338, 0.019608203321695328, 0.004583290778100491, 0.001847091712988913, 0.004265143536031246, 0.0009079720475710928, 0.011341296136379242, 0.2740553319454193], [0.00017185213800985366, 0.00021722384553868324, 0.0034548414405435324, 0.00024097792629618198, 0.00011669990635709837, 0.0009680627845227718, 0.00010301864676875994, 0.0017863840330392122, 0.49419182538986206]], [[0.0008159451535902917, 0.0019716641400009394, 0.0015863175503909588, 0.0014490805333480239, 0.01784668304026127, 0.015122092328965664, 0.002642808947712183, 0.0014867791905999184, 0.3657147288322449], [0.0002842471585609019, 0.0003834663948509842, 0.030082153156399727, 0.0004621845728252083, 0.0024098469875752926, 0.0069940234534442425, 0.00021518887660931796, 0.0013230638578534126, 0.45084455609321594], [0.00039180953172035515, 0.0003424776077736169, 0.0009246414410881698, 0.0003522321640048176, 0.0026745947543531656, 0.007486753631383181, 0.00020531416521407664, 0.0007922695949673653, 0.2351929247379303], [0.00026364991208538413, 8.898486703401431e-05, 0.0053575304336845875, 9.771686745807528e-05, 0.00042288913391530514, 0.01138501800596714, 6.368692993419245e-05, 0.0005012238980270922, 0.389102578163147], [0.0003404819581191987, 5.4740292398491874e-05, 0.008900810964405537, 0.00010428200766909868, 0.00029593889485113323, 0.005408338736742735, 5.199187216931023e-05, 0.0005899358657188714, 0.4575193524360657], [0.0004817889421246946, 4.532076491159387e-05, 0.0042493995279073715, 0.0002934910880867392, 0.0006679616053588688, 0.016728131100535393, 0.00012264867837075144, 0.0008263042545877397, 0.43796640634536743], [0.0009492544340901077, 0.00017433894390705973, 0.002477735746651888, 0.0005932174972258508, 0.0038767859805375338, 0.012750811874866486, 0.0003385962045285851, 0.002436733106151223, 0.40985995531082153], [3.902604294125922e-05, 0.00020014384062960744, 0.00674806535243988, 0.00017257820582017303, 0.0008056421647779644, 0.004272097256034613, 0.00014288480451796204, 0.00042047977331094444, 0.49143368005752563]], [[0.010265350341796875, 0.0007271991344168782, 0.0020748984534293413, 0.006470965221524239, 0.004647182300686836, 0.02495316043496132, 0.004376586992293596, 0.019086726009845734, 0.39907562732696533], [0.0035913074389100075, 0.0002924537402577698, 0.0014126746682450175, 0.0005315051530487835, 0.00045797027996741235, 0.0024736823979765177, 0.0007246494642458856, 0.0014117991086095572, 0.34815284609794617], [0.0017830331344157457, 0.0006095629651099443, 0.001498137484304607, 0.0011462521506473422, 0.00012160695769125596, 0.0019455889705568552, 0.00025656327488832176, 0.003645409597083926, 0.34520167112350464], [0.0010460170451551676, 0.00042093763477168977, 0.00102064514067024, 0.00017245141498278826, 2.50552075158339e-05, 0.0006248498684726655, 2.0519792087725364e-05, 0.0007345680496655405, 0.21919678151607513], [0.0027897641994059086, 0.00032222093432210386, 0.0009469204233027995, 0.0003079338348470628, 3.647866833489388e-05, 0.0001821361802285537, 2.9321527108550072e-05, 0.0012315426720306277, 0.39664387702941895], [0.00315264449454844, 0.0006893305107951164, 0.0012596087763085961, 0.0010785312624648213, 0.00011652849207166582, 0.00047276317491196096, 0.0001240053679794073, 0.0013188425218686461, 0.34483689069747925], [0.004238822963088751, 0.0010416173608973622, 0.0011608782224357128, 0.001929256715811789, 0.0007014150614850223, 0.002099083038046956, 0.0003314564819447696, 0.0030433230567723513, 0.3350204527378082], [0.009513512253761292, 0.005746804177761078, 0.020702652633190155, 0.006949977483600378, 0.0016167706344276667, 0.005546154920011759, 0.0018596745794638991, 0.012139549478888512, 0.4494446814060211]], [[0.027007190510630608, 0.001144341309554875, 0.004571306053549051, 0.009942305274307728, 0.004773323889821768, 0.015492538921535015, 0.004386585205793381, 0.18447452783584595, 0.34689250588417053], [0.01035662554204464, 0.36357831954956055, 0.030606241896748543, 0.010603401809930801, 0.002265665913000703, 0.014132695272564888, 0.003270332934334874, 0.015869682654738426, 0.16809943318367004], [0.012368589639663696, 0.0005988056655041873, 0.0055748699232935905, 0.0011514169164001942, 0.0003573269641492516, 0.0017117818351835012, 0.0004942324012517929, 0.014243056066334248, 0.33247968554496765], [0.007134624756872654, 9.11016104510054e-05, 0.0019429543754085898, 0.0007092615705914795, 7.831214315956458e-05, 0.0006194607703946531, 0.00010128509165951982, 0.00848400965332985, 0.31726089119911194], [0.005280784796923399, 0.00010671798372641206, 0.0022685693111270666, 0.0003289356245659292, 9.638527262723073e-05, 0.0003200808132532984, 5.77688442717772e-05, 0.0019909897819161415, 0.3979056775569916], [0.00884844921529293, 0.0002136916300514713, 0.0027677733451128006, 0.0008039968088269234, 0.00036250983248464763, 0.0010101236402988434, 0.0002644643245730549, 0.007317489944398403, 0.3504657745361328], [0.003965915646404028, 0.00034100053017027676, 0.0024970900267362595, 0.00020173723169136792, 0.00027977459831163287, 0.0016938039334490895, 0.0002447431907057762, 0.006611271761357784, 0.4386836886405945], [0.0035383636131882668, 0.0025446955114603043, 0.00725580332800746, 0.0040457542054355145, 0.004442990757524967, 0.0037245384883135557, 0.0018970160745084286, 0.004990899004042149, 0.470054566860199]], [[0.01929418556392193, 0.0017930505564436316, 0.0027071412187069654, 0.0029387830290943384, 0.0016958864871412516, 0.00361742009408772, 0.00030662037897855043, 0.0037588845007121563, 0.3377045691013336], [0.011113089509308338, 0.0023214544635266066, 0.0038044159300625324, 0.0016115517355501652, 0.00017502247646916658, 0.0007494862074963748, 0.00010430567635921761, 0.0005412192549556494, 0.051977988332509995], [0.006063234992325306, 0.000846399343572557, 0.0011745269875973463, 0.00033833799534477293, 0.00016545945254620165, 0.0009734552586451173, 6.123600178398192e-05, 0.0014926505973562598, 0.31551551818847656], [0.00262807821854949, 0.0005650873645208776, 0.003037067363038659, 0.00021142713376320899, 5.9324316680431366e-05, 0.0003725021379068494, 1.7115278751589358e-05, 0.0003473295655567199, 0.4170318841934204], [0.004415043164044619, 0.00022474485740531236, 0.002269104588776827, 0.00010095648030983284, 8.960922423284501e-05, 0.000361275568138808, 1.312790482188575e-05, 0.00043595919851213694, 0.4322253465652466], [0.004892313852906227, 0.00023919758677948266, 0.0023272621911019087, 0.00013567914720624685, 0.00016173708718270063, 0.000793195329606533, 3.282621401012875e-05, 0.0005918071838095784, 0.354447603225708], [0.0039558326825499535, 0.0007501658983528614, 0.00278658140450716, 0.0005297908210195601, 0.00022008243831805885, 0.0020868489518761635, 0.0001640199770918116, 0.0008718154858797789, 0.1485101282596588], [0.007429203949868679, 0.0014697505393996835, 0.0045815566554665565, 0.003535981522873044, 0.001900902483612299, 0.004214308690279722, 0.0006586132803931832, 0.002850001212209463, 0.47621262073516846]], [[0.0013866130029782653, 0.005871532950550318, 0.023850541561841965, 0.006831673439592123, 0.01076328195631504, 0.027858398854732513, 0.00746561773121357, 0.0033177388831973076, 0.4308522641658783], [0.0009324098937213421, 0.009005698375403881, 0.12817418575286865, 0.005110134836286306, 0.004926423542201519, 0.017032776027917862, 0.0016021302435547113, 0.003961032256484032, 0.3813273012638092], [0.0014086292358115315, 0.01973111554980278, 0.03312067314982414, 0.0136190727353096, 0.007451701909303665, 0.0669705793261528, 0.004936018958687782, 0.005385294556617737, 0.3732222318649292], [0.0008046383736655116, 0.0021469006314873695, 0.08405700325965881, 0.0008114477968774736, 0.0005295602022670209, 0.019747097045183182, 0.0003779945254791528, 0.0023352308198809624, 0.38533809781074524], [0.0004162238328717649, 0.0031301509588956833, 0.37210801243782043, 0.0004689492052420974, 0.0003051193489227444, 0.004983124788850546, 0.00019488473481032997, 0.003192055271938443, 0.28785377740859985], [0.0011663216864690185, 0.0043210797011852264, 0.23192588984966278, 0.0010645224247127771, 0.0011210808297619224, 0.013649830594658852, 0.0007274510571733117, 0.004436183255165815, 0.34652113914489746], [0.0012923432514071465, 0.005745100788772106, 0.0410291850566864, 0.0061951130628585815, 0.004716198891401291, 0.05092328414320946, 0.0034200085792690516, 0.005871372297406197, 0.3981214165687561], [0.00024203262000810355, 0.0002893440832849592, 0.0017130045453086495, 0.00018771323084365577, 0.0002628451038617641, 0.001201755367219448, 0.00010921725333901122, 0.00047829069080762565, 0.49446070194244385]], [[0.002939850790426135, 0.0005531003698706627, 0.0016929705161601305, 0.00045350485015660524, 0.0005009350716136396, 0.0037033669650554657, 0.0001537794159958139, 0.0003302709956187755, 0.4657132625579834], [0.0008697846787981689, 0.03876110538840294, 0.8116664886474609, 0.0028138107154518366, 0.0003176196478307247, 0.0020559115801006556, 0.00010808309889398515, 0.0012973751872777939, 0.06517297774553299], [0.002932384144514799, 0.001202060142531991, 0.004318029619753361, 0.000601722567807883, 0.0003402053262107074, 0.0024965633638203144, 0.0001309834624407813, 0.0004605480935424566, 0.43529924750328064], [0.0002947629545815289, 8.013160550035536e-05, 0.0008749440312385559, 2.2814278054283932e-05, 1.1411410014261492e-05, 0.0003599145566113293, 5.216239514993504e-06, 7.26806465536356e-05, 0.46771079301834106], [0.00038839029730297625, 0.0002121735451510176, 0.0016546635888516903, 1.7177873814944178e-05, 1.6769132344052196e-05, 7.291803922271356e-05, 3.3862354484881507e-06, 3.388873301446438e-05, 0.49221375584602356], [0.0005696721491403878, 0.00016754624084569514, 0.0013661098200827837, 3.0145627533784136e-05, 2.614959521451965e-05, 0.00011952449131058529, 3.174215180479223e-06, 5.1975275709992275e-05, 0.486555278301239], [0.001554980524815619, 0.0010073400335386395, 0.010658119805157185, 0.00022103890660218894, 0.00018469037604518235, 0.002465177094563842, 4.299525244277902e-05, 0.00028053944697603583, 0.43429407477378845], [0.0016335126711055636, 0.001691757352091372, 0.0028633354231715202, 0.0013467242242768407, 0.0004374742857180536, 0.00250390381552279, 0.0003214747703168541, 0.0013426014920696616, 0.4913995563983917]], [[0.005156632512807846, 0.0037536039017140865, 0.0009086272912099957, 0.0023667102213948965, 0.0039019936230033636, 0.007949050515890121, 0.0007064175442792475, 0.0060774642042815685, 0.4031248390674591], [0.020703626796603203, 0.0038349353708326817, 0.008022149093449116, 0.0007702941074967384, 0.0006618727929890156, 0.0029190373606979847, 0.0002220144378952682, 0.004296736791729927, 0.3731485903263092], [0.02043827436864376, 0.00297157047316432, 0.002060101367533207, 0.0020266524516046047, 0.0015315841883420944, 0.007308500818908215, 0.0005509117036126554, 0.005090559367090464, 0.3903138339519501], [0.007665707264095545, 0.0008497973321937025, 0.000939651858061552, 0.0006695283809676766, 0.0005491375923156738, 0.003032625885680318, 0.00022678243112750351, 0.0044931089505553246, 0.38759922981262207], [0.003972369711846113, 0.0003475842531770468, 0.004646051209419966, 0.000189351529115811, 0.00012068887008354068, 0.00042042802670039237, 5.229484668234363e-05, 0.0005960733979009092, 0.31577935814857483], [0.006405148655176163, 0.0004619395767804235, 0.0032182387076318264, 0.0002953801886178553, 0.00019719215924851596, 0.0009006281034089625, 8.601732406532392e-05, 0.000995539128780365, 0.2914329469203949], [0.011955956928431988, 0.0012952210381627083, 0.003121613524854183, 0.0007634687353856862, 0.0012090912787243724, 0.011508745141327381, 0.000755888526327908, 0.0029435663018375635, 0.2396102249622345], [0.001733526703901589, 0.003085970412939787, 0.010256913490593433, 0.005324626807123423, 0.0047429935075342655, 0.00437204772606492, 0.001355079934000969, 0.005131586920469999, 0.4764973819255829]], [[0.008629594929516315, 0.001708197989501059, 0.002025236841291189, 0.0023719894234091043, 0.0008510857005603611, 0.0009804141009226441, 0.00013176919310353696, 0.0010573595063760877, 0.348469078540802], [0.0036961748264729977, 0.0006609916454181075, 0.006478509400039911, 0.0003824311716016382, 0.00019235412764828652, 0.0003311468753963709, 2.688347376533784e-05, 0.0003698018554132432, 0.4551027715206146], [0.0037085015792399645, 0.00023839814821258187, 0.00044611498015001416, 0.00015975686255842447, 0.00022645543504040688, 0.0004211831546854228, 0.0001540853118058294, 0.001110937213525176, 0.423181414604187], [0.0017346509266644716, 0.00027703019441105425, 0.00022470187104772776, 0.0008069750037975609, 0.00013695089728571475, 0.0004563125839922577, 6.025877155479975e-05, 0.0016847483348101377, 0.43454083800315857], [0.0038286782801151276, 0.0004189589526504278, 0.0016265838639810681, 0.0004575164057314396, 0.0003479748556856066, 0.0005466233124025166, 0.0006431098445318639, 0.0009765605791471899, 0.3458881676197052], [0.009709269739687443, 0.0014678140869364142, 0.0013686555903404951, 0.0012886165641248226, 0.0003045746707357466, 0.0002003006375161931, 0.00017352910072077066, 0.0022574313916265965, 0.4187323749065399], [0.004442513920366764, 0.0018429121701046824, 0.0008071271586231887, 0.0004041954525746405, 0.00020296951697673649, 0.00022633881599176675, 6.789335748180747e-05, 0.0018520749872550368, 0.42731305956840515], [0.009503469802439213, 0.006356164813041687, 0.0069097778759896755, 0.006198044866323471, 0.002521409187465906, 0.0019983239471912384, 0.0015461619477719069, 0.0027641630731523037, 0.46649280190467834]], [[0.009943000040948391, 0.08666341006755829, 0.05113058537244797, 0.15121519565582275, 0.04337833821773529, 0.19687271118164062, 0.04700572043657303, 0.24347195029258728, 0.041926655918359756], [0.0014119517290964723, 0.7438477277755737, 0.18238483369350433, 0.007836255244910717, 0.0014915303327143192, 0.017385834828019142, 0.0015342158731073141, 0.013741030357778072, 0.009541365318000317], [0.0125378193333745, 0.026334155350923538, 0.03486799821257591, 0.008456194773316383, 0.00423596752807498, 0.08268411457538605, 0.005967812146991491, 0.07549329847097397, 0.14900922775268555], [0.010746347717940807, 0.03254609927535057, 0.05686062201857567, 0.01049854513257742, 0.0016719589475542307, 0.013465404510498047, 0.00181117607280612, 0.023636385798454285, 0.18136626482009888], [0.008182276971638203, 0.0268693994730711, 0.061490096151828766, 0.0035834158770740032, 0.0014096557861194015, 0.01323088351637125, 0.0008793769520707428, 0.021163199096918106, 0.33670350909233093], [0.009336317889392376, 0.022399883717298508, 0.0800076499581337, 0.005171736236661673, 0.002033066237345338, 0.024112407118082047, 0.0014970602933317423, 0.028743445873260498, 0.22898197174072266], [0.014653075486421585, 0.09359308332204819, 0.06696392595767975, 0.030087772756814957, 0.008392314426600933, 0.04794955998659134, 0.00445424672216177, 0.0848001018166542, 0.13116835057735443], [0.0005765205714851618, 0.007011388894170523, 0.009128485806286335, 0.003025729674845934, 0.0031256552319973707, 0.0033960165455937386, 0.0015523354522883892, 0.00385962869040668, 0.483430951833725]], [[0.013037633150815964, 0.018690086901187897, 0.004026381298899651, 0.004426171537488699, 0.0033282272052019835, 0.005436718929558992, 0.0027315388433635235, 0.01824168488383293, 0.42915579676628113], [0.025324296206235886, 0.147345632314682, 0.057872604578733444, 0.017510246485471725, 0.007632342632859945, 0.00196324591524899, 0.0030827131122350693, 0.005808958318084478, 0.33767402172088623], [0.00488286791369319, 0.0014228641521185637, 0.0014186428161337972, 0.0016192320035770535, 0.006347362417727709, 0.003868976142257452, 0.0008083171560429037, 0.0023226921912282705, 0.37939590215682983], [0.008429301902651787, 0.0014230565866455436, 0.0018184679793193936, 0.0005790888681076467, 0.0005666679935529828, 0.002539448207244277, 0.0003403763403184712, 0.0008198717259801924, 0.4670635461807251], [0.00721557205542922, 0.0016549703432247043, 0.0027384429704397917, 0.0007532829768024385, 0.00025981050566770136, 0.0031068362295627594, 0.00020074972417205572, 0.0029467649292200804, 0.47148194909095764], [0.005021656863391399, 0.001859129755757749, 0.004142876714468002, 0.0022685411386191845, 0.00035529042361304164, 0.00232604518532753, 0.0007750412332825363, 0.004323585424572229, 0.4724622666835785], [0.008154839277267456, 0.02595994435250759, 0.006805789656937122, 0.003566473489627242, 0.0012965814676135778, 0.0010429797694087029, 0.0018441297579556704, 0.023445017635822296, 0.4350196421146393], [0.0008235423010773957, 0.00044418280594982207, 0.002157955663278699, 0.0002792046871036291, 0.0002449402236379683, 0.00033743807580322027, 0.00018814951181411743, 0.0008484559948556125, 0.49564844369888306]]], [[[0.005237212870270014, 0.008204932324588299, 0.006721633020788431, 0.003457236336544156, 0.0009096243302337825, 0.0022951653227210045, 0.0014071743935346603, 0.004623871762305498, 0.45259833335876465], [0.0015229549026116729, 0.0012927246280014515, 0.006463420111685991, 0.0007905112579464912, 0.0005120253772474825, 0.0020386299584060907, 0.00032930023735389113, 0.0038861543871462345, 0.48021435737609863], [0.003779294667765498, 0.0022959159687161446, 0.003394491970539093, 0.0005672530387528241, 0.00046678452054038644, 0.0006091655814088881, 0.00021471164654940367, 0.0035200235433876514, 0.45558834075927734], [0.001026890822686255, 0.0014788956614211202, 0.001881602220237255, 0.00029091897886246443, 0.0003161149797961116, 0.0003643568779807538, 7.497551996493712e-05, 0.002344898646697402, 0.4841398000717163], [0.0005873802583664656, 0.001616647350601852, 0.0024820810649544, 0.00015130001702345908, 0.00011801149958046153, 0.00048023794079199433, 4.3296000512782484e-05, 0.0012299279915168881, 0.4861294627189636], [0.001079473178833723, 0.002940128790214658, 0.006113069597631693, 0.0005145452450960875, 0.00025237377849407494, 0.0008021829416975379, 0.00014207401545718312, 0.002515962580218911, 0.4718865752220154], [0.006499884184449911, 0.006831463426351547, 0.027302555739879608, 0.0019565920811146498, 0.0003006450133398175, 0.0008454597555100918, 0.0002922608400695026, 0.005557238589972258, 0.41151976585388184], [0.016518589109182358, 0.2012253850698471, 0.10876526683568954, 0.07697532325983047, 0.0358927883207798, 0.05594798922538757, 0.053777195513248444, 0.04287824034690857, 0.08795088529586792]], [[0.003205417888239026, 0.011904819868505001, 0.012091731652617455, 0.006897874176502228, 0.006012268364429474, 0.008998489007353783, 0.007844949141144753, 0.004762975033372641, 0.3378387689590454], [0.002724470105022192, 0.010024412535130978, 0.020794983953237534, 0.0012117858277633786, 0.004923355299979448, 0.002882680157199502, 0.0018071690574288368, 0.0013564227847382426, 0.44120553135871887], [0.0008884118869900703, 0.004966572392731905, 0.002345796674489975, 0.0038140511605888605, 0.029633598402142525, 0.016497116535902023, 0.003562374971807003, 0.002009723801165819, 0.274200439453125], [0.0013292423682287335, 0.0031741235870867968, 0.004420950077474117, 0.0005869693122804165, 0.004190822131931782, 0.004853463731706142, 0.0027528819628059864, 0.0005065901787020266, 0.18304698169231415], [0.0011934485519304872, 0.0011972703505307436, 0.008055170997977257, 0.000421518343500793, 0.0007108537829481065, 0.006399841513484716, 0.0005738665931858122, 0.0006422411534003913, 0.3648245334625244], [0.0035652942024171352, 0.002929875161498785, 0.00750355701893568, 0.003339452436193824, 0.0029645191971212626, 0.018696559593081474, 0.007979441434144974, 0.002393589820712805, 0.3285079300403595], [0.007000735029578209, 0.01993590034544468, 0.005948950070887804, 0.009566698223352432, 0.003581451019272208, 0.0037530423142015934, 0.003943718038499355, 0.014704895205795765, 0.16458885371685028], [0.017075348645448685, 0.041656214743852615, 0.09032460302114487, 0.04640873521566391, 0.058390405029058456, 0.1224188581109047, 0.04562682658433914, 0.03744121640920639, 0.06261271983385086]], [[0.03641815111041069, 0.008052133023738861, 0.0018064351752400398, 0.0030028284527361393, 0.0008273310377262533, 0.0025297130923718214, 0.002727655228227377, 0.5159849524497986, 0.1005997285246849], [0.018927721306681633, 0.010604850016534328, 0.010019751265645027, 0.005446989554911852, 0.0017387995030730963, 0.015060827136039734, 0.002329367445781827, 0.027639588341116905, 0.3296438157558441], [0.027998588979244232, 0.010734878480434418, 0.013445778749883175, 0.008256393484771252, 0.007886757142841816, 0.016468830406665802, 0.005183707922697067, 0.021891770884394646, 0.2058113068342209], [0.024024153128266335, 0.0024413098581135273, 0.007671091705560684, 0.002746078185737133, 0.005442376714199781, 0.009366065263748169, 0.0014803579542785883, 0.007753412704914808, 0.18916790187358856], [0.002812630496919155, 0.0019144911784678698, 0.0052632298320531845, 0.000284150562947616, 0.0019059226615354419, 0.0025077250320464373, 0.0006264394032768905, 0.0011376042384654284, 0.4189135432243347], [0.00345527078025043, 0.0012366781011223793, 0.002847040770575404, 0.00020404857059475034, 0.0014283418422564864, 0.01842554472386837, 0.0013994519831612706, 0.0015247557312250137, 0.12187078595161438], [0.0061354744248092175, 0.003449586918577552, 0.008863916620612144, 0.0025198073126375675, 0.0005928147002123296, 0.02298600971698761, 0.00788487121462822, 0.0038011176511645317, 0.2517220675945282], [0.030755406245589256, 0.050251420587301254, 0.10121684521436691, 0.05514812469482422, 0.044641029089689255, 0.04710926488041878, 0.03097490780055523, 0.08692710101604462, 0.0387251079082489]], [[0.05291523039340973, 0.001984847243875265, 0.001994884107261896, 0.0008217752911150455, 0.0010112912859767675, 0.004462121520191431, 0.002114827511832118, 0.01088201068341732, 0.42574578523635864], [0.009042135439813137, 0.0015484930481761694, 0.0107125174254179, 0.000604674220085144, 8.401161176152527e-05, 0.0026000775396823883, 0.0005113151855766773, 0.0016089691780507565, 0.43598538637161255], [0.04007783904671669, 0.001881256466731429, 0.0024513639509677887, 0.0006194608868099749, 0.0020508689340204, 0.008939762599766254, 0.0008169619832187891, 0.005018626339733601, 0.3767133951187134], [0.013736987486481667, 0.0011371597647666931, 0.004555847495794296, 0.0003044239419978112, 0.0003189755661878735, 0.010978755541145802, 0.00034805815084837377, 0.0018808480817824602, 0.2441849410533905], [0.009031491354107857, 0.0023163161240518093, 0.013704449869692326, 0.0006354933721013367, 0.0006238433998078108, 0.00426264014095068, 0.0003713623736985028, 0.0014617580454796553, 0.22843414545059204], [0.008795831352472305, 0.0017278454033657908, 0.007302428595721722, 0.0005352278240025043, 0.0016677632229402661, 0.01279748696833849, 0.0014263754710555077, 0.0007649898761883378, 0.1651044487953186], [0.02172226458787918, 0.0026696454733610153, 0.006795316468924284, 0.0023306121584028006, 0.00031043755006976426, 0.013657729141414165, 0.0035940948873758316, 0.003131263656541705, 0.306375116109848], [0.06075282767415047, 0.04756716638803482, 0.024505963549017906, 0.04111969843506813, 0.0559094063937664, 0.0402311272919178, 0.08756700903177261, 0.04782210290431976, 0.1071636900305748]], [[5.040438554715365e-05, 0.0021397005766630173, 0.00895668100565672, 0.000232657344895415, 0.00023611639335285872, 0.002490076469257474, 0.00017552664212416857, 0.0028803490567952394, 0.48868849873542786], [0.0003890593652613461, 0.000693493231665343, 0.0018270111177116632, 0.0003544257197063416, 0.0003338260285090655, 0.0014996877871453762, 0.0002062274288618937, 0.0028919950127601624, 0.4902200996875763], [0.000591022486332804, 0.005605257581919432, 0.013088002800941467, 0.0014561369316652417, 0.0010515452595427632, 0.006971160415560007, 0.0012339871609583497, 0.007519707549363375, 0.46225234866142273], [6.160011980682611e-05, 0.0006976075819693506, 0.004922997672110796, 0.00011092484783148393, 0.00012217674520798028, 0.0016010383842512965, 8.087490277830511e-05, 0.0013516803737729788, 0.4888431429862976], [0.000166792786330916, 0.0015397928655147552, 0.007944038137793541, 0.00013711916108150035, 0.00011599745630519465, 0.0006569723482243717, 0.00010692119394661859, 0.0019003862980753183, 0.4794031083583832], [0.0002697754534892738, 0.003752934280782938, 0.008374127559363842, 0.00041484954999759793, 0.00019416961004026234, 0.0014724100474268198, 0.0003446594637352973, 0.0032207488548010588, 0.4782703220844269], [0.0003798682300839573, 0.0012959493324160576, 0.0038639199919998646, 0.0003593916189856827, 0.00022305548191070557, 0.002155375201255083, 0.0004883090150542557, 0.0025148089043796062, 0.48420318961143494], [0.026025498285889626, 0.11502338945865631, 0.13907143473625183, 0.08255776762962341, 0.03488677367568016, 0.058035679161548615, 0.033057257533073425, 0.10341017693281174, 0.020576415583491325]], [[0.0019794555846601725, 0.0003886910271830857, 0.0012518479488790035, 0.000655899231787771, 0.00027334477636031806, 0.0012694813776761293, 0.00015124864876270294, 0.0007694882224313915, 0.4904400408267975], [0.0024472924415022135, 0.00020496420620474964, 0.0007056475151330233, 0.00013834694982506335, 6.45154868834652e-05, 0.00045146237243898213, 7.685282616876066e-05, 0.0004525057156570256, 0.4852296710014343], [0.005546792410314083, 0.0005828047287650406, 0.0036694954615086317, 0.0003416200925130397, 6.882456364110112e-05, 0.00035175622906535864, 6.822581781307235e-05, 0.0007095675682649016, 0.4506056010723114], [0.0010218201205134392, 0.00012966724170837551, 0.0016478016041219234, 6.639950152020901e-05, 3.411811121623032e-05, 0.00024926173500716686, 1.4227876818040386e-05, 0.00019059350597672164, 0.4902417063713074], [0.003501582657918334, 0.0002870450261980295, 0.0022576579358428717, 9.947834041668102e-05, 9.544621570967138e-05, 0.0002486974117346108, 5.0738548452500254e-05, 0.00028689997270703316, 0.4697716534137726], [0.004642265383154154, 0.00047803219058550894, 0.005091956816613674, 0.0001775922137312591, 0.0001717896229820326, 0.00044829200487583876, 6.620610656682402e-05, 0.0005473966593854129, 0.4605410099029541], [0.003942297305911779, 0.0007076837355270982, 0.008048424497246742, 0.0001359309972031042, 0.0003430764772929251, 0.003192560514435172, 0.00015848218754399568, 0.0003523774794302881, 0.3234092891216278], [0.03302721306681633, 0.08639654517173767, 0.054601170122623444, 0.08774027228355408, 0.06215977296233177, 0.08575105667114258, 0.09412454068660736, 0.05902286618947983, 0.05281829461455345]], [[0.002896580845117569, 0.014758261851966381, 0.002491266932338476, 0.004866006784141064, 0.030563633888959885, 0.005324942991137505, 0.005761244799941778, 0.00210519228130579, 0.09599211812019348], [0.016279008239507675, 0.04880198463797569, 0.014401706866919994, 0.011640900745987892, 0.01635190285742283, 0.005985967814922333, 0.0052584814839065075, 0.003336048685014248, 0.2932893931865692], [0.0018675478640943766, 0.002484744181856513, 0.002930452348664403, 0.0023932955227792263, 0.03036515973508358, 0.006949533708393574, 0.0023170437198132277, 0.0013139477232471108, 0.22744709253311157], [0.0028463867492973804, 0.006073690019547939, 0.005173449870198965, 0.0015207557007670403, 0.004376476164907217, 0.010370762087404728, 0.0016389323864132166, 0.0016645870637148619, 0.25066664814949036], [0.0011369027197360992, 0.0021319715306162834, 0.004433348774909973, 0.0006461366428993642, 0.0007294805254787207, 0.0038345232605934143, 0.0003027234924957156, 0.0010619123931974173, 0.2531304359436035], [0.0036597352009266615, 0.004679576028138399, 0.009837104938924313, 0.0026691535022109747, 0.0023126774467527866, 0.004960954189300537, 0.003464070614427328, 0.007896728813648224, 0.29014158248901367], [0.008345572277903557, 0.017568746581673622, 0.008071848191320896, 0.025688832625746727, 0.010864408686757088, 0.002627164125442505, 0.0021679294295608997, 0.008575713261961937, 0.14276736974716187], [0.005811500363051891, 0.07754436135292053, 0.08255141228437424, 0.0513850562274456, 0.13005733489990234, 0.1542530506849289, 0.08939344435930252, 0.04182568937540054, 0.04757062718272209]], [[0.0007625267608091235, 0.0007473639561794698, 0.002661657752469182, 0.0004905101377516985, 0.00019620751845650375, 0.0008391743176616728, 0.00020052216132171452, 0.0018509100191295147, 0.4909779727458954], [0.00043426849879324436, 0.002019111532717943, 0.0071866740472614765, 0.0008678800077177584, 0.00010529885184951127, 0.00035610012128017843, 0.00010900545748881996, 0.008771699853241444, 0.47931337356567383], [0.0015254586469382048, 0.0017632500967010856, 0.00968964397907257, 0.000147362778079696, 3.1503583159064874e-05, 0.0003131706907879561, 2.6138917746720836e-05, 0.0011554609518498182, 0.48007282614707947], [0.0004753679677378386, 0.0005127072799950838, 0.0028559572529047728, 5.456441795104183e-05, 3.32090312440414e-05, 0.00012077058636350557, 1.2964500456291717e-05, 0.0005332885775715113, 0.49256739020347595], [0.0009278013603761792, 0.0002872979093808681, 0.004842829424887896, 2.2579160940949805e-05, 1.3637698430102319e-05, 0.00013281195424497128, 2.1045088942628354e-05, 0.00023501082614529878, 0.49199047684669495], [0.0015131620457395911, 0.0007497292244806886, 0.006425360217690468, 9.67730738921091e-05, 3.854112947010435e-05, 0.00026940027601085603, 5.812298695673235e-05, 0.0005062506534159184, 0.4816824197769165], [0.0018249948043376207, 0.002975980518385768, 0.025478724390268326, 0.0014519713586196303, 0.000921664759516716, 0.002535453299060464, 0.0004907372058369219, 0.004317663609981537, 0.44556838274002075], [0.015875382348895073, 0.08117321878671646, 0.15265372395515442, 0.11273261159658432, 0.06255240738391876, 0.061273347586393356, 0.0938355028629303, 0.0623948834836483, 0.03466196730732918]], [[0.0033791474997997284, 0.004582847468554974, 0.003426425391808152, 0.004246036987751722, 0.00424323370680213, 0.0056143151596188545, 0.003030066844075918, 0.016488224267959595, 0.47164738178253174], [0.006413278169929981, 0.003272519214078784, 0.003110843012109399, 0.0008817933849059045, 0.0004821987240575254, 0.001507546054199338, 0.0002947902830783278, 0.008211481384932995, 0.4588344991207123], [0.010251188650727272, 0.0025566192343831062, 0.004620653111487627, 0.001298433286137879, 0.0008595691761001945, 0.0018477147677913308, 0.0008575071697123349, 0.020378297194838524, 0.3563784062862396], [0.00885496474802494, 0.0013921349309384823, 0.0040003652684390545, 0.0003038168651983142, 0.0003060829476453364, 0.0005859033553861082, 0.00016064838564489037, 0.006968801375478506, 0.37125954031944275], [0.0016649097669869661, 0.0002731268177740276, 0.000957038311753422, 0.00015346088912338018, 0.00010003867646446452, 0.0004095886251889169, 7.774698315188289e-05, 0.0005874835187569261, 0.4576214849948883], [0.0031203110702335835, 0.0004939856007695198, 0.001712761353701353, 0.0003070902603212744, 0.00013497289910446852, 0.0002767530095297843, 0.00015221690409816802, 0.0014088372699916363, 0.45046287775039673], [0.008723906241357327, 0.0023722914047539234, 0.005307583138346672, 0.0014423956163227558, 0.00028802952147088945, 0.0011578716803342104, 0.0002818116918206215, 0.006803450174629688, 0.37336069345474243], [0.02493949420750141, 0.11620031297206879, 0.04944377392530441, 0.11865917593240738, 0.03771592304110527, 0.08430953323841095, 0.06298968940973282, 0.1445235311985016, 0.030583694577217102]], [[0.019269606098532677, 0.00725571857765317, 0.0066689965315163136, 0.00751078687608242, 0.0048647779040038586, 0.002715942682698369, 0.0013545786496251822, 0.0009377734386362135, 0.4067264497280121], [0.014850589446723461, 0.0007954047177918255, 0.002272674348205328, 0.001676072715781629, 0.0007673733052797616, 0.0008293810533359647, 0.0003126039227936417, 0.004069962073117495, 0.4549323618412018], [0.007937241345643997, 0.0007685436285100877, 0.0012934806291013956, 0.0003093542472925037, 0.0010962937958538532, 0.0011660130694508553, 0.0010253441287204623, 0.0008749557309783995, 0.4423920810222626], [0.002921934938058257, 0.0001419578184140846, 0.0004929805872961879, 0.00016105009126476943, 2.8721247872454114e-05, 0.0002528908080421388, 0.00011184791219420731, 0.0009949568193405867, 0.4591265022754669], [0.032425396144390106, 0.0006863664602860808, 0.002291613258421421, 0.0006443239981308579, 0.00025190733140334487, 0.0004435233131516725, 0.0010602165712043643, 0.0007373038679361343, 0.1700630933046341], [0.022167976945638657, 0.0005000227829441428, 0.000897312187589705, 0.000802194292191416, 0.00028129349811933935, 0.0001393986021867022, 0.0002552941150497645, 0.0026496597565710545, 0.4467669725418091], [0.014680979773402214, 0.0009328353917226195, 0.0022696952801197767, 0.0008816945482976735, 0.00023396973847411573, 0.0007060410571284592, 0.00020840123761445284, 0.001735792844556272, 0.4654737114906311], [0.10679879784584045, 0.06203247979283333, 0.034127745777368546, 0.05610756203532219, 0.07080429047346115, 0.07978823781013489, 0.08210393041372299, 0.06484825909137726, 0.07475675642490387]], [[0.0008673241245560348, 0.00025335082318633795, 0.0011092043714597821, 0.00029223907040432096, 8.393027383135632e-05, 0.0003506191133055836, 8.632068056613207e-05, 0.0009567261440679431, 0.480203777551651], [0.00031348250922746956, 0.0002760564675554633, 0.0007404544157907367, 0.00025952429859898984, 0.00011853656178573146, 0.0003784389409702271, 0.00012961360334884375, 0.00038633306394331157, 0.47311708331108093], [0.0015080039156600833, 0.00011031392932636663, 0.00035811110865324736, 5.836683340021409e-05, 9.118313755607232e-05, 0.0004463361983653158, 5.205834531807341e-05, 0.0008099426631815732, 0.469679594039917], [0.00014411115262191743, 1.797882214304991e-05, 5.547910768655129e-05, 8.314833394251764e-06, 8.024654562177602e-06, 9.283597319154069e-05, 7.963246389408596e-06, 0.00011805116810137406, 0.4926674962043762], [0.0002528421755414456, 8.991628419607878e-05, 0.00015268342394847423, 2.1105477571836673e-05, 3.551561894710176e-05, 0.0003127124800812453, 3.562685378710739e-05, 0.0001280292053706944, 0.4921146035194397], [0.000621431099716574, 0.00014864774129819125, 0.00023478243383578956, 4.270831777830608e-05, 5.6734777899691835e-05, 0.00041610802873037755, 4.376408105599694e-05, 0.00043217334314249456, 0.4898018538951874], [0.002523797797039151, 0.0001109023141907528, 0.00031307057361118495, 0.00011027910659322515, 9.871073416434228e-05, 0.001450195093639195, 0.00010195697541348636, 0.00030163241899572313, 0.4784378111362457], [0.037801533937454224, 0.04057252034544945, 0.056319110095500946, 0.04955459013581276, 0.014272769913077354, 0.03410734981298447, 0.02596845105290413, 0.03067133203148842, 0.0691823959350586]], [[0.004676518030464649, 0.0031360462307929993, 0.00363340275362134, 0.003114111255854368, 0.0012234658934175968, 0.0020019891671836376, 0.0012811042834073305, 0.001659985980950296, 0.46609458327293396], [0.01576705276966095, 0.008137473836541176, 0.00823168084025383, 0.002878444269299507, 0.001097788685001433, 0.0012301240349188447, 0.0005687138182111084, 0.002053564880043268, 0.4531867504119873], [0.00821777805685997, 0.0020071391481906176, 0.003210144117474556, 0.0022897415328770876, 0.0020597458351403475, 0.0018156185979023576, 0.0007164882845245302, 0.0025200650561600924, 0.4308318793773651], [0.003607742488384247, 0.002082864986732602, 0.002438334282487631, 0.0006609036354348063, 0.00048501777928322554, 0.0006028188508935273, 0.00021439116972032934, 0.0012559863971546292, 0.4611201286315918], [0.0006512915715575218, 0.0003765949804801494, 0.001882007229141891, 0.00011552838259376585, 7.678028487134725e-05, 0.00023868531570769846, 4.377133154775947e-05, 0.00032607774483039975, 0.4857759475708008], [0.001743889064528048, 0.0008932267082855105, 0.0020098548848181963, 0.0003422063891775906, 0.00016670221521053463, 0.0004903741646558046, 0.00020190900249872357, 0.0013927064137533307, 0.47526586055755615], [0.006617892999202013, 0.012943742796778679, 0.010595467872917652, 0.00929759070277214, 0.0028671440668404102, 0.0015740265371277928, 0.0010232983622699976, 0.0028833618853241205, 0.40054240822792053], [0.06152573227882385, 0.08685911446809769, 0.07395310699939728, 0.1013396754860878, 0.056508619338274, 0.07045254111289978, 0.05788153409957886, 0.08833646029233932, 0.036645811051130295]]]], \\\"left_text\\\": [\\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\"]}], \\\"default_filter\\\": \\\"0\\\", \\\"display_mode\\\": \\\"light\\\", \\\"root_div_id\\\": \\\"bertviz-1c2f4bcb045f497a93360604060acb6a\\\"}; // HACK: {\\\"attention\\\": [{\\\"name\\\": \\\"All\\\", \\\"attn\\\": [[[[0.004888075869530439, 0.007019796874374151, 0.0036452263593673706, 0.0029327375814318657, 0.0015320930397138, 0.004241756163537502, 0.004263122100383043, 0.008528415113687515, 0.1241171583533287, 0.011008302681148052, 0.007964405231177807, 0.012401134707033634, 0.012626986019313335, 0.01822158694267273, 0.03751054406166077, 0.032849520444869995, 0.7062491178512573], [0.014576531015336514, 0.010581646114587784, 0.11558718979358673, 0.029583653435111046, 0.1619575172662735, 0.1749114692211151, 0.0751379206776619, 0.21962450444698334, 0.012747607193887234, 0.05111600458621979, 0.01784636825323105, 0.016188524663448334, 0.034550972282886505, 0.04032806307077408, 0.008430905640125275, 0.014747894369065762, 0.002083284081891179], [0.0931827500462532, 0.030849847942590714, 0.21771998703479767, 0.008905305527150631, 0.01596658118069172, 0.10586155205965042, 0.014499418437480927, 0.15799841284751892, 0.1769568771123886, 0.011161367408931255, 0.007392543368041515, 0.02728419005870819, 0.011595254763960838, 0.06580255925655365, 0.029527466744184494, 0.0062408046796917915, 0.01905512809753418], [0.014329124242067337, 0.026282774284482002, 0.12526121735572815, 0.01783166266977787, 0.16241025924682617, 0.19412513077259064, 0.09234662353992462, 0.18385455012321472, 0.012565611861646175, 0.0387045256793499, 0.007175581995397806, 0.014191791415214539, 0.03388706594705582, 0.05341388285160065, 0.013310998678207397, 0.009375548921525478, 0.0009336062357760966], [0.041057515889406204, 0.05136800557374954, 0.11638717353343964, 0.04390865936875343, 0.204985111951828, 0.20272210240364075, 0.05150476470589638, 0.07285190373659134, 0.02087394706904888, 0.03042193129658699, 0.0036483488511294127, 0.01124507561326027, 0.052854206413030624, 0.055095743387937546, 0.018138518556952477, 0.021030552685260773, 0.0019064793596044183], [0.1666662096977234, 0.02896984852850437, 0.15163454413414001, 0.01802794449031353, 0.04654997959733009, 0.2804989814758301, 0.02848292514681816, 0.017328821122646332, 0.035481903702020645, 0.026137450709939003, 0.007835391908884048, 0.04781508445739746, 0.0928763672709465, 0.02130993641912937, 0.012126856483519077, 0.007968500256538391, 0.010289200581610203], [0.020301301032304764, 0.03030841425061226, 0.146507129073143, 0.03279529884457588, 0.1822977364063263, 0.14855298399925232, 0.04740176722407341, 0.11926399916410446, 0.0055979457683861256, 0.07653960585594177, 0.005564410705119371, 0.01443084329366684, 0.04294794425368309, 0.07773218303918839, 0.036374710500240326, 0.011816887184977531, 0.001566849066875875], [0.1180451288819313, 0.049101572483778, 0.06027330830693245, 0.006074968259781599, 0.10929204523563385, 0.04498586431145668, 0.00842977873980999, 0.3069465160369873, 0.06189660355448723, 0.039379481226205826, 0.007954319939017296, 0.10972070693969727, 0.026415210217237473, 0.023425700142979622, 0.014062038622796535, 0.0026519885286688805, 0.011344718746840954], [2.1634889435517834e-06, 2.7986959594272776e-07, 6.047267930853195e-08, 7.992905892706403e-08, 2.950351074559876e-09, 6.677720598702308e-09, 3.565340378486326e-08, 1.6712645489747047e-08, 0.0002647333894856274, 1.152576032836805e-06, 1.1555251148820389e-05, 5.2061750466236845e-06, 1.371363214275334e-05, 4.478007667785278e-06, 5.161368608241901e-05, 0.0001593561319168657, 0.9994856119155884], [0.05085143446922302, 0.022023271769285202, 0.07580538094043732, 0.0070717972703278065, 0.047512125223875046, 0.07071699947118759, 0.017782360315322876, 0.08009849488735199, 0.019474850967526436, 0.10870131105184555, 0.009214590303599834, 0.08462074398994446, 0.16989478468894958, 0.10135233402252197, 0.0493972972035408, 0.021988535299897194, 0.06349364668130875], [0.04322425276041031, 0.00701436772942543, 0.07438955456018448, 0.00349072995595634, 0.020300857722759247, 0.03028024546802044, 0.011668267659842968, 0.043274637311697006, 0.00980078149586916, 0.08645223826169968, 0.01271748449653387, 0.05253123864531517, 0.23775863647460938, 0.19187404215335846, 0.03741445392370224, 0.04090726003050804, 0.09690098464488983], [0.022267881780862808, 0.023952627554535866, 0.06272710859775543, 0.0059244283474981785, 0.09645921736955643, 0.04347274824976921, 0.027442241087555885, 0.05181506276130676, 0.018496809527277946, 0.12232493609189987, 0.03188175708055496, 0.029339047148823738, 0.258259117603302, 0.06193901225924492, 0.05281803756952286, 0.04957601800560951, 0.041303928941488266], [0.052432831376791, 0.02291150949895382, 0.04012122005224228, 0.004341240040957928, 0.02985801361501217, 0.01583763211965561, 0.015640828758478165, 0.02167329750955105, 0.05032937601208687, 0.11713917553424835, 0.02564113773405552, 0.09544307738542557, 0.08414534479379654, 0.06279367953538895, 0.09147869795560837, 0.0592023991048336, 0.21101054549217224], [0.06270148605108261, 0.018580680713057518, 0.15979012846946716, 0.015210376121103764, 0.02062022127211094, 0.02362925000488758, 0.038785237818956375, 0.01570395939052105, 0.0422176755964756, 0.042492810636758804, 0.032632045447826385, 0.07592606544494629, 0.03713872283697128, 0.09492141753435135, 0.13550794124603271, 0.0456867590546608, 0.13845527172088623], [0.0552029013633728, 0.03745970502495766, 0.08970589935779572, 0.007209817413240671, 0.010326535440981388, 0.014292473904788494, 0.015026808716356754, 0.041386928409338, 0.07573705166578293, 0.05720151960849762, 0.018984483554959297, 0.030409062281250954, 0.04165385663509369, 0.22854256629943848, 0.036919306963682175, 0.029538234695792198, 0.2104029804468155], [0.022899465635418892, 0.024759864434599876, 0.08564167469739914, 0.0077392589300870895, 0.038067229092121124, 0.03607000410556793, 0.01198351290076971, 0.04539123550057411, 0.033280134201049805, 0.0962849110364914, 0.023986605927348137, 0.16346056759357452, 0.16955357789993286, 0.08608866482973099, 0.01938687078654766, 0.017461832612752914, 0.11794460564851761], [5.39046709491231e-07, 1.2910049029812853e-08, 2.997915693470077e-09, 9.687985969009105e-10, 5.700149727227988e-11, 2.3968746432068144e-10, 2.120931874571852e-09, 2.0052830507211183e-09, 4.1204955778084695e-05, 1.0826789775819634e-06, 6.497870799648808e-06, 1.7855295482149813e-06, 8.23706250230316e-06, 8.747030619815632e-07, 1.802810402296018e-05, 4.153688496444374e-05, 0.999880313873291]], [[0.4522051513195038, 0.07623647898435593, 0.027919242158532143, 0.035999845713377, 0.08349619060754776, 0.019427096471190453, 0.05187578126788139, 0.027510447427630424, 0.01445896178483963, 0.027349503710865974, 0.013545246794819832, 0.06334026157855988, 0.030286243185400963, 0.02672632411122322, 0.03649211302399635, 0.00903548114001751, 0.004095627460628748], [0.22317545115947723, 0.06382100284099579, 0.05888044089078903, 0.049211613833904266, 0.13121356070041656, 0.06643986701965332, 0.0620323047041893, 0.10699689388275146, 0.0343746654689312, 0.04030245915055275, 0.05449175089597702, 0.015260525979101658, 0.01441941037774086, 0.051165707409381866, 0.012906704097986221, 0.009400923736393452, 0.005906717851758003], [0.06794585287570953, 0.1672438085079193, 0.22915023565292358, 0.024345679208636284, 0.16521067917346954, 0.09566453844308853, 0.03178289905190468, 0.049769431352615356, 0.015491669997572899, 0.03189234808087349, 0.005836388096213341, 0.015635255724191666, 0.02730834297835827, 0.03977164626121521, 0.02932717837393284, 0.002584383124485612, 0.0010396799771115184], [0.0019585308618843555, 0.7207427620887756, 0.07722131162881851, 0.004655138123780489, 0.03747379034757614, 0.05254172161221504, 0.008140715770423412, 0.016761539503932, 0.012247414328157902, 0.05264122784137726, 0.005919741000980139, 0.0015853171935305, 0.004358803387731314, 0.0019629127345979214, 0.0005766953690908849, 0.00020377084729261696, 0.001008533057756722], [0.025915242731571198, 0.026313217356801033, 0.1458832025527954, 0.2851893901824951, 0.23177862167358398, 0.12325704842805862, 0.053885672241449356, 0.04005128890275955, 0.008830639533698559, 0.0016609665472060442, 0.004477020353078842, 0.010466582141816616, 0.014143839478492737, 0.018876660615205765, 0.003539198776707053, 0.005014950409531593, 0.0007165209972299635], [0.06897823512554169, 0.03946160525083542, 0.40949440002441406, 0.02331404760479927, 0.20725378394126892, 0.07915252447128296, 0.06029766425490379, 0.046219512820243835, 0.007097764406353235, 0.01039657648652792, 0.004642943385988474, 0.007727229502052069, 0.008718782104551792, 0.01666164956986904, 0.008082425221800804, 0.0013291724026203156, 0.001171768526546657], [0.11204667389392853, 0.002064715139567852, 0.07884853333234787, 0.0231044702231884, 0.4335665702819824, 0.22349999845027924, 0.015278663486242294, 0.021423274651169777, 0.00486252224072814, 0.0015719160437583923, 0.0013278420083224773, 0.008107521571218967, 0.01719454489648342, 0.046971384435892105, 0.0064142923802137375, 0.003084664698690176, 0.0006322385743260384], [0.045064717531204224, 0.061848171055316925, 0.06443827599287033, 0.049729522317647934, 0.2260524332523346, 0.07010719925165176, 0.17648132145404816, 0.160780131816864, 0.032271843403577805, 0.03418389707803726, 0.007624479942023754, 0.03132493048906326, 0.007417135406285524, 0.01037380937486887, 0.016183815896511078, 0.004492961801588535, 0.0016253096982836723], [0.003729620948433876, 0.019178112968802452, 0.008320917375385761, 0.003610414220020175, 0.01731022074818611, 0.019468005746603012, 0.015363910235464573, 0.7111199498176575, 0.07527204602956772, 0.03925952687859535, 0.029104769229888916, 0.017176028341054916, 0.018435312435030937, 0.002877231454476714, 0.002948450157418847, 0.0017658548895269632, 0.015059570781886578], [0.1122286394238472, 0.005725213326513767, 0.007830118760466576, 0.018747668713331223, 0.046964243054389954, 0.02027987129986286, 0.04182044789195061, 0.060731735080480576, 0.14661774039268494, 0.11308518052101135, 0.12625354528427124, 0.13461105525493622, 0.031244609504938126, 0.04327597841620445, 0.02240343578159809, 0.02710208110511303, 0.041078414767980576], [0.0019868644885718822, 0.0029012442100793123, 0.03415127471089363, 0.003377157263457775, 0.021869391202926636, 0.016370456665754318, 0.01350669376552105, 0.13002537190914154, 0.08001197874546051, 0.47171226143836975, 0.06813553720712662, 0.018448758870363235, 0.08434359729290009, 0.014303343370556831, 0.0060247816145420074, 0.005617797840386629, 0.027213556692004204], [0.0012034880928695202, 0.003988053649663925, 0.01811078004539013, 0.03138766437768936, 0.02679568901658058, 0.01594444178044796, 0.028057347983121872, 0.08293617516756058, 0.23756594955921173, 0.05265144631266594, 0.2417776733636856, 0.045061975717544556, 0.0782533809542656, 0.02548084780573845, 0.006170281209051609, 0.04199046269059181, 0.06262443959712982], [0.011548996903002262, 0.002671988680958748, 0.013300352729856968, 0.00573762645944953, 0.02851112000644207, 0.011765186674892902, 0.01182110421359539, 0.034734729677438736, 0.06407833099365234, 0.06737424433231354, 0.14551088213920593, 0.2167421579360962, 0.19757318496704102, 0.0646800771355629, 0.01695670373737812, 0.057373709976673126, 0.049619704484939575], [0.026585998013615608, 0.0010515417670831084, 0.004557711537927389, 0.005754321347922087, 0.01731204427778721, 0.004033405799418688, 0.005897670052945614, 0.011935831047594547, 0.0362488329410553, 0.029862700030207634, 0.04841899126768112, 0.539275050163269, 0.09850410372018814, 0.06712836027145386, 0.02949517033994198, 0.03715115785598755, 0.036787163466215134], [0.041452087461948395, 0.000551372766494751, 0.012106509879231453, 0.0025557572953402996, 0.029549917206168175, 0.0024494952522218227, 0.004159799311310053, 0.009580275975167751, 0.01520668063312769, 0.023142937570810318, 0.025920597836375237, 0.27663901448249817, 0.18025699257850647, 0.2660350501537323, 0.0187570471316576, 0.030158380046486855, 0.06147802993655205], [0.0001405895600328222, 0.006572019308805466, 0.0031815404072403908, 0.0004570690798573196, 0.003964514471590519, 0.0015125961508601904, 0.001515182782895863, 0.0054846699349582195, 0.03184382990002632, 0.4382510483264923, 0.06007954105734825, 0.023391874507069588, 0.11213231086730957, 0.010536914691329002, 0.006349750328809023, 0.006076218094676733, 0.288510262966156], [2.382694583502598e-05, 1.6672100173309445e-05, 1.213609539263416e-05, 3.5883535929315258e-06, 2.2867236111778766e-05, 8.452716429019347e-06, 1.6258918549283408e-05, 0.000548299984075129, 0.0027398846577852964, 0.0031625269912183285, 0.0070969704538583755, 0.011805384419858456, 0.01725119724869728, 0.000560812943149358, 0.0009160325862467289, 0.006874747108668089, 0.9489404559135437]], [[0.07207582890987396, 0.030081165954470634, 0.0698365718126297, 0.05415603145956993, 0.040005918592214584, 0.04452523961663246, 0.05477667227387428, 0.07413895428180695, 0.020463814958930016, 0.04867997393012047, 0.09254953265190125, 0.07381545752286911, 0.09486182779073715, 0.082914799451828, 0.07271520793437958, 0.04404165968298912, 0.030361313372850418], [0.02388051338493824, 0.09712941199541092, 0.13507598638534546, 0.12161228060722351, 0.07565468549728394, 0.09102176129817963, 0.03974504768848419, 0.07507934421300888, 0.12584571540355682, 0.0545763336122036, 0.01604420691728592, 0.011612973175942898, 0.027364207431674004, 0.019178539514541626, 0.021193353459239006, 0.03272027149796486, 0.032265398651361465], [0.14521171152591705, 0.1255667805671692, 0.007684384007006884, 0.03585522249341011, 0.09271423518657684, 0.021124502643942833, 0.05305418372154236, 0.11939787119626999, 0.05426167696714401, 0.01743321679532528, 0.10690226405858994, 0.02871570736169815, 0.04158058017492294, 0.04895868897438049, 0.04626128450036049, 0.018562469631433487, 0.036715105175971985], [0.021534226834774017, 0.16972415149211884, 0.04721628129482269, 0.06455666571855545, 0.12413521111011505, 0.09946053475141525, 0.02451961673796177, 0.05252651125192642, 0.1565346121788025, 0.042592115700244904, 0.028904670849442482, 0.030724521726369858, 0.021228116005659103, 0.023331813514232635, 0.0168754905462265, 0.03380384296178818, 0.04233171045780182], [0.18212783336639404, 0.05782119929790497, 0.16624435782432556, 0.061060693114995956, 0.025745224207639694, 0.05096830800175667, 0.09386604279279709, 0.04790102317929268, 0.09353011846542358, 0.038641296327114105, 0.029350461438298225, 0.015338404104113579, 0.012258137576282024, 0.042409393936395645, 0.034138504415750504, 0.023105019703507423, 0.025494007393717766], [0.2883266806602478, 0.020761892199516296, 0.045150283724069595, 0.012247641570866108, 0.0693461000919342, 0.0051894644275307655, 0.08609198778867722, 0.08481674641370773, 0.08602578192949295, 0.01470259390771389, 0.04659475013613701, 0.024310611188411713, 0.018510956317186356, 0.055132340639829636, 0.08806735277175903, 0.010098050348460674, 0.04462667927145958], [0.07446767389774323, 0.1230199858546257, 0.10566249489784241, 0.06260287761688232, 0.041301827877759933, 0.0890895202755928, 0.05263271555304527, 0.08570503443479538, 0.0857565850019455, 0.05045425519347191, 0.055470049381256104, 0.04604503884911537, 0.018547367304563522, 0.02415427938103676, 0.025428179651498795, 0.029278477653861046, 0.03038364090025425], [0.14375796914100647, 0.12766575813293457, 0.07687808573246002, 0.06146235391497612, 0.025420017540454865, 0.09101464599370956, 0.08417452126741409, 0.05357314273715019, 0.01134533155709505, 0.07383982092142105, 0.054581303149461746, 0.062397975474596024, 0.03553818166255951, 0.02532547153532505, 0.025117862969636917, 0.03893119841814041, 0.008976396173238754], [0.040774792432785034, 0.13950109481811523, 0.02118922770023346, 0.0640266165137291, 0.044749144464731216, 0.03973620384931564, 0.061510711908340454, 0.08475141227245331, 0.014940092340111732, 0.0757886990904808, 0.09931029379367828, 0.08393636345863342, 0.05245032161474228, 0.059110067784786224, 0.027142135426402092, 0.07597208023071289, 0.015110681764781475], [0.4042286276817322, 0.02303842455148697, 0.04327826946973801, 0.02220737747848034, 0.024905072525143623, 0.017578905448317528, 0.031729016453027725, 0.05251544713973999, 0.04675205796957016, 0.00783507525920868, 0.09679113328456879, 0.024453289806842804, 0.02132745087146759, 0.07777412235736847, 0.033756352961063385, 0.03557467460632324, 0.036254674196243286], [0.02890595607459545, 0.0868535041809082, 0.03905981406569481, 0.07673788070678711, 0.06935548782348633, 0.017652153968811035, 0.039013754576444626, 0.04142361134290695, 0.11229785531759262, 0.04908713325858116, 0.0825323835015297, 0.050595663487911224, 0.042241185903549194, 0.030702881515026093, 0.06782406568527222, 0.041330575942993164, 0.12438603490591049], [0.051494911313056946, 0.05110412463545799, 0.07177115976810455, 0.03816363215446472, 0.06721803545951843, 0.055009134113788605, 0.05375649407505989, 0.038038868457078934, 0.041565731167793274, 0.04354572296142578, 0.07399876415729523, 0.08210265636444092, 0.07860209047794342, 0.07368873804807663, 0.0557437464594841, 0.08313024044036865, 0.04106597602367401], [0.30957141518592834, 0.026946723461151123, 0.030617903918027878, 0.00909468811005354, 0.012938322499394417, 0.005976587533950806, 0.0647820383310318, 0.042692121118307114, 0.03459575027227402, 0.016926975920796394, 0.16411443054676056, 0.05676984786987305, 0.009580451063811779, 0.07468540966510773, 0.05725482851266861, 0.030714837834239006, 0.05273762717843056], [0.17414706945419312, 0.02067970670759678, 0.10534961521625519, 0.03243619576096535, 0.03173006698489189, 0.03161533549427986, 0.05324887856841087, 0.03352835029363632, 0.04464622214436531, 0.02641052007675171, 0.12195944786071777, 0.10071049630641937, 0.024074766784906387, 0.030658595263957977, 0.06795603036880493, 0.03804737329483032, 0.06280133873224258], [0.14174634218215942, 0.07984764873981476, 0.05403934419155121, 0.018503038212656975, 0.043897174298763275, 0.04191182926297188, 0.05589395761489868, 0.0508967749774456, 0.03724489361047745, 0.01597260683774948, 0.17404040694236755, 0.07636553794145584, 0.05074698477983475, 0.05537647008895874, 0.02398299053311348, 0.03783499076962471, 0.04169907048344612], [0.0533464252948761, 0.04371226206421852, 0.019833769649267197, 0.02924042008817196, 0.06765838712453842, 0.03478259593248367, 0.037271589040756226, 0.03777080401778221, 0.03779437392950058, 0.05305246263742447, 0.17477799952030182, 0.09143199026584625, 0.07000453770160675, 0.08606479316949844, 0.054692089557647705, 0.04827326163649559, 0.06029229983687401], [0.06381995230913162, 0.03170640766620636, 0.004985055420547724, 0.016410794109106064, 0.010395670309662819, 0.00661464361473918, 0.03198925778269768, 0.03062201663851738, 0.0027444791048765182, 0.03453819453716278, 0.2534266412258148, 0.16793431341648102, 0.06967359781265259, 0.09238817542791367, 0.048972662538290024, 0.11378097534179688, 0.01999727636575699]], [[0.03515833616256714, 0.0798664465546608, 0.01630859263241291, 0.14789149165153503, 0.08934218436479568, 0.03217592090368271, 0.06830880045890808, 0.030619218945503235, 0.17491836845874786, 0.0416850820183754, 0.04187638685107231, 0.051688242703676224, 0.04284347966313362, 0.010884474031627178, 0.02676309645175934, 0.04683941602706909, 0.06283047050237656], [0.00906633771955967, 0.007233552634716034, 0.0071291569620370865, 0.0901627242565155, 0.08500444144010544, 0.03731818124651909, 0.017713570967316628, 0.04864385724067688, 0.6713555455207825, 0.0013698127586394548, 0.001527724089100957, 0.003079200629144907, 0.0036342886742204428, 0.002154689049348235, 0.0011569688795134425, 0.0025306325405836105, 0.010919292457401752], [0.02119581773877144, 0.013936267234385014, 0.18366488814353943, 0.04073388874530792, 0.14117489755153656, 0.29261794686317444, 0.022417636588215828, 0.19487611949443817, 0.05600067228078842, 0.0019989456050097942, 0.004539075773209333, 0.0021221840288490057, 0.0043496135622262955, 0.009173189289867878, 0.00819883868098259, 0.001727689290419221, 0.0012723386753350496], [0.019561290740966797, 0.030619964003562927, 0.024989742785692215, 0.007378019858151674, 0.15077579021453857, 0.031912967562675476, 0.0557866245508194, 0.06938115507364273, 0.5711490511894226, 0.024206284433603287, 0.0011899482924491167, 0.0009746656287461519, 0.0016707185423001647, 0.0010043636430054903, 0.001857830211520195, 0.0005939669790677726, 0.00694759888574481], [0.014949947595596313, 0.0364830456674099, 0.10173313319683075, 0.06478868424892426, 0.11181814223527908, 0.2349889725446701, 0.02512570470571518, 0.2544487416744232, 0.06896540522575378, 0.02933378890156746, 0.019377965480089188, 0.0010600468376651406, 0.009931511245667934, 0.011072607710957527, 0.010862203314900398, 0.0034645176492631435, 0.0015955098206177354], [0.07112161815166473, 0.09935048967599869, 0.17491373419761658, 0.10266263037919998, 0.2617430090904236, 0.09294117987155914, 0.03491080179810524, 0.07117832452058792, 0.04160849004983902, 0.022633247077465057, 0.004940207116305828, 0.0032543574925512075, 0.008275501430034637, 0.005043844226747751, 0.0024784624110907316, 0.0015372901689261198, 0.0014068287564441562], [0.006367841735482216, 0.021246016025543213, 0.08985381573438644, 0.3080625832080841, 0.2526113986968994, 0.11120738834142685, 0.028941325843334198, 0.09924904257059097, 0.06420885026454926, 0.0013314973330125213, 0.0024215762969106436, 0.00171946850605309, 0.004013487603515387, 0.004174456931650639, 0.0027731608133763075, 0.0011439566733315587, 0.0006740911048837006], [0.02697315625846386, 0.04311920329928398, 0.1649632751941681, 0.08712518215179443, 0.10151567310094833, 0.09761759638786316, 0.11727719753980637, 0.11513151228427887, 0.21653573215007782, 0.0010895318118855357, 0.004290437325835228, 0.0062949806451797485, 0.004447329323738813, 0.004242948722094297, 0.007139301858842373, 0.0003665502299554646, 0.0018705135444179177], [0.002932084957137704, 0.08548032492399216, 0.015188615769147873, 0.32496634125709534, 0.06970572471618652, 0.007528556976467371, 0.06105625256896019, 0.04819296672940254, 0.3530505299568176, 0.00633058650419116, 0.001208824454806745, 0.010793852619826794, 0.003044052980840206, 0.0009751369943842292, 0.002682421123608947, 0.003046723548322916, 0.0038170877378433943], [0.026182059198617935, 0.0026353721041232347, 0.014284180477261543, 0.0019502710783854127, 0.002652481198310852, 0.0106190862134099, 0.0039725396782159805, 0.01705651544034481, 0.0050896815955638885, 0.07474858313798904, 0.07118715345859528, 0.06656379997730255, 0.1229143962264061, 0.14376245439052582, 0.06306520104408264, 0.2047741562128067, 0.1685420423746109], [0.00655555771663785, 0.0012789893662557006, 0.0010506988037377596, 0.00044898202759213746, 0.0012205109233036637, 0.0004583994741551578, 0.0007158190128393471, 0.0017670101951807737, 0.00580983841791749, 0.5319936871528625, 0.012461146339774132, 0.05339212715625763, 0.05954696238040924, 0.008004698902368546, 0.004466962534934282, 0.02240138314664364, 0.2884272336959839], [0.019198056310415268, 0.001700622378848493, 0.0006798736867494881, 0.0012679336359724402, 0.0018198138568550348, 0.0021204801741987467, 0.0017914302879944444, 0.00396747887134552, 0.005293841939419508, 0.23742806911468506, 0.20335489511489868, 0.03166976571083069, 0.06257409602403641, 0.04587889090180397, 0.029524097219109535, 0.09712150692939758, 0.25460922718048096], [0.03541591390967369, 0.0010044040391221642, 0.009562980383634567, 0.0031110995914787054, 0.004129722248762846, 0.012886565178632736, 0.005492286290973425, 0.014601752161979675, 0.003477429738268256, 0.18211369216442108, 0.07259315997362137, 0.1317169964313507, 0.10589143633842468, 0.16349096596240997, 0.06330373883247375, 0.0840979814529419, 0.10710986703634262], [0.02291938289999962, 0.006745031103491783, 0.02585463784635067, 0.016562605276703835, 0.018693825230002403, 0.026624808087944984, 0.013393472880125046, 0.025357374921441078, 0.007036125287413597, 0.07818956673145294, 0.06174234300851822, 0.0683279037475586, 0.06935539096593857, 0.03648192062973976, 0.06454432755708694, 0.4329819679260254, 0.02518923580646515], [0.012972544878721237, 0.004065094515681267, 0.02714398130774498, 0.0024757881183177233, 0.008076858706772327, 0.02106679230928421, 0.010974295437335968, 0.03196815028786659, 0.0046197292394936085, 0.07364416122436523, 0.06945107132196426, 0.06775133311748505, 0.11162839829921722, 0.13545583188533783, 0.07084579020738602, 0.26834627985954285, 0.07951385527849197], [0.011609595268964767, 0.0008981616119854152, 0.00037887669168412685, 0.0001698910491541028, 0.0013160291127860546, 0.0010050254641100764, 0.0007526596309617162, 0.0023018934298306704, 0.007861015386879444, 0.3170816898345947, 0.023111121729016304, 0.028089255094528198, 0.06838614493608475, 0.013917909003794193, 0.007903464138507843, 0.006222649943083525, 0.5089946389198303], [0.0019937308970838785, 0.0008322559297084808, 0.00023586218594573438, 0.001045373734086752, 0.0003337216912768781, 0.0001086789125110954, 0.001255252631381154, 0.001599939540028572, 0.0025449173990637064, 0.26299434900283813, 0.023124611005187035, 0.26984673738479614, 0.04125869646668434, 0.009962305426597595, 0.014961829409003258, 0.06820107251405716, 0.29970061779022217]], [[0.008703794330358505, 0.028337936848402023, 0.036497388035058975, 0.3179890811443329, 0.0342254638671875, 0.014647513628005981, 0.15658988058567047, 0.07963840663433075, 0.0504162460565567, 0.007810052018612623, 0.02126569114625454, 0.04604148864746094, 0.014514554291963577, 0.025807274505496025, 0.04341826215386391, 0.08485356718301773, 0.029243331402540207], [0.003257530275732279, 0.014143377542495728, 0.030460435897111893, 0.5566112399101257, 0.0674440786242485, 0.02056693658232689, 0.02118591219186783, 0.08736512809991837, 0.12027458846569061, 0.003574702423065901, 0.004306348040699959, 0.00856547337025404, 0.005849181208759546, 0.006364749278873205, 0.02825976349413395, 0.014159289188683033, 0.007611260283738375], [0.019974956288933754, 0.011629141867160797, 0.07035370171070099, 0.02859698049724102, 0.08074373006820679, 0.13332095742225647, 0.06927911937236786, 0.46246176958084106, 0.04819855839014053, 0.009691307321190834, 0.0013374672271311283, 0.013957006856799126, 0.007881246507167816, 0.01621880754828453, 0.01895863004028797, 0.004472723230719566, 0.0029238893184810877], [0.014392857439815998, 0.6814941763877869, 0.024798402562737465, 0.00337932538241148, 0.053651124238967896, 0.0072357975877821445, 0.007232386618852615, 0.022842107340693474, 0.08711760491132736, 0.0298911165446043, 0.030503615736961365, 0.0018633375875651836, 0.026354365050792694, 0.004749304614961147, 0.0009832560317590833, 0.0005606042104773223, 0.0029506373684853315], [0.027468478307127953, 0.10789855569601059, 0.19367998838424683, 0.06358932703733444, 0.04233098775148392, 0.23926369845867157, 0.005481854546815157, 0.04740671068429947, 0.06732773035764694, 0.01831057108938694, 0.035194605588912964, 0.003690612269565463, 0.0874093770980835, 0.027725795283913612, 0.029748598113656044, 0.0012340922839939594, 0.002238919958472252], [0.02020617201924324, 0.02203536406159401, 0.033887434750795364, 0.050584208220243454, 0.5214219093322754, 0.0702914372086525, 0.042194753885269165, 0.10264209657907486, 0.07326971739530563, 0.01757563278079033, 0.002588002709671855, 0.0020996304228901863, 0.015356292948126793, 0.01379159465432167, 0.007605087012052536, 0.0010641419794410467, 0.0033865529112517834], [0.025835225358605385, 0.024546880275011063, 0.06501937657594681, 0.17729876935482025, 0.23874863982200623, 0.12987853586673737, 0.0258779339492321, 0.11599919945001602, 0.06498986482620239, 0.016615135595202446, 0.013382242992520332, 0.02174832671880722, 0.021303698420524597, 0.03887410834431648, 0.013686718419194221, 0.002741637174040079, 0.003453668439760804], [0.012444564141333103, 0.02419978938996792, 0.09062561392784119, 0.04456598684191704, 0.09836862236261368, 0.03768983855843544, 0.04686807841062546, 0.30903956294059753, 0.15584996342658997, 0.03142288699746132, 0.018415672704577446, 0.03722061589360237, 0.02271999791264534, 0.011616760864853859, 0.039878398180007935, 0.009723562747240067, 0.009350127540528774], [0.004296176601201296, 0.025899868458509445, 0.015311871655285358, 0.1919618397951126, 0.04361548274755478, 0.030678419396281242, 0.03896272927522659, 0.5280066132545471, 0.06130514666438103, 0.006227157078683376, 0.0064658611081540585, 0.019711071625351906, 0.003964062314480543, 0.0032162752468138933, 0.014402758330106735, 0.004201842471957207, 0.0017728424863889813], [0.024266233667731285, 0.01093385275453329, 0.016984064131975174, 0.004984752275049686, 0.007481112610548735, 0.03188614174723625, 0.00909456703811884, 0.2679964601993561, 0.022699784487485886, 0.04521472379565239, 0.17385147511959076, 0.033378779888153076, 0.1641552746295929, 0.09768208861351013, 0.034414567053318024, 0.025280149653553963, 0.029695887118577957], [0.015299608930945396, 0.015785014256834984, 0.008361319079995155, 0.0006249594152905047, 0.007860596291720867, 0.002455179812386632, 0.008047391660511494, 0.016079703345894814, 0.012717393226921558, 0.5432901978492737, 0.055639464408159256, 0.05342431366443634, 0.13850365579128265, 0.031961891800165176, 0.02108975686132908, 0.0324493832886219, 0.03641004487872124], [0.053870562463998795, 0.004424483515322208, 0.0043601482175290585, 0.001997340004891157, 0.01322959829121828, 0.014276626519858837, 0.0033141672611236572, 0.05482332780957222, 0.032131992280483246, 0.07546987384557724, 0.09363347291946411, 0.007881388999521732, 0.2760334312915802, 0.07278186082839966, 0.12219052761793137, 0.06377334892749786, 0.10580787062644958], [0.00925365462899208, 0.006607287097722292, 0.012390349991619587, 0.015145400539040565, 0.021609047427773476, 0.00757995992898941, 0.014946120791137218, 0.013473916798830032, 0.01051262766122818, 0.182551309466362, 0.07738935947418213, 0.14221714437007904, 0.0836256742477417, 0.08769398927688599, 0.13632802665233612, 0.13100314140319824, 0.04767309129238129], [0.04649527370929718, 0.007164914160966873, 0.005849217996001244, 0.0012236693874001503, 0.0437605120241642, 0.007520769722759724, 0.017299002036452293, 0.010521815158426762, 0.016591574996709824, 0.06772533059120178, 0.017187099903821945, 0.031427476555109024, 0.14749610424041748, 0.015205055475234985, 0.46340328454971313, 0.025704599916934967, 0.07542426139116287], [0.014624546281993389, 0.004884281195700169, 0.00985758937895298, 0.003012509550899267, 0.03382030501961708, 0.00245943502523005, 0.013505540788173676, 0.007328514941036701, 0.010887760668992996, 0.016765698790550232, 0.015321548096835613, 0.02908072993159294, 0.006833572406321764, 0.7107034921646118, 0.0033725458197295666, 0.04717245325446129, 0.07036957889795303], [0.01661417819559574, 0.016832664608955383, 0.004995496943593025, 0.0006262136739678681, 0.0031050376128405333, 0.0018032253719866276, 0.0009451500372961164, 0.003058635164052248, 0.005683426279574633, 0.10786101967096329, 0.1786084622144699, 0.014133759774267673, 0.3131258189678192, 0.08723433315753937, 0.022915994748473167, 0.01567789539694786, 0.20677857100963593], [0.011585846543312073, 0.0014485669089481235, 0.0012079791631549597, 0.010266603901982307, 0.003049129154533148, 0.0021340458188205957, 0.00614704005420208, 0.04010748863220215, 0.0025159502401947975, 0.0387464240193367, 0.02254108153283596, 0.14072473347187042, 0.04632231220602989, 0.027118079364299774, 0.2534995377063751, 0.23111724853515625, 0.16146792471408844]], [[0.3151586353778839, 0.1100153848528862, 0.013261418789625168, 0.007182653062045574, 0.006734122522175312, 0.015668433159589767, 0.026092085987329483, 0.012030692771077156, 0.05885550379753113, 0.04550478234887123, 0.053476933389902115, 0.01804729551076889, 0.024768279865384102, 0.012427376583218575, 0.021046994253993034, 0.025330809876322746, 0.23439855873584747], [0.12868036329746246, 0.05020623654127121, 0.04352681711316109, 0.044267669320106506, 0.06922342628240585, 0.0586404874920845, 0.11787914484739304, 0.21278542280197144, 0.011017017997801304, 0.025592343881726265, 0.0421178936958313, 0.05956674739718437, 0.0440940335392952, 0.03432290256023407, 0.030304770916700363, 0.02068067155778408, 0.007094115484505892], [0.014511588029563427, 0.03831863030791283, 0.3213781714439392, 0.057754017412662506, 0.041259948164224625, 0.18111389875411987, 0.022478805854916573, 0.035277530550956726, 0.02839508280158043, 0.06441372632980347, 0.04830627143383026, 0.023198122158646584, 0.01992473006248474, 0.03235041722655296, 0.04213673993945122, 0.019411567598581314, 0.0097707100212574], [0.09856840968132019, 0.03302838280797005, 0.05710271745920181, 0.07177997380495071, 0.08965713530778885, 0.07356850057840347, 0.059109900146722794, 0.1575271189212799, 0.041145049035549164, 0.019606277346611023, 0.012599573470652103, 0.02298656664788723, 0.05791425704956055, 0.07773377001285553, 0.03326566517353058, 0.0734192356467247, 0.020987525582313538], [0.13763386011123657, 0.023727694526314735, 0.04992688447237015, 0.0822889655828476, 0.04870613291859627, 0.03208567947149277, 0.21788309514522552, 0.10060948133468628, 0.04463799297809601, 0.025675037875771523, 0.02627575397491455, 0.09429445117712021, 0.013071255758404732, 0.024463418871164322, 0.030244100838899612, 0.03953491896390915, 0.00894131325185299], [0.06399432569742203, 0.09939510375261307, 0.04323585331439972, 0.23998641967773438, 0.039040617644786835, 0.031802985817193985, 0.07835780084133148, 0.03297166898846626, 0.05566003546118736, 0.0603729672729969, 0.026775527745485306, 0.04063938930630684, 0.013095780275762081, 0.023802625015378, 0.024258354678750038, 0.11301542073488235, 0.01359516754746437], [0.10354834794998169, 0.1194508746266365, 0.023394186049699783, 0.15901106595993042, 0.05579296872019768, 0.01770668849349022, 0.1913813352584839, 0.07892581075429916, 0.034141018986701965, 0.021089935675263405, 0.0282573401927948, 0.04269837960600853, 0.014099941588938236, 0.02838147059082985, 0.02851889468729496, 0.045091379433870316, 0.008510440587997437], [0.004442719276994467, 0.03570292517542839, 0.20076386630535126, 0.18386435508728027, 0.09603149443864822, 0.08761825412511826, 0.06705799698829651, 0.11942239105701447, 0.0375593900680542, 0.012371964752674103, 0.026716334745287895, 0.014715065248310566, 0.019626814872026443, 0.03156737610697746, 0.01938757486641407, 0.03194998577237129, 0.011201484128832817], [0.011864487081766129, 0.11439939588308334, 0.0051422445103526115, 0.014265062287449837, 0.02085231989622116, 0.0035430071875452995, 0.011535421945154667, 0.0012360550463199615, 0.7664823532104492, 0.001131283468566835, 0.0036152286920696497, 0.0008522254647687078, 0.00034796056570485234, 0.00024297041818499565, 0.00016062580107245594, 0.0008736010058782995, 0.043455757200717926], [0.062082190066576004, 0.05242917686700821, 0.02288883738219738, 0.06286608427762985, 0.021808043122291565, 0.0169636569917202, 0.12245861440896988, 0.028119267895817757, 0.01948828436434269, 0.08855277299880981, 0.05956091731786728, 0.09327330440282822, 0.04130667448043823, 0.04341350495815277, 0.027116846293210983, 0.16473986208438873, 0.07293197512626648], [0.21505969762802124, 0.01480448804795742, 0.024971431121230125, 0.02108367718756199, 0.008694419637322426, 0.020008806139230728, 0.0335586741566658, 0.15525440871715546, 0.028348395600914955, 0.038782838732004166, 0.03816986456513405, 0.07811594009399414, 0.03940173611044884, 0.05490882694721222, 0.07377290725708008, 0.07111425697803497, 0.08394961059093475], [0.0871221199631691, 0.034306786954402924, 0.016620954498648643, 0.040584951639175415, 0.01628957688808441, 0.011101530864834785, 0.13387727737426758, 0.08549814671278, 0.046284761279821396, 0.05391332507133484, 0.10950876027345657, 0.05121465027332306, 0.039336107671260834, 0.030011426657438278, 0.04578227922320366, 0.0755179226398468, 0.12302945554256439], [0.015155383385717869, 0.04207645356655121, 0.038503292948007584, 0.06510785967111588, 0.018866432830691338, 0.013820890337228775, 0.07301356643438339, 0.0866699293255806, 0.06137312203645706, 0.06311662495136261, 0.09550552070140839, 0.1489153504371643, 0.009929455816745758, 0.027894139289855957, 0.018275555223226547, 0.10901713371276855, 0.11275924742221832], [0.11631946265697479, 0.08591070771217346, 0.013996097259223461, 0.02553335763514042, 0.044912923127412796, 0.051308274269104004, 0.08520212769508362, 0.03852086141705513, 0.04989771172404289, 0.09932108223438263, 0.06320645660161972, 0.07227468490600586, 0.04815056174993515, 0.021891184151172638, 0.09003005176782608, 0.03844022750854492, 0.05508424714207649], [0.040084920823574066, 0.0794089138507843, 0.04568714648485184, 0.04725225269794464, 0.018014028668403625, 0.02296232245862484, 0.09286968410015106, 0.13630813360214233, 0.02106429450213909, 0.050591692328453064, 0.03648265078663826, 0.1787043809890747, 0.03039979189634323, 0.04410983622074127, 0.05463092029094696, 0.06780829280614853, 0.03362071514129639], [0.02700302191078663, 0.01747763529419899, 0.03070266917347908, 0.12967005372047424, 0.020561538636684418, 0.0304489117115736, 0.057144373655319214, 0.06352531909942627, 0.07827381044626236, 0.022231614217162132, 0.058685000985860825, 0.03210814297199249, 0.06691708415746689, 0.06509841978549957, 0.020255399867892265, 0.10095085948705673, 0.17894619703292847], [0.00249118753708899, 0.058819033205509186, 0.0013066079700365663, 0.004116188734769821, 0.0038019418716430664, 0.0012782010016962886, 0.00383367040194571, 0.0006938646547496319, 0.5325980186462402, 0.0034911194816231728, 0.01755925640463829, 0.0030430404003709555, 0.0007656373200006783, 0.0003766310110222548, 0.0003307466395199299, 0.0024407983291894197, 0.36305415630340576]], [[0.05366489663720131, 0.013326861895620823, 0.035705629736185074, 0.017725413665175438, 0.021139897406101227, 0.016126224771142006, 0.03905770927667618, 0.08667251467704773, 0.03724033012986183, 0.131747767329216, 0.07875160872936249, 0.02515810914337635, 0.06670679897069931, 0.022565120831131935, 0.06760559231042862, 0.047641776502132416, 0.23916368186473846], [0.10719181597232819, 0.06171116232872009, 0.3013807535171509, 0.03794829919934273, 0.05507837235927582, 0.07111842930316925, 0.06489422917366028, 0.2455788105726242, 0.010625060647726059, 0.011863687075674534, 0.015315487049520016, 0.003497633384540677, 0.004441088531166315, 0.005406490061432123, 0.003567544976249337, 0.00022161522065289319, 0.0001594703207956627], [0.2356697916984558, 0.10945609211921692, 0.3206360936164856, 0.03839602693915367, 0.03337891027331352, 0.06335017085075378, 0.05203716456890106, 0.12023136764764786, 0.007034218404442072, 0.00836984533816576, 0.003998216241598129, 0.0022902516648173332, 0.0016475931042805314, 0.0008114398224279284, 0.002471902407705784, 0.0002081232814816758, 1.2680451618507504e-05], [0.008345738984644413, 0.5164564251899719, 0.20191191136837006, 0.05351008102297783, 0.06803572177886963, 0.05143987759947777, 0.01573142223060131, 0.034689582884311676, 0.007977493107318878, 0.007897846400737762, 0.02351473830640316, 0.002882627537474036, 0.005294881761074066, 0.0012846369063481688, 0.0009333751513622701, 8.39518615975976e-05, 9.552006304147653e-06], [0.06676739454269409, 0.27349960803985596, 0.4561753273010254, 0.055715933442115784, 0.09682420641183853, 0.026370450854301453, 0.007020842283964157, 0.008348268456757069, 0.0007414669962599874, 0.0035285507328808308, 0.0013157157227396965, 0.00038352955016307533, 0.0023205154575407505, 0.000476876157335937, 0.0004446223028935492, 6.371040944941342e-05, 2.9752748105238425e-06], [0.1661752313375473, 0.0685761496424675, 0.4658031165599823, 0.07675064355134964, 0.13027821481227875, 0.03830696642398834, 0.014079157263040543, 0.02513439953327179, 0.0010443981736898422, 0.0031104814261198044, 0.001444032066501677, 0.0006676503107883036, 0.003515154356136918, 0.0036656686570495367, 0.001331364386714995, 9.938723815139383e-05, 1.809268542274367e-05], [0.01189227681607008, 0.03440048173069954, 0.12620249390602112, 0.06225048750638962, 0.5502164363861084, 0.17143751680850983, 0.016833234578371048, 0.008786951191723347, 0.001322822761721909, 0.0011419992661103606, 0.001093560946173966, 0.0009655383182689548, 0.006927405018359423, 0.005606699734926224, 0.0006572494748979807, 0.00020566907187458128, 5.9139758377568796e-05], [0.0033392421901226044, 0.014496413059532642, 0.030030017718672752, 0.1475164294242859, 0.3980634808540344, 0.047243718057870865, 0.04660404473543167, 0.26027533411979675, 0.009565036743879318, 0.0031682979315519333, 0.011523754335939884, 0.004697142168879509, 0.011235179379582405, 0.0065018306486308575, 0.003318639937788248, 0.002174386056140065, 0.00024708223645575345], [0.007030535489320755, 0.030325111001729965, 0.023130590096116066, 0.016618795692920685, 0.1984899491071701, 0.12919509410858154, 0.20506642758846283, 0.38063156604766846, 0.00394117645919323, 0.0008863060502335429, 0.0019725332967936993, 0.0002003176778089255, 0.0011080717667937279, 0.0011153894010931253, 0.00026514811906963587, 2.0453282559174113e-05, 2.6044726837426424e-06], [0.003567933337762952, 0.006447296589612961, 0.012742963619530201, 0.0049604326486587524, 0.031012924388051033, 0.023581689223647118, 0.07633425295352936, 0.7590482831001282, 0.04287115857005119, 0.016943028196692467, 0.011061662808060646, 0.0012298504589125514, 0.005625784397125244, 0.002090521389618516, 0.0013406253419816494, 0.0009446584153920412, 0.00019689225882757455], [0.002508379751816392, 0.008127317763864994, 0.006937735248357058, 0.003746312577277422, 0.012477690353989601, 0.01154171023517847, 0.029863722622394562, 0.6015902161598206, 0.2265121340751648, 0.059228263795375824, 0.02252165786921978, 0.0065796407870948315, 0.004541346337646246, 0.0007519465289078653, 0.0016162429237738252, 0.0010733185335993767, 0.0003823531442321837], [0.0013870190596207976, 0.02100195735692978, 0.00815045926719904, 0.02463262714445591, 0.007942592725157738, 0.011483998037874699, 0.012731208465993404, 0.44544947147369385, 0.263877809047699, 0.13180671632289886, 0.051571331918239594, 0.003083230461925268, 0.011088494211435318, 0.0018862361321225762, 0.0010846008080989122, 0.0023257946595549583, 0.0004966087872162461], [0.013663713820278645, 0.013034246861934662, 0.016080224886536598, 0.006316511891782284, 0.026983000338077545, 0.01072967704385519, 0.025954073294997215, 0.15858541429042816, 0.09496775269508362, 0.23595298826694489, 0.2675606906414032, 0.0608065202832222, 0.05850319191813469, 0.003931818064302206, 0.004518663976341486, 0.0020161629654467106, 0.000395295734051615], [0.011303563602268696, 0.008551310747861862, 0.017003187909722328, 0.014643363654613495, 0.014294256456196308, 0.006495532114058733, 0.008540479466319084, 0.054204944521188736, 0.047746505588293076, 0.1697213053703308, 0.24143975973129272, 0.15802733600139618, 0.2151937186717987, 0.014083472080528736, 0.01092943362891674, 0.0060703023336827755, 0.0017515834188088775], [0.0015166419325396419, 0.008756814524531364, 0.012863056734204292, 0.01837296597659588, 0.027307458221912384, 0.007392773870378733, 0.021870072931051254, 0.03886174038052559, 0.026515083387494087, 0.025678327307105064, 0.1431700438261032, 0.10860763490200043, 0.4547676742076874, 0.08180113136768341, 0.01281964872032404, 0.006552339531481266, 0.0031466681975871325], [0.0009545692591927946, 0.001522948150523007, 0.002078883582726121, 0.0015379617689177394, 0.002696308773010969, 0.001345092081464827, 0.003131213830783963, 0.012030623853206635, 0.009217243641614914, 0.011800726875662804, 0.3264195919036865, 0.08330187201499939, 0.3033777177333832, 0.18165475130081177, 0.04365663230419159, 0.01224252674728632, 0.003031285712495446], [0.005904765799641609, 0.004374198615550995, 0.006154804956167936, 0.0007268937770277262, 0.003546689171344042, 0.001545797218568623, 0.0059205312281847, 0.013320356607437134, 0.00551215372979641, 0.0072792391292750835, 0.1268681287765503, 0.05033908411860466, 0.2587333619594574, 0.24454623460769653, 0.17340511083602905, 0.07920872420072556, 0.012613956816494465]], [[0.022592751309275627, 0.041242972016334534, 0.06407269835472107, 0.041319869458675385, 0.06316812336444855, 0.12288127094507217, 0.03249724954366684, 0.01767602376639843, 0.03114771470427513, 0.1399928480386734, 0.03838957101106644, 0.06812949478626251, 0.04396490007638931, 0.08401870727539062, 0.056498318910598755, 0.07249383628368378, 0.05991361662745476], [0.0024522601161152124, 0.05789865553379059, 0.2315445989370346, 0.304757684469223, 0.18794825673103333, 0.05799189209938049, 0.048881154507398605, 0.034303195774555206, 0.052871618419885635, 0.0021386321168392897, 0.001978401793166995, 0.002313601551577449, 0.003174731507897377, 0.003533181268721819, 0.005604541394859552, 0.001970448298379779, 0.0006372025818563998], [0.07386548072099686, 0.07841330021619797, 0.05245635658502579, 0.0539100207388401, 0.2018413543701172, 0.19102394580841064, 0.0738258808851242, 0.1676979660987854, 0.03512115776538849, 0.025920525193214417, 0.001833446673117578, 0.0021894965320825577, 0.0048238663002848625, 0.0052408636547625065, 0.025936903432011604, 0.00504214596003294, 0.000857346341945231], [0.01166706345975399, 0.033831946551799774, 0.09444530308246613, 0.031177956610918045, 0.2863520681858063, 0.2343894988298416, 0.08405474573373795, 0.1434207260608673, 0.05359455198049545, 0.005088564939796925, 0.001422438770532608, 0.0007215141085907817, 0.007617046125233173, 0.0029152221977710724, 0.007982546463608742, 0.0010119563667103648, 0.0003069056256208569], [0.003358527086675167, 0.033571645617485046, 0.09078340977430344, 0.024664288386702538, 0.14903205633163452, 0.29403719305992126, 0.11627621948719025, 0.2077040821313858, 0.04962916672229767, 0.01149197481572628, 0.001370060839690268, 0.0011997469700872898, 0.005541961174458265, 0.004602860659360886, 0.005630850791931152, 0.0006087329820729792, 0.0004972346359863877], [0.10242671519517899, 0.01428561843931675, 0.27957308292388916, 0.02694641798734665, 0.02779257670044899, 0.04037510231137276, 0.05366629734635353, 0.37752828001976013, 0.03707906976342201, 0.022837096825242043, 0.0018641973147168756, 0.0008440730161964893, 0.0017874921904876828, 0.0046611069701612, 0.006668757647275925, 0.0012950439704582095, 0.00036907749017700553], [0.008889823220670223, 0.044925156980752945, 0.15463511645793915, 0.025073954835534096, 0.07735048979520798, 0.23808468878269196, 0.03327044099569321, 0.24279668927192688, 0.0773877203464508, 0.03436198830604553, 0.011761189438402653, 0.006235687993466854, 0.0059006488882005215, 0.02326914854347706, 0.013922258280217648, 0.0011311275884509087, 0.0010038753971457481], [0.00512270350009203, 0.02222408540546894, 0.013582033105194569, 0.056794486939907074, 0.018675442785024643, 0.021052811294794083, 0.03266278654336929, 0.5071450471878052, 0.25193968415260315, 0.009966454468667507, 0.026696957647800446, 0.01665411703288555, 0.004814067855477333, 0.0027057058177888393, 0.004738589283078909, 0.003753240453079343, 0.0014718392631039023], [0.0005366563564166427, 0.010071475990116596, 0.02656141296029091, 0.013414682820439339, 0.014030099846422672, 0.012698138132691383, 0.021791649982333183, 0.8589319586753845, 0.009669174440205097, 0.007888669148087502, 0.006772278342396021, 0.0049042715691030025, 0.00709201954305172, 0.0023182425647974014, 0.002772808773443103, 0.000488156802020967, 5.827374479849823e-05], [0.005822913721203804, 0.0067282626405358315, 0.008053707890212536, 0.004308303818106651, 0.011623624712228775, 0.00645578233525157, 0.0034779582638293505, 0.02257639169692993, 0.024457497522234917, 0.02696382813155651, 0.21083782613277435, 0.15946076810359955, 0.1944255530834198, 0.0941864550113678, 0.0901217982172966, 0.03318466991186142, 0.09731460362672806], [0.006752613931894302, 0.021546373143792152, 0.022713132202625275, 0.03949722275137901, 0.02330799028277397, 0.02343795821070671, 0.007825855165719986, 0.018903149291872978, 0.018383199349045753, 0.06708011776208878, 0.01935456693172455, 0.09393268078565598, 0.09119968116283417, 0.13621564209461212, 0.17743781208992004, 0.19761450588703156, 0.03479741886258125], [0.010231377556920052, 0.006993897724896669, 0.0035543779376894236, 0.006209128070622683, 0.008916785940527916, 0.0025827386416494846, 0.013614773750305176, 0.02752945013344288, 0.008013597689568996, 0.034138623625040054, 0.06695550680160522, 0.0347055122256279, 0.2647591233253479, 0.07598547637462616, 0.38272085785865784, 0.029523678123950958, 0.023565147072076797], [0.0017297770828008652, 0.0035777920857071877, 0.004379001911729574, 0.00348403537645936, 0.013788655400276184, 0.010207629762589931, 0.006903520785272121, 0.01639179140329361, 0.0050702570006251335, 0.06593973934650421, 0.017517302185297012, 0.05015934631228447, 0.1409766674041748, 0.14035001397132874, 0.21759778261184692, 0.18434959650039673, 0.11757706105709076], [0.02367863617837429, 0.014378308318555355, 0.019954072311520576, 0.01592298410832882, 0.017052380368113518, 0.014680364169180393, 0.031541772186756134, 0.1418466866016388, 0.016826948150992393, 0.06164643540978432, 0.04712852090597153, 0.023603985086083412, 0.07742704451084137, 0.03240324556827545, 0.11892727762460709, 0.23681142926216125, 0.1061699315905571], [0.0025931817945092916, 0.005052092485129833, 0.00449332082644105, 0.007472687866538763, 0.00824285950511694, 0.006850372534245253, 0.00588183430954814, 0.01014531310647726, 0.003920306917279959, 0.03335360810160637, 0.007960778661072254, 0.051070135086774826, 0.06304628401994705, 0.0462176539003849, 0.036121029406785965, 0.5187029242515564, 0.18887564539909363], [0.006727236323058605, 0.008314987644553185, 0.016345614567399025, 0.013904438354074955, 0.018732335418462753, 0.022339019924402237, 0.013412481173872948, 0.04597458615899086, 0.008343709632754326, 0.041254106909036636, 0.0301947221159935, 0.033651288598775864, 0.12942668795585632, 0.09611938893795013, 0.17631614208221436, 0.12154346704483032, 0.21739977598190308], [0.001379967201501131, 0.0031912035774439573, 0.004053221084177494, 0.002789696678519249, 0.00516172219067812, 0.0034302109852433205, 0.015421082265675068, 0.3257053792476654, 0.0012095352867618203, 0.05029366910457611, 0.04462410509586334, 0.048011474311351776, 0.18008168041706085, 0.028116412460803986, 0.07472699880599976, 0.13831168413162231, 0.0734918862581253]], [[0.025229431688785553, 0.1906249225139618, 0.018277404829859734, 0.011615282855927944, 0.029721707105636597, 0.008722244761884212, 0.07310659438371658, 0.10010955482721329, 0.05713200196623802, 0.05475836247205734, 0.04314306005835533, 0.1592230200767517, 0.036683451384305954, 0.021975398063659668, 0.07122796773910522, 0.018974140286445618, 0.07947549968957901], [0.012608767487108707, 0.12484779208898544, 0.026645516976714134, 0.03025100752711296, 0.09148713201284409, 0.022706059738993645, 0.049812521785497665, 0.09678985923528671, 0.2959100902080536, 0.0319729819893837, 0.02228666841983795, 0.0232565738260746, 0.02562052384018898, 0.021012352779507637, 0.027559524402022362, 0.020890893414616585, 0.07634176313877106], [0.1415875405073166, 0.03529421240091324, 0.22378429770469666, 0.06198011711239815, 0.1561271846294403, 0.12882360816001892, 0.0391521230340004, 0.0539872832596302, 0.0032149699982255697, 0.016723942011594772, 0.011417727917432785, 0.007595948409289122, 0.02660720981657505, 0.03540116921067238, 0.038540177047252655, 0.01873904839158058, 0.0010234653018414974], [0.017227372154593468, 0.10166235268115997, 0.03571029007434845, 0.03298285976052284, 0.12852007150650024, 0.04406985640525818, 0.09933997690677643, 0.07160454988479614, 0.2834462821483612, 0.013986077159643173, 0.012742975726723671, 0.013676805421710014, 0.022733399644494057, 0.020076457411050797, 0.02279636636376381, 0.023109592497348785, 0.056314706802368164], [0.028876036405563354, 0.09424487501382828, 0.04294281452894211, 0.041587136685848236, 0.10838973522186279, 0.17510558664798737, 0.08401867747306824, 0.14879046380519867, 0.08715034276247025, 0.029224565252661705, 0.009517844766378403, 0.010138439014554024, 0.05474145710468292, 0.034425996243953705, 0.017445022240281105, 0.015107192099094391, 0.01829385571181774], [0.07790114730596542, 0.037476781755685806, 0.04905135557055473, 0.00814921222627163, 0.26637306809425354, 0.12962016463279724, 0.09078303724527359, 0.05145665630698204, 0.0279252827167511, 0.0244514849036932, 0.018658295273780823, 0.005730919074267149, 0.11969494074583054, 0.023751411586999893, 0.05797486752271652, 0.003649243153631687, 0.007352083455771208], [0.08221862465143204, 0.11170019954442978, 0.04120054468512535, 0.045744847506284714, 0.09016142785549164, 0.04958293214440346, 0.11624215543270111, 0.05828208848834038, 0.16475266218185425, 0.04565241187810898, 0.018964026123285294, 0.028694765642285347, 0.027565328404307365, 0.03266844525933266, 0.037144891917705536, 0.016734721139073372, 0.03268992155790329], [0.13198214769363403, 0.08994144201278687, 0.22639891505241394, 0.11927301436662674, 0.11254222691059113, 0.1049356609582901, 0.0779351145029068, 0.043838679790496826, 0.0007090592989698052, 0.011589981615543365, 0.019597677513957024, 0.0017998183611780405, 0.012662512250244617, 0.008410376496613026, 0.021716704592108727, 0.016524679958820343, 0.0001418645988451317], [0.3768383860588074, 0.12330149859189987, 0.02853669784963131, 0.03096090629696846, 0.04759572446346283, 0.059986863285303116, 0.1724219024181366, 0.07827011495828629, 0.007937856018543243, 0.00919436477124691, 0.004470595624297857, 0.009378609247505665, 0.010524829849600792, 0.01043486874550581, 0.019735919311642647, 0.008899723179638386, 0.001511107780970633], [0.03135097771883011, 0.05269235000014305, 0.023349938914179802, 0.1323545277118683, 0.13828955590724945, 0.07383492588996887, 0.031481850892305374, 0.028434528037905693, 0.020914731547236443, 0.033943936228752136, 0.03359381482005119, 0.02261863648891449, 0.08283568173646927, 0.07018949091434479, 0.04248347505927086, 0.16127561032772064, 0.020356111228466034], [0.03490123152732849, 0.10801766067743301, 0.019449643790721893, 0.04172982648015022, 0.07739521563053131, 0.03016926348209381, 0.13350681960582733, 0.048867661505937576, 0.03307081386446953, 0.06607325375080109, 0.08509712666273117, 0.045208368450403214, 0.056096915155649185, 0.04158082604408264, 0.04673530161380768, 0.08800392597913742, 0.04409627243876457], [0.05154607072472572, 0.13161619007587433, 0.015470139682292938, 0.037308115512132645, 0.09358541667461395, 0.045323196798563004, 0.08748354762792587, 0.04389321058988571, 0.0751238763332367, 0.03394602984189987, 0.06617578864097595, 0.039348721504211426, 0.0755181759595871, 0.04657603055238724, 0.05110987275838852, 0.03752486780285835, 0.06845078617334366], [0.045170001685619354, 0.023220911622047424, 0.05770496651530266, 0.02595735527575016, 0.2384619265794754, 0.22330813109874725, 0.06707781553268433, 0.04752959683537483, 0.005720003042370081, 0.029135147109627724, 0.029502270743250847, 0.004957693628966808, 0.06609918177127838, 0.0657583475112915, 0.04484422132372856, 0.01947348192334175, 0.00607894454151392], [0.05315763130784035, 0.06410051882266998, 0.020315688103437424, 0.015302143059670925, 0.1043320894241333, 0.2639279365539551, 0.030412442982196808, 0.023462509736418724, 0.02145475521683693, 0.029132265597581863, 0.09598658233880997, 0.03790988028049469, 0.07511664181947708, 0.06056159734725952, 0.04498083144426346, 0.03499474376440048, 0.0248517207801342], [0.16818305850028992, 0.06326840817928314, 0.05614742264151573, 0.07093902677297592, 0.04383542761206627, 0.11131663620471954, 0.023724956437945366, 0.034650057554244995, 0.01285067480057478, 0.03518915921449661, 0.024192672222852707, 0.04659947007894516, 0.024818921461701393, 0.07859275490045547, 0.04899810999631882, 0.14249159395694733, 0.014201649464666843], [0.018804555758833885, 0.1452721804380417, 0.015372946858406067, 0.046491123735904694, 0.06757894158363342, 0.04078845679759979, 0.0687142089009285, 0.02868746407330036, 0.07122844457626343, 0.043288882821798325, 0.06034913659095764, 0.04891715571284294, 0.024664482101798058, 0.039178308099508286, 0.0678272470831871, 0.11166568100452423, 0.10117077082395554], [0.6231653690338135, 0.04444140940904617, 0.015488763339817524, 0.014099380932748318, 0.023624960333108902, 0.06599694490432739, 0.04869147017598152, 0.02038084715604782, 0.0009414941305294633, 0.014225088059902191, 0.01238776370882988, 0.018895264714956284, 0.01611875183880329, 0.028241945430636406, 0.03211964666843414, 0.019706713035702705, 0.0014741843333467841]], [[0.5297853946685791, 0.028465336188673973, 0.02506268583238125, 0.029630254954099655, 0.04766254499554634, 0.01360179390758276, 0.03147514909505844, 0.02458438090980053, 0.04230737313628197, 0.023439422249794006, 0.04026693105697632, 0.026047907769680023, 0.023394061252474785, 0.05324985086917877, 0.01479105744510889, 0.019583487883210182, 0.02665235474705696], [0.17063994705677032, 0.05888991057872772, 0.5528180599212646, 0.05428105592727661, 0.025899801403284073, 0.001957215601578355, 0.04174285754561424, 0.010018263012170792, 0.037448253482580185, 0.003583453129976988, 0.019389398396015167, 0.005982087459415197, 0.004441962111741304, 0.004561947658658028, 0.0007211402407847345, 0.007333206012845039, 0.0002913186326622963], [0.8909273147583008, 0.08032894879579544, 0.0025539323687553406, 0.010308152996003628, 0.0017845286056399345, 0.00020814086019527167, 0.00026543892454355955, 0.001113833743147552, 0.004582714289426804, 0.0019126191036775708, 0.004298180341720581, 0.00032235425896942616, 9.852810035226867e-05, 0.0006160056218504906, 0.00030618280288763344, 0.00010265781747875735, 0.00027038660482503474], [0.10857869684696198, 0.01627052016556263, 0.17978540062904358, 0.015306293964385986, 0.5894787311553955, 0.0069667198695242405, 0.01477954350411892, 0.0030409551691263914, 0.026412608101963997, 0.0021361846011132, 0.016677897423505783, 0.014800668694078922, 0.0028928909450769424, 0.0005878520314581692, 0.001204014988616109, 0.00043835901306010783, 0.0006426859763450921], [0.33767518401145935, 0.04650860279798508, 0.041055794805288315, 0.17031604051589966, 0.07923808693885803, 0.15906578302383423, 0.03530227020382881, 0.04126405343413353, 0.004364499822258949, 0.0019668610766530037, 0.0009451291407458484, 0.012885362841188908, 0.056752391159534454, 0.004813986364752054, 0.0029920327942818403, 0.0012678267667070031, 0.003586124163120985], [0.5636687278747559, 0.0009270262089557946, 0.021299337968230247, 0.0045332107692956924, 0.07245277613401413, 0.00034146313555538654, 0.3119720220565796, 0.003071835031732917, 0.006842904724180698, 0.000274136895313859, 0.0015084922779351473, 0.00021697493502870202, 0.006742208264768124, 0.003178044455125928, 0.002103708451613784, 0.00017256222781725228, 0.0006945595378056169], [0.0034285683650523424, 0.0004321909218560904, 1.4425149856833741e-05, 0.0006366359302774072, 0.0007624393911100924, 0.9838820695877075, 7.799694139976054e-05, 0.0074768359772861, 0.0011207726784050465, 0.0019184118136763573, 1.1265839930274524e-05, 5.301832061377354e-05, 2.1885936803300865e-05, 7.566863473584817e-07, 0.00012025000614812598, 1.2447904737200588e-05, 3.0048226108192466e-05], [0.029951950535178185, 0.0008752135909162462, 0.0002883475390262902, 0.0006025819457136095, 0.008834654465317726, 0.0030747363343834877, 0.06330305337905884, 0.5941256284713745, 0.28267496824264526, 0.00859396904706955, 0.005169601645320654, 0.00016499900084454566, 0.00032435308094136417, 0.00011302684288239107, 0.0012292881729081273, 0.00026034965412691236, 0.00041327576036565006], [0.7789714932441711, 0.00022499822080135345, 0.00016182770195882767, 0.0001228098408319056, 5.0754322728607804e-05, 0.00016056757885962725, 0.001908572157844901, 0.16523577272891998, 0.03237298130989075, 0.01315589714795351, 0.003399125300347805, 0.003103874158114195, 0.0008009437005966902, 0.00011767839168896899, 0.00014725646178703755, 4.433339199749753e-05, 2.0980391127523035e-05], [0.12921631336212158, 0.0027394054923206568, 0.0015853192890062928, 0.00033284889650531113, 0.0005371670704334974, 2.662128463271074e-05, 0.004090360831469297, 0.05729591101408005, 0.5213974714279175, 0.0060508777387440205, 0.2624721825122833, 0.0013905806699767709, 0.009184601716697216, 0.0010160582605749369, 0.0011505259899422526, 0.0001983383990591392, 0.0013153988402336836], [0.14676052331924438, 0.009243791922926903, 0.004999727010726929, 0.009514186531305313, 0.0008303028298541903, 0.0013667411403730512, 0.0007688934565521777, 0.07283740490674973, 0.09306642413139343, 0.2315906435251236, 0.05676010996103287, 0.3287101089954376, 0.0124549875035882, 0.007957584224641323, 0.006199636030942202, 0.015734124928712845, 0.0012047147611156106], [0.008004061877727509, 0.002158306771889329, 0.0015265600522980094, 0.0005280429031699896, 0.0004625661240424961, 2.4361703253816813e-05, 0.0011331778950989246, 0.0005862020188942552, 0.01661285199224949, 0.0009265700937248766, 0.05330977961421013, 0.006060315296053886, 0.904312014579773, 0.0032233658712357283, 0.0004049489216413349, 0.00010776261478895321, 0.0006190987187437713], [0.0762576013803482, 0.001045120763592422, 0.003688471857458353, 0.0010932286968454719, 0.00449006212875247, 0.002644736785441637, 0.00073879404226318, 0.0010261982679367065, 0.0015050700167194009, 0.001638186746276915, 0.006756780203431845, 0.8357359170913696, 0.039099596440792084, 0.010943735018372536, 0.005432555451989174, 0.007262994069606066, 0.0006409725174307823], [0.2574582099914551, 0.0006624235538765788, 0.0005549232009798288, 0.0007254296215251088, 0.0025924642104655504, 5.587463601841591e-05, 7.177134830271825e-05, 7.798853766871616e-05, 0.0012320630485191941, 0.0028394758701324463, 0.0052256714552640915, 0.0048163277097046375, 0.017115430906414986, 0.004212055820971727, 0.6857254505157471, 0.0031236365903168917, 0.01351089496165514], [0.010709894821047783, 0.0007484433590434492, 8.900796819943935e-05, 0.0016312870429828763, 0.003602010430768132, 0.00010779048170661554, 0.000447740574600175, 0.0009123242925852537, 0.0005111492937430739, 0.00017394138558302075, 0.0009958456503227353, 0.0077655017375946045, 0.0036991583183407784, 0.9275467991828918, 0.0008852282771840692, 0.034538235515356064, 0.005635612644255161], [0.08550012111663818, 0.0001672657672315836, 0.0005095266969874501, 7.990856829565018e-05, 0.0007041409844532609, 1.4359509805217385e-05, 0.0009417919791303575, 0.00023594428785145283, 0.0007948753773234785, 0.00013249741459731013, 0.0024288392160087824, 0.00199946784414351, 0.44115275144577026, 0.009732081554830074, 0.08865057677030563, 0.004404876381158829, 0.3625509738922119], [0.8495730757713318, 3.872965862683486e-06, 3.082321200054139e-05, 7.923857992864214e-06, 1.9904187865904532e-05, 5.858074018760817e-06, 4.14150272263214e-05, 0.00016338461136911064, 3.6585079215001315e-05, 8.851963502820581e-05, 6.038512583472766e-05, 0.0003887961502186954, 0.0007887074025347829, 0.0009766381699591875, 0.005481830332428217, 0.05996217578649521, 0.08237022906541824]], [[0.0028138835914433002, 0.14595000445842743, 0.004342307336628437, 0.007798220496624708, 0.47588446736335754, 0.005292847286909819, 0.01191490888595581, 0.0007258609985001385, 0.012314080260694027, 0.0026334223803132772, 0.07959385216236115, 0.005817516706883907, 0.1497550904750824, 0.031208788976073265, 0.019496599212288857, 0.010442382656037807, 0.03401554748415947], [0.30839553475379944, 0.02442958578467369, 0.04210550710558891, 0.12423135340213776, 0.024058213457465172, 0.13344943523406982, 0.07468478381633759, 0.07993800938129425, 0.07432860136032104, 0.02326391264796257, 0.02260420098900795, 0.01761590875685215, 0.006955130957067013, 0.010127308778464794, 0.008846303448081017, 0.017809618264436722, 0.007156712934374809], [0.007676139939576387, 0.0639035552740097, 0.09770851582288742, 0.025784390047192574, 0.015926800668239594, 0.19102120399475098, 0.023956621065735817, 0.22462424635887146, 0.08848381042480469, 0.026195261627435684, 0.0027917984407395124, 0.0498599074780941, 0.026894720271229744, 0.10260621458292007, 0.0195894967764616, 0.003518287790939212, 0.02945900708436966], [0.562584638595581, 0.03440006449818611, 0.055883146822452545, 0.012190770357847214, 0.04682030528783798, 0.06307457387447357, 0.012469426728785038, 0.07332248985767365, 0.07798133790493011, 0.005355661269277334, 0.008300283923745155, 0.006190975196659565, 0.007199685089290142, 0.004158606752753258, 0.015873489901423454, 0.010205147787928581, 0.003989442251622677], [0.18359829485416412, 0.038653552532196045, 0.15460149943828583, 0.011411380022764206, 0.013630617409944534, 0.18495121598243713, 0.02157178893685341, 0.12013169378042221, 0.1598767638206482, 0.014547049067914486, 0.006147957872599363, 0.009481131099164486, 0.011048650369048119, 0.009451921097934246, 0.03990714251995087, 0.008042896166443825, 0.012946530245244503], [0.13900348544120789, 0.08148740977048874, 0.23679934442043304, 0.02080403082072735, 0.015821468085050583, 0.09797590970993042, 0.07375107705593109, 0.011617355048656464, 0.10100888460874557, 0.02710365317761898, 0.017612215131521225, 0.04142763838171959, 0.016874289140105247, 0.04132341593503952, 0.02388180047273636, 0.010554374195635319, 0.04295368120074272], [0.09020019322633743, 0.03774154558777809, 0.1005101203918457, 0.03667706623673439, 0.024326425045728683, 0.4774423837661743, 0.001731462893076241, 0.028049172833561897, 0.09966190904378891, 0.01091250404715538, 0.012680169194936752, 0.019383061677217484, 0.007540566381067038, 0.01482369378209114, 0.009787033312022686, 0.009432034566998482, 0.019100753590464592], [0.030797069892287254, 0.07728295028209686, 0.06687948852777481, 0.12017962336540222, 0.02633104845881462, 0.07644528150558472, 0.138240247964859, 0.02326146326959133, 0.14521564543247223, 0.04453102499246597, 0.029573574662208557, 0.04475005716085434, 0.019740616902709007, 0.02711784467101097, 0.04582895338535309, 0.03775162249803543, 0.04607353359460831], [0.8316414952278137, 0.049767155200242996, 0.0029625813476741314, 0.014293511398136616, 0.016213009133934975, 0.005573486443608999, 0.009432957507669926, 0.0010794304544106126, 0.04657946154475212, 0.0003252702590543777, 0.01323314942419529, 0.0011480662506073713, 0.0008952190401032567, 0.0003345238510519266, 0.0024672735016793013, 0.0018658393528312445, 0.00218773540109396], [0.020670412108302116, 0.029202111065387726, 0.04855913668870926, 0.016554342582821846, 0.021941810846328735, 0.09035651385784149, 0.026405109092593193, 0.03387559577822685, 0.087388776242733, 0.072963185608387, 0.06884146481752396, 0.05169367417693138, 0.08162571489810944, 0.047629643231630325, 0.038143742829561234, 0.05487896502017975, 0.20926976203918457], [0.08915013074874878, 0.029178563505411148, 0.03518853709101677, 0.015873081982135773, 0.025689249858260155, 0.05005418136715889, 0.0025903002824634314, 0.042547184973955154, 0.025278348475694656, 0.15273098647594452, 0.029039854183793068, 0.04898164048790932, 0.14647991955280304, 0.07680763304233551, 0.027846911922097206, 0.08949966728687286, 0.1130637377500534], [0.7777273058891296, 0.0037733472418040037, 0.001478124177083373, 0.0043999142944812775, 0.006701088044792414, 0.01302959956228733, 0.002849529730156064, 0.008094757795333862, 0.016851214691996574, 0.008304131217300892, 0.01879454404115677, 0.0023173950612545013, 0.023950031027197838, 0.003929700702428818, 0.018228409811854362, 0.050126682966947556, 0.0394442118704319], [0.014837793074548244, 0.008079626597464085, 0.04585641622543335, 0.015075299888849258, 0.11292103677988052, 0.09782068431377411, 0.013583811931312084, 0.052380986511707306, 0.009831427596509457, 0.05812854692339897, 0.030269967392086983, 0.04681221395730972, 0.150766521692276, 0.045657843351364136, 0.12843143939971924, 0.1375322937965393, 0.032014138996601105], [0.04893508553504944, 0.026316823437809944, 0.008845926262438297, 0.00985388457775116, 0.026612350717186928, 0.01817840337753296, 0.06177006661891937, 0.006831398233771324, 0.052024707198143005, 0.11510051786899567, 0.07717482000589371, 0.04640994593501091, 0.04570171236991882, 0.004313973244279623, 0.24344190955162048, 0.06968999654054642, 0.1387985348701477], [0.0260305292904377, 0.01183387916535139, 0.015168212354183197, 0.0069733876734972, 0.038386184722185135, 0.030776556581258774, 0.03352782130241394, 0.027250410988926888, 0.07035466283559799, 0.02562684379518032, 0.0072885556146502495, 0.013761120848357677, 0.05872292444109917, 0.36833906173706055, 0.042586952447891235, 0.02496686764061451, 0.19840611517429352], [0.135867178440094, 0.011997750960290432, 0.029999757185578346, 0.024606216698884964, 0.025782689452171326, 0.03336285427212715, 0.0061295004561543465, 0.02897804230451584, 0.029729513451457024, 0.1426798403263092, 0.04920092225074768, 0.03859607130289078, 0.099080890417099, 0.11154460906982422, 0.023387273773550987, 0.08972253650426865, 0.11933432519435883], [0.7758133411407471, 0.007774508558213711, 0.0009717227076180279, 0.002736188704147935, 0.004408706910908222, 0.001264071324840188, 0.0030430478509515524, 0.00028356979601085186, 0.009030964225530624, 0.0019602940883487463, 0.10288668423891068, 0.007128584198653698, 0.008011512458324432, 0.0010378558654338121, 0.009276295080780983, 0.022623008117079735, 0.04174961894750595]], [[4.6997854951769114e-05, 0.0006311151664704084, 6.937955186003819e-05, 0.0009768882300704718, 0.00014576448302250355, 9.334934293292463e-05, 0.000660013291053474, 2.3489619707106613e-05, 0.29161715507507324, 2.4740964363445528e-05, 0.0006135533330962062, 0.0031444982159882784, 0.0003683871473185718, 0.00017555931117385626, 7.470789569197223e-05, 0.0013607771834358573, 0.6999736428260803], [0.03953053429722786, 0.04480615258216858, 0.17624598741531372, 0.3320455849170685, 0.18302905559539795, 0.11669808626174927, 0.0127596789970994, 0.03359492868185043, 0.015715327113866806, 0.0036370456218719482, 0.010267579928040504, 0.00218258542008698, 0.005212061107158661, 0.012401428073644638, 0.002899571554735303, 0.008493664674460888, 0.0004806677170563489], [0.056025855243206024, 0.017212849110364914, 0.3687164783477783, 0.01077384501695633, 0.07087904214859009, 0.3237742483615875, 0.03511696681380272, 0.08068202435970306, 0.008143906481564045, 0.0030751919839531183, 0.0030450355261564255, 0.0010525588877499104, 0.003112898673862219, 0.007238247897475958, 0.009245934896171093, 0.0015897175762802362, 0.00031523313373327255], [0.015551937744021416, 0.03036537393927574, 0.06994624435901642, 0.05071200802922249, 0.2754291594028473, 0.4450528025627136, 0.016826530918478966, 0.026995129883289337, 0.006157469004392624, 0.007323973346501589, 0.004209441598504782, 0.0030876509845256805, 0.0154345678165555, 0.023224053904414177, 0.0007701454451307654, 0.008718673139810562, 0.00019485618395265192], [0.048887137323617935, 0.07722077518701553, 0.09643282741308212, 0.04219973459839821, 0.23919518291950226, 0.318155974149704, 0.059559255838394165, 0.07164259999990463, 0.0015539806336164474, 0.015555096790194511, 0.003240046324208379, 0.002364320680499077, 0.009810944087803364, 0.009992782957851887, 0.0017093762289732695, 0.0024366870056837797, 4.321666347095743e-05], [0.010238614864647388, 0.02784811519086361, 0.3302167057991028, 0.011526755057275295, 0.11658567935228348, 0.39849233627319336, 0.032393720000982285, 0.03154754638671875, 0.0013876929879188538, 0.009461781941354275, 0.0010100621730089188, 0.0009106516372412443, 0.013249075971543789, 0.01028874795883894, 0.00420496566221118, 0.0005801247316412628, 5.738190156989731e-05], [0.01862824521958828, 0.07213407754898071, 0.1532040387392044, 0.01613878458738327, 0.2503899931907654, 0.2708008289337158, 0.061421703547239304, 0.028818242251873016, 0.001575593021698296, 0.01956940069794655, 0.0040082307532429695, 0.009477389045059681, 0.018582522869110107, 0.05924008786678314, 0.012405281886458397, 0.0034569555427879095, 0.000148552397149615], [0.0953814759850502, 0.12914900481700897, 0.015792902559041977, 0.06117771565914154, 0.03243299946188927, 0.022912047803401947, 0.10839948058128357, 0.437074214220047, 0.019374022260308266, 0.02425185963511467, 0.01198923122137785, 0.011240901425480843, 0.0031097654718905687, 0.0028721927665174007, 0.01974177360534668, 0.004250083584338427, 0.0008503730059601367], [0.046842750161886215, 0.11623495817184448, 0.063980333507061, 0.04431002587080002, 0.1427324116230011, 0.0582481324672699, 0.0772114247083664, 0.0188564732670784, 0.011267701163887978, 0.04962540045380592, 0.01674911007285118, 0.15991328656673431, 0.04218771681189537, 0.05088194087147713, 0.06612319499254227, 0.030405566096305847, 0.004429609049111605], [0.017834164202213287, 0.002756795845925808, 0.05350993201136589, 0.0021620094776153564, 0.023222211748361588, 0.13789162039756775, 0.009836714714765549, 0.051396630704402924, 0.0002801534137688577, 0.13006038963794708, 0.02957182563841343, 0.027847765013575554, 0.14845290780067444, 0.21169456839561462, 0.11597933620214462, 0.034082334488630295, 0.003420712659135461], [0.009180780500173569, 0.0043208966962993145, 0.013429312966763973, 0.01852136105298996, 0.020653001964092255, 0.06049400940537453, 0.0036788966972380877, 0.013552435673773289, 0.000791482103522867, 0.1717328578233719, 0.03971748799085617, 0.036973729729652405, 0.07784470915794373, 0.2781842350959778, 0.021035902202129364, 0.22194860875606537, 0.00794034544378519], [0.007877924479544163, 0.002594415098428726, 0.051812794059515, 0.010642011649906635, 0.036495789885520935, 0.022167861461639404, 0.0056761750020086765, 0.014539164490997791, 0.0003590921696741134, 0.18966199457645416, 0.1029757410287857, 0.030085669830441475, 0.18181461095809937, 0.2510167956352234, 0.027508048340678215, 0.06017230078577995, 0.004599723499268293], [0.019241195172071457, 0.005438725929707289, 0.003354135202243924, 0.0021407820750027895, 0.024612626060843468, 0.031923312693834305, 0.008155552670359612, 0.025547876954078674, 0.001017207046970725, 0.24112504720687866, 0.029882803559303284, 0.18160457909107208, 0.15794700384140015, 0.17487336695194244, 0.043853409588336945, 0.035820309072732925, 0.013462136499583721], [0.07355764508247375, 0.014865903183817863, 0.15413416922092438, 0.005740889813750982, 0.05969779193401337, 0.05063951388001442, 0.05190437659621239, 0.010656776838004589, 0.0029035040643066168, 0.17980147898197174, 0.06359933316707611, 0.0506933331489563, 0.10207530111074448, 0.04617089033126831, 0.07591244578361511, 0.044013675302267075, 0.013633019290864468], [0.01094046887010336, 0.0014406978152692318, 0.07255426049232483, 0.002811927581205964, 0.01564006134867668, 0.011477588675916195, 0.01629479043185711, 0.017017584294080734, 0.003313269931823015, 0.04445313289761543, 0.05322292819619179, 0.07571274787187576, 0.1090952679514885, 0.4110276699066162, 0.054814714938402176, 0.05832207575440407, 0.041860874742269516], [0.008660070598125458, 0.001521358615718782, 0.017713433131575584, 0.0025126044638454914, 0.019752124324440956, 0.0498618483543396, 0.004999701865017414, 0.010655038990080357, 0.00021393646602518857, 0.20005092024803162, 0.03075449913740158, 0.040954459458589554, 0.27685803174972534, 0.30435314774513245, 0.014973180368542671, 0.01312843058258295, 0.003037217538803816], [0.005447723437100649, 0.0013296524994075298, 0.0012926749186590314, 0.00039578264113515615, 0.0017018918879330158, 0.0008921298431232572, 0.0018021955620497465, 0.0005336333997547626, 0.00013476944877766073, 0.16598767042160034, 0.03899261727929115, 0.3594083786010742, 0.07863102853298187, 0.10893061012029648, 0.13735926151275635, 0.06446316838264465, 0.03269682079553604]]], [[[0.6799723505973816, 0.02714240550994873, 0.00449505215510726, 0.009819257073104382, 0.001969903474673629, 0.0013555795885622501, 0.004159142728894949, 0.025402676314115524, 0.10693111270666122, 0.012828328646719456, 0.006657484918832779, 0.0055929021909832954, 0.007443425711244345, 0.003951537888497114, 0.0024434442166239023, 0.0033005631994456053, 0.09653487801551819], [0.23385626077651978, 0.1443607360124588, 0.034189365804195404, 0.007658595219254494, 0.0007355501875281334, 0.0038644634187221527, 0.0035510926973074675, 0.019739340990781784, 0.43852442502975464, 0.006758406292647123, 0.0011488659074530005, 0.0007718694978393614, 0.001132420264184475, 0.0007442851783707738, 0.00030478578992187977, 0.0005385232507251203, 0.1021210327744484], [0.6984356045722961, 0.16992157697677612, 0.02908949740231037, 0.007290296722203493, 0.0009568631066940725, 0.0018246949184685946, 0.004464342724531889, 0.05042754486203194, 0.014225407503545284, 0.006289962213486433, 0.0059830788522958755, 0.004073913209140301, 0.002104290062561631, 0.0010259129339829087, 0.0005240275640971959, 0.0002769042912404984, 0.003086149226874113], [0.25565215945243835, 0.15518487989902496, 0.03777023404836655, 0.024677015841007233, 0.013732791878283024, 0.011438226327300072, 0.02491465024650097, 0.23803526163101196, 0.0382743664085865, 0.14787907898426056, 0.02151949517428875, 0.0031485676299780607, 0.0046502891927957535, 0.008991790004074574, 0.007363536395132542, 0.002457389375194907, 0.004310287069529295], [0.06467265635728836, 0.466308057308197, 0.023762144148349762, 0.038105469197034836, 0.030488623306155205, 0.007472719997167587, 0.04738154262304306, 0.19471128284931183, 0.03719029948115349, 0.0477716326713562, 0.012031198479235172, 0.007923559285700321, 0.014606311917304993, 0.0023776490706950426, 0.002137018134817481, 0.0008437778451479971, 0.0022160594817250967], [0.3908434212207794, 0.24928702414035797, 0.0104661975055933, 0.07785845547914505, 0.019612586125731468, 0.002427377039566636, 0.06945327669382095, 0.07400713860988617, 0.046541303396224976, 0.020975718274712563, 0.014098751358687878, 0.006800937000662088, 0.00822970550507307, 0.0018139125313609838, 0.0017884612316265702, 0.001977817388251424, 0.0038180428091436625], [0.24660643935203552, 0.07539991289377213, 0.028458595275878906, 0.043353334069252014, 0.0176022257655859, 0.007150956429541111, 0.021256957203149796, 0.2747271656990051, 0.12031912803649902, 0.09786100685596466, 0.010012742131948471, 0.01042100414633751, 0.020670607686042786, 0.005555460229516029, 0.005415540188550949, 0.0021889323834329844, 0.01299986056983471], [0.11268492043018341, 0.13597719371318817, 0.004825045820325613, 0.1361781507730484, 0.01413441076874733, 0.017867518588900566, 0.024349015206098557, 0.15218032896518707, 0.20350806415081024, 0.07395793497562408, 0.018989522010087967, 0.01504137646406889, 0.02558129094541073, 0.0068090385757386684, 0.004267056472599506, 0.013145030476152897, 0.04050413891673088], [0.8579596877098083, 0.05068559572100639, 0.0011143614538013935, 0.017629515379667282, 0.0016797656426206231, 0.0018244433449581265, 0.003344691824167967, 0.03524310514330864, 0.012730668298900127, 0.010830081067979336, 0.0018767962465062737, 0.001406803959980607, 0.001417699153535068, 0.0010427485685795546, 0.0002791360893752426, 0.00020951115584466606, 0.0007252647774294019], [0.46295905113220215, 0.13443738222122192, 0.004037299659103155, 0.018081648275256157, 0.0010580584639683366, 0.005880589596927166, 0.00943515170365572, 0.03630466014146805, 0.10564146190881729, 0.06858116388320923, 0.030163217335939407, 0.008098444901406765, 0.014598812907934189, 0.015145520679652691, 0.0024334462359547615, 0.0048456997610628605, 0.07829834520816803], [0.04682144895195961, 0.6307578682899475, 0.017838003113865852, 0.01651613786816597, 0.0009469649521633983, 0.003794413059949875, 0.013334283605217934, 0.018501348793506622, 0.044094476848840714, 0.029435262084007263, 0.10852064937353134, 0.011918683536350727, 0.011145036667585373, 0.006393955554813147, 0.005007254425436258, 0.004316031467169523, 0.030658049508929253], [0.1607009619474411, 0.05023277550935745, 0.006000313442200422, 0.029496043920516968, 0.006779431365430355, 0.002788977697491646, 0.014734962023794651, 0.07584323734045029, 0.07187895476818085, 0.07236018776893616, 0.163868710398674, 0.1402699053287506, 0.05105699226260185, 0.03790202736854553, 0.026137081906199455, 0.015344827435910702, 0.07460454851388931], [0.1354241818189621, 0.08385733515024185, 0.0069400290958583355, 0.023752328008413315, 0.014441447332501411, 0.001654807711020112, 0.02139156311750412, 0.18527966737747192, 0.06950785964727402, 0.1337895691394806, 0.0899280458688736, 0.055529944598674774, 0.04304825887084007, 0.01235974207520485, 0.00789712555706501, 0.032111991196870804, 0.0830860584974289], [0.22548837959766388, 0.02763162925839424, 0.020267117768526077, 0.0464756041765213, 0.0020414525642991066, 0.0037675665225833654, 0.006938498001545668, 0.04487454518675804, 0.10998658090829849, 0.12003193795681, 0.10299677401781082, 0.033140961080789566, 0.023945540189743042, 0.00817831326276064, 0.011400172486901283, 0.03788136690855026, 0.17495357990264893], [0.21357214450836182, 0.05379948392510414, 0.0038793820422142744, 0.029647590592503548, 0.005487753544002771, 0.004448940046131611, 0.06838462501764297, 0.12135495245456696, 0.09188488125801086, 0.05469454079866409, 0.03985161334276199, 0.07988829165697098, 0.08394772559404373, 0.030257239937782288, 0.008133869618177414, 0.023840950801968575, 0.08692600578069687], [0.06259501725435257, 0.0189773328602314, 0.001851109554991126, 0.015108867548406124, 0.0012967042857781053, 0.003537708893418312, 0.008021938614547253, 0.057718198746442795, 0.04869207739830017, 0.3029101490974426, 0.1314173936843872, 0.01983928494155407, 0.07148057222366333, 0.08766323328018188, 0.047424785792827606, 0.013654801994562149, 0.10781078040599823], [0.8161494135856628, 0.013028709217905998, 0.0003173933073412627, 0.005968824494630098, 0.0003629127750173211, 0.00032984092831611633, 0.0013746650656685233, 0.02198980748653412, 0.02877907268702984, 0.025799982249736786, 0.008624272421002388, 0.006171585526317358, 0.008236420340836048, 0.007794405333697796, 0.0012655055616050959, 0.003933065105229616, 0.04987429827451706]], [[0.7820881605148315, 0.04792488366365433, 0.014661292545497417, 0.016982680186629295, 0.00801462959498167, 0.01270146295428276, 0.0072418879717588425, 0.0037491123657673597, 0.05504460260272026, 0.003660280955955386, 0.0010702796280384064, 0.00267069973051548, 0.0035881618969142437, 0.005693497601896524, 0.0035346068907529116, 0.0018381420522928238, 0.029535597190260887], [0.9579739570617676, 0.0325721837580204, 0.004223098047077656, 0.0007561913807876408, 0.0002811573795042932, 0.0010076769394800067, 0.0004763439064845443, 0.00012394772784318775, 0.0019999793730676174, 0.00036444494617171586, 3.25585606333334e-05, 2.79550895356806e-05, 2.9101092877681367e-05, 3.9847553125582635e-05, 5.077746027382091e-05, 3.528599108904018e-06, 3.730615571839735e-05], [0.25807806849479675, 0.7257601618766785, 0.0036532790400087833, 0.002803741255775094, 0.000127884850371629, 0.0001944909308804199, 0.00010639076208462939, 9.574835712555796e-05, 0.007093087304383516, 0.0016282694414258003, 0.00010966626723529771, 3.3055210224119946e-05, 8.349178096977994e-05, 1.1528873073984869e-05, 5.186936687096022e-05, 3.2471805752720684e-05, 0.0001368197990814224], [0.5073351263999939, 0.37685626745224, 0.09392479062080383, 0.005651452578604221, 0.0036995012778788805, 0.0016434623394161463, 4.996777352062054e-05, 2.4235627279267646e-05, 0.006225328426808119, 0.002448765793815255, 0.00015015737153589725, 0.001129818963818252, 0.00010489134001545608, 7.976889901328832e-05, 0.00013148282596375793, 3.22655905620195e-05, 0.0005127229378558695], [0.7279987931251526, 0.03613729029893875, 0.030276218429207802, 0.16253936290740967, 0.023364052176475525, 0.009557483717799187, 0.000169901002664119, 9.23241168493405e-06, 0.0019033962162211537, 0.000315505254548043, 1.8634178559295833e-05, 0.004917223937809467, 0.00012365241127554327, 4.237943721818738e-05, 0.00017242750618606806, 0.00014038177323527634, 0.0023138895630836487], [0.8503820896148682, 0.004731119144707918, 0.0057678669691085815, 0.05592240020632744, 0.06056181341409683, 0.017557615414261818, 0.0017805345123633742, 5.563851664192043e-05, 0.0012225237442180514, 7.857527816668153e-05, 6.276907242863672e-06, 6.2852877817931585e-06, 0.00010676040983526036, 5.278475146042183e-05, 3.7783367588417605e-05, 9.50717439991422e-05, 0.001634836895391345], [0.033895328640937805, 0.0010555146727710962, 0.0030241620261222124, 0.062069300562143326, 0.20510265231132507, 0.6801595091819763, 0.004191290121525526, 0.000631717499345541, 0.0039703440852463245, 2.7234320441493765e-05, 8.475791219098028e-06, 0.00015581303159706295, 0.00015729408187326044, 0.0011690135579556227, 5.669281381415203e-05, 0.00016572343884035945, 0.004159883130341768], [0.05470624938607216, 0.0019496014574542642, 0.0010779440635815263, 0.012869438156485558, 0.06390991806983948, 0.5245635509490967, 0.24727720022201538, 0.009119056165218353, 0.06429312378168106, 0.0023305239155888557, 0.0003047142818104476, 0.0001762459723977372, 0.0015969412634149194, 0.004433896392583847, 0.001325238379649818, 0.0010602757101878524, 0.009006074629724026], [0.8222008943557739, 0.0036109539214521646, 0.00017287030641455203, 0.0003112527774646878, 0.0014039340894669294, 0.0442749559879303, 0.07270245999097824, 0.00214636349119246, 0.05206447094678879, 0.0009648748091422021, 1.688771226326935e-05, 3.3469716527179116e-06, 1.0593680599413346e-05, 2.3963213607203215e-05, 1.704150599834975e-05, 2.8868830668216106e-06, 7.236194505821913e-05], [0.08589247614145279, 0.002521045971661806, 9.903813770506531e-05, 2.902046253439039e-05, 5.1632541726576164e-05, 0.001955093815922737, 0.013761550188064575, 0.007914502173662186, 0.8375268578529358, 0.044680897146463394, 0.004804521799087524, 6.054230107110925e-05, 8.418549987254664e-05, 7.166342402342707e-05, 2.625500928843394e-05, 6.972919891268248e-06, 0.0005136543768458068], [0.04499068856239319, 0.0022313909139484167, 5.856103962287307e-05, 8.88756949279923e-06, 5.031471573602175e-06, 7.308822387130931e-05, 0.0003000217257067561, 0.0006080602179281414, 0.30511003732681274, 0.6376030445098877, 0.007936270907521248, 0.0007638441165909171, 3.6301262298366055e-05, 1.1749708392017055e-05, 9.331100045528729e-06, 1.4653620610260987e-06, 0.00025222208932973444], [0.0602448396384716, 0.005734770558774471, 0.001047954079695046, 0.0003169375122524798, 1.9530880308593623e-05, 4.236752647557296e-05, 4.507845369516872e-05, 0.00014290698163677007, 0.11691242456436157, 0.6769182682037354, 0.12250786274671555, 0.004498713184148073, 0.010668106377124786, 0.0001167189548141323, 6.0324575315462425e-05, 1.2160943697381299e-05, 0.0007110754959285259], [0.13928642868995667, 0.0018911127699539065, 0.00031404936453327537, 0.0010929979616776109, 0.00011156240361742675, 8.815286128083244e-05, 1.8082988390233368e-05, 4.896871905657463e-05, 0.019383331760764122, 0.11752672493457794, 0.08858245611190796, 0.603805422782898, 0.026070117950439453, 0.0011725848307833076, 4.2478350223973393e-05, 5.8079381233255845e-06, 0.0005597656709142029], [0.8591821789741516, 0.0004334145924076438, 0.0007691459613852203, 0.004641552921384573, 0.00032690729130990803, 0.0001838502794271335, 6.091551313147647e-06, 5.274484010442393e-06, 0.0008562818984501064, 0.0011093392968177795, 0.0018167162779718637, 0.03265281021595001, 0.08163183182477951, 0.014997439458966255, 0.0003966383810620755, 3.467359783826396e-05, 0.0009558561723679304], [0.07389561831951141, 0.00020063506963197142, 0.00036372541217133403, 0.0016754217213019729, 0.00023393449373543262, 0.0005504963919520378, 0.00013764100731350482, 4.866508606937714e-05, 0.002255277009680867, 0.00013179796223994344, 0.0009575420408509672, 0.024181334301829338, 0.5397708415985107, 0.3449937105178833, 0.006616031285375357, 0.0003300385142210871, 0.003657291177660227], [0.2204533964395523, 0.0014500131364911795, 0.0001964420371223241, 0.00010653816570993513, 6.076391218812205e-05, 0.00023710961977485567, 3.652758459793404e-05, 2.269806464028079e-05, 0.0007382851326838136, 0.00014259836461860687, 2.0684687115135603e-05, 0.00023706506181042641, 0.019701587036252022, 0.6781007051467896, 0.060226570814847946, 0.002976943738758564, 0.015292058698832989], [0.9199901223182678, 0.008011292666196823, 0.0006773861241526902, 0.0002690139808692038, 0.0001248049666173756, 0.0004705950850620866, 0.00030268330010585487, 0.00012253946624696255, 0.0017638558056205511, 0.000359797035343945, 2.0281862816773355e-05, 2.8241032850928605e-05, 0.0002823210961651057, 0.007347555831074715, 0.015699291601777077, 0.008378030732274055, 0.036152441054582596]], [[0.9978406429290771, 0.00011925151920877397, 0.0016092193545773625, 0.00013301437138579786, 2.2027106751920655e-05, 5.232667535892688e-05, 2.5703395294840448e-05, 4.942137820762582e-05, 8.158062883012462e-06, 1.35425289045088e-05, 1.1349892474754597e-06, 2.4876499082893133e-05, 5.181487267691409e-06, 4.688846820499748e-05, 1.3019774087297264e-05, 3.3104165595432278e-06, 3.225059845135547e-05], [8.979030098998919e-06, 3.896623912424957e-09, 5.4202651256218815e-09, 2.543145442770057e-14, 1.101031903995818e-13, 2.0076509085840272e-13, 2.3550812341954774e-11, 2.934307657964652e-11, 0.9934830069541931, 4.8199296116824275e-12, 7.507496957003673e-14, 1.364648682684183e-13, 1.21502970445303e-12, 9.09517686858985e-12, 4.394645758409865e-11, 8.093931747705715e-14, 0.0065079620108008385], [4.1906554315573885e-07, 0.9999994039535522, 7.34803551338814e-09, 1.1345141714969031e-08, 3.385365035304334e-17, 6.2080984409716884e-15, 3.1602278138272037e-18, 3.0666432934700616e-12, 1.1275758105000477e-09, 1.3559458977852046e-07, 7.147400726825737e-11, 3.397338562815405e-13, 6.513183191430216e-15, 5.192420492765228e-17, 3.594293265796189e-12, 3.731144896084587e-14, 3.875924026175426e-10], [5.224077312959707e-07, 9.750529272878339e-09, 0.9999995231628418, 1.1000453881138128e-08, 2.6140032360899568e-09, 2.9892975907752455e-16, 2.1034500204575069e-16, 2.1213622526628732e-17, 1.2590438414061822e-10, 1.475635585945767e-12, 4.228627725755274e-10, 1.2593409821903823e-11, 5.000276722625513e-14, 1.238122140924359e-15, 6.925083878735194e-14, 9.1514862636706e-15, 2.93911339710462e-10], [4.6030545490793884e-05, 2.293247462148429e-06, 0.00037161048385314643, 0.9995773434638977, 2.250132183689857e-06, 4.6300823441924877e-07, 5.316659579699345e-16, 2.3741115478159887e-14, 7.435826428842053e-16, 1.0979859599649644e-12, 1.7454149375952877e-15, 3.145248950175983e-09, 1.821642100672486e-14, 1.6304959769494753e-12, 1.5849924030994804e-15, 5.612808259619281e-14, 3.4754887856536243e-09], [0.018579285591840744, 4.151894539977663e-12, 6.140186451375484e-05, 9.829395821725484e-06, 0.9812160134315491, 2.487194251443725e-05, 0.0001041195064317435, 5.1184369243006955e-11, 3.86299880972274e-09, 2.127676949459103e-17, 5.345292893206566e-15, 5.917247486268706e-13, 2.375515062436051e-10, 5.136434055863504e-10, 2.9389792682854576e-11, 8.277491647841473e-13, 4.442789759195875e-06], [0.00012907169002573937, 3.5032698245704257e-15, 1.1614941322103667e-13, 3.358269751174703e-08, 1.654805998896336e-07, 0.9998706579208374, 5.506277744871113e-08, 4.730205205305538e-08, 2.6334917728987465e-17, 2.3540642062779234e-17, 7.126719301338613e-25, 2.448989567402712e-16, 1.5626280863140067e-16, 1.6481727094230791e-10, 7.419276463843888e-16, 2.4820565094362135e-17, 5.739518544001189e-16], [7.92926311987685e-06, 4.2648854283247606e-15, 3.9308125846090544e-14, 1.0462367158335564e-14, 2.5681021753598543e-08, 6.90549359205761e-06, 0.999983549118042, 9.731803629620117e-07, 5.952467745373724e-07, 3.804324392265917e-15, 6.027423586935047e-17, 1.3984100368862222e-18, 1.7570112031961571e-12, 2.003625130392317e-12, 2.1574479702746174e-10, 7.453508771011579e-15, 4.912495323722288e-12], [0.0004670645284932107, 3.789615732330276e-09, 3.1329287580005027e-13, 4.771542929109425e-14, 2.4122488251012873e-15, 1.0435915100970306e-05, 8.471471664961427e-05, 0.9993988275527954, 3.6443841509026242e-06, 3.527200533426367e-05, 9.416418952511754e-17, 4.360459967411726e-15, 1.809690391671345e-16, 1.2652847519722954e-12, 1.009537180414466e-12, 1.8396963368926683e-13, 5.700012927341248e-15], [4.028221312069036e-09, 1.202604639136129e-12, 5.910990199777455e-15, 7.949550923721157e-24, 2.0833208137356815e-22, 2.415849996843477e-19, 1.5831309874148047e-10, 1.0074910683499638e-08, 0.9999998807907104, 1.615383666830894e-07, 1.190192722155814e-09, 1.7299311210874502e-20, 6.997273829999383e-18, 5.581980270214859e-22, 7.324843619290703e-15, 3.2802178063035334e-19, 9.522662606370469e-13], [9.274425671890185e-11, 9.278203205731472e-13, 1.9859090500534693e-12, 5.480665447994227e-20, 2.703900293551721e-27, 1.5144368390267484e-21, 1.143353135113929e-21, 1.096773886988256e-11, 9.49169276509565e-09, 1.0, 2.2638714514133795e-10, 3.048254981763421e-10, 1.5336042657574464e-21, 5.671920510829641e-21, 6.195612070538979e-22, 3.577947121378247e-20, 3.6804470777357844e-18], [4.601445198204601e-07, 1.4353030985958526e-09, 3.6727996644003724e-07, 1.6840390843972375e-12, 2.4918963191308993e-17, 1.0714103736119974e-20, 2.0580576757746107e-19, 9.888555117311301e-17, 5.2989868493114045e-08, 4.423784957907628e-06, 0.9999934434890747, 1.3396468148130225e-06, 8.184388278209553e-09, 9.511902892160588e-18, 8.20213173638798e-15, 6.785533817008679e-21, 2.9895818893371784e-12], [1.781740266437737e-08, 3.1141718994802435e-15, 3.094352329924277e-09, 9.614233020815988e-11, 1.4511063520499662e-14, 7.01376949886214e-16, 5.623298527462219e-20, 2.6621659888328972e-17, 6.566792991922904e-17, 2.1402211114462943e-09, 2.3257107351071227e-09, 0.9999998807907104, 1.085264216271753e-07, 1.4982251883566278e-08, 1.3446764504692265e-16, 2.0569484782719654e-19, 5.4941092267491395e-18], [1.9992752640973777e-05, 2.909532424016925e-13, 5.3876687833298575e-11, 2.260905240802913e-08, 2.989041902878853e-09, 7.952740896377541e-12, 4.779488436967849e-14, 5.2451502789652784e-17, 7.312851009186121e-16, 1.1709769921625633e-16, 1.7135370899978852e-10, 2.909276417994988e-06, 0.9999676942825317, 8.07928154245019e-06, 1.2562693427753402e-06, 8.65050026256669e-16, 1.073124054895569e-11], [1.1599305253184866e-05, 1.2786926262297639e-14, 2.75421300349743e-11, 1.9026799450219678e-13, 1.1895821784221883e-12, 6.454959483592759e-11, 4.586023401309536e-12, 9.211971463418678e-12, 5.12880831842643e-16, 1.4757607706391077e-14, 2.3657686051503956e-18, 1.2648217584398935e-08, 1.933645080498536e-06, 0.9999861717224121, 2.531755569634697e-07, 4.590228197542956e-10, 2.0696248873215174e-14], [6.81937308399938e-05, 2.973534266037525e-11, 1.0895241143744211e-13, 2.5913077785025837e-15, 1.2421710642913529e-15, 2.205678565139757e-12, 1.773802354998466e-10, 1.0491045532301513e-10, 1.1577308122595609e-12, 4.1619739427882377e-16, 7.44212949547887e-19, 2.283783632712968e-18, 3.6335732200853954e-09, 1.1618001281021861e-06, 0.9999302625656128, 3.769626744087873e-07, 2.6891315840771313e-08], [0.0007783960900269449, 3.822862026936491e-09, 3.6788537727261428e-06, 1.6344290504344272e-11, 5.106468091257976e-13, 1.0013295054234206e-10, 4.988924551252438e-11, 1.547768420095963e-07, 1.083850897920513e-09, 5.798336815132643e-07, 1.8211692868813287e-14, 9.820046685538042e-12, 9.017669965784292e-13, 2.7481069082568865e-06, 0.00014535938680637628, 0.9988910555839539, 0.00017812862643040717]], [[0.6867114305496216, 0.03072221577167511, 0.02288508228957653, 0.03828873857855797, 0.010716172866523266, 0.01141773909330368, 0.004283017944544554, 0.03079269640147686, 0.038320280611515045, 0.013301149010658264, 0.0077605461701750755, 0.013062524609267712, 0.012182185426354408, 0.021070564165711403, 0.007635727524757385, 0.010611308738589287, 0.04023851454257965], [0.9179489612579346, 0.01180310919880867, 0.010726666077971458, 0.020051773637533188, 0.0016027606325224042, 0.004612643271684647, 0.0002809829020407051, 0.0002525901945773512, 0.024664320051670074, 0.00020162669534329325, 0.0012812917120754719, 0.0029853179585188627, 0.0005285842344164848, 0.00023236988636199385, 0.0008858073852024972, 0.00021149087115190923, 0.0017296596197411418], [0.8211691379547119, 0.1309223175048828, 0.024959741160273552, 0.006833124440163374, 0.00022249194444157183, 0.001361209899187088, 6.993339047767222e-05, 0.0012610647827386856, 0.006858004257082939, 3.9932550862431526e-05, 3.187872425769456e-05, 7.340813317568973e-05, 7.717863627476618e-05, 2.593474528111983e-05, 0.002406905870884657, 2.8805574402213097e-05, 0.003658830188214779], [0.6250025033950806, 0.025590239092707634, 0.02464127726852894, 0.032638270407915115, 0.12564685940742493, 0.0638093426823616, 0.004042367916554213, 0.0011176529806107283, 0.07262792438268661, 0.0007836133008822799, 0.0019296242389827967, 0.0032756892032921314, 0.002491659950464964, 0.0004455614252947271, 0.00024836932425387204, 0.0004241968272253871, 0.015284932218492031], [0.10142362862825394, 0.015944037586450577, 0.0013855933211743832, 0.7803941369056702, 0.006138871423900127, 0.06482014805078506, 0.005172446835786104, 0.0024370690807700157, 0.011203977279365063, 0.0002616133715491742, 4.450437336345203e-05, 0.0017202859744429588, 0.0003087419318035245, 0.00047019548946991563, 0.00026256879209540784, 0.0014795943861827254, 0.006532443221658468], [0.6328158974647522, 0.002295407000929117, 0.008679562248289585, 0.006556634325534105, 0.06341486424207687, 0.001312406500801444, 0.11151009052991867, 0.013993396423757076, 0.1289055198431015, 0.00012364305439405143, 0.00030478736152872443, 8.412752504227683e-05, 0.00044975971104577184, 0.00020423531532287598, 0.0006169237312860787, 0.0003424381138756871, 0.028390269726514816], [0.030852865427732468, 0.00012281769886612892, 9.478269930696115e-05, 0.006045677233487368, 2.0646064513130113e-05, 0.9589614272117615, 3.609429040807299e-05, 0.0012943459441885352, 0.002023724839091301, 9.979544847737998e-05, 1.600839095772244e-05, 3.708043368533254e-05, 1.3899812074669171e-06, 1.0249133083561901e-05, 1.7678674339549616e-05, 1.8422400898998603e-05, 0.00034701148979365826], [0.13162577152252197, 0.0018182883504778147, 0.0007394116837531328, 0.0040082866325974464, 0.0031610361766070127, 0.033398039638996124, 0.031590502709150314, 0.022854074835777283, 0.7127038836479187, 0.029326019808650017, 0.006909247953444719, 0.0010558917419984937, 0.001110812765546143, 0.0002692130801733583, 0.0013846646761521697, 0.0005927095771767199, 0.017452197149395943], [0.8541693687438965, 0.0031623607501387596, 0.00033561396412551403, 0.0018735644407570362, 8.419633377343416e-05, 0.0016818540170788765, 0.000544621201697737, 0.025828152894973755, 0.10088209807872772, 0.00603360403329134, 0.002171572297811508, 0.0023209508508443832, 0.00017480627866461873, 3.198076956323348e-05, 1.4696759535581805e-05, 1.0519379429752007e-05, 0.0006798626272939146], [0.5440881252288818, 0.002226114273071289, 0.0004809642268810421, 0.0008448027074337006, 0.0015203584916889668, 3.912287138518877e-05, 0.016177812591195107, 0.003808376146480441, 0.2657618224620819, 0.008333654142916203, 0.1362420916557312, 0.010320399887859821, 0.007747404742985964, 0.0007216338999569416, 3.8542049878742546e-05, 2.5408138753846288e-05, 0.0016234160866588354], [0.45468011498451233, 0.001125458860769868, 9.822353604249656e-05, 0.0008718791068531573, 7.856896445446182e-06, 8.684596832608804e-05, 6.943345215404406e-05, 0.0007444634102284908, 0.07735700160264969, 0.36891835927963257, 0.0070504918694496155, 0.08684717118740082, 0.0007881558267399669, 0.0004438000323716551, 0.0002631079696584493, 8.639064617455006e-05, 0.0005612584645859897], [0.054494284093379974, 0.00015698189963586628, 0.0003893310495186597, 4.77485591545701e-05, 3.832458605756983e-05, 3.2978691706375685e-06, 3.5208902318117907e-06, 0.0001223939034389332, 0.005355996545404196, 0.0006238847854547203, 0.012749784626066685, 0.0008052944904193282, 0.9209931492805481, 0.0007772065000608563, 0.002841440960764885, 1.2346135008556303e-05, 0.0005850294837728143], [0.1705039143562317, 0.001200605765916407, 0.00021320053201634437, 0.00028567147091962397, 0.00032327102962881327, 0.00017610772920306772, 9.03454129002057e-05, 0.00015771057223901153, 0.002141034696251154, 0.0010794708505272865, 0.001194193260744214, 0.7603306770324707, 0.0014369402779266238, 0.05168207362294197, 0.004313220269978046, 0.003552077105268836, 0.0013194206403568387], [0.04980429634451866, 2.7052323275711387e-05, 0.00019509704725351185, 5.3726187616121024e-05, 6.828049663454294e-06, 1.8254033420816995e-05, 2.514758762117708e-06, 1.1881355021614581e-05, 0.00025059940526261926, 0.00022432715923059732, 5.080715345684439e-05, 0.00113384157884866, 0.0008250142564065754, 0.0022441083565354347, 0.9214968681335449, 0.00994529202580452, 0.013709497638046741], [0.09360872954130173, 9.496775419393089e-06, 0.00033224793151021004, 7.093108433764428e-05, 0.00012873514788225293, 6.449621287174523e-05, 9.584928920958191e-05, 3.930669481633231e-05, 7.742291199974716e-05, 3.6834146612818586e-06, 1.5239354979712516e-05, 0.0010560369119048119, 0.00017052976181730628, 0.8894801139831543, 0.0011918795062229037, 0.006346599198877811, 0.007308706175535917], [0.4327191412448883, 0.00019548767886590213, 0.00016073616279754788, 0.0006966596120037138, 0.001061582355760038, 0.0007304280297830701, 0.00014839984942227602, 5.163986133993603e-05, 0.001229947665706277, 2.6323972633690573e-05, 2.657203731359914e-05, 0.0001833403221098706, 0.002696598181501031, 0.003388036508113146, 0.004975316114723682, 0.005887418519705534, 0.5458222031593323], [0.8934411406517029, 0.00021064466272946447, 0.0003912361862603575, 0.0004131930763833225, 0.0001941204973263666, 0.00041724773473106325, 0.00017503774142824113, 0.0018019293202087283, 0.0008540275157429278, 3.493497206363827e-05, 1.9186065401299857e-05, 0.0002491232589818537, 0.00016850190877448767, 0.001038654358126223, 0.0015139169991016388, 0.00833853054791689, 0.09073840081691742]], [[0.9886454343795776, 0.0011779565829783678, 0.00030400737887248397, 0.00012165625230409205, 2.9719922167714685e-05, 0.000114607231807895, 0.00015266070840880275, 0.0002697186137083918, 0.002555631333962083, 5.1056675147265196e-05, 5.5865521062514745e-06, 4.5394292101264e-05, 5.57652092538774e-05, 0.00024598665186204016, 0.00025159225333482027, 6.50939327897504e-05, 0.0059081739746034145], [0.00012312506441958249, 2.2491219624498626e-06, 0.9998682737350464, 3.7476127090485534e-06, 1.1516051472426625e-06, 1.6988759010683196e-10, 4.189681934718692e-11, 5.6954840149670005e-11, 2.943820334166958e-07, 6.281051412315719e-08, 3.7893823900958523e-07, 6.439719868467364e-07, 2.0168966496925123e-09, 1.6085531795440033e-09, 1.2656582726311427e-10, 3.04882030732756e-09, 7.335481910786257e-08], [0.0019646044820547104, 1.8304528566659428e-05, 3.488785978333908e-06, 0.9979130625724792, 5.8246841945219785e-05, 2.2545918909600005e-05, 2.2775170638311693e-10, 6.466739643773423e-11, 2.0568549641275524e-10, 3.695548311810626e-10, 3.671797088600215e-08, 6.804237273172475e-06, 7.631212611158844e-06, 3.785282842727611e-08, 1.2182895581247521e-08, 4.082504299895984e-12, 5.236968718236312e-06], [0.0014229671796783805, 3.69457173188259e-11, 3.710270539158955e-05, 2.158892311854288e-05, 0.9980875849723816, 0.0003797092940658331, 2.448420309519861e-05, 1.357150086755965e-10, 1.4164611705780317e-09, 3.958717322726695e-15, 1.1113107829807678e-11, 8.269280016293123e-08, 1.0931212273135316e-05, 1.5374325812445022e-05, 1.5234522976470544e-08, 7.316957803538138e-12, 1.6359697596612932e-08], [0.00010283046867698431, 5.913301098781076e-11, 1.2800245238753227e-11, 9.958495866158046e-06, 1.0289192687196191e-05, 0.9997897744178772, 8.527067984687164e-05, 9.051705092133489e-07, 1.158867793393803e-11, 1.2823685798142581e-14, 1.2882969117960207e-17, 4.103716498560228e-12, 1.4342118603849485e-09, 9.564984111420927e-07, 1.5141912168559202e-09, 1.2919617632667357e-12, 1.3474682480918432e-10], [3.761385960387997e-05, 1.7626241178431146e-12, 5.928518960474083e-12, 1.2972305521441463e-12, 1.1677327194092868e-07, 1.5900121070444584e-05, 0.9999305009841919, 3.7730426356574753e-06, 1.2042067282891367e-05, 1.27425210682576e-13, 6.690619229704573e-15, 5.625537026058322e-16, 6.16997728949964e-12, 2.721539105188242e-10, 1.069576649470605e-09, 7.119462137883392e-12, 2.1790073911898133e-10], [5.474664067151025e-05, 3.172784701632736e-08, 4.725575399738835e-13, 4.002094228933162e-12, 4.103583792214316e-13, 0.0003697780193760991, 1.7827973351813853e-05, 0.9990984201431274, 0.0004525601107161492, 6.681837930955226e-06, 8.784787066079373e-15, 7.419378425434914e-15, 5.240268600450147e-14, 5.104410227829703e-10, 2.7146327408189563e-09, 1.6195658147921677e-09, 1.612212030543958e-09], [6.210646461113356e-06, 2.05234627514983e-07, 1.123528505786453e-07, 4.893497065894259e-12, 1.1849732306501437e-10, 2.0365622077633816e-08, 5.126334508531727e-05, 0.009265629574656487, 0.9870928525924683, 0.0035647419281303883, 1.7849451978690922e-05, 3.0845964671399884e-11, 6.780086908575456e-11, 2.4968964396077098e-11, 7.69648238474474e-08, 4.4828155409959436e-08, 1.0285099278917187e-06], [0.9257515668869019, 2.1175487745495047e-06, 1.5206325088001904e-06, 4.09737950235467e-08, 1.8180952349091534e-14, 1.0640440750719904e-09, 9.174758175412023e-12, 5.0516191549832e-06, 0.0008269921527244151, 0.07340732961893082, 6.836831971668289e-07, 4.149583219259512e-06, 1.4148986886633463e-12, 7.536693491516644e-12, 4.740169194661359e-12, 1.550774092473617e-11, 3.890842492637603e-07], [1.8508901575842174e-06, 2.19125206868398e-09, 1.6795565898064524e-05, 4.536809150579302e-09, 2.7801302926455662e-11, 3.343717616427922e-15, 1.422884271344571e-12, 3.5772039085231466e-13, 9.085576493816916e-06, 8.683572332301992e-07, 0.9999451637268066, 2.6155770683544688e-05, 1.4885438304190757e-07, 9.907500438544742e-14, 3.834627927690182e-12, 1.0071887510750173e-14, 1.7108680694377654e-08], [2.8517765713331755e-06, 4.181531856883858e-11, 3.278168207998533e-07, 1.257287465250556e-07, 6.659325868518806e-13, 1.7481118549239616e-12, 3.512389619863998e-18, 1.8118530764263396e-13, 2.7467795832986086e-12, 1.58328248289763e-06, 7.254570277837047e-07, 0.9999924898147583, 1.8362860600973363e-06, 7.260941004005872e-08, 8.790926022067894e-14, 4.011585095887809e-16, 1.305729070873174e-12], [1.3433592357614543e-05, 9.030181658854775e-13, 7.340586472004418e-10, 2.924488873290443e-09, 2.183284486534376e-08, 3.50359606778039e-12, 2.0744859823007555e-12, 5.561343892996826e-15, 7.704284259169025e-12, 5.834889371664339e-15, 9.12531206154199e-08, 4.6762429519731086e-06, 0.9999698400497437, 1.1746075870178174e-05, 1.2869058707565273e-07, 8.500858128148824e-16, 5.203892872174265e-11], [7.652844033145811e-06, 6.385651989820884e-12, 1.0935914673826375e-10, 1.7228612980701996e-10, 7.213994158983272e-12, 3.6203240405541237e-09, 6.669143969711966e-12, 4.3078252076611534e-10, 1.1984286176283665e-12, 3.90581664233558e-12, 7.16956723346594e-15, 5.807954721603892e-07, 1.4438900507229846e-05, 0.9999547004699707, 2.269754077133257e-05, 3.352676358758799e-08, 3.5850558632866125e-11], [0.001580658252350986, 1.1428853696759944e-10, 1.6795747084796808e-11, 2.48450513634646e-11, 2.938254917150829e-10, 2.7266062740949337e-09, 9.963819991298806e-08, 3.9182912470181464e-10, 2.169834312226726e-09, 2.3822000348359094e-14, 1.8689402510405767e-14, 1.1611832372374065e-12, 8.90751471160911e-06, 0.00099822913762182, 0.9974008798599243, 3.966835265600821e-06, 7.24479059499572e-06], [0.01810457557439804, 6.616645720214365e-08, 5.0183452913188376e-06, 2.132491339068565e-08, 8.615103075371167e-10, 1.1104132369155195e-07, 1.575727104352609e-08, 8.059056426645839e-07, 8.521518424231544e-08, 5.861375029780902e-08, 5.377814079471355e-13, 4.49807391333934e-09, 5.026326910240186e-09, 0.02058822102844715, 0.005779499653726816, 0.9524587392807007, 0.0030627641826868057], [0.0002292962744832039, 3.981947827025323e-10, 8.661012884658703e-08, 7.519721734183804e-09, 1.5828169885878651e-09, 2.20777884862855e-09, 1.6159351634570385e-10, 5.391893043160678e-10, 2.5385523017007472e-08, 1.093281645769828e-10, 2.876014704167318e-11, 6.462725862278751e-13, 1.7219453293804143e-11, 8.177224453120857e-10, 3.931522951461375e-05, 2.5519990231259726e-05, 0.9997057318687439], [0.9933745265007019, 2.431813431180707e-11, 3.42266503139399e-06, 7.352741135946417e-07, 1.4506482237663931e-08, 4.0371310205955524e-07, 3.690414085433247e-10, 2.0913482057238753e-09, 7.683404468217248e-10, 5.55042789507354e-10, 1.2906146420674225e-12, 1.5136542685922905e-07, 1.1890407929093794e-11, 6.337234736975006e-08, 1.3905949725057098e-09, 1.3694237566141965e-07, 0.006620652042329311]], [[0.8630772829055786, 0.009417934343218803, 0.023290077224373817, 0.011665173806250095, 0.004272020887583494, 0.008473897352814674, 0.006163272075355053, 0.024672338739037514, 0.007038861978799105, 0.0032842769287526608, 0.004253109451383352, 0.006838890723884106, 0.002599535509943962, 0.011256331577897072, 0.008555570617318153, 0.002235301537439227, 0.0029058922082185745], [0.3920648992061615, 0.052510641515254974, 0.09347162395715714, 0.05435951054096222, 0.012896507047116756, 0.029805241152644157, 0.029427027329802513, 0.1072259396314621, 0.07465437799692154, 0.04705985635519028, 0.043424081057310104, 0.0070302775129675865, 0.010759469121694565, 0.009716746397316456, 0.0157957524061203, 0.008702083490788937, 0.011095934547483921], [0.549708902835846, 0.020483342930674553, 0.001213102601468563, 0.0254861731082201, 0.023106595501303673, 0.08964689075946808, 0.02495274506509304, 0.05637064576148987, 0.08471304178237915, 0.006005365401506424, 0.002833570120856166, 0.021683407947421074, 0.007548775989562273, 0.04268113523721695, 0.018044063821434975, 0.006976840551942587, 0.018545404076576233], [0.5503023266792297, 0.030575549229979515, 0.026888040825724602, 0.019520802423357964, 0.013726988807320595, 0.035793207585811615, 0.032544586807489395, 0.14805740118026733, 0.07116218656301498, 0.012592713348567486, 0.0042679328471422195, 0.0068765124306082726, 0.005832963157445192, 0.01444137655198574, 0.01589852198958397, 0.004487735219299793, 0.007031257729977369], [0.45880764722824097, 0.030589710921049118, 0.02685512602329254, 0.014284702017903328, 0.009987078607082367, 0.16840608417987823, 0.05472039803862572, 0.08392486721277237, 0.0615713894367218, 0.025903776288032532, 0.0033701432403177023, 0.0076616848818957806, 0.010998652316629887, 0.012767758220434189, 0.02170509472489357, 0.0039957123808562756, 0.004450083244591951], [0.5898685455322266, 0.01875513419508934, 0.012980069033801556, 0.025802338495850563, 0.021997399628162384, 0.0052882228046655655, 0.037984080612659454, 0.1341247409582138, 0.09574691206216812, 0.0033742880914360285, 0.0042791469022631645, 0.004489787854254246, 0.004475981462746859, 0.0124308867380023, 0.018316278234124184, 0.003949243109673262, 0.0061368742026388645], [0.810656726360321, 0.011328445747494698, 0.006232826504856348, 0.006166239269077778, 0.005784434266388416, 0.017217343673110008, 0.0182981938123703, 0.04530853405594826, 0.03496453911066055, 0.01318723801523447, 0.0025726647581905127, 0.0038032219745218754, 0.0030547098722308874, 0.008291657082736492, 0.008166318759322166, 0.0016105305403470993, 0.0033563056495040655], [0.3907400667667389, 0.04912613704800606, 0.023248184472322464, 0.06526510417461395, 0.011706170625984669, 0.044962625950574875, 0.016534950584173203, 0.085541270673275, 0.12448907643556595, 0.02289278246462345, 0.019575482234358788, 0.030194755643606186, 0.012327072210609913, 0.025540387257933617, 0.027823053300380707, 0.018777035176753998, 0.03125588595867157], [0.8035562634468079, 0.012781054712831974, 0.024935845285654068, 0.01797124184668064, 0.007260740268975496, 0.030758274719119072, 0.014644631184637547, 0.04623901844024658, 0.018935518339276314, 0.0028259160462766886, 0.002181886462494731, 0.0034745356533676386, 0.002745936391875148, 0.004514575935900211, 0.004851344507187605, 0.001148574985563755, 0.001174572971649468], [0.2772272825241089, 0.018499623984098434, 0.006594883743673563, 0.005694271996617317, 0.004406025167554617, 0.00955114234238863, 0.00837589893490076, 0.20061449706554413, 0.04854036495089531, 0.012919547036290169, 0.03929435461759567, 0.05826476588845253, 0.024818187579512596, 0.01629597134888172, 0.05150747671723366, 0.06774308532476425, 0.1496526598930359], [0.11926595121622086, 0.009793884120881557, 0.01636076159775257, 0.03312721848487854, 0.0016426455695182085, 0.00883167702704668, 0.007008750922977924, 0.07547267526388168, 0.04695062339305878, 0.0369415283203125, 0.10659143328666687, 0.041053466498851776, 0.02049694024026394, 0.02732241153717041, 0.023360444232821465, 0.2281906008720398, 0.1975889503955841], [0.25112053751945496, 0.0043646590784192085, 0.007442587986588478, 0.01092055719345808, 0.0013913180446252227, 0.006583517417311668, 0.007620566058903933, 0.05494378134608269, 0.011677935719490051, 0.05883876234292984, 0.07948844134807587, 0.08321394771337509, 0.03127668797969818, 0.08211177587509155, 0.14281412959098816, 0.10061800479888916, 0.06557272374629974], [0.5414526462554932, 0.01744280755519867, 0.00881566945463419, 0.002870401134714484, 0.0020797024480998516, 0.013437996618449688, 0.018094586208462715, 0.08082153648138046, 0.03871343284845352, 0.024520857259631157, 0.03407527133822441, 0.04352911189198494, 0.00524491909891367, 0.016903532668948174, 0.04117078706622124, 0.021592337638139725, 0.08923429995775223], [0.5520836114883423, 0.009979329071938992, 0.03555531054735184, 0.01862558163702488, 0.004722306504845619, 0.006640487350523472, 0.011093690991401672, 0.04547552019357681, 0.015431882813572884, 0.0323222391307354, 0.0627950131893158, 0.029029030352830887, 0.024998832494020462, 0.015789857134222984, 0.041054617613554, 0.02850533463060856, 0.0658973753452301], [0.8022099733352661, 0.004681755322962999, 0.0013911783462390304, 0.004345548804849386, 0.0005341732176020741, 0.0030271909199655056, 0.0032198047265410423, 0.018615253269672394, 0.01314855832606554, 0.01037565153092146, 0.010216180235147476, 0.035438038408756256, 0.004374670330435038, 0.021702168509364128, 0.008919978514313698, 0.012024350464344025, 0.04577553644776344], [0.4718855321407318, 0.004046672489494085, 0.00351886753924191, 0.002074547577649355, 0.0004978472134098411, 0.001010275911539793, 0.0022205645218491554, 0.08876756578683853, 0.01454891636967659, 0.021205205470323563, 0.046378012746572495, 0.045198991894721985, 0.015986425802111626, 0.02271859720349312, 0.06791386753320694, 0.03636806085705757, 0.15566006302833557], [0.6865681409835815, 0.003424773458391428, 0.00630495510995388, 0.003833218477666378, 0.0011550461640581489, 0.0033491929061710835, 0.0034860004670917988, 0.03877848759293556, 0.004662151448428631, 0.018234021961688995, 0.023170528933405876, 0.03786152973771095, 0.02380889467895031, 0.030500659719109535, 0.05944862216711044, 0.0246978010982275, 0.030715957283973694]], [[0.5741932392120361, 0.012504521757364273, 0.0032251307275146246, 0.008242546580731869, 0.0012622808571904898, 0.001786747365258634, 0.003126392839476466, 0.053322870284318924, 0.026428010314702988, 0.008219636976718903, 0.023518644273281097, 0.04498233273625374, 0.010571406222879887, 0.016603585332632065, 0.026691682636737823, 0.050330497324466705, 0.13499043881893158], [0.20268955826759338, 0.08628605306148529, 0.05451688915491104, 0.09015201032161713, 0.045336656272411346, 0.02782316878437996, 0.0411144495010376, 0.10645437240600586, 0.19452407956123352, 0.008587893098592758, 0.033243097364902496, 0.016469962894916534, 0.005892107263207436, 0.008873704820871353, 0.014095144346356392, 0.02834934927523136, 0.03559156134724617], [0.3195413649082184, 0.051214396953582764, 0.014866630546748638, 0.0767570286989212, 0.025990968570113182, 0.028270505368709564, 0.025723908096551895, 0.11174130439758301, 0.15366213023662567, 0.007536351680755615, 0.01829458400607109, 0.04470610246062279, 0.017729828134179115, 0.02007473260164261, 0.02074720710515976, 0.017658770084381104, 0.04548421874642372], [0.3675423264503479, 0.0774235650897026, 0.03533709794282913, 0.014811630360782146, 0.035400137305259705, 0.09095746278762817, 0.049049243330955505, 0.03926897421479225, 0.15405672788619995, 0.006111237220466137, 0.015658603981137276, 0.01747303269803524, 0.01916801743209362, 0.023795347660779953, 0.022851433604955673, 0.0030534700490534306, 0.02804175205528736], [0.6945473551750183, 0.0503956563770771, 0.010528292506933212, 0.022740384563803673, 0.007032043766230345, 0.020692061632871628, 0.012314744293689728, 0.019432220607995987, 0.11901033669710159, 0.002985910512506962, 0.003830861998721957, 0.005278422962874174, 0.006301358807832003, 0.0023673754185438156, 0.007373325526714325, 0.0015319056110456586, 0.013637778349220753], [0.3998269736766815, 0.12892471253871918, 0.011652396060526371, 0.16042250394821167, 0.03744393214583397, 0.010028867051005363, 0.021646952256560326, 0.04304993897676468, 0.11173513531684875, 0.01357713621109724, 0.00540901068598032, 0.015569718554615974, 0.005956452339887619, 0.0009468344505876303, 0.0038878561463207006, 0.015587719157338142, 0.01433385070413351], [0.7311561107635498, 0.05060664191842079, 0.002645167987793684, 0.01531821396201849, 0.002850837307050824, 0.005628698039799929, 0.0022328824270516634, 0.06881626695394516, 0.08304977416992188, 0.002250721212476492, 0.00232191220857203, 0.008067918010056019, 0.000833215017337352, 0.0005995264509692788, 0.004286202136427164, 0.0019492965657263994, 0.01738661341369152], [0.8169430494308472, 0.020087622106075287, 0.0022841242607682943, 0.011465916410088539, 0.0016324989264830947, 0.001390981487929821, 0.004851995967328548, 0.03758576884865761, 0.06289665400981903, 0.0023080070968717337, 0.0048829419538378716, 0.007877598516643047, 0.0034686748404055834, 0.0005604965263046324, 0.003596033900976181, 0.003210047259926796, 0.014957590959966183], [0.6632129549980164, 0.05847909674048424, 0.002494317013770342, 0.009768658317625523, 0.002031132346019149, 0.002338845981284976, 0.010559553280472755, 0.17106842994689941, 0.04927026852965355, 0.0006172613357193768, 0.0017056178767234087, 0.007440407760441303, 0.0018978295847773552, 0.0005519973929040134, 0.005243014544248581, 0.0032876520417630672, 0.01003282330930233], [0.16094478964805603, 0.00748651335015893, 0.007378927897661924, 0.008781597949564457, 0.0065528214909136295, 0.0027143454644829035, 0.007923530414700508, 0.01616482064127922, 0.04190852865576744, 0.010545618832111359, 0.11055044084787369, 0.11459872871637344, 0.09084811806678772, 0.011741390451788902, 0.06833772361278534, 0.05536438152194023, 0.2781578004360199], [0.026192594319581985, 0.013724654912948608, 0.022249190136790276, 0.0027842477429658175, 0.0033832727931439877, 0.02037051133811474, 0.008052701130509377, 0.01027065608650446, 0.032563187181949615, 0.017691710963845253, 0.2830744683742523, 0.047081612050533295, 0.008216802962124348, 0.07539959251880646, 0.09133248776197433, 0.09005158394575119, 0.24756070971488953], [0.4662875533103943, 0.008070702664554119, 0.0023745433427393436, 0.0030211512930691242, 0.0015193852595984936, 0.003101447131484747, 0.003250443609431386, 0.01653403602540493, 0.01975741982460022, 0.018577340990304947, 0.057349395006895065, 0.04241904988884926, 0.04069127142429352, 0.03419868275523186, 0.04333440959453583, 0.03803611919283867, 0.2014770358800888], [0.3830494284629822, 0.021092059090733528, 0.006160008255392313, 0.01472031231969595, 0.005040530581027269, 0.014023304916918278, 0.004884559661149979, 0.023080378770828247, 0.03539381921291351, 0.04051860421895981, 0.024517381563782692, 0.07320301979780197, 0.01678163930773735, 0.037979718297719955, 0.07490969449281693, 0.05666041374206543, 0.16798508167266846], [0.5306687355041504, 0.010774489492177963, 0.002410204615443945, 0.006903544533997774, 0.0037025348283350468, 0.006171224173158407, 0.0035918622743338346, 0.031854502856731415, 0.029176101088523865, 0.01521233655512333, 0.05001373961567879, 0.05131158605217934, 0.026519812643527985, 0.004878588952124119, 0.03188614174723625, 0.018365615978837013, 0.17655903100967407], [0.6199820041656494, 0.013295439071953297, 0.004271314013749361, 0.005349303130060434, 0.0022974428720772266, 0.002429089741781354, 0.006736415904015303, 0.05976027995347977, 0.018455782905220985, 0.013699924573302269, 0.03175954893231392, 0.08787105232477188, 0.03301326557993889, 0.015318159013986588, 0.013956508599221706, 0.005432327277958393, 0.06637221574783325], [0.15816448628902435, 0.013517145998775959, 0.006362810265272856, 0.0011450161691755056, 0.0023240549489855766, 0.01284533180296421, 0.008271090686321259, 0.011708036996424198, 0.01966729760169983, 0.020595623180270195, 0.1772778034210205, 0.12107231467962265, 0.0669911801815033, 0.10927382856607437, 0.12395750731229782, 0.005718687083572149, 0.14110778272151947], [0.6879887580871582, 0.006788651458919048, 0.00042258354369550943, 0.0009651940781623125, 0.00018285839178133756, 0.00029145751614123583, 0.0017378886695951223, 0.05891162157058716, 0.011072656139731407, 0.0024355612695217133, 0.009591028094291687, 0.055832333862781525, 0.00789013970643282, 0.003163659945130348, 0.024065982550382614, 0.01920158974826336, 0.10945805162191391]], [[0.8776012659072876, 0.00662739435210824, 0.010952865704894066, 0.018764959648251534, 0.0007523531094193459, 0.0034415407571941614, 0.003725002519786358, 0.02912301942706108, 0.02777864597737789, 0.001914686756208539, 0.0032124517019838095, 0.0017763579962775111, 0.000871374795679003, 0.002051367424428463, 0.0025103408843278885, 0.0015429703053086996, 0.007353329565376043], [0.25119268894195557, 0.0333518423140049, 0.02163023129105568, 0.16566267609596252, 0.01169008668512106, 0.015552700497210026, 0.008446073159575462, 0.2172682136297226, 0.10930515825748444, 0.01435747742652893, 0.05421922728419304, 0.02296730875968933, 0.02153152972459793, 0.0068146781995892525, 0.010145852342247963, 0.009537152014672756, 0.026327045634388924], [0.6220285296440125, 0.02608654648065567, 0.01771676167845726, 0.08517983555793762, 0.024062316864728928, 0.01849222742021084, 0.013419565744698048, 0.03866398707032204, 0.05563565716147423, 0.0010692670475691557, 0.008543822914361954, 0.03143540397286415, 0.005866530351340771, 0.008571469224989414, 0.020987262949347496, 0.007115433923900127, 0.015125509351491928], [0.07823210954666138, 0.04072333127260208, 0.004590645432472229, 0.1454194188117981, 0.007617459166795015, 0.019016485661268234, 0.008790089748799801, 0.09965246170759201, 0.1428917795419693, 0.0385059155523777, 0.19105876982212067, 0.02594279870390892, 0.006845252588391304, 0.007760895416140556, 0.007776272017508745, 0.1252707540988922, 0.04990566149353981], [0.2561625838279724, 0.07746205478906631, 0.00812583975493908, 0.03874392807483673, 0.0030905823223292828, 0.012665940448641777, 0.00525591941550374, 0.17169280350208282, 0.30743277072906494, 0.008990831673145294, 0.04920628294348717, 0.007357138209044933, 0.0024497273843735456, 0.0008408415596932173, 0.002509200247004628, 0.0045184604823589325, 0.04349511116743088], [0.3294699192047119, 0.06063373386859894, 0.019198186695575714, 0.06185320392251015, 0.010971380397677422, 0.00912288948893547, 0.011579442769289017, 0.08766274899244308, 0.2896593511104584, 0.0032091380562633276, 0.0656164288520813, 0.00411161407828331, 0.003682821523398161, 0.0010671907803043723, 0.0027477291878312826, 0.0019078386249020696, 0.03750643879175186], [0.4176972508430481, 0.0192489642649889, 0.009520499967038631, 0.030035965144634247, 0.004126968793570995, 0.00760663254186511, 0.003234869334846735, 0.13726726174354553, 0.20067276060581207, 0.003377969842404127, 0.05162574723362923, 0.022239336743950844, 0.003773950506001711, 0.0024406807497143745, 0.005954192019999027, 0.004451571963727474, 0.07672533392906189], [0.16225913166999817, 0.05023084953427315, 0.009315179660916328, 0.09372425824403763, 0.035310257226228714, 0.017323270440101624, 0.0196775421500206, 0.26553502678871155, 0.08117852360010147, 0.04301990941166878, 0.036015741527080536, 0.024799132719635963, 0.05605807527899742, 0.01838778145611286, 0.03537435829639435, 0.019140124320983887, 0.032650768756866455], [0.7915427088737488, 0.006852870341390371, 0.003815377363935113, 0.020265713334083557, 0.0007379118469543755, 0.002701258985325694, 0.0016143325483426452, 0.11479590088129044, 0.030341999605298042, 0.0035393075086176395, 0.00794365257024765, 0.0013714618980884552, 0.0011070661712437868, 0.001627924619242549, 0.00333821726962924, 0.0017490566242486238, 0.00665521202608943], [0.18424901366233826, 0.032660216093063354, 0.001610534847714007, 0.037450630217790604, 0.005117237102240324, 0.007694576401263475, 0.0043250881135463715, 0.18914370238780975, 0.08759146183729172, 0.018523186445236206, 0.2292221188545227, 0.024372251704335213, 0.019012661650776863, 0.010590841993689537, 0.008312288671731949, 0.040300317108631134, 0.0998239517211914], [0.27753785252571106, 0.011008027009665966, 0.006587690208107233, 0.07437366247177124, 0.004310634918510914, 0.001986040035262704, 0.003545790910720825, 0.13499712944030762, 0.07163666188716888, 0.05909854546189308, 0.053116004914045334, 0.05388970673084259, 0.017586898058652878, 0.005337381269782782, 0.01151321828365326, 0.06378660351037979, 0.14968818426132202], [0.34596556425094604, 0.013450653292238712, 0.0028331198263913393, 0.008632787503302097, 0.0009093458065763116, 0.002470043720677495, 0.0037378643173724413, 0.05057791993021965, 0.07203326374292374, 0.010891157202422619, 0.11645850539207458, 0.05118606239557266, 0.009040330536663532, 0.013287249021232128, 0.00977716688066721, 0.02126220427453518, 0.2674867808818817], [0.49361008405685425, 0.014012736268341541, 0.002963628154247999, 0.002339404309168458, 0.0002618416037876159, 0.0020891716703772545, 0.0004461451608221978, 0.048211365938186646, 0.09939205646514893, 0.007201544474810362, 0.049710649996995926, 0.012938178144395351, 0.0016245770966634154, 0.00184776505921036, 0.00574436504393816, 0.006187069229781628, 0.2514195144176483], [0.6466578841209412, 0.022861506789922714, 0.0025711418129503727, 0.005744633264839649, 0.0004050146380905062, 0.0008056352380663157, 0.0021389066241681576, 0.01559662725776434, 0.0623030923306942, 0.002340165199711919, 0.048181820660829544, 0.01722092181444168, 0.002311774529516697, 0.0007722843438386917, 0.006738431751728058, 0.0065169264562428, 0.15683335065841675], [0.9146207571029663, 0.004662979394197464, 0.0035277309361845255, 0.0004554034094326198, 3.6263110814616084e-05, 0.000576634774915874, 0.00046026718337088823, 0.01739397458732128, 0.011538085527718067, 0.0004840571782551706, 0.011648942716419697, 0.003326687728986144, 0.0012034180108457804, 0.0019723689183592796, 0.0024822023697197437, 0.00037819697172380984, 0.025231916457414627], [0.06585510075092316, 0.003417092375457287, 0.000556586601305753, 0.03965763747692108, 0.0020394448656588793, 0.001654840656556189, 0.0034783778246492147, 0.10150887817144394, 0.0511421374976635, 0.049500998109579086, 0.2559291422367096, 0.09452560544013977, 0.037460122257471085, 0.024754220619797707, 0.018473124131560326, 0.057586729526519775, 0.19246000051498413], [0.7843999862670898, 0.002134111011400819, 0.0014758622273802757, 0.005656109191477299, 0.000305965164443478, 0.000720208918210119, 0.0008353911689482629, 0.06391479074954987, 0.016644706949591637, 0.014945917762815952, 0.02131113037467003, 0.005655888468027115, 0.0034914505667984486, 0.0072882394306361675, 0.01481031533330679, 0.008134969510138035, 0.04827490448951721]], [[0.8576313257217407, 0.0035589467734098434, 0.0023343702778220177, 0.011643779464066029, 0.0023435167968273163, 0.0009843561565503478, 0.004606286529451609, 0.0310975369066, 0.014209676533937454, 0.0026605057064443827, 0.009000306017696857, 0.01042757648974657, 0.005360001232475042, 0.010293062776327133, 0.0031872615218162537, 0.008197681978344917, 0.02246376872062683], [0.8489042520523071, 0.004750748630613089, 0.0015615337761119008, 0.07200687378644943, 0.006777613889425993, 0.001286262646317482, 0.003625889541581273, 0.033543311059474945, 0.012470915913581848, 0.000747190264519304, 0.002796000335365534, 0.002933111973106861, 0.0009169327677227557, 0.0008911656332202256, 0.00020687858341261744, 0.004317204933613539, 0.002263969974592328], [0.7480865716934204, 0.032843753695487976, 0.010309809818863869, 0.004586915951222181, 0.011372610926628113, 0.002150770276784897, 0.00414713378995657, 0.054756972938776016, 0.07125963270664215, 0.005582462530583143, 0.002373775467276573, 0.0020448798313736916, 0.0013284224551171064, 0.01117971446365118, 0.014428600668907166, 0.001823707134462893, 0.021724402904510498], [0.7276181578636169, 0.016752418130636215, 0.003972754348069429, 0.0015012893127277493, 0.03757693991065025, 0.038614653050899506, 0.019139813259243965, 0.05786258727312088, 0.040642306208610535, 0.0009828616166487336, 0.007196398451924324, 0.019254416227340698, 0.010812829248607159, 0.005125744733959436, 0.004715250805020332, 0.0012710698647424579, 0.0069603631272912025], [0.6681697368621826, 0.007104968652129173, 0.007620250806212425, 0.10908336192369461, 0.0011078156530857086, 0.1432497352361679, 0.0020194146782159805, 0.020140277221798897, 0.019400393590331078, 0.0006289963494054973, 0.0005470628966577351, 0.0010945165995508432, 0.001985864946618676, 0.001582885510288179, 0.0023982792627066374, 0.011197861284017563, 0.0026686417404562235], [0.6687548756599426, 0.005474054720252752, 0.0038148353341966867, 0.016389863565564156, 0.004948354326188564, 0.0005677415756508708, 0.23476062715053558, 0.03413522616028786, 0.0206003375351429, 0.001731404336169362, 0.0013607572764158249, 0.0005741699715144932, 0.0009447954944334924, 0.002901238389313221, 0.0007564186817035079, 0.00022216420620679855, 0.002063155872747302], [0.7011111974716187, 0.004106187727302313, 0.0019048100803047419, 0.006826437544077635, 0.00035246365587227046, 0.18927736580371857, 0.000133782290504314, 0.01854376681149006, 0.05831955000758171, 0.0016027692472562194, 0.00048173958202823997, 0.00042119232239201665, 0.0005566726322285831, 0.0034372766967862844, 0.0009736423962749541, 0.0003709353331942111, 0.011580321937799454], [0.7954146265983582, 0.009297670796513557, 0.0054098195396363735, 0.01658659242093563, 0.006253013852983713, 0.0019941539503633976, 0.030341122299432755, 0.04850636422634125, 0.0278739295899868, 0.0051125953905284405, 0.0073864213190972805, 0.009928753599524498, 0.015728585422039032, 0.007736681029200554, 0.002530696103349328, 0.004698095843195915, 0.005200940649956465], [0.9561313390731812, 0.0008841339149512351, 0.0004002015630248934, 0.002304780762642622, 0.00020183758169878274, 9.033607057062909e-05, 0.0011839112266898155, 0.019468409940600395, 0.011608057655394077, 0.00035967526491731405, 0.001262657344341278, 0.0012706874404102564, 0.0008979036938399076, 0.0009642917430028319, 0.00011343483492964879, 0.00038954554474912584, 0.0024687419645488262], [0.8086466193199158, 0.0018076999112963676, 0.0026719255838543177, 0.005714831408113241, 0.004672871436923742, 0.008148260414600372, 0.002197334775701165, 0.04261137917637825, 0.019266145303845406, 0.000403700047172606, 0.02434423379600048, 0.007482303772121668, 0.008064993657171726, 0.017821308225393295, 0.004434784408658743, 0.0186977069824934, 0.02301398105919361], [0.6064297556877136, 0.0015887290937826037, 0.000828389311209321, 0.05019272863864899, 0.0010525919497013092, 0.0038572647608816624, 0.0011728303506970406, 0.04813549295067787, 0.0318947434425354, 0.014875762164592743, 0.0029208455234766006, 0.01893950253725052, 0.0057894461788237095, 0.005113658029586077, 0.01368883065879345, 0.13799335062503815, 0.05552607774734497], [0.3405577838420868, 0.004098796751350164, 0.004238568712025881, 0.03632776439189911, 0.002307007322087884, 0.014611685648560524, 0.007300506345927715, 0.05870509892702103, 0.02840389870107174, 0.0657443106174469, 0.02394588105380535, 0.0008405373664572835, 0.09982885420322418, 0.025732532143592834, 0.013917254284024239, 0.20898152887821198, 0.0644579753279686], [0.2727213203907013, 0.0013750094221904874, 0.000548491021618247, 0.0075427331030368805, 0.011776926927268505, 0.017849700525403023, 0.005563509184867144, 0.016161516308784485, 0.017250923439860344, 0.007373419124633074, 0.0034782993607223034, 0.05577393248677254, 0.007277036085724831, 0.010300948284566402, 0.07283075153827667, 0.461722731590271, 0.03045269474387169], [0.017791414633393288, 6.897769344504923e-05, 0.00028609062428586185, 1.345938380836742e-05, 4.6272616600617766e-05, 4.5617958676302806e-05, 0.0002721014025155455, 0.0011928243329748511, 0.0016312560765072703, 0.00018967319920193404, 0.000623972387984395, 0.0014647259376943111, 0.0023989758919924498, 2.5030429242178798e-05, 0.9709601402282715, 8.178821735782549e-05, 0.0029077206272631884], [0.043708283454179764, 6.214966560946777e-05, 0.00013578722428064793, 0.0006393397343344986, 3.555925650289282e-05, 3.491224197205156e-05, 9.225129178958014e-05, 0.002938215620815754, 0.0009116427390836179, 0.00023621173750143498, 0.00020486157154664397, 0.0003908589715138078, 7.04294943716377e-05, 0.9395917057991028, 1.505894852016354e-05, 0.008266828954219818, 0.00266584986820817], [0.4000444710254669, 0.0009383959113620222, 0.0004060991923324764, 0.0021434330847114325, 0.005039292387664318, 0.001639435300603509, 0.0036752354353666306, 0.04843703657388687, 0.015555567108094692, 0.002455744193866849, 0.023927772417664528, 0.03450984135270119, 0.150416299700737, 0.00659153051674366, 0.23078298568725586, 0.0025820424780249596, 0.07085484266281128], [0.9490056037902832, 0.00023433785827364773, 0.00012116568541387096, 0.0005305696395225823, 5.323494042386301e-05, 2.215595122834202e-05, 0.0002171236847061664, 0.009182914160192013, 0.004246760159730911, 0.0007433689315803349, 0.0029321876354515553, 0.00365649932064116, 0.0028904969803988934, 0.0029285966884344816, 0.0006135914591141045, 0.002952106297016144, 0.0196691881865263]], [[0.3735335171222687, 0.038137149065732956, 0.03146331384778023, 0.028175292536616325, 0.0326337032020092, 0.05052849277853966, 0.013374547474086285, 0.04622263461351395, 0.13894814252853394, 0.0477592758834362, 0.024808010086417198, 0.029793299734592438, 0.01637670025229454, 0.013817003928124905, 0.0061633531004190445, 0.012795994058251381, 0.09546954929828644], [0.22967460751533508, 0.034670423716306686, 0.041244275867938995, 0.04330058395862579, 0.04595201462507248, 0.022269340232014656, 0.02730032242834568, 0.0400838665664196, 0.1635829210281372, 0.01997598260641098, 0.019254615530371666, 0.02283354476094246, 0.015857456251978874, 0.02877051569521427, 0.024520542472600937, 0.029684290289878845, 0.19102467596530914], [0.45324236154556274, 0.03315805271267891, 0.006221025716513395, 0.02173622138798237, 0.00608855253085494, 0.00733786029741168, 0.012667971663177013, 0.06111518666148186, 0.08922546356916428, 0.005172321107238531, 0.05202239379286766, 0.0599580779671669, 0.0017671817913651466, 0.01614348217844963, 0.014242874458432198, 0.018999941647052765, 0.14090104401111603], [0.16107189655303955, 0.020354239270091057, 0.039148855954408646, 0.04595628380775452, 0.07263963669538498, 0.034465864300727844, 0.040672462433576584, 0.017364749684929848, 0.2517130970954895, 0.013882714323699474, 0.03836634010076523, 0.032069891691207886, 0.004672692157328129, 0.010478120297193527, 0.0032568827737122774, 0.022733552381396294, 0.19115287065505981], [0.2829039990901947, 0.05327393114566803, 0.014372805133461952, 0.026191797107458115, 0.023442428559064865, 0.013819298706948757, 0.015427010133862495, 0.04461078345775604, 0.2218894064426422, 0.00625128298997879, 0.026458971202373505, 0.023577969521284103, 0.008739727549254894, 0.01095854677259922, 0.020010443404316902, 0.011110113933682442, 0.19696158170700073], [0.2120259702205658, 0.02644788846373558, 0.021377813071012497, 0.02652422897517681, 0.017786791548132896, 0.0036319836508482695, 0.0227498859167099, 0.07672607898712158, 0.1642524152994156, 0.004436826799064875, 0.03852701932191849, 0.08026958256959915, 0.005283876322209835, 0.03645509108901024, 0.040931928902864456, 0.01553935743868351, 0.20703327655792236], [0.5835537314414978, 0.014582430012524128, 0.0017409727443009615, 0.0056937201879918575, 0.0018474537646397948, 0.0006850791978649795, 0.001000245800241828, 0.024731658399105072, 0.16851060092449188, 0.0003048207436222583, 0.006129890214651823, 0.003425778355449438, 0.001119274995289743, 0.004436238668859005, 0.0029371757991611958, 0.00416212622076273, 0.17513884603977203], [0.3185100555419922, 0.022960592061281204, 0.012767384760081768, 0.020211584866046906, 0.00849288422614336, 0.008760292083024979, 0.009923161938786507, 0.1465807855129242, 0.11985625326633453, 0.03225841745734215, 0.013813583180308342, 0.02071741595864296, 0.01739857718348503, 0.024038037285208702, 0.04033084586262703, 0.029226355254650116, 0.15415368974208832], [0.20566314458847046, 0.024741927161812782, 0.06761927902698517, 0.028798935934901237, 0.04770471900701523, 0.05940704420208931, 0.048026882112026215, 0.08339041471481323, 0.08626167476177216, 0.052099354565143585, 0.025296296924352646, 0.040977224707603455, 0.03595142066478729, 0.044560398906469345, 0.024285128340125084, 0.019443849101662636, 0.10577233135700226], [0.2313961684703827, 0.01849144510924816, 0.001922601368278265, 0.0031502151396125555, 0.008005749434232712, 0.0010638654930517077, 0.0037781281862407923, 0.008075609803199768, 0.40555480122566223, 5.1496841479092836e-05, 0.007824732922017574, 0.005259424448013306, 0.00016169581795111299, 0.0013910997658967972, 0.0010987307177856565, 0.001134963589720428, 0.30163922905921936], [0.2717990279197693, 0.033821798861026764, 0.006114346440881491, 0.024118369445204735, 0.04741643741726875, 0.014171111397445202, 0.028722183778882027, 0.024612363427877426, 0.24613437056541443, 0.003626033430919051, 0.020228257402777672, 0.0609300434589386, 0.0023989735636860132, 0.005765880458056927, 0.0017772174905985594, 0.008502776734530926, 0.19986100494861603], [0.5097821950912476, 0.04205074533820152, 0.006268296390771866, 0.004365711472928524, 0.007546967826783657, 0.0015135875437408686, 0.009226033464074135, 0.041420575231313705, 0.14671842753887177, 0.0005887121078558266, 0.016627438366413116, 0.017559845000505447, 0.0018705057445913553, 0.00572785921394825, 0.005324434954673052, 0.004192609805613756, 0.17921604216098785], [0.39675262570381165, 0.03287053853273392, 0.004070722032338381, 0.006185806356370449, 0.00849553756415844, 0.0018438195111230016, 0.006622432731091976, 0.01594984158873558, 0.22853876650333405, 0.00048001937102526426, 0.016649842262268066, 0.0107956537976861, 0.001416697516106069, 0.0062671834602952, 0.007340200245380402, 0.004741515498608351, 0.25097888708114624], [0.6560561656951904, 0.05533412843942642, 0.009237045422196388, 0.0037865994963794947, 0.0016252470668405294, 0.001150193391367793, 0.009355983696877956, 0.11712469905614853, 0.0406353659927845, 0.00027285455144010484, 0.010511644184589386, 0.015787869691848755, 0.0010111783631145954, 0.005062878597527742, 0.01514750998467207, 0.004822652321308851, 0.05307795852422714], [0.7575200796127319, 0.042246654629707336, 0.004704935010522604, 0.0019006738439202309, 0.0017903491389006376, 0.0011083963327109814, 0.0017711218679323792, 0.024275122210383415, 0.0655762329697609, 5.6375069107161835e-05, 0.007412794977426529, 0.003333469619974494, 0.0002909736940637231, 0.002818548120558262, 0.0018469386268407106, 0.001622440293431282, 0.08172480762004852], [0.3511054217815399, 0.04247633367776871, 0.020423196256160736, 0.026353580877184868, 0.040917955338954926, 0.014872226864099503, 0.021964456886053085, 0.016227558255195618, 0.2207026481628418, 0.0009688992868177593, 0.033865757286548615, 0.021851586177945137, 0.0020046941936016083, 0.007328392472118139, 0.0027511417865753174, 0.010170768946409225, 0.1660153567790985], [0.25313547253608704, 0.03037654422223568, 0.05789206176996231, 0.021365966647863388, 0.028907455503940582, 0.027612630277872086, 0.03802206739783287, 0.11806131154298782, 0.06643538922071457, 0.02784380130469799, 0.03212764859199524, 0.06105039641261101, 0.022889504209160805, 0.05149906128644943, 0.03397819399833679, 0.02152746357023716, 0.10727506130933762]], [[0.07105383276939392, 0.012199198827147484, 0.0025606751441955566, 0.014098068699240685, 0.008684908971190453, 0.006134395487606525, 0.0025567002594470978, 0.02494713105261326, 0.2922031283378601, 0.018601419404149055, 0.01195479929447174, 0.017571862787008286, 0.03227439522743225, 0.014315432868897915, 0.009152935817837715, 0.019747136160731316, 0.44194403290748596], [0.08587107807397842, 0.12017085403203964, 0.016761885955929756, 0.04377687722444534, 0.07643292844295502, 0.09050150215625763, 0.012779103592038155, 0.08882007002830505, 0.2766035795211792, 0.06306277960538864, 0.009938867762684822, 0.027706030756235123, 0.014983905479311943, 0.010762662626802921, 0.00418244069442153, 0.005504508037120104, 0.052140891551971436], [0.2587868571281433, 0.04579025134444237, 0.08576206117868423, 0.021298151463270187, 0.09947577118873596, 0.12108191102743149, 0.05031105875968933, 0.04778400808572769, 0.0487239807844162, 0.04223991930484772, 0.008862549439072609, 0.034561045467853546, 0.04788665845990181, 0.03858169913291931, 0.030462663620710373, 0.004667768720537424, 0.013723610900342464], [0.12059859931468964, 0.1198631227016449, 0.05578691139817238, 0.04377533495426178, 0.08134181797504425, 0.07904281467199326, 0.04682939872145653, 0.1108696460723877, 0.17096678912639618, 0.01799362152814865, 0.03737979754805565, 0.02985372766852379, 0.017130425199866295, 0.02200266160070896, 0.01299415621906519, 0.006473066285252571, 0.02709820866584778], [0.5149787068367004, 0.05842049419879913, 0.008388128131628036, 0.02404666878283024, 0.019166626036167145, 0.015623842366039753, 0.026531415060162544, 0.11565623432397842, 0.15655408799648285, 0.010565543547272682, 0.00266649154946208, 0.006114508491009474, 0.007601200602948666, 0.007083969656378031, 0.0029878446366637945, 0.002527581760659814, 0.02108660526573658], [0.3521033525466919, 0.056938089430332184, 0.03832908347249031, 0.04835940897464752, 0.04904603585600853, 0.0739038959145546, 0.019523030146956444, 0.0829160213470459, 0.15739896893501282, 0.03231349214911461, 0.004474566783756018, 0.00917704775929451, 0.014867352321743965, 0.022781047970056534, 0.007837261073291302, 0.004463817458599806, 0.025567548349499702], [0.7653680443763733, 0.030797362327575684, 0.007287879008799791, 0.018698200583457947, 0.011425950564444065, 0.00856215599924326, 0.009349917992949486, 0.03901175409555435, 0.06177561730146408, 0.003178230719640851, 0.0034053113777190447, 0.0029300337191671133, 0.004756912123411894, 0.007815472781658173, 0.008469609543681145, 0.0030167042277753353, 0.014150852337479591], [0.11037973314523697, 0.060056522488594055, 0.03372233361005783, 0.01978255808353424, 0.048144903033971786, 0.04038994386792183, 0.03741992637515068, 0.30095505714416504, 0.09967333823442459, 0.07136626541614532, 0.03025778755545616, 0.0460725836455822, 0.024612154811620712, 0.01792958751320839, 0.013087261468172073, 0.007668165490031242, 0.03848179802298546], [0.05031547322869301, 0.03718769922852516, 0.0047621093690395355, 0.027348151430487633, 0.02537132240831852, 0.021788131445646286, 0.006878376938402653, 0.11521006375551224, 0.5184921622276306, 0.030065657570958138, 0.0035236235707998276, 0.007906991988420486, 0.006021547131240368, 0.007876724936068058, 0.003299053991213441, 0.005652575753629208, 0.12830035388469696], [0.05373314023017883, 0.12956614792346954, 0.01833966374397278, 0.04342518746852875, 0.026944400742650032, 0.019927769899368286, 0.008102282881736755, 0.08040305227041245, 0.0348784513771534, 0.11208333820104599, 0.15393389761447906, 0.07611002773046494, 0.062354959547519684, 0.05040214955806732, 0.0070692203007638454, 0.04670001193881035, 0.07602640241384506], [0.11677586287260056, 0.018950417637825012, 0.01927580125629902, 0.03196021914482117, 0.015552995726466179, 0.01696234568953514, 0.01217556744813919, 0.05748158320784569, 0.028038235381245613, 0.013849584385752678, 0.038224197924137115, 0.20729359984397888, 0.08527719229459763, 0.1308830976486206, 0.014936280436813831, 0.07443074882030487, 0.11793221533298492], [0.5650006532669067, 0.017072495073080063, 0.006416097283363342, 0.011153541505336761, 0.007141956593841314, 0.005084770265966654, 0.007194835226982832, 0.051024436950683594, 0.022067274898290634, 0.02353779785335064, 0.023769183084368706, 0.04172907769680023, 0.044813789427280426, 0.05069916322827339, 0.015975650399923325, 0.0264284685254097, 0.08089090138673782], [0.4541967511177063, 0.02689855918288231, 0.00857709813863039, 0.012632212601602077, 0.007487334311008453, 0.01462599541991949, 0.011586816050112247, 0.07194138318300247, 0.028957685455679893, 0.09007612615823746, 0.010899905115365982, 0.07838040590286255, 0.019270729273557663, 0.05440118908882141, 0.025514716282486916, 0.01896488294005394, 0.0655881017446518], [0.8418929576873779, 0.005041684024035931, 0.007445808965712786, 0.006985174026340246, 0.0038929677102714777, 0.005131320562213659, 0.002545701339840889, 0.006035570055246353, 0.00789889506995678, 0.0086777713149786, 0.0031826156191527843, 0.020852331072092056, 0.020300066098570824, 0.01988161914050579, 0.013894321396946907, 0.00928952544927597, 0.017051778733730316], [0.9161903858184814, 0.001196592696942389, 0.0031136570032685995, 0.002729585627093911, 0.0028279514517635107, 0.002311522141098976, 0.0031989377457648516, 0.006149820052087307, 0.0023341660853475332, 0.004117388743907213, 0.0006532202241942286, 0.010346027091145515, 0.016925079748034477, 0.012516843155026436, 0.005383260548114777, 0.0031019896268844604, 0.006903583183884621], [0.2593376338481903, 0.03832323104143143, 0.017367225140333176, 0.02358234114944935, 0.026675889268517494, 0.02338641881942749, 0.012839704751968384, 0.06736445426940918, 0.03166091442108154, 0.05768147110939026, 0.049425240606069565, 0.07149685174226761, 0.05951106548309326, 0.10963805764913559, 0.0229447390884161, 0.03814031183719635, 0.09062444418668747], [0.07423175871372223, 0.012813451699912548, 0.0010853252606466413, 0.00595083087682724, 0.003418268635869026, 0.002421505516394973, 0.0014076873194426298, 0.0592389851808548, 0.10726946592330933, 0.08401983976364136, 0.011291115544736385, 0.023983735591173172, 0.01690945029258728, 0.024086609482765198, 0.00714537687599659, 0.020114701241254807, 0.5446118116378784]], [[0.13619019091129303, 0.07917975634336472, 0.03191395476460457, 0.04470569267868996, 0.02777736820280552, 0.04517613351345062, 0.0329587385058403, 0.12386400252580643, 0.05149879306554794, 0.07249888777732849, 0.04246753454208374, 0.058487556874752045, 0.056250590831041336, 0.05078359320759773, 0.049788471311330795, 0.0382404625415802, 0.05821827054023743], [0.21094262599945068, 0.06072332337498665, 0.03154246509075165, 0.039620619267225266, 0.05296778678894043, 0.05292663723230362, 0.05951029062271118, 0.11615844815969467, 0.14391648769378662, 0.03390298783779144, 0.01596452109515667, 0.0435335636138916, 0.01744716987013817, 0.021830270066857338, 0.027046184986829758, 0.0157967247068882, 0.05616976320743561], [0.34229591488838196, 0.05349472165107727, 0.00044914547470398247, 0.04652364179491997, 0.01909130997955799, 0.0064160870388150215, 0.05236538127064705, 0.037946734577417374, 0.21899962425231934, 0.010216470807790756, 0.006880542263388634, 0.015377227216959, 0.02915443666279316, 0.02698325365781784, 0.03277679905295372, 0.02056245319545269, 0.08046623319387436], [0.1226445883512497, 0.040392011404037476, 0.02360180765390396, 0.03356942534446716, 0.0331718809902668, 0.14128978550434113, 0.034561868757009506, 0.1505764275789261, 0.0805952250957489, 0.09598302841186523, 0.010058676823973656, 0.04970911145210266, 0.03134823217988014, 0.03427494689822197, 0.053327612578868866, 0.03709784522652626, 0.0277975145727396], [0.1335122436285019, 0.046422168612480164, 0.045643869787454605, 0.06108638271689415, 0.003401512047275901, 0.1501297801733017, 0.1097494512796402, 0.054603055119514465, 0.17308315634727478, 0.04177732393145561, 0.008323014713823795, 0.08298651874065399, 0.008997861295938492, 0.017226438969373703, 0.009730478748679161, 0.0076748076826334, 0.04565189406275749], [0.13850677013397217, 0.0639893040060997, 0.00850216206163168, 0.09153279662132263, 0.03693598508834839, 0.0058687045238912106, 0.05740666389465332, 0.10620807111263275, 0.19798418879508972, 0.06629233807325363, 0.021415511146187782, 0.041560862213373184, 0.0216192826628685, 0.04996025562286377, 0.0258440300822258, 0.011483612470328808, 0.0548895038664341], [0.2302083969116211, 0.05530844256281853, 0.05514807254076004, 0.050639744848012924, 0.013585008680820465, 0.08023469895124435, 0.05732687935233116, 0.05652659386396408, 0.18080158531665802, 0.03227950260043144, 0.0084602115675807, 0.0704965889453888, 0.016363631933927536, 0.008549617603421211, 0.013112160377204418, 0.0107195395976305, 0.060239389538764954], [0.25972920656204224, 0.06390157341957092, 0.019162608310580254, 0.04985982924699783, 0.041011158376932144, 0.045371364802122116, 0.034367289394140244, 0.15957415103912354, 0.06398110091686249, 0.028466304764151573, 0.013219913467764854, 0.03698974847793579, 0.026138199493288994, 0.053603410720825195, 0.021687759086489677, 0.0411180704832077, 0.04181830585002899], [0.09034276008605957, 0.07754916697740555, 0.03454980626702309, 0.06535446643829346, 0.03883584216237068, 0.10664921253919601, 0.03620612248778343, 0.20718428492546082, 0.0517723374068737, 0.05870107188820839, 0.028977826237678528, 0.037805333733558655, 0.054174941033124924, 0.033762793987989426, 0.02283877320587635, 0.026870692148804665, 0.028424501419067383], [0.21625906229019165, 0.04045278951525688, 0.012858305126428604, 0.10989797860383987, 0.020503783598542213, 0.04206298291683197, 0.05962509289383888, 0.10306674987077713, 0.11533786356449127, 0.0013563567772507668, 0.0038155068177729845, 0.08406057208776474, 0.011772611178457737, 0.014186138287186623, 0.0073732552118599415, 0.04508255794644356, 0.11228843033313751], [0.09747344255447388, 0.01777718774974346, 0.004821004346013069, 0.04646192863583565, 0.017839256674051285, 0.01810486800968647, 0.03567995876073837, 0.0609109029173851, 0.08252067863941193, 0.01140142884105444, 0.005305478814989328, 0.1423553228378296, 0.09637564420700073, 0.03626321256160736, 0.07755101472139359, 0.08356667309999466, 0.16559194028377533], [0.11249347031116486, 0.023766499012708664, 0.023114655166864395, 0.042992446571588516, 0.032619692385196686, 0.05845371633768082, 0.07248760759830475, 0.036161720752716064, 0.07719957083463669, 0.022553693503141403, 0.01761680096387863, 0.07407406717538834, 0.09231282770633698, 0.020714614540338516, 0.04424132779240608, 0.09275511652231216, 0.15644221007823944], [0.2892049551010132, 0.024716205894947052, 0.010256482288241386, 0.017953963950276375, 0.0005146929761394858, 0.015512811951339245, 0.014164227060973644, 0.05134362354874611, 0.13534921407699585, 0.01808399148285389, 0.013838488608598709, 0.0692896619439125, 0.005127372685819864, 0.04375274479389191, 0.022679675370454788, 0.015939589589834213, 0.252272367477417], [0.18097321689128876, 0.03645959869027138, 0.04169938340783119, 0.03479447960853577, 0.001791298040188849, 0.136783629655838, 0.02464781142771244, 0.026010729372501373, 0.11617446690797806, 0.010181463323533535, 0.02268487960100174, 0.06266524642705917, 0.012716144323348999, 0.001053516985848546, 0.0036807595752179623, 0.05368969589471817, 0.23399367928504944], [0.16878485679626465, 0.041048578917980194, 0.03248143196105957, 0.049241114407777786, 0.008485502563416958, 0.054425302892923355, 0.029646243900060654, 0.029012341052293777, 0.1390765905380249, 0.006958476267755032, 0.027609024196863174, 0.06530915200710297, 0.01951870508491993, 0.006199215073138475, 0.0032057338394224644, 0.030796699225902557, 0.28820106387138367], [0.22168339788913727, 0.01970122568309307, 0.017759354785084724, 0.021183690056204796, 0.003852823516353965, 0.04136800393462181, 0.01090035866945982, 0.0650753527879715, 0.054872192442417145, 0.024630671367049217, 0.011827384121716022, 0.09941930323839188, 0.026330361142754555, 0.06422965973615646, 0.08038948476314545, 0.08413398265838623, 0.15264277160167694], [0.10022874921560287, 0.02577802538871765, 0.011863223277032375, 0.017911396920681, 0.005067610181868076, 0.018355203792452812, 0.009556182660162449, 0.09161453694105148, 0.01999814249575138, 0.08449877798557281, 0.06590288877487183, 0.07416608184576035, 0.12163711339235306, 0.08837532997131348, 0.052650175988674164, 0.09376457333564758, 0.118632011115551]]], [[[0.6822956204414368, 0.035260070115327835, 0.00263024540618062, 0.013483773916959763, 0.010092920623719692, 0.00952314306050539, 0.0016194175696000457, 0.03664538636803627, 0.019463056698441505, 0.022302372381091118, 0.043861303478479385, 0.011156735941767693, 0.0245597492903471, 0.004603949375450611, 0.0038147231098264456, 0.02780424803495407, 0.05088333785533905], [0.3195177912712097, 0.09742715954780579, 0.01119675301015377, 0.12037629634141922, 0.04995123669505119, 0.044034916907548904, 0.011735173873603344, 0.14329250156879425, 0.08690748363733292, 0.013612714596092701, 0.04531298950314522, 0.013159109279513359, 0.01894041895866394, 0.0022922256030142307, 0.0018899071728810668, 0.005071460269391537, 0.015281840227544308], [0.52382892370224, 0.02846101112663746, 0.018757235258817673, 0.03017124906182289, 0.030158022418618202, 0.09563451260328293, 0.007803021930158138, 0.02280348353087902, 0.1261315643787384, 0.011107896454632282, 0.006723277736455202, 0.0013152105966582894, 0.018898582085967064, 0.003657741704955697, 0.013297272846102715, 0.0014744699001312256, 0.05977644398808479], [0.3216986656188965, 0.23807315528392792, 0.0008802164811640978, 0.06642764061689377, 0.04236074537038803, 0.02113865502178669, 0.01180385984480381, 0.1970285326242447, 0.016916584223508835, 0.005837828852236271, 0.026597993448376656, 0.03644804656505585, 0.00785502977669239, 0.0005335125606507063, 0.00025057175662368536, 0.004023133777081966, 0.002125779166817665], [0.45321059226989746, 0.06610734760761261, 0.00047098653158172965, 0.16192032396793365, 0.04743068665266037, 0.01764250174164772, 0.06689406931400299, 0.11394446343183517, 0.011730327270925045, 0.012875119224190712, 0.008049319498240948, 0.015101907774806023, 0.012054195627570152, 0.0011627222411334515, 0.000563008536119014, 0.008045155555009842, 0.002797310473397374], [0.48540663719177246, 0.0315280556678772, 0.0009604609222151339, 0.09195850789546967, 0.06993946433067322, 0.024767903611063957, 0.06700718402862549, 0.14951883256435394, 0.016719719395041466, 0.0143564622849226, 0.007434335071593523, 0.009912626817822456, 0.011083364486694336, 0.003885942278429866, 0.00208507152274251, 0.008306787349283695, 0.005128646735101938], [0.4349879026412964, 0.07053473591804504, 0.0001326032797805965, 0.23243191838264465, 0.08468427509069443, 0.010827518999576569, 0.009237083606421947, 0.095780149102211, 0.0049951933324337006, 0.010793130844831467, 0.007235290016978979, 0.011028170585632324, 0.0046798549592494965, 0.0009857806144282222, 0.00011326972162351012, 0.02063368633389473, 0.00091942009748891], [0.43343231081962585, 0.07787344604730606, 0.0031263334676623344, 0.069603331387043, 0.052730485796928406, 0.015508756041526794, 0.006747057661414146, 0.21662920713424683, 0.024357153102755547, 0.025131117552518845, 0.024896914139389992, 0.014240911230444908, 0.00902417954057455, 0.003260604804381728, 0.0013814592966809869, 0.015226085670292377, 0.006830764468759298], [0.7126644253730774, 0.05738997459411621, 0.0017661815509200096, 0.011781885288655758, 0.02944267727434635, 0.012645489536225796, 0.005664742551743984, 0.11641773581504822, 0.01747857965528965, 0.010960976593196392, 0.004601067863404751, 0.004442916251718998, 0.005712913349270821, 0.0007291765650734305, 0.0007241361308842897, 0.0036139606963843107, 0.0039633456617593765], [0.35545724630355835, 0.015700388699769974, 0.00022701396665070206, 0.047394681721925735, 0.01047397032380104, 0.003791484050452709, 0.0034794039092957973, 0.11609276384115219, 0.017329897731542587, 0.06030169874429703, 0.12431337684392929, 0.11013025045394897, 0.05419253930449486, 0.0029536793008446693, 0.0008693889831192791, 0.04836363345384598, 0.028928592801094055], [0.18819394707679749, 0.031523726880550385, 0.0019991977605968714, 0.03090377151966095, 0.002986564300954342, 0.007773544639348984, 0.0009980795439332724, 0.12662644684314728, 0.07078582048416138, 0.05949152633547783, 0.0713064894080162, 0.06256473064422607, 0.0397312305867672, 0.013424444012343884, 0.0121604660525918, 0.08287225663661957, 0.19665774703025818], [0.44700315594673157, 0.008147265762090683, 0.00018987641669809818, 0.026380542665719986, 0.006153915077447891, 0.0037664221599698067, 0.0018434333615005016, 0.07596214860677719, 0.01489653717726469, 0.03840700909495354, 0.03325706720352173, 0.046473968774080276, 0.060095787048339844, 0.017903203144669533, 0.008452055975794792, 0.1373477578163147, 0.0737197995185852], [0.34166258573532104, 0.014866519719362259, 0.0006122334743849933, 0.017381759360432625, 0.0047426060773432255, 0.005879465024918318, 0.0038198272231966257, 0.03887733817100525, 0.01415393128991127, 0.06591495871543884, 0.029482051730155945, 0.04742943122982979, 0.09581159055233002, 0.05360044166445732, 0.042785268276929855, 0.12945809960365295, 0.093521848320961], [0.3062163293361664, 0.0043711792677640915, 0.0016276920214295387, 0.016264447942376137, 0.0015441137365996838, 0.008248157799243927, 0.001241195946931839, 0.026808761060237885, 0.030627401545643806, 0.010589483194053173, 0.008681464940309525, 0.020977210253477097, 0.028243962675333023, 0.03647366538643837, 0.0943315178155899, 0.21241238713264465, 0.19134104251861572], [0.1210237517952919, 0.002162128919735551, 0.0034830737859010696, 0.008340361528098583, 0.001517640077508986, 0.004227576311677694, 0.0005055739893577993, 0.011009505949914455, 0.03782225772738457, 0.017331713810563087, 0.009642845019698143, 0.021944144740700722, 0.030234074220061302, 0.10904727131128311, 0.11775970458984375, 0.16735392808914185, 0.3365943729877472], [0.5429201126098633, 0.009856241755187511, 8.317088213516399e-05, 0.015544903464615345, 0.0009551475523039699, 0.001194678246974945, 0.0003980295732617378, 0.10956937819719315, 0.007213618606328964, 0.03117157705128193, 0.0459539033472538, 0.05523526668548584, 0.019978677853941917, 0.0040847123600542545, 0.0009635523310862482, 0.10833918303251266, 0.046537794172763824], [0.806210458278656, 0.008082743734121323, 0.000343059393344447, 0.0011954146903008223, 0.002624648390337825, 0.0014450001763179898, 0.0006635795580223203, 0.03913620859384537, 0.005478864535689354, 0.020178085193037987, 0.010771473869681358, 0.009192985482513905, 0.01983797550201416, 0.003090026555582881, 0.005178037099540234, 0.020579298958182335, 0.045992035418748856]], [[0.26030296087265015, 0.024937255308032036, 0.0119309788569808, 0.03835250809788704, 0.007886629551649094, 0.022854356095194817, 0.018406454473733902, 0.02492615021765232, 0.08671466261148453, 0.019164158031344414, 0.034623999148607254, 0.040964607149362564, 0.010998984798789024, 0.07520788908004761, 0.03389676660299301, 0.08578357100486755, 0.2030480057001114], [0.5228820443153381, 0.2498551905155182, 0.0047102575190365314, 0.02850227989256382, 0.001522764447145164, 0.0018293781904503703, 0.007469263859093189, 0.015240908600389957, 0.08303587883710861, 0.005514114163815975, 0.01869751326739788, 0.0015216560568660498, 0.0007400493486784399, 0.0031062287744134665, 0.0019343933090567589, 0.011887768283486366, 0.04155036062002182], [0.5664864778518677, 0.008889389224350452, 0.09324275702238083, 0.004385432228446007, 0.0002986930776387453, 0.0038385335355997086, 0.0002485603035893291, 0.02305116504430771, 0.18619360029697418, 0.004172870423644781, 0.0018810393521562219, 0.000216798041947186, 0.00030662701465189457, 0.0030485582537949085, 0.0008845346746966243, 0.004338380414992571, 0.0985165685415268], [0.2929644286632538, 0.0634969100356102, 0.003967739641666412, 0.3829934597015381, 0.005042236298322678, 0.0014616843545809388, 0.01442265696823597, 0.015202870592474937, 0.07655645906925201, 0.014224136248230934, 0.024202097207307816, 0.0031307926401495934, 0.0019311335636302829, 0.03346136584877968, 0.001373190782032907, 0.03842684626579285, 0.027141958475112915], [0.23808839917182922, 0.010087027214467525, 0.0003861273289658129, 0.014740384183824062, 0.5390181541442871, 0.008710535243153572, 0.03599068522453308, 0.010943606495857239, 0.04784562438726425, 0.006522782146930695, 0.0011998129775747657, 0.0017976046074181795, 0.02926289290189743, 0.0070022395811975, 0.001948303310200572, 0.0015431599458679557, 0.04491274058818817], [0.11473768949508667, 0.000960657955147326, 0.0009823553264141083, 0.0009865137981250882, 0.0003537834854796529, 0.7655156254768372, 0.0008234000415541232, 0.010097494348883629, 0.05844496935606003, 0.0011152173392474651, 0.00046246341662481427, 0.0007048386614769697, 0.00024133393890224397, 0.004020757973194122, 0.0014535851078107953, 0.003951926715672016, 0.035147469490766525], [0.5163162350654602, 0.00897502526640892, 0.0004555540217552334, 0.012591302394866943, 0.011259350925683975, 0.002138142241165042, 0.29595574736595154, 0.01212291605770588, 0.09115639328956604, 0.0022656195797026157, 0.006693446077406406, 0.001294752350077033, 0.002201332012191415, 0.0014744959771633148, 0.0006546106887981296, 0.0012760474346578121, 0.03316907584667206], [0.21852906048297882, 0.08968650549650192, 0.05212351679801941, 0.10586758702993393, 0.0189121775329113, 0.03629008308053017, 0.023462336510419846, 0.093361496925354, 0.1368219405412674, 0.0327131561934948, 0.04305531829595566, 0.01102403923869133, 0.013256549835205078, 0.024074526503682137, 0.00987568125128746, 0.031168457120656967, 0.05977753922343254], [0.6237765550613403, 0.07191742956638336, 0.005616202484816313, 0.04252871498465538, 0.002756607485935092, 0.010773872956633568, 0.004928263369947672, 0.06351715326309204, 0.09769699722528458, 0.003188671311363578, 0.004592030309140682, 0.001247798791155219, 0.0004021433705929667, 0.008964680135250092, 0.0014624991454184055, 0.012995840050280094, 0.043634504079818726], [0.41960352659225464, 0.01913681998848915, 0.0015677883056923747, 0.007768760900944471, 0.003421276342123747, 0.0009994249558076262, 0.0008573529776185751, 0.01781180500984192, 0.22060412168502808, 0.16235463321208954, 0.014189998619258404, 0.0033870653714984655, 0.005030840635299683, 0.000790201302152127, 0.001405485556460917, 0.004889284260571003, 0.11618164926767349], [0.21278835833072662, 0.1617441177368164, 0.002280773827806115, 0.06295441091060638, 0.0023916931822896004, 0.0028469108510762453, 0.0061056348495185375, 0.03518082946538925, 0.02114127017557621, 0.015012288466095924, 0.428611159324646, 0.00602854834869504, 0.0027886908501386642, 0.008689564652740955, 0.0013605465646833181, 0.014249610714614391, 0.015825416892766953], [0.1087644025683403, 0.007666837889701128, 0.0009514890844002366, 0.011494861915707588, 0.008100277744233608, 0.011865037493407726, 0.010352912358939648, 0.014303864911198616, 0.13765114545822144, 0.004660285077989101, 0.011767576448619366, 0.5612844228744507, 0.00652401614934206, 0.008163641206920147, 0.003781902836635709, 0.007013797294348478, 0.08565358817577362], [0.19253849983215332, 0.015032432973384857, 0.0015187135431915522, 0.015387236140668392, 0.10257664322853088, 0.012829083018004894, 0.011811327189207077, 0.03713827580213547, 0.05944398045539856, 0.013319967314600945, 0.007715099025517702, 0.011939016170799732, 0.44796672463417053, 0.011809742078185081, 0.004552720580250025, 0.002404824597761035, 0.0520157590508461], [0.35856541991233826, 0.0008786483085714281, 0.0012833033688366413, 0.004999963100999594, 0.0008144171442836523, 0.0038151931948959827, 0.0007613565539941192, 0.010301255621016026, 0.06564703583717346, 0.0004498498747125268, 0.0006767010781913996, 0.0009487619390711188, 0.0008650294621475041, 0.5057371854782104, 0.002964746905490756, 0.011714909225702286, 0.02957627736032009], [0.16855739057064056, 0.0035048709250986576, 0.0025944223161786795, 0.0023684853222221136, 0.0034197778441011906, 0.007350698113441467, 0.002209746977314353, 0.018640436232089996, 0.055680349469184875, 0.008621187880635262, 0.003783331485465169, 0.004712854977697134, 0.005618084222078323, 0.040853600949048996, 0.5851300954818726, 0.029646925628185272, 0.057307615876197815], [0.4214586317539215, 0.01272890530526638, 0.0037388994824141264, 0.034625470638275146, 0.0009176275343634188, 0.007532259449362755, 0.002153666689991951, 0.031964510679244995, 0.13898687064647675, 0.0074130212888121605, 0.008008171804249287, 0.0033505852334201336, 0.0006066468777135015, 0.04832366108894348, 0.009480200707912445, 0.18003545701503754, 0.08867539465427399], [0.35087811946868896, 0.039255011826753616, 0.019050082191824913, 0.032050490379333496, 0.00489999633282423, 0.01617913320660591, 0.006983624771237373, 0.0962814912199974, 0.23207370936870575, 0.00944092869758606, 0.008303634822368622, 0.002870802767574787, 0.0010940341744571924, 0.021532583981752396, 0.004500772804021835, 0.033830802887678146, 0.12077486515045166]], [[0.22436125576496124, 0.03122175857424736, 0.021436095237731934, 0.014033504761755466, 0.019719915464520454, 0.0338527113199234, 0.012618753127753735, 0.039174940437078476, 0.03941758722066879, 0.3097091019153595, 0.0364307276904583, 0.02144465781748295, 0.03611835464835167, 0.04168879985809326, 0.018086425960063934, 0.03709793463349342, 0.06358738988637924], [0.2595123052597046, 0.13314905762672424, 0.029556741937994957, 0.0541284941136837, 0.02760419435799122, 0.02228226512670517, 0.09031977504491806, 0.16102033853530884, 0.07728604972362518, 0.0170094296336174, 0.03624677658081055, 0.019100148230791092, 0.01108310092240572, 0.026370098814368248, 0.022499585524201393, 0.004521022085100412, 0.008310568518936634], [0.594242513179779, 0.15180082619190216, 0.013355364091694355, 0.013014501892030239, 0.0018408140167593956, 0.0003923088952433318, 0.0116496616974473, 0.16529680788516998, 0.0057604662142694, 0.0007728811469860375, 0.01601817086338997, 0.010109257884323597, 0.001657823333516717, 0.0016253077192232013, 0.009594626724720001, 0.0018021098803728819, 0.0010666298912838101], [0.27030667662620544, 0.13621576130390167, 0.028462644666433334, 0.0646762028336525, 0.02358029969036579, 0.02551363967359066, 0.09418133646249771, 0.11567646265029907, 0.023073725402355194, 0.018290143460035324, 0.07670951634645462, 0.027966663241386414, 0.01960626430809498, 0.028858521953225136, 0.035123687237501144, 0.00953949149698019, 0.002219011075794697], [0.5074316263198853, 0.07996106147766113, 0.002697526477277279, 0.011143394745886326, 0.00106679683085531, 0.0004081881488673389, 0.0045843543484807014, 0.3531482517719269, 0.012267665937542915, 0.0007239445112645626, 0.0043886261992156506, 0.008659426122903824, 0.000407509010983631, 0.0028253772761672735, 0.008663775399327278, 0.0006861094734631479, 0.0009364447323605418], [0.5707200765609741, 0.13657622039318085, 0.01322108879685402, 0.00804736465215683, 0.0021786789875477552, 0.0002577733830548823, 0.00417737290263176, 0.2190672606229782, 0.009484305046498775, 0.0007010713452473283, 0.010957865975797176, 0.006696528289467096, 0.001869760686531663, 0.0015118465526029468, 0.01242093462496996, 0.0005763688823208213, 0.0015355368377640843], [0.4644774794578552, 0.06806331127882004, 0.011435909196734428, 0.03586268797516823, 0.005579446908086538, 0.002100869081914425, 0.008821384981274605, 0.23808692395687103, 0.08800483494997025, 0.0008978701662272215, 0.009406577795743942, 0.03075648471713066, 0.001903757220134139, 0.005021379794925451, 0.01724247634410858, 0.0021622073836624622, 0.010176380164921284], [0.3335186541080475, 0.03827006742358208, 0.013124575838446617, 0.041150301694869995, 0.03460875526070595, 0.015999259427189827, 0.034882307052612305, 0.22065448760986328, 0.106643445789814, 0.017461303621530533, 0.019272973760962486, 0.0266261026263237, 0.015617902390658855, 0.022518768906593323, 0.0036819051019847393, 0.017316684126853943, 0.03865256905555725], [0.48089906573295593, 0.05632786452770233, 0.006751597858965397, 0.02877786196768284, 0.020115992054343224, 0.007723397575318813, 0.02941860258579254, 0.31117892265319824, 0.012199708260595798, 0.004238551948219538, 0.00707376841455698, 0.015346447005867958, 0.003231395734474063, 0.00975171197205782, 0.0037738943938165903, 0.0019818206783384085, 0.0012094136327505112], [0.35051918029785156, 0.0277424193918705, 0.0026206346228718758, 0.00862390361726284, 0.0007308940985240042, 0.0006053828983567655, 0.002039568731561303, 0.18621663749217987, 0.02659977413713932, 0.04654679819941521, 0.0565185509622097, 0.08150777220726013, 0.011012209579348564, 0.01555384136736393, 0.03829077258706093, 0.06883057206869125, 0.07604116201400757], [0.29989585280418396, 0.21211478114128113, 0.012097137980163097, 0.03750472888350487, 0.006688349414616823, 0.004164774902164936, 0.006009112577885389, 0.038700759410858154, 0.012774821370840073, 0.0584508515894413, 0.12515515089035034, 0.05331069603562355, 0.012712017633020878, 0.028217719867825508, 0.027167880907654762, 0.0398469939827919, 0.02518841065466404], [0.8537232875823975, 0.008102361112833023, 0.000321030558552593, 0.0008533833315595984, 6.255933840293437e-05, 9.349741594633088e-05, 0.00017812031728681177, 0.08712994307279587, 0.0029953145422041416, 0.0018041590228676796, 0.00544142909348011, 0.012984873726963997, 0.0007626242586411536, 0.0030534672550857067, 0.004994462709873915, 0.006727222353219986, 0.010772330686450005], [0.7217544913291931, 0.019425155594944954, 0.0007242090068757534, 0.0011370280990377069, 8.95856210263446e-05, 0.00022010953398421407, 0.00036339106736704707, 0.20532137155532837, 0.0035484805703163147, 0.004185807891190052, 0.005644181277602911, 0.015357761643826962, 0.0004456062160898, 0.0018210476264357567, 0.00569745060056448, 0.004917515441775322, 0.009346977807581425], [0.6803311109542847, 0.04388759285211563, 0.010201721452176571, 0.004490840248763561, 0.00011520295083755627, 0.000227678261580877, 0.0004739072173833847, 0.12748093903064728, 0.0055168732069432735, 0.0039052702486515045, 0.005486944690346718, 0.07031803578138351, 0.0003826988395303488, 0.0032799742184579372, 0.01451216172426939, 0.019167032092809677, 0.010222065262496471], [0.7427048087120056, 0.0446072518825531, 0.002733102533966303, 0.0013373729307204485, 0.00011133380030514672, 0.00011317487224005163, 0.0005121941212564707, 0.13273939490318298, 0.004510131198912859, 0.0014771270798519254, 0.004741154611110687, 0.04112107679247856, 0.0005231461836956441, 0.004035986494272947, 0.005976933520287275, 0.003571887733414769, 0.009184031747281551], [0.1489006131887436, 0.013011327013373375, 0.001975643215700984, 0.01670215092599392, 0.003309930209070444, 0.004668704699724913, 0.004907403606921434, 0.0430835522711277, 0.014747639186680317, 0.058971405029296875, 0.04376852512359619, 0.09500115364789963, 0.04765741154551506, 0.17318540811538696, 0.15286332368850708, 0.12580904364585876, 0.051436807960271835], [0.6095574498176575, 0.027133753523230553, 0.0025640218518674374, 0.005627874750643969, 0.002388184890151024, 0.0022122778464108706, 0.004465707577764988, 0.13545842468738556, 0.004957517609000206, 0.020288845524191856, 0.03069455549120903, 0.06566030532121658, 0.012075920589268208, 0.03674916923046112, 0.012515691109001637, 0.015901319682598114, 0.011748884804546833]], [[0.7269570827484131, 0.01789163611829281, 0.00799620058387518, 0.006585173774510622, 0.003356094704940915, 0.005447388626635075, 0.004194266628473997, 0.020981440320611, 0.04622857645153999, 0.005640462040901184, 0.0043085734359920025, 0.004060355946421623, 0.008057504892349243, 0.009216810576617718, 0.006843645591288805, 0.013159217312932014, 0.10907569527626038], [0.006191821303218603, 0.019481344148516655, 0.7337139248847961, 0.20860829949378967, 0.015124008990824223, 0.0032596897799521685, 0.0004418274329509586, 0.0014926388394087553, 0.004156946670264006, 0.0009886649204418063, 0.0014647089410573244, 0.0021933538373559713, 0.0005162816378287971, 0.00037877087015658617, 0.00017860450316220522, 0.0008612748351879418, 0.0009478495921939611], [0.8142242431640625, 0.014280052855610847, 0.03292576223611832, 0.05281565710902214, 0.03126922622323036, 0.022389255464076996, 0.0006104055210016668, 0.004441654775291681, 0.008216227404773235, 0.00015931884991005063, 0.00016934095765464008, 0.00022205487766768783, 0.0016439077444374561, 0.001120731234550476, 0.0002189180813729763, 0.0011454833438619971, 0.014147806912660599], [0.08254825323820114, 0.007273707073181868, 0.007603869307786226, 0.02100532129406929, 0.453010618686676, 0.3249257802963257, 0.024505997076630592, 0.023346200585365295, 0.015324040316045284, 0.00020244077313691378, 8.737038297113031e-05, 0.0003801225684583187, 0.003071874612942338, 0.017686055973172188, 0.0035992234479635954, 0.0017139840638265014, 0.013715008273720741], [0.054695867002010345, 0.0005519826081581414, 0.00016194878844544291, 0.0021179390605539083, 0.01695120520889759, 0.2183791697025299, 0.6605658531188965, 0.037342529743909836, 0.0054132589139044285, 2.2825843188911676e-05, 1.4719857972522732e-05, 5.231525847193552e-06, 0.0014829125721007586, 0.0001251043431693688, 0.00023160403361544013, 0.00025381791056133807, 0.0016839680029079318], [0.4551451802253723, 0.0027073537930846214, 0.0006436753319576383, 0.0011482848785817623, 0.011742557398974895, 0.05413889139890671, 0.09749658405780792, 0.2391180545091629, 0.1270204335451126, 0.0009941611206158996, 0.00025643015396781266, 3.041134732484352e-05, 0.0021528557408601046, 0.0004836696607526392, 0.001114178798161447, 0.0004480742500163615, 0.0053592342883348465], [0.20939292013645172, 0.002777647925540805, 0.00017728346574585885, 7.00855816830881e-05, 0.0017265296773985028, 0.014145530760288239, 0.0033955376129597425, 0.06417017430067062, 0.6963275671005249, 0.0028625503182411194, 0.0006282955291680992, 1.543108191981446e-05, 0.00041611684719100595, 4.507028279476799e-05, 0.00018130823445972055, 0.00011334386363159865, 0.003554614493623376], [0.2170998603105545, 0.012498983182013035, 0.004142874386161566, 0.0018711151788011193, 0.0015724966069683433, 0.008559465408325195, 0.016058972105383873, 0.06742995232343674, 0.5090731978416443, 0.11453909426927567, 0.031752388924360275, 0.0026793505530804396, 0.0011193726677447557, 0.0008053377969190478, 0.001154088880866766, 0.0009438367560505867, 0.008699722588062286], [0.9664286971092224, 0.001338437432423234, 0.00028009433299303055, 0.0003492311807349324, 6.550805119331926e-05, 0.00017494872736278921, 7.833373820176348e-05, 0.001981660258024931, 0.020104890689253807, 0.005200414452701807, 0.0019855231512337923, 0.0007284999010153115, 0.00019032112322747707, 5.707058880943805e-05, 2.724666046560742e-05, 8.845505362842232e-05, 0.0009204759262502193], [0.5758452415466309, 0.0030951141379773617, 0.004761130083352327, 0.002336776116862893, 0.0002411947789369151, 9.37568984227255e-05, 5.521527418750338e-05, 0.0003310434112790972, 0.004556070547550917, 0.028866425156593323, 0.10900643467903137, 0.23613987863063812, 0.024846957996487617, 0.004491351079195738, 0.0010350859956815839, 0.0006556663429364562, 0.0036426254082471132], [0.575535237789154, 0.0008558345143683255, 0.005822916515171528, 0.0034926305525004864, 0.00010607944568619132, 3.480555460555479e-05, 7.737130545137916e-06, 0.0005968101904727519, 0.00543591845780611, 0.017514795064926147, 0.03259458392858505, 0.1252136379480362, 0.13784223794937134, 0.08326109498739243, 0.0021554052364081144, 0.005088401027023792, 0.004441919270902872], [0.011750069446861744, 0.0001563738042023033, 0.00010440481128171086, 0.00020337167370598763, 9.635693277232349e-05, 7.71645427448675e-05, 3.69607332686428e-05, 0.00012413262447807938, 0.00033067449112422764, 0.00012616872845683247, 0.000515155668836087, 0.0005893527995795012, 0.966963529586792, 0.008206074126064777, 0.008268392644822598, 0.0005751883727498353, 0.0018765617860481143], [0.43296104669570923, 0.0005168191273696721, 0.0007069097482599318, 0.0005931710475124419, 0.001529261120595038, 0.0021718121133744717, 0.0006062213215045631, 0.0011525223962962627, 0.0015182701172307134, 0.00044179102405905724, 0.0016879516188055277, 0.00476248050108552, 0.20452313125133514, 0.15664899349212646, 0.11206435412168503, 0.046345844864845276, 0.031769465655088425], [0.44735753536224365, 0.0005971206119284034, 0.00020121039415244013, 0.00035224054590798914, 0.0010305430041626096, 0.0007352453540079296, 0.001396332634612918, 0.000719264498911798, 0.002508622594177723, 6.437341653509066e-05, 7.428012759191915e-05, 0.0008355104364454746, 0.04698832333087921, 0.016309339553117752, 0.3386057913303375, 0.06282110512256622, 0.07940312474966049], [0.9219660758972168, 0.0001357470900984481, 6.967592344153672e-05, 3.8046367990318686e-05, 4.9331447371514514e-05, 9.716444765217602e-05, 2.9237058697617613e-05, 0.0002664979256223887, 0.0004996331408619881, 1.3988978025736287e-05, 5.258775217953371e-06, 2.4656586901983246e-05, 0.0005134257371537387, 0.0003939476446248591, 0.003402730682864785, 0.008656292222440243, 0.06383830308914185], [0.6382927298545837, 0.00030877284007146955, 0.0003692670143209398, 0.00024581330944783986, 0.0006497515714727342, 0.0005276494193822145, 0.00027332419995218515, 0.000819970213342458, 0.001459851278923452, 0.00013651080371346325, 4.496298060985282e-05, 0.00017771369311958551, 0.0005697915330529213, 0.005081457085907459, 0.023721717298030853, 0.009262540377676487, 0.31805816292762756], [0.9699109196662903, 4.7778554289834574e-05, 3.577940151444636e-05, 7.615400681970641e-05, 6.269367440836504e-05, 0.00016595187480561435, 4.878999607171863e-05, 0.0004922030493617058, 0.0008326738607138395, 6.561361806234345e-05, 2.183180913561955e-05, 5.4876891226740554e-05, 4.194868597551249e-05, 5.985422103549354e-05, 8.497643284499645e-05, 0.0012499121949076653, 0.026748038828372955]], [[0.8424743413925171, 0.020767195150256157, 0.017066778615117073, 0.030537346377968788, 0.006614766549319029, 0.005440154112875462, 0.0016326821641996503, 0.013458272442221642, 0.03050542250275612, 0.0014763184590265155, 0.0013993160100653768, 0.0013031117850914598, 0.0026500681415200233, 0.002508195349946618, 0.0011464474955573678, 0.0027528086211532354, 0.018266746774315834], [0.9286220669746399, 0.02002856880426407, 0.003596397815272212, 0.022788656875491142, 7.081696821842343e-05, 0.00013932306319475174, 3.967220618505962e-05, 0.004535026848316193, 0.015291046351194382, 0.0037771102506667376, 0.0004201025585643947, 1.952280945261009e-05, 3.7738984246971086e-05, 1.6232061170740053e-05, 2.1951214876025915e-05, 0.00020372123981360346, 0.00039198403828777373], [0.8238195776939392, 0.11171792447566986, 0.009885051287710667, 0.013269836083054543, 0.00012634409358724952, 5.4048166930442676e-05, 4.074934167874744e-06, 0.0011064414866268635, 0.02488909661769867, 0.009586002677679062, 0.0005006412975490093, 0.00014171192015055567, 0.00028805973124690354, 6.761758413631469e-05, 0.00013069888518657535, 0.000522487738635391, 0.0038903942331671715], [0.5379607677459717, 0.2255418598651886, 0.17621786892414093, 0.021368632093071938, 0.004112194292247295, 0.0008770033018663526, 1.3368659892876167e-05, 0.001554579590447247, 0.021221648901700974, 0.0011821899097412825, 0.001655652653425932, 0.00015697117487434298, 0.0012310550082474947, 0.0004780261078849435, 0.0008851875318214297, 0.0004430878907442093, 0.005100049078464508], [0.31428298354148865, 0.04264606535434723, 0.15583379566669464, 0.44417861104011536, 0.026532310992479324, 0.0041827731765806675, 4.7395064029842615e-05, 0.0005624418263323605, 0.003462761640548706, 7.51363841118291e-05, 5.014517228119075e-05, 0.0004029714036732912, 0.00018296969938091934, 0.0011074799112975597, 0.00011250215902691707, 0.00046336802188307047, 0.005876149982213974], [0.6452857255935669, 0.009519824758172035, 0.03558145463466644, 0.2224140167236328, 0.04735264554619789, 0.0073654139414429665, 0.0004941757651977241, 0.004128024913370609, 0.012794092297554016, 2.5512426873319782e-05, 1.954131221282296e-05, 6.062111788196489e-05, 0.0001494393654866144, 0.00040767790051177144, 6.688174471491948e-05, 0.0002183979086112231, 0.014116551727056503], [0.0703856572508812, 0.009479045867919922, 0.008982180617749691, 0.32753419876098633, 0.3548038899898529, 0.19466352462768555, 0.0014312994899228215, 0.014763517305254936, 0.011699704453349113, 2.3687292923568748e-05, 9.652789231040515e-06, 0.00014789635315537453, 8.100362174445763e-05, 0.0005806274130009115, 7.68949612393044e-05, 0.00022560838260687888, 0.005111573729664087], [0.03372747078537941, 0.008814230561256409, 0.001266675884835422, 0.035009779036045074, 0.03177085146307945, 0.2526962459087372, 0.5360028147697449, 0.0579359233379364, 0.03556671366095543, 0.00020314754510764033, 0.00010977837519021705, 4.61096569779329e-05, 0.0004139691009186208, 0.0008369717979803681, 0.00028542723157443106, 0.0007192555349320173, 0.0045946016907691956], [0.9428878426551819, 0.004099049139767885, 8.053931378526613e-05, 0.0006541602779179811, 0.00027153469272889197, 0.0020265269558876753, 0.0007708747871220112, 0.013570916838943958, 0.034691255539655685, 0.00017296920123044401, 1.1985094715782907e-05, 2.2545780211657984e-06, 9.408482583239675e-06, 9.158355169347487e-06, 3.9623714656045195e-06, 2.531175960029941e-05, 0.0007122426759451628], [0.7517618536949158, 0.006795246619731188, 2.971233152493369e-05, 6.851771468063816e-05, 9.587786735210102e-06, 8.76799676916562e-05, 0.00025413092225790024, 0.0253902617841959, 0.18396513164043427, 0.028572531417012215, 0.002274320228025317, 1.8463553715264425e-05, 4.518455534707755e-05, 6.70935696689412e-06, 1.0686344467103481e-05, 8.808149868855253e-05, 0.0006218262715265155], [0.1123083084821701, 0.0032189374323934317, 0.0001560904347570613, 0.00016692676581442356, 4.609536517818924e-06, 2.86362374026794e-05, 2.0452031094464473e-05, 0.008180824108421803, 0.13005411624908447, 0.7239992618560791, 0.02072248049080372, 0.0002314968587597832, 4.522140807239339e-05, 8.987371074908879e-06, 1.3283981388667598e-05, 2.272340680065099e-05, 0.0008177353302016854], [0.3030427098274231, 0.0024056655820459127, 0.0015615628799423575, 0.0003351920749992132, 2.1301857486832887e-05, 2.2717051251675002e-05, 9.577292075846344e-06, 0.0015301295788958669, 0.0851929783821106, 0.26926982402801514, 0.31648850440979004, 0.00241987407207489, 0.007648175582289696, 0.000723672506865114, 0.00018739915685728192, 0.00048627742216922343, 0.008654369041323662], [0.3067166805267334, 0.006327567156404257, 0.0058981324546039104, 0.008593618869781494, 0.0007845971849747002, 0.00015954340051393956, 6.4059922806336544e-06, 0.0009639994241297245, 0.022805364802479744, 0.07659099251031876, 0.14643481373786926, 0.38026589155197144, 0.02378164604306221, 0.013440320268273354, 0.000335381249897182, 0.0003095087013207376, 0.006585441529750824], [0.5674072504043579, 0.0014256652211770415, 0.004462930839508772, 0.005321774631738663, 0.0003587827377486974, 0.00034828728530555964, 1.542511563457083e-05, 0.0006432884256355464, 0.010195896029472351, 0.006155412178486586, 0.1079195886850357, 0.021320685744285583, 0.24467571079730988, 0.016517268493771553, 0.002540757181122899, 0.001054976717568934, 0.009636360220611095], [0.32655876874923706, 0.0029003547970205545, 0.0011188285425305367, 0.003442995483055711, 0.0005175312981009483, 0.0004534115141723305, 0.00023586452880408615, 0.001353472820483148, 0.013619557954370975, 0.002292442601174116, 0.0030651502311229706, 0.05615299195051193, 0.2469804733991623, 0.2729044556617737, 0.013038264587521553, 0.017613399773836136, 0.03775198757648468], [0.5315298438072205, 0.008303933776915073, 0.0026485719718039036, 0.0008984821615740657, 0.0003258080396335572, 0.0002836764615494758, 2.667535409273114e-05, 0.007615853566676378, 0.014708596281707287, 0.000818938366137445, 0.0032937233336269855, 0.0010027901735156775, 0.06035952642560005, 0.05003620311617851, 0.19541166722774506, 0.008891361765563488, 0.1138443797826767], [0.9526456594467163, 0.001157578662969172, 0.00025960744824260473, 0.00025637258659116924, 3.754347926587798e-05, 2.9654478566953912e-05, 6.0121774367871694e-06, 0.00033280765637755394, 0.0017185610486194491, 6.486845086328685e-05, 1.2421493011061102e-05, 1.1812937373179011e-05, 0.00011375109170330688, 0.00034109450643882155, 0.00035989226307719946, 0.0027593132108449936, 0.039893049746751785]], [[0.13585063815116882, 0.03866572305560112, 0.04863022640347481, 0.057078033685684204, 0.013443577103316784, 0.03305221349000931, 0.023145761340856552, 0.06955958902835846, 0.05880245193839073, 0.05664479732513428, 0.026932552456855774, 0.05179768428206444, 0.027190882712602615, 0.06470070034265518, 0.07086866348981857, 0.11984605342149734, 0.10379039496183395], [0.5049821734428406, 0.009588302113115788, 0.028704777359962463, 0.02410416305065155, 0.027530856430530548, 0.03328945115208626, 0.018587250262498856, 0.03651125356554985, 0.08305874466896057, 0.01266869343817234, 0.011085844598710537, 0.027623886242508888, 0.03671414777636528, 0.029543912038207054, 0.023825420066714287, 0.028190666809678078, 0.06399066746234894], [0.413239449262619, 0.012525207363069057, 0.00013884906366001815, 0.006962826009839773, 0.0015833210200071335, 0.0064878398552536964, 0.008617706596851349, 0.02073638327419758, 0.2738681137561798, 0.005007362458854914, 0.005136431660503149, 0.0035143813583999872, 0.004742327146232128, 0.04365547373890877, 0.01293324213474989, 0.004330870695412159, 0.17652028799057007], [0.4644061326980591, 0.02647235244512558, 0.015102909877896309, 0.01899535208940506, 0.020528098568320274, 0.021546365693211555, 0.01763543114066124, 0.057087041437625885, 0.10842602699995041, 0.042855385690927505, 0.01931384764611721, 0.013597359880805016, 0.015839267522096634, 0.05947119742631912, 0.009244520217180252, 0.021759919822216034, 0.0677187591791153], [0.4537603259086609, 0.054237838834524155, 0.025721164420247078, 0.013679997995495796, 0.003925945609807968, 0.010583984665572643, 0.012050645425915718, 0.0709696039557457, 0.0841531902551651, 0.031178399920463562, 0.0366213321685791, 0.00939774326980114, 0.013918706215918064, 0.06000952422618866, 0.03888501226902008, 0.015090123750269413, 0.06581655889749527], [0.3236851096153259, 0.02184567041695118, 0.030767865478992462, 0.009230084717273712, 0.004454542882740498, 0.0008581345900893211, 0.006186081562191248, 0.045718878507614136, 0.1715051233768463, 0.026558367535471916, 0.005739764776080847, 0.013840556144714355, 0.022642487660050392, 0.12898200750350952, 0.04955184459686279, 0.00797287654131651, 0.1304604709148407], [0.3586571514606476, 0.052442245185375214, 0.012864110060036182, 0.031898707151412964, 0.02906748093664646, 0.014049002900719643, 0.009729764424264431, 0.04979103431105614, 0.08141439408063889, 0.05634895712137222, 0.03208122029900551, 0.0504123829305172, 0.0416836217045784, 0.0623234398663044, 0.03486863896250725, 0.023609913885593414, 0.05875788629055023], [0.3849962651729584, 0.050567422062158585, 0.008055496029555798, 0.043122902512550354, 0.05336153879761696, 0.06670928746461868, 0.050491299480199814, 0.06062683090567589, 0.06767594814300537, 0.017989609390497208, 0.02545297145843506, 0.02230505831539631, 0.022549761459231377, 0.032941050827503204, 0.015017562545835972, 0.034142062067985535, 0.04399494454264641], [0.20832321047782898, 0.06806044280529022, 0.10066117346286774, 0.04903802275657654, 0.03328399732708931, 0.06784899532794952, 0.028927646577358246, 0.0522085539996624, 0.0665426179766655, 0.029269542545080185, 0.026736853644251823, 0.04613800719380379, 0.03177730739116669, 0.04003340005874634, 0.05294112116098404, 0.03267202526330948, 0.06553708016872406], [0.3789955973625183, 0.037152182310819626, 0.010874755680561066, 0.03396500647068024, 0.10259268432855606, 0.026040831580758095, 0.03895583748817444, 0.03963545337319374, 0.04879161715507507, 0.019487779587507248, 0.022791527211666107, 0.05048074573278427, 0.030267665162682533, 0.04473079741001129, 0.026651374995708466, 0.025211097672581673, 0.06337516009807587], [0.45390698313713074, 0.01578161120414734, 0.002659309422597289, 0.015172489918768406, 0.008991020731627941, 0.008198995143175125, 0.006894359830766916, 0.04144832864403725, 0.13062527775764465, 0.012979862280189991, 0.002545648254454136, 0.03083221986889839, 0.009862876497209072, 0.02961386740207672, 0.004422659054398537, 0.012797143310308456, 0.2132674902677536], [0.3126511573791504, 0.013460461981594563, 0.014526115730404854, 0.020325785502791405, 0.005681121721863747, 0.022071555256843567, 0.010904147289693356, 0.05966683477163315, 0.05669712275266647, 0.04932266101241112, 0.02883564680814743, 0.026826994493603706, 0.030788468196988106, 0.03354378789663315, 0.03812219202518463, 0.11195720732212067, 0.16461871564388275], [0.34673619270324707, 0.03479833900928497, 0.015622708946466446, 0.01585078053176403, 0.014937733300030231, 0.02222646400332451, 0.011489885859191418, 0.07666979730129242, 0.09202596545219421, 0.03509227931499481, 0.016312679275870323, 0.03991025313735008, 0.017345959320664406, 0.02898719720542431, 0.02318376488983631, 0.01810690388083458, 0.19070300459861755], [0.265542209148407, 0.01587287336587906, 0.04491280019283295, 0.02040855772793293, 0.005464802961796522, 0.02757847122848034, 0.00884027499705553, 0.04960956797003746, 0.11078210920095444, 0.04792089760303497, 0.01392710953950882, 0.0453949049115181, 0.04636179283261299, 0.004614024423062801, 0.014951920136809349, 0.03140776604413986, 0.24640989303588867], [0.20571383833885193, 0.007481779437512159, 0.025770504027605057, 0.005372941493988037, 0.002211174229159951, 0.005438560154289007, 0.0038994650822132826, 0.021414373070001602, 0.15559138357639313, 0.025036422535777092, 0.008694164454936981, 0.04175138100981712, 0.030951853841543198, 0.008862405084073544, 0.002793996362015605, 0.014308354817330837, 0.4347074031829834], [0.4156606197357178, 0.02930484153330326, 0.026763107627630234, 0.013759997673332691, 0.005073423497378826, 0.013990295119583607, 0.004897473379969597, 0.07260565459728241, 0.04072757810354233, 0.08586188405752182, 0.029238102957606316, 0.03297354653477669, 0.014953672885894775, 0.03236499801278114, 0.01676643267273903, 0.028713183477520943, 0.13634516298770905], [0.1410287767648697, 0.02858312800526619, 0.04393218085169792, 0.014255604706704617, 0.010514345951378345, 0.03033391572535038, 0.009186592884361744, 0.045470479875802994, 0.03081608936190605, 0.0738605409860611, 0.07141443341970444, 0.09754382073879242, 0.07313172519207001, 0.05476999282836914, 0.09293323010206223, 0.05512390658259392, 0.12710124254226685]], [[0.6305399537086487, 0.013836522586643696, 0.0045390864834189415, 0.032936010509729385, 0.007649693172425032, 0.0670883059501648, 0.03395257517695427, 0.1258867084980011, 0.02737734094262123, 0.0010132133029401302, 0.0018573992419987917, 0.0021541041787713766, 0.0021136924624443054, 0.007822198793292046, 0.0014996201498433948, 0.008735890500247478, 0.030997510999441147], [3.2544471650908235e-07, 8.826628800306935e-06, 0.9999598264694214, 9.92667719401652e-06, 2.072483221127186e-05, 8.55941928445958e-10, 2.8486098896385315e-11, 3.9725792100320234e-11, 9.391175836981347e-08, 4.833690336880636e-09, 8.114652416679746e-08, 3.9294722142813043e-08, 7.899159548685475e-09, 3.377479629307345e-09, 5.181800301345962e-12, 4.137807457782472e-11, 1.1337122352017559e-08], [2.529266112105688e-06, 1.9670103768021363e-08, 8.621441338618752e-08, 0.999936580657959, 6.0605616454267874e-05, 5.344023890074823e-08, 4.222052937298548e-13, 4.923435791004405e-12, 2.970525908585486e-11, 1.2886797376009552e-14, 7.766647741602739e-11, 2.4854626801129598e-08, 1.0230869484928462e-08, 5.4494329049248336e-09, 5.6081311469724504e-12, 1.7548589534635561e-12, 8.678625107449989e-08], [6.528964036078833e-08, 8.423086880759989e-12, 1.1022739698773876e-07, 1.9075298496318283e-06, 0.9999896287918091, 8.229199920606334e-06, 7.930240286668777e-08, 2.148528577272657e-11, 5.028918947935779e-11, 8.539821432791466e-19, 2.2222681865264465e-14, 1.9242945778485954e-11, 2.643016472347881e-08, 4.6661735808584126e-08, 3.351308217481447e-13, 4.0474795823947085e-13, 4.61706922694205e-10], [1.5617771964571148e-08, 6.323242575162133e-14, 3.3915491942648757e-13, 8.867329626127685e-08, 2.841474997694604e-05, 0.9999475479125977, 2.3323991626966745e-05, 3.7015877296653343e-07, 2.314658339129527e-13, 2.1867818424894936e-20, 2.5121741775112543e-20, 2.0662504774662457e-15, 6.958709303228616e-11, 1.9743777102121385e-07, 7.65698615623478e-12, 5.523978559188007e-14, 3.5566189750257937e-13], [1.6909840194756498e-09, 2.017942917934912e-15, 2.488679191382532e-14, 1.3938886835398751e-14, 2.899916751175624e-09, 6.724070544805727e-08, 0.9999951124191284, 4.743439149024198e-06, 3.368182532881292e-08, 2.253982350882471e-20, 3.780881693350748e-18, 8.838211587627427e-21, 7.180966391111851e-16, 1.1499171061158612e-14, 8.49888031045215e-13, 1.0084179314067548e-13, 1.2828998930888846e-12], [8.437435212726996e-07, 8.693154160931138e-13, 1.5337625931350092e-17, 1.3982279486253642e-14, 4.0529874310748885e-15, 2.1671358751973457e-07, 2.492410544618906e-07, 0.9999982118606567, 4.201515366730746e-07, 6.335293990529078e-15, 1.1928601007625873e-18, 6.8868317765386e-19, 5.350111557764377e-17, 9.068647796681845e-14, 3.39397319927201e-13, 8.036672022315727e-11, 1.1925148368785443e-10], [5.5076153415711815e-08, 2.177206326337e-08, 9.0482942319281e-12, 3.8809450444987625e-14, 1.2180908408668256e-13, 4.118511087725096e-12, 8.705407950060362e-09, 3.216765253455378e-05, 0.9999666213989258, 1.0836401997948997e-06, 8.793723083044824e-09, 2.01036849521068e-14, 8.753855116911541e-14, 4.725474839987337e-15, 2.1649178283400516e-10, 3.1397637267893685e-10, 1.7409753638730763e-07], [0.5838304758071899, 8.245188837463502e-06, 5.752878173836962e-09, 4.666404151976167e-07, 1.2834948381890143e-11, 1.9467684353458026e-07, 6.317766865215901e-10, 0.3820224106311798, 0.03408528119325638, 3.852992449537851e-05, 5.320953277987428e-07, 3.422514538442556e-08, 1.5867980540651416e-11, 2.715362101834984e-10, 7.599941726291193e-13, 4.6943437581603575e-08, 1.3796115126751829e-05], [5.7256761831769865e-11, 1.8177569172106445e-10, 2.320407865852303e-08, 1.9377555116051326e-13, 7.127991637689499e-14, 1.1056474761007952e-19, 3.0347051741929764e-16, 1.8008803490473938e-15, 2.052946079800222e-08, 1.1948851863508025e-07, 0.9999997615814209, 6.417320719265263e-08, 3.2937383931397335e-09, 1.0746659579279603e-15, 2.168013227507614e-15, 1.2004500329578687e-16, 7.927677264651933e-11], [5.323220086950187e-09, 6.389700990538927e-10, 1.1875632921487522e-08, 6.567087496023305e-08, 7.4326997464777e-13, 1.0223632107998065e-13, 1.396551258652239e-18, 4.96227841803587e-13, 5.323364579007395e-12, 1.3880400729249232e-05, 1.3954622772871517e-05, 0.9999696016311646, 1.5996496358638979e-06, 8.27448502604966e-07, 8.824906781626073e-15, 9.99509177680713e-14, 3.980321714586177e-12], [1.0771421976585316e-08, 2.2003044189162352e-13, 4.632805944426721e-11, 3.28119337256183e-11, 1.0404080263981541e-08, 1.0850452751998835e-13, 2.6929064159104217e-15, 1.3330198795106444e-14, 3.765587668069781e-12, 1.8014880951870487e-15, 1.2126700532633095e-08, 4.563944457913749e-07, 0.9999938011169434, 5.748093826696277e-06, 1.5238370565384685e-08, 5.5693774922817643e-14, 3.1981927522961584e-11], [2.493611077625246e-07, 5.299155211857531e-13, 1.1903275587421547e-10, 1.0880147893743697e-09, 2.4969566345123262e-11, 1.0324902710578954e-08, 9.77908119065285e-12, 2.6851383339021595e-09, 1.4394319341071854e-13, 8.082797499614058e-15, 8.797089711418474e-14, 8.566816518396081e-07, 2.876574217225425e-05, 0.9999667406082153, 3.191944188074558e-06, 7.299175308617123e-08, 1.6584279088904808e-11], [1.8986388568009716e-06, 4.610718404296499e-11, 8.233835835369518e-11, 6.760743007094838e-12, 2.851810787518616e-09, 3.964778783061007e-10, 5.249689394304369e-08, 7.894102260763702e-09, 4.00809740952468e-09, 7.450815735634902e-16, 1.330946854463666e-12, 1.93652090890728e-11, 4.107371933059767e-05, 2.728472463786602e-05, 0.9999278783798218, 8.492663710057968e-07, 1.0446374290040694e-06], [4.469578414045827e-07, 1.1075131263471594e-11, 1.7032422694462923e-10, 3.0387373173290655e-11, 2.393469808199128e-13, 4.0017472842379664e-12, 3.5182193963700925e-11, 6.130878205112822e-07, 5.783045708973589e-10, 4.425728175865701e-13, 3.0584430607815414e-15, 1.8709970638769446e-12, 2.0804634057181026e-12, 1.3181132771933335e-06, 9.937001595972106e-05, 0.9998906850814819, 7.522501164203277e-06], [1.853988942457363e-05, 4.939836912853934e-07, 2.486839179027811e-08, 1.2427006090831583e-08, 2.9399421563880423e-08, 2.0895420116406882e-10, 9.624123720186617e-11, 2.476693907738081e-07, 2.7553328436624724e-06, 1.415863315479271e-09, 1.935891624782471e-08, 2.0340838735588562e-10, 1.3260680331583785e-09, 2.5515767276829138e-09, 1.687538497208152e-05, 0.0003194334567524493, 0.9996415376663208], [0.9719346761703491, 5.504319777749345e-10, 1.4860255248549947e-08, 3.1344953299594636e-07, 2.6074937764519746e-08, 5.130862632540811e-07, 7.049874017894808e-10, 0.0012406272580847144, 1.2392702046781778e-06, 5.849731289642168e-12, 4.020725592746022e-12, 2.213971894704514e-09, 3.5863485792209104e-11, 9.381442822586905e-08, 4.217634574921192e-11, 7.109285797923803e-05, 0.02675137110054493]], [[0.5532012581825256, 0.056342318654060364, 0.03966352343559265, 0.03867947682738304, 0.03004496358335018, 0.01268330030143261, 0.010136581026017666, 0.07777208089828491, 0.03803224116563797, 0.03220519796013832, 0.017286520451307297, 0.020977260544896126, 0.018596161156892776, 0.005839972291141748, 0.007870838046073914, 0.004911614581942558, 0.035756729543209076], [0.5323253870010376, 0.1547735184431076, 0.06920365989208221, 0.07850660383701324, 0.027272718027234077, 0.02668316662311554, 0.011791568249464035, 0.06699660420417786, 0.0019511543214321136, 0.004935264587402344, 0.0031958685722202063, 0.010602833703160286, 0.003001566743478179, 0.0025491933338344097, 0.00433856388553977, 0.0014863472897559404, 0.00038601586129516363], [0.8686466217041016, 0.019428841769695282, 0.038878124207258224, 0.015753012150526047, 0.004335517063736916, 0.005629232153296471, 0.0017180751310661435, 0.029525702819228172, 0.0025612516328692436, 0.0016666437732055783, 0.0005319021875038743, 0.003815141972154379, 0.0020704681519418955, 0.000967944273725152, 0.003187979105859995, 0.0005086196470074356, 0.0007750251097604632], [0.5975949168205261, 0.19521313905715942, 0.053961459547281265, 0.045708246529102325, 0.011879975907504559, 0.00916756596416235, 0.006334370467811823, 0.04775369539856911, 0.007359594572335482, 0.011753327213227749, 0.002259613713249564, 0.005855126306414604, 0.001898201066069305, 0.0008690456161275506, 0.00139363924972713, 0.00034822712768800557, 0.0006498877773992717], [0.5984036326408386, 0.16447636485099792, 0.07010787725448608, 0.0465536043047905, 0.01334342174232006, 0.028260599821805954, 0.0049822828732430935, 0.035501059144735336, 0.006532648112624884, 0.011454530991613865, 0.0021471695508807898, 0.009114529006183147, 0.002691093599423766, 0.0015645851381123066, 0.003315793350338936, 0.00044704400352202356, 0.0011036875657737255], [0.45495522022247314, 0.16411268711090088, 0.19026070833206177, 0.06585612148046494, 0.012993479147553444, 0.029177438467741013, 0.004995911847800016, 0.0324215330183506, 0.006586913485080004, 0.01298792939633131, 0.004090048372745514, 0.006424514576792717, 0.004632594529539347, 0.0026550579350441694, 0.006023467984050512, 0.0009622133802622557, 0.0008641633321531117], [0.28162336349487305, 0.3457529544830322, 0.05234357714653015, 0.16156591475009918, 0.017905384302139282, 0.01776779815554619, 0.0077798920683562756, 0.05413322150707245, 0.016239142045378685, 0.01777135580778122, 0.009227383881807327, 0.009185978211462498, 0.003163370070978999, 0.0014642621390521526, 0.0018090787343680859, 0.0009410274215042591, 0.0013262118445709348], [0.07252369821071625, 0.33544278144836426, 0.0365300178527832, 0.37979522347450256, 0.042211804538965225, 0.016170253977179527, 0.013714698143303394, 0.02604314312338829, 0.023853445425629616, 0.020088205114006996, 0.014628589153289795, 0.006271610502153635, 0.0045039597898721695, 0.0015506271738559008, 0.0010628878371790051, 0.0034001225139945745, 0.002208855701610446], [0.6320256590843201, 0.08633964508771896, 0.008443334139883518, 0.07852686196565628, 0.01582266390323639, 0.00956010352820158, 0.004057909362018108, 0.07843121141195297, 0.06210179254412651, 0.006691532675176859, 0.001426843460649252, 0.00310129695571959, 0.0020541688427329063, 0.0004347480717115104, 0.0006546744261868298, 0.0006432244554162025, 0.00968436524271965], [0.23085694015026093, 0.07901652902364731, 0.0645921379327774, 0.0934542715549469, 0.04598722606897354, 0.1489679217338562, 0.04005139693617821, 0.12916989624500275, 0.02290383353829384, 0.022896751761436462, 0.011736011132597923, 0.030091075226664543, 0.03087509050965309, 0.00888113770633936, 0.024554667994379997, 0.008588316850364208, 0.007376732304692268], [0.1282517910003662, 0.11970190703868866, 0.27546557784080505, 0.09645581245422363, 0.04303727671504021, 0.0486985482275486, 0.022267837077379227, 0.05544966831803322, 0.07754463702440262, 0.05268087610602379, 0.023234298452734947, 0.011116155423223972, 0.008284005336463451, 0.0012907807249575853, 0.0025822781026363373, 0.0030365316197276115, 0.030902013182640076], [0.33594632148742676, 0.05082051455974579, 0.034456152468919754, 0.041202712804079056, 0.02625332958996296, 0.050550829619169235, 0.03423580154776573, 0.11713456362485886, 0.04542499780654907, 0.0589926615357399, 0.03870860114693642, 0.05600952357053757, 0.024603791534900665, 0.011302357539534569, 0.03366320580244064, 0.011313531547784805, 0.02938108891248703], [0.20553381741046906, 0.04091273993253708, 0.05387537181377411, 0.025915907695889473, 0.01745276339352131, 0.1117686778306961, 0.026041816920042038, 0.07533708959817886, 0.06065702438354492, 0.1711287945508957, 0.05339708924293518, 0.02752782590687275, 0.04059211164712906, 0.007898414507508278, 0.042110152542591095, 0.011627224273979664, 0.028223125264048576], [0.29132547974586487, 0.0369611531496048, 0.05475737527012825, 0.03387456014752388, 0.011047767475247383, 0.07499942183494568, 0.01242034137248993, 0.10257245600223541, 0.07453318685293198, 0.09770908206701279, 0.06522975862026215, 0.03083605132997036, 0.022121315822005272, 0.010094229131937027, 0.03254052624106407, 0.023675458505749702, 0.025301793590188026], [0.2768704295158386, 0.02269923686981201, 0.03997763991355896, 0.03999859094619751, 0.006118018180131912, 0.03502439334988594, 0.006715311668813229, 0.04550514370203018, 0.08470675349235535, 0.13390134274959564, 0.10613492131233215, 0.03660736605525017, 0.04226221516728401, 0.01067965105175972, 0.045506808906793594, 0.035594116896390915, 0.03169797360897064], [0.09087251871824265, 0.07790589332580566, 0.008259941823780537, 0.050263792276382446, 0.0015010599745437503, 0.0023647723719477654, 0.0071073430590331554, 0.0640711635351181, 0.09053955972194672, 0.2986242473125458, 0.10834836214780807, 0.060008931905031204, 0.013476907275617123, 0.005045268218964338, 0.005938520189374685, 0.08591532707214355, 0.02975630760192871], [0.4310072064399719, 0.017707297578454018, 0.0019878328312188387, 0.007371167652308941, 0.0017849261639639735, 0.0016633382765576243, 0.0014728197129443288, 0.08371250331401825, 0.11660407483577728, 0.04978698492050171, 0.010989846661686897, 0.02566334418952465, 0.018260207027196884, 0.0032570993062108755, 0.005942781921476126, 0.008940869010984898, 0.21384775638580322]], [[0.4138449430465698, 0.015741320326924324, 0.03365154564380646, 0.022843606770038605, 0.015682043507695198, 0.010899519547820091, 0.0066413069143891335, 0.19493958353996277, 0.09664005041122437, 0.006038829684257507, 0.014062641188502312, 0.005369545891880989, 0.007208073511719704, 0.014250769279897213, 0.013415188528597355, 0.016677482053637505, 0.11209353059530258], [0.38431495428085327, 0.053014714270830154, 0.0372779555618763, 0.012496811337769032, 0.005788793321698904, 0.0037077544257044792, 0.0134745417162776, 0.07773943990468979, 0.1278482973575592, 0.009027216583490372, 0.0709308311343193, 0.01932387799024582, 0.0035592385102063417, 0.012192214839160442, 0.02046065591275692, 0.006793126463890076, 0.14204955101013184], [0.34350141882896423, 0.13274376094341278, 0.002483364660292864, 0.014857056550681591, 0.000526853313203901, 0.0014163340674713254, 0.002856469713151455, 0.020499447360634804, 0.2057843953371048, 0.005792947486042976, 0.03025529906153679, 0.012564677745103836, 0.0027609115932136774, 0.009033207781612873, 0.03158942982554436, 0.0019602493848651648, 0.18137414753437042], [0.42395320534706116, 0.02319582924246788, 0.01924785226583481, 0.0210964847356081, 0.005129100289195776, 0.00829885434359312, 0.008690069429576397, 0.12591443955898285, 0.1475519984960556, 0.003959733992815018, 0.02188599668443203, 0.0051724594086408615, 0.0031703878194093704, 0.01515312772244215, 0.010491645894944668, 0.0176838431507349, 0.1394050270318985], [0.38901641964912415, 0.02602742798626423, 0.008820665068924427, 0.006004012189805508, 0.0006900631124153733, 0.004542734939604998, 0.008454530499875546, 0.14808832108974457, 0.12141386419534683, 0.01639496348798275, 0.0512174554169178, 0.013398749753832817, 0.0035529788583517075, 0.00910888146609068, 0.0059879012405872345, 0.016754763200879097, 0.17052622139453888], [0.2766445279121399, 0.020056121051311493, 0.006883652415126562, 0.015231121331453323, 0.006841578520834446, 0.005508384667336941, 0.007430134806782007, 0.13110877573490143, 0.17385096848011017, 0.0381644070148468, 0.012454668059945107, 0.023148326203227043, 0.0053474814631044865, 0.006028864532709122, 0.006741642020642757, 0.02624371461570263, 0.238315612077713], [0.4422587454319, 0.01684163697063923, 0.023267410695552826, 0.016402849927544594, 0.009863986633718014, 0.02482590824365616, 0.004770989995449781, 0.09477363526821136, 0.13843879103660583, 0.01664751023054123, 0.011707759462296963, 0.005985583644360304, 0.008532466366887093, 0.013245580717921257, 0.0024772812612354755, 0.0345623753964901, 0.1353975534439087], [0.30784881114959717, 0.026232510805130005, 0.02758960612118244, 0.023647038266062737, 0.023645328357815742, 0.03204881772398949, 0.010660781525075436, 0.1672738492488861, 0.11527412384748459, 0.03180953115224838, 0.02256588079035282, 0.018395451828837395, 0.010827098973095417, 0.019151100888848305, 0.010898242704570293, 0.03597255423665047, 0.11615926027297974], [0.26737070083618164, 0.034848008304834366, 0.049771130084991455, 0.020302241668105125, 0.02331160381436348, 0.02999437041580677, 0.017250830307602882, 0.13247382640838623, 0.10412835329771042, 0.02380506694316864, 0.03607712313532829, 0.028966717422008514, 0.012602908536791801, 0.0405997633934021, 0.03566276282072067, 0.023394886404275894, 0.11943970620632172], [0.5043638348579407, 0.016932670027017593, 0.008245646022260189, 0.006345541216433048, 0.0009906567865982652, 0.03009425848722458, 0.0033600369933992624, 0.12765026092529297, 0.10511456429958344, 0.00573089299723506, 0.007566092070192099, 0.005431079771369696, 0.0039748540148139, 0.009804329834878445, 0.002913386793807149, 0.025998499244451523, 0.13548336923122406], [0.35094520449638367, 0.07002949714660645, 0.12524306774139404, 0.012268456630408764, 0.001154200523160398, 0.0026767258532345295, 0.00676990021020174, 0.04833091422915459, 0.13776424527168274, 0.006380574777722359, 0.020968908444046974, 0.01368224062025547, 0.0021789059974253178, 0.008229621686041355, 0.019149748608469963, 0.00503916060552001, 0.1691886931657791], [0.4991609752178192, 0.021227175369858742, 0.00974359828978777, 0.010730346664786339, 0.0035101138055324554, 0.009130558930337429, 0.0062627410516142845, 0.10980536043643951, 0.08349296450614929, 0.010036390274763107, 0.013500472530722618, 0.013146622106432915, 0.00506865419447422, 0.015606503002345562, 0.01366911455988884, 0.03025282733142376, 0.14565566182136536], [0.39485251903533936, 0.023475006222724915, 0.01934136636555195, 0.008097521960735321, 0.007284289691597223, 0.017216060310602188, 0.00793531071394682, 0.10830052942037582, 0.10288619995117188, 0.025159185752272606, 0.027027929201722145, 0.027973327785730362, 0.0016620683018118143, 0.009480061940848827, 0.0039490219205617905, 0.03490174189209938, 0.18045787513256073], [0.427371084690094, 0.03612156957387924, 0.04242260754108429, 0.010294396430253983, 0.0015864993911236525, 0.003012707456946373, 0.0020101952832192183, 0.133174329996109, 0.1150854080915451, 0.004156491719186306, 0.004465759266167879, 0.012106796726584435, 0.004197671543806791, 0.0010049620177596807, 0.004214158747345209, 0.009791282936930656, 0.18898402154445648], [0.47293442487716675, 0.03314460813999176, 0.11235389858484268, 0.006988054141402245, 0.0012328291777521372, 0.00203191046603024, 0.001444853376597166, 0.057328660041093826, 0.0915064886212349, 0.0036947508342564106, 0.028842154890298843, 0.010896248742938042, 0.0035786530934274197, 0.005213903728872538, 0.003508517052978277, 0.006610180716961622, 0.15868982672691345], [0.5206713676452637, 0.010389503091573715, 0.00975318904966116, 0.007274043280631304, 0.0034937274176627398, 0.008816676214337349, 0.0031152693554759026, 0.13774576783180237, 0.08495666086673737, 0.008318630047142506, 0.0063333227299153805, 0.005276515148580074, 0.004300032742321491, 0.01400899887084961, 0.005900728050619364, 0.03782959282398224, 0.13181596994400024], [0.21432632207870483, 0.02852623723447323, 0.04401789605617523, 0.012210087850689888, 0.021547358483076096, 0.033439669758081436, 0.0158374086022377, 0.11682895570993423, 0.0819961205124855, 0.04150250554084778, 0.03269922733306885, 0.04594351723790169, 0.01914278231561184, 0.06390050798654556, 0.05484634265303612, 0.03425178676843643, 0.138983353972435]], [[0.286782443523407, 0.11950644850730896, 0.07631204277276993, 0.04265960678458214, 0.03633423149585724, 0.10302546620368958, 0.024834631010890007, 0.05489618703722954, 0.23462238907814026, 0.0021968164946883917, 0.002057985169813037, 0.0007947196718305349, 0.002507756231352687, 0.00151840690523386, 0.0021910627838224173, 0.0011357461335137486, 0.008624030277132988], [0.03478582948446274, 0.03113018162548542, 0.017365338280797005, 0.15052133798599243, 0.08781075477600098, 0.14323875308036804, 0.130378857254982, 0.10430116951465607, 0.2626897394657135, 0.007864793762564659, 0.006434972397983074, 0.0027722869999706745, 0.003984807059168816, 0.002128488151356578, 0.0019014875870198011, 0.0064744604751467705, 0.006216733250766993], [0.3390771150588989, 0.08934470266103745, 0.024043571203947067, 0.016423728317022324, 0.04631766676902771, 0.1507132202386856, 0.04646822065114975, 0.08614522218704224, 0.15007032454013824, 0.012368574738502502, 0.0034732106141746044, 0.00234759203158319, 0.006303110159933567, 0.0037920058239251375, 0.004264255985617638, 0.0030035923700779676, 0.015843791887164116], [0.052080072462558746, 0.05866844579577446, 0.010263591073453426, 0.028599200770258904, 0.01862446218729019, 0.06299461424350739, 0.12307022511959076, 0.16749276220798492, 0.4332520067691803, 0.019116826355457306, 0.008781783282756805, 0.0007888870895840228, 0.002466844627633691, 0.002778966212645173, 0.0029416296165436506, 0.004267221782356501, 0.0038125175051391125], [0.22408659756183624, 0.08363652229309082, 0.014496050775051117, 0.010944507084786892, 0.013982304371893406, 0.08459407091140747, 0.05463037267327309, 0.15326762199401855, 0.29476168751716614, 0.03884619101881981, 0.007844607345759869, 0.001682354835793376, 0.0062625776045024395, 0.0018393936334177852, 0.003886400256305933, 0.0013151189778000116, 0.0039236280135810375], [0.19019478559494019, 0.15248160064220428, 0.056798193603754044, 0.02988666109740734, 0.05498085170984268, 0.11691134423017502, 0.04486076161265373, 0.10599389672279358, 0.12796634435653687, 0.0610201470553875, 0.017916876822710037, 0.008008237928152084, 0.01611694134771824, 0.004397506359964609, 0.007689605467021465, 0.002148750936612487, 0.0026276055723428726], [0.25588855147361755, 0.08099603652954102, 0.021259302273392677, 0.03044278733432293, 0.024179581552743912, 0.03296676650643349, 0.021636776626110077, 0.10443328320980072, 0.33520951867103577, 0.033265646547079086, 0.021807251498103142, 0.005573037546128035, 0.016317183151841164, 0.002520807785913348, 0.004758956376463175, 0.003464784473180771, 0.005279782693833113], [0.37115785479545593, 0.047299884259700775, 0.03770899400115013, 0.06030043587088585, 0.01998249441385269, 0.024084556847810745, 0.014646393246948719, 0.07542679458856583, 0.2001403570175171, 0.020905308425426483, 0.024684112519025803, 0.015228666365146637, 0.02734709344804287, 0.008885354734957218, 0.008785221725702286, 0.01299190055578947, 0.0304245725274086], [0.7695024609565735, 0.07120281457901001, 0.015925290063023567, 0.022137219086289406, 0.014115013182163239, 0.023239165544509888, 0.004949232563376427, 0.026149947196245193, 0.047435663640499115, 0.0007462466601282358, 0.0007108491845428944, 0.0004665984015446156, 0.0011221858439967036, 0.0004872485587839037, 0.0009618697222322226, 0.00016233728092629462, 0.0006858899141661823], [0.040177635848522186, 0.011777853593230247, 0.00882011465728283, 0.00946364738047123, 0.0060194083489477634, 0.010014758445322514, 0.004903868306428194, 0.018616097047924995, 0.007628618273884058, 0.10744603723287582, 0.039328381419181824, 0.1349569708108902, 0.16136221587657928, 0.17022734880447388, 0.13179045915603638, 0.07792867720127106, 0.0595378540456295], [0.01629234105348587, 0.003257130505517125, 0.0015530172968283296, 0.0035128684248775244, 0.0011220216983929276, 0.0021341063547879457, 0.00177157879807055, 0.007710831239819527, 0.01232178881764412, 0.06596345454454422, 0.03152703121304512, 0.040847454220056534, 0.15142947435379028, 0.07753805816173553, 0.0822928249835968, 0.3578556478023529, 0.14287038147449493], [0.013855875469744205, 0.0011795697500929236, 0.00026888184947893023, 0.0020687340293079615, 0.0010019063483923674, 0.00087642582366243, 0.0027233404107391834, 0.011062778532505035, 0.01919359713792801, 0.024951240047812462, 0.015221133828163147, 0.020050378516316414, 0.090317003428936, 0.02660798653960228, 0.06543386727571487, 0.3014267683029175, 0.4037605822086334], [0.054893068969249725, 0.0035071270540356636, 0.0021123187616467476, 0.0021527493372559547, 0.004635155200958252, 0.0074526164680719376, 0.006016239989548922, 0.021458428353071213, 0.02080330066382885, 0.09324057400226593, 0.01634977012872696, 0.028369002044200897, 0.08609074354171753, 0.027643563225865364, 0.1378137469291687, 0.15092359483242035, 0.3365379869937897], [0.1645633727312088, 0.008548017591238022, 0.006314827129244804, 0.0009620448108762503, 0.007869841530919075, 0.016559472307562828, 0.005200117826461792, 0.028820451349020004, 0.014559376053512096, 0.04273388907313347, 0.013541302643716335, 0.02769191935658455, 0.08493060618638992, 0.04111301898956299, 0.19647634029388428, 0.03953726217150688, 0.30057811737060547], [0.0799129530787468, 0.003807197557762265, 0.0013913738075643778, 0.000612870731856674, 0.0028853504918515682, 0.004616248421370983, 0.0018951261881738901, 0.01443276647478342, 0.01165806595236063, 0.03810675069689751, 0.010126357898116112, 0.053033169358968735, 0.1087128072977066, 0.02350315824151039, 0.06834524869918823, 0.036916334182024, 0.5400442481040955], [0.39095842838287354, 0.009962277486920357, 0.005361276213079691, 0.0020259995944797993, 0.004664258565753698, 0.007697983644902706, 0.005258324556052685, 0.060813479125499725, 0.019274108111858368, 0.044102929532527924, 0.013267609290778637, 0.036611706018447876, 0.06056676059961319, 0.047042496502399445, 0.06756952404975891, 0.010702383704483509, 0.2141205221414566], [0.7488322257995605, 0.019327891990542412, 0.007191813085228205, 0.004411950241774321, 0.0054576643742620945, 0.010101336985826492, 0.0029121648985892534, 0.03804980590939522, 0.015733148902654648, 0.012820535339415073, 0.009147114120423794, 0.010628257878124714, 0.024415597319602966, 0.01105279941111803, 0.01260040607303381, 0.007642004173249006, 0.05967523902654648]], [[0.4112699329853058, 0.006541939917951822, 0.02332466095685959, 0.02276770770549774, 0.02225331962108612, 0.03796745464205742, 0.004989867564290762, 0.009168654680252075, 0.00970390159636736, 0.03240775316953659, 0.04215411841869354, 0.0317578949034214, 0.09039811044931412, 0.02919706143438816, 0.07500243186950684, 0.06916675716638565, 0.08192838728427887], [0.22945763170719147, 0.020674921572208405, 0.0797308161854744, 0.10179751366376877, 0.11564330756664276, 0.29135334491729736, 0.016323914751410484, 0.028985261917114258, 0.05532391369342804, 0.007606500294059515, 0.004138293210417032, 0.0018948618089780211, 0.01900690607726574, 0.002498459303751588, 0.005057576112449169, 0.0066720847971737385, 0.013834607787430286], [0.7307668328285217, 0.027968106791377068, 0.0050850496627390385, 0.01716719940304756, 0.015816666185855865, 0.011446071788668633, 0.004138565622270107, 0.02189067378640175, 0.08811809122562408, 0.0034374678507447243, 0.001880038995295763, 0.003780041355639696, 0.005703059025108814, 0.006435824558138847, 0.0048405989073216915, 0.005694309249520302, 0.04583141952753067], [0.09374886006116867, 0.011991279199719429, 0.07913437485694885, 0.01592109352350235, 0.1669420301914215, 0.3696483075618744, 0.05733688920736313, 0.012812071479856968, 0.024349208921194077, 0.027165934443473816, 0.0037199168000370264, 0.0040178969502449036, 0.08545336872339249, 0.006317549850791693, 0.03306496515870094, 0.002056002151221037, 0.006320246960967779], [0.06328000128269196, 0.02153896540403366, 0.0394800640642643, 0.09025799483060837, 0.052132051438093185, 0.3809486925601959, 0.15937446057796478, 0.017447615042328835, 0.0526924803853035, 0.009289161302149296, 0.0017756182933226228, 0.00933381263166666, 0.03767690435051918, 0.006524651311337948, 0.037689078599214554, 0.011168084107339382, 0.009390389546751976], [0.07619411498308182, 0.04668833687901497, 0.06802711635828018, 0.13332922756671906, 0.13175615668296814, 0.07951398938894272, 0.10803163051605225, 0.01928500086069107, 0.1472310870885849, 0.023561041802167892, 0.002295850310474634, 0.006923544220626354, 0.049914032220840454, 0.010081931948661804, 0.062146540731191635, 0.012490381486713886, 0.02252999134361744], [0.016898347064852715, 0.015739023685455322, 0.017490092664957047, 0.1362493485212326, 0.25357428193092346, 0.41659215092658997, 0.012602162547409534, 0.007041164208203554, 0.025470763444900513, 0.006369700189679861, 0.002861456712707877, 0.012836974114179611, 0.03677951917052269, 0.020078064873814583, 0.012934664264321327, 0.0032085878774523735, 0.0032736302819103003], [0.5225013494491577, 0.07134781777858734, 0.005588449537754059, 0.059401046484708786, 0.040952008217573166, 0.015175732783973217, 0.0037966424133628607, 0.09752402454614639, 0.07115839421749115, 0.0077368044294416904, 0.03836851567029953, 0.010419495403766632, 0.009051177650690079, 0.011220301501452923, 0.001824891776777804, 0.009759859181940556, 0.024173462763428688], [0.7201520800590515, 0.043823327869176865, 0.003056393237784505, 0.013115474954247475, 0.0053733098320662975, 0.008851438760757446, 0.0026200308930128813, 0.09460372477769852, 0.03894883021712303, 0.004689762368798256, 0.014173009432852268, 0.00405072420835495, 0.0035712451208382845, 0.004917531739920378, 0.001998207764700055, 0.0056523410603404045, 0.030402589589357376], [0.03382587060332298, 0.005434365943074226, 0.007368527818471193, 0.023056980222463608, 0.07135003805160522, 0.055074676871299744, 0.028218988329172134, 0.024087920784950256, 0.024329189211130142, 0.020504456013441086, 0.051856253296136856, 0.02893981710076332, 0.3946288824081421, 0.09154099971055984, 0.06204678490757942, 0.038077302277088165, 0.039658959954977036], [0.038030121475458145, 0.0018306365236639977, 0.013132622465491295, 0.00721894484013319, 0.030249886214733124, 0.030445067211985588, 0.012572926469147205, 0.00420461967587471, 0.011860285885632038, 0.0769314393401146, 0.019943565130233765, 0.02215023897588253, 0.5025283694267273, 0.046040091663599014, 0.13195335865020752, 0.024824930354952812, 0.026082901284098625], [0.005298695061355829, 0.0002978661796078086, 0.0008504229481332004, 0.001166683272458613, 0.005232213530689478, 0.006284206174314022, 0.010548950172960758, 0.0008126021130010486, 0.0016021537594497204, 0.004913864657282829, 0.00233283918350935, 0.0013138775248080492, 0.7574101090431213, 0.07086969912052155, 0.11138981580734253, 0.0130922207608819, 0.006583706475794315], [0.019848834723234177, 0.002248481148853898, 0.0037914998829364777, 0.009388803504407406, 0.0028502782806754112, 0.02107577584683895, 0.004424565471708775, 0.0009037400595843792, 0.015565553680062294, 0.008854358457028866, 0.009282254613935947, 0.03747599571943283, 0.14675316214561462, 0.13725405931472778, 0.46554484963417053, 0.07357750833034515, 0.04116031900048256], [0.04542720690369606, 0.0028814810793846846, 0.00680811470374465, 0.0019958368502557278, 0.00218284223228693, 0.001577401184476912, 0.01439460925757885, 0.0017413819441571832, 0.016353832557797432, 0.01609358936548233, 0.01310602854937315, 0.02185835689306259, 0.10493607819080353, 0.025696326047182083, 0.6175658106803894, 0.028523258864879608, 0.07885778695344925], [0.18546532094478607, 0.002832588739693165, 0.0023552849888801575, 0.0015924728941172361, 0.0019927071407437325, 0.007191985845565796, 0.0030983237084001303, 0.0014784990344196558, 0.025159573182463646, 0.008007493801414967, 0.005296161863952875, 0.009536121971905231, 0.16916759312152863, 0.2546636462211609, 0.0654492974281311, 0.02887144312262535, 0.22784152626991272], [0.05343467369675636, 0.0038337851874530315, 0.008542964234948158, 0.0019821568857878447, 0.017770718783140182, 0.01338198035955429, 0.00743396021425724, 0.006312246900051832, 0.0167104322463274, 0.046326179057359695, 0.09114386141300201, 0.03134696185588837, 0.37953370809555054, 0.08949685096740723, 0.10434731841087341, 0.008043899200856686, 0.12035825848579407], [0.6858828663825989, 0.005098638124763966, 0.0004517739580478519, 0.0009559339960105717, 0.00030007469467818737, 0.0008140559657476842, 0.00018304097466170788, 0.03445791080594063, 0.009159702807664871, 0.003716467646881938, 0.016210664063692093, 0.005639155860990286, 0.0035289255902171135, 0.008525787852704525, 0.0034673099871724844, 0.01348100509494543, 0.2081267386674881]], [[0.7454310059547424, 0.023761693388223648, 0.003255219431594014, 0.022921547293663025, 0.01218433491885662, 0.0024156144354492426, 0.013529102317988873, 0.026090769097208977, 0.06894727796316147, 0.018017960712313652, 0.0027146367356181145, 0.00639007706195116, 0.0030325057450681925, 0.0018426241585984826, 0.003650534898042679, 0.015466910786926746, 0.030348103493452072], [0.7644087076187134, 0.10793653875589371, 0.0046956646256148815, 0.006380660459399223, 0.0054332055151462555, 0.00211281212978065, 0.0014909531455487013, 0.012437206692993641, 0.06100831925868988, 0.007382468320429325, 0.0016343558672815561, 0.0013618385419249535, 0.0012899088906124234, 0.0003206930705346167, 0.0010767277562990785, 0.0010599680244922638, 0.019969919696450233], [0.6263486742973328, 0.04645629972219467, 0.23294302821159363, 0.005369207821786404, 0.0010211096378043294, 0.0009457694832235575, 0.0003134069265797734, 0.007978001609444618, 0.04452388733625412, 0.0031423652544617653, 0.0018346847500652075, 0.0006665418623015285, 0.0002872981713153422, 0.00023165806487668306, 0.0016010282561182976, 0.001039514783769846, 0.025297556072473526], [0.6000315546989441, 0.03173704817891121, 0.0017599010607227683, 0.20251692831516266, 0.0069443294778466225, 0.0005679914029315114, 0.003230038098990917, 0.011964483186602592, 0.06734354048967361, 0.016813602298498154, 0.01274928916245699, 0.0047269416972994804, 0.0009576157317496836, 0.00033305323449894786, 0.0006615793099626899, 0.014093714766204357, 0.02356833405792713], [0.6242268085479736, 0.019113929942250252, 0.0005189512157812715, 0.007207277696579695, 0.2535454034805298, 0.003649613820016384, 0.010663324035704136, 0.0037125758826732635, 0.03419102728366852, 0.009160098619759083, 0.0008684711065143347, 0.003681628266349435, 0.004689417779445648, 0.0008745684172026813, 0.0012711231829598546, 0.0012352277990430593, 0.021390443667769432], [0.611883282661438, 0.023905223235487938, 0.005256030708551407, 0.0039953733794391155, 0.021683868020772934, 0.20945993065834045, 0.005543800536543131, 0.011983480304479599, 0.04765421897172928, 0.024897560477256775, 0.0017804787494242191, 0.001103617250919342, 0.0053433929570019245, 0.002078966936096549, 0.0012750972528010607, 0.0021715799812227488, 0.019984012469649315], [0.3935457170009613, 0.008486141450703144, 0.0004028867988381535, 0.0174289271235466, 0.021901069208979607, 0.0023701621685177088, 0.4826660752296448, 0.004353047348558903, 0.02093913033604622, 0.010180255398154259, 0.0016431808471679688, 0.010159194469451904, 0.006031869910657406, 0.0005958513356745243, 0.0017177504487335682, 0.004697853699326515, 0.0128809604793787], [0.6028467416763306, 0.03769001364707947, 0.028475457802414894, 0.03120230883359909, 0.018437113612890244, 0.013266599737107754, 0.01148221269249916, 0.06290264427661896, 0.0769723653793335, 0.04021906480193138, 0.010503670200705528, 0.003980573732405901, 0.006058174651116133, 0.0021799185778945684, 0.006940903607755899, 0.016928203403949738, 0.029913997277617455], [0.7800852656364441, 0.043357085436582565, 0.0025201698299497366, 0.010703466832637787, 0.0059421188198029995, 0.0017845203401520848, 0.0047697341069579124, 0.033111076802015305, 0.02892328053712845, 0.026653597131371498, 0.002037797588855028, 0.003502677194774151, 0.000982927274890244, 0.0011341494973748922, 0.00118966493755579, 0.0248012263327837, 0.028501315042376518], [0.42324426770210266, 0.011288616806268692, 0.0005467518931254745, 0.012041036039590836, 0.0031406290363520384, 0.0019263856811448932, 0.0028645633719861507, 0.0030061996076256037, 0.0512206144630909, 0.42651844024658203, 0.0034862100146710873, 0.002433923538774252, 0.0016345763579010963, 0.0006170259439386427, 0.0008696880540810525, 0.005298980511724949, 0.04986213147640228], [0.708649218082428, 0.01720842905342579, 0.003170452546328306, 0.02616560459136963, 0.0013683292781934142, 0.0005194649565964937, 0.001235231407918036, 0.005676588974893093, 0.08711107075214386, 0.017274361103773117, 0.042885322123765945, 0.004727077204734087, 0.0017113384092226624, 0.0012923299800604582, 0.001020115683786571, 0.011617828160524368, 0.06836728751659393], [0.506205677986145, 0.012991094961762428, 0.0009140609763562679, 0.017971117049455643, 0.021719137206673622, 0.0009883606107905507, 0.02845015563070774, 0.002093513961881399, 0.07095304131507874, 0.01536199264228344, 0.009218545630574226, 0.23167045414447784, 0.005852721631526947, 0.0015546750510111451, 0.0017423976678401232, 0.0047386703081429005, 0.06757446378469467], [0.40194886922836304, 0.013738472014665604, 0.002673707203939557, 0.009845610707998276, 0.016884448006749153, 0.006612048018723726, 0.018642190843820572, 0.0026986070442944765, 0.053096529096364975, 0.020563539117574692, 0.006348449736833572, 0.008549364283680916, 0.37792837619781494, 0.0022796918638050556, 0.004963651765137911, 0.004051701631397009, 0.049174707382917404], [0.5849642753601074, 0.003050753381103277, 0.0007497180486097932, 0.0035835898015648127, 0.002282927744090557, 0.005114688538014889, 0.0020319900941103697, 0.003994002938270569, 0.04248917102813721, 0.004139237105846405, 0.004156331066042185, 0.0024963708128780127, 0.004159219563007355, 0.2444210946559906, 0.0026620111893862486, 0.012758541852235794, 0.07694604992866516], [0.5436418056488037, 0.00809877086430788, 0.004244583658874035, 0.0030467489268630743, 0.0022126876283437014, 0.0009749404853209853, 0.005800488404929638, 0.006387328263372183, 0.06143166869878769, 0.009172621183097363, 0.0028124956879764795, 0.004438498988747597, 0.0037392915692180395, 0.0033911976497620344, 0.2738668620586395, 0.011096665635704994, 0.055643387138843536], [0.4284780025482178, 0.009500157088041306, 0.0005963937728665769, 0.05988456681370735, 0.0026090119499713182, 0.0007354257395491004, 0.005806018132716417, 0.014910107478499413, 0.04579974338412285, 0.03587152436375618, 0.006663530133664608, 0.004383022431284189, 0.0011924285208806396, 0.00426810747012496, 0.00205721496604383, 0.33695927262306213, 0.0402853861451149], [0.7174838781356812, 0.0321839265525341, 0.002324790693819523, 0.009250638075172901, 0.004423764534294605, 0.0015458747511729598, 0.0035497453063726425, 0.016795845702290535, 0.035515401512384415, 0.03925681859254837, 0.0029360095504671335, 0.005206204019486904, 0.0013880283804610372, 0.0014951186021789908, 0.0010882355272769928, 0.04603511467576027, 0.07952046394348145]]], [[[0.20538556575775146, 0.006783756893128157, 0.0063742040656507015, 0.030155163258314133, 0.0012839731061831117, 0.004238997120410204, 0.0025502729695290327, 0.030539020895957947, 0.12862206995487213, 0.05158519744873047, 0.01424491498619318, 0.002449838677421212, 0.0007737547275610268, 0.005300894379615784, 0.0035220577847212553, 0.18150652945041656, 0.32468387484550476], [0.5357323288917542, 0.06808635592460632, 0.026822850108146667, 0.05122525990009308, 0.0031411380041390657, 0.01969270035624504, 0.009553084149956703, 0.16382397711277008, 0.0852455124258995, 0.00542669091373682, 0.0006860120338387787, 0.00022843776969239116, 9.289468289352953e-05, 0.0003136755258310586, 0.0005599651485681534, 0.005443323403596878, 0.02392583154141903], [0.7164422273635864, 0.07096374034881592, 0.017240209504961967, 0.03909487649798393, 0.003829126711934805, 0.01916281320154667, 0.0075177038088440895, 0.05583331733942032, 0.014150304719805717, 0.011224712245166302, 0.004090744070708752, 0.0018387379823252559, 0.004050412680953741, 0.005808195099234581, 0.00576509814709425, 0.01397284958511591, 0.009014918468892574], [0.304108589887619, 0.20673112571239471, 0.06677430123090744, 0.049756307154893875, 0.008345875889062881, 0.022099127992987633, 0.017671670764684677, 0.12516650557518005, 0.11123248934745789, 0.019249949604272842, 0.005199807230383158, 0.0004899651976302266, 0.0027296992484480143, 0.0018834671936929226, 0.00445215031504631, 0.00792655535042286, 0.04618237540125847], [0.5903051495552063, 0.03608828783035278, 0.03995300456881523, 0.12305960804224014, 0.012417576275765896, 0.030747177079319954, 0.00961415097117424, 0.05638304352760315, 0.051010169088840485, 0.006114650052040815, 0.0008630385273136199, 0.0009219199419021606, 0.001853808993473649, 0.002416937379166484, 0.002234123181551695, 0.004057653248310089, 0.031959712505340576], [0.18413367867469788, 0.023990681394934654, 0.32321006059646606, 0.1411694586277008, 0.04371248185634613, 0.06313467770814896, 0.03103500045835972, 0.04628429189324379, 0.04610616713762283, 0.009255306795239449, 0.0028513886500149965, 0.0014766352251172066, 0.002761548850685358, 0.006424938794225454, 0.014643428847193718, 0.016654688864946365, 0.043155573308467865], [0.16810491681098938, 0.11710225045681, 0.17226579785346985, 0.09263493865728378, 0.02276747301220894, 0.029245691373944283, 0.015072470530867577, 0.10670068114995956, 0.15321768820285797, 0.02762390486896038, 0.006497877184301615, 0.00043262660619802773, 0.0012848024489358068, 0.0010005588410422206, 0.003142428584396839, 0.003068478312343359, 0.07983730733394623], [0.14960162341594696, 0.09268868714570999, 0.06603402644395828, 0.10647189617156982, 0.02834557555615902, 0.08273094147443771, 0.04079456627368927, 0.1163577139377594, 0.14658527076244354, 0.019199004396796227, 0.010957010090351105, 0.008268793113529682, 0.006910491269081831, 0.005952821578830481, 0.015182022005319595, 0.014812256209552288, 0.08910740911960602], [0.7728886604309082, 0.018508274108171463, 0.008784030564129353, 0.01565266214311123, 0.0026726776268333197, 0.016554074361920357, 0.005139840301126242, 0.07173344492912292, 0.03822699934244156, 0.003393480321392417, 0.0026131565682590008, 0.0015260158106684685, 0.00123747403267771, 0.0019421495962888002, 0.004238874185830355, 0.009388281963765621, 0.02550000511109829], [0.5108107328414917, 0.007227804511785507, 0.002299201674759388, 0.03300045058131218, 0.0021519185975193977, 0.021485470235347748, 0.004803324583917856, 0.0941925197839737, 0.07161345332860947, 0.04658203572034836, 0.005555460695177317, 0.0018022536532953382, 0.001148938899859786, 0.0014217772986739874, 0.0023775380104780197, 0.09815413504838943, 0.09537312388420105], [0.1152479350566864, 0.024364836513996124, 0.015423289500176907, 0.049664273858070374, 0.0035009263083338737, 0.033191319555044174, 0.023714696988463402, 0.10429858416318893, 0.1172340139746666, 0.29953938722610474, 0.012838444672524929, 0.0031419596634805202, 0.001825255574658513, 0.0013889739057049155, 0.004799085669219494, 0.10339698195457458, 0.08642999827861786], [0.09932304918766022, 0.010893166065216064, 0.011732902377843857, 0.014895597472786903, 0.00198561092838645, 0.012738666497170925, 0.004271339159458876, 0.03948477655649185, 0.05469103530049324, 0.6029919385910034, 0.06314750760793686, 0.002943486673757434, 0.01201237365603447, 0.004603798966854811, 0.004015857353806496, 0.013789675198495388, 0.046479154378175735], [0.20694038271903992, 0.004846381489187479, 0.031077606603503227, 0.01639833115041256, 0.006237424910068512, 0.022460181266069412, 0.007951758801937103, 0.028792904689908028, 0.033693451434373856, 0.37686920166015625, 0.11408039927482605, 0.04137282818555832, 0.020017584785819054, 0.02006438374519348, 0.02714480459690094, 0.014484409242868423, 0.027567988261580467], [0.41953518986701965, 0.014850947074592113, 0.05826641619205475, 0.01622067019343376, 0.0008975358214229345, 0.012132195755839348, 0.002710985252633691, 0.0375923328101635, 0.02597341313958168, 0.1961711347103119, 0.13032746315002441, 0.00784977525472641, 0.02046329714357853, 0.01249148603528738, 0.01430736854672432, 0.013182936236262321, 0.017026925459504128], [0.06252007931470871, 0.007303342223167419, 0.14199785888195038, 0.012512799352407455, 0.0017748326063156128, 0.01714741438627243, 0.0023939183447510004, 0.011096566915512085, 0.03954024612903595, 0.35226666927337646, 0.18160906434059143, 0.010979590006172657, 0.05944208428263664, 0.02467181161046028, 0.022586803883314133, 0.012922752648591995, 0.039234187453985214], [0.08404769003391266, 0.013540185987949371, 0.01109942514449358, 0.006828024052083492, 0.0010163389379158616, 0.005699891597032547, 0.002567519899457693, 0.029865993186831474, 0.11711191385984421, 0.2543063163757324, 0.10178137570619583, 0.006320924498140812, 0.04567937180399895, 0.019466541707515717, 0.04118887335062027, 0.05052950978279114, 0.20895008742809296], [0.7906316518783569, 0.009794555604457855, 0.006181848701089621, 0.006262470968067646, 0.0012316128704696894, 0.005284451879560947, 0.0013676556991413236, 0.0385441780090332, 0.0322149358689785, 0.006826807279139757, 0.005321907345205545, 0.003384564071893692, 0.0030748024582862854, 0.0062591517344117165, 0.008381938561797142, 0.027219180017709732, 0.04801825433969498]], [[0.030539169907569885, 0.02875026874244213, 0.06822026520967484, 0.023251529783010483, 0.013749457895755768, 0.01913834735751152, 0.0069595989771187305, 0.010247768834233284, 0.05387391522526741, 0.2077091932296753, 0.05816683918237686, 0.038307610899209976, 0.0837378203868866, 0.10971680283546448, 0.08714146912097931, 0.0647803470492363, 0.09570956230163574], [0.052944429218769073, 0.09264461696147919, 0.19800376892089844, 0.09800095856189728, 0.07139851152896881, 0.1356605738401413, 0.052425216883420944, 0.03596577048301697, 0.027081986889243126, 0.024452807381749153, 0.03851117193698883, 0.030895743519067764, 0.04019801691174507, 0.02991340309381485, 0.03225291520357132, 0.019992874935269356, 0.019657159224152565], [0.08105944097042084, 0.08162585645914078, 0.09906909614801407, 0.18268047273159027, 0.056270454078912735, 0.10172320902347565, 0.03685358911752701, 0.042729396373033524, 0.01830418035387993, 0.03293030336499214, 0.029222840443253517, 0.05593830719590187, 0.02558274380862713, 0.037739019840955734, 0.02928260713815689, 0.0731109157204628, 0.01587757281959057], [0.08996124565601349, 0.05384872108697891, 0.056726980954408646, 0.09951606392860413, 0.027063090354204178, 0.07598155736923218, 0.020372234284877777, 0.102356918156147, 0.13701073825359344, 0.017944281920790672, 0.010511543601751328, 0.027916213497519493, 0.028221946209669113, 0.019278112798929214, 0.01726611517369747, 0.09487924724817276, 0.12114499509334564], [0.05538564920425415, 0.034674808382987976, 0.05091593414545059, 0.04707299917936325, 0.013468349352478981, 0.031550176441669464, 0.018559744581580162, 0.30694717168807983, 0.17568787932395935, 0.02435414306819439, 0.00538075203076005, 0.010141677223145962, 0.027629045769572258, 0.005349986720830202, 0.009835605509579182, 0.046852823346853256, 0.13619326055049896], [0.0379943773150444, 0.05438225716352463, 0.06459691375494003, 0.13985489308834076, 0.06155803054571152, 0.07143308222293854, 0.025858715176582336, 0.1815710961818695, 0.04422144591808319, 0.025690626353025436, 0.015467372722923756, 0.0621224045753479, 0.03957696259021759, 0.011829550378024578, 0.02686525508761406, 0.09962642192840576, 0.0373506173491478], [0.03593188151717186, 0.0802558958530426, 0.11214897036552429, 0.14159120619297028, 0.05939282104372978, 0.12235785275697708, 0.031530119478702545, 0.13292339444160461, 0.03320692107081413, 0.02018766663968563, 0.016067024320364, 0.02131885290145874, 0.059587642550468445, 0.01853979006409645, 0.021389342844486237, 0.06646954268217087, 0.02710116095840931], [0.08188726752996445, 0.079721599817276, 0.08180434256792068, 0.1742558628320694, 0.121385857462883, 0.08700862526893616, 0.058161478489637375, 0.09384908527135849, 0.039518803358078, 0.02565612457692623, 0.0212326068431139, 0.030950915068387985, 0.022575564682483673, 0.011437599547207355, 0.010341361165046692, 0.03413999453186989, 0.026072870939970016], [0.10896807163953781, 0.025675645098090172, 0.022387707605957985, 0.016805820167064667, 0.003379481378942728, 0.007485288195312023, 0.003515147138386965, 0.36154910922050476, 0.17249315977096558, 0.009293747134506702, 0.01320483349263668, 0.019396182149648666, 0.007216122001409531, 0.012266108766198158, 0.01598326861858368, 0.030703043565154076, 0.16967728734016418], [0.11400028318166733, 0.05146404728293419, 0.033425137400627136, 0.13680297136306763, 0.021484075114130974, 0.015804370865225792, 0.008894810453057289, 0.20390522480010986, 0.09093347936868668, 0.046962905675172806, 0.012200532481074333, 0.04605535417795181, 0.015315336175262928, 0.024291306734085083, 0.006338980980217457, 0.07237901538610458, 0.09974216669797897], [0.04377024248242378, 0.08784858137369156, 0.24843871593475342, 0.08310889452695847, 0.01720166765153408, 0.07554163038730621, 0.01523678470402956, 0.013416796922683716, 0.03536954149603844, 0.038841504603624344, 0.04249999299645424, 0.026115793734788895, 0.07263584434986115, 0.07276958227157593, 0.057558510452508926, 0.0299290269613266, 0.0397169291973114], [0.06728500872850418, 0.029726272448897362, 0.031129619106650352, 0.01139065157622099, 0.006314235273748636, 0.023750007152557373, 0.008108539506793022, 0.11866075545549393, 0.19700491428375244, 0.025408895686268806, 0.02302015759050846, 0.013246193528175354, 0.037312932312488556, 0.04975418001413345, 0.05689382553100586, 0.053714487701654434, 0.24727939069271088], [0.029100202023983, 0.025020482018589973, 0.029811451211571693, 0.023501498624682426, 0.00899732019752264, 0.028097914531826973, 0.022307489067316055, 0.12569154798984528, 0.10320097208023071, 0.02622462809085846, 0.014257804490625858, 0.049101997166872025, 0.08531162142753601, 0.07768764346837997, 0.1793392449617386, 0.03849849849939346, 0.13384966552257538], [0.030792584642767906, 0.040409255772829056, 0.03531654179096222, 0.021777180954813957, 0.005455194041132927, 0.013928764499723911, 0.008388255722820759, 0.3305415213108063, 0.059313658624887466, 0.015162641182541847, 0.02188735455274582, 0.06858666241168976, 0.04566754028201103, 0.04204744100570679, 0.13483184576034546, 0.043787337839603424, 0.08210629224777222], [0.02783389389514923, 0.02994486689567566, 0.036308784037828445, 0.0445474311709404, 0.008001427166163921, 0.01849203184247017, 0.013227750547230244, 0.28607210516929626, 0.04233448579907417, 0.015235984697937965, 0.024972660467028618, 0.08610875904560089, 0.05378352850675583, 0.07134295254945755, 0.08312346786260605, 0.10290849953889847, 0.05576132982969284], [0.06782539933919907, 0.02991335093975067, 0.034766748547554016, 0.03465987741947174, 0.00479066651314497, 0.02222803793847561, 0.005951298866420984, 0.11263708770275116, 0.125095933675766, 0.022906925529241562, 0.02040037140250206, 0.04685918614268303, 0.04015630483627319, 0.049280162900686264, 0.05461256578564644, 0.12767784297466278, 0.2002382129430771], [0.10290864109992981, 0.015531357377767563, 0.010912599973380566, 0.008136613294482231, 0.001369072706438601, 0.002825130708515644, 0.0014492975315079093, 0.2821357548236847, 0.21065914630889893, 0.01181227620691061, 0.011630960740149021, 0.017311351373791695, 0.006233724299818277, 0.01320717204362154, 0.016567962244153023, 0.03157003968954086, 0.2557390332221985]], [[0.11574086546897888, 0.03910510987043381, 0.07187940180301666, 0.06111738830804825, 0.013943717814981937, 0.07700829952955246, 0.021459145471453667, 0.07959326356649399, 0.1575775444507599, 0.029751181602478027, 0.08388756960630417, 0.01684390939772129, 0.010905494913458824, 0.008169524371623993, 0.019547272473573685, 0.039992909878492355, 0.15347738564014435], [0.17140600085258484, 0.024477750062942505, 0.04528594762086868, 0.021172508597373962, 0.004341131076216698, 0.0551883764564991, 0.008823134005069733, 0.14520800113677979, 0.21773682534694672, 0.012238367460668087, 0.02793825790286064, 0.018263230100274086, 0.006248244550079107, 0.0026568167377263308, 0.024396497756242752, 0.017701826989650726, 0.1969171166419983], [0.10825788974761963, 0.0362422838807106, 0.07992580533027649, 0.032638467848300934, 0.01952669583261013, 0.3589767813682556, 0.013312151655554771, 0.0045678336173295975, 0.08004390448331833, 0.028185870498418808, 0.011232460848987103, 0.008648686110973358, 0.02792302519083023, 0.01824497990310192, 0.07378576695919037, 0.021478137001395226, 0.07700925320386887], [0.12401217967271805, 0.01814933307468891, 0.021389776840806007, 0.006738147232681513, 0.003697388805449009, 0.04121708869934082, 0.002729542087763548, 0.10315649956464767, 0.33265554904937744, 0.007812796160578728, 0.019281914457678795, 0.006965617649257183, 0.002313739387318492, 0.0015214583836495876, 0.015322021208703518, 0.004228692036122084, 0.28880825638771057], [0.07825490087270737, 0.009201773442327976, 0.006448546424508095, 0.0014714559074491262, 0.0003126643714495003, 0.004056004341691732, 0.00034153382875956595, 0.22924011945724487, 0.36345067620277405, 0.002567756688222289, 0.005057985428720713, 0.0019221982220187783, 0.0001178562015411444, 0.0001304157340200618, 0.0007722618756815791, 0.0007931552827358246, 0.29586073756217957], [0.1532689779996872, 0.034383002668619156, 0.02343110926449299, 0.014916395768523216, 0.009058364666998386, 0.04522303491830826, 0.001690057571977377, 0.05718221515417099, 0.3356769382953644, 0.009877835400402546, 0.016316941007971764, 0.00472671864554286, 0.003640758339315653, 0.0012654875172302127, 0.011775690130889416, 0.009773808531463146, 0.2677927315235138], [0.11485268920660019, 0.010244856588542461, 0.0029909468721598387, 0.0029443015810102224, 0.002445399295538664, 0.008238011039793491, 0.00015095675189513713, 0.1396235078573227, 0.3869325816631317, 0.00320964097045362, 0.00555385509505868, 0.0017245071940124035, 0.0003018413844984025, 0.0001602540141902864, 0.0019474123837426305, 0.0013394136913120747, 0.31733977794647217], [0.19137787818908691, 0.01847575604915619, 0.017389247193932533, 0.012108166702091694, 0.0026623427402228117, 0.012141812592744827, 0.004095043987035751, 0.2350376546382904, 0.25106942653656006, 0.005480817519128323, 0.005988531745970249, 0.003865043167024851, 0.0008568412740714848, 0.001411333796568215, 0.006003897171467543, 0.00617101090028882, 0.22586509585380554], [0.1774381846189499, 0.018427303060889244, 0.01918407343327999, 0.009497717022895813, 0.001488909823819995, 0.01567409560084343, 0.00342578929848969, 0.2394871860742569, 0.24724702537059784, 0.003189969342201948, 0.010203894227743149, 0.005848280619829893, 0.001435308950021863, 0.0023856020998209715, 0.008146295323967934, 0.008177339099347591, 0.22874300181865692], [0.13920240104198456, 0.012078697793185711, 0.006467532366514206, 0.004354296252131462, 0.002679905155673623, 0.006293513812124729, 0.0027548607904464006, 0.22717343270778656, 0.22857098281383514, 0.006915548350661993, 0.023446639999747276, 0.02167346328496933, 0.002064015716314316, 0.0018096218118444085, 0.01284692995250225, 0.017827831208705902, 0.2838403582572937], [0.1956690400838852, 0.025164686143398285, 0.04622100666165352, 0.02009396255016327, 0.0035865241661667824, 0.04055054858326912, 0.0053816260769963264, 0.04801809787750244, 0.20525597035884857, 0.04236423224210739, 0.009922388009727001, 0.021295171231031418, 0.030363192781805992, 0.010341254062950611, 0.05385838821530342, 0.015181980095803738, 0.22673195600509644], [0.08670563995838165, 0.006010875105857849, 0.00453865947201848, 0.002072048606351018, 0.00047739542787894607, 0.00574501371011138, 0.0005594416870735586, 0.13307473063468933, 0.35764697194099426, 0.0027202002238482237, 0.0034526768140494823, 0.0010986845009028912, 0.0016637862427160144, 0.001018412527628243, 0.0048525771126151085, 0.0030614861752837896, 0.3853014409542084], [0.09733188897371292, 0.01038606557995081, 0.009335525333881378, 0.003838004544377327, 0.0010971539886668324, 0.029846031218767166, 0.0009417555993422866, 0.03684823587536812, 0.3127937316894531, 0.009352106600999832, 0.00640526320785284, 0.010342676192522049, 0.009683347307145596, 0.01485812570899725, 0.08279159665107727, 0.006566026248037815, 0.35758259892463684], [0.19090856611728668, 0.031167497858405113, 0.025069117546081543, 0.017045386135578156, 0.00999945867806673, 0.02456376701593399, 0.002984082093462348, 0.03783676400780678, 0.252787709236145, 0.01684284582734108, 0.004527321085333824, 0.017688432708382607, 0.015695394948124886, 0.004822377115488052, 0.0427832193672657, 0.019392818212509155, 0.2858852446079254], [0.08572062104940414, 0.019358234480023384, 0.01523648202419281, 0.019156483933329582, 0.021120797842741013, 0.05896209180355072, 0.005831508431583643, 0.021511366590857506, 0.1863667517900467, 0.07127447426319122, 0.021105661988258362, 0.01765519566833973, 0.10097376257181168, 0.06024850532412529, 0.020846011117100716, 0.02582688070833683, 0.24880509078502655], [0.2162291705608368, 0.012456967495381832, 0.0039858282543718815, 0.006637371610850096, 0.0018097938736900687, 0.010658439248800278, 0.0012663427041843534, 0.0989227294921875, 0.23571692407131195, 0.03422432020306587, 0.021881040185689926, 0.01574474386870861, 0.007600976619869471, 0.0021915428806096315, 0.017080625519156456, 0.012712590396404266, 0.3008806109428406], [0.18929561972618103, 0.013770287856459618, 0.010449860244989395, 0.00614132359623909, 0.000933479459490627, 0.008514552377164364, 0.0022178860381245613, 0.2171238213777542, 0.24369879066944122, 0.0048760720528662205, 0.012409237213432789, 0.0070931739173829556, 0.002000832697376609, 0.0036244706716388464, 0.010943829081952572, 0.009887771680951118, 0.2570191025733948]], [[0.3063393533229828, 0.016823729500174522, 0.02133076824247837, 0.014787032268941402, 0.004586333874613047, 0.008930913172662258, 0.0046145180240273476, 0.02900872379541397, 0.10513562709093094, 0.059194471687078476, 0.05338602513074875, 0.007604668382555246, 0.010456654243171215, 0.020206967368721962, 0.017974289134144783, 0.057149775326251984, 0.26247018575668335], [0.028736766427755356, 0.017690913751721382, 0.21235576272010803, 0.45701807737350464, 0.05954978987574577, 0.047599636018276215, 0.02696293033659458, 0.030378146097064018, 0.04113154113292694, 0.0038790039252489805, 0.016541559249162674, 0.006355626508593559, 0.0022419635206460953, 0.0024337326176464558, 0.0030229424592107534, 0.01285422220826149, 0.031247351318597794], [0.3970986008644104, 0.014471332542598248, 0.009949607774615288, 0.041678477078676224, 0.019086839631199837, 0.08480267226696014, 0.014518244192004204, 0.09341216087341309, 0.1397390514612198, 0.00176615035161376, 0.0017886348068714142, 0.0007569961016997695, 0.003783921245485544, 0.006175217218697071, 0.0034074848517775536, 0.012553250417113304, 0.1550113558769226], [0.04054252430796623, 0.0030526411719620228, 0.003028194885700941, 0.0067199477925896645, 0.02198825217783451, 0.18767423927783966, 0.23067983984947205, 0.31219494342803955, 0.0907425507903099, 0.005593448411673307, 0.002628719201311469, 0.0002680444740690291, 0.0023900410160422325, 0.007873853668570518, 0.025948332622647285, 0.012335292994976044, 0.04633917286992073], [0.14558541774749756, 0.003993839956820011, 0.001597037073224783, 0.0047955890186131, 0.015098282136023045, 0.10384045541286469, 0.1618817001581192, 0.2784561216831207, 0.19429436326026917, 0.00319237494841218, 0.0028353265952318907, 0.00036850603646598756, 0.0020457764621824026, 0.002072820905596018, 0.0030148939695209265, 0.0033264944795519114, 0.07360094785690308], [0.2417854368686676, 0.012175928801298141, 0.005689199548214674, 0.004064121749252081, 0.008398755453526974, 0.04072807356715202, 0.036037832498550415, 0.20900744199752808, 0.2611490786075592, 0.02339606173336506, 0.01484100054949522, 0.003204947104677558, 0.006629234179854393, 0.006790592335164547, 0.006227175239473581, 0.006845137104392052, 0.11302994936704636], [0.2627291977405548, 0.012396474368870258, 0.0016125416150316596, 0.004647783935070038, 0.007459305692464113, 0.03738383576273918, 0.01006923709064722, 0.20709355175495148, 0.3122168183326721, 0.027805477380752563, 0.012193344533443451, 0.0014383170055225492, 0.004923100583255291, 0.003706008195877075, 0.0033784869592636824, 0.008767195045948029, 0.08217921108007431], [0.10630419850349426, 0.016108835116028786, 0.015444967895746231, 0.02033955417573452, 0.007889826782047749, 0.014650100842118263, 0.008080512285232544, 0.06066301465034485, 0.1440199315547943, 0.13078199326992035, 0.21670503914356232, 0.0280098095536232, 0.012757403776049614, 0.022060109302401543, 0.016466859728097916, 0.03797439858317375, 0.14174333214759827], [0.6476292014122009, 0.016348058357834816, 0.0040677934885025024, 0.014692348428070545, 0.0018367322627454996, 0.00444315280765295, 0.001242246595211327, 0.008662236854434013, 0.11497929692268372, 0.01123941782861948, 0.008930525742471218, 0.003104404080659151, 0.003805150045081973, 0.004457211121916771, 0.0035507732536643744, 0.010409817099571228, 0.14060157537460327], [0.033121827989816666, 0.0012563845375552773, 0.007179287262260914, 0.06860857456922531, 0.0006718960939906538, 0.0009903188329190016, 0.0012938766740262508, 0.014231693930923939, 0.05561680719256401, 0.013927343301475048, 0.06827523559331894, 0.11747953295707703, 0.09750840067863464, 0.04995199292898178, 0.08169525861740112, 0.26087087392807007, 0.12732067704200745], [0.03574460744857788, 0.0010141897946596146, 0.005059435963630676, 0.03129911422729492, 0.0002695823204703629, 0.0014458884252235293, 0.0009555217111483216, 0.020558476448059082, 0.058217234909534454, 0.0037514795549213886, 0.01196987833827734, 0.03494424372911453, 0.03082987852394581, 0.09665343910455704, 0.07179718464612961, 0.49876922369003296, 0.09672056138515472], [0.1278427541255951, 0.0007718975539319217, 0.0008515733061358333, 0.008008218370378017, 0.0006004553870297968, 0.005536243785172701, 0.005610785912722349, 0.04997546970844269, 0.09017884731292725, 0.001485280692577362, 0.0027171156834810972, 0.0016808612272143364, 0.04382693022489548, 0.03675924241542816, 0.16926313936710358, 0.25449761748313904, 0.20039351284503937], [0.21982243657112122, 0.0017051800386980176, 0.0019056284800171852, 0.0019899189937859774, 0.0013626805739477277, 0.005361906718462706, 0.0017031363677233458, 0.03321647644042969, 0.14011715352535248, 0.006171513814479113, 0.004213098436594009, 0.007689651567488909, 0.035497721284627914, 0.05699235945940018, 0.08599193394184113, 0.03939202055335045, 0.35686710476875305], [0.3612912595272064, 0.0023381037171930075, 0.0008506671874783933, 0.0014513884671032429, 0.0011168806813657284, 0.0033325699623674154, 0.00043653769535012543, 0.021657373756170273, 0.11613117903470993, 0.0020864217076450586, 0.0012140811886638403, 0.00038299651350826025, 0.00644735898822546, 0.007998848333954811, 0.03876952454447746, 0.03144445642828941, 0.4030504822731018], [0.5138987898826599, 0.0022618251387029886, 0.0007979305228218436, 0.0020120753906667233, 0.0005921304691582918, 0.004058465827256441, 0.00022889605315867811, 0.017564691603183746, 0.12219111621379852, 0.0023522975388914347, 0.0005863909027539194, 0.00032853358425199986, 0.003553203074261546, 0.003251932095736265, 0.0077364821918308735, 0.021639319136738777, 0.2969459295272827], [0.4063866138458252, 0.001210736227221787, 0.0009560450562275946, 0.002112641232088208, 0.000904428365174681, 0.004357117228209972, 0.0011757173342630267, 0.012563016265630722, 0.06393489241600037, 0.030697297304868698, 0.025672459974884987, 0.002026200294494629, 0.004858278203755617, 0.016958247870206833, 0.03626614063978195, 0.05675263702869415, 0.33316755294799805], [0.7013733386993408, 0.0073241801001131535, 0.0022500320337712765, 0.009310482069849968, 0.00120065629016608, 0.0036680949851870537, 0.0010160686215385795, 0.006998822558671236, 0.06656818836927414, 0.009200379252433777, 0.004334858153015375, 0.0014812416629865766, 0.0024717114865779877, 0.003434327896684408, 0.0037332160864025354, 0.014813580550253391, 0.160820871591568]], [[0.09979113936424255, 0.03883330523967743, 0.024698302149772644, 0.04483076557517052, 0.01476182322949171, 0.024045243859291077, 0.02374119870364666, 0.045566145330667496, 0.2279992550611496, 0.05573498457670212, 0.042020007967948914, 0.02091025374829769, 0.005749198608100414, 0.008787647821009159, 0.009675520472228527, 0.025539932772517204, 0.287315309047699], [0.09115432947874069, 0.023153360933065414, 0.11604630202054977, 0.20041850209236145, 0.013324467465281487, 0.05764161795377731, 0.03696964681148529, 0.04960782825946808, 0.18983232975006104, 0.009514346718788147, 0.008521253243088722, 0.004084935877472162, 0.005067496560513973, 0.00562170147895813, 0.010833547450602055, 0.07247931510210037, 0.10572897642850876], [0.07463133335113525, 0.04899638146162033, 0.07019500434398651, 0.028235049918293953, 0.006032094359397888, 0.0024028075858950615, 0.0014688250375911593, 0.03557515889406204, 0.3454008102416992, 0.004062136169523001, 0.0056605031713843346, 0.0023208227939903736, 0.0015505142509937286, 0.002558220410719514, 0.004020435269922018, 0.010499661788344383, 0.3563901484012604], [0.025600118562579155, 0.0034379849676042795, 0.0003415506216697395, 0.0005461337277665734, 0.0020815925672650337, 0.4802185893058777, 0.42890799045562744, 0.03081451915204525, 0.008687668479979038, 0.00042085308814421296, 0.0010776181006804109, 0.002147944876924157, 0.001498684985563159, 0.0013826601207256317, 0.006192204542458057, 0.00028337270487099886, 0.006360561121255159], [0.03598932921886444, 0.007123661693185568, 0.00096351612592116, 0.06700829416513443, 0.005794658791273832, 0.6877670288085938, 0.050140462815761566, 0.04110276699066162, 0.05055509880185127, 0.0022147917188704014, 0.0018843431025743484, 0.0007442908827215433, 0.0013113131280988455, 0.0008725986699573696, 0.004595724865794182, 0.0025140070356428623, 0.03941816836595535], [0.05010809004306793, 0.03691926226019859, 0.009549910202622414, 0.10618976503610611, 0.009127706289291382, 0.003283189609646797, 0.036792412400245667, 0.04685065895318985, 0.35068732500076294, 0.003924740944057703, 0.005799079779535532, 0.0002189219812862575, 0.0018596570007503033, 0.0005153012461960316, 0.00283996993675828, 0.006714740768074989, 0.32861921191215515], [0.017171761021018028, 0.005655510351061821, 0.0009492615354247391, 0.10877551883459091, 0.02639276161789894, 0.7780289053916931, 0.0014328344259411097, 0.008183993399143219, 0.02630131132900715, 0.0010964705143123865, 0.0007076399633660913, 0.0006622506771236658, 0.00045109467464499176, 0.0028128265403211117, 0.0014420216903090477, 0.00017094130453187972, 0.01976483315229416], [0.056040696799755096, 0.0481586717069149, 0.0392625592648983, 0.1332060545682907, 0.03988102450966835, 0.06426862627267838, 0.07791052758693695, 0.033656325191259384, 0.22239747643470764, 0.03070741333067417, 0.04692991450428963, 0.01760638877749443, 0.00650670425966382, 0.005804271437227726, 0.00998917780816555, 0.01178609486669302, 0.15588806569576263], [0.06940141320228577, 0.033307887613773346, 0.019474318251013756, 0.012008906342089176, 0.0012323374394327402, 0.0044489032588899136, 0.006613615900278091, 0.04443608224391937, 0.4192591607570648, 0.012425372377038002, 0.021549394354224205, 0.00817781500518322, 0.0012089208466932178, 0.002642097882926464, 0.007863999344408512, 0.012665115296840668, 0.3232845664024353], [0.011722260154783726, 0.0018850011983886361, 0.0012728053843602538, 0.012121759355068207, 0.0004469156265258789, 0.006978520192205906, 0.0011283374624326825, 0.007707122713327408, 0.0610102079808712, 0.003247203305363655, 0.016734765842556953, 0.005816273856908083, 0.02339010126888752, 0.13839447498321533, 0.0783526673913002, 0.5656047463417053, 0.06418689340353012], [0.0442114919424057, 0.004757745657116175, 0.009087950922548771, 0.039119478315114975, 0.003207913599908352, 0.012476588599383831, 0.006762477569282055, 0.019034622237086296, 0.12511411309242249, 0.017783576622605324, 0.01628032885491848, 0.07789083570241928, 0.01078982837498188, 0.04307781532406807, 0.11294005811214447, 0.3558245599269867, 0.10164058953523636], [0.004011786077171564, 0.0001014742738334462, 5.817809869768098e-05, 0.0003955201245844364, 0.00034679105738177896, 1.3518204468709882e-05, 0.00017554446822032332, 0.0015848720213398337, 0.005109278950840235, 9.902526653604582e-05, 0.004073916934430599, 3.7136174796614796e-05, 0.9544261693954468, 0.01065280195325613, 0.00236969580873847, 0.010051416233181953, 0.006492914166301489], [0.043656863272190094, 0.0019583157263696194, 0.0007192094344645739, 0.0038125738501548767, 3.6382869438966736e-05, 0.004563064314424992, 0.0001681829453445971, 0.011236460879445076, 0.07154230028390884, 0.005422523710876703, 0.020473744720220566, 0.3826789855957031, 0.008451919071376324, 0.08547884225845337, 0.24268482625484467, 0.019992487505078316, 0.09712338447570801], [0.1314173936843872, 0.012020898051559925, 0.007338241674005985, 0.004280397202819586, 0.0006550037651322782, 0.0005949820042587817, 4.262571019353345e-05, 0.026250002905726433, 0.06329888105392456, 0.0006792040658183396, 0.009112020954489708, 0.0662970095872879, 0.046854693442583084, 0.008737390860915184, 0.43581074476242065, 0.07052099704742432, 0.11608953028917313], [0.03955933824181557, 0.018778996542096138, 0.027329443022608757, 0.07223028689622879, 0.0019802565220743418, 0.001056011882610619, 0.00018029168131761253, 0.020361371338367462, 0.21713539958000183, 0.00586598040536046, 0.009586179628968239, 0.0005024527781642973, 0.018520750105381012, 0.1304548680782318, 0.0009591386769898236, 0.07688599079847336, 0.3586132228374481], [0.038896504789590836, 0.002310445299372077, 0.0018187969690188766, 0.0009306020801886916, 0.00023278601292986423, 0.0005830102600157261, 0.0005678428569808602, 0.012368783354759216, 0.013434451073408127, 0.005887024104595184, 0.004573711659759283, 0.04550807178020477, 0.0049680983647704124, 0.3276149034500122, 0.5107601881027222, 0.005239696707576513, 0.02430511824786663], [0.07556984573602676, 0.02032707817852497, 0.012514768168330193, 0.006844404619187117, 0.0007995591149665415, 0.002468045800924301, 0.003937508910894394, 0.03575125336647034, 0.3136250078678131, 0.015457957983016968, 0.01945636048913002, 0.008300923742353916, 0.00160056387539953, 0.005112434737384319, 0.011716611683368683, 0.019896110519766808, 0.4466214179992676]], [[0.07720981538295746, 0.005479374434798956, 0.009653094224631786, 0.004942193161696196, 0.006296050269156694, 0.01879698596894741, 0.0029290001839399338, 0.009101291187107563, 0.10884293913841248, 0.255292683839798, 0.08275441825389862, 0.009947802871465683, 0.021497810259461403, 0.005891737062484026, 0.010315139777958393, 0.0595274493098259, 0.3115222156047821], [0.10081841051578522, 0.025208599865436554, 0.10823255777359009, 0.13100038468837738, 0.08873111009597778, 0.19428133964538574, 0.03402477875351906, 0.06430313736200333, 0.09153364598751068, 0.02266654558479786, 0.02930597960948944, 0.011637458577752113, 0.004248590208590031, 0.004983082879334688, 0.00925781112164259, 0.024000205099582672, 0.055766358971595764], [0.14288413524627686, 0.06653030216693878, 0.0826490968465805, 0.13423201441764832, 0.05755477026104927, 0.24242113530635834, 0.05778031051158905, 0.035578690469264984, 0.022000988945364952, 0.04424966126680374, 0.016666648909449577, 0.005481308326125145, 0.0052717761136591434, 0.005180803593248129, 0.011721171438694, 0.05326942726969719, 0.016527727246284485], [0.2095443457365036, 0.03183833882212639, 0.10361836105585098, 0.013735993765294552, 0.03363284468650818, 0.29154878854751587, 0.027082743123173714, 0.046949706971645355, 0.08824890106916428, 0.07446525245904922, 0.005305198021233082, 0.0028499134350568056, 0.002666997956112027, 0.002208211924880743, 0.0036699718330055475, 0.0063538155518472195, 0.05628063157200813], [0.6052699089050293, 0.04618102312088013, 0.041307274252176285, 0.00972806941717863, 0.008821822702884674, 0.06025583669543266, 0.020914316177368164, 0.10611087083816528, 0.054035525768995285, 0.01358695887029171, 0.00205828039906919, 0.0011157057015225291, 0.0007620607502758503, 0.0011756200110539794, 0.0014770982088521123, 0.0027024950832128525, 0.024497119709849358], [0.14543011784553528, 0.06284019351005554, 0.1127016618847847, 0.042584896087646484, 0.024357737973332405, 0.23440591990947723, 0.06719357520341873, 0.041610680520534515, 0.044048063457012177, 0.12064123898744583, 0.01496205385774374, 0.004802182782441378, 0.005745191127061844, 0.007228384725749493, 0.008618212305009365, 0.03251977637410164, 0.03031005710363388], [0.2758655548095703, 0.0684211477637291, 0.0871393010020256, 0.07007474452257156, 0.039556119590997696, 0.17759110033512115, 0.02543524280190468, 0.07229757308959961, 0.07552193105220795, 0.032701559364795685, 0.013232419267296791, 0.004794727545231581, 0.0017865468980744481, 0.002480826573446393, 0.001856140443123877, 0.014901673421263695, 0.03634342551231384], [0.20471413433551788, 0.16547903418540955, 0.053886789828538895, 0.03470611199736595, 0.01586093008518219, 0.05950860306620598, 0.014329487457871437, 0.17287319898605347, 0.1188010722398758, 0.020981701090931892, 0.020500166341662407, 0.004532428923994303, 0.0035689889919012785, 0.003243064507842064, 0.004292394034564495, 0.02733711712062359, 0.07538477331399918], [0.3850259482860565, 0.042620699852705, 0.018977511674165726, 0.01876058056950569, 0.0035124258138239384, 0.015309530310332775, 0.008836154825985432, 0.284096360206604, 0.08778875321149826, 0.0037358247209340334, 0.010208687745034695, 0.013469942845404148, 0.0023829557467252016, 0.008806977421045303, 0.011539126746356487, 0.017326166853308678, 0.06760238856077194], [0.40637195110321045, 0.005644735414534807, 0.011581013910472393, 0.007326821330934763, 0.005657300353050232, 0.04194243252277374, 0.007262458559125662, 0.04291181266307831, 0.10112234205007553, 0.06649059802293777, 0.05439984053373337, 0.0223244521766901, 0.011947850696742535, 0.00748045276850462, 0.007863557897508144, 0.025249430909752846, 0.17442286014556885], [0.03554505482316017, 0.1258942037820816, 0.036509331315755844, 0.05995108187198639, 0.02699664793908596, 0.0375521183013916, 0.018652284517884254, 0.005674660671502352, 0.07097121328115463, 0.1465049535036087, 0.0661725252866745, 0.014102384448051453, 0.009331862442195415, 0.03154764696955681, 0.16420786082744598, 0.06238081678748131, 0.0880052000284195], [0.6659138798713684, 0.018083393573760986, 0.011816686950623989, 0.00923013687133789, 0.0016744232270866632, 0.017004702240228653, 0.00671832449734211, 0.05825703591108322, 0.018215656280517578, 0.07125592976808548, 0.037845902144908905, 0.011587291024625301, 0.0036953638773411512, 0.005372975952923298, 0.024161657318472862, 0.017375433817505836, 0.02179119549691677], [0.40163323283195496, 0.014721721410751343, 0.013423760421574116, 0.016551053151488304, 0.026905778795480728, 0.06019182503223419, 0.01458576787263155, 0.11016889661550522, 0.02927340939640999, 0.13569903373718262, 0.01877519302070141, 0.041450969874858856, 0.008395720273256302, 0.010868458077311516, 0.021202370524406433, 0.04074788838624954, 0.03540491312742233], [0.8464874029159546, 0.007125409785658121, 0.011116609908640385, 0.006413394585251808, 0.0010565321426838636, 0.010183493606746197, 0.007261425722390413, 0.06178567558526993, 0.005885311868041754, 0.013668421655893326, 0.0023411950096488, 0.0041036056354641914, 0.00033969542710110545, 0.0006532130064442754, 0.005911857821047306, 0.010446146130561829, 0.005220680497586727], [0.5370393991470337, 0.024095334112644196, 0.019729357212781906, 0.04203464463353157, 0.0067970119416713715, 0.05341538041830063, 0.020838703960180283, 0.09264549612998962, 0.02320600487291813, 0.0616401843726635, 0.022456318140029907, 0.020219188183546066, 0.002763928845524788, 0.003370145568624139, 0.013628877699375153, 0.030209604650735855, 0.025910403579473495], [0.4284515380859375, 0.026992104947566986, 0.009285747073590755, 0.01861882582306862, 0.007447022013366222, 0.04384639114141464, 0.006369845476001501, 0.06425353139638901, 0.0615478977560997, 0.14307032525539398, 0.029112787917256355, 0.019062435254454613, 0.0055292933247983456, 0.0032664563041180372, 0.008978256024420261, 0.04075730964541435, 0.08341030776500702], [0.4351096749305725, 0.020514443516731262, 0.008449352346360683, 0.009301923215389252, 0.001221774611622095, 0.005948420614004135, 0.0037798364646732807, 0.2338775247335434, 0.08136442303657532, 0.005654643755406141, 0.014292689971625805, 0.019577741622924805, 0.0033030002377927303, 0.012694094330072403, 0.018401412293314934, 0.02777300588786602, 0.09873601794242859]], [[0.28848257660865784, 0.01257616002112627, 0.03430843725800514, 0.01477912999689579, 0.0012256235349923372, 0.011869112029671669, 0.0016546170227229595, 0.014108515344560146, 0.052278775721788406, 0.07397178560495377, 0.04786080867052078, 0.01626724749803543, 0.027599243447184563, 0.03239141032099724, 0.059635698795318604, 0.18240614235401154, 0.12858480215072632], [0.33222827315330505, 0.08015219122171402, 0.1915275603532791, 0.026452526450157166, 0.009152380749583244, 0.0619947649538517, 0.008375460281968117, 0.0412161648273468, 0.10321027785539627, 0.004507344216108322, 0.009573579765856266, 0.008091576397418976, 0.010833711363375187, 0.006890119519084692, 0.017782362177968025, 0.011639094911515713, 0.07637260109186172], [0.35098302364349365, 0.08266192674636841, 0.1004398837685585, 0.017580751329660416, 0.004722627345472574, 0.02698211371898651, 0.0024964134208858013, 0.04608785733580589, 0.17449690401554108, 0.008553984574973583, 0.009689396247267723, 0.0028808119241148233, 0.005259563680738211, 0.004764842800796032, 0.011774441227316856, 0.01401494350284338, 0.13661053776741028], [0.0868002325296402, 0.08214076608419418, 0.44636648893356323, 0.029118763282895088, 0.024936877191066742, 0.09903780370950699, 0.013524153269827366, 0.006854426581412554, 0.028886616230010986, 0.011359469033777714, 0.025728275999426842, 0.02881213091313839, 0.012763477861881256, 0.02961600013077259, 0.03945455700159073, 0.013702438212931156, 0.020897559821605682], [0.20907022058963776, 0.07866306602954865, 0.1263018548488617, 0.11595798283815384, 0.008618229068815708, 0.12594379484653473, 0.018959959968924522, 0.0438644140958786, 0.11279072612524033, 0.008140233345329762, 0.006522328592836857, 0.03023660182952881, 0.0016097958432510495, 0.010630470700562, 0.012144387699663639, 0.022322824224829674, 0.06822306662797928], [0.10368841886520386, 0.1136193498969078, 0.3677966892719269, 0.09205619990825653, 0.020554449409246445, 0.0713471844792366, 0.015230441465973854, 0.010558288544416428, 0.046624623239040375, 0.015065798535943031, 0.022050680592656136, 0.012994340620934963, 0.009115414693951607, 0.01933613047003746, 0.025137923657894135, 0.022907650098204613, 0.031916506588459015], [0.17326810956001282, 0.13135133683681488, 0.242970809340477, 0.10898085683584213, 0.02750818431377411, 0.0680653303861618, 0.003113165497779846, 0.00896274484694004, 0.09048771858215332, 0.006018065381795168, 0.015656571835279465, 0.035565536469221115, 0.0020494465716183186, 0.006103125866502523, 0.01167663186788559, 0.009029789827764034, 0.05919254943728447], [0.2926902174949646, 0.13678932189941406, 0.04789775237441063, 0.026008330285549164, 0.007970488630235195, 0.02025541663169861, 0.007859368808567524, 0.12335386872291565, 0.15670572221279144, 0.005855523515492678, 0.027749791741371155, 0.008959303610026836, 0.003706427989527583, 0.003476644167676568, 0.0034832917153835297, 0.007415648549795151, 0.11982285976409912], [0.21157123148441315, 0.019517263397574425, 0.005391857586801052, 0.006420148070901632, 0.0008940987754613161, 0.0031574838794767857, 0.0011618149001151323, 0.2074192315340042, 0.26527830958366394, 0.0016312404768541455, 0.0029793318826705217, 0.0016579229850322008, 0.0010355523554608226, 0.0007651904015801847, 0.0016296723624691367, 0.0065324921160936356, 0.2629570960998535], [0.10086333006620407, 0.04043850302696228, 0.06336106359958649, 0.06956925988197327, 0.014053556136786938, 0.04208793118596077, 0.010049941949546337, 0.023839600384235382, 0.043660201132297516, 0.022071635350584984, 0.04092884808778763, 0.0585818774998188, 0.08269033581018448, 0.0855441763997078, 0.07963062077760696, 0.1571822166442871, 0.06544698029756546], [0.12707668542861938, 0.0523548349738121, 0.26883453130722046, 0.040691524744033813, 0.010961726307868958, 0.1296394318342209, 0.01433053333312273, 0.014453519135713577, 0.034860480576753616, 0.019024686887860298, 0.024176517501473427, 0.027583064511418343, 0.037872590124607086, 0.02919812686741352, 0.06729917228221893, 0.05900665372610092, 0.04263603314757347], [0.24688754975795746, 0.030769459903240204, 0.047778595238924026, 0.010946054011583328, 0.0031167911365628242, 0.029011135920882225, 0.0037711665499955416, 0.01944924332201481, 0.11189188808202744, 0.03106481395661831, 0.044395435601472855, 0.0172080360352993, 0.06188589334487915, 0.05043267086148262, 0.08090803027153015, 0.06390834599733353, 0.1465749889612198], [0.0705142617225647, 0.022703805938363075, 0.058183036744594574, 0.009261778555810452, 0.004325672518461943, 0.012400595471262932, 0.0015944127226248384, 0.007076756563037634, 0.026688102632761, 0.026559725403785706, 0.050885822623968124, 0.21843144297599792, 0.04302094131708145, 0.16049493849277496, 0.19344812631607056, 0.057423289865255356, 0.03698739409446716], [0.07891872525215149, 0.014068239368498325, 0.0841895118355751, 0.007075081579387188, 0.0031340019777417183, 0.009126100689172745, 0.003642712952569127, 0.021879103034734726, 0.05461389571428299, 0.011178506538271904, 0.04127843677997589, 0.04643681272864342, 0.1468726247549057, 0.061722252517938614, 0.3135157823562622, 0.020892739295959473, 0.0814552828669548], [0.044050343334674835, 0.015222175046801567, 0.19471687078475952, 0.007659707218408585, 0.0031954178120940924, 0.015198113396763802, 0.0015721445670351386, 0.004193637054413557, 0.02555701695382595, 0.004130168817937374, 0.01765613816678524, 0.020457418635487556, 0.06887971609830856, 0.30653172731399536, 0.22313055396080017, 0.015358373522758484, 0.03249046206474304], [0.0655519887804985, 0.026019321754574776, 0.1586287021636963, 0.03197231888771057, 0.009207548573613167, 0.034353431314229965, 0.004972562193870544, 0.005005646031349897, 0.027446508407592773, 0.04562034457921982, 0.12475969642400742, 0.08526258915662766, 0.0796908289194107, 0.06958846002817154, 0.12920702993869781, 0.05237547308206558, 0.05033749341964722], [0.20587339997291565, 0.010222149081528187, 0.0022830842062830925, 0.002935391617938876, 0.000358555291313678, 0.0013521627988666296, 0.0005329405539669096, 0.18011945486068726, 0.24020645022392273, 0.0021221372298896313, 0.0032666781917214394, 0.0015231661964207888, 0.0011074128560721874, 0.0008529155747964978, 0.001629339880309999, 0.007295794319361448, 0.3383190631866455]], [[0.05956319347023964, 0.00179675268009305, 0.017128366976976395, 0.0016953638987615705, 0.0006857583066448569, 0.0016695238882675767, 0.0007776255952194333, 0.024795446544885635, 0.0002714041620492935, 0.04412422329187393, 0.13379958271980286, 0.09820152819156647, 0.1267201006412506, 0.07335173338651657, 0.19282320141792297, 0.22087225317955017, 0.0017239977605640888], [0.23613636195659637, 0.14318731427192688, 0.05672837048768997, 0.07801620662212372, 0.027653949335217476, 0.05892806127667427, 0.014872346073389053, 0.016281506046652794, 0.2645290493965149, 0.0012800769181922078, 0.006285484414547682, 0.0018658335320651531, 0.005999637767672539, 0.000898213591426611, 0.0020877092611044645, 0.008333098143339157, 0.0769166573882103], [0.21454371511936188, 0.1391931027173996, 0.040841612964868546, 0.0954454243183136, 0.08106456696987152, 0.0962277501821518, 0.046839989721775055, 0.02815232053399086, 0.09633154422044754, 0.017318041995167732, 0.02717973105609417, 0.010474808514118195, 0.02076856605708599, 0.0034293895587325096, 0.009962289594113827, 0.028956621885299683, 0.043270375579595566], [0.20170310139656067, 0.1908068209886551, 0.06540999561548233, 0.045815546065568924, 0.042473193258047104, 0.08222468197345734, 0.016856539994478226, 0.011652784422039986, 0.2298145741224289, 0.004043226130306721, 0.008136386051774025, 0.0031762518920004368, 0.011258060112595558, 0.0014403003733605146, 0.0037828453350812197, 0.006951686926186085, 0.07445399463176727], [0.19613812863826752, 0.1202336922287941, 0.011509637348353863, 0.011758795939385891, 0.006277972832322121, 0.013663249090313911, 0.005513791926205158, 0.008629501797258854, 0.47911304235458374, 0.000780194706749171, 0.0014525118749588728, 0.0008472095360048115, 0.0028031363617628813, 0.00034791469806805253, 0.0009374889195896685, 0.0015715241897851229, 0.1384221911430359], [0.2702300548553467, 0.1306772381067276, 0.02260442264378071, 0.03576706349849701, 0.021464085206389427, 0.014047701843082905, 0.016266534104943275, 0.02396782673895359, 0.3145864009857178, 0.001972568454220891, 0.005951384082436562, 0.003608008148148656, 0.00783790647983551, 0.0014839855721220374, 0.00308221485465765, 0.005734744947403669, 0.12071798741817474], [0.3473818302154541, 0.19484259188175201, 0.05956964194774628, 0.03729168325662613, 0.017642799764871597, 0.03212764486670494, 0.005095197819173336, 0.009113706648349762, 0.18504053354263306, 0.0014740314800292253, 0.009163438342511654, 0.002339687431231141, 0.015544865280389786, 0.0010590697638690472, 0.0033047597389668226, 0.006495994981378317, 0.07251261919736862], [0.14215287566184998, 0.10905203223228455, 0.13271881639957428, 0.06678072363138199, 0.055062223225831985, 0.20480968058109283, 0.02073928527534008, 0.00976736843585968, 0.10605435073375702, 0.008199530653655529, 0.0198756642639637, 0.006681375205516815, 0.020344208925962448, 0.007610614411532879, 0.019918302074074745, 0.01168823055922985, 0.05854463577270508], [0.11422670632600784, 0.03828209638595581, 0.00507381884381175, 0.004419131204485893, 0.009561950340867043, 0.01285400427877903, 0.002909034490585327, 0.01814098097383976, 0.3899940252304077, 0.0029826404061168432, 0.004728056490421295, 0.005474678706377745, 0.005925028584897518, 0.0015272676246240735, 0.005571904592216015, 0.006338297855108976, 0.37199029326438904], [0.011238610371947289, 0.00045380022493191063, 0.004181951750069857, 0.0003760939580388367, 0.00017070409376174212, 0.0002088031469611451, 0.00023954050266183913, 0.010314065031707287, 1.3955426766187884e-05, 0.14375847578048706, 0.1389721781015396, 0.15650571882724762, 0.18927054107189178, 0.039405226707458496, 0.14734160900115967, 0.15737663209438324, 0.00017208002100232989], [0.031784750521183014, 0.0015507922507822514, 0.013885190710425377, 0.0018220108468085527, 0.0005439352826215327, 0.0008825199911370873, 0.00027660062187351286, 0.0069628870114684105, 4.4935241021448746e-05, 0.0813266858458519, 0.05959245562553406, 0.13896241784095764, 0.26633715629577637, 0.03404557704925537, 0.1678851842880249, 0.19371803104877472, 0.0003788716858252883], [0.08621974289417267, 0.003574413014575839, 0.007178200408816338, 0.0013829863164573908, 0.0004100213118363172, 0.0005498532555066049, 0.0007883554790169001, 0.037121593952178955, 0.00038770571700297296, 0.10483808070421219, 0.19522158801555634, 0.046983249485492706, 0.1087883785367012, 0.05557802692055702, 0.13681387901306152, 0.21160779893398285, 0.0025560909416526556], [0.022168036550283432, 0.0011089545441791415, 0.00752820260822773, 0.0009223827510140836, 0.00025024719070643187, 0.0004022939538117498, 0.0004331802192609757, 0.01542576216161251, 8.430749585386366e-05, 0.2691948413848877, 0.20285631716251373, 0.07688498497009277, 0.07929836958646774, 0.06059287488460541, 0.12732230126857758, 0.13470827043056488, 0.0008186959894374013], [0.038268525153398514, 0.002309854608029127, 0.0049010575748980045, 0.0006654354510828853, 0.00024545693304389715, 0.0005895740468986332, 0.0006904510082677007, 0.03247307613492012, 0.0001754794648149982, 0.11549419909715652, 0.17119476199150085, 0.09577608853578568, 0.1899692863225937, 0.024540485814213753, 0.10692265629768372, 0.21435683965682983, 0.0014267897931858897], [0.04470892250537872, 0.00579972704872489, 0.014608947560191154, 0.00284426542930305, 0.0014223706675693393, 0.0019662072882056236, 0.0019196448847651482, 0.03656250983476639, 0.0006488657672889531, 0.08809281885623932, 0.16689829528331757, 0.06508523225784302, 0.2711290419101715, 0.05329497531056404, 0.08856726437807083, 0.15377938747406006, 0.0026714380364865065], [0.0324103944003582, 0.002985625062137842, 0.019528495147824287, 0.0015649838605895638, 0.0010861161863431334, 0.004385427106171846, 0.0005067905294708908, 0.012419597245752811, 0.00014126817404758185, 0.1578301042318344, 0.1078701913356781, 0.11344996094703674, 0.17818157374858856, 0.050234604626894, 0.19941255450248718, 0.11708803474903107, 0.0009043181780725718], [0.14372624456882477, 0.018153995275497437, 0.008819352835416794, 0.0026029872242361307, 0.005939857102930546, 0.0091972341760993, 0.0020077270455658436, 0.06999135762453079, 0.058347154408693314, 0.0631398931145668, 0.054393865168094635, 0.08901600539684296, 0.07086573541164398, 0.022017978131771088, 0.0889204666018486, 0.0838044062256813, 0.20905570685863495]], [[0.06590607762336731, 0.08417094498872757, 0.030377818271517754, 0.04855623096227646, 0.030268382281064987, 0.04047302156686783, 0.09107440710067749, 0.05338447913527489, 0.06584428995847702, 0.20143471658229828, 0.04430174082517624, 0.00801195576786995, 0.022194521501660347, 0.023148616775870323, 0.03382888436317444, 0.09049656242132187, 0.06652738153934479], [0.06757715344429016, 0.0675671249628067, 0.09888757020235062, 0.2440209537744522, 0.024376049637794495, 0.06080688163638115, 0.02390352077782154, 0.03119654394686222, 0.06538015604019165, 0.028339162468910217, 0.06321700662374496, 0.015988469123840332, 0.005243256688117981, 0.01828606240451336, 0.020151490345597267, 0.11210758984088898, 0.05295104905962944], [0.07708651572465897, 0.0774746686220169, 0.21630482375621796, 0.11478409171104431, 0.0349455252289772, 0.1190795749425888, 0.005108577664941549, 0.07545206695795059, 0.08367180824279785, 0.008812044747173786, 0.02605229988694191, 0.005950480699539185, 0.003843178739771247, 0.018045805394649506, 0.03252892568707466, 0.03702116757631302, 0.06383847445249557], [0.07453086972236633, 0.08956724405288696, 0.037647850811481476, 0.034554578363895416, 0.20350435376167297, 0.15637822449207306, 0.10547322779893875, 0.04996996000409126, 0.04764339700341225, 0.058809179812669754, 0.022429628297686577, 0.025113781914114952, 0.021163804456591606, 0.004183787386864424, 0.01920655556023121, 0.01042927335947752, 0.039394330233335495], [0.0946265459060669, 0.07392112910747528, 0.008441055193543434, 0.11359913647174835, 0.16658742725849152, 0.16855019330978394, 0.051401760429143906, 0.04358818382024765, 0.07750405371189117, 0.018604621291160583, 0.015648480504751205, 0.03786034137010574, 0.012400555424392223, 0.01631971262395382, 0.01638578251004219, 0.020027238875627518, 0.0645337924361229], [0.03593434393405914, 0.05929824337363243, 0.07843022793531418, 0.11796325445175171, 0.3195796310901642, 0.1901479810476303, 0.028238395228981972, 0.016250809654593468, 0.026243215426802635, 0.02494652383029461, 0.005341187585145235, 0.01654711924493313, 0.04616314545273781, 0.00026560816331766546, 0.0020785636734217405, 0.012440221384167671, 0.020131448283791542], [0.19025366008281708, 0.07703237235546112, 0.0106458505615592, 0.15518680214881897, 0.057999636977910995, 0.06947861611843109, 0.010456075891852379, 0.05313672497868538, 0.13994288444519043, 0.022877782583236694, 0.01409536600112915, 0.04498327150940895, 0.006965731270611286, 0.005847529973834753, 0.007901111617684364, 0.02862342819571495, 0.104573093354702], [0.09631843119859695, 0.10552708804607391, 0.06001431122422218, 0.16572625935077667, 0.053799256682395935, 0.03079824335873127, 0.02580343745648861, 0.043431080877780914, 0.07854826003313065, 0.10692145675420761, 0.04204757884144783, 0.021169226616621017, 0.013394113630056381, 0.020619424059987068, 0.018860729411244392, 0.03934461623430252, 0.07767646759748459], [0.058672234416007996, 0.0571172721683979, 0.037414152175188065, 0.08807271718978882, 0.0670572891831398, 0.0643443614244461, 0.07295747101306915, 0.05352793261408806, 0.03435320034623146, 0.07669932395219803, 0.09463126957416534, 0.07032759487628937, 0.05824226513504982, 0.043223559856414795, 0.026333792135119438, 0.06254377216100693, 0.03448179364204407], [0.027944881469011307, 0.0242831539362669, 0.012918280437588692, 0.16402386128902435, 0.03439036011695862, 0.015647124499082565, 0.010424001142382622, 0.030613740906119347, 0.025048082694411278, 0.048907581716775894, 0.06153663620352745, 0.05295651778578758, 0.03979042172431946, 0.01695133186876774, 0.01767057552933693, 0.38970163464546204, 0.02719184383749962], [0.03677641227841377, 0.023587673902511597, 0.14763346314430237, 0.042520828545093536, 0.008023045025765896, 0.006664303131401539, 0.006648252718150616, 0.01626436971127987, 0.03899155184626579, 0.03634963557124138, 0.06613592058420181, 0.011808985844254494, 0.00661960244178772, 0.019977176561951637, 0.034024834632873535, 0.46260493993759155, 0.035368964076042175], [0.053710758686065674, 0.01573863998055458, 0.000860692816786468, 0.08311107754707336, 0.23616304993629456, 0.029673194512724876, 0.04085135459899902, 0.019149426370859146, 0.052326127886772156, 0.11464853584766388, 0.02945755422115326, 0.021228795871138573, 0.09886714816093445, 0.018007831647992134, 0.016416052356362343, 0.11243856698274612, 0.057351112365722656], [0.07678169757127762, 0.03138824552297592, 0.0069891014136374, 0.024354055523872375, 0.030870748683810234, 0.020590312778949738, 0.011850254610180855, 0.03463532775640488, 0.08088368922472, 0.0854516327381134, 0.015365722589194775, 0.13927532732486725, 0.0662253275513649, 0.10883750021457672, 0.08844134211540222, 0.10394864529371262, 0.07411099970340729], [0.04260123893618584, 0.013429353944957256, 0.08451063185930252, 0.005342602264136076, 0.006419896148145199, 0.00040298490785062313, 0.011343014426529408, 0.009916880168020725, 0.04078890383243561, 0.030210701748728752, 0.028912976384162903, 0.05181695520877838, 0.020043091848492622, 0.20750917494297028, 0.39034661650657654, 0.016455737873911858, 0.03994926065206528], [0.09958776086568832, 0.024511493742465973, 0.12924376130104065, 0.020699242129921913, 0.004476725589483976, 0.002866498427465558, 0.012254253029823303, 0.022414108738303185, 0.08055975288152695, 0.018432436510920525, 0.03394339606165886, 0.055974170565605164, 0.02398219332098961, 0.24533863365650177, 0.12275483459234238, 0.032687053084373474, 0.07027378678321838], [0.04026741534471512, 0.060288798063993454, 0.033687297254800797, 0.022989923134446144, 0.02891065925359726, 0.03710899502038956, 0.014900666661560535, 0.018785668537020683, 0.04191936179995537, 0.41869840025901794, 0.06691352277994156, 0.039353806525468826, 0.08412089943885803, 0.016768695786595345, 0.02231862023472786, 0.010441322810947895, 0.042525846511125565], [0.046111952513456345, 0.045371007174253464, 0.025911172851920128, 0.06766625493764877, 0.04622233286499977, 0.04765365645289421, 0.07085514813661575, 0.04710721969604492, 0.03205384686589241, 0.10139051079750061, 0.1182694137096405, 0.09717908501625061, 0.0740463063120842, 0.04925260320305824, 0.029989754781126976, 0.06561510264873505, 0.03530462458729744]], [[0.2920938730239868, 0.03843783959746361, 0.00454994710162282, 0.016129150986671448, 0.01057481486350298, 0.007902449928224087, 0.006613697856664658, 0.04029064252972603, 0.2139209657907486, 0.01930788718163967, 0.07602439820766449, 0.009178251959383488, 0.015704216435551643, 0.0034215927589684725, 0.0053702462464571, 0.04171208292245865, 0.19876797497272491], [0.23590433597564697, 0.09341491013765335, 0.0005686991498805583, 0.0005786936380900443, 0.00023391096328850836, 0.00042569151264615357, 0.0003405431052669883, 0.043897975236177444, 0.287322074174881, 0.0001553949696244672, 0.0351424366235733, 0.00034968854743056, 0.0008663987391628325, 0.00017870480951387435, 0.0009610105189494789, 0.0028025154024362564, 0.29685696959495544], [0.18811707198619843, 0.0016972137382254004, 0.18767330050468445, 0.00016323788440786302, 5.168560892343521e-05, 0.0009534471901133657, 8.584388706367463e-05, 0.1018204540014267, 0.25854259729385376, 0.0017019759397953749, 0.004170809872448444, 1.5877159967203625e-05, 0.00018002472643274814, 0.0009695717017166317, 0.009097996167838573, 0.0026784855872392654, 0.24208037555217743], [0.28926950693130493, 0.0015674886526539922, 9.536379366181791e-05, 0.07221740484237671, 0.0005470728501677513, 0.0002228240336989984, 0.0010531652951613069, 0.019259821623563766, 0.3193008303642273, 0.002631148789077997, 0.0011153884697705507, 0.00145718886051327, 0.00030278589110821486, 0.0006343895802274346, 0.0008347824914380908, 0.05843406915664673, 0.231056809425354], [0.20780760049819946, 0.0005846386193297803, 1.0100829967996106e-05, 0.0006643246742896736, 0.17330071330070496, 5.8346362493466586e-05, 0.00034883408807218075, 0.005748165771365166, 0.3434559404850006, 0.002203787211328745, 0.0006029244395904243, 0.0016555625479668379, 0.0005708352546207607, 4.940937287756242e-05, 1.6163879990926944e-05, 0.0005727290408685803, 0.2623499035835266], [0.3277789354324341, 0.001324411015957594, 0.00033646103111095726, 0.000353420851752162, 0.00025029273820109665, 0.03000376746058464, 4.544815055851359e-06, 0.007027946412563324, 0.3152473270893097, 0.0009667730773799121, 0.00019890819385182112, 4.651370181818493e-05, 7.607298175571486e-05, 0.0006661259103566408, 0.00017799067427404225, 0.0018292013555765152, 0.3137113153934479], [0.2296553999185562, 0.0009228094131685793, 3.078273221035488e-05, 0.0019436333095654845, 0.0003447277413215488, 2.3380230231850874e-06, 0.13296885788440704, 0.0057099550031125546, 0.3332619071006775, 0.012380699627101421, 0.0022470541298389435, 0.0030546793714165688, 0.001296443399041891, 0.00011021554382750764, 2.0596973627107218e-05, 0.0009140309994108975, 0.2751358449459076], [0.3935525417327881, 0.10131669789552689, 0.0077517409808933735, 0.01885724999010563, 0.005897756200283766, 0.0032082691323012114, 0.0014689310919493437, 0.019251234829425812, 0.1920815259218216, 0.003723181551322341, 0.015901226550340652, 0.0061441585421562195, 0.005703573115170002, 0.0019398258300498128, 0.0024472379591315985, 0.017573729157447815, 0.2031809538602829], [0.3139020502567291, 0.04612087458372116, 0.034567691385746, 0.018136130645871162, 0.014624722301959991, 0.03642646223306656, 0.0028493322897702456, 0.06824260950088501, 0.15243707597255707, 0.011110741645097733, 0.01596137136220932, 0.005699531175196171, 0.0139088723808527, 0.00915519054979086, 0.017806829884648323, 0.028394008055329323, 0.21065641939640045], [0.3952358067035675, 0.0018169309478253126, 0.0006401372374966741, 0.0022998496424406767, 0.00395448412746191, 0.0013010089751332998, 0.006638898979872465, 0.010611708275973797, 0.17060349881649017, 0.22119642794132233, 0.00010934696911135688, 0.0006643557571806014, 3.328196544316597e-05, 9.428051271243021e-05, 0.0008516028174199164, 0.0016511741559952497, 0.18229711055755615], [0.32721415162086487, 0.09639663249254227, 0.0016054569277912378, 0.0004703406593762338, 0.0002142055018339306, 0.00013674484216608107, 0.0007460075430572033, 0.013670305721461773, 0.14843612909317017, 0.00010933079465758055, 0.24741867184638977, 5.6484659580746666e-05, 0.0003197313053533435, 6.398563982656924e-06, 9.052497625816613e-05, 0.0010705945314839482, 0.16203829646110535], [0.30754250288009644, 0.0009476087288931012, 3.085290927629103e-06, 0.001100786030292511, 0.000625999120529741, 5.30617508047726e-05, 0.0006682449020445347, 0.004559790715575218, 0.23483937978744507, 0.00020654189574997872, 3.1595060136169195e-05, 0.28347548842430115, 1.4062512491364032e-05, 6.494088665931486e-06, 2.4871154892025515e-05, 0.000385942286811769, 0.1655144989490509], [0.22668159008026123, 0.0026423290837556124, 2.5871360776363872e-05, 0.0003170525305904448, 0.0018173913704231381, 0.00018161829211749136, 0.0013966673286631703, 0.010686048306524754, 0.2911210060119629, 0.00011430634185671806, 0.0010190752800554037, 0.00011227899085497484, 0.22408342361450195, 0.00010809279046952724, 9.568055247655138e-05, 0.0019795112311840057, 0.23761805891990662], [0.22935882210731506, 0.001239060889929533, 0.0002068211615551263, 0.0007138069486245513, 0.00012699555372819304, 0.0002493307401891798, 3.352266867295839e-05, 0.004078928846865892, 0.21864815056324005, 2.8114787710364908e-05, 9.27734981814865e-06, 1.0227522579953074e-05, 4.4142485421616584e-05, 0.38679930567741394, 0.0003356502566020936, 0.0004880965279880911, 0.15762969851493835], [0.4362337291240692, 0.0049179838970303535, 0.003379747038707137, 0.000696059491019696, 5.3383315389510244e-05, 0.0001347169018117711, 4.089279173058458e-05, 0.017139635980129242, 0.27210748195648193, 0.0005381380906328559, 0.00010418159945402294, 3.7957102904329076e-05, 6.06112735113129e-05, 0.0007822462357580662, 0.0652136504650116, 0.0005113249644637108, 0.19804832339286804], [0.33256620168685913, 0.0036038111429661512, 0.0003811477217823267, 0.008409728296101093, 0.00041850630077533424, 0.00026936628273688257, 0.00011917229858227074, 0.010657011531293392, 0.31702518463134766, 0.0003735825594048947, 0.00045285469968803227, 0.00014789750275667757, 0.00029891918529756367, 0.00028292369097471237, 9.962243348127231e-05, 0.0935000404715538, 0.2313941866159439], [0.327828586101532, 0.039426300674676895, 0.018262511119246483, 0.011622877791523933, 0.011556536890566349, 0.03138080611824989, 0.002868588315322995, 0.0779644176363945, 0.22032298147678375, 0.011494921520352364, 0.01386911328881979, 0.0033865408040583134, 0.008826795034110546, 0.006341163069009781, 0.011007431894540787, 0.020613398402929306, 0.18322715163230896]], [[0.22404423356056213, 0.009187303483486176, 0.030839409679174423, 0.003122019814327359, 0.00626831641420722, 0.0075899092480540276, 0.001497644349001348, 0.016502829268574715, 0.11780377477407455, 0.1815018355846405, 0.010765873827040195, 0.024326590821146965, 0.016497954726219177, 0.010893646627664566, 0.015117834322154522, 0.018350284546613693, 0.3056905269622803], [0.2127855122089386, 0.028610223904252052, 0.011633998714387417, 0.022930029779672623, 0.0068074800074100494, 0.01159227266907692, 0.006404152140021324, 0.16352684795856476, 0.30165189504623413, 0.00226025958545506, 0.004792015999555588, 0.004492836073040962, 0.0010328976204618812, 0.0008022096590138972, 0.002699598204344511, 0.005397929809987545, 0.2125798463821411], [0.24353277683258057, 0.04662283882498741, 0.05093754455447197, 0.016677314415574074, 0.006513838656246662, 0.010542158037424088, 0.005945499986410141, 0.07141199707984924, 0.26227810978889465, 0.0038042343221604824, 0.004336316138505936, 0.005305994302034378, 0.0013808937510475516, 0.00198767171241343, 0.007124859374016523, 0.004154199734330177, 0.2574436068534851], [0.2752525210380554, 0.04256882891058922, 0.008304232731461525, 0.04304187372326851, 0.0323055200278759, 0.014715862460434437, 0.006687971297651529, 0.2134365737438202, 0.19429191946983337, 0.0024805362336337566, 0.005857239011675119, 0.01179262064397335, 0.002238689921796322, 0.0008794603636488318, 0.005074869375675917, 0.004582161549478769, 0.13648924231529236], [0.32165247201919556, 0.0450129359960556, 0.011882772669196129, 0.09307406097650528, 0.04269018396735191, 0.03969000279903412, 0.01161148026585579, 0.1484362930059433, 0.1635918766260147, 0.001413102843798697, 0.0033588726073503494, 0.00589297479018569, 0.002967578824609518, 0.0005604822654277086, 0.0030677730683237314, 0.006309079471975565, 0.09878811985254288], [0.18568414449691772, 0.09832528978586197, 0.03872985765337944, 0.13517391681671143, 0.11998328566551208, 0.03997296094894409, 0.031380970031023026, 0.12693044543266296, 0.09478933364152908, 0.0026213431265205145, 0.013192687183618546, 0.018202470615506172, 0.007382223382592201, 0.0019618868827819824, 0.013418799266219139, 0.005354241002351046, 0.06689624488353729], [0.16496127843856812, 0.047331273555755615, 0.009102138690650463, 0.06733017414808273, 0.035812873393297195, 0.030542360618710518, 0.006878948770463467, 0.31680160760879517, 0.17043671011924744, 0.003096112282946706, 0.006595946848392487, 0.012208394706249237, 0.0016734598902985454, 0.00037642274401150644, 0.0032162696588784456, 0.008693660609424114, 0.11494236439466476], [0.19085519015789032, 0.06018442288041115, 0.011834525503218174, 0.08649411052465439, 0.019225798547267914, 0.011613625101745129, 0.012696342542767525, 0.19684702157974243, 0.20097532868385315, 0.006559760309755802, 0.019277941435575485, 0.008613570593297482, 0.004053181037306786, 0.00227136118337512, 0.006634105462580919, 0.024815760552883148, 0.13704797625541687], [0.30690258741378784, 0.02679472230374813, 0.011255483143031597, 0.02604091912508011, 0.012265798635780811, 0.00618348503485322, 0.004539648536592722, 0.09630091488361359, 0.2539031207561493, 0.006021426524966955, 0.011271647177636623, 0.007742289453744888, 0.0027321702800691128, 0.0017309455433860421, 0.0032706332858651876, 0.013799375854432583, 0.20924486219882965], [0.20987045764923096, 0.005762506276369095, 0.0012960791354998946, 0.009004318155348301, 0.001947010401636362, 0.0025654539931565523, 0.0050395093858242035, 0.21396028995513916, 0.17319928109645844, 0.005859806668013334, 0.017655963078141212, 0.013937211595475674, 0.012490552850067616, 0.003946955315768719, 0.007475710939615965, 0.0757952332496643, 0.24019363522529602], [0.29504281282424927, 0.011301913298666477, 0.007198079489171505, 0.010319914668798447, 0.005185090471059084, 0.004785916768014431, 0.002487111371010542, 0.11605797708034515, 0.18971474468708038, 0.011346149258315563, 0.006001610308885574, 0.013856709003448486, 0.003458983963355422, 0.001941423979587853, 0.006526427809149027, 0.03637920320034027, 0.27839601039886475], [0.3753051161766052, 0.017154471948742867, 0.0019981185905635357, 0.036559104919433594, 0.005707910284399986, 0.003839462297037244, 0.003966993652284145, 0.15112626552581787, 0.11763722449541092, 0.004961076658219099, 0.029356716200709343, 0.015592940151691437, 0.009380440227687359, 0.0031562307849526405, 0.010151279158890247, 0.07818426191806793, 0.1359224170446396], [0.26478636264801025, 0.021863367408514023, 0.002591127762570977, 0.013034133240580559, 0.004433171823620796, 0.0015097843715921044, 0.0042487927712500095, 0.30276185274124146, 0.15307000279426575, 0.002136186696588993, 0.014849446713924408, 0.016725076362490654, 0.0025098377373069525, 0.0032316420692950487, 0.004887160379439592, 0.013315770775079727, 0.1740463227033615], [0.3923172056674957, 0.0379229411482811, 0.004498607944697142, 0.01900322549045086, 0.009744742885231972, 0.0049546645022928715, 0.006934881675988436, 0.18183450400829315, 0.07574349641799927, 0.002829605480656028, 0.03242478519678116, 0.03320515528321266, 0.021991034969687462, 0.0008035348728299141, 0.059604462236166, 0.019003497436642647, 0.0971836969256401], [0.32964029908180237, 0.02343744784593582, 0.004301612265408039, 0.014635363593697548, 0.0034210134763270617, 0.005026042461395264, 0.007740766741335392, 0.174477681517601, 0.1553230732679367, 0.0029629396740347147, 0.033561501652002335, 0.008458543568849564, 0.004247010685503483, 0.00549670634791255, 0.008897955529391766, 0.029893584549427032, 0.1884784996509552], [0.3046429753303528, 0.02137015387415886, 0.005005453247576952, 0.015783295035362244, 0.009150386787950993, 0.003989753313362598, 0.0032189199700951576, 0.13954909145832062, 0.14953553676605225, 0.011478420346975327, 0.02154521830379963, 0.03223951533436775, 0.007771638687700033, 0.0027041954454034567, 0.019880862906575203, 0.019679173827171326, 0.23245543241500854], [0.2823575437068939, 0.016558093950152397, 0.007606648374348879, 0.01545813400298357, 0.005638604983687401, 0.0032766794320195913, 0.0029583959840238094, 0.09284613281488419, 0.22527742385864258, 0.011906598694622517, 0.015356337651610374, 0.012299875728785992, 0.00417743343859911, 0.0033858788665384054, 0.00439974432811141, 0.026879584416747093, 0.26961687207221985]], [[0.09703102707862854, 0.03220197558403015, 0.005146260838955641, 0.019691308960318565, 0.0015193107537925243, 0.013793233782052994, 0.002776895882561803, 0.06201622262597084, 0.3223714232444763, 0.02474409155547619, 0.00466509722173214, 0.004022928886115551, 0.002097614575177431, 0.0042184083722531796, 0.0014336570166051388, 0.030124951153993607, 0.37214547395706177], [0.17076697945594788, 0.0997667908668518, 0.02683289907872677, 0.015133483335375786, 0.01018153689801693, 0.01725509762763977, 0.011523970402777195, 0.07351073622703552, 0.16353842616081238, 0.043221037834882736, 0.14786438643932343, 0.009291380643844604, 0.0054242853075265884, 0.003237460507079959, 0.003805671352893114, 0.026077480986714363, 0.17256835103034973], [0.2783249318599701, 0.02409948594868183, 0.03177265450358391, 0.0024664346128702164, 0.0008172832312993705, 0.0029011291917413473, 0.001166883739642799, 0.09870889782905579, 0.19315457344055176, 0.0034173615276813507, 0.02178138494491577, 0.0017446019919589162, 0.0021276427432894707, 0.045160967856645584, 0.03221365436911583, 0.012858804315328598, 0.24728335440158844], [0.26640909910202026, 0.009586221538484097, 0.005568946711719036, 0.049182627350091934, 0.002268919488415122, 0.02529790624976158, 0.005396824795752764, 0.04639700427651405, 0.21966488659381866, 0.016346022486686707, 0.0019607350695878267, 0.0046170842833817005, 0.0024304187390953302, 0.005317733157426119, 0.004196048714220524, 0.09821679443120956, 0.2371426671743393], [0.25860005617141724, 0.014897421933710575, 0.0019000177271664143, 0.00768154626712203, 0.00138087198138237, 0.01306932047009468, 0.004856158513575792, 0.10667171329259872, 0.2330295592546463, 0.0030923134181648493, 0.0032360360492020845, 0.008482899516820908, 0.0058883060701191425, 0.006939415819942951, 0.005025846417993307, 0.036787211894989014, 0.2884610891342163], [0.299007385969162, 0.013951770961284637, 0.008937290869653225, 0.01354428380727768, 0.0009622995858080685, 0.006932614836841822, 0.002046124078333378, 0.12154050916433334, 0.20369122922420502, 0.004640206228941679, 0.006814151536673307, 0.00821527186781168, 0.0071725440211594105, 0.009322093799710274, 0.006301621440798044, 0.0319623239338398, 0.2549581825733185], [0.26717832684516907, 0.021424047648906708, 0.005397978704422712, 0.007558157667517662, 0.0014462074032053351, 0.013391975313425064, 0.003012719564139843, 0.055652618408203125, 0.2632453143596649, 0.005558896344155073, 0.004034125711768866, 0.002607528818771243, 0.002253395738080144, 0.0027265259996056557, 0.0017540052067488432, 0.017231985926628113, 0.3255261182785034], [0.0903635323047638, 0.04783948138356209, 0.021035343408584595, 0.03132093325257301, 0.03722129389643669, 0.05907224491238594, 0.013983873650431633, 0.11372509598731995, 0.0825207456946373, 0.13152764737606049, 0.011705374345183372, 0.021000642329454422, 0.05724185332655907, 0.046011146157979965, 0.02264517918229103, 0.0858134999871254, 0.12697207927703857], [0.10567986965179443, 0.029719671234488487, 0.016413334757089615, 0.011662883684039116, 0.02987338788807392, 0.047923047095537186, 0.01618053950369358, 0.16713537275791168, 0.12307479977607727, 0.023399515077471733, 0.015143640339374542, 0.02448997274041176, 0.03629350662231445, 0.06455422192811966, 0.018759675323963165, 0.0634353831410408, 0.2062610685825348], [0.31985634565353394, 0.03799072653055191, 0.0038136872462928295, 0.043138500303030014, 0.0222634207457304, 0.05659031867980957, 0.021846959367394447, 0.16525664925575256, 0.09792320430278778, 0.004200590308755636, 0.008484791032969952, 0.01640312373638153, 0.006441842298954725, 0.010949919931590557, 0.000888711423613131, 0.03805716708302498, 0.14589402079582214], [0.23613311350345612, 0.22397688031196594, 0.05252093821763992, 0.023578016087412834, 0.0063842060044407845, 0.007359006442129612, 0.006432905327528715, 0.07066486775875092, 0.07237928360700607, 0.016607576981186867, 0.17710672318935394, 0.00237080454826355, 0.0007672299980185926, 0.002227987162768841, 0.001268949476070702, 0.016797464340925217, 0.08342400193214417], [0.4162965714931488, 0.023703033104538918, 0.005078424233943224, 0.00811045989394188, 0.00425873976200819, 0.021713633090257645, 0.004882904700934887, 0.09108726680278778, 0.16075964272022247, 0.0061604930087924, 0.0031443138141185045, 0.002245415234938264, 0.005060181953012943, 0.005507911089807749, 0.002887589391320944, 0.021300330758094788, 0.21780315041542053], [0.27463674545288086, 0.017799386754631996, 0.03629354387521744, 0.00939211342483759, 0.00317370449192822, 0.01879732683300972, 0.005804486107081175, 0.11809951812028885, 0.19079633057117462, 0.003336308291181922, 0.0040556928142905235, 0.008462403900921345, 0.002116583986207843, 0.004215013701468706, 0.00417370954528451, 0.04174119606614113, 0.2571059763431549], [0.3024560511112213, 0.032547786831855774, 0.040002916008234024, 0.012277884408831596, 0.0030880861449986696, 0.01899184100329876, 0.004788948222994804, 0.15415412187576294, 0.14186060428619385, 0.0017129492480307817, 0.005325031466782093, 0.00914151594042778, 0.006560756359249353, 0.0046642497181892395, 0.010934620164334774, 0.057021237909793854, 0.19447149336338043], [0.30245688557624817, 0.021099543198943138, 0.030815938487648964, 0.003993559628725052, 0.0021287144627422094, 0.026269113644957542, 0.0024147252552211285, 0.1673903614282608, 0.17521771788597107, 0.0005891172331757843, 0.004202599171549082, 0.002888341899961233, 0.0014854454202577472, 0.006945270113646984, 0.000805056479293853, 0.011658421717584133, 0.23963919281959534], [0.2843210697174072, 0.03152967616915703, 0.003723833477124572, 0.06585222482681274, 0.003251809859648347, 0.011879992671310902, 0.003824991174042225, 0.06839574873447418, 0.17949014902114868, 0.027393124997615814, 0.003633933374658227, 0.0034882931504398584, 0.0015915933763608336, 0.014812763780355453, 0.009673142805695534, 0.08029397577047348, 0.20684362947940826], [0.10668598115444183, 0.02907514199614525, 0.021513856947422028, 0.012126919813454151, 0.03529800474643707, 0.049412794411182404, 0.01754113845527172, 0.17067867517471313, 0.11266523599624634, 0.02353556454181671, 0.015040814876556396, 0.024802949279546738, 0.04028703272342682, 0.07297728210687637, 0.02032008022069931, 0.0635015144944191, 0.18453703820705414]]], [[[0.010973572731018066, 0.014845030382275581, 0.022055495530366898, 0.0026220425497740507, 0.007935742847621441, 0.01486633438616991, 0.009585713967680931, 0.02672129124403, 0.5104263424873352, 0.0002145023172488436, 0.0013254826189950109, 0.00035148864844813943, 0.0007792221149429679, 0.0006743393023498356, 0.000960935780312866, 0.0017869849689304829, 0.3738754391670227], [0.016189008951187134, 0.01502901315689087, 0.40647879242897034, 0.005121450871229172, 0.11581943929195404, 0.14942428469657898, 0.13546043634414673, 0.015917088836431503, 0.04806835576891899, 0.0008404847467318177, 0.0022975471802055836, 0.0048073758371174335, 0.010099419392645359, 0.00848411675542593, 0.023126358166337013, 0.005578957032412291, 0.03725787252187729], [0.02789466083049774, 0.028451690450310707, 0.027696767821907997, 0.000520958739798516, 0.01085966918617487, 0.03831902891397476, 0.030618218705058098, 0.01882346160709858, 0.42063966393470764, 0.0006749082240276039, 0.0015658607007935643, 0.0037833349779248238, 0.0038365276996046305, 0.005655630957335234, 0.011002609506249428, 0.0018818125827237964, 0.3677752614021301], [0.014665553346276283, 0.4109187424182892, 0.1008564829826355, 0.0032074612099677324, 0.0436251126229763, 0.1706613004207611, 0.06259061396121979, 0.012122035957872868, 0.08356226235628128, 0.008915208280086517, 0.0058303349651396275, 0.007323183119297028, 0.006034854333847761, 0.0032316127326339483, 0.002881755819544196, 0.0003940360329579562, 0.0631793811917305], [0.01300919521600008, 0.2089272290468216, 0.06511922180652618, 0.023526335135102272, 0.029193414375185966, 0.25744959712028503, 0.1908273845911026, 0.022318068891763687, 0.0692194476723671, 0.0011302514467388391, 0.0022162070963531733, 0.00935986079275608, 0.0033115744590759277, 0.008103566244244576, 0.03962770849466324, 0.0007054639863781631, 0.055955443531274796], [0.047366488724946976, 0.07275886833667755, 0.14623956382274628, 0.16915209591388702, 0.051790446043014526, 0.02008923329412937, 0.06735452264547348, 0.09909037500619888, 0.11704691499471664, 0.0017620933940634131, 0.0060837347991764545, 0.004070416558533907, 0.014515632763504982, 0.006130069959908724, 0.06684812158346176, 0.005031967535614967, 0.10466952621936798], [0.018365757539868355, 0.05502869933843613, 0.031771980226039886, 0.7670526504516602, 0.034072138369083405, 0.04932161048054695, 0.0013193270424380898, 0.018009938299655914, 0.008231310173869133, 0.0006400452693924308, 0.001183435320854187, 0.0021507628262043, 0.0015978373121470213, 0.0008830464212223887, 0.003773536765947938, 0.0003717515792232007, 0.00622624671086669], [0.04401952400803566, 0.03226006031036377, 0.14829698204994202, 0.02315174601972103, 0.06532474607229233, 0.12351652979850769, 0.01807529293000698, 0.051587626338005066, 0.23651264607906342, 0.008278613910079002, 0.012150119058787823, 0.008223667740821838, 0.006942181382328272, 0.00701279379427433, 0.018046025186777115, 0.004645165055990219, 0.19195625185966492], [0.008014025166630745, 0.002453271532431245, 0.002284110290929675, 0.0005950079066678882, 0.0009291530004702508, 0.0014843737008050084, 0.0009571752743795514, 0.009511671029031277, 0.512028157711029, 0.00048043765127658844, 0.0004840755427721888, 0.0005090604536235332, 0.000877571408636868, 0.000561970635317266, 0.0005855957278981805, 0.002642277395352721, 0.45560210943222046], [0.05893915519118309, 0.004959069192409515, 0.09357424080371857, 0.00190543953794986, 0.009960702620446682, 0.04426253214478493, 0.015621045604348183, 0.00938519649207592, 0.19872264564037323, 0.0016963587841019034, 0.04343685135245323, 0.023814281448721886, 0.02632875181734562, 0.036393698304891586, 0.1093456894159317, 0.04231872782111168, 0.2793356478214264], [0.01992052234709263, 0.006161093711853027, 0.007589926477521658, 0.00046238701906986535, 0.005520354025065899, 0.024907352402806282, 0.012775149196386337, 0.005661738570779562, 0.32653382420539856, 0.0020882582757622004, 0.0021655098535120487, 0.015465816482901573, 0.03194478154182434, 0.030286500230431557, 0.07281152158975601, 0.01618834026157856, 0.4195168912410736], [0.036059796810150146, 0.010527840815484524, 0.004981519654393196, 0.0029798285104334354, 0.0007715271203778684, 0.006110026966780424, 0.0034477165900170803, 0.010959194973111153, 0.20585474371910095, 0.00044907856499776244, 0.010765604674816132, 0.0028897759038954973, 0.1274241805076599, 0.15617790818214417, 0.0760139673948288, 0.041925206780433655, 0.3026621341705322], [0.016502052545547485, 0.003211716189980507, 0.004133071284741163, 0.0006781511474400759, 0.002640243386849761, 0.01132307667285204, 0.003016370115801692, 0.008973664604127407, 0.13929511606693268, 0.00045586933265440166, 0.004585266578942537, 0.009204753674566746, 0.04407932609319687, 0.3028356432914734, 0.2534273862838745, 0.0154296038672328, 0.1802086979150772], [0.028918199241161346, 0.004348126705735922, 0.004228840582072735, 0.002513051498681307, 0.0009302482358179986, 0.0009891161462292075, 0.0013943141093477607, 0.0123847471550107, 0.05579974129796028, 0.010748859494924545, 0.011472832411527634, 0.006188303232192993, 0.015000557526946068, 0.006573528982698917, 0.013217327184975147, 0.7583897113800049, 0.06690241396427155], [0.03434761241078377, 0.004570739809423685, 0.009555219672620296, 0.0029089529998600483, 0.0013298295671120286, 0.002127466257661581, 0.0007698537083342671, 0.03190582990646362, 0.03863202780485153, 0.005823454353958368, 0.01081096287816763, 0.004527913872152567, 0.016536278650164604, 0.012182661332190037, 0.011118763126432896, 0.7706246376037598, 0.04222780838608742], [0.03200674429535866, 0.009288210421800613, 0.029990360140800476, 0.000543253670912236, 0.007822990417480469, 0.017453720793128014, 0.0022451900877058506, 0.011948894709348679, 0.023673368617892265, 0.6120604276657104, 0.1465435028076172, 0.014453024603426456, 0.028639061376452446, 0.009268267080187798, 0.01893697865307331, 0.00406336085870862, 0.031062575057148933], [0.00889130961149931, 0.001662836642935872, 0.0015882020816206932, 0.0004541071830317378, 0.0006766048027202487, 0.0011294177966192365, 0.000691256660502404, 0.007943513803184032, 0.48110243678092957, 0.000716417795047164, 0.0006372368079610169, 0.0007312323432415724, 0.0012041775044053793, 0.0008390186703763902, 0.0008140855352394283, 0.003646201454102993, 0.48727190494537354]], [[0.12759742140769958, 0.002641474362462759, 0.018322398886084557, 0.0009617983014322817, 0.0003980716865044087, 0.0021033675875514746, 0.0011466017458587885, 0.005177818238735199, 0.2399589568376541, 0.029403721913695335, 0.04501628875732422, 0.013487356714904308, 0.05238167569041252, 0.03203549608588219, 0.01721315085887909, 0.05518418923020363, 0.35697028040885925], [0.05798911675810814, 0.01655115932226181, 0.21509882807731628, 0.0039933170191943645, 0.0006378262769430876, 0.009745080024003983, 0.0018475927645340562, 0.030218685045838356, 0.33957552909851074, 0.0006990835536271334, 0.0030042503494769335, 0.0016487378161400557, 0.0037539382465183735, 0.0025319443084299564, 0.004574748687446117, 0.005559454206377268, 0.30257076025009155], [0.011131302453577518, 0.0037082000635564327, 0.3892751932144165, 0.004684797488152981, 0.0028307328466326, 0.013075975701212883, 0.005537704098969698, 0.007429618388414383, 0.2873665988445282, 0.0012595867738127708, 0.001423293026164174, 0.0009203414665535092, 0.0012776433723047376, 0.001001540687866509, 0.0014781435020267963, 0.003450704738497734, 0.2641487717628479], [0.07821319252252579, 0.034390296787023544, 0.08508602529764175, 0.0049172090366482735, 0.0010389633243903518, 0.023218179121613503, 0.00403863238170743, 0.03876839578151703, 0.3807511329650879, 0.0012927333591505885, 0.004972738213837147, 0.003812238108366728, 0.001470681163482368, 0.00024343901895917952, 0.0005249351379461586, 0.005401398986577988, 0.3318597376346588], [0.04820982366800308, 0.026434097439050674, 0.04411632567644119, 0.00512579595670104, 0.0006215384928509593, 0.018394887447357178, 0.005331367254257202, 0.11766041815280914, 0.3907431364059448, 0.0009903975296765566, 0.0023226693738251925, 0.002586232963949442, 0.0006157384486868978, 6.950420356588438e-05, 0.00017569551710039377, 0.003024033736437559, 0.3335783779621124], [0.09430507570505142, 0.026930296793580055, 0.039912737905979156, 0.005324020516127348, 0.0009463638998568058, 0.017952777445316315, 0.0044166757725179195, 0.03244282305240631, 0.4042772650718689, 0.0015575711149722338, 0.011453396640717983, 0.0009170050616376102, 0.0017110316548496485, 9.99456096906215e-05, 0.0005563996382988989, 0.007068190723657608, 0.35012832283973694], [0.014356883242726326, 0.013352934271097183, 0.011027355678379536, 0.002892084186896682, 0.00046779081458225846, 0.0040612113662064075, 0.0005426998832263052, 0.03641800582408905, 0.4880227744579315, 0.0008454924100078642, 0.00048002315452322364, 0.0008909572497941554, 0.0009645803365856409, 0.00021340344392228872, 0.0007506029214709997, 0.004851281177252531, 0.4198618233203888], [0.08017683774232864, 0.031582266092300415, 0.1411472111940384, 0.00836728885769844, 0.0022520816419273615, 0.014069038443267345, 0.005743908695876598, 0.04028191789984703, 0.33867013454437256, 0.0017679514130577445, 0.0040212357416749, 0.003211193485185504, 0.004232272505760193, 0.0037808921188116074, 0.003924116957932711, 0.006890976335853338, 0.30988073348999023], [0.09928568452596664, 0.01973758265376091, 0.03508320450782776, 0.00711445277556777, 0.0009905463084578514, 0.0034138828050345182, 0.002053978154435754, 0.11052355915307999, 0.325686514377594, 0.0039240955375134945, 0.006915200036019087, 0.004005827009677887, 0.0034744315780699253, 0.0010585907148197293, 0.0023890682496130466, 0.012573249638080597, 0.36177003383636475], [0.14523206651210785, 0.004370057489722967, 0.00713363429531455, 0.000566799018997699, 0.0002683750935830176, 0.002279791748151183, 0.0010023448849096894, 0.01880032569169998, 0.33974114060401917, 0.0034246111754328012, 0.011534811928868294, 0.0038573420606553555, 0.00985016580671072, 0.0008040035027079284, 0.0012686030240729451, 0.014856799505650997, 0.43500906229019165], [0.10187390446662903, 0.008110197260975838, 0.4530135989189148, 0.0032188883051276207, 0.0011650349479168653, 0.01108372863382101, 0.0020951619371771812, 0.008180157281458378, 0.1476217806339264, 0.0054847379215061665, 0.010686046443879604, 0.011580334044992924, 0.029445620253682137, 0.010921631939709187, 0.01596014015376568, 0.012294610030949116, 0.16726449131965637], [0.07199853658676147, 0.005378678906708956, 0.001824289676733315, 0.0007286925683729351, 5.777660044259392e-05, 0.0007411994156427681, 0.0003564495127648115, 0.00934547744691372, 0.3786395192146301, 0.0059769367799162865, 0.011746933683753014, 0.0029733304399996996, 0.012123722583055496, 0.002662101062014699, 0.014138547703623772, 0.016141939908266068, 0.4651659429073334], [0.04819687083363533, 0.007004470564424992, 0.002005811780691147, 0.0011418426875025034, 0.00014645527699030936, 0.0006488825310952961, 0.00036462140269577503, 0.01453134510666132, 0.38899460434913635, 0.00808185338973999, 0.002570420503616333, 0.01464450266212225, 0.00245995563454926, 0.0044882227666676044, 0.007807701360434294, 0.015765361487865448, 0.48114702105522156], [0.0028171250596642494, 0.0002581830194685608, 0.010321768000721931, 0.0002449669409543276, 7.836687473172788e-06, 1.269724452868104e-05, 2.6008741770056076e-05, 0.0007407551165670156, 0.10632429271936417, 0.0020097922533750534, 0.00014643576287198812, 0.0008298148750327528, 0.005793146789073944, 0.09056054055690765, 0.6389860510826111, 0.0015513580292463303, 0.13936926424503326], [0.022478634491562843, 0.0018809805624186993, 0.03874971345067024, 0.0013490472920238972, 0.00017873753677122295, 0.00021559018932748586, 0.0003060683375224471, 0.006406242027878761, 0.3428303301334381, 0.004524475894868374, 0.0020458821672946215, 0.002325686626136303, 0.011292899027466774, 0.0387813001871109, 0.08969075232744217, 0.009814504534006119, 0.4271290600299835], [0.1784118115901947, 0.013392035849392414, 0.031874459236860275, 0.001495323027484119, 0.00045151100493967533, 0.007161801680922508, 0.0009671953157521784, 0.015159158036112785, 0.3048873245716095, 0.00976563896983862, 0.01224400382488966, 0.00756114674732089, 0.017550110816955566, 0.006095872260630131, 0.005096809938549995, 0.02016581781208515, 0.3677200376987457], [0.10374398529529572, 0.016477977856993675, 0.02411801367998123, 0.005720147863030434, 0.0007447206880897284, 0.00245878123678267, 0.0017309562535956502, 0.09839294850826263, 0.32528623938560486, 0.005455663427710533, 0.008655020967125893, 0.004578886087983847, 0.00449566962197423, 0.0012366364244371653, 0.0026502416003495455, 0.015306497924029827, 0.37894758582115173]], [[0.03353704512119293, 0.004694098141044378, 0.025402426719665527, 0.006758269853889942, 0.009840640239417553, 0.024118728935718536, 0.012706905603408813, 0.03391854465007782, 0.3314789831638336, 0.021580014377832413, 0.011276914738118649, 0.009882969781756401, 0.00516238808631897, 0.0021049596834927797, 0.007396898698061705, 0.01761094108223915, 0.4425293207168579], [0.013683877885341644, 0.027670934796333313, 0.03765421733260155, 0.021852822974324226, 0.005495890974998474, 0.02996671013534069, 0.08865571767091751, 0.03588790073990822, 0.39578983187675476, 0.007235392462462187, 0.0030585213098675013, 0.0010365747148171067, 0.0016964009264484048, 0.000606441986747086, 0.009456994011998177, 0.006040855310857296, 0.31421080231666565], [0.025705086067318916, 0.04889628291130066, 0.07281841337680817, 0.0016010240651667118, 0.0006987453089095652, 0.006124191917479038, 0.01375453919172287, 0.02647683396935463, 0.3953234851360321, 0.004304227419197559, 0.0031535611487925053, 0.0004450964042916894, 0.0011390179861336946, 0.0006755361100658774, 0.024200377985835075, 0.004302963148802519, 0.3703804612159729], [0.01923833042383194, 0.09826676547527313, 0.06297760456800461, 0.015220953151583672, 0.006857878994196653, 0.007348500192165375, 0.012302327901124954, 0.028309660032391548, 0.3820899724960327, 0.0483933724462986, 0.0027331318706274033, 0.0028866578359156847, 0.0007129637524485588, 0.0004307494964450598, 0.0022417716681957245, 0.0015804794384166598, 0.3084089159965515], [0.007056498900055885, 0.04310993477702141, 0.05480656027793884, 0.43375951051712036, 0.013916335999965668, 0.0050793858245015144, 0.013597850687801838, 0.023951562121510506, 0.20993900299072266, 0.005971364211291075, 0.0009546459186822176, 0.0027351337485015392, 4.728916610474698e-05, 0.000718635565135628, 0.0022134140599519014, 0.0011169197969138622, 0.18102595210075378], [0.003572630463168025, 0.017683137208223343, 0.07362271100282669, 0.7128459811210632, 0.05613403767347336, 0.0027720273938030005, 0.014338690787553787, 0.008431363850831985, 0.053321585059165955, 0.0013619221281260252, 0.0001982022513402626, 0.00039412450860254467, 5.013330883230083e-05, 5.638580478262156e-05, 0.0007312584784813225, 0.0002478231326676905, 0.05423804000020027], [0.0020653174724429846, 0.01215394027531147, 0.006761945318430662, 0.9123800992965698, 0.020709101110696793, 0.0011311762500554323, 0.00029579075635410845, 0.0023370953276753426, 0.020108764991164207, 0.0026155223604291677, 0.00025410830858163536, 0.0005855978233739734, 1.1566933608264662e-05, 8.825767872622237e-05, 0.00012408426846377552, 9.855776443146169e-05, 0.018279030919075012], [0.04648226499557495, 0.02777552604675293, 0.03084980510175228, 0.05609253793954849, 0.039116088300943375, 0.27781447768211365, 0.022532960399985313, 0.05209442600607872, 0.21780811250209808, 0.009599275887012482, 0.0040978435426950455, 0.003034740686416626, 0.0017333821160718799, 0.0013580142986029387, 0.004341691732406616, 0.0055438741110265255, 0.1997249573469162], [0.021380115300416946, 0.007451274432241917, 0.02679167129099369, 0.009715354070067406, 0.01041471492499113, 0.02453741803765297, 0.022088997066020966, 0.0370662659406662, 0.36317312717437744, 0.01284188125282526, 0.010637428611516953, 0.01088764052838087, 0.006658137310296297, 0.0060299355536699295, 0.0230949018150568, 0.01575629413127899, 0.3914748430252075], [0.008759306743741035, 0.0017021362436935306, 0.0030789608135819435, 0.0022681960836052895, 0.0004023327201139182, 0.019204553216695786, 0.009455198422074318, 0.03205280378460884, 0.39825835824012756, 0.02105966955423355, 0.005749039817601442, 0.002790131140500307, 0.00196623126976192, 0.001175210578367114, 0.0037712149787694216, 0.0052514155395329, 0.48305514454841614], [0.013387811370193958, 0.004353857599198818, 0.009090623818337917, 0.0037649269215762615, 0.0017662190366536379, 0.01526618655771017, 0.012045747600495815, 0.0251274686306715, 0.3874477446079254, 0.08490371704101562, 0.002081465907394886, 0.0017140712589025497, 0.000830847246106714, 0.0007690382190048695, 0.00365238799713552, 0.00841774232685566, 0.4253802001476288], [0.016170823946595192, 0.00860834401100874, 0.0013970256550237536, 0.030484246090054512, 0.002820461755618453, 0.00030802551191300154, 0.004427966196089983, 0.013040955178439617, 0.1426769196987152, 0.08620618283748627, 0.011666359379887581, 0.032822202891111374, 0.23797467350959778, 0.06326288729906082, 0.0210683923214674, 0.1790618747472763, 0.1480027139186859], [0.013409675098955631, 0.0016358235152438283, 0.000607586232945323, 0.0022632814943790436, 0.00014700574683956802, 0.002604493172839284, 0.0004976140917278826, 0.007984621450304985, 0.13281553983688354, 0.045495904982089996, 0.009842057712376118, 0.05439065396785736, 0.042849864810705185, 0.3019333779811859, 0.07328135520219803, 0.16856414079666138, 0.14167706668376923], [0.02218128740787506, 0.021137135103344917, 0.003321901196613908, 0.015765530988574028, 0.0027436725795269012, 0.0002585668698884547, 0.005819383542984724, 0.012072925455868244, 0.2434394657611847, 0.07781201601028442, 0.12173343449831009, 0.01955941878259182, 0.03972085937857628, 0.0325206033885479, 0.027027705684304237, 0.0850103497505188, 0.269875705242157], [0.04302673786878586, 0.01941583678126335, 0.006394318770617247, 0.009697443805634975, 0.0006676638731732965, 0.00038252034573815763, 0.0006676221964880824, 0.008733977563679218, 0.15230520069599152, 0.05339881032705307, 0.09822818636894226, 0.04369979351758957, 0.03310321271419525, 0.1294233649969101, 0.0293069276958704, 0.205490380525589, 0.16605804860591888], [0.03028547763824463, 0.004970422480255365, 0.0024086711928248405, 0.0006666664266958833, 0.00012095970305381343, 0.0019201028626412153, 0.00012939599400851876, 0.004376744385808706, 0.04789287596940994, 0.6670366525650024, 0.14895570278167725, 0.010437785647809505, 0.005437977612018585, 0.0013922702055424452, 0.0025613312609493732, 0.005723379552364349, 0.06568364053964615], [0.021704891696572304, 0.006437145639210939, 0.024342045187950134, 0.00929927546530962, 0.010311801917850971, 0.020022470504045486, 0.018554266542196274, 0.03209354728460312, 0.3309526741504669, 0.017253145575523376, 0.01439250260591507, 0.018619323149323463, 0.011425826698541641, 0.010454332455992699, 0.036537181586027145, 0.02314048819243908, 0.39445915818214417]], [[0.015340819023549557, 0.039972566068172455, 0.173325315117836, 0.08965891599655151, 0.20859722793102264, 0.19164416193962097, 0.1145470142364502, 0.04613492265343666, 0.0662824958562851, 0.0008031209581531584, 0.0031141480430960655, 0.001587149454280734, 0.0017294768476858735, 0.0008746676030568779, 0.003912828397005796, 0.001216887729242444, 0.0412583164870739], [0.10709633678197861, 0.07283935695886612, 0.15425942838191986, 0.04153507202863693, 0.017221730202436447, 0.05370108783245087, 0.03696885332465172, 0.12750950455665588, 0.2103251814842224, 0.004115224815905094, 0.0036073909141123295, 0.0016724473098292947, 0.0033570046070963144, 0.0027165482752025127, 0.004280829336494207, 0.006954418495297432, 0.15183955430984497], [0.14431950449943542, 0.07073533535003662, 0.01710463874042034, 0.015207719057798386, 0.03428482264280319, 0.05912376940250397, 0.010197699069976807, 0.05737580731511116, 0.28605106472969055, 0.010608941316604614, 0.00594597402960062, 0.0006583124632015824, 0.010156827978789806, 0.003376911161467433, 0.006534238811582327, 0.004466262646019459, 0.26385220885276794], [0.08174649626016617, 0.057545844465494156, 0.07483689486980438, 0.007350401487201452, 0.003945960663259029, 0.03843236342072487, 0.018390337005257607, 0.0839841365814209, 0.334446519613266, 0.0011158331762999296, 0.0026339907199144363, 0.0006781599950045347, 0.0012645306997001171, 0.0019380846060812473, 0.003171138698235154, 0.01854158751666546, 0.26997771859169006], [0.06425239145755768, 0.035323187708854675, 0.09783182293176651, 0.03267088904976845, 0.01850711926817894, 0.15324881672859192, 0.030414724722504616, 0.06134774535894394, 0.2496424913406372, 0.0014450299786403775, 0.0016293092630803585, 0.0008701831102371216, 0.001944629242643714, 0.0036254243459552526, 0.006345509551465511, 0.007463006302714348, 0.23343759775161743], [0.04493410140275955, 0.07069997489452362, 0.075708769261837, 0.012936316430568695, 0.06519918888807297, 0.06192650645971298, 0.072085902094841, 0.1528291553258896, 0.18797913193702698, 0.0017491821199655533, 0.003069923259317875, 0.0013769040815532207, 0.008406654000282288, 0.013589076697826385, 0.018448323011398315, 0.03519933298230171, 0.173861563205719], [0.08976485580205917, 0.06796978414058685, 0.043668922036886215, 0.02196810208261013, 0.028072841465473175, 0.08977725356817245, 0.025965522974729538, 0.11346259713172913, 0.2186966836452484, 0.0037033664993941784, 0.002970197005197406, 0.001287805032916367, 0.002708122134208679, 0.00792046170681715, 0.021867603063583374, 0.08752845227718353, 0.17266739904880524], [0.09163565188646317, 0.029838059097528458, 0.06207060441374779, 0.034162405878305435, 0.011816048063337803, 0.04278750717639923, 0.03643510490655899, 0.07961342483758926, 0.31168997287750244, 0.011864416301250458, 0.006808191072195768, 0.001561734126880765, 0.0042076497338712215, 0.0066185323521494865, 0.010175579227507114, 0.0249174814671278, 0.23379768431186676], [0.055009081959724426, 0.016647810116410255, 0.032131969928741455, 0.022200580686330795, 0.023030877113342285, 0.0218951478600502, 0.022324176505208015, 0.06163572892546654, 0.310249388217926, 0.012168697081506252, 0.011409128084778786, 0.019892089068889618, 0.014376652427017689, 0.021667052060365677, 0.023300351575016975, 0.04172728583216667, 0.29033398628234863], [0.1711912453174591, 0.010623871348798275, 0.011231782846152782, 0.003477185033261776, 0.0017342083156108856, 0.005840560887008905, 0.009801999665796757, 0.06413424015045166, 0.276796817779541, 0.019873522222042084, 0.060984332114458084, 0.025610795244574547, 0.010124742984771729, 0.005425992421805859, 0.010943528264760971, 0.005278751719743013, 0.3069263696670532], [0.26481521129608154, 0.009488977491855621, 0.015699239447712898, 0.0005160804721526802, 0.00034936791053041816, 0.0016722793225198984, 0.0015524107730016112, 0.0413542240858078, 0.26811230182647705, 0.030595878139138222, 0.023074021562933922, 0.005258235614746809, 0.016411537304520607, 0.005732754245400429, 0.006106399931013584, 0.018263444304466248, 0.2909976840019226], [0.12795551121234894, 0.013441663235425949, 0.004942802712321281, 0.002160585718229413, 0.0010796907590702176, 0.0038911595474928617, 0.0012969158124178648, 0.017203569412231445, 0.2819002866744995, 0.06505705416202545, 0.06328089535236359, 0.007845091633498669, 0.040057312697172165, 0.017944490537047386, 0.018586907535791397, 0.022392813116312027, 0.3109632730484009], [0.13007551431655884, 0.015273413620889187, 0.012284835800528526, 0.0038090432062745094, 0.0016354549443349242, 0.005744705442339182, 0.0016458057798445225, 0.03220919519662857, 0.24617919325828552, 0.024126902222633362, 0.09028711915016174, 0.043389659374952316, 0.013567181304097176, 0.0170480664819479, 0.05928710475564003, 0.025768481194972992, 0.277668297290802], [0.15170516073703766, 0.01491902582347393, 0.02569616213440895, 0.025702238082885742, 0.006355874240398407, 0.025803154334425926, 0.004133834969252348, 0.02999289706349373, 0.19618767499923706, 0.020703846588730812, 0.06998427957296371, 0.017897240817546844, 0.029291734099388123, 0.023805996403098106, 0.06463689357042313, 0.018756501376628876, 0.2744275629520416], [0.15583063662052155, 0.01573105715215206, 0.022779693827033043, 0.014888818375766277, 0.003644403303042054, 0.017298415303230286, 0.004269361961632967, 0.02750309184193611, 0.16951683163642883, 0.031332943588495255, 0.05508267506957054, 0.007559443823993206, 0.08190315961837769, 0.07170398533344269, 0.03221050649881363, 0.032327037304639816, 0.25641801953315735], [0.18699736893177032, 0.002329472219571471, 0.021755244582891464, 0.01376196090131998, 0.000809724791906774, 0.010529701597988605, 0.0045575243420898914, 0.06504624336957932, 0.21019411087036133, 0.010116730816662312, 0.028706198558211327, 0.011727341450750828, 0.009715944528579712, 0.02404075674712658, 0.04453139379620552, 0.03886324167251587, 0.31631720066070557], [0.06448955088853836, 0.013963649980723858, 0.02917107380926609, 0.018412627279758453, 0.019564948976039886, 0.017242856323719025, 0.01677178405225277, 0.05014842748641968, 0.26806533336639404, 0.015491144731640816, 0.01348561979830265, 0.02619824931025505, 0.019132710993289948, 0.03409269452095032, 0.0333671048283577, 0.06559543311595917, 0.2948067784309387]], [[0.08785546571016312, 0.023154892027378082, 0.06429734826087952, 0.031786054372787476, 0.01862933672964573, 0.005499887280166149, 0.014141811057925224, 0.016133353114128113, 0.13085180521011353, 0.04257943853735924, 0.11620363593101501, 0.018868422135710716, 0.10987429320812225, 0.060715850442647934, 0.052005037665367126, 0.059579454362392426, 0.14782392978668213], [0.050355229526758194, 0.029105104506015778, 0.1870446503162384, 0.00807579793035984, 0.007529054768383503, 0.006330855656415224, 0.01622489094734192, 0.019295884296298027, 0.06541924923658371, 0.023559704422950745, 0.37408357858657837, 0.01484439056366682, 0.02336292155086994, 0.013132275082170963, 0.031180664896965027, 0.05434305593371391, 0.07611273229122162], [0.022724397480487823, 0.04422933980822563, 0.5426883697509766, 0.0024908646009862423, 0.0013878637691959739, 0.00812041386961937, 0.000753621687181294, 0.03339673578739166, 0.13236024975776672, 0.009963495656847954, 0.0060404203832149506, 0.0012752666370943189, 0.003757701488211751, 0.0022014561109244823, 0.0043153315782547, 0.014550285413861275, 0.16974428296089172], [0.09590562433004379, 0.03011862188577652, 0.019929463043808937, 0.016256431117653847, 0.03461933881044388, 0.12509606778621674, 0.048083506524562836, 0.029528716579079628, 0.13458402454853058, 0.022195324301719666, 0.1285013109445572, 0.01789618656039238, 0.03151247650384903, 0.015516906976699829, 0.02850770764052868, 0.0776928961277008, 0.1440553516149521], [0.07536934316158295, 0.009664124809205532, 0.0061071328818798065, 0.040697697550058365, 0.12455844134092331, 0.27005907893180847, 0.022782867774367332, 0.02231401391327381, 0.11287368088960648, 0.02343214675784111, 0.02277006208896637, 0.028779348358511925, 0.06950505077838898, 0.005047628190368414, 0.00668099382892251, 0.04103831946849823, 0.1183200478553772], [0.09464231878519058, 0.017008045688271523, 0.08113357424736023, 0.009828610345721245, 0.011414406821131706, 0.3514114320278168, 0.0028048157691955566, 0.022607969120144844, 0.1563003808259964, 0.017244970425963402, 0.0035932743921875954, 0.009811855852603912, 0.012112116441130638, 0.00018629043188411742, 0.0028494782745838165, 0.03587246686220169, 0.17117799818515778], [0.09787283092737198, 0.025256548076868057, 0.018364306539297104, 0.012211504392325878, 0.011416743509471416, 0.043396636843681335, 0.009356028400361538, 0.008607021532952785, 0.3004753589630127, 0.011029512621462345, 0.04762692749500275, 0.020061636343598366, 0.021751176565885544, 0.0032079427037388086, 0.0028403415344655514, 0.013647926971316338, 0.3528776168823242], [0.1900794953107834, 0.04235231876373291, 0.05770864710211754, 0.04342237114906311, 0.016603482887148857, 0.015736976638436317, 0.010431384667754173, 0.048416830599308014, 0.23508548736572266, 0.02296815626323223, 0.019949723035097122, 0.007292553782463074, 0.0045737349428236485, 0.004969010595232248, 0.002545671770349145, 0.04959002509713173, 0.2282741814851761], [0.11443354189395905, 0.026537958532571793, 0.04224732518196106, 0.02834514155983925, 0.01429543737322092, 0.01624898612499237, 0.016276659443974495, 0.03218364715576172, 0.21034273505210876, 0.03435136005282402, 0.023371227085590363, 0.024535851553082466, 0.05385018140077591, 0.02015874534845352, 0.03759355470538139, 0.07628673315048218, 0.22894097864627838], [0.10238467901945114, 0.009599142707884312, 0.051687631756067276, 0.021734952926635742, 0.030580295249819756, 0.13926364481449127, 0.019718030467629433, 0.013973359018564224, 0.13918884098529816, 0.050414979457855225, 0.008590475656092167, 0.02460332028567791, 0.10249323397874832, 0.02212272584438324, 0.055966947227716446, 0.05752737447619438, 0.15015044808387756], [0.01155109703540802, 0.3665461838245392, 0.4071566164493561, 0.0012388606555759907, 0.0016497502801939845, 0.00016208062879741192, 0.0007624436402693391, 0.02213725820183754, 0.024681735783815384, 0.0011338567128404975, 0.13830946385860443, 4.9935082643060014e-05, 5.2626295655500144e-05, 4.983631515642628e-05, 0.00015292532043531537, 0.0019380685407668352, 0.022427253425121307], [0.0988735631108284, 0.00810533668845892, 0.003693265374749899, 0.02403714507818222, 0.01930871233344078, 0.09083115309476852, 0.045186009258031845, 0.018657997250556946, 0.1284719854593277, 0.03536965325474739, 0.006351954769343138, 0.12163133919239044, 0.16789932548999786, 0.021654589101672173, 0.04068566858768463, 0.02959786169230938, 0.13964448869228363], [0.04811043664813042, 0.02305556833744049, 0.015595187433063984, 0.024432215839624405, 0.029340848326683044, 0.06254052370786667, 0.015492081642150879, 0.008921829983592033, 0.141980841755867, 0.05552118271589279, 0.0060678510926663876, 0.08895387500524521, 0.2157292515039444, 0.042491886764764786, 0.0706239864230156, 0.01184166967868805, 0.13930077850818634], [0.01191096380352974, 0.024347836151719093, 0.025750786066055298, 0.004004873801022768, 0.0018154301214963198, 0.00015546784561593086, 0.0013384380144998431, 0.008701673708856106, 0.11745009571313858, 0.0010557923233136535, 0.006696704309433699, 0.006256043445318937, 0.010908727534115314, 0.24774286150932312, 0.3984084129333496, 0.004950797185301781, 0.12850512564182281], [0.013543233275413513, 0.04978056252002716, 0.020450223237276077, 0.0015240791253745556, 0.0006331190816126764, 0.00042383544496260583, 0.0011867423309013247, 0.0089890006929636, 0.06815314292907715, 0.001464169123210013, 0.004446992184966803, 0.0030188108794391155, 0.004341593943536282, 0.4266420006752014, 0.32678458094596863, 0.003989062737673521, 0.06462882459163666], [0.15897759795188904, 0.03445937857031822, 0.04916132614016533, 0.020893627777695656, 0.04645692557096481, 0.11105263978242874, 0.049921754747629166, 0.021978070959448814, 0.14342592656612396, 0.026382392272353172, 0.01543849240988493, 0.026979804039001465, 0.02332753874361515, 0.056262921541929245, 0.056463100016117096, 0.024026915431022644, 0.13479170203208923], [0.12157228589057922, 0.027919812127947807, 0.03722265735268593, 0.029451880604028702, 0.015367691405117512, 0.016029197722673416, 0.01955902948975563, 0.03163148835301399, 0.20774368941783905, 0.03366883099079132, 0.022494222968816757, 0.026550494134426117, 0.05728454887866974, 0.02301979809999466, 0.03992536664009094, 0.0698113664984703, 0.22074756026268005]], [[0.1809348315000534, 0.033141739666461945, 0.06134340167045593, 0.02586374059319496, 0.05698597431182861, 0.04101647809147835, 0.004441611468791962, 0.10319960862398148, 0.1605917066335678, 0.04244471713900566, 0.020551731809973717, 0.019739849492907524, 0.008925075642764568, 0.006484847515821457, 0.007126779295504093, 0.05254935845732689, 0.17465852200984955], [0.15892164409160614, 0.028050478547811508, 0.07106715440750122, 0.013302326202392578, 0.007649114355444908, 0.02539973519742489, 0.010387849994003773, 0.07051824033260345, 0.2318175733089447, 0.014579078182578087, 0.03858432546257973, 0.018992438912391663, 0.011108368635177612, 0.010106214322149754, 0.011578834615647793, 0.03644125536084175, 0.24149538576602936], [0.22064755856990814, 0.020712655037641525, 0.012760325334966183, 0.001798607292585075, 0.0005470352480188012, 0.0029742869082838297, 0.0014105021255090833, 0.09252924472093582, 0.17975394427776337, 0.001134228310547769, 0.004774211905896664, 0.0027527494821697474, 0.007298382464796305, 0.03465916961431503, 0.21013043820858002, 0.016613628715276718, 0.18950308859348297], [0.12044814229011536, 0.025374386459589005, 0.04100681468844414, 0.01499580591917038, 0.006589438766241074, 0.029443036764860153, 0.0057571809738874435, 0.11901312321424484, 0.24544933438301086, 0.06079712137579918, 0.01924690417945385, 0.005409372039139271, 0.009470430202782154, 0.017526349052786827, 0.011250662617385387, 0.03778046742081642, 0.23044143617153168], [0.1839444488286972, 0.0174009520560503, 0.010004132054746151, 0.00861404836177826, 0.0006338510429486632, 0.002299963729456067, 0.0011391380103304982, 0.08039058744907379, 0.28471216559410095, 0.05869899317622185, 0.007503848988562822, 0.005337894428521395, 0.0030761451926082373, 0.0035611954517662525, 0.0022600397933274508, 0.049320802092552185, 0.281101793050766], [0.11486341059207916, 0.03624719753861427, 0.0134811382740736, 0.006569850258529186, 0.00294834328815341, 0.0005973271909169853, 0.003312266431748867, 0.12410323321819305, 0.26272472739219666, 0.05011356621980667, 0.006143853068351746, 0.0098728584125638, 0.007070998195558786, 0.04073260352015495, 0.0284722950309515, 0.03521924838423729, 0.25752702355384827], [0.08492541313171387, 0.02624005638062954, 0.027497906237840652, 0.01105910912156105, 0.0075006973929703236, 0.013003512285649776, 0.0016043659998103976, 0.0713658258318901, 0.360696405172348, 0.013685980811715126, 0.005241834092885256, 0.006291364319622517, 0.00592017499729991, 0.0056682005524635315, 0.0033997027203440666, 0.014159874059259892, 0.34173962473869324], [0.1624777913093567, 0.027494650334119797, 0.05821574851870537, 0.02999340370297432, 0.01853119768202305, 0.04037367179989815, 0.014206945896148682, 0.062569260597229, 0.2407609075307846, 0.029244987294077873, 0.01688460074365139, 0.01490802876651287, 0.006585956551134586, 0.004975704476237297, 0.005934206303209066, 0.03907892480492592, 0.22776396572589874], [0.13489772379398346, 0.025231139734387398, 0.04954930394887924, 0.018095532432198524, 0.01167614571750164, 0.024128669872879982, 0.012124291621148586, 0.04891978204250336, 0.2794085443019867, 0.014172542840242386, 0.009827866218984127, 0.01847536861896515, 0.01294876541942358, 0.020608723163604736, 0.024335220456123352, 0.019276799634099007, 0.2763236463069916], [0.1724925935268402, 0.013374142348766327, 0.003666842123493552, 0.02063440904021263, 0.03976757079362869, 0.0736643373966217, 0.0071897911839187145, 0.11219438165426254, 0.2592865824699402, 0.0073627387173473835, 0.00533401221036911, 0.005864250939339399, 0.0012766201980412006, 0.0010713671799749136, 0.0009084046469070017, 0.018872259184718132, 0.2570396363735199], [0.11329855769872665, 0.03443470597267151, 0.09738736599683762, 0.008637523278594017, 0.0037678724620491266, 0.015234452672302723, 0.004287968389689922, 0.1155705526471138, 0.29987820982933044, 0.0015607213135808706, 0.006748128216713667, 0.00410108920186758, 0.0005886416765861213, 0.001930480357259512, 0.004860387649387121, 0.00995497964322567, 0.2777583599090576], [0.13941368460655212, 0.02250714972615242, 0.017218532040715218, 0.011797267943620682, 0.006751397158950567, 0.035133786499500275, 0.008534512482583523, 0.08598820120096207, 0.2856442332267761, 0.020737716928124428, 0.00598968006670475, 0.0036782382521778345, 0.010901479981839657, 0.01046878844499588, 0.01310956384986639, 0.025129426270723343, 0.2969963252544403], [0.08463839441537857, 0.01270969957113266, 0.023268088698387146, 0.004411982372403145, 0.001581456046551466, 0.006553984247148037, 0.004063136409968138, 0.05127799138426781, 0.3887098729610443, 0.0012958789011463523, 0.0017608033958822489, 0.0032158505637198687, 0.0009611584828235209, 0.0022709595505148172, 0.0041665975004434586, 0.00840948149561882, 0.40070468187332153], [0.06317650526762009, 0.013546490110456944, 0.10369697213172913, 0.030292870476841927, 0.00045389420120045543, 0.025506222620606422, 0.0028651126194745302, 0.03794132545590401, 0.33888500928878784, 0.0013778435532003641, 0.003737699007615447, 0.006553072016686201, 0.003292630659416318, 0.00012181791680632159, 0.0015007142210379243, 0.029383007436990738, 0.337668776512146], [0.07858254015445709, 0.011650007218122482, 0.21158108115196228, 0.012160727754235268, 0.00045634384150616825, 0.016058901324868202, 0.0010243725264444947, 0.038150858134031296, 0.3007851243019104, 0.0011858895886689425, 0.0044764927588403225, 0.006565919145941734, 0.003261185484007001, 0.00033813808113336563, 0.0010404461063444614, 0.013363399542868137, 0.2993186116218567], [0.10067831724882126, 0.020996958017349243, 0.034526724368333817, 0.03736231103539467, 0.03129003942012787, 0.11438058316707611, 0.014055054634809494, 0.08983927965164185, 0.23418547213077545, 0.030118338763713837, 0.009555677883327007, 0.010188327170908451, 0.007669522427022457, 0.012831166386604309, 0.010416695848107338, 0.014109778217971325, 0.22779570519924164], [0.13072115182876587, 0.02590269036591053, 0.04422006383538246, 0.017026377841830254, 0.011821772903203964, 0.0222614798694849, 0.012583104893565178, 0.04756303131580353, 0.2808963358402252, 0.014840812422335148, 0.010037073865532875, 0.019958045333623886, 0.014719882979989052, 0.02412145584821701, 0.026685211807489395, 0.018039382994174957, 0.2786022424697876]], [[0.04505026340484619, 0.07827166467905045, 0.09604855626821518, 0.06703030318021774, 0.23643259704113007, 0.1305006593465805, 0.06686779856681824, 0.039583705365657806, 0.1435745507478714, 0.002423245459794998, 0.0014698203885927796, 0.0011046931613236666, 0.003745581489056349, 0.0023948117159307003, 0.0036148782819509506, 0.00675620511174202, 0.07513055205345154], [0.04302670806646347, 0.18307147920131683, 0.3858429193496704, 0.060169100761413574, 0.05653582885861397, 0.13165165483951569, 0.040114887058734894, 0.022694824263453484, 0.04527638107538223, 0.00038254389073699713, 0.001413798308931291, 0.0010469304397702217, 0.0012960820458829403, 0.0010233710054308176, 0.0024334387853741646, 0.0021251090802252293, 0.021894987672567368], [0.06647341698408127, 0.21464712917804718, 0.18111227452754974, 0.08106967806816101, 0.06356227397918701, 0.1531333029270172, 0.05150916799902916, 0.050863295793533325, 0.07258130609989166, 0.0009953025728464127, 0.0026850062422454357, 0.000850749434903264, 0.0038717202842235565, 0.002551537938416004, 0.007051249500364065, 0.004439063370227814, 0.042603474110364914], [0.03321882709860802, 0.04381920024752617, 0.4958009421825409, 0.03320477902889252, 0.04940241202712059, 0.2221946120262146, 0.0426170788705349, 0.016729939728975296, 0.028828183189034462, 0.0012910990044474602, 0.0011490392498672009, 0.0015459242276847363, 0.00342154991813004, 0.0014116587117314339, 0.002275099977850914, 0.005997054744511843, 0.017092492431402206], [0.02683352120220661, 0.04418424516916275, 0.2801573574542999, 0.02494996041059494, 0.09292231500148773, 0.3552698493003845, 0.09073033183813095, 0.01957930251955986, 0.029605014249682426, 0.0006485586054623127, 0.0009613399161025882, 0.002391634276136756, 0.005179325118660927, 0.0023970857728272676, 0.0023357386235147715, 0.003988428041338921, 0.017865970730781555], [0.037976719439029694, 0.10211415588855743, 0.4872848689556122, 0.02763751707971096, 0.0563923642039299, 0.12361831218004227, 0.043926745653152466, 0.03664442524313927, 0.03746054694056511, 0.0007798185106366873, 0.001410683966241777, 0.00242099491879344, 0.004327442497014999, 0.003006360959261656, 0.008761141449213028, 0.003939846530556679, 0.022298071533441544], [0.03187292441725731, 0.06969163566827774, 0.4894663393497467, 0.028749506920576096, 0.06464357674121857, 0.1943855881690979, 0.03190024942159653, 0.011887723580002785, 0.03328375518321991, 0.0006100916070863605, 0.0018650642596185207, 0.004422290716320276, 0.0026663593016564846, 0.002076885662972927, 0.003569720545783639, 0.007828420959413052, 0.02107987180352211], [0.099598728120327, 0.09981101751327515, 0.214353546500206, 0.07058857381343842, 0.0767793208360672, 0.14559821784496307, 0.0343535877764225, 0.06324350088834763, 0.09045762568712234, 0.003538709133863449, 0.005591178312897682, 0.0018577519804239273, 0.0047202627174556255, 0.005867878906428814, 0.008315022103488445, 0.012773307040333748, 0.06255174428224564], [0.07443418353796005, 0.061020322144031525, 0.0679527148604393, 0.043880853801965714, 0.07231029868125916, 0.09181582927703857, 0.06746522337198257, 0.026687515899538994, 0.13615556061267853, 0.020495878532528877, 0.013478260487318039, 0.030687518417835236, 0.035392433404922485, 0.04490387812256813, 0.04307127371430397, 0.05194752663373947, 0.11830070614814758], [0.006707136984914541, 0.0007751249358989298, 0.007154405117034912, 0.0008747496176511049, 0.008713368326425552, 0.017659800127148628, 0.004443692974746227, 0.0018326325807720423, 0.025456467643380165, 0.09875830262899399, 0.03879382088780403, 0.07041935622692108, 0.28564220666885376, 0.13473956286907196, 0.13820098340511322, 0.10802347958087921, 0.051804907619953156], [0.024382352828979492, 0.003080841153860092, 0.040075045078992844, 0.0006564279901795089, 0.00021732829918619245, 0.0028629901353269815, 0.0002489363250788301, 0.0104325320571661, 0.12660911679267883, 0.05459648743271828, 0.09873225539922714, 0.018078718334436417, 0.03541871905326843, 0.06448638439178467, 0.0915878489613533, 0.1710057109594345, 0.25752824544906616], [0.012275690212845802, 0.003109223674982786, 0.0065096900798380375, 0.0005955808446742594, 0.001726871239952743, 0.009039400145411491, 0.0035349258687347174, 0.0028183315880596638, 0.06100746616721153, 0.052785977721214294, 0.03861907869577408, 0.08222334086894989, 0.21188823878765106, 0.10806860774755478, 0.13078716397285461, 0.1616954505443573, 0.11331494897603989], [0.0070958007127046585, 0.0034747279714792967, 0.004522380884736776, 0.000441201264038682, 0.00252297380939126, 0.006314962636679411, 0.0031839117873460054, 0.0033157130237668753, 0.11163052171468735, 0.03220897167921066, 0.0360710509121418, 0.09017270058393478, 0.08811293542385101, 0.12983353435993195, 0.17740115523338318, 0.10423349589109421, 0.19946399331092834], [0.005360518582165241, 0.005920092575252056, 0.014196990989148617, 0.0020526512525975704, 0.0008544014417566359, 0.005424348171800375, 0.0019387701759114861, 0.0030925904866307974, 0.03941353037953377, 0.024063458666205406, 0.15672419965267181, 0.10631737858057022, 0.08241540938615799, 0.08744386583566666, 0.28911709785461426, 0.09944497048854828, 0.07621962577104568], [0.01063152588903904, 0.016026420518755913, 0.018201762810349464, 0.003788732923567295, 0.0016653469065204263, 0.013417461887001991, 0.006933057680726051, 0.009814702905714512, 0.0650595873594284, 0.023370452225208282, 0.08838334679603577, 0.1972845047712326, 0.07574187219142914, 0.11305368691682816, 0.15217573940753937, 0.09690532833337784, 0.10754647850990295], [0.007105095777660608, 0.002463369630277157, 0.0072436402551829815, 0.0020677070133388042, 0.0015495030675083399, 0.003229381749406457, 0.0027688222471624613, 0.0027251846622675657, 0.03658017888665199, 0.06451127678155899, 0.08186668902635574, 0.067957803606987, 0.13537313044071198, 0.15637332201004028, 0.17356529831886292, 0.1803516447544098, 0.0742679312825203], [0.05321567878127098, 0.030045511201024055, 0.03301960974931717, 0.02075480856001377, 0.03829619660973549, 0.047166064381599426, 0.03833368420600891, 0.016778869554400444, 0.1183844655752182, 0.04861001297831535, 0.02656489983201027, 0.05943974480032921, 0.0734231024980545, 0.08971790224313736, 0.07722220569849014, 0.09786650538444519, 0.13116073608398438]], [[0.10569038987159729, 0.004502948839217424, 0.024079453200101852, 0.0019498660694807768, 0.008209453895688057, 0.006098884157836437, 0.0007605664432048798, 0.00700840400531888, 0.1101892814040184, 0.17376708984375, 0.10775065422058105, 0.019746115431189537, 0.05785134434700012, 0.05345810577273369, 0.044767215847969055, 0.05876631289720535, 0.21540383994579315], [0.01661662384867668, 0.017693854868412018, 0.04413176700472832, 0.1434410661458969, 0.28888261318206787, 0.08839625120162964, 0.04850517585873604, 0.07484479993581772, 0.06788218021392822, 0.03543712571263313, 0.03158872574567795, 0.0029554632492363453, 0.013113525696098804, 0.00742218317463994, 0.014024225063621998, 0.04835288226604462, 0.056711506098508835], [0.04257485270500183, 0.021575259044766426, 0.05844569578766823, 0.06782323122024536, 0.2267894148826599, 0.2655283212661743, 0.047566529363393784, 0.03137277439236641, 0.025749782100319862, 0.03299620747566223, 0.02162506803870201, 0.008805074729025364, 0.017934827134013176, 0.01813795417547226, 0.04305272549390793, 0.04526890441775322, 0.02475348301231861], [0.007998867891728878, 0.04369574412703514, 0.04430621117353439, 0.013546271249651909, 0.516044020652771, 0.09230825304985046, 0.03511795401573181, 0.06353548169136047, 0.06222856417298317, 0.02697116695344448, 0.009595518000423908, 0.00516967847943306, 0.011450495570898056, 0.0069977170787751675, 0.007154654245823622, 0.004084578715264797, 0.04979473352432251], [0.013206902891397476, 0.06892095506191254, 0.06805934756994247, 0.022713949903845787, 0.18156558275222778, 0.06249779462814331, 0.019695373252034187, 0.07547712326049805, 0.24700523912906647, 0.031917136162519455, 0.005660418886691332, 0.001695773913525045, 0.002396519063040614, 0.0019424454076215625, 0.005785044748336077, 0.00648921076208353, 0.1849711686372757], [0.019461866468191147, 0.14723049104213715, 0.17949983477592468, 0.02210823819041252, 0.23121105134487152, 0.1149429976940155, 0.03185036778450012, 0.040695395320653915, 0.05639510601758957, 0.030490176752209663, 0.020482834428548813, 0.00451718270778656, 0.009721650741994381, 0.00874168612062931, 0.0168386772274971, 0.01832413487136364, 0.04748835042119026], [0.005909941624850035, 0.06017109751701355, 0.10025863349437714, 0.019689301028847694, 0.3750649094581604, 0.05171928182244301, 0.015745749697089195, 0.023602813482284546, 0.14339686930179596, 0.04924909770488739, 0.005327262915670872, 0.006825949065387249, 0.005076147615909576, 0.003422738751396537, 0.007243771106004715, 0.00904164370149374, 0.11825481802225113], [0.046112217009067535, 0.02968369424343109, 0.046950262039899826, 0.015041546896100044, 0.013082603923976421, 0.03571481630206108, 0.004960290621966124, 0.03936168923974037, 0.38922595977783203, 0.006581715773791075, 0.011494644917547703, 0.001759480801410973, 0.0034061535261571407, 0.0029946977738291025, 0.006316558923572302, 0.006861736532300711, 0.34045201539993286], [0.017157990485429764, 0.002983150305226445, 0.006804634816944599, 0.0027990450616925955, 0.0011747486423701048, 0.003979094792157412, 0.0017815124010667205, 0.010740444995462894, 0.4637400805950165, 0.0015114792622625828, 0.0017473289044573903, 0.002514385851100087, 0.0017765829106792808, 0.00416995445266366, 0.003151937620714307, 0.0027523667085915804, 0.47121521830558777], [0.031144404783844948, 0.0032304986380040646, 0.006225212477147579, 0.014562491327524185, 0.015543151646852493, 0.004616913851350546, 0.0017246290808543563, 0.07387255877256393, 0.1507762372493744, 0.07482866942882538, 0.04317133501172066, 0.0014033750630915165, 0.00862090103328228, 0.01879740133881569, 0.026756908744573593, 0.3351838290691376, 0.1895415335893631], [0.1371629387140274, 0.013908891938626766, 0.03474659100174904, 0.013529245741665363, 0.06299293786287308, 0.01617298647761345, 0.0051455372013151646, 0.027681633830070496, 0.07041380554437637, 0.20757271349430084, 0.011723799630999565, 0.0056944540701806545, 0.049169961363077164, 0.028415462002158165, 0.048320647329092026, 0.1753106266260147, 0.09203783422708511], [0.011123097501695156, 0.016143186017870903, 0.03923587501049042, 0.016816284507513046, 0.05433144420385361, 0.036057546734809875, 0.009735497646033764, 0.018259618431329727, 0.10486350208520889, 0.2065984308719635, 0.014990677125751972, 0.019538192078471184, 0.041061121970415115, 0.03878272697329521, 0.15423835813999176, 0.09221134334802628, 0.1260131448507309], [0.032573673874139786, 0.023952007293701172, 0.02631581947207451, 0.005479880608618259, 0.02787521481513977, 0.01638283208012581, 0.011507261544466019, 0.01969759911298752, 0.12929528951644897, 0.24302281439304352, 0.03511276841163635, 0.02504032291471958, 0.035602059215307236, 0.03311051428318024, 0.06870516389608383, 0.094892717897892, 0.17143408954143524], [0.0434468537569046, 0.019525857642292976, 0.06137891858816147, 0.005524791311472654, 0.009263289161026478, 0.013640828430652618, 0.009624834172427654, 0.00796736590564251, 0.10646946728229523, 0.0520395003259182, 0.027188673615455627, 0.08735772967338562, 0.23192018270492554, 0.041828349232673645, 0.0877753272652626, 0.05010579526424408, 0.14494216442108154], [0.023922940716147423, 0.02784579247236252, 0.07768482714891434, 0.00692017050459981, 0.029780805110931396, 0.04136477783322334, 0.02691960334777832, 0.007027658633887768, 0.07401113212108612, 0.049552347511053085, 0.020506612956523895, 0.07132012397050858, 0.21688765287399292, 0.10370450466871262, 0.060287248343229294, 0.06902183592319489, 0.09324201941490173], [0.06322718411684036, 0.008076313883066177, 0.011662594974040985, 0.0019380158046260476, 0.016504110768437386, 0.009529545903205872, 0.0029026938136667013, 0.009493683464825153, 0.18853189051151276, 0.11785640567541122, 0.03102685883641243, 0.0644078478217125, 0.1667085587978363, 0.012799013406038284, 0.018863562494516373, 0.009424970485270023, 0.26704680919647217], [0.019857307896018028, 0.0021450708154588938, 0.005012816749513149, 0.0019166666315868497, 0.0008360852370969951, 0.002760122297331691, 0.001324470853433013, 0.008984644897282124, 0.4432066082954407, 0.001812909496948123, 0.002007707953453064, 0.002680248348042369, 0.001971592428162694, 0.004784559365361929, 0.0035575549118220806, 0.003198385937139392, 0.4939432740211487]], [[0.027814464643597603, 0.00443950155749917, 0.001397183514200151, 0.0002083857252728194, 3.7494246498681605e-05, 2.5386454581166618e-05, 6.328503513941541e-05, 0.10604330897331238, 0.3530377149581909, 0.0015361392870545387, 0.000549941323697567, 0.0003939366724807769, 0.00014264264609664679, 0.0002210988022852689, 0.0005989435594528913, 0.005523563362658024, 0.4979669749736786], [0.017247455194592476, 0.0635785162448883, 0.0003088406811002642, 0.00918903760612011, 0.003995424136519432, 0.00029191700741648674, 0.0030890253838151693, 0.4550129473209381, 0.22965870797634125, 0.014839536510407925, 0.006614107172936201, 0.002536348532885313, 0.000974986469373107, 0.0009327701991423965, 0.0007736937841400504, 0.01048242673277855, 0.18047435581684113], [0.08090569823980331, 0.023964224383234978, 0.0034951448906213045, 0.004027833696454763, 0.00045044918078929186, 0.001151670003309846, 0.0013968851417303085, 0.35301870107650757, 0.2309027761220932, 0.00646870955824852, 0.010096047073602676, 0.0033250567503273487, 0.00207547377794981, 0.0032129844184964895, 0.007026944775134325, 0.03532453626394272, 0.23315687477588654], [0.03885795176029205, 0.030222663655877113, 0.0004996481584385037, 0.027570238336920738, 0.004759231582283974, 0.0008631166419945657, 0.0041338312439620495, 0.38542884588241577, 0.2475583255290985, 0.015973379835486412, 0.0023566600866615772, 0.002513837767764926, 0.00024826283333823085, 0.0009304859559051692, 0.0008309604017995298, 0.03279617428779602, 0.2044564187526703], [0.040752727538347244, 0.011801348067820072, 0.0002076939563266933, 0.0039470805786550045, 0.00039983310853131115, 0.0002750149287749082, 0.003061619820073247, 0.22722549736499786, 0.3695653975009918, 0.009168006479740143, 0.001248056534677744, 0.006091943476349115, 0.0007017600582912564, 0.00036267092218622565, 0.0005559092969633639, 0.006718838587403297, 0.3179166615009308], [0.05699879676103592, 0.012757841497659683, 0.0006037218845449388, 0.01760265603661537, 0.0016631146427243948, 0.0009390802006237209, 0.010467324405908585, 0.26976048946380615, 0.31057092547416687, 0.019301215186715126, 0.0016216158401221037, 0.008648935705423355, 0.0006879732245579362, 0.0003138946776743978, 0.000982358935289085, 0.023781467229127884, 0.26329851150512695], [0.048304278403520584, 0.056071698665618896, 0.0005962568102404475, 0.08050277084112167, 0.014024152420461178, 0.0012392849894240499, 0.07517539709806442, 0.21622328460216522, 0.21104072034358978, 0.020118094980716705, 0.0024908718187361956, 0.05518972501158714, 0.005171902012079954, 0.005346690304577351, 0.0053170290775597095, 0.029711619019508362, 0.1734762191772461], [0.02489214763045311, 0.025456756353378296, 0.002090893452987075, 0.006484267767518759, 0.0018003651639446616, 0.0015537601429969072, 0.008195525966584682, 0.5817081928253174, 0.16377954185009003, 0.009337611496448517, 0.005237726029008627, 0.0020785066299140453, 0.00268166814930737, 0.0040418654680252075, 0.0039846268482506275, 0.01747014932334423, 0.1392063945531845], [0.0938885509967804, 0.021537013351917267, 0.05297676846385002, 0.025926677510142326, 0.017236994579434395, 0.029053302481770515, 0.021106939762830734, 0.06421677023172379, 0.227000892162323, 0.0179744902998209, 0.018984228372573853, 0.028367090970277786, 0.040342655032873154, 0.03271690383553505, 0.0286756232380867, 0.05104014277458191, 0.22895486652851105], [0.04202964901924133, 0.00486003328114748, 0.00018054810061585158, 0.0016183494590222836, 7.086772529873997e-05, 6.904594920342788e-05, 0.00011169896606588736, 0.28318533301353455, 0.2987756133079529, 0.002084612613543868, 0.0005561957368627191, 0.0014683007029816508, 0.00016111831064336002, 0.0003762694541364908, 0.00042524022865109146, 0.00769030163064599, 0.3563368618488312], [0.046645548194646835, 0.10536626726388931, 0.0009154075523838401, 0.003514043753966689, 0.002029123017564416, 0.00010816318535944447, 0.0006653069285675883, 0.25556281208992004, 0.2609725296497345, 0.00598579877987504, 0.009157853201031685, 0.00217249384149909, 0.0008990955539047718, 0.0006298123043961823, 0.0006132062408141792, 0.007449880242347717, 0.2973126769065857], [0.06982585787773132, 0.05903950333595276, 0.004062683787196875, 0.05056963488459587, 0.002836712170392275, 0.0019816828425973654, 0.006462590768933296, 0.036660369485616684, 0.26363062858581543, 0.021319732069969177, 0.0076040467247366905, 0.1512872874736786, 0.0054129790514707565, 0.003192170290276408, 0.003939376212656498, 0.024088596925139427, 0.2880862057209015], [0.07513340562582016, 0.057168882340192795, 0.0011279579484835267, 0.04974115639925003, 0.008180253207683563, 0.0014728647656738758, 0.03360914811491966, 0.06232035532593727, 0.2810038924217224, 0.01645847037434578, 0.006773149129003286, 0.07859909534454346, 0.004702894017100334, 0.0042662410996854305, 0.0034575853496789932, 0.01548469066619873, 0.30049994587898254], [0.10604767501354218, 0.051608357578516006, 0.00986412912607193, 0.011918673291802406, 0.001169662456959486, 0.0010736732510849833, 0.009574701078236103, 0.07572280615568161, 0.22588378190994263, 0.014179660007357597, 0.025713196024298668, 0.018001293763518333, 0.013654589653015137, 0.04025905206799507, 0.0721614733338356, 0.05696943774819374, 0.2661978304386139], [0.10818764567375183, 0.05237952619791031, 0.016990026459097862, 0.02309701032936573, 0.0035215073730796576, 0.0037350791972130537, 0.0116533562541008, 0.06520050764083862, 0.26326754689216614, 0.011539528146386147, 0.02251790463924408, 0.01865800842642784, 0.011011118069291115, 0.016380244866013527, 0.0061696115881204605, 0.061180420219898224, 0.3045109510421753], [0.0737457424402237, 0.03129909932613373, 0.0011655950220301747, 0.010209014639258385, 0.0011789450654760003, 0.0006923654000274837, 0.002082490362226963, 0.2401101440191269, 0.282698392868042, 0.011561906896531582, 0.002791990991681814, 0.0034200961235910654, 0.0004263815062586218, 0.0023454977199435234, 0.003957652021199465, 0.026300577446818352, 0.3060140311717987], [0.103140689432621, 0.02037252113223076, 0.05589817836880684, 0.023949595168232918, 0.016545400023460388, 0.028015537187457085, 0.020148610696196556, 0.04926019534468651, 0.20932021737098694, 0.01920214109122753, 0.02016107551753521, 0.03421986103057861, 0.04606100171804428, 0.033302128314971924, 0.03154625743627548, 0.06052703782916069, 0.22832956910133362]], [[0.043620459735393524, 0.013688149861991405, 0.02132270112633705, 0.012352613732218742, 0.013686364516615868, 0.010911471210420132, 0.007792664226144552, 0.017630450427532196, 0.351685106754303, 0.02977720834314823, 0.005177556071430445, 0.009762643836438656, 0.0030171831604093313, 0.0018830967601388693, 0.004594854079186916, 0.022134874016046524, 0.43096256256103516], [0.14627765119075775, 0.05319944769144058, 0.056452568620443344, 0.03184007480740547, 0.012775368057191372, 0.0455734021961689, 0.01638052612543106, 0.05094487592577934, 0.24672669172286987, 0.012834310531616211, 0.019451498985290527, 0.004437034949660301, 0.007515087723731995, 0.0034487678203731775, 0.009209208190441132, 0.04539408162236214, 0.23753930628299713], [0.08936890959739685, 0.02511894516646862, 0.05725555121898651, 0.04902644455432892, 0.009916485287249088, 0.03211624547839165, 0.0037467998918145895, 0.07195933163166046, 0.2864566743373871, 0.008879095315933228, 0.013574939221143723, 0.017336087301373482, 0.0005076868110336363, 0.007889396511018276, 0.017351971939206123, 0.03887229412794113, 0.2706230878829956], [0.13999269902706146, 0.018951119855046272, 0.02788049355149269, 0.04758515581488609, 0.02192053012549877, 0.02668548934161663, 0.022239435464143753, 0.054796379059553146, 0.2883114814758301, 0.023426327854394913, 0.0016758095007389784, 0.006482351571321487, 0.004349341616034508, 0.0005028051673434675, 0.0020733249839395285, 0.06412021070718765, 0.24900710582733154], [0.08490943163633347, 0.002907664980739355, 0.003745162859559059, 0.013621503487229347, 0.05931868031620979, 0.025828076526522636, 0.015385743230581284, 0.020315563306212425, 0.37028348445892334, 0.010643023066222668, 0.00015088298823684454, 0.014465692453086376, 0.004985420498996973, 0.00021327633294276893, 0.0012386942980811, 0.015547817572951317, 0.3564397692680359], [0.10593833774328232, 0.012201346457004547, 0.04250318929553032, 0.026644155383110046, 0.05352950096130371, 0.04255330562591553, 0.013822122476994991, 0.03099014423787594, 0.32150712609291077, 0.010104465298354626, 0.0013246407033875585, 0.003202910767868161, 0.005515319295227528, 0.0004237081448081881, 0.0006285412819124758, 0.01919510029256344, 0.3099161684513092], [0.09868654608726501, 0.00935771781951189, 0.005823832005262375, 0.04432849958539009, 0.041400305926799774, 0.02160206437110901, 0.027517473325133324, 0.010422823019325733, 0.3399529755115509, 0.011831432580947876, 0.0005017879302613437, 0.015323443338274956, 0.02791789546608925, 0.0007802250911481678, 0.0022050116676837206, 0.01141795888543129, 0.33093005418777466], [0.11371080577373505, 0.02888372540473938, 0.04148754104971886, 0.027976270765066147, 0.01440836489200592, 0.05102725699543953, 0.01490216888487339, 0.03502277284860611, 0.3206639587879181, 0.009918124414980412, 0.009726091288030148, 0.006231365259736776, 0.0035987982992082834, 0.0019569459836930037, 0.006074149627238512, 0.010550345294177532, 0.3038613200187683], [0.07055298238992691, 0.02385905012488365, 0.032811734825372696, 0.01843986101448536, 0.010287412442266941, 0.020103586837649345, 0.015521356835961342, 0.028571221977472305, 0.30834975838661194, 0.016047365963459015, 0.01946934498846531, 0.0215065348893404, 0.01539499219506979, 0.01761496439576149, 0.026005560532212257, 0.024989552795886993, 0.33047476410865784], [0.15714114904403687, 0.009798171930015087, 0.02089603990316391, 0.01564641483128071, 0.005992190912365913, 0.12401308864355087, 0.006861633621156216, 0.024027202278375626, 0.24999937415122986, 0.05765307694673538, 0.001901008072309196, 0.007536872755736113, 0.0068319919519126415, 0.0029761791229248047, 0.005918752867728472, 0.05871230363845825, 0.24409452080726624], [0.09845472872257233, 0.07467485219240189, 0.05771476402878761, 0.03462075814604759, 0.00692892586812377, 0.02235138788819313, 0.011726402677595615, 0.03543424606323242, 0.2828075587749481, 0.007841966114938259, 0.026970697566866875, 0.0008492899942211807, 0.0020911977626383305, 0.0008162970771081746, 0.0027118290308862925, 0.05476989969611168, 0.27923518419265747], [0.09306015819311142, 0.007648893631994724, 0.006741845048964024, 0.04537758603692055, 0.02837543934583664, 0.052839599549770355, 0.03980449587106705, 0.019246159121394157, 0.21360930800437927, 0.0711301937699318, 0.001075957901775837, 0.09662097692489624, 0.06912503391504288, 0.004651287570595741, 0.006799530237913132, 0.019379233941435814, 0.22451423108577728], [0.10565908253192902, 0.0031379745341837406, 0.003920247312635183, 0.00873290840536356, 0.018205827102065086, 0.015193847008049488, 0.0060600885190069675, 0.013183402828872204, 0.12697561085224152, 0.037867020815610886, 0.0001516553747933358, 0.06356188654899597, 0.3673805594444275, 0.014160789549350739, 0.03530566766858101, 0.043977443128824234, 0.136525958776474], [0.07040902972221375, 0.002897935453802347, 0.0054587675258517265, 0.004833593033254147, 0.0002890506584662944, 0.00026882809470407665, 0.0007286523468792439, 0.03519909083843231, 0.15436917543411255, 0.014571050181984901, 0.00028408842626959085, 0.002398516982793808, 0.0037565536331385374, 0.2799164950847626, 0.1964329183101654, 0.06977500021457672, 0.15841124951839447], [0.12903918325901031, 0.0063051204197108746, 0.011549129150807858, 0.00694222841411829, 0.0018741313833743334, 0.003904499113559723, 0.0017282579792663455, 0.02414611168205738, 0.19700074195861816, 0.009427032433450222, 0.0019615599885582924, 0.005817327182739973, 0.0024116404820233583, 0.161089688539505, 0.18992066383361816, 0.04791185259819031, 0.19897080957889557], [0.12828588485717773, 0.04131525382399559, 0.0772983506321907, 0.11770670115947723, 0.015339246019721031, 0.10573671758174896, 0.03334542363882065, 0.05332576110959053, 0.1318526566028595, 0.0581563301384449, 0.01648130640387535, 0.006586473900824785, 0.006086861714720726, 0.0025096586905419827, 0.005156507715582848, 0.07773507386445999, 0.1230817586183548], [0.06652477383613586, 0.024116864427924156, 0.029861483722925186, 0.017497330904006958, 0.009013619273900986, 0.018054788932204247, 0.015801459550857544, 0.028136834502220154, 0.3079308569431305, 0.018371254205703735, 0.023927001282572746, 0.02474764734506607, 0.015799906104803085, 0.01705416664481163, 0.026087237522006035, 0.0261379387229681, 0.33093684911727905]], [[0.3714202344417572, 0.0008082580752670765, 0.004921107552945614, 0.0023124022409319878, 0.008429822511970997, 0.0027803501579910517, 0.0009329549502581358, 0.01018022932112217, 0.09070379287004471, 0.21554602682590485, 0.002360730664804578, 0.016385933384299278, 0.01642371155321598, 0.027331558987498283, 0.006902058608829975, 0.07383128255605698, 0.1487296223640442], [0.08675972372293472, 0.14067769050598145, 0.04812515527009964, 0.020088035613298416, 0.009617242030799389, 0.010450584813952446, 0.012499835342168808, 0.1748732030391693, 0.21748565137386322, 0.015658969059586525, 0.03144469112157822, 0.011955327354371548, 0.010668694041669369, 0.010807548649609089, 0.002061850856989622, 0.020632987841963768, 0.17619282007217407], [0.0725293755531311, 0.20923903584480286, 0.021027274429798126, 0.0720900148153305, 0.00836713332682848, 0.007222120650112629, 0.027240678668022156, 0.06309737265110016, 0.23385873436927795, 0.011242820881307125, 0.0373801663517952, 0.004680091980844736, 0.00672272639349103, 0.010328604839742184, 0.00721212662756443, 0.025662265717983246, 0.18209949135780334], [0.09022903442382812, 0.08880352228879929, 0.045566968619823456, 0.055039409548044205, 0.024568656459450722, 0.01271827332675457, 0.02863866277039051, 0.07884790748357773, 0.14280861616134644, 0.07419943064451218, 0.006527827586978674, 0.014664901420474052, 0.01115918718278408, 0.01978146657347679, 0.015055215917527676, 0.18148881196975708, 0.1099020391702652], [0.04574602097272873, 0.029647450894117355, 0.0055162603966891766, 0.11889509111642838, 0.007876790128648281, 0.005999610759317875, 0.04275389015674591, 0.04547538980841637, 0.33794835209846497, 0.05158661678433418, 0.003940480295568705, 0.012446975335478783, 0.005569761618971825, 0.0023762446362525225, 0.0019765596371144056, 0.02169104851782322, 0.2605535686016083], [0.10450854152441025, 0.11485996097326279, 0.01758735440671444, 0.08051685243844986, 0.012055641040205956, 0.005192741751670837, 0.030473876744508743, 0.05221586301922798, 0.2058601975440979, 0.05085112899541855, 0.013264506123960018, 0.016112718731164932, 0.029474318027496338, 0.01283396128565073, 0.019872985780239105, 0.06324204057455063, 0.17107723653316498], [0.02574041299521923, 0.02472294680774212, 0.0030025034211575985, 0.006111004389822483, 0.0012865137541666627, 0.0005421321257017553, 0.0017117687966674566, 0.051031507551670074, 0.4672141671180725, 0.010684902779757977, 0.001257814234122634, 0.0037198862992227077, 0.0013480400666594505, 0.0007414429564960301, 0.00024303501413669437, 0.006634723395109177, 0.3940071165561676], [0.058831315487623215, 0.0640510842204094, 0.038923509418964386, 0.08385838568210602, 0.05578083544969559, 0.036258772015571594, 0.024347303435206413, 0.14084777235984802, 0.21024928987026215, 0.05507132038474083, 0.007009382359683514, 0.007629613392055035, 0.006788703612983227, 0.008066006936132908, 0.0065047889947891235, 0.025228748098015785, 0.17055316269397736], [0.03716424107551575, 0.007060617674142122, 0.005000311881303787, 0.0021905212197452784, 0.0008960714330896735, 0.0014025680720806122, 0.0009846178581938148, 0.027591759338974953, 0.4532669186592102, 0.00410153204575181, 0.0014610773650929332, 0.0021570920944213867, 0.0011750677367672324, 0.0019096920732408762, 0.0030085877515375614, 0.0029159565456211567, 0.4477134943008423], [0.13584277033805847, 0.011695018969476223, 0.007748823147267103, 0.023095708340406418, 0.008667781949043274, 0.00662047928199172, 0.002217898378148675, 0.08604885637760162, 0.10866381973028183, 0.04227710887789726, 0.0028156449552625418, 0.008320897817611694, 0.02313046343624592, 0.030756695196032524, 0.041054826229810715, 0.32157638669013977, 0.1394667774438858], [0.22214257717132568, 0.397006630897522, 0.07799965888261795, 0.001591327483765781, 0.006439052522182465, 0.002981884405016899, 0.002046444686129689, 0.02057032100856304, 0.06509295105934143, 0.04864628240466118, 0.04549003764986992, 0.0032323230989277363, 0.0028355130925774574, 0.01112421415746212, 0.0009374177898280323, 0.01727222464978695, 0.07459127902984619], [0.03297732397913933, 0.007451741956174374, 0.0017498956294730306, 0.005414881277829409, 0.0005161985754966736, 0.0001763166073942557, 0.0017734040739014745, 0.011331173591315746, 0.38425061106681824, 0.011605875566601753, 0.003044986166059971, 0.031440362334251404, 0.007231414783746004, 0.01078992523252964, 0.010247860103845596, 0.014358142390847206, 0.46563994884490967], [0.06273996084928513, 0.0025111923459917307, 0.0016772485105320811, 0.0006500279414467514, 0.0005342610529623926, 0.0004249734338372946, 0.0008769634878262877, 0.0132936155423522, 0.38306766748428345, 0.009664541110396385, 0.0015835778322070837, 0.03590034320950508, 0.004795196000486612, 0.0029460359364748, 0.007573799695819616, 0.004010479431599379, 0.46775022149086], [0.08816497772932053, 0.009677629917860031, 0.015690773725509644, 0.004526781849563122, 0.00128223467618227, 0.0014866326237097383, 0.0031792079098522663, 0.034714143723249435, 0.2948341369628906, 0.01420605182647705, 0.009741378016769886, 0.051131006330251694, 0.011161072179675102, 0.03492269665002823, 0.055801570415496826, 0.02263258397579193, 0.3468469977378845], [0.07929017394781113, 0.008097521960735321, 0.02662476897239685, 0.004608360584825277, 0.0015260765794664621, 0.002503037452697754, 0.0043432870879769325, 0.023972520604729652, 0.34708476066589355, 0.013382026925683022, 0.006154095754027367, 0.03458422049880028, 0.01632077246904373, 0.022901706397533417, 0.020368412137031555, 0.012024697847664356, 0.37621352076530457], [0.09227947145700455, 0.022185293957591057, 0.013095438480377197, 0.11232389509677887, 0.011276493780314922, 0.00845241267234087, 0.00967930257320404, 0.0183134563267231, 0.10783451050519943, 0.08224445581436157, 0.04308618977665901, 0.11947230249643326, 0.028381820768117905, 0.053372155874967575, 0.013050739653408527, 0.13208967447280884, 0.1328624188899994], [0.04053887724876404, 0.005695616826415062, 0.004130534827709198, 0.001643113442696631, 0.0006864396273158491, 0.0010371835669502616, 0.0007898491458036005, 0.024652527645230293, 0.4360586702823639, 0.004592256620526314, 0.001775078009814024, 0.0027528100181370974, 0.0013917480828240514, 0.0020696839783340693, 0.0032685284968465567, 0.003168020863085985, 0.4657491147518158]], [[0.15393738448619843, 0.01451246626675129, 0.006779943127185106, 0.015984809026122093, 0.045987557619810104, 0.002752251224592328, 0.013063582591712475, 0.0060724602080881596, 0.12599165737628937, 0.257351815700531, 0.013315869495272636, 0.00793194305151701, 0.04584855958819389, 0.042014382779598236, 0.046460140496492386, 0.049255404621362686, 0.15273985266685486], [0.034783586859703064, 0.3728260397911072, 0.009114244021475315, 0.014268873259425163, 0.18110573291778564, 0.014605076983571053, 0.012200742959976196, 0.002340237610042095, 0.06465550512075424, 0.012748518027365208, 0.18899331986904144, 0.003487184876576066, 0.013940425589680672, 0.005007883068174124, 0.0038091898895800114, 0.0031012161634862423, 0.06301233172416687], [0.012023315764963627, 0.08860528469085693, 0.006199287716299295, 0.08796359598636627, 0.19533425569534302, 0.00969691015779972, 0.06508167833089828, 0.007929005660116673, 0.15826885402202606, 0.024426762014627457, 0.0939503088593483, 0.014294161461293697, 0.020569145679473877, 0.010646339505910873, 0.01675662212073803, 0.023205654695630074, 0.165048748254776], [0.04062730073928833, 0.027490030974149704, 0.00611188355833292, 0.1476425677537918, 0.5342229008674622, 0.011233964003622532, 0.02660192735493183, 0.004702100995928049, 0.06623287498950958, 0.005448800045996904, 0.009692905470728874, 0.020316582173109055, 0.017874833196401596, 0.005440391134470701, 0.004325408488512039, 0.016885949298739433, 0.05514964088797569], [0.011914280243217945, 0.015027663670480251, 0.006231158040463924, 0.0649731382727623, 0.43866267800331116, 0.004818764049559832, 0.02903776802122593, 0.0004989375593140721, 0.12065409868955612, 0.016685139387845993, 0.005857492797076702, 0.0959925651550293, 0.04475284740328789, 0.013124281540513039, 0.007821118459105492, 0.006436625029891729, 0.1175113320350647], [0.0030737738125026226, 0.020720308646559715, 0.002378624863922596, 0.0500325933098793, 0.6631656289100647, 0.0025604998227208853, 0.020892580971121788, 0.0023408210836350918, 0.05305691435933113, 0.02775217592716217, 0.018833626061677933, 0.03517640009522438, 0.018477145582437515, 0.005924113094806671, 0.011634751223027706, 0.010158419609069824, 0.0538216158747673], [0.03150756284594536, 0.018566293641924858, 0.00775852520018816, 0.09674064069986343, 0.2249096930027008, 0.00307087623514235, 0.01168697327375412, 0.0054312776774168015, 0.18694360554218292, 0.013946693390607834, 0.011964329518377781, 0.15759669244289398, 0.022865835577249527, 0.00760678993538022, 0.012257061898708344, 0.011732331477105618, 0.17541486024856567], [0.20167523622512817, 0.0012210005661472678, 0.009347226470708847, 0.0005275291041471064, 0.002158051822334528, 0.022112125530838966, 0.00027390773175284266, 0.7498869895935059, 0.003161301137879491, 0.0013955492759123445, 0.0005838156212121248, 6.107669469201937e-05, 0.0014142494183033705, 0.001286953454837203, 0.0014639680739492178, 0.0008529202896170318, 0.002578112529590726], [0.3392258882522583, 0.0003474419645499438, 0.017697548493742943, 0.00034864433109760284, 0.00013859718455933034, 0.011854150332510471, 9.607461834093556e-05, 0.5260440707206726, 0.04609724506735802, 0.0010699480772018433, 0.0005360493087209761, 0.00021951552480459213, 0.0007843192433938384, 0.002987075597047806, 0.003980542067438364, 0.003309902735054493, 0.045262932777404785], [0.14181214570999146, 0.002162131480872631, 0.0052556986920535564, 0.014523785561323166, 0.07398169487714767, 0.0019744380842894316, 0.007618424016982317, 0.01032099686563015, 0.22103512287139893, 0.06524402648210526, 0.007268873509019613, 0.02393418923020363, 0.07452501356601715, 0.03132077306509018, 0.026117483153939247, 0.02592371590435505, 0.2669815123081207], [0.04754903167486191, 0.055569376796483994, 0.001979036722332239, 0.0171392560005188, 0.19845329225063324, 0.0021873374935239553, 0.014013304375112057, 0.0008090201299637556, 0.13742053508758545, 0.2197365015745163, 0.04419075325131416, 0.007974792271852493, 0.06039087474346161, 0.012480903416872025, 0.011993058025836945, 0.00827112141996622, 0.15984182059764862], [0.015173112973570824, 0.0007959223003126681, 0.0003134974685963243, 0.006277746055275202, 0.07463832199573517, 0.0015087107894942164, 0.0013125193072482944, 0.0007432755082845688, 0.037144601345062256, 0.00182385987136513, 0.0015877608675509691, 0.7842802405357361, 0.008985773660242558, 0.0073459092527627945, 0.007578442804515362, 0.006970295216888189, 0.043520063161849976], [0.03597979247570038, 0.0019340186845511198, 0.0023743619676679373, 0.01472576055675745, 0.028376227244734764, 0.0008248861995525658, 0.0027777627110481262, 0.0034397589042782784, 0.30702465772628784, 0.01790892519056797, 0.003995273727923632, 0.10294529050588608, 0.04357773810625076, 0.01807667873799801, 0.03907795995473862, 0.02212400548160076, 0.3548368513584137], [0.014890733174979687, 0.020436201244592667, 0.0018043856834992766, 0.053086258471012115, 0.046342119574546814, 0.0017069646855816245, 0.020459666848182678, 0.0006417477852664888, 0.29479536414146423, 0.018787145614624023, 0.017174435779452324, 0.027899598702788353, 0.055454764515161514, 0.021909315139055252, 0.04137881472706795, 0.042646750807762146, 0.3205856382846832], [0.024464592337608337, 0.013698003254830837, 0.001383753726258874, 0.018582692369818687, 0.05824772268533707, 0.0020962106063961983, 0.008711977861821651, 0.002350544324144721, 0.33351701498031616, 0.02267107181251049, 0.009135224856436253, 0.01663285307586193, 0.04211343452334404, 0.009826556779444218, 0.016638237982988358, 0.014036930166184902, 0.4058931767940521], [0.09143819659948349, 0.025717345997691154, 0.006066449452191591, 0.059783030301332474, 0.06158558279275894, 0.004037764389067888, 0.023459356278181076, 0.010942014865577221, 0.13878405094146729, 0.06463637948036194, 0.025132765993475914, 0.021056028082966805, 0.06254459917545319, 0.03878892585635185, 0.08722954243421555, 0.13370639085769653, 0.14509160816669464], [0.36221015453338623, 0.0003070094098802656, 0.015256155282258987, 0.000311047479044646, 0.00012637523468583822, 0.011189128272235394, 8.444055129075423e-05, 0.5028384923934937, 0.04528357833623886, 0.0013326802290976048, 0.0006204037927091122, 0.0002672361151780933, 0.0009621839853934944, 0.0038990553002804518, 0.005101409275084734, 0.004158728290349245, 0.046051986515522]]], [[[0.18927259743213654, 0.010431046597659588, 0.12248282879590988, 0.044441480189561844, 0.1381075382232666, 0.18259955942630768, 0.0030434122309088707, 0.05265072360634804, 0.09715093672275543, 0.02211337722837925, 0.003408635500818491, 0.0007928932318463922, 0.0008180654840543866, 0.000782747520133853, 0.001088500488549471, 0.0325465127825737, 0.09826906025409698], [0.4576168954372406, 0.01333136297762394, 0.008512655273079872, 0.016376031562685966, 0.011698503978550434, 0.0038609658367931843, 0.002805528463795781, 0.03832927718758583, 0.16091957688331604, 0.04863307625055313, 0.026661721989512444, 0.004605063237249851, 0.004788256715983152, 0.0057881856337189674, 0.006243500858545303, 0.029359055683016777, 0.1604703664779663], [0.16821084916591644, 0.022766562178730965, 0.006992377806454897, 0.02717471495270729, 0.0031743382569402456, 0.0053077805787324905, 0.0024549546651542187, 0.10692514479160309, 0.24381498992443085, 0.020913150161504745, 0.039907149970531464, 0.008940433152019978, 0.009190364740788937, 0.009803677909076214, 0.06298371404409409, 0.01827634871006012, 0.24316340684890747], [0.29126155376434326, 0.010545321740210056, 0.019259599968791008, 0.01185180339962244, 0.009268714115023613, 0.01224701851606369, 0.002227277494966984, 0.04898959398269653, 0.23437990248203278, 0.05102422088384628, 0.04153236374258995, 0.0037946479860693216, 0.0010742247104644775, 0.00441014626994729, 0.005907652899622917, 0.0218978188931942, 0.23032817244529724], [0.33959028124809265, 0.004307648167014122, 0.007359442766755819, 0.006935570389032364, 0.002156347967684269, 0.006591904908418655, 0.0018830867484211922, 0.10025899112224579, 0.22600360214710236, 0.027474336326122284, 0.021335480734705925, 0.00456642359495163, 0.003787908237427473, 0.002601271728053689, 0.004669032525271177, 0.01605743169784546, 0.22442112863063812], [0.18910112977027893, 0.025402596220374107, 0.010071770288050175, 0.020809605717658997, 0.005389074329286814, 0.003959559835493565, 0.005513504613190889, 0.14725041389465332, 0.22948172688484192, 0.026723649352788925, 0.048146072775125504, 0.008850248530507088, 0.0074641769751906395, 0.013482389971613884, 0.011285046115517616, 0.021328939124941826, 0.22574016451835632], [0.18233320116996765, 0.010200539603829384, 0.009599958546459675, 0.01268526166677475, 0.0052976966835558414, 0.004495667759329081, 0.0024324727710336447, 0.06085687503218651, 0.31485700607299805, 0.0334327295422554, 0.01947925053536892, 0.004640441853553057, 0.0029081767424941063, 0.005523401312530041, 0.0034206847194582224, 0.019205650314688683, 0.30863088369369507], [0.6423034071922302, 0.005870582535862923, 0.01827112026512623, 0.021719224750995636, 0.041319411247968674, 0.01613541692495346, 0.0011786763789132237, 0.02372727170586586, 0.0688328742980957, 0.040762823075056076, 0.008561402559280396, 0.0004558821674436331, 0.001096932333894074, 0.0024400101974606514, 0.002004890004172921, 0.03827059268951416, 0.06704949587583542], [0.026845688000321388, 0.0043416875414550304, 0.011359176598489285, 0.003751387819647789, 0.002859462983906269, 0.0083563681691885, 0.0028680728282779455, 0.05268212780356407, 0.41785967350006104, 0.005655355751514435, 0.002984269754961133, 0.0027323425747454166, 0.002257852116599679, 0.0015629775589331985, 0.0030274735763669014, 0.011712834239006042, 0.4391431510448456], [0.2955872714519501, 0.03647439554333687, 0.03516606241464615, 0.05229403078556061, 0.04541053622961044, 0.038197215646505356, 0.01131829246878624, 0.04804878681898117, 0.2062891721725464, 0.0037680347450077534, 0.01011739019304514, 0.0020574380178004503, 0.0007088994607329369, 0.0012839497067034245, 0.0013907249085605145, 0.006108436733484268, 0.2057793289422989], [0.39648935198783875, 0.07168390601873398, 0.04072282090783119, 0.06400157511234283, 0.05617072433233261, 0.006503338925540447, 0.002926240209490061, 0.02677137218415737, 0.15194599330425262, 0.012600972317159176, 0.006800358649343252, 0.001529003493487835, 0.0008148597553372383, 0.0013255276717245579, 0.00173011957667768, 0.009520416148006916, 0.14846351742744446], [0.022976044565439224, 0.01136298943310976, 0.022971469908952713, 0.006778225302696228, 0.006943941116333008, 0.006844544783234596, 0.004990750923752785, 0.02489999495446682, 0.43060266971588135, 0.006087103392928839, 0.004580381792038679, 0.0027555355336517096, 0.001001044875010848, 0.0013686222955584526, 0.004359197802841663, 0.003597324714064598, 0.4378802180290222], [0.038779858499765396, 0.028326446190476418, 0.03964635357260704, 0.01673860475420952, 0.006986437831073999, 0.005188890267163515, 0.004770874977111816, 0.0352882444858551, 0.40507155656814575, 0.0027869499754160643, 0.00370847899466753, 0.001895884983241558, 0.0003599210758693516, 0.001882963697426021, 0.003024386242032051, 0.0034445396158844233, 0.4020995497703552], [0.030265744775533676, 0.033081598579883575, 0.016941331326961517, 0.0068838875740766525, 0.0014196623815223575, 0.0006329893949441612, 0.0014345220988616347, 0.008779450319707394, 0.434416264295578, 0.0019730671774595976, 0.003757168771699071, 0.001814311370253563, 0.0011841977247968316, 0.0007055472815409303, 0.002085272455587983, 0.0026086634024977684, 0.4520166516304016], [0.03977159038186073, 0.05664397031068802, 0.1319253295660019, 0.0070150080136954784, 0.0012772117042914033, 0.0012800352415069938, 0.0008774331072345376, 0.018531909212470055, 0.35738229751586914, 0.0012780457036569715, 0.005804226268082857, 0.0014257780276238918, 0.0008848903235048056, 0.0017981536220759153, 0.00331663666293025, 0.0024215076118707657, 0.3683658540248871], [0.35176828503608704, 0.016164936125278473, 0.01636815257370472, 0.05804995074868202, 0.039208583533763885, 0.03616916388273239, 0.006622049026191235, 0.049356747418642044, 0.1859654039144516, 0.01782640442252159, 0.017638415098190308, 0.0031769585330039263, 0.0014164091553539038, 0.0016962096560746431, 0.0017007789574563503, 0.011082235723733902, 0.18578936159610748], [0.02784043364226818, 0.004453934263437986, 0.011656972579658031, 0.003910311032086611, 0.00298675405792892, 0.008510884828865528, 0.0029135136865079403, 0.05326022952795029, 0.4165485203266144, 0.005664305295795202, 0.0030453111976385117, 0.0027993745170533657, 0.0022439612075686455, 0.0015768746379762888, 0.0030868847388774157, 0.011895126663148403, 0.4376065731048584]], [[0.0174055527895689, 0.0008041482651606202, 0.005415774881839752, 0.005430548917502165, 0.007022784557193518, 0.011655040085315704, 0.004077734425663948, 0.0031429261434823275, 0.20425714552402496, 0.2788724899291992, 0.012756521813571453, 0.0859110876917839, 0.05452902987599373, 0.0031133699230849743, 0.01023023296147585, 0.06431077420711517, 0.23106485605239868], [0.03756609559059143, 0.006432707887142897, 0.10978108644485474, 0.049905404448509216, 0.05798760801553726, 0.47537466883659363, 0.11170471459627151, 0.00948326289653778, 0.032491523772478104, 0.015356071293354034, 0.010734397917985916, 0.011889010667800903, 0.014589817263185978, 0.0035612403880804777, 0.00891591515392065, 0.014044330455362797, 0.030182091519236565], [0.14121782779693604, 0.025699904188513756, 0.10492323338985443, 0.06693383306264877, 0.062403906136751175, 0.15459267795085907, 0.013577568344771862, 0.03130374103784561, 0.12446609884500504, 0.04866069182753563, 0.007124198600649834, 0.026473749428987503, 0.03693388029932976, 0.006729588843882084, 0.017443014308810234, 0.019684500992298126, 0.1118316501379013], [0.018767958506941795, 0.007196382619440556, 0.12685152888298035, 0.0076694912277162075, 0.08767466992139816, 0.29656198620796204, 0.10521198809146881, 0.022935686632990837, 0.1381455808877945, 0.04354340210556984, 0.002713648835197091, 0.008753422647714615, 0.0028425983618944883, 0.00037776576937176287, 0.0005821179947815835, 0.0027566179633140564, 0.12741507589817047], [0.012743240222334862, 0.006293843500316143, 0.03677865490317345, 0.045493800193071365, 0.01767962984740734, 0.09241805225610733, 0.021722158417105675, 0.01710713841021061, 0.3714589774608612, 0.028512604534626007, 0.0009588159155100584, 0.00434930669143796, 0.0015234311576932669, 2.6777799575938843e-05, 0.0001277343835681677, 0.0012791450135409832, 0.34152671694755554], [0.009583891369402409, 0.011033361777663231, 0.04552806541323662, 0.05745559558272362, 0.03182575851678848, 0.020797912031412125, 0.018088068813085556, 0.05869559571146965, 0.36804962158203125, 0.026127096265554428, 0.0014398206258192658, 0.008589284494519234, 0.0009079747833311558, 0.00012609167606569827, 0.0003513997362460941, 0.0027684273663908243, 0.3386319577693939], [0.005887715145945549, 0.0017569750780239701, 0.03319530934095383, 0.03500526398420334, 0.047948453575372696, 0.11323526501655579, 0.019043460488319397, 0.012303123250603676, 0.35033300518989563, 0.03527313470840454, 0.00020056427456438541, 0.018717598170042038, 0.0024984527844935656, 9.920956654241309e-05, 0.00026256285491399467, 0.00157392886467278, 0.3226660192012787], [0.03928348422050476, 0.010921375826001167, 0.12296735495328903, 0.05201724171638489, 0.06250567734241486, 0.18986988067626953, 0.04174082726240158, 0.045394670218229294, 0.19477318227291107, 0.030004872009158134, 0.004432680085301399, 0.009594363160431385, 0.006146155763417482, 0.001040601753629744, 0.0028530617710202932, 0.009806586429476738, 0.17664802074432373], [0.008005880750715733, 0.0028870662208646536, 0.0030952156521379948, 0.0021079606376588345, 0.0017723506316542625, 0.004175329115241766, 0.0015474167885258794, 0.01918380707502365, 0.47835928201675415, 0.0031132446601986885, 0.002474838634952903, 0.0019334484823048115, 0.001392505131661892, 0.0008520058472640812, 0.0016742658335715532, 0.002512388164177537, 0.46491312980651855], [0.01473692711442709, 0.0007284142775461078, 0.0030098571442067623, 0.0050953528843820095, 0.034985266625881195, 0.0816836953163147, 0.01492468360811472, 0.007333504036068916, 0.3747553825378418, 0.014840122312307358, 0.0013085606042295694, 0.039486441761255264, 0.0026478422805666924, 0.0005709935212507844, 0.0010041547939181328, 0.01806369423866272, 0.38482511043548584], [0.03308449313044548, 0.005363058298826218, 0.07295247167348862, 0.02461327239871025, 0.07506665587425232, 0.10252267122268677, 0.026483017951250076, 0.002392088295891881, 0.02609376795589924, 0.1274683177471161, 0.01506918016821146, 0.23681846261024475, 0.05273933708667755, 0.029125070199370384, 0.0955008938908577, 0.04775208234786987, 0.026955148205161095], [0.02203182689845562, 0.0014520460972562432, 0.019051892682909966, 0.012256080284714699, 0.003868603380396962, 0.04836718738079071, 0.015189481899142265, 0.010207864455878735, 0.38660791516304016, 0.02431645430624485, 0.0017582984874024987, 0.010459288954734802, 0.03339405357837677, 0.007945789024233818, 0.0036622625775635242, 0.014522621408104897, 0.3849082887172699], [0.035299353301525116, 0.0019236616790294647, 0.01111103966832161, 0.010909855365753174, 0.007746526040136814, 0.09966705739498138, 0.020622698590159416, 0.008716409094631672, 0.12993064522743225, 0.04700079932808876, 0.001978689106181264, 0.22726276516914368, 0.04526595026254654, 0.04508696496486664, 0.14352884888648987, 0.03737841919064522, 0.12657026946544647], [0.019359715282917023, 0.0013941325014457107, 0.0012283913092687726, 0.005196215119212866, 0.00448927516117692, 0.002475927583873272, 0.0018629872938618064, 0.008321234956383705, 0.432026743888855, 0.04344695433974266, 0.0030722073279321194, 0.013888254761695862, 0.019411059096455574, 0.003676072461530566, 0.004668432287871838, 0.008724630810320377, 0.4267577826976776], [0.014869939535856247, 0.002363689010962844, 0.0009491543751209974, 0.002382102655246854, 0.0068388828076422215, 0.0032602129504084587, 0.00202627363614738, 0.007454190868884325, 0.4293583333492279, 0.032771483063697815, 0.0011923447018489242, 0.012779499404132366, 0.031087882816791534, 0.011963548138737679, 0.0036647554952651262, 0.01164622139185667, 0.42539161443710327], [0.023424305021762848, 0.004161475226283073, 0.053437765687704086, 0.0041063521057367325, 0.04978364706039429, 0.17035581171512604, 0.020288191735744476, 0.013689602725207806, 0.10812962055206299, 0.20115990936756134, 0.008319775573909283, 0.15714073181152344, 0.036948319524526596, 0.007364704739302397, 0.008542901836335659, 0.02468431554734707, 0.10846249014139175], [0.007420300506055355, 0.0025558052584528923, 0.0026494849007576704, 0.0017724173376336694, 0.0015149289974942803, 0.0034541103523224592, 0.0013401638716459274, 0.01764225959777832, 0.47893622517585754, 0.0031514132861047983, 0.0024319614749401808, 0.0019019941100850701, 0.0013559728395193815, 0.0007875753799453378, 0.0015469209756702185, 0.0023786742240190506, 0.4691597521305084]], [[0.05782919004559517, 0.004385638516396284, 0.007083403877913952, 0.004566224291920662, 0.00531862722709775, 0.0044893985614180565, 0.0014594682725146413, 0.0009645286481827497, 0.05730512738227844, 0.11441614478826523, 0.1662038266658783, 0.09033162891864777, 0.08029140532016754, 0.07159007340669632, 0.143330380320549, 0.12362919002771378, 0.06680573523044586], [0.08099692314863205, 0.04769745096564293, 0.08576824516057968, 0.08670607954263687, 0.08900582790374756, 0.12557728588581085, 0.046022556722164154, 0.019154828041791916, 0.19895946979522705, 0.0032632132060825825, 0.0036226403899490833, 0.0145344827324152, 0.0036901698913425207, 0.0025103853549808264, 0.006361159961670637, 0.007396908942610025, 0.17873236536979675], [0.11970715969800949, 0.03750305250287056, 0.05213442072272301, 0.08544757962226868, 0.06184489652514458, 0.048627447336912155, 0.04167449474334717, 0.013329438865184784, 0.25854194164276123, 0.006002457346767187, 0.011579615995287895, 0.009816060774028301, 0.0038635546807199717, 0.0017745092045515776, 0.006404664367437363, 0.01339015830308199, 0.22835849225521088], [0.058117642998695374, 0.06061365082859993, 0.28099334239959717, 0.046413976699113846, 0.09239953011274338, 0.16530562937259674, 0.02536696009337902, 0.005575292278081179, 0.11852320283651352, 0.0027486945036798716, 0.0048959581181406975, 0.005631591659039259, 0.0038956105709075928, 0.006491313222795725, 0.012672956101596355, 0.004923818167299032, 0.10543090850114822], [0.05503857508301735, 0.06344094127416611, 0.2773861587047577, 0.04516499117016792, 0.02277582325041294, 0.08959808200597763, 0.0358562171459198, 0.004877686966210604, 0.20451001822948456, 0.0029536979272961617, 0.003572909627109766, 0.0038970487657934427, 0.002326544839888811, 0.0029529291205108166, 0.007510020863264799, 0.0033560956362634897, 0.17478232085704803], [0.09637878090143204, 0.03728623688220978, 0.15503662824630737, 0.060819681733846664, 0.09520745277404785, 0.049415506422519684, 0.024210099130868912, 0.005593512672930956, 0.23579616844654083, 0.004846211988478899, 0.006965687498450279, 0.005287887994199991, 0.002022122498601675, 0.0026859708596020937, 0.00616758968681097, 0.006483485456556082, 0.20579688251018524], [0.03324959799647331, 0.07174746692180634, 0.11341799795627594, 0.04136042669415474, 0.026665732264518738, 0.10508661717176437, 0.017370909452438354, 0.010711060836911201, 0.28765395283699036, 0.0044604092836380005, 0.00794435665011406, 0.004573209676891565, 0.0019038983155041933, 0.0018391372868791223, 0.005927726160734892, 0.008415620774030685, 0.2576717734336853], [0.14671023190021515, 0.05794450268149376, 0.2770603597164154, 0.0366293340921402, 0.11070644855499268, 0.18868589401245117, 0.023222271353006363, 0.03035949543118477, 0.05243919417262077, 0.0033074491657316685, 0.00523516396060586, 0.0018959123408421874, 0.0032697939313948154, 0.0026890975423157215, 0.00789870135486126, 0.005680619273334742, 0.04626549035310745], [0.01790616102516651, 0.005568797700107098, 0.009265738539397717, 0.005200357176363468, 0.003629591315984726, 0.003195792669430375, 0.0022376838605850935, 0.08739952743053436, 0.4125373959541321, 0.006553320679813623, 0.008278394117951393, 0.0029775891453027725, 0.0016037097666412592, 0.0006179727497510612, 0.0021072537638247013, 0.011295883916318417, 0.41962477564811707], [0.029063992202281952, 0.0047799828462302685, 0.002818971872329712, 0.0034663034602999687, 0.001379151362925768, 0.0031255220528692007, 0.0012173574650660157, 0.0008229855448007584, 0.26591530442237854, 0.02438487485051155, 0.056342821568250656, 0.10847561061382294, 0.028441699221730232, 0.016355125233530998, 0.07422536611557007, 0.08082561194896698, 0.29835930466651917], [0.042893294245004654, 0.007728861179202795, 0.006665055640041828, 0.028495654463768005, 0.012110443785786629, 0.011421522125601768, 0.0060052587650716305, 0.0015260545769706368, 0.08183512091636658, 0.07674339413642883, 0.06005560979247093, 0.2807020843029022, 0.05430763587355614, 0.026237284764647484, 0.07856515794992447, 0.13309387862682343, 0.09161370247602463], [0.0271441787481308, 0.01470328588038683, 0.02288920059800148, 0.008312780410051346, 0.003094565123319626, 0.008655658923089504, 0.003037445480003953, 0.003105797106400132, 0.36296480894088745, 0.028500575572252274, 0.03270089998841286, 0.019113661721348763, 0.013181978836655617, 0.008487225510179996, 0.03910672664642334, 0.02765830047428608, 0.3773428797721863], [0.0169081911444664, 0.008299125358462334, 0.006622029468417168, 0.006994720082730055, 0.0016013933345675468, 0.0057757250033319, 0.0012783496640622616, 0.0015351736219599843, 0.3329033851623535, 0.039313022047281265, 0.043547533452510834, 0.09648048132658005, 0.006568219978362322, 0.008414344862103462, 0.02256062626838684, 0.04230526089668274, 0.35889238119125366], [0.023301851004362106, 0.002987081650644541, 0.004921111278235912, 0.0027839583344757557, 0.0005198765429668128, 0.0010687484173104167, 0.0013127231504768133, 0.003465663641691208, 0.4530599117279053, 0.005097770132124424, 0.009009651839733124, 0.0104592964053154, 0.005795119795948267, 0.0011189539218321443, 0.0024994288105517626, 0.005162742454558611, 0.4674362540245056], [0.04272375628352165, 0.002688746899366379, 0.005862189922481775, 0.0036073564551770687, 0.001545575330965221, 0.0015120545867830515, 0.0011338251642882824, 0.0015430613420903683, 0.41709572076797485, 0.009303785860538483, 0.014094715937972069, 0.02185630425810814, 0.009364325553178787, 0.004373994190245867, 0.004859173204749823, 0.019144974648952484, 0.43929022550582886], [0.136650949716568, 0.04313594102859497, 0.0302302036434412, 0.045243680477142334, 0.021728767082095146, 0.027933435514569283, 0.016294781118631363, 0.008790555410087109, 0.1291041225194931, 0.03983159363269806, 0.07692816108465195, 0.08455802500247955, 0.06422775983810425, 0.0204963106662035, 0.04479874670505524, 0.07839468121528625, 0.13165226578712463], [0.017510393634438515, 0.0051260823383927345, 0.007864479906857014, 0.004709544125944376, 0.003131305333226919, 0.0027298007626086473, 0.0020060879178345203, 0.07903189957141876, 0.41496965289115906, 0.007312878035008907, 0.009336182847619057, 0.0032839528284966946, 0.0017670848174020648, 0.0006519770831800997, 0.002209938131272793, 0.012409497983753681, 0.4259493052959442]], [[0.18975551426410675, 0.28629159927368164, 0.2007616013288498, 0.03271638602018356, 0.1258750855922699, 0.07203998416662216, 0.033064503222703934, 0.0237827580422163, 0.007570752874016762, 0.0018961087334901094, 0.0010089421411976218, 0.0010489406995475292, 0.0015997670125216246, 0.010862092487514019, 0.005378192290663719, 0.00022643024567514658, 0.00612123915925622], [0.12268954515457153, 0.29665079712867737, 0.20158503949642181, 0.13312841951847076, 0.06263607740402222, 0.029887787997722626, 0.09609538316726685, 0.04585343971848488, 0.002560230204835534, 0.0002643875777721405, 0.0021009996999055147, 0.0007170123280957341, 0.0005761652137152851, 0.0006644680979661644, 0.0006472732056863606, 0.0018781002145260572, 0.0020647963974624872], [0.09834279865026474, 0.0444544292986393, 0.294821172952652, 0.09888062626123428, 0.06472521275281906, 0.10571271181106567, 0.2087022364139557, 0.07377003878355026, 0.0036772144958376884, 0.00013159157242625952, 0.000514889950864017, 0.0007261170540004969, 0.0008958310354501009, 0.0005146915791556239, 0.0007717930129729211, 0.00042006841977126896, 0.0029386773239821196], [0.20053023099899292, 0.1995178759098053, 0.08394993841648102, 0.039753057062625885, 0.1017308458685875, 0.11949076503515244, 0.0353693850338459, 0.20238079130649567, 0.0037203552201390266, 0.0006184024969115853, 0.0009388746693730354, 0.0008904053829610348, 0.00036710224230773747, 0.002347832778468728, 0.001980625092983246, 0.003532483009621501, 0.0028810175135731697], [0.24109521508216858, 0.06905506551265717, 0.18498580157756805, 0.05258743464946747, 0.03267315402626991, 0.14198490977287292, 0.14849670231342316, 0.08981669694185257, 0.013725503347814083, 0.0014184127794578671, 0.0014362510992214084, 0.0026061460375785828, 0.002922236453741789, 0.0011852694442495704, 0.001491206930950284, 0.003344242461025715, 0.011175778694450855], [0.08579378575086594, 0.0538950189948082, 0.2694253623485565, 0.0670529305934906, 0.11867348104715347, 0.24133417010307312, 0.12008015066385269, 0.0385066457092762, 0.0015596980229020119, 4.522140079643577e-05, 0.00046963433851487935, 0.0004218488174956292, 0.00036008335882797837, 0.0004574651538860053, 0.00038533101906068623, 0.00027632914134301245, 0.0012629734119400382], [0.22816912829875946, 0.11075137555599213, 0.18351751565933228, 0.0603143647313118, 0.10824733227491379, 0.09826086461544037, 0.12833592295646667, 0.06259866803884506, 0.007371312938630581, 0.00022838734730612487, 0.0008989123743958771, 0.0012016290565952659, 0.0014324270887300372, 0.0007669661426916718, 0.0007746859337203205, 0.001289324020035565, 0.005841198842972517], [0.07802582532167435, 0.12547588348388672, 0.317453533411026, 0.06928490102291107, 0.16141177713871002, 0.0838765949010849, 0.09871988743543625, 0.03093957155942917, 0.005233691539615393, 0.001622765907086432, 0.004642815794795752, 0.002525020856410265, 0.0018603933276608586, 0.006656398065388203, 0.005491246934980154, 0.0022683138959109783, 0.004511373583227396], [0.06502555310726166, 7.126542186597362e-05, 0.020700860768556595, 0.0038387258537113667, 0.007685459218919277, 0.04076838865876198, 0.045081835240125656, 0.23812291026115417, 0.23148119449615479, 0.030816929414868355, 0.0006987892556935549, 0.0012259158538654447, 0.007048981264233589, 0.006049943156540394, 0.011828115209937096, 0.06896744668483734, 0.22058765590190887], [0.0008491140324622393, 0.0005212611868046224, 2.5599083528504707e-05, 0.0006783573189750314, 0.0001678473490756005, 9.31520844460465e-06, 0.00012656275066547096, 0.0001950762962223962, 0.09756988286972046, 0.26556169986724854, 0.28196024894714355, 0.04583445563912392, 0.09193549305200577, 0.013926739804446697, 0.029472045600414276, 0.0394529290497303, 0.1317133754491806], [0.0007177837542258203, 0.0008252694387920201, 0.00010313571692677215, 0.00040920067112892866, 0.00012154570868005976, 7.2462034950149246e-06, 0.00013535514881368726, 0.0004142120305914432, 0.05946400389075279, 0.32566601037979126, 0.20180393755435944, 0.030266478657722473, 0.08240750432014465, 0.038651201874017715, 0.05873998999595642, 0.11753781139850616, 0.08272930979728699], [0.0011240089079365134, 0.0004871144483331591, 2.9071303288219497e-05, 0.0002849288284778595, 0.00012817826063837856, 1.4750094123883173e-05, 0.00013278725964482874, 0.0005761770298704505, 0.09627234935760498, 0.1750241369009018, 0.23541271686553955, 0.031787142157554626, 0.15129630267620087, 0.019971439614892006, 0.03018873557448387, 0.12603642046451569, 0.131233811378479], [0.0005903768469579518, 0.0002158536808565259, 5.251400943961926e-05, 0.00026627047918736935, 6.02041109232232e-05, 1.2042210073559545e-05, 0.00013055406452622265, 0.00020666791533585638, 0.12170957773923874, 0.1829490214586258, 0.06646079570055008, 0.09687380492687225, 0.19819007813930511, 0.02818789705634117, 0.06094944477081299, 0.07096985727548599, 0.17217500507831573], [0.022938458248972893, 0.002456842688843608, 0.0009184491937048733, 0.004386201500892639, 0.0005793674499727786, 0.00019684068684000522, 0.0007839884492568672, 0.006411590147763491, 0.07629384845495224, 0.21221914887428284, 0.057410579174757004, 0.05714748799800873, 0.0629132017493248, 0.051415786147117615, 0.07971934974193573, 0.2734029293060303, 0.09080594033002853], [0.005536186043173075, 0.0004560565866995603, 0.0003791222407016903, 0.0013831116957589984, 0.0002366519474890083, 4.778942093253136e-05, 0.0003254574548918754, 0.00259949523024261, 0.14263667166233063, 0.11927974224090576, 0.08668158203363419, 0.04186565801501274, 0.08596266061067581, 0.10303383320569992, 0.09668242186307907, 0.12849071621894836, 0.18440285325050354], [0.004912117961794138, 0.001683229231275618, 0.00017866981215775013, 0.0006479433504864573, 0.0012386339949443936, 0.00021685042884200811, 0.0004188133461866528, 0.00474077183753252, 0.12158916890621185, 0.19421376287937164, 0.15419024229049683, 0.018400857225060463, 0.0642792135477066, 0.051191214472055435, 0.11149299889802933, 0.11672280728816986, 0.15388274192810059], [0.046810876578092575, 5.01327303936705e-05, 0.013078054413199425, 0.0025798736605793238, 0.005134680774062872, 0.024470267817378044, 0.02899685688316822, 0.1702173352241516, 0.2758837938308716, 0.044141292572021484, 0.000980180804617703, 0.0015524347545579076, 0.009378008544445038, 0.007391740567982197, 0.014959284104406834, 0.08218418806791306, 0.27219095826148987]], [[0.10778369009494781, 0.0232497937977314, 0.03110782615840435, 0.013731193728744984, 0.015079586766660213, 0.023576319217681885, 0.007709394674748182, 0.05609725043177605, 0.22407540678977966, 0.07210586220026016, 0.039677854627370834, 0.01689349114894867, 0.050142090767621994, 0.024312153458595276, 0.022013520821928978, 0.04806755110621452, 0.22437705099582672], [0.05314109846949577, 0.05907800793647766, 0.13679544627666473, 0.07387401163578033, 0.03131458908319473, 0.07529086619615555, 0.0689331516623497, 0.06880965083837509, 0.14657367765903473, 0.02871098183095455, 0.016123805195093155, 0.013743139803409576, 0.02172785997390747, 0.011980073526501656, 0.007454304024577141, 0.0484759546816349, 0.1379733830690384], [0.07213469594717026, 0.08035585284233093, 0.004166534636169672, 0.09203176200389862, 0.11806591600179672, 0.0749470666050911, 0.1191972866654396, 0.08482915908098221, 0.13209310173988342, 0.0020194791723042727, 0.01606658659875393, 0.00722781615331769, 0.02062395215034485, 0.0070595694705843925, 0.04329958185553551, 0.004986653104424477, 0.12089500576257706], [0.07898479700088501, 0.0479356087744236, 0.12577833235263824, 0.04626356437802315, 0.009973617270588875, 0.027034349739551544, 0.008731257170438766, 0.09568220376968384, 0.20882639288902283, 0.04436706006526947, 0.00855690985918045, 0.00463868910446763, 0.005511523690074682, 0.011984333395957947, 0.004928638692945242, 0.07905110716819763, 0.1917516142129898], [0.10369876027107239, 0.018532918766140938, 0.1902623176574707, 0.011236610822379589, 0.002089608693495393, 0.06078362837433815, 0.021155675873160362, 0.10914039611816406, 0.1801401972770691, 0.12007852643728256, 0.0021061464212834835, 0.007819721475243568, 0.003933988977223635, 0.0005202434258535504, 0.00022912738495506346, 0.005621068179607391, 0.16265098750591278], [0.07788316905498505, 0.05426955595612526, 0.12573187053203583, 0.019936494529247284, 0.03333894908428192, 0.004992308560758829, 0.05528872832655907, 0.08208587765693665, 0.1532691866159439, 0.02836434170603752, 0.00813301745802164, 0.048644959926605225, 0.050609294325113297, 0.08343028277158737, 0.027831746265292168, 0.006678480189293623, 0.13951171934604645], [0.06192693114280701, 0.03334799036383629, 0.17852658033370972, 0.012649052776396275, 0.056498933583498, 0.29842373728752136, 0.040331047028303146, 0.047012243419885635, 0.08710748702287674, 0.0652073547244072, 0.002463636454194784, 0.012166906148195267, 0.003558964701369405, 0.004711803514510393, 0.0029960169922560453, 0.013195016421377659, 0.07987632602453232], [0.06327886134386063, 0.0836036205291748, 0.10124838352203369, 0.05750996991991997, 0.09481742233037949, 0.08069600909948349, 0.05007690191268921, 0.09224551171064377, 0.15248338878154755, 0.023098070174455643, 0.021547719836235046, 0.011252366006374359, 0.007711201440542936, 0.004103386774659157, 0.0045389411970973015, 0.013189360499382019, 0.13859893381595612], [0.08977363258600235, 0.044923633337020874, 0.05061790347099304, 0.034864556044340134, 0.025146840140223503, 0.03320112079381943, 0.026888906955718994, 0.08315443247556686, 0.16213496029376984, 0.03551569953560829, 0.050996165722608566, 0.025959772989153862, 0.0315140075981617, 0.03536566346883774, 0.044262442737817764, 0.06387795507907867, 0.16180233657360077], [0.15068624913692474, 0.020011581480503082, 0.0038030114956200123, 0.03688008710741997, 0.07749611884355545, 0.031045880168676376, 0.044385720044374466, 0.02682865969836712, 0.15471012890338898, 0.0838741883635521, 0.049962118268013, 0.044467613101005554, 0.009598050266504288, 0.008946756832301617, 0.01274880301207304, 0.07569101452827454, 0.1688639223575592], [0.04740447923541069, 0.021780475974082947, 0.012858090922236443, 0.011991053819656372, 0.004323021043092012, 0.01407338585704565, 0.02045566774904728, 0.04039063677191734, 0.14332930743694305, 0.1817731112241745, 0.007597863208502531, 0.033480092883110046, 0.06982488930225372, 0.05618320405483246, 0.060275815427303314, 0.12317872047424316, 0.1510801762342453], [0.08884214609861374, 0.010657667182385921, 0.017407242208719254, 0.0036999410949647427, 0.014290076680481434, 0.05406496673822403, 0.00889695156365633, 0.023020818829536438, 0.12325640767812729, 0.19782155752182007, 0.062119461596012115, 0.024056755006313324, 0.0280571598559618, 0.037816375494003296, 0.04873092845082283, 0.12775467336177826, 0.12950685620307922], [0.08212973922491074, 0.0251918938010931, 0.0556969977915287, 0.005964886862784624, 0.013916494324803352, 0.09266016632318497, 0.011911566369235516, 0.04747019335627556, 0.17447666823863983, 0.07294398546218872, 0.08815183490514755, 0.0590052492916584, 0.011987412348389626, 0.008345074020326138, 0.024434493854641914, 0.044371023774147034, 0.1813422292470932], [0.06182695925235748, 0.032713308930397034, 0.07611880451440811, 0.028053686022758484, 0.0016748742200434208, 0.06534861773252487, 0.01005744282156229, 0.03510230779647827, 0.1235855296254158, 0.03601160645484924, 0.1817115843296051, 0.023733709007501602, 0.01251690462231636, 0.000523271388374269, 0.003131855046376586, 0.1747126579284668, 0.13317681849002838], [0.07456973195075989, 0.010289469733834267, 0.08816496282815933, 0.014516211114823818, 0.0009223271044902503, 0.02099846862256527, 0.00566053343936801, 0.024335535243153572, 0.12653867900371552, 0.04160265251994133, 0.17082461714744568, 0.0653349757194519, 0.09466809779405594, 0.015321015380322933, 0.015078390017151833, 0.09486056864261627, 0.13631370663642883], [0.05467785522341728, 0.016035791486501694, 0.012110044248402119, 0.033462610095739365, 0.0113012520596385, 0.01578878052532673, 0.015721647068858147, 0.02180643379688263, 0.12207046896219254, 0.09398935735225677, 0.08839790523052216, 0.10018263012170792, 0.01845436729490757, 0.0587228462100029, 0.043921519070863724, 0.16277523338794708, 0.13058136403560638], [0.0883234366774559, 0.04295876994729042, 0.046672359108924866, 0.03217342123389244, 0.02339833416044712, 0.03022189438343048, 0.024998480454087257, 0.07673180103302002, 0.15765050053596497, 0.040973346680402756, 0.056740548461675644, 0.028102349489927292, 0.03387371078133583, 0.03862035647034645, 0.048412393778562546, 0.07143495231866837, 0.15871340036392212]], [[0.07757756114006042, 0.024966368451714516, 0.006401863880455494, 0.022908572107553482, 0.013603247702121735, 0.018894625827670097, 0.014709298498928547, 0.02499750629067421, 0.3588676154613495, 0.015176106244325638, 0.01228202972561121, 0.008453314192593098, 0.00876674521714449, 0.008219013921916485, 0.008951781317591667, 0.02460065297782421, 0.3506237268447876], [0.1237139105796814, 0.053817301988601685, 0.11610157042741776, 0.012742266058921814, 0.0050428323447704315, 0.010134079493582249, 0.005440496373921633, 0.05104897916316986, 0.22674532234668732, 0.012964395806193352, 0.10031000524759293, 0.004582129884511232, 0.004866207949817181, 0.010016756132245064, 0.009577146731317043, 0.0319075845181942, 0.22098898887634277], [0.05845242366194725, 0.06696770340204239, 0.12722915410995483, 0.042245831340551376, 0.01069670170545578, 0.037848278880119324, 0.00223350222222507, 0.041564010083675385, 0.2396683394908905, 0.03153937682509422, 0.03421894088387489, 0.011553503572940826, 0.004738937132060528, 0.0008204185287468135, 0.004141980782151222, 0.0346074253320694, 0.25147339701652527], [0.056034788489341736, 0.06195364147424698, 0.06846596300601959, 0.03857123479247093, 0.010405567474663258, 0.01627117395401001, 0.013158216141164303, 0.02642313577234745, 0.2858181893825531, 0.008688432164490223, 0.05229492858052254, 0.011172953993082047, 0.00723689328879118, 0.0049502053298056126, 0.00789103377610445, 0.047324102371931076, 0.28333956003189087], [0.03916003555059433, 0.10130125284194946, 0.09455464780330658, 0.04280954599380493, 0.00639269407838583, 0.05185806378722191, 0.008054295554757118, 0.04308240860700607, 0.22189150750637054, 0.013388561084866524, 0.06549188494682312, 0.012005145661532879, 0.026264170184731483, 0.003614023793488741, 0.009567645378410816, 0.03260597214102745, 0.22795799374580383], [0.033841926604509354, 0.0349695049226284, 0.043661605566740036, 0.026684299111366272, 0.02233916148543358, 0.07484976947307587, 0.009794989600777626, 0.012129310518503189, 0.09662404656410217, 0.1375279724597931, 0.06735406816005707, 0.1248278096318245, 0.16557638347148895, 0.0012647965922951698, 0.014842272736132145, 0.03692548722028732, 0.09678657352924347], [0.051326751708984375, 0.03745132312178612, 0.030030163004994392, 0.03308398649096489, 0.0028164966497570276, 0.014546118676662445, 0.007192975375801325, 0.03424512594938278, 0.28664684295654297, 0.019697923213243484, 0.06117156893014908, 0.03609964996576309, 0.025255894288420677, 0.018068278208374977, 0.020205562934279442, 0.03162519633769989, 0.29053616523742676], [0.17185695469379425, 0.028961503878235817, 0.030272506177425385, 0.055181682109832764, 0.012850516475737095, 0.008090578950941563, 0.0055708191357553005, 0.02476285584270954, 0.24465125799179077, 0.04835999757051468, 0.03369203209877014, 0.013921026140451431, 0.008021002635359764, 0.005248946603387594, 0.010638822801411152, 0.05581967160105705, 0.242099791765213], [0.0477965883910656, 0.008591419085860252, 0.012560238130390644, 0.007843993604183197, 0.0036647343076765537, 0.009707380086183548, 0.004676171112805605, 0.017591839656233788, 0.4134973883628845, 0.014071790501475334, 0.006980078294873238, 0.008953343145549297, 0.008050679229199886, 0.004276555962860584, 0.005813945084810257, 0.010995090939104557, 0.41492876410484314], [0.04742226377129555, 0.030504191294312477, 0.022241177037358284, 0.04673941433429718, 0.019967779517173767, 0.008044990710914135, 0.012378828600049019, 0.02360449731349945, 0.19647781550884247, 0.04152660816907883, 0.026114612817764282, 0.04644668102264404, 0.11197292804718018, 0.03548828139901161, 0.02690413035452366, 0.10786480456590652, 0.19630101323127747], [0.08561167865991592, 0.26710274815559387, 0.15554147958755493, 0.006184375379234552, 0.0011585064930841327, 0.0028048576787114143, 0.0010972751770168543, 0.026849156245589256, 0.12017999589443207, 0.002236614702269435, 0.18039251863956451, 0.0007021683268249035, 0.0005380944930948317, 0.0013695275411009789, 0.0014217051211744547, 0.02658555656671524, 0.12022377550601959], [0.0411747582256794, 0.01335297804325819, 0.012766428291797638, 0.009585987776517868, 0.0031099379993975163, 0.0018097193678840995, 0.008015465922653675, 0.02464604191482067, 0.29103532433509827, 0.0032987233716994524, 0.005305584520101547, 0.03740245848894119, 0.15607498586177826, 0.0388929508626461, 0.043887872248888016, 0.007889741100370884, 0.30175110697746277], [0.054878272116184235, 0.016822323203086853, 0.009820486418902874, 0.00941557064652443, 0.009204561822116375, 0.003976711072027683, 0.00810614600777626, 0.02501188963651657, 0.2995590567588806, 0.003688205499202013, 0.00458797812461853, 0.013329659588634968, 0.09101948887109756, 0.12248995155096054, 0.021962657570838928, 0.01028417982161045, 0.2958429455757141], [0.018716024234890938, 0.009983398020267487, 0.011888500303030014, 0.0010097380727529526, 0.0002665521460585296, 6.889200449222699e-05, 0.00045605850755237043, 0.016255822032690048, 0.18820303678512573, 0.0025607829447835684, 0.0010256258537992835, 0.0012142137857154012, 0.0905708447098732, 0.2220073789358139, 0.24546314775943756, 0.0022201782558113337, 0.18808981776237488], [0.014399190433323383, 0.010208037681877613, 0.013844252564013004, 0.0006443368620239198, 9.486025373917073e-05, 3.585176818887703e-05, 0.0002541632275097072, 0.013982491567730904, 0.21761368215084076, 0.002050001872703433, 0.00045076539390720427, 0.0005245659849606454, 0.03005126491189003, 0.3267979025840759, 0.15003377199172974, 0.001569760381244123, 0.21744513511657715], [0.09393034130334854, 0.04503176733851433, 0.040884219110012054, 0.04297155514359474, 0.009656489826738834, 0.005742409732192755, 0.006128746550530195, 0.027677081525325775, 0.16846899688243866, 0.03622182458639145, 0.07857640832662582, 0.014126379042863846, 0.07771772146224976, 0.03430793434381485, 0.08873587846755981, 0.057713620364665985, 0.17210865020751953], [0.04696759581565857, 0.008279483765363693, 0.012381640262901783, 0.0076857213862240314, 0.0036634134594351053, 0.0095828827470541, 0.0046584513038396835, 0.016844969242811203, 0.4153643548488617, 0.013680282048881054, 0.006776736583560705, 0.008982094004750252, 0.00785152055323124, 0.0042439838871359825, 0.005718466360121965, 0.01076946035027504, 0.4165489673614502]], [[0.0047764405608177185, 0.014465292915701866, 0.050096191465854645, 0.05621565878391266, 0.029116248711943626, 0.09146157652139664, 0.012836563400924206, 0.5525392293930054, 0.0017905436689034104, 0.00014533997455146164, 0.00040994182927533984, 7.546547567471862e-05, 0.00042966019827872515, 0.0004822840273845941, 0.0005600082804448903, 0.18318414688110352, 0.0014153847005218267], [0.16168992221355438, 0.10332753509283066, 0.05339629203081131, 0.039670344442129135, 0.012893757782876492, 0.004433847963809967, 0.007579755503684282, 0.039914097636938095, 0.2549296021461487, 0.027747051790356636, 0.025680754333734512, 0.005039595067501068, 0.007310409098863602, 0.005721874535083771, 0.005866417661309242, 0.006263407412916422, 0.23853540420532227], [0.017180610448122025, 0.025060182437300682, 0.011769026517868042, 0.010031694546341896, 0.004610319156199694, 0.0018299936782568693, 0.0023333444260060787, 0.03782020881772041, 0.4099421799182892, 0.01139602530747652, 0.04021399840712547, 0.004097555298358202, 0.00659250607714057, 0.009781518951058388, 0.004275632556527853, 0.005514323245733976, 0.39755094051361084], [0.24205714464187622, 0.07515685260295868, 0.03261974826455116, 0.04049297422170639, 0.005498139653354883, 0.003589578904211521, 0.0038170493207871914, 0.02172235958278179, 0.2570441663265228, 0.010600860230624676, 0.03823235630989075, 0.002528026234358549, 0.002313795732334256, 0.006031970959156752, 0.004720599856227636, 0.011787116527557373, 0.24178721010684967], [0.08660157769918442, 0.0267828069627285, 0.015222783200442791, 0.006579977925866842, 0.012355274520814419, 0.0026335930451750755, 0.007058777380734682, 0.013183685019612312, 0.38458919525146484, 0.009724101983010769, 0.026512259617447853, 0.004221614450216293, 0.00862379465252161, 0.005914922337979078, 0.0035414511803537607, 0.004453083034604788, 0.38200119137763977], [0.0565742589533329, 0.022741135209798813, 0.01431846059858799, 0.006974519230425358, 0.01511232927441597, 0.013416020199656487, 0.01251869648694992, 0.04558227211236954, 0.3821878433227539, 0.011998691596090794, 0.00927774142473936, 0.0034956405870616436, 0.009231055155396461, 0.015898576006293297, 0.008460788987576962, 0.0031572398729622364, 0.36905476450920105], [0.145956888794899, 0.024433912709355354, 0.01110045239329338, 0.005589690059423447, 0.00852137804031372, 0.003935094457119703, 0.010604383423924446, 0.028988389298319817, 0.35665518045425415, 0.008224984630942345, 0.010671083815395832, 0.0015613113064318895, 0.015236658044159412, 0.011912493035197258, 0.007133821025490761, 0.010544104501605034, 0.33893024921417236], [0.20003503561019897, 0.03513435274362564, 0.01350048091262579, 0.01155111938714981, 0.005778894294053316, 0.006176818162202835, 0.007779107894748449, 0.07323987036943436, 0.3146964907646179, 0.004583782982081175, 0.01674829237163067, 0.00132132472936064, 0.0052017453126609325, 0.0061356485821306705, 0.003765933448448777, 0.006274424958974123, 0.2880767285823822], [0.01134582795202732, 0.0027886468451470137, 0.004393760114908218, 0.0012013252126052976, 0.0007892410503700376, 0.0006909978692419827, 0.00010258705879095942, 0.01349521055817604, 0.46758270263671875, 0.00317165139131248, 0.003815830685198307, 0.0014670805539935827, 0.0012084972113370895, 0.0014251519460231066, 0.002050597919151187, 0.0063584051094949245, 0.47811266779899597], [0.10397167503833771, 0.01670692302286625, 0.0042348396964371204, 0.002936998615041375, 0.0022281575947999954, 0.001219852943904698, 0.0021744510158896446, 0.02554144524037838, 0.30206283926963806, 0.08706522732973099, 0.005857251584529877, 0.007412291131913662, 0.06019121780991554, 0.03752140700817108, 0.0341554693877697, 0.00837808009237051, 0.2983419597148895], [0.11106002330780029, 0.05798957869410515, 0.009175832383334637, 0.006006509065628052, 0.0009313564514741302, 0.000524171395227313, 0.000814763130620122, 0.01001639012247324, 0.283229798078537, 0.03666605427861214, 0.06804057955741882, 0.00826227106153965, 0.0231171865016222, 0.020987797528505325, 0.024092931300401688, 0.054810263216495514, 0.2842743992805481], [0.21004676818847656, 0.0076301442459225655, 0.0025925468653440475, 0.0025854678824543953, 0.007142297923564911, 0.0010936055332422256, 0.003085079835727811, 0.007417768705636263, 0.22301018238067627, 0.09762229025363922, 0.01705210469663143, 0.016025260090827942, 0.07783763855695724, 0.06277673691511154, 0.028893250972032547, 0.011506946757435799, 0.22368192672729492], [0.16493965685367584, 0.016754286363720894, 0.010389899834990501, 0.005919300951063633, 0.004618823062628508, 0.0022923992946743965, 0.004112088121473789, 0.014372020028531551, 0.3123747706413269, 0.015304689295589924, 0.045718900859355927, 0.008876322768628597, 0.01618959754705429, 0.013929045759141445, 0.010676085948944092, 0.031918950378894806, 0.3216131329536438], [0.17038936913013458, 0.010884520597755909, 0.015259306877851486, 0.013368110172450542, 0.007837566547095776, 0.0039718723855912685, 0.010968479327857494, 0.010812520980834961, 0.20886962115764618, 0.027151932939887047, 0.11788447201251984, 0.01176005881279707, 0.03727806359529495, 0.04098964482545853, 0.04142532870173454, 0.05369703471660614, 0.21745195984840393], [0.13964858651161194, 0.006773388013243675, 0.0038053616881370544, 0.006036474369466305, 0.004589551594108343, 0.001276884926483035, 0.0057591600343585014, 0.01186785101890564, 0.29027774930000305, 0.014422743581235409, 0.0760827511548996, 0.01532750390470028, 0.03502415493130684, 0.0332510881125927, 0.021763911470770836, 0.031127475202083588, 0.3029654622077942], [0.2634395360946655, 0.01273544691503048, 0.005775334779173136, 0.013247941620647907, 0.0012775955256074667, 0.000984705751761794, 0.001921196817420423, 0.0161697156727314, 0.24089935421943665, 0.010158421471714973, 0.04824785143136978, 0.006508584134280682, 0.020357416942715645, 0.02361544407904148, 0.01762244664132595, 0.07775110751390457, 0.23928780853748322], [0.011516982689499855, 0.0026077942457050085, 0.003780677216127515, 0.0010428187670186162, 0.0006774596986360848, 0.0005879882955923676, 9.023277380038053e-05, 0.011555921286344528, 0.4670446217060089, 0.003327441867440939, 0.0041311620734632015, 0.0015518590807914734, 0.001283178455196321, 0.0014886875869706273, 0.0021921079605817795, 0.006300783716142178, 0.4808203876018524]], [[0.1623072475194931, 0.0012633251026272774, 6.962366751395166e-05, 0.00026393134612590075, 0.00012457440607249737, 0.0002578133135102689, 0.00023851668811403215, 0.013526447117328644, 0.25617942214012146, 0.139570415019989, 0.048960089683532715, 0.010567664168775082, 0.029556963592767715, 0.0061595244333148, 0.02951035648584366, 0.03424634039402008, 0.26719775795936584], [0.3390536904335022, 0.0889921486377716, 0.0001930597791215405, 7.445942901540548e-05, 9.19035210245056e-06, 1.4767938409931958e-05, 1.3521007531380747e-05, 0.014010481536388397, 0.16752415895462036, 0.0010525814723223448, 0.21573597192764282, 5.22137779626064e-05, 0.0007142201066017151, 0.00036420393735170364, 0.0010480753844603896, 0.0008295660954900086, 0.1703176498413086], [0.022874783724546432, 5.438602966023609e-05, 0.0037000118754804134, 7.93799881648738e-06, 3.052967940675444e-07, 1.4427190535570844e-06, 6.431093879655236e-07, 0.0016408545197919011, 0.3248033821582794, 0.07067390531301498, 0.17147256433963776, 0.00010828213999047875, 0.0022368491627275944, 0.007475680205971003, 0.01340938825160265, 0.015593297779560089, 0.36594629287719727], [0.07694058865308762, 0.0005037760711275041, 1.0563108844507951e-05, 0.21397846937179565, 0.0007803369080647826, 0.00026854363386519253, 0.0028669836465269327, 0.007937896996736526, 0.22375938296318054, 0.015676237642765045, 0.026943713426589966, 0.023994797840714455, 0.009724375791847706, 0.0024407189339399338, 0.003673345549032092, 0.14758728444576263, 0.24291294813156128], [0.0968499556183815, 4.014170917798765e-05, 1.4629287079515052e-06, 0.0002983074518851936, 0.10172491520643234, 0.0011016654316335917, 0.0001373549021081999, 0.002587493509054184, 0.3251079022884369, 0.004826262127608061, 0.0038076189812272787, 0.03343833610415459, 0.07753121852874756, 0.0012479076394811273, 0.0014325695810839534, 0.0008384762331843376, 0.34902843832969666], [0.058163005858659744, 8.544711818103679e-06, 1.0932297982435557e-06, 7.041184289846569e-05, 0.00019960934878326952, 0.05167846381664276, 2.9497832656488754e-05, 0.0013207800220698118, 0.338161438703537, 0.08370334655046463, 0.0014820311916992068, 0.018722429871559143, 0.07246594876050949, 0.0005756586324423552, 0.001453503267839551, 0.00210462580434978, 0.3698594570159912], [0.07716254144906998, 4.816689761355519e-05, 8.286838237836491e-07, 0.0006725772982463241, 7.168556476244703e-05, 9.905304614221677e-05, 0.12262681126594543, 0.004233615472912788, 0.31639158725738525, 0.03923267871141434, 0.003790271934121847, 0.06171872466802597, 0.021258851513266563, 0.0006978320889174938, 0.0019097381737083197, 0.012133904732763767, 0.3379511833190918], [0.1980915069580078, 0.0031299081165343523, 0.0031548039987683296, 0.001146852970123291, 0.004612255375832319, 0.005859014578163624, 0.001204004161991179, 0.053975775837898254, 0.2188843935728073, 0.13828830420970917, 0.04127419367432594, 0.0035133615601807833, 0.02101023495197296, 0.006222013849765062, 0.03766386955976486, 0.04638373479247093, 0.21558576822280884], [0.2045547366142273, 0.017288926988840103, 0.005911713931709528, 0.004890249576419592, 0.0024099410511553288, 0.0055905357003211975, 0.004014029633253813, 0.06379641592502594, 0.239961639046669, 0.07319413870573044, 0.02846449799835682, 0.009935220703482628, 0.020917033776640892, 0.010961675085127354, 0.026058079674839973, 0.041317325085401535, 0.24073384702205658], [0.3412293493747711, 0.0425233319401741, 0.02530532144010067, 0.010399009101092815, 0.000824531598482281, 0.015127566643059254, 0.008493355475366116, 0.15153510868549347, 0.003197578014805913, 0.3981427848339081, 0.0001430990669177845, 1.0313862730981782e-05, 1.5928937500575557e-05, 2.43582599068759e-06, 1.9739929484785534e-05, 0.00017232833488378674, 0.002858119085431099], [0.08824986964464188, 0.6997199654579163, 0.011842271313071251, 0.0011897149961441755, 2.6869691282627173e-05, 9.908813080983236e-05, 7.700332935201004e-05, 0.010119310580193996, 0.0006344643770717084, 4.224324129609158e-06, 0.1874210089445114, 6.41541078039154e-08, 3.8901990251360985e-07, 1.5369962511613267e-06, 2.8495185233623488e-06, 2.452236003591679e-05, 0.0005868630832992494], [0.3592156767845154, 0.003131461562588811, 0.00036553211975842714, 0.006802729796618223, 0.011866609565913677, 0.017082614824175835, 0.007123382296413183, 0.019259361550211906, 0.003832812188193202, 1.1280466424068436e-05, 2.5483777790213935e-06, 0.5673357844352722, 0.0001800861646188423, 2.9578353860415518e-05, 2.65734543063445e-05, 2.604628389235586e-05, 0.0037079621106386185], [0.5955706238746643, 0.031002193689346313, 0.0059892116114497185, 0.0078062317334115505, 0.015972916036844254, 0.13028669357299805, 0.008188439533114433, 0.1265796273946762, 0.004255733918398619, 4.628387978300452e-05, 4.282952068024315e-05, 0.000389767752494663, 0.06887504458427429, 0.000504101684782654, 0.00041015748865902424, 6.764943100279197e-05, 0.004012505989521742], [0.2370082139968872, 0.013091888278722763, 0.014713992364704609, 0.0027313160244375467, 0.00020957450033165514, 0.0007991665042936802, 0.000574834703002125, 0.1142205223441124, 0.003886783728376031, 4.559553417493589e-06, 5.656806752085686e-05, 1.345186319667846e-05, 0.00010998273501172662, 0.557847261428833, 0.050550296902656555, 0.0006638870690949261, 0.0035178351681679487], [0.09647241979837418, 0.007483694702386856, 0.009100493043661118, 0.0021675468888133764, 5.778981721960008e-05, 0.0003691861347761005, 0.00038284496986307204, 0.06353677809238434, 0.0017389238346368074, 7.33960132492939e-06, 2.791397855617106e-05, 4.250570782460272e-06, 2.4608452804386616e-05, 0.033816851675510406, 0.7830237746238708, 0.0002724375226534903, 0.001513192430138588], [0.26882848143577576, 0.023450184613466263, 0.005285943858325481, 0.12752436101436615, 0.0004531803715508431, 0.0017976476810872555, 0.0029235482215881348, 0.10919898003339767, 0.008442096412181854, 5.5021519074216485e-05, 0.00016640385729260743, 1.107062962546479e-05, 1.499476820754353e-05, 8.318276377394795e-05, 0.00012007253826595843, 0.4437243938446045, 0.007920338772237301], [0.22886542975902557, 0.023172790184617043, 0.008197464980185032, 0.006507922429591417, 0.0031450276728719473, 0.007757019717246294, 0.005424468778073788, 0.07678276300430298, 0.22266785800457, 0.065454863011837, 0.027140682563185692, 0.009864493273198605, 0.019179660826921463, 0.010259775444865227, 0.022666333243250847, 0.040682610124349594, 0.22223085165023804]], [[0.09246888011693954, 0.06194363906979561, 0.11018208414316177, 0.0610809363424778, 0.20336997509002686, 0.10996213555335999, 0.01868795044720173, 0.04144829511642456, 0.05479266121983528, 0.10289625823497772, 0.018722767010331154, 0.0013742772862315178, 0.01276630163192749, 0.004419051576405764, 0.004897411447018385, 0.04978408291935921, 0.051203250885009766], [0.08506936579942703, 0.049196187406778336, 0.12829461693763733, 0.04550391063094139, 0.14054259657859802, 0.0526413656771183, 0.029778851196169853, 0.045694414526224136, 0.05757182836532593, 0.11799205839633942, 0.12959042191505432, 0.00145761389285326, 0.004579771310091019, 0.0026518211234360933, 0.0022720787674188614, 0.052544161677360535, 0.05461887642741203], [0.09991312772035599, 0.02390151284635067, 0.17408640682697296, 0.014207236468791962, 0.011501027271151543, 0.03187821805477142, 0.012340192683041096, 0.03705303743481636, 0.21625526249408722, 0.03588656708598137, 0.07371551543474197, 0.004669873043894768, 0.011105416342616081, 0.009820433333516121, 0.007865686900913715, 0.022701747715473175, 0.21309876441955566], [0.08387314528226852, 0.011907560750842094, 0.0862431600689888, 0.0826898068189621, 0.11915934085845947, 0.04959939047694206, 0.013076802715659142, 0.01409516204148531, 0.047607846558094025, 0.0564408004283905, 0.01073156762868166, 0.0014565858291462064, 0.004775232635438442, 0.007413520477712154, 0.006316609680652618, 0.3586348295211792, 0.0459785982966423], [0.0606183297932148, 0.013322938233613968, 0.10909030586481094, 0.014323634095489979, 0.11583612114191055, 0.04240940883755684, 0.01285891979932785, 0.06441843509674072, 0.2113136649131775, 0.10709409415721893, 0.008821564726531506, 0.0008644995978102088, 0.0015205212403088808, 0.0006168255931697786, 0.0008936897502280772, 0.029101520776748657, 0.20689548552036285], [0.0518786758184433, 0.012471107766032219, 0.1649257242679596, 0.006757655646651983, 0.036428455263376236, 0.015883615240454674, 0.008681015111505985, 0.023485753685235977, 0.28365588188171387, 0.09019187092781067, 0.009715721011161804, 0.0006356050143949687, 0.0018064918695017695, 0.002422560937702656, 0.0015673176385462284, 0.013480921275913715, 0.27601158618927], [0.016165167093276978, 0.011963787488639355, 0.09751909971237183, 0.0057828170247375965, 0.021685222163796425, 0.0210827998816967, 0.005414087790995836, 0.01337400171905756, 0.35972151160240173, 0.06218336895108223, 0.020896082744002342, 0.002786192111670971, 0.0016405622009187937, 0.001782930688932538, 0.002505082171410322, 0.010956077836453915, 0.3445413410663605], [0.08164932578802109, 0.03990740329027176, 0.08788231760263443, 0.05205972492694855, 0.16068410873413086, 0.05053249001502991, 0.009451997466385365, 0.09337428212165833, 0.09370559453964233, 0.15410488843917847, 0.02712096832692623, 0.001029302948154509, 0.005088322330266237, 0.002205743221566081, 0.0021048653870821, 0.05023520812392235, 0.08886346966028214], [0.004474562592804432, 0.0011820620857179165, 0.007393202744424343, 0.001520694000646472, 0.001425054739229381, 0.0027973284013569355, 0.0004933666787110269, 0.010234818793833256, 0.47769516706466675, 0.002372149610891938, 0.001906862948089838, 0.0007091793813742697, 0.0006218882626853883, 0.0008513749344274402, 0.0007196696242317557, 0.0016267203027382493, 0.48397573828697205], [0.10300230979919434, 0.012551168911159039, 0.03135497868061066, 0.013058312237262726, 0.08720850199460983, 0.03815891966223717, 0.004374713636934757, 0.015692712739109993, 0.07346475124359131, 0.44246822595596313, 0.02071460522711277, 0.0010239272378385067, 0.008562631905078888, 0.01139331515878439, 0.014961163513362408, 0.04564831033349037, 0.07636153697967529], [0.1521003097295761, 0.020120013505220413, 0.08223660290241241, 0.0221259742975235, 0.058031730353832245, 0.03446701169013977, 0.013106283731758595, 0.017250314354896545, 0.059794191271066666, 0.21883663535118103, 0.13909012079238892, 0.003814751747995615, 0.006077473517507315, 0.012380351312458515, 0.00395074812695384, 0.09228211641311646, 0.06433528661727905], [0.023298460990190506, 0.007727380841970444, 0.059849195182323456, 0.003751971060410142, 0.007221390958875418, 0.014949124306440353, 0.005415600258857012, 0.005057912785559893, 0.3309497535228729, 0.1234544888138771, 0.023582691326737404, 0.003017864190042019, 0.0017162382137030363, 0.009371913969516754, 0.016971569508314133, 0.02475302293896675, 0.33891159296035767], [0.01758722774684429, 0.013618450611829758, 0.07672133296728134, 0.000871562457177788, 0.0018003752920776606, 0.007232997566461563, 0.004678796511143446, 0.003702498273923993, 0.39411067962646484, 0.06546493619680405, 0.007070925552397966, 0.003873503766953945, 0.005213557276874781, 0.0038225280586630106, 0.006586284842342138, 0.001729118637740612, 0.3859153389930725], [0.050994254648685455, 0.039802730083465576, 0.12303764373064041, 0.014415951445698738, 0.014315569773316383, 0.03778175264596939, 0.019377561286091805, 0.009150020778179169, 0.254240483045578, 0.07567020505666733, 0.023418530821800232, 0.008936692960560322, 0.01541205495595932, 0.01106566283851862, 0.031168535351753235, 0.029420187696814537, 0.24179214239120483], [0.031442221254110336, 0.01501182559877634, 0.03548745810985565, 0.009461838752031326, 0.004510349128395319, 0.012757851742208004, 0.010247272439301014, 0.010063671506941319, 0.3640801012516022, 0.03410377725958824, 0.01032322645187378, 0.008739592507481575, 0.018789246678352356, 0.020711369812488556, 0.03466292843222618, 0.01791529357433319, 0.361691951751709], [0.07557731866836548, 0.015311889350414276, 0.01394333690404892, 0.04659917578101158, 0.07440418004989624, 0.03132397308945656, 0.014012784697115421, 0.012508862651884556, 0.046278029680252075, 0.4481610655784607, 0.024148615077137947, 0.0030854649376124144, 0.008612181060016155, 0.023680653423070908, 0.026031577959656715, 0.08909101039171219, 0.047229815274477005], [0.004537979140877724, 0.0010722988517954946, 0.006664913147687912, 0.0013428947422653437, 0.0012812219792976975, 0.002524411305785179, 0.0004473469452932477, 0.009245374239981174, 0.4765443205833435, 0.002610776573419571, 0.002038220874965191, 0.0007411545375362039, 0.0006175400922074914, 0.0008927881135605276, 0.0007382421754300594, 0.0017119499389082193, 0.4869885742664337]], [[0.017373783513903618, 0.010760200209915638, 0.004052707459777594, 0.002160601783543825, 0.004703983198851347, 0.000394698727177456, 0.0004772089596372098, 0.008218641392886639, 0.08138436079025269, 0.07528041303157806, 0.5505829453468323, 0.007514370139688253, 0.0081545514985919, 0.012097654864192009, 0.06066875904798508, 0.06331667304039001, 0.09285833686590195], [0.011449586600065231, 0.006356136407703161, 0.8754265904426575, 0.008639363572001457, 0.003794182790443301, 0.004211607854813337, 0.0020771094132214785, 0.007402998860925436, 0.028407972306013107, 0.0015781077090650797, 0.01243663765490055, 0.000761339208111167, 0.0011568123009055853, 0.0005532116629183292, 0.007559823337942362, 0.001159479608759284, 0.027029061689972878], [0.03195991739630699, 0.2568446695804596, 0.12623031437397003, 0.008409995585680008, 0.004986082203686237, 0.007851914502680302, 0.004397053271532059, 0.04552983492612839, 0.21597664058208466, 0.000780573463998735, 0.017395876348018646, 0.005138861481100321, 0.002892897929996252, 0.007520338054746389, 0.024654734879732132, 0.02250443957746029, 0.21692578494548798], [0.04044754430651665, 0.015792282298207283, 0.0023268135264515877, 0.00258962856605649, 0.04314747080206871, 0.2793048620223999, 0.30927082896232605, 0.061317089945077896, 0.11304378509521484, 0.0016480220947414637, 0.0016632579499855638, 0.005961955059319735, 0.0024919621646404266, 0.0017828393029049039, 0.004487823229283094, 0.00265551102347672, 0.11206835508346558], [0.01992252841591835, 0.015503552742302418, 0.010178887285292149, 0.037280816584825516, 0.0024466016329824924, 0.6000202894210815, 0.1180553212761879, 0.04667108133435249, 0.06691066920757294, 0.004596197512000799, 0.0009887930937111378, 0.007241436745971441, 0.00015203337534330785, 0.00032288688817061484, 0.0035447953268885612, 0.0008390126167796552, 0.0653250515460968], [0.03467075899243355, 0.06156986579298973, 0.04821975156664848, 0.1019117683172226, 0.16641081869602203, 0.0029154496733099222, 0.3086279034614563, 0.04037686064839363, 0.1068916767835617, 0.004694036673754454, 0.006833398714661598, 0.0009412026265636086, 0.005467477720230818, 0.00034866968053393066, 0.003190305782482028, 0.004664421547204256, 0.10226564854383469], [0.0012558179441839457, 6.563087663380429e-05, 4.949299545842223e-05, 0.0015380426775664091, 0.00023054353368934244, 0.9875051975250244, 0.0004441349592525512, 0.0025152326561510563, 0.003047464182600379, 0.0002783294767141342, 6.7850196501240134e-06, 5.451321339933202e-05, 1.8367582015343942e-06, 3.508809459162876e-05, 0.00010729442874435335, 2.2561776859220117e-05, 0.002842082642018795], [0.053099703043699265, 0.0543893501162529, 0.03896797075867653, 0.06328529864549637, 0.060940925031900406, 0.016793664544820786, 0.042788613587617874, 0.06915182620286942, 0.21027907729148865, 0.0890103131532669, 0.07785212248563766, 0.005868659820407629, 0.003588279942050576, 0.004618037957698107, 0.0057329339906573296, 0.011873433366417885, 0.19175979495048523], [0.06063633784651756, 0.06326667219400406, 0.034328192472457886, 0.022750509902834892, 0.010062981396913528, 0.0041212965734303, 0.01725657843053341, 0.0666080117225647, 0.2555081844329834, 0.04517829790711403, 0.05627714470028877, 0.017643898725509644, 0.015165286138653755, 0.011751209385693073, 0.020329898223280907, 0.04869578778743744, 0.2504197061061859], [0.042590171098709106, 0.007069586776196957, 0.0012985594803467393, 0.014135523699223995, 0.00020970412879250944, 0.0025508131366223097, 0.0003640716022346169, 0.02199370414018631, 0.13977669179439545, 0.007103921379894018, 0.2491903156042099, 0.008471415378153324, 0.013476744294166565, 0.015292834490537643, 0.24435527622699738, 0.08526758849620819, 0.14685308933258057], [0.025622189044952393, 0.005079266615211964, 0.0159971471875906, 0.0022866185754537582, 0.0003106805379502475, 0.0007034053560346365, 0.0006128181703388691, 0.015516459941864014, 0.0847368910908699, 0.6358482241630554, 0.04185083135962486, 0.0064671714790165424, 0.007325771264731884, 0.012678802944719791, 0.021403003484010696, 0.03589853271842003, 0.08766209334135056], [0.01034579984843731, 0.0010164995910599828, 0.0007042950601316988, 0.0005764112574979663, 0.0001418629544787109, 7.555496267741546e-05, 6.739431410096586e-05, 0.0010716611286625266, 0.011676725931465626, 0.002192141953855753, 0.002111768117174506, 0.00011826671834569424, 0.9365773797035217, 0.004679031670093536, 0.014322083443403244, 0.0025440813042223454, 0.011778962798416615], [0.00584240211173892, 0.0006241857772693038, 0.0002169349609175697, 0.0004340888699516654, 9.15642740437761e-05, 0.00011733853898476809, 8.395465556532145e-05, 0.0064913625828921795, 0.03131890669465065, 0.00014143298903945833, 0.0012957515427842736, 0.9128997921943665, 0.00019785920449066907, 0.0010000524343922734, 0.006657343823462725, 0.001121798879466951, 0.031465109437704086], [0.011719241738319397, 0.001982304034754634, 0.0029356570448726416, 0.00029034720500931144, 0.0014887249562889338, 8.823991083772853e-05, 0.0013051838614046574, 0.0023637183476239443, 0.023899512365460396, 7.243487925734371e-05, 0.0020801685750484467, 0.002515074796974659, 0.013138941489160061, 0.013515998609364033, 0.8798472285270691, 0.017791997641324997, 0.024965189397335052], [0.014468244276940823, 0.002123360289260745, 0.0009089037775993347, 0.00027280973154120147, 0.0009915506234392524, 3.583553188946098e-05, 0.0006245332187972963, 0.003266494255512953, 0.03394186869263649, 0.0014993351651355624, 0.0031883211340755224, 0.005818007048219442, 0.009238418191671371, 0.8628991842269897, 0.0052667162381112576, 0.019341936334967613, 0.03611455112695694], [0.02876167744398117, 0.004317948129028082, 0.0021643307991325855, 0.002739173825830221, 0.0013453061692416668, 0.013219424523413181, 0.0009473168174736202, 0.008477412164211273, 0.05804387480020523, 0.027571791782975197, 0.058400530368089676, 0.059598151594400406, 0.030119767412543297, 0.1764165610074997, 0.40899723768234253, 0.054463885724544525, 0.06441550701856613], [0.06170149892568588, 0.05879565700888634, 0.030704542994499207, 0.021936966106295586, 0.010049635544419289, 0.004163258709013462, 0.01647026464343071, 0.06377705186605453, 0.2525229752063751, 0.050131164491176605, 0.05698935687541962, 0.017769869416952133, 0.015925999730825424, 0.012618206441402435, 0.02194317989051342, 0.0541968047618866, 0.2503035366535187]], [[0.005758460145443678, 0.0021250469144433737, 0.004918077029287815, 0.0015783997951075435, 0.0031314161606132984, 0.0012560640461742878, 0.0003333171480335295, 0.005877758841961622, 0.42379939556121826, 0.03887219354510307, 0.027776392176747322, 0.000757195521146059, 0.006674075033515692, 0.005416585598140955, 0.004057684447616339, 0.00699286675080657, 0.46067506074905396], [0.017574958503246307, 0.06447048485279083, 0.051008909940719604, 0.0031163066159933805, 0.001023966120555997, 0.004448094870895147, 0.001327427802607417, 0.01151659432798624, 0.4472600817680359, 0.000724693585652858, 0.002181157236918807, 3.543791171978228e-05, 0.0003073539410252124, 0.00014391100557986647, 0.00037076984881423414, 0.0008658475708216429, 0.3936239778995514], [0.002968674525618553, 0.005619123578071594, 0.028435001149773598, 0.0002892887860070914, 3.1841998861636966e-05, 0.00029665420879609883, 6.943188782315701e-05, 0.0044031897559762, 0.5065798759460449, 0.0004636448866222054, 0.0008735298179090023, 1.942684866662603e-05, 5.949027763563208e-05, 0.00013078321353532374, 0.0006501429015770555, 0.00033773420727811754, 0.4487721621990204], [0.01788296550512314, 0.24235442280769348, 0.11464615911245346, 0.024721350520849228, 0.004135359078645706, 0.005985644645988941, 0.011329052969813347, 0.015966244041919708, 0.28977298736572266, 0.009694698266685009, 0.00605228915810585, 0.002183745615184307, 0.00193732138723135, 0.000617838348262012, 0.0010090431896969676, 0.0023053723853081465, 0.24940550327301025], [0.004345357418060303, 0.053547076880931854, 0.02130398340523243, 0.007296844385564327, 0.011325634084641933, 0.003009550739079714, 0.00919779110699892, 0.008209788240492344, 0.45820072293281555, 0.00025447012740187347, 0.001014708774164319, 0.0012865019962191582, 0.0014641362940892577, 0.0001525093975942582, 0.0003483017208054662, 0.0002487985184416175, 0.41879361867904663], [0.006185310892760754, 0.052064698189496994, 0.05677692964673042, 0.006097305100411177, 0.007340249139815569, 0.023725558072328568, 0.011273540556430817, 0.008761817589402199, 0.4159131348133087, 0.0032796317245811224, 0.0023197925183922052, 0.001466546906158328, 0.001557107549160719, 0.0006841841386631131, 0.0010070785647258162, 0.0012539854506030679, 0.4002930521965027], [0.009984118863940239, 0.2552521824836731, 0.08297386020421982, 0.01195122767239809, 0.004918457940220833, 0.010436220094561577, 0.04108359292149544, 0.0127377575263381, 0.29193446040153503, 0.0002466780715622008, 0.0017972913337871432, 0.0028018862940371037, 0.0010170921450480819, 0.0002896444930229336, 0.0003109632816631347, 0.0011466684518381953, 0.27111801505088806], [0.016285758465528488, 0.12385275214910507, 0.11852085590362549, 0.2824400067329407, 0.16928309202194214, 0.07208912819623947, 0.03803791105747223, 0.0434800423681736, 0.04765653610229492, 0.02233661711215973, 0.008134892210364342, 0.0026699446607381105, 0.002235323190689087, 0.0026772483251988888, 0.001221737009473145, 0.005273064598441124, 0.043805088847875595], [0.003703151596710086, 0.0030523992609232664, 0.007243176456540823, 0.0023688124492764473, 0.004038053099066019, 0.0021750314626842737, 0.0012231331784278154, 0.00723686907440424, 0.47688260674476624, 0.0032990286126732826, 0.00206870399415493, 0.0008751602726988494, 0.0030658964533358812, 0.0014470196329057217, 0.002316804137080908, 0.0015734852058812976, 0.4774307310581207], [0.028774790465831757, 0.002642599167302251, 0.002106707077473402, 0.00568531034514308, 0.004500947892665863, 0.0288652665913105, 0.005638797301799059, 0.014731933362782001, 0.3937789797782898, 0.02373965084552765, 0.01259586215019226, 0.002859694417566061, 0.006989844609051943, 0.005218239035457373, 0.00419235322624445, 0.010987569577991962, 0.4466913938522339], [0.05040007829666138, 0.40499311685562134, 0.1488456279039383, 0.00640207901597023, 0.0005312006105668843, 0.0021755725611001253, 0.0006728880689479411, 0.005858015734702349, 0.0635240226984024, 0.0029547137673944235, 0.23792485892772675, 0.0003149133117403835, 0.0002752009895630181, 0.0005135594983585179, 0.0002646218636073172, 0.0051895552314817905, 0.06916012614965439], [0.008348342031240463, 0.004867127165198326, 0.0013254539808258414, 0.0005954488879069686, 0.0015938024735078216, 0.0030688317492604256, 0.008740752004086971, 0.008971484377980232, 0.4144304096698761, 0.0013387096114456654, 0.012678942643105984, 0.07251113653182983, 0.021529830992221832, 0.0016468254616484046, 0.0026867168489843607, 0.0015883127925917506, 0.43407773971557617], [0.01259857602417469, 0.011510941199958324, 0.006271845661103725, 0.0004519037320278585, 0.0005010212771594524, 0.0017907355213537812, 0.0021989252418279648, 0.01928710751235485, 0.4178101420402527, 0.0008950172923505306, 0.003501642495393753, 0.008178569376468658, 0.07352893799543381, 0.0016593364998698235, 0.0033335292246192694, 0.0014292368432506919, 0.4350525140762329], [0.026836425065994263, 0.01943366229534149, 0.03158280998468399, 0.006877897307276726, 0.0013161987299099565, 0.005196307320147753, 0.0027716970071196556, 0.027549246326088905, 0.22064585983753204, 0.09490353614091873, 0.11428601294755936, 0.018736863508820534, 0.022037819027900696, 0.06502929329872131, 0.10713031888008118, 0.007348590064793825, 0.22831745445728302], [0.023632125928997993, 0.007872000336647034, 0.017207829281687737, 0.0025761686265468597, 0.0006747061852365732, 0.0023692105896770954, 0.0013521189102903008, 0.02210311032831669, 0.3481515049934387, 0.028256116434931755, 0.0492672324180603, 0.01164205651730299, 0.026400674134492874, 0.030927538871765137, 0.0554853193461895, 0.008229000493884087, 0.3638533353805542], [0.03483754023909569, 0.05955659598112106, 0.03354164958000183, 0.0251525416970253, 0.004316721111536026, 0.005708860699087381, 0.002586419228464365, 0.02293725684285164, 0.03824807330965996, 0.2152269333600998, 0.37943756580352783, 0.03995276242494583, 0.028697805479168892, 0.017712391912937164, 0.012051386758685112, 0.041439756751060486, 0.03859568387269974], [0.00356517662294209, 0.0029283235780894756, 0.006426373030990362, 0.002057009842246771, 0.0034274396020919085, 0.001882188837043941, 0.001106921350583434, 0.006688086315989494, 0.47607871890068054, 0.003981856629252434, 0.0023538446985185146, 0.0009857633849605918, 0.0034294750075787306, 0.0015889498172327876, 0.0025830105878412724, 0.001771243056282401, 0.47914549708366394]], [[0.057300034910440445, 0.00101943698246032, 0.0021415636874735355, 0.0008546136086806655, 0.0054085771553218365, 0.002029214520007372, 0.0008198036812245846, 0.009260308928787708, 0.03953936696052551, 0.37982413172721863, 0.11117511987686157, 0.023168686777353287, 0.06998268514871597, 0.007911001332104206, 0.02765064686536789, 0.2104039192199707, 0.05151091516017914], [0.050369054079055786, 0.04385271668434143, 0.03822799772024155, 0.02151563949882984, 0.018855562433600426, 0.01827183924615383, 0.006778425071388483, 0.22453130781650543, 0.1340239942073822, 0.07135462760925293, 0.12506183981895447, 0.006461805198341608, 0.06561027467250824, 0.006908669136464596, 0.009605640545487404, 0.02335977740585804, 0.135210782289505], [0.11721554398536682, 0.041641246527433395, 0.00972040556371212, 0.014014014042913914, 0.0024876361712813377, 0.013287719339132309, 0.0128793865442276, 0.0887947529554367, 0.27240633964538574, 0.005507349967956543, 0.0697098821401596, 0.004777554888278246, 0.018232645466923714, 0.018764374777674675, 0.03664420172572136, 0.009778556413948536, 0.26413843035697937], [0.045295413583517075, 0.027806073427200317, 0.009272068738937378, 0.03675176575779915, 0.007415296975523233, 0.006798502057790756, 0.004238978959619999, 0.2488250732421875, 0.21867583692073822, 0.03023870475590229, 0.05722988769412041, 0.00428718002513051, 0.00888246763497591, 0.004540345631539822, 0.004844400100409985, 0.07130539417266846, 0.21359269320964813], [0.035432640463113785, 0.02858577109873295, 0.00421521719545126, 0.026622828096151352, 0.01288614422082901, 0.010608547367155552, 0.006954746320843697, 0.11331315338611603, 0.3651497960090637, 0.018921684473752975, 0.008791389875113964, 0.0070966617204248905, 0.0026162010617554188, 0.0007993182516656816, 0.0005278706084936857, 0.0074110026471316814, 0.35006698966026306], [0.06639274209737778, 0.019437698647379875, 0.005019697826355696, 0.011193592101335526, 0.007175098173320293, 0.004456063732504845, 0.01689990609884262, 0.0620136484503746, 0.34760984778404236, 0.020261550322175026, 0.02027243748307228, 0.0403585322201252, 0.006405416410416365, 0.010466115549206734, 0.00706848967820406, 0.008198833093047142, 0.346770316362381], [0.04457259550690651, 0.016032623127102852, 0.016786210238933563, 0.01425451971590519, 0.05170614272356033, 0.04014769569039345, 0.02640923112630844, 0.06022537499666214, 0.33386293053627014, 0.03130337968468666, 0.008061649277806282, 0.007199801970273256, 0.018669651821255684, 0.0010074260644614697, 0.0015692927408963442, 0.00830166693776846, 0.31988975405693054], [0.05643227696418762, 0.013646628707647324, 0.0317501500248909, 0.011067698709666729, 0.014415115118026733, 0.015359370037913322, 0.005356915760785341, 0.10379167646169662, 0.2578006684780121, 0.0454564169049263, 0.04180770367383957, 0.008032647892832756, 0.026290351524949074, 0.01669144816696644, 0.017197489738464355, 0.0743250846862793, 0.26057830452919006], [0.02858106605708599, 0.0043085659854114056, 0.007958337664604187, 0.003052199026569724, 0.0018483898602426052, 0.005658274050801992, 0.001412619836628437, 0.010081819258630276, 0.44751182198524475, 0.006560749374330044, 0.004632902331650257, 0.0027243869844824076, 0.0037464250344783068, 0.010423772037029266, 0.007968236692249775, 0.005649067461490631, 0.4478813409805298], [0.01825212873518467, 0.011661571450531483, 0.0027983144391328096, 0.009320065379142761, 0.003965599928051233, 0.0022205798886716366, 0.0019291775533929467, 0.06871742010116577, 0.3039730489253998, 0.04260949417948723, 0.015275034122169018, 0.03099219501018524, 0.007589003536850214, 0.004136906936764717, 0.003975234925746918, 0.1305551528930664, 0.3420291244983673], [0.08748237788677216, 0.02557387948036194, 0.018112313002347946, 0.0049604433588683605, 0.0014782048529013991, 0.0022030407562851906, 0.0009602387435734272, 0.05315152183175087, 0.20510943233966827, 0.05159322917461395, 0.0959496796131134, 0.01279450487345457, 0.10031656175851822, 0.008924460038542747, 0.030730612576007843, 0.07733865827322006, 0.2233208864927292], [0.0498603954911232, 0.007433606311678886, 0.0016537772025913, 0.005322957877069712, 0.0039930944330990314, 0.0035380616318434477, 0.004288866184651852, 0.0305508840829134, 0.35446223616600037, 0.04660920053720474, 0.007483022287487984, 0.01469020638614893, 0.013795307837426662, 0.006084782537072897, 0.008098689839243889, 0.06909304112195969, 0.3730418384075165], [0.07243383675813675, 0.007740843575447798, 0.012108874507248402, 0.004148117266595364, 0.002742878394201398, 0.0028195148333907127, 0.0024749175645411015, 0.013945343904197216, 0.3822646141052246, 0.011517291888594627, 0.014738879166543484, 0.01524115726351738, 0.0059837885200977325, 0.006411973387002945, 0.011587921530008316, 0.02359296754002571, 0.41024717688560486], [0.07854430377483368, 0.010273326188325882, 0.012068699114024639, 0.006702507380396128, 0.0009893893729895353, 0.004420892801135778, 0.0008018749067559838, 0.03200588747859001, 0.34090402722358704, 0.040411461144685745, 0.032732728868722916, 0.009501599706709385, 0.007069308776408434, 0.001155844540335238, 0.0020612222142517567, 0.051742397248744965, 0.3686145544052124], [0.05737154930830002, 0.005662776064127684, 0.017658615484833717, 0.0023623763117939234, 0.0003382973372936249, 0.00366365653462708, 0.0006075557903386652, 0.01110900565981865, 0.40067917108535767, 0.015711462125182152, 0.011430365033447742, 0.009247093461453915, 0.009218628518283367, 0.0039481609128415585, 0.002190220169723034, 0.01950480043888092, 0.4292961359024048], [0.08930555731058121, 0.008811046369373798, 0.003925340250134468, 0.0061110337264835835, 0.0007046632235869765, 0.0012062698369845748, 0.002200786955654621, 0.04369465634226799, 0.2070087343454361, 0.052017226815223694, 0.10487690567970276, 0.01837259903550148, 0.01100108027458191, 0.041804101318120956, 0.03691233694553375, 0.13987357914447784, 0.23217403888702393], [0.028904935345053673, 0.003862805664539337, 0.0069825011305511, 0.0027303777169436216, 0.0016403237823396921, 0.005138302221894264, 0.0012722150422632694, 0.009086940437555313, 0.4471859633922577, 0.006697922945022583, 0.004753866232931614, 0.0028129389975219965, 0.0038341365288943052, 0.010505229234695435, 0.008085634559392929, 0.005789699032902718, 0.4507160782814026]]], [[[0.0012268522987142205, 0.001193615491501987, 0.0008361958898603916, 0.0006956990691833198, 0.0005406527197919786, 0.0006869614589959383, 0.0001046524994308129, 0.00037079612957313657, 0.497846394777298, 0.00019136350601911545, 0.0009103208431042731, 0.0003853342786896974, 0.0001866445818450302, 0.00035458983620628715, 0.0005960086127743125, 0.001435288693755865, 0.49243876338005066], [0.0026062126271426678, 0.05955971032381058, 0.00483003119006753, 0.005125260911881924, 0.0005440955865196884, 6.521259638248011e-05, 1.5452906154678203e-05, 0.0016047164099290967, 0.48359861969947815, 0.00040745188016444445, 0.0005516891833394766, 8.585672912886366e-05, 4.36004156654235e-05, 9.114493877859786e-06, 1.6389247321058065e-05, 0.00013914727605879307, 0.440797358751297], [0.0012028494384139776, 0.016091173514723778, 0.003556471085175872, 0.0013756597181782126, 0.001338676200248301, 6.803135329391807e-05, 2.319568011444062e-06, 9.375611989526078e-05, 0.4932926893234253, 2.1794699932797812e-05, 6.046155613148585e-05, 0.00022290619381237775, 8.975849050329998e-05, 7.32401676941663e-05, 2.691619738470763e-05, 4.034143057651818e-05, 0.4824428856372833], [0.001231819624081254, 0.026759592816233635, 0.08602309226989746, 0.012478143908083439, 0.01793690025806427, 0.006892875302582979, 0.00045659096213057637, 0.00020609903731383383, 0.4271720051765442, 6.295902949204901e-06, 0.0001687098847469315, 1.4306229786598124e-05, 0.001585383783094585, 0.0010070924181491137, 0.0005593216046690941, 1.904971395561006e-05, 0.41748276352882385], [0.001968498807400465, 0.005546071566641331, 0.05872735381126404, 0.19377446174621582, 0.025837019085884094, 0.0069153644144535065, 0.00015923671890050173, 0.0002369584544794634, 0.3460055887699127, 4.942282430420164e-06, 0.00010580255184322596, 3.394395753275603e-05, 1.1801466826000251e-05, 0.00019035862351302058, 0.0002730124397203326, 0.0008204026380553842, 0.35938921570777893], [0.0006208086269907653, 0.0017168422928079963, 0.0010606016730889678, 0.009086660109460354, 0.031358879059553146, 0.0035127843730151653, 8.70905423653312e-05, 0.00016364851035177708, 0.4641072452068329, 9.295687277699471e-07, 5.042512384534348e-06, 2.548368229327025e-06, 3.4707863960647956e-07, 8.447937943856232e-06, 1.3873927855456714e-05, 0.00017733579443302006, 0.4880768954753876], [0.00010141226812265813, 0.00017872703028842807, 0.00048087057075463235, 0.0018851286731660366, 0.0323953777551651, 0.9014703631401062, 0.0012603531358763576, 0.0006397413089871407, 0.030593007802963257, 2.1202245079621207e-06, 1.9603039618232287e-06, 1.9454557786957594e-07, 4.4716239244735334e-07, 1.3283220141602214e-06, 5.0499393182690255e-06, 2.0365290765766986e-05, 0.030963612720370293], [0.002887450158596039, 0.0005018715164624155, 0.0007899686461314559, 0.0022305496968328953, 0.00206627044826746, 0.04613981768488884, 0.41361093521118164, 0.00941880140453577, 0.2649163007736206, 3.681482849060558e-05, 0.00017398048657923937, 5.955187134532025e-06, 1.1472105143184308e-05, 1.3377554751059506e-05, 0.00038810836849734187, 0.0006162631325423717, 0.25619208812713623], [0.020558619871735573, 0.015892986208200455, 0.011825784109532833, 0.009166625328361988, 0.007707756478339434, 0.005215456243604422, 0.002697019837796688, 0.019493063911795616, 0.4218929409980774, 0.007586413994431496, 0.011317050084471703, 0.007993200793862343, 0.004722606856375933, 0.00699605792760849, 0.005569026339799166, 0.023229949176311493, 0.4181354343891144], [0.0013022085186094046, 5.9417747252155095e-05, 9.618737749406137e-06, 3.1320553262048634e-06, 9.828867177930078e-07, 6.095452135923551e-06, 5.499676262843423e-06, 0.0038343945052474737, 0.5037134289741516, 0.01935252547264099, 0.006374059244990349, 0.0004613842465914786, 6.5750164139899425e-06, 5.526042059500469e-06, 0.00011230498785153031, 0.0007515779579989612, 0.46400120854377747], [0.0014909309102222323, 0.00021644899970851839, 9.499776206212118e-05, 4.059539423906244e-05, 6.020482032909058e-06, 5.000700548407622e-05, 4.731058652396314e-06, 0.00040831719525158405, 0.06021977216005325, 0.8638006448745728, 0.00991840846836567, 0.0027865043375641108, 0.0007232613861560822, 0.00013436703011393547, 0.00023054922348819673, 0.0007160796667449176, 0.05915839597582817], [0.0002811781596392393, 0.0001679945271462202, 0.0010434634750708938, 1.0034946171799675e-05, 1.377331614094146e-06, 6.784912898183393e-07, 2.9217943620096776e-07, 8.49154093884863e-05, 0.4209435284137726, 0.010656886734068394, 0.13909605145454407, 0.010132971219718456, 0.022762980312108994, 0.0021747977007180452, 0.00034168214187957346, 9.013150702230632e-05, 0.3922111988067627], [3.402019865461625e-05, 4.9337726522935554e-05, 8.313170110341161e-05, 2.2319716663332656e-05, 5.39800566912163e-07, 4.11734895067184e-08, 3.3303881874502395e-09, 1.2204695849504787e-06, 0.06548122316598892, 0.0004900486092083156, 0.013175411149859428, 0.8559287190437317, 0.0009163409704342484, 0.0008550789207220078, 8.614702528575435e-05, 1.536821582703851e-05, 0.06286101788282394], [0.00035689142532646656, 0.00030578699079342186, 0.004799241665750742, 0.0001143141562351957, 2.7493884772411548e-05, 1.7332099560007919e-06, 5.367700239844453e-08, 2.3701875306869624e-06, 0.42885276675224304, 0.00018278085917700082, 0.007353080902248621, 0.02059979736804962, 0.08663886040449142, 0.021290861070156097, 0.01294338796287775, 0.0006382240680977702, 0.41589227318763733], [0.00035609223414212465, 0.0005162984598428011, 0.0014577305410057306, 0.00018065032782033086, 0.0002686360676307231, 1.0376428690506145e-05, 2.878275324746937e-07, 2.868041701731272e-05, 0.40768325328826904, 9.130642865784466e-05, 0.005906779319047928, 0.012902558781206608, 0.034313399344682693, 0.11630579084157944, 0.010384070686995983, 0.001335323671810329, 0.4082588851451874], [0.0006982879713177681, 4.500218346947804e-05, 0.001986839808523655, 0.00023020044318400323, 6.763750570826232e-05, 0.00026030655135400593, 0.00014494087372440845, 4.463098957785405e-05, 0.09784181416034698, 0.0001967396237887442, 0.00044995578355155885, 0.0003799397964030504, 0.005566427018493414, 0.1335822492837906, 0.6433798670768738, 0.013692405074834824, 0.10143276304006577], [0.02094348333775997, 0.016241909936070442, 0.011949323117733002, 0.009936582297086716, 0.008415109477937222, 0.0055074081756174564, 0.002825394505634904, 0.017137518152594566, 0.4179816246032715, 0.007598317228257656, 0.01184071134775877, 0.00819436740130186, 0.0051026432774960995, 0.008000517264008522, 0.0063572959043085575, 0.02648719772696495, 0.4154805541038513]], [[0.0038423731457442045, 0.0979103371500969, 0.006096473429352045, 0.009875924326479435, 0.008829496800899506, 0.00291089853271842, 0.00470890523865819, 0.21763639152050018, 0.3291061520576477, 0.0002714426664169878, 0.009124048985540867, 0.00036560409353114665, 0.0002964880259241909, 0.00016312215302605182, 0.00011988421465503052, 4.996878851670772e-05, 0.3086925745010376], [0.007899913005530834, 0.11704446375370026, 0.015460697934031487, 0.051603641360998154, 0.02448287047445774, 0.018248176202178, 0.006813539192080498, 0.04040774703025818, 0.3675488531589508, 0.002186807570978999, 0.00276686972938478, 0.0002940267149824649, 0.00015135544526856393, 9.212002623826265e-05, 5.921020056121051e-05, 0.0002555855899117887, 0.34468403458595276], [0.025731662288308144, 0.208003968000412, 0.0133800795301795, 0.033890265971422195, 0.02012753300368786, 0.02156728319823742, 0.020578458905220032, 0.07638607919216156, 0.27651548385620117, 0.007654054090380669, 0.02330482006072998, 0.00032096198992803693, 0.0017971759662032127, 0.0005989883211441338, 0.0024323780089616776, 0.0035198742989450693, 0.26419106125831604], [0.01676766946911812, 0.3595621585845947, 0.016705617308616638, 0.056803129613399506, 0.049385491758584976, 0.023534834384918213, 0.013142966665327549, 0.053659047931432724, 0.20421680808067322, 0.012541486881673336, 0.001466069370508194, 0.000197612214833498, 0.00021747058781329542, 8.428033470408991e-05, 7.821858889656141e-05, 0.0004215656954329461, 0.19121558964252472], [0.016914812847971916, 0.10681729018688202, 0.03576813265681267, 0.18344727158546448, 0.06506672501564026, 0.026374896988272667, 0.06274399161338806, 0.04797997325658798, 0.22855304181575775, 0.001385140116326511, 0.0012575380969792604, 0.0026216129772365093, 0.0004486197722144425, 0.0007807505899108946, 0.0009508355869911611, 0.001133957994170487, 0.21775534749031067], [0.025768442079424858, 0.03815072774887085, 0.03208613023161888, 0.11320128291845322, 0.09737738966941833, 0.05092741549015045, 0.11139798909425735, 0.05256582796573639, 0.23593246936798096, 0.0017827348783612251, 0.0013278929982334375, 0.0028817562852054834, 0.0018652592552825809, 0.002160343574360013, 0.002896508201956749, 0.0024851509369909763, 0.2271927297115326], [0.030600255355238914, 0.03992250934243202, 0.03523583710193634, 0.27605047821998596, 0.13545475900173187, 0.07433675974607468, 0.051648277789354324, 0.04537327215075493, 0.15507520735263824, 0.0034015460405498743, 0.0008114134543575346, 0.0004506103286985308, 0.0003584881778806448, 0.0004759130533784628, 0.0011438089422881603, 0.0016666320152580738, 0.1479942500591278], [0.011768552474677563, 0.1284898817539215, 0.05738763138651848, 0.16645966470241547, 0.15865668654441833, 0.12594562768936157, 0.03153849020600319, 0.11341845989227295, 0.10127582401037216, 0.003067975165322423, 0.0018515866249799728, 0.000811909674666822, 0.00079435232328251, 0.0003807050234172493, 0.000823809124995023, 0.0011845029657706618, 0.09614430367946625], [0.006472982931882143, 0.022074781358242035, 0.006032588891685009, 0.008875316008925438, 0.004342956934124231, 0.0038167426828294992, 0.0030285187531262636, 0.012726720422506332, 0.4365517497062683, 0.011765614151954651, 0.02310115285217762, 0.003569986904039979, 0.004852436948567629, 0.0020988862961530685, 0.004189661238342524, 0.011541095562279224, 0.43495887517929077], [0.01010880060493946, 0.00956813246011734, 0.0025345291942358017, 0.010100681334733963, 0.004937953315675259, 0.0056816148571670055, 0.0026845817919820547, 0.018983561545610428, 0.39188602566719055, 0.11719891428947449, 0.011757936328649521, 0.006067921407520771, 0.004328660201281309, 0.0011421196395531297, 0.0036594390403479338, 0.013909421861171722, 0.3854497969150543], [0.011299828998744488, 0.06264476478099823, 0.00280944025143981, 0.03150974586606026, 0.019483143463730812, 0.02926880307495594, 0.014397852122783661, 0.038409505039453506, 0.3181813359260559, 0.08464206010103226, 0.044704537838697433, 0.005826888605952263, 0.0024582785554230213, 0.0012011387152597308, 0.0038834293372929096, 0.015836486592888832, 0.3134428560733795], [0.01150188036262989, 0.0044487714767456055, 0.003086444456130266, 0.005620704032480717, 0.005225773900747299, 0.005101312417536974, 0.0033509477507323027, 0.012873990461230278, 0.05570987984538078, 0.6618878245353699, 0.04546627029776573, 0.003613860346376896, 0.012015326879918575, 0.009610079228878021, 0.022729383781552315, 0.08204647153615952, 0.055710915476083755], [0.023843204602599144, 0.007940849289298058, 0.006602409295737743, 0.018516946583986282, 0.005194849334657192, 0.018354322761297226, 0.011972201056778431, 0.020020194351673126, 0.12768268585205078, 0.36009350419044495, 0.05813515931367874, 0.02671346440911293, 0.016857435926795006, 0.023078473284840584, 0.02597385086119175, 0.12283898144960403, 0.12618137896060944], [0.017453981563448906, 0.006566982716321945, 0.006437224335968494, 0.010258943773806095, 0.007524041924625635, 0.007805170025676489, 0.003535826923325658, 0.022132975980639458, 0.0758049488067627, 0.27864304184913635, 0.07962139695882797, 0.08276437222957611, 0.09034915268421173, 0.058843646198511124, 0.04596675559878349, 0.1311248540878296, 0.075166717171669], [0.009776161052286625, 0.005764814559370279, 0.002830076962709427, 0.008658399805426598, 0.004898515529930592, 0.008362919092178345, 0.005278115626424551, 0.016466772183775902, 0.0846642255783081, 0.36173009872436523, 0.06562229990959167, 0.029381074011325836, 0.0829448252916336, 0.04596933349967003, 0.01576196774840355, 0.16803304851055145, 0.08385728299617767], [0.0147054148837924, 0.020168650895357132, 0.007537460420280695, 0.004244955722242594, 0.006553541868925095, 0.0066261375322937965, 0.0021409504115581512, 0.028843004256486893, 0.05934390798211098, 0.4644696116447449, 0.15407297015190125, 0.045852839946746826, 0.03271123021841049, 0.015708668157458305, 0.015105503611266613, 0.06326187402009964, 0.05865337327122688], [0.006397331599146128, 0.021570011973381042, 0.00579069321975112, 0.008682731539011002, 0.004288266878575087, 0.0036858643870800734, 0.002901490079239011, 0.012283897958695889, 0.4360095262527466, 0.012330247089266777, 0.02403009869158268, 0.0037268218584358692, 0.004980555735528469, 0.0021687231492251158, 0.004302582237869501, 0.012045906856656075, 0.43480512499809265]], [[0.009063911624252796, 0.0008625846239738166, 0.0033756839111447334, 0.001652573118917644, 0.009214906021952629, 0.010952332057058811, 0.0025385506451129913, 0.001659492845647037, 0.05112340301275253, 0.4380345046520233, 0.1822289228439331, 0.08894407749176025, 0.02986772544682026, 0.027813255786895752, 0.016022173687815666, 0.0747062936425209, 0.05193968489766121], [0.030323171988129616, 0.011549224145710468, 0.02178393304347992, 0.12024854123592377, 0.1289067268371582, 0.1871342957019806, 0.35925328731536865, 0.029256725683808327, 0.0321379229426384, 0.009199031628668308, 0.004667792934924364, 0.009137160144746304, 0.012683101929724216, 0.0035537932999432087, 0.0030310810543596745, 0.006271325517445803, 0.030862925574183464], [0.06644298136234283, 0.07353031635284424, 0.08068853616714478, 0.08615818619728088, 0.05244072154164314, 0.0946999117732048, 0.10104087740182877, 0.07332208007574081, 0.09360750019550323, 0.010609259828925133, 0.11760304123163223, 0.008927362971007824, 0.019986722618341446, 0.005015614442527294, 0.006804815027862787, 0.017998838797211647, 0.09112320095300674], [0.01714845560491085, 0.010454491712152958, 0.03376057371497154, 0.01652185246348381, 0.35368624329566956, 0.07130531966686249, 0.04183783009648323, 0.021007705479860306, 0.206453338265419, 0.024041080847382545, 0.0005371371516957879, 0.003641566028818488, 0.0024012846406549215, 0.0004044374800287187, 0.00027393706841394305, 0.0006514793494716287, 0.1958731710910797], [0.024712054058909416, 0.028879081830382347, 0.025591792538762093, 0.0830875039100647, 0.22685730457305908, 0.012127013877034187, 0.013243654742836952, 0.019917773082852364, 0.2849058508872986, 0.006959776859730482, 0.0003480169107206166, 0.0022449621465057135, 0.00022857473231852055, 0.0001925065735122189, 5.834653347847052e-05, 0.0008453947957605124, 0.2698003053665161], [0.017363451421260834, 0.03167405724525452, 0.058454278856515884, 0.07243829220533371, 0.06682407855987549, 0.0028190664015710354, 0.019437329843640327, 0.024486254900693893, 0.35692834854125977, 0.007929218001663685, 0.0008091423660516739, 0.0017295961733907461, 0.003142121247947216, 0.0001985627895919606, 0.00018417609680909663, 0.0004582138790283352, 0.3351239562034607], [0.03096614219248295, 0.01818840764462948, 0.018256308510899544, 0.08340602368116379, 0.46653053164482117, 0.011320777237415314, 0.012873721309006214, 0.02072528377175331, 0.15964293479919434, 0.012586020864546299, 0.0008307071402668953, 0.0037708906456828117, 0.009140275418758392, 0.00019693837384693325, 9.386949386680499e-05, 0.0002821652451530099, 0.15118898451328278], [0.021320726722478867, 0.0069495257921516895, 0.03907027840614319, 0.017465760931372643, 0.15855297446250916, 0.17425209283828735, 0.014796898700296879, 0.012508236803114414, 0.2606799304485321, 0.014482776634395123, 0.0017777791945263743, 0.015015839599072933, 0.004568885546177626, 0.0017355424351990223, 0.0022575752809643745, 0.001487387577071786, 0.25307780504226685], [0.008644532412290573, 0.0057877833023667336, 0.009599537588655949, 0.0044794511049985886, 0.006598783656954765, 0.004999629221856594, 0.003857773495838046, 0.00496251042932272, 0.45481136441230774, 0.011323085054755211, 0.00651855394244194, 0.01277847122400999, 0.006761050317436457, 0.002228126395493746, 0.002959158271551132, 0.008155886083841324, 0.4455343186855316], [0.016474297270178795, 0.0007862914353609085, 0.005609103478491306, 0.0013036939781159163, 0.013178386725485325, 0.031232384964823723, 0.003996184095740318, 0.0027088404167443514, 0.19672152400016785, 0.15460164844989777, 0.011832552962005138, 0.28343135118484497, 0.018459884449839592, 0.011896039359271526, 0.03203675523400307, 0.017319830134510994, 0.19841118156909943], [0.011102980002760887, 0.002027091570198536, 0.007352579850703478, 0.003563682083040476, 0.0034767219331115484, 0.009599216282367706, 0.006617088336497545, 0.002679733093827963, 0.05418064817786217, 0.08351188153028488, 0.020119065418839455, 0.09925579279661179, 0.05405725538730621, 0.05946948006749153, 0.07493478059768677, 0.45395129919052124, 0.054100628942251205], [0.026370501145720482, 0.00532302912324667, 0.009548664093017578, 0.016433287411928177, 0.010021233931183815, 0.001343895448371768, 0.005150559823960066, 0.018646899610757828, 0.11135309934616089, 0.32311341166496277, 0.007008376065641642, 0.02277667261660099, 0.020729457959532738, 0.06919568032026291, 0.02322600781917572, 0.2209407538175583, 0.10881854593753815], [0.00976437795907259, 0.0032595740631222725, 0.0021889826748520136, 0.003149980679154396, 0.0028265949804335833, 0.0058457511477172375, 0.0012064318871125579, 0.011398770846426487, 0.059283848851919174, 0.1415555477142334, 0.004987755790352821, 0.05386420339345932, 0.017745163291692734, 0.13775202631950378, 0.2205449342727661, 0.2650304436683655, 0.059595633298158646], [0.008760376833379269, 0.002713883528485894, 0.0039603495970368385, 0.0016811072127893567, 0.0034731728956103325, 0.001324359094724059, 0.00037808556226082146, 0.0028924550861120224, 0.1261860430240631, 0.09943632781505585, 0.01668786071240902, 0.12166517972946167, 0.20644888281822205, 0.05490894243121147, 0.05007820576429367, 0.17126207053661346, 0.12814268469810486], [0.003855594666674733, 0.0010279123671352863, 0.0015991622349247336, 0.001383748254738748, 0.004134461749345064, 0.001294485991820693, 0.0006854782695882022, 0.0012635185848921537, 0.06345689296722412, 0.05816950649023056, 0.006413677707314491, 0.2604367733001709, 0.24804487824440002, 0.05097700655460358, 0.021885981783270836, 0.2107435017824173, 0.06462740898132324], [0.004982471000403166, 0.0006992732523940504, 0.0017675221897661686, 0.0004335168923716992, 0.009008869528770447, 0.0020184493623673916, 0.0007313895621336997, 0.0014360100030899048, 0.07364760339260101, 0.1780526489019394, 0.009435616433620453, 0.35736867785453796, 0.2140316516160965, 0.027324117720127106, 0.01903369463980198, 0.025390230119228363, 0.07463827729225159], [0.008594616316258907, 0.0056075723841786385, 0.009349030442535877, 0.004368793219327927, 0.006372013129293919, 0.004783434793353081, 0.0037150168791413307, 0.0048795295879244804, 0.45506751537323, 0.011634405702352524, 0.00648960517719388, 0.012840671464800835, 0.006777993403375149, 0.0022574723698198795, 0.003014270681887865, 0.008313097059726715, 0.445934921503067]], [[0.04591652378439903, 0.06300190091133118, 0.16419069468975067, 0.06137210130691528, 0.03333040326833725, 0.11815725266933441, 0.02318153716623783, 0.12986509501934052, 0.11233090609312057, 0.05288806930184364, 0.00782070867717266, 0.007269850000739098, 0.0032817272003740072, 0.008160431869328022, 0.01143732201308012, 0.044403888285160065, 0.1133914515376091], [0.05948485806584358, 0.030614571645855904, 0.04631494730710983, 0.04725201427936554, 0.024686913937330246, 0.07342551648616791, 0.01190608087927103, 0.1029941663146019, 0.19130326807498932, 0.05489321053028107, 0.0618562214076519, 0.010713323019444942, 0.008033191785216331, 0.015370874665677547, 0.019974352791905403, 0.0536336675286293, 0.1875428408384323], [0.008375815115869045, 0.08590077608823776, 0.11599132418632507, 0.03065883368253708, 0.02831793576478958, 0.17639218270778656, 0.030109606683254242, 0.07108864188194275, 0.08749613910913467, 0.06038052588701248, 0.13203848898410797, 0.01169673167169094, 0.016224045306444168, 0.022964222356677055, 0.012506515718996525, 0.02547159045934677, 0.08438663184642792], [0.014101564884185791, 0.009941528551280499, 0.012831049971282482, 0.04680471494793892, 0.0229649655520916, 0.03828982263803482, 0.007251002360135317, 0.06968002021312714, 0.28135332465171814, 0.07196445018053055, 0.021891625598073006, 0.010489667765796185, 0.0037817968986928463, 0.009669381193816662, 0.014900454320013523, 0.08749127388000488, 0.27659332752227783], [0.023000601679086685, 0.014771489426493645, 0.017490161582827568, 0.079710453748703, 0.028272580355405807, 0.027533959597349167, 0.005006590858101845, 0.07247548550367355, 0.2600434422492981, 0.040930040180683136, 0.039835136383771896, 0.003263308899477124, 0.0016803618054836988, 0.009910948574543, 0.0272970050573349, 0.0922524631023407, 0.2565259337425232], [0.007276624441146851, 0.015737686306238174, 0.044347167015075684, 0.0654127299785614, 0.06074805557727814, 0.2576485574245453, 0.01003256905823946, 0.029188068583607674, 0.16256673634052277, 0.03380874544382095, 0.028989844024181366, 0.016662636771798134, 0.014031721279025078, 0.012928691692650318, 0.028152860701084137, 0.05670379474759102, 0.1557634472846985], [0.046840086579322815, 0.005050460807979107, 0.008912740275263786, 0.04096522554755211, 0.0037268521264195442, 0.02124677784740925, 0.0024555400013923645, 0.030869917944073677, 0.3147437572479248, 0.05737714841961861, 0.025457613170146942, 0.019202768802642822, 0.012414413504302502, 0.012507575564086437, 0.03809475526213646, 0.05198213458061218, 0.3081522285938263], [0.04578913748264313, 0.015169307589530945, 0.05198633670806885, 0.04619758948683739, 0.017973976209759712, 0.03155815973877907, 0.006569531746208668, 0.05196365341544151, 0.295901358127594, 0.039483342319726944, 0.014930213801562786, 0.01637307181954384, 0.005796234123408794, 0.019513661041855812, 0.016688790172338486, 0.03114703670144081, 0.2929585576057434], [0.036378540098667145, 0.006205890327692032, 0.016910836100578308, 0.00830363854765892, 0.00342999747954309, 0.00617930619046092, 0.001616147463209927, 0.01737803965806961, 0.41895776987075806, 0.012113629840314388, 0.006057837046682835, 0.007107787765562534, 0.00616078544408083, 0.0055975657887756824, 0.012781639583408833, 0.016707587987184525, 0.41811296343803406], [0.05884114280343056, 0.009341621771454811, 0.07733424752950668, 0.04282677546143532, 0.004803631454706192, 0.009805548936128616, 0.004415364004671574, 0.042979758232831955, 0.3523355722427368, 0.009957455098628998, 0.0038648745976388454, 0.0032010285649448633, 0.001637027831748128, 0.0014145619934424758, 0.0028786929324269295, 0.014316998422145844, 0.3600457012653351], [0.1566653698682785, 0.04843460023403168, 0.07605812698602676, 0.09281890094280243, 0.02433890849351883, 0.037761494517326355, 0.009676758199930191, 0.11950207501649857, 0.1123947724699974, 0.030063573271036148, 0.1210775226354599, 0.0033524015452712774, 0.0035345377400517464, 0.0009526506764814258, 0.0023503759875893593, 0.046079669147729874, 0.11493832617998123], [0.09321621060371399, 0.022234490141272545, 0.051143743097782135, 0.057122860103845596, 0.009956824593245983, 0.05840011686086655, 0.006564661394804716, 0.09109149128198624, 0.26993706822395325, 0.008527032099664211, 0.014413979835808277, 0.011482027359306812, 0.002143146703019738, 0.0029713260009884834, 0.016046395525336266, 0.015013432130217552, 0.26973533630371094], [0.042803239077329636, 0.014748111367225647, 0.051076192408800125, 0.020201250910758972, 0.004679969511926174, 0.023354481905698776, 0.004600305110216141, 0.0502362921833992, 0.3526424765586853, 0.009942014701664448, 0.013681070879101753, 0.0074101281352341175, 0.005489821545779705, 0.008449274115264416, 0.020850056782364845, 0.013680189847946167, 0.3561550974845886], [0.018149415031075478, 0.0329611599445343, 0.06975128501653671, 0.013419806957244873, 0.0017656076233834028, 0.037007421255111694, 0.001938949222676456, 0.08108069747686386, 0.3140479624271393, 0.004590584896504879, 0.01664614863693714, 0.0005911394255235791, 0.0026736888103187084, 0.02962396666407585, 0.056544847786426544, 0.003622097196057439, 0.3155851364135742], [0.01956355944275856, 0.027016250416636467, 0.13853345811367035, 0.008343035355210304, 0.0012429470662027597, 0.03948315605521202, 0.002260174136608839, 0.0677444115281105, 0.2722562253475189, 0.0036843710113316774, 0.01055007055401802, 0.0005664242198690772, 0.0028834156692028046, 0.06952077150344849, 0.061710719019174576, 0.0033693057484924793, 0.271271675825119], [0.06428898125886917, 0.02880546823143959, 0.09898865967988968, 0.1424073874950409, 0.05490938201546669, 0.0940185934305191, 0.018556715920567513, 0.12920494377613068, 0.12412295490503311, 0.02156408131122589, 0.009758148342370987, 0.0064997440204024315, 0.0009732784237712622, 0.003025449812412262, 0.002336277160793543, 0.07398392260074615, 0.12655596435070038], [0.036315545439720154, 0.006136774085462093, 0.016873344779014587, 0.008397938683629036, 0.0034421177115291357, 0.00616659689694643, 0.0016272537177428603, 0.01722121238708496, 0.41913989186286926, 0.012165863066911697, 0.005988001823425293, 0.007207722403109074, 0.006098099984228611, 0.00557590089738369, 0.012698270380496979, 0.01672135479748249, 0.41822412610054016]], [[0.017480259761214256, 0.20148500800132751, 0.03903725743293762, 0.06706959754228592, 0.012287254445254803, 0.013176810927689075, 0.002272723475471139, 0.27102038264274597, 0.18708552420139313, 0.0020295148715376854, 0.0004082861414644867, 9.248564310837537e-05, 0.00010379328887211159, 0.00010172392649110407, 0.0001489232381572947, 0.0038650024216622114, 0.18233542144298553], [0.016926229000091553, 0.06871692836284637, 0.014908969402313232, 0.02210349775850773, 0.003666487755253911, 0.0023261106107383966, 0.0011758703039959073, 0.05407288670539856, 0.41736021637916565, 0.002624241868034005, 0.0006797122769057751, 0.00010801738972077146, 0.00018314596673008054, 0.00021032973018009216, 0.0007358366274274886, 0.001531356479972601, 0.39267027378082275], [0.13162341713905334, 0.5688703060150146, 0.0772111639380455, 0.005058556329458952, 6.459522410295904e-05, 0.00017680223390925676, 0.0001300355070270598, 0.0010197939118370414, 0.11028080433607101, 0.00010029523400589824, 0.0009325147839263082, 2.193685941165313e-05, 0.00010872191342059523, 6.0461050452431664e-05, 0.00017671070236247033, 0.0003205718530807644, 0.10384334623813629], [0.014943387359380722, 0.15152794122695923, 0.03337767720222473, 0.04420100152492523, 0.04978689178824425, 0.0066736130975186825, 0.002962433034554124, 0.025334719568490982, 0.3377862870693207, 0.0003827627224382013, 0.00021558078879024833, 0.0004318539286032319, 0.0004898869665339589, 0.0017401190707460046, 0.000680110533721745, 0.0005245347274467349, 0.32894113659858704], [0.013496278785169125, 0.06256356090307236, 0.09802360087633133, 0.35747820138931274, 0.0443490669131279, 0.018599987030029297, 0.0035999685060232878, 0.011299500241875648, 0.1924462467432022, 7.386571087408811e-05, 0.00017820157518144697, 0.0004630174080375582, 6.960820610402152e-05, 0.0018604402430355549, 0.0007925601094029844, 0.0009891301160678267, 0.19371670484542847], [0.012661732733249664, 0.01475112047046423, 0.03170580789446831, 0.12517398595809937, 0.20579063892364502, 0.029060887172818184, 0.00819248054176569, 0.01069746632128954, 0.2803666591644287, 9.427111217519268e-05, 7.925676618469879e-05, 0.0001329022488789633, 4.380678365123458e-05, 0.000238862368860282, 0.0002338258782401681, 0.0006765327998436987, 0.2800998091697693], [0.005842386279255152, 0.0017539823893457651, 0.005652809515595436, 0.14941003918647766, 0.5916652083396912, 0.1219407394528389, 0.0037342447321861982, 0.004851237405091524, 0.05674576759338379, 2.914754622906912e-05, 5.7750745327211916e-05, 0.00016429985407739878, 3.022764076376916e-06, 0.00011887985601788387, 4.649962647818029e-05, 0.00031188392313197255, 0.05767207220196724], [0.019650772213935852, 0.040749937295913696, 0.017664263024926186, 0.08067885786294937, 0.021262740716338158, 0.03944716602563858, 0.04182502254843712, 0.1251455843448639, 0.3070489168167114, 0.0010175948264077306, 0.0017584979068487883, 6.12578442087397e-05, 0.00023389598936773837, 0.0003069673548452556, 0.0003227578417863697, 0.0037570991553366184, 0.2990686893463135], [0.013733944855630398, 0.026839664205908775, 0.01571626588702202, 0.012752034701406956, 0.005264668259769678, 0.006642777938395739, 0.0037175819743424654, 0.08288726955652237, 0.35747939348220825, 0.027546469122171402, 0.011358617804944515, 0.003480267710983753, 0.008092930540442467, 0.0069106868468225, 0.007899426855146885, 0.05221763253211975, 0.35746023058891296], [0.010016730055212975, 0.0008128750487230718, 0.00013660082186106592, 0.001132918638177216, 0.0006749625317752361, 0.0002507451572455466, 0.00022765566245652735, 0.12235474586486816, 0.36872923374176025, 0.06490994989871979, 0.040692925453186035, 0.0004655596276279539, 0.0004783187177963555, 0.0004585811693686992, 0.0009283209801651537, 0.026849865913391113, 0.36087992787361145], [0.016589360311627388, 0.0012915093684569001, 0.0010521794902160764, 0.000551754143089056, 0.00017932747141458094, 0.0004100268997717649, 0.0002537450345698744, 0.060603126883506775, 0.23340116441249847, 0.357169508934021, 0.0604865588247776, 0.0024894257076084614, 0.0031617896165698767, 0.002296684542670846, 0.006000869441777468, 0.026059865951538086, 0.2280031442642212], [0.012261469848453999, 0.001130763441324234, 0.0007099805516190827, 0.00047054074821062386, 0.0001816151780076325, 4.707575135398656e-05, 2.783210038614925e-05, 0.004106875974684954, 0.3882300555706024, 0.07577414065599442, 0.08262647688388824, 0.003469713730737567, 0.022445926442742348, 0.00809937808662653, 0.009913328103721142, 0.00890932697802782, 0.38159558176994324], [0.006444597151130438, 9.139658504864201e-05, 0.0005467387964017689, 0.0005172885139472783, 0.00024158574524335563, 8.468495070701465e-05, 2.1504802134586498e-05, 0.0009999327594414353, 0.18081440031528473, 0.021489791572093964, 0.015058313496410847, 0.560596227645874, 0.0035930301528424025, 0.02342190593481064, 0.0031429133377969265, 0.004967023618519306, 0.17796869575977325], [0.010958514176309109, 0.0015925709158182144, 0.0017796818865463138, 0.0014066712465137243, 0.00047277554403990507, 0.0001338341971859336, 7.649955659871921e-05, 0.0011293202405795455, 0.38668951392173767, 0.019182046875357628, 0.04777476191520691, 0.035996802151203156, 0.05052071809768677, 0.019790317863225937, 0.01855073869228363, 0.018881184980273247, 0.3850640654563904], [0.02273857221007347, 0.000298291037324816, 0.0024406120646744967, 0.0008683144696988165, 0.0009576916927471757, 0.00039632045081816614, 8.98492507985793e-05, 0.001589466817677021, 0.25167495012283325, 0.016077794134616852, 0.011704719625413418, 0.16532965004444122, 0.032487887889146805, 0.20103679597377777, 0.009229163639247417, 0.023146359249949455, 0.2599335312843323], [0.016290074214339256, 0.002957190154120326, 0.002680645789951086, 0.0015214915620163083, 0.0009634462767280638, 0.0008814203320071101, 0.00016314278764184564, 0.0032475993502885103, 0.26095134019851685, 0.018887383863329887, 0.0353982113301754, 0.012096144258975983, 0.06347209960222244, 0.1776033192873001, 0.08369502425193787, 0.05194621533155441, 0.26724523305892944], [0.013944759033620358, 0.026672909036278725, 0.015988383442163467, 0.012970458716154099, 0.005408325232565403, 0.006646183785051107, 0.0036593861877918243, 0.07993745803833008, 0.35463467240333557, 0.02831931598484516, 0.012103920802474022, 0.0036694647278636694, 0.008654714561998844, 0.0076136114075779915, 0.008814017288386822, 0.055927813053131104, 0.35503455996513367]], [[0.014837761409580708, 0.085702084004879, 0.18005020916461945, 0.06088872253894806, 0.035098619759082794, 0.3227255940437317, 0.025438392534852028, 0.057057935744524, 0.10069388151168823, 0.0037763488944619894, 0.0025825605262070894, 0.0024706560652703047, 0.0010416223667562008, 0.0025366521440446377, 0.00286444672383368, 0.003513069124892354, 0.09872142225503922], [0.0681460052728653, 0.0618312768638134, 0.008035487495362759, 0.01888233795762062, 0.002018442377448082, 0.0022372847888618708, 0.0008813529275357723, 0.035775840282440186, 0.3668569326400757, 0.006882202345877886, 0.044318173080682755, 0.001700531574897468, 0.0014839189825579524, 0.0019607634749263525, 0.004078064113855362, 0.015904247760772705, 0.3590069115161896], [0.03437953442335129, 0.026006393134593964, 0.004117678385227919, 0.004914199933409691, 0.0011157924309372902, 0.0014436618657782674, 0.000660546706058085, 0.04258754476904869, 0.4291918873786926, 0.003527373308315873, 0.009808585979044437, 0.0009844688465818763, 0.001145608490332961, 0.006327305920422077, 0.01049965899437666, 0.0077958861365914345, 0.41549381613731384], [0.03358268365263939, 0.01694011315703392, 0.0019685649313032627, 0.06609854847192764, 0.008756306022405624, 0.003526550717651844, 0.013533340767025948, 0.03698752075433731, 0.30237850546836853, 0.03498884290456772, 0.024515783414244652, 0.01361811999231577, 0.008705361746251583, 0.0022068338003009558, 0.011655578389763832, 0.12867657840251923, 0.2918608784675598], [0.01708546094596386, 0.011726808734238148, 0.0009878892451524734, 0.025934971868991852, 0.015839044004678726, 0.00646226666867733, 0.01318965945392847, 0.045935969799757004, 0.377254456281662, 0.034937478601932526, 0.02187684178352356, 0.0233621746301651, 0.01020959485322237, 0.0018312670290470123, 0.005703664384782314, 0.01857880689203739, 0.36908382177352905], [0.01989579387009144, 0.012307309545576572, 0.0018611198756843805, 0.01515846699476242, 0.021920310333371162, 0.008366244845092297, 0.006554576102644205, 0.088648721575737, 0.38216903805732727, 0.011448659002780914, 0.012523503974080086, 0.008944014087319374, 0.0034896284341812134, 0.004712685476988554, 0.009374471381306648, 0.018231382593512535, 0.37439408898353577], [0.012342882342636585, 0.015963461250066757, 0.0012975179124623537, 0.02431870810687542, 0.004630825947970152, 0.004724858794361353, 0.07893224060535431, 0.05416902154684067, 0.3657701313495636, 0.009526040405035019, 0.007649900391697884, 0.0056343767791986465, 0.0025639834348112345, 0.0005148480995558202, 0.005586004815995693, 0.048142801970243454, 0.35823243856430054], [0.03718230500817299, 0.010838188230991364, 0.006511701736599207, 0.009800695814192295, 0.0037312728818506002, 0.013592066243290901, 0.004582089837640524, 0.13572309911251068, 0.3581139147281647, 0.01870672218501568, 0.009837617166340351, 0.002930890303105116, 0.0020904738921672106, 0.0014542025746777654, 0.0065223355777561665, 0.032493725419044495, 0.34588873386383057], [0.02295801229774952, 0.005564752034842968, 0.008349373936653137, 0.0025019673630595207, 0.00110938074067235, 0.002276431769132614, 0.0017111244378611445, 0.01407159399241209, 0.43465757369995117, 0.010574308224022388, 0.008400256745517254, 0.009340275079011917, 0.005001489073038101, 0.005060956813395023, 0.013823838904500008, 0.028126081451773643, 0.426472544670105], [0.12645843625068665, 0.0052221729420125484, 0.0017872448079288006, 0.002644107211381197, 0.0003394242958165705, 0.0011288061505183578, 0.0002770152350421995, 0.03130936622619629, 0.39704394340515137, 0.011428967118263245, 0.006546787917613983, 0.0014884433476254344, 0.0020279143936932087, 0.002331080846488476, 0.006528398022055626, 0.010533617809414864, 0.3929043114185333], [0.3588545322418213, 0.031942736357450485, 0.004985657054930925, 0.00601204065605998, 0.0005203136242926121, 0.001135090715251863, 0.0003818913537543267, 0.014780141413211823, 0.2593924403190613, 0.011473086662590504, 0.027547687292099, 0.002986195031553507, 0.001712881843559444, 0.0010780958691611886, 0.005659767892211676, 0.015391579829156399, 0.256145715713501], [0.05141183361411095, 0.005684043746441603, 0.00038814410800114274, 0.0077974433079361916, 0.0033770787995308638, 0.0014042012626305223, 0.005024472251534462, 0.014184202067553997, 0.3518980145454407, 0.03468139097094536, 0.01638837531208992, 0.033687639981508255, 0.010603289119899273, 0.0037281420081853867, 0.010846403427422047, 0.0954248234629631, 0.35347044467926025], [0.06809087097644806, 0.0062261177226901054, 0.0013949081767350435, 0.008195164613425732, 0.003362770890817046, 0.003521934151649475, 0.012097174301743507, 0.01836719922721386, 0.36344847083091736, 0.02230188064277172, 0.010080968961119652, 0.018977761268615723, 0.01645754650235176, 0.005641183815896511, 0.011253847740590572, 0.06706871092319489, 0.3635134696960449], [0.10310215502977371, 0.0021119043231010437, 0.0040933191776275635, 0.002918021287769079, 0.0005248342058621347, 0.004524966701865196, 0.00134479277767241, 0.03162737190723419, 0.3795033097267151, 0.00479470007121563, 0.0064110723324120045, 0.0035229807253926992, 0.004907379858195782, 0.008322231471538544, 0.02414313517510891, 0.04080833122134209, 0.37733960151672363], [0.07745686173439026, 0.0014652019599452615, 0.0025874872226268053, 0.001946733333170414, 0.0003650042926892638, 0.0019092512084171176, 0.0019662012346088886, 0.037861742079257965, 0.40340253710746765, 0.005483775865286589, 0.003932313993573189, 0.002706279279664159, 0.00404629111289978, 0.007473548408597708, 0.014809651300311089, 0.032824985682964325, 0.3997621536254883], [0.12622614204883575, 0.006608657538890839, 0.0010806312784552574, 0.011813311837613583, 0.0006925358902662992, 0.0016104583628475666, 0.0064596678130328655, 0.04805987700819969, 0.2834981381893158, 0.01862853765487671, 0.022012902423739433, 0.006029351614415646, 0.004989866632968187, 0.0017491532489657402, 0.009248408488929272, 0.17184071242809296, 0.2794516682624817], [0.023507000878453255, 0.005494833458214998, 0.008005945943295956, 0.002449345076456666, 0.0011147186160087585, 0.0022155079059302807, 0.001679563894867897, 0.013942761346697807, 0.43389892578125, 0.010842311196029186, 0.008559994399547577, 0.00946419220417738, 0.005121259950101376, 0.0051180520094931126, 0.014033717103302479, 0.02873361110687256, 0.4258183240890503]], [[0.00848997849971056, 0.006697371136397123, 0.02224407158792019, 0.001738460618071258, 0.002630590694025159, 0.002615903038531542, 0.001488794689066708, 0.0017919568344950676, 0.2413429468870163, 0.05421631783246994, 0.138983815908432, 0.0561932697892189, 0.029965845867991447, 0.044409897178411484, 0.03141683340072632, 0.11605864018201828, 0.2397153377532959], [0.01825099252164364, 0.026805464178323746, 0.6148292422294617, 0.021728163585066795, 0.025519391521811485, 0.009578576311469078, 0.0033244453370571136, 0.008989238180220127, 0.1351548582315445, 0.000681057688780129, 0.001357431523501873, 0.00125163106713444, 0.0006632592412643135, 0.0010806823847815394, 0.0005186382331885397, 0.0012796970549970865, 0.12898722290992737], [0.011718683876097202, 0.012128150090575218, 0.01166569720953703, 0.009619781747460365, 0.01844712719321251, 0.0011218040017411113, 0.00028493141871877015, 0.0038101940881460905, 0.47031742334365845, 0.0001600809337105602, 0.0009218375198543072, 0.0006701533566229045, 0.0005535040982067585, 0.00033883846481330693, 0.0001901230134535581, 0.0057203322649002075, 0.4523313343524933], [0.00890746247023344, 0.23083403706550598, 0.39969971776008606, 0.004340294282883406, 0.0382809117436409, 0.0687628984451294, 0.0036950879730284214, 0.0031205194536596537, 0.11283029615879059, 0.013321366161108017, 0.002082439372316003, 0.0019242085982114077, 0.0015758576337248087, 0.001667595119215548, 0.0017008399590849876, 0.000729957246221602, 0.10652660578489304], [0.017912723124027252, 0.03370494395494461, 0.0476127490401268, 0.01868375390768051, 0.01692894846200943, 0.14335624873638153, 0.010662405751645565, 0.005335233639925718, 0.35275617241859436, 0.0044158524833619595, 0.0009084834018722177, 0.0009169220575131476, 0.0004780502640642226, 0.0017170432256534696, 0.0029020707588642836, 0.0047433460131287575, 0.33696505427360535], [0.005911227315664291, 0.012780345045030117, 0.010394775308668613, 0.004120598081499338, 0.007990815676748753, 0.003416532650589943, 0.0010815758723765612, 0.0013590577291324735, 0.48404502868652344, 0.00047257557162083685, 0.0013362827012315392, 0.00021733573521487415, 0.00030632695415988564, 0.0001164312707260251, 0.00024130770179908723, 0.0010701542487367988, 0.4651394486427307], [0.002640643622726202, 0.014562993310391903, 0.04752848297357559, 0.0038568938616663218, 0.027922293171286583, 0.839131236076355, 0.0009474137332290411, 0.002863657893612981, 0.029102692380547523, 0.0010849495884031057, 0.0001799976162146777, 0.0002541248104535043, 0.00014488214219454676, 0.0005791639559902251, 0.0006234379834495485, 0.00016335118561983109, 0.02841385081410408], [0.00906453188508749, 0.07517070323228836, 0.08855453878641129, 0.07748658955097198, 0.2896617650985718, 0.20755931735038757, 0.11318142712116241, 0.00893726572394371, 0.057658545672893524, 0.003579361829906702, 0.002044499618932605, 0.0036599847953766584, 0.003470990341156721, 0.0014864244731143117, 0.0013644316932186484, 0.0017540830885991454, 0.05536544695496559], [0.01159619353711605, 0.006290688645094633, 0.0052373409271240234, 0.002823084592819214, 0.0034340755082666874, 0.0026102978736162186, 0.001451929216273129, 0.0034936140291392803, 0.4648189842700958, 0.005440441891551018, 0.013607610948383808, 0.005401376634836197, 0.003911169711500406, 0.002514511113986373, 0.0027889576740562916, 0.009571418166160583, 0.4550081491470337], [0.028502266854047775, 0.00529392808675766, 0.004700710065662861, 0.011198698543012142, 0.012513823807239532, 0.004401367623358965, 0.0038434339221566916, 0.004696730989962816, 0.3300166726112366, 0.042416349053382874, 0.05656822398304939, 0.05021902173757553, 0.016728203743696213, 0.006905470043420792, 0.005496591329574585, 0.09490811824798584, 0.32159021496772766], [0.013376740738749504, 0.014142080210149288, 0.5393674373626709, 0.003383554518222809, 0.0016243438003584743, 0.001295609399676323, 0.0007454454316757619, 0.004174111410975456, 0.14934442937374115, 0.036283187568187714, 0.020287038758397102, 0.012836650013923645, 0.012336392886936665, 0.0054787821136415005, 0.007587513420730829, 0.030229957774281502, 0.1475067138671875], [0.005271125119179487, 0.0014437813078984618, 0.0037885287310928106, 0.00029790872940793633, 0.00033237607567571104, 0.0008875897619873285, 0.00027595151914283633, 0.0013433991698548198, 0.3374556005001068, 0.05397535115480423, 0.0461876317858696, 0.022840747609734535, 0.03349493443965912, 0.031100351363420486, 0.09129539132118225, 0.041359156370162964, 0.3286501467227936], [0.004411994479596615, 0.0007231537019833922, 0.005045815836638212, 0.002173850778490305, 0.0011977687245234847, 0.0027966168709099293, 0.002041046740487218, 0.0029724594205617905, 0.3489231467247009, 0.018506208434700966, 0.01627606712281704, 0.11237353086471558, 0.009774484671652317, 0.036311376839876175, 0.07095467299222946, 0.022027291357517242, 0.34349051117897034], [0.0036374840419739485, 0.0020712895784527063, 0.0020758684258908033, 0.000495396030601114, 0.0013039959594607353, 0.0002867391740437597, 7.446991367032751e-05, 0.0009140112670138478, 0.3891040086746216, 0.013963821344077587, 0.017246467992663383, 0.029554596170783043, 0.04664463549852371, 0.02377084083855152, 0.06745195388793945, 0.02254267781972885, 0.37886160612106323], [0.004389666952192783, 0.002140594646334648, 0.004794787149876356, 0.000491518818307668, 0.0021103057079017162, 0.00046957869199104607, 9.536885045235977e-05, 0.0011313948780298233, 0.2867840826511383, 0.019110489636659622, 0.07317928224802017, 0.1593218594789505, 0.05956564098596573, 0.08013103157281876, 0.01315735187381506, 0.010142222978174686, 0.2829848527908325], [0.009459279477596283, 0.009328803047537804, 0.0075727771036326885, 0.0006119813187979162, 0.0044566732831299305, 0.0007778770523145795, 0.0005679743480868638, 0.0017246439820155501, 0.12649807333946228, 0.08036120235919952, 0.17118582129478455, 0.19206595420837402, 0.07721170783042908, 0.10635712742805481, 0.05623708665370941, 0.030059166252613068, 0.12552385032176971], [0.011580069549381733, 0.006209952756762505, 0.0051584127359092236, 0.0027650215197354555, 0.003446427173912525, 0.002645504428073764, 0.001426133094355464, 0.003419037675485015, 0.4641340672969818, 0.005521963816136122, 0.013870655559003353, 0.005608419422060251, 0.0040552932769060135, 0.002646612236276269, 0.002938727615401149, 0.009850203059613705, 0.4547234773635864]], [[0.010057734325528145, 0.005002036225050688, 0.018494021147489548, 0.006920263636857271, 0.002388333436101675, 0.015272107906639576, 0.0014022223185747862, 0.010757633484899998, 0.44486743211746216, 0.00209295772947371, 0.0028060325421392918, 0.001693354337476194, 0.0025312923826277256, 0.00465938588604331, 0.008705212734639645, 0.02339906431734562, 0.43895095586776733], [0.00963846780359745, 0.029775895178318024, 0.011451346799731255, 0.008635523729026318, 0.008830179460346699, 0.005798475816845894, 0.0024684283416718245, 0.014253785833716393, 0.4656665623188019, 0.0004441560886334628, 0.0004839450994040817, 0.00022090444690547884, 0.0005268919048830867, 0.00014262841432355344, 0.0002728021936491132, 0.0010000448673963547, 0.44038984179496765], [0.029812926426529884, 0.0069160801358520985, 0.04169391840696335, 0.004743122961372137, 0.00613489979878068, 0.002656891942024231, 0.0006393708754330873, 0.0062254429794847965, 0.4592188596725464, 0.00046337631647475064, 0.0006490237428806722, 0.00024718104396015406, 0.0008758771582506597, 0.0007043457590043545, 0.0015771863982081413, 0.0012329698074609041, 0.436208575963974], [0.0022449996322393417, 0.02982807531952858, 0.006583040114492178, 0.00875064730644226, 0.014338579960167408, 0.03789481148123741, 0.009276355616748333, 0.01559943612664938, 0.4464631974697113, 0.0002598173450678587, 0.00013225982547737658, 0.0003473749093245715, 0.00016772405069787055, 0.00035238757845945656, 0.00042191363172605634, 0.00045209721429273486, 0.42688727378845215], [0.005365240853279829, 0.027452701702713966, 0.004356576129794121, 0.0726325660943985, 0.03444398567080498, 0.008861816488206387, 0.002771044382825494, 0.007664002478122711, 0.42534491419792175, 0.0003084332274738699, 0.00010986230336129665, 0.0005706094088964164, 0.000599258579313755, 0.0008192628738470376, 0.0006414668750949204, 0.0006772656342945993, 0.4073808789253235], [0.005453033372759819, 0.007485215086489916, 0.0016480284975841641, 0.01411443017423153, 0.02747797593474388, 0.009071814827620983, 0.0012492149835452437, 0.006488464307039976, 0.4698760509490967, 8.669096132507548e-05, 7.803433254593983e-05, 6.598359323106706e-05, 0.000368508422980085, 0.00031111689168028533, 0.0005133171798661351, 0.0005181719898246229, 0.4551939070224762], [0.0024155965074896812, 0.0036317617632448673, 0.001894674962386489, 0.007689658552408218, 0.13301603496074677, 0.2738424241542816, 0.003468499518930912, 0.009353997185826302, 0.2843243479728699, 6.778785609640181e-05, 5.096849781693891e-05, 0.0001579010277055204, 0.00047663316945545375, 0.00027328458963893354, 0.00018050920334644616, 0.00019660960242617875, 0.278959184885025], [0.007348518818616867, 0.011435589753091335, 0.019765570759773254, 0.07790988683700562, 0.07319408655166626, 0.43297529220581055, 0.04791959375143051, 0.043603118509054184, 0.14156070351600647, 0.000703852332662791, 0.0008035501814447343, 0.00033292590524069965, 0.000763967982493341, 0.0007253350340761244, 0.000616567675024271, 0.001542552257888019, 0.1387988030910492], [0.02268170565366745, 0.007042753044515848, 0.007176578976213932, 0.009017842821776867, 0.005312832072377205, 0.011243489570915699, 0.0037274998612701893, 0.02601756528019905, 0.42067641019821167, 0.009934372268617153, 0.010637120343744755, 0.005114453379064798, 0.006524781696498394, 0.0051660798490047455, 0.008624675683677197, 0.023224569857120514, 0.41787734627723694], [0.0016385697526857257, 0.001389342942275107, 0.0001360930473310873, 0.0016519591445103288, 0.0012623327784240246, 0.021749958395957947, 0.006197582930326462, 0.003028265666216612, 0.44024842977523804, 0.022182554006576538, 0.013732722960412502, 0.006271897349506617, 0.003500771475955844, 0.001067954464815557, 0.004510459024459124, 0.03708958998322487, 0.4343414008617401], [0.00313055538572371, 0.0014671973185613751, 0.00024487977498210967, 0.0007982774404808879, 0.001500700949691236, 0.002637650351971388, 0.0010448562679812312, 0.010068203322589397, 0.35006165504455566, 0.18227675557136536, 0.008268915116786957, 0.016725212335586548, 0.024091625586152077, 0.0025451574474573135, 0.009003991261124611, 0.03464454039931297, 0.35148975253105164], [0.0025075431913137436, 0.00043374294182285666, 0.00016046622477006167, 0.0002566356852184981, 0.0001102826718124561, 0.0001722670713206753, 2.693122223718092e-05, 0.008127672597765923, 0.45517560839653015, 0.03911096602678299, 0.014971334487199783, 0.012246373109519482, 0.008071092888712883, 0.003136136569082737, 0.0019348402274772525, 0.013914392329752445, 0.4396437704563141], [0.003943914547562599, 0.0013398902956396341, 0.00024014421796891838, 0.0005823546671308577, 0.0004198958049528301, 0.0008421209640800953, 0.00043195197940804064, 0.005074279848486185, 0.4111682176589966, 0.05455898120999336, 0.005699012894183397, 0.026465043425559998, 0.03013758733868599, 0.017765892669558525, 0.028048092499375343, 0.015839852392673492, 0.39744284749031067], [0.0018290388397872448, 0.000856737548019737, 0.0008140807040035725, 0.0003104869101662189, 0.00011284205538686365, 0.000292467069812119, 8.136712131090462e-05, 0.0038466425612568855, 0.44877469539642334, 0.01942555606365204, 0.004931693430989981, 0.00954618863761425, 0.010857670567929745, 0.01430565770715475, 0.018236681818962097, 0.026817047968506813, 0.4389609694480896], [0.006906155962496996, 0.0024820035323500633, 0.001469908864237368, 0.0006967110675759614, 0.00025552441366016865, 0.00014752382412552834, 7.985904085217044e-05, 0.005151177756488323, 0.3610455393791199, 0.026672488078475, 0.030713923275470734, 0.013119624927639961, 0.04527655616402626, 0.1075688898563385, 0.020399028435349464, 0.02217903360724449, 0.35583603382110596], [0.004034522455185652, 0.00046107714297249913, 0.0007041665958240628, 0.000661600730381906, 0.0006499440059997141, 0.0005654105334542692, 0.00021424367150757462, 0.004850264173001051, 0.25375962257385254, 0.05407317355275154, 0.008293156512081623, 0.06778424978256226, 0.031225314363837242, 0.17754624783992767, 0.09328951686620712, 0.04399356245994568, 0.25789394974708557], [0.022871652618050575, 0.007005993742495775, 0.007196023594588041, 0.009020509198307991, 0.005459469277411699, 0.011229055002331734, 0.0036002236884087324, 0.025591367855668068, 0.4187258183956146, 0.010436697863042355, 0.01091319415718317, 0.0054810200817883015, 0.006836700718849897, 0.005600787233561277, 0.009205058217048645, 0.024293290451169014, 0.4165331721305847]], [[0.006108490750193596, 0.00048298592446371913, 0.009644691832363605, 0.0010901641799136996, 0.0012856327230110765, 0.0035513541661202908, 0.0003678583016153425, 0.0006273784092627466, 0.017687829211354256, 0.15350079536437988, 0.21495573222637177, 0.017333583906292915, 0.06902571022510529, 0.11868312209844589, 0.1206250712275505, 0.24720345437526703, 0.017826182767748833], [0.03721974790096283, 0.04095926880836487, 0.14490556716918945, 0.06568209081888199, 0.11905517429113388, 0.22005000710487366, 0.07183218002319336, 0.01965632103383541, 0.11881532520055771, 0.004190849605947733, 0.0034088639076799154, 0.006869701202958822, 0.010367468930780888, 0.005993550177663565, 0.006495932582765818, 0.010392483323812485, 0.1141054555773735], [0.07519026100635529, 0.029349684715270996, 0.03602093458175659, 0.051357872784137726, 0.03302657604217529, 0.1732197403907776, 0.020981866866350174, 0.03328615427017212, 0.2525395452976227, 0.004731690511107445, 0.0031023784540593624, 0.007860047742724419, 0.007952983491122723, 0.005466417409479618, 0.008948655799031258, 0.014622583985328674, 0.24234260618686676], [0.050438426434993744, 0.04054679721593857, 0.33494460582733154, 0.02331814356148243, 0.027969859540462494, 0.2162870466709137, 0.03173430636525154, 0.015952864661812782, 0.11285558342933655, 0.003259655088186264, 0.0034685134887695312, 0.0042036669328808784, 0.006843035575002432, 0.004207336809486151, 0.003274918533861637, 0.012310788035392761, 0.10838446021080017], [0.05691436678171158, 0.044992052018642426, 0.39046740531921387, 0.02600630186498165, 0.011247477494180202, 0.1982293426990509, 0.025162890553474426, 0.01811601221561432, 0.08739137649536133, 0.007450995966792107, 0.004557818174362183, 0.0058028195053339005, 0.011403405107557774, 0.0068854414857923985, 0.007046618033200502, 0.014744245447218418, 0.08358140289783478], [0.09177535772323608, 0.033661339432001114, 0.19003207981586456, 0.01771298237144947, 0.009519659914076328, 0.04854452610015869, 0.012874523177742958, 0.020067719742655754, 0.2533319294452667, 0.006392565555870533, 0.004831385798752308, 0.015062008053064346, 0.019236113876104355, 0.007355678826570511, 0.012718730606138706, 0.014451921917498112, 0.24243146181106567], [0.03723860904574394, 0.0865321084856987, 0.26005181670188904, 0.04593465104699135, 0.02298891544342041, 0.18341778218746185, 0.01862463168799877, 0.011491465382277966, 0.1470467895269394, 0.005789309274405241, 0.004849296994507313, 0.00945041049271822, 0.006580303888767958, 0.005731581244617701, 0.007881954312324524, 0.00651024142280221, 0.13988018035888672], [0.02528735063970089, 0.07338886708021164, 0.3010205030441284, 0.09665419161319733, 0.07813757658004761, 0.24917075037956238, 0.04880642890930176, 0.008978785015642643, 0.029446927830576897, 0.004549788311123848, 0.006467815954238176, 0.00832538865506649, 0.012921258807182312, 0.00652841804549098, 0.005633087828755379, 0.01602678745985031, 0.028656112030148506], [0.005942951887845993, 0.0033881994895637035, 0.007797200232744217, 0.002649979665875435, 0.001656738226301968, 0.005419855006039143, 0.001296873320825398, 0.0036795062478631735, 0.4749843180179596, 0.005580626893788576, 0.005660484079271555, 0.003878110321238637, 0.0022622316610068083, 0.0034939160104840994, 0.005023148376494646, 0.004064449109137058, 0.4632215201854706], [0.006474870257079601, 0.0006117824814282358, 0.009809962473809719, 0.0015060602454468608, 0.002500672359019518, 0.0017212096136063337, 0.0006272914470173419, 0.00044546491699293256, 0.020383097231388092, 0.05131588131189346, 0.09697055071592331, 0.08580992370843887, 0.17250189185142517, 0.15189795196056366, 0.14122340083122253, 0.23551951348781586, 0.020680420100688934], [0.01393016055226326, 0.0013729787897318602, 0.009511454030871391, 0.001822108868509531, 0.0023439188953489065, 0.003921179566532373, 0.0011712448904290795, 0.001270924462005496, 0.0745932012796402, 0.06104925274848938, 0.03216121718287468, 0.04262640327215195, 0.10333573073148727, 0.16931265592575073, 0.2219616025686264, 0.1854526549577713, 0.07416332513093948], [0.01863090693950653, 0.004460332449525595, 0.014619794674217701, 0.0020859555806964636, 0.0007908749976195395, 0.0025836671702563763, 0.001338754897005856, 0.002101004356518388, 0.15120112895965576, 0.0440375916659832, 0.09921767562627792, 0.019260209053754807, 0.061059679836034775, 0.10695835202932358, 0.23787152767181396, 0.08528541773557663, 0.14849716424942017], [0.013786058872938156, 0.006823251023888588, 0.017722666263580322, 0.0032359580509364605, 0.0011598821729421616, 0.0031366825569421053, 0.0009321234538219869, 0.0023410385474562645, 0.1785549819469452, 0.05204802379012108, 0.08926312625408173, 0.03960205614566803, 0.0287737138569355, 0.12901489436626434, 0.17477378249168396, 0.08269420266151428, 0.17613764107227325], [0.010521615855395794, 0.0044441260397434235, 0.009941776283085346, 0.0028532410506159067, 0.003599172458052635, 0.008467171341180801, 0.0005294167785905302, 0.0025389876682311296, 0.33173704147338867, 0.04066403582692146, 0.09391944855451584, 0.05924486741423607, 0.05047112703323364, 0.007072144653648138, 0.01549836341291666, 0.03072803094983101, 0.3277694284915924], [0.005421232897788286, 0.0011851878371089697, 0.006782172713428736, 0.0005525992601178586, 0.0009180335327982903, 0.0028074176516383886, 0.00029931095195934176, 0.0015592406271025538, 0.3599278926849365, 0.04040796682238579, 0.09281772375106812, 0.038084808737039566, 0.03996624797582626, 0.01620369590818882, 0.019190222024917603, 0.01750001683831215, 0.3563762903213501], [0.018650809302926064, 0.0021492750383913517, 0.01273356843739748, 0.0012515883427113295, 0.0017890360904857516, 0.006261963862925768, 0.0009159680921584368, 0.001294730114750564, 0.07636277377605438, 0.058753978461027145, 0.10870809108018875, 0.0813615545630455, 0.14224953949451447, 0.15841716527938843, 0.14703968167304993, 0.10503080487251282, 0.07702938467264175], [0.00585370184853673, 0.0032456815242767334, 0.0074389330111444, 0.0025247905869036913, 0.0015582502819597721, 0.005153819918632507, 0.0012307422002777457, 0.003569426015019417, 0.47526243329048157, 0.005695832893252373, 0.005758575163781643, 0.003869175212457776, 0.0022632593754678965, 0.003518057521432638, 0.005080585367977619, 0.004129423294216394, 0.46384739875793457]], [[0.004491069354116917, 0.0027351307217031717, 0.0033803677652031183, 0.005743349902331829, 0.0022395208943635225, 0.0008278143359348178, 0.00034106202656403184, 0.013580447062849998, 0.18483808636665344, 0.11249332129955292, 0.13519611954689026, 0.005843060091137886, 0.0030350645538419485, 0.04950470104813576, 0.023332413285970688, 0.26362738013267517, 0.1887912154197693], [0.00804812740534544, 0.01932227984070778, 0.026770418509840965, 0.6470544338226318, 0.020555930212140083, 0.011104513891041279, 0.012925602495670319, 0.08041491359472275, 0.0513184480369091, 0.004597698338329792, 0.03217235952615738, 0.0010082327062264085, 0.001800397876650095, 0.0059030381962656975, 0.0019013967830687761, 0.025208251550793648, 0.04989396780729294], [0.019066080451011658, 0.044097863137722015, 0.0526462122797966, 0.05110037699341774, 0.0031227064318954945, 0.008649613708257675, 0.004430604167282581, 0.03587121143937111, 0.3683486878871918, 0.001988824922591448, 0.027555108070373535, 0.0006233253516256809, 0.0019463642966002226, 0.008852565661072731, 0.006860843859612942, 0.008148842491209507, 0.3566909432411194], [0.01181622315198183, 0.01627986691892147, 0.014005794189870358, 0.06803689897060394, 0.04136352241039276, 0.060439012944698334, 0.13425949215888977, 0.10341010987758636, 0.2644912004470825, 0.00419637793675065, 0.008456779643893242, 0.002130867913365364, 0.0008287517121061683, 0.004039273597300053, 0.0017279366729781032, 0.009923389181494713, 0.2545944154262543], [0.03295176103711128, 0.00981871783733368, 0.011098244227468967, 0.04524724930524826, 0.031882502138614655, 0.08037003129720688, 0.0789155438542366, 0.13111072778701782, 0.280385285615921, 0.007552378345280886, 0.005483344197273254, 0.002191618550568819, 0.0008577117114327848, 0.001828051288612187, 0.0018603377975523472, 0.011331876739859581, 0.26711463928222656], [0.01984240673482418, 0.003054012544453144, 0.0021687326952815056, 0.005747318267822266, 0.001473750569857657, 0.006713476497679949, 0.0026262446772307158, 0.04381173104047775, 0.4587130844593048, 0.008910521864891052, 0.0016071475110948086, 0.000905586639419198, 0.0007425961666740477, 0.0008714159484952688, 0.0015417730901390314, 0.004404224921017885, 0.4368661344051361], [0.018868526443839073, 0.0023677500430494547, 0.002823382383212447, 0.008436670526862144, 0.007943402975797653, 0.009686744771897793, 0.009699057787656784, 0.043270520865917206, 0.4554607570171356, 0.0033076212275773287, 0.0012700386578217149, 0.0010856080334633589, 0.0010807514190673828, 0.002286955015733838, 0.0016150734154507518, 0.0016566591802984476, 0.4291403591632843], [0.013559774495661259, 0.026531832292675972, 0.015721190720796585, 0.05076306685805321, 0.030098246410489082, 0.01254494022578001, 0.007677183486521244, 0.08505788445472717, 0.3477552533149719, 0.008530913852155209, 0.010583840310573578, 0.0018345118733122945, 0.0012463959865272045, 0.011005932465195656, 0.005545108579099178, 0.029818521812558174, 0.34172528982162476], [0.0128476582467556, 0.0070405807346105576, 0.0043700747191905975, 0.01533160824328661, 0.0027420285623520613, 0.0017848021816462278, 0.0012670168653130531, 0.011103778146207333, 0.4413999915122986, 0.009417522698640823, 0.013258809223771095, 0.005044627469033003, 0.004234619904309511, 0.011044901795685291, 0.005227820947766304, 0.010213804431259632, 0.4436703324317932], [0.013963457196950912, 0.0004852685087826103, 0.00031514567672275007, 0.0010715775424614549, 0.000465469405753538, 0.00011994507076451555, 9.289264562539756e-05, 0.0066409423016011715, 0.10461071133613586, 0.01795988157391548, 0.009873723611235619, 0.005708467215299606, 0.011519615538418293, 0.05709651857614517, 0.060107432305812836, 0.6019048094749451, 0.10806416720151901], [0.009923316538333893, 0.001042229006998241, 0.0028097371105104685, 0.003893047571182251, 0.0002943800063803792, 0.00021249905694276094, 0.00012919773871544749, 0.00298856059089303, 0.10818257927894592, 0.015430368483066559, 0.03214710205793381, 0.008477655239403248, 0.006266812793910503, 0.10698418319225311, 0.06688863039016724, 0.5240752100944519, 0.11025447398424149], [0.017295323312282562, 0.00030550482915714383, 0.00011151922080898657, 0.0005560052231885493, 0.0003936477587558329, 0.0002033496566582471, 8.925401198212057e-05, 0.002276224782690406, 0.2864246070384979, 0.015821443870663643, 0.0031072362326085567, 0.003026719903573394, 0.021945657208561897, 0.10184614360332489, 0.08656800538301468, 0.1685444712638855, 0.29148489236831665], [0.02513893134891987, 0.00035986705916002393, 0.0003152923018205911, 0.0015269137220457196, 0.0006833409424871206, 0.0007534757605753839, 0.0004035881720483303, 0.003052610205486417, 0.3965087831020355, 0.01016230508685112, 0.001222248189151287, 0.015222378075122833, 0.02500336244702339, 0.02272692508995533, 0.04186059907078743, 0.06124873831868172, 0.3938107192516327], [0.018043674528598785, 0.0005647705402225256, 0.00013937160838395357, 0.0004187797021586448, 0.00029265141347423196, 0.00011341588833602145, 6.516977009596303e-05, 0.003693226957693696, 0.40424126386642456, 0.0065319109708070755, 0.003817638847976923, 0.0015745162963867188, 0.01423345785588026, 0.032373636960983276, 0.06914874166250229, 0.03475236892700195, 0.40999534726142883], [0.008435001596808434, 0.0004022587963845581, 0.0004470115527510643, 0.0009707273566164076, 0.000670029257889837, 0.00029795794398523867, 0.0002571486111264676, 0.002384831430390477, 0.42509859800338745, 0.013429762795567513, 0.00517049478366971, 0.0032699573785066605, 0.0110192084684968, 0.023920413106679916, 0.03501049801707268, 0.03921378776431084, 0.43000227212905884], [0.006235255394130945, 0.0008490421460010111, 0.0007377707515843213, 0.0014265619684010744, 0.0005125260213389993, 0.00031963468063622713, 0.000337122764904052, 0.003331746906042099, 0.31864526867866516, 0.019486485049128532, 0.032194584608078, 0.011964375153183937, 0.010498319752514362, 0.08868256956338882, 0.04845643416047096, 0.13580313324928284, 0.32051917910575867], [0.01278546079993248, 0.006674907170236111, 0.004197892267256975, 0.014472641050815582, 0.002629952970892191, 0.0017473259940743446, 0.0012211804278194904, 0.010640420950949192, 0.4423478841781616, 0.009551836177706718, 0.013386709615588188, 0.005114047788083553, 0.004195861052721739, 0.0107945641502738, 0.005213086027652025, 0.010380597785115242, 0.4446457624435425]], [[0.023240748792886734, 0.07953847944736481, 0.16248755156993866, 0.12789462506771088, 0.06906704604625702, 0.27402371168136597, 0.032486360520124435, 0.10435017198324203, 0.05908270180225372, 0.003025195561349392, 0.000730594270862639, 0.000296466751024127, 0.0008506119484081864, 0.0008684821659699082, 0.0012133477721363306, 0.004668611567467451, 0.05617520585656166], [0.06305493414402008, 0.16579696536064148, 0.16351580619812012, 0.11282528191804886, 0.05173748731613159, 0.06269607692956924, 0.03162235766649246, 0.13088737428188324, 0.09096205234527588, 0.005293190944939852, 0.006355307064950466, 0.002758533926680684, 0.005849230568856001, 0.005586117040365934, 0.004126057494431734, 0.010644329711794853, 0.08628882467746735], [0.0837809145450592, 0.08363284170627594, 0.06468788534402847, 0.12506923079490662, 0.007336738519370556, 0.01852007582783699, 0.020320747047662735, 0.2166077196598053, 0.1771128624677658, 0.002309236442670226, 0.0019026253139600158, 0.001240355777554214, 0.001552533358335495, 0.0011545817833393812, 0.003917337395250797, 0.02118201181292534, 0.16967229545116425], [0.023773569613695145, 0.044085659086704254, 0.02132377028465271, 0.08987373858690262, 0.02066689357161522, 0.050990670919418335, 0.05786581337451935, 0.290880411863327, 0.1991594284772873, 0.0029574118088930845, 0.0007944938261061907, 0.0014390898868441582, 0.0016552872257307172, 0.0007095510372892022, 0.0009399499394930899, 0.003165513277053833, 0.1897188276052475], [0.010321545414626598, 0.06656690686941147, 0.005372785963118076, 0.0869201123714447, 0.007539425976574421, 0.019194528460502625, 0.046659961342811584, 0.3537028133869171, 0.20210368931293488, 0.0024764856789261103, 0.0008285234798677266, 0.0009028236963786185, 0.0011658631265163422, 0.0003240696096327156, 0.0003809835761785507, 0.0014742979547008872, 0.19406522810459137], [0.01850607432425022, 0.022093243896961212, 0.005990950856357813, 0.07804959267377853, 0.013770654797554016, 0.019559694454073906, 0.028089921921491623, 0.29072460532188416, 0.2574850618839264, 0.00461789732798934, 0.0008781043579801917, 0.0026221054140478373, 0.0015305732376873493, 0.000263807422015816, 0.0005275693256407976, 0.0028601663652807474, 0.25242987275123596], [0.010967651382088661, 0.02457348257303238, 0.010869220830500126, 0.038812778890132904, 0.009671305306255817, 0.0210882555693388, 0.0425233393907547, 0.22441640496253967, 0.31072431802749634, 0.0015137724112719297, 0.0008567758486606181, 0.0009829149348661304, 0.000794274965301156, 0.00040636619087308645, 0.0005918711540289223, 0.0012872687075287104, 0.299919992685318], [0.08603475987911224, 0.07631687819957733, 0.19062742590904236, 0.04701632633805275, 0.05650255084037781, 0.08549165725708008, 0.01968248188495636, 0.2152814269065857, 0.08952372521162033, 0.014798171818256378, 0.006798931863158941, 0.0013256615493446589, 0.00314573897048831, 0.002213665982708335, 0.006497263442724943, 0.0140540087595582, 0.08468930423259735], [0.008603562600910664, 0.002590964548289776, 0.004649112932384014, 0.00249645602889359, 0.0009996596490964293, 0.00149826449342072, 0.000688537722453475, 0.006989079527556896, 0.4781118333339691, 0.001995021477341652, 0.002414325950667262, 0.0019218079978600144, 0.002220926573500037, 0.0029377357568591833, 0.003877513576298952, 0.007813812233507633, 0.4701915383338928], [0.007183087058365345, 0.006589315831661224, 0.00023044638510327786, 0.005280859302729368, 0.001204530242830515, 0.0007620027172379196, 0.0018218496115878224, 0.02877768501639366, 0.29163217544555664, 0.11342033743858337, 0.03470993787050247, 0.012133374810218811, 0.007591197732836008, 0.012843171134591103, 0.01481074932962656, 0.15937325358390808, 0.3016361594200134], [0.033366575837135315, 0.023267026990652084, 0.012330911122262478, 0.008179254829883575, 0.001280084135942161, 0.0062731290236115456, 0.005200493149459362, 0.027896197512745857, 0.14378948509693146, 0.062079593539237976, 0.09295963495969772, 0.03584771230816841, 0.02228175662457943, 0.04181826859712601, 0.03472179174423218, 0.30199241638183594, 0.14671552181243896], [0.010625152848660946, 0.005256202537566423, 0.0009470693184994161, 0.004724381025880575, 0.0012652622535824776, 0.0022165272384881973, 0.002361852675676346, 0.023172251880168915, 0.32786795496940613, 0.09001118689775467, 0.03241894394159317, 0.023855891078710556, 0.028070909902453423, 0.013477046974003315, 0.02820405922830105, 0.06700853258371353, 0.33851683139801025], [0.008823768235743046, 0.007817736826837063, 0.002042504260316491, 0.007765134330838919, 0.0010390295647084713, 0.002331737894564867, 0.0037329283077269793, 0.03326355293393135, 0.3777431845664978, 0.03730939328670502, 0.017716044560074806, 0.021334825083613396, 0.0055310423485934734, 0.009275105781853199, 0.02409231849014759, 0.055510055273771286, 0.384671688079834], [0.027654128149151802, 0.00817696750164032, 0.004897586070001125, 0.005371118430048227, 0.0011204412439838052, 0.0036508420016616583, 0.005585335195064545, 0.019509349018335342, 0.22746598720550537, 0.07751960307359695, 0.06560271233320236, 0.05746680870652199, 0.06440310925245285, 0.016676539555191994, 0.06264568120241165, 0.12247893214225769, 0.22977489233016968], [0.0202791690826416, 0.005424231290817261, 0.0020729340612888336, 0.004089755471795797, 0.0003064309130422771, 0.0012946876231580973, 0.0028918322641402483, 0.022143656387925148, 0.29434025287628174, 0.021033572033047676, 0.02933582291007042, 0.035342998802661896, 0.03934631496667862, 0.031098520383238792, 0.06976334750652313, 0.12475145608186722, 0.296485036611557], [0.028809547424316406, 0.011441226117312908, 0.002548227086663246, 0.005870056804269552, 0.0010272151557728648, 0.0027636445593088865, 0.0021110731177031994, 0.03761543333530426, 0.19905677437782288, 0.12257896363735199, 0.1416686326265335, 0.022098811343312263, 0.031208565458655357, 0.024952851235866547, 0.023615265265107155, 0.13706472516059875, 0.20556896924972534], [0.008588515222072601, 0.00250594737008214, 0.004519786685705185, 0.002356642158702016, 0.0009649667190387845, 0.001457498176023364, 0.0006640133797191083, 0.006693936884403229, 0.47765469551086426, 0.002148671308532357, 0.0025937519967556, 0.0020521855913102627, 0.002333240583539009, 0.003032693872228265, 0.003999465610831976, 0.008252416737377644, 0.4701816439628601]], [[0.000982114695943892, 0.004091165028512478, 0.004939687438309193, 0.0011691843392327428, 0.0004179372626822442, 0.00024837313685566187, 0.00017504821880720556, 0.003871886059641838, 0.3642014265060425, 0.07570024579763412, 0.11817161738872528, 0.0011959581170231104, 0.0028538990300148726, 0.0026068768929690123, 0.006106139626353979, 0.054107941687107086, 0.35916051268577576], [0.006770129781216383, 0.040091175585985184, 0.5720412135124207, 0.05853549391031265, 0.015804467722773552, 0.00623184023424983, 0.000941671896725893, 0.0031304596923291683, 0.1481103152036667, 0.00018110869859810919, 0.0006976760923862457, 0.00011162082228111103, 0.00012310886813793331, 0.0004759879957418889, 0.0004055437457282096, 0.0005344916135072708, 0.1458137184381485], [0.01749485358595848, 0.02916434407234192, 0.02090737409889698, 0.07360083609819412, 0.019484400749206543, 0.008984182961285114, 0.004194698296487331, 0.012607067823410034, 0.4014410078525543, 0.00032298368751071393, 0.0004531797021627426, 0.00012644869275391102, 0.00033590340171940625, 0.001052728621289134, 0.0009646816179156303, 0.004289843607693911, 0.4045754671096802], [0.0065080225467681885, 0.01719985343515873, 0.020139502361416817, 0.021763848140835762, 0.12448582798242569, 0.10734974592924118, 0.01601879484951496, 0.018105080351233482, 0.3265039026737213, 7.600667595397681e-05, 0.000768825993873179, 8.489628089591861e-05, 0.0001785384665708989, 0.00040724262362346053, 0.00041737905121408403, 0.0008389552822336555, 0.33915355801582336], [0.005324306432157755, 0.0034710955806076527, 0.006156086456030607, 0.04033822566270828, 0.05107131227850914, 0.2590765058994293, 0.08856496214866638, 0.04075836390256882, 0.2466021478176117, 0.0002618652652017772, 0.0005048560560680926, 5.357438567443751e-05, 0.0004163106787018478, 0.0003822004946414381, 0.0024052902590483427, 0.004948529880493879, 0.24966426193714142], [0.008354321122169495, 0.00320628029294312, 0.004300081171095371, 0.014493655413389206, 0.014988232403993607, 0.02075227163732052, 0.05375239998102188, 0.15388235449790955, 0.3635590374469757, 0.0005612139939330518, 0.0017769794212654233, 2.2496307792607695e-05, 2.2088916011853144e-05, 6.533411215059459e-05, 0.00019873524433933198, 0.0019323339220136404, 0.35813212394714355], [0.005989552941173315, 0.000805228017270565, 0.0006162141798995435, 0.006485061254352331, 0.006694117095321417, 0.01136291865259409, 0.0027206800878047943, 0.19496288895606995, 0.3921332359313965, 0.0001232411159435287, 0.00018664235540200025, 1.6475127267767675e-05, 1.0163040315092076e-05, 8.045938557188492e-06, 2.573806887085084e-05, 0.0002803881361614913, 0.37757956981658936], [0.0021146731451153755, 0.00940559059381485, 0.00040572191937826574, 0.002102120313793421, 0.00087406812235713, 0.0010750140063464642, 0.001744489069096744, 0.021776355803012848, 0.47649356722831726, 0.03664303570985794, 0.006693859584629536, 0.000755955115891993, 0.0003247038403060287, 7.903648656792939e-05, 0.00012029314530082047, 0.0013174255145713687, 0.438073992729187], [0.02279108576476574, 0.023942915722727776, 0.01632073149085045, 0.008830530568957329, 0.003411548212170601, 0.0035038383211940527, 0.0020042245741933584, 0.025177041068673134, 0.40080955624580383, 0.03297889977693558, 0.02413228526711464, 0.005460791289806366, 0.005110255908221006, 0.003336946479976177, 0.005129239056259394, 0.026923280209302902, 0.3901367783546448], [0.0020170698408037424, 0.0008203468169085681, 0.0009687605779618025, 0.00016548443818464875, 1.966808304132428e-05, 2.170368497900199e-05, 1.7034979464369826e-05, 0.0006240619695745409, 0.2446744292974472, 0.12617836892604828, 0.2800847589969635, 0.0474822111427784, 0.01788557693362236, 0.010361931286752224, 0.0063131884671747684, 0.016214484348893166, 0.2461508959531784], [0.003918275237083435, 0.00034542419598437846, 0.00067752948962152, 0.0005303944344632328, 0.00014931897749193013, 6.736755312886089e-05, 5.1306968089193106e-05, 0.0017923499690368772, 0.3823898732662201, 0.022699471563100815, 0.02205655351281166, 0.06332850456237793, 0.02990773320198059, 0.030130116268992424, 0.017780542373657227, 0.03620373085141182, 0.3879714608192444], [0.0018869866617023945, 0.00017940874386113137, 0.0012492379173636436, 0.0003119969042018056, 9.89115287666209e-05, 3.0359014999703504e-05, 1.6386160496040247e-05, 0.00038734349072910845, 0.17270058393478394, 0.006391515955328941, 0.027016859501600266, 0.01094605028629303, 0.459575355052948, 0.03604191169142723, 0.059415191411972046, 0.04751691222190857, 0.1762349158525467], [0.0027314627077430487, 0.00019612615869846195, 0.0008190465741790831, 0.0019603949040174484, 0.0001202166240545921, 0.00015853694640100002, 4.0470415115123615e-05, 0.001131771132349968, 0.2684919238090515, 0.005442818161100149, 0.012507056817412376, 0.02179448865354061, 0.0248956810683012, 0.09579593688249588, 0.15712997317314148, 0.132270947098732, 0.27451324462890625], [0.004733952693641186, 0.00029556226218119264, 0.0008470766479149461, 0.0033797835931181908, 0.0016139313811436296, 0.00024948103236965835, 0.00015229708515107632, 0.002880000276491046, 0.24154411256313324, 0.0020931996405124664, 0.005377753172069788, 0.005055051762610674, 0.010699550621211529, 0.026457147672772408, 0.07186821103096008, 0.36919134855270386, 0.25356152653694153], [0.008436399511992931, 0.0003944433992728591, 0.0006710233283229172, 0.0019352240487933159, 0.0013254010118544102, 0.00017852858582045883, 0.0001184404463856481, 0.004959569778293371, 0.32671627402305603, 0.003515776712447405, 0.005910769104957581, 0.0023301499895751476, 0.0009229655261151493, 0.006790416315197945, 0.005160048604011536, 0.2907657325267792, 0.3398687541484833], [0.0015784422867000103, 0.0002764534729067236, 6.207280966918916e-05, 0.00012852295185439289, 0.00013409389066509902, 6.685530388494954e-05, 1.4973677934904117e-05, 0.00055623275693506, 0.47241654992103577, 0.0062804329209029675, 0.0037998200859874487, 0.0007399527239613235, 0.00010288133489666507, 0.0009065078338608146, 0.0009333392954431474, 0.00892754178494215, 0.5030752420425415], [0.02283552475273609, 0.02228902280330658, 0.016071077436208725, 0.008608848787844181, 0.003482910804450512, 0.003652083920314908, 0.002056853612884879, 0.024583343416452408, 0.4017147123813629, 0.032261256128549576, 0.02376566268503666, 0.00534425862133503, 0.005090110935270786, 0.003414693521335721, 0.005372276995331049, 0.027864601463079453, 0.39159271121025085]]], [[[3.7261415286593547e-07, 3.222988380002789e-05, 2.1976880816509947e-05, 7.972150797286304e-07, 3.978600915388597e-08, 6.765957095922204e-06, 1.1826134738157634e-08, 0.00016382770263589919, 0.49526330828666687, 3.740987253308958e-08, 3.211378327705461e-07, 6.937708185716929e-09, 1.113583010525776e-11, 3.039694718154351e-09, 7.562473980371465e-10, 7.514056221680221e-08, 0.5045101642608643], [2.4386691777067426e-08, 0.0011898259399458766, 0.9977213740348816, 6.672040035482496e-05, 2.0240988760633627e-06, 1.00907727755839e-05, 1.5420846821712075e-09, 1.8474871410489868e-08, 0.0005069724866189063, 6.589774559362382e-11, 5.7181419599317e-09, 1.4601390097013223e-09, 4.4432074020051004e-08, 2.2959119050369736e-09, 6.537946850571075e-10, 1.0630875069139734e-09, 0.0005028883460909128], [1.4852690810585045e-07, 1.246831288881367e-05, 4.1484221583232284e-05, 0.9986849427223206, 7.25875406715204e-06, 2.363831299589947e-06, 2.3903021784121847e-08, 5.352884500098298e-07, 0.0006439454737119377, 3.0372256359240124e-12, 7.303600085828421e-11, 2.5988408647315e-10, 4.88320772706885e-11, 5.637434696836863e-08, 5.461978247467414e-08, 1.4145443856250495e-06, 0.0006053330725990236], [5.53762424804205e-10, 1.0791179647640092e-06, 1.1149166994073312e-06, 1.9628765585366637e-05, 0.9962438344955444, 0.0037225347477942705, 6.1436082887667e-08, 2.9457176253799844e-08, 5.630980467685731e-06, 4.7451619185606003e-14, 1.9717025321469572e-12, 1.235864383920815e-12, 3.0372889533308856e-12, 2.6449308021536666e-11, 2.049460427755445e-12, 1.1233368679697264e-09, 6.0491220210678875e-06], [2.1145132519939658e-11, 1.3640261142811028e-09, 2.100065103149973e-06, 2.3976385818968993e-06, 0.001124573522247374, 0.9988652467727661, 1.8541946644745622e-07, 2.5892024080320653e-09, 2.6765630991576472e-06, 1.0314777596507133e-14, 2.467993969184224e-15, 4.917058446063209e-14, 6.861952846215491e-12, 1.0769500569107748e-10, 5.7983628315438906e-11, 3.320865457623334e-11, 2.7329479053150862e-06], [6.539127746230111e-12, 3.2532457630574108e-12, 2.8948669850148434e-11, 1.1665697297047473e-09, 2.4565700168510674e-11, 1.9457364430763846e-07, 0.9999946355819702, 4.988308319298085e-06, 9.613298601607312e-08, 2.918147494479495e-13, 1.3918184503134909e-14, 2.525621775514151e-19, 1.1193925036950416e-18, 1.6104017040686598e-17, 4.490480456551503e-14, 5.975308789429867e-12, 9.181178484141128e-08], [3.490912073300656e-11, 2.038438168261436e-11, 1.072288004916322e-11, 7.56949347646696e-09, 4.0809530234275915e-12, 1.068536107595719e-06, 0.00015022858860902488, 0.9998425245285034, 3.1012702947919024e-06, 3.3899256015115786e-13, 2.76252754785616e-16, 8.467104760623754e-20, 1.786232878675188e-20, 6.642720231221392e-18, 3.124306860452378e-15, 1.8195808193510743e-09, 2.999131083925022e-06], [3.9280561026089345e-09, 4.40032672486268e-05, 4.387047614073936e-09, 2.585681224687164e-09, 3.2712735298368045e-11, 2.2498031881923453e-08, 4.915975959640662e-10, 0.00041482673259451985, 0.5418294668197632, 0.002193771069869399, 1.8509306087821642e-08, 4.306588505947895e-12, 6.141861046831553e-17, 3.121117887285084e-16, 8.327319817860376e-15, 5.5383850283696745e-11, 0.4555179178714752], [0.0018904717871919274, 0.0026074456982314587, 0.0023896945640444756, 0.0009480819571763277, 0.00010249244223814458, 0.0004825378127861768, 3.3532203815411776e-05, 0.0020040026865899563, 0.49977996945381165, 0.0020556191448122263, 0.0033260819036513567, 0.0006128359236754477, 1.9764953322010115e-05, 0.0003356840752530843, 0.00031012206454761326, 0.0011823587119579315, 0.4819193184375763], [5.5900110929041347e-11, 5.489450671802842e-09, 4.5048097196964676e-11, 7.679462263581599e-14, 5.003851794585989e-15, 3.4032084333772417e-13, 1.7472556672446134e-14, 6.379510201354188e-12, 9.338275958725717e-06, 4.860562512476463e-06, 0.9999747276306152, 1.3033870800427394e-06, 2.6354447513199375e-09, 3.655958313864005e-10, 1.089804288478824e-11, 2.0741530021295418e-11, 9.709798177937046e-06], [3.0310332022054354e-07, 4.0704941284275264e-07, 2.063020758669154e-07, 1.2044509389852465e-08, 2.7207588959576867e-10, 2.9160379666492986e-10, 5.283444919090309e-14, 1.134775118316611e-08, 0.00834314152598381, 8.059894753387198e-05, 0.005084274336695671, 0.927973210811615, 0.048550404608249664, 0.0013918058248236775, 2.7358555598766543e-06, 3.4393863757031795e-07, 0.008572385646402836], [1.8136387574044233e-12, 4.380151623351036e-12, 2.2198569371578714e-10, 9.926656935679845e-15, 1.4419840104959447e-13, 9.505274985079776e-15, 1.7461437641582615e-19, 8.140769135973301e-18, 2.9086921315979453e-08, 1.5901915201288475e-11, 9.64218713761511e-08, 3.8658194512208865e-07, 0.9999967813491821, 2.142684934369754e-06, 5.351345748749736e-07, 2.2377740285794978e-11, 2.9111786759017377e-08], [1.7336019286773308e-09, 2.91932877871659e-09, 9.984889857150847e-07, 4.1409612094867043e-07, 3.302599946991558e-12, 4.7198887159760616e-11, 5.369033871465388e-14, 1.08984356261832e-10, 0.00017371562717016786, 1.8614059182908704e-09, 5.438069479168917e-07, 0.0009472542442381382, 1.4865820958220866e-05, 0.973537802696228, 0.024571465328335762, 0.0005725330556742847, 0.00018050771905109286], [1.9958056540758662e-08, 3.4345565280702317e-10, 4.64573872704932e-07, 3.787027225143902e-08, 2.4788260333252765e-09, 1.061526333501206e-08, 4.363850947264325e-11, 9.337582790314158e-11, 0.0031896645668894053, 1.1463789917343092e-08, 2.4626398698046614e-08, 2.8149049740022747e-06, 0.0001039750495692715, 0.00037147573311813176, 0.991554319858551, 0.0016060750931501389, 0.0031711491756141186], [8.44365430907601e-08, 2.1463577581926074e-09, 8.311811683370252e-08, 4.572948739678395e-07, 6.729678481143253e-10, 6.209824321423696e-10, 3.065240727906371e-09, 3.0237828241297393e-07, 0.005005085840821266, 2.0744550965900999e-07, 7.683606639830032e-08, 2.945804988829792e-10, 1.979439012700368e-08, 4.18948802689556e-05, 0.0003109700046479702, 0.989566445350647, 0.005074354819953442], [3.063812759052098e-09, 1.3592878644885786e-07, 1.2898936141425565e-08, 2.1179507037061285e-09, 4.562449973377625e-08, 2.579345803610522e-08, 8.326400007842294e-13, 4.925895495944133e-07, 0.4880203604698181, 1.9707320007000817e-06, 7.449017402905156e-09, 1.3098072973449781e-11, 1.2642247105675974e-14, 5.824303817014709e-10, 2.3212118893667366e-09, 0.0003028100181836635, 0.511674165725708], [0.0018656085012480617, 0.0025325578171759844, 0.002368832705542445, 0.0009074422414414585, 0.0001072189916158095, 0.0004995720810256898, 3.179698614985682e-05, 0.0018877851543948054, 0.4999793767929077, 0.002010409953072667, 0.0032622325234115124, 0.0006183038931339979, 2.003933332161978e-05, 0.00034324248554185033, 0.0003153206780552864, 0.0011667012004181743, 0.4820835590362549]], [[0.0031687787268310785, 0.0021072241943329573, 0.0009463902679271996, 0.00277671217918396, 0.0005172099336050451, 0.002292200457304716, 0.0003313654160592705, 0.0021580031607300043, 0.06574764847755432, 0.6438615322113037, 0.04106004908680916, 0.0467059351503849, 0.016375252977013588, 0.04054352268576622, 0.010232903994619846, 0.05405689403414726, 0.06711835414171219], [0.007784616202116013, 0.03844992816448212, 0.3426261246204376, 0.0698457658290863, 0.028900451958179474, 0.030795125290751457, 0.004827134311199188, 0.020057201385498047, 0.22330595552921295, 0.002653072588145733, 0.0019380440935492516, 0.0010743284365162253, 0.0005326402024365962, 0.0011532068019732833, 0.0005938852555118501, 0.003066868055611849, 0.222395658493042], [0.0031111501157283783, 0.004433536436408758, 0.006661070045083761, 0.005048063118010759, 0.002987812040373683, 0.0036905640736222267, 0.001532705151475966, 0.008228489197790623, 0.48094525933265686, 0.001087543903850019, 0.0008998917764984071, 0.0006031688535586, 0.0004564943665172905, 0.0007406265358440578, 0.0006603269721381366, 0.0021899729035794735, 0.476723313331604], [0.009134180843830109, 0.023849118500947952, 0.01980331540107727, 0.00792919285595417, 0.08268915861845016, 0.3063957691192627, 0.1324813961982727, 0.033980075269937515, 0.17825734615325928, 0.008773121051490307, 0.002051224699243903, 0.0028216890059411526, 0.004565601237118244, 0.004844783805310726, 0.002173337386921048, 0.0015979105373844504, 0.1786527931690216], [0.0033792974427342415, 0.003261215751990676, 0.001668277196586132, 0.005956524051725864, 0.025913964956998825, 0.2673491835594177, 0.24290718138217926, 0.008580110035836697, 0.21558590233325958, 0.003495622193440795, 0.001015661284327507, 0.0008783711236901581, 0.0019982093945145607, 0.0005529147456400096, 0.0004996185889467597, 0.0006683977553620934, 0.216289684176445], [0.006898961961269379, 0.002756655914708972, 0.002344513079151511, 0.001128703006543219, 0.002137027448043227, 0.006188714411109686, 0.004916543606668711, 0.013192027807235718, 0.47812193632125854, 0.0020387747790664434, 0.0024558338336646557, 0.0003375773085281253, 0.000317808473482728, 0.0004023729416076094, 0.00030882220016792417, 0.0007135040941648185, 0.4757401943206787], [0.011171341873705387, 0.003672228893265128, 0.0013586024288088083, 0.0016394970007240772, 0.009315996430814266, 0.05581178143620491, 0.0144527992233634, 0.01816549152135849, 0.4430449604988098, 0.0007274269592016935, 0.001332490355707705, 0.0002902174019254744, 0.0003721984685398638, 0.00020304735517129302, 0.00010823544289451092, 0.0001696606632322073, 0.4381638467311859], [0.0615169033408165, 0.020606184378266335, 0.003415802726522088, 0.02264251932501793, 0.014627281576395035, 0.011750688776373863, 0.003223121864721179, 0.07565398514270782, 0.338276743888855, 0.06219317764043808, 0.01544131338596344, 0.010523424483835697, 0.004260147921741009, 0.0021767974831163883, 0.002337446203455329, 0.01583000086247921, 0.33552438020706177], [0.013904713094234467, 0.006687380839139223, 0.01368147972971201, 0.006337393075227737, 0.0022896481677889824, 0.004136144183576107, 0.0010569773148745298, 0.008383078500628471, 0.4509871006011963, 0.012893562205135822, 0.007830215618014336, 0.003152543446049094, 0.0021458270493894815, 0.004008903633803129, 0.003495629411190748, 0.010987005196511745, 0.4480225741863251], [0.009342015720903873, 0.0005970665370114148, 0.0016270920168608427, 0.0008652874385006726, 0.00021021503198426217, 0.0008255654247477651, 5.688759847544134e-05, 0.0006628589471802115, 0.2532263994216919, 0.06279492378234863, 0.04000402241945267, 0.10017304122447968, 0.03889627754688263, 0.10627750307321548, 0.06585460156202316, 0.060199279338121414, 0.25838688015937805], [0.00470384256914258, 0.00025547738187015057, 0.001014219131320715, 0.0006298162043094635, 0.00017429704894311726, 0.00048186612548306584, 3.7683381378883496e-05, 0.0008605144685134292, 0.4193834662437439, 0.019610490649938583, 0.014176217839121819, 0.020950602367520332, 0.016732197254896164, 0.021587757393717766, 0.020667394623160362, 0.03181454911828041, 0.426919549703598], [0.005506251938641071, 0.00016714820230845362, 0.0006694486946798861, 5.820449223392643e-05, 6.0141283029224724e-05, 0.0006462655728682876, 5.355328903533518e-05, 0.00023431392037309706, 0.43320852518081665, 0.0037796704564243555, 0.005220563150942326, 0.005452694837003946, 0.02280672825872898, 0.031833767890930176, 0.04400983080267906, 0.009591441601514816, 0.43670135736465454], [0.0028302576392889023, 0.00018466179608367383, 0.00043115936568938196, 6.672646850347519e-05, 6.347324961097911e-05, 0.0007406906806863844, 0.00013406721700448543, 0.0007323641330003738, 0.4349660575389862, 0.005022261757403612, 0.012043071910738945, 0.004549701232463121, 0.006130059715360403, 0.022899653762578964, 0.06324814260005951, 0.006689904723316431, 0.4392678737640381], [0.0034591418225318193, 0.0001908911654027179, 0.0007750068325549364, 0.00028781365836039186, 6.777868838980794e-05, 0.0008258150774054229, 9.748530283104628e-05, 0.0006033903337083757, 0.4620514512062073, 0.011492528952658176, 0.005856774281710386, 0.0018466287292540073, 0.0012969066156074405, 0.007690042722970247, 0.017925282940268517, 0.019632447510957718, 0.46590057015419006], [0.00377830071374774, 0.00018883163284044713, 0.00120546855032444, 0.0001869543775683269, 4.318389983382076e-05, 0.0004842808411922306, 6.236963963601738e-05, 0.0004986025160178542, 0.47327324748039246, 0.005997870117425919, 0.003884568577632308, 0.0007923234952613711, 0.000982806202955544, 0.005837774369865656, 0.008305312134325504, 0.014881394803524017, 0.4795967638492584], [0.005138145759701729, 0.0006547124939970672, 0.00031399898580275476, 0.001303725061006844, 0.0004753138346131891, 0.001763355452567339, 0.00027513381792232394, 0.0016112664015963674, 0.4652751088142395, 0.009864411316812038, 0.009711635299026966, 0.002187425969168544, 0.0009307116852141917, 0.006786013953387737, 0.010836858302354813, 0.011738604865968227, 0.4711337387561798], [0.013840503990650177, 0.006591174751520157, 0.013618766330182552, 0.006268083117902279, 0.002270481549203396, 0.004129382781684399, 0.0010570719605311751, 0.008326280862092972, 0.45110708475112915, 0.012794177047908306, 0.007879385724663734, 0.003156723454594612, 0.0021648616530001163, 0.004040877800434828, 0.0035543092526495457, 0.011032868176698685, 0.4481678307056427]], [[0.004646711051464081, 0.02769767865538597, 0.018233714625239372, 0.0135768111795187, 0.013318194076418877, 0.053658414632081985, 0.011534101329743862, 0.03239040821790695, 0.39864856004714966, 0.009872550144791603, 0.0030370792374014854, 0.004227162338793278, 0.0005076945526525378, 0.0012006046017631888, 0.0015230132266879082, 0.005872041452676058, 0.4000552296638489], [0.0030200525652617216, 0.015542035922408104, 0.03529181331396103, 0.24123111367225647, 0.004646776709705591, 0.008606866002082825, 0.0007329742657020688, 0.003434254787862301, 0.33983224630355835, 0.0016027145320549607, 0.00038751622196286917, 0.0007601724937558174, 0.0010024802759289742, 0.00017135724192485213, 0.0004500047070905566, 0.008400284685194492, 0.3348873257637024], [0.00117931526619941, 0.009039977565407753, 0.006407999433577061, 0.0024088541977107525, 0.0008406472043134272, 0.0003036821726709604, 0.00010241178824799135, 0.0008063734858296812, 0.4865339696407318, 0.0006006041658110917, 0.0006850181962363422, 0.0003370451449882239, 0.0001005050289677456, 0.00025179461226798594, 0.0005235635908320546, 0.001439388026483357, 0.4884389042854309], [0.0006322811241261661, 0.013885417953133583, 0.03904265537858009, 0.02093936875462532, 0.016451114788651466, 0.10240742564201355, 0.0029610719066113234, 0.008978908881545067, 0.39699795842170715, 0.0006929365335963666, 9.564725769450888e-05, 0.00032427359838038683, 0.0003493450058158487, 0.00019777752459049225, 0.0002632479299791157, 0.0052959490567445755, 0.39048466086387634], [0.0005937740206718445, 0.0065855649299919605, 0.0012340358225628734, 0.02115865796804428, 0.0045451815240085125, 0.10851363837718964, 0.002723093843087554, 0.004589584190398455, 0.4261760413646698, 0.00048638577573001385, 3.7827634514542297e-05, 7.17494694981724e-05, 0.00011375904432497919, 8.189241634681821e-05, 0.0002782107039820403, 0.002025419380515814, 0.42078515887260437], [0.0014794886810705066, 0.004135075956583023, 0.0005052487249486148, 0.004656696692109108, 0.00471864826977253, 0.011638039723038673, 0.05843871086835861, 0.006999869365245104, 0.45093467831611633, 0.002576622413471341, 0.0004004511865787208, 0.0001797809381969273, 4.0434664697386324e-05, 0.0001752369716996327, 0.00027377723017707467, 0.0037011492531746626, 0.44914600253105164], [0.00045148268691264093, 0.006556532345712185, 0.002436431823298335, 0.013392260298132896, 0.013839494436979294, 0.5427978038787842, 0.009187949821352959, 0.02432774379849434, 0.1913284957408905, 0.0029970393516123295, 1.4134778211882804e-05, 3.397305044927634e-05, 4.923252708977088e-05, 7.818665471859276e-05, 0.00011753539001801983, 0.0027835711371153593, 0.1896081417798996], [0.004975053481757641, 0.005287251900881529, 0.0010606514988467097, 0.008493514731526375, 0.009217924438416958, 0.023655859753489494, 0.004463125951588154, 0.06002442538738251, 0.44074684381484985, 0.005570522975176573, 0.003539224388077855, 0.0005595625261776149, 2.568858144513797e-05, 3.507287328829989e-05, 3.211749572074041e-05, 0.0020424367394298315, 0.4302707612514496], [0.01662576012313366, 0.013676837086677551, 0.011885679326951504, 0.009910515509545803, 0.004302979912608862, 0.007309566717594862, 0.002795423846691847, 0.014664201065897942, 0.43024855852127075, 0.009110670536756516, 0.016728438436985016, 0.008570024743676186, 0.0020402141381055117, 0.00516263535246253, 0.005033999681472778, 0.01326029933989048, 0.42867419123649597], [0.00031312531791627407, 0.0001334080589003861, 4.8179990699281916e-05, 2.344835775147658e-05, 1.4353172446135432e-05, 8.410756709054112e-05, 1.7194215615745634e-05, 0.00043542252387851477, 0.48370641469955444, 0.016668910160660744, 0.00570331746712327, 0.004899709019809961, 8.922466076910496e-05, 0.00045920515549369156, 0.00039906823076307774, 0.003689597360789776, 0.4833153784275055], [0.0025753150694072247, 0.0007899104384705424, 0.0023585858289152384, 0.0030938785057514906, 5.673373743775301e-05, 0.00017418582865502685, 1.5397719835164025e-05, 0.0018498236313462257, 0.3883779048919678, 0.056232329457998276, 0.00946682970970869, 0.01435126457363367, 0.04634745046496391, 0.0021499686408787966, 0.004345921333879232, 0.07809703052043915, 0.3897174894809723], [0.0004876543825957924, 0.0002595835248939693, 0.0008621607557870448, 0.00016694313671905547, 4.679569246945903e-05, 5.4062729759607464e-05, 2.260996780023561e-06, 0.00020927352306898683, 0.38169941306114197, 0.0023388175759464502, 0.0013290435308590531, 0.016598215326666832, 0.1351580023765564, 0.026289353147149086, 0.04276518523693085, 0.014793241396546364, 0.37693995237350464], [0.0007472332799807191, 0.000532722391653806, 0.00033791776513680816, 0.0002527469478081912, 1.695405262580607e-05, 3.529287641867995e-05, 1.6808779719212907e-06, 0.00019044746295548975, 0.48241952061653137, 0.005815370008349419, 0.0012918816646561027, 0.01268912572413683, 0.0014524844009429216, 0.0027702704537659883, 0.0037103029899299145, 0.004510845988988876, 0.4832253158092499], [0.00044030402204953134, 0.0002678841119632125, 0.0002080110862152651, 0.0004459947522263974, 1.5997904483811e-05, 0.00011288871610304341, 1.1075761904066894e-05, 0.0001167506561614573, 0.2984003722667694, 0.0015657480107620358, 0.0008177456329576671, 0.027135416865348816, 0.007639724295586348, 0.03391946479678154, 0.14812976121902466, 0.17753243446350098, 0.3032402992248535], [0.001518476172350347, 0.0006707650027237833, 0.0003037183778360486, 0.0008619431755505502, 0.00010589713929221034, 0.0001338131696684286, 1.626178163860459e-05, 7.222404383355752e-05, 0.43262436985969543, 0.0012514317641034722, 0.007958325557410717, 0.011023764498531818, 0.0045568253844976425, 0.028736360371112823, 0.01900426484644413, 0.053583186119794846, 0.43757835030555725], [0.0007229795446619391, 0.0002856792707461864, 0.00018265539256390184, 0.0010278918780386448, 0.0002493975916877389, 0.00036922309664078057, 1.304705256188754e-05, 0.00017484095587860793, 0.4723462164402008, 0.0015171103877946734, 0.0034793203230947256, 0.000799223140347749, 0.0002524151641409844, 0.0015764248091727495, 0.0018667629919946194, 0.03574001044034958, 0.4793967604637146], [0.016689607873558998, 0.013602039776742458, 0.011726605705916882, 0.009826768189668655, 0.004278423264622688, 0.007250617258250713, 0.002754163695499301, 0.014515035785734653, 0.4299820363521576, 0.009232072159647942, 0.01706676557660103, 0.008602065965533257, 0.0020937330555170774, 0.005293664988130331, 0.005194936413317919, 0.01352635957300663, 0.42836514115333557]], [[0.0009357659728266299, 0.0009855087846517563, 0.006272437982261181, 0.0006815640954300761, 0.00017691338143777102, 0.000455359899206087, 6.815097731305286e-05, 0.00486785639077425, 0.48824578523635864, 0.0011436513159424067, 0.0012370236217975616, 0.0004392194387037307, 0.0001492508890805766, 0.0002657849108800292, 0.00023867652635090053, 0.0030885462183505297, 0.49074864387512207], [0.011824224144220352, 0.031619418412446976, 0.013066585175693035, 0.0033593676052987576, 0.000999400275759399, 0.0004325775080360472, 0.00030561830499209464, 0.010319091379642487, 0.4673183262348175, 0.00011453475599410012, 0.0018660679925233126, 7.23780831322074e-05, 0.00010274900705553591, 0.00011686662037391216, 0.0002201199094997719, 0.00024283005041070282, 0.45801982283592224], [0.002653721487149596, 0.007376522291451693, 0.012308141216635704, 0.0012607760727405548, 0.0008716582669876516, 0.00048471501213498414, 2.9569455364253372e-05, 0.0008004661649465561, 0.4883043169975281, 7.588630978716537e-05, 0.0005660575698129833, 9.463145397603512e-05, 3.113040293101221e-05, 3.555275179678574e-05, 0.0001165039575425908, 0.0004999481607228518, 0.48449042439460754], [0.0019072330323979259, 0.06150224432349205, 0.01568525843322277, 0.018371695652604103, 0.049505941569805145, 0.011806926690042019, 0.005584845319390297, 0.011089038103818893, 0.41280829906463623, 0.00034343224251642823, 0.001627131481654942, 0.0004034104058519006, 0.000142949735163711, 0.00019744868041016161, 0.0003961980401072651, 0.0011452591279521585, 0.40748274326324463], [0.0007226336747407913, 0.010250167921185493, 0.0017117736861109734, 0.004440348129719496, 0.0017453273758292198, 0.007101535797119141, 0.0011321828933432698, 0.005288560409098864, 0.4838944375514984, 3.477352220215835e-05, 0.0001616227236809209, 4.713012822321616e-05, 3.613242370192893e-06, 2.7937687264056876e-05, 0.00018145858484786004, 0.0010602050460875034, 0.4821964204311371], [0.0009220391511917114, 0.00203683041036129, 0.0016831494867801666, 0.0017126871971413493, 0.004069022834300995, 0.0038726930506527424, 0.00122427090536803, 0.003867652965709567, 0.4925641119480133, 0.00023894365585874766, 0.00020664882322307676, 1.2736146345559973e-05, 6.886805749672931e-06, 2.509949990781024e-05, 0.0002232462866231799, 0.0014253894332796335, 0.48590853810310364], [0.0005435695638880134, 0.004219656344503164, 0.004036516882479191, 0.007169567979872227, 0.02241043746471405, 0.671183705329895, 0.035876043140888214, 0.005130477715283632, 0.12443186342716217, 0.00025697500677779317, 5.910365507588722e-05, 2.2748319679521956e-05, 3.77723372366745e-05, 0.0001121274835895747, 6.217126065166667e-05, 0.00010925692913588136, 0.12433809041976929], [0.0059726727195084095, 0.0064332024194300175, 0.005674977786839008, 0.012177813798189163, 0.029017139226198196, 0.07363323122262955, 0.02635008841753006, 0.06776728481054306, 0.3844427764415741, 0.002214405918493867, 0.004718646872788668, 0.00012510159285739064, 0.00030144883203320205, 9.775700891623273e-05, 0.00012138995225541294, 0.0007765593472868204, 0.38017556071281433], [0.01789006032049656, 0.011232955381274223, 0.013579105027019978, 0.006586464587599039, 0.0031376779079437256, 0.005298648029565811, 0.0014133123913779855, 0.019931431859731674, 0.43546125292778015, 0.007066912483423948, 0.014798990450799465, 0.0063568647019565105, 0.003019228344783187, 0.0030720492359250784, 0.003858806099742651, 0.012525654397904873, 0.43477076292037964], [0.002307293238118291, 0.0005252473638392985, 8.809447899693623e-05, 0.0001066939948941581, 5.142863665241748e-05, 0.00013020240294281393, 2.280935223097913e-05, 0.0030361642129719257, 0.4866974949836731, 0.003110808553174138, 0.017023121938109398, 0.0004895227611996233, 0.00017146248137578368, 4.922522930428386e-05, 8.410107693634927e-05, 0.0006245755939744413, 0.48548176884651184], [0.003925621509552002, 0.0012905444018542767, 0.00038357198354788125, 0.00019414257258176804, 6.96040442562662e-05, 7.445819937856868e-05, 1.7682017642073333e-05, 0.002358929254114628, 0.47390303015708923, 0.010795599780976772, 0.021730123087763786, 0.004094819072633982, 0.0009392796782776713, 0.0022257231175899506, 0.0014261604519560933, 0.002192050451412797, 0.4743787348270416], [0.008202116936445236, 0.0015130232786759734, 0.0008207476348616183, 0.00011114784865640104, 3.075272616115399e-05, 5.873592454008758e-05, 3.500822640489787e-05, 0.0019902423955500126, 0.4695906341075897, 0.0009293457260355353, 0.02703288197517395, 0.0015253170859068632, 0.005303015001118183, 0.001179198152385652, 0.006391364149749279, 0.0037080796901136637, 0.47157853841781616], [0.0007976963534019887, 0.0008520035771653056, 0.00030975311528891325, 0.00020254332048352808, 1.3558767932408955e-05, 7.497619662899524e-05, 2.2740589429304237e-06, 0.00027519604191184044, 0.4260416328907013, 0.0004453066794667393, 0.010177896358072758, 0.1344641149044037, 0.000603098887950182, 0.00024383763957303017, 0.0008044102578423917, 0.0010347836650907993, 0.4236568212509155], [0.0019524323288351297, 0.0002637382713146508, 0.0003940958995372057, 0.0001262571895495057, 2.7685424356604926e-05, 7.109082798706368e-05, 1.3022981875110418e-05, 0.00043486119830049574, 0.46897876262664795, 0.0009151546400971711, 0.002930409973487258, 0.0016912224236875772, 0.0021614073775708675, 0.005406985059380531, 0.039821773767471313, 0.006688544526696205, 0.46812260150909424], [0.002520602662116289, 0.0002614275144878775, 0.0005641995812766254, 0.00016588994185440242, 0.00012261020310688764, 0.00019193170010112226, 3.556019510142505e-05, 0.0006151711568236351, 0.37359359860420227, 0.004681902006268501, 0.01112336665391922, 0.00816743541508913, 0.01294596679508686, 0.1693142205476761, 0.035054560750722885, 0.007097503636032343, 0.3735440671443939], [0.0023108343593776226, 0.0009366289596073329, 0.0003248245920985937, 0.000675665563903749, 0.00039208782254718244, 0.000510399870108813, 5.507854075403884e-05, 0.0022336547262966633, 0.47829505801200867, 0.0012756776995956898, 0.012313233688473701, 0.0016621029935777187, 0.001625137054361403, 0.004917402286082506, 0.004686739295721054, 0.008417991921305656, 0.4793674945831299], [0.017968175932765007, 0.01134131196886301, 0.013261078856885433, 0.006517610512673855, 0.0031680434476584196, 0.005264427978545427, 0.0013994675828143954, 0.019656673073768616, 0.4352993667125702, 0.007122380658984184, 0.015048257075250149, 0.006418908480554819, 0.0030963211320340633, 0.0031262042466551065, 0.003989494405686855, 0.012708148919045925, 0.4346141219139099]], [[0.0030689863488078117, 0.0033166492357850075, 0.00242445501498878, 0.0004114684124942869, 0.0001578721567057073, 0.0005789128481410444, 3.8072739698691294e-05, 0.0015109134837985039, 0.17528407275676727, 0.07361219078302383, 0.44687125086784363, 0.06202247738838196, 0.02273287996649742, 0.012525404803454876, 0.008559582754969597, 0.007263770792633295, 0.17962102591991425], [0.003965090494602919, 0.03982608765363693, 0.010935517959296703, 0.030606640502810478, 0.006151079200208187, 0.005054636858403683, 0.000700213888194412, 0.0068400949239730835, 0.44721174240112305, 0.001304612960666418, 0.0008193199173547328, 0.0011320802150294185, 0.0003346427693031728, 5.79663974349387e-05, 0.00015036006516311318, 0.0004494161403272301, 0.44446060061454773], [0.010818920098245144, 0.1957474648952484, 0.05118459090590477, 0.017250701785087585, 0.00452144630253315, 0.007591108791530132, 0.0002662086335476488, 0.002007861156016588, 0.3479042053222656, 0.0017605797620490193, 0.0048415581695735455, 0.0035292701795697212, 0.0038675395771861076, 0.00046889681834727526, 0.0007459585322067142, 0.0008902664994820952, 0.3466032147407532], [0.0012930310331285, 0.018686266615986824, 0.022953161969780922, 0.019466092810034752, 0.05568217858672142, 0.009044455364346504, 0.001302405260503292, 0.0017953389324247837, 0.43391719460487366, 0.00026276911376044154, 0.00012244898243807256, 0.0022720429114997387, 0.0011389699066057801, 0.0008332174038514495, 0.00018899368296843022, 0.0005446358700282872, 0.4304966926574707], [0.000962406222242862, 0.005701298825442791, 0.010019714944064617, 0.01962333731353283, 0.012387268245220184, 0.010740355588495731, 0.0003362670831847936, 0.001200356986373663, 0.4691201150417328, 6.658733036601916e-05, 1.943446659424808e-05, 0.00012924168549943715, 0.00012002202129224315, 0.00015755764616187662, 0.00019995974435005337, 0.0015169369289651513, 0.4676991403102875], [0.0022300526034086943, 0.0040331617929041386, 0.008002933114767075, 0.016305968165397644, 0.051353368908166885, 0.02401667647063732, 0.0011861160164698958, 0.003552023321390152, 0.44315075874328613, 0.00011782488581957296, 8.638935105409473e-05, 4.946976332576014e-05, 0.00012513506226241589, 7.789777737343684e-05, 0.00013485958334058523, 0.001111936173401773, 0.44446536898612976], [0.001013406552374363, 0.004529082681983709, 0.005132297053933144, 0.013445733115077019, 0.3318427503108978, 0.0748477652668953, 0.004088751971721649, 0.013508574105799198, 0.27495595812797546, 0.00016681548731867224, 2.5551471480866894e-05, 9.630837303120643e-05, 2.7533063985174522e-05, 4.698890552390367e-05, 2.442480945319403e-05, 0.0005585831822827458, 0.27568942308425903], [0.002854519058018923, 0.00703628733754158, 0.022958945482969284, 0.039655089378356934, 0.02283470332622528, 0.39655572175979614, 0.028923355042934418, 0.01945863850414753, 0.2272329330444336, 0.0009313879418186843, 0.0003862079174723476, 0.00021691610163543373, 0.0002444096899125725, 0.000510828394908458, 0.0006298835505731404, 0.0011067036539316177, 0.22846335172653198], [0.012420429848134518, 0.012259387411177158, 0.009217140264809132, 0.0065152873285114765, 0.005099431611597538, 0.01140523049980402, 0.002370786387473345, 0.011538098566234112, 0.43145236372947693, 0.009270879440009594, 0.01656862534582615, 0.00722168292850256, 0.006101866718381643, 0.00454137334600091, 0.0070095788687467575, 0.014235121197998524, 0.43277260661125183], [0.001373848645016551, 0.0002727459941525012, 0.0002512687351554632, 0.0011196366976946592, 0.0005515392404049635, 0.0022668209858238697, 0.0001824704377213493, 0.004791573155671358, 0.47241953015327454, 0.0212840735912323, 0.004951787181198597, 0.0022337117698043585, 0.0027306077536195517, 0.0016563142416998744, 0.0032291095703840256, 0.007374764885753393, 0.4733101725578308], [0.0019508089171722531, 0.0007906017708592117, 0.00024089193902909756, 0.0009003594750538468, 0.00032274119439534843, 0.0012441696599125862, 9.48059605434537e-05, 0.005818368401378393, 0.4264468848705292, 0.088047556579113, 0.017698992043733597, 0.010936638340353966, 0.004577295854687691, 0.001366672688163817, 0.0033455106895416975, 0.004470459185540676, 0.4317472279071808], [0.0014399546198546886, 0.0002332631847821176, 0.00045224191853776574, 4.9699898227117956e-05, 4.512643499765545e-05, 0.00029908542637713253, 1.8228014596388675e-05, 0.0016688129398971796, 0.4541323482990265, 0.020317096263170242, 0.020485615357756615, 0.01391658652573824, 0.024454424157738686, 0.0032055145129561424, 0.0021444011945277452, 0.0020901234820485115, 0.45504751801490784], [0.0014782125363126397, 0.0002664446656126529, 0.0013442249037325382, 4.679729318013415e-05, 1.4051792277314235e-05, 0.00012693411554209888, 2.119349574059015e-06, 0.0004978053621016443, 0.4407687187194824, 0.007875530049204826, 0.03794340789318085, 0.05507757142186165, 0.010426072403788567, 0.0008189357467927039, 0.0007481228676624596, 0.0004371738468762487, 0.44212791323661804], [0.0006987267988733947, 0.00017011218005791306, 0.000965818646363914, 0.00015281251398846507, 0.00017269969976041466, 0.0001944021787494421, 2.558222377047059e-06, 0.0001631873456062749, 0.4350961744785309, 0.010776503942906857, 0.010097411461174488, 0.04584597423672676, 0.046717602759599686, 0.0036445041187107563, 0.0031968147959560156, 0.0014907451113685966, 0.44061407446861267], [0.001102504669688642, 0.00012474732648115605, 0.0011422350071370602, 0.00010096780169988051, 0.0003126534866169095, 0.0003701750247273594, 8.78143691807054e-06, 0.00029479534714482725, 0.3615906536579132, 0.005539360921829939, 0.014459156431257725, 0.09316504746675491, 0.12162618339061737, 0.025408687070012093, 0.006769154686480761, 0.0020449822768568993, 0.36594003438949585], [0.0011829630238935351, 0.00034895879798568785, 0.007119147107005119, 0.0005344920791685581, 0.0006515107816085219, 0.0011389878345653415, 5.693728235200979e-05, 0.0009211533470079303, 0.39618223905563354, 0.004883582703769207, 0.003575598355382681, 0.01229837816208601, 0.021678829565644264, 0.10629958659410477, 0.032782260328531265, 0.006704023573547602, 0.4036415219306946], [0.01229869294911623, 0.01221025362610817, 0.009197334758937359, 0.0065560005605220795, 0.005198092665523291, 0.01150069572031498, 0.0023622915614396334, 0.011489861644804478, 0.4307621121406555, 0.009498207829892635, 0.016651909798383713, 0.007432642858475447, 0.006250835955142975, 0.004672306589782238, 0.007284434977918863, 0.014476056210696697, 0.43215832114219666]], [[0.0062873754650354385, 0.0033066386822611094, 0.005725296214222908, 0.002122096484526992, 0.0035054287873208523, 0.0018759208032861352, 0.0005465082940645516, 0.001364398980513215, 0.05486242100596428, 0.35307127237319946, 0.23264960944652557, 0.02684188447892666, 0.0388680100440979, 0.05338788777589798, 0.03981413692235947, 0.11988216638565063, 0.055888831615448], [0.010374179109930992, 0.017863847315311432, 0.08150981366634369, 0.08140186965465546, 0.07214724272489548, 0.23391591012477875, 0.11223496496677399, 0.049508534371852875, 0.13656170666217804, 0.011416579596698284, 0.0028409415390342474, 0.006919450126588345, 0.01042439229786396, 0.012274496257305145, 0.014705237932503223, 0.009614546783268452, 0.13628630340099335], [0.010608501732349396, 0.056547943502664566, 0.10995253175497055, 0.05565983057022095, 0.02825392782688141, 0.10524681210517883, 0.03965795785188675, 0.03382706269621849, 0.22549866139888763, 0.013226945884525776, 0.008492005057632923, 0.00804069358855486, 0.014080305583775043, 0.02046997658908367, 0.015657076612114906, 0.0300438292324543, 0.22473597526550293], [0.006527698133140802, 0.026134004816412926, 0.028784804046154022, 0.007164767477661371, 0.048842236399650574, 0.2568477392196655, 0.09427621960639954, 0.04196718707680702, 0.2316848188638687, 0.004028959199786186, 0.0033744387328624725, 0.005043047945946455, 0.004795629531145096, 0.0038917637430131435, 0.0017948336899280548, 0.0023471941240131855, 0.23249463737010956], [0.004678796045482159, 0.024227414280176163, 0.013375849463045597, 0.007306893356144428, 0.00541008310392499, 0.050092827528715134, 0.014733346179127693, 0.02605808526277542, 0.4214590787887573, 0.004866642411798239, 0.0017015838529914618, 0.0014875386841595173, 0.0014615926193073392, 0.003057771362364292, 0.0016313837841153145, 0.0021541989408433437, 0.41629675030708313], [0.01700776256620884, 0.042182184755802155, 0.02710765227675438, 0.021281739696860313, 0.020639576017856598, 0.006023309659212828, 0.006013905163854361, 0.02144630067050457, 0.3957773745059967, 0.01614018715918064, 0.005501651670783758, 0.009397325105965137, 0.007013344205915928, 0.0009224042296409607, 0.0011493106139823794, 0.011740141548216343, 0.39065587520599365], [0.008481322787702084, 0.021922994405031204, 0.015934770926833153, 0.009804973378777504, 0.02632986009120941, 0.06028136610984802, 0.009073665365576744, 0.013704154640436172, 0.4135402739048004, 0.0026396058965474367, 0.0011057837400585413, 0.0028944816440343857, 0.0034464530181139708, 0.000897968013305217, 0.000930494861677289, 0.0006320380489341915, 0.4083799123764038], [0.0426543653011322, 0.08419543504714966, 0.055145513266325, 0.051335304975509644, 0.14563463628292084, 0.027572128921747208, 0.016870353370904922, 0.02830444648861885, 0.24439531564712524, 0.01853090524673462, 0.012018369510769844, 0.006147198844701052, 0.004490226972848177, 0.002438419032841921, 0.001913479994982481, 0.015327800996601582, 0.24302606284618378], [0.003631844650954008, 0.00630282424390316, 0.010843838565051556, 0.004429279826581478, 0.002837232779711485, 0.005300014279782772, 0.0013003009371459484, 0.004197238944470882, 0.46347904205322266, 0.009454664774239063, 0.005623483564704657, 0.0024919926654547453, 0.0020668606739491224, 0.005056238267570734, 0.0030409570317715406, 0.0068252673372626305, 0.46311894059181213], [0.0039664702489972115, 0.0012100026942789555, 0.0013490068959072232, 0.0006717348005622625, 0.0013324781320989132, 0.0015365842264145613, 0.0005181505111977458, 0.0015928630018606782, 0.1233307421207428, 0.05346051976084709, 0.11342038214206696, 0.048529189079999924, 0.055899109691381454, 0.058765824884176254, 0.0325225405395031, 0.3756310045719147, 0.12626351416110992], [0.0014559559058398008, 0.0006339389947243035, 0.0026479223743081093, 0.00024594212300144136, 0.0001765353954397142, 0.0012350594624876976, 0.00013495075108949095, 0.00048230780521407723, 0.03289053589105606, 0.014156127348542213, 0.020841257646679878, 0.03300347179174423, 0.08467552065849304, 0.15145649015903473, 0.290687620639801, 0.3314812183380127, 0.03379521891474724], [0.0013450953410938382, 0.0007356879650615156, 0.0012934557162225246, 6.655571633018553e-05, 1.4959769941924606e-05, 0.00044271780643612146, 2.703746395127382e-05, 0.000240898531046696, 0.26482874155044556, 0.006245264783501625, 0.015628715977072716, 0.0026149589102715254, 0.009740754030644894, 0.1631568819284439, 0.1779329776763916, 0.0849837064743042, 0.2707015573978424], [0.002606040332466364, 0.0008344699162989855, 0.001209732610732317, 0.00025253143394365907, 0.00014520798868034035, 0.003140548476949334, 0.0001529784349258989, 0.0006057526916265488, 0.23604238033294678, 0.01167572196573019, 0.01795845851302147, 0.018712041899561882, 0.010940677486360073, 0.1811027228832245, 0.2549971342086792, 0.021172286942601204, 0.2384513020515442], [0.007668177597224712, 0.0030669323168694973, 0.0029126242734491825, 0.00011586756590986624, 0.0005006211576983333, 0.0002777589252218604, 6.353022035909817e-05, 0.001750412629917264, 0.3026740252971649, 0.02043387107551098, 0.053980227559804916, 0.02085098624229431, 0.14328381419181824, 0.05951334536075592, 0.044559378176927567, 0.03185036778450012, 0.30649808049201965], [0.0033411842305213213, 0.001311374711804092, 0.004674109630286694, 7.558760262327269e-05, 0.00026961808907799423, 0.0003397368418518454, 4.8722569772507995e-05, 0.0004819100140593946, 0.29047515988349915, 0.016495339572429657, 0.027204833924770355, 0.040732186287641525, 0.1415494680404663, 0.1156366840004921, 0.04778257757425308, 0.014617674052715302, 0.2949638068675995], [0.0054697091691195965, 0.0031442921608686447, 0.004017741419374943, 0.0006543616182170808, 0.0008626212948001921, 0.0014927604934200644, 0.0003636724140960723, 0.003298906609416008, 0.21456480026245117, 0.025571072474122047, 0.03551124036312103, 0.08946865797042847, 0.08170028775930405, 0.204983189702034, 0.0748935267329216, 0.03519828990101814, 0.2188047468662262], [0.0036279424093663692, 0.0062494720332324505, 0.010767522267997265, 0.004385904408991337, 0.00277776294387877, 0.005273555871099234, 0.001287155319005251, 0.0041479985229671, 0.4634871184825897, 0.0094976257532835, 0.005646751262247562, 0.002510426100343466, 0.0020773070864379406, 0.005139967426657677, 0.003092461032792926, 0.006879243068397045, 0.463151752948761]], [[0.0434751994907856, 0.07624716311693192, 0.06747912615537643, 0.02035519666969776, 0.010015725158154964, 0.0414426289498806, 0.03631532937288284, 0.06742885708808899, 0.18269914388656616, 0.029585689306259155, 0.12529835104942322, 0.0237087644636631, 0.01956157386302948, 0.019489718601107597, 0.020061686635017395, 0.03287490829825401, 0.1839608997106552], [0.035312458872795105, 0.04287431761622429, 0.3870684802532196, 0.01889089122414589, 0.0047857556492090225, 0.04934628680348396, 0.006713453214615583, 0.04850570484995842, 0.07312250137329102, 0.014558428898453712, 0.16590696573257446, 0.013183402828872204, 0.005659425165504217, 0.011663048528134823, 0.02039843611419201, 0.028879214078187943, 0.07313109189271927], [0.009067765437066555, 0.009693324565887451, 0.4875434935092926, 0.0014388547278940678, 0.00021393502538558096, 0.002667471067979932, 0.0006254262407310307, 0.027370432391762733, 0.13182732462882996, 0.0034815259277820587, 0.07815778255462646, 0.01245742104947567, 0.0028002781327813864, 0.031081482768058777, 0.061160601675510406, 0.008647194132208824, 0.13176578283309937], [0.043251343071460724, 0.05432870611548424, 0.2003648281097412, 0.07239138334989548, 0.02954348549246788, 0.13457031548023224, 0.008119238540530205, 0.06903116405010223, 0.08606088161468506, 0.021389802917838097, 0.1455184370279312, 0.005577497184276581, 0.004663320258259773, 0.002817539032548666, 0.004073464777320623, 0.03237688168883324, 0.08592164516448975], [0.01956501044332981, 0.04456562176346779, 0.10031446814537048, 0.050040360540151596, 0.2813097834587097, 0.12771634757518768, 0.012727844528853893, 0.046444378793239594, 0.03654434531927109, 0.01234675943851471, 0.190189391374588, 0.0016115154139697552, 0.0036612707190215588, 0.0013930225977674127, 0.0009064333862625062, 0.03406453877687454, 0.03659893944859505], [0.026218045502901077, 0.06079234927892685, 0.05672372877597809, 0.01798201911151409, 0.001952760387212038, 0.07390354573726654, 0.004739114083349705, 0.025562353432178497, 0.1153319776058197, 0.05080939084291458, 0.22117052972316742, 0.03781986981630325, 0.10344535112380981, 0.0023226733319461346, 0.005497083067893982, 0.08170291781425476, 0.11402627825737], [0.04773871228098869, 0.06627925485372543, 0.06205539405345917, 0.05496828258037567, 0.008842677809298038, 0.19613268971443176, 0.03337875381112099, 0.015735918655991554, 0.04694003611803055, 0.048762496560811996, 0.19610688090324402, 0.05871521309018135, 0.027684371918439865, 0.0031071281991899014, 0.0023632668890058994, 0.08435871452093124, 0.046830177307128906], [0.05267766863107681, 0.027090558782219887, 0.1338524967432022, 0.02360408753156662, 0.02441701479256153, 0.053336866199970245, 0.012728002853691578, 0.07358848303556442, 0.09732522070407867, 0.06038691848516464, 0.126238152384758, 0.027520151808857918, 0.019312327727675438, 0.024947965517640114, 0.03392765671014786, 0.11163274198770523, 0.09741368144750595], [0.0540308952331543, 0.04522665590047836, 0.10037654638290405, 0.03302600607275963, 0.020069647580385208, 0.039606042206287384, 0.01987120322883129, 0.043555453419685364, 0.20935256779193878, 0.030169669538736343, 0.035692472010850906, 0.027965085580945015, 0.02780071459710598, 0.016334030777215958, 0.023821622133255005, 0.06318362057209015, 0.2099178582429886], [0.14883196353912354, 0.0561506524682045, 0.018512427806854248, 0.0523001067340374, 0.022837985306978226, 0.06639589369297028, 0.06069033592939377, 0.03026256337761879, 0.03474833071231842, 0.20979785919189453, 0.060308873653411865, 0.06341985613107681, 0.024848708882927895, 0.008243841119110584, 0.004993164911866188, 0.1026022806763649, 0.03505522385239601], [0.07569590955972672, 0.06826606392860413, 0.14791373908519745, 0.006353020668029785, 0.001287593855522573, 0.025356687605381012, 0.006612796802073717, 0.016611628234386444, 0.09665815532207489, 0.009839272126555443, 0.4156748950481415, 0.009369410574436188, 0.0035524782724678516, 0.004436532035470009, 0.008466809056699276, 0.006887361407279968, 0.09701766073703766], [0.08131925016641617, 0.04038386791944504, 0.2807130515575409, 0.022350987419486046, 0.005161680281162262, 0.03141096979379654, 0.01706489361822605, 0.027880989015102386, 0.0755089595913887, 0.03333592787384987, 0.06743645668029785, 0.13742727041244507, 0.027865950018167496, 0.0034239927772432566, 0.010055961087346077, 0.06323617696762085, 0.07542363554239273], [0.07594527304172516, 0.05045931413769722, 0.17923316359519958, 0.019263068214058876, 0.007309482432901859, 0.08978694677352905, 0.03064342401921749, 0.040266070514917374, 0.06838121265172958, 0.007705403957515955, 0.05947738140821457, 0.01489026565104723, 0.07422855496406555, 0.07840986549854279, 0.11332403868436813, 0.022269994020462036, 0.06840652227401733], [0.016269274055957794, 0.07428978383541107, 0.06399387121200562, 0.02427583374083042, 0.00984142441302538, 0.04934109374880791, 0.01772794872522354, 0.08082874119281769, 0.17281591892242432, 0.001805666135624051, 0.014381326735019684, 0.004945421125739813, 0.029646364971995354, 0.17308469116687775, 0.0766250491142273, 0.017474712803959846, 0.17265284061431885], [0.015886226668953896, 0.04134271293878555, 0.058663565665483475, 0.027810800820589066, 0.005924344528466463, 0.03066580556333065, 0.01090441644191742, 0.05550302937626839, 0.14484284818172455, 0.0012009674683213234, 0.008928833529353142, 0.001456223544664681, 0.011961211450397968, 0.2594308853149414, 0.16970132291316986, 0.010675432160496712, 0.145101398229599], [0.10890478640794754, 0.06156468018889427, 0.0492355041205883, 0.05090511962771416, 0.031639374792575836, 0.042668417096138, 0.03171618655323982, 0.03961167111992836, 0.10332640260457993, 0.04986456036567688, 0.13834761083126068, 0.020664377138018608, 0.01220464613288641, 0.004305260255932808, 0.006431234069168568, 0.1449912041425705, 0.10361898690462112], [0.05445354804396629, 0.04526779055595398, 0.09894164651632309, 0.03292705863714218, 0.019971294328570366, 0.03926083445549011, 0.01988603174686432, 0.043445706367492676, 0.20997031033039093, 0.030376648530364037, 0.03586333245038986, 0.027953563258051872, 0.027930643409490585, 0.01642383076250553, 0.023868519812822342, 0.0629306435585022, 0.2105286866426468]], [[0.0031840449664741755, 0.21571789681911469, 0.04524892568588257, 0.04099930077791214, 0.009694595821201801, 0.12895631790161133, 0.004357876721769571, 0.1127181351184845, 0.21609258651733398, 0.002785061253234744, 0.002087533473968506, 0.0006042739260010421, 0.0006000974681228399, 0.0016227583400905132, 0.0010247959289699793, 0.0016243925783783197, 0.21268151700496674], [0.004006592091172934, 0.05269387364387512, 0.044160183519124985, 0.03270796686410904, 0.006540026981383562, 0.00946151651442051, 0.002772148232907057, 0.0238027460873127, 0.4141005873680115, 0.001061401329934597, 0.0009192836005240679, 0.0003084810741711408, 0.00016421879990957677, 0.00022142102534417063, 0.00021352406474761665, 0.002067337976768613, 0.4047985374927521], [0.011967779137194157, 0.20360039174556732, 0.0273871012032032, 0.0805215984582901, 0.009617360308766365, 0.029085135087370872, 0.004362944047898054, 0.029789013788104057, 0.29455703496932983, 0.004561576992273331, 0.002771953819319606, 0.0015155079308897257, 0.002506677992641926, 0.0017421378288418055, 0.0030295392498373985, 0.0037372498773038387, 0.28924694657325745], [0.0028203059919178486, 0.22022941708564758, 0.08479999005794525, 0.02473951317369938, 0.01705314591526985, 0.008756676688790321, 0.0037036833819001913, 0.0203179232776165, 0.30852213501930237, 0.0025849565863609314, 0.0006831066566519439, 0.0003921120660379529, 0.0005833411123603582, 0.000631358998361975, 0.000379806209821254, 0.0033486245665699244, 0.30045390129089355], [0.002009183866903186, 0.023240454494953156, 0.0190526582300663, 0.024731798097491264, 0.012375425547361374, 0.00394817627966404, 0.001384460018016398, 0.004934764001518488, 0.4578995406627655, 0.00037308729952201247, 0.00019942536891903728, 0.00023946145665831864, 0.00027265807148069143, 0.00013639855023939162, 0.00018612276471685618, 0.000731980602722615, 0.4482843279838562], [0.0076033552177250385, 0.09425722807645798, 0.04865274950861931, 0.11354836821556091, 0.09413701295852661, 0.023365287110209465, 0.006663545034825802, 0.023783979937434196, 0.28648820519447327, 0.002370882546529174, 0.000904439075384289, 0.0008742004865780473, 0.0045267329551279545, 0.001869221101514995, 0.0023903290275484324, 0.0036986833438277245, 0.28486594557762146], [0.0033919215202331543, 0.05983782932162285, 0.06063438579440117, 0.23119010031223297, 0.268436998128891, 0.022264478728175163, 0.006140152458101511, 0.014200322329998016, 0.1666257083415985, 0.00040535267908126116, 0.00037407761556096375, 6.247432611417025e-05, 0.0003031328087672591, 0.00015827975585125387, 0.00024232060241047293, 0.0010296277469024062, 0.16470283269882202], [0.006729861255735159, 0.08788341283798218, 0.10373534262180328, 0.1857779622077942, 0.12147389352321625, 0.1733231246471405, 0.03104526922106743, 0.04033413156867027, 0.1204276904463768, 0.0014714953722432256, 0.0014245584607124329, 0.0005047697923146188, 0.0016643000999465585, 0.001192077761515975, 0.0012797699309885502, 0.0020482675172388554, 0.11968409270048141], [0.00839389767497778, 0.013293436728417873, 0.005461883265525103, 0.01169236283749342, 0.006590526085346937, 0.008103218860924244, 0.0015514168189838529, 0.018558092415332794, 0.43971800804138184, 0.012590828351676464, 0.008479714393615723, 0.00353297870606184, 0.003901928197592497, 0.003213356714695692, 0.00506718410179019, 0.010710257105529308, 0.4391407370567322], [0.015712054446339607, 0.003016943810507655, 0.002891476498916745, 0.016477731987833977, 0.003098049433901906, 0.0032609866466373205, 0.0005190958618186414, 0.009564626030623913, 0.39708998799324036, 0.06891121715307236, 0.02599017135798931, 0.009533909149467945, 0.007644720375537872, 0.004496948327869177, 0.0111601073294878, 0.021410614252090454, 0.3992213010787964], [0.011905212886631489, 0.011302993632853031, 0.008778983727097511, 0.011205737479031086, 0.003432678757235408, 0.005752991884946823, 0.0009213303565047681, 0.03804676979780197, 0.2708134949207306, 0.09715063124895096, 0.12197071313858032, 0.03721364587545395, 0.021103635430336, 0.015403433702886105, 0.014941551722586155, 0.057241275906562805, 0.27281486988067627], [0.00725163659080863, 0.0015573929995298386, 0.0022282341960817575, 0.002828036667779088, 0.0013643758138641715, 0.00209349999204278, 0.00027652716380544007, 0.00869971513748169, 0.3416977822780609, 0.11482184380292892, 0.09516112506389618, 0.02310303784906864, 0.01358744315803051, 0.0075135184451937675, 0.011674463748931885, 0.02350008115172386, 0.3426411747932434], [0.014523872174322605, 0.0013822511537000537, 0.006334054749459028, 0.0019307088805362582, 0.0005568930064328015, 0.002475097542628646, 0.00025742192519828677, 0.01586259715259075, 0.21639077365398407, 0.1816307157278061, 0.25600665807724, 0.020945927128195763, 0.004577548708766699, 0.007972564548254013, 0.01322969514876604, 0.03920188173651695, 0.2167213261127472], [0.007418851833790541, 0.0014681847533211112, 0.00305807963013649, 0.002265361836180091, 0.000882843101862818, 0.001318708760663867, 0.0001229055633302778, 0.006177906412631273, 0.14417621493339539, 0.3530433177947998, 0.16043543815612793, 0.07088933885097504, 0.0468129888176918, 0.013300761580467224, 0.018453426659107208, 0.025853820145130157, 0.14432188868522644], [0.008744224905967712, 0.0017883465625345707, 0.00599333643913269, 0.0017488505691289902, 0.0006991210393607616, 0.0016012750566005707, 9.292181493947282e-05, 0.004622788168489933, 0.11953023821115494, 0.2536883056163788, 0.21079561114311218, 0.09379047900438309, 0.08386283367872238, 0.043063048273324966, 0.026585450395941734, 0.02345716953277588, 0.11993610858917236], [0.012803398072719574, 0.003155008191242814, 0.00859522819519043, 0.002518855966627598, 0.0006019544089213014, 0.0018383092246949673, 0.00011044396524084732, 0.004515702370554209, 0.13633836805820465, 0.1949165165424347, 0.20429983735084534, 0.04728134721517563, 0.03588426858186722, 0.08325108885765076, 0.068187415599823, 0.057584844529628754, 0.13811741769313812], [0.008475459180772305, 0.013212391175329685, 0.0054257274605333805, 0.011654380708932877, 0.006628814153373241, 0.008029801771044731, 0.001531823887489736, 0.018491938710212708, 0.4390735924243927, 0.01301492564380169, 0.008726131170988083, 0.0036282483488321304, 0.003982252441346645, 0.003302351338788867, 0.005225836299359798, 0.011017310433089733, 0.43857893347740173]], [[5.714677172363736e-06, 7.531060873589013e-06, 0.0001237595861312002, 0.0001824203645810485, 3.015415131812915e-06, 1.3844623026670888e-05, 1.2050754172321376e-08, 2.479518798281788e-06, 0.49366670846939087, 3.699452122418734e-07, 1.6712405340513214e-05, 1.120707722179759e-07, 3.456006680835344e-08, 2.8061722900929453e-07, 8.784086702462446e-08, 1.2627372143469984e-06, 0.5059755444526672], [8.525857424501737e-07, 0.0007749959477223456, 5.146398689248599e-05, 0.0002799722133204341, 1.0684244244885122e-07, 1.7900667614867416e-08, 5.984887030408004e-10, 3.9815680793253705e-05, 0.5097732543945312, 8.042762544846482e-08, 2.402672549806084e-08, 8.599534417896848e-10, 2.2099409108244927e-11, 9.186663582627652e-12, 2.1641358843860203e-11, 7.705302351723731e-08, 0.4890795052051544], [3.231378684631636e-07, 0.9981132745742798, 6.831890641478822e-05, 4.638550672098063e-05, 9.831397619564086e-06, 1.1858296034006344e-07, 4.995786076489317e-11, 4.471216730195238e-09, 0.0008773634908720851, 9.659983229992619e-11, 2.8497537662985906e-09, 5.718871154414273e-09, 3.743075538409357e-08, 3.439669438165538e-09, 2.8593399870047165e-10, 5.8693498949935474e-09, 0.0008843277464620769], [1.397115201307031e-09, 2.6192303721472854e-06, 0.9998918771743774, 9.90204862318933e-05, 5.5761820050292954e-08, 6.497455729004287e-08, 1.194159793271865e-08, 1.2937077797925411e-10, 3.2282780466630356e-06, 6.1323071186975e-14, 5.4551321793105956e-11, 1.3483410961638749e-14, 1.5693267518823717e-10, 5.848529993635054e-11, 3.640321821762882e-09, 2.840805646275868e-10, 3.1068761927599553e-06], [3.388044012009317e-11, 2.95115332171747e-09, 2.278439069414162e-06, 0.9984825253486633, 0.0015151363331824541, 2.0659163268987868e-08, 1.890719386610229e-10, 2.8548736725336754e-12, 2.5246126966749216e-08, 1.9433179123834894e-17, 2.295780753003296e-12, 1.081282704026203e-14, 9.676696295335239e-17, 1.0416897582694006e-14, 8.799661303446338e-14, 4.3361708668143706e-10, 2.6403824904264184e-08], [8.36674826643069e-11, 8.532065054467353e-10, 8.29904944765758e-09, 0.0002776994660962373, 0.9997115731239319, 1.0491678949620109e-05, 9.19305165325568e-08, 1.2629202371383652e-11, 1.6365794053285754e-08, 8.82434212828761e-16, 2.0271460156101248e-14, 1.1976214723096314e-15, 1.2829752248110816e-14, 1.2851795433530162e-14, 9.152966030229453e-16, 1.875364273595803e-11, 1.7220303405451887e-08], [1.1440866367143169e-18, 6.24125504855641e-19, 1.2712827481258654e-13, 3.7660291009843083e-13, 9.704320680370415e-10, 0.999998927116394, 1.0640302434694604e-06, 5.443953213025048e-17, 1.223048236715903e-15, 2.366011807559596e-21, 8.412004063327965e-24, 5.461388176484554e-23, 8.682448995029395e-22, 1.3391050747150491e-17, 2.5769241002670217e-16, 1.576629201788069e-18, 1.2523003077910934e-15], [1.1910175623519592e-10, 9.76662218980795e-13, 1.8872206020148496e-09, 6.939735008870684e-09, 6.119305617779958e-10, 0.00016604574921075255, 0.9998329877853394, 3.1072784167918144e-07, 2.9101207132953277e-07, 3.312937963784006e-14, 1.6418243717689074e-12, 3.2812739091506104e-18, 2.402679258621445e-14, 1.694799425040923e-14, 4.061255498566396e-11, 1.0015156481912868e-09, 2.931317339971429e-07], [0.027686618268489838, 0.010151353664696217, 0.024794626981019974, 0.02103099413216114, 0.0042915563099086285, 0.005246133543550968, 0.0006153103895485401, 0.02844744548201561, 0.40133506059646606, 0.006595885846763849, 0.03245443478226662, 0.0029201246798038483, 0.00209422898478806, 0.006193780340254307, 0.002613560762256384, 0.019782450050115585, 0.4037465751171112], [5.707126504717053e-08, 5.305807182498512e-11, 2.0431093882694595e-12, 1.0814625968835409e-13, 5.413075857777644e-15, 5.9568240097507275e-12, 3.8739598009519816e-13, 0.0006395395612344146, 0.5075867176055908, 2.1058724087197334e-05, 4.714403075922746e-06, 8.419962643779755e-11, 4.491483573954014e-12, 7.734564724803938e-12, 4.4801684584427903e-10, 8.460733056381287e-07, 0.491747111082077], [1.0530384564333417e-08, 1.3827381462050425e-09, 9.907910603068615e-11, 5.2415769641322996e-11, 1.614435988324045e-14, 1.9644556814579772e-11, 3.965761502825946e-14, 1.0437122277551225e-08, 0.00021847887546755373, 0.9983766078948975, 0.0011704300995916128, 9.414298801857512e-06, 1.973577212766031e-08, 7.474723062728117e-10, 1.1261970245257658e-09, 1.9410425267096798e-08, 0.00022511338465847075], [5.330696772887222e-09, 1.046445499697235e-10, 3.5324796421321025e-09, 3.2595062066098635e-11, 7.034046197069987e-14, 2.89433910933873e-16, 1.9071030187236317e-16, 1.9350456566952223e-12, 8.921795597416349e-06, 1.2232409972057212e-05, 0.9990942478179932, 2.6550827897153795e-05, 0.0008491174085065722, 5.2074426548642805e-08, 7.691279835242426e-10, 9.100802056405399e-11, 8.92963453225093e-06], [1.413380012799028e-14, 7.718452884209609e-14, 2.3376149309978743e-14, 4.0959548713902574e-15, 9.176170497819484e-15, 4.1570871582526214e-18, 4.6975032386115635e-23, 8.399624658721385e-19, 2.358336581576026e-10, 5.2525837845873724e-11, 1.6559253523951156e-08, 1.0, 3.5066620718282593e-09, 9.532768352471521e-09, 4.848402061774504e-12, 1.2009822872860996e-15, 2.4536295217814086e-10], [5.705686945134403e-08, 2.833989265482728e-09, 8.928861461754423e-06, 9.822356616950856e-08, 7.62967733436426e-09, 8.257136700729958e-14, 1.318182318670296e-15, 5.828378144695501e-14, 0.00011490472388686612, 5.522657886558591e-08, 0.008896159939467907, 0.0012328594457358122, 0.9895163178443909, 8.931191405281425e-05, 2.0326888261479326e-05, 1.5145957377171726e-06, 0.00011949613690376282], [3.950031413069155e-10, 2.8524934150842007e-12, 5.75962459947732e-08, 1.0115307202962498e-10, 1.6422271875704553e-10, 2.968542078818359e-11, 1.3658625656008932e-14, 1.1810138031919347e-15, 8.804174285614863e-06, 8.615912670817405e-12, 1.2587244668793574e-07, 1.0687680514820386e-05, 0.02868564985692501, 0.970523476600647, 0.0007618709933012724, 2.2159838408697397e-07, 9.148032404482365e-06], [7.083077679936878e-09, 1.2497617524198645e-11, 5.511309154826449e-06, 3.08378140800869e-08, 2.9887561175945265e-11, 7.224776776837416e-09, 1.1986701053956494e-07, 9.327864002039998e-12, 8.805703146208543e-06, 1.0804734711100661e-11, 2.158739142998911e-08, 5.426098806382562e-11, 5.5660048019490205e-06, 0.0001696567633189261, 0.9940999150276184, 0.005701203364878893, 9.169450095214415e-06], [0.028319815173745155, 0.010333376005291939, 0.025473307818174362, 0.02507404237985611, 0.004830158315598965, 0.005717465654015541, 0.000718376599252224, 0.025225600227713585, 0.3933270275592804, 0.007089710328727961, 0.03807156905531883, 0.0031177906785160303, 0.0023958347737789154, 0.006642082706093788, 0.0030525866895914078, 0.024333421140909195, 0.3962777554988861]], [[0.005391542799770832, 0.007001600693911314, 0.01654086448252201, 0.007268095389008522, 0.005217065569013357, 0.012687058188021183, 0.0018780648242682219, 0.025507211685180664, 0.44259437918663025, 0.00456001702696085, 0.012514159083366394, 0.0018214149167761207, 0.0014852266758680344, 0.0016768246423453093, 0.0020546717569231987, 0.01041596382856369, 0.4413858950138092], [0.006576152052730322, 0.10240702331066132, 0.018728697672486305, 0.14323820173740387, 0.049986474215984344, 0.03025483712553978, 0.012050971388816833, 0.049884919077157974, 0.2808198630809784, 0.00031938732718117535, 0.01515895128250122, 0.0010267799952998757, 0.003328900085762143, 0.0009151598787866533, 0.0006995670846663415, 0.0026942254044115543, 0.2819098234176636], [0.012973690405488014, 0.06871321052312851, 0.031490497291088104, 0.10958608984947205, 0.04596468806266785, 0.04817672818899155, 0.011864996515214443, 0.0465908944606781, 0.2963188588619232, 0.0024943770840764046, 0.010976185090839863, 0.0007986612617969513, 0.003831664100289345, 0.002208451274782419, 0.0031803790479898453, 0.007687777280807495, 0.29714277386665344], [0.004054914694279432, 0.03101220168173313, 0.014836825430393219, 0.08251379430294037, 0.025474147871136665, 0.0367685928940773, 0.019961180165410042, 0.1350509375333786, 0.3203428089618683, 0.000971910310909152, 0.0038676627445966005, 0.0001037776964949444, 0.0001480377250118181, 0.0003008987696375698, 0.0002856427454389632, 0.0034889793023467064, 0.32081761956214905], [0.003940700553357601, 0.004999156575649977, 0.0032750770915299654, 0.07968626916408539, 0.02742406167089939, 0.06991948932409286, 0.09462787955999374, 0.12835530936717987, 0.2933743894100189, 0.000949179579038173, 0.0018484863685443997, 0.00013900731573812664, 0.00010231795749859884, 6.0651109379250556e-05, 0.00011319718760205433, 0.0014628792414441705, 0.28972193598747253], [0.00998516846448183, 0.003294517984613776, 0.0027820756658911705, 0.019927389919757843, 0.027486037462949753, 0.021844541653990746, 0.02705955132842064, 0.16139407455921173, 0.356993168592453, 0.005335778463631868, 0.005052140913903713, 0.0007035201997496188, 0.00046640902291983366, 0.0002491034974809736, 0.0004917875048704445, 0.0010880891932174563, 0.35584667325019836], [0.004408373963087797, 0.00316426414065063, 0.0014020120725035667, 0.023342369124293327, 0.025323715060949326, 0.025710592046380043, 0.03184136748313904, 0.12601809203624725, 0.38134074211120605, 0.0007688571349717677, 0.0006233482854440808, 0.00017133104847744107, 0.0001142708642873913, 1.1815919606306124e-05, 4.521145092439838e-05, 0.0003314129717182368, 0.3753822445869446], [0.002143165795132518, 0.006253203842788935, 0.0013561963569372892, 0.0030949197243899107, 0.0021872781217098236, 0.002259022556245327, 0.0016221548430621624, 0.017215300351381302, 0.4804159998893738, 0.003592889290302992, 0.003877464681863785, 0.0007696565007790923, 0.00047792476834729314, 0.00012241075455676764, 0.00021420551638584584, 0.0019411430694162846, 0.47245708107948303], [0.01601012982428074, 0.012033963575959206, 0.01078930776566267, 0.011333223432302475, 0.004751932807266712, 0.008196607232093811, 0.005289657507091761, 0.02050664834678173, 0.41423702239990234, 0.012046046555042267, 0.01618734933435917, 0.008055870421230793, 0.007911546155810356, 0.007270640227943659, 0.009202688001096249, 0.023804429918527603, 0.4123729467391968], [0.004570821300148964, 0.0006219990318641067, 0.0008660269086249173, 0.0007282443693839014, 0.00011756434105336666, 0.0001524199906270951, 9.679755748948082e-06, 0.00121091038454324, 0.43794164061546326, 0.01100597158074379, 0.05880236253142357, 0.010513713583350182, 0.003600803669542074, 0.005937621463090181, 0.0041281781159341335, 0.01480777096003294, 0.4449843764305115], [0.003852137131616473, 0.001867673359811306, 0.002219864632934332, 0.0004865672090090811, 0.00015351915499195457, 0.0003103021008428186, 3.419929635128938e-05, 0.002339719096198678, 0.24926511943340302, 0.023571200668811798, 0.18127913773059845, 0.06604747474193573, 0.0900469720363617, 0.054545655846595764, 0.02487427555024624, 0.04440683126449585, 0.25469937920570374], [0.0023099894169718027, 0.0006187451654113829, 0.0017197662964463234, 0.0009706380660645664, 0.0003896088746841997, 0.0001397169689880684, 1.049382353812689e-05, 0.0013366942293941975, 0.38504689931869507, 0.007943826727569103, 0.04948156327009201, 0.037139248102903366, 0.03286372497677803, 0.021734939888119698, 0.023877650499343872, 0.043642472475767136, 0.3907740116119385], [0.005205004010349512, 0.0004466577956918627, 0.0012418323894962668, 0.0009301879908889532, 0.0027220447082072496, 0.0021583547350019217, 0.00024887837935239077, 0.0021135604474693537, 0.3151141405105591, 0.013325474224984646, 0.007533856201916933, 0.05050894618034363, 0.024504736065864563, 0.04204701632261276, 0.19397099316120148, 0.018031859770417213, 0.3198965787887573], [0.0035345754586160183, 0.00020995068189222366, 0.002809529658406973, 0.0004845350340474397, 0.0007872952264733613, 0.002412022091448307, 7.994176121428609e-05, 0.0012910199584439397, 0.3895937502384186, 0.002214687177911401, 0.016438975930213928, 0.01857096515595913, 0.007398077752441168, 0.019597051665186882, 0.04473528638482094, 0.08896366506814957, 0.4008787274360657], [0.0032323135528713465, 0.0002426189457764849, 0.0010305322939530015, 0.00041538651566952467, 0.0005048421444371343, 0.0018313778564333916, 5.4521082347491756e-05, 0.0021139876917004585, 0.408632755279541, 0.002944200299680233, 0.010133915580809116, 0.004700675141066313, 0.0037719127722084522, 0.0186750628054142, 0.034819480031728745, 0.08516407757997513, 0.42173242568969727], [0.0018415561644360423, 0.0002441449323669076, 0.00016823195619508624, 0.00023019398213364184, 0.0001538503129268065, 0.00042028201278299093, 7.054630987113342e-05, 0.00042174546979367733, 0.4848628342151642, 0.0014554180670529604, 0.004560873843729496, 0.0007168111042119563, 0.0002870234311558306, 0.0017560055712237954, 0.005887182429432869, 0.006457427516579628, 0.4904659688472748], [0.01604890450835228, 0.011827213689684868, 0.010717342607676983, 0.01119537279009819, 0.004707286600023508, 0.008161387406289577, 0.005274169147014618, 0.02044428512454033, 0.4137292206287384, 0.012168054468929768, 0.01641322299838066, 0.008189268410205841, 0.008064016699790955, 0.00740379374474287, 0.009403572417795658, 0.02437535673379898, 0.41187745332717896]], [[0.011896337382495403, 0.04553978517651558, 0.2977008819580078, 0.016144176945090294, 0.014812009409070015, 0.05180941894650459, 0.006068960297852755, 0.018725192174315453, 0.06805863231420517, 0.08364249765872955, 0.09200550615787506, 0.06783529371023178, 0.02006317488849163, 0.02658402919769287, 0.032708488404750824, 0.07826431840658188, 0.06814133375883102], [0.07108449190855026, 0.10104425251483917, 0.047358378767967224, 0.01654794067144394, 0.008046175353229046, 0.009992127306759357, 0.009700554423034191, 0.06148039177060127, 0.17401942610740662, 0.11008325219154358, 0.1427319049835205, 0.013201718218624592, 0.015427488833665848, 0.003291880711913109, 0.005101888906210661, 0.04001959040760994, 0.17086847126483917], [0.06808757036924362, 0.046941373497247696, 0.018322275951504707, 0.011204362846910954, 0.004199360962957144, 0.011305831372737885, 0.009801087900996208, 0.04053309187293053, 0.266318142414093, 0.05707777664065361, 0.08191963285207748, 0.011768994852900505, 0.035173192620277405, 0.005533100105822086, 0.01537717878818512, 0.05184144154191017, 0.26459556818008423], [0.07591699808835983, 0.05357486382126808, 0.024092543870210648, 0.025861689820885658, 0.008523015305399895, 0.022105766460299492, 0.015525205992162228, 0.0807480439543724, 0.2269948124885559, 0.10711406916379929, 0.06361471861600876, 0.019678829237818718, 0.008481882512569427, 0.004295858088880777, 0.0053276256658136845, 0.03433699905872345, 0.2238069623708725], [0.058995891362428665, 0.03078671172261238, 0.013344567269086838, 0.025047797709703445, 0.01611863449215889, 0.026517633348703384, 0.021701818332076073, 0.07825782150030136, 0.33156299591064453, 0.028799893334507942, 0.015614050440490246, 0.014394245110452175, 0.0024725585244596004, 0.002137289149686694, 0.0018767892615869641, 0.007450197357684374, 0.3249210715293884], [0.030031220987439156, 0.011588482186198235, 0.009314131923019886, 0.013186336494982243, 0.012996258214116096, 0.0043689189478755, 0.007965936325490475, 0.058860596269369125, 0.31455063819885254, 0.08418512344360352, 0.037953004240989685, 0.03637489676475525, 0.009662586264312267, 0.0030015516094863415, 0.004162016790360212, 0.04946955293416977, 0.31232884526252747], [0.027438925579190254, 0.034748516976833344, 0.008749268017709255, 0.022606780752539635, 0.02249724417924881, 0.02475479245185852, 0.026207972317934036, 0.06713223457336426, 0.3269135355949402, 0.046424880623817444, 0.020834898576140404, 0.011768336407840252, 0.006369994953274727, 0.0026754827704280615, 0.005533265881240368, 0.024527231231331825, 0.32081660628318787], [0.04745704308152199, 0.04258449748158455, 0.03822675719857216, 0.02935813181102276, 0.013506618328392506, 0.05341669172048569, 0.018804382532835007, 0.19889415800571442, 0.16479218006134033, 0.055756378918886185, 0.019973155111074448, 0.008547870442271233, 0.004493501503020525, 0.004714685026556253, 0.010971049778163433, 0.12483490258455276, 0.1636679768562317], [0.004619167651981115, 0.003336237743496895, 0.005120809189975262, 0.002401411999017, 0.0011635300470516086, 0.001786738052032888, 0.0006125796353444457, 0.013043121434748173, 0.47580668330192566, 0.005447726231068373, 0.0029154850635677576, 0.0012503197649493814, 0.0006939501035958529, 0.0011493226047605276, 0.001484293956309557, 0.00751108955591917, 0.47165751457214355], [0.006681482307612896, 0.01350687351077795, 0.0010673771612346172, 0.010909723117947578, 0.0029024267569184303, 0.0034648317378014326, 0.002712294226512313, 0.030649906024336815, 0.4172075688838959, 0.024898499250411987, 0.013032658025622368, 0.013816745951771736, 0.0016599389491602778, 0.001979984575882554, 0.0033442906569689512, 0.03448781371116638, 0.41767752170562744], [0.021973080933094025, 0.11463961005210876, 0.008249381557106972, 0.008443331345915794, 0.0016807846259325743, 0.00857829861342907, 0.004734683781862259, 0.01720252074301243, 0.20377548038959503, 0.08148840069770813, 0.12394528090953827, 0.037925396114587784, 0.039062853902578354, 0.014924994669854641, 0.03167993575334549, 0.07768147438764572, 0.2040143609046936], [0.015987304970622063, 0.029722819104790688, 0.0038740970194339752, 0.010076967999339104, 0.030323894694447517, 0.0322301872074604, 0.016984013840556145, 0.014620089903473854, 0.3000859320163727, 0.03443753346800804, 0.02070557326078415, 0.03901701420545578, 0.050995927304029465, 0.020987316966056824, 0.035207320004701614, 0.04655110090970993, 0.29819294810295105], [0.009800056926906109, 0.022414375096559525, 0.011662283912301064, 0.013969166204333305, 0.005651111714541912, 0.013361428864300251, 0.006015367805957794, 0.020908601582050323, 0.3546835780143738, 0.03504370525479317, 0.014956529252231121, 0.06282033771276474, 0.00644267862662673, 0.006425785832107067, 0.02936325967311859, 0.0329553484916687, 0.35352644324302673], [0.045693472027778625, 0.028873935341835022, 0.007569416426122189, 0.02534460462629795, 0.00850349199026823, 0.013826144859194756, 0.016999240964651108, 0.043204594403505325, 0.2920227348804474, 0.04142223298549652, 0.04287896677851677, 0.04896218702197075, 0.009458008222281933, 0.0074393004179000854, 0.025354625657200813, 0.04927218705415726, 0.29317477345466614], [0.026541445404291153, 0.022693820297718048, 0.01782643422484398, 0.01720244064927101, 0.004403784405440092, 0.012205874547362328, 0.011370832100510597, 0.032343506813049316, 0.24245671927928925, 0.0388604998588562, 0.04566324129700661, 0.08541925251483917, 0.026139279827475548, 0.014914426021277905, 0.05854498967528343, 0.09926380217075348, 0.24414974451065063], [0.015273853205144405, 0.012693632394075394, 0.0030219326727092266, 0.008167976513504982, 0.0026210134383291006, 0.018482642248272896, 0.0122247114777565, 0.043228983879089355, 0.27787095308303833, 0.045327331870794296, 0.026973629370331764, 0.043306175619363785, 0.010407078079879284, 0.018379922956228256, 0.06542158126831055, 0.11675029993057251, 0.2798483371734619], [0.004644386470317841, 0.003321829717606306, 0.0050865886732935905, 0.002393309725448489, 0.0011556813260540366, 0.0017870698357000947, 0.0006104191415943205, 0.012987826950848103, 0.4755563735961914, 0.0055827489122748375, 0.0029940621461719275, 0.0012819472467526793, 0.0007164013222791255, 0.001179285580292344, 0.0015245575923472643, 0.00768388994038105, 0.4714936912059784]], [[0.017892248928546906, 0.09621790051460266, 0.27972814440727234, 0.04248691350221634, 0.036734793335199356, 0.08579163253307343, 0.047321733087301254, 0.16168665885925293, 0.10481302440166473, 0.0026634098030626774, 0.0029089536983519793, 0.002742952201515436, 0.005386663135141134, 0.001968739554286003, 0.0016956259496510029, 0.006729320622980595, 0.10323139280080795], [0.006097771693021059, 0.034571822732686996, 0.02834142930805683, 0.01489602867513895, 0.011280916631221771, 0.005926548037678003, 0.006407484412193298, 0.07840634882450104, 0.3984966576099396, 0.001380393048748374, 0.011279840022325516, 0.003508141962811351, 0.0010208252351731062, 0.001003950834274292, 0.0005153188249096274, 0.003190564224496484, 0.3936760425567627], [0.008414425887167454, 0.020426031202077866, 0.029306910932064056, 0.008140305057168007, 0.003373718587681651, 0.00570417195558548, 0.0032661971636116505, 0.042032670229673386, 0.42415526509284973, 0.0014886913122609258, 0.01338985562324524, 0.0024499224964529276, 0.001518317381851375, 0.005368678364902735, 0.005018692463636398, 0.006877680774778128, 0.41906851530075073], [0.0040637715719640255, 0.023357607424259186, 0.011164208874106407, 0.0061511932872235775, 0.005613989662379026, 0.0051599349826574326, 0.004296521190553904, 0.05728956684470177, 0.43970683217048645, 0.0021394025534391403, 0.0022374673280864954, 0.0016334035899490118, 0.0006734568160027266, 0.0006394304218702018, 0.0002148713101632893, 0.0014955428196117282, 0.43416279554367065], [0.00246781250461936, 0.005526396445930004, 0.003295141039416194, 0.001365789445117116, 0.004704872611910105, 0.002192872576415539, 0.002819143468514085, 0.034813810139894485, 0.47196128964424133, 0.0003973311686422676, 0.0007331280503422022, 0.0010172321926802397, 0.0003610823769122362, 0.00042566232150420547, 0.00015019436250440776, 0.000298165250569582, 0.46747010946273804], [0.012753617018461227, 0.026578955352306366, 0.03122747875750065, 0.007042259443551302, 0.019207507371902466, 0.015565520152449608, 0.019687412306666374, 0.08892396092414856, 0.3711673617362976, 0.004803582560271025, 0.0061154658906161785, 0.007158601190894842, 0.002716852119192481, 0.006478235591202974, 0.005087439436465502, 0.00709317484870553, 0.36839255690574646], [0.006345175672322512, 0.02158680185675621, 0.021593932062387466, 0.0076037319377064705, 0.008861963637173176, 0.004473880399018526, 0.01908325031399727, 0.09513793140649796, 0.4066341817378998, 0.0011972530046477914, 0.0007016954477876425, 0.0008068008464761078, 0.0003328810853417963, 0.00038028485141694546, 0.0003336805966682732, 0.002802535891532898, 0.4021241068840027], [0.009660806506872177, 0.10523632913827896, 0.054255932569503784, 0.10370367020368576, 0.09922593832015991, 0.019991405308246613, 0.03873194381594658, 0.16783082485198975, 0.1915450245141983, 0.011329763568937778, 0.0027545730117708445, 0.0011474986094981432, 0.0011327818501740694, 0.001007491140626371, 0.0003843840677291155, 0.0028942839708179235, 0.189167320728302], [0.015019276179373264, 0.010747543536126614, 0.014063682407140732, 0.004853293765336275, 0.004904619883745909, 0.007413987535983324, 0.002837849548086524, 0.0210548248142004, 0.42789772152900696, 0.011836061254143715, 0.015538095496594906, 0.009615554474294186, 0.005789626389741898, 0.007745843380689621, 0.005369522608816624, 0.008734038099646568, 0.4265786111354828], [0.006379035767167807, 0.0045412154868245125, 0.0032286308705806732, 0.0015580117469653487, 0.0008801146177574992, 0.003727972973138094, 0.0008744430961087346, 0.017086487263441086, 0.43658846616744995, 0.004015125334262848, 0.01637202501296997, 0.01082569919526577, 0.005043269135057926, 0.018027866259217262, 0.01666681468486786, 0.015894470736384392, 0.4382903277873993], [0.005039175506681204, 0.007503471802920103, 0.0037879012525081635, 0.0014426256529986858, 0.0004411647969391197, 0.0009918047580868006, 0.0003513083793222904, 0.01078211609274149, 0.42976224422454834, 0.003343496471643448, 0.03389886021614075, 0.028243690729141235, 0.0034834370017051697, 0.011447899974882603, 0.007948198355734348, 0.02151968702673912, 0.43001294136047363], [0.004690959118306637, 0.004124640021473169, 0.0030791957397013903, 0.0008392746676690876, 0.0004405039653647691, 0.0031554396264255047, 0.0007373033440671861, 0.017180629074573517, 0.4306209683418274, 0.0011428790166974068, 0.017727700993418694, 0.01323712058365345, 0.004286666866391897, 0.01373759564012289, 0.023414989933371544, 0.027665292844176292, 0.43391892313957214], [0.00862114317715168, 0.01135148387402296, 0.012981223873794079, 0.000691631983499974, 0.0003235400072298944, 0.0020609041675925255, 0.000785970943979919, 0.018089689314365387, 0.4154861271381378, 0.002915895078331232, 0.0375804640352726, 0.01098239328712225, 0.004822440445423126, 0.01784657873213291, 0.024782152846455574, 0.011576290242373943, 0.4191019833087921], [0.025518914684653282, 0.006133803632110357, 0.009012063033878803, 0.0025384153705090284, 0.0013000465696677566, 0.012946446426212788, 0.005756751634180546, 0.04848466068506241, 0.2682812213897705, 0.04943094402551651, 0.018901454284787178, 0.024830572307109833, 0.01123689766973257, 0.0640338659286499, 0.09055264294147491, 0.09320801496505737, 0.26783332228660583], [0.014500671997666359, 0.005180492997169495, 0.005493436940014362, 0.0009324002894572914, 0.0002000768727157265, 0.0024098618887364864, 0.0017877763602882624, 0.0339442640542984, 0.33759304881095886, 0.02328888699412346, 0.013789908029139042, 0.01204779651015997, 0.007757064886391163, 0.03551098331809044, 0.0496433861553669, 0.11847839504480362, 0.33744144439697266], [0.01168446708470583, 0.009222637861967087, 0.002364739775657654, 0.004237509332597256, 0.0008104023872874677, 0.0016773530514910817, 0.002601410960778594, 0.031581830233335495, 0.34230467677116394, 0.061746738851070404, 0.025163564831018448, 0.013345015235245228, 0.0035660546272993088, 0.029116347432136536, 0.023395469412207603, 0.09069269895553589, 0.34648916125297546], [0.014953400939702988, 0.010602684691548347, 0.013698993250727654, 0.004751116503030062, 0.004801769275218248, 0.007260110694915056, 0.002760824980214238, 0.02062361314892769, 0.4283122718334198, 0.011955776251852512, 0.015642190352082253, 0.009747856296598911, 0.005809553898870945, 0.007841427810490131, 0.005396663676947355, 0.00879810843616724, 0.427043616771698]]], [[[0.009784198366105556, 0.06344977021217346, 0.06350541859865189, 0.10532840341329575, 0.019043484702706337, 0.060828521847724915, 0.04589780792593956, 0.10801858454942703, 0.24758686125278473, 0.007371070794761181, 0.0020562754943966866, 0.003068702993914485, 0.001770065282471478, 0.0032568874303251505, 0.004766311030834913, 0.006450070068240166, 0.2478174865245819], [0.012747925706207752, 0.037697337567806244, 0.035048969089984894, 0.050928063690662384, 0.032982971519231796, 0.06089800223708153, 0.06137798726558685, 0.06971123814582825, 0.3180164098739624, 0.0015730548184365034, 0.0006176151218824089, 0.0009819604456424713, 0.0004689690831582993, 0.0003200812789145857, 0.0003572754212655127, 0.0007954053580760956, 0.31547674536705017], [0.020289044827222824, 0.03581579029560089, 0.03444864973425865, 0.020815229043364525, 0.01792898029088974, 0.029115784913301468, 0.020787101238965988, 0.040959130972623825, 0.38620296120643616, 0.0024387615267187357, 0.000964595761615783, 0.0016872045816853642, 0.0008631363161839545, 0.0010445145890116692, 0.0018621800700202584, 0.001427622977644205, 0.3833491802215576], [0.006655355915427208, 0.1915997862815857, 0.03431512787938118, 0.01052369736135006, 0.02027483657002449, 0.015129264444112778, 0.035484883934259415, 0.04475521668791771, 0.3216469883918762, 0.0025473006535321474, 0.0003266029816586524, 0.00013894002768211067, 0.00029300845926627517, 8.91031013452448e-05, 7.486743561457843e-05, 0.00041374441934749484, 0.3157312572002411], [0.004118661396205425, 0.08324164897203445, 0.04330205172300339, 0.06619128584861755, 0.031995534896850586, 0.014395874924957752, 0.03820759430527687, 0.024274663999676704, 0.34801867604255676, 0.0015811186749488115, 0.00024411195772700012, 0.0001614234206499532, 0.00010920059139607474, 0.00013633447815664113, 0.00019805652846116573, 0.0014219180447980762, 0.3424018323421478], [0.007169913500547409, 0.14041462540626526, 0.044219449162483215, 0.1257401555776596, 0.11478133499622345, 0.02485238015651703, 0.04211713746190071, 0.03533770889043808, 0.22608068585395813, 0.005142113659530878, 0.0007632905035279691, 0.000770245329476893, 0.0016080166678875685, 0.0005241295439191163, 0.0006482986500486732, 0.005554784554988146, 0.22427575290203094], [0.005102440714836121, 0.08522544801235199, 0.014583348296582699, 0.21162785589694977, 0.12515853345394135, 0.051443375647068024, 0.042615070939064026, 0.020999761298298836, 0.22143219411373138, 0.0012102406471967697, 0.00025780353462323546, 0.00016080736531876028, 0.00023815226450096816, 4.795687345904298e-05, 7.890781853348017e-05, 0.0008461686666123569, 0.218971848487854], [0.006187396124005318, 0.0747554674744606, 0.06622717529535294, 0.07507996261119843, 0.03612075373530388, 0.23256315290927887, 0.09893076121807098, 0.01960683986544609, 0.19426439702510834, 0.001043264172039926, 0.0001706254406599328, 0.0006140281329862773, 0.0008297772728838027, 0.00045525419409386814, 0.0004455914895515889, 0.0003260369994677603, 0.19237954914569855], [0.024467743933200836, 0.018417391926050186, 0.022621972486376762, 0.009935016743838787, 0.006936731282621622, 0.015614781528711319, 0.005365448538213968, 0.0148396585136652, 0.41056859493255615, 0.013656741008162498, 0.007858437485992908, 0.009717412292957306, 0.007288186810910702, 0.0059538655914366245, 0.005341776646673679, 0.01094656903296709, 0.41046974062919617], [0.03759179264307022, 0.005974110681563616, 0.0015596693847328424, 0.01028980128467083, 0.002490728860720992, 0.006004712078720331, 0.000806200027000159, 0.012712272815406322, 0.3938857913017273, 0.06413222849369049, 0.022870821878314018, 0.023894766345620155, 0.004525987897068262, 0.003469267161563039, 0.005853339098393917, 0.011140190064907074, 0.3927983045578003], [0.022916166111826897, 0.007795052137225866, 0.002382806269451976, 0.002217048779129982, 0.00043463564361445606, 0.0021345033310353756, 0.0009567904635332525, 0.017230048775672913, 0.2991914451122284, 0.16911499202251434, 0.026645198464393616, 0.02374105341732502, 0.0214175283908844, 0.024717751890420914, 0.04131259769201279, 0.03836309164762497, 0.29942935705184937], [0.0071457442827522755, 0.002279195236042142, 0.0003260670346207917, 0.0004371095565147698, 0.0001423008943675086, 0.00013660390686709434, 0.00023541183327324688, 0.004492998588830233, 0.1667223870754242, 0.22635170817375183, 0.06139340251684189, 0.03372678533196449, 0.03635207191109657, 0.08549913763999939, 0.03999122604727745, 0.16856907308101654, 0.16619867086410522], [0.011841129511594772, 0.005342570599168539, 0.0016491134883835912, 0.002306309062987566, 0.00027519321884028614, 0.0018119483720511198, 0.0004261615686118603, 0.006615588907152414, 0.15364013612270355, 0.09385194629430771, 0.22153621912002563, 0.06602104008197784, 0.035056423395872116, 0.061841849237680435, 0.13494563102722168, 0.04923003539443016, 0.1536087840795517], [0.007978757843375206, 0.0026990456972271204, 0.001542517333291471, 0.0008321352070197463, 0.00015852856449782848, 0.0003729863674379885, 0.00016807820065878332, 0.0006434714305214584, 0.14921028912067413, 0.10562007874250412, 0.08513916283845901, 0.15670670568943024, 0.2225346863269806, 0.04266449064016342, 0.04016302153468132, 0.03378509730100632, 0.14978085458278656], [0.008475298061966896, 0.0015436670510098338, 0.0007279440178535879, 0.0005443510599434376, 8.443139086011797e-05, 0.00047076420742087066, 9.88888496067375e-05, 0.0005164956673979759, 0.13775314390659332, 0.07110677659511566, 0.08375905454158783, 0.1144537702202797, 0.2723900377750397, 0.10427999496459961, 0.040895577520132065, 0.024877039715647697, 0.138022780418396], [0.023352667689323425, 0.007963527925312519, 0.0033872213680297136, 0.0018478332785889506, 0.0005030385800637305, 0.0026986205484718084, 0.0011642086319625378, 0.006802186369895935, 0.2550806701183319, 0.20330046117305756, 0.0661063939332962, 0.041094306856393814, 0.05341745540499687, 0.024447940289974213, 0.022258510813117027, 0.03148074075579643, 0.25509417057037354], [0.02454359456896782, 0.01837095245718956, 0.02251279354095459, 0.009905047714710236, 0.006903310772031546, 0.015575935132801533, 0.0053365156054496765, 0.01471058651804924, 0.41022977232933044, 0.01393903512507677, 0.007943134754896164, 0.009865550324320793, 0.007454370614141226, 0.006049365736544132, 0.005452387034893036, 0.011086850427091122, 0.4101208448410034]], [[0.023426394909620285, 0.09086892008781433, 0.05412374064326286, 0.04057744890451431, 0.0296955406665802, 0.3290298581123352, 0.06603242456912994, 0.025668540969491005, 0.1050044372677803, 0.07524964958429337, 0.024704841896891594, 0.006263480521738529, 0.0042268699035048485, 0.0026561543345451355, 0.006586187519133091, 0.011579404585063457, 0.10430606454610825], [0.024621548131108284, 0.038398053497076035, 0.1436786949634552, 0.003269249340519309, 0.0029172715730965137, 0.017160942777991295, 0.002876817248761654, 0.006300558336079121, 0.29066383838653564, 0.012737920507788658, 0.12349595874547958, 0.01720115914940834, 0.003269166685640812, 0.005530004855245352, 0.007470955140888691, 0.013863109983503819, 0.28654488921165466], [0.005516650155186653, 0.0022310451604425907, 0.6447200775146484, 0.0015197627944871783, 0.00022418788284994662, 0.0013377133291214705, 0.00021752827160526067, 0.0014123632572591305, 0.11988424509763718, 0.0025745059829205275, 0.049204569309949875, 0.0015075196279212832, 0.0005030538886785507, 0.007739703170955181, 0.016909180209040642, 0.025284694507718086, 0.11921317875385284], [0.013424402102828026, 0.003142555011436343, 0.08069439977407455, 0.049036744982004166, 0.018610630184412003, 0.03919357806444168, 0.011662953533232212, 0.0015985965728759766, 0.2843291461467743, 0.013888023793697357, 0.012861283496022224, 0.01952863298356533, 0.0065907444804906845, 0.026999998837709427, 0.025237450376152992, 0.11269043385982513, 0.28051042556762695], [0.003420221619307995, 0.00025893712881952524, 0.007037052419036627, 0.012030331417918205, 0.21710552275180817, 0.011932444758713245, 0.0025048949755728245, 0.00029943991103209555, 0.33892133831977844, 0.0020031831227242947, 0.0014148547779768705, 0.01591162383556366, 0.01427283976227045, 0.01989276334643364, 0.006487254519015551, 0.009423681534826756, 0.3370836675167084], [0.02035590261220932, 0.0015163960633799434, 0.023009400814771652, 0.01885882019996643, 0.022646859288215637, 0.1507120132446289, 0.005922086536884308, 0.003945509437471628, 0.2660212516784668, 0.06442612409591675, 0.008216682821512222, 0.016198374330997467, 0.019237861037254333, 0.019144710153341293, 0.01865171454846859, 0.07782933861017227, 0.2633069157600403], [0.015694277361035347, 0.002930335234850645, 0.04194282367825508, 0.012919040396809578, 0.00666051497682929, 0.040622636675834656, 0.0610898919403553, 0.0027305837720632553, 0.35911235213279724, 0.024171948432922363, 0.00694342190399766, 0.013802092522382736, 0.006761043332517147, 0.014705506153404713, 0.015210062265396118, 0.021005921065807343, 0.35369759798049927], [0.023699460551142693, 0.005310104228556156, 0.3213992416858673, 0.01682310737669468, 0.022914046421647072, 0.0522843562066555, 0.0055830152705311775, 0.02809286303818226, 0.23498646914958954, 0.01337648369371891, 0.0028448880184441805, 0.0040090568363666534, 0.0026992689818143845, 0.0044503165408968925, 0.006275787949562073, 0.023720959201455116, 0.23153062164783478], [0.008026348426938057, 0.004190546460449696, 0.015968410298228264, 0.002014709636569023, 0.003019441617652774, 0.011358496733009815, 0.002573121339082718, 0.007406445685774088, 0.4667324125766754, 0.0031410264782607555, 0.002090931637212634, 0.001405903953127563, 0.001393108512274921, 0.0014646362978965044, 0.00241012847982347, 0.0036539460998028517, 0.46315041184425354], [0.06173773109912872, 0.005219586193561554, 0.010637922212481499, 0.0069235581904649734, 0.006184763740748167, 0.05883077159523964, 0.011992666870355606, 0.008501331321895123, 0.28056904673576355, 0.254031777381897, 0.0026666794437915087, 0.005549427587538958, 0.0019293546210974455, 0.0005735139711759984, 0.0008336604223586619, 0.004465118981897831, 0.27935317158699036], [0.01389636006206274, 0.2612924575805664, 0.1891685575246811, 0.013017017394304276, 0.00388146610930562, 0.01795179955661297, 0.007501694839447737, 0.006427280139178038, 0.13973206281661987, 0.006873636040836573, 0.18422868847846985, 0.002623241161927581, 0.0009048343636095524, 0.002248573349788785, 0.004248838406056166, 0.006088587921112776, 0.13991506397724152], [0.008264562115073204, 0.0020955554209649563, 0.004778152797371149, 0.005036917049437761, 0.0038053111638873816, 0.01529700681567192, 0.005853740964084864, 0.002864048583433032, 0.39063626527786255, 0.0020188239868730307, 0.001178789883852005, 0.13836894929409027, 0.015611344948410988, 0.004985304549336433, 0.0058033945970237255, 0.007987669669091702, 0.3854142129421234], [0.008076338097453117, 0.003289994318038225, 0.012813783250749111, 0.0028527146205306053, 0.0031428243964910507, 0.040546756237745285, 0.0036880800034850836, 0.0013141152448952198, 0.39437147974967957, 0.0022148294374346733, 0.0009569390676915646, 0.006357843987643719, 0.05777463689446449, 0.03549087792634964, 0.031814076006412506, 0.0022707595489919186, 0.3930239677429199], [0.0015492504462599754, 0.0022451216354966164, 0.027323711663484573, 0.0018424221780151129, 0.0004783851618412882, 0.0038252221420407295, 0.0009323082631453872, 0.0019342771265655756, 0.38407397270202637, 0.0003855380055028945, 0.00018764693231787533, 0.0006471810047514737, 0.0022911105770617723, 0.11484184861183167, 0.07481786608695984, 0.0015381876146420836, 0.38108599185943604], [0.00311397947371006, 0.003953402396291494, 0.10373593121767044, 0.002683662809431553, 0.00041021895594894886, 0.011511394754052162, 0.0017577899852767587, 0.0016149088041856885, 0.3797663152217865, 0.0005000595701858401, 0.0001689191412879154, 0.00025194440968334675, 0.0020486365538090467, 0.04753920063376427, 0.06122308969497681, 0.00229973578825593, 0.37742090225219727], [0.008566826581954956, 0.004820035304874182, 0.10270403325557709, 0.027614807710051537, 0.010357152670621872, 0.04785694554448128, 0.007361290510743856, 0.004244815558195114, 0.3579777777194977, 0.007107240613549948, 0.001643623225390911, 0.002469724975526333, 0.002502693561837077, 0.008207248523831367, 0.01291501335799694, 0.03789015859365463, 0.3557606637477875], [0.00800420343875885, 0.004144016187638044, 0.015761403366923332, 0.001992602366954088, 0.002974899485707283, 0.011284622363746166, 0.0025480231270194054, 0.007330615539103746, 0.46702513098716736, 0.0031201334204524755, 0.0020701319444924593, 0.0013982948148623109, 0.001391572062857449, 0.0014604085590690374, 0.0024074267130345106, 0.003639474743977189, 0.46344706416130066]], [[0.0007928471313789487, 0.0010190174216404557, 0.0001585514983162284, 5.1434584747767076e-05, 7.742998423054814e-05, 5.713174687116407e-05, 1.3919206139689777e-05, 0.00010720450518419966, 0.008091758005321026, 0.4729365408420563, 0.48991313576698303, 0.001260687131434679, 0.0012585459044203162, 0.002653754549100995, 0.0013919114135205746, 0.012034980580210686, 0.00818114634603262], [0.0010029723634943366, 0.04209662228822708, 0.7135932445526123, 0.002554489765316248, 0.004366864915937185, 0.007230494171380997, 0.0012529529631137848, 0.0035684374161064625, 0.11116693913936615, 0.0003105650539509952, 0.0009245284018106759, 8.303656068164855e-05, 4.5787444832967594e-05, 0.0002466466976329684, 0.00010257070243824273, 0.00023893841716926545, 0.11121497303247452], [0.0036516403779387474, 0.0472995862364769, 0.10641839355230331, 0.004822524264454842, 0.0033394680358469486, 0.005479796323925257, 0.0005949529586359859, 0.0038098131772130728, 0.40914592146873474, 0.0005327476537786424, 0.0022035958245396614, 9.65610597631894e-05, 2.3932583644636907e-05, 0.00047764237388037145, 0.00025047536473721266, 0.0006909643416292965, 0.4111621379852295], [0.00224355049431324, 0.20634308457374573, 0.15376883745193481, 0.02267998643219471, 0.05664416030049324, 0.17337311804294586, 0.052645668387413025, 0.016855567693710327, 0.1496681421995163, 0.006643256638199091, 0.004730977118015289, 0.00032622195431031287, 0.0007639311370439827, 0.0015364665305241942, 0.0013437119778245687, 0.0009342811536043882, 0.14949901401996613], [0.00036538299173116684, 0.005143022630363703, 0.002708811778575182, 0.015038595534861088, 0.010681343264877796, 0.2885156273841858, 0.08330053091049194, 0.0021479318384081125, 0.2943871021270752, 0.00024521484738215804, 0.00019054162839893252, 0.0002420800010440871, 0.0010319185676053166, 0.00015022132720332593, 0.0004866015224251896, 0.0011610363144427538, 0.2942039668560028], [0.0019862966146320105, 0.008307765237987041, 0.007513422053307295, 0.005484171211719513, 0.0022039590403437614, 0.010158870369195938, 0.020145241171121597, 0.008998398669064045, 0.46509525179862976, 0.0007951314910314977, 0.0014751587295904756, 4.8424044507555664e-05, 0.00012909101496916264, 0.00014812868903391063, 0.0004014586447738111, 0.0013958034105598927, 0.4657135307788849], [0.0011545439483597875, 0.011793678626418114, 0.03125939145684242, 0.019059352576732635, 0.0045966277830302715, 0.5868287086486816, 0.015473531559109688, 0.009756382554769516, 0.15759997069835663, 0.0004776150162797421, 0.0008431479800492525, 0.0001769419468473643, 0.0003066942736040801, 0.00048201929894275963, 0.0004719459975603968, 0.0007038738112896681, 0.15901556611061096], [0.007597621995955706, 0.02762264385819435, 0.0015580342151224613, 0.003504459047690034, 0.0018398012034595013, 0.0010083654196932912, 0.0016443085623905063, 0.022401709109544754, 0.4108135998249054, 0.05752861872315407, 0.045575715601444244, 0.002179911360144615, 0.0007118297507986426, 0.0003898569557350129, 0.0004101578379049897, 0.010229206643998623, 0.40498408675193787], [0.015399283729493618, 0.018684647977352142, 0.014629903249442577, 0.00660094665363431, 0.004707104992121458, 0.0048784250393509865, 0.0035417857579886913, 0.009543202817440033, 0.4163462817668915, 0.031936950981616974, 0.026409320533275604, 0.004559976980090141, 0.004625579807907343, 0.004424510058015585, 0.004790178965777159, 0.012767665088176727, 0.4161543548107147], [0.0012899106368422508, 0.0014286903897300363, 0.00028151809237897396, 0.0002843741967808455, 2.6972358682542108e-05, 0.00013084612146485597, 4.491140498430468e-05, 0.0002051533228950575, 0.27967092394828796, 0.08779480308294296, 0.17805759608745575, 0.04674695059657097, 0.020709386095404625, 0.01918979547917843, 0.018726643174886703, 0.06531854718923569, 0.28009292483329773], [0.0007588337175548077, 0.0010279363486915827, 0.0025828767102211714, 8.240942406700924e-05, 1.8693173842621036e-05, 9.753202175488696e-05, 6.6001052800857e-06, 0.00011051636829506606, 0.4346608519554138, 0.005069286562502384, 0.07423696666955948, 0.015227903611958027, 0.003092620987445116, 0.010285470634698868, 0.005573331378400326, 0.0116641940549016, 0.4355039894580841], [0.0009207585244439542, 0.00025215683854185045, 0.00014215118426363915, 7.439858018187806e-05, 2.3911999960546382e-05, 0.0001456388272345066, 8.773212175583467e-05, 4.157734292675741e-05, 0.041626106947660446, 0.004591154400259256, 0.013006534427404404, 0.03127625957131386, 0.7725826501846313, 0.02847745455801487, 0.04133325815200806, 0.023614436388015747, 0.04180379584431648], [0.0006537518347613513, 0.00027108658105134964, 0.00011661239841487259, 0.00017735996516421437, 1.6529331333003938e-05, 0.0005820655496791005, 2.5977740733651444e-05, 8.661939500598237e-05, 0.07484365999698639, 0.007562749087810516, 0.005310478154569864, 0.00762539729475975, 0.057572752237319946, 0.37981534004211426, 0.3452264070510864, 0.04433475434780121, 0.07577834278345108], [0.0011331927962601185, 0.0008856852073222399, 0.0003775305231101811, 0.00017986708553507924, 2.373816641920712e-05, 0.000122232420835644, 0.00010523421224206686, 0.0001699059794191271, 0.34300947189331055, 0.004500371403992176, 0.025135058909654617, 0.01057968009263277, 0.02187531068921089, 0.015773041173815727, 0.11920908838510513, 0.11226807534694672, 0.34465259313583374], [0.001784972962923348, 0.0010175504721701145, 0.0019429970998317003, 0.0005001031677238643, 6.0668273363262415e-05, 0.0004930826253257692, 9.65116560109891e-05, 0.00031560324714519083, 0.37393417954444885, 0.005092592444270849, 0.030623409897089005, 0.011288324370980263, 0.010929844342172146, 0.03941577672958374, 0.068989597260952, 0.0736636146903038, 0.37985122203826904], [0.0009639525087550282, 0.006386091932654381, 0.0012288535945117474, 0.0006315894424915314, 0.00011385047400835901, 0.0006355810328386724, 0.0001658378168940544, 0.0002279883046867326, 0.39411845803260803, 0.0013962500961497426, 0.11110951751470566, 0.011784755624830723, 0.0014553541550412774, 0.008263815194368362, 0.014601712115108967, 0.04610944539308548, 0.4008070230484009], [0.015386379323899746, 0.01851164735853672, 0.014620572328567505, 0.006580662913620472, 0.00470785703510046, 0.004902621731162071, 0.003557579591870308, 0.009431354701519012, 0.4165700674057007, 0.03163239359855652, 0.026281578466296196, 0.004576405510306358, 0.00468110479414463, 0.004471130669116974, 0.00486260000616312, 0.012844269163906574, 0.4163818061351776]], [[0.008268628269433975, 0.03745492175221443, 0.09149684011936188, 0.02669140137732029, 0.02633247897028923, 0.011395346373319626, 0.007168611511588097, 0.03556559234857559, 0.26884135603904724, 0.025360368192195892, 0.027727726846933365, 0.03671010956168175, 0.014761500991880894, 0.03874959051609039, 0.0320102758705616, 0.04242224991321564, 0.2690429985523224], [0.016845375299453735, 0.0218306016176939, 0.036527182906866074, 0.011158578097820282, 0.009073068387806416, 0.014578185975551605, 0.0058029755018651485, 0.030473915860056877, 0.35241812467575073, 0.0281349066644907, 0.021122025325894356, 0.020940164104104042, 0.01173543743789196, 0.007091095671057701, 0.01605815440416336, 0.04283600673079491, 0.35337433218955994], [0.02414902113378048, 0.008548571728169918, 0.0028651379980146885, 0.003636774141341448, 0.0033346032723784447, 0.0073812128975987434, 0.005321365315467119, 0.012973500415682793, 0.34287354350090027, 0.00543315289542079, 0.004977128002792597, 0.0048849876038730145, 0.025981323793530464, 0.05213598906993866, 0.12927523255348206, 0.02463546395301819, 0.3415929079055786], [0.03723059967160225, 0.02151254005730152, 0.01725471392273903, 0.005822973325848579, 0.006301756948232651, 0.024294724687933922, 0.007894588634371758, 0.04295893386006355, 0.3110547661781311, 0.107973113656044, 0.004542628303170204, 0.022724678739905357, 0.0069719417952001095, 0.008445045910775661, 0.017451029270887375, 0.04614988714456558, 0.31141600012779236], [0.031034693121910095, 0.010611320845782757, 0.008594815619289875, 0.002274045255035162, 0.0001026106983772479, 0.004529307130724192, 0.0015667160041630268, 0.07144632935523987, 0.32413357496261597, 0.11960802227258682, 0.0012866504257544875, 0.06574541330337524, 0.0027275211177766323, 0.0015447484329342842, 0.005019684322178364, 0.024004632607102394, 0.32576993107795715], [0.01629139482975006, 0.006612601689994335, 0.013118643313646317, 0.005902975331991911, 0.0012208023108541965, 0.0009645412210375071, 0.0028060423210263252, 0.020595334470272064, 0.30390551686286926, 0.06789546459913254, 0.0035564410500228405, 0.12111339718103409, 0.014632150530815125, 0.009795651771128178, 0.03575066849589348, 0.0714687928557396, 0.3043694496154785], [0.01867850311100483, 0.014446166343986988, 0.02077842876315117, 0.008636676706373692, 0.002688441891223192, 0.012393290176987648, 0.0021478869020938873, 0.03494225814938545, 0.3763873875141144, 0.032709840685129166, 0.005623155739158392, 0.039324406534433365, 0.006350561510771513, 0.0029939881060272455, 0.006746789440512657, 0.03811773657798767, 0.37703457474708557], [0.02582516334950924, 0.01827569305896759, 0.010876113548874855, 0.012015820480883121, 0.014953626319766045, 0.013011423870921135, 0.007065214682370424, 0.054383695125579834, 0.3805626630783081, 0.02532600425183773, 0.0035393217112869024, 0.007039695978164673, 0.003352570114657283, 0.0032674113754183054, 0.005297438241541386, 0.03360140323638916, 0.38160696625709534], [0.05303102731704712, 0.03728470951318741, 0.048727720975875854, 0.025673650205135345, 0.021410545334219933, 0.030488714575767517, 0.020884282886981964, 0.06786485761404037, 0.23328326642513275, 0.03891906514763832, 0.039990827441215515, 0.018312886357307434, 0.020030900835990906, 0.020705249160528183, 0.033295806497335434, 0.05638739839196205, 0.23370924592018127], [0.0017501875991001725, 0.008840775117278099, 0.028043758124113083, 0.031723182648420334, 0.009798775427043438, 0.013512959703803062, 0.003650103695690632, 0.010985199362039566, 0.41752153635025024, 0.0004744687466882169, 0.0041789342649281025, 0.010179707780480385, 0.009091350249946117, 0.0059426273219287395, 0.01243901439011097, 0.01269543170928955, 0.419172078371048], [0.00284730177372694, 0.013878148049116135, 0.17281247675418854, 0.00869311485439539, 0.00299784354865551, 0.010952113196253777, 0.0032772806007415056, 0.006277928594499826, 0.33355259895324707, 0.0016168219735845923, 0.0172574482858181, 0.014700569212436676, 0.010268103331327438, 0.0166130643337965, 0.03358970955014229, 0.01717262528836727, 0.33349278569221497], [0.014402853325009346, 0.0066318204626441, 0.06104583293199539, 0.007202048320323229, 0.012211530469357967, 0.07296831160783768, 0.00637474050745368, 0.006198493298143148, 0.3520578444004059, 0.008541238494217396, 0.006529742851853371, 0.0017727972008287907, 0.009005926549434662, 0.01664128340780735, 0.03240308538079262, 0.03185691311955452, 0.35415562987327576], [0.017481131479144096, 0.011335554532706738, 0.20226339995861053, 0.005008322186768055, 0.004057300742715597, 0.04900494962930679, 0.007772776763886213, 0.0037359201814979315, 0.2660984694957733, 0.011456032283604145, 0.030969975516200066, 0.023719724267721176, 0.015175752341747284, 0.02228698693215847, 0.040218982845544815, 0.021382706239819527, 0.2680320143699646], [0.013568823225796223, 0.006216733250766993, 0.11433801800012589, 0.0025357038248330355, 0.0010122503153979778, 0.013036418706178665, 0.0015781839611008763, 0.003966239280998707, 0.35356152057647705, 0.006130673922598362, 0.019616687670350075, 0.044375985860824585, 0.028211383149027824, 0.006961803417652845, 0.014315254986286163, 0.015410322695970535, 0.35516390204429626], [0.01631595566868782, 0.0045090303756296635, 0.19948728382587433, 0.005116892978549004, 0.0019825510680675507, 0.0364498496055603, 0.002869738033041358, 0.0038624706212431192, 0.2989121377468109, 0.006110471207648516, 0.017513882368803024, 0.0305311381816864, 0.028081119060516357, 0.010026843287050724, 0.008271484635770321, 0.028830019757151604, 0.30112913250923157], [0.014537427574396133, 0.035470303148031235, 0.06111142784357071, 0.022311337292194366, 0.010467912070453167, 0.056074269115924835, 0.011992115527391434, 0.053276047110557556, 0.31310322880744934, 0.007786608301103115, 0.009195945225656033, 0.024453556165099144, 0.011921915225684643, 0.017283309251070023, 0.023421403020620346, 0.013317687436938286, 0.31427547335624695], [0.05304360017180443, 0.03713420405983925, 0.048477653414011, 0.02553393691778183, 0.02128525823354721, 0.030364230275154114, 0.020786810666322708, 0.06785456091165543, 0.23367692530155182, 0.038843583315610886, 0.039974577724933624, 0.018305344507098198, 0.020090973004698753, 0.020757785066962242, 0.03350004181265831, 0.05627121776342392, 0.2340993881225586]], [[0.015332890674471855, 0.08737398684024811, 0.13119736313819885, 0.11513181775808334, 0.08929683268070221, 0.14574450254440308, 0.015729151666164398, 0.06846041232347488, 0.1487916111946106, 0.003590339794754982, 0.002598183462396264, 0.00648346496745944, 0.005243256688117981, 0.007748070172965527, 0.004428984597325325, 0.004524675197899342, 0.1483244001865387], [0.00045611002133227885, 0.0272374264895916, 0.7365787029266357, 0.011382960714399815, 0.008532898500561714, 0.007291649002581835, 0.0002838654909282923, 0.0006219688220880926, 0.10372467339038849, 4.369181260699406e-05, 0.00014400701911654323, 9.360193507745862e-05, 0.001165196648798883, 0.0002982378355227411, 0.00020724395290017128, 0.0004113147151656449, 0.10152650624513626], [0.0010970134753733873, 0.008627325296401978, 0.0011478657834231853, 0.06937770545482635, 0.0007389226811937988, 0.001014365116134286, 0.00018403785361442715, 0.0004872368590440601, 0.46219727396965027, 2.8902964913868345e-05, 1.1730639016604982e-05, 2.594712350401096e-05, 8.167533087544143e-05, 0.0005488924216479063, 0.0003741225809790194, 0.0003166523529216647, 0.4537402093410492], [0.0013795864069834352, 0.004270108882337809, 0.004544945899397135, 0.009267534129321575, 0.508529007434845, 0.10408904403448105, 0.0029551649931818247, 0.005478258710354567, 0.1773230880498886, 0.00015470014477614313, 0.00013584447151515633, 0.00015626999083906412, 0.00012891901133116335, 0.0003881491138599813, 4.326139242039062e-05, 0.0004734944086521864, 0.18068256974220276], [0.00012416482786647975, 0.0003148867399431765, 0.010896027088165283, 0.0013689488405361772, 0.03405134752392769, 0.8216419816017151, 0.0025357746053487062, 0.0009020163561217487, 0.06360246986150742, 0.00012422488362062722, 1.7076361018553143e-06, 1.3382806173467543e-05, 0.00031805282924324274, 7.130322774173692e-05, 3.7954763683956116e-05, 0.0001722505403449759, 0.06382343173027039], [0.0034128748811781406, 0.004842598456889391, 0.006920861080288887, 0.010850788094103336, 0.008168933913111687, 0.06358261406421661, 0.2975803017616272, 0.29324543476104736, 0.15307745337486267, 0.0023303343914449215, 0.00014334356819745153, 4.2055185076605994e-06, 4.670958514907397e-05, 3.832589936791919e-05, 0.00026926500140689313, 0.0022524523083120584, 0.15323345363140106], [0.0007266945322044194, 0.0031308603938668966, 0.00010069265408674255, 0.0021271025761961937, 0.0002731928543653339, 0.0007131104357540607, 9.368578321300447e-05, 0.44086721539497375, 0.274982750415802, 0.00010711299546528608, 9.076368769456167e-06, 7.243413051583047e-07, 1.4265960999182425e-06, 7.108249064913252e-06, 2.8156011467217468e-05, 0.0014256952563300729, 0.27540552616119385], [0.00011903046106453985, 0.013572759926319122, 0.0006089909002184868, 0.00011892664042534307, 9.199198393616825e-05, 0.00032549016759730875, 0.00010943587403744459, 0.009040736593306065, 0.47148117423057556, 0.05361013859510422, 8.289861580124125e-05, 8.080041880020872e-06, 1.4870154245727463e-06, 1.324291474702477e-06, 4.2500773815845605e-06, 1.946221527759917e-05, 0.4508037865161896], [0.005189702846109867, 0.012265386991202831, 0.006382113788276911, 0.004765898920595646, 0.001068382989615202, 0.0024016504175961018, 0.0008469437016174197, 0.00228643836453557, 0.4743560254573822, 0.006803077179938555, 0.0033591068349778652, 0.002013253979384899, 0.0036491057835519314, 0.004276950843632221, 0.0035748400259763002, 0.003063627751544118, 0.4636973738670349], [0.0003162229841109365, 0.0005452186451293528, 0.00018235394963994622, 2.0276085706427693e-05, 1.4840428775642067e-05, 6.071090410841862e-06, 4.924350378132658e-06, 9.694212167232763e-06, 0.23698459565639496, 0.0097284484654665, 0.4996904134750366, 0.0031426376663148403, 0.002990666078403592, 0.0032123925630003214, 0.0007807569345459342, 0.0018054945394396782, 0.2405649721622467], [0.002815808169543743, 0.00027634910657070577, 8.259742753580213e-05, 4.025722955702804e-05, 5.677327408193378e-06, 9.242954547517002e-06, 1.3219652146290173e-06, 3.0146355129545555e-05, 0.2824788987636566, 0.003929779399186373, 0.016445059329271317, 0.25540682673454285, 0.04932299256324768, 0.08758853375911713, 0.014621732756495476, 0.0021700274664908648, 0.2847747802734375], [0.0001613196509424597, 0.00015652301954105496, 0.00022793607786297798, 9.761581168277189e-06, 1.6123145542223938e-05, 1.0778161595226265e-05, 2.1070418654289824e-07, 3.25007476931205e-06, 0.034072209149599075, 0.0010804982157424092, 0.003334064967930317, 0.001677484717220068, 0.8715766668319702, 0.03627843037247658, 0.014506389386951923, 0.0024912741500884295, 0.03439714387059212], [0.0011209776857867837, 7.069364073686302e-05, 2.443575249344576e-05, 4.715206887340173e-05, 1.1577607210710994e-06, 1.985137350857258e-05, 7.195953344307782e-08, 2.5476107111899182e-05, 0.03079245053231716, 0.003739392152056098, 0.0004390341055113822, 0.03862687945365906, 0.0012236925540491939, 0.8444976806640625, 0.021412890404462814, 0.02663004770874977, 0.031328171491622925], [0.0028630648739635944, 0.0003615134337451309, 0.0005932210478931665, 7.836609438527375e-05, 1.48615808939212e-05, 5.582963422057219e-05, 5.609221261693165e-05, 0.00017876076162792742, 0.12457794696092606, 0.0032715334091335535, 0.0009346397127956152, 0.011404628865420818, 0.010117012076079845, 0.010504492558538914, 0.4387831389904022, 0.27237674593925476, 0.1238282173871994], [0.0020121426787227392, 0.0004418434400577098, 0.0004007595998700708, 7.266362081281841e-05, 1.1482536137918942e-05, 3.289573942311108e-05, 7.671415914956015e-06, 0.00011622636520769447, 0.27430617809295654, 0.01101713627576828, 0.0035365212243050337, 0.0018025655299425125, 0.0013382205506786704, 0.04214424267411232, 0.025255758315324783, 0.36160311102867126, 0.2759005129337311], [6.147086241981015e-05, 7.92171704233624e-05, 6.8173344516253565e-06, 3.0592286748287734e-06, 1.7755475028025103e-06, 4.146075411881611e-07, 2.066401449951627e-08, 3.991208359366283e-06, 0.4962970018386841, 0.0004623720597010106, 5.322854485712014e-05, 6.72201258566929e-06, 1.5004201259216643e-06, 4.483361408347264e-05, 9.870579378912225e-05, 0.0017888223519548774, 0.5010899901390076], [0.005202671512961388, 0.012121658772230148, 0.006360610015690327, 0.004695909563452005, 0.0010616891086101532, 0.0023953637573868036, 0.0008446436258964241, 0.00224735913798213, 0.47433656454086304, 0.006857879459857941, 0.0033710896968841553, 0.002047613961622119, 0.003722872119396925, 0.0043522813357412815, 0.0036460082046687603, 0.003080519149079919, 0.46365535259246826]], [[0.0034775647800415754, 0.03159920871257782, 0.05590981990098953, 0.09823749214410782, 0.10339411348104477, 0.07069417834281921, 0.005476534832268953, 0.06776495277881622, 0.2793913185596466, 0.00024863501312211156, 0.0002154050162062049, 0.0005617032875306904, 0.0003246032865718007, 0.000404341088142246, 0.0003020506410393864, 0.002176842885091901, 0.27982115745544434], [0.008573872037231922, 0.05241953954100609, 0.07574405521154404, 0.13590601086616516, 0.09709564596414566, 0.0661124438047409, 0.021933045238256454, 0.2839035391807556, 0.107901930809021, 0.008241520263254642, 0.012359398417174816, 0.0014585974859073758, 0.0010023469803854823, 0.0014763358049094677, 0.0011748215183615685, 0.01733115129172802, 0.1073656752705574], [0.019055355340242386, 0.07649022340774536, 0.01817990653216839, 0.13498955965042114, 0.05024317279458046, 0.019877104088664055, 0.011236602440476418, 0.19218626618385315, 0.21583965420722961, 0.003534552874043584, 0.02421685680747032, 0.0010112921008840203, 0.0005394059116952121, 0.0008861830574460328, 0.0012040042784065008, 0.014476785436272621, 0.21603302657604218], [0.004294311162084341, 0.013928457163274288, 0.01173633337020874, 0.005180185195058584, 0.06110323593020439, 0.04316576197743416, 0.07968101650476456, 0.4290054440498352, 0.16713520884513855, 0.010588867589831352, 0.00045926665188744664, 0.0007760879234410822, 0.0027186928782612085, 0.0006557187880389392, 0.0006137004820629954, 0.00283538899384439, 0.16612239181995392], [0.0016497024334967136, 0.022838836535811424, 0.006187095306813717, 0.00518178241327405, 0.009203464724123478, 0.03367726132273674, 0.02489609085023403, 0.27488264441490173, 0.3074115514755249, 0.005414559505879879, 0.00029026262927800417, 0.0002940870472230017, 0.0005888287560082972, 0.0002710361732169986, 0.0003273374168202281, 0.001962077571079135, 0.3049234449863434], [0.0061516608111560345, 0.020987696945667267, 0.007116274442523718, 0.011045906692743301, 0.01160528976470232, 0.017344776540994644, 0.01732688955962658, 0.30683523416519165, 0.2953673005104065, 0.007297547068446875, 0.0008926233276724815, 0.00045485360897146165, 0.000581452390179038, 0.00028437949367798865, 0.0002766584511846304, 0.0019043647916987538, 0.2945271134376526], [0.002840831410139799, 0.015938006341457367, 0.001819100696593523, 0.009596051648259163, 0.019610881805419922, 0.023622745648026466, 0.025773910805583, 0.2889944612979889, 0.3031492233276367, 0.004943017847836018, 0.0006686780252493918, 0.00047086767153814435, 0.0004358016885817051, 0.0003125704824924469, 0.0002133495727321133, 0.0013570489827543497, 0.30025342106819153], [0.00299728661775589, 0.016334213316440582, 0.006849631667137146, 0.007513015065342188, 0.01134041603654623, 0.008366581052541733, 0.0017930356552824378, 0.020179539918899536, 0.45790374279022217, 0.001626592711545527, 0.0017355451127514243, 0.0035774908028542995, 0.0018636470194905996, 0.0008732988499104977, 0.0007912074215710163, 0.0026463426183909178, 0.4536086320877075], [0.010281422175467014, 0.013918614946305752, 0.008130177855491638, 0.009474700316786766, 0.006027864292263985, 0.00677644694224, 0.005115867126733065, 0.023688988760113716, 0.4229169189929962, 0.009497158229351044, 0.009117139503359795, 0.007020134013146162, 0.007555877789855003, 0.0046909274533391, 0.00682138791307807, 0.028370724990963936, 0.4205957353115082], [0.0042145587503910065, 0.0010441363556310534, 0.0006377632962539792, 0.0011667822254821658, 0.0010258278343826532, 0.0005677206791006029, 3.2791085686767474e-05, 0.0011144705349579453, 0.2470298409461975, 0.03610122203826904, 0.04339418560266495, 0.09156223386526108, 0.041395701467990875, 0.0786336362361908, 0.06773170083761215, 0.13311634957790375, 0.25123104453086853], [0.0034249979071319103, 0.000506819284055382, 0.00038873654557392, 0.00021361271501518786, 0.00014307523088064045, 0.00011555873788893223, 1.228543624165468e-05, 0.001233634422533214, 0.24699576199054718, 0.026036961004137993, 0.06679626554250717, 0.04954139515757561, 0.030739396810531616, 0.0409163236618042, 0.04544500634074211, 0.2383892685174942, 0.24910098314285278], [0.0035930986050516367, 0.000839382701087743, 0.00038004014641046524, 0.00031339217093773186, 0.0003435770922806114, 0.0002344125387025997, 4.8426983994431794e-05, 0.0013733734376728535, 0.28140950202941895, 0.059839677065610886, 0.007820780389010906, 0.017975620925426483, 0.03606802225112915, 0.10146521776914597, 0.05773484706878662, 0.1469259262084961, 0.283634752035141], [0.008248011581599712, 0.001164585235528648, 0.000787003489676863, 0.0013185007264837623, 0.0005290344706736505, 0.0005944612203165889, 0.00019232532940804958, 0.003563093952834606, 0.21334154903888702, 0.055123236030340195, 0.0065027326345443726, 0.014273758046329021, 0.027189431712031364, 0.13482527434825897, 0.1495932787656784, 0.1668870896100998, 0.21586664021015167], [0.008838209323585033, 0.0009578358149155974, 0.0006026042974554002, 0.0005058144452050328, 0.0003895729314535856, 0.00021828866738360375, 9.7125448519364e-05, 0.0036123190075159073, 0.31504592299461365, 0.03376302495598793, 0.014995087869465351, 0.013953003101050854, 0.02050885744392872, 0.025464463979005814, 0.05557874217629433, 0.1891227662563324, 0.3163464069366455], [0.009858655743300915, 0.0006366753368638456, 0.0008422978571616113, 0.0005318766343407333, 0.00026757846353575587, 0.00014633627142757177, 4.972214446752332e-05, 0.0026745321229100227, 0.3385658860206604, 0.04986807703971863, 0.011264432221651077, 0.008093265816569328, 0.011924004182219505, 0.02401355840265751, 0.032612886279821396, 0.16846559941768646, 0.34018462896347046], [0.001805409207008779, 0.0008551637874916196, 0.0003144161310046911, 0.00035307041252963245, 0.0002351838193135336, 0.0002557503175921738, 6.508798833237961e-05, 0.0007884406368248165, 0.44601312279701233, 0.017261018976569176, 0.00692727928981185, 0.007832877337932587, 0.0062919314950704575, 0.009370478801429272, 0.010679401457309723, 0.043872933834791183, 0.4470784068107605], [0.010171118192374706, 0.013675413094460964, 0.007990268059074879, 0.009264682419598103, 0.005918261595070362, 0.006664508022367954, 0.005044593475759029, 0.02332248166203499, 0.4234662353992462, 0.009536954574286938, 0.009077874012291431, 0.0070459372363984585, 0.007624299731105566, 0.0047212266363203526, 0.006855986081063747, 0.028470631688833237, 0.42114946246147156]], [[0.004887207876890898, 0.09218461811542511, 0.15319420397281647, 0.07867231220006943, 0.058687757700681686, 0.04031192138791084, 0.02903556078672409, 0.0410614088177681, 0.23716753721237183, 0.007121799048036337, 0.008981598541140556, 0.002165687968954444, 0.0014122417196631432, 0.002105581806972623, 0.0015918848803266883, 0.0053741117008030415, 0.23604467511177063], [0.009231239557266235, 0.1236560270190239, 0.022629527375102043, 0.05002673715353012, 0.037872832268476486, 0.03985787183046341, 0.02874763123691082, 0.28249600529670715, 0.18674787878990173, 0.0075362492352724075, 0.016184628009796143, 0.0008745047962293029, 0.0021673243027180433, 0.0008553347433917224, 0.0008103384752757847, 0.003815885866060853, 0.18649008870124817], [0.01404890138655901, 0.10284174233675003, 0.08528555184602737, 0.04372251406311989, 0.03245510160923004, 0.040445420891046524, 0.02477218210697174, 0.06268306076526642, 0.2827574908733368, 0.0035818982869386673, 0.011300148442387581, 0.0008870619931258261, 0.0033040109556168318, 0.0023080918472260237, 0.0026857848279178143, 0.005545157007873058, 0.2813759744167328], [0.006038513965904713, 0.03949063643813133, 0.005797176621854305, 0.09925459325313568, 0.02386895939707756, 0.032976455986499786, 0.017759665846824646, 0.18907178938388824, 0.2833767831325531, 0.006219392642378807, 0.006231232546269894, 0.0006101291510276496, 0.00012717396020889282, 0.0005338769406080246, 0.0003746833826880902, 0.0062690912745893, 0.2819998562335968], [0.002521602204069495, 0.016350949183106422, 0.0033416952937841415, 0.03995287045836449, 0.07000948488712311, 0.02433883026242256, 0.01780638098716736, 0.044615235179662704, 0.38533449172973633, 0.0032739436719566584, 0.0008054864592850208, 0.006840225774794817, 0.00040076259756460786, 8.500029071001336e-05, 4.2904430301859975e-05, 0.0009749686578288674, 0.38330528140068054], [0.005210545379668474, 0.01654096134006977, 0.018878497183322906, 0.03578563034534454, 0.07948151230812073, 0.04479643702507019, 0.030459219589829445, 0.03408002853393555, 0.35390305519104004, 0.0031239681411534548, 0.0012768832966685295, 0.01191434171050787, 0.004412607755511999, 0.0024894692469388247, 0.0011454205960035324, 0.0024682427756488323, 0.3540332019329071], [0.0027643081266433, 0.014556143432855606, 0.008377637714147568, 0.02064206823706627, 0.033564548939466476, 0.03545372560620308, 0.05153476819396019, 0.06944683939218521, 0.3785746693611145, 0.002259686589241028, 0.0011002124520018697, 0.0008007656433619559, 0.0007070419378578663, 0.00016003272321540862, 0.00033185811480507255, 0.004071988631039858, 0.3756536543369293], [0.009665495716035366, 0.02650030516088009, 0.018499763682484627, 0.02206851914525032, 0.015454926528036594, 0.00791473314166069, 0.010234802030026913, 0.039958685636520386, 0.4194757342338562, 0.00378127908334136, 0.0016167000867426395, 0.0009473819518461823, 0.0005677852896042168, 0.0003473362885415554, 0.0007301612640731037, 0.007014446426182985, 0.41522181034088135], [0.024570448324084282, 0.019677545875310898, 0.017218880355358124, 0.013285048305988312, 0.008420281112194061, 0.01549629494547844, 0.005629510153084993, 0.01922103762626648, 0.39717188477516174, 0.013577992096543312, 0.016583584249019623, 0.007222366519272327, 0.005691088270395994, 0.010249377228319645, 0.007742955815047026, 0.020735086873173714, 0.3975064754486084], [0.04220651835203171, 0.002967719454318285, 0.0013663778081536293, 0.012281054630875587, 0.0016574827022850513, 0.004034803248941898, 0.0004788103105966002, 0.009097910486161709, 0.3218281865119934, 0.09642675518989563, 0.019853629171848297, 0.017431534826755524, 0.003854323411360383, 0.01840837113559246, 0.03803499415516853, 0.08679964393377304, 0.3232719302177429], [0.07389518618583679, 0.02702295035123825, 0.00906301662325859, 0.006894672755151987, 0.0012193075381219387, 0.0018576144939288497, 0.0005177877028472722, 0.004382263869047165, 0.20492593944072723, 0.04272201657295227, 0.2199498564004898, 0.01852991059422493, 0.03315722197294235, 0.047228626906871796, 0.04824305325746536, 0.05503121763467789, 0.20535928010940552], [0.036650121212005615, 0.0035245295148342848, 0.0021447516046464443, 0.005979917943477631, 0.007065457291901112, 0.006401651073247194, 0.0012935495469719172, 0.0033250292763113976, 0.2875789999961853, 0.06084888055920601, 0.03639991581439972, 0.08477707207202911, 0.042717210948467255, 0.05288488045334816, 0.03312809392809868, 0.046427514404058456, 0.28885242342948914], [0.023842820897698402, 0.0061490521766245365, 0.005258009769022465, 0.0035124272108078003, 0.0053131962195038795, 0.018536686897277832, 0.0030191775877028704, 0.005316915921866894, 0.2628737986087799, 0.07341355830430984, 0.07603912800550461, 0.07556675374507904, 0.044206514954566956, 0.0389987975358963, 0.050193026661872864, 0.04326396808028221, 0.2644961476325989], [0.034894365817308426, 0.002716735005378723, 0.0049328734166920185, 0.004232902079820633, 0.0011289374670013785, 0.007285014260560274, 0.001031046500429511, 0.002013083314523101, 0.3236958384513855, 0.03377455845475197, 0.049055930227041245, 0.03724876791238785, 0.029088081791996956, 0.03194654360413551, 0.057522960007190704, 0.05186576768755913, 0.32756659388542175], [0.03478550165891647, 0.002006437862291932, 0.003205270040780306, 0.001726489164866507, 0.00032062374521046877, 0.0034780981950461864, 0.0008909434545785189, 0.0019548924174159765, 0.33229196071624756, 0.020736699923872948, 0.05146470293402672, 0.014043686911463737, 0.01939854770898819, 0.05233379080891609, 0.06514052301645279, 0.061929140239953995, 0.3342926800251007], [0.01941808871924877, 0.003352021798491478, 0.001101992791518569, 0.007002298254519701, 0.0003007906780112535, 0.0019097430631518364, 0.001869277679361403, 0.006612168624997139, 0.3788433372974396, 0.014932313933968544, 0.02211517095565796, 0.004549604374915361, 0.001707464107312262, 0.003550103632733226, 0.025039352476596832, 0.12980656325817108, 0.37788963317871094], [0.02468899078667164, 0.019475648179650307, 0.01713993400335312, 0.013175126165151596, 0.008375738747417927, 0.015332572162151337, 0.005559501703828573, 0.01896260306239128, 0.3974204659461975, 0.013591830618679523, 0.016566835343837738, 0.007298782467842102, 0.00572617631405592, 0.010327349416911602, 0.007790754083544016, 0.020805934444069862, 0.397761732339859]], [[0.002128626685589552, 0.0001650748454267159, 4.5277676690602675e-05, 0.00023853186576161534, 3.4295742807444185e-05, 4.8937235987978056e-05, 2.1546569769270718e-05, 0.00044212714419700205, 0.01773514598608017, 0.9070485234260559, 0.012381895445287228, 0.0010898754699155688, 0.0020974017679691315, 0.003340748604387045, 0.0028547111432999372, 0.03231913223862648, 0.018008200451731682], [0.017532993108034134, 0.02404000796377659, 0.022591181099414825, 0.17755717039108276, 0.1322290599346161, 0.11881161481142044, 0.025408482179045677, 0.0972733125090599, 0.16660676896572113, 0.0031857462599873543, 0.012833202257752419, 0.008590567857027054, 0.007573004812002182, 0.0054169874638319016, 0.0023101670667529106, 0.01047569327056408, 0.16756410896778107], [0.015672365203499794, 0.01221366785466671, 0.024227742105722427, 0.010929143987596035, 0.010850447230041027, 0.03210141137242317, 0.0034414620604366064, 0.01649285852909088, 0.4273480772972107, 0.0016216645017266273, 0.0023261969909071922, 0.0015799971297383308, 0.0031087459065020084, 0.003981929738074541, 0.002801507944241166, 0.005657135043293238, 0.42564547061920166], [0.004369066096842289, 0.009990341030061245, 0.0031546952668577433, 0.01742328144609928, 0.13566173613071442, 0.11935246735811234, 0.0863148421049118, 0.0766659528017044, 0.25982850790023804, 0.01487801130861044, 0.002321388339623809, 0.0018796907970681787, 0.002045274944975972, 0.002377577591687441, 0.0010308694327250123, 0.002976121613755822, 0.25973016023635864], [0.001658593537285924, 0.010550912469625473, 0.004066081717610359, 0.016361169517040253, 0.06585894525051117, 0.08938878774642944, 0.04111625254154205, 0.029496224597096443, 0.36590638756752014, 0.002836958970874548, 0.0027977772988379, 0.0005122866132296622, 0.0007054119487293065, 0.0004253517254255712, 0.0004300023429095745, 0.0018425952875986695, 0.3660461902618408], [0.009245432913303375, 0.02254329062998295, 0.007270926143974066, 0.009432904422283173, 0.014281123876571655, 0.028561009094119072, 0.008832152932882309, 0.04768485203385353, 0.4108608365058899, 0.00856798980385065, 0.006119867321103811, 0.002005388494580984, 0.005063846707344055, 0.0014947752933949232, 0.001158251310698688, 0.003853730857372284, 0.4130237102508545], [0.0066557084210217, 0.03205523267388344, 0.009396317414939404, 0.035940494388341904, 0.13497395813465118, 0.1119065061211586, 0.04104582965373993, 0.06691551953554153, 0.26584550738334656, 0.013496950268745422, 0.0051397597417235374, 0.003169870935380459, 0.0027979668229818344, 0.0006697298958897591, 0.0006810688646510243, 0.0035471816081553698, 0.2657623589038849], [0.04367454722523689, 0.030709803104400635, 0.016729312017560005, 0.01720341108739376, 0.00866479892283678, 0.008728940039873123, 0.005692319944500923, 0.03621846064925194, 0.2991501986980438, 0.1713738888502121, 0.02975728176534176, 0.011335433460772038, 0.005311070941388607, 0.0026588791515678167, 0.0025084898807108402, 0.010416730307042599, 0.2998664081096649], [0.018770838156342506, 0.01709742099046707, 0.015042035840451717, 0.0079502509906888, 0.004236956592649221, 0.00667175417765975, 0.003529805690050125, 0.009282759390771389, 0.38503390550613403, 0.048978179693222046, 0.012677504681050777, 0.012153059244155884, 0.012410905212163925, 0.018826885148882866, 0.012641770765185356, 0.029373768717050552, 0.38532206416130066], [0.007248852401971817, 0.0006536538130603731, 0.00027366416179575026, 0.0010001006303355098, 0.0004254161030985415, 0.0003303191333543509, 6.740252138115466e-05, 0.0005658965674228966, 0.20623686909675598, 0.07669994980096817, 0.036322467029094696, 0.17617207765579224, 0.06659115850925446, 0.08317657560110092, 0.029041403904557228, 0.10588031262159348, 0.20931388437747955], [0.007227039895951748, 0.0008173251408152282, 0.0006482942844741046, 0.00023533531930297613, 0.00015515927225351334, 0.00033517213887535036, 5.904723366256803e-05, 0.0008556207176297903, 0.23546801507472992, 0.029780752956867218, 0.04066469147801399, 0.06829444319009781, 0.1393667608499527, 0.11184526979923248, 0.05083135515451431, 0.07527793943881989, 0.23813778162002563], [0.0020861823577433825, 0.0005855682538822293, 0.0002817694912664592, 0.0002902026171796024, 0.0008734660805203021, 0.0004221069975756109, 0.00010047149407910183, 0.0005499849794432521, 0.1790439933538437, 0.012791124172508717, 0.031504470854997635, 0.04601998254656792, 0.1111421138048172, 0.18906612694263458, 0.0766419917345047, 0.16815905272960663, 0.18044136464595795], [0.002612813375890255, 0.0009280943777412176, 0.0006409710622392595, 0.0012536129215732217, 0.0016723297303542495, 0.001090942183509469, 0.00018335638742428273, 0.0005617794231511652, 0.07714205980300903, 0.01918867975473404, 0.023990241810679436, 0.1229245737195015, 0.09795556217432022, 0.3478703498840332, 0.1517382562160492, 0.07199549674987793, 0.07825086265802383], [0.018478814512491226, 0.0011746564414352179, 0.0015585775254294276, 0.000332654919475317, 0.0003404796589165926, 0.0008957167738117278, 0.00015863262524362653, 0.0010032805148512125, 0.2193526327610016, 0.008870132267475128, 0.021755710244178772, 0.053611453622579575, 0.13596691191196442, 0.09854352474212646, 0.1066683828830719, 0.10902105271816254, 0.22226744890213013], [0.01483730599284172, 0.0006593500729650259, 0.0008523913566023111, 0.00026163633447140455, 0.0007682826835662127, 0.0011232589604333043, 0.00022558816999662668, 0.0007851230911910534, 0.24282337725162506, 0.012469442561268806, 0.013273941352963448, 0.0535944402217865, 0.15776245296001434, 0.1544434130191803, 0.04526647925376892, 0.054500918835401535, 0.24635261297225952], [0.008819248527288437, 0.0011423503747209907, 0.0020832931622862816, 0.0010823191842064261, 0.0007126519922167063, 0.0011981941061094403, 0.0009082540054805577, 0.0005889273015782237, 0.336907297372818, 0.03445626050233841, 0.02366233803331852, 0.06282828748226166, 0.055039532482624054, 0.03904608264565468, 0.057980407029390335, 0.03356192633509636, 0.3399827480316162], [0.0186923835426569, 0.01690245233476162, 0.014929926954209805, 0.007862180471420288, 0.0042130774818360806, 0.006667010486125946, 0.003520797472447157, 0.009226231835782528, 0.38489478826522827, 0.049256760627031326, 0.012612680904567242, 0.012188095599412918, 0.012523261830210686, 0.0189913772046566, 0.012764660641551018, 0.029581010341644287, 0.38517332077026367]], [[0.0010247679892927408, 0.005229088943451643, 0.0010495471069589257, 0.0010058552725240588, 0.001038134447298944, 0.0009390295017510653, 0.0005392783787101507, 0.5504570007324219, 0.21954546868801117, 0.00029976683435961604, 0.00021563368500210345, 0.00016625561693217605, 5.6110340665327385e-05, 7.001328776823357e-05, 3.409140117582865e-05, 0.00012891496589872986, 0.21820102632045746], [0.0012778689851984382, 0.009162486530840397, 0.0328250452876091, 0.003567345906049013, 0.002338143065571785, 0.0036760936491191387, 0.000227054872084409, 0.0017234844854101539, 0.4731438159942627, 0.00040190800791606307, 0.0002828743017744273, 0.00043458875734359026, 0.00016116838378366083, 0.0001923443196574226, 0.00015386042650789022, 0.0013821901520714164, 0.4690496325492859], [0.0022763442248106003, 0.00740745710209012, 0.0025567414704710245, 0.011181683279573917, 0.000770330720115453, 0.001676621614024043, 0.0004511750303208828, 0.00041692942613735795, 0.48413601517677307, 9.840984421316534e-05, 0.00027428523753769696, 0.00015854492085054517, 4.828941746382043e-05, 0.001816609757952392, 0.0006966443615965545, 0.0008187078638002276, 0.48521530628204346], [0.0011705560609698296, 0.008067402988672256, 0.0026227105408906937, 0.0049263667315244675, 0.09535650908946991, 0.021231994032859802, 0.0010216492228209972, 0.003180760657414794, 0.4285867214202881, 8.057921513682231e-05, 0.0004226982709951699, 0.00014216330600902438, 0.00010825470963027328, 0.0002754598972387612, 0.00010117785859620199, 0.0005521111306734383, 0.43215274810791016], [0.0003494688426144421, 0.0019008400849997997, 0.0022555068135261536, 0.001176475896500051, 0.06195712462067604, 0.22238466143608093, 0.00451246602460742, 0.0016097957268357277, 0.35109052062034607, 0.00011170908692292869, 6.849321653135121e-05, 0.0002079346013488248, 0.0006750866887159646, 0.00030630803667008877, 0.0001665297313593328, 0.00023527316807303578, 0.35099175572395325], [0.0017486204160377383, 0.002781594404950738, 0.0014616771368309855, 0.0038021630607545376, 0.0022196206264197826, 0.032525621354579926, 0.21113842725753784, 0.027756614610552788, 0.35746777057647705, 0.000316612800816074, 0.00024039334675762802, 6.83173057041131e-05, 4.879559492110275e-05, 9.615962335374206e-05, 0.000509117788169533, 0.001208844012580812, 0.3566097021102905], [0.0004453497240319848, 0.001446605776436627, 5.3005853260401636e-05, 0.000581208209041506, 0.000476109329611063, 0.00357592711225152, 0.0007324761827476323, 0.04861157760024071, 0.4700387120246887, 8.546111348550767e-05, 1.569770938658621e-05, 1.3062812286079861e-05, 4.503134732658509e-06, 8.778869414527435e-06, 2.3977501768968068e-05, 0.000676079245749861, 0.473211407661438], [0.0003688672441057861, 0.005001384764909744, 0.0007465973030775785, 0.00025294339866377413, 9.366084850626066e-05, 0.0004360731691122055, 0.0001310702064074576, 0.017705680802464485, 0.4902704060077667, 0.01108487043529749, 0.0012696747435256839, 1.6961041183094494e-05, 1.606821024324745e-05, 2.6223893655696884e-05, 4.410685141920112e-05, 0.0007321340963244438, 0.47180330753326416], [0.01662318967282772, 0.02117673121392727, 0.006367746740579605, 0.007473534904420376, 0.002645942848175764, 0.004686752799898386, 0.0022847596555948257, 0.008850357495248318, 0.4445846974849701, 0.012698285281658173, 0.007260583806782961, 0.004748089704662561, 0.002695214468985796, 0.004964962601661682, 0.0060354857705533504, 0.007824470289051533, 0.439079225063324], [0.001039639231748879, 0.00066462840186432, 0.0003141103661619127, 0.0003110688121523708, 5.037196024204604e-05, 5.567113112192601e-05, 6.031482917023823e-05, 0.00020879422663711011, 0.4536387622356415, 0.008490917272865772, 0.06578566879034042, 0.004481554962694645, 0.0007164674461819232, 0.002962316619232297, 0.0015529401134699583, 0.0031631551682949066, 0.4565037190914154], [0.005417697597295046, 0.001244330545887351, 0.00045445087016560137, 0.00025911355623975396, 7.74667933001183e-05, 7.100872608134523e-05, 3.109538965873071e-06, 0.0002748302067629993, 0.45596230030059814, 0.001998456194996834, 0.02770964428782463, 0.024129144847393036, 0.001417644089087844, 0.013193752616643906, 0.0018762232502922416, 0.0027496733237057924, 0.4631612002849579], [0.0005341338110156357, 0.0005509090260602534, 0.00014135749370325357, 6.147487147245556e-05, 0.000654037925414741, 0.0001497407502029091, 9.764014976099133e-06, 5.7867619034368545e-05, 0.15545834600925446, 0.000894496391993016, 0.002201249124482274, 0.042716607451438904, 0.6323442459106445, 0.006296771578490734, 0.0034781070426106453, 0.0004351684474386275, 0.15401571989059448], [0.00589332077652216, 0.001838227966800332, 0.00035328068770468235, 0.0008550429483875632, 0.00031401694286614656, 0.0009424583404324949, 2.2615948182647116e-05, 0.0007348060607910156, 0.3383333086967468, 0.0018929222133010626, 0.004326787311583757, 0.028116373345255852, 0.0023997006937861443, 0.2180381417274475, 0.012924258597195148, 0.035915032029151917, 0.3470996618270874], [0.003046461148187518, 0.0006254838081076741, 0.00031666524591855705, 0.0002944391162600368, 7.619494863320142e-05, 0.00042745916289277375, 0.0008550071506761014, 0.00016449196846224368, 0.434641033411026, 0.0009253900498151779, 0.000537925458047539, 0.007318825460970402, 0.0019181403331458569, 0.011391165666282177, 0.08509541302919388, 0.01205976027995348, 0.44030600786209106], [0.004372192081063986, 0.0008403134997934103, 0.00048056451487354934, 0.0006669890717603266, 0.00011491409532027319, 0.00020409106218721718, 0.0002397648204350844, 0.0005446789436973631, 0.44790083169937134, 0.0025964793749153614, 0.0016089759301394224, 0.0016555238980799913, 0.0009669976425357163, 0.006223927717655897, 0.011356275528669357, 0.06944501399993896, 0.45078244805336], [0.0005076297675259411, 0.0003180759958922863, 0.00014328464749269187, 4.1302351746708155e-05, 6.657034828094766e-05, 7.083241507643834e-05, 3.6509957226371625e-06, 0.00012765530846081674, 0.48913514614105225, 0.0006058869184926152, 0.0013564061373472214, 9.543503983877599e-05, 1.8725990230450407e-05, 0.0002683386264834553, 0.0001432435237802565, 0.009009743109345436, 0.498088002204895], [0.016727419570088387, 0.021148066967725754, 0.006418176926672459, 0.00743089010939002, 0.002662388375028968, 0.004726768005639315, 0.0022881985642015934, 0.00873578991740942, 0.4442789554595947, 0.012830240651965141, 0.007379855029284954, 0.004797589965164661, 0.0027426090091466904, 0.00507731456309557, 0.006111932452768087, 0.007871641777455807, 0.4387722313404083]], [[0.004602161236107349, 0.0025023785419762135, 0.0013971495209261775, 0.001910419319756329, 0.0006659245700575411, 0.0016302717849612236, 0.00043538844329304993, 0.0019634782802313566, 0.46796220541000366, 0.0066135600209236145, 0.009582077153027058, 0.007155739236623049, 0.0041506486013531685, 0.006435934454202652, 0.00901520624756813, 0.005004014819860458, 0.46897345781326294], [0.017191050574183464, 0.016913849860429764, 0.0344238206744194, 0.02109345607459545, 0.008878347463905811, 0.006207023281604052, 0.006159850396215916, 0.015799345448613167, 0.4227338135242462, 0.0017972465138882399, 0.004773606080561876, 0.001033432548865676, 0.0009794686920940876, 0.001003576209768653, 0.004898270592093468, 0.011695140972733498, 0.42441868782043457], [0.008392194285988808, 0.08104880154132843, 0.01639089733362198, 0.006375494878739119, 0.013459350913763046, 0.0038444167003035545, 0.0007482392829842865, 0.003799224039539695, 0.42443859577178955, 0.0011884078849107027, 0.002815657528117299, 0.004419669043272734, 0.0014225720660760999, 0.0013864398933947086, 0.0025226864963769913, 0.0023590491618961096, 0.42538824677467346], [0.001486602588556707, 0.0023683635517954826, 0.011529610492289066, 0.007295703049749136, 0.0021177884191274643, 0.0013771061785519123, 0.0008855614578351378, 0.0035826507955789566, 0.48522916436195374, 0.00017089073662646115, 0.00014168610505294055, 4.951690061716363e-05, 0.00018147750233765692, 0.00024248930276371539, 0.0006021489971317351, 9.054239490069449e-05, 0.4826485812664032], [0.0012847722973674536, 0.00261834729462862, 0.010125018656253815, 0.056709691882133484, 0.005156891420483589, 0.005446788854897022, 0.001008740160614252, 0.002050968585535884, 0.45814934372901917, 0.00010242780990665779, 0.00015250947035383433, 6.70484805596061e-05, 7.06777791492641e-05, 5.0836366426665336e-05, 0.00021239288616925478, 0.0011829208815470338, 0.4556106626987457], [0.002733484609052539, 0.006255648098886013, 0.008446780033409595, 0.010157633572816849, 0.03459753096103668, 0.005892027635127306, 0.0007083110976964235, 0.0033653967548161745, 0.4613305628299713, 0.00016709024203009903, 0.0002751776482909918, 0.00021413154900074005, 0.0001541209639981389, 0.00013619572564493865, 0.00023766029335092753, 0.0018110321834683418, 0.46351704001426697], [0.0028857793658971786, 0.007232632488012314, 0.007882855832576752, 0.05577976256608963, 0.04952952638268471, 0.02531002089381218, 0.0037053029518574476, 0.01959269307553768, 0.4113808870315552, 0.0001758130529196933, 0.00022426406212616712, 4.656359305954538e-05, 0.00011739401088561863, 0.0002498358371667564, 0.00044342526234686375, 0.0034575778990983963, 0.41198569536209106], [0.0034128515981137753, 0.003939729183912277, 0.003936275839805603, 0.010643941350281239, 0.0017725180368870497, 0.01996697299182415, 0.04185958579182625, 0.09607525169849396, 0.4100092351436615, 0.0002560635039117187, 0.00019517939654178917, 5.081154085928574e-05, 0.0004636063240468502, 0.00022052621352486312, 0.0014667102368548512, 0.001228218898177147, 0.4045025408267975], [0.024587204679846764, 0.010375452227890491, 0.012562116608023643, 0.008037853054702282, 0.005945245269685984, 0.009264680556952953, 0.007508115377277136, 0.011149978265166283, 0.41665399074554443, 0.007268840912729502, 0.013528822921216488, 0.006114609073847532, 0.009252402931451797, 0.010822935961186886, 0.016326000913977623, 0.011976811103522778, 0.4186249375343323], [0.0050188470631837845, 0.0002915015793405473, 0.00023480033269152045, 0.0006145444931462407, 0.00025124227977357805, 0.00018362949776928872, 0.00015460331633221358, 0.005477811209857464, 0.4828645884990692, 0.003675277577713132, 0.001866189413703978, 0.001357611850835383, 0.00043765248847194016, 0.0006097626173868775, 0.0014317381428554654, 0.011709474958479404, 0.4838205873966217], [0.006460617296397686, 0.0012748385779559612, 0.00016554942703805864, 0.00031482777558267117, 0.00018507674394641072, 0.0002885719295591116, 4.4775377318728715e-05, 0.0008923065033741295, 0.42102834582328796, 0.08835764229297638, 0.028642477467656136, 0.010229963809251785, 0.001758950063958764, 0.0018499108264222741, 0.009059443138539791, 0.005212091840803623, 0.4242345988750458], [0.0026999281253665686, 0.00026880137738771737, 0.00017479014059063047, 0.00014111267228145152, 9.407080506207421e-05, 3.429561184020713e-05, 5.40986047781189e-06, 0.0005949672777205706, 0.4694885015487671, 0.00799261499196291, 0.014231435023248196, 0.021989963948726654, 0.002557610860094428, 0.0010916937608271837, 0.002367876237258315, 0.004309205338358879, 0.4719575345516205], [0.0034246710129082203, 0.0005615180125460029, 0.000610478047747165, 0.0011244489578530192, 0.00014604648458771408, 5.383366806199774e-05, 2.5323708541691303e-05, 0.0017176289111375809, 0.4572793245315552, 0.008899073116481304, 0.012763104401528835, 0.03410309553146362, 0.002338482765480876, 0.0012693756725639105, 0.0030886861495673656, 0.01198536902666092, 0.46060964465141296], [0.002563945949077606, 0.00047227853792719543, 0.0012528554070740938, 0.00033863491262309253, 0.00013920357741881162, 6.576144369319081e-05, 1.2760151548718568e-05, 0.00013825444329995662, 0.4418810307979584, 0.008696864359080791, 0.0223518256098032, 0.033775683492422104, 0.02944188192486763, 0.004639053251594305, 0.0071303569711744785, 0.0016632245387881994, 0.44543638825416565], [0.002857710001990199, 0.0004494079330470413, 0.0005151801742613316, 0.0002472929481882602, 9.285211126552895e-05, 6.0330894484650344e-05, 4.444272053660825e-05, 0.0004616081132553518, 0.42209476232528687, 0.004248170182108879, 0.013329898938536644, 0.02593597210943699, 0.03146273270249367, 0.03693414479494095, 0.028025370091199875, 0.008159694261848927, 0.42508044838905334], [0.0024459820706397295, 0.0003664670221041888, 0.00022018687741365284, 0.00020101053814869374, 7.080255454638973e-05, 0.00013722095172852278, 8.841782255331054e-05, 0.0007888933760114014, 0.4634504020214081, 0.0008423767285421491, 0.004170592408627272, 0.0013360264711081982, 0.0037458320148289204, 0.014925336465239525, 0.0375409871339798, 0.003994698636233807, 0.4656746983528137], [0.02457481063902378, 0.010203752666711807, 0.012434737756848335, 0.008004684001207352, 0.005903394427150488, 0.00911440048366785, 0.007329131942242384, 0.010916314087808132, 0.4171464145183563, 0.00732713658362627, 0.013628934510052204, 0.0061233569867908955, 0.009307322092354298, 0.01072712242603302, 0.016225721687078476, 0.011902778409421444, 0.4191300868988037]], [[0.00048719378537498415, 0.0016921494388952851, 0.00040300501859746873, 0.00021417596144601703, 8.935183723224327e-05, 0.0030993835534900427, 0.0007810798706486821, 0.9193664193153381, 0.023055903613567352, 1.4859769180475269e-05, 1.6625217540422454e-06, 8.735669894122111e-07, 6.831931841588812e-06, 8.76136346050771e-06, 8.568998964619823e-06, 0.027730019763112068, 0.0230398029088974], [0.0027713614981621504, 0.08397112786769867, 0.05193910375237465, 0.016939187422394753, 0.0022041278425604105, 0.0029977767262607813, 0.003563196863979101, 0.00877379346638918, 0.41430044174194336, 0.0010869173565879464, 0.00045260091428644955, 7.394230487989262e-05, 0.0004003988578915596, 0.0001496725744800642, 0.0003172729047946632, 0.0010901883943006396, 0.40896889567375183], [0.0010921587236225605, 0.42779940366744995, 0.006578531581908464, 0.0014727141242474318, 0.0017975274240598083, 0.0010941035579890013, 6.023854439263232e-05, 5.6039738410618156e-05, 0.27791574597358704, 0.00023584242444485426, 0.0006934786215424538, 0.0015141678741201758, 0.0006554787396453321, 0.0012277252972126007, 0.00031151380972005427, 0.00026277234428562224, 0.2772325277328491], [0.0006737246876582503, 0.008373060263693333, 0.12172280251979828, 0.004986476618796587, 0.0007816603174433112, 0.004545122850686312, 0.007766250520944595, 0.0001776995341060683, 0.42826735973358154, 1.9760309442062862e-05, 0.0001840673794504255, 1.2046632946294267e-05, 0.0007476943428628147, 0.00014097412349656224, 0.0002640757884364575, 5.718844477087259e-05, 0.4212802052497864], [0.0004160635871812701, 0.002634591655805707, 0.016594745218753815, 0.27470913529396057, 0.021080875769257545, 0.0028178137727081776, 0.0011507784947752953, 4.058673221152276e-05, 0.34122875332832336, 4.665302549256012e-05, 0.0003152368008159101, 0.0002806786505971104, 4.328700015321374e-05, 5.6680775742279366e-05, 4.936538971378468e-05, 0.00026608278858475387, 0.33826860785484314], [0.002481795847415924, 0.007451680954545736, 0.0084501001983881, 0.04968898370862007, 0.423367977142334, 0.009024492464959621, 0.0009456521947868168, 0.00020793182193301618, 0.24719859659671783, 0.00025041832122951746, 0.0007307803025469184, 0.00017736315203364938, 0.0007285236497409642, 0.00012039943976560608, 3.8593112549278885e-05, 0.00025225148419849575, 0.24888446927070618], [0.0002650237292982638, 0.0014228214276954532, 0.005571195390075445, 0.017781691625714302, 0.04897824674844742, 0.3531229496002197, 0.0011916421353816986, 0.00011059032840421423, 0.2850455939769745, 0.0004459808988031, 4.851774065173231e-05, 3.70494817616418e-05, 7.732710218988359e-05, 0.0001507394335931167, 4.627926682587713e-05, 4.071185321663506e-05, 0.2856636345386505], [0.0011373042361810803, 0.002236234489828348, 0.005291897803544998, 0.00887035671621561, 0.0009603105136193335, 0.14108602702617645, 0.305453360080719, 0.022427262738347054, 0.2565997242927551, 7.286720210686326e-05, 3.5261724406154826e-05, 5.444881026051007e-06, 8.468711166642606e-05, 7.878318865550682e-05, 0.00033633114071562886, 0.0020188838243484497, 0.2533053159713745], [0.012357382103800774, 0.011543367058038712, 0.006351469550281763, 0.003990822937339544, 0.0031228475272655487, 0.008493022993206978, 0.002075342694297433, 0.014676825143396854, 0.44728443026542664, 0.005217724945396185, 0.004288507625460625, 0.0017007944406941533, 0.004521556664258242, 0.002942086895927787, 0.0026725721545517445, 0.019184140488505363, 0.44957709312438965], [0.003252732567489147, 0.001031869906000793, 0.00011463941336842254, 0.0001942763919942081, 0.0002165366749977693, 0.0007036080351099372, 0.0007079083006829023, 0.4053356647491455, 0.2332354336977005, 0.005686624441295862, 0.0012051259400323033, 0.0001960455410880968, 0.00021020985150244087, 0.00020092290651518852, 0.000660199613776058, 0.11466763913631439, 0.23238053917884827], [0.0006034534890204668, 0.0018712034216150641, 0.00013304398453328758, 0.0002786715922411531, 2.8423986805137247e-05, 0.00024064678291324526, 5.6940584727271926e-06, 0.0010354567784816027, 0.05986001342535019, 0.8489680290222168, 0.019986065104603767, 0.0007610179018229246, 0.0002992941881529987, 0.00024667492834851146, 0.000490342266857624, 0.004653351381421089, 0.06053868308663368], [0.0059765977784991264, 0.000524194270838052, 0.0002881841210182756, 0.0003286635037511587, 4.3188923882553354e-05, 6.399136964319041e-06, 2.1653295334544964e-06, 0.0001395211584167555, 0.2144690901041031, 0.023702329024672508, 0.3933728337287903, 0.014213722199201584, 0.10905706882476807, 0.016671810299158096, 0.0012892454396933317, 0.004276878200471401, 0.21563810110092163], [0.0015593486605212092, 0.0005676263244822621, 0.0001093849350581877, 0.0004160494136158377, 6.473961548181251e-05, 1.101725865737535e-05, 3.079825603435893e-07, 0.00017149228369817138, 0.08103245496749878, 0.022821588441729546, 0.0220235213637352, 0.7777501940727234, 0.00701160030439496, 0.0026483137626200914, 0.000208628160180524, 0.001501770573668182, 0.08210194855928421], [0.001838727155700326, 0.0003195495519321412, 0.0004254066734574735, 0.0001387432566843927, 0.00031990231946110725, 1.268110099772457e-05, 2.8119807211623993e-06, 5.5413551308447495e-05, 0.051038116216659546, 0.006010955665260553, 0.08126302808523178, 0.02901894599199295, 0.7542858719825745, 0.01028755959123373, 0.0037121635396033525, 0.009578914381563663, 0.05169110372662544], [0.003990883473306894, 0.0007089286809787154, 0.001718937768600881, 0.00024039673735387623, 0.0001616957742953673, 0.00010392876720288768, 1.709900243440643e-05, 0.000396753748646006, 0.1947663128376007, 0.0028357200790196657, 0.01638449728488922, 0.020234866067767143, 0.43291497230529785, 0.1071450337767601, 0.008218012750148773, 0.013646451756358147, 0.19651556015014648], [0.0023730352986603975, 0.001130700926296413, 0.004566582851111889, 0.000842994952108711, 9.885642793960869e-05, 0.0027004461735486984, 0.0012006893521174788, 0.0014957990497350693, 0.16556678712368011, 0.006459176540374756, 0.006770133972167969, 0.005367286037653685, 0.028224142268300056, 0.10047725588083267, 0.3277108371257782, 0.178965762257576, 0.16604936122894287], [0.01220922265201807, 0.011317525990307331, 0.006292174104601145, 0.003991291858255863, 0.003126810770481825, 0.008478366769850254, 0.0020465741399675608, 0.013959069736301899, 0.4476650059223175, 0.005234155338257551, 0.004362147767096758, 0.0017368204426020384, 0.004593800287693739, 0.002976416377350688, 0.002690965309739113, 0.019312363117933273, 0.45000725984573364]], [[0.005989899858832359, 0.09139303117990494, 0.026810016483068466, 0.0487980991601944, 0.019986731931567192, 0.16587631404399872, 0.04014173522591591, 0.1424010545015335, 0.15417440235614777, 0.06021136790513992, 0.016384968534111977, 0.003913346212357283, 0.01495314110070467, 0.004269339144229889, 0.01245495118200779, 0.03743751719594002, 0.1548040509223938], [0.00306897284463048, 0.01342796441167593, 0.021265119314193726, 0.004360045772045851, 0.0008838544599711895, 0.004062327556312084, 0.003115238156169653, 0.007174549158662558, 0.007799121551215649, 0.01093027088791132, 0.9070063829421997, 0.001290512620471418, 0.0006622169748879969, 0.0004304322646930814, 0.0002703519130591303, 0.006418721284717321, 0.007833967916667461], [0.009499392472207546, 0.019101914018392563, 0.0457623191177845, 0.012029091827571392, 0.0009536636061966419, 0.0019731668289750814, 0.002190505852922797, 0.004658089019358158, 0.01986420340836048, 0.004015312995761633, 0.8174616098403931, 0.0017430142033845186, 0.0016311665531247854, 0.0014775906456634402, 0.004162629600614309, 0.03352399542927742, 0.01995236426591873], [0.008867834694683552, 0.01500577200204134, 0.007340576499700546, 0.02920330874621868, 0.023288758471608162, 0.05022633820772171, 0.05796845257282257, 0.26596730947494507, 0.15862727165222168, 0.04648205637931824, 0.05273868516087532, 0.03601903095841408, 0.010650807991623878, 0.0013882775092497468, 0.0015978427836671472, 0.07621385157108307, 0.15841388702392578], [0.0036607510410249233, 0.006391186732798815, 0.0024480626452714205, 0.027321306988596916, 0.040052711963653564, 0.07521122694015503, 0.03156106919050217, 0.23935608565807343, 0.23948360979557037, 0.022186512127518654, 0.015814848244190216, 0.0037308423779904842, 0.017118770629167557, 0.0014685160713270307, 0.001379501074552536, 0.034448184072971344, 0.23836688697338104], [0.01754981093108654, 0.00525283720344305, 0.002489976119250059, 0.04242882505059242, 0.03509701415896416, 0.049582283943891525, 0.05015264078974724, 0.13408371806144714, 0.20574714243412018, 0.10756000131368637, 0.022729581221938133, 0.01845385693013668, 0.03551193326711655, 0.0006498933071270585, 0.0025396374985575676, 0.06564154475927353, 0.20452941954135895], [0.008984477259218693, 0.013667243532836437, 0.0026346510276198387, 0.03665647283196449, 0.01680963672697544, 0.024209333583712578, 0.03122330643236637, 0.2037796527147293, 0.19723962247371674, 0.11971084773540497, 0.043877311050891876, 0.045669861137866974, 0.015251833945512772, 0.0007043184596113861, 0.0010175270726904273, 0.04241645708680153, 0.19614742696285248], [0.01112351194024086, 0.01963193342089653, 0.0034421244636178017, 0.04310804605484009, 0.011914917267858982, 0.020744027569890022, 0.019482852891087532, 0.2168053239583969, 0.2290947139263153, 0.08332706987857819, 0.015509034506976604, 0.044853806495666504, 0.004712630528956652, 0.00038340501487255096, 0.000517758191563189, 0.04627804830670357, 0.22907079756259918], [0.055878978222608566, 0.03644617646932602, 0.05720988288521767, 0.03407743200659752, 0.025291848927736282, 0.03501643240451813, 0.03312542662024498, 0.06352921575307846, 0.22881262004375458, 0.04139076545834541, 0.03536530211567879, 0.025959070771932602, 0.0290086530148983, 0.010200546123087406, 0.014316685497760773, 0.045015912503004074, 0.2293550819158554], [0.020283760502934456, 0.008238658308982849, 0.00964807253330946, 0.010557932779192924, 0.005391087848693132, 0.24193178117275238, 0.014401191845536232, 0.03575732931494713, 0.15041330456733704, 0.2862628996372223, 0.0012126839719712734, 0.007830708287656307, 0.004214932676404715, 0.0025427164509892464, 0.00570731982588768, 0.0444498248398304, 0.15115581452846527], [0.004184054210782051, 0.3481873869895935, 0.42574769258499146, 0.005593194160610437, 0.00118062028195709, 0.002844767179340124, 0.0020074776839464903, 0.002557175699621439, 0.018180372193455696, 0.003460957668721676, 0.1550169289112091, 0.0005566927138715982, 0.0003957227454520762, 0.00041422987123951316, 0.0002905112341977656, 0.011004360392689705, 0.018377842381596565], [0.010354574769735336, 0.006637608632445335, 0.010179916396737099, 0.011776612140238285, 0.009650168009102345, 0.08078241348266602, 0.034377872943878174, 0.03934403136372566, 0.2453005462884903, 0.1109478771686554, 0.0027653821744024754, 0.12711076438426971, 0.02045830897986889, 0.0023299572058022022, 0.0015487141208723187, 0.040169768035411835, 0.24626556038856506], [0.03475775942206383, 0.003283452009782195, 0.0074998075142502785, 0.0038045400287956, 0.007586288265883923, 0.05190139263868332, 0.010764279402792454, 0.010243196971714497, 0.13020431995391846, 0.05889685079455376, 0.003898381255567074, 0.03150215372443199, 0.2923051714897156, 0.0839773640036583, 0.06827591359615326, 0.07029414921998978, 0.13080503046512604], [0.01877177134156227, 0.003274571383371949, 0.004848450887948275, 0.002747440943494439, 0.003594530513510108, 0.015208389610052109, 0.003513134317472577, 0.012410419061779976, 0.14927075803279877, 0.011832121759653091, 0.006414338946342468, 0.005159125197678804, 0.09488371759653091, 0.18686027824878693, 0.273154616355896, 0.05748378485441208, 0.15057261288166046], [0.021789737045764923, 0.003158853854984045, 0.007846553809940815, 0.0029973729979246855, 0.004203712567687035, 0.02625352330505848, 0.0038595679216086864, 0.01715152896940708, 0.14619556069374084, 0.01832089200615883, 0.006865106523036957, 0.007780106738209724, 0.14834704995155334, 0.1852159947156906, 0.20343685150146484, 0.049172524362802505, 0.14740507304668427], [0.034868333488702774, 0.014031435362994671, 0.006361465901136398, 0.010672181844711304, 0.015724845230579376, 0.0812961533665657, 0.013889340683817863, 0.1020364910364151, 0.1819848120212555, 0.09930936992168427, 0.008308115415275097, 0.07921653240919113, 0.03570425882935524, 0.005831372924149036, 0.004057868849486113, 0.12305734306573868, 0.18365009129047394], [0.05576321855187416, 0.03638318553566933, 0.057337719947099686, 0.033809397369623184, 0.02530876360833645, 0.03488156199455261, 0.0330699197947979, 0.06335695087909698, 0.22903399169445038, 0.04144205525517464, 0.03539574518799782, 0.025934269651770592, 0.02917262725532055, 0.010211492888629436, 0.014317767694592476, 0.04499416425824165, 0.2295871078968048]]], [[[0.005297467112541199, 0.16783204674720764, 0.3675132393836975, 0.04940835013985634, 0.022031916305422783, 0.028231138363480568, 0.008519068360328674, 0.07967200875282288, 0.11491129547357559, 0.003222285071387887, 0.028030067682266235, 0.0010792185785248876, 0.000500990659929812, 0.0007302633603103459, 0.000869597599375993, 0.007325959857553244, 0.11482513695955276], [0.004766474943608046, 0.12688788771629333, 0.12460390478372574, 0.02893034555017948, 0.013653712347149849, 0.017232440412044525, 0.009274342097342014, 0.08878704905509949, 0.28614553809165955, 0.0028164705727249384, 0.007499368861317635, 0.00021854243823327124, 0.0007668511243537068, 0.00013776372361462563, 0.00018941382586490363, 0.002091463888064027, 0.2859983444213867], [0.002550829667598009, 0.033975888043642044, 0.04040086641907692, 0.018888572230935097, 0.01103578507900238, 0.004325386602431536, 0.006601816974580288, 0.030958233401179314, 0.42200005054473877, 0.0005571680376306176, 0.0044917212799191475, 0.00038567467709071934, 0.0002042024425463751, 0.00023301954206544906, 0.0002402973041171208, 0.0012122293701395392, 0.4219382703304291], [0.004832226317375898, 0.06285307556390762, 0.040567006915807724, 0.07684948295354843, 0.03633752837777138, 0.04217629134654999, 0.022437050938606262, 0.10074576735496521, 0.3018655776977539, 0.003207303350791335, 0.0017004829132929444, 0.00041987671284005046, 0.00022912098211236298, 0.00010279820708092302, 0.0002585861657280475, 0.003697959240525961, 0.30171987414360046], [0.0035615579690784216, 0.023039570078253746, 0.03205538168549538, 0.027895918115973473, 0.045681148767471313, 0.01721591129899025, 0.010281956754624844, 0.059282220900058746, 0.38620585203170776, 0.002207000507041812, 0.0005496328230947256, 0.00047149305464699864, 0.00023021025117486715, 8.827996498439461e-05, 0.00021609636314678937, 0.0052264113910496235, 0.3857913613319397], [0.008434980176389217, 0.04755670204758644, 0.054221782833337784, 0.02550545334815979, 0.04541904479265213, 0.017660027369856834, 0.021139560267329216, 0.06945955008268356, 0.3433700501918793, 0.007943536154925823, 0.002520049223676324, 0.001113853882998228, 0.001180359860882163, 0.0013389542000368237, 0.002726425416767597, 0.007442825473845005, 0.342966765165329], [0.00492860097438097, 0.07522725313901901, 0.037394050508737564, 0.040790509432554245, 0.05941012501716614, 0.014410487376153469, 0.01341920904815197, 0.06265387684106827, 0.33901768922805786, 0.0030511284712702036, 0.0013138599460944533, 0.00019944993255194277, 0.0003325746220070869, 5.539594349102117e-05, 0.0001470465649617836, 0.008935135789215565, 0.3387135863304138], [0.005471080541610718, 0.1889464408159256, 0.07867632806301117, 0.06225866824388504, 0.021826161071658134, 0.023536572232842445, 0.027204491198062897, 0.04511084780097008, 0.2683037221431732, 0.0040791709907352924, 0.0031182393431663513, 0.0005477099330164492, 0.0007156832725740969, 0.000564315530937165, 0.0008533255313523114, 0.0010418876772746444, 0.2677452862262726], [0.01980801671743393, 0.008580448105931282, 0.014234697446227074, 0.00992380827665329, 0.01028298120945692, 0.0091600576415658, 0.005750687327235937, 0.018989911302924156, 0.420198917388916, 0.005519409663975239, 0.009300841018557549, 0.006858759094029665, 0.004189517814666033, 0.010243996046483517, 0.010956753976643085, 0.015462791547179222, 0.4205385744571686], [0.026824219152331352, 0.024535151198506355, 0.032377954572439194, 0.06428729742765427, 0.05188821628689766, 0.06091118976473808, 0.005562410224229097, 0.07729799300432205, 0.2642455995082855, 0.03744874894618988, 0.026658358052372932, 0.01375736203044653, 0.00215017213486135, 0.0019419833552092314, 0.0023957695811986923, 0.04324641451239586, 0.264471173286438], [0.02811388112604618, 0.1908879280090332, 0.10133616626262665, 0.06870381534099579, 0.01579757034778595, 0.02287447638809681, 0.0036996754352003336, 0.04725593701004982, 0.13034150004386902, 0.031646616756916046, 0.11990267783403397, 0.010809540748596191, 0.01338377594947815, 0.006467808969318867, 0.00892630871385336, 0.06948082149028778, 0.13037154078483582], [0.03820781409740448, 0.013281067833304405, 0.012624234892427921, 0.020400894805788994, 0.030536005273461342, 0.09677345305681229, 0.009445511735975742, 0.027323702350258827, 0.13141368329524994, 0.22022569179534912, 0.05348948761820793, 0.03902488946914673, 0.007149926386773586, 0.008481760509312153, 0.027124639600515366, 0.13289502263069153, 0.13160213828086853], [0.07273712754249573, 0.024743838235735893, 0.03470733389258385, 0.0245047640055418, 0.01619902066886425, 0.07490096241235733, 0.009171618148684502, 0.03618757054209709, 0.07154164463281631, 0.04914092645049095, 0.16088786721229553, 0.1108478307723999, 0.03542714565992355, 0.022601546719670296, 0.039940010756254196, 0.14479517936706543, 0.07166562229394913], [0.0283042024821043, 0.011317034251987934, 0.02489718608558178, 0.015414466150105, 0.0015972380060702562, 0.028210356831550598, 0.0049884323962032795, 0.02013750746846199, 0.14350950717926025, 0.013215675950050354, 0.0776049941778183, 0.08741527050733566, 0.05300682783126831, 0.08616761863231659, 0.1291641891002655, 0.13118891417980194, 0.1438606083393097], [0.03766375407576561, 0.021850580349564552, 0.04736213758587837, 0.02441374585032463, 0.001717879087664187, 0.020973367616534233, 0.006252184975892305, 0.018372710794210434, 0.1686561405658722, 0.013071833178400993, 0.15169283747673035, 0.05590406060218811, 0.04113074764609337, 0.04716875031590462, 0.0711827203631401, 0.10357741266489029, 0.16900914907455444], [0.04237581044435501, 0.034525468945503235, 0.01796027459204197, 0.07954207062721252, 0.005555150099098682, 0.011201413348317146, 0.004228738136589527, 0.03591584041714668, 0.23428994417190552, 0.08004027605056763, 0.08197487890720367, 0.0256463922560215, 0.011752222664654255, 0.011631840839982033, 0.028098609298467636, 0.06081730127334595, 0.2344437688589096], [0.019834494218230247, 0.008578206412494183, 0.014228561893105507, 0.009924551472067833, 0.010270298458635807, 0.009148378856480122, 0.005743163637816906, 0.018999049440026283, 0.4201512038707733, 0.005528767127543688, 0.009308217093348503, 0.006860585417598486, 0.004192777909338474, 0.010260799899697304, 0.010981878265738487, 0.015497867949306965, 0.42049112915992737]], [[0.004420050885528326, 0.1266983151435852, 0.16905458271503448, 0.07324151694774628, 0.0168790090829134, 0.06080598756670952, 0.015546832233667374, 0.1149018406867981, 0.20513631403446198, 0.000623668369371444, 0.0006565509829670191, 0.00024722624220885336, 0.0002423793775960803, 0.001202116720378399, 0.0012709980364888906, 0.004020807798951864, 0.20505185425281525], [0.003970958758145571, 0.1215076893568039, 0.07590468972921371, 0.04486093670129776, 0.004666517488658428, 0.009503792971372604, 0.005105611868202686, 0.0201373640447855, 0.3544002175331116, 0.0024523886386305094, 0.0003674894105643034, 0.0003268657310400158, 0.00043549813563004136, 0.00032785756047815084, 0.0006079814629629254, 0.0015747409779578447, 0.3538493812084198], [0.004103243350982666, 0.24471741914749146, 0.05287128686904907, 0.030641809105873108, 0.0027440302073955536, 0.00585038959980011, 0.0046775764785707, 0.008326535113155842, 0.31769245862960815, 0.002939981408417225, 0.0014126028399914503, 0.0005398806533776224, 0.0011916563380509615, 0.0009985454380512238, 0.0014705669600516558, 0.002631161827594042, 0.31719082593917847], [0.004044024273753166, 0.23380111157894135, 0.15574638545513153, 0.019537171348929405, 0.015819698572158813, 0.03960483521223068, 0.08028294146060944, 0.03317998722195625, 0.2058725506067276, 0.002567046321928501, 0.0007795484270900488, 0.00016869918908923864, 0.0008866242715157568, 0.0004209131875541061, 0.0006938352016732097, 0.0010381081374362111, 0.20555660128593445], [0.002462410368025303, 0.04369528964161873, 0.07162564992904663, 0.09851499646902084, 0.038973867893218994, 0.017387233674526215, 0.004132942762225866, 0.00568706588819623, 0.3570542633533478, 0.00098380574490875, 0.0005859395023435354, 0.0004364593478385359, 0.0003401575959287584, 0.00041530063026584685, 0.0003914370317943394, 0.0004994593327865005, 0.35681360960006714], [0.0027360650710761547, 0.024508515372872353, 0.030636055395007133, 0.06254623830318451, 0.05546869710087776, 0.019308557733893394, 0.009677473455667496, 0.005218904465436935, 0.39305683970451355, 0.0012013415107503533, 0.00033970651566050947, 0.00018978756270371377, 0.0004091697046533227, 0.00045075680827721953, 0.00039951736107468605, 0.0009409427875652909, 0.392911434173584], [0.0016681656707078218, 0.010791630484163761, 0.032815542072057724, 0.07728085666894913, 0.23383007943630219, 0.0634358674287796, 0.0039275032468140125, 0.0025694130454212427, 0.286190390586853, 0.00036607604124583304, 9.939416486304253e-05, 0.00023683186736889184, 0.00016975868493318558, 0.00015493850514758378, 6.693822069792077e-05, 0.0003024028264917433, 0.2860943377017975], [0.00348345167003572, 0.023145731538534164, 0.029527956619858742, 0.08934146165847778, 0.08331946283578873, 0.08211545646190643, 0.06002994626760483, 0.018208447843790054, 0.3024033308029175, 0.000712734879925847, 0.0003517790464684367, 0.00036900214035995305, 0.0004219951806589961, 0.0006284616538323462, 0.0008821941446512938, 0.002642233157530427, 0.30241644382476807], [0.011426216922700405, 0.009049708023667336, 0.012192009948194027, 0.015569650568068027, 0.008999671787023544, 0.011024982668459415, 0.0033921634312719107, 0.012049413286149502, 0.43733328580856323, 0.008446041494607925, 0.009078006260097027, 0.006193111650645733, 0.002964327810332179, 0.002092530718073249, 0.0037298286333680153, 0.00897007156163454, 0.4374888837337494], [0.030517419800162315, 0.0017176135443150997, 0.004947955720126629, 0.0203742366284132, 0.002899325918406248, 0.0026137458626180887, 0.0012104575289413333, 0.03256400674581528, 0.40427279472351074, 0.022246314212679863, 0.008757486008107662, 0.008829270489513874, 0.0024329901207238436, 0.002917352830991149, 0.0050587886944413185, 0.04412335902452469, 0.40451690554618835], [0.00934809073805809, 0.011453364044427872, 0.0036958991549909115, 0.0031375307589769363, 0.0008310616249218583, 0.00158501707483083, 0.00016332736413460225, 0.01181812584400177, 0.295293927192688, 0.2820739150047302, 0.020782075822353363, 0.010273581370711327, 0.0029598919209092855, 0.00500992638990283, 0.011379297822713852, 0.034435030072927475, 0.2957599461078644], [0.009084653109312057, 0.0006854653474874794, 0.0005500874249264598, 0.0018192435381934047, 0.0005331854335963726, 0.0003550722321961075, 0.0001159801977337338, 0.0018130653770640492, 0.34873291850090027, 0.14139458537101746, 0.04208522289991379, 0.045032303780317307, 0.025682520121335983, 0.006735603790730238, 0.007984030060470104, 0.018208835273981094, 0.3491871953010559], [0.0053117056377232075, 0.00025196128990501165, 0.00045175079139880836, 0.001449344796128571, 0.0004991032183170319, 0.0003659848007373512, 3.623289376264438e-05, 0.0008738187607377768, 0.3923167288303375, 0.06722195446491241, 0.02436753734946251, 0.07532060146331787, 0.0110842389985919, 0.005339708644896746, 0.007177589926868677, 0.015029292553663254, 0.3929024934768677], [0.0014845877885818481, 0.00020282679179217666, 0.0004995363997295499, 0.00012627163960132748, 7.107922283466905e-05, 0.0002511218190193176, 3.331775587867014e-05, 0.00013318117999006063, 0.38176634907722473, 0.06554548442363739, 0.0251153577119112, 0.02480188012123108, 0.08795204013586044, 0.011713107116520405, 0.014296168461441994, 0.0037748883478343487, 0.382232666015625], [0.0025338674895465374, 0.00031027416116558015, 0.0005934437504038215, 0.00026551485643722117, 0.0002827864373102784, 0.0005936676752753556, 7.575721974717453e-05, 0.00022718444233760238, 0.3242541551589966, 0.07145193219184875, 0.03864063322544098, 0.032356005162000656, 0.1333603858947754, 0.04058241844177246, 0.021624408662319183, 0.007989378646016121, 0.3248581886291504], [0.008402728475630283, 0.0018791983602568507, 0.002023938577622175, 0.0016244550934061408, 0.000734977365937084, 0.0017260321183130145, 0.00037761463318020105, 0.005386863369494677, 0.23020325601100922, 0.1504465788602829, 0.09307001531124115, 0.041518714278936386, 0.03147316351532936, 0.05656770244240761, 0.09995003789663315, 0.04387686029076576, 0.23073779046535492], [0.011424877680838108, 0.009034248068928719, 0.01216176524758339, 0.015556448139250278, 0.008996876887977123, 0.011022094637155533, 0.003387703327462077, 0.012043501250445843, 0.4373071491718292, 0.008479166775941849, 0.009105510078370571, 0.006214453838765621, 0.0029697800055146217, 0.002097861375659704, 0.0037407982163131237, 0.008994069881737232, 0.43746358156204224]], [[0.005105744581669569, 0.0911070853471756, 0.020794546231627464, 0.06420891731977463, 0.009805277921259403, 0.04237595573067665, 0.013696841895580292, 0.03515808284282684, 0.1733161062002182, 0.12482968717813492, 0.050272002816200256, 0.011151405051350594, 0.0037445160560309887, 0.0075047630816698074, 0.020641835406422615, 0.15274009108543396, 0.17354722321033478], [0.006423650309443474, 0.05394363030791283, 0.17512978613376617, 0.43607503175735474, 0.030811473727226257, 0.07436548173427582, 0.019245577976107597, 0.08345205336809158, 0.05096716433763504, 0.003018262330442667, 0.0037483456544578075, 0.0004999149823561311, 0.00013760202273260802, 0.00021285071852616966, 0.0005034448695369065, 0.010472883470356464, 0.050992876291275024], [0.018413737416267395, 0.1352156549692154, 0.15041641891002655, 0.17828987538814545, 0.06867485493421555, 0.09728401154279709, 0.035086825489997864, 0.11978700011968613, 0.08465901762247086, 0.0027507860213518143, 0.01060415804386139, 0.0007669285405427217, 0.0008080457337200642, 0.0005498760147020221, 0.0008260412723757327, 0.011163183487951756, 0.08470353484153748], [0.003984613344073296, 0.11092612147331238, 0.14696677029132843, 0.06717951595783234, 0.026056475937366486, 0.06739041954278946, 0.029580779373645782, 0.05975344777107239, 0.2299407422542572, 0.00662103109061718, 0.005812695249915123, 0.0020389158744364977, 0.00023032139870338142, 0.0004292786761652678, 0.001284569501876831, 0.011850080452859402, 0.22995422780513763], [0.002610620576888323, 0.05329253897070885, 0.07848281413316727, 0.03147653117775917, 0.02376451902091503, 0.05199495702981949, 0.015109510160982609, 0.030399631708860397, 0.3475860059261322, 0.006430253852158785, 0.0017697770381346345, 0.0037355064414441586, 0.000640927697531879, 0.00023232429521158338, 0.00042635094723664224, 0.004968475550413132, 0.3470793664455414], [0.005790722090750933, 0.05595386400818825, 0.07701115310192108, 0.11726585030555725, 0.03268156573176384, 0.04541349038481712, 0.046410590410232544, 0.049196332693099976, 0.26831933856010437, 0.006442303769290447, 0.004564326256513596, 0.0011788730043917894, 0.0008824720280244946, 0.0004101727972738445, 0.0012996913865208626, 0.019185950979590416, 0.2679932713508606], [0.0011707909870892763, 0.018569553270936012, 0.02420329675078392, 0.03415117412805557, 0.0223215464502573, 0.0692625343799591, 0.01225161924958229, 0.020756829530000687, 0.39523300528526306, 0.002469658385962248, 0.0005711872945539653, 0.0008048827294260263, 6.381727143889293e-05, 2.9046395866316743e-05, 8.3308776083868e-05, 0.0032584371510893106, 0.39479920268058777], [0.004729016218334436, 0.11458010226488113, 0.08157681673765182, 0.26571789383888245, 0.038655489683151245, 0.12337535619735718, 0.05719822645187378, 0.030496535822749138, 0.13191869854927063, 0.0026473761536180973, 0.004670982714742422, 0.0005967780598439276, 0.00017445682897232473, 0.0006383605650626123, 0.0015284724067896605, 0.009621094912290573, 0.13187429308891296], [0.0020520559046417475, 0.0018406618619337678, 0.006071656476706266, 0.0019317823462188244, 0.001352562103420496, 0.006889020558446646, 0.0007401554612442851, 0.002467881189659238, 0.48450881242752075, 0.00202777236700058, 0.0012497866991907358, 0.0006144680082798004, 0.0003891513333655894, 0.0005871561588719487, 0.0005445200949907303, 0.0020153741352260113, 0.4847172498703003], [0.013733774423599243, 0.009574252180755138, 0.008746680803596973, 0.008951568976044655, 0.0027222868520766497, 0.024615788832306862, 0.002326545538380742, 0.0062681217677891254, 0.21995943784713745, 0.07933208346366882, 0.07519316673278809, 0.04829152300953865, 0.009177383035421371, 0.02306598238646984, 0.034876879304647446, 0.2128230631351471, 0.22034139931201935], [0.004843204747885466, 0.0336439311504364, 0.06470245867967606, 0.06942503899335861, 0.005320457741618156, 0.030456779524683952, 0.0027195822913199663, 0.01646280847489834, 0.09513810276985168, 0.0799405500292778, 0.049472659826278687, 0.03985505923628807, 0.0036948134656995535, 0.01668129302561283, 0.025873491540551186, 0.3663578927516937, 0.09541188925504684], [0.0061147394590079784, 0.009982898831367493, 0.008776696398854256, 0.006483661476522684, 0.01151349488645792, 0.19783256947994232, 0.003573478665202856, 0.006222090683877468, 0.09631194919347763, 0.1189933642745018, 0.011652293615043163, 0.30500897765159607, 0.05492006987333298, 0.0038331488613039255, 0.003744743065908551, 0.05868811532855034, 0.09634772688150406], [0.0029577920213341713, 0.006268859375268221, 0.020655956119298935, 0.0010027632815763354, 0.003831166308373213, 0.12467428296804428, 0.0014100599801167846, 0.0011361995711922646, 0.2098654806613922, 0.091877780854702, 0.009355146437883377, 0.23754984140396118, 0.05319197475910187, 0.0069496240466833115, 0.005284553859382868, 0.014030836522579193, 0.20995762944221497], [0.006022319663316011, 0.010365533642470837, 0.022541331127285957, 0.0010288951452821493, 0.0013846724759787321, 0.03282004967331886, 0.0010796115966513753, 0.0019692357163876295, 0.4094730019569397, 0.02030200883746147, 0.026183828711509705, 0.023900650441646576, 0.016958018764853477, 0.004261720925569534, 0.003201414132490754, 0.0085412273183465, 0.40996649861335754], [0.005099293310195208, 0.006434600334614515, 0.014146889559924603, 0.0011425132397562265, 0.0007825923967175186, 0.022038228809833527, 0.0009783431887626648, 0.0014403992099687457, 0.4417753219604492, 0.013710400089621544, 0.01806250773370266, 0.00962051097303629, 0.008859865367412567, 0.003519561141729355, 0.0021580432076007128, 0.007934906519949436, 0.4422961473464966], [0.00424864050000906, 0.018053347244858742, 0.014590892009437084, 0.006673718336969614, 0.006026660092175007, 0.07573217898607254, 0.010383738204836845, 0.005573029164224863, 0.28597158193588257, 0.05072358250617981, 0.048723578453063965, 0.09867778420448303, 0.007499033119529486, 0.029175635427236557, 0.02901400998234749, 0.022380990907549858, 0.2865515649318695], [0.0020503560081124306, 0.0018381867557764053, 0.006066328380256891, 0.0019284342415630817, 0.0013502700021490455, 0.006877555977553129, 0.0007384041091427207, 0.0024629896506667137, 0.4845215678215027, 0.0020299579482525587, 0.0012505349004641175, 0.0006148909451439977, 0.00038951373426243663, 0.0005877254297956824, 0.0005448164301924407, 0.002017260529100895, 0.48473113775253296]], [[0.004559527616947889, 0.000788952864240855, 0.0025498527102172375, 0.00043330114567652345, 0.00045689012040384114, 0.0006891385419294238, 6.610320997424424e-05, 0.004297088366001844, 0.32817378640174866, 0.09726065397262573, 0.042058736085891724, 0.016970792785286903, 0.007064131088554859, 0.009209049865603447, 0.0269177109003067, 0.1292913854122162, 0.3292129337787628], [0.0119582274928689, 0.028980802744627, 0.0328555703163147, 0.2566097378730774, 0.02039879374206066, 0.040396884083747864, 0.01524291280657053, 0.05649041384458542, 0.25364869832992554, 0.0063878498040139675, 0.004316553007811308, 0.0011726761003956199, 0.001430540345609188, 0.0015171411214396358, 0.0008085212903097272, 0.014190485700964928, 0.25359416007995605], [0.005526285618543625, 0.014378851279616356, 0.061596766114234924, 0.00858283694833517, 0.0023474351037293673, 0.0147481644526124, 0.0024471022188663483, 0.01132805272936821, 0.43023717403411865, 0.0010106076952069998, 0.0031537143513560295, 0.0008174902759492397, 0.0006932400865480304, 0.00444023497402668, 0.0027562291361391544, 0.004864922259002924, 0.4310709238052368], [0.0059042214415967464, 0.03491642326116562, 0.005537510383874178, 0.04781602323055267, 0.037210576236248016, 0.15455812215805054, 0.038282498717308044, 0.01857975497841835, 0.32544761896133423, 0.0013055438175797462, 0.0003880287695210427, 0.0004887021495960653, 0.0006392252980731428, 0.0004481000651139766, 0.00046945796930231154, 0.002928073052316904, 0.32508018612861633], [0.006990362424403429, 0.02298472821712494, 0.004950795788317919, 0.09477657079696655, 0.03258771449327469, 0.13215355575084686, 0.020249199122190475, 0.016518551856279373, 0.3308350741863251, 0.002744380384683609, 0.00039450314943678677, 0.00027286590193398297, 0.0005930708721280098, 0.0011334207374602556, 0.0003167016548104584, 0.0018019923008978367, 0.3306964337825775], [0.013341106474399567, 0.029822537675499916, 0.00875923316925764, 0.10356228053569794, 0.0186845101416111, 0.0708804503083229, 0.28577691316604614, 0.01769726350903511, 0.20928701758384705, 0.006457692477852106, 0.0008896054932847619, 0.0006834467058070004, 0.0022377928253263235, 0.0029984142165631056, 0.004237498622387648, 0.015372789464890957, 0.20931147038936615], [0.006526425946503878, 0.010434571653604507, 0.0012898542918264866, 0.12139632552862167, 0.012297768145799637, 0.06764482706785202, 0.007496734149754047, 0.023653080686926842, 0.37102803587913513, 0.0018435518722981215, 0.00016437556769233197, 5.465562207973562e-05, 3.5044467949774116e-05, 7.795871351845562e-05, 3.9380931411869824e-05, 0.005023255944252014, 0.3709942400455475], [0.0038711640518158674, 0.003608987433835864, 0.007837025448679924, 0.014432350173592567, 0.0029854201711714268, 0.016951048746705055, 0.0020319868344813585, 0.005767277907580137, 0.46739304065704346, 0.00128552142996341, 0.002121981466189027, 0.0013270488707348704, 0.00030418383539654315, 0.0006217916961759329, 0.0005152271478436887, 0.001263331389054656, 0.4676826596260071], [0.005330605898052454, 0.003307645907625556, 0.010106753557920456, 0.006291170604526997, 0.005423597060143948, 0.00964100006967783, 0.001972002675756812, 0.0021975080017000437, 0.456297367811203, 0.0037741262931376696, 0.003716695122420788, 0.006658582016825676, 0.0034265785943716764, 0.014179150573909283, 0.007708790712058544, 0.003593786619603634, 0.4563746154308319], [0.003284159814938903, 0.001018995768390596, 0.001203836058266461, 0.0016154367476701736, 0.0017419243231415749, 0.003985143266618252, 0.0003202772350050509, 0.0009198729530908167, 0.4503265917301178, 0.011200111359357834, 0.018842868506908417, 0.03046409785747528, 0.002788781886920333, 0.007832895033061504, 0.006276383996009827, 0.0074068219400942326, 0.4507717490196228], [0.002434982219710946, 0.0002808681165333837, 0.0006167256506159902, 0.0015070175286382437, 0.00026110096951015294, 0.00045292111462913454, 0.0001414354337612167, 0.0028285107109695673, 0.122406966984272, 0.00938814040273428, 0.007447195239365101, 0.018445292487740517, 0.00810359138995409, 0.02039041556417942, 0.021811190992593765, 0.660796582698822, 0.12268698215484619], [0.0013778489083051682, 0.00036587839713320136, 0.00036740044015459716, 0.0003835103998426348, 0.0004604478308465332, 0.0003604190133046359, 0.00010386012581875548, 0.0005261037149466574, 0.4114050567150116, 0.008736945688724518, 0.003853559959679842, 0.00979110598564148, 0.07607895135879517, 0.027503682300448418, 0.006908680312335491, 0.03988710790872574, 0.4118894934654236], [0.002003398025408387, 0.0005276554729789495, 0.0002911758201662451, 0.0014142632717266679, 6.888956704642624e-05, 0.0006521879695355892, 1.5909998182905838e-05, 0.0005114514497108757, 0.3222295939922333, 0.0038738083094358444, 0.006736425217241049, 0.009132626466453075, 0.012696393765509129, 0.1576133519411087, 0.04806869477033615, 0.11098641902208328, 0.3231777846813202], [0.002857973799109459, 0.0010368343209847808, 0.0007925468380562961, 0.000811257166787982, 0.00016788629000075161, 0.0005031348555348814, 0.0003956520522478968, 0.000386344559956342, 0.21825887262821198, 0.004878087900578976, 0.014012823812663555, 0.017162933945655823, 0.09953681379556656, 0.06072201579809189, 0.30620676279067993, 0.05378515273332596, 0.21848493814468384], [0.0033068566117435694, 0.0004578383232001215, 0.00046508637024089694, 0.000969412038102746, 0.00020914622291456908, 0.0002484262513462454, 0.00012482100282795727, 0.0009671279112808406, 0.3901226222515106, 0.005459696985781193, 0.019207900390028954, 0.015136857517063618, 0.024081578478217125, 0.07690244913101196, 0.02174494042992592, 0.04950181767344475, 0.391093373298645], [0.0011034932686015964, 0.00041215107194148004, 0.0003774958022404462, 0.0010573997860774398, 0.00021009071497246623, 0.0011409358121454716, 0.00012127727677579969, 0.0006731980829499662, 0.4345414340496063, 0.001520061632618308, 0.0063075111247599125, 0.017148710787296295, 0.013547779992222786, 0.03630455210804939, 0.027358246967196465, 0.02274540811777115, 0.43543022871017456], [0.005336220841854811, 0.0033057851251214743, 0.010103982873260975, 0.006290243938565254, 0.0054209367372095585, 0.009648711420595646, 0.001973511418327689, 0.0021955694537609816, 0.45624688267707825, 0.003775506978854537, 0.0037189340218901634, 0.0066702477633953094, 0.0034362846054136753, 0.014226618222892284, 0.007730051409453154, 0.003597069764509797, 0.4563234746456146]], [[0.003370942547917366, 0.04881782457232475, 0.03230999782681465, 0.0675431564450264, 0.03540462628006935, 0.3920157849788666, 0.10692373663187027, 0.1143830195069313, 0.08525600284337997, 0.00179760018363595, 0.0013329824432730675, 0.01075056754052639, 0.005185674410313368, 0.0023407794069498777, 0.0021522543393075466, 0.005133139435201883, 0.08528196066617966], [0.006229700054973364, 0.03315015882253647, 0.01571987196803093, 0.07278934866189957, 0.02622600458562374, 0.07043248414993286, 0.1663273721933365, 0.07251719385385513, 0.2675327956676483, 0.00032645263127051294, 0.0003248643479309976, 0.0002673377748578787, 0.00011943218851229176, 0.00021623271459247917, 0.00013916415628045797, 0.00014406828267965466, 0.26753750443458557], [0.007965737022459507, 0.047513965517282486, 0.037971071898937225, 0.018080836161971092, 0.03044014796614647, 0.07502014189958572, 0.06291737407445908, 0.031013887375593185, 0.33791661262512207, 0.0017014400800690055, 0.001945211784914136, 0.002674452029168606, 0.0023524488788098097, 0.0017909761518239975, 0.0013948706910014153, 0.001281709992326796, 0.3380189538002014], [0.003741672495380044, 0.0804874524474144, 0.012497924268245697, 0.008312543854117393, 0.08569295704364777, 0.028727207332849503, 0.02198808826506138, 0.029839633032679558, 0.3631247878074646, 0.001788897323422134, 0.0006236655754037201, 0.00042825372656807303, 0.00010942654625978321, 7.633345376234502e-06, 1.2319670531724114e-05, 0.00011274260032223538, 0.36250489950180054], [0.015540530905127525, 0.04487740620970726, 0.007292138412594795, 0.2619316875934601, 0.021228685975074768, 0.011393985711038113, 0.025789447128772736, 0.03199133276939392, 0.2898111343383789, 0.0005804746760986745, 0.00011200936569366604, 0.00011535434168763459, 3.435305552557111e-05, 8.08266759122489e-06, 1.885876372398343e-05, 0.00021526942146010697, 0.28905925154685974], [0.023224031552672386, 0.16655676066875458, 0.018678585067391396, 0.36063358187675476, 0.030334828421473503, 0.011313293129205704, 0.04599607363343239, 0.02245994284749031, 0.15696081519126892, 0.004470486659556627, 0.0013387985527515411, 0.00039366536657325923, 0.00011838461796287447, 5.950408012722619e-05, 0.00010068350093206391, 0.0006687200511805713, 0.15669189393520355], [0.04010115936398506, 0.08965997397899628, 0.003936432301998138, 0.46130096912384033, 0.0445362813770771, 0.010296289809048176, 0.016315732151269913, 0.04378350451588631, 0.14492268860340118, 0.0003446432820055634, 0.0001834815484471619, 1.958394750545267e-05, 4.12821646023076e-06, 3.717936181146797e-07, 1.5065513707668288e-06, 3.8350674003595486e-05, 0.14455482363700867], [0.008242328651249409, 0.02511579543352127, 0.016535207629203796, 0.057554397732019424, 0.03570202365517616, 0.17274735867977142, 0.10733512789011002, 0.024890093132853508, 0.27348363399505615, 0.0018323649419471622, 0.0009202899527736008, 0.000946124317124486, 0.000476937711937353, 9.822175343288109e-05, 0.00014358140469994396, 0.000658158038277179, 0.27331820130348206], [0.014842351898550987, 0.01327650435268879, 0.016149787232279778, 0.011800777167081833, 0.005971558857709169, 0.008221070282161236, 0.004974676296114922, 0.0046539511531591415, 0.4087497591972351, 0.018472520634531975, 0.02015983685851097, 0.021893126890063286, 0.009429410099983215, 0.0056530870497226715, 0.006247894838452339, 0.020583558827638626, 0.40892016887664795], [0.011694489046931267, 0.0035602026619017124, 0.0014882980613037944, 0.001248420448973775, 0.008290162310004234, 0.05803222954273224, 0.00529091339558363, 0.004606747999787331, 0.40420520305633545, 0.018067996948957443, 0.005787001922726631, 0.06573593616485596, 0.0035199448466300964, 0.0014263902558013797, 0.001586321392096579, 0.0006910592783242464, 0.40476879477500916], [0.0017565799644216895, 0.0016134293982759118, 0.0027119028382003307, 0.000956268107984215, 0.0012822869466617703, 0.009463975206017494, 0.0012486862251535058, 0.0025284753646701574, 0.45313942432403564, 0.007141444366425276, 0.005156685598194599, 0.02251514233648777, 0.00954648107290268, 0.015542554669082165, 0.006399105302989483, 0.005228354129940271, 0.4537692964076996], [0.011386871337890625, 0.002111377427354455, 0.000706756953150034, 0.0013555969344452024, 0.0011755507439374924, 0.0006833676598034799, 0.0002750402200035751, 0.002838957356289029, 0.325282484292984, 0.08476478606462479, 0.025457805022597313, 0.06521104276180267, 0.011414819397032261, 0.004828022792935371, 0.004017669707536697, 0.13297070562839508, 0.3255191147327423], [0.006476139649748802, 0.0008783658850006759, 0.0005277867894619703, 0.00039031635969877243, 0.0004664714797399938, 0.0007430788828060031, 8.506329322699457e-05, 0.0007464757072739303, 0.16273601353168488, 0.04920459911227226, 0.012257130816578865, 0.06546778976917267, 0.02271001785993576, 0.20734331011772156, 0.2077716588973999, 0.09920534491539001, 0.16299042105674744], [0.008416908793151379, 0.0013125152327120304, 0.0007978067151270807, 0.0002654278068803251, 0.0002587765920907259, 0.0005732472636736929, 0.0001422864879714325, 0.0010867429664358497, 0.18285620212554932, 0.025519372895359993, 0.02488243579864502, 0.040679220110177994, 0.0383002944290638, 0.008951788768172264, 0.013566715642809868, 0.4692017138004303, 0.1831885278224945], [0.005189163610339165, 0.0006860109278932214, 0.0006969798705540597, 0.0001929131685756147, 0.00023091590264812112, 0.0004794131964445114, 6.954477430554107e-05, 0.001333426684141159, 0.11603162437677383, 0.03667369484901428, 0.019567517563700676, 0.035262979567050934, 0.05337856709957123, 0.011384841986000538, 0.014427675865590572, 0.5881808996200562, 0.1162138506770134], [0.006338529754430056, 0.00722100492566824, 0.001404008362442255, 0.0005628236103802919, 0.002245223382487893, 0.0029457947239279747, 8.703795174369588e-05, 0.003137916326522827, 0.1470586508512497, 0.4715854525566101, 0.13366767764091492, 0.040407732129096985, 0.01296455878764391, 0.00249129137955606, 0.0028746367897838354, 0.01769717037677765, 0.14731045067310333], [0.014840803109109402, 0.013255669735372066, 0.01613742485642433, 0.011793873272836208, 0.005963553674519062, 0.008214526809751987, 0.00497058080509305, 0.0046472446992993355, 0.4087449610233307, 0.018484093248844147, 0.02016022428870201, 0.02191845513880253, 0.009438002482056618, 0.00566423824056983, 0.006259399000555277, 0.02059193141758442, 0.40891486406326294]], [[0.003993752412497997, 0.0013385460479184985, 0.0047914679162204266, 0.003591368906199932, 0.005904020741581917, 0.02256336808204651, 0.0030767114367336035, 0.0019530488643795252, 0.1198609247803688, 0.283425897359848, 0.03495556488633156, 0.20913217961788177, 0.06221076101064682, 0.018787436187267303, 0.027225757017731667, 0.07696833461523056, 0.12022089958190918], [0.008261207491159439, 0.027138326317071915, 0.15395762026309967, 0.012650390155613422, 0.06177956238389015, 0.28440341353416443, 0.034142471849918365, 0.023110302165150642, 0.171820729970932, 0.009930008091032505, 0.0017126131569966674, 0.017165325582027435, 0.012370679527521133, 0.0027852668426930904, 0.004340345039963722, 0.0025703483261168003, 0.17186138033866882], [0.004771775100380182, 0.007082073949277401, 0.0314272902905941, 0.0036075180396437645, 0.004755150992423296, 0.023166656494140625, 0.0028421124443411827, 0.005856794770807028, 0.43119698762893677, 0.002630728529766202, 0.001089355326257646, 0.003610256128013134, 0.011623641476035118, 0.01512613333761692, 0.016638105735182762, 0.003055887995287776, 0.4315195083618164], [0.007425465155392885, 0.0703849047422409, 0.1774425506591797, 0.010957038961350918, 0.021544698625802994, 0.3787921965122223, 0.044837888330221176, 0.02039637416601181, 0.1019025593996048, 0.012729426845908165, 0.0011528690811246634, 0.03222086280584335, 0.010329254902899265, 0.0010545023251324892, 0.0016127856215462089, 0.005335953086614609, 0.10188055783510208], [0.0029996430967003107, 0.026763509958982468, 0.11934029310941696, 0.008635981939733028, 0.010709026828408241, 0.36904826760292053, 0.009430112317204475, 0.010960892774164677, 0.19858476519584656, 0.003216436365619302, 0.00029846461256965995, 0.03673403337597847, 0.0030582044273614883, 0.00015367318701464683, 0.0003008657367900014, 0.0014007758582010865, 0.1983650177717209], [0.005889039020985365, 0.019350072368979454, 0.046852149069309235, 0.0023042012471705675, 0.002209374448284507, 0.11938966810703278, 0.004886500537395477, 0.009063913486897945, 0.3805636167526245, 0.006478199269622564, 0.0003868359490297735, 0.005807084031403065, 0.007590980269014835, 0.0018962349276989698, 0.0044573531486094, 0.0025140647776424885, 0.38036060333251953], [0.003942021634429693, 0.033246442675590515, 0.04661192744970322, 0.01026337593793869, 0.006899035535752773, 0.3677421510219574, 0.010542401112616062, 0.009582511149346828, 0.24771469831466675, 0.006913176272064447, 0.00033522487501613796, 0.005386059638112783, 0.0015197106404229999, 0.00020825258980039507, 0.00041800516191869974, 0.0013687267201021314, 0.2473062127828598], [0.01034742034971714, 0.061718616634607315, 0.1919936239719391, 0.04037828743457794, 0.08423028886318207, 0.3948482275009155, 0.02267433889210224, 0.008270499296486378, 0.07766542583703995, 0.007564121391624212, 0.0011984413722530007, 0.013658230192959309, 0.004363464191555977, 0.0009361953125335276, 0.001155634643509984, 0.0013657136587426066, 0.07763147354125977], [0.0008756560855545104, 0.0006081643514335155, 0.0023821000941097736, 0.00030475048697553575, 0.0004171414184384048, 0.0029615648090839386, 0.000215228705201298, 0.0004806671931874007, 0.4894660711288452, 0.0014607614139094949, 0.0008804139215499163, 0.00390710961073637, 0.002176470123231411, 0.0010624444112181664, 0.001183721236884594, 0.0016297680558636785, 0.48998796939849854], [0.00045986881013959646, 0.00023576388775836676, 0.0013989780563861132, 0.00010590633610263467, 0.0004886252572759986, 0.016101066023111343, 0.00040648257709108293, 0.0001501672377344221, 0.10604394972324371, 0.015456512570381165, 0.0019657572265714407, 0.6424494385719299, 0.08990637212991714, 0.003565523074939847, 0.005717775318771601, 0.009308787994086742, 0.10623905807733536], [0.0004179886309430003, 0.0002866630384232849, 0.007188134361058474, 4.7599485696991906e-05, 0.0002682063786778599, 0.002377929165959358, 0.00022887489467393607, 0.0003644666576292366, 0.2808360755443573, 0.021073203533887863, 0.017181675881147385, 0.10318883508443832, 0.12473752349615097, 0.06642117351293564, 0.07715761661529541, 0.01649664156138897, 0.2817273437976837], [0.002286522416397929, 0.0004298420390114188, 0.004341352265328169, 1.834712384152226e-05, 3.2181233109440655e-05, 0.0025266497395932674, 5.141443034517579e-05, 0.00014303512580227107, 0.2495524287223816, 0.04128806293010712, 0.012103419750928879, 0.22171904146671295, 0.11481130123138428, 0.03248943015933037, 0.0337817519903183, 0.03457116335630417, 0.24985402822494507], [0.00038123567355796695, 9.707362187327817e-05, 0.0037924812640994787, 6.3657971622888e-06, 7.5434822974784765e-06, 0.001650141435675323, 9.586333362676669e-06, 3.309451130917296e-05, 0.25731226801872253, 0.0029601987916976213, 0.0020629994105547667, 0.018755417317152023, 0.0825469046831131, 0.22304780781269073, 0.1476300209760666, 0.0020913563203066587, 0.25761550664901733], [0.00010912123980233446, 1.460025850974489e-05, 0.0005517355748452246, 7.672455240026466e-07, 6.79503386891156e-07, 6.506004137918353e-05, 3.4186251696155523e-07, 9.851538379734848e-06, 0.4753793478012085, 0.00047420631744898856, 0.0013176656793802977, 0.001310355612076819, 0.012645707465708256, 0.015349369496107101, 0.016213014721870422, 0.0004618706298060715, 0.47609618306159973], [0.00048527796752750874, 4.1633076762082055e-05, 0.0012162142666056752, 4.105159405298764e-06, 2.70862892648438e-06, 0.00017066102009266615, 2.098478944390081e-06, 3.438854037085548e-05, 0.4711749851703644, 0.001355909276753664, 0.0020190614741295576, 0.0013871805276721716, 0.012695368379354477, 0.01855277456343174, 0.01767147146165371, 0.001271175337024033, 0.47191494703292847], [0.0006318666273728013, 0.00035305492929182947, 0.005681788083165884, 3.624396049417555e-05, 9.087371290661395e-05, 0.00661341892555356, 0.00013336549454834312, 0.00014994664525147527, 0.31037285923957825, 0.011156744323670864, 0.003724417183548212, 0.11595451831817627, 0.117418572306633, 0.05031771957874298, 0.05532537028193474, 0.011041784659028053, 0.3109974265098572], [0.0008743352955207229, 0.0006069379160180688, 0.0023802067153155804, 0.00030366468126885593, 0.00041568270535208285, 0.00295811053365469, 0.00021453610679600388, 0.00047938781790435314, 0.48947224020957947, 0.0014585658209398389, 0.0008794754976406693, 0.003908841405063868, 0.002178118098527193, 0.001063348725438118, 0.001184888300485909, 0.0016276933019980788, 0.4899939298629761]], [[0.017378585413098335, 0.016709530726075172, 0.02192264050245285, 0.006534617859870195, 0.007567672058939934, 0.010273301042616367, 0.001278425334021449, 0.007229949347674847, 0.2549307644367218, 0.31588026881217957, 0.015049525536596775, 0.007510794326663017, 0.012872375547885895, 0.013264773413538933, 0.008210907690227032, 0.028310120105743408, 0.25507572293281555], [0.004910493269562721, 0.044622451066970825, 0.5181931853294373, 0.034329064190387726, 0.005756134167313576, 0.00505676819011569, 0.0009837147081270814, 0.00718067679554224, 0.18384355306625366, 0.0012999624013900757, 0.002331748139113188, 0.00013568071881309152, 0.00017605161701794714, 0.00041269147186540067, 0.0006365765002556145, 0.006179030053317547, 0.183952197432518], [0.004916549194604158, 0.004587911535054445, 0.006970101036131382, 0.00858533289283514, 0.002715707290917635, 0.0028984439559280872, 0.0006683073006570339, 0.004440039861947298, 0.4792018234729767, 0.000495097425300628, 0.00048353467718698084, 0.0002778747002594173, 0.00023284953203983605, 0.0007232891512103379, 0.0008334909798577428, 0.002175401896238327, 0.4797942340373993], [0.004823579452931881, 0.08613643795251846, 0.046431463211774826, 0.01404997706413269, 0.06901515275239944, 0.186106875538826, 0.1479484587907791, 0.04693770781159401, 0.1904032975435257, 0.003807324916124344, 0.0029984903521835804, 0.0006426495965570211, 0.006278607994318008, 0.0008054818026721478, 0.0009979152819141746, 0.0019089989364147186, 0.19070765376091003], [0.0015614632284268737, 0.013726693578064442, 0.010440804995596409, 0.015902111306786537, 0.025265377014875412, 0.14347372949123383, 0.15251313149929047, 0.018069107085466385, 0.3025244176387787, 0.005606281571090221, 0.001221132348291576, 0.0007744447211734951, 0.0025148848071694374, 0.00040608234121464193, 0.0010330518707633018, 0.0020804970990866423, 0.3028867244720459], [0.016508065164089203, 0.02882392331957817, 0.017055852338671684, 0.014521168544888496, 0.002405213424935937, 0.010217517614364624, 0.006835163105279207, 0.030444404110312462, 0.4195799231529236, 0.006856197956949472, 0.01098709274083376, 0.00044689461356028914, 0.002688364125788212, 0.0013488751137629151, 0.0011925341095775366, 0.010072179138660431, 0.42001670598983765], [0.004602294880896807, 0.035371385514736176, 0.014008241705596447, 0.009971531108021736, 0.009580656886100769, 0.06832344830036163, 0.009846439585089684, 0.039506785571575165, 0.3995838761329651, 0.0028326997999101877, 0.002592699835076928, 0.0005638798465952277, 0.0008217107388190925, 0.0004992752801626921, 0.00022885753423906863, 0.0019354952964931726, 0.3997306227684021], [0.03437762334942818, 0.04071313515305519, 0.005630429834127426, 0.007909218780696392, 0.0022738506086170673, 0.0037646866403520107, 0.0008697047014720738, 0.01726190373301506, 0.3828907608985901, 0.09313038736581802, 0.01115424931049347, 0.0016766426851972938, 0.001661903690546751, 0.0006327586015686393, 0.0005437562358565629, 0.012841450050473213, 0.3826677203178406], [0.0118757588788867, 0.010547298938035965, 0.015713268890976906, 0.004203309305012226, 0.002388142514973879, 0.005080929026007652, 0.0007666688761673868, 0.007001087535172701, 0.4492567479610443, 0.008105170913040638, 0.010031886398792267, 0.003984170034527779, 0.0040039196610450745, 0.0033216525334864855, 0.004154632333666086, 0.010170423425734043, 0.44939473271369934], [0.00242200237698853, 0.0006884213071316481, 0.0010571640450507402, 0.0002763421507552266, 0.00018616033776197582, 0.0003920215822290629, 1.3083158592053223e-05, 0.0003109037643298507, 0.40929940342903137, 0.009260457940399647, 0.019178481772542, 0.02430614084005356, 0.016871890053153038, 0.0205436609685421, 0.009651831351220608, 0.07537394762039185, 0.41016823053359985], [0.004388017579913139, 0.002366981701925397, 0.03622645512223244, 0.0009531985269859433, 0.0002512405626475811, 0.0004244873416610062, 4.269340570317581e-05, 0.0003534597344696522, 0.37502631545066833, 0.007312152534723282, 0.030159318819642067, 0.009330742061138153, 0.011044470593333244, 0.02573368512094021, 0.034838516265153885, 0.08544372022151947, 0.37610459327697754], [0.0009547278750687838, 0.0002353080635657534, 0.0006676624761894345, 6.409281195374206e-05, 0.00014516402734443545, 0.0009299312951043248, 6.701538222841918e-05, 0.00026237909332849085, 0.35412874817848206, 0.00664070388302207, 0.007738995831459761, 0.034573283046483994, 0.0982760339975357, 0.044279731810092926, 0.0750938430428505, 0.020250245928764343, 0.3556921184062958], [0.002919350517913699, 0.00014477870718110353, 0.0002495268709026277, 9.211659198626876e-05, 8.105031156446785e-05, 0.00046425312757492065, 3.639682472567074e-05, 0.0002960775454994291, 0.266645222902298, 0.0034487799275666475, 0.007037733681499958, 0.03626633808016777, 0.07264333218336105, 0.16536551713943481, 0.14654715359210968, 0.030192406848073006, 0.267569899559021], [0.0057327416725456715, 0.00039516514516435564, 0.0010263306321576238, 9.072724787984043e-05, 9.439009591005743e-05, 8.05477102403529e-05, 2.011364631471224e-05, 0.0004609979805536568, 0.3992825448513031, 0.0013898939359933138, 0.010485448874533176, 0.00984457228332758, 0.07212023437023163, 0.02815556339919567, 0.05751651152968407, 0.012880034744739532, 0.400424063205719], [0.009527510963380337, 0.0007869577966630459, 0.002823961665853858, 0.00030767550924792886, 0.00032794426078908145, 0.00022554697352461517, 4.873703437624499e-05, 0.0006668545538559556, 0.36844947934150696, 0.0012574668508023024, 0.021574070677161217, 0.022150013595819473, 0.11362261325120926, 0.04010310024023056, 0.026650484651327133, 0.021952174603939056, 0.36952540278434753], [0.0030902656726539135, 0.0009195098537020385, 0.002098046476021409, 0.00016877925372682512, 0.0001234145020134747, 0.00043374343658797443, 4.0177517803385854e-05, 0.0005335178575478494, 0.40975987911224365, 0.003098654095083475, 0.0851627066731453, 0.007376433815807104, 0.024546731263399124, 0.015984579920768738, 0.014852664433419704, 0.020247885957360268, 0.41156280040740967], [0.011872228235006332, 0.01052071899175644, 0.015665380284190178, 0.004193538334220648, 0.002381826750934124, 0.005071197170764208, 0.0007656891830265522, 0.006987031549215317, 0.44931381940841675, 0.008105535060167313, 0.010029582306742668, 0.00398656539618969, 0.004004540853202343, 0.0033217878080904484, 0.004157494753599167, 0.010170815512537956, 0.4494522511959076]], [[0.008913540281355381, 0.0006829314515925944, 0.0031281630508601665, 0.00030009192414581776, 0.00035089219454675913, 0.001759113627485931, 0.00012913417594972998, 0.002070555230602622, 0.12233410030603409, 0.13772368431091309, 0.20343159139156342, 0.055641625076532364, 0.0701574981212616, 0.09910611808300018, 0.10137367993593216, 0.07043067365884781, 0.12246666848659515], [0.02751176618039608, 0.024159034714102745, 0.023592820391058922, 0.1445832997560501, 0.09750015288591385, 0.202224999666214, 0.07653571665287018, 0.25673431158065796, 0.0577586367726326, 0.009779456071555614, 0.003952621482312679, 0.0024773424956947565, 0.005470562726259232, 0.0023116853553801775, 0.0025955087039619684, 0.0050215646624565125, 0.05779048427939415], [0.024475907906889915, 0.04074174165725708, 0.0396224707365036, 0.03859742730855942, 0.03222135081887245, 0.028866969048976898, 0.018479159101843834, 0.07570339739322662, 0.32481980323791504, 0.004880881868302822, 0.024638567119836807, 0.0037614803295582533, 0.007175808772444725, 0.0018003600416705012, 0.00440263282507658, 0.004995821043848991, 0.3248162269592285], [0.008884324692189693, 0.022125890478491783, 0.009825317189097404, 0.0071654715575277805, 0.09772569686174393, 0.27357006072998047, 0.15740445256233215, 0.07360731810331345, 0.17294158041477203, 0.0015457518165931106, 0.0008029846358112991, 0.0005358491907827556, 0.00021044538880232722, 0.0002988128107972443, 0.0002829236618708819, 0.00037414743565022945, 0.1726989895105362], [0.018512140959501266, 0.017526833340525627, 0.024002408608794212, 0.008231657557189465, 0.023621628060936928, 0.05641362816095352, 0.013824665918946266, 0.046111639589071274, 0.3905484080314636, 0.006062052678316832, 0.0015031128423288465, 0.0006979292957112193, 0.000531914469320327, 0.0007963349926285446, 0.0006721874815411866, 0.0009894188260659575, 0.3899540305137634], [0.01988168992102146, 0.011795835569500923, 0.01707560196518898, 0.01203068532049656, 0.014804729260504246, 0.021116729825735092, 0.008912310935556889, 0.042481083422899246, 0.4177875220775604, 0.008459176868200302, 0.001814587158150971, 0.0017486230935901403, 0.0016087424010038376, 0.0004658525576815009, 0.00046563157229684293, 0.0017203915631398559, 0.41783076524734497], [0.018928244709968567, 0.030062800273299217, 0.009632110595703125, 0.012683519162237644, 0.03175576776266098, 0.050014324486255646, 0.02692190743982792, 0.14257201552391052, 0.3364681899547577, 0.002494734711945057, 0.0014001242816448212, 0.00022686805459670722, 0.00018708065908867866, 6.835155363660306e-05, 0.0001292120141442865, 0.0005419838707894087, 0.3359127342700958], [0.020654411986470222, 0.009708467870950699, 0.01484447717666626, 0.005635581444948912, 0.005327051039785147, 0.0017440877854824066, 0.0007545474800281227, 0.0054176882840693, 0.4599474370479584, 0.0015233741141855717, 0.004458594601601362, 0.002075082855299115, 0.001972536789253354, 0.0014049700694158673, 0.0015179242473095655, 0.002926965244114399, 0.46008673310279846], [0.011228637769818306, 0.005883045960217714, 0.016290275380015373, 0.006677302066236734, 0.0024471115320920944, 0.00513409823179245, 0.0019039304461330175, 0.005942048039287329, 0.43917980790138245, 0.008366926573216915, 0.014395671896636486, 0.00581879448145628, 0.008429646492004395, 0.007404949050396681, 0.006506940815597773, 0.014795057475566864, 0.43959569931030273], [0.00846025999635458, 0.0019214152125641704, 0.0017327957320958376, 0.00046790350461378694, 0.00016445685469079763, 0.0004813381237909198, 1.4800290955463424e-05, 0.001295703579671681, 0.27926596999168396, 0.05723419040441513, 0.05265139788389206, 0.012116220779716969, 0.03297659382224083, 0.03268353268504143, 0.052441976964473724, 0.18608899414539337, 0.28000253438949585], [0.005607645493000746, 0.000500095309689641, 0.0006661454099230468, 0.00041022986988537014, 0.00019211370090488344, 0.0011753732105717063, 0.00010459329496370628, 0.0005150376819074154, 0.10101576894521713, 0.03585054352879524, 0.04353448003530502, 0.060530513525009155, 0.20973624289035797, 0.07495477050542831, 0.1386769711971283, 0.22527427971363068, 0.10125516355037689], [0.0031953253783285618, 0.0001699210552033037, 0.0005718045867979527, 5.319255433278158e-05, 0.00010029536497313529, 0.00025709191686473787, 1.1546352652658243e-05, 0.0005885058199055493, 0.29203155636787415, 0.03565583750605583, 0.014455920085310936, 0.015718411654233932, 0.0232790969312191, 0.07432617247104645, 0.10934000462293625, 0.13751719892024994, 0.292728066444397], [0.006303438451141119, 0.0004736166447401047, 0.0006107649533078074, 0.000232794918701984, 0.00021594610007014126, 0.0007799601880833507, 3.803833169513382e-05, 0.0018736189231276512, 0.26635947823524475, 0.054509490728378296, 0.024582084268331528, 0.00883593037724495, 0.06305274367332458, 0.08420052379369736, 0.14148066937923431, 0.07952277362346649, 0.2669280767440796], [0.0038487864658236504, 0.00015592215640936047, 0.00042468926403671503, 3.970479156123474e-05, 8.894040365703404e-05, 0.00016048956604208797, 8.422052815149073e-06, 0.00034785515163093805, 0.2874422073364258, 0.024063101038336754, 0.010985521599650383, 0.014809911139309406, 0.27835899591445923, 0.03128990903496742, 0.04255788028240204, 0.017614761367440224, 0.28780290484428406], [0.004141564015299082, 0.00011860784434247762, 0.0004029510309919715, 4.821887705475092e-05, 0.00014665107300970703, 0.0002101055288221687, 1.4009598999109585e-05, 0.00042269821278750896, 0.3891921639442444, 0.020305251702666283, 0.006058109924197197, 0.01306024007499218, 0.13343219459056854, 0.014593067578971386, 0.014638426713645458, 0.013438066467642784, 0.3897777497768402], [0.0035496836062520742, 0.00017536882660351694, 0.00031609530560672283, 0.00013904485967941582, 0.0001091164376703091, 0.00018140740576200187, 2.416700590401888e-05, 0.0004794143605977297, 0.2794491946697235, 0.011725141666829586, 0.026393679901957512, 0.05920784920454025, 0.07417434453964233, 0.09884730726480484, 0.14340732991695404, 0.021796440705657005, 0.2800244987010956], [0.011221363209187984, 0.0058611370623111725, 0.016246208921074867, 0.0066537074744701385, 0.0024400674737989902, 0.005121526774019003, 0.0018985304050147533, 0.005926494486629963, 0.4392649233341217, 0.008359838277101517, 0.014372322708368301, 0.005819439422339201, 0.0084309671074152, 0.007405674550682306, 0.006508531514555216, 0.014788822270929813, 0.439680278301239]], [[0.0306701622903347, 0.1292310506105423, 0.10861409455537796, 0.08514351397752762, 0.10937508940696716, 0.0569685660302639, 0.05747164413332939, 0.021217547357082367, 0.11061517149209976, 0.016052134335041046, 0.06287457793951035, 0.025008130818605423, 0.004577512387186289, 0.007040305994451046, 0.005467359907925129, 0.05901488661766052, 0.11065822094678879], [0.03356469050049782, 0.21835041046142578, 0.02970985881984234, 0.03822793439030647, 0.02221178635954857, 0.018977049738168716, 0.010037008672952652, 0.08172161877155304, 0.17314298450946808, 0.019709866493940353, 0.09214501082897186, 0.004933816846460104, 0.0051571037620306015, 0.003140565473586321, 0.0043029142543673515, 0.07132761925458908, 0.17333978414535522], [0.0723181962966919, 0.036544524133205414, 0.02399425394833088, 0.01596604473888874, 0.016080062836408615, 0.01109517365694046, 0.007149949669837952, 0.08885099738836288, 0.3059309720993042, 0.004997994750738144, 0.035782746970653534, 0.005109894089400768, 0.010521999560296535, 0.009112564846873283, 0.013246867805719376, 0.03709539398550987, 0.30620241165161133], [0.01740470714867115, 0.059176620095968246, 0.021376149728894234, 0.03125555440783501, 0.014173476956784725, 0.05698207765817642, 0.009542708285152912, 0.02592284232378006, 0.2579106390476227, 0.014003976248204708, 0.08979861438274384, 0.031223073601722717, 0.006575165782123804, 0.0029036386404186487, 0.006337929517030716, 0.0970286875963211, 0.25838419795036316], [0.02452060393989086, 0.01349394116550684, 0.007710483390837908, 0.0056761871092021465, 0.01003273669630289, 0.013025617226958275, 0.004285040311515331, 0.01440286822617054, 0.42611417174339294, 0.004331996664404869, 0.02761840634047985, 0.006583582144230604, 0.002759317634627223, 0.000283123372355476, 0.0004700732242781669, 0.012028670869767666, 0.426663339138031], [0.011455507948994637, 0.007416325155645609, 0.006022854708135128, 0.008872303180396557, 0.013097690418362617, 0.012978608720004559, 0.006898950319737196, 0.014621845446527004, 0.43546822667121887, 0.0021214657463133335, 0.012420115992426872, 0.011270076967775822, 0.003285323502495885, 0.0017255217535421252, 0.0019435553112998605, 0.014284607954323292, 0.4361169636249542], [0.018834713846445084, 0.027964124456048012, 0.005101025104522705, 0.010365412570536137, 0.02215101383626461, 0.009694105945527554, 0.01132423896342516, 0.015313981100916862, 0.40941616892814636, 0.003711278084665537, 0.020651908591389656, 0.0056063514202833176, 0.0012981811305508018, 0.0004608895687852055, 0.0007714182720519602, 0.02760343626141548, 0.40973177552223206], [0.030829759314656258, 0.0648462176322937, 0.023091088980436325, 0.04657803475856781, 0.0401473343372345, 0.024723216891288757, 0.01378705631941557, 0.2512493431568146, 0.08023130148649216, 0.0229116789996624, 0.031449105590581894, 0.010500955395400524, 0.004389235749840736, 0.0022131619043648243, 0.0034238931257277727, 0.2693057060241699, 0.08032295852899551], [0.005665841978043318, 0.0019548346754163504, 0.003917010501027107, 0.0008303453214466572, 0.0008599025895819068, 0.0011831223964691162, 0.00021934133837930858, 0.004241488873958588, 0.48433801531791687, 0.0005546637694351375, 0.005041162483394146, 0.0005469773896038532, 0.00041578782838769257, 0.0009226111578755081, 0.0005357841146178544, 0.004128101281821728, 0.4846450686454773], [0.007197539787739515, 0.23467621207237244, 0.013682407326996326, 0.015267045237123966, 0.003186084097251296, 0.021842489019036293, 0.012569568119943142, 0.027540503069758415, 0.3220365345478058, 0.0021230594720691442, 0.0018589351093396544, 0.0028974744491279125, 0.000833368394523859, 0.0013429964892566204, 0.0028887407388538122, 0.007370350416749716, 0.32268673181533813], [0.0019134434405714273, 0.8684930205345154, 0.013678018003702164, 0.008373302407562733, 0.000564310816116631, 0.001247801585122943, 0.00232503330335021, 0.015443975105881691, 0.040955789387226105, 0.0006007515476085246, 0.0022852441761642694, 9.639908967074007e-05, 5.9586280258372426e-05, 0.00016088646952994168, 0.0003261975944042206, 0.0024946739431470633, 0.04098157584667206], [0.013910728506743908, 0.042021580040454865, 0.016952531412243843, 0.03136570006608963, 0.014598763547837734, 0.1592356562614441, 0.015181680209934711, 0.022869009524583817, 0.31176286935806274, 0.004690026864409447, 0.005013104062527418, 0.012045932933688164, 0.007709654048085213, 0.0047163693234324455, 0.005965595133602619, 0.019548481330275536, 0.31241244077682495], [0.01881362870335579, 0.11324555426836014, 0.04581518471240997, 0.006511281244456768, 0.0021469241473823786, 0.018125640228390694, 0.004843913950026035, 0.032868269830942154, 0.3230080008506775, 0.0020155785605311394, 0.010078292340040207, 0.002984242979437113, 0.009081819094717503, 0.03491366282105446, 0.04017724469304085, 0.011806333437561989, 0.323564350605011], [0.022907566279172897, 0.06779477745294571, 0.029140233993530273, 0.003092866623774171, 0.0005785891553387046, 0.005700143054127693, 0.0015060430159792304, 0.031208284199237823, 0.3441377282142639, 0.0019301283173263073, 0.007523950655013323, 0.00226850644685328, 0.005685861688107252, 0.051253870129585266, 0.06688147783279419, 0.013709302060306072, 0.34468066692352295], [0.03022623248398304, 0.06777824461460114, 0.04176308959722519, 0.008315070532262325, 0.0011556034442037344, 0.014348349533975124, 0.004499042872339487, 0.04966636374592781, 0.33269402384757996, 0.0022566067054867744, 0.006280732341110706, 0.0025585852563381195, 0.005187130067497492, 0.03270724043250084, 0.04982475936412811, 0.017508534714579582, 0.3332303464412689], [0.006955794524401426, 0.17732207477092743, 0.01780001074075699, 0.0211767740547657, 0.0011854704935103655, 0.02470485307276249, 0.004915482830256224, 0.06268854439258575, 0.2819146513938904, 0.005918231792747974, 0.011893280781805515, 0.010618392378091812, 0.0022999285720288754, 0.008420434780418873, 0.015374165959656239, 0.06433295458555222, 0.28247886896133423], [0.005663195159286261, 0.00195591920055449, 0.0039177704602479935, 0.0008304807706736028, 0.0008589510107412934, 0.0011833644239231944, 0.00021922329324297607, 0.004245697520673275, 0.4843338429927826, 0.0005552212824113667, 0.005040270276367664, 0.00054716388694942, 0.0004161388787906617, 0.0009227770497091115, 0.0005362536758184433, 0.004131972789764404, 0.48464182019233704]], [[0.014101995155215263, 0.0031319938134402037, 0.013989981263875961, 0.0014078596141189337, 0.0012245603138580918, 0.0025030383840203285, 0.0005961312563158572, 0.006321529857814312, 0.42616912722587585, 0.03948110714554787, 0.016117794439196587, 0.00408739922568202, 0.0059061478823423386, 0.00850494671612978, 0.009124873206019402, 0.0209654588252306, 0.42636609077453613], [0.00667915353551507, 0.07592984288930893, 0.13586674630641937, 0.016810910776257515, 0.005916202906519175, 0.020199300721287727, 0.005483024753630161, 0.0344231016933918, 0.3477858603000641, 0.001067489036358893, 0.0010366725036874413, 0.0001745819899952039, 0.00017410116561222821, 0.00014942655980121344, 0.00018256505427416414, 0.0005827136337757111, 0.3475383520126343], [0.0013855311553925276, 0.008228878490626812, 0.01238162536174059, 0.0027839727699756622, 0.0006923131295479834, 0.0024311773013323545, 0.0007201561238616705, 0.02193097025156021, 0.47435352206230164, 0.00041124087874777615, 0.00019700895063579082, 4.164076381130144e-05, 4.4116928620496765e-05, 4.400230318424292e-05, 8.783100929576904e-05, 0.0006969596142880619, 0.4735690653324127], [0.002417391398921609, 0.3900287449359894, 0.36608269810676575, 0.010427892208099365, 0.003142738016322255, 0.007896148599684238, 0.006289131008088589, 0.018262505531311035, 0.0960964635014534, 0.0015240313950926065, 0.0008374750032089651, 7.17956354492344e-05, 8.443900151178241e-05, 0.00012302333198022097, 0.00021348362497519702, 0.0005965592572465539, 0.09590543806552887], [0.0015184064395725727, 0.22997330129146576, 0.18070445954799652, 0.10410165041685104, 0.008204692974686623, 0.010274489410221577, 0.006799566559493542, 0.014073384925723076, 0.22097383439540863, 0.0013285573804751039, 0.0005724547663703561, 0.00010126011329703033, 9.585007501300424e-05, 0.00011687017831718549, 0.00019451510161161423, 0.0004434861766640097, 0.22052322328090668], [0.005328285042196512, 0.2500512897968292, 0.19683198630809784, 0.07495176047086716, 0.00790240429341793, 0.016132958233356476, 0.007773575372993946, 0.019797131419181824, 0.20896711945533752, 0.0012602112255990505, 0.0013638047967106104, 7.213281787699088e-05, 0.00010111636220244691, 7.543480751337484e-05, 0.00015952668036334217, 0.0006899815052747726, 0.20854128897190094], [0.002569479402154684, 0.36234259605407715, 0.21984915435314178, 0.14997535943984985, 0.026156507432460785, 0.019880864769220352, 0.01249348558485508, 0.00593593530356884, 0.1001373901963234, 0.0001871999556897208, 0.0003869208157993853, 2.979900273203384e-05, 1.823881575546693e-05, 1.1048969099647366e-05, 2.4806040528346784e-05, 0.00010531870066188276, 0.09989587962627411], [0.004533677361905575, 0.22503994405269623, 0.26184529066085815, 0.10608796030282974, 0.0166179146617651, 0.04023632034659386, 0.020721064880490303, 0.02675922028720379, 0.14761383831501007, 0.0014124589506536722, 0.00039877681410871446, 7.560791709693149e-05, 0.00023732869885861874, 0.00015420631098095328, 0.00017564419249538332, 0.0006804355653002858, 0.1474103033542633], [0.007221407722681761, 0.006796389352530241, 0.010733025148510933, 0.007969130761921406, 0.007599503733217716, 0.014522723853588104, 0.002767052734270692, 0.00809000339359045, 0.4498912990093231, 0.006547246593981981, 0.004517809022217989, 0.0035991850309073925, 0.003991721197962761, 0.0026475691702216864, 0.0033872632775455713, 0.009543891996145248, 0.4501747786998749], [0.3512765169143677, 0.014916264452040195, 0.021187733858823776, 0.0066393110901117325, 0.0036652141716331244, 0.011030099354684353, 0.0008259069290943444, 0.0042607784271240234, 0.23751099407672882, 0.039788030087947845, 0.02307143807411194, 0.011269490234553814, 0.014527969062328339, 0.007612792309373617, 0.007331886328756809, 0.00760337058454752, 0.23748233914375305], [0.39027178287506104, 0.05514398217201233, 0.09285689145326614, 0.0015682718949392438, 0.0006360787665471435, 0.0021107911597937346, 0.00022214429918676615, 0.005069678649306297, 0.19254492223262787, 0.015209605917334557, 0.0291146170347929, 0.00305691035464406, 0.001490374794229865, 0.002215137705206871, 0.0020979573018848896, 0.01397025492042303, 0.19242073595523834], [0.04371083527803421, 0.004963824525475502, 0.00699589354917407, 0.0007851978880353272, 0.00011472513142507523, 0.0006069503724575043, 9.038080315804109e-05, 0.007394604850560427, 0.33151960372924805, 0.04085860401391983, 0.1715882122516632, 0.0026457186322659254, 0.0058319298550486565, 0.007919266819953918, 0.015167702920734882, 0.02824433520436287, 0.3315621316432953], [0.046981312334537506, 0.004018538165837526, 0.009274945594370365, 0.0004495770263019949, 0.00029229841311462224, 0.0009502055472694337, 8.165868348442018e-05, 0.002550405915826559, 0.27733877301216125, 0.03745574131608009, 0.17546671628952026, 0.016825569793581963, 0.05789818987250328, 0.015623614192008972, 0.020805571228265762, 0.056364353746175766, 0.2776225805282593], [0.04903415963053703, 0.0016058763721957803, 0.002727618906646967, 0.00013428492820821702, 8.316965977428481e-05, 0.00015778667875565588, 2.465477882651612e-05, 0.0011611670488491654, 0.31936269998550415, 0.030109889805316925, 0.12831424176692963, 0.009387314319610596, 0.07172176986932755, 0.010500491596758366, 0.01019746158272028, 0.04580685868859291, 0.3196706175804138], [0.04805561155080795, 0.001573901972733438, 0.00275638815946877, 0.00014177306729834527, 8.820529910735786e-05, 0.00014219914737623185, 2.893396776926238e-05, 0.0013406769139692187, 0.2199636995792389, 0.053565435111522675, 0.2178190052509308, 0.014501224271953106, 0.13189467787742615, 0.0197797492146492, 0.01715659350156784, 0.05102687329053879, 0.22016507387161255], [0.02694329060614109, 0.0038517338689416647, 0.005755877587944269, 0.0005134200328029692, 0.00020089467579964548, 0.0008437603246420622, 7.693852967349812e-05, 0.0016048187389969826, 0.05389372631907463, 0.1562335342168808, 0.5041548609733582, 0.0427958220243454, 0.0445295125246048, 0.0338008739054203, 0.04015284404158592, 0.03066342882812023, 0.05398472398519516], [0.0072292122058570385, 0.006797793321311474, 0.010727515444159508, 0.007966537028551102, 0.0075949616730213165, 0.014515780843794346, 0.002764822682365775, 0.008085415698587894, 0.449893057346344, 0.006554997526109219, 0.00451909564435482, 0.003602497512474656, 0.003991097677499056, 0.00264632236212492, 0.0033866448793560266, 0.009547917172312737, 0.45017632842063904]], [[0.008094942197203636, 0.05347401648759842, 0.06868884712457657, 0.022479234263300896, 0.007062177639454603, 0.07778959721326828, 0.02728486992418766, 0.31556832790374756, 0.18579818308353424, 0.003284105332568288, 0.005533246323466301, 0.000588096387218684, 0.002263931091874838, 0.0011695821303874254, 0.007385763805359602, 0.027563799172639847, 0.18597130477428436], [0.032820768654346466, 0.015053312294185162, 0.006902780849486589, 0.12183355540037155, 0.0030391982290893793, 0.009068361483514309, 0.004252078011631966, 0.09053013473749161, 0.3315392732620239, 0.008241813629865646, 0.005077504087239504, 0.0014919729437679052, 0.0005980879068374634, 0.0005341222858987749, 0.002417521784082055, 0.035039082169532776, 0.3315604627132416], [0.016076579689979553, 0.17232777178287506, 0.026452945545315742, 0.014585222117602825, 0.00563916377723217, 0.016264697536826134, 0.0018672752194106579, 0.013093174435198307, 0.35499516129493713, 0.0045522586442530155, 0.010172532871365547, 0.0009862747974693775, 0.0018992063123732805, 0.0012225777609273791, 0.001290588523261249, 0.0036098496057093143, 0.3549647033214569], [0.02365567535161972, 0.027602864429354668, 0.04038480296730995, 0.02793971821665764, 0.015309684909880161, 0.04333667829632759, 0.17577026784420013, 0.01426380779594183, 0.2972904443740845, 0.003046703524887562, 0.008387365378439426, 0.0007170605240389705, 0.0073933349922299385, 0.0005713555146940053, 0.004207481164485216, 0.012904184870421886, 0.29721856117248535], [0.00926718395203352, 0.0078605767339468, 0.0025192447938024998, 0.12503410875797272, 0.03325778618454933, 0.003977193962782621, 0.00436778087168932, 0.003456494305282831, 0.4004097282886505, 0.0009426865144632757, 0.002076572272926569, 0.0046088807284832, 0.00018185916997026652, 6.9033162617415655e-06, 9.313737973570824e-05, 0.0015832779463380575, 0.400356650352478], [0.011854424141347408, 0.010262026451528072, 0.0023927909787744284, 0.01831168681383133, 0.06493142992258072, 0.02948126196861267, 0.0030606219079345465, 0.006773980334401131, 0.41928762197494507, 0.001949335797689855, 0.0026379567570984364, 0.003050676081329584, 0.0023753070272505283, 0.0002932828792836517, 0.00032652748632244766, 0.0028833970427513123, 0.4201277792453766], [0.0006215369794517756, 0.0013187429867684841, 0.0010648934403434396, 0.001685951603576541, 0.0028078299947082996, 0.329177588224411, 0.002374198054894805, 0.0010156488278880715, 0.328119158744812, 0.0006956520956009626, 0.00028857923462055624, 0.0004372325201984495, 0.0003889017680194229, 0.0004590452299453318, 0.0007199443061836064, 0.00028731179190799594, 0.32853779196739197], [0.010330775752663612, 0.003101440379396081, 0.003557569347321987, 0.003753412514925003, 0.0019682685378938913, 0.03873402625322342, 0.032005567103624344, 0.012639900669455528, 0.43935567140579224, 0.0008920336258597672, 0.0014183634193614125, 0.00034004414919763803, 0.001212591421790421, 0.0005576686235144734, 0.006215730682015419, 0.004421238787472248, 0.43949562311172485], [0.003451764350757003, 0.004260295536369085, 0.011713149026036263, 0.001808184664696455, 0.0011895919451490045, 0.019062334671616554, 0.0011603202437981963, 0.007481859065592289, 0.4696280062198639, 0.00047569835442118347, 0.001369165489450097, 0.0004413688729982823, 0.0009748844895511866, 0.001188384834676981, 0.0030356338247656822, 0.0022334882523864508, 0.47052595019340515], [0.02605816349387169, 0.003016142174601555, 0.002690139226615429, 0.007562269456684589, 0.002303873421624303, 0.0036895438097417355, 0.0018773652845993638, 0.07105898857116699, 0.40488743782043457, 0.0035810673143714666, 0.009799979627132416, 0.0013905256055295467, 0.0010200737742707133, 0.0007637428352609277, 0.002712862566113472, 0.05201295018196106, 0.4055749475955963], [0.0035913274623453617, 0.0010720061836764216, 0.0010018488392233849, 0.0033355047926306725, 0.0001323146279901266, 0.003134104423224926, 0.0002547465555835515, 0.0032371242996305227, 0.3600497543811798, 0.03255592659115791, 0.00844657327979803, 0.0013226051814854145, 0.0013993188040331006, 0.0025083678774535656, 0.028355672955513, 0.18871331214904785, 0.3608894348144531], [0.0070548816584050655, 0.0023712152615189552, 0.001550803193822503, 0.003921508323401213, 0.006832292303442955, 0.0034315071534365416, 0.00039159043808467686, 0.002478585345670581, 0.44345492124557495, 0.0061225262470543385, 0.01490763295441866, 0.023628395050764084, 0.01964668557047844, 0.0012203985825181007, 0.003153120167553425, 0.015161688439548016, 0.44467225670814514], [0.0007552026654593647, 0.0005630005616694689, 0.0010447625536471605, 0.0016857271548360586, 0.0006955614662729204, 0.0016771393129602075, 2.3739517928333953e-05, 0.0006778514361940324, 0.43621811270713806, 0.0028379284776747227, 0.00440567173063755, 0.10615360736846924, 0.0010189628228545189, 0.002470681443810463, 0.0014177076518535614, 0.0011358860647305846, 0.4372183084487915], [0.0048145423643291, 0.0006659235223196447, 0.002118205651640892, 0.0002564437163528055, 0.0005792009178549051, 0.0019248262979090214, 7.794657722115517e-05, 0.001564805512316525, 0.42184388637542725, 0.002308264374732971, 0.003088922705501318, 0.0025350600481033325, 0.09524479508399963, 0.012615809217095375, 0.02285119704902172, 0.004467251244932413, 0.42304283380508423], [0.0017860936932265759, 0.0003986872034147382, 0.0010466970270499587, 0.00010602938709780574, 0.00027892348589375615, 0.004014311823993921, 6.816748646087945e-05, 0.001171948853880167, 0.37222161889076233, 0.0019134641624987125, 0.0028039757162332535, 0.0013835164718329906, 0.051162686198949814, 0.15810172259807587, 0.028686050325632095, 0.0017096925294026732, 0.3731464147567749], [0.0012392906937748194, 0.000447441911092028, 0.0004849039833061397, 0.0001046251054503955, 2.6767898816615343e-05, 0.002990967594087124, 0.0007074871100485325, 0.0026994289364665747, 0.33472374081611633, 0.0013471560087054968, 0.0016055441228672862, 7.17670627636835e-05, 0.010808278806507587, 0.0245121531188488, 0.25391072034835815, 0.02891133353114128, 0.33540835976600647], [0.0034567664843052626, 0.004264825955033302, 0.011721509508788586, 0.0018094680272042751, 0.0011919555254280567, 0.01906663365662098, 0.001162043772637844, 0.007479685824364424, 0.4695979952812195, 0.0004765710618812591, 0.0013745477190241218, 0.00044156648800708354, 0.0009788194438442588, 0.00119111523963511, 0.003048097714781761, 0.0022417947184294462, 0.4704965353012085]], [[0.011494450271129608, 0.1056753396987915, 0.14259448647499084, 0.01466490887105465, 0.003258237149566412, 0.01550604309886694, 0.003145223017781973, 0.02096683345735073, 0.13297244906425476, 0.05743110552430153, 0.03015841916203499, 0.0389116033911705, 0.1059289276599884, 0.09665253758430481, 0.0629948079586029, 0.024561140686273575, 0.1330835223197937], [0.2518675923347473, 0.12611256539821625, 0.0707661584019661, 0.025797918438911438, 0.011234050616621971, 0.016703082248568535, 0.0018467145273461938, 0.036212287843227386, 0.19849352538585663, 0.00791910570114851, 0.026128726080060005, 0.00259676412679255, 0.008003918454051018, 0.004369635134935379, 0.0027292920276522636, 0.010857478715479374, 0.1983613520860672], [0.14094854891300201, 0.020768947899341583, 0.08483533561229706, 0.015197689644992352, 0.011387383565306664, 0.015814412385225296, 0.0017038810765370727, 0.01713261753320694, 0.3235255181789398, 0.004637308418750763, 0.0087659303098917, 0.004394723568111658, 0.0051969848573207855, 0.007367085199803114, 0.00740556325763464, 0.007463669404387474, 0.32345446944236755], [0.14042551815509796, 0.05451280623674393, 0.04517815262079239, 0.11608359962701797, 0.017070801928639412, 0.03402253985404968, 0.00793897733092308, 0.040031250566244125, 0.23015020787715912, 0.013535000383853912, 0.022532662376761436, 0.010652712546288967, 0.0040230113081634045, 0.007804324850440025, 0.0044662002474069595, 0.021488994359970093, 0.230083167552948], [0.10517188906669617, 0.02593086287379265, 0.01791229471564293, 0.016029169782996178, 0.026955334469676018, 0.025387370958924294, 0.0053213778883218765, 0.02726718597114086, 0.35265544056892395, 0.003775682533159852, 0.01254457887262106, 0.014647881500422955, 0.005954829044640064, 0.0022444489877671003, 0.001237290445715189, 0.00422986876219511, 0.3527345657348633], [0.09310118108987808, 0.019886154681444168, 0.026790637522935867, 0.036002833396196365, 0.052248764783144, 0.0403936430811882, 0.010142670944333076, 0.03901827707886696, 0.28439417481422424, 0.009205828420817852, 0.022906597703695297, 0.037429023534059525, 0.01118883490562439, 0.012235239148139954, 0.009026508778333664, 0.011575348675251007, 0.2844543159008026], [0.17094743251800537, 0.03463995084166527, 0.022731846198439598, 0.03674470633268356, 0.030596012249588966, 0.05025780200958252, 0.028098659589886665, 0.087189219892025, 0.24808280169963837, 0.005561640486121178, 0.004467607941478491, 0.008465217426419258, 0.0059404075145721436, 0.0010698680998757482, 0.003112250939011574, 0.014009238220751286, 0.24808534979820251], [0.45542004704475403, 0.060510557144880295, 0.04547007009387016, 0.032123271375894547, 0.01229883637279272, 0.009476783685386181, 0.004891568794846535, 0.05004727095365524, 0.09917984902858734, 0.0872807651758194, 0.009856261312961578, 0.005068885162472725, 0.002886431524530053, 0.004178632982075214, 0.0037750352639704943, 0.01835758425295353, 0.09917805343866348], [0.01808297075331211, 0.016369227319955826, 0.022413259372115135, 0.009024355560541153, 0.0037517249584198, 0.012545007281005383, 0.0015387294115498662, 0.007615323644131422, 0.42495277523994446, 0.008896546438336372, 0.012218263000249863, 0.007445402443408966, 0.004232125822454691, 0.010823560878634453, 0.009586363099515438, 0.005522599443793297, 0.42498186230659485], [0.030904555693268776, 0.005233855452388525, 0.005232740193605423, 0.006245039869099855, 0.002885732799768448, 0.0033345373813062906, 0.00021746174024883658, 0.007539806887507439, 0.320516973733902, 0.03267636522650719, 0.06684144586324692, 0.041735198348760605, 0.044929832220077515, 0.04556313529610634, 0.030500568449497223, 0.03500097617506981, 0.32064172625541687], [0.16324588656425476, 0.0377468541264534, 0.02225053496658802, 0.006403243634849787, 0.0011054535862058401, 0.001307761762291193, 0.0001230977795785293, 0.004360295366495848, 0.19181936979293823, 0.043603502213954926, 0.18681085109710693, 0.01281976979225874, 0.04040856286883354, 0.039505716413259506, 0.027644475921988487, 0.029005667194724083, 0.1918388158082962], [0.012014487758278847, 0.000724561745300889, 0.0014692392433062196, 0.001263819052837789, 0.0007874579168856144, 0.001040360308252275, 6.0711492551490664e-05, 0.0021830452606081963, 0.35230132937431335, 0.008910754695534706, 0.06052950769662857, 0.04283847659826279, 0.04604322835803032, 0.06615665555000305, 0.03554577752947807, 0.015453685075044632, 0.3526768088340759], [0.017622312530875206, 0.00336457509547472, 0.0030180918984115124, 0.0009081779280677438, 0.0008655793499201536, 0.0021538741420954466, 0.00027592063997872174, 0.0033041350543498993, 0.3011479079723358, 0.012592162936925888, 0.06187283992767334, 0.05160209536552429, 0.05003559961915016, 0.1102721244096756, 0.0592404305934906, 0.020149582996964455, 0.30157455801963806], [0.010676038451492786, 0.0018604862270876765, 0.00298200617544353, 0.0008635569247417152, 0.0008081691339612007, 0.0021948975045233965, 0.00016103209054563195, 0.003594336798414588, 0.2945776879787445, 0.01586633361876011, 0.039214838296175, 0.06276243925094604, 0.028571534901857376, 0.1381729394197464, 0.07774385064840317, 0.02470300905406475, 0.29524677991867065], [0.009150904603302479, 0.0011663652257993817, 0.004386876709759235, 0.0006134104332886636, 0.00037297443486750126, 0.0016677802195772529, 0.00034677787334658206, 0.004496353212743998, 0.26944512128829956, 0.009201380424201488, 0.026962686330080032, 0.04254379868507385, 0.03161583095788956, 0.1555890291929245, 0.13962318003177643, 0.03272422403097153, 0.2700932025909424], [0.037863388657569885, 0.006062420085072517, 0.007003359496593475, 0.011017350479960442, 0.0006147028179839253, 0.0012180289486423135, 0.0007586687570437789, 0.008524162694811821, 0.19980841875076294, 0.032465577125549316, 0.06660166382789612, 0.022771429270505905, 0.023665955290198326, 0.10512524098157883, 0.12625247240066528, 0.15012992918491364, 0.20011721551418304], [0.01809459738433361, 0.01634572632610798, 0.022411169484257698, 0.009017257951200008, 0.0037496103905141354, 0.01253217738121748, 0.0015377674717456102, 0.007608179003000259, 0.4249314069747925, 0.008907167240977287, 0.012235441245138645, 0.007458020932972431, 0.004240697715431452, 0.010841863229870796, 0.00960106123238802, 0.0055270423181355, 0.4249608814716339]]], [[[0.004501211456954479, 0.004373828414827585, 0.009144347161054611, 0.0027684099040925503, 0.0025746675673872232, 0.0037479326128959656, 0.0016625919379293919, 0.05154859274625778, 0.4297069311141968, 0.0048317089676856995, 0.013595408760011196, 0.006370397750288248, 0.0018691695295274258, 0.0030129116494208574, 0.013100193813443184, 0.017499612644314766, 0.42969197034835815], [0.005753401201218367, 0.01831168681383133, 0.02107814885675907, 0.004837893880903721, 0.0012881109723821282, 0.0030228637624531984, 0.0010686108144000173, 0.006525450851768255, 0.4655260443687439, 0.0009159205364994705, 0.004144875332713127, 0.0001511790615040809, 0.000310602190438658, 0.00045612110989168286, 0.0008489047759212554, 0.00035496437340043485, 0.46540531516075134], [0.011743827722966671, 0.03520679846405983, 0.10114102065563202, 0.006715947296470404, 0.0017529180040583014, 0.0069766356609761715, 0.004334402736276388, 0.003187409369274974, 0.36732563376426697, 0.002418787917122245, 0.0691961944103241, 0.0013466948876157403, 0.0027232251595705748, 0.0070961844176054, 0.00970343966037035, 0.001868013758212328, 0.36726292967796326], [0.009491744451224804, 0.034993384033441544, 0.006564239040017128, 0.014083215035498142, 0.02153053693473339, 0.01987009309232235, 0.009973045438528061, 0.02964828535914421, 0.42288005352020264, 0.002428583335131407, 0.002552286721765995, 0.000801368267275393, 0.00041510656592436135, 0.0004253717779647559, 0.0005719332257285714, 0.000939021585509181, 0.422831654548645], [0.005613191518932581, 0.011162448674440384, 0.0057660117745399475, 0.0162003505975008, 0.02793758362531662, 0.019466856494545937, 0.007780468091368675, 0.0032483902759850025, 0.4482859969139099, 0.0031867031939327717, 0.0006914493860676885, 0.0012891717487946153, 0.0005928617902100086, 8.706475637154654e-05, 0.00014216042472980917, 0.00036609344533644617, 0.44818317890167236], [0.0017418719362467527, 0.0061788493767380714, 0.0014878829242661595, 0.012656177394092083, 0.035600848495960236, 0.022403134033083916, 0.3129439949989319, 0.005552809685468674, 0.2972131371498108, 0.0012754567433148623, 0.0007351312087848783, 0.001718595391139388, 0.0012440882856026292, 0.00026829823036678135, 0.000921970116905868, 0.000867162540089339, 0.2971906065940857], [0.0008726202067919075, 0.006295676808804274, 0.0007531626033596694, 0.010366065427660942, 0.08210226148366928, 0.008303712122142315, 0.022033119574189186, 0.003135386621579528, 0.4322756826877594, 0.00041073214379139245, 0.0003198066842742264, 0.0004931416478939354, 0.00017012680473271757, 3.870506043313071e-05, 3.4888595109805465e-05, 0.00021492960513569415, 0.4321800470352173], [0.0022380982991307974, 0.00966330710798502, 0.008955548517405987, 0.009663127362728119, 0.047767650336027145, 0.0670449361205101, 0.04050540551543236, 0.01018594391644001, 0.39040666818618774, 0.003840586170554161, 0.0027971358504146338, 0.0054350970312952995, 0.002211071318015456, 0.002032962627708912, 0.003516688710078597, 0.0033688440453261137, 0.3903668224811554], [0.007743512745946646, 0.009111804887652397, 0.012172924354672432, 0.007813864387571812, 0.005727047566324472, 0.007207770366221666, 0.002514919266104698, 0.012152468785643578, 0.4359882175922394, 0.009005377069115639, 0.011797516606748104, 0.006628283765166998, 0.011358375661075115, 0.005317809525877237, 0.008896240964531898, 0.010583445429801941, 0.43598031997680664], [0.012588928453624249, 0.0013544835383072495, 0.0015553359407931566, 0.0020706872455775738, 0.002199663547798991, 0.002492997096851468, 0.0010217223316431046, 0.05034833028912544, 0.44348299503326416, 0.015470292419195175, 0.0027092820964753628, 0.003907528705894947, 0.0012801098637282848, 0.0003190620627719909, 0.0016870779218152165, 0.014010925777256489, 0.4435005486011505], [0.007804046850651503, 0.004072785377502441, 0.008133047260344028, 0.0004669491318054497, 0.0002093572256853804, 0.002058142563328147, 0.0003444065514486283, 0.004300117492675781, 0.4514681100845337, 0.0065030502155423164, 0.03084670566022396, 0.0024440872948616743, 0.0018245814135298133, 0.010384547524154186, 0.012381423264741898, 0.005348686594516039, 0.4514099955558777], [0.003393959952518344, 0.0005457264487631619, 0.0009249283466488123, 0.00021497557463590056, 0.0008176355040632188, 0.001818253193050623, 0.0004902033833786845, 0.0032263316679745913, 0.4439389407634735, 0.03419370576739311, 0.005556849297136068, 0.007802516687661409, 0.036292534321546555, 0.0034274854697287083, 0.004506535362452269, 0.008955223485827446, 0.44389426708221436], [0.0018320564413443208, 0.0003716461651492864, 0.000324055552482605, 0.00014362945512402803, 0.00016216984658967704, 0.000514940416906029, 4.355606506578624e-05, 0.005368218291550875, 0.46559807658195496, 0.0025404260959476233, 0.004732829984277487, 0.003940280061215162, 0.011875110678374767, 0.010931579396128654, 0.012412017211318016, 0.01364436186850071, 0.4655649960041046], [0.0014850726583972573, 0.00011802715744124725, 0.0008217638824135065, 0.00012065221380908042, 4.093854659004137e-05, 0.0005166061455383897, 0.00015953266120050102, 0.0008084694272838533, 0.37677836418151855, 0.0021748675499111414, 0.0051635028794407845, 0.002537112683057785, 0.026357294991612434, 0.028110623359680176, 0.169892355799675, 0.008167466148734093, 0.3767472803592682], [0.003294230904430151, 0.00033279674244113266, 0.0007408987148664892, 0.000442603079136461, 0.00019620837701950222, 0.0004491563013289124, 0.0001495390315540135, 0.0019639015663415194, 0.41839131712913513, 0.003579656360670924, 0.010000142268836498, 0.008302449248731136, 0.023938611149787903, 0.03047921136021614, 0.046471431851387024, 0.032934267073869705, 0.4183334708213806], [0.006158680655062199, 0.00310391653329134, 0.0015586575027555227, 0.0006172744906507432, 0.0008120969287119806, 0.0013164085103198886, 0.0003573308349587023, 0.00891830213367939, 0.45797470211982727, 0.011699290946125984, 0.016948793083429337, 0.004730531945824623, 0.004524250514805317, 0.007554435636848211, 0.008959400467574596, 0.0068288021720945835, 0.4579371511936188], [0.007743419613689184, 0.009110390208661556, 0.012174246832728386, 0.007811848074197769, 0.005725608207285404, 0.007207364309579134, 0.0025142175145447254, 0.012147991918027401, 0.4359967112541199, 0.009005923755466938, 0.011797298677265644, 0.0066274902783334255, 0.011356879957020283, 0.005317707546055317, 0.008894514292478561, 0.010579385794699192, 0.43598902225494385]], [[0.05500565841794014, 0.07907280325889587, 0.14519888162612915, 0.05313940346240997, 0.027378901839256287, 0.06464529037475586, 0.023832106962800026, 0.11844321340322495, 0.04383838176727295, 0.1628100425004959, 0.030247002840042114, 0.02467288076877594, 0.005937832407653332, 0.016153080388903618, 0.02845032513141632, 0.07733137160539627, 0.043842751532793045], [0.023144584149122238, 0.15949459373950958, 0.07547881454229355, 0.05163402855396271, 0.0034584200475364923, 0.01709667220711708, 0.0022526525426656008, 0.07899746298789978, 0.04438091069459915, 0.017276925966143608, 0.417903333902359, 0.002382363425567746, 0.0012518300209194422, 0.0021544185001403093, 0.0052099977619946, 0.05349516496062279, 0.044387832283973694], [0.03018958494067192, 0.013904554769396782, 0.10633675754070282, 0.004693527240306139, 0.0010161870159208775, 0.008086013607680798, 0.0009161251364275813, 0.013961795717477798, 0.17537234723567963, 0.0134042426943779, 0.294309139251709, 0.002574810292571783, 0.010791764594614506, 0.05678164213895798, 0.057391054928302765, 0.034848328679800034, 0.17542219161987305], [0.0322427973151207, 0.03888971731066704, 0.019525598734617233, 0.08670300990343094, 0.024935364723205566, 0.03739354386925697, 0.008489496074616909, 0.05931416153907776, 0.0636199340224266, 0.012645446695387363, 0.48845574259757996, 0.0131989112123847, 0.0008399324724450707, 0.003099683206528425, 0.002868443727493286, 0.04414999857544899, 0.06362830847501755], [0.013958035036921501, 0.009518736973404884, 0.013694201596081257, 0.021240878850221634, 0.3290359377861023, 0.015161389485001564, 0.002235882682725787, 0.01667523942887783, 0.1552753448486328, 0.00930524617433548, 0.15459536015987396, 0.06258784234523773, 0.003043663688004017, 0.003170684212818742, 0.000922352191992104, 0.03426472470164299, 0.15531444549560547], [0.09022142738103867, 0.008172409608960152, 0.013705871067941189, 0.016927240416407585, 0.006855400279164314, 0.18984641134738922, 0.00844250526279211, 0.04138652980327606, 0.08040346950292587, 0.1566128432750702, 0.15791141986846924, 0.03608215972781181, 0.0034717756789177656, 0.008231736719608307, 0.006995255593210459, 0.0943189263343811, 0.08041474223136902], [0.022063646465539932, 0.020291585475206375, 0.011164980009198189, 0.03502907603979111, 0.041304126381874084, 0.07303271442651749, 0.12347570061683655, 0.05339911952614784, 0.16995121538639069, 0.060373611748218536, 0.13012462854385376, 0.0345107801258564, 0.001532015623524785, 0.003784201806411147, 0.002534886123612523, 0.047472503036260605, 0.1699550300836563], [0.030267830938100815, 0.042354077100753784, 0.013915269635617733, 0.03567072004079819, 0.020955514162778854, 0.0346904918551445, 0.030345195904374123, 0.14292708039283752, 0.12766218185424805, 0.22668428719043732, 0.02831847593188286, 0.035298217087984085, 0.0016911088023334742, 0.005833702627569437, 0.0081093218177557, 0.08762441575527191, 0.1276521533727646], [0.0001718346611596644, 0.00021719918004237115, 0.0034541180357337, 0.00024095996923279017, 0.00011667813669191673, 0.000967999454587698, 0.00010302486771252006, 0.0017862790264189243, 0.4941920042037964, 0.0005170623189769685, 0.0001244523300556466, 0.00015349021123256534, 0.00014720424951519817, 0.0007089170394465327, 0.0013552111340686679, 0.0015393394278362393, 0.49420425295829773], [0.01588812656700611, 0.0010315702529624104, 0.008586847223341465, 0.0009884057799354196, 0.0003435119579080492, 0.002630555536597967, 0.00039102384471334517, 0.003894477616995573, 0.2348274141550064, 0.4309026598930359, 0.0009672751766629517, 0.005064318422228098, 0.0011017322540283203, 0.000966705207247287, 0.002340958919376135, 0.05520881712436676, 0.23486560583114624], [0.009342451579868793, 0.05607994645833969, 0.510791003704071, 0.006808256730437279, 0.001141824177466333, 0.004852733574807644, 0.0011920402757823467, 0.01898159086704254, 0.143728569149971, 0.0025913240388035774, 0.07708827406167984, 0.0005765605601482093, 0.0006768029415979981, 0.002820103894919157, 0.00777112552896142, 0.011798436753451824, 0.14375892281532288], [0.0028723059222102165, 0.0014120596460998058, 0.009227815084159374, 0.003988068085163832, 0.02966693788766861, 0.011397862806916237, 0.0005270162364467978, 0.006430366076529026, 0.38929644227027893, 0.0022136883344501257, 0.0019798101857304573, 0.13533657789230347, 0.002485048258677125, 0.0021746326237916946, 0.0007012259447947145, 0.01097901351749897, 0.38931092619895935], [0.0012272599851712584, 7.144422852434218e-05, 0.010025410912930965, 0.00013270610361360013, 0.0004065584216732532, 0.0015950807137414813, 0.00019645580323413014, 0.00124370155390352, 0.4234521985054016, 0.0009382801363244653, 0.0005369192222133279, 0.0023743321653455496, 0.04441436752676964, 0.051388707011938095, 0.027517491951584816, 0.01092185452580452, 0.42355719208717346], [0.0008392810705117881, 5.2232524467399344e-05, 0.02096264623105526, 1.680667446635198e-05, 3.6571407690644264e-05, 0.00014054466737434268, 9.94121000985615e-06, 0.0002865015994757414, 0.35948604345321655, 0.0001519509678473696, 0.0004473890585359186, 0.00013214154751040041, 0.0017960927216336131, 0.2205939143896103, 0.034240104258060455, 0.0012268349528312683, 0.35958102345466614], [0.0017474531196057796, 0.00022035287111066282, 0.02963101491332054, 0.00011886267748195678, 7.718217239016667e-05, 0.0004676202079281211, 8.743834041524678e-05, 0.0010765993501991034, 0.3383174538612366, 0.001049364684149623, 0.0012820132542401552, 0.00035466099507175386, 0.0019908971153199673, 0.13292162120342255, 0.1451721340417862, 0.007109761703759432, 0.3383755385875702], [0.021908197551965714, 0.00498328497633338, 0.019608203321695328, 0.004583290778100491, 0.001847091712988913, 0.004265143536031246, 0.0009079720475710928, 0.011341296136379242, 0.2740553319454193, 0.08672411739826202, 0.01579955592751503, 0.05184173956513405, 0.005202573724091053, 0.015828149393200874, 0.01651645638048649, 0.19051915407180786, 0.2740684151649475], [0.00017185213800985366, 0.00021722384553868324, 0.0034548414405435324, 0.00024097792629618198, 0.00011669990635709837, 0.0009680627845227718, 0.00010301864676875994, 0.0017863840330392122, 0.49419182538986206, 0.0005171222728677094, 0.00012446963228285313, 0.00015348604938481003, 0.00014722903142683208, 0.000708930310793221, 0.0013551667798310518, 0.0015390710905194283, 0.4942035973072052]], [[0.009983888827264309, 0.012479771859943867, 0.0379372164607048, 0.018908319994807243, 0.04736575111746788, 0.05656116455793381, 0.006177559960633516, 0.01817246899008751, 0.253245085477829, 0.11088255047798157, 0.009979486465454102, 0.13842372596263885, 0.005928863771259785, 0.0024945370387285948, 0.005972075741738081, 0.012237956747412682, 0.25324955582618713], [0.0010962304659187794, 0.005900590680539608, 0.05890846997499466, 0.002672501839697361, 0.015961067751049995, 0.031188447028398514, 0.001254487899132073, 0.004985729698091745, 0.4210337996482849, 0.007219382096081972, 0.0030119181610643864, 0.0217897966504097, 0.0009453329257667065, 0.00029282699688337743, 0.0011047397274523973, 0.0015492497477680445, 0.4210852086544037], [0.0026565995067358017, 0.006091269664466381, 0.29472246766090393, 0.004774508532136679, 0.011862169951200485, 0.06338194757699966, 0.00385458767414093, 0.011962421238422394, 0.27261829376220703, 0.006758219096809626, 0.005464981775730848, 0.017780551686882973, 0.004257873632013798, 0.003060202347114682, 0.014453092589974403, 0.003659906331449747, 0.2726409435272217], [0.002068099332973361, 0.0012092689285054803, 0.018525023013353348, 0.005870106630027294, 0.05795413628220558, 0.2288891077041626, 0.007025697268545628, 0.007116485852748156, 0.3098927438259125, 0.017222190275788307, 0.0010942252120003104, 0.029528802260756493, 0.0008049707394093275, 0.00016539113130420446, 0.0010713819647207856, 0.0016853123670443892, 0.30987706780433655], [0.009873364120721817, 0.0037150296848267317, 0.013257404789328575, 0.004095037933439016, 0.2319595366716385, 0.2108556181192398, 0.006140767131000757, 0.01784897781908512, 0.228399395942688, 0.016163554042577744, 0.001412366284057498, 0.025659902021288872, 0.0008126451866701245, 5.702931230189279e-05, 0.00026056068600155413, 0.0011112093925476074, 0.22837737202644348], [0.0036283480003476143, 0.0041855149902403355, 0.009509332478046417, 0.005139931570738554, 0.05514099821448326, 0.19311267137527466, 0.017713511362671852, 0.013732376508414745, 0.3297848701477051, 0.012830095365643501, 0.000998817733488977, 0.018047822639346123, 0.003052294021472335, 0.00040483244811184704, 0.0017198577988892794, 0.0012585220392793417, 0.3297401964664459], [0.0017280016327276826, 0.0013096170732751489, 0.009638432413339615, 0.002139687305316329, 0.07050427794456482, 0.5646119713783264, 0.014436493627727032, 0.0034729260951280594, 0.16168776154518127, 0.005289510358124971, 0.00022451739641837776, 0.002790948608890176, 0.0001560000964673236, 7.321799785131589e-05, 0.0001176289952127263, 0.00014549212937708944, 0.16167351603507996], [0.0029530408792197704, 0.0016580215888097882, 0.036084700375795364, 0.0054904380813241005, 0.02332261949777603, 0.22864317893981934, 0.00553099624812603, 0.013828903436660767, 0.3274851441383362, 0.007748475763946772, 0.0014988093171268702, 0.007949343882501125, 0.001540480530820787, 0.0014903619885444641, 0.004578712861984968, 0.002753122244030237, 0.32744359970092773], [3.902724711224437e-05, 0.00020014696929138154, 0.006746484898030758, 0.00017261934408452362, 0.0008057331433519721, 0.004272001329809427, 0.00014293991262093186, 0.000420522439526394, 0.49143433570861816, 0.000612407922744751, 0.00011897298827534541, 0.0014546907041221857, 0.0009421492577530444, 0.0003291982284281403, 0.0005824245163239539, 0.00030612730188295245, 0.49142026901245117], [0.0008159451535902917, 0.0019716641400009394, 0.0015863175503909588, 0.0014490805333480239, 0.01784668304026127, 0.015122092328965664, 0.002642808947712183, 0.0014867791905999184, 0.3657147288322449, 0.07436860352754593, 0.0007625097059644759, 0.14331616461277008, 0.0037979348562657833, 0.00026234154938720167, 0.0007955819019116461, 0.002419836353510618, 0.3656409680843353], [0.0002842471585609019, 0.0003834663948509842, 0.030082153156399727, 0.0004621845728252083, 0.0024098469875752926, 0.0069940234534442425, 0.00021518887660931796, 0.0013230638578534126, 0.45084455609321594, 0.0017722854390740395, 0.0018699874635785818, 0.042331140488386154, 0.0027967356145381927, 0.001432573888450861, 0.003567560575902462, 0.0023831757716834545, 0.4508477747440338], [0.00039180953172035515, 0.0003424776077736169, 0.0009246414410881698, 0.0003522321640048176, 0.0026745947543531656, 0.007486753631383181, 0.00020531416521407664, 0.0007922695949673653, 0.2351929247379303, 0.0056252493523061275, 0.0012809357140213251, 0.49343544244766235, 0.007410246878862381, 0.0010397847509011626, 0.0028285905718803406, 0.004843174014240503, 0.23517364263534546], [0.00026364991208538413, 8.898486703401431e-05, 0.0053575304336845875, 9.771686745807528e-05, 0.00042288913391530514, 0.01138501800596714, 6.368692993419245e-05, 0.0005012238980270922, 0.389102578163147, 0.0029816459864377975, 0.001325044664554298, 0.06445591151714325, 0.03266829624772072, 0.04981726035475731, 0.05062754824757576, 0.001787409302778542, 0.3890535831451416], [0.0003404819581191987, 5.4740292398491874e-05, 0.008900810964405537, 0.00010428200766909868, 0.00029593889485113323, 0.005408338736742735, 5.199187216931023e-05, 0.0005899358657188714, 0.4575193524360657, 0.0009523829212412238, 0.0004792267282027751, 0.006858252454549074, 0.005225388333201408, 0.009324923157691956, 0.0457257404923439, 0.0006928796065039933, 0.4574752748012543], [0.0004817889421246946, 4.532076491159387e-05, 0.0042493995279073715, 0.0002934910880867392, 0.0006679616053588688, 0.016728131100535393, 0.00012264867837075144, 0.0008263042545877397, 0.43796640634536743, 0.00406191311776638, 0.00047287490451708436, 0.016646642237901688, 0.009893788024783134, 0.021815525367856026, 0.04536492004990578, 0.0024478782434016466, 0.43791502714157104], [0.0009492544340901077, 0.00017433894390705973, 0.002477735746651888, 0.0005932174972258508, 0.0038767859805375338, 0.012750811874866486, 0.0003385962045285851, 0.002436733106151223, 0.40985995531082153, 0.007026831619441509, 0.001425848575308919, 0.12117136269807816, 0.004300972446799278, 0.0023057821672409773, 0.010606086812913418, 0.009920543059706688, 0.40978530049324036], [3.902604294125922e-05, 0.00020014384062960744, 0.00674806535243988, 0.00017257820582017303, 0.0008056421647779644, 0.004272097256034613, 0.00014288480451796204, 0.00042047977331094444, 0.49143368005752563, 0.0006123405182734132, 0.00011897396325366572, 0.001454747631214559, 0.0009421166032552719, 0.00032916056807152927, 0.0005823957035318017, 0.0003060749440919608, 0.49141961336135864]], [[0.032056502997875214, 0.010396290570497513, 0.015295733697712421, 0.03466075658798218, 0.006166001781821251, 0.04971836879849434, 0.012483939528465271, 0.13631999492645264, 0.15887533128261566, 0.04347488656640053, 0.10472960025072098, 0.028351252898573875, 0.014055064879357815, 0.03376052528619766, 0.10987947136163712, 0.050930436700582504, 0.15884585678577423], [0.008995823562145233, 0.00992346927523613, 0.007500631734728813, 0.046528611332178116, 0.04820972681045532, 0.18998265266418457, 0.11824003607034683, 0.0372595377266407, 0.2562979757785797, 0.007199322339147329, 0.00538942264392972, 0.004069355316460133, 0.0004276138497516513, 0.0016412222757935524, 0.0010410601971670985, 0.00106534524820745, 0.2562282085418701], [0.021411150693893433, 0.047703538089990616, 0.10232898592948914, 0.03733992949128151, 0.03766040876507759, 0.11897614598274231, 0.0506802462041378, 0.031268585473299026, 0.19380474090576172, 0.02286101132631302, 0.062114544212818146, 0.018452299758791924, 0.0095830662176013, 0.022546708583831787, 0.023739181458950043, 0.0057471501640975475, 0.1937822848558426], [0.00624337000772357, 0.02810903638601303, 0.002788703888654709, 0.058533985167741776, 0.05198986083269119, 0.27157357335090637, 0.06384073197841644, 0.10072252154350281, 0.2027946263551712, 0.0033327797427773476, 0.00393783301115036, 0.001168720773421228, 0.0001587439328432083, 0.0002526993921492249, 0.00019798599532805383, 0.0016236546216532588, 0.2027311772108078], [0.005281516350805759, 0.02992180362343788, 0.0028618823271244764, 0.14439712464809418, 0.03131960332393646, 0.2857397794723511, 0.11261887103319168, 0.09503091871738434, 0.14438088238239288, 0.0012080990709364414, 0.0008347250986844301, 0.00047063728561624885, 0.00010091638978337869, 0.00017698350711725652, 0.00038561035762540996, 0.0009233275195583701, 0.14434728026390076], [0.003834928385913372, 0.10124709457159042, 0.005146465729922056, 0.15266816318035126, 0.06025151163339615, 0.12032583355903625, 0.2511679530143738, 0.04756077378988266, 0.12202106416225433, 0.005186551716178656, 0.0035664166789501905, 0.0012715347111225128, 0.00020305767247918993, 0.00035754733835346997, 0.0007406423101201653, 0.002453552559018135, 0.12199698388576508], [0.0033996826969087124, 0.03380386531352997, 0.0007758723222650588, 0.12973277270793915, 0.017714232206344604, 0.16954386234283447, 0.08114208281040192, 0.0858435332775116, 0.23676303029060364, 0.0027009497862309217, 0.0010039940243586898, 0.0002459725656080991, 8.721144695300609e-06, 2.6344872821937315e-05, 4.151917528361082e-05, 0.0005614097462967038, 0.2366921454668045], [0.008400858379900455, 0.02070557326078415, 0.015996700152754784, 0.06361551582813263, 0.017598766833543777, 0.13456398248672485, 0.050780609250068665, 0.040891122072935104, 0.2709446847438812, 0.04782627522945404, 0.01911432482302189, 0.014265851117670536, 0.002070075599476695, 0.003564816899597645, 0.007148840464651585, 0.011631689965724945, 0.2708803415298462], [0.009515166282653809, 0.0057467930018901825, 0.020698145031929016, 0.006951060611754656, 0.0016171589959412813, 0.005546164233237505, 0.0018599111353978515, 0.012142998166382313, 0.4494422674179077, 0.006894415244460106, 0.009952890686690807, 0.002874460071325302, 0.0024511839728802443, 0.0039934152737259865, 0.005317137576639652, 0.005563290789723396, 0.44943347573280334], [0.010265350341796875, 0.0007271991344168782, 0.0020748984534293413, 0.006470965221524239, 0.004647182300686836, 0.02495316043496132, 0.004376586992293596, 0.019086726009845734, 0.39907562732696533, 0.01336431223899126, 0.0035965440329164267, 0.05161060392856598, 0.012056192383170128, 0.022006116807460785, 0.016485655680298805, 0.010210510343313217, 0.39899247884750366], [0.0035913074389100075, 0.0002924537402577698, 0.0014126746682450175, 0.0005315051530487835, 0.00045797027996741235, 0.0024736823979765177, 0.0007246494642458856, 0.0014117991086095572, 0.34815284609794617, 0.00928526185452938, 0.0326879546046257, 0.1453167200088501, 0.03693412244319916, 0.03979038447141647, 0.024780292063951492, 0.004088966641575098, 0.34806737303733826], [0.0017830331344157457, 0.0006095629651099443, 0.001498137484304607, 0.0011462521506473422, 0.00012160695769125596, 0.0019455889705568552, 0.00025656327488832176, 0.003645409597083926, 0.34520167112350464, 0.01398733165115118, 0.014827712439000607, 0.02972370944917202, 0.031245725229382515, 0.057907432317733765, 0.06627213954925537, 0.0846913680434227, 0.345136821269989], [0.0010460170451551676, 0.00042093763477168977, 0.00102064514067024, 0.00017245141498278826, 2.50552075158339e-05, 0.0006248498684726655, 2.0519792087725364e-05, 0.0007345680496655405, 0.21919678151607513, 0.0035739270970225334, 0.006113364826887846, 0.016842838376760483, 0.054038155823946, 0.11411003023386002, 0.2806050479412079, 0.08233063668012619, 0.21912424266338348], [0.0027897641994059086, 0.00032222093432210386, 0.0009469204233027995, 0.0003079338348470628, 3.647866833489388e-05, 0.0001821361802285537, 2.9321527108550072e-05, 0.0012315426720306277, 0.39664387702941895, 0.004479799885302782, 0.013538465835154057, 0.012492658570408821, 0.018693499267101288, 0.02576184645295143, 0.04336852207779884, 0.08259730786085129, 0.3965776860713959], [0.00315264449454844, 0.0006893305107951164, 0.0012596087763085961, 0.0010785312624648213, 0.00011652849207166582, 0.00047276317491196096, 0.0001240053679794073, 0.0013188425218686461, 0.34483689069747925, 0.01911953091621399, 0.02735181339085102, 0.021236585453152657, 0.02602602168917656, 0.04578559100627899, 0.05585281550884247, 0.10683567821979523, 0.34474286437034607], [0.004238822963088751, 0.0010416173608973622, 0.0011608782224357128, 0.001929256715811789, 0.0007014150614850223, 0.002099083038046956, 0.0003314564819447696, 0.0030433230567723513, 0.3350204527378082, 0.1508602350950241, 0.06984193623065948, 0.035625044256448746, 0.018946995958685875, 0.007210142444819212, 0.008949807845056057, 0.02401505969464779, 0.33498451113700867], [0.009513512253761292, 0.005746804177761078, 0.020702652633190155, 0.006949977483600378, 0.0016167706344276667, 0.005546154920011759, 0.0018596745794638991, 0.012139549478888512, 0.4494446814060211, 0.006893577985465527, 0.009953784756362438, 0.0028741711284965277, 0.002450744854286313, 0.00399274006485939, 0.005316801369190216, 0.005561901722103357, 0.4494365453720093]], [[0.02201945334672928, 0.009027697145938873, 0.032331161201000214, 0.004459274001419544, 0.0021900285501033068, 0.02506580762565136, 0.005229596048593521, 0.6000418066978455, 0.05712622404098511, 0.047318875789642334, 0.04208676144480705, 0.01878889836370945, 0.01100761629641056, 0.014472916722297668, 0.028678569942712784, 0.02303166873753071, 0.05712360888719559], [0.007737127598375082, 0.030812488868832588, 0.031892113387584686, 0.08731178194284439, 0.005368366371840239, 0.05073761194944382, 0.014418342150747776, 0.036519549787044525, 0.3461238741874695, 0.010027594864368439, 0.026250414550304413, 0.00016817255527712405, 0.00015765403804834932, 0.0010028915712609887, 0.001455741818062961, 0.003909650258719921, 0.34610655903816223], [0.02537836693227291, 0.31254807114601135, 0.04768180102109909, 0.06509914249181747, 0.01019293162971735, 0.015864742919802666, 0.01885341852903366, 0.021906644105911255, 0.10669095069169998, 0.014680557884275913, 0.23162738978862762, 0.0005949627957306802, 0.001334000495262444, 0.006100136786699295, 0.0038041158113628626, 0.010946354828774929, 0.10669633746147156], [0.006006432697176933, 0.03231984004378319, 0.038529787212610245, 0.028598928824067116, 0.006937342695891857, 0.030993791297078133, 0.00580917252227664, 0.008805856108665466, 0.41546109318733215, 0.0033303960226476192, 0.0036240648478269577, 0.00010415743599878624, 6.836989632574841e-05, 0.0004043545632157475, 0.0009410078637301922, 0.00268644280731678, 0.4153790771961212], [0.004309828858822584, 0.008982242085039616, 0.015822498127818108, 0.08436593413352966, 0.02391568012535572, 0.019350839778780937, 0.011883500963449478, 0.009931501932442188, 0.4088864326477051, 0.001352126244455576, 0.00044505909318104386, 0.00015005332534201443, 7.851625559851527e-05, 0.000251096673309803, 0.0004647541791200638, 0.0010720709105953574, 0.4087378978729248], [0.004350624978542328, 0.022907787933945656, 0.016605200245976448, 0.13308945298194885, 0.09927629679441452, 0.06143169105052948, 0.06401731818914413, 0.009242607280611992, 0.2913244962692261, 0.0013278208207339048, 0.0016432307893410325, 0.0006061104359105229, 0.00024091789964586496, 0.0003382884315215051, 0.0005019005620852113, 0.001827525207772851, 0.29126864671707153], [0.0017430573934689164, 0.0021533863618969917, 0.004625838715583086, 0.04571322724223137, 0.07076537609100342, 0.017948703840374947, 0.010505865328013897, 0.004608344752341509, 0.420003741979599, 0.00041284612962044775, 0.00029996121884323657, 0.00018194009317085147, 2.7954380129813217e-05, 2.7285574105917476e-05, 8.197926945285872e-05, 0.0009955595014616847, 0.41990479826927185], [0.0021737252827733755, 0.006099942605942488, 0.024855613708496094, 0.017203547060489655, 0.019096961244940758, 0.13573649525642395, 0.03677177056670189, 0.01638028770685196, 0.35558435320854187, 0.0013476863969117403, 0.0009757888619787991, 0.005145919043570757, 0.002242211252450943, 0.00546660041436553, 0.01270740944892168, 0.002665742067620158, 0.35554587841033936], [0.003539199708029628, 0.002544875955209136, 0.007256964221596718, 0.004046475049108267, 0.0044435495510697365, 0.0037248609587550163, 0.0018972872057929635, 0.004992651753127575, 0.470051109790802, 0.0043053762055933475, 0.005080239847302437, 0.003791006049141288, 0.0025038542225956917, 0.003738861531019211, 0.0043176887556910515, 0.003739487612619996, 0.4700266718864441], [0.027007190510630608, 0.001144341309554875, 0.004571306053549051, 0.009942305274307728, 0.004773323889821768, 0.015492538921535015, 0.004386585205793381, 0.18447452783584595, 0.34689250588417053, 0.044540755450725555, 0.0014445970300585032, 0.0027259483467787504, 0.0011709938989952207, 0.0009229084243997931, 0.0011893725022673607, 0.002547580748796463, 0.34677326679229736], [0.01035662554204464, 0.36357831954956055, 0.030606241896748543, 0.010603401809930801, 0.002265665913000703, 0.014132695272564888, 0.003270332934334874, 0.015869682654738426, 0.16809943318367004, 0.0554884634912014, 0.06190205737948418, 0.007307892199605703, 0.0063376291655004025, 0.016986148431897163, 0.02671973966062069, 0.03841036558151245, 0.16806529462337494], [0.012368589639663696, 0.0005988056655041873, 0.0055748699232935905, 0.0011514169164001942, 0.0003573269641492516, 0.0017117818351835012, 0.0004942324012517929, 0.014243056066334248, 0.33247968554496765, 0.10244113951921463, 0.022647444158792496, 0.014821763150393963, 0.04102979972958565, 0.027110502123832703, 0.03695995733141899, 0.05362994223833084, 0.33237966895103455], [0.007134624756872654, 9.11016104510054e-05, 0.0019429543754085898, 0.0007092615705914795, 7.831214315956458e-05, 0.0006194607703946531, 0.00010128509165951982, 0.00848400965332985, 0.31726089119911194, 0.03739418089389801, 0.018090492114424706, 0.007450600620359182, 0.026212206110358238, 0.1153101697564125, 0.07408571988344193, 0.06789854168891907, 0.3171362578868866], [0.005280784796923399, 0.00010671798372641206, 0.0022685693111270666, 0.0003289356245659292, 9.638527262723073e-05, 0.0003200808132532984, 5.77688442717772e-05, 0.0019909897819161415, 0.3979056775569916, 0.026777086779475212, 0.04193045198917389, 0.01477155089378357, 0.03404515981674194, 0.026092752814292908, 0.018333883956074715, 0.03187673166394234, 0.3978165090084076], [0.00884844921529293, 0.0002136916300514713, 0.0027677733451128006, 0.0008039968088269234, 0.00036250983248464763, 0.0010101236402988434, 0.0002644643245730549, 0.007317489944398403, 0.3504657745361328, 0.03324560448527336, 0.027514945715665817, 0.01531909592449665, 0.05001102387905121, 0.07604879885911942, 0.03302668780088425, 0.042410850524902344, 0.3503687083721161], [0.003965915646404028, 0.00034100053017027676, 0.0024970900267362595, 0.00020173723169136792, 0.00027977459831163287, 0.0016938039334490895, 0.0002447431907057762, 0.006611271761357784, 0.4386836886405945, 0.03347305953502655, 0.01927226595580578, 0.00544659374281764, 0.007328846957534552, 0.008015447296202183, 0.0159282423555851, 0.01738661713898182, 0.4386299252510071], [0.0035383636131882668, 0.0025446955114603043, 0.00725580332800746, 0.0040457542054355145, 0.004442990757524967, 0.0037245384883135557, 0.0018970160745084286, 0.004990899004042149, 0.470054566860199, 0.004304471891373396, 0.005079758819192648, 0.0037909853272140026, 0.0025038346648216248, 0.003739033592864871, 0.00431768549606204, 0.0037392727099359035, 0.47003036737442017]], [[0.034211575984954834, 0.01681220531463623, 0.009847846813499928, 0.009349208325147629, 0.0041638887487351894, 0.005393133033066988, 0.0010565099073573947, 0.017047423869371414, 0.0670618861913681, 0.295781672000885, 0.09655699133872986, 0.04122977703809738, 0.011680122464895248, 0.023682251572608948, 0.03944287821650505, 0.2596244513988495, 0.0670582577586174], [0.02383306808769703, 0.055035825818777084, 0.016329841688275337, 0.32319092750549316, 0.14824272692203522, 0.14989987015724182, 0.04199032858014107, 0.061328768730163574, 0.04090506210923195, 0.044618159532547, 0.011934743262827396, 0.006733455695211887, 0.003417801344767213, 0.0020054092165082693, 0.003505244618281722, 0.02612491138279438, 0.040903929620981216], [0.04003510624170303, 0.058568406850099564, 0.05922171100974083, 0.09497296810150146, 0.09406023472547531, 0.10919816046953201, 0.03708501160144806, 0.03633036091923714, 0.13635589182376862, 0.03626762703061104, 0.020786143839359283, 0.03476434573531151, 0.01393949519842863, 0.01633043959736824, 0.030041249468922615, 0.045669056475162506, 0.136373832821846], [0.013670033775269985, 0.046428851783275604, 0.01472416426986456, 0.10707675665616989, 0.13724064826965332, 0.2865857481956482, 0.09979114681482315, 0.07673534750938416, 0.08371677249670029, 0.028196999803185463, 0.004327837377786636, 0.003999743144959211, 0.0011839843355119228, 0.00289732264354825, 0.002057417295873165, 0.007659147493541241, 0.08370807021856308], [0.009469017386436462, 0.02597261592745781, 0.008779006078839302, 0.021283557638525963, 0.02966986410319805, 0.040575433522462845, 0.009046480059623718, 0.01946263574063778, 0.41349610686302185, 0.004062858875840902, 0.0015230657299980521, 0.0006315033533610404, 0.00037841216544620693, 0.0003693833714351058, 0.00041127012809738517, 0.0014291186816990376, 0.41343972086906433], [0.012364711612462997, 0.042831432074308395, 0.009253389202058315, 0.021675603464245796, 0.06050897762179375, 0.06864707916975021, 0.015883387997746468, 0.031479611992836, 0.3503115177154541, 0.020495956763625145, 0.0037178273778408766, 0.005999482702463865, 0.00213565188460052, 0.0006266881828196347, 0.0012144312495365739, 0.00257364334538579, 0.35028061270713806], [0.013573982752859592, 0.034206684678792953, 0.007922335527837276, 0.014327924698591232, 0.042687542736530304, 0.05377575382590294, 0.007645609322935343, 0.025050124153494835, 0.3941844701766968, 0.008470116183161736, 0.0014952346682548523, 0.0008349107229150832, 0.00035855252644978464, 0.00019745880854316056, 0.0003096552682109177, 0.0008380338549613953, 0.3941214978694916], [0.027498319745063782, 0.029279883950948715, 0.0084079559892416, 0.029261551797389984, 0.029109962284564972, 0.05856119468808174, 0.011591793037950993, 0.03410026803612709, 0.16831956803798676, 0.24784566462039948, 0.021695904433727264, 0.027697384357452393, 0.012594706378877163, 0.01625233329832554, 0.01723012514412403, 0.09224571287631989, 0.16830769181251526], [0.007430814206600189, 0.0014702703338116407, 0.004582446999847889, 0.0035377428866922855, 0.0019018020248040557, 0.0042159054428339005, 0.0006589196273125708, 0.0028507858514785767, 0.4762049913406372, 0.0026564847212284803, 0.0015937137650325894, 0.0021955850534141064, 0.0013482471695169806, 0.0035036050248891115, 0.0030389942694455385, 0.006620925385504961, 0.47618862986564636], [0.01929418556392193, 0.0017930505564436316, 0.0027071412187069654, 0.0029387830290943384, 0.0016958864871412516, 0.00361742009408772, 0.00030662037897855043, 0.0037588845007121563, 0.3377045691013336, 0.0389956533908844, 0.03704278916120529, 0.05408988893032074, 0.019846929237246513, 0.017108717933297157, 0.022621285170316696, 0.09877514094114304, 0.3377031087875366], [0.011113089509308338, 0.0023214544635266066, 0.0038044159300625324, 0.0016115517355501652, 0.00017502247646916658, 0.0007494862074963748, 0.00010430567635921761, 0.0005412192549556494, 0.051977988332509995, 0.03481358662247658, 0.03960137814283371, 0.084522545337677, 0.09750930219888687, 0.06195175647735596, 0.18594969809055328, 0.3712804615497589, 0.05197278782725334], [0.006063234992325306, 0.000846399343572557, 0.0011745269875973463, 0.00033833799534477293, 0.00016545945254620165, 0.0009734552586451173, 6.123600178398192e-05, 0.0014926505973562598, 0.31551551818847656, 0.024892011657357216, 0.05996222048997879, 0.07134450972080231, 0.049014415591955185, 0.028017137199640274, 0.04636963829398155, 0.07827495038509369, 0.3154942989349365], [0.00262807821854949, 0.0005650873645208776, 0.003037067363038659, 0.00021142713376320899, 5.9324316680431366e-05, 0.0003725021379068494, 1.7115278751589358e-05, 0.0003473295655567199, 0.4170318841934204, 0.0072318799793720245, 0.03499625250697136, 0.01587594673037529, 0.03145710006356239, 0.014190719462931156, 0.021859483793377876, 0.03311891481280327, 0.416999876499176], [0.004415043164044619, 0.00022474485740531236, 0.002269104588776827, 0.00010095648030983284, 8.960922423284501e-05, 0.000361275568138808, 1.312790482188575e-05, 0.00043595919851213694, 0.4322253465652466, 0.004399092867970467, 0.01436392217874527, 0.023750100284814835, 0.0405680388212204, 0.013014176860451698, 0.02123536914587021, 0.010338425636291504, 0.43219566345214844], [0.004892313852906227, 0.00023919758677948266, 0.0023272621911019087, 0.00013567914720624685, 0.00016173708718270063, 0.000793195329606533, 3.282621401012875e-05, 0.0005918071838095784, 0.354447603225708, 0.011797952465713024, 0.02755153365433216, 0.07371135801076889, 0.07054832577705383, 0.036510664969682693, 0.04366889223456383, 0.018182838335633278, 0.35440686345100403], [0.0039558326825499535, 0.0007501658983528614, 0.00278658140450716, 0.0005297908210195601, 0.00022008243831805885, 0.0020868489518761635, 0.0001640199770918116, 0.0008718154858797789, 0.1485101282596588, 0.049807239323854446, 0.046874646097421646, 0.10570333153009415, 0.10788444429636002, 0.15616106986999512, 0.12706676125526428, 0.0981421172618866, 0.14848512411117554], [0.007429203949868679, 0.0014697505393996835, 0.0045815566554665565, 0.003535981522873044, 0.001900902483612299, 0.004214308690279722, 0.0006586132803931832, 0.002850001212209463, 0.47621262073516846, 0.002655469812452793, 0.0015931368106976151, 0.002194697270169854, 0.001347757875919342, 0.0035028476268053055, 0.0030383591074496508, 0.006618522107601166, 0.4761962592601776]], [[0.007342258933931589, 0.005289183929562569, 0.057965364307165146, 0.01359894871711731, 0.016347892582416534, 0.024260323494672775, 0.01266200840473175, 0.0067443023435771465, 0.2716454863548279, 0.01971416547894478, 0.012520871125161648, 0.014196696691215038, 0.04266674444079399, 0.06630115956068039, 0.13645882904529572, 0.020663229748606682, 0.27162256836891174], [0.004718608222901821, 0.004804551135748625, 0.03644603490829468, 0.0021660723723471165, 0.00405998807400465, 0.009271413087844849, 0.0009630289860069752, 0.002065699314698577, 0.408748060464859, 0.011775637045502663, 0.021446844562888145, 0.008897126652300358, 0.006316294893622398, 0.003781345207244158, 0.004298872780054808, 0.06142734736204147, 0.4088129699230194], [0.017590979114174843, 0.012374886311590672, 0.0575079619884491, 0.005325912963598967, 0.004765295423567295, 0.029956623911857605, 0.0030257082544267178, 0.006685345899313688, 0.23306594789028168, 0.024049175903201103, 0.04038354009389877, 0.009856132790446281, 0.042130276560783386, 0.09189905971288681, 0.13149170577526093, 0.05680578202009201, 0.23308561742305756], [0.007738214917480946, 0.020861180499196053, 0.04431042820215225, 0.01072751171886921, 0.00828919280320406, 0.054776716977357864, 0.009719755500555038, 0.011707751080393791, 0.3009161055088043, 0.0277887973934412, 0.028559036552906036, 0.04810072481632233, 0.002099274890497327, 0.0015611655544489622, 0.002469548024237156, 0.11942794919013977, 0.30094653367996216], [0.009736539795994759, 0.0378955714404583, 0.07339980453252792, 0.008573864586651325, 0.0188324935734272, 0.043614309281110764, 0.010713892057538033, 0.018319837749004364, 0.32341569662094116, 0.02491355687379837, 0.026236336678266525, 0.032557472586631775, 0.004630800802260637, 0.0009867883054539561, 0.0012890314683318138, 0.041428811848163605, 0.32345518469810486], [0.009431334212422371, 0.01969774253666401, 0.045395780354738235, 0.004923742730170488, 0.005302988458424807, 0.021677237004041672, 0.004910940304398537, 0.010395796038210392, 0.355645090341568, 0.04134989529848099, 0.03338254243135452, 0.01068473793566227, 0.0164481233805418, 0.007780981250107288, 0.00869892630726099, 0.0486072413623333, 0.35566696524620056], [0.0025329156778752804, 0.008143888786435127, 0.025551708415150642, 0.0038154004141688347, 0.011496835388243198, 0.03676953911781311, 0.010166124440729618, 0.004093665163964033, 0.42380449175834656, 0.010812873020768166, 0.004187391605228186, 0.01433098129928112, 0.0008310636621899903, 0.00033202828490175307, 0.0005916719092056155, 0.01870124228298664, 0.42383822798728943], [0.003795252414420247, 0.006939374841749668, 0.016827022656798363, 0.003939308691769838, 0.007899114862084389, 0.009253655560314655, 0.003670887090265751, 0.008351124823093414, 0.4310227334499359, 0.01016200426965952, 0.011044018901884556, 0.0020499739330261946, 0.003955901600420475, 0.007320732809603214, 0.009769922122359276, 0.03294747695326805, 0.4310513138771057], [0.00024200878397095948, 0.0002893012424465269, 0.001712887198664248, 0.00018770343740470707, 0.00026283087208867073, 0.0012016755063086748, 0.00010922306682914495, 0.0004782282921951264, 0.4944605827331543, 0.0015525927301496267, 0.0007399389869533479, 0.0003649100835900754, 0.0012989139650017023, 0.0005600829608738422, 0.0007393680280074477, 0.001344136893749237, 0.49445563554763794], [0.0013866130029782653, 0.005871532950550318, 0.023850541561841965, 0.006831673439592123, 0.01076328195631504, 0.027858398854732513, 0.00746561773121357, 0.0033177388831973076, 0.4308522641658783, 0.0086296908557415, 0.0031608473509550095, 0.016628323122859, 0.006861709523946047, 0.0010324710747227073, 0.0020657717250287533, 0.012614213861525059, 0.4308093190193176], [0.0009324098937213421, 0.009005698375403881, 0.12817418575286865, 0.005110134836286306, 0.004926423542201519, 0.017032776027917862, 0.0016021302435547113, 0.003961032256484032, 0.3813273012638092, 0.004088959656655788, 0.01034250296652317, 0.0032591482158750296, 0.008266283199191093, 0.007278989069163799, 0.013533996418118477, 0.01982678845524788, 0.38133111596107483], [0.0014086292358115315, 0.01973111554980278, 0.03312067314982414, 0.0136190727353096, 0.007451701909303665, 0.0669705793261528, 0.004936018958687782, 0.005385294556617737, 0.3732222318649292, 0.019086068496108055, 0.00604903744533658, 0.030388230457901955, 0.020120464265346527, 0.0037113020662218332, 0.005693543236702681, 0.01595265418291092, 0.37315335869789124], [0.0008046383736655116, 0.0021469006314873695, 0.08405700325965881, 0.0008114477968774736, 0.0005295602022670209, 0.019747097045183182, 0.0003779945254791528, 0.0023352308198809624, 0.38533809781074524, 0.006498157046735287, 0.0035718500148504972, 0.010609368793666363, 0.03272995725274086, 0.0163689237087965, 0.029737919569015503, 0.01900268718600273, 0.3853331506252289], [0.0004162238328717649, 0.0031301509588956833, 0.37210801243782043, 0.0004689492052420974, 0.0003051193489227444, 0.004983124788850546, 0.00019488473481032997, 0.003192055271938443, 0.28785377740859985, 0.0006544249481521547, 0.0034931583795696497, 0.0006911834352649748, 0.004751863889396191, 0.009870128706097603, 0.01829581707715988, 0.0016989682335406542, 0.2878921926021576], [0.0011663216864690185, 0.0043210797011852264, 0.23192588984966278, 0.0010645224247127771, 0.0011210808297619224, 0.013649830594658852, 0.0007274510571733117, 0.004436183255165815, 0.34652113914489746, 0.0019121508812531829, 0.004305894486606121, 0.004267499316483736, 0.006691674701869488, 0.00914900191128254, 0.018012328073382378, 0.004173153080046177, 0.346554696559906], [0.0012923432514071465, 0.005745100788772106, 0.0410291850566864, 0.0061951130628585815, 0.004716198891401291, 0.05092328414320946, 0.0034200085792690516, 0.005871372297406197, 0.3981214165687561, 0.007784734945744276, 0.003887999104335904, 0.01815454103052616, 0.008322193287312984, 0.004131244961172342, 0.008158727549016476, 0.0341779999434948, 0.39806845784187317], [0.00024203262000810355, 0.0002893440832849592, 0.0017130045453086495, 0.00018771323084365577, 0.0002628451038617641, 0.001201755367219448, 0.00010921725333901122, 0.00047829069080762565, 0.49446070194244385, 0.0015524531481787562, 0.0007399208843708038, 0.00036488217301666737, 0.0012988195521757007, 0.0005600320873782039, 0.0007393269333988428, 0.0013441115152090788, 0.4944555163383484]], [[0.011225278489291668, 0.08637942373752594, 0.3434559106826782, 0.016438249498605728, 0.008100219070911407, 0.07892300188541412, 0.01237565465271473, 0.008576193824410439, 0.19029225409030914, 0.014559449627995491, 0.008128352463245392, 0.0023905187845230103, 0.0035392807330936193, 0.004680223297327757, 0.011737367138266563, 0.008919155225157738, 0.19027940928936005], [0.010478172451257706, 0.02222963236272335, 0.2032272219657898, 0.02222554199397564, 0.004256505519151688, 0.027198852971196175, 0.0010530843865126371, 0.01999310776591301, 0.2806755304336548, 0.004849882796406746, 0.10028526186943054, 0.0008345918613485992, 0.00013025582302361727, 0.0004532651510089636, 0.0009005948668345809, 0.0204936433583498, 0.28071486949920654], [0.006719703786075115, 0.017140096053481102, 0.036309871822595596, 0.008806989528238773, 0.0024871204514056444, 0.013140728697180748, 0.0009257051278837025, 0.012525665573775768, 0.40423715114593506, 0.03412898629903793, 0.0356706902384758, 0.006613811943680048, 0.0016629870515316725, 0.0022627764847129583, 0.0041103120893239975, 0.008976761251688004, 0.40428072214126587], [0.006439415737986565, 0.15789085626602173, 0.2814522385597229, 0.015390543267130852, 0.009777168743312359, 0.1501360535621643, 0.009111810475587845, 0.01897352747619152, 0.1511683613061905, 0.005062689073383808, 0.034249525517225266, 0.0017478674417361617, 0.0005563477170653641, 0.0013296814868226647, 0.0022447407245635986, 0.0033061415888369083, 0.1511630266904831], [0.005585191771388054, 0.02367774397134781, 0.03565746918320656, 0.014873327687382698, 0.005642132367938757, 0.1677893102169037, 0.015058684162795544, 0.017713716253638268, 0.3489764928817749, 0.0030811151955276728, 0.008572879247367382, 0.0008401154191233218, 0.0004128070722799748, 0.0004435096343513578, 0.0012179847108200192, 0.0015483907191082835, 0.3489091098308563], [0.005259981378912926, 0.013628759421408176, 0.017593633383512497, 0.012642270885407925, 0.006528645753860474, 0.06890452653169632, 0.004953328520059586, 0.018367042765021324, 0.415364533662796, 0.007657022215425968, 0.006642375141382217, 0.0016416418366134167, 0.0008575631072744727, 0.0007466812967322767, 0.0015570770483464003, 0.0023182244040071964, 0.4153369963169098], [0.0042573800310492516, 0.053442616015672684, 0.06325071305036545, 0.008720970712602139, 0.005359509028494358, 0.1580357402563095, 0.0036830517929047346, 0.012660630978643894, 0.32914820313453674, 0.004504846874624491, 0.025017024949193, 0.0009471885277889669, 0.00015033608360681683, 0.0002836589119397104, 0.0006481963791884482, 0.000803065428044647, 0.3290868401527405], [0.029304970055818558, 0.003726552939042449, 0.008575376123189926, 0.007524827029556036, 0.0017882914980873466, 0.0252279881387949, 0.0022730655036866665, 0.003500640392303467, 0.38705939054489136, 0.04550926387310028, 0.014229928143322468, 0.0025907002855092287, 0.00118525349535048, 0.015766041353344917, 0.031047776341438293, 0.0337134450674057, 0.3869765102863312], [0.0016340221045538783, 0.0016920161433517933, 0.0028635046910494566, 0.001346999080851674, 0.0004376067372504622, 0.002504469593986869, 0.0003215808537788689, 0.0013427583035081625, 0.4913976490497589, 0.001826461055316031, 0.0011392956366762519, 0.0003445375186856836, 0.00018468966300133616, 0.00030858046375215054, 0.00044085789704695344, 0.0009231326985172927, 0.49129173159599304], [0.002939850790426135, 0.0005531003698706627, 0.0016929705161601305, 0.00045350485015660524, 0.0005009350716136396, 0.0037033669650554657, 0.0001537794159958139, 0.0003302709956187755, 0.4657132625579834, 0.011632434092462063, 0.001419806038029492, 0.012236066162586212, 0.006117582321166992, 0.0035453762393444777, 0.008101333864033222, 0.015246381983160973, 0.4656599760055542], [0.0008697846787981689, 0.03876110538840294, 0.8116664886474609, 0.0028138107154518366, 0.0003176196478307247, 0.0020559115801006556, 0.00010808309889398515, 0.0012973751872777939, 0.06517297774553299, 0.0005107528995722532, 0.005497978534549475, 0.00040624092798680067, 0.00025715981610119343, 0.0008760042837820947, 0.0013726482866331935, 0.0028307323809713125, 0.0651855319738388], [0.002932384144514799, 0.001202060142531991, 0.004318029619753361, 0.000601722567807883, 0.0003402053262107074, 0.0024965633638203144, 0.0001309834624407813, 0.0004605480935424566, 0.43529924750328064, 0.008781759068369865, 0.006061234045773745, 0.018651865422725677, 0.018963588401675224, 0.017608607187867165, 0.03521234542131424, 0.011660086922347546, 0.43527868390083313], [0.0002947629545815289, 8.013160550035536e-05, 0.0008749440312385559, 2.2814278054283932e-05, 1.1411410014261492e-05, 0.0003599145566113293, 5.216239514993504e-06, 7.26806465536356e-05, 0.46771079301834106, 0.0006527308723889291, 0.0014285106444731355, 0.004529457539319992, 0.008153524249792099, 0.01995600201189518, 0.02669931761920452, 0.0015057934215292335, 0.4676418900489807], [0.00038839029730297625, 0.0002121735451510176, 0.0016546635888516903, 1.7177873814944178e-05, 1.6769132344052196e-05, 7.291803922271356e-05, 3.3862354484881507e-06, 3.388873301446438e-05, 0.49221375584602356, 0.0004887273535132408, 0.0023083367850631475, 0.001150878262706101, 0.0029770766850560904, 0.002056026365607977, 0.0038805746007710695, 0.0003996133746113628, 0.4921257495880127], [0.0005696721491403878, 0.00016754624084569514, 0.0013661098200827837, 3.0145627533784136e-05, 2.614959521451965e-05, 0.00011952449131058529, 3.174215180479223e-06, 5.1975275709992275e-05, 0.486555278301239, 0.0006732653127983212, 0.0027948033530265093, 0.0031715119257569313, 0.007096114102751017, 0.0033131868112832308, 0.0068524060770869255, 0.0006988043896853924, 0.4865102767944336], [0.001554980524815619, 0.0010073400335386395, 0.010658119805157185, 0.00022103890660218894, 0.00018469037604518235, 0.002465177094563842, 4.299525244277902e-05, 0.00028053944697603583, 0.43429407477378845, 0.00404906552284956, 0.007025830913335085, 0.013269378803670406, 0.006431270856410265, 0.028431324288249016, 0.04766011983156204, 0.008167565800249577, 0.434256374835968], [0.0016335126711055636, 0.001691757352091372, 0.0028633354231715202, 0.0013467242242768407, 0.0004374742857180536, 0.00250390381552279, 0.0003214747703168541, 0.0013426014920696616, 0.4913995563983917, 0.001825762796215713, 0.0011391544248908758, 0.00034441237221471965, 0.00018459916464053094, 0.00030850368784740567, 0.00044070681906305254, 0.0009227529517374933, 0.49129363894462585]], [[0.004802422598004341, 0.04327290505170822, 0.4406757652759552, 0.01974538527429104, 0.03706861659884453, 0.12726028263568878, 0.01102712657302618, 0.060926999896764755, 0.09759535640478134, 0.0010732098016887903, 0.00477633997797966, 0.004354223143309355, 0.0075611998327076435, 0.021549830213189125, 0.01947927288711071, 0.0012218202464282513, 0.09760917723178864], [0.024918969720602036, 0.0366438664495945, 0.03995693847537041, 0.01301480084657669, 0.013736829161643982, 0.06795073300600052, 0.008111495524644852, 0.02620220184326172, 0.37319836020469666, 0.015649547800421715, 0.0015865013701841235, 0.0014273712877184153, 0.0011091805063188076, 0.0005717066815122962, 0.0005742243374697864, 0.002128882333636284, 0.37321847677230835], [0.019929062575101852, 0.013913124799728394, 0.07033034414052963, 0.00717996247112751, 0.005102917551994324, 0.014738578349351883, 0.0020695424173027277, 0.008932841941714287, 0.41734403371810913, 0.006230517290532589, 0.0032804086804389954, 0.001566218095831573, 0.002244587754830718, 0.0028147208504378796, 0.003891450585797429, 0.003037906251847744, 0.41739359498023987], [0.0049225445836782455, 0.03331628441810608, 0.029413171112537384, 0.016821231693029404, 0.031009098514914513, 0.576980471611023, 0.021983487531542778, 0.014413699507713318, 0.13102410733699799, 0.007210178766399622, 0.0002836399944499135, 0.0005375956534408033, 0.00020388355187606066, 0.00026844724197871983, 0.00024708264390937984, 0.0003567923849914223, 0.1310083568096161], [0.004226659424602985, 0.023975584656000137, 0.010864896699786186, 0.012158861383795738, 0.021514398977160454, 0.3112958073616028, 0.008783627301454544, 0.00891265831887722, 0.29474860429763794, 0.007526637054979801, 0.0002445836435072124, 0.0005103609873913229, 9.466143819736317e-05, 9.674780449131504e-05, 0.00011283303319942206, 0.00024979287991300225, 0.2946832776069641], [0.004654037766158581, 0.02252720482647419, 0.0074753486551344395, 0.011750046163797379, 0.02255662903189659, 0.13071687519550323, 0.009193984791636467, 0.009196486324071884, 0.38766252994537354, 0.004856901243329048, 0.0003617899492383003, 0.00041130336467176676, 0.0001566927821841091, 0.0002147807099390775, 0.00016747067274991423, 0.0004744065518025309, 0.38762351870536804], [0.004152404144406319, 0.014231369830667973, 0.009062220342457294, 0.008333803154528141, 0.026055270805954933, 0.3651374280452728, 0.01039719209074974, 0.004701258148998022, 0.2770838141441345, 0.0032267882488667965, 8.66769187268801e-05, 0.0002767474506981671, 4.3074851419078186e-05, 6.098686935729347e-05, 2.6956120564136654e-05, 8.592664380557835e-05, 0.2770380973815918], [0.021857190877199173, 0.02221902832388878, 0.022329362109303474, 0.025610214099287987, 0.04088062420487404, 0.5305039286613464, 0.034370992332696915, 0.012073270976543427, 0.1182389184832573, 0.017350083217024803, 0.002472481457516551, 0.007692005019634962, 0.004206728655844927, 0.006269238889217377, 0.007918941788375378, 0.0077732219360768795, 0.11823378503322601], [0.0017337921308353543, 0.0030861664563417435, 0.01025660801678896, 0.005325845908373594, 0.004743407946079969, 0.0043726046569645405, 0.0013555297628045082, 0.005132235586643219, 0.476494699716568, 0.001839584787376225, 0.0014997259713709354, 0.0012099746381863952, 0.0005585922044701874, 0.0013055087765678763, 0.0020755177829414606, 0.00253225932829082, 0.47647789120674133], [0.005156632512807846, 0.0037536039017140865, 0.0009086272912099957, 0.0023667102213948965, 0.0039019936230033636, 0.007949050515890121, 0.0007064175442792475, 0.0060774642042815685, 0.4031248390674591, 0.010361080057919025, 0.01743444800376892, 0.06903760135173798, 0.014082523994147778, 0.005928965285420418, 0.00888635590672493, 0.0372118204832077, 0.4031117558479309], [0.020703626796603203, 0.0038349353708326817, 0.008022149093449116, 0.0007702941074967384, 0.0006618727929890156, 0.0029190373606979847, 0.0002220144378952682, 0.004296736791729927, 0.3731485903263092, 0.04218515753746033, 0.08228074014186859, 0.031110359355807304, 0.015590585768222809, 0.014183164574205875, 0.014379311352968216, 0.012546231038868427, 0.3731452226638794], [0.02043827436864376, 0.00297157047316432, 0.002060101367533207, 0.0020266524516046047, 0.0015315841883420944, 0.007308500818908215, 0.0005509117036126554, 0.005090559367090464, 0.3903138339519501, 0.055433426052331924, 0.03458389639854431, 0.03879685699939728, 0.010790652595460415, 0.011912178248167038, 0.013224744237959385, 0.0127617958933115, 0.39020442962646484], [0.007665707264095545, 0.0008497973321937025, 0.000939651858061552, 0.0006695283809676766, 0.0005491375923156738, 0.003032625885680318, 0.00022678243112750351, 0.0044931089505553246, 0.38759922981262207, 0.013476496562361717, 0.018534790724515915, 0.051197607070207596, 0.04886180907487869, 0.022453969344496727, 0.03069416806101799, 0.02120506763458252, 0.3875504434108734], [0.003972369711846113, 0.0003475842531770468, 0.004646051209419966, 0.000189351529115811, 0.00012068887008354068, 0.00042042802670039237, 5.229484668234363e-05, 0.0005960733979009092, 0.31577935814857483, 0.009224594570696354, 0.02860410325229168, 0.021281154826283455, 0.06747666001319885, 0.06687156111001968, 0.15383942425251007, 0.010832159779965878, 0.3157462179660797], [0.006405148655176163, 0.0004619395767804235, 0.0032182387076318264, 0.0002953801886178553, 0.00019719215924851596, 0.0009006281034089625, 8.601732406532392e-05, 0.000995539128780365, 0.2914329469203949, 0.016873087733983994, 0.026423050090670586, 0.06542758643627167, 0.09191963076591492, 0.10732707381248474, 0.07904724776744843, 0.017607389017939568, 0.2913818061351776], [0.011955956928431988, 0.0012952210381627083, 0.003121613524854183, 0.0007634687353856862, 0.0012090912787243724, 0.011508745141327381, 0.000755888526327908, 0.0029435663018375635, 0.2396102249622345, 0.016590097919106483, 0.03856492042541504, 0.2682875096797943, 0.06995374709367752, 0.027016276493668556, 0.04017585888504982, 0.026673370972275734, 0.23957446217536926], [0.001733526703901589, 0.003085970412939787, 0.010256913490593433, 0.005324626807123423, 0.0047429935075342655, 0.00437204772606492, 0.001355079934000969, 0.005131586920469999, 0.4764973819255829, 0.0018392452038824558, 0.0014995927922427654, 0.001209583948366344, 0.0005584249156527221, 0.001305189449340105, 0.002075109863653779, 0.0025315717794001102, 0.47648102045059204]], [[0.013117813505232334, 0.008098403923213482, 0.010422585532069206, 0.010187382809817791, 0.004713926464319229, 0.006223341450095177, 0.0013900540070608258, 0.0031612920574843884, 0.278816282749176, 0.1533406674861908, 0.018616637215018272, 0.05333128944039345, 0.03856160119175911, 0.043811071664094925, 0.05566154792904854, 0.02177065797150135, 0.2787754535675049], [0.01857866160571575, 0.0334869883954525, 0.19755996763706207, 0.061560168862342834, 0.013692032545804977, 0.007148916833102703, 0.0007388664525933564, 0.006307287607342005, 0.3185655176639557, 0.004810902290046215, 0.010067527182400227, 0.0016736246179789305, 0.001253933529369533, 0.0005668008816428483, 0.0003800280101131648, 0.004981522914022207, 0.3186272084712982], [0.029682936146855354, 0.029349101707339287, 0.07013234496116638, 0.059802062809467316, 0.008564185351133347, 0.02735242433845997, 0.003952173516154289, 0.012651151977479458, 0.3595016896724701, 0.007054249756038189, 0.008204019628465176, 0.0027342899702489376, 0.002221735892817378, 0.004332819953560829, 0.0047174980863928795, 0.010111250914633274, 0.35963594913482666], [0.0077959210611879826, 0.028146687895059586, 0.01009969413280487, 0.04137321561574936, 0.023168833926320076, 0.024428246542811394, 0.004944842774420977, 0.016011575236916542, 0.4117893576622009, 0.008584678173065186, 0.004332812502980232, 0.0017546509625390172, 0.001383823691867292, 0.0005015212227590382, 0.0006448395433835685, 0.003256439231336117, 0.4117828905582428], [0.0023616384714841843, 0.0025101813953369856, 0.001981954788789153, 0.017642617225646973, 0.016993114724755287, 0.0628584772348404, 0.026610571891069412, 0.010981774888932705, 0.42253628373146057, 0.004521613474935293, 0.0005874623311683536, 0.003300200682133436, 0.001077298424206674, 0.0007348316721618176, 0.0009223945089615881, 0.0018239575438201427, 0.4225556254386902], [0.014427495189011097, 0.010286967270076275, 0.006035214755684137, 0.027604013681411743, 0.008493300527334213, 0.041072405874729156, 0.06672386825084686, 0.022101007401943207, 0.3874407708644867, 0.007566208951175213, 0.004074813332408667, 0.0014341933419927955, 0.0010749190114438534, 0.0015067352214828134, 0.0025543291121721268, 0.010188916698098183, 0.38741472363471985], [0.026588501408696175, 0.0037885294295847416, 0.0010902700014412403, 0.015293297357857227, 0.00928205344825983, 0.021101998165249825, 0.00847663078457117, 0.06032055616378784, 0.4168863594532013, 0.014265535399317741, 0.0007915281457826495, 0.00041516582132317126, 0.00019905800581909716, 0.00034425067133270204, 0.00028463194030337036, 0.0039726607501506805, 0.4168988764286041], [0.045723702758550644, 0.033884722739458084, 0.003029413754120469, 0.012300671078264713, 0.0076831188052892685, 0.0032175045926123857, 0.00438816100358963, 0.01879998855292797, 0.20053091645240784, 0.3998010456562042, 0.03413761034607887, 0.0030063919257372618, 0.005374548956751823, 0.0021507670171558857, 0.0029345527291297913, 0.02259133756160736, 0.2004455327987671], [0.00950670801103115, 0.006360482424497604, 0.006913545075803995, 0.006201249547302723, 0.002522949827834964, 0.001999116037040949, 0.001546689891256392, 0.0027654708828777075, 0.4664774537086487, 0.002863365225493908, 0.008714480325579643, 0.0023594358935952187, 0.002408387837931514, 0.0029252413660287857, 0.00513874227181077, 0.00484278192743659, 0.46645388007164], [0.008629594929516315, 0.001708197989501059, 0.002025236841291189, 0.0023719894234091043, 0.0008510857005603611, 0.0009804141009226441, 0.00013176919310353696, 0.0010573595063760877, 0.348469078540802, 0.038811374455690384, 0.05650472268462181, 0.06714165955781937, 0.017051519826054573, 0.037102315574884415, 0.02756950445473194, 0.04113469645380974, 0.3484596014022827], [0.0036961748264729977, 0.0006609916454181075, 0.006478509400039911, 0.0003824311716016382, 0.00019235412764828652, 0.0003311468753963709, 2.688347376533784e-05, 0.0003698018554132432, 0.4551027715206146, 0.001121414010412991, 0.024338943883776665, 0.02962563931941986, 0.009845007210969925, 0.0036482997238636017, 0.0026537631638348103, 0.006296379026025534, 0.4552295207977295], [0.0037085015792399645, 0.00023839814821258187, 0.00044611498015001416, 0.00015975686255842447, 0.00022645543504040688, 0.0004211831546854228, 0.0001540853118058294, 0.001110937213525176, 0.423181414604187, 0.00908377580344677, 0.007291960529983044, 0.04109862819314003, 0.021270181983709335, 0.03761274367570877, 0.022875383496284485, 0.00790230929851532, 0.42321833968162537], [0.0017346509266644716, 0.00027703019441105425, 0.00022470187104772776, 0.0008069750037975609, 0.00013695089728571475, 0.0004563125839922577, 6.025877155479975e-05, 0.0016847483348101377, 0.43454083800315857, 0.005768592935055494, 0.002900096820667386, 0.010208350606262684, 0.012509077787399292, 0.04577448591589928, 0.024502741172909737, 0.023809567093849182, 0.434604674577713], [0.0038286782801151276, 0.0004189589526504278, 0.0016265838639810681, 0.0004575164057314396, 0.0003479748556856066, 0.0005466233124025166, 0.0006431098445318639, 0.0009765605791471899, 0.3458881676197052, 0.00152682070620358, 0.01032771822065115, 0.007440901827067137, 0.029312364757061005, 0.034641120582818985, 0.18826401233673096, 0.027860963717103004, 0.34589195251464844], [0.009709269739687443, 0.0014678140869364142, 0.0013686555903404951, 0.0012886165641248226, 0.0003045746707357466, 0.0002003006375161931, 0.00017352910072077066, 0.0022574313916265965, 0.4187323749065399, 0.0013383610639721155, 0.0184189360588789, 0.002249507699161768, 0.0072153047658503056, 0.007377192378044128, 0.013753866776823997, 0.09537209570407867, 0.4187721014022827], [0.004442513920366764, 0.0018429121701046824, 0.0008071271586231887, 0.0004041954525746405, 0.00020296951697673649, 0.00022633881599176675, 6.789335748180747e-05, 0.0018520749872550368, 0.42731305956840515, 0.006970832124352455, 0.029111023992300034, 0.014330967329442501, 0.01756431721150875, 0.013669525273144245, 0.018036406487226486, 0.03582446649670601, 0.4273332357406616], [0.009503469802439213, 0.006356164813041687, 0.0069097778759896755, 0.006198044866323471, 0.002521409187465906, 0.0019983239471912384, 0.0015461619477719069, 0.0027641630731523037, 0.46649280190467834, 0.002862069755792618, 0.008709602989256382, 0.0023584114387631416, 0.0024072949308902025, 0.002924242988228798, 0.005137558560818434, 0.004841338377445936, 0.4664692282676697]], [[0.0014217473799362779, 0.4327671527862549, 0.12439285218715668, 0.15220020711421967, 0.029902581125497818, 0.11447388678789139, 0.046448271721601486, 0.07468608766794205, 0.007738347630947828, 0.0039823842234909534, 0.003657964523881674, 0.0002105834282701835, 6.279854278545827e-05, 4.7327528591267765e-05, 6.027510607964359e-05, 0.00020931052858941257, 0.007738148327916861], [0.0025363736785948277, 0.03541402518749237, 0.052925657480955124, 0.014418115839362144, 0.01893611252307892, 0.054413557052612305, 0.01979811303317547, 0.035387106239795685, 0.3818458914756775, 0.0013298604171723127, 0.0004945113323628902, 0.00016952953592408448, 7.105655095074326e-05, 6.787781603634357e-05, 7.845473010092974e-05, 0.00032202654983848333, 0.3817918002605438], [0.0027015546802431345, 0.006700333673506975, 0.043405238538980484, 0.003792858449742198, 0.0036352125462144613, 0.036592476069927216, 0.005310469307005405, 0.012500829994678497, 0.43899205327033997, 0.0013350893277674913, 0.0009313570917584002, 0.000807685952167958, 0.0005065089208073914, 0.0011528858449310064, 0.0018404115689918399, 0.0008356950711458921, 0.43895938992500305], [0.00540897436439991, 0.10127042233943939, 0.05591277405619621, 0.033410366624593735, 0.020175721496343613, 0.06627439707517624, 0.016734622418880463, 0.03981173783540726, 0.327175110578537, 0.004323293454945087, 0.001152380253188312, 0.00032795529114082456, 4.296662882552482e-05, 3.927437501261011e-05, 7.340604497585446e-05, 0.000773404142819345, 0.3270932137966156], [0.004826727323234081, 0.04516058787703514, 0.04640071094036102, 0.013324998319149017, 0.01076861098408699, 0.040280282497406006, 0.010642425157129765, 0.01808926649391651, 0.40218549966812134, 0.002842686837539077, 0.0008875089697539806, 0.0013959720963612199, 9.383770520798862e-05, 5.161189619684592e-05, 9.606620733393356e-05, 0.0009053338435478508, 0.4020480215549469], [0.0008109406917355955, 0.013139616698026657, 0.015460602939128876, 0.009605919010937214, 0.011555064469575882, 0.028167374432086945, 0.006068364717066288, 0.0039143855683505535, 0.45500457286834717, 0.0004680295241996646, 0.00021170727268327028, 0.0003027835919056088, 2.6208121198578738e-05, 1.822735612222459e-05, 3.400551213417202e-05, 0.00025985995307564735, 0.45495229959487915], [0.0017788712866604328, 0.02897207997739315, 0.02017119899392128, 0.01585901714861393, 0.01995980739593506, 0.02352507971227169, 0.007356503512710333, 0.004465160891413689, 0.4384469985961914, 0.0004845038056373596, 0.0003701139648910612, 0.00011911632464034483, 8.199156582122669e-06, 4.208972313790582e-06, 7.020726116024889e-06, 0.00013428495731204748, 0.43833789229393005], [0.006350433919578791, 0.11474436521530151, 0.027969256043434143, 0.15098193287849426, 0.11883902549743652, 0.1403542459011078, 0.1263056844472885, 0.009755566716194153, 0.14019428193569183, 0.01710766926407814, 0.002535186242312193, 0.0011205796618014574, 0.0005596016999334097, 0.0004692888760473579, 0.0008872764883562922, 0.0016481770435348153, 0.1401773989200592], [0.0005767003167420626, 0.007012310437858105, 0.009128198958933353, 0.0030264779925346375, 0.00312613183632493, 0.0033963299356400967, 0.0015526911010965705, 0.003860238939523697, 0.4834290146827698, 0.00020796949684154242, 0.0005166163900867105, 0.0001183771455544047, 0.0001405861257808283, 0.00010265725723002106, 0.00017407634004484862, 0.00023290878743864596, 0.48339858651161194], [0.009943000040948391, 0.08666341006755829, 0.05113058537244797, 0.15121519565582275, 0.04337833821773529, 0.19687271118164062, 0.04700572043657303, 0.24347195029258728, 0.041926655918359756, 0.03751019388437271, 0.010983506217598915, 0.019836317747831345, 0.0022527913097292185, 0.0011509857140481472, 0.0011464903363958001, 0.013586047105491161, 0.041926056146621704], [0.0014119517290964723, 0.7438477277755737, 0.18238483369350433, 0.007836255244910717, 0.0014915303327143192, 0.017385834828019142, 0.0015342158731073141, 0.013741030357778072, 0.009541365318000317, 0.002130868611857295, 0.007135801017284393, 0.00048347958363592625, 0.0005797253106720746, 0.00017572475189808756, 0.0002793150197248906, 0.000499148853123188, 0.00954129733145237], [0.0125378193333745, 0.026334155350923538, 0.03486799821257591, 0.008456194773316383, 0.00423596752807498, 0.08268411457538605, 0.005967812146991491, 0.07549329847097397, 0.14900922775268555, 0.2121109962463379, 0.05890762433409691, 0.07907682657241821, 0.004554620012640953, 0.0018162972992286086, 0.002661042381078005, 0.09230703860521317, 0.14897891879081726], [0.010746347717940807, 0.03254609927535057, 0.05686062201857567, 0.01049854513257742, 0.0016719589475542307, 0.013465404510498047, 0.00181117607280612, 0.023636385798454285, 0.18136626482009888, 0.10759623348712921, 0.07695320248603821, 0.02583392709493637, 0.025831174105405807, 0.005419582594186068, 0.009587625041604042, 0.23482336103916168, 0.18135206401348114], [0.008182276971638203, 0.0268693994730711, 0.061490096151828766, 0.0035834158770740032, 0.0014096557861194015, 0.01323088351637125, 0.0008793769520707428, 0.021163199096918106, 0.33670350909233093, 0.02327154017984867, 0.07586771249771118, 0.00998992845416069, 0.013206991367042065, 0.004559640306979418, 0.008705583401024342, 0.05418507754802704, 0.33670157194137573], [0.009336317889392376, 0.022399883717298508, 0.0800076499581337, 0.005171736236661673, 0.002033066237345338, 0.024112407118082047, 0.0014970602933317423, 0.028743445873260498, 0.22898197174072266, 0.07501322031021118, 0.08667917549610138, 0.03702550753951073, 0.02168935351073742, 0.011824038811028004, 0.016242511570453644, 0.12028791010379791, 0.22895477712154388], [0.014653075486421585, 0.09359308332204819, 0.06696392595767975, 0.030087772756814957, 0.008392314426600933, 0.04794955998659134, 0.00445424672216177, 0.0848001018166542, 0.13116835057735443, 0.08989185094833374, 0.2309030294418335, 0.01841660402715206, 0.006168010178953409, 0.0034973679576069117, 0.004369367379695177, 0.03351617977023125, 0.131175234913826], [0.0005765205714851618, 0.007011388894170523, 0.009128485806286335, 0.003025729674845934, 0.0031256552319973707, 0.0033960165455937386, 0.0015523354522883892, 0.00385962869040668, 0.483430951833725, 0.00020788029360119253, 0.0005164339672774076, 0.00011835042823804542, 0.0001405497023370117, 0.00010263162403134629, 0.00017403013771399856, 0.00023278914159163833, 0.48340076208114624]], [[0.0054621268063783646, 0.010775531642138958, 0.010822338983416557, 0.0013390656094998121, 0.00243496079929173, 0.00045186441275291145, 0.0019211984472349286, 0.002204312477260828, 0.39071816205978394, 0.026501759886741638, 0.10900821536779404, 0.005289906170219183, 0.011000261642038822, 0.004237881861627102, 0.007327502127736807, 0.01974298804998398, 0.39076194167137146], [0.005540849175304174, 0.007657076232135296, 0.005999905988574028, 0.0009645955287851393, 0.0008379403734579682, 0.0003889902727678418, 0.00033875813824124634, 0.004134131595492363, 0.4738336503505707, 0.002655788091942668, 0.012576981447637081, 0.001038345624692738, 0.0007706217584200203, 0.0007471159915439785, 0.0014480231329798698, 0.007153247948735952, 0.47391408681869507], [0.015541911125183105, 0.0068945568054914474, 0.02948879264295101, 0.002800110261887312, 0.0017331276321783662, 0.0015955963172018528, 0.0009080298477783799, 0.003400082467123866, 0.4429281949996948, 0.004179005045443773, 0.028227677568793297, 0.004841392394155264, 0.0027231143321841955, 0.0038517233915627003, 0.0034703370183706284, 0.004359300248324871, 0.44305703043937683], [0.004030806943774223, 0.0023721149191260338, 0.004427744075655937, 0.004131880588829517, 0.0042313700541853905, 0.0003483241889625788, 0.0005506584420800209, 0.0012992547126486897, 0.46475949883461, 0.0011937768431380391, 0.03412598744034767, 0.004045457113534212, 0.00038871620199643075, 0.0008475618669763207, 0.0017787367105484009, 0.006578113883733749, 0.4648900330066681], [0.0045615751296281815, 0.000625844462774694, 0.0009384976583532989, 0.001587355276569724, 0.052836935967206955, 0.0010898241307586432, 0.0009035097900778055, 0.0004805387288797647, 0.4556460380554199, 0.0008434260380454361, 0.007327162194997072, 0.014572212472558022, 0.000952302769292146, 0.0009939376031979918, 0.0002982941805385053, 0.0005160043947398663, 0.45582640171051025], [0.003065963974222541, 0.00030861934646964073, 0.00260927714407444, 0.0003185052773915231, 0.0013434437569230795, 0.011038393713533878, 0.0030781454406678677, 0.0016100298380479217, 0.47997310757637024, 0.000791336118709296, 0.0029782289639115334, 0.002553225727751851, 0.002838377607986331, 0.004467496648430824, 0.0021496093831956387, 0.0007641137926839292, 0.4801120460033417], [0.003937758971005678, 0.0009687698911875486, 0.0025841405149549246, 0.00105827406514436, 0.0017189363716170192, 0.0025435893330723047, 0.04865572601556778, 0.0019228439778089523, 0.45894601941108704, 0.0011991563951596618, 0.01051073893904686, 0.0014299608301371336, 0.0003771988849621266, 0.0006182062206789851, 0.0015479909488931298, 0.002920611761510372, 0.4590602517127991], [0.0012521537719294429, 0.00136866036336869, 0.0011505135335028172, 0.00061587686650455, 0.0010837919544428587, 0.00032870942959561944, 0.0015233196318149567, 0.009442169219255447, 0.4743685722351074, 0.0032608904875814915, 0.0023852873127907515, 0.0005035788635723293, 0.0003850368957500905, 0.001196642522700131, 0.0020421657245606184, 0.024681614711880684, 0.47441110014915466], [0.0008236513822339475, 0.000444251811131835, 0.0021578792948275805, 0.0002792058512568474, 0.0002449047169648111, 0.00033739025820977986, 0.0001881759671960026, 0.0008484295685775578, 0.495647668838501, 0.0004577460349537432, 0.0006627468392252922, 0.00020130944903939962, 0.0002016120561165735, 0.0006469369982369244, 0.0004911141586489975, 0.0006841516005806625, 0.49568289518356323], [0.013037633150815964, 0.018690086901187897, 0.004026381298899651, 0.004426171537488699, 0.0033282272052019835, 0.005436718929558992, 0.0027315388433635235, 0.01824168488383293, 0.42915579676628113, 0.05087289959192276, 0.0041920156218111515, 0.002957636956125498, 0.0007176595972850919, 0.0025587647687643766, 0.0038630410563200712, 0.006566693540662527, 0.42919713258743286], [0.025324296206235886, 0.147345632314682, 0.057872604578733444, 0.017510246485471725, 0.007632342632859945, 0.00196324591524899, 0.0030827131122350693, 0.005808958318084478, 0.33767402172088623, 0.00392056442797184, 0.043076906353235245, 0.0011429940350353718, 0.0013255821540951729, 0.0011679292656481266, 0.0032028909772634506, 0.004219250753521919, 0.33772990107536316], [0.00488286791369319, 0.0014228641521185637, 0.0014186428161337972, 0.0016192320035770535, 0.006347362417727709, 0.003868976142257452, 0.0008083171560429037, 0.0023226921912282705, 0.37939590215682983, 0.0016564402030780911, 0.003364108968526125, 0.20521804690361023, 0.002826505806297064, 0.0033466373570263386, 0.0011116265086457133, 0.000903092441149056, 0.37948673963546753], [0.008429301902651787, 0.0014230565866455436, 0.0018184679793193936, 0.0005790888681076467, 0.0005666679935529828, 0.002539448207244277, 0.0003403763403184712, 0.0008198717259801924, 0.4670635461807251, 0.0010416965233162045, 0.003266405314207077, 0.0022578921634703875, 0.03571547195315361, 0.003969886340200901, 0.0025147718843072653, 0.0004118141660001129, 0.46724221110343933], [0.00721557205542922, 0.0016549703432247043, 0.0027384429704397917, 0.0007532829768024385, 0.00025981050566770136, 0.0031068362295627594, 0.00020074972417205572, 0.0029467649292200804, 0.47148194909095764, 0.0014773086877539754, 0.0010916618630290031, 0.0017898738151416183, 0.0017837052000686526, 0.026358338072896004, 0.004297489766031504, 0.0012102590408176184, 0.47163283824920654], [0.005021656863391399, 0.001859129755757749, 0.004142876714468002, 0.0022685411386191845, 0.00035529042361304164, 0.00232604518532753, 0.0007750412332825363, 0.004323585424572229, 0.4724622666835785, 0.0017799192573875189, 0.001966010080650449, 0.0009916526032611728, 0.0009251998271793127, 0.005796909797936678, 0.01794496551156044, 0.004505910910665989, 0.47255510091781616], [0.008154839277267456, 0.02595994435250759, 0.006805789656937122, 0.003566473489627242, 0.0012965814676135778, 0.0010429797694087029, 0.0018441297579556704, 0.023445017635822296, 0.4350196421146393, 0.005314759910106659, 0.00759453559294343, 0.0008125887834466994, 0.0007174907950684428, 0.0035929169971495867, 0.005824682302772999, 0.033950477838516235, 0.43505698442459106], [0.0008235423010773957, 0.00044418280594982207, 0.002157955663278699, 0.0002792046871036291, 0.0002449402236379683, 0.00033743807580322027, 0.00018814951181411743, 0.0008484559948556125, 0.49564844369888306, 0.00045763739035464823, 0.0006625339738093317, 0.00020129949552938342, 0.0002016184153035283, 0.0006469786749221385, 0.0004910673596896231, 0.0006840649293735623, 0.4956824779510498]]], [[[0.005732377991080284, 0.3514588177204132, 0.2964673340320587, 0.06345114856958389, 0.012595510110259056, 0.025448625907301903, 0.0077896867878735065, 0.04899793863296509, 0.039190519601106644, 0.015181167051196098, 0.037044424563646317, 0.007308067753911018, 0.008211001753807068, 0.001809056499041617, 0.00350956036709249, 0.03661438822746277, 0.0391903892159462], [0.0005831412854604423, 0.005897948984056711, 0.005931115243583918, 0.002548228483647108, 0.00184024462942034, 0.0020030317828059196, 0.0011322355130687356, 0.00522688589990139, 0.485613614320755, 0.0005153777310624719, 0.0016568899154663086, 0.00028812288655899465, 7.073071174090728e-05, 0.00011156703840242699, 7.928682316560298e-05, 0.0008843469549901783, 0.4856173098087311], [0.006051767151802778, 0.025484049692749977, 0.014306224882602692, 0.018225982785224915, 0.022202614694833755, 0.018330147489905357, 0.02057119645178318, 0.05229593440890312, 0.3860950767993927, 0.004677866119891405, 0.013790030032396317, 0.003182276152074337, 0.0027174786664545536, 0.0023203850723803043, 0.0023720802273601294, 0.021273797377943993, 0.386103093624115], [0.0022077858448028564, 0.006235931068658829, 0.008990605361759663, 0.0028674642089754343, 0.0013845654902979732, 0.0013887172099202871, 0.0011729495599865913, 0.0041052792221307755, 0.483561247587204, 0.0006579301552847028, 0.00221068924292922, 0.0003203283413313329, 0.00013618030061479658, 5.894057539990172e-05, 7.135565829230472e-05, 0.0010692396899685264, 0.48356056213378906], [0.0005427972064353526, 0.002994760638102889, 0.002723918529227376, 0.0009661453659646213, 0.001360641443170607, 0.0007815246935933828, 0.0007203997811302543, 0.0019217494409531355, 0.4933844804763794, 0.00012822668941225857, 0.0005460653337650001, 0.00011933306814171374, 4.748602441395633e-05, 2.402633435849566e-05, 2.608287650218699e-05, 0.0003296727081760764, 0.49338260293006897], [0.0010129687143489718, 0.007765775080770254, 0.004310577176511288, 0.0019061594503000379, 0.0028310746420174837, 0.003936925902962685, 0.0023409686982631683, 0.007053268142044544, 0.48249849677085876, 0.00044314799015410244, 0.001351499930024147, 0.00033148686634376645, 0.00018409447511658072, 0.00011737001477740705, 0.00011431476013967767, 0.0013041032943874598, 0.48249757289886475], [0.0002752021246124059, 0.0020299421157687902, 0.0017969366163015366, 0.000838438339997083, 0.00126757996622473, 0.0009055556729435921, 0.001063876785337925, 0.0012842414434999228, 0.4949764311313629, 0.00012654908641707152, 0.0002103675651596859, 7.829531386960298e-05, 9.834147931542248e-06, 3.648479150797357e-06, 7.4688073254947085e-06, 0.00015460114809684455, 0.49497124552726746], [0.006205603946000338, 0.02894463762640953, 0.03254945948719978, 0.006254755426198244, 0.008885656483471394, 0.01554496306926012, 0.010654150508344173, 0.019698526710271835, 0.4201321303844452, 0.005831683054566383, 0.005642343312501907, 0.0041975583881139755, 0.0032122544944286346, 0.0011955649824813008, 0.003001833101734519, 0.007913363166153431, 0.4201355278491974], [0.01651868410408497, 0.201225146651268, 0.10876559466123581, 0.07697559893131256, 0.0358927920460701, 0.05594801902770996, 0.053777437657117844, 0.042877811938524246, 0.08794908225536346, 0.043479740619659424, 0.06669101864099503, 0.018756907433271408, 0.02486284449696541, 0.01193234696984291, 0.01986880972981453, 0.046529270708560944, 0.08794885128736496], [0.005237212870270014, 0.008204932324588299, 0.006721633020788431, 0.003457236336544156, 0.0009096243302337825, 0.0022951653227210045, 0.0014071743935346603, 0.004623871762305498, 0.45259833335876465, 0.016047505661845207, 0.005976941902190447, 0.01417023129761219, 0.005539620760828257, 0.0032766296062618494, 0.005577230826020241, 0.011365116573870182, 0.4525914192199707], [0.0015229549026116729, 0.0012927246280014515, 0.006463420111685991, 0.0007905112579464912, 0.0005120253772474825, 0.0020386299584060907, 0.00032930023735389113, 0.0038861543871462345, 0.48021435737609863, 0.003572792513296008, 0.0025588429998606443, 0.004928890150040388, 0.0022167316637933254, 0.0035262969322502613, 0.002239897148683667, 0.0036948949564248323, 0.48021137714385986], [0.003779294667765498, 0.0022959159687161446, 0.003394491970539093, 0.0005672530387528241, 0.00046678452054038644, 0.0006091655814088881, 0.00021471164654940367, 0.0035200235433876514, 0.45558834075927734, 0.005751579534262419, 0.012999902479350567, 0.02065327949821949, 0.009368163533508778, 0.0033462520223110914, 0.0043659815564751625, 0.01749434880912304, 0.45558443665504456], [0.001026890822686255, 0.0014788956614211202, 0.001881602220237255, 0.00029091897886246443, 0.0003161149797961116, 0.0003643568779807538, 7.497551996493712e-05, 0.002344898646697402, 0.4841398000717163, 0.0013726098695769906, 0.0038558829110115767, 0.0041435458697378635, 0.004675861448049545, 0.0021155723370611668, 0.0016229794127866626, 0.006166336592286825, 0.4841287136077881], [0.0005873802583664656, 0.001616647350601852, 0.0024820810649544, 0.00015130001702345908, 0.00011801149958046153, 0.00048023794079199433, 4.3296000512782484e-05, 0.0012299279915168881, 0.4861294627189636, 0.001728222006931901, 0.006255460437387228, 0.0021400803234428167, 0.0025567286647856236, 0.004833409562706947, 0.00113230652641505, 0.002396430354565382, 0.48611903190612793], [0.001079473178833723, 0.002940128790214658, 0.006113069597631693, 0.0005145452450960875, 0.00025237377849407494, 0.0008021829416975379, 0.00014207401545718312, 0.002515962580218911, 0.4718865752220154, 0.0041077290661633015, 0.011648755520582199, 0.005741051398217678, 0.005975864361971617, 0.003786431858316064, 0.002050690818578005, 0.00856279768049717, 0.4718802869319916], [0.006499884184449911, 0.006831463426351547, 0.027302555739879608, 0.0019565920811146498, 0.0003006450133398175, 0.0008454597555100918, 0.0002922608400695026, 0.005557238589972258, 0.41151976585388184, 0.0067992680706083775, 0.040100276470184326, 0.008731737732887268, 0.007158646825700998, 0.007498839404433966, 0.007007658015936613, 0.05007214844226837, 0.4115254580974579], [0.016518589109182358, 0.2012253850698471, 0.10876526683568954, 0.07697532325983047, 0.0358927883207798, 0.05594798922538757, 0.053777195513248444, 0.04287824034690857, 0.08795088529586792, 0.04347857087850571, 0.06669024378061295, 0.018756138160824776, 0.02486267313361168, 0.011932287365198135, 0.019868843257427216, 0.04652900993824005, 0.08795066177845001]], [[0.012525881640613079, 0.04398968070745468, 0.02303292043507099, 0.028735680505633354, 0.05447067320346832, 0.02095254696905613, 0.013736053369939327, 0.014820651151239872, 0.2374809831380844, 0.03010939247906208, 0.06556187570095062, 0.049282003194093704, 0.05331811308860779, 0.01583646610379219, 0.024575941264629364, 0.07409147918224335, 0.2374797910451889], [0.0024372937623411417, 0.134346604347229, 0.07361678034067154, 0.02018393948674202, 0.02191765606403351, 0.012914825230836868, 0.012561282142996788, 0.010130390524864197, 0.32136479020118713, 0.012248959392309189, 0.01814456470310688, 0.006313006859272718, 0.010171320289373398, 0.0025753118097782135, 0.005846621468663216, 0.01385420747101307, 0.32137244939804077], [0.0022742741275578737, 0.01674554869532585, 0.1313985139131546, 0.0064729610458016396, 0.009539332240819931, 0.04080741107463837, 0.0053956652991473675, 0.0058334264904260635, 0.3513639271259308, 0.004868340212851763, 0.01493094302713871, 0.0028643771074712276, 0.008764074184000492, 0.016498828306794167, 0.020793871954083443, 0.010085796006023884, 0.35136276483535767], [0.004033764358609915, 0.0934067890048027, 0.017098961398005486, 0.23926609754562378, 0.025055259466171265, 0.02209092676639557, 0.017848674207925797, 0.02969762496650219, 0.2323877215385437, 0.010440210811793804, 0.016172656789422035, 0.019009361043572426, 0.0034970883280038834, 0.0017230180092155933, 0.0068774898536503315, 0.029006443917751312, 0.23238806426525116], [0.0027077263221144676, 0.02353522926568985, 0.010064241476356983, 0.014403527602553368, 0.46600544452667236, 0.029868287965655327, 0.027744952589273453, 0.0025174468755722046, 0.18897020816802979, 0.002408346626907587, 0.004377763718366623, 0.027403753250837326, 0.006692078895866871, 0.0008054658537730575, 0.0019218800589442253, 0.0015989654930308461, 0.18897461891174316], [0.0008461983525194228, 0.012745287269353867, 0.012791633605957031, 0.010122657753527164, 0.020089758560061455, 0.3043075501918793, 0.02599339187145233, 0.002321284031495452, 0.2897864878177643, 0.0013545018155127764, 0.0016651070909574628, 0.00969926081597805, 0.007144162431359291, 0.003859245916828513, 0.005632257089018822, 0.001859018811956048, 0.2897820770740509], [0.0022274802904576063, 0.024129878729581833, 0.018129782751202583, 0.01143691223114729, 0.02954508364200592, 0.059192776679992676, 0.5413843989372253, 0.005082998424768448, 0.1447935700416565, 0.0016921827336773276, 0.0028813534881919622, 0.004716459661722183, 0.0023062152322381735, 0.0013718843692913651, 0.004138705786317587, 0.00217791018076241, 0.14479246735572815], [0.0007924042292870581, 0.004342886619269848, 0.0147187989205122, 0.001271353685297072, 0.005935266613960266, 0.0057135592214763165, 0.0023225632030516863, 0.008487299084663391, 0.44882526993751526, 0.009427139535546303, 0.003554626600816846, 0.008465141989290714, 0.003829637309536338, 0.00869431346654892, 0.006292673293501139, 0.018498538061976433, 0.44882848858833313], [0.017075542360544205, 0.04165670648217201, 0.09032362699508667, 0.04640958830714226, 0.05838962271809578, 0.12241877615451813, 0.04562798887491226, 0.03744145482778549, 0.06261170655488968, 0.041652701795101166, 0.042466986924409866, 0.041372764855623245, 0.054647766053676605, 0.12319710105657578, 0.07539340108633041, 0.03670293837785721, 0.06261132657527924], [0.003205417888239026, 0.011904819868505001, 0.012091731652617455, 0.006897874176502228, 0.006012268364429474, 0.008998489007353783, 0.007844949141144753, 0.004762975033372641, 0.3378387689590454, 0.15228553116321564, 0.01657586544752121, 0.016285276040434837, 0.024118781089782715, 0.003952993080019951, 0.005927578080445528, 0.04346243292093277, 0.3378344178199768], [0.002724470105022192, 0.010024412535130978, 0.020794983953237534, 0.0012117858277633786, 0.004923355299979448, 0.002882680157199502, 0.0018071690574288368, 0.0013564227847382426, 0.44120553135871887, 0.008368640206754208, 0.012222128920257092, 0.01048631314188242, 0.010790479369461536, 0.00938624981790781, 0.015173789113759995, 0.005441887769848108, 0.4411996304988861], [0.0008884118869900703, 0.004966572392731905, 0.002345796674489975, 0.0038140511605888605, 0.029633598402142525, 0.016497116535902023, 0.003562374971807003, 0.002009723801165819, 0.274200439453125, 0.0027811340987682343, 0.0029459157958626747, 0.3134748041629791, 0.04021326079964638, 0.012165484018623829, 0.011341501027345657, 0.0049714939668774605, 0.27418839931488037], [0.0013292423682287335, 0.0031741235870867968, 0.004420950077474117, 0.0005869693122804165, 0.004190822131931782, 0.004853463731706142, 0.0027528819628059864, 0.0005065901787020266, 0.18304698169231415, 0.0037007001228630543, 0.00225565442815423, 0.02467900700867176, 0.5225248336791992, 0.023075195029377937, 0.029583530500531197, 0.006277815438807011, 0.1830413043498993], [0.0011934485519304872, 0.0011972703505307436, 0.008055170997977257, 0.000421518343500793, 0.0007108537829481065, 0.006399841513484716, 0.0005738665931858122, 0.0006422411534003913, 0.3648245334625244, 0.0005503998836502433, 0.001250285655260086, 0.0036745623219758272, 0.011885044164955616, 0.18483692407608032, 0.04650628939270973, 0.002467802260071039, 0.36480993032455444], [0.0035652942024171352, 0.002929875161498785, 0.00750355701893568, 0.003339452436193824, 0.0029645191971212626, 0.018696559593081474, 0.007979441434144974, 0.002393589820712805, 0.3285079300403595, 0.002056811936199665, 0.0036669259425252676, 0.01678227074444294, 0.019413670524954796, 0.07943206280469894, 0.16439281404018402, 0.00788420531898737, 0.3284910023212433], [0.007000735029578209, 0.01993590034544468, 0.005948950070887804, 0.009566698223352432, 0.003581451019272208, 0.0037530423142015934, 0.003943718038499355, 0.014704895205795765, 0.16458885371685028, 0.06221707910299301, 0.014026223681867123, 0.05116696655750275, 0.05257246643304825, 0.016880260780453682, 0.025000395253300667, 0.3805259168148041, 0.16458648443222046], [0.017075348645448685, 0.041656214743852615, 0.09032460302114487, 0.04640873521566391, 0.058390405029058456, 0.1224188581109047, 0.04562682658433914, 0.03744121640920639, 0.06261271983385086, 0.041652072221040726, 0.042466502636671066, 0.04137236252427101, 0.05464804917573929, 0.12319736182689667, 0.0753936842083931, 0.03670267015695572, 0.06261233985424042]], [[0.02255246601998806, 0.016537176445126534, 0.19021019339561462, 0.05639459565281868, 0.010413448326289654, 0.009903442114591599, 0.01795833371579647, 0.03141360729932785, 0.014352582395076752, 0.0074180252850055695, 0.4516300857067108, 0.018311072140932083, 0.014141831547021866, 0.010655286721885204, 0.046470582485198975, 0.06728436797857285, 0.014353012666106224], [0.0051886700093746185, 0.05415106564760208, 0.015387012623250484, 0.007505962625145912, 0.0021845127921551466, 0.023573867976665497, 0.005414517596364021, 0.08547712862491608, 0.38570675253868103, 0.004522663541138172, 0.005325814243406057, 0.0003068078658543527, 0.0006961135077290237, 0.003771910211071372, 0.004824344534426928, 0.010274983011186123, 0.38568779826164246], [0.006280183792114258, 0.457738995552063, 0.07577209174633026, 0.026058992370963097, 0.014405171386897564, 0.016351960599422455, 0.0043957652524113655, 0.007036853581666946, 0.15638478100299835, 0.004735412076115608, 0.04083384573459625, 0.003947857301682234, 0.003733963705599308, 0.010412978008389473, 0.006634787190705538, 0.008894695900380611, 0.15638169646263123], [0.011539377272129059, 0.09949619323015213, 0.1040518581867218, 0.05344853177666664, 0.009582693688571453, 0.2608286142349243, 0.050707630813121796, 0.0085514010861516, 0.16759783029556274, 0.0026775398291647434, 0.021397093310952187, 0.0012701137457042933, 0.004175036679953337, 0.010991677641868591, 0.023143569007515907, 0.002945619635283947, 0.16759516298770905], [0.02973167598247528, 0.07690531015396118, 0.047165174037218094, 0.2296413630247116, 0.0742604061961174, 0.10394757241010666, 0.019687842577695847, 0.0037941480986773968, 0.18572740256786346, 0.011022750288248062, 0.006715601310133934, 0.0030377975199371576, 0.0033546590711921453, 0.0038184982258826494, 0.00878156628459692, 0.0066856760531663895, 0.18572252988815308], [0.003935239743441343, 0.032638661563396454, 0.013407550752162933, 0.024493277072906494, 0.05912860110402107, 0.15248402953147888, 0.022822679951786995, 0.00414193095639348, 0.3344057500362396, 0.0027189224492758512, 0.002054766984656453, 0.0016770398942753673, 0.0033895059023052454, 0.005474029574543238, 0.0016631443286314607, 0.001165649970062077, 0.3343992233276367], [0.00023041841632220894, 0.0014078803360462189, 0.0013588329311460257, 0.0012348921736702323, 0.0034998420160263777, 0.9151123762130737, 0.006135380361229181, 0.0001292256492888555, 0.03173745423555374, 0.0007335039554163814, 0.0001920120557770133, 0.00022399597219191492, 0.00024870727793313563, 0.004835208412259817, 0.0011713503627106547, 1.2268412319826894e-05, 0.03173675015568733], [0.004210618790239096, 0.010797660797834396, 0.03953735530376434, 0.031317777931690216, 0.012942219153046608, 0.18070651590824127, 0.22081008553504944, 0.0014434935292229056, 0.2072792649269104, 0.0025198671501129866, 0.024099325761198997, 0.006713059265166521, 0.016088169068098068, 0.003081422531977296, 0.02703266777098179, 0.00414266949519515, 0.2072777897119522], [0.03075684793293476, 0.050250958651304245, 0.10121431946754456, 0.05514764413237572, 0.044641293585300446, 0.047108590602874756, 0.030974021181464195, 0.08693362772464752, 0.03872528299689293, 0.026210786774754524, 0.10376135259866714, 0.03895127400755882, 0.034228626638650894, 0.04499056562781334, 0.05360503867268562, 0.17377375066280365, 0.03872605040669441], [0.03641815111041069, 0.008052133023738861, 0.0018064351752400398, 0.0030028284527361393, 0.0008273310377262533, 0.0025297130923718214, 0.002727655228227377, 0.5159849524497986, 0.1005997285246849, 0.0241503044962883, 0.0033834988716989756, 0.0022061350755393505, 0.003551473841071129, 0.013575058430433273, 0.011995721608400345, 0.16859211027622223, 0.10059676319360733], [0.018927721306681633, 0.010604850016534328, 0.010019751265645027, 0.005446989554911852, 0.0017387995030730963, 0.015060827136039734, 0.002329367445781827, 0.027639588341116905, 0.3296438157558441, 0.09403447806835175, 0.01991122029721737, 0.013736003078520298, 0.008927475661039352, 0.029324132949113846, 0.04000852629542351, 0.04301200062036514, 0.3296343982219696], [0.027998588979244232, 0.010734878480434418, 0.013445778749883175, 0.008256393484771252, 0.007886757142841816, 0.016468830406665802, 0.005183707922697067, 0.021891770884394646, 0.2058113068342209, 0.053535327315330505, 0.035523660480976105, 0.08833994716405869, 0.0796736627817154, 0.058038126677274704, 0.05007735639810562, 0.1113213524222374, 0.20581258833408356], [0.024024153128266335, 0.0024413098581135273, 0.007671091705560684, 0.002746078185737133, 0.005442376714199781, 0.009366065263748169, 0.0014803579542785883, 0.007753412704914808, 0.18916790187358856, 0.058506570756435394, 0.01770136132836342, 0.1720457524061203, 0.04430493712425232, 0.2029067575931549, 0.050709571689367294, 0.014567193575203419, 0.18916507065296173], [0.002812630496919155, 0.0019144911784678698, 0.0052632298320531845, 0.000284150562947616, 0.0019059226615354419, 0.0025077250320464373, 0.0006264394032768905, 0.0011376042384654284, 0.4189135432243347, 0.009348278865218163, 0.005259343422949314, 0.02028665691614151, 0.03277909755706787, 0.058848679065704346, 0.012434656731784344, 0.006771378219127655, 0.41890615224838257], [0.00345527078025043, 0.0012366781011223793, 0.002847040770575404, 0.00020404857059475034, 0.0014283418422564864, 0.01842554472386837, 0.0013994519831612706, 0.0015247557312250137, 0.12187078595161438, 0.009246139787137508, 0.0021591787226498127, 0.03268887475132942, 0.02692278102040291, 0.5951436161994934, 0.05675017833709717, 0.0028317251708358526, 0.12186546623706818], [0.0061354744248092175, 0.003449586918577552, 0.008863916620612144, 0.0025198073126375675, 0.0005928147002123296, 0.02298600971698761, 0.00788487121462822, 0.0038011176511645317, 0.2517220675945282, 0.009041408076882362, 0.011061213910579681, 0.010346817784011364, 0.029818782582879066, 0.08406944572925568, 0.27485084533691406, 0.021141648292541504, 0.25171419978141785], [0.030755406245589256, 0.050251420587301254, 0.10121684521436691, 0.05514812469482422, 0.044641029089689255, 0.04710926488041878, 0.03097490780055523, 0.08692710101604462, 0.0387251079082489, 0.026210878044366837, 0.10376205295324326, 0.038951434195041656, 0.03423009440302849, 0.04498929902911186, 0.05360664427280426, 0.17377449572086334, 0.03872588276863098]], [[0.04554121941328049, 0.009199986234307289, 0.0063534872606396675, 0.010801888071000576, 0.001969326054677367, 0.01824416220188141, 0.027314908802509308, 0.008589928038418293, 0.3695932626724243, 0.012321523390710354, 0.0057823676615953445, 0.010587123222649097, 0.005133056081831455, 0.038473568856716156, 0.03444083780050278, 0.026070941239595413, 0.36958232522010803], [0.006388530135154724, 0.011096514761447906, 0.015440454706549644, 0.010007442906498909, 0.00395668251439929, 0.029812294989824295, 0.010998351499438286, 0.005796106997877359, 0.44774049520492554, 0.002114752307534218, 0.000970024848356843, 0.000916947377845645, 0.0004213794891256839, 0.0017221391899511218, 0.0034923176281154156, 0.0013794493861496449, 0.44774603843688965], [0.009414441883563995, 0.026494426652789116, 0.06022033840417862, 0.017888369038701057, 0.014413007535040379, 0.018028074875473976, 0.01071783434599638, 0.015700355172157288, 0.3943559229373932, 0.0030113717075437307, 0.0059552849270403385, 0.00252044596709311, 0.003164339577779174, 0.00593807315453887, 0.006492985878139734, 0.01132645271718502, 0.3943582773208618], [0.0088624507188797, 0.016770992428064346, 0.008489384315907955, 0.0279600378125906, 0.010298780165612698, 0.1716640442609787, 0.12188942730426788, 0.007638775743544102, 0.3034001886844635, 0.005140735302120447, 0.001223384984768927, 0.0018318829825147986, 0.00040970585541799664, 0.003559007542207837, 0.004720765631645918, 0.0027475282549858093, 0.30339279770851135], [0.006954554468393326, 0.007336656097322702, 0.0025394682306796312, 0.005201582331210375, 0.005734742619097233, 0.03356388956308365, 0.00523295346647501, 0.00269103329628706, 0.4635368585586548, 0.0014110163319855928, 0.00015829451149329543, 0.0005777047481387854, 0.00011080861440859735, 0.0005434292834252119, 0.0007688202895224094, 0.00011086231097579002, 0.4635273516178131], [0.0073263514786958694, 0.01873069256544113, 0.0031164493411779404, 0.008841820992529392, 0.11086704581975937, 0.11712416261434555, 0.029057204723358154, 0.004409668035805225, 0.3437116742134094, 0.0014607772463932633, 0.00045140658039599657, 0.007177236024290323, 0.0012704264372587204, 0.0014691947726532817, 0.0009623391670174897, 0.00031864267657510936, 0.3437049686908722], [0.002099486766383052, 0.0037424040492624044, 0.001077237888239324, 0.0023204409517347813, 0.01250382699072361, 0.7251942157745361, 0.022480551153421402, 0.0012375111691653728, 0.11314277350902557, 0.0013801399618387222, 6.686729466309771e-05, 0.00027393829077482224, 4.0218885260401294e-05, 0.0008534585358574986, 0.0003895273548550904, 5.673698251484893e-05, 0.11314071714878082], [0.014805400744080544, 0.005912791937589645, 0.009252442978322506, 0.011960674077272415, 0.014281476847827435, 0.07294703274965286, 0.09243258833885193, 0.01328662782907486, 0.35832977294921875, 0.009634271264076233, 0.0018515965202823281, 0.002754193963482976, 0.002813354367390275, 0.0015979899326339364, 0.016356630250811577, 0.013453013263642788, 0.3583301901817322], [0.06075502187013626, 0.04756705090403557, 0.024505222216248512, 0.041119206696748734, 0.055909715592861176, 0.04023066163063049, 0.08756592869758606, 0.047822505235672, 0.10716397315263748, 0.0730045735836029, 0.043590791523456573, 0.07098162174224854, 0.05784333497285843, 0.013427472673356533, 0.033653624355793, 0.08769694715738297, 0.10716239362955093], [0.05291523039340973, 0.001984847243875265, 0.001994884107261896, 0.0008217752911150455, 0.0010112912859767675, 0.004462121520191431, 0.002114827511832118, 0.01088201068341732, 0.42574578523635864, 0.008098365738987923, 0.004711825400590897, 0.00586341880261898, 0.0011751024285331368, 0.0256133284419775, 0.017413906753063202, 0.009441502392292023, 0.42574962973594666], [0.009042135439813137, 0.0015484930481761694, 0.0107125174254179, 0.000604674220085144, 8.401161176152527e-05, 0.0026000775396823883, 0.0005113151855766773, 0.0016089691780507565, 0.43598538637161255, 0.0035414290614426136, 0.00770805636420846, 0.002135239774361253, 0.0014354768209159374, 0.04802033677697182, 0.02825295552611351, 0.01022831816226244, 0.4359806180000305], [0.04007783904671669, 0.001881256466731429, 0.0024513639509677887, 0.0006194608868099749, 0.0020508689340204, 0.008939762599766254, 0.0008169619832187891, 0.005018626339733601, 0.3767133951187134, 0.015994325280189514, 0.014044477604329586, 0.04408397525548935, 0.014529246836900711, 0.05312582477927208, 0.03202439844608307, 0.010926838032901287, 0.37670135498046875], [0.013736987486481667, 0.0011371597647666931, 0.004555847495794296, 0.0003044239419978112, 0.0003189755661878735, 0.010978755541145802, 0.00034805815084837377, 0.0018808480817824602, 0.2441849410533905, 0.005386872682720423, 0.005235855933278799, 0.01776091754436493, 0.006309798918664455, 0.3805254101753235, 0.05955587327480316, 0.0035995652433484793, 0.24417981505393982], [0.009031491354107857, 0.0023163161240518093, 0.013704449869692326, 0.0006354933721013367, 0.0006238433998078108, 0.00426264014095068, 0.0003713623736985028, 0.0014617580454796553, 0.22843414545059204, 0.005722798407077789, 0.007863953709602356, 0.014869583770632744, 0.03801451250910759, 0.21501068770885468, 0.22400610148906708, 0.005238768644630909, 0.22843213379383087], [0.008795831352472305, 0.0017278454033657908, 0.007302428595721722, 0.0005352278240025043, 0.0016677632229402661, 0.01279748696833849, 0.0014263754710555077, 0.0007649898761883378, 0.1651044487953186, 0.007080018520355225, 0.008906455710530281, 0.011133446358144283, 0.014726677909493446, 0.5179486870765686, 0.07256244868040085, 0.0024222692009061575, 0.16509759426116943], [0.02172226458787918, 0.0026696454733610153, 0.006795316468924284, 0.0023306121584028006, 0.00031043755006976426, 0.013657729141414165, 0.0035940948873758316, 0.003131263656541705, 0.306375116109848, 0.019295470789074898, 0.0281047485768795, 0.019133297726511955, 0.005344226956367493, 0.07714380323886871, 0.13694310188293457, 0.047081828117370605, 0.30636706948280334], [0.06075282767415047, 0.04756716638803482, 0.024505963549017906, 0.04111969843506813, 0.0559094063937664, 0.0402311272919178, 0.08756700903177261, 0.04782210290431976, 0.1071636900305748, 0.07300541549921036, 0.04359082877635956, 0.07098083198070526, 0.057844895869493484, 0.013427520170807838, 0.033653680235147476, 0.08769567310810089, 0.10716213285923004]], [[0.008072351105511189, 0.0970616415143013, 0.0479985736310482, 0.08865855634212494, 0.0073208580724895, 0.09594166278839111, 0.012942367233335972, 0.09502130001783371, 0.0848035141825676, 0.14559076726436615, 0.018215667456388474, 0.03304503858089447, 0.00839836522936821, 0.005301028955727816, 0.016955891624093056, 0.14986765384674072, 0.08480477333068848], [0.00029199241544120014, 0.002026236616075039, 0.009927725419402122, 0.0008937967359088361, 0.0009448904893361032, 0.002929836278781295, 0.0007016254239715636, 0.0032919365912675858, 0.48573508858680725, 0.0006974827847443521, 0.0005899725365452468, 0.0008616857812739909, 0.0009893173119053245, 0.00039425274007953703, 0.0009596660383976996, 0.0030321709346026182, 0.4857323169708252], [0.02352430857717991, 0.01939789205789566, 0.026672454550862312, 0.014020427130162716, 0.02560737356543541, 0.023188726976513863, 0.01013965718448162, 0.026953069493174553, 0.3564034402370453, 0.012372939847409725, 0.01160029973834753, 0.013721444644033909, 0.014973224140703678, 0.011269966140389442, 0.031242715194821358, 0.022506842389702797, 0.35640522837638855], [0.0004150836612097919, 0.0019953183364123106, 0.0048773144371807575, 0.0008740141638554633, 0.0006392838549800217, 0.0035667086485773325, 0.0012115498539060354, 0.0022593247704207897, 0.4888775646686554, 0.0007568212458863854, 0.0005134233506396413, 0.001029378385283053, 0.0007043932564556599, 0.00032219517743214965, 0.0010616589570418, 0.0020265160128474236, 0.48886939883232117], [0.0003148639516439289, 0.001826586900278926, 0.00446000462397933, 0.0005542636499740183, 0.0010195644572377205, 0.003765629604458809, 0.0013322030426934361, 0.0013798534637317061, 0.4904574155807495, 0.00042579194996505976, 0.0008980543352663517, 0.000635086209513247, 0.00027596595464274287, 0.00016428271192125976, 0.00040110538247972727, 0.0016371335368603468, 0.49045225977897644], [0.0014843936078250408, 0.008924184367060661, 0.02247716300189495, 0.003506989683955908, 0.0028947722166776657, 0.010724671185016632, 0.0046979463659226894, 0.005851625464856625, 0.45741426944732666, 0.0028790198266506195, 0.0022173512261360884, 0.0026488876901566982, 0.0033455409575253725, 0.0025797525886446238, 0.005034410394728184, 0.005907638464123011, 0.4574113190174103], [2.7402362320572138e-05, 0.0003943797782994807, 0.001930851023644209, 0.00012959442392457277, 0.00015123074990697205, 0.0006607579416595399, 0.0002049604954663664, 0.00030978998984210193, 0.4977753162384033, 6.23662126599811e-05, 6.033935278537683e-05, 9.53183916863054e-05, 6.083087282604538e-05, 3.3789641747716814e-05, 0.00011050031753256917, 0.00022006798826623708, 0.4977724552154541], [0.004204594995826483, 0.007253636140376329, 0.031624481081962585, 0.003278732532635331, 0.002680302830412984, 0.025581251829862595, 0.003637828165665269, 0.01038562972098589, 0.415348082780838, 0.006600002758204937, 0.0032698549330234528, 0.003010248066857457, 0.004509266000241041, 0.013244258239865303, 0.037509091198444366, 0.012514753267168999, 0.415348082780838], [0.02602558396756649, 0.11502430588006973, 0.13907042145729065, 0.08255820721387863, 0.03488663583993912, 0.05803551897406578, 0.033057402819395065, 0.10341104865074158, 0.02057592198252678, 0.06378481537103653, 0.05510827153921127, 0.02587272599339485, 0.033313728868961334, 0.06530474871397018, 0.07745680212974548, 0.04593774676322937, 0.020576084032654762], [5.040438554715365e-05, 0.0021397005766630173, 0.00895668100565672, 0.000232657344895415, 0.00023611639335285872, 0.002490076469257474, 0.00017552664212416857, 0.0028803490567952394, 0.48868849873542786, 0.0007212411146610975, 0.0007951589650474489, 0.00033781962702050805, 0.0006165526574477553, 0.0002109793567797169, 0.0007292263326235116, 0.00205221027135849, 0.48868685960769653], [0.0003890593652613461, 0.000693493231665343, 0.0018270111177116632, 0.0003544257197063416, 0.0003338260285090655, 0.0014996877871453762, 0.0002062274288618937, 0.0028919950127601624, 0.4902200996875763, 0.0007828455418348312, 0.00048663292545825243, 0.002222022507339716, 0.001564528327435255, 0.0006616450264118612, 0.0019176488276571035, 0.00373026542365551, 0.4902186989784241], [0.000591022486332804, 0.005605257581919432, 0.013088002800941467, 0.0014561369316652417, 0.0010515452595427632, 0.006971160415560007, 0.0012339871609583497, 0.007519707549363375, 0.46225234866142273, 0.0006260748486965895, 0.003564959391951561, 0.004405129235237837, 0.006562281399965286, 0.007454396691173315, 0.009721138514578342, 0.0056509170681238174, 0.46224597096443176], [6.160011980682611e-05, 0.0006976075819693506, 0.004922997672110796, 0.00011092484783148393, 0.00012217674520798028, 0.0016010383842512965, 8.087490277830511e-05, 0.0013516803737729788, 0.4888431429862976, 0.00014752670540474355, 0.0003647179401014, 0.0003796535893343389, 0.0030504059977829456, 0.0029147095046937466, 0.005478133447468281, 0.0010295744286850095, 0.4888433814048767], [0.000166792786330916, 0.0015397928655147552, 0.007944038137793541, 0.00013711916108150035, 0.00011599745630519465, 0.0006569723482243717, 0.00010692119394661859, 0.0019003862980753183, 0.4794031083583832, 7.980596274137497e-05, 0.0012594269355759025, 0.000490149948745966, 0.007886458188295364, 0.006780900061130524, 0.010846252553164959, 0.001284137717448175, 0.47940173745155334], [0.0002697754534892738, 0.003752934280782938, 0.008374127559363842, 0.00041484954999759793, 0.00019416961004026234, 0.0014724100474268198, 0.0003446594637352973, 0.0032207488548010588, 0.4782703220844269, 0.0001742991735227406, 0.0021611363627016544, 0.0009780267719179392, 0.005905776284635067, 0.005196746438741684, 0.0085239103063941, 0.0024807851295918226, 0.47826531529426575], [0.0003798682300839573, 0.0012959493324160576, 0.0038639199919998646, 0.0003593916189856827, 0.00022305548191070557, 0.002155375201255083, 0.0004883090150542557, 0.0025148089043796062, 0.48420318961143494, 0.0015796689549461007, 0.001260863384231925, 0.0017355747986584902, 0.0030727966222912073, 0.0015600246842950583, 0.005307079292833805, 0.005799435079097748, 0.4842008948326111], [0.026025498285889626, 0.11502338945865631, 0.13907143473625183, 0.08255776762962341, 0.03488677367568016, 0.058035679161548615, 0.033057257533073425, 0.10341017693281174, 0.020576415583491325, 0.06378437578678131, 0.055108219385147095, 0.025872791185975075, 0.033314116299152374, 0.06530431658029556, 0.07745753973722458, 0.04593765735626221, 0.02057657577097416]], [[0.04480824992060661, 0.03297186642885208, 0.03367864340543747, 0.025074781849980354, 0.022815730422735214, 0.061785053461790085, 0.016387585550546646, 0.06054631993174553, 0.16260534524917603, 0.1300194412469864, 0.06651037186384201, 0.0332353413105011, 0.012909423559904099, 0.01947220414876938, 0.036484528332948685, 0.07809310406446457, 0.16260197758674622], [0.0010800542077049613, 0.0026196117978543043, 0.00236563035286963, 0.002990636508911848, 0.003610211657360196, 0.008666242472827435, 0.0030203580390661955, 0.0036620297469198704, 0.48523062467575073, 0.00047510152217000723, 0.0004351798561401665, 0.00017731636762619019, 5.776186299044639e-05, 7.527276466134936e-05, 6.850382487755269e-05, 0.00023697895812802017, 0.4852283000946045], [0.0028387606143951416, 0.010509196668863297, 0.014097252860665321, 0.011465372517704964, 0.009642244316637516, 0.017164289951324463, 0.018239587545394897, 0.009173719212412834, 0.4459141194820404, 0.0013492201687768102, 0.004466199316084385, 0.001956002553924918, 0.0017063363920897245, 0.0011636473936960101, 0.0012486072955653071, 0.003153716679662466, 0.4459116756916046], [0.006845681928098202, 0.024603400379419327, 0.023730771616101265, 0.008230338804423809, 0.011099331080913544, 0.034567300230264664, 0.006372840143740177, 0.023801378905773163, 0.42740878462791443, 0.0034354578237980604, 0.001242276281118393, 0.00020345202938187867, 9.469996439293027e-05, 0.00032897398341447115, 0.00036875149817205966, 0.0002733061264734715, 0.4273930788040161], [0.002326486399397254, 0.014244666323065758, 0.007843371480703354, 0.006786344572901726, 0.001599332899786532, 0.01107979565858841, 0.0037854891270399094, 0.004203256219625473, 0.4735513925552368, 0.00065084348898381, 0.0002197490684920922, 2.4478951672790572e-05, 5.385138592828298e-06, 2.81820884993067e-05, 3.485134584479965e-05, 9.33391202124767e-05, 0.47352316975593567], [0.001679741544649005, 0.021424351260066032, 0.017392024397850037, 0.006670094095170498, 0.003000916913151741, 0.011584553867578506, 0.0038224360905587673, 0.007737676613032818, 0.4624473452568054, 0.000476703280583024, 0.0005946724559180439, 9.42141778068617e-05, 4.75219203508459e-05, 7.814638229319826e-05, 8.306042582262307e-05, 0.00042882596608251333, 0.46243762969970703], [0.0007834460702724755, 0.008080177940428257, 0.007475530728697777, 0.0026598579715937376, 0.002991017885506153, 0.00956282950937748, 0.0011644703336060047, 0.002033824101090431, 0.4824669659137726, 0.00015426297613885254, 0.0001202375497086905, 1.7891805327963084e-05, 4.126811290916521e-06, 9.059407602762803e-06, 8.434074516117107e-06, 2.0615409084712155e-05, 0.48244717717170715], [0.014767533168196678, 0.052761223167181015, 0.044683732092380524, 0.0628630742430687, 0.07557976245880127, 0.22296178340911865, 0.054364241659641266, 0.011514107696712017, 0.18531815707683563, 0.009669188410043716, 0.0156327486038208, 0.01374389324337244, 0.0038618582766503096, 0.0127576794475317, 0.02555658668279648, 0.008647947572171688, 0.18531642854213715], [0.0330275297164917, 0.08639538288116455, 0.0546003133058548, 0.0877411738038063, 0.06216031312942505, 0.0857500210404396, 0.0941241979598999, 0.05902399495244026, 0.052815992385149, 0.07450896501541138, 0.07156369090080261, 0.045038677752017975, 0.01917661540210247, 0.023329945281147957, 0.03058750182390213, 0.06733981519937515, 0.052815914154052734], [0.0019794555846601725, 0.0003886910271830857, 0.0012518479488790035, 0.000655899231787771, 0.00027334477636031806, 0.0012694813776761293, 0.00015124864876270294, 0.0007694882224313915, 0.4904400408267975, 0.0012937705032527447, 0.0046974350698292255, 0.002628656104207039, 0.000338042969815433, 0.0007595503702759743, 0.0009430511854588985, 0.0017310597468167543, 0.4904288053512573], [0.0024472924415022135, 0.00020496420620474964, 0.0007056475151330233, 0.00013834694982506335, 6.45154868834652e-05, 0.00045146237243898213, 7.685282616876066e-05, 0.0004525057156570256, 0.4852296710014343, 0.002709990134462714, 0.006238013505935669, 0.006091473624110222, 0.0009261975064873695, 0.0021920346189290285, 0.0018912581726908684, 0.004965838044881821, 0.4852139353752136], [0.005546792410314083, 0.0005828047287650406, 0.0036694954615086317, 0.0003416200925130397, 6.882456364110112e-05, 0.00035175622906535864, 6.822581781307235e-05, 0.0007095675682649016, 0.4506056010723114, 0.00519830035045743, 0.01881220005452633, 0.0057239956222474575, 0.0035084798000752926, 0.015229422599077225, 0.02350020594894886, 0.01549785677343607, 0.4505849778652191], [0.0010218201205134392, 0.00012966724170837551, 0.0016478016041219234, 6.639950152020901e-05, 3.411811121623032e-05, 0.00024926173500716686, 1.4227876818040386e-05, 0.00019059350597672164, 0.4902417063713074, 0.0006493504042737186, 0.005307517014443874, 0.0040329815819859505, 0.0012620934285223484, 0.001588954241015017, 0.002162833232432604, 0.0011746532982215285, 0.49022603034973145], [0.003501582657918334, 0.0002870450261980295, 0.0022576579358428717, 9.947834041668102e-05, 9.544621570967138e-05, 0.0002486974117346108, 5.0738548452500254e-05, 0.00028689997270703316, 0.4697716534137726, 0.0010977355996146798, 0.011452978476881981, 0.007928447797894478, 0.008680086582899094, 0.008618864230811596, 0.01085326261818409, 0.005007029976695776, 0.4697624742984772], [0.004642265383154154, 0.00047803219058550894, 0.005091956816613674, 0.0001775922137312591, 0.0001717896229820326, 0.00044829200487583876, 6.620610656682402e-05, 0.0005473966593854129, 0.4605410099029541, 0.001668676151894033, 0.02111070789396763, 0.0099417082965374, 0.007544473744928837, 0.007995713502168655, 0.012053235433995724, 0.006989119108766317, 0.4605318009853363], [0.003942297305911779, 0.0007076837355270982, 0.008048424497246742, 0.0001359309972031042, 0.0003430764772929251, 0.003192560514435172, 0.00015848218754399568, 0.0003523774794302881, 0.3234092891216278, 0.007097167428582907, 0.17125971615314484, 0.05100984871387482, 0.019227804616093636, 0.03558855503797531, 0.04701126366853714, 0.00511261448264122, 0.3234029710292816], [0.03302721306681633, 0.08639654517173767, 0.054601170122623444, 0.08774027228355408, 0.06215977296233177, 0.08575105667114258, 0.09412454068660736, 0.05902286618947983, 0.05281829461455345, 0.07450903952121735, 0.07156340032815933, 0.04503767564892769, 0.019176090136170387, 0.023329636082053185, 0.030587175861001015, 0.0673370286822319, 0.05281822755932808]], [[0.011812104843556881, 0.0302154291421175, 0.018373887985944748, 0.018068216741085052, 0.08424177020788193, 0.013353501446545124, 0.0195289496332407, 0.03867679834365845, 0.3335633873939514, 0.01228831335902214, 0.015609201975166798, 0.032111670821905136, 0.012758095748722553, 0.0061138225719332695, 0.004474921151995659, 0.015248680487275124, 0.3335612416267395], [0.006903189234435558, 0.6584064364433289, 0.016305482015013695, 0.03119552694261074, 0.004088892601430416, 0.0051860446110367775, 0.00527097936719656, 0.008094911463558674, 0.10295216739177704, 0.011894120834767818, 0.027632376179099083, 0.0011993215885013342, 0.0015239602653309703, 0.0035313968546688557, 0.005179283674806356, 0.007686154451221228, 0.10294996201992035], [0.0017404663376510143, 0.013024003244936466, 0.0638813003897667, 0.003166348207741976, 0.0034793063532561064, 0.007856602780520916, 0.0028877202421426773, 0.0008187157800421119, 0.4356599450111389, 0.0032003161031752825, 0.013003394939005375, 0.0014218718279153109, 0.0023714208509773016, 0.0047865635715425014, 0.004659844562411308, 0.0023978373501449823, 0.43564435839653015], [0.006643806584179401, 0.06759169697761536, 0.02867521345615387, 0.2508712410926819, 0.024001769721508026, 0.008677888661623001, 0.013167690485715866, 0.004075413569808006, 0.2602134346961975, 0.017179351300001144, 0.013721817173063755, 0.0033908530604094267, 0.0012215559836477041, 0.0019341274164617062, 0.01065319124609232, 0.02777142822742462, 0.26020947098731995], [0.00528071029111743, 0.012586739845573902, 0.012856184504926205, 0.02790392003953457, 0.26394325494766235, 0.010174043476581573, 0.013306442648172379, 0.001976189436390996, 0.288747102022171, 0.01774829439818859, 0.02144251950085163, 0.018231764435768127, 0.0022519645281136036, 0.0029482017271220684, 0.0046544428914785385, 0.007204971741884947, 0.288743257522583], [0.00331202638335526, 0.005231511313468218, 0.019232284277677536, 0.004627323243767023, 0.0071184998378157616, 0.17192494869232178, 0.03073861449956894, 0.008179274387657642, 0.3352595865726471, 0.003848151070997119, 0.0038266179617494345, 0.00354035128839314, 0.006275768391788006, 0.03807111084461212, 0.020371876657009125, 0.0031910173129290342, 0.33525094389915466], [0.004287909250706434, 0.007329930085688829, 0.007054599467664957, 0.013850883580744267, 0.017220720648765564, 0.01657622680068016, 0.3182325065135956, 0.014877156354486942, 0.27220070362091064, 0.010209450498223305, 0.004915465135127306, 0.004503487143665552, 0.0014725106302648783, 0.003366798395290971, 0.024533716961741447, 0.007173631340265274, 0.2721942663192749], [0.0003735290083568543, 0.003015767550095916, 0.0038555413484573364, 0.000892238283995539, 0.0009258562931790948, 0.0008289494435302913, 0.0013859763275831938, 0.015143233351409435, 0.4687168598175049, 0.006721692159771919, 0.0010464602382853627, 0.0018745623528957367, 0.0017630831571295857, 0.003176035126671195, 0.010428940877318382, 0.011136632412672043, 0.4687146246433258], [0.00581139512360096, 0.07754470407962799, 0.0825522243976593, 0.05138538032770157, 0.13005641102790833, 0.15425322949886322, 0.08939588069915771, 0.04182581230998039, 0.04756972938776016, 0.04192528501152992, 0.034860797226428986, 0.04306088015437126, 0.05358944088220596, 0.04296611621975899, 0.03213052451610565, 0.023502783849835396, 0.04756931960582733], [0.002896580845117569, 0.014758261851966381, 0.002491266932338476, 0.004866006784141064, 0.030563633888959885, 0.005324942991137505, 0.005761244799941778, 0.00210519228130579, 0.09599211812019348, 0.6503998637199402, 0.024209290742874146, 0.012130741961300373, 0.026340357959270477, 0.0034807685296982527, 0.006608541589230299, 0.016079507768154144, 0.0959915742278099], [0.016279008239507675, 0.04880198463797569, 0.014401706866919994, 0.011640900745987892, 0.01635190285742283, 0.005985967814922333, 0.0052584814839065075, 0.003336048685014248, 0.2932893931865692, 0.02742045558989048, 0.21441768109798431, 0.011885302141308784, 0.011931284330785275, 0.007051394321024418, 0.008538610301911831, 0.010119940154254436, 0.29329007863998413], [0.0018675478640943766, 0.002484744181856513, 0.002930452348664403, 0.0023932955227792263, 0.03036515973508358, 0.006949533708393574, 0.0023170437198132277, 0.0013139477232471108, 0.22744709253311157, 0.016735607758164406, 0.007536791265010834, 0.3523162603378296, 0.08877135813236237, 0.011215425096452236, 0.0065015750005841255, 0.011413875967264175, 0.2274402678012848], [0.0028463867492973804, 0.006073690019547939, 0.005173449870198965, 0.0015207557007670403, 0.004376476164907217, 0.010370762087404728, 0.0016389323864132166, 0.0016645870637148619, 0.25066664814949036, 0.011171055026352406, 0.013316246680915356, 0.0318145677447319, 0.34112435579299927, 0.027619145810604095, 0.03056422248482704, 0.009395316243171692, 0.2506634294986725], [0.0011369027197360992, 0.0021319715306162834, 0.004433348774909973, 0.0006461366428993642, 0.0007294805254787207, 0.0038345232605934143, 0.0003027234924957156, 0.0010619123931974173, 0.2531304359436035, 0.0012920188019052148, 0.00338237383402884, 0.01653657853603363, 0.010879944078624249, 0.4128892719745636, 0.03201054409146309, 0.0024761981330811977, 0.25312548875808716], [0.0036597352009266615, 0.004679576028138399, 0.009837104938924313, 0.0026691535022109747, 0.0023126774467527866, 0.004960954189300537, 0.003464070614427328, 0.007896728813648224, 0.29014158248901367, 0.009089658968150616, 0.008716607466340065, 0.016759952530264854, 0.0276813842356205, 0.07457028329372406, 0.22423134744167328, 0.01918860711157322, 0.2901404798030853], [0.008345572277903557, 0.017568746581673622, 0.008071848191320896, 0.025688832625746727, 0.010864408686757088, 0.002627164125442505, 0.0021679294295608997, 0.008575713261961937, 0.14276736974716187, 0.06415924429893494, 0.02072158455848694, 0.026198796927928925, 0.0295125599950552, 0.0070204283110797405, 0.024105645716190338, 0.4588351547718048, 0.142768993973732], [0.005811500363051891, 0.07754436135292053, 0.08255141228437424, 0.0513850562274456, 0.13005733489990234, 0.1542530506849289, 0.08939344435930252, 0.04182568937540054, 0.04757062718272209, 0.04192609712481499, 0.03486085683107376, 0.043061356991529465, 0.05358906835317612, 0.04296655207872391, 0.03213036432862282, 0.023502981290221214, 0.04757021740078926]], [[0.0019849087111651897, 0.08855611830949783, 0.2910389006137848, 0.04698808118700981, 0.009876053780317307, 0.05755433812737465, 0.012332109734416008, 0.1292228102684021, 0.10991544276475906, 0.027511289343237877, 0.00549459271132946, 0.005734039004892111, 0.012193862348794937, 0.02143184095621109, 0.04460465535521507, 0.02564733475446701, 0.1099136546254158], [0.0006276286439970136, 0.007423233240842819, 0.013901297003030777, 0.016408072784543037, 0.0030015490483492613, 0.006943728309124708, 0.0038856177125126123, 0.018543429672718048, 0.46218937635421753, 0.00046874547842890024, 0.0005420306697487831, 0.00021973784896545112, 0.00012679400970228016, 0.00028480769833549857, 0.0003197281330358237, 0.002932084258645773, 0.46218210458755493], [0.00610472122207284, 0.00838943850249052, 0.042543087154626846, 0.010234312154352665, 0.007001273334026337, 0.014032558538019657, 0.008933191187679768, 0.04775406792759895, 0.4150524437427521, 0.0044616395607590675, 0.003059007693082094, 0.0023303984198719263, 0.0019287529867142439, 0.0028897172305732965, 0.0021838685497641563, 0.008044886402785778, 0.4150567054748535], [0.0012368588941171765, 0.011893616989254951, 0.02590339630842209, 0.00960689689964056, 0.008803652599453926, 0.01800016686320305, 0.015136396512389183, 0.024688607081770897, 0.4402122497558594, 0.0007514867465943098, 0.0005996265099383891, 0.0002394503098912537, 8.770742715569213e-05, 0.00026368172257207334, 0.0004236908571328968, 0.0019566179253160954, 0.44019609689712524], [0.0011976668611168861, 0.010508932173252106, 0.010565870441496372, 0.0056952061131596565, 0.0018003394361585379, 0.006022824440151453, 0.0022222239058464766, 0.003512006951496005, 0.4780665636062622, 0.0003465223126113415, 0.0005982271977700293, 0.000129126594401896, 5.479178071254864e-05, 0.00016803036851342767, 0.00024263568047899753, 0.0008168180356733501, 0.47805219888687134], [0.003102764254435897, 0.005295590963214636, 0.02131984569132328, 0.0018823794089257717, 0.0015874860109761357, 0.006617260631173849, 0.0009350915206596255, 0.0032096952199935913, 0.47591397166252136, 0.0014818526105955243, 0.0007619521929882467, 0.00015171317500062287, 0.00034284955472685397, 0.000257182284258306, 0.00030193428392522037, 0.0009315503411926329, 0.47590693831443787], [0.0005954334046691656, 0.0034797864500433207, 0.006197834853082895, 0.0016791351372376084, 0.003445325419306755, 0.004933944437652826, 0.0012294044718146324, 0.001167881884612143, 0.4882079064846039, 0.0002100910642184317, 0.0004091616428922862, 3.307452061562799e-05, 1.6781505109975114e-05, 4.9918708100449294e-05, 3.62369573849719e-05, 0.00010921825014520437, 0.48819881677627563], [0.013242204673588276, 0.036340516060590744, 0.05910816788673401, 0.03873424232006073, 0.04125585779547691, 0.05659734085202217, 0.023972276598215103, 0.034682974219322205, 0.3300987184047699, 0.006830625701695681, 0.006497418042272329, 0.0014774419832974672, 0.001694126520305872, 0.00455170962959528, 0.006821697577834129, 0.007999786175787449, 0.3300948739051819], [0.01587531715631485, 0.08117248117923737, 0.15265178680419922, 0.11273135244846344, 0.06255227327346802, 0.06127280369400978, 0.09383638203144073, 0.06239417940378189, 0.034661296755075455, 0.061965107917785645, 0.026844659820199013, 0.028733020648360252, 0.050168730318546295, 0.043751060962677, 0.047621648758649826, 0.029106590896844864, 0.0346611812710762], [0.0007625267608091235, 0.0007473639561794698, 0.002661657752469182, 0.0004905101377516985, 0.00019620751845650375, 0.0008391743176616728, 0.00020052216132171452, 0.0018509100191295147, 0.4909779727458954, 0.0012319288216531277, 0.000976788462139666, 0.0006127048982307315, 0.0002627545618452132, 0.0007706846226938069, 0.001420506159774959, 0.005029009189456701, 0.49096885323524475], [0.00043426849879324436, 0.002019111532717943, 0.0071866740472614765, 0.0008678800077177584, 0.00010529885184951127, 0.00035610012128017843, 0.00010900545748881996, 0.008771699853241444, 0.47931337356567383, 0.0009992095874622464, 0.0029752247501164675, 0.0005808927235193551, 0.0008009190205484629, 0.004420299082994461, 0.004240072797983885, 0.0075162677094340324, 0.479303777217865], [0.0015254586469382048, 0.0017632500967010856, 0.00968964397907257, 0.000147362778079696, 3.1503583159064874e-05, 0.0003131706907879561, 2.6138917746720836e-05, 0.0011554609518498182, 0.48007282614707947, 0.0005642945761792362, 0.005718571599572897, 0.0006580896442756057, 0.00476815877482295, 0.003074191976338625, 0.006273750215768814, 0.00415963726118207, 0.4800584018230438], [0.0004753679677378386, 0.0005127072799950838, 0.0028559572529047728, 5.456441795104183e-05, 3.32090312440414e-05, 0.00012077058636350557, 1.2964500456291717e-05, 0.0005332885775715113, 0.49256739020347595, 0.00035157211823388934, 0.0035839087795466185, 0.00028851311071775854, 0.000575128651689738, 0.002278165426105261, 0.0021125096827745438, 0.0010798713192343712, 0.4925641119480133], [0.0009278013603761792, 0.0002872979093808681, 0.004842829424887896, 2.2579160940949805e-05, 1.3637698430102319e-05, 0.00013281195424497128, 2.1045088942628354e-05, 0.00023501082614529878, 0.49199047684669495, 0.00047653273213654757, 0.0031366932671517134, 0.00021838283282704651, 0.0015071578091010451, 0.0019947593100368977, 0.0017317443853244185, 0.00047306291526183486, 0.4919881224632263], [0.0015131620457395911, 0.0007497292244806886, 0.006425360217690468, 9.67730738921091e-05, 3.854112947010435e-05, 0.00026940027601085603, 5.812298695673235e-05, 0.0005062506534159184, 0.4816824197769165, 0.0012696698540821671, 0.006251254118978977, 0.0009212627774104476, 0.002716516610234976, 0.01004814077168703, 0.005060023628175259, 0.0007168963784351945, 0.48167645931243896], [0.0018249948043376207, 0.002975980518385768, 0.025478724390268326, 0.0014519713586196303, 0.000921664759516716, 0.002535453299060464, 0.0004907372058369219, 0.004317663609981537, 0.44556838274002075, 0.004286850802600384, 0.009634511545300484, 0.0046390448696911335, 0.0037978794425725937, 0.018636900931596756, 0.02111905999481678, 0.00675989082083106, 0.4455603063106537], [0.015875382348895073, 0.08117321878671646, 0.15265372395515442, 0.11273261159658432, 0.06255240738391876, 0.061273347586393356, 0.0938355028629303, 0.0623948834836483, 0.03466196730732918, 0.06196365877985954, 0.02684403769671917, 0.02873244509100914, 0.05016680806875229, 0.04375050216913223, 0.0476214624941349, 0.029106171801686287, 0.034661851823329926]], [[0.023521874099969864, 0.13887333869934082, 0.020319197326898575, 0.08378175646066666, 0.023465899750590324, 0.07573378086090088, 0.057652510702610016, 0.4154953360557556, 0.027856072410941124, 0.03151163086295128, 0.04038861021399498, 0.004716391675174236, 0.0022513114381581545, 0.004074785392731428, 0.004794635809957981, 0.0177069753408432, 0.02785603143274784], [0.0007662298157811165, 0.018135299906134605, 0.011443358846008778, 0.009041102603077888, 0.002577859442681074, 0.018399721011519432, 0.0027045251335948706, 0.009740771725773811, 0.4632851481437683, 9.92259883787483e-05, 0.00035741852479986846, 1.979589978873264e-05, 1.205618173116818e-05, 2.6383597287349403e-05, 6.090150782256387e-05, 5.580222205026075e-05, 0.4632743299007416], [0.002366321859881282, 0.10162416845560074, 0.031625375151634216, 0.0313563346862793, 0.010172008536756039, 0.04109764099121094, 0.009599265642464161, 0.024887461215257645, 0.36734747886657715, 0.0021581666078418493, 0.0033202350605279207, 0.0003368133620824665, 0.000686759885866195, 0.0017312692943960428, 0.0029334593564271927, 0.0014132607029750943, 0.3673441410064697], [0.0004695113457273692, 0.06625770032405853, 0.026233257725834846, 0.024390406906604767, 0.0022858772426843643, 0.012010159902274609, 0.003493283875286579, 0.009133169427514076, 0.4276075065135956, 9.602065983926877e-05, 0.000298014230793342, 8.248635822383221e-06, 6.328611561912112e-06, 2.4179114916478284e-05, 3.294492489658296e-05, 6.319790554698557e-05, 0.42759016156196594], [0.0003092829720117152, 0.0526396781206131, 0.013272004202008247, 0.01004702877253294, 0.006345823872834444, 0.01564851403236389, 0.006943189539015293, 0.009577170945703983, 0.4424114525318146, 0.00014846559497527778, 0.00011577551777008921, 1.6292860891553573e-05, 1.394977152813226e-05, 4.444810838322155e-05, 5.568798223976046e-05, 1.6206218788283877e-05, 0.44239500164985657], [0.0005457582883536816, 0.010768098756670952, 0.008021951653063297, 0.006373038049787283, 0.011970696970820427, 0.017858441919088364, 0.012966259382665157, 0.0038098637014627457, 0.4635918438434601, 0.0001516962656751275, 7.444067887263373e-05, 6.174557347549126e-05, 4.51018349849619e-05, 4.19144744228106e-05, 4.8041616537375376e-05, 9.0475965407677e-05, 0.46358057856559753], [0.00016606459394097328, 0.00496461009606719, 0.002816763473674655, 0.004834216553717852, 0.008082536049187183, 0.0035655887331813574, 0.0043146051466465, 0.0007516908226534724, 0.4852212071418762, 2.134717578883283e-05, 2.520662201277446e-05, 7.673579602851532e-06, 2.4434507395199034e-06, 3.6411822748050326e-06, 5.242377937975107e-06, 8.29257805889938e-06, 0.4852089583873749], [0.009132195264101028, 0.0876205638051033, 0.03505895659327507, 0.1058327928185463, 0.03761347383260727, 0.24760237336158752, 0.08190281689167023, 0.044790688902139664, 0.15226894617080688, 0.01582510583102703, 0.012782753445208073, 0.0029895156621932983, 0.0023663993924856186, 0.003747776383534074, 0.006415943615138531, 0.0017819269560277462, 0.15226785838603973], [0.024940278381109238, 0.11619962751865387, 0.0494433231651783, 0.1186584085226059, 0.037716783583164215, 0.08430974185466766, 0.06299067288637161, 0.14452670514583588, 0.03058304637670517, 0.07242625951766968, 0.06421176344156265, 0.02264004945755005, 0.022385884076356888, 0.02793087065219879, 0.0417201966047287, 0.04873313754796982, 0.03058326616883278], [0.0033791474997997284, 0.004582847468554974, 0.003426425391808152, 0.004246036987751722, 0.00424323370680213, 0.0056143151596188545, 0.003030066844075918, 0.016488224267959595, 0.47164738178253174, 0.004719053860753775, 0.0038119915407150984, 0.0009640498901717365, 0.00029877875931560993, 0.00018914479005616158, 0.0005421480163931847, 0.0011769999982789159, 0.4716401994228363], [0.006413278169929981, 0.003272519214078784, 0.003110843012109399, 0.0008817933849059045, 0.0004821987240575254, 0.001507546054199338, 0.0002947902830783278, 0.008211481384932995, 0.4588344991207123, 0.022323373705148697, 0.020337840542197227, 0.002382119884714484, 0.0005742342909798026, 0.0010874224826693535, 0.0016048356192186475, 0.009861364960670471, 0.45881983637809753], [0.010251188650727272, 0.0025566192343831062, 0.004620653111487627, 0.001298433286137879, 0.0008595691761001945, 0.0018477147677913308, 0.0008575071697123349, 0.020378297194838524, 0.3563784062862396, 0.1091570034623146, 0.03954612463712692, 0.014599290676414967, 0.006599105428904295, 0.0049652280285954475, 0.0075399610213935375, 0.06217719614505768, 0.35636770725250244], [0.00885496474802494, 0.0013921349309384823, 0.0040003652684390545, 0.0003038168651983142, 0.0003060829476453364, 0.0005859033553861082, 0.00016064838564489037, 0.006968801375478506, 0.37125954031944275, 0.03355438634753227, 0.0159759521484375, 0.017153006047010422, 0.039842359721660614, 0.02561977691948414, 0.03359735384583473, 0.06917178630828857, 0.3712531626224518], [0.0016649097669869661, 0.0002731268177740276, 0.000957038311753422, 0.00015346088912338018, 0.00010003867646446452, 0.0004095886251889169, 7.774698315188289e-05, 0.0005874835187569261, 0.4576214849948883, 0.004385953303426504, 0.004524656105786562, 0.0075546796433627605, 0.016576867550611496, 0.0069027249701321125, 0.01310378685593605, 0.02749699354171753, 0.45760926604270935], [0.0031203110702335835, 0.0004939856007695198, 0.001712761353701353, 0.0003070902603212744, 0.00013497289910446852, 0.0002767530095297843, 0.00015221690409816802, 0.0014088372699916363, 0.45046287775039673, 0.01996263675391674, 0.012735324911773205, 0.00896986573934555, 0.010660086758434772, 0.009114466607570648, 0.014385048300027847, 0.01565508171916008, 0.4504474103450775], [0.008723906241357327, 0.0023722914047539234, 0.005307583138346672, 0.0014423956163227558, 0.00028802952147088945, 0.0011578716803342104, 0.0002818116918206215, 0.006803450174629688, 0.37336069345474243, 0.04519135132431984, 0.055846381932497025, 0.008100657723844051, 0.00407094182446599, 0.0025663163978606462, 0.0038833587896078825, 0.10725120455026627, 0.3733517825603485], [0.02493949420750141, 0.11620031297206879, 0.04944377392530441, 0.11865917593240738, 0.03771592304110527, 0.08430953323841095, 0.06298968940973282, 0.1445235311985016, 0.030583694577217102, 0.07242827862501144, 0.06421227008104324, 0.02263951674103737, 0.022385504096746445, 0.027931073680520058, 0.04172063618898392, 0.04873381555080414, 0.030583910644054413]], [[0.15641790628433228, 0.019472215324640274, 0.015247542411088943, 0.013404838740825653, 0.01967945322394371, 0.016380392014980316, 0.0046415734104812145, 0.023537883535027504, 0.1628110259771347, 0.06615925580263138, 0.1434141844511032, 0.022935261949896812, 0.04915748909115791, 0.015306605957448483, 0.04002919793128967, 0.06859113276004791, 0.16281402111053467], [0.017557820305228233, 0.007604199927300215, 0.059121958911418915, 0.0214568879455328, 0.009003871120512486, 0.022746462374925613, 0.003168415045365691, 0.0034808821510523558, 0.4249211549758911, 0.0005404543480835855, 0.0032355240546166897, 0.0004610133182723075, 0.0004868287069257349, 0.00017495555221103132, 0.0003916494606528431, 0.0007276583346538246, 0.42492014169692993], [0.039214447140693665, 0.03568170592188835, 0.03868825361132622, 0.13644924759864807, 0.035623498260974884, 0.03159964829683304, 0.016966361552476883, 0.049791209399700165, 0.28974586725234985, 0.006439655087888241, 0.004995717667043209, 0.0036415448412299156, 0.005137015599757433, 0.00295317848213017, 0.004329044371843338, 0.008989431895315647, 0.28975409269332886], [0.004575551021844149, 0.016080105677247047, 0.005927844904363155, 0.010002032853662968, 0.024588558822870255, 0.036488890647888184, 0.011798032559454441, 0.018629098311066628, 0.43407586216926575, 0.0009250261937268078, 0.0013515491737052798, 0.00027101539308205247, 0.0005121860303916037, 0.00016572978347539902, 0.00026561651611700654, 0.0002657518198247999, 0.43407711386680603], [0.001959542278200388, 0.0025327231269329786, 0.0030955239199101925, 0.0028464850038290024, 0.016441889107227325, 0.06613459438085556, 0.03430316969752312, 0.00459279352799058, 0.4327998161315918, 0.0007739319116808474, 0.0002040095132542774, 0.00039185595232993364, 0.00025424480554647744, 0.00020460222731344402, 0.0004650890768971294, 0.00019668148888740689, 0.4328029155731201], [0.037771280854940414, 0.005310892593115568, 0.007604767568409443, 0.010762638412415981, 0.0161296259611845, 0.05960553511977196, 0.06713485717773438, 0.025119103491306305, 0.3785499632358551, 0.0012296921340748668, 0.0014666297938674688, 0.0009050819207914174, 0.0007641538977622986, 0.0007323913159780204, 0.006183965131640434, 0.002177775138989091, 0.3785516023635864], [0.007608044892549515, 0.0012920108856633306, 0.0018191651906818151, 0.004531044512987137, 0.0038887360133230686, 0.011789485812187195, 0.00818362832069397, 0.01839609630405903, 0.47020336985588074, 0.0009354655048809946, 0.0003364763979334384, 0.00011879779049195349, 3.82945072487928e-05, 6.553070852532983e-05, 0.00014574828674085438, 0.00043933792039752007, 0.4702087640762329], [0.027132174000144005, 0.025193430483341217, 0.011770728044211864, 0.014639303088188171, 0.002379937097430229, 0.02090044878423214, 0.00795811414718628, 0.006066437810659409, 0.4164263904094696, 0.0202657300978899, 0.007372016087174416, 0.0011321034980937839, 0.002829032251611352, 0.004533847793936729, 0.0069343033246695995, 0.008051430806517601, 0.41641467809677124], [0.10680033266544342, 0.06203277036547661, 0.03412771224975586, 0.05610813945531845, 0.07080619037151337, 0.0797877162694931, 0.08210408687591553, 0.06484805792570114, 0.07475332170724869, 0.04809525981545448, 0.03827739134430885, 0.048354387283325195, 0.06098698452115059, 0.021728895604610443, 0.03311336413025856, 0.04332215338945389, 0.07475318759679794], [0.019269606098532677, 0.00725571857765317, 0.0066689965315163136, 0.00751078687608242, 0.0048647779040038586, 0.002715942682698369, 0.0013545786496251822, 0.0009377734386362135, 0.4067264497280121, 0.0065541947260499, 0.05163077265024185, 0.02010190673172474, 0.01942593976855278, 0.008450549095869064, 0.01945435255765915, 0.01034926250576973, 0.4067283868789673], [0.014850589446723461, 0.0007954047177918255, 0.002272674348205328, 0.001676072715781629, 0.0007673733052797616, 0.0008293810533359647, 0.0003126039227936417, 0.004069962073117495, 0.4549323618412018, 0.0011458296794444323, 0.012946616858243942, 0.013650696724653244, 0.016378093510866165, 0.005186373833566904, 0.008234103210270405, 0.007014406844973564, 0.4549373388290405], [0.007937241345643997, 0.0007685436285100877, 0.0012934806291013956, 0.0003093542472925037, 0.0010962937958538532, 0.0011660130694508553, 0.0010253441287204623, 0.0008749557309783995, 0.4423920810222626, 0.003065013326704502, 0.0037059795577079058, 0.012568687088787556, 0.01972794532775879, 0.02009713090956211, 0.03529074788093567, 0.006283702794462442, 0.4423975646495819], [0.002921934938058257, 0.0001419578184140846, 0.0004929805872961879, 0.00016105009126476943, 2.8721247872454114e-05, 0.0002528908080421388, 0.00011184791219420731, 0.0009949568193405867, 0.4591265022754669, 0.0005495003424584866, 0.0005930094048380852, 0.0014745795633643866, 0.005237529519945383, 0.017662763595581055, 0.04676802456378937, 0.0043440028093755245, 0.4591376781463623], [0.032425396144390106, 0.0006863664602860808, 0.002291613258421421, 0.0006443239981308579, 0.00025190733140334487, 0.0004435233131516725, 0.0010602165712043643, 0.0007373038679361343, 0.1700630933046341, 0.001335600041784346, 0.00491587957367301, 0.002912278752774, 0.017438678070902824, 0.02692965231835842, 0.5491586327552795, 0.018639331683516502, 0.1700662523508072], [0.022167976945638657, 0.0005000227829441428, 0.000897312187589705, 0.000802194292191416, 0.00028129349811933935, 0.0001393986021867022, 0.0002552941150497645, 0.0026496597565710545, 0.4467669725418091, 0.001127135707065463, 0.003938448615372181, 0.00238685286603868, 0.006141508463770151, 0.006979458965361118, 0.04369859769940376, 0.01449078693985939, 0.44677698612213135], [0.014680979773402214, 0.0009328353917226195, 0.0022696952801197767, 0.0008816945482976735, 0.00023396973847411573, 0.0007060410571284592, 0.00020840123761445284, 0.001735792844556272, 0.4654737114906311, 0.0012439667480066419, 0.012691715732216835, 0.002031312556937337, 0.007129490841180086, 0.006993147544562817, 0.0094226049259305, 0.007895111106336117, 0.46546947956085205], [0.10679879784584045, 0.06203247979283333, 0.034127745777368546, 0.05610756203532219, 0.07080429047346115, 0.07978823781013489, 0.08210393041372299, 0.06484825909137726, 0.07475675642490387, 0.04809548705816269, 0.03827643394470215, 0.048353563994169235, 0.060985006392002106, 0.021729055792093277, 0.03311335667967796, 0.04332233592867851, 0.07475663721561432]], [[0.013176705688238144, 0.005161315202713013, 0.016505764797329903, 0.007590837310999632, 0.0016054105944931507, 0.005887800361961126, 0.003234897507354617, 0.006028172094374895, 0.12390077859163284, 0.18407712876796722, 0.13811609148979187, 0.045445073395967484, 0.04202461987733841, 0.017699168995022774, 0.09280543029308319, 0.17283934354782104, 0.12390147894620895], [0.021443398669362068, 0.028819488361477852, 0.026590051129460335, 0.044059544801712036, 0.015567255206406116, 0.03343338891863823, 0.005174342542886734, 0.04697897657752037, 0.36972150206565857, 0.004567495547235012, 0.011032997630536556, 0.0014533872017636895, 0.0011132156942039728, 0.002293672412633896, 0.0022270982153713703, 0.01580410823225975, 0.3697202801704407], [0.05235188826918602, 0.07659924030303955, 0.020960111171007156, 0.10546980053186417, 0.034934885799884796, 0.08055611699819565, 0.039510879665613174, 0.052212055772542953, 0.20576702058315277, 0.011551078408956528, 0.06883895397186279, 0.005183523986488581, 0.0058635990135371685, 0.004531262908130884, 0.005609424784779549, 0.024288151413202286, 0.2057720273733139], [0.012753496877849102, 0.0335836187005043, 0.004521586932241917, 0.02164275012910366, 0.013727124780416489, 0.051030516624450684, 0.0207216776907444, 0.039971765130758286, 0.39101681113243103, 0.006261177361011505, 0.00848576333373785, 0.0009272063034586608, 0.00020743250206578523, 0.0008275808650068939, 0.0011753778671845794, 0.002123234560713172, 0.3910229504108429], [0.005798910744488239, 0.010359423235058784, 0.005070396699011326, 0.007865171879529953, 0.016487397253513336, 0.0580795481801033, 0.0337136834859848, 0.013551490381360054, 0.41953566670417786, 0.003788940142840147, 0.003466266207396984, 0.0008004122064448893, 0.000282483350019902, 0.0002160463045584038, 0.000699541880749166, 0.0007460000924766064, 0.4195384681224823], [0.00393800251185894, 0.0039023335557430983, 0.0009665403049439192, 0.001600784482434392, 0.00348343956284225, 0.009006298147141933, 0.0024692006409168243, 0.014226838015019894, 0.4755876958370209, 0.005188953597098589, 0.0017260070890188217, 0.0007557006902061403, 0.0004662904539145529, 0.0001499742502346635, 0.00020037752983625978, 0.0007393888081423938, 0.4755922257900238], [0.0021674446761608124, 0.0010239852126687765, 0.0005559400306083262, 0.0006442322046495974, 0.0038170935586094856, 0.0078084697015583515, 0.001562552759423852, 0.006016518454998732, 0.48701512813568115, 0.0013564227847382426, 0.0003556346637196839, 0.0002704523503780365, 6.861519068479538e-05, 6.115328142186627e-05, 6.001251676934771e-05, 0.00019832341058645397, 0.4870179295539856], [0.4883216917514801, 0.013175233267247677, 0.0066181062720716, 0.016256779432296753, 0.010362658649682999, 0.023859072476625443, 0.004718733951449394, 0.009193960577249527, 0.13308556377887726, 0.08767428249120712, 0.01155879721045494, 0.006227867677807808, 0.003182590240612626, 0.010955565609037876, 0.010828515514731407, 0.030895376577973366, 0.1330852210521698], [0.037800997495651245, 0.040572162717580795, 0.05631931871175766, 0.049554742872714996, 0.01427275687456131, 0.03410729393362999, 0.025968428701162338, 0.03067152015864849, 0.06917910277843475, 0.16030406951904297, 0.08772019296884537, 0.02232789620757103, 0.07457009702920914, 0.028874531388282776, 0.07092004269361496, 0.1276581585407257, 0.06917877495288849], [0.0008673241245560348, 0.00025335082318633795, 0.0011092043714597821, 0.00029223907040432096, 8.393027383135632e-05, 0.0003506191133055836, 8.632068056613207e-05, 0.0009567261440679431, 0.480203777551651, 0.000651464972179383, 0.00099703180603683, 0.004229824990034103, 0.003330813255161047, 0.0042216358706355095, 0.012175913900136948, 0.009986993856728077, 0.48020264506340027], [0.00031348250922746956, 0.0002760564675554633, 0.0007404544157907367, 0.00025952429859898984, 0.00011853656178573146, 0.0003784389409702271, 0.00012961360334884375, 0.00038633306394331157, 0.47311708331108093, 0.0011230229865759611, 0.003838638309389353, 0.008371005766093731, 0.0037728906609117985, 0.006408975925296545, 0.009095384739339352, 0.018555408343672752, 0.4731152653694153], [0.0015080039156600833, 0.00011031392932636663, 0.00035811110865324736, 5.836683340021409e-05, 9.118313755607232e-05, 0.0004463361983653158, 5.205834531807341e-05, 0.0008099426631815732, 0.469679594039917, 0.0034400050062686205, 0.0009291977621614933, 0.008965149521827698, 0.007681253831833601, 0.008524042554199696, 0.02079007774591446, 0.0068803709000349045, 0.46967601776123047], [0.00014411115262191743, 1.797882214304991e-05, 5.547910768655129e-05, 8.314833394251764e-06, 8.024654562177602e-06, 9.283597319154069e-05, 7.963246389408596e-06, 0.00011805116810137406, 0.4926674962043762, 0.000634836673270911, 0.00017357290198560804, 0.002435597823932767, 0.0035501786042004824, 0.002023017033934593, 0.003990857861936092, 0.0014111888594925404, 0.4926604628562927], [0.0002528421755414456, 8.991628419607878e-05, 0.00015268342394847423, 2.1105477571836673e-05, 3.551561894710176e-05, 0.0003127124800812453, 3.562685378710739e-05, 0.0001280292053706944, 0.4921146035194397, 0.0008119418052956462, 0.0004944773390889168, 0.0021628658287227154, 0.004797687754034996, 0.0020084420684725046, 0.0033324521500617266, 0.0011478214291855693, 0.4921012222766876], [0.000621431099716574, 0.00014864774129819125, 0.00023478243383578956, 4.270831777830608e-05, 5.6734777899691835e-05, 0.00041610802873037755, 4.376408105599694e-05, 0.00043217334314249456, 0.4898018538951874, 0.002745814388617873, 0.001155576785095036, 0.004421143792569637, 0.003324240678921342, 0.002318187616765499, 0.0024319584481418133, 0.0020098050590604544, 0.48979508876800537], [0.002523797797039151, 0.0001109023141907528, 0.00031307057361118495, 0.00011027910659322515, 9.871073416434228e-05, 0.001450195093639195, 0.00010195697541348636, 0.00030163241899572313, 0.4784378111362457, 0.0023756709415465593, 0.0007601972320117056, 0.005252471659332514, 0.0028385103214532137, 0.008432993665337563, 0.012459885329008102, 0.0060107228346168995, 0.478421151638031], [0.037801533937454224, 0.04057252034544945, 0.056319110095500946, 0.04955459013581276, 0.014272769913077354, 0.03410734981298447, 0.02596845105290413, 0.03067133203148842, 0.0691823959350586, 0.16030064225196838, 0.08772062510251999, 0.02232799492776394, 0.07456885278224945, 0.028874382376670837, 0.07091954350471497, 0.12765587866306305, 0.06918206810951233]], [[0.02594617009162903, 0.01230535376816988, 0.04566877335309982, 0.014121030457317829, 0.0072386907413601875, 0.005428669974207878, 0.0038478251080960035, 0.010239314287900925, 0.23248372972011566, 0.11886419355869293, 0.07697320729494095, 0.037396643310785294, 0.04120451584458351, 0.01877675950527191, 0.027979085221886635, 0.08904127776622772, 0.23248472809791565], [0.011459922417998314, 0.05789390951395035, 0.01801096275448799, 0.04013005644083023, 0.02041839435696602, 0.01897086761891842, 0.021832888945937157, 0.024326378479599953, 0.38134026527404785, 0.008276933804154396, 0.005633383523672819, 0.002469992032274604, 0.0014278696617111564, 0.0008420258527621627, 0.0006289502489380538, 0.004989249631762505, 0.38134798407554626], [0.018261579796671867, 0.09114214777946472, 0.16401386260986328, 0.0360700897872448, 0.012661230750381947, 0.016071118414402008, 0.017078490927815437, 0.04107184335589409, 0.2622493505477905, 0.023134000599384308, 0.023985888808965683, 0.0041265543550252914, 0.005320061929523945, 0.004773941356688738, 0.005675092339515686, 0.01211258489638567, 0.26225224137306213], [0.026431027799844742, 0.07835447788238525, 0.051074057817459106, 0.050566960126161575, 0.009912065230309963, 0.015570848248898983, 0.012985849753022194, 0.028361964970827103, 0.34938952326774597, 0.006874042097479105, 0.00850733183324337, 0.0013631429756060243, 0.0005309132393449545, 0.001485362066887319, 0.0011285279178991914, 0.008078392595052719, 0.349385529756546], [0.005289734341204166, 0.015012618154287338, 0.016920097172260284, 0.010304713621735573, 0.009516424499452114, 0.015370819717645645, 0.008242348209023476, 0.00926060788333416, 0.4524623155593872, 0.002068092580884695, 0.0010510390857234597, 0.0007059122435748577, 0.0002391476446064189, 0.00038428109837695956, 0.00021039703278802335, 0.0005056892987340689, 0.45245563983917236], [0.0011316104792058468, 0.003120411653071642, 0.007049898616969585, 0.001835630158893764, 0.00404246523976326, 0.011740568093955517, 0.0031257460359483957, 0.0027404569555073977, 0.4807789921760559, 0.001110286801122129, 0.0004653401265386492, 0.00046777038369327784, 0.0001648969337111339, 0.0007357471622526646, 0.00046614118036814034, 0.00025472865672782063, 0.4807691276073456], [0.0010782276513054967, 0.0035341789480298758, 0.003947503864765167, 0.0023307425435632467, 0.003992586396634579, 0.0067064277827739716, 0.0033561058808118105, 0.0038338955491781235, 0.48468706011772156, 0.0007214153883978724, 0.00022754530073143542, 0.00034482477349229157, 3.258667857153341e-05, 0.00019096818869002163, 0.00017288138042204082, 0.00016022541967686266, 0.4846828877925873], [0.0256809014827013, 0.054203908890485764, 0.0433545745909214, 0.039166368544101715, 0.02749815210700035, 0.025256246328353882, 0.029343988746404648, 0.10214278101921082, 0.284392774105072, 0.03327256813645363, 0.01417594775557518, 0.005234787706285715, 0.002139626070857048, 0.003898981725797057, 0.005336273927241564, 0.020508065819740295, 0.2843939960002899], [0.06152637302875519, 0.08685845136642456, 0.07395375519990921, 0.10133867710828781, 0.05650842934846878, 0.07045254856348038, 0.05788238346576691, 0.08833659440279007, 0.036645665764808655, 0.06538642942905426, 0.0700591653585434, 0.033106256276369095, 0.03278014063835144, 0.02277837134897709, 0.035660289227962494, 0.0700807124376297, 0.03664569929242134], [0.004676518030464649, 0.0031360462307929993, 0.00363340275362134, 0.003114111255854368, 0.0012234658934175968, 0.0020019891671836376, 0.0012811042834073305, 0.001659985980950296, 0.46609458327293396, 0.017725354060530663, 0.01013166457414627, 0.003987094387412071, 0.0026930836029350758, 0.004663575440645218, 0.0029930698219686747, 0.0048863692209124565, 0.4660985767841339], [0.01576705276966095, 0.008137473836541176, 0.00823168084025383, 0.002878444269299507, 0.001097788685001433, 0.0012301240349188447, 0.0005687138182111084, 0.002053564880043268, 0.4531867504119873, 0.009104028344154358, 0.021802496165037155, 0.007647151127457619, 0.004888709168881178, 0.003563282545655966, 0.0020407040137797594, 0.004628247581422329, 0.45317378640174866], [0.00821777805685997, 0.0020071391481906176, 0.003210144117474556, 0.0022897415328770876, 0.0020597458351403475, 0.0018156185979023576, 0.0007164882845245302, 0.0025200650561600924, 0.4308318793773651, 0.016442222520709038, 0.029273027554154396, 0.02130606211721897, 0.013162292540073395, 0.012006673961877823, 0.014473862946033478, 0.008844751864671707, 0.4308224320411682], [0.003607742488384247, 0.002082864986732602, 0.002438334282487631, 0.0006609036354348063, 0.00048501777928322554, 0.0006028188508935273, 0.00021439116972032934, 0.0012559863971546292, 0.4611201286315918, 0.024737287312746048, 0.011383121833205223, 0.009255729615688324, 0.007210845127701759, 0.005084443371742964, 0.0037273671478033066, 0.005014441441744566, 0.4611183702945709], [0.0006512915715575218, 0.0003765949804801494, 0.001882007229141891, 0.00011552838259376585, 7.678028487134725e-05, 0.00023868531570769846, 4.377133154775947e-05, 0.00032607774483039975, 0.4857759475708008, 0.0016089871060103178, 0.004354927688837051, 0.0013350502122193575, 0.001293679466471076, 0.009053926914930344, 0.0057799434289336205, 0.0013069482520222664, 0.48577964305877686], [0.001743889064528048, 0.0008932267082855105, 0.0020098548848181963, 0.0003422063891775906, 0.00016670221521053463, 0.0004903741646558046, 0.00020190900249872357, 0.0013927064137533307, 0.47526586055755615, 0.006756106857210398, 0.005365082528442144, 0.004125990439206362, 0.0025008816737681627, 0.009753044694662094, 0.010474382899701595, 0.0032557386439293623, 0.47526201605796814], [0.006617892999202013, 0.012943742796778679, 0.010595467872917652, 0.00929759070277214, 0.0028671440668404102, 0.0015740265371277928, 0.0010232983622699976, 0.0028833618853241205, 0.40054240822792053, 0.04197985678911209, 0.05761570855975151, 0.012360600754618645, 0.005970218684524298, 0.008420190773904324, 0.010422347113490105, 0.014354380778968334, 0.40053170919418335], [0.06152573227882385, 0.08685911446809769, 0.07395310699939728, 0.1013396754860878, 0.056508619338274, 0.07045254111289978, 0.05788153409957886, 0.08833646029233932, 0.036645811051130295, 0.06538806855678558, 0.07005905359983444, 0.03310585767030716, 0.03277968615293503, 0.022778529673814774, 0.03566054627299309, 0.07007981836795807, 0.03664584457874298]]]], \\\"left_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\", \\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\", \\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"]}, {\\\"name\\\": \\\"Sentence A -\\u003e Sentence A\\\", \\\"attn\\\": [[[[0.004888075869530439, 0.007019796874374151, 0.0036452263593673706, 0.0029327375814318657, 0.0015320930397138, 0.004241756163537502, 0.004263122100383043, 0.008528415113687515, 0.1241171583533287], [0.014576531015336514, 0.010581646114587784, 0.11558718979358673, 0.029583653435111046, 0.1619575172662735, 0.1749114692211151, 0.0751379206776619, 0.21962450444698334, 0.012747607193887234], [0.0931827500462532, 0.030849847942590714, 0.21771998703479767, 0.008905305527150631, 0.01596658118069172, 0.10586155205965042, 0.014499418437480927, 0.15799841284751892, 0.1769568771123886], [0.014329124242067337, 0.026282774284482002, 0.12526121735572815, 0.01783166266977787, 0.16241025924682617, 0.19412513077259064, 0.09234662353992462, 0.18385455012321472, 0.012565611861646175], [0.041057515889406204, 0.05136800557374954, 0.11638717353343964, 0.04390865936875343, 0.204985111951828, 0.20272210240364075, 0.05150476470589638, 0.07285190373659134, 0.02087394706904888], [0.1666662096977234, 0.02896984852850437, 0.15163454413414001, 0.01802794449031353, 0.04654997959733009, 0.2804989814758301, 0.02848292514681816, 0.017328821122646332, 0.035481903702020645], [0.020301301032304764, 0.03030841425061226, 0.146507129073143, 0.03279529884457588, 0.1822977364063263, 0.14855298399925232, 0.04740176722407341, 0.11926399916410446, 0.0055979457683861256], [0.1180451288819313, 0.049101572483778, 0.06027330830693245, 0.006074968259781599, 0.10929204523563385, 0.04498586431145668, 0.00842977873980999, 0.3069465160369873, 0.06189660355448723], [2.1634889435517834e-06, 2.7986959594272776e-07, 6.047267930853195e-08, 7.992905892706403e-08, 2.950351074559876e-09, 6.677720598702308e-09, 3.565340378486326e-08, 1.6712645489747047e-08, 0.0002647333894856274]], [[0.4522051513195038, 0.07623647898435593, 0.027919242158532143, 0.035999845713377, 0.08349619060754776, 0.019427096471190453, 0.05187578126788139, 0.027510447427630424, 0.01445896178483963], [0.22317545115947723, 0.06382100284099579, 0.05888044089078903, 0.049211613833904266, 0.13121356070041656, 0.06643986701965332, 0.0620323047041893, 0.10699689388275146, 0.0343746654689312], [0.06794585287570953, 0.1672438085079193, 0.22915023565292358, 0.024345679208636284, 0.16521067917346954, 0.09566453844308853, 0.03178289905190468, 0.049769431352615356, 0.015491669997572899], [0.0019585308618843555, 0.7207427620887756, 0.07722131162881851, 0.004655138123780489, 0.03747379034757614, 0.05254172161221504, 0.008140715770423412, 0.016761539503932, 0.012247414328157902], [0.025915242731571198, 0.026313217356801033, 0.1458832025527954, 0.2851893901824951, 0.23177862167358398, 0.12325704842805862, 0.053885672241449356, 0.04005128890275955, 0.008830639533698559], [0.06897823512554169, 0.03946160525083542, 0.40949440002441406, 0.02331404760479927, 0.20725378394126892, 0.07915252447128296, 0.06029766425490379, 0.046219512820243835, 0.007097764406353235], [0.11204667389392853, 0.002064715139567852, 0.07884853333234787, 0.0231044702231884, 0.4335665702819824, 0.22349999845027924, 0.015278663486242294, 0.021423274651169777, 0.00486252224072814], [0.045064717531204224, 0.061848171055316925, 0.06443827599287033, 0.049729522317647934, 0.2260524332523346, 0.07010719925165176, 0.17648132145404816, 0.160780131816864, 0.032271843403577805], [0.003729620948433876, 0.019178112968802452, 0.008320917375385761, 0.003610414220020175, 0.01731022074818611, 0.019468005746603012, 0.015363910235464573, 0.7111199498176575, 0.07527204602956772]], [[0.07207582890987396, 0.030081165954470634, 0.0698365718126297, 0.05415603145956993, 0.040005918592214584, 0.04452523961663246, 0.05477667227387428, 0.07413895428180695, 0.020463814958930016], [0.02388051338493824, 0.09712941199541092, 0.13507598638534546, 0.12161228060722351, 0.07565468549728394, 0.09102176129817963, 0.03974504768848419, 0.07507934421300888, 0.12584571540355682], [0.14521171152591705, 0.1255667805671692, 0.007684384007006884, 0.03585522249341011, 0.09271423518657684, 0.021124502643942833, 0.05305418372154236, 0.11939787119626999, 0.05426167696714401], [0.021534226834774017, 0.16972415149211884, 0.04721628129482269, 0.06455666571855545, 0.12413521111011505, 0.09946053475141525, 0.02451961673796177, 0.05252651125192642, 0.1565346121788025], [0.18212783336639404, 0.05782119929790497, 0.16624435782432556, 0.061060693114995956, 0.025745224207639694, 0.05096830800175667, 0.09386604279279709, 0.04790102317929268, 0.09353011846542358], [0.2883266806602478, 0.020761892199516296, 0.045150283724069595, 0.012247641570866108, 0.0693461000919342, 0.0051894644275307655, 0.08609198778867722, 0.08481674641370773, 0.08602578192949295], [0.07446767389774323, 0.1230199858546257, 0.10566249489784241, 0.06260287761688232, 0.041301827877759933, 0.0890895202755928, 0.05263271555304527, 0.08570503443479538, 0.0857565850019455], [0.14375796914100647, 0.12766575813293457, 0.07687808573246002, 0.06146235391497612, 0.025420017540454865, 0.09101464599370956, 0.08417452126741409, 0.05357314273715019, 0.01134533155709505], [0.040774792432785034, 0.13950109481811523, 0.02118922770023346, 0.0640266165137291, 0.044749144464731216, 0.03973620384931564, 0.061510711908340454, 0.08475141227245331, 0.014940092340111732]], [[0.03515833616256714, 0.0798664465546608, 0.01630859263241291, 0.14789149165153503, 0.08934218436479568, 0.03217592090368271, 0.06830880045890808, 0.030619218945503235, 0.17491836845874786], [0.00906633771955967, 0.007233552634716034, 0.0071291569620370865, 0.0901627242565155, 0.08500444144010544, 0.03731818124651909, 0.017713570967316628, 0.04864385724067688, 0.6713555455207825], [0.02119581773877144, 0.013936267234385014, 0.18366488814353943, 0.04073388874530792, 0.14117489755153656, 0.29261794686317444, 0.022417636588215828, 0.19487611949443817, 0.05600067228078842], [0.019561290740966797, 0.030619964003562927, 0.024989742785692215, 0.007378019858151674, 0.15077579021453857, 0.031912967562675476, 0.0557866245508194, 0.06938115507364273, 0.5711490511894226], [0.014949947595596313, 0.0364830456674099, 0.10173313319683075, 0.06478868424892426, 0.11181814223527908, 0.2349889725446701, 0.02512570470571518, 0.2544487416744232, 0.06896540522575378], [0.07112161815166473, 0.09935048967599869, 0.17491373419761658, 0.10266263037919998, 0.2617430090904236, 0.09294117987155914, 0.03491080179810524, 0.07117832452058792, 0.04160849004983902], [0.006367841735482216, 0.021246016025543213, 0.08985381573438644, 0.3080625832080841, 0.2526113986968994, 0.11120738834142685, 0.028941325843334198, 0.09924904257059097, 0.06420885026454926], [0.02697315625846386, 0.04311920329928398, 0.1649632751941681, 0.08712518215179443, 0.10151567310094833, 0.09761759638786316, 0.11727719753980637, 0.11513151228427887, 0.21653573215007782], [0.002932084957137704, 0.08548032492399216, 0.015188615769147873, 0.32496634125709534, 0.06970572471618652, 0.007528556976467371, 0.06105625256896019, 0.04819296672940254, 0.3530505299568176]], [[0.008703794330358505, 0.028337936848402023, 0.036497388035058975, 0.3179890811443329, 0.0342254638671875, 0.014647513628005981, 0.15658988058567047, 0.07963840663433075, 0.0504162460565567], [0.003257530275732279, 0.014143377542495728, 0.030460435897111893, 0.5566112399101257, 0.0674440786242485, 0.02056693658232689, 0.02118591219186783, 0.08736512809991837, 0.12027458846569061], [0.019974956288933754, 0.011629141867160797, 0.07035370171070099, 0.02859698049724102, 0.08074373006820679, 0.13332095742225647, 0.06927911937236786, 0.46246176958084106, 0.04819855839014053], [0.014392857439815998, 0.6814941763877869, 0.024798402562737465, 0.00337932538241148, 0.053651124238967896, 0.0072357975877821445, 0.007232386618852615, 0.022842107340693474, 0.08711760491132736], [0.027468478307127953, 0.10789855569601059, 0.19367998838424683, 0.06358932703733444, 0.04233098775148392, 0.23926369845867157, 0.005481854546815157, 0.04740671068429947, 0.06732773035764694], [0.02020617201924324, 0.02203536406159401, 0.033887434750795364, 0.050584208220243454, 0.5214219093322754, 0.0702914372086525, 0.042194753885269165, 0.10264209657907486, 0.07326971739530563], [0.025835225358605385, 0.024546880275011063, 0.06501937657594681, 0.17729876935482025, 0.23874863982200623, 0.12987853586673737, 0.0258779339492321, 0.11599919945001602, 0.06498986482620239], [0.012444564141333103, 0.02419978938996792, 0.09062561392784119, 0.04456598684191704, 0.09836862236261368, 0.03768983855843544, 0.04686807841062546, 0.30903956294059753, 0.15584996342658997], [0.004296176601201296, 0.025899868458509445, 0.015311871655285358, 0.1919618397951126, 0.04361548274755478, 0.030678419396281242, 0.03896272927522659, 0.5280066132545471, 0.06130514666438103]], [[0.3151586353778839, 0.1100153848528862, 0.013261418789625168, 0.007182653062045574, 0.006734122522175312, 0.015668433159589767, 0.026092085987329483, 0.012030692771077156, 0.05885550379753113], [0.12868036329746246, 0.05020623654127121, 0.04352681711316109, 0.044267669320106506, 0.06922342628240585, 0.0586404874920845, 0.11787914484739304, 0.21278542280197144, 0.011017017997801304], [0.014511588029563427, 0.03831863030791283, 0.3213781714439392, 0.057754017412662506, 0.041259948164224625, 0.18111389875411987, 0.022478805854916573, 0.035277530550956726, 0.02839508280158043], [0.09856840968132019, 0.03302838280797005, 0.05710271745920181, 0.07177997380495071, 0.08965713530778885, 0.07356850057840347, 0.059109900146722794, 0.1575271189212799, 0.041145049035549164], [0.13763386011123657, 0.023727694526314735, 0.04992688447237015, 0.0822889655828476, 0.04870613291859627, 0.03208567947149277, 0.21788309514522552, 0.10060948133468628, 0.04463799297809601], [0.06399432569742203, 0.09939510375261307, 0.04323585331439972, 0.23998641967773438, 0.039040617644786835, 0.031802985817193985, 0.07835780084133148, 0.03297166898846626, 0.05566003546118736], [0.10354834794998169, 0.1194508746266365, 0.023394186049699783, 0.15901106595993042, 0.05579296872019768, 0.01770668849349022, 0.1913813352584839, 0.07892581075429916, 0.034141018986701965], [0.004442719276994467, 0.03570292517542839, 0.20076386630535126, 0.18386435508728027, 0.09603149443864822, 0.08761825412511826, 0.06705799698829651, 0.11942239105701447, 0.0375593900680542], [0.011864487081766129, 0.11439939588308334, 0.0051422445103526115, 0.014265062287449837, 0.02085231989622116, 0.0035430071875452995, 0.011535421945154667, 0.0012360550463199615, 0.7664823532104492]], [[0.05366489663720131, 0.013326861895620823, 0.035705629736185074, 0.017725413665175438, 0.021139897406101227, 0.016126224771142006, 0.03905770927667618, 0.08667251467704773, 0.03724033012986183], [0.10719181597232819, 0.06171116232872009, 0.3013807535171509, 0.03794829919934273, 0.05507837235927582, 0.07111842930316925, 0.06489422917366028, 0.2455788105726242, 0.010625060647726059], [0.2356697916984558, 0.10945609211921692, 0.3206360936164856, 0.03839602693915367, 0.03337891027331352, 0.06335017085075378, 0.05203716456890106, 0.12023136764764786, 0.007034218404442072], [0.008345738984644413, 0.5164564251899719, 0.20191191136837006, 0.05351008102297783, 0.06803572177886963, 0.05143987759947777, 0.01573142223060131, 0.034689582884311676, 0.007977493107318878], [0.06676739454269409, 0.27349960803985596, 0.4561753273010254, 0.055715933442115784, 0.09682420641183853, 0.026370450854301453, 0.007020842283964157, 0.008348268456757069, 0.0007414669962599874], [0.1661752313375473, 0.0685761496424675, 0.4658031165599823, 0.07675064355134964, 0.13027821481227875, 0.03830696642398834, 0.014079157263040543, 0.02513439953327179, 0.0010443981736898422], [0.01189227681607008, 0.03440048173069954, 0.12620249390602112, 0.06225048750638962, 0.5502164363861084, 0.17143751680850983, 0.016833234578371048, 0.008786951191723347, 0.001322822761721909], [0.0033392421901226044, 0.014496413059532642, 0.030030017718672752, 0.1475164294242859, 0.3980634808540344, 0.047243718057870865, 0.04660404473543167, 0.26027533411979675, 0.009565036743879318], [0.007030535489320755, 0.030325111001729965, 0.023130590096116066, 0.016618795692920685, 0.1984899491071701, 0.12919509410858154, 0.20506642758846283, 0.38063156604766846, 0.00394117645919323]], [[0.022592751309275627, 0.041242972016334534, 0.06407269835472107, 0.041319869458675385, 0.06316812336444855, 0.12288127094507217, 0.03249724954366684, 0.01767602376639843, 0.03114771470427513], [0.0024522601161152124, 0.05789865553379059, 0.2315445989370346, 0.304757684469223, 0.18794825673103333, 0.05799189209938049, 0.048881154507398605, 0.034303195774555206, 0.052871618419885635], [0.07386548072099686, 0.07841330021619797, 0.05245635658502579, 0.0539100207388401, 0.2018413543701172, 0.19102394580841064, 0.0738258808851242, 0.1676979660987854, 0.03512115776538849], [0.01166706345975399, 0.033831946551799774, 0.09444530308246613, 0.031177956610918045, 0.2863520681858063, 0.2343894988298416, 0.08405474573373795, 0.1434207260608673, 0.05359455198049545], [0.003358527086675167, 0.033571645617485046, 0.09078340977430344, 0.024664288386702538, 0.14903205633163452, 0.29403719305992126, 0.11627621948719025, 0.2077040821313858, 0.04962916672229767], [0.10242671519517899, 0.01428561843931675, 0.27957308292388916, 0.02694641798734665, 0.02779257670044899, 0.04037510231137276, 0.05366629734635353, 0.37752828001976013, 0.03707906976342201], [0.008889823220670223, 0.044925156980752945, 0.15463511645793915, 0.025073954835534096, 0.07735048979520798, 0.23808468878269196, 0.03327044099569321, 0.24279668927192688, 0.0773877203464508], [0.00512270350009203, 0.02222408540546894, 0.013582033105194569, 0.056794486939907074, 0.018675442785024643, 0.021052811294794083, 0.03266278654336929, 0.5071450471878052, 0.25193968415260315], [0.0005366563564166427, 0.010071475990116596, 0.02656141296029091, 0.013414682820439339, 0.014030099846422672, 0.012698138132691383, 0.021791649982333183, 0.8589319586753845, 0.009669174440205097]], [[0.025229431688785553, 0.1906249225139618, 0.018277404829859734, 0.011615282855927944, 0.029721707105636597, 0.008722244761884212, 0.07310659438371658, 0.10010955482721329, 0.05713200196623802], [0.012608767487108707, 0.12484779208898544, 0.026645516976714134, 0.03025100752711296, 0.09148713201284409, 0.022706059738993645, 0.049812521785497665, 0.09678985923528671, 0.2959100902080536], [0.1415875405073166, 0.03529421240091324, 0.22378429770469666, 0.06198011711239815, 0.1561271846294403, 0.12882360816001892, 0.0391521230340004, 0.0539872832596302, 0.0032149699982255697], [0.017227372154593468, 0.10166235268115997, 0.03571029007434845, 0.03298285976052284, 0.12852007150650024, 0.04406985640525818, 0.09933997690677643, 0.07160454988479614, 0.2834462821483612], [0.028876036405563354, 0.09424487501382828, 0.04294281452894211, 0.041587136685848236, 0.10838973522186279, 0.17510558664798737, 0.08401867747306824, 0.14879046380519867, 0.08715034276247025], [0.07790114730596542, 0.037476781755685806, 0.04905135557055473, 0.00814921222627163, 0.26637306809425354, 0.12962016463279724, 0.09078303724527359, 0.05145665630698204, 0.0279252827167511], [0.08221862465143204, 0.11170019954442978, 0.04120054468512535, 0.045744847506284714, 0.09016142785549164, 0.04958293214440346, 0.11624215543270111, 0.05828208848834038, 0.16475266218185425], [0.13198214769363403, 0.08994144201278687, 0.22639891505241394, 0.11927301436662674, 0.11254222691059113, 0.1049356609582901, 0.0779351145029068, 0.043838679790496826, 0.0007090592989698052], [0.3768383860588074, 0.12330149859189987, 0.02853669784963131, 0.03096090629696846, 0.04759572446346283, 0.059986863285303116, 0.1724219024181366, 0.07827011495828629, 0.007937856018543243]], [[0.5297853946685791, 0.028465336188673973, 0.02506268583238125, 0.029630254954099655, 0.04766254499554634, 0.01360179390758276, 0.03147514909505844, 0.02458438090980053, 0.04230737313628197], [0.17063994705677032, 0.05888991057872772, 0.5528180599212646, 0.05428105592727661, 0.025899801403284073, 0.001957215601578355, 0.04174285754561424, 0.010018263012170792, 0.037448253482580185], [0.8909273147583008, 0.08032894879579544, 0.0025539323687553406, 0.010308152996003628, 0.0017845286056399345, 0.00020814086019527167, 0.00026543892454355955, 0.001113833743147552, 0.004582714289426804], [0.10857869684696198, 0.01627052016556263, 0.17978540062904358, 0.015306293964385986, 0.5894787311553955, 0.0069667198695242405, 0.01477954350411892, 0.0030409551691263914, 0.026412608101963997], [0.33767518401145935, 0.04650860279798508, 0.041055794805288315, 0.17031604051589966, 0.07923808693885803, 0.15906578302383423, 0.03530227020382881, 0.04126405343413353, 0.004364499822258949], [0.5636687278747559, 0.0009270262089557946, 0.021299337968230247, 0.0045332107692956924, 0.07245277613401413, 0.00034146313555538654, 0.3119720220565796, 0.003071835031732917, 0.006842904724180698], [0.0034285683650523424, 0.0004321909218560904, 1.4425149856833741e-05, 0.0006366359302774072, 0.0007624393911100924, 0.9838820695877075, 7.799694139976054e-05, 0.0074768359772861, 0.0011207726784050465], [0.029951950535178185, 0.0008752135909162462, 0.0002883475390262902, 0.0006025819457136095, 0.008834654465317726, 0.0030747363343834877, 0.06330305337905884, 0.5941256284713745, 0.28267496824264526], [0.7789714932441711, 0.00022499822080135345, 0.00016182770195882767, 0.0001228098408319056, 5.0754322728607804e-05, 0.00016056757885962725, 0.001908572157844901, 0.16523577272891998, 0.03237298130989075]], [[0.0028138835914433002, 0.14595000445842743, 0.004342307336628437, 0.007798220496624708, 0.47588446736335754, 0.005292847286909819, 0.01191490888595581, 0.0007258609985001385, 0.012314080260694027], [0.30839553475379944, 0.02442958578467369, 0.04210550710558891, 0.12423135340213776, 0.024058213457465172, 0.13344943523406982, 0.07468478381633759, 0.07993800938129425, 0.07432860136032104], [0.007676139939576387, 0.0639035552740097, 0.09770851582288742, 0.025784390047192574, 0.015926800668239594, 0.19102120399475098, 0.023956621065735817, 0.22462424635887146, 0.08848381042480469], [0.562584638595581, 0.03440006449818611, 0.055883146822452545, 0.012190770357847214, 0.04682030528783798, 0.06307457387447357, 0.012469426728785038, 0.07332248985767365, 0.07798133790493011], [0.18359829485416412, 0.038653552532196045, 0.15460149943828583, 0.011411380022764206, 0.013630617409944534, 0.18495121598243713, 0.02157178893685341, 0.12013169378042221, 0.1598767638206482], [0.13900348544120789, 0.08148740977048874, 0.23679934442043304, 0.02080403082072735, 0.015821468085050583, 0.09797590970993042, 0.07375107705593109, 0.011617355048656464, 0.10100888460874557], [0.09020019322633743, 0.03774154558777809, 0.1005101203918457, 0.03667706623673439, 0.024326425045728683, 0.4774423837661743, 0.001731462893076241, 0.028049172833561897, 0.09966190904378891], [0.030797069892287254, 0.07728295028209686, 0.06687948852777481, 0.12017962336540222, 0.02633104845881462, 0.07644528150558472, 0.138240247964859, 0.02326146326959133, 0.14521564543247223], [0.8316414952278137, 0.049767155200242996, 0.0029625813476741314, 0.014293511398136616, 0.016213009133934975, 0.005573486443608999, 0.009432957507669926, 0.0010794304544106126, 0.04657946154475212]], [[4.6997854951769114e-05, 0.0006311151664704084, 6.937955186003819e-05, 0.0009768882300704718, 0.00014576448302250355, 9.334934293292463e-05, 0.000660013291053474, 2.3489619707106613e-05, 0.29161715507507324], [0.03953053429722786, 0.04480615258216858, 0.17624598741531372, 0.3320455849170685, 0.18302905559539795, 0.11669808626174927, 0.0127596789970994, 0.03359492868185043, 0.015715327113866806], [0.056025855243206024, 0.017212849110364914, 0.3687164783477783, 0.01077384501695633, 0.07087904214859009, 0.3237742483615875, 0.03511696681380272, 0.08068202435970306, 0.008143906481564045], [0.015551937744021416, 0.03036537393927574, 0.06994624435901642, 0.05071200802922249, 0.2754291594028473, 0.4450528025627136, 0.016826530918478966, 0.026995129883289337, 0.006157469004392624], [0.048887137323617935, 0.07722077518701553, 0.09643282741308212, 0.04219973459839821, 0.23919518291950226, 0.318155974149704, 0.059559255838394165, 0.07164259999990463, 0.0015539806336164474], [0.010238614864647388, 0.02784811519086361, 0.3302167057991028, 0.011526755057275295, 0.11658567935228348, 0.39849233627319336, 0.032393720000982285, 0.03154754638671875, 0.0013876929879188538], [0.01862824521958828, 0.07213407754898071, 0.1532040387392044, 0.01613878458738327, 0.2503899931907654, 0.2708008289337158, 0.061421703547239304, 0.028818242251873016, 0.001575593021698296], [0.0953814759850502, 0.12914900481700897, 0.015792902559041977, 0.06117771565914154, 0.03243299946188927, 0.022912047803401947, 0.10839948058128357, 0.437074214220047, 0.019374022260308266], [0.046842750161886215, 0.11623495817184448, 0.063980333507061, 0.04431002587080002, 0.1427324116230011, 0.0582481324672699, 0.0772114247083664, 0.0188564732670784, 0.011267701163887978]]], [[[0.6799723505973816, 0.02714240550994873, 0.00449505215510726, 0.009819257073104382, 0.001969903474673629, 0.0013555795885622501, 0.004159142728894949, 0.025402676314115524, 0.10693111270666122], [0.23385626077651978, 0.1443607360124588, 0.034189365804195404, 0.007658595219254494, 0.0007355501875281334, 0.0038644634187221527, 0.0035510926973074675, 0.019739340990781784, 0.43852442502975464], [0.6984356045722961, 0.16992157697677612, 0.02908949740231037, 0.007290296722203493, 0.0009568631066940725, 0.0018246949184685946, 0.004464342724531889, 0.05042754486203194, 0.014225407503545284], [0.25565215945243835, 0.15518487989902496, 0.03777023404836655, 0.024677015841007233, 0.013732791878283024, 0.011438226327300072, 0.02491465024650097, 0.23803526163101196, 0.0382743664085865], [0.06467265635728836, 0.466308057308197, 0.023762144148349762, 0.038105469197034836, 0.030488623306155205, 0.007472719997167587, 0.04738154262304306, 0.19471128284931183, 0.03719029948115349], [0.3908434212207794, 0.24928702414035797, 0.0104661975055933, 0.07785845547914505, 0.019612586125731468, 0.002427377039566636, 0.06945327669382095, 0.07400713860988617, 0.046541303396224976], [0.24660643935203552, 0.07539991289377213, 0.028458595275878906, 0.043353334069252014, 0.0176022257655859, 0.007150956429541111, 0.021256957203149796, 0.2747271656990051, 0.12031912803649902], [0.11268492043018341, 0.13597719371318817, 0.004825045820325613, 0.1361781507730484, 0.01413441076874733, 0.017867518588900566, 0.024349015206098557, 0.15218032896518707, 0.20350806415081024], [0.8579596877098083, 0.05068559572100639, 0.0011143614538013935, 0.017629515379667282, 0.0016797656426206231, 0.0018244433449581265, 0.003344691824167967, 0.03524310514330864, 0.012730668298900127]], [[0.7820881605148315, 0.04792488366365433, 0.014661292545497417, 0.016982680186629295, 0.00801462959498167, 0.01270146295428276, 0.0072418879717588425, 0.0037491123657673597, 0.05504460260272026], [0.9579739570617676, 0.0325721837580204, 0.004223098047077656, 0.0007561913807876408, 0.0002811573795042932, 0.0010076769394800067, 0.0004763439064845443, 0.00012394772784318775, 0.0019999793730676174], [0.25807806849479675, 0.7257601618766785, 0.0036532790400087833, 0.002803741255775094, 0.000127884850371629, 0.0001944909308804199, 0.00010639076208462939, 9.574835712555796e-05, 0.007093087304383516], [0.5073351263999939, 0.37685626745224, 0.09392479062080383, 0.005651452578604221, 0.0036995012778788805, 0.0016434623394161463, 4.996777352062054e-05, 2.4235627279267646e-05, 0.006225328426808119], [0.7279987931251526, 0.03613729029893875, 0.030276218429207802, 0.16253936290740967, 0.023364052176475525, 0.009557483717799187, 0.000169901002664119, 9.23241168493405e-06, 0.0019033962162211537], [0.8503820896148682, 0.004731119144707918, 0.0057678669691085815, 0.05592240020632744, 0.06056181341409683, 0.017557615414261818, 0.0017805345123633742, 5.563851664192043e-05, 0.0012225237442180514], [0.033895328640937805, 0.0010555146727710962, 0.0030241620261222124, 0.062069300562143326, 0.20510265231132507, 0.6801595091819763, 0.004191290121525526, 0.000631717499345541, 0.0039703440852463245], [0.05470624938607216, 0.0019496014574542642, 0.0010779440635815263, 0.012869438156485558, 0.06390991806983948, 0.5245635509490967, 0.24727720022201538, 0.009119056165218353, 0.06429312378168106], [0.8222008943557739, 0.0036109539214521646, 0.00017287030641455203, 0.0003112527774646878, 0.0014039340894669294, 0.0442749559879303, 0.07270245999097824, 0.00214636349119246, 0.05206447094678879]], [[0.9978406429290771, 0.00011925151920877397, 0.0016092193545773625, 0.00013301437138579786, 2.2027106751920655e-05, 5.232667535892688e-05, 2.5703395294840448e-05, 4.942137820762582e-05, 8.158062883012462e-06], [8.979030098998919e-06, 3.896623912424957e-09, 5.4202651256218815e-09, 2.543145442770057e-14, 1.101031903995818e-13, 2.0076509085840272e-13, 2.3550812341954774e-11, 2.934307657964652e-11, 0.9934830069541931], [4.1906554315573885e-07, 0.9999994039535522, 7.34803551338814e-09, 1.1345141714969031e-08, 3.385365035304334e-17, 6.2080984409716884e-15, 3.1602278138272037e-18, 3.0666432934700616e-12, 1.1275758105000477e-09], [5.224077312959707e-07, 9.750529272878339e-09, 0.9999995231628418, 1.1000453881138128e-08, 2.6140032360899568e-09, 2.9892975907752455e-16, 2.1034500204575069e-16, 2.1213622526628732e-17, 1.2590438414061822e-10], [4.6030545490793884e-05, 2.293247462148429e-06, 0.00037161048385314643, 0.9995773434638977, 2.250132183689857e-06, 4.6300823441924877e-07, 5.316659579699345e-16, 2.3741115478159887e-14, 7.435826428842053e-16], [0.018579285591840744, 4.151894539977663e-12, 6.140186451375484e-05, 9.829395821725484e-06, 0.9812160134315491, 2.487194251443725e-05, 0.0001041195064317435, 5.1184369243006955e-11, 3.86299880972274e-09], [0.00012907169002573937, 3.5032698245704257e-15, 1.1614941322103667e-13, 3.358269751174703e-08, 1.654805998896336e-07, 0.9998706579208374, 5.506277744871113e-08, 4.730205205305538e-08, 2.6334917728987465e-17], [7.92926311987685e-06, 4.2648854283247606e-15, 3.9308125846090544e-14, 1.0462367158335564e-14, 2.5681021753598543e-08, 6.90549359205761e-06, 0.999983549118042, 9.731803629620117e-07, 5.952467745373724e-07], [0.0004670645284932107, 3.789615732330276e-09, 3.1329287580005027e-13, 4.771542929109425e-14, 2.4122488251012873e-15, 1.0435915100970306e-05, 8.471471664961427e-05, 0.9993988275527954, 3.6443841509026242e-06]], [[0.6867114305496216, 0.03072221577167511, 0.02288508228957653, 0.03828873857855797, 0.010716172866523266, 0.01141773909330368, 0.004283017944544554, 0.03079269640147686, 0.038320280611515045], [0.9179489612579346, 0.01180310919880867, 0.010726666077971458, 0.020051773637533188, 0.0016027606325224042, 0.004612643271684647, 0.0002809829020407051, 0.0002525901945773512, 0.024664320051670074], [0.8211691379547119, 0.1309223175048828, 0.024959741160273552, 0.006833124440163374, 0.00022249194444157183, 0.001361209899187088, 6.993339047767222e-05, 0.0012610647827386856, 0.006858004257082939], [0.6250025033950806, 0.025590239092707634, 0.02464127726852894, 0.032638270407915115, 0.12564685940742493, 0.0638093426823616, 0.004042367916554213, 0.0011176529806107283, 0.07262792438268661], [0.10142362862825394, 0.015944037586450577, 0.0013855933211743832, 0.7803941369056702, 0.006138871423900127, 0.06482014805078506, 0.005172446835786104, 0.0024370690807700157, 0.011203977279365063], [0.6328158974647522, 0.002295407000929117, 0.008679562248289585, 0.006556634325534105, 0.06341486424207687, 0.001312406500801444, 0.11151009052991867, 0.013993396423757076, 0.1289055198431015], [0.030852865427732468, 0.00012281769886612892, 9.478269930696115e-05, 0.006045677233487368, 2.0646064513130113e-05, 0.9589614272117615, 3.609429040807299e-05, 0.0012943459441885352, 0.002023724839091301], [0.13162577152252197, 0.0018182883504778147, 0.0007394116837531328, 0.0040082866325974464, 0.0031610361766070127, 0.033398039638996124, 0.031590502709150314, 0.022854074835777283, 0.7127038836479187], [0.8541693687438965, 0.0031623607501387596, 0.00033561396412551403, 0.0018735644407570362, 8.419633377343416e-05, 0.0016818540170788765, 0.000544621201697737, 0.025828152894973755, 0.10088209807872772]], [[0.9886454343795776, 0.0011779565829783678, 0.00030400737887248397, 0.00012165625230409205, 2.9719922167714685e-05, 0.000114607231807895, 0.00015266070840880275, 0.0002697186137083918, 0.002555631333962083], [0.00012312506441958249, 2.2491219624498626e-06, 0.9998682737350464, 3.7476127090485534e-06, 1.1516051472426625e-06, 1.6988759010683196e-10, 4.189681934718692e-11, 5.6954840149670005e-11, 2.943820334166958e-07], [0.0019646044820547104, 1.8304528566659428e-05, 3.488785978333908e-06, 0.9979130625724792, 5.8246841945219785e-05, 2.2545918909600005e-05, 2.2775170638311693e-10, 6.466739643773423e-11, 2.0568549641275524e-10], [0.0014229671796783805, 3.69457173188259e-11, 3.710270539158955e-05, 2.158892311854288e-05, 0.9980875849723816, 0.0003797092940658331, 2.448420309519861e-05, 1.357150086755965e-10, 1.4164611705780317e-09], [0.00010283046867698431, 5.913301098781076e-11, 1.2800245238753227e-11, 9.958495866158046e-06, 1.0289192687196191e-05, 0.9997897744178772, 8.527067984687164e-05, 9.051705092133489e-07, 1.158867793393803e-11], [3.761385960387997e-05, 1.7626241178431146e-12, 5.928518960474083e-12, 1.2972305521441463e-12, 1.1677327194092868e-07, 1.5900121070444584e-05, 0.9999305009841919, 3.7730426356574753e-06, 1.2042067282891367e-05], [5.474664067151025e-05, 3.172784701632736e-08, 4.725575399738835e-13, 4.002094228933162e-12, 4.103583792214316e-13, 0.0003697780193760991, 1.7827973351813853e-05, 0.9990984201431274, 0.0004525601107161492], [6.210646461113356e-06, 2.05234627514983e-07, 1.123528505786453e-07, 4.893497065894259e-12, 1.1849732306501437e-10, 2.0365622077633816e-08, 5.126334508531727e-05, 0.009265629574656487, 0.9870928525924683], [0.9257515668869019, 2.1175487745495047e-06, 1.5206325088001904e-06, 4.09737950235467e-08, 1.8180952349091534e-14, 1.0640440750719904e-09, 9.174758175412023e-12, 5.0516191549832e-06, 0.0008269921527244151]], [[0.8630772829055786, 0.009417934343218803, 0.023290077224373817, 0.011665173806250095, 0.004272020887583494, 0.008473897352814674, 0.006163272075355053, 0.024672338739037514, 0.007038861978799105], [0.3920648992061615, 0.052510641515254974, 0.09347162395715714, 0.05435951054096222, 0.012896507047116756, 0.029805241152644157, 0.029427027329802513, 0.1072259396314621, 0.07465437799692154], [0.549708902835846, 0.020483342930674553, 0.001213102601468563, 0.0254861731082201, 0.023106595501303673, 0.08964689075946808, 0.02495274506509304, 0.05637064576148987, 0.08471304178237915], [0.5503023266792297, 0.030575549229979515, 0.026888040825724602, 0.019520802423357964, 0.013726988807320595, 0.035793207585811615, 0.032544586807489395, 0.14805740118026733, 0.07116218656301498], [0.45880764722824097, 0.030589710921049118, 0.02685512602329254, 0.014284702017903328, 0.009987078607082367, 0.16840608417987823, 0.05472039803862572, 0.08392486721277237, 0.0615713894367218], [0.5898685455322266, 0.01875513419508934, 0.012980069033801556, 0.025802338495850563, 0.021997399628162384, 0.0052882228046655655, 0.037984080612659454, 0.1341247409582138, 0.09574691206216812], [0.810656726360321, 0.011328445747494698, 0.006232826504856348, 0.006166239269077778, 0.005784434266388416, 0.017217343673110008, 0.0182981938123703, 0.04530853405594826, 0.03496453911066055], [0.3907400667667389, 0.04912613704800606, 0.023248184472322464, 0.06526510417461395, 0.011706170625984669, 0.044962625950574875, 0.016534950584173203, 0.085541270673275, 0.12448907643556595], [0.8035562634468079, 0.012781054712831974, 0.024935845285654068, 0.01797124184668064, 0.007260740268975496, 0.030758274719119072, 0.014644631184637547, 0.04623901844024658, 0.018935518339276314]], [[0.5741932392120361, 0.012504521757364273, 0.0032251307275146246, 0.008242546580731869, 0.0012622808571904898, 0.001786747365258634, 0.003126392839476466, 0.053322870284318924, 0.026428010314702988], [0.20268955826759338, 0.08628605306148529, 0.05451688915491104, 0.09015201032161713, 0.045336656272411346, 0.02782316878437996, 0.0411144495010376, 0.10645437240600586, 0.19452407956123352], [0.3195413649082184, 0.051214396953582764, 0.014866630546748638, 0.0767570286989212, 0.025990968570113182, 0.028270505368709564, 0.025723908096551895, 0.11174130439758301, 0.15366213023662567], [0.3675423264503479, 0.0774235650897026, 0.03533709794282913, 0.014811630360782146, 0.035400137305259705, 0.09095746278762817, 0.049049243330955505, 0.03926897421479225, 0.15405672788619995], [0.6945473551750183, 0.0503956563770771, 0.010528292506933212, 0.022740384563803673, 0.007032043766230345, 0.020692061632871628, 0.012314744293689728, 0.019432220607995987, 0.11901033669710159], [0.3998269736766815, 0.12892471253871918, 0.011652396060526371, 0.16042250394821167, 0.03744393214583397, 0.010028867051005363, 0.021646952256560326, 0.04304993897676468, 0.11173513531684875], [0.7311561107635498, 0.05060664191842079, 0.002645167987793684, 0.01531821396201849, 0.002850837307050824, 0.005628698039799929, 0.0022328824270516634, 0.06881626695394516, 0.08304977416992188], [0.8169430494308472, 0.020087622106075287, 0.0022841242607682943, 0.011465916410088539, 0.0016324989264830947, 0.001390981487929821, 0.004851995967328548, 0.03758576884865761, 0.06289665400981903], [0.6632129549980164, 0.05847909674048424, 0.002494317013770342, 0.009768658317625523, 0.002031132346019149, 0.002338845981284976, 0.010559553280472755, 0.17106842994689941, 0.04927026852965355]], [[0.8776012659072876, 0.00662739435210824, 0.010952865704894066, 0.018764959648251534, 0.0007523531094193459, 0.0034415407571941614, 0.003725002519786358, 0.02912301942706108, 0.02777864597737789], [0.25119268894195557, 0.0333518423140049, 0.02163023129105568, 0.16566267609596252, 0.01169008668512106, 0.015552700497210026, 0.008446073159575462, 0.2172682136297226, 0.10930515825748444], [0.6220285296440125, 0.02608654648065567, 0.01771676167845726, 0.08517983555793762, 0.024062316864728928, 0.01849222742021084, 0.013419565744698048, 0.03866398707032204, 0.05563565716147423], [0.07823210954666138, 0.04072333127260208, 0.004590645432472229, 0.1454194188117981, 0.007617459166795015, 0.019016485661268234, 0.008790089748799801, 0.09965246170759201, 0.1428917795419693], [0.2561625838279724, 0.07746205478906631, 0.00812583975493908, 0.03874392807483673, 0.0030905823223292828, 0.012665940448641777, 0.00525591941550374, 0.17169280350208282, 0.30743277072906494], [0.3294699192047119, 0.06063373386859894, 0.019198186695575714, 0.06185320392251015, 0.010971380397677422, 0.00912288948893547, 0.011579442769289017, 0.08766274899244308, 0.2896593511104584], [0.4176972508430481, 0.0192489642649889, 0.009520499967038631, 0.030035965144634247, 0.004126968793570995, 0.00760663254186511, 0.003234869334846735, 0.13726726174354553, 0.20067276060581207], [0.16225913166999817, 0.05023084953427315, 0.009315179660916328, 0.09372425824403763, 0.035310257226228714, 0.017323270440101624, 0.0196775421500206, 0.26553502678871155, 0.08117852360010147], [0.7915427088737488, 0.006852870341390371, 0.003815377363935113, 0.020265713334083557, 0.0007379118469543755, 0.002701258985325694, 0.0016143325483426452, 0.11479590088129044, 0.030341999605298042]], [[0.8576313257217407, 0.0035589467734098434, 0.0023343702778220177, 0.011643779464066029, 0.0023435167968273163, 0.0009843561565503478, 0.004606286529451609, 0.0310975369066, 0.014209676533937454], [0.8489042520523071, 0.004750748630613089, 0.0015615337761119008, 0.07200687378644943, 0.006777613889425993, 0.001286262646317482, 0.003625889541581273, 0.033543311059474945, 0.012470915913581848], [0.7480865716934204, 0.032843753695487976, 0.010309809818863869, 0.004586915951222181, 0.011372610926628113, 0.002150770276784897, 0.00414713378995657, 0.054756972938776016, 0.07125963270664215], [0.7276181578636169, 0.016752418130636215, 0.003972754348069429, 0.0015012893127277493, 0.03757693991065025, 0.038614653050899506, 0.019139813259243965, 0.05786258727312088, 0.040642306208610535], [0.6681697368621826, 0.007104968652129173, 0.007620250806212425, 0.10908336192369461, 0.0011078156530857086, 0.1432497352361679, 0.0020194146782159805, 0.020140277221798897, 0.019400393590331078], [0.6687548756599426, 0.005474054720252752, 0.0038148353341966867, 0.016389863565564156, 0.004948354326188564, 0.0005677415756508708, 0.23476062715053558, 0.03413522616028786, 0.0206003375351429], [0.7011111974716187, 0.004106187727302313, 0.0019048100803047419, 0.006826437544077635, 0.00035246365587227046, 0.18927736580371857, 0.000133782290504314, 0.01854376681149006, 0.05831955000758171], [0.7954146265983582, 0.009297670796513557, 0.0054098195396363735, 0.01658659242093563, 0.006253013852983713, 0.0019941539503633976, 0.030341122299432755, 0.04850636422634125, 0.0278739295899868], [0.9561313390731812, 0.0008841339149512351, 0.0004002015630248934, 0.002304780762642622, 0.00020183758169878274, 9.033607057062909e-05, 0.0011839112266898155, 0.019468409940600395, 0.011608057655394077]], [[0.3735335171222687, 0.038137149065732956, 0.03146331384778023, 0.028175292536616325, 0.0326337032020092, 0.05052849277853966, 0.013374547474086285, 0.04622263461351395, 0.13894814252853394], [0.22967460751533508, 0.034670423716306686, 0.041244275867938995, 0.04330058395862579, 0.04595201462507248, 0.022269340232014656, 0.02730032242834568, 0.0400838665664196, 0.1635829210281372], [0.45324236154556274, 0.03315805271267891, 0.006221025716513395, 0.02173622138798237, 0.00608855253085494, 0.00733786029741168, 0.012667971663177013, 0.06111518666148186, 0.08922546356916428], [0.16107189655303955, 0.020354239270091057, 0.039148855954408646, 0.04595628380775452, 0.07263963669538498, 0.034465864300727844, 0.040672462433576584, 0.017364749684929848, 0.2517130970954895], [0.2829039990901947, 0.05327393114566803, 0.014372805133461952, 0.026191797107458115, 0.023442428559064865, 0.013819298706948757, 0.015427010133862495, 0.04461078345775604, 0.2218894064426422], [0.2120259702205658, 0.02644788846373558, 0.021377813071012497, 0.02652422897517681, 0.017786791548132896, 0.0036319836508482695, 0.0227498859167099, 0.07672607898712158, 0.1642524152994156], [0.5835537314414978, 0.014582430012524128, 0.0017409727443009615, 0.0056937201879918575, 0.0018474537646397948, 0.0006850791978649795, 0.001000245800241828, 0.024731658399105072, 0.16851060092449188], [0.3185100555419922, 0.022960592061281204, 0.012767384760081768, 0.020211584866046906, 0.00849288422614336, 0.008760292083024979, 0.009923161938786507, 0.1465807855129242, 0.11985625326633453], [0.20566314458847046, 0.024741927161812782, 0.06761927902698517, 0.028798935934901237, 0.04770471900701523, 0.05940704420208931, 0.048026882112026215, 0.08339041471481323, 0.08626167476177216]], [[0.07105383276939392, 0.012199198827147484, 0.0025606751441955566, 0.014098068699240685, 0.008684908971190453, 0.006134395487606525, 0.0025567002594470978, 0.02494713105261326, 0.2922031283378601], [0.08587107807397842, 0.12017085403203964, 0.016761885955929756, 0.04377687722444534, 0.07643292844295502, 0.09050150215625763, 0.012779103592038155, 0.08882007002830505, 0.2766035795211792], [0.2587868571281433, 0.04579025134444237, 0.08576206117868423, 0.021298151463270187, 0.09947577118873596, 0.12108191102743149, 0.05031105875968933, 0.04778400808572769, 0.0487239807844162], [0.12059859931468964, 0.1198631227016449, 0.05578691139817238, 0.04377533495426178, 0.08134181797504425, 0.07904281467199326, 0.04682939872145653, 0.1108696460723877, 0.17096678912639618], [0.5149787068367004, 0.05842049419879913, 0.008388128131628036, 0.02404666878283024, 0.019166626036167145, 0.015623842366039753, 0.026531415060162544, 0.11565623432397842, 0.15655408799648285], [0.3521033525466919, 0.056938089430332184, 0.03832908347249031, 0.04835940897464752, 0.04904603585600853, 0.0739038959145546, 0.019523030146956444, 0.0829160213470459, 0.15739896893501282], [0.7653680443763733, 0.030797362327575684, 0.007287879008799791, 0.018698200583457947, 0.011425950564444065, 0.00856215599924326, 0.009349917992949486, 0.03901175409555435, 0.06177561730146408], [0.11037973314523697, 0.060056522488594055, 0.03372233361005783, 0.01978255808353424, 0.048144903033971786, 0.04038994386792183, 0.03741992637515068, 0.30095505714416504, 0.09967333823442459], [0.05031547322869301, 0.03718769922852516, 0.0047621093690395355, 0.027348151430487633, 0.02537132240831852, 0.021788131445646286, 0.006878376938402653, 0.11521006375551224, 0.5184921622276306]], [[0.13619019091129303, 0.07917975634336472, 0.03191395476460457, 0.04470569267868996, 0.02777736820280552, 0.04517613351345062, 0.0329587385058403, 0.12386400252580643, 0.05149879306554794], [0.21094262599945068, 0.06072332337498665, 0.03154246509075165, 0.039620619267225266, 0.05296778678894043, 0.05292663723230362, 0.05951029062271118, 0.11615844815969467, 0.14391648769378662], [0.34229591488838196, 0.05349472165107727, 0.00044914547470398247, 0.04652364179491997, 0.01909130997955799, 0.0064160870388150215, 0.05236538127064705, 0.037946734577417374, 0.21899962425231934], [0.1226445883512497, 0.040392011404037476, 0.02360180765390396, 0.03356942534446716, 0.0331718809902668, 0.14128978550434113, 0.034561868757009506, 0.1505764275789261, 0.0805952250957489], [0.1335122436285019, 0.046422168612480164, 0.045643869787454605, 0.06108638271689415, 0.003401512047275901, 0.1501297801733017, 0.1097494512796402, 0.054603055119514465, 0.17308315634727478], [0.13850677013397217, 0.0639893040060997, 0.00850216206163168, 0.09153279662132263, 0.03693598508834839, 0.0058687045238912106, 0.05740666389465332, 0.10620807111263275, 0.19798418879508972], [0.2302083969116211, 0.05530844256281853, 0.05514807254076004, 0.050639744848012924, 0.013585008680820465, 0.08023469895124435, 0.05732687935233116, 0.05652659386396408, 0.18080158531665802], [0.25972920656204224, 0.06390157341957092, 0.019162608310580254, 0.04985982924699783, 0.041011158376932144, 0.045371364802122116, 0.034367289394140244, 0.15957415103912354, 0.06398110091686249], [0.09034276008605957, 0.07754916697740555, 0.03454980626702309, 0.06535446643829346, 0.03883584216237068, 0.10664921253919601, 0.03620612248778343, 0.20718428492546082, 0.0517723374068737]]], [[[0.6822956204414368, 0.035260070115327835, 0.00263024540618062, 0.013483773916959763, 0.010092920623719692, 0.00952314306050539, 0.0016194175696000457, 0.03664538636803627, 0.019463056698441505], [0.3195177912712097, 0.09742715954780579, 0.01119675301015377, 0.12037629634141922, 0.04995123669505119, 0.044034916907548904, 0.011735173873603344, 0.14329250156879425, 0.08690748363733292], [0.52382892370224, 0.02846101112663746, 0.018757235258817673, 0.03017124906182289, 0.030158022418618202, 0.09563451260328293, 0.007803021930158138, 0.02280348353087902, 0.1261315643787384], [0.3216986656188965, 0.23807315528392792, 0.0008802164811640978, 0.06642764061689377, 0.04236074537038803, 0.02113865502178669, 0.01180385984480381, 0.1970285326242447, 0.016916584223508835], [0.45321059226989746, 0.06610734760761261, 0.00047098653158172965, 0.16192032396793365, 0.04743068665266037, 0.01764250174164772, 0.06689406931400299, 0.11394446343183517, 0.011730327270925045], [0.48540663719177246, 0.0315280556678772, 0.0009604609222151339, 0.09195850789546967, 0.06993946433067322, 0.024767903611063957, 0.06700718402862549, 0.14951883256435394, 0.016719719395041466], [0.4349879026412964, 0.07053473591804504, 0.0001326032797805965, 0.23243191838264465, 0.08468427509069443, 0.010827518999576569, 0.009237083606421947, 0.095780149102211, 0.0049951933324337006], [0.43343231081962585, 0.07787344604730606, 0.0031263334676623344, 0.069603331387043, 0.052730485796928406, 0.015508756041526794, 0.006747057661414146, 0.21662920713424683, 0.024357153102755547], [0.7126644253730774, 0.05738997459411621, 0.0017661815509200096, 0.011781885288655758, 0.02944267727434635, 0.012645489536225796, 0.005664742551743984, 0.11641773581504822, 0.01747857965528965]], [[0.26030296087265015, 0.024937255308032036, 0.0119309788569808, 0.03835250809788704, 0.007886629551649094, 0.022854356095194817, 0.018406454473733902, 0.02492615021765232, 0.08671466261148453], [0.5228820443153381, 0.2498551905155182, 0.0047102575190365314, 0.02850227989256382, 0.001522764447145164, 0.0018293781904503703, 0.007469263859093189, 0.015240908600389957, 0.08303587883710861], [0.5664864778518677, 0.008889389224350452, 0.09324275702238083, 0.004385432228446007, 0.0002986930776387453, 0.0038385335355997086, 0.0002485603035893291, 0.02305116504430771, 0.18619360029697418], [0.2929644286632538, 0.0634969100356102, 0.003967739641666412, 0.3829934597015381, 0.005042236298322678, 0.0014616843545809388, 0.01442265696823597, 0.015202870592474937, 0.07655645906925201], [0.23808839917182922, 0.010087027214467525, 0.0003861273289658129, 0.014740384183824062, 0.5390181541442871, 0.008710535243153572, 0.03599068522453308, 0.010943606495857239, 0.04784562438726425], [0.11473768949508667, 0.000960657955147326, 0.0009823553264141083, 0.0009865137981250882, 0.0003537834854796529, 0.7655156254768372, 0.0008234000415541232, 0.010097494348883629, 0.05844496935606003], [0.5163162350654602, 0.00897502526640892, 0.0004555540217552334, 0.012591302394866943, 0.011259350925683975, 0.002138142241165042, 0.29595574736595154, 0.01212291605770588, 0.09115639328956604], [0.21852906048297882, 0.08968650549650192, 0.05212351679801941, 0.10586758702993393, 0.0189121775329113, 0.03629008308053017, 0.023462336510419846, 0.093361496925354, 0.1368219405412674], [0.6237765550613403, 0.07191742956638336, 0.005616202484816313, 0.04252871498465538, 0.002756607485935092, 0.010773872956633568, 0.004928263369947672, 0.06351715326309204, 0.09769699722528458]], [[0.22436125576496124, 0.03122175857424736, 0.021436095237731934, 0.014033504761755466, 0.019719915464520454, 0.0338527113199234, 0.012618753127753735, 0.039174940437078476, 0.03941758722066879], [0.2595123052597046, 0.13314905762672424, 0.029556741937994957, 0.0541284941136837, 0.02760419435799122, 0.02228226512670517, 0.09031977504491806, 0.16102033853530884, 0.07728604972362518], [0.594242513179779, 0.15180082619190216, 0.013355364091694355, 0.013014501892030239, 0.0018408140167593956, 0.0003923088952433318, 0.0116496616974473, 0.16529680788516998, 0.0057604662142694], [0.27030667662620544, 0.13621576130390167, 0.028462644666433334, 0.0646762028336525, 0.02358029969036579, 0.02551363967359066, 0.09418133646249771, 0.11567646265029907, 0.023073725402355194], [0.5074316263198853, 0.07996106147766113, 0.002697526477277279, 0.011143394745886326, 0.00106679683085531, 0.0004081881488673389, 0.0045843543484807014, 0.3531482517719269, 0.012267665937542915], [0.5707200765609741, 0.13657622039318085, 0.01322108879685402, 0.00804736465215683, 0.0021786789875477552, 0.0002577733830548823, 0.00417737290263176, 0.2190672606229782, 0.009484305046498775], [0.4644774794578552, 0.06806331127882004, 0.011435909196734428, 0.03586268797516823, 0.005579446908086538, 0.002100869081914425, 0.008821384981274605, 0.23808692395687103, 0.08800483494997025], [0.3335186541080475, 0.03827006742358208, 0.013124575838446617, 0.041150301694869995, 0.03460875526070595, 0.015999259427189827, 0.034882307052612305, 0.22065448760986328, 0.106643445789814], [0.48089906573295593, 0.05632786452770233, 0.006751597858965397, 0.02877786196768284, 0.020115992054343224, 0.007723397575318813, 0.02941860258579254, 0.31117892265319824, 0.012199708260595798]], [[0.7269570827484131, 0.01789163611829281, 0.00799620058387518, 0.006585173774510622, 0.003356094704940915, 0.005447388626635075, 0.004194266628473997, 0.020981440320611, 0.04622857645153999], [0.006191821303218603, 0.019481344148516655, 0.7337139248847961, 0.20860829949378967, 0.015124008990824223, 0.0032596897799521685, 0.0004418274329509586, 0.0014926388394087553, 0.004156946670264006], [0.8142242431640625, 0.014280052855610847, 0.03292576223611832, 0.05281565710902214, 0.03126922622323036, 0.022389255464076996, 0.0006104055210016668, 0.004441654775291681, 0.008216227404773235], [0.08254825323820114, 0.007273707073181868, 0.007603869307786226, 0.02100532129406929, 0.453010618686676, 0.3249257802963257, 0.024505997076630592, 0.023346200585365295, 0.015324040316045284], [0.054695867002010345, 0.0005519826081581414, 0.00016194878844544291, 0.0021179390605539083, 0.01695120520889759, 0.2183791697025299, 0.6605658531188965, 0.037342529743909836, 0.0054132589139044285], [0.4551451802253723, 0.0027073537930846214, 0.0006436753319576383, 0.0011482848785817623, 0.011742557398974895, 0.05413889139890671, 0.09749658405780792, 0.2391180545091629, 0.1270204335451126], [0.20939292013645172, 0.002777647925540805, 0.00017728346574585885, 7.00855816830881e-05, 0.0017265296773985028, 0.014145530760288239, 0.0033955376129597425, 0.06417017430067062, 0.6963275671005249], [0.2170998603105545, 0.012498983182013035, 0.004142874386161566, 0.0018711151788011193, 0.0015724966069683433, 0.008559465408325195, 0.016058972105383873, 0.06742995232343674, 0.5090731978416443], [0.9664286971092224, 0.001338437432423234, 0.00028009433299303055, 0.0003492311807349324, 6.550805119331926e-05, 0.00017494872736278921, 7.833373820176348e-05, 0.001981660258024931, 0.020104890689253807]], [[0.8424743413925171, 0.020767195150256157, 0.017066778615117073, 0.030537346377968788, 0.006614766549319029, 0.005440154112875462, 0.0016326821641996503, 0.013458272442221642, 0.03050542250275612], [0.9286220669746399, 0.02002856880426407, 0.003596397815272212, 0.022788656875491142, 7.081696821842343e-05, 0.00013932306319475174, 3.967220618505962e-05, 0.004535026848316193, 0.015291046351194382], [0.8238195776939392, 0.11171792447566986, 0.009885051287710667, 0.013269836083054543, 0.00012634409358724952, 5.4048166930442676e-05, 4.074934167874744e-06, 0.0011064414866268635, 0.02488909661769867], [0.5379607677459717, 0.2255418598651886, 0.17621786892414093, 0.021368632093071938, 0.004112194292247295, 0.0008770033018663526, 1.3368659892876167e-05, 0.001554579590447247, 0.021221648901700974], [0.31428298354148865, 0.04264606535434723, 0.15583379566669464, 0.44417861104011536, 0.026532310992479324, 0.0041827731765806675, 4.7395064029842615e-05, 0.0005624418263323605, 0.003462761640548706], [0.6452857255935669, 0.009519824758172035, 0.03558145463466644, 0.2224140167236328, 0.04735264554619789, 0.0073654139414429665, 0.0004941757651977241, 0.004128024913370609, 0.012794092297554016], [0.0703856572508812, 0.009479045867919922, 0.008982180617749691, 0.32753419876098633, 0.3548038899898529, 0.19466352462768555, 0.0014312994899228215, 0.014763517305254936, 0.011699704453349113], [0.03372747078537941, 0.008814230561256409, 0.001266675884835422, 0.035009779036045074, 0.03177085146307945, 0.2526962459087372, 0.5360028147697449, 0.0579359233379364, 0.03556671366095543], [0.9428878426551819, 0.004099049139767885, 8.053931378526613e-05, 0.0006541602779179811, 0.00027153469272889197, 0.0020265269558876753, 0.0007708747871220112, 0.013570916838943958, 0.034691255539655685]], [[0.13585063815116882, 0.03866572305560112, 0.04863022640347481, 0.057078033685684204, 0.013443577103316784, 0.03305221349000931, 0.023145761340856552, 0.06955958902835846, 0.05880245193839073], [0.5049821734428406, 0.009588302113115788, 0.028704777359962463, 0.02410416305065155, 0.027530856430530548, 0.03328945115208626, 0.018587250262498856, 0.03651125356554985, 0.08305874466896057], [0.413239449262619, 0.012525207363069057, 0.00013884906366001815, 0.006962826009839773, 0.0015833210200071335, 0.0064878398552536964, 0.008617706596851349, 0.02073638327419758, 0.2738681137561798], [0.4644061326980591, 0.02647235244512558, 0.015102909877896309, 0.01899535208940506, 0.020528098568320274, 0.021546365693211555, 0.01763543114066124, 0.057087041437625885, 0.10842602699995041], [0.4537603259086609, 0.054237838834524155, 0.025721164420247078, 0.013679997995495796, 0.003925945609807968, 0.010583984665572643, 0.012050645425915718, 0.0709696039557457, 0.0841531902551651], [0.3236851096153259, 0.02184567041695118, 0.030767865478992462, 0.009230084717273712, 0.004454542882740498, 0.0008581345900893211, 0.006186081562191248, 0.045718878507614136, 0.1715051233768463], [0.3586571514606476, 0.052442245185375214, 0.012864110060036182, 0.031898707151412964, 0.02906748093664646, 0.014049002900719643, 0.009729764424264431, 0.04979103431105614, 0.08141439408063889], [0.3849962651729584, 0.050567422062158585, 0.008055496029555798, 0.043122902512550354, 0.05336153879761696, 0.06670928746461868, 0.050491299480199814, 0.06062683090567589, 0.06767594814300537], [0.20832321047782898, 0.06806044280529022, 0.10066117346286774, 0.04903802275657654, 0.03328399732708931, 0.06784899532794952, 0.028927646577358246, 0.0522085539996624, 0.0665426179766655]], [[0.6305399537086487, 0.013836522586643696, 0.0045390864834189415, 0.032936010509729385, 0.007649693172425032, 0.0670883059501648, 0.03395257517695427, 0.1258867084980011, 0.02737734094262123], [3.2544471650908235e-07, 8.826628800306935e-06, 0.9999598264694214, 9.92667719401652e-06, 2.072483221127186e-05, 8.55941928445958e-10, 2.8486098896385315e-11, 3.9725792100320234e-11, 9.391175836981347e-08], [2.529266112105688e-06, 1.9670103768021363e-08, 8.621441338618752e-08, 0.999936580657959, 6.0605616454267874e-05, 5.344023890074823e-08, 4.222052937298548e-13, 4.923435791004405e-12, 2.970525908585486e-11], [6.528964036078833e-08, 8.423086880759989e-12, 1.1022739698773876e-07, 1.9075298496318283e-06, 0.9999896287918091, 8.229199920606334e-06, 7.930240286668777e-08, 2.148528577272657e-11, 5.028918947935779e-11], [1.5617771964571148e-08, 6.323242575162133e-14, 3.3915491942648757e-13, 8.867329626127685e-08, 2.841474997694604e-05, 0.9999475479125977, 2.3323991626966745e-05, 3.7015877296653343e-07, 2.314658339129527e-13], [1.6909840194756498e-09, 2.017942917934912e-15, 2.488679191382532e-14, 1.3938886835398751e-14, 2.899916751175624e-09, 6.724070544805727e-08, 0.9999951124191284, 4.743439149024198e-06, 3.368182532881292e-08], [8.437435212726996e-07, 8.693154160931138e-13, 1.5337625931350092e-17, 1.3982279486253642e-14, 4.0529874310748885e-15, 2.1671358751973457e-07, 2.492410544618906e-07, 0.9999982118606567, 4.201515366730746e-07], [5.5076153415711815e-08, 2.177206326337e-08, 9.0482942319281e-12, 3.8809450444987625e-14, 1.2180908408668256e-13, 4.118511087725096e-12, 8.705407950060362e-09, 3.216765253455378e-05, 0.9999666213989258], [0.5838304758071899, 8.245188837463502e-06, 5.752878173836962e-09, 4.666404151976167e-07, 1.2834948381890143e-11, 1.9467684353458026e-07, 6.317766865215901e-10, 0.3820224106311798, 0.03408528119325638]], [[0.5532012581825256, 0.056342318654060364, 0.03966352343559265, 0.03867947682738304, 0.03004496358335018, 0.01268330030143261, 0.010136581026017666, 0.07777208089828491, 0.03803224116563797], [0.5323253870010376, 0.1547735184431076, 0.06920365989208221, 0.07850660383701324, 0.027272718027234077, 0.02668316662311554, 0.011791568249464035, 0.06699660420417786, 0.0019511543214321136], [0.8686466217041016, 0.019428841769695282, 0.038878124207258224, 0.015753012150526047, 0.004335517063736916, 0.005629232153296471, 0.0017180751310661435, 0.029525702819228172, 0.0025612516328692436], [0.5975949168205261, 0.19521313905715942, 0.053961459547281265, 0.045708246529102325, 0.011879975907504559, 0.00916756596416235, 0.006334370467811823, 0.04775369539856911, 0.007359594572335482], [0.5984036326408386, 0.16447636485099792, 0.07010787725448608, 0.0465536043047905, 0.01334342174232006, 0.028260599821805954, 0.0049822828732430935, 0.035501059144735336, 0.006532648112624884], [0.45495522022247314, 0.16411268711090088, 0.19026070833206177, 0.06585612148046494, 0.012993479147553444, 0.029177438467741013, 0.004995911847800016, 0.0324215330183506, 0.006586913485080004], [0.28162336349487305, 0.3457529544830322, 0.05234357714653015, 0.16156591475009918, 0.017905384302139282, 0.01776779815554619, 0.0077798920683562756, 0.05413322150707245, 0.016239142045378685], [0.07252369821071625, 0.33544278144836426, 0.0365300178527832, 0.37979522347450256, 0.042211804538965225, 0.016170253977179527, 0.013714698143303394, 0.02604314312338829, 0.023853445425629616], [0.6320256590843201, 0.08633964508771896, 0.008443334139883518, 0.07852686196565628, 0.01582266390323639, 0.00956010352820158, 0.004057909362018108, 0.07843121141195297, 0.06210179254412651]], [[0.4138449430465698, 0.015741320326924324, 0.03365154564380646, 0.022843606770038605, 0.015682043507695198, 0.010899519547820091, 0.0066413069143891335, 0.19493958353996277, 0.09664005041122437], [0.38431495428085327, 0.053014714270830154, 0.0372779555618763, 0.012496811337769032, 0.005788793321698904, 0.0037077544257044792, 0.0134745417162776, 0.07773943990468979, 0.1278482973575592], [0.34350141882896423, 0.13274376094341278, 0.002483364660292864, 0.014857056550681591, 0.000526853313203901, 0.0014163340674713254, 0.002856469713151455, 0.020499447360634804, 0.2057843953371048], [0.42395320534706116, 0.02319582924246788, 0.01924785226583481, 0.0210964847356081, 0.005129100289195776, 0.00829885434359312, 0.008690069429576397, 0.12591443955898285, 0.1475519984960556], [0.38901641964912415, 0.02602742798626423, 0.008820665068924427, 0.006004012189805508, 0.0006900631124153733, 0.004542734939604998, 0.008454530499875546, 0.14808832108974457, 0.12141386419534683], [0.2766445279121399, 0.020056121051311493, 0.006883652415126562, 0.015231121331453323, 0.006841578520834446, 0.005508384667336941, 0.007430134806782007, 0.13110877573490143, 0.17385096848011017], [0.4422587454319, 0.01684163697063923, 0.023267410695552826, 0.016402849927544594, 0.009863986633718014, 0.02482590824365616, 0.004770989995449781, 0.09477363526821136, 0.13843879103660583], [0.30784881114959717, 0.026232510805130005, 0.02758960612118244, 0.023647038266062737, 0.023645328357815742, 0.03204881772398949, 0.010660781525075436, 0.1672738492488861, 0.11527412384748459], [0.26737070083618164, 0.034848008304834366, 0.049771130084991455, 0.020302241668105125, 0.02331160381436348, 0.02999437041580677, 0.017250830307602882, 0.13247382640838623, 0.10412835329771042]], [[0.286782443523407, 0.11950644850730896, 0.07631204277276993, 0.04265960678458214, 0.03633423149585724, 0.10302546620368958, 0.024834631010890007, 0.05489618703722954, 0.23462238907814026], [0.03478582948446274, 0.03113018162548542, 0.017365338280797005, 0.15052133798599243, 0.08781075477600098, 0.14323875308036804, 0.130378857254982, 0.10430116951465607, 0.2626897394657135], [0.3390771150588989, 0.08934470266103745, 0.024043571203947067, 0.016423728317022324, 0.04631766676902771, 0.1507132202386856, 0.04646822065114975, 0.08614522218704224, 0.15007032454013824], [0.052080072462558746, 0.05866844579577446, 0.010263591073453426, 0.028599200770258904, 0.01862446218729019, 0.06299461424350739, 0.12307022511959076, 0.16749276220798492, 0.4332520067691803], [0.22408659756183624, 0.08363652229309082, 0.014496050775051117, 0.010944507084786892, 0.013982304371893406, 0.08459407091140747, 0.05463037267327309, 0.15326762199401855, 0.29476168751716614], [0.19019478559494019, 0.15248160064220428, 0.056798193603754044, 0.02988666109740734, 0.05498085170984268, 0.11691134423017502, 0.04486076161265373, 0.10599389672279358, 0.12796634435653687], [0.25588855147361755, 0.08099603652954102, 0.021259302273392677, 0.03044278733432293, 0.024179581552743912, 0.03296676650643349, 0.021636776626110077, 0.10443328320980072, 0.33520951867103577], [0.37115785479545593, 0.047299884259700775, 0.03770899400115013, 0.06030043587088585, 0.01998249441385269, 0.024084556847810745, 0.014646393246948719, 0.07542679458856583, 0.2001403570175171], [0.7695024609565735, 0.07120281457901001, 0.015925290063023567, 0.022137219086289406, 0.014115013182163239, 0.023239165544509888, 0.004949232563376427, 0.026149947196245193, 0.047435663640499115]], [[0.4112699329853058, 0.006541939917951822, 0.02332466095685959, 0.02276770770549774, 0.02225331962108612, 0.03796745464205742, 0.004989867564290762, 0.009168654680252075, 0.00970390159636736], [0.22945763170719147, 0.020674921572208405, 0.0797308161854744, 0.10179751366376877, 0.11564330756664276, 0.29135334491729736, 0.016323914751410484, 0.028985261917114258, 0.05532391369342804], [0.7307668328285217, 0.027968106791377068, 0.0050850496627390385, 0.01716719940304756, 0.015816666185855865, 0.011446071788668633, 0.004138565622270107, 0.02189067378640175, 0.08811809122562408], [0.09374886006116867, 0.011991279199719429, 0.07913437485694885, 0.01592109352350235, 0.1669420301914215, 0.3696483075618744, 0.05733688920736313, 0.012812071479856968, 0.024349208921194077], [0.06328000128269196, 0.02153896540403366, 0.0394800640642643, 0.09025799483060837, 0.052132051438093185, 0.3809486925601959, 0.15937446057796478, 0.017447615042328835, 0.0526924803853035], [0.07619411498308182, 0.04668833687901497, 0.06802711635828018, 0.13332922756671906, 0.13175615668296814, 0.07951398938894272, 0.10803163051605225, 0.01928500086069107, 0.1472310870885849], [0.016898347064852715, 0.015739023685455322, 0.017490092664957047, 0.1362493485212326, 0.25357428193092346, 0.41659215092658997, 0.012602162547409534, 0.007041164208203554, 0.025470763444900513], [0.5225013494491577, 0.07134781777858734, 0.005588449537754059, 0.059401046484708786, 0.040952008217573166, 0.015175732783973217, 0.0037966424133628607, 0.09752402454614639, 0.07115839421749115], [0.7201520800590515, 0.043823327869176865, 0.003056393237784505, 0.013115474954247475, 0.0053733098320662975, 0.008851438760757446, 0.0026200308930128813, 0.09460372477769852, 0.03894883021712303]], [[0.7454310059547424, 0.023761693388223648, 0.003255219431594014, 0.022921547293663025, 0.01218433491885662, 0.0024156144354492426, 0.013529102317988873, 0.026090769097208977, 0.06894727796316147], [0.7644087076187134, 0.10793653875589371, 0.0046956646256148815, 0.006380660459399223, 0.0054332055151462555, 0.00211281212978065, 0.0014909531455487013, 0.012437206692993641, 0.06100831925868988], [0.6263486742973328, 0.04645629972219467, 0.23294302821159363, 0.005369207821786404, 0.0010211096378043294, 0.0009457694832235575, 0.0003134069265797734, 0.007978001609444618, 0.04452388733625412], [0.6000315546989441, 0.03173704817891121, 0.0017599010607227683, 0.20251692831516266, 0.0069443294778466225, 0.0005679914029315114, 0.003230038098990917, 0.011964483186602592, 0.06734354048967361], [0.6242268085479736, 0.019113929942250252, 0.0005189512157812715, 0.007207277696579695, 0.2535454034805298, 0.003649613820016384, 0.010663324035704136, 0.0037125758826732635, 0.03419102728366852], [0.611883282661438, 0.023905223235487938, 0.005256030708551407, 0.0039953733794391155, 0.021683868020772934, 0.20945993065834045, 0.005543800536543131, 0.011983480304479599, 0.04765421897172928], [0.3935457170009613, 0.008486141450703144, 0.0004028867988381535, 0.0174289271235466, 0.021901069208979607, 0.0023701621685177088, 0.4826660752296448, 0.004353047348558903, 0.02093913033604622], [0.6028467416763306, 0.03769001364707947, 0.028475457802414894, 0.03120230883359909, 0.018437113612890244, 0.013266599737107754, 0.01148221269249916, 0.06290264427661896, 0.0769723653793335], [0.7800852656364441, 0.043357085436582565, 0.0025201698299497366, 0.010703466832637787, 0.0059421188198029995, 0.0017845203401520848, 0.0047697341069579124, 0.033111076802015305, 0.02892328053712845]]], [[[0.20538556575775146, 0.006783756893128157, 0.0063742040656507015, 0.030155163258314133, 0.0012839731061831117, 0.004238997120410204, 0.0025502729695290327, 0.030539020895957947, 0.12862206995487213], [0.5357323288917542, 0.06808635592460632, 0.026822850108146667, 0.05122525990009308, 0.0031411380041390657, 0.01969270035624504, 0.009553084149956703, 0.16382397711277008, 0.0852455124258995], [0.7164422273635864, 0.07096374034881592, 0.017240209504961967, 0.03909487649798393, 0.003829126711934805, 0.01916281320154667, 0.0075177038088440895, 0.05583331733942032, 0.014150304719805717], [0.304108589887619, 0.20673112571239471, 0.06677430123090744, 0.049756307154893875, 0.008345875889062881, 0.022099127992987633, 0.017671670764684677, 0.12516650557518005, 0.11123248934745789], [0.5903051495552063, 0.03608828783035278, 0.03995300456881523, 0.12305960804224014, 0.012417576275765896, 0.030747177079319954, 0.00961415097117424, 0.05638304352760315, 0.051010169088840485], [0.18413367867469788, 0.023990681394934654, 0.32321006059646606, 0.1411694586277008, 0.04371248185634613, 0.06313467770814896, 0.03103500045835972, 0.04628429189324379, 0.04610616713762283], [0.16810491681098938, 0.11710225045681, 0.17226579785346985, 0.09263493865728378, 0.02276747301220894, 0.029245691373944283, 0.015072470530867577, 0.10670068114995956, 0.15321768820285797], [0.14960162341594696, 0.09268868714570999, 0.06603402644395828, 0.10647189617156982, 0.02834557555615902, 0.08273094147443771, 0.04079456627368927, 0.1163577139377594, 0.14658527076244354], [0.7728886604309082, 0.018508274108171463, 0.008784030564129353, 0.01565266214311123, 0.0026726776268333197, 0.016554074361920357, 0.005139840301126242, 0.07173344492912292, 0.03822699934244156]], [[0.030539169907569885, 0.02875026874244213, 0.06822026520967484, 0.023251529783010483, 0.013749457895755768, 0.01913834735751152, 0.0069595989771187305, 0.010247768834233284, 0.05387391522526741], [0.052944429218769073, 0.09264461696147919, 0.19800376892089844, 0.09800095856189728, 0.07139851152896881, 0.1356605738401413, 0.052425216883420944, 0.03596577048301697, 0.027081986889243126], [0.08105944097042084, 0.08162585645914078, 0.09906909614801407, 0.18268047273159027, 0.056270454078912735, 0.10172320902347565, 0.03685358911752701, 0.042729396373033524, 0.01830418035387993], [0.08996124565601349, 0.05384872108697891, 0.056726980954408646, 0.09951606392860413, 0.027063090354204178, 0.07598155736923218, 0.020372234284877777, 0.102356918156147, 0.13701073825359344], [0.05538564920425415, 0.034674808382987976, 0.05091593414545059, 0.04707299917936325, 0.013468349352478981, 0.031550176441669464, 0.018559744581580162, 0.30694717168807983, 0.17568787932395935], [0.0379943773150444, 0.05438225716352463, 0.06459691375494003, 0.13985489308834076, 0.06155803054571152, 0.07143308222293854, 0.025858715176582336, 0.1815710961818695, 0.04422144591808319], [0.03593188151717186, 0.0802558958530426, 0.11214897036552429, 0.14159120619297028, 0.05939282104372978, 0.12235785275697708, 0.031530119478702545, 0.13292339444160461, 0.03320692107081413], [0.08188726752996445, 0.079721599817276, 0.08180434256792068, 0.1742558628320694, 0.121385857462883, 0.08700862526893616, 0.058161478489637375, 0.09384908527135849, 0.039518803358078], [0.10896807163953781, 0.025675645098090172, 0.022387707605957985, 0.016805820167064667, 0.003379481378942728, 0.007485288195312023, 0.003515147138386965, 0.36154910922050476, 0.17249315977096558]], [[0.11574086546897888, 0.03910510987043381, 0.07187940180301666, 0.06111738830804825, 0.013943717814981937, 0.07700829952955246, 0.021459145471453667, 0.07959326356649399, 0.1575775444507599], [0.17140600085258484, 0.024477750062942505, 0.04528594762086868, 0.021172508597373962, 0.004341131076216698, 0.0551883764564991, 0.008823134005069733, 0.14520800113677979, 0.21773682534694672], [0.10825788974761963, 0.0362422838807106, 0.07992580533027649, 0.032638467848300934, 0.01952669583261013, 0.3589767813682556, 0.013312151655554771, 0.0045678336173295975, 0.08004390448331833], [0.12401217967271805, 0.01814933307468891, 0.021389776840806007, 0.006738147232681513, 0.003697388805449009, 0.04121708869934082, 0.002729542087763548, 0.10315649956464767, 0.33265554904937744], [0.07825490087270737, 0.009201773442327976, 0.006448546424508095, 0.0014714559074491262, 0.0003126643714495003, 0.004056004341691732, 0.00034153382875956595, 0.22924011945724487, 0.36345067620277405], [0.1532689779996872, 0.034383002668619156, 0.02343110926449299, 0.014916395768523216, 0.009058364666998386, 0.04522303491830826, 0.001690057571977377, 0.05718221515417099, 0.3356769382953644], [0.11485268920660019, 0.010244856588542461, 0.0029909468721598387, 0.0029443015810102224, 0.002445399295538664, 0.008238011039793491, 0.00015095675189513713, 0.1396235078573227, 0.3869325816631317], [0.19137787818908691, 0.01847575604915619, 0.017389247193932533, 0.012108166702091694, 0.0026623427402228117, 0.012141812592744827, 0.004095043987035751, 0.2350376546382904, 0.25106942653656006], [0.1774381846189499, 0.018427303060889244, 0.01918407343327999, 0.009497717022895813, 0.001488909823819995, 0.01567409560084343, 0.00342578929848969, 0.2394871860742569, 0.24724702537059784]], [[0.3063393533229828, 0.016823729500174522, 0.02133076824247837, 0.014787032268941402, 0.004586333874613047, 0.008930913172662258, 0.0046145180240273476, 0.02900872379541397, 0.10513562709093094], [0.028736766427755356, 0.017690913751721382, 0.21235576272010803, 0.45701807737350464, 0.05954978987574577, 0.047599636018276215, 0.02696293033659458, 0.030378146097064018, 0.04113154113292694], [0.3970986008644104, 0.014471332542598248, 0.009949607774615288, 0.041678477078676224, 0.019086839631199837, 0.08480267226696014, 0.014518244192004204, 0.09341216087341309, 0.1397390514612198], [0.04054252430796623, 0.0030526411719620228, 0.003028194885700941, 0.0067199477925896645, 0.02198825217783451, 0.18767423927783966, 0.23067983984947205, 0.31219494342803955, 0.0907425507903099], [0.14558541774749756, 0.003993839956820011, 0.001597037073224783, 0.0047955890186131, 0.015098282136023045, 0.10384045541286469, 0.1618817001581192, 0.2784561216831207, 0.19429436326026917], [0.2417854368686676, 0.012175928801298141, 0.005689199548214674, 0.004064121749252081, 0.008398755453526974, 0.04072807356715202, 0.036037832498550415, 0.20900744199752808, 0.2611490786075592], [0.2627291977405548, 0.012396474368870258, 0.0016125416150316596, 0.004647783935070038, 0.007459305692464113, 0.03738383576273918, 0.01006923709064722, 0.20709355175495148, 0.3122168183326721], [0.10630419850349426, 0.016108835116028786, 0.015444967895746231, 0.02033955417573452, 0.007889826782047749, 0.014650100842118263, 0.008080512285232544, 0.06066301465034485, 0.1440199315547943], [0.6476292014122009, 0.016348058357834816, 0.0040677934885025024, 0.014692348428070545, 0.0018367322627454996, 0.00444315280765295, 0.001242246595211327, 0.008662236854434013, 0.11497929692268372]], [[0.09979113936424255, 0.03883330523967743, 0.024698302149772644, 0.04483076557517052, 0.01476182322949171, 0.024045243859291077, 0.02374119870364666, 0.045566145330667496, 0.2279992550611496], [0.09115432947874069, 0.023153360933065414, 0.11604630202054977, 0.20041850209236145, 0.013324467465281487, 0.05764161795377731, 0.03696964681148529, 0.04960782825946808, 0.18983232975006104], [0.07463133335113525, 0.04899638146162033, 0.07019500434398651, 0.028235049918293953, 0.006032094359397888, 0.0024028075858950615, 0.0014688250375911593, 0.03557515889406204, 0.3454008102416992], [0.025600118562579155, 0.0034379849676042795, 0.0003415506216697395, 0.0005461337277665734, 0.0020815925672650337, 0.4802185893058777, 0.42890799045562744, 0.03081451915204525, 0.008687668479979038], [0.03598932921886444, 0.007123661693185568, 0.00096351612592116, 0.06700829416513443, 0.005794658791273832, 0.6877670288085938, 0.050140462815761566, 0.04110276699066162, 0.05055509880185127], [0.05010809004306793, 0.03691926226019859, 0.009549910202622414, 0.10618976503610611, 0.009127706289291382, 0.003283189609646797, 0.036792412400245667, 0.04685065895318985, 0.35068732500076294], [0.017171761021018028, 0.005655510351061821, 0.0009492615354247391, 0.10877551883459091, 0.02639276161789894, 0.7780289053916931, 0.0014328344259411097, 0.008183993399143219, 0.02630131132900715], [0.056040696799755096, 0.0481586717069149, 0.0392625592648983, 0.1332060545682907, 0.03988102450966835, 0.06426862627267838, 0.07791052758693695, 0.033656325191259384, 0.22239747643470764], [0.06940141320228577, 0.033307887613773346, 0.019474318251013756, 0.012008906342089176, 0.0012323374394327402, 0.0044489032588899136, 0.006613615900278091, 0.04443608224391937, 0.4192591607570648]], [[0.07720981538295746, 0.005479374434798956, 0.009653094224631786, 0.004942193161696196, 0.006296050269156694, 0.01879698596894741, 0.0029290001839399338, 0.009101291187107563, 0.10884293913841248], [0.10081841051578522, 0.025208599865436554, 0.10823255777359009, 0.13100038468837738, 0.08873111009597778, 0.19428133964538574, 0.03402477875351906, 0.06430313736200333, 0.09153364598751068], [0.14288413524627686, 0.06653030216693878, 0.0826490968465805, 0.13423201441764832, 0.05755477026104927, 0.24242113530635834, 0.05778031051158905, 0.035578690469264984, 0.022000988945364952], [0.2095443457365036, 0.03183833882212639, 0.10361836105585098, 0.013735993765294552, 0.03363284468650818, 0.29154878854751587, 0.027082743123173714, 0.046949706971645355, 0.08824890106916428], [0.6052699089050293, 0.04618102312088013, 0.041307274252176285, 0.00972806941717863, 0.008821822702884674, 0.06025583669543266, 0.020914316177368164, 0.10611087083816528, 0.054035525768995285], [0.14543011784553528, 0.06284019351005554, 0.1127016618847847, 0.042584896087646484, 0.024357737973332405, 0.23440591990947723, 0.06719357520341873, 0.041610680520534515, 0.044048063457012177], [0.2758655548095703, 0.0684211477637291, 0.0871393010020256, 0.07007474452257156, 0.039556119590997696, 0.17759110033512115, 0.02543524280190468, 0.07229757308959961, 0.07552193105220795], [0.20471413433551788, 0.16547903418540955, 0.053886789828538895, 0.03470611199736595, 0.01586093008518219, 0.05950860306620598, 0.014329487457871437, 0.17287319898605347, 0.1188010722398758], [0.3850259482860565, 0.042620699852705, 0.018977511674165726, 0.01876058056950569, 0.0035124258138239384, 0.015309530310332775, 0.008836154825985432, 0.284096360206604, 0.08778875321149826]], [[0.28848257660865784, 0.01257616002112627, 0.03430843725800514, 0.01477912999689579, 0.0012256235349923372, 0.011869112029671669, 0.0016546170227229595, 0.014108515344560146, 0.052278775721788406], [0.33222827315330505, 0.08015219122171402, 0.1915275603532791, 0.026452526450157166, 0.009152380749583244, 0.0619947649538517, 0.008375460281968117, 0.0412161648273468, 0.10321027785539627], [0.35098302364349365, 0.08266192674636841, 0.1004398837685585, 0.017580751329660416, 0.004722627345472574, 0.02698211371898651, 0.0024964134208858013, 0.04608785733580589, 0.17449690401554108], [0.0868002325296402, 0.08214076608419418, 0.44636648893356323, 0.029118763282895088, 0.024936877191066742, 0.09903780370950699, 0.013524153269827366, 0.006854426581412554, 0.028886616230010986], [0.20907022058963776, 0.07866306602954865, 0.1263018548488617, 0.11595798283815384, 0.008618229068815708, 0.12594379484653473, 0.018959959968924522, 0.0438644140958786, 0.11279072612524033], [0.10368841886520386, 0.1136193498969078, 0.3677966892719269, 0.09205619990825653, 0.020554449409246445, 0.0713471844792366, 0.015230441465973854, 0.010558288544416428, 0.046624623239040375], [0.17326810956001282, 0.13135133683681488, 0.242970809340477, 0.10898085683584213, 0.02750818431377411, 0.0680653303861618, 0.003113165497779846, 0.00896274484694004, 0.09048771858215332], [0.2926902174949646, 0.13678932189941406, 0.04789775237441063, 0.026008330285549164, 0.007970488630235195, 0.02025541663169861, 0.007859368808567524, 0.12335386872291565, 0.15670572221279144], [0.21157123148441315, 0.019517263397574425, 0.005391857586801052, 0.006420148070901632, 0.0008940987754613161, 0.0031574838794767857, 0.0011618149001151323, 0.2074192315340042, 0.26527830958366394]], [[0.05956319347023964, 0.00179675268009305, 0.017128366976976395, 0.0016953638987615705, 0.0006857583066448569, 0.0016695238882675767, 0.0007776255952194333, 0.024795446544885635, 0.0002714041620492935], [0.23613636195659637, 0.14318731427192688, 0.05672837048768997, 0.07801620662212372, 0.027653949335217476, 0.05892806127667427, 0.014872346073389053, 0.016281506046652794, 0.2645290493965149], [0.21454371511936188, 0.1391931027173996, 0.040841612964868546, 0.0954454243183136, 0.08106456696987152, 0.0962277501821518, 0.046839989721775055, 0.02815232053399086, 0.09633154422044754], [0.20170310139656067, 0.1908068209886551, 0.06540999561548233, 0.045815546065568924, 0.042473193258047104, 0.08222468197345734, 0.016856539994478226, 0.011652784422039986, 0.2298145741224289], [0.19613812863826752, 0.1202336922287941, 0.011509637348353863, 0.011758795939385891, 0.006277972832322121, 0.013663249090313911, 0.005513791926205158, 0.008629501797258854, 0.47911304235458374], [0.2702300548553467, 0.1306772381067276, 0.02260442264378071, 0.03576706349849701, 0.021464085206389427, 0.014047701843082905, 0.016266534104943275, 0.02396782673895359, 0.3145864009857178], [0.3473818302154541, 0.19484259188175201, 0.05956964194774628, 0.03729168325662613, 0.017642799764871597, 0.03212764486670494, 0.005095197819173336, 0.009113706648349762, 0.18504053354263306], [0.14215287566184998, 0.10905203223228455, 0.13271881639957428, 0.06678072363138199, 0.055062223225831985, 0.20480968058109283, 0.02073928527534008, 0.00976736843585968, 0.10605435073375702], [0.11422670632600784, 0.03828209638595581, 0.00507381884381175, 0.004419131204485893, 0.009561950340867043, 0.01285400427877903, 0.002909034490585327, 0.01814098097383976, 0.3899940252304077]], [[0.06590607762336731, 0.08417094498872757, 0.030377818271517754, 0.04855623096227646, 0.030268382281064987, 0.04047302156686783, 0.09107440710067749, 0.05338447913527489, 0.06584428995847702], [0.06757715344429016, 0.0675671249628067, 0.09888757020235062, 0.2440209537744522, 0.024376049637794495, 0.06080688163638115, 0.02390352077782154, 0.03119654394686222, 0.06538015604019165], [0.07708651572465897, 0.0774746686220169, 0.21630482375621796, 0.11478409171104431, 0.0349455252289772, 0.1190795749425888, 0.005108577664941549, 0.07545206695795059, 0.08367180824279785], [0.07453086972236633, 0.08956724405288696, 0.037647850811481476, 0.034554578363895416, 0.20350435376167297, 0.15637822449207306, 0.10547322779893875, 0.04996996000409126, 0.04764339700341225], [0.0946265459060669, 0.07392112910747528, 0.008441055193543434, 0.11359913647174835, 0.16658742725849152, 0.16855019330978394, 0.051401760429143906, 0.04358818382024765, 0.07750405371189117], [0.03593434393405914, 0.05929824337363243, 0.07843022793531418, 0.11796325445175171, 0.3195796310901642, 0.1901479810476303, 0.028238395228981972, 0.016250809654593468, 0.026243215426802635], [0.19025366008281708, 0.07703237235546112, 0.0106458505615592, 0.15518680214881897, 0.057999636977910995, 0.06947861611843109, 0.010456075891852379, 0.05313672497868538, 0.13994288444519043], [0.09631843119859695, 0.10552708804607391, 0.06001431122422218, 0.16572625935077667, 0.053799256682395935, 0.03079824335873127, 0.02580343745648861, 0.043431080877780914, 0.07854826003313065], [0.058672234416007996, 0.0571172721683979, 0.037414152175188065, 0.08807271718978882, 0.0670572891831398, 0.0643443614244461, 0.07295747101306915, 0.05352793261408806, 0.03435320034623146]], [[0.2920938730239868, 0.03843783959746361, 0.00454994710162282, 0.016129150986671448, 0.01057481486350298, 0.007902449928224087, 0.006613697856664658, 0.04029064252972603, 0.2139209657907486], [0.23590433597564697, 0.09341491013765335, 0.0005686991498805583, 0.0005786936380900443, 0.00023391096328850836, 0.00042569151264615357, 0.0003405431052669883, 0.043897975236177444, 0.287322074174881], [0.18811707198619843, 0.0016972137382254004, 0.18767330050468445, 0.00016323788440786302, 5.168560892343521e-05, 0.0009534471901133657, 8.584388706367463e-05, 0.1018204540014267, 0.25854259729385376], [0.28926950693130493, 0.0015674886526539922, 9.536379366181791e-05, 0.07221740484237671, 0.0005470728501677513, 0.0002228240336989984, 0.0010531652951613069, 0.019259821623563766, 0.3193008303642273], [0.20780760049819946, 0.0005846386193297803, 1.0100829967996106e-05, 0.0006643246742896736, 0.17330071330070496, 5.8346362493466586e-05, 0.00034883408807218075, 0.005748165771365166, 0.3434559404850006], [0.3277789354324341, 0.001324411015957594, 0.00033646103111095726, 0.000353420851752162, 0.00025029273820109665, 0.03000376746058464, 4.544815055851359e-06, 0.007027946412563324, 0.3152473270893097], [0.2296553999185562, 0.0009228094131685793, 3.078273221035488e-05, 0.0019436333095654845, 0.0003447277413215488, 2.3380230231850874e-06, 0.13296885788440704, 0.0057099550031125546, 0.3332619071006775], [0.3935525417327881, 0.10131669789552689, 0.0077517409808933735, 0.01885724999010563, 0.005897756200283766, 0.0032082691323012114, 0.0014689310919493437, 0.019251234829425812, 0.1920815259218216], [0.3139020502567291, 0.04612087458372116, 0.034567691385746, 0.018136130645871162, 0.014624722301959991, 0.03642646223306656, 0.0028493322897702456, 0.06824260950088501, 0.15243707597255707]], [[0.22404423356056213, 0.009187303483486176, 0.030839409679174423, 0.003122019814327359, 0.00626831641420722, 0.0075899092480540276, 0.001497644349001348, 0.016502829268574715, 0.11780377477407455], [0.2127855122089386, 0.028610223904252052, 0.011633998714387417, 0.022930029779672623, 0.0068074800074100494, 0.01159227266907692, 0.006404152140021324, 0.16352684795856476, 0.30165189504623413], [0.24353277683258057, 0.04662283882498741, 0.05093754455447197, 0.016677314415574074, 0.006513838656246662, 0.010542158037424088, 0.005945499986410141, 0.07141199707984924, 0.26227810978889465], [0.2752525210380554, 0.04256882891058922, 0.008304232731461525, 0.04304187372326851, 0.0323055200278759, 0.014715862460434437, 0.006687971297651529, 0.2134365737438202, 0.19429191946983337], [0.32165247201919556, 0.0450129359960556, 0.011882772669196129, 0.09307406097650528, 0.04269018396735191, 0.03969000279903412, 0.01161148026585579, 0.1484362930059433, 0.1635918766260147], [0.18568414449691772, 0.09832528978586197, 0.03872985765337944, 0.13517391681671143, 0.11998328566551208, 0.03997296094894409, 0.031380970031023026, 0.12693044543266296, 0.09478933364152908], [0.16496127843856812, 0.047331273555755615, 0.009102138690650463, 0.06733017414808273, 0.035812873393297195, 0.030542360618710518, 0.006878948770463467, 0.31680160760879517, 0.17043671011924744], [0.19085519015789032, 0.06018442288041115, 0.011834525503218174, 0.08649411052465439, 0.019225798547267914, 0.011613625101745129, 0.012696342542767525, 0.19684702157974243, 0.20097532868385315], [0.30690258741378784, 0.02679472230374813, 0.011255483143031597, 0.02604091912508011, 0.012265798635780811, 0.00618348503485322, 0.004539648536592722, 0.09630091488361359, 0.2539031207561493]], [[0.09703102707862854, 0.03220197558403015, 0.005146260838955641, 0.019691308960318565, 0.0015193107537925243, 0.013793233782052994, 0.002776895882561803, 0.06201622262597084, 0.3223714232444763], [0.17076697945594788, 0.0997667908668518, 0.02683289907872677, 0.015133483335375786, 0.01018153689801693, 0.01725509762763977, 0.011523970402777195, 0.07351073622703552, 0.16353842616081238], [0.2783249318599701, 0.02409948594868183, 0.03177265450358391, 0.0024664346128702164, 0.0008172832312993705, 0.0029011291917413473, 0.001166883739642799, 0.09870889782905579, 0.19315457344055176], [0.26640909910202026, 0.009586221538484097, 0.005568946711719036, 0.049182627350091934, 0.002268919488415122, 0.02529790624976158, 0.005396824795752764, 0.04639700427651405, 0.21966488659381866], [0.25860005617141724, 0.014897421933710575, 0.0019000177271664143, 0.00768154626712203, 0.00138087198138237, 0.01306932047009468, 0.004856158513575792, 0.10667171329259872, 0.2330295592546463], [0.299007385969162, 0.013951770961284637, 0.008937290869653225, 0.01354428380727768, 0.0009622995858080685, 0.006932614836841822, 0.002046124078333378, 0.12154050916433334, 0.20369122922420502], [0.26717832684516907, 0.021424047648906708, 0.005397978704422712, 0.007558157667517662, 0.0014462074032053351, 0.013391975313425064, 0.003012719564139843, 0.055652618408203125, 0.2632453143596649], [0.0903635323047638, 0.04783948138356209, 0.021035343408584595, 0.03132093325257301, 0.03722129389643669, 0.05907224491238594, 0.013983873650431633, 0.11372509598731995, 0.0825207456946373], [0.10567986965179443, 0.029719671234488487, 0.016413334757089615, 0.011662883684039116, 0.02987338788807392, 0.047923047095537186, 0.01618053950369358, 0.16713537275791168, 0.12307479977607727]]], [[[0.010973572731018066, 0.014845030382275581, 0.022055495530366898, 0.0026220425497740507, 0.007935742847621441, 0.01486633438616991, 0.009585713967680931, 0.02672129124403, 0.5104263424873352], [0.016189008951187134, 0.01502901315689087, 0.40647879242897034, 0.005121450871229172, 0.11581943929195404, 0.14942428469657898, 0.13546043634414673, 0.015917088836431503, 0.04806835576891899], [0.02789466083049774, 0.028451690450310707, 0.027696767821907997, 0.000520958739798516, 0.01085966918617487, 0.03831902891397476, 0.030618218705058098, 0.01882346160709858, 0.42063966393470764], [0.014665553346276283, 0.4109187424182892, 0.1008564829826355, 0.0032074612099677324, 0.0436251126229763, 0.1706613004207611, 0.06259061396121979, 0.012122035957872868, 0.08356226235628128], [0.01300919521600008, 0.2089272290468216, 0.06511922180652618, 0.023526335135102272, 0.029193414375185966, 0.25744959712028503, 0.1908273845911026, 0.022318068891763687, 0.0692194476723671], [0.047366488724946976, 0.07275886833667755, 0.14623956382274628, 0.16915209591388702, 0.051790446043014526, 0.02008923329412937, 0.06735452264547348, 0.09909037500619888, 0.11704691499471664], [0.018365757539868355, 0.05502869933843613, 0.031771980226039886, 0.7670526504516602, 0.034072138369083405, 0.04932161048054695, 0.0013193270424380898, 0.018009938299655914, 0.008231310173869133], [0.04401952400803566, 0.03226006031036377, 0.14829698204994202, 0.02315174601972103, 0.06532474607229233, 0.12351652979850769, 0.01807529293000698, 0.051587626338005066, 0.23651264607906342], [0.008014025166630745, 0.002453271532431245, 0.002284110290929675, 0.0005950079066678882, 0.0009291530004702508, 0.0014843737008050084, 0.0009571752743795514, 0.009511671029031277, 0.512028157711029]], [[0.12759742140769958, 0.002641474362462759, 0.018322398886084557, 0.0009617983014322817, 0.0003980716865044087, 0.0021033675875514746, 0.0011466017458587885, 0.005177818238735199, 0.2399589568376541], [0.05798911675810814, 0.01655115932226181, 0.21509882807731628, 0.0039933170191943645, 0.0006378262769430876, 0.009745080024003983, 0.0018475927645340562, 0.030218685045838356, 0.33957552909851074], [0.011131302453577518, 0.0037082000635564327, 0.3892751932144165, 0.004684797488152981, 0.0028307328466326, 0.013075975701212883, 0.005537704098969698, 0.007429618388414383, 0.2873665988445282], [0.07821319252252579, 0.034390296787023544, 0.08508602529764175, 0.0049172090366482735, 0.0010389633243903518, 0.023218179121613503, 0.00403863238170743, 0.03876839578151703, 0.3807511329650879], [0.04820982366800308, 0.026434097439050674, 0.04411632567644119, 0.00512579595670104, 0.0006215384928509593, 0.018394887447357178, 0.005331367254257202, 0.11766041815280914, 0.3907431364059448], [0.09430507570505142, 0.026930296793580055, 0.039912737905979156, 0.005324020516127348, 0.0009463638998568058, 0.017952777445316315, 0.0044166757725179195, 0.03244282305240631, 0.4042772650718689], [0.014356883242726326, 0.013352934271097183, 0.011027355678379536, 0.002892084186896682, 0.00046779081458225846, 0.0040612113662064075, 0.0005426998832263052, 0.03641800582408905, 0.4880227744579315], [0.08017683774232864, 0.031582266092300415, 0.1411472111940384, 0.00836728885769844, 0.0022520816419273615, 0.014069038443267345, 0.005743908695876598, 0.04028191789984703, 0.33867013454437256], [0.09928568452596664, 0.01973758265376091, 0.03508320450782776, 0.00711445277556777, 0.0009905463084578514, 0.0034138828050345182, 0.002053978154435754, 0.11052355915307999, 0.325686514377594]], [[0.03353704512119293, 0.004694098141044378, 0.025402426719665527, 0.006758269853889942, 0.009840640239417553, 0.024118728935718536, 0.012706905603408813, 0.03391854465007782, 0.3314789831638336], [0.013683877885341644, 0.027670934796333313, 0.03765421733260155, 0.021852822974324226, 0.005495890974998474, 0.02996671013534069, 0.08865571767091751, 0.03588790073990822, 0.39578983187675476], [0.025705086067318916, 0.04889628291130066, 0.07281841337680817, 0.0016010240651667118, 0.0006987453089095652, 0.006124191917479038, 0.01375453919172287, 0.02647683396935463, 0.3953234851360321], [0.01923833042383194, 0.09826676547527313, 0.06297760456800461, 0.015220953151583672, 0.006857878994196653, 0.007348500192165375, 0.012302327901124954, 0.028309660032391548, 0.3820899724960327], [0.007056498900055885, 0.04310993477702141, 0.05480656027793884, 0.43375951051712036, 0.013916335999965668, 0.0050793858245015144, 0.013597850687801838, 0.023951562121510506, 0.20993900299072266], [0.003572630463168025, 0.017683137208223343, 0.07362271100282669, 0.7128459811210632, 0.05613403767347336, 0.0027720273938030005, 0.014338690787553787, 0.008431363850831985, 0.053321585059165955], [0.0020653174724429846, 0.01215394027531147, 0.006761945318430662, 0.9123800992965698, 0.020709101110696793, 0.0011311762500554323, 0.00029579075635410845, 0.0023370953276753426, 0.020108764991164207], [0.04648226499557495, 0.02777552604675293, 0.03084980510175228, 0.05609253793954849, 0.039116088300943375, 0.27781447768211365, 0.022532960399985313, 0.05209442600607872, 0.21780811250209808], [0.021380115300416946, 0.007451274432241917, 0.02679167129099369, 0.009715354070067406, 0.01041471492499113, 0.02453741803765297, 0.022088997066020966, 0.0370662659406662, 0.36317312717437744]], [[0.015340819023549557, 0.039972566068172455, 0.173325315117836, 0.08965891599655151, 0.20859722793102264, 0.19164416193962097, 0.1145470142364502, 0.04613492265343666, 0.0662824958562851], [0.10709633678197861, 0.07283935695886612, 0.15425942838191986, 0.04153507202863693, 0.017221730202436447, 0.05370108783245087, 0.03696885332465172, 0.12750950455665588, 0.2103251814842224], [0.14431950449943542, 0.07073533535003662, 0.01710463874042034, 0.015207719057798386, 0.03428482264280319, 0.05912376940250397, 0.010197699069976807, 0.05737580731511116, 0.28605106472969055], [0.08174649626016617, 0.057545844465494156, 0.07483689486980438, 0.007350401487201452, 0.003945960663259029, 0.03843236342072487, 0.018390337005257607, 0.0839841365814209, 0.334446519613266], [0.06425239145755768, 0.035323187708854675, 0.09783182293176651, 0.03267088904976845, 0.01850711926817894, 0.15324881672859192, 0.030414724722504616, 0.06134774535894394, 0.2496424913406372], [0.04493410140275955, 0.07069997489452362, 0.075708769261837, 0.012936316430568695, 0.06519918888807297, 0.06192650645971298, 0.072085902094841, 0.1528291553258896, 0.18797913193702698], [0.08976485580205917, 0.06796978414058685, 0.043668922036886215, 0.02196810208261013, 0.028072841465473175, 0.08977725356817245, 0.025965522974729538, 0.11346259713172913, 0.2186966836452484], [0.09163565188646317, 0.029838059097528458, 0.06207060441374779, 0.034162405878305435, 0.011816048063337803, 0.04278750717639923, 0.03643510490655899, 0.07961342483758926, 0.31168997287750244], [0.055009081959724426, 0.016647810116410255, 0.032131969928741455, 0.022200580686330795, 0.023030877113342285, 0.0218951478600502, 0.022324176505208015, 0.06163572892546654, 0.310249388217926]], [[0.08785546571016312, 0.023154892027378082, 0.06429734826087952, 0.031786054372787476, 0.01862933672964573, 0.005499887280166149, 0.014141811057925224, 0.016133353114128113, 0.13085180521011353], [0.050355229526758194, 0.029105104506015778, 0.1870446503162384, 0.00807579793035984, 0.007529054768383503, 0.006330855656415224, 0.01622489094734192, 0.019295884296298027, 0.06541924923658371], [0.022724397480487823, 0.04422933980822563, 0.5426883697509766, 0.0024908646009862423, 0.0013878637691959739, 0.00812041386961937, 0.000753621687181294, 0.03339673578739166, 0.13236024975776672], [0.09590562433004379, 0.03011862188577652, 0.019929463043808937, 0.016256431117653847, 0.03461933881044388, 0.12509606778621674, 0.048083506524562836, 0.029528716579079628, 0.13458402454853058], [0.07536934316158295, 0.009664124809205532, 0.0061071328818798065, 0.040697697550058365, 0.12455844134092331, 0.27005907893180847, 0.022782867774367332, 0.02231401391327381, 0.11287368088960648], [0.09464231878519058, 0.017008045688271523, 0.08113357424736023, 0.009828610345721245, 0.011414406821131706, 0.3514114320278168, 0.0028048157691955566, 0.022607969120144844, 0.1563003808259964], [0.09787283092737198, 0.025256548076868057, 0.018364306539297104, 0.012211504392325878, 0.011416743509471416, 0.043396636843681335, 0.009356028400361538, 0.008607021532952785, 0.3004753589630127], [0.1900794953107834, 0.04235231876373291, 0.05770864710211754, 0.04342237114906311, 0.016603482887148857, 0.015736976638436317, 0.010431384667754173, 0.048416830599308014, 0.23508548736572266], [0.11443354189395905, 0.026537958532571793, 0.04224732518196106, 0.02834514155983925, 0.01429543737322092, 0.01624898612499237, 0.016276659443974495, 0.03218364715576172, 0.21034273505210876]], [[0.1809348315000534, 0.033141739666461945, 0.06134340167045593, 0.02586374059319496, 0.05698597431182861, 0.04101647809147835, 0.004441611468791962, 0.10319960862398148, 0.1605917066335678], [0.15892164409160614, 0.028050478547811508, 0.07106715440750122, 0.013302326202392578, 0.007649114355444908, 0.02539973519742489, 0.010387849994003773, 0.07051824033260345, 0.2318175733089447], [0.22064755856990814, 0.020712655037641525, 0.012760325334966183, 0.001798607292585075, 0.0005470352480188012, 0.0029742869082838297, 0.0014105021255090833, 0.09252924472093582, 0.17975394427776337], [0.12044814229011536, 0.025374386459589005, 0.04100681468844414, 0.01499580591917038, 0.006589438766241074, 0.029443036764860153, 0.0057571809738874435, 0.11901312321424484, 0.24544933438301086], [0.1839444488286972, 0.0174009520560503, 0.010004132054746151, 0.00861404836177826, 0.0006338510429486632, 0.002299963729456067, 0.0011391380103304982, 0.08039058744907379, 0.28471216559410095], [0.11486341059207916, 0.03624719753861427, 0.0134811382740736, 0.006569850258529186, 0.00294834328815341, 0.0005973271909169853, 0.003312266431748867, 0.12410323321819305, 0.26272472739219666], [0.08492541313171387, 0.02624005638062954, 0.027497906237840652, 0.01105910912156105, 0.0075006973929703236, 0.013003512285649776, 0.0016043659998103976, 0.0713658258318901, 0.360696405172348], [0.1624777913093567, 0.027494650334119797, 0.05821574851870537, 0.02999340370297432, 0.01853119768202305, 0.04037367179989815, 0.014206945896148682, 0.062569260597229, 0.2407609075307846], [0.13489772379398346, 0.025231139734387398, 0.04954930394887924, 0.018095532432198524, 0.01167614571750164, 0.024128669872879982, 0.012124291621148586, 0.04891978204250336, 0.2794085443019867]], [[0.04505026340484619, 0.07827166467905045, 0.09604855626821518, 0.06703030318021774, 0.23643259704113007, 0.1305006593465805, 0.06686779856681824, 0.039583705365657806, 0.1435745507478714], [0.04302670806646347, 0.18307147920131683, 0.3858429193496704, 0.060169100761413574, 0.05653582885861397, 0.13165165483951569, 0.040114887058734894, 0.022694824263453484, 0.04527638107538223], [0.06647341698408127, 0.21464712917804718, 0.18111227452754974, 0.08106967806816101, 0.06356227397918701, 0.1531333029270172, 0.05150916799902916, 0.050863295793533325, 0.07258130609989166], [0.03321882709860802, 0.04381920024752617, 0.4958009421825409, 0.03320477902889252, 0.04940241202712059, 0.2221946120262146, 0.0426170788705349, 0.016729939728975296, 0.028828183189034462], [0.02683352120220661, 0.04418424516916275, 0.2801573574542999, 0.02494996041059494, 0.09292231500148773, 0.3552698493003845, 0.09073033183813095, 0.01957930251955986, 0.029605014249682426], [0.037976719439029694, 0.10211415588855743, 0.4872848689556122, 0.02763751707971096, 0.0563923642039299, 0.12361831218004227, 0.043926745653152466, 0.03664442524313927, 0.03746054694056511], [0.03187292441725731, 0.06969163566827774, 0.4894663393497467, 0.028749506920576096, 0.06464357674121857, 0.1943855881690979, 0.03190024942159653, 0.011887723580002785, 0.03328375518321991], [0.099598728120327, 0.09981101751327515, 0.214353546500206, 0.07058857381343842, 0.0767793208360672, 0.14559821784496307, 0.0343535877764225, 0.06324350088834763, 0.09045762568712234], [0.07443418353796005, 0.061020322144031525, 0.0679527148604393, 0.043880853801965714, 0.07231029868125916, 0.09181582927703857, 0.06746522337198257, 0.026687515899538994, 0.13615556061267853]], [[0.10569038987159729, 0.004502948839217424, 0.024079453200101852, 0.0019498660694807768, 0.008209453895688057, 0.006098884157836437, 0.0007605664432048798, 0.00700840400531888, 0.1101892814040184], [0.01661662384867668, 0.017693854868412018, 0.04413176700472832, 0.1434410661458969, 0.28888261318206787, 0.08839625120162964, 0.04850517585873604, 0.07484479993581772, 0.06788218021392822], [0.04257485270500183, 0.021575259044766426, 0.05844569578766823, 0.06782323122024536, 0.2267894148826599, 0.2655283212661743, 0.047566529363393784, 0.03137277439236641, 0.025749782100319862], [0.007998867891728878, 0.04369574412703514, 0.04430621117353439, 0.013546271249651909, 0.516044020652771, 0.09230825304985046, 0.03511795401573181, 0.06353548169136047, 0.06222856417298317], [0.013206902891397476, 0.06892095506191254, 0.06805934756994247, 0.022713949903845787, 0.18156558275222778, 0.06249779462814331, 0.019695373252034187, 0.07547712326049805, 0.24700523912906647], [0.019461866468191147, 0.14723049104213715, 0.17949983477592468, 0.02210823819041252, 0.23121105134487152, 0.1149429976940155, 0.03185036778450012, 0.040695395320653915, 0.05639510601758957], [0.005909941624850035, 0.06017109751701355, 0.10025863349437714, 0.019689301028847694, 0.3750649094581604, 0.05171928182244301, 0.015745749697089195, 0.023602813482284546, 0.14339686930179596], [0.046112217009067535, 0.02968369424343109, 0.046950262039899826, 0.015041546896100044, 0.013082603923976421, 0.03571481630206108, 0.004960290621966124, 0.03936168923974037, 0.38922595977783203], [0.017157990485429764, 0.002983150305226445, 0.006804634816944599, 0.0027990450616925955, 0.0011747486423701048, 0.003979094792157412, 0.0017815124010667205, 0.010740444995462894, 0.4637400805950165]], [[0.027814464643597603, 0.00443950155749917, 0.001397183514200151, 0.0002083857252728194, 3.7494246498681605e-05, 2.5386454581166618e-05, 6.328503513941541e-05, 0.10604330897331238, 0.3530377149581909], [0.017247455194592476, 0.0635785162448883, 0.0003088406811002642, 0.00918903760612011, 0.003995424136519432, 0.00029191700741648674, 0.0030890253838151693, 0.4550129473209381, 0.22965870797634125], [0.08090569823980331, 0.023964224383234978, 0.0034951448906213045, 0.004027833696454763, 0.00045044918078929186, 0.001151670003309846, 0.0013968851417303085, 0.35301870107650757, 0.2309027761220932], [0.03885795176029205, 0.030222663655877113, 0.0004996481584385037, 0.027570238336920738, 0.004759231582283974, 0.0008631166419945657, 0.0041338312439620495, 0.38542884588241577, 0.2475583255290985], [0.040752727538347244, 0.011801348067820072, 0.0002076939563266933, 0.0039470805786550045, 0.00039983310853131115, 0.0002750149287749082, 0.003061619820073247, 0.22722549736499786, 0.3695653975009918], [0.05699879676103592, 0.012757841497659683, 0.0006037218845449388, 0.01760265603661537, 0.0016631146427243948, 0.0009390802006237209, 0.010467324405908585, 0.26976048946380615, 0.31057092547416687], [0.048304278403520584, 0.056071698665618896, 0.0005962568102404475, 0.08050277084112167, 0.014024152420461178, 0.0012392849894240499, 0.07517539709806442, 0.21622328460216522, 0.21104072034358978], [0.02489214763045311, 0.025456756353378296, 0.002090893452987075, 0.006484267767518759, 0.0018003651639446616, 0.0015537601429969072, 0.008195525966584682, 0.5817081928253174, 0.16377954185009003], [0.0938885509967804, 0.021537013351917267, 0.05297676846385002, 0.025926677510142326, 0.017236994579434395, 0.029053302481770515, 0.021106939762830734, 0.06421677023172379, 0.227000892162323]], [[0.043620459735393524, 0.013688149861991405, 0.02132270112633705, 0.012352613732218742, 0.013686364516615868, 0.010911471210420132, 0.007792664226144552, 0.017630450427532196, 0.351685106754303], [0.14627765119075775, 0.05319944769144058, 0.056452568620443344, 0.03184007480740547, 0.012775368057191372, 0.0455734021961689, 0.01638052612543106, 0.05094487592577934, 0.24672669172286987], [0.08936890959739685, 0.02511894516646862, 0.05725555121898651, 0.04902644455432892, 0.009916485287249088, 0.03211624547839165, 0.0037467998918145895, 0.07195933163166046, 0.2864566743373871], [0.13999269902706146, 0.018951119855046272, 0.02788049355149269, 0.04758515581488609, 0.02192053012549877, 0.02668548934161663, 0.022239435464143753, 0.054796379059553146, 0.2883114814758301], [0.08490943163633347, 0.002907664980739355, 0.003745162859559059, 0.013621503487229347, 0.05931868031620979, 0.025828076526522636, 0.015385743230581284, 0.020315563306212425, 0.37028348445892334], [0.10593833774328232, 0.012201346457004547, 0.04250318929553032, 0.026644155383110046, 0.05352950096130371, 0.04255330562591553, 0.013822122476994991, 0.03099014423787594, 0.32150712609291077], [0.09868654608726501, 0.00935771781951189, 0.005823832005262375, 0.04432849958539009, 0.041400305926799774, 0.02160206437110901, 0.027517473325133324, 0.010422823019325733, 0.3399529755115509], [0.11371080577373505, 0.02888372540473938, 0.04148754104971886, 0.027976270765066147, 0.01440836489200592, 0.05102725699543953, 0.01490216888487339, 0.03502277284860611, 0.3206639587879181], [0.07055298238992691, 0.02385905012488365, 0.032811734825372696, 0.01843986101448536, 0.010287412442266941, 0.020103586837649345, 0.015521356835961342, 0.028571221977472305, 0.30834975838661194]], [[0.3714202344417572, 0.0008082580752670765, 0.004921107552945614, 0.0023124022409319878, 0.008429822511970997, 0.0027803501579910517, 0.0009329549502581358, 0.01018022932112217, 0.09070379287004471], [0.08675972372293472, 0.14067769050598145, 0.04812515527009964, 0.020088035613298416, 0.009617242030799389, 0.010450584813952446, 0.012499835342168808, 0.1748732030391693, 0.21748565137386322], [0.0725293755531311, 0.20923903584480286, 0.021027274429798126, 0.0720900148153305, 0.00836713332682848, 0.007222120650112629, 0.027240678668022156, 0.06309737265110016, 0.23385873436927795], [0.09022903442382812, 0.08880352228879929, 0.045566968619823456, 0.055039409548044205, 0.024568656459450722, 0.01271827332675457, 0.02863866277039051, 0.07884790748357773, 0.14280861616134644], [0.04574602097272873, 0.029647450894117355, 0.0055162603966891766, 0.11889509111642838, 0.007876790128648281, 0.005999610759317875, 0.04275389015674591, 0.04547538980841637, 0.33794835209846497], [0.10450854152441025, 0.11485996097326279, 0.01758735440671444, 0.08051685243844986, 0.012055641040205956, 0.005192741751670837, 0.030473876744508743, 0.05221586301922798, 0.2058601975440979], [0.02574041299521923, 0.02472294680774212, 0.0030025034211575985, 0.006111004389822483, 0.0012865137541666627, 0.0005421321257017553, 0.0017117687966674566, 0.051031507551670074, 0.4672141671180725], [0.058831315487623215, 0.0640510842204094, 0.038923509418964386, 0.08385838568210602, 0.05578083544969559, 0.036258772015571594, 0.024347303435206413, 0.14084777235984802, 0.21024928987026215], [0.03716424107551575, 0.007060617674142122, 0.005000311881303787, 0.0021905212197452784, 0.0008960714330896735, 0.0014025680720806122, 0.0009846178581938148, 0.027591759338974953, 0.4532669186592102]], [[0.15393738448619843, 0.01451246626675129, 0.006779943127185106, 0.015984809026122093, 0.045987557619810104, 0.002752251224592328, 0.013063582591712475, 0.0060724602080881596, 0.12599165737628937], [0.034783586859703064, 0.3728260397911072, 0.009114244021475315, 0.014268873259425163, 0.18110573291778564, 0.014605076983571053, 0.012200742959976196, 0.002340237610042095, 0.06465550512075424], [0.012023315764963627, 0.08860528469085693, 0.006199287716299295, 0.08796359598636627, 0.19533425569534302, 0.00969691015779972, 0.06508167833089828, 0.007929005660116673, 0.15826885402202606], [0.04062730073928833, 0.027490030974149704, 0.00611188355833292, 0.1476425677537918, 0.5342229008674622, 0.011233964003622532, 0.02660192735493183, 0.004702100995928049, 0.06623287498950958], [0.011914280243217945, 0.015027663670480251, 0.006231158040463924, 0.0649731382727623, 0.43866267800331116, 0.004818764049559832, 0.02903776802122593, 0.0004989375593140721, 0.12065409868955612], [0.0030737738125026226, 0.020720308646559715, 0.002378624863922596, 0.0500325933098793, 0.6631656289100647, 0.0025604998227208853, 0.020892580971121788, 0.0023408210836350918, 0.05305691435933113], [0.03150756284594536, 0.018566293641924858, 0.00775852520018816, 0.09674064069986343, 0.2249096930027008, 0.00307087623514235, 0.01168697327375412, 0.0054312776774168015, 0.18694360554218292], [0.20167523622512817, 0.0012210005661472678, 0.009347226470708847, 0.0005275291041471064, 0.002158051822334528, 0.022112125530838966, 0.00027390773175284266, 0.7498869895935059, 0.003161301137879491], [0.3392258882522583, 0.0003474419645499438, 0.017697548493742943, 0.00034864433109760284, 0.00013859718455933034, 0.011854150332510471, 9.607461834093556e-05, 0.5260440707206726, 0.04609724506735802]]], [[[0.18927259743213654, 0.010431046597659588, 0.12248282879590988, 0.044441480189561844, 0.1381075382232666, 0.18259955942630768, 0.0030434122309088707, 0.05265072360634804, 0.09715093672275543], [0.4576168954372406, 0.01333136297762394, 0.008512655273079872, 0.016376031562685966, 0.011698503978550434, 0.0038609658367931843, 0.002805528463795781, 0.03832927718758583, 0.16091957688331604], [0.16821084916591644, 0.022766562178730965, 0.006992377806454897, 0.02717471495270729, 0.0031743382569402456, 0.0053077805787324905, 0.0024549546651542187, 0.10692514479160309, 0.24381498992443085], [0.29126155376434326, 0.010545321740210056, 0.019259599968791008, 0.01185180339962244, 0.009268714115023613, 0.01224701851606369, 0.002227277494966984, 0.04898959398269653, 0.23437990248203278], [0.33959028124809265, 0.004307648167014122, 0.007359442766755819, 0.006935570389032364, 0.002156347967684269, 0.006591904908418655, 0.0018830867484211922, 0.10025899112224579, 0.22600360214710236], [0.18910112977027893, 0.025402596220374107, 0.010071770288050175, 0.020809605717658997, 0.005389074329286814, 0.003959559835493565, 0.005513504613190889, 0.14725041389465332, 0.22948172688484192], [0.18233320116996765, 0.010200539603829384, 0.009599958546459675, 0.01268526166677475, 0.0052976966835558414, 0.004495667759329081, 0.0024324727710336447, 0.06085687503218651, 0.31485700607299805], [0.6423034071922302, 0.005870582535862923, 0.01827112026512623, 0.021719224750995636, 0.041319411247968674, 0.01613541692495346, 0.0011786763789132237, 0.02372727170586586, 0.0688328742980957], [0.026845688000321388, 0.0043416875414550304, 0.011359176598489285, 0.003751387819647789, 0.002859462983906269, 0.0083563681691885, 0.0028680728282779455, 0.05268212780356407, 0.41785967350006104]], [[0.0174055527895689, 0.0008041482651606202, 0.005415774881839752, 0.005430548917502165, 0.007022784557193518, 0.011655040085315704, 0.004077734425663948, 0.0031429261434823275, 0.20425714552402496], [0.03756609559059143, 0.006432707887142897, 0.10978108644485474, 0.049905404448509216, 0.05798760801553726, 0.47537466883659363, 0.11170471459627151, 0.00948326289653778, 0.032491523772478104], [0.14121782779693604, 0.025699904188513756, 0.10492323338985443, 0.06693383306264877, 0.062403906136751175, 0.15459267795085907, 0.013577568344771862, 0.03130374103784561, 0.12446609884500504], [0.018767958506941795, 0.007196382619440556, 0.12685152888298035, 0.0076694912277162075, 0.08767466992139816, 0.29656198620796204, 0.10521198809146881, 0.022935686632990837, 0.1381455808877945], [0.012743240222334862, 0.006293843500316143, 0.03677865490317345, 0.045493800193071365, 0.01767962984740734, 0.09241805225610733, 0.021722158417105675, 0.01710713841021061, 0.3714589774608612], [0.009583891369402409, 0.011033361777663231, 0.04552806541323662, 0.05745559558272362, 0.03182575851678848, 0.020797912031412125, 0.018088068813085556, 0.05869559571146965, 0.36804962158203125], [0.005887715145945549, 0.0017569750780239701, 0.03319530934095383, 0.03500526398420334, 0.047948453575372696, 0.11323526501655579, 0.019043460488319397, 0.012303123250603676, 0.35033300518989563], [0.03928348422050476, 0.010921375826001167, 0.12296735495328903, 0.05201724171638489, 0.06250567734241486, 0.18986988067626953, 0.04174082726240158, 0.045394670218229294, 0.19477318227291107], [0.008005880750715733, 0.0028870662208646536, 0.0030952156521379948, 0.0021079606376588345, 0.0017723506316542625, 0.004175329115241766, 0.0015474167885258794, 0.01918380707502365, 0.47835928201675415]], [[0.05782919004559517, 0.004385638516396284, 0.007083403877913952, 0.004566224291920662, 0.00531862722709775, 0.0044893985614180565, 0.0014594682725146413, 0.0009645286481827497, 0.05730512738227844], [0.08099692314863205, 0.04769745096564293, 0.08576824516057968, 0.08670607954263687, 0.08900582790374756, 0.12557728588581085, 0.046022556722164154, 0.019154828041791916, 0.19895946979522705], [0.11970715969800949, 0.03750305250287056, 0.05213442072272301, 0.08544757962226868, 0.06184489652514458, 0.048627447336912155, 0.04167449474334717, 0.013329438865184784, 0.25854194164276123], [0.058117642998695374, 0.06061365082859993, 0.28099334239959717, 0.046413976699113846, 0.09239953011274338, 0.16530562937259674, 0.02536696009337902, 0.005575292278081179, 0.11852320283651352], [0.05503857508301735, 0.06344094127416611, 0.2773861587047577, 0.04516499117016792, 0.02277582325041294, 0.08959808200597763, 0.0358562171459198, 0.004877686966210604, 0.20451001822948456], [0.09637878090143204, 0.03728623688220978, 0.15503662824630737, 0.060819681733846664, 0.09520745277404785, 0.049415506422519684, 0.024210099130868912, 0.005593512672930956, 0.23579616844654083], [0.03324959799647331, 0.07174746692180634, 0.11341799795627594, 0.04136042669415474, 0.026665732264518738, 0.10508661717176437, 0.017370909452438354, 0.010711060836911201, 0.28765395283699036], [0.14671023190021515, 0.05794450268149376, 0.2770603597164154, 0.0366293340921402, 0.11070644855499268, 0.18868589401245117, 0.023222271353006363, 0.03035949543118477, 0.05243919417262077], [0.01790616102516651, 0.005568797700107098, 0.009265738539397717, 0.005200357176363468, 0.003629591315984726, 0.003195792669430375, 0.0022376838605850935, 0.08739952743053436, 0.4125373959541321]], [[0.18975551426410675, 0.28629159927368164, 0.2007616013288498, 0.03271638602018356, 0.1258750855922699, 0.07203998416662216, 0.033064503222703934, 0.0237827580422163, 0.007570752874016762], [0.12268954515457153, 0.29665079712867737, 0.20158503949642181, 0.13312841951847076, 0.06263607740402222, 0.029887787997722626, 0.09609538316726685, 0.04585343971848488, 0.002560230204835534], [0.09834279865026474, 0.0444544292986393, 0.294821172952652, 0.09888062626123428, 0.06472521275281906, 0.10571271181106567, 0.2087022364139557, 0.07377003878355026, 0.0036772144958376884], [0.20053023099899292, 0.1995178759098053, 0.08394993841648102, 0.039753057062625885, 0.1017308458685875, 0.11949076503515244, 0.0353693850338459, 0.20238079130649567, 0.0037203552201390266], [0.24109521508216858, 0.06905506551265717, 0.18498580157756805, 0.05258743464946747, 0.03267315402626991, 0.14198490977287292, 0.14849670231342316, 0.08981669694185257, 0.013725503347814083], [0.08579378575086594, 0.0538950189948082, 0.2694253623485565, 0.0670529305934906, 0.11867348104715347, 0.24133417010307312, 0.12008015066385269, 0.0385066457092762, 0.0015596980229020119], [0.22816912829875946, 0.11075137555599213, 0.18351751565933228, 0.0603143647313118, 0.10824733227491379, 0.09826086461544037, 0.12833592295646667, 0.06259866803884506, 0.007371312938630581], [0.07802582532167435, 0.12547588348388672, 0.317453533411026, 0.06928490102291107, 0.16141177713871002, 0.0838765949010849, 0.09871988743543625, 0.03093957155942917, 0.005233691539615393], [0.06502555310726166, 7.126542186597362e-05, 0.020700860768556595, 0.0038387258537113667, 0.007685459218919277, 0.04076838865876198, 0.045081835240125656, 0.23812291026115417, 0.23148119449615479]], [[0.10778369009494781, 0.0232497937977314, 0.03110782615840435, 0.013731193728744984, 0.015079586766660213, 0.023576319217681885, 0.007709394674748182, 0.05609725043177605, 0.22407540678977966], [0.05314109846949577, 0.05907800793647766, 0.13679544627666473, 0.07387401163578033, 0.03131458908319473, 0.07529086619615555, 0.0689331516623497, 0.06880965083837509, 0.14657367765903473], [0.07213469594717026, 0.08035585284233093, 0.004166534636169672, 0.09203176200389862, 0.11806591600179672, 0.0749470666050911, 0.1191972866654396, 0.08482915908098221, 0.13209310173988342], [0.07898479700088501, 0.0479356087744236, 0.12577833235263824, 0.04626356437802315, 0.009973617270588875, 0.027034349739551544, 0.008731257170438766, 0.09568220376968384, 0.20882639288902283], [0.10369876027107239, 0.018532918766140938, 0.1902623176574707, 0.011236610822379589, 0.002089608693495393, 0.06078362837433815, 0.021155675873160362, 0.10914039611816406, 0.1801401972770691], [0.07788316905498505, 0.05426955595612526, 0.12573187053203583, 0.019936494529247284, 0.03333894908428192, 0.004992308560758829, 0.05528872832655907, 0.08208587765693665, 0.1532691866159439], [0.06192693114280701, 0.03334799036383629, 0.17852658033370972, 0.012649052776396275, 0.056498933583498, 0.29842373728752136, 0.040331047028303146, 0.047012243419885635, 0.08710748702287674], [0.06327886134386063, 0.0836036205291748, 0.10124838352203369, 0.05750996991991997, 0.09481742233037949, 0.08069600909948349, 0.05007690191268921, 0.09224551171064377, 0.15248338878154755], [0.08977363258600235, 0.044923633337020874, 0.05061790347099304, 0.034864556044340134, 0.025146840140223503, 0.03320112079381943, 0.026888906955718994, 0.08315443247556686, 0.16213496029376984]], [[0.07757756114006042, 0.024966368451714516, 0.006401863880455494, 0.022908572107553482, 0.013603247702121735, 0.018894625827670097, 0.014709298498928547, 0.02499750629067421, 0.3588676154613495], [0.1237139105796814, 0.053817301988601685, 0.11610157042741776, 0.012742266058921814, 0.0050428323447704315, 0.010134079493582249, 0.005440496373921633, 0.05104897916316986, 0.22674532234668732], [0.05845242366194725, 0.06696770340204239, 0.12722915410995483, 0.042245831340551376, 0.01069670170545578, 0.037848278880119324, 0.00223350222222507, 0.041564010083675385, 0.2396683394908905], [0.056034788489341736, 0.06195364147424698, 0.06846596300601959, 0.03857123479247093, 0.010405567474663258, 0.01627117395401001, 0.013158216141164303, 0.02642313577234745, 0.2858181893825531], [0.03916003555059433, 0.10130125284194946, 0.09455464780330658, 0.04280954599380493, 0.00639269407838583, 0.05185806378722191, 0.008054295554757118, 0.04308240860700607, 0.22189150750637054], [0.033841926604509354, 0.0349695049226284, 0.043661605566740036, 0.026684299111366272, 0.02233916148543358, 0.07484976947307587, 0.009794989600777626, 0.012129310518503189, 0.09662404656410217], [0.051326751708984375, 0.03745132312178612, 0.030030163004994392, 0.03308398649096489, 0.0028164966497570276, 0.014546118676662445, 0.007192975375801325, 0.03424512594938278, 0.28664684295654297], [0.17185695469379425, 0.028961503878235817, 0.030272506177425385, 0.055181682109832764, 0.012850516475737095, 0.008090578950941563, 0.0055708191357553005, 0.02476285584270954, 0.24465125799179077], [0.0477965883910656, 0.008591419085860252, 0.012560238130390644, 0.007843993604183197, 0.0036647343076765537, 0.009707380086183548, 0.004676171112805605, 0.017591839656233788, 0.4134973883628845]], [[0.0047764405608177185, 0.014465292915701866, 0.050096191465854645, 0.05621565878391266, 0.029116248711943626, 0.09146157652139664, 0.012836563400924206, 0.5525392293930054, 0.0017905436689034104], [0.16168992221355438, 0.10332753509283066, 0.05339629203081131, 0.039670344442129135, 0.012893757782876492, 0.004433847963809967, 0.007579755503684282, 0.039914097636938095, 0.2549296021461487], [0.017180610448122025, 0.025060182437300682, 0.011769026517868042, 0.010031694546341896, 0.004610319156199694, 0.0018299936782568693, 0.0023333444260060787, 0.03782020881772041, 0.4099421799182892], [0.24205714464187622, 0.07515685260295868, 0.03261974826455116, 0.04049297422170639, 0.005498139653354883, 0.003589578904211521, 0.0038170493207871914, 0.02172235958278179, 0.2570441663265228], [0.08660157769918442, 0.0267828069627285, 0.015222783200442791, 0.006579977925866842, 0.012355274520814419, 0.0026335930451750755, 0.007058777380734682, 0.013183685019612312, 0.38458919525146484], [0.0565742589533329, 0.022741135209798813, 0.01431846059858799, 0.006974519230425358, 0.01511232927441597, 0.013416020199656487, 0.01251869648694992, 0.04558227211236954, 0.3821878433227539], [0.145956888794899, 0.024433912709355354, 0.01110045239329338, 0.005589690059423447, 0.00852137804031372, 0.003935094457119703, 0.010604383423924446, 0.028988389298319817, 0.35665518045425415], [0.20003503561019897, 0.03513435274362564, 0.01350048091262579, 0.01155111938714981, 0.005778894294053316, 0.006176818162202835, 0.007779107894748449, 0.07323987036943436, 0.3146964907646179], [0.01134582795202732, 0.0027886468451470137, 0.004393760114908218, 0.0012013252126052976, 0.0007892410503700376, 0.0006909978692419827, 0.00010258705879095942, 0.01349521055817604, 0.46758270263671875]], [[0.1623072475194931, 0.0012633251026272774, 6.962366751395166e-05, 0.00026393134612590075, 0.00012457440607249737, 0.0002578133135102689, 0.00023851668811403215, 0.013526447117328644, 0.25617942214012146], [0.3390536904335022, 0.0889921486377716, 0.0001930597791215405, 7.445942901540548e-05, 9.19035210245056e-06, 1.4767938409931958e-05, 1.3521007531380747e-05, 0.014010481536388397, 0.16752415895462036], [0.022874783724546432, 5.438602966023609e-05, 0.0037000118754804134, 7.93799881648738e-06, 3.052967940675444e-07, 1.4427190535570844e-06, 6.431093879655236e-07, 0.0016408545197919011, 0.3248033821582794], [0.07694058865308762, 0.0005037760711275041, 1.0563108844507951e-05, 0.21397846937179565, 0.0007803369080647826, 0.00026854363386519253, 0.0028669836465269327, 0.007937896996736526, 0.22375938296318054], [0.0968499556183815, 4.014170917798765e-05, 1.4629287079515052e-06, 0.0002983074518851936, 0.10172491520643234, 0.0011016654316335917, 0.0001373549021081999, 0.002587493509054184, 0.3251079022884369], [0.058163005858659744, 8.544711818103679e-06, 1.0932297982435557e-06, 7.041184289846569e-05, 0.00019960934878326952, 0.05167846381664276, 2.9497832656488754e-05, 0.0013207800220698118, 0.338161438703537], [0.07716254144906998, 4.816689761355519e-05, 8.286838237836491e-07, 0.0006725772982463241, 7.168556476244703e-05, 9.905304614221677e-05, 0.12262681126594543, 0.004233615472912788, 0.31639158725738525], [0.1980915069580078, 0.0031299081165343523, 0.0031548039987683296, 0.001146852970123291, 0.004612255375832319, 0.005859014578163624, 0.001204004161991179, 0.053975775837898254, 0.2188843935728073], [0.2045547366142273, 0.017288926988840103, 0.005911713931709528, 0.004890249576419592, 0.0024099410511553288, 0.0055905357003211975, 0.004014029633253813, 0.06379641592502594, 0.239961639046669]], [[0.09246888011693954, 0.06194363906979561, 0.11018208414316177, 0.0610809363424778, 0.20336997509002686, 0.10996213555335999, 0.01868795044720173, 0.04144829511642456, 0.05479266121983528], [0.08506936579942703, 0.049196187406778336, 0.12829461693763733, 0.04550391063094139, 0.14054259657859802, 0.0526413656771183, 0.029778851196169853, 0.045694414526224136, 0.05757182836532593], [0.09991312772035599, 0.02390151284635067, 0.17408640682697296, 0.014207236468791962, 0.011501027271151543, 0.03187821805477142, 0.012340192683041096, 0.03705303743481636, 0.21625526249408722], [0.08387314528226852, 0.011907560750842094, 0.0862431600689888, 0.0826898068189621, 0.11915934085845947, 0.04959939047694206, 0.013076802715659142, 0.01409516204148531, 0.047607846558094025], [0.0606183297932148, 0.013322938233613968, 0.10909030586481094, 0.014323634095489979, 0.11583612114191055, 0.04240940883755684, 0.01285891979932785, 0.06441843509674072, 0.2113136649131775], [0.0518786758184433, 0.012471107766032219, 0.1649257242679596, 0.006757655646651983, 0.036428455263376236, 0.015883615240454674, 0.008681015111505985, 0.023485753685235977, 0.28365588188171387], [0.016165167093276978, 0.011963787488639355, 0.09751909971237183, 0.0057828170247375965, 0.021685222163796425, 0.0210827998816967, 0.005414087790995836, 0.01337400171905756, 0.35972151160240173], [0.08164932578802109, 0.03990740329027176, 0.08788231760263443, 0.05205972492694855, 0.16068410873413086, 0.05053249001502991, 0.009451997466385365, 0.09337428212165833, 0.09370559453964233], [0.004474562592804432, 0.0011820620857179165, 0.007393202744424343, 0.001520694000646472, 0.001425054739229381, 0.0027973284013569355, 0.0004933666787110269, 0.010234818793833256, 0.47769516706466675]], [[0.017373783513903618, 0.010760200209915638, 0.004052707459777594, 0.002160601783543825, 0.004703983198851347, 0.000394698727177456, 0.0004772089596372098, 0.008218641392886639, 0.08138436079025269], [0.011449586600065231, 0.006356136407703161, 0.8754265904426575, 0.008639363572001457, 0.003794182790443301, 0.004211607854813337, 0.0020771094132214785, 0.007402998860925436, 0.028407972306013107], [0.03195991739630699, 0.2568446695804596, 0.12623031437397003, 0.008409995585680008, 0.004986082203686237, 0.007851914502680302, 0.004397053271532059, 0.04552983492612839, 0.21597664058208466], [0.04044754430651665, 0.015792282298207283, 0.0023268135264515877, 0.00258962856605649, 0.04314747080206871, 0.2793048620223999, 0.30927082896232605, 0.061317089945077896, 0.11304378509521484], [0.01992252841591835, 0.015503552742302418, 0.010178887285292149, 0.037280816584825516, 0.0024466016329824924, 0.6000202894210815, 0.1180553212761879, 0.04667108133435249, 0.06691066920757294], [0.03467075899243355, 0.06156986579298973, 0.04821975156664848, 0.1019117683172226, 0.16641081869602203, 0.0029154496733099222, 0.3086279034614563, 0.04037686064839363, 0.1068916767835617], [0.0012558179441839457, 6.563087663380429e-05, 4.949299545842223e-05, 0.0015380426775664091, 0.00023054353368934244, 0.9875051975250244, 0.0004441349592525512, 0.0025152326561510563, 0.003047464182600379], [0.053099703043699265, 0.0543893501162529, 0.03896797075867653, 0.06328529864549637, 0.060940925031900406, 0.016793664544820786, 0.042788613587617874, 0.06915182620286942, 0.21027907729148865], [0.06063633784651756, 0.06326667219400406, 0.034328192472457886, 0.022750509902834892, 0.010062981396913528, 0.0041212965734303, 0.01725657843053341, 0.0666080117225647, 0.2555081844329834]], [[0.005758460145443678, 0.0021250469144433737, 0.004918077029287815, 0.0015783997951075435, 0.0031314161606132984, 0.0012560640461742878, 0.0003333171480335295, 0.005877758841961622, 0.42379939556121826], [0.017574958503246307, 0.06447048485279083, 0.051008909940719604, 0.0031163066159933805, 0.001023966120555997, 0.004448094870895147, 0.001327427802607417, 0.01151659432798624, 0.4472600817680359], [0.002968674525618553, 0.005619123578071594, 0.028435001149773598, 0.0002892887860070914, 3.1841998861636966e-05, 0.00029665420879609883, 6.943188782315701e-05, 0.0044031897559762, 0.5065798759460449], [0.01788296550512314, 0.24235442280769348, 0.11464615911245346, 0.024721350520849228, 0.004135359078645706, 0.005985644645988941, 0.011329052969813347, 0.015966244041919708, 0.28977298736572266], [0.004345357418060303, 0.053547076880931854, 0.02130398340523243, 0.007296844385564327, 0.011325634084641933, 0.003009550739079714, 0.00919779110699892, 0.008209788240492344, 0.45820072293281555], [0.006185310892760754, 0.052064698189496994, 0.05677692964673042, 0.006097305100411177, 0.007340249139815569, 0.023725558072328568, 0.011273540556430817, 0.008761817589402199, 0.4159131348133087], [0.009984118863940239, 0.2552521824836731, 0.08297386020421982, 0.01195122767239809, 0.004918457940220833, 0.010436220094561577, 0.04108359292149544, 0.0127377575263381, 0.29193446040153503], [0.016285758465528488, 0.12385275214910507, 0.11852085590362549, 0.2824400067329407, 0.16928309202194214, 0.07208912819623947, 0.03803791105747223, 0.0434800423681736, 0.04765653610229492], [0.003703151596710086, 0.0030523992609232664, 0.007243176456540823, 0.0023688124492764473, 0.004038053099066019, 0.0021750314626842737, 0.0012231331784278154, 0.00723686907440424, 0.47688260674476624]], [[0.057300034910440445, 0.00101943698246032, 0.0021415636874735355, 0.0008546136086806655, 0.0054085771553218365, 0.002029214520007372, 0.0008198036812245846, 0.009260308928787708, 0.03953936696052551], [0.050369054079055786, 0.04385271668434143, 0.03822799772024155, 0.02151563949882984, 0.018855562433600426, 0.01827183924615383, 0.006778425071388483, 0.22453130781650543, 0.1340239942073822], [0.11721554398536682, 0.041641246527433395, 0.00972040556371212, 0.014014014042913914, 0.0024876361712813377, 0.013287719339132309, 0.0128793865442276, 0.0887947529554367, 0.27240633964538574], [0.045295413583517075, 0.027806073427200317, 0.009272068738937378, 0.03675176575779915, 0.007415296975523233, 0.006798502057790756, 0.004238978959619999, 0.2488250732421875, 0.21867583692073822], [0.035432640463113785, 0.02858577109873295, 0.00421521719545126, 0.026622828096151352, 0.01288614422082901, 0.010608547367155552, 0.006954746320843697, 0.11331315338611603, 0.3651497960090637], [0.06639274209737778, 0.019437698647379875, 0.005019697826355696, 0.011193592101335526, 0.007175098173320293, 0.004456063732504845, 0.01689990609884262, 0.0620136484503746, 0.34760984778404236], [0.04457259550690651, 0.016032623127102852, 0.016786210238933563, 0.01425451971590519, 0.05170614272356033, 0.04014769569039345, 0.02640923112630844, 0.06022537499666214, 0.33386293053627014], [0.05643227696418762, 0.013646628707647324, 0.0317501500248909, 0.011067698709666729, 0.014415115118026733, 0.015359370037913322, 0.005356915760785341, 0.10379167646169662, 0.2578006684780121], [0.02858106605708599, 0.0043085659854114056, 0.007958337664604187, 0.003052199026569724, 0.0018483898602426052, 0.005658274050801992, 0.001412619836628437, 0.010081819258630276, 0.44751182198524475]]], [[[0.0012268522987142205, 0.001193615491501987, 0.0008361958898603916, 0.0006956990691833198, 0.0005406527197919786, 0.0006869614589959383, 0.0001046524994308129, 0.00037079612957313657, 0.497846394777298], [0.0026062126271426678, 0.05955971032381058, 0.00483003119006753, 0.005125260911881924, 0.0005440955865196884, 6.521259638248011e-05, 1.5452906154678203e-05, 0.0016047164099290967, 0.48359861969947815], [0.0012028494384139776, 0.016091173514723778, 0.003556471085175872, 0.0013756597181782126, 0.001338676200248301, 6.803135329391807e-05, 2.319568011444062e-06, 9.375611989526078e-05, 0.4932926893234253], [0.001231819624081254, 0.026759592816233635, 0.08602309226989746, 0.012478143908083439, 0.01793690025806427, 0.006892875302582979, 0.00045659096213057637, 0.00020609903731383383, 0.4271720051765442], [0.001968498807400465, 0.005546071566641331, 0.05872735381126404, 0.19377446174621582, 0.025837019085884094, 0.0069153644144535065, 0.00015923671890050173, 0.0002369584544794634, 0.3460055887699127], [0.0006208086269907653, 0.0017168422928079963, 0.0010606016730889678, 0.009086660109460354, 0.031358879059553146, 0.0035127843730151653, 8.70905423653312e-05, 0.00016364851035177708, 0.4641072452068329], [0.00010141226812265813, 0.00017872703028842807, 0.00048087057075463235, 0.0018851286731660366, 0.0323953777551651, 0.9014703631401062, 0.0012603531358763576, 0.0006397413089871407, 0.030593007802963257], [0.002887450158596039, 0.0005018715164624155, 0.0007899686461314559, 0.0022305496968328953, 0.00206627044826746, 0.04613981768488884, 0.41361093521118164, 0.00941880140453577, 0.2649163007736206], [0.020558619871735573, 0.015892986208200455, 0.011825784109532833, 0.009166625328361988, 0.007707756478339434, 0.005215456243604422, 0.002697019837796688, 0.019493063911795616, 0.4218929409980774]], [[0.0038423731457442045, 0.0979103371500969, 0.006096473429352045, 0.009875924326479435, 0.008829496800899506, 0.00291089853271842, 0.00470890523865819, 0.21763639152050018, 0.3291061520576477], [0.007899913005530834, 0.11704446375370026, 0.015460697934031487, 0.051603641360998154, 0.02448287047445774, 0.018248176202178, 0.006813539192080498, 0.04040774703025818, 0.3675488531589508], [0.025731662288308144, 0.208003968000412, 0.0133800795301795, 0.033890265971422195, 0.02012753300368786, 0.02156728319823742, 0.020578458905220032, 0.07638607919216156, 0.27651548385620117], [0.01676766946911812, 0.3595621585845947, 0.016705617308616638, 0.056803129613399506, 0.049385491758584976, 0.023534834384918213, 0.013142966665327549, 0.053659047931432724, 0.20421680808067322], [0.016914812847971916, 0.10681729018688202, 0.03576813265681267, 0.18344727158546448, 0.06506672501564026, 0.026374896988272667, 0.06274399161338806, 0.04797997325658798, 0.22855304181575775], [0.025768442079424858, 0.03815072774887085, 0.03208613023161888, 0.11320128291845322, 0.09737738966941833, 0.05092741549015045, 0.11139798909425735, 0.05256582796573639, 0.23593246936798096], [0.030600255355238914, 0.03992250934243202, 0.03523583710193634, 0.27605047821998596, 0.13545475900173187, 0.07433675974607468, 0.051648277789354324, 0.04537327215075493, 0.15507520735263824], [0.011768552474677563, 0.1284898817539215, 0.05738763138651848, 0.16645966470241547, 0.15865668654441833, 0.12594562768936157, 0.03153849020600319, 0.11341845989227295, 0.10127582401037216], [0.006472982931882143, 0.022074781358242035, 0.006032588891685009, 0.008875316008925438, 0.004342956934124231, 0.0038167426828294992, 0.0030285187531262636, 0.012726720422506332, 0.4365517497062683]], [[0.009063911624252796, 0.0008625846239738166, 0.0033756839111447334, 0.001652573118917644, 0.009214906021952629, 0.010952332057058811, 0.0025385506451129913, 0.001659492845647037, 0.05112340301275253], [0.030323171988129616, 0.011549224145710468, 0.02178393304347992, 0.12024854123592377, 0.1289067268371582, 0.1871342957019806, 0.35925328731536865, 0.029256725683808327, 0.0321379229426384], [0.06644298136234283, 0.07353031635284424, 0.08068853616714478, 0.08615818619728088, 0.05244072154164314, 0.0946999117732048, 0.10104087740182877, 0.07332208007574081, 0.09360750019550323], [0.01714845560491085, 0.010454491712152958, 0.03376057371497154, 0.01652185246348381, 0.35368624329566956, 0.07130531966686249, 0.04183783009648323, 0.021007705479860306, 0.206453338265419], [0.024712054058909416, 0.028879081830382347, 0.025591792538762093, 0.0830875039100647, 0.22685730457305908, 0.012127013877034187, 0.013243654742836952, 0.019917773082852364, 0.2849058508872986], [0.017363451421260834, 0.03167405724525452, 0.058454278856515884, 0.07243829220533371, 0.06682407855987549, 0.0028190664015710354, 0.019437329843640327, 0.024486254900693893, 0.35692834854125977], [0.03096614219248295, 0.01818840764462948, 0.018256308510899544, 0.08340602368116379, 0.46653053164482117, 0.011320777237415314, 0.012873721309006214, 0.02072528377175331, 0.15964293479919434], [0.021320726722478867, 0.0069495257921516895, 0.03907027840614319, 0.017465760931372643, 0.15855297446250916, 0.17425209283828735, 0.014796898700296879, 0.012508236803114414, 0.2606799304485321], [0.008644532412290573, 0.0057877833023667336, 0.009599537588655949, 0.0044794511049985886, 0.006598783656954765, 0.004999629221856594, 0.003857773495838046, 0.00496251042932272, 0.45481136441230774]], [[0.04591652378439903, 0.06300190091133118, 0.16419069468975067, 0.06137210130691528, 0.03333040326833725, 0.11815725266933441, 0.02318153716623783, 0.12986509501934052, 0.11233090609312057], [0.05948485806584358, 0.030614571645855904, 0.04631494730710983, 0.04725201427936554, 0.024686913937330246, 0.07342551648616791, 0.01190608087927103, 0.1029941663146019, 0.19130326807498932], [0.008375815115869045, 0.08590077608823776, 0.11599132418632507, 0.03065883368253708, 0.02831793576478958, 0.17639218270778656, 0.030109606683254242, 0.07108864188194275, 0.08749613910913467], [0.014101564884185791, 0.009941528551280499, 0.012831049971282482, 0.04680471494793892, 0.0229649655520916, 0.03828982263803482, 0.007251002360135317, 0.06968002021312714, 0.28135332465171814], [0.023000601679086685, 0.014771489426493645, 0.017490161582827568, 0.079710453748703, 0.028272580355405807, 0.027533959597349167, 0.005006590858101845, 0.07247548550367355, 0.2600434422492981], [0.007276624441146851, 0.015737686306238174, 0.044347167015075684, 0.0654127299785614, 0.06074805557727814, 0.2576485574245453, 0.01003256905823946, 0.029188068583607674, 0.16256673634052277], [0.046840086579322815, 0.005050460807979107, 0.008912740275263786, 0.04096522554755211, 0.0037268521264195442, 0.02124677784740925, 0.0024555400013923645, 0.030869917944073677, 0.3147437572479248], [0.04578913748264313, 0.015169307589530945, 0.05198633670806885, 0.04619758948683739, 0.017973976209759712, 0.03155815973877907, 0.006569531746208668, 0.05196365341544151, 0.295901358127594], [0.036378540098667145, 0.006205890327692032, 0.016910836100578308, 0.00830363854765892, 0.00342999747954309, 0.00617930619046092, 0.001616147463209927, 0.01737803965806961, 0.41895776987075806]], [[0.017480259761214256, 0.20148500800132751, 0.03903725743293762, 0.06706959754228592, 0.012287254445254803, 0.013176810927689075, 0.002272723475471139, 0.27102038264274597, 0.18708552420139313], [0.016926229000091553, 0.06871692836284637, 0.014908969402313232, 0.02210349775850773, 0.003666487755253911, 0.0023261106107383966, 0.0011758703039959073, 0.05407288670539856, 0.41736021637916565], [0.13162341713905334, 0.5688703060150146, 0.0772111639380455, 0.005058556329458952, 6.459522410295904e-05, 0.00017680223390925676, 0.0001300355070270598, 0.0010197939118370414, 0.11028080433607101], [0.014943387359380722, 0.15152794122695923, 0.03337767720222473, 0.04420100152492523, 0.04978689178824425, 0.0066736130975186825, 0.002962433034554124, 0.025334719568490982, 0.3377862870693207], [0.013496278785169125, 0.06256356090307236, 0.09802360087633133, 0.35747820138931274, 0.0443490669131279, 0.018599987030029297, 0.0035999685060232878, 0.011299500241875648, 0.1924462467432022], [0.012661732733249664, 0.01475112047046423, 0.03170580789446831, 0.12517398595809937, 0.20579063892364502, 0.029060887172818184, 0.00819248054176569, 0.01069746632128954, 0.2803666591644287], [0.005842386279255152, 0.0017539823893457651, 0.005652809515595436, 0.14941003918647766, 0.5916652083396912, 0.1219407394528389, 0.0037342447321861982, 0.004851237405091524, 0.05674576759338379], [0.019650772213935852, 0.040749937295913696, 0.017664263024926186, 0.08067885786294937, 0.021262740716338158, 0.03944716602563858, 0.04182502254843712, 0.1251455843448639, 0.3070489168167114], [0.013733944855630398, 0.026839664205908775, 0.01571626588702202, 0.012752034701406956, 0.005264668259769678, 0.006642777938395739, 0.0037175819743424654, 0.08288726955652237, 0.35747939348220825]], [[0.014837761409580708, 0.085702084004879, 0.18005020916461945, 0.06088872253894806, 0.035098619759082794, 0.3227255940437317, 0.025438392534852028, 0.057057935744524, 0.10069388151168823], [0.0681460052728653, 0.0618312768638134, 0.008035487495362759, 0.01888233795762062, 0.002018442377448082, 0.0022372847888618708, 0.0008813529275357723, 0.035775840282440186, 0.3668569326400757], [0.03437953442335129, 0.026006393134593964, 0.004117678385227919, 0.004914199933409691, 0.0011157924309372902, 0.0014436618657782674, 0.000660546706058085, 0.04258754476904869, 0.4291918873786926], [0.03358268365263939, 0.01694011315703392, 0.0019685649313032627, 0.06609854847192764, 0.008756306022405624, 0.003526550717651844, 0.013533340767025948, 0.03698752075433731, 0.30237850546836853], [0.01708546094596386, 0.011726808734238148, 0.0009878892451524734, 0.025934971868991852, 0.015839044004678726, 0.00646226666867733, 0.01318965945392847, 0.045935969799757004, 0.377254456281662], [0.01989579387009144, 0.012307309545576572, 0.0018611198756843805, 0.01515846699476242, 0.021920310333371162, 0.008366244845092297, 0.006554576102644205, 0.088648721575737, 0.38216903805732727], [0.012342882342636585, 0.015963461250066757, 0.0012975179124623537, 0.02431870810687542, 0.004630825947970152, 0.004724858794361353, 0.07893224060535431, 0.05416902154684067, 0.3657701313495636], [0.03718230500817299, 0.010838188230991364, 0.006511701736599207, 0.009800695814192295, 0.0037312728818506002, 0.013592066243290901, 0.004582089837640524, 0.13572309911251068, 0.3581139147281647], [0.02295801229774952, 0.005564752034842968, 0.008349373936653137, 0.0025019673630595207, 0.00110938074067235, 0.002276431769132614, 0.0017111244378611445, 0.01407159399241209, 0.43465757369995117]], [[0.00848997849971056, 0.006697371136397123, 0.02224407158792019, 0.001738460618071258, 0.002630590694025159, 0.002615903038531542, 0.001488794689066708, 0.0017919568344950676, 0.2413429468870163], [0.01825099252164364, 0.026805464178323746, 0.6148292422294617, 0.021728163585066795, 0.025519391521811485, 0.009578576311469078, 0.0033244453370571136, 0.008989238180220127, 0.1351548582315445], [0.011718683876097202, 0.012128150090575218, 0.01166569720953703, 0.009619781747460365, 0.01844712719321251, 0.0011218040017411113, 0.00028493141871877015, 0.0038101940881460905, 0.47031742334365845], [0.00890746247023344, 0.23083403706550598, 0.39969971776008606, 0.004340294282883406, 0.0382809117436409, 0.0687628984451294, 0.0036950879730284214, 0.0031205194536596537, 0.11283029615879059], [0.017912723124027252, 0.03370494395494461, 0.0476127490401268, 0.01868375390768051, 0.01692894846200943, 0.14335624873638153, 0.010662405751645565, 0.005335233639925718, 0.35275617241859436], [0.005911227315664291, 0.012780345045030117, 0.010394775308668613, 0.004120598081499338, 0.007990815676748753, 0.003416532650589943, 0.0010815758723765612, 0.0013590577291324735, 0.48404502868652344], [0.002640643622726202, 0.014562993310391903, 0.04752848297357559, 0.0038568938616663218, 0.027922293171286583, 0.839131236076355, 0.0009474137332290411, 0.002863657893612981, 0.029102692380547523], [0.00906453188508749, 0.07517070323228836, 0.08855453878641129, 0.07748658955097198, 0.2896617650985718, 0.20755931735038757, 0.11318142712116241, 0.00893726572394371, 0.057658545672893524], [0.01159619353711605, 0.006290688645094633, 0.0052373409271240234, 0.002823084592819214, 0.0034340755082666874, 0.0026102978736162186, 0.001451929216273129, 0.0034936140291392803, 0.4648189842700958]], [[0.010057734325528145, 0.005002036225050688, 0.018494021147489548, 0.006920263636857271, 0.002388333436101675, 0.015272107906639576, 0.0014022223185747862, 0.010757633484899998, 0.44486743211746216], [0.00963846780359745, 0.029775895178318024, 0.011451346799731255, 0.008635523729026318, 0.008830179460346699, 0.005798475816845894, 0.0024684283416718245, 0.014253785833716393, 0.4656665623188019], [0.029812926426529884, 0.0069160801358520985, 0.04169391840696335, 0.004743122961372137, 0.00613489979878068, 0.002656891942024231, 0.0006393708754330873, 0.0062254429794847965, 0.4592188596725464], [0.0022449996322393417, 0.02982807531952858, 0.006583040114492178, 0.00875064730644226, 0.014338579960167408, 0.03789481148123741, 0.009276355616748333, 0.01559943612664938, 0.4464631974697113], [0.005365240853279829, 0.027452701702713966, 0.004356576129794121, 0.0726325660943985, 0.03444398567080498, 0.008861816488206387, 0.002771044382825494, 0.007664002478122711, 0.42534491419792175], [0.005453033372759819, 0.007485215086489916, 0.0016480284975841641, 0.01411443017423153, 0.02747797593474388, 0.009071814827620983, 0.0012492149835452437, 0.006488464307039976, 0.4698760509490967], [0.0024155965074896812, 0.0036317617632448673, 0.001894674962386489, 0.007689658552408218, 0.13301603496074677, 0.2738424241542816, 0.003468499518930912, 0.009353997185826302, 0.2843243479728699], [0.007348518818616867, 0.011435589753091335, 0.019765570759773254, 0.07790988683700562, 0.07319408655166626, 0.43297529220581055, 0.04791959375143051, 0.043603118509054184, 0.14156070351600647], [0.02268170565366745, 0.007042753044515848, 0.007176578976213932, 0.009017842821776867, 0.005312832072377205, 0.011243489570915699, 0.0037274998612701893, 0.02601756528019905, 0.42067641019821167]], [[0.006108490750193596, 0.00048298592446371913, 0.009644691832363605, 0.0010901641799136996, 0.0012856327230110765, 0.0035513541661202908, 0.0003678583016153425, 0.0006273784092627466, 0.017687829211354256], [0.03721974790096283, 0.04095926880836487, 0.14490556716918945, 0.06568209081888199, 0.11905517429113388, 0.22005000710487366, 0.07183218002319336, 0.01965632103383541, 0.11881532520055771], [0.07519026100635529, 0.029349684715270996, 0.03602093458175659, 0.051357872784137726, 0.03302657604217529, 0.1732197403907776, 0.020981866866350174, 0.03328615427017212, 0.2525395452976227], [0.050438426434993744, 0.04054679721593857, 0.33494460582733154, 0.02331814356148243, 0.027969859540462494, 0.2162870466709137, 0.03173430636525154, 0.015952864661812782, 0.11285558342933655], [0.05691436678171158, 0.044992052018642426, 0.39046740531921387, 0.02600630186498165, 0.011247477494180202, 0.1982293426990509, 0.025162890553474426, 0.01811601221561432, 0.08739137649536133], [0.09177535772323608, 0.033661339432001114, 0.19003207981586456, 0.01771298237144947, 0.009519659914076328, 0.04854452610015869, 0.012874523177742958, 0.020067719742655754, 0.2533319294452667], [0.03723860904574394, 0.0865321084856987, 0.26005181670188904, 0.04593465104699135, 0.02298891544342041, 0.18341778218746185, 0.01862463168799877, 0.011491465382277966, 0.1470467895269394], [0.02528735063970089, 0.07338886708021164, 0.3010205030441284, 0.09665419161319733, 0.07813757658004761, 0.24917075037956238, 0.04880642890930176, 0.008978785015642643, 0.029446927830576897], [0.005942951887845993, 0.0033881994895637035, 0.007797200232744217, 0.002649979665875435, 0.001656738226301968, 0.005419855006039143, 0.001296873320825398, 0.0036795062478631735, 0.4749843180179596]], [[0.004491069354116917, 0.0027351307217031717, 0.0033803677652031183, 0.005743349902331829, 0.0022395208943635225, 0.0008278143359348178, 0.00034106202656403184, 0.013580447062849998, 0.18483808636665344], [0.00804812740534544, 0.01932227984070778, 0.026770418509840965, 0.6470544338226318, 0.020555930212140083, 0.011104513891041279, 0.012925602495670319, 0.08041491359472275, 0.0513184480369091], [0.019066080451011658, 0.044097863137722015, 0.0526462122797966, 0.05110037699341774, 0.0031227064318954945, 0.008649613708257675, 0.004430604167282581, 0.03587121143937111, 0.3683486878871918], [0.01181622315198183, 0.01627986691892147, 0.014005794189870358, 0.06803689897060394, 0.04136352241039276, 0.060439012944698334, 0.13425949215888977, 0.10341010987758636, 0.2644912004470825], [0.03295176103711128, 0.00981871783733368, 0.011098244227468967, 0.04524724930524826, 0.031882502138614655, 0.08037003129720688, 0.0789155438542366, 0.13111072778701782, 0.280385285615921], [0.01984240673482418, 0.003054012544453144, 0.0021687326952815056, 0.005747318267822266, 0.001473750569857657, 0.006713476497679949, 0.0026262446772307158, 0.04381173104047775, 0.4587130844593048], [0.018868526443839073, 0.0023677500430494547, 0.002823382383212447, 0.008436670526862144, 0.007943402975797653, 0.009686744771897793, 0.009699057787656784, 0.043270520865917206, 0.4554607570171356], [0.013559774495661259, 0.026531832292675972, 0.015721190720796585, 0.05076306685805321, 0.030098246410489082, 0.01254494022578001, 0.007677183486521244, 0.08505788445472717, 0.3477552533149719], [0.0128476582467556, 0.0070405807346105576, 0.0043700747191905975, 0.01533160824328661, 0.0027420285623520613, 0.0017848021816462278, 0.0012670168653130531, 0.011103778146207333, 0.4413999915122986]], [[0.023240748792886734, 0.07953847944736481, 0.16248755156993866, 0.12789462506771088, 0.06906704604625702, 0.27402371168136597, 0.032486360520124435, 0.10435017198324203, 0.05908270180225372], [0.06305493414402008, 0.16579696536064148, 0.16351580619812012, 0.11282528191804886, 0.05173748731613159, 0.06269607692956924, 0.03162235766649246, 0.13088737428188324, 0.09096205234527588], [0.0837809145450592, 0.08363284170627594, 0.06468788534402847, 0.12506923079490662, 0.007336738519370556, 0.01852007582783699, 0.020320747047662735, 0.2166077196598053, 0.1771128624677658], [0.023773569613695145, 0.044085659086704254, 0.02132377028465271, 0.08987373858690262, 0.02066689357161522, 0.050990670919418335, 0.05786581337451935, 0.290880411863327, 0.1991594284772873], [0.010321545414626598, 0.06656690686941147, 0.005372785963118076, 0.0869201123714447, 0.007539425976574421, 0.019194528460502625, 0.046659961342811584, 0.3537028133869171, 0.20210368931293488], [0.01850607432425022, 0.022093243896961212, 0.005990950856357813, 0.07804959267377853, 0.013770654797554016, 0.019559694454073906, 0.028089921921491623, 0.29072460532188416, 0.2574850618839264], [0.010967651382088661, 0.02457348257303238, 0.010869220830500126, 0.038812778890132904, 0.009671305306255817, 0.0210882555693388, 0.0425233393907547, 0.22441640496253967, 0.31072431802749634], [0.08603475987911224, 0.07631687819957733, 0.19062742590904236, 0.04701632633805275, 0.05650255084037781, 0.08549165725708008, 0.01968248188495636, 0.2152814269065857, 0.08952372521162033], [0.008603562600910664, 0.002590964548289776, 0.004649112932384014, 0.00249645602889359, 0.0009996596490964293, 0.00149826449342072, 0.000688537722453475, 0.006989079527556896, 0.4781118333339691]], [[0.000982114695943892, 0.004091165028512478, 0.004939687438309193, 0.0011691843392327428, 0.0004179372626822442, 0.00024837313685566187, 0.00017504821880720556, 0.003871886059641838, 0.3642014265060425], [0.006770129781216383, 0.040091175585985184, 0.5720412135124207, 0.05853549391031265, 0.015804467722773552, 0.00623184023424983, 0.000941671896725893, 0.0031304596923291683, 0.1481103152036667], [0.01749485358595848, 0.02916434407234192, 0.02090737409889698, 0.07360083609819412, 0.019484400749206543, 0.008984182961285114, 0.004194698296487331, 0.012607067823410034, 0.4014410078525543], [0.0065080225467681885, 0.01719985343515873, 0.020139502361416817, 0.021763848140835762, 0.12448582798242569, 0.10734974592924118, 0.01601879484951496, 0.018105080351233482, 0.3265039026737213], [0.005324306432157755, 0.0034710955806076527, 0.006156086456030607, 0.04033822566270828, 0.05107131227850914, 0.2590765058994293, 0.08856496214866638, 0.04075836390256882, 0.2466021478176117], [0.008354321122169495, 0.00320628029294312, 0.004300081171095371, 0.014493655413389206, 0.014988232403993607, 0.02075227163732052, 0.05375239998102188, 0.15388235449790955, 0.3635590374469757], [0.005989552941173315, 0.000805228017270565, 0.0006162141798995435, 0.006485061254352331, 0.006694117095321417, 0.01136291865259409, 0.0027206800878047943, 0.19496288895606995, 0.3921332359313965], [0.0021146731451153755, 0.00940559059381485, 0.00040572191937826574, 0.002102120313793421, 0.00087406812235713, 0.0010750140063464642, 0.001744489069096744, 0.021776355803012848, 0.47649356722831726], [0.02279108576476574, 0.023942915722727776, 0.01632073149085045, 0.008830530568957329, 0.003411548212170601, 0.0035038383211940527, 0.0020042245741933584, 0.025177041068673134, 0.40080955624580383]]], [[[3.7261415286593547e-07, 3.222988380002789e-05, 2.1976880816509947e-05, 7.972150797286304e-07, 3.978600915388597e-08, 6.765957095922204e-06, 1.1826134738157634e-08, 0.00016382770263589919, 0.49526330828666687], [2.4386691777067426e-08, 0.0011898259399458766, 0.9977213740348816, 6.672040035482496e-05, 2.0240988760633627e-06, 1.00907727755839e-05, 1.5420846821712075e-09, 1.8474871410489868e-08, 0.0005069724866189063], [1.4852690810585045e-07, 1.246831288881367e-05, 4.1484221583232284e-05, 0.9986849427223206, 7.25875406715204e-06, 2.363831299589947e-06, 2.3903021784121847e-08, 5.352884500098298e-07, 0.0006439454737119377], [5.53762424804205e-10, 1.0791179647640092e-06, 1.1149166994073312e-06, 1.9628765585366637e-05, 0.9962438344955444, 0.0037225347477942705, 6.1436082887667e-08, 2.9457176253799844e-08, 5.630980467685731e-06], [2.1145132519939658e-11, 1.3640261142811028e-09, 2.100065103149973e-06, 2.3976385818968993e-06, 0.001124573522247374, 0.9988652467727661, 1.8541946644745622e-07, 2.5892024080320653e-09, 2.6765630991576472e-06], [6.539127746230111e-12, 3.2532457630574108e-12, 2.8948669850148434e-11, 1.1665697297047473e-09, 2.4565700168510674e-11, 1.9457364430763846e-07, 0.9999946355819702, 4.988308319298085e-06, 9.613298601607312e-08], [3.490912073300656e-11, 2.038438168261436e-11, 1.072288004916322e-11, 7.56949347646696e-09, 4.0809530234275915e-12, 1.068536107595719e-06, 0.00015022858860902488, 0.9998425245285034, 3.1012702947919024e-06], [3.9280561026089345e-09, 4.40032672486268e-05, 4.387047614073936e-09, 2.585681224687164e-09, 3.2712735298368045e-11, 2.2498031881923453e-08, 4.915975959640662e-10, 0.00041482673259451985, 0.5418294668197632], [0.0018904717871919274, 0.0026074456982314587, 0.0023896945640444756, 0.0009480819571763277, 0.00010249244223814458, 0.0004825378127861768, 3.3532203815411776e-05, 0.0020040026865899563, 0.49977996945381165]], [[0.0031687787268310785, 0.0021072241943329573, 0.0009463902679271996, 0.00277671217918396, 0.0005172099336050451, 0.002292200457304716, 0.0003313654160592705, 0.0021580031607300043, 0.06574764847755432], [0.007784616202116013, 0.03844992816448212, 0.3426261246204376, 0.0698457658290863, 0.028900451958179474, 0.030795125290751457, 0.004827134311199188, 0.020057201385498047, 0.22330595552921295], [0.0031111501157283783, 0.004433536436408758, 0.006661070045083761, 0.005048063118010759, 0.002987812040373683, 0.0036905640736222267, 0.001532705151475966, 0.008228489197790623, 0.48094525933265686], [0.009134180843830109, 0.023849118500947952, 0.01980331540107727, 0.00792919285595417, 0.08268915861845016, 0.3063957691192627, 0.1324813961982727, 0.033980075269937515, 0.17825734615325928], [0.0033792974427342415, 0.003261215751990676, 0.001668277196586132, 0.005956524051725864, 0.025913964956998825, 0.2673491835594177, 0.24290718138217926, 0.008580110035836697, 0.21558590233325958], [0.006898961961269379, 0.002756655914708972, 0.002344513079151511, 0.001128703006543219, 0.002137027448043227, 0.006188714411109686, 0.004916543606668711, 0.013192027807235718, 0.47812193632125854], [0.011171341873705387, 0.003672228893265128, 0.0013586024288088083, 0.0016394970007240772, 0.009315996430814266, 0.05581178143620491, 0.0144527992233634, 0.01816549152135849, 0.4430449604988098], [0.0615169033408165, 0.020606184378266335, 0.003415802726522088, 0.02264251932501793, 0.014627281576395035, 0.011750688776373863, 0.003223121864721179, 0.07565398514270782, 0.338276743888855], [0.013904713094234467, 0.006687380839139223, 0.01368147972971201, 0.006337393075227737, 0.0022896481677889824, 0.004136144183576107, 0.0010569773148745298, 0.008383078500628471, 0.4509871006011963]], [[0.004646711051464081, 0.02769767865538597, 0.018233714625239372, 0.0135768111795187, 0.013318194076418877, 0.053658414632081985, 0.011534101329743862, 0.03239040821790695, 0.39864856004714966], [0.0030200525652617216, 0.015542035922408104, 0.03529181331396103, 0.24123111367225647, 0.004646776709705591, 0.008606866002082825, 0.0007329742657020688, 0.003434254787862301, 0.33983224630355835], [0.00117931526619941, 0.009039977565407753, 0.006407999433577061, 0.0024088541977107525, 0.0008406472043134272, 0.0003036821726709604, 0.00010241178824799135, 0.0008063734858296812, 0.4865339696407318], [0.0006322811241261661, 0.013885417953133583, 0.03904265537858009, 0.02093936875462532, 0.016451114788651466, 0.10240742564201355, 0.0029610719066113234, 0.008978908881545067, 0.39699795842170715], [0.0005937740206718445, 0.0065855649299919605, 0.0012340358225628734, 0.02115865796804428, 0.0045451815240085125, 0.10851363837718964, 0.002723093843087554, 0.004589584190398455, 0.4261760413646698], [0.0014794886810705066, 0.004135075956583023, 0.0005052487249486148, 0.004656696692109108, 0.00471864826977253, 0.011638039723038673, 0.05843871086835861, 0.006999869365245104, 0.45093467831611633], [0.00045148268691264093, 0.006556532345712185, 0.002436431823298335, 0.013392260298132896, 0.013839494436979294, 0.5427978038787842, 0.009187949821352959, 0.02432774379849434, 0.1913284957408905], [0.004975053481757641, 0.005287251900881529, 0.0010606514988467097, 0.008493514731526375, 0.009217924438416958, 0.023655859753489494, 0.004463125951588154, 0.06002442538738251, 0.44074684381484985], [0.01662576012313366, 0.013676837086677551, 0.011885679326951504, 0.009910515509545803, 0.004302979912608862, 0.007309566717594862, 0.002795423846691847, 0.014664201065897942, 0.43024855852127075]], [[0.0009357659728266299, 0.0009855087846517563, 0.006272437982261181, 0.0006815640954300761, 0.00017691338143777102, 0.000455359899206087, 6.815097731305286e-05, 0.00486785639077425, 0.48824578523635864], [0.011824224144220352, 0.031619418412446976, 0.013066585175693035, 0.0033593676052987576, 0.000999400275759399, 0.0004325775080360472, 0.00030561830499209464, 0.010319091379642487, 0.4673183262348175], [0.002653721487149596, 0.007376522291451693, 0.012308141216635704, 0.0012607760727405548, 0.0008716582669876516, 0.00048471501213498414, 2.9569455364253372e-05, 0.0008004661649465561, 0.4883043169975281], [0.0019072330323979259, 0.06150224432349205, 0.01568525843322277, 0.018371695652604103, 0.049505941569805145, 0.011806926690042019, 0.005584845319390297, 0.011089038103818893, 0.41280829906463623], [0.0007226336747407913, 0.010250167921185493, 0.0017117736861109734, 0.004440348129719496, 0.0017453273758292198, 0.007101535797119141, 0.0011321828933432698, 0.005288560409098864, 0.4838944375514984], [0.0009220391511917114, 0.00203683041036129, 0.0016831494867801666, 0.0017126871971413493, 0.004069022834300995, 0.0038726930506527424, 0.00122427090536803, 0.003867652965709567, 0.4925641119480133], [0.0005435695638880134, 0.004219656344503164, 0.004036516882479191, 0.007169567979872227, 0.02241043746471405, 0.671183705329895, 0.035876043140888214, 0.005130477715283632, 0.12443186342716217], [0.0059726727195084095, 0.0064332024194300175, 0.005674977786839008, 0.012177813798189163, 0.029017139226198196, 0.07363323122262955, 0.02635008841753006, 0.06776728481054306, 0.3844427764415741], [0.01789006032049656, 0.011232955381274223, 0.013579105027019978, 0.006586464587599039, 0.0031376779079437256, 0.005298648029565811, 0.0014133123913779855, 0.019931431859731674, 0.43546125292778015]], [[0.0030689863488078117, 0.0033166492357850075, 0.00242445501498878, 0.0004114684124942869, 0.0001578721567057073, 0.0005789128481410444, 3.8072739698691294e-05, 0.0015109134837985039, 0.17528407275676727], [0.003965090494602919, 0.03982608765363693, 0.010935517959296703, 0.030606640502810478, 0.006151079200208187, 0.005054636858403683, 0.000700213888194412, 0.0068400949239730835, 0.44721174240112305], [0.010818920098245144, 0.1957474648952484, 0.05118459090590477, 0.017250701785087585, 0.00452144630253315, 0.007591108791530132, 0.0002662086335476488, 0.002007861156016588, 0.3479042053222656], [0.0012930310331285, 0.018686266615986824, 0.022953161969780922, 0.019466092810034752, 0.05568217858672142, 0.009044455364346504, 0.001302405260503292, 0.0017953389324247837, 0.43391719460487366], [0.000962406222242862, 0.005701298825442791, 0.010019714944064617, 0.01962333731353283, 0.012387268245220184, 0.010740355588495731, 0.0003362670831847936, 0.001200356986373663, 0.4691201150417328], [0.0022300526034086943, 0.0040331617929041386, 0.008002933114767075, 0.016305968165397644, 0.051353368908166885, 0.02401667647063732, 0.0011861160164698958, 0.003552023321390152, 0.44315075874328613], [0.001013406552374363, 0.004529082681983709, 0.005132297053933144, 0.013445733115077019, 0.3318427503108978, 0.0748477652668953, 0.004088751971721649, 0.013508574105799198, 0.27495595812797546], [0.002854519058018923, 0.00703628733754158, 0.022958945482969284, 0.039655089378356934, 0.02283470332622528, 0.39655572175979614, 0.028923355042934418, 0.01945863850414753, 0.2272329330444336], [0.012420429848134518, 0.012259387411177158, 0.009217140264809132, 0.0065152873285114765, 0.005099431611597538, 0.01140523049980402, 0.002370786387473345, 0.011538098566234112, 0.43145236372947693]], [[0.0062873754650354385, 0.0033066386822611094, 0.005725296214222908, 0.002122096484526992, 0.0035054287873208523, 0.0018759208032861352, 0.0005465082940645516, 0.001364398980513215, 0.05486242100596428], [0.010374179109930992, 0.017863847315311432, 0.08150981366634369, 0.08140186965465546, 0.07214724272489548, 0.23391591012477875, 0.11223496496677399, 0.049508534371852875, 0.13656170666217804], [0.010608501732349396, 0.056547943502664566, 0.10995253175497055, 0.05565983057022095, 0.02825392782688141, 0.10524681210517883, 0.03965795785188675, 0.03382706269621849, 0.22549866139888763], [0.006527698133140802, 0.026134004816412926, 0.028784804046154022, 0.007164767477661371, 0.048842236399650574, 0.2568477392196655, 0.09427621960639954, 0.04196718707680702, 0.2316848188638687], [0.004678796045482159, 0.024227414280176163, 0.013375849463045597, 0.007306893356144428, 0.00541008310392499, 0.050092827528715134, 0.014733346179127693, 0.02605808526277542, 0.4214590787887573], [0.01700776256620884, 0.042182184755802155, 0.02710765227675438, 0.021281739696860313, 0.020639576017856598, 0.006023309659212828, 0.006013905163854361, 0.02144630067050457, 0.3957773745059967], [0.008481322787702084, 0.021922994405031204, 0.015934770926833153, 0.009804973378777504, 0.02632986009120941, 0.06028136610984802, 0.009073665365576744, 0.013704154640436172, 0.4135402739048004], [0.0426543653011322, 0.08419543504714966, 0.055145513266325, 0.051335304975509644, 0.14563463628292084, 0.027572128921747208, 0.016870353370904922, 0.02830444648861885, 0.24439531564712524], [0.003631844650954008, 0.00630282424390316, 0.010843838565051556, 0.004429279826581478, 0.002837232779711485, 0.005300014279782772, 0.0013003009371459484, 0.004197238944470882, 0.46347904205322266]], [[0.0434751994907856, 0.07624716311693192, 0.06747912615537643, 0.02035519666969776, 0.010015725158154964, 0.0414426289498806, 0.03631532937288284, 0.06742885708808899, 0.18269914388656616], [0.035312458872795105, 0.04287431761622429, 0.3870684802532196, 0.01889089122414589, 0.0047857556492090225, 0.04934628680348396, 0.006713453214615583, 0.04850570484995842, 0.07312250137329102], [0.009067765437066555, 0.009693324565887451, 0.4875434935092926, 0.0014388547278940678, 0.00021393502538558096, 0.002667471067979932, 0.0006254262407310307, 0.027370432391762733, 0.13182732462882996], [0.043251343071460724, 0.05432870611548424, 0.2003648281097412, 0.07239138334989548, 0.02954348549246788, 0.13457031548023224, 0.008119238540530205, 0.06903116405010223, 0.08606088161468506], [0.01956501044332981, 0.04456562176346779, 0.10031446814537048, 0.050040360540151596, 0.2813097834587097, 0.12771634757518768, 0.012727844528853893, 0.046444378793239594, 0.03654434531927109], [0.026218045502901077, 0.06079234927892685, 0.05672372877597809, 0.01798201911151409, 0.001952760387212038, 0.07390354573726654, 0.004739114083349705, 0.025562353432178497, 0.1153319776058197], [0.04773871228098869, 0.06627925485372543, 0.06205539405345917, 0.05496828258037567, 0.008842677809298038, 0.19613268971443176, 0.03337875381112099, 0.015735918655991554, 0.04694003611803055], [0.05267766863107681, 0.027090558782219887, 0.1338524967432022, 0.02360408753156662, 0.02441701479256153, 0.053336866199970245, 0.012728002853691578, 0.07358848303556442, 0.09732522070407867], [0.0540308952331543, 0.04522665590047836, 0.10037654638290405, 0.03302600607275963, 0.020069647580385208, 0.039606042206287384, 0.01987120322883129, 0.043555453419685364, 0.20935256779193878]], [[0.0031840449664741755, 0.21571789681911469, 0.04524892568588257, 0.04099930077791214, 0.009694595821201801, 0.12895631790161133, 0.004357876721769571, 0.1127181351184845, 0.21609258651733398], [0.004006592091172934, 0.05269387364387512, 0.044160183519124985, 0.03270796686410904, 0.006540026981383562, 0.00946151651442051, 0.002772148232907057, 0.0238027460873127, 0.4141005873680115], [0.011967779137194157, 0.20360039174556732, 0.0273871012032032, 0.0805215984582901, 0.009617360308766365, 0.029085135087370872, 0.004362944047898054, 0.029789013788104057, 0.29455703496932983], [0.0028203059919178486, 0.22022941708564758, 0.08479999005794525, 0.02473951317369938, 0.01705314591526985, 0.008756676688790321, 0.0037036833819001913, 0.0203179232776165, 0.30852213501930237], [0.002009183866903186, 0.023240454494953156, 0.0190526582300663, 0.024731798097491264, 0.012375425547361374, 0.00394817627966404, 0.001384460018016398, 0.004934764001518488, 0.4578995406627655], [0.0076033552177250385, 0.09425722807645798, 0.04865274950861931, 0.11354836821556091, 0.09413701295852661, 0.023365287110209465, 0.006663545034825802, 0.023783979937434196, 0.28648820519447327], [0.0033919215202331543, 0.05983782932162285, 0.06063438579440117, 0.23119010031223297, 0.268436998128891, 0.022264478728175163, 0.006140152458101511, 0.014200322329998016, 0.1666257083415985], [0.006729861255735159, 0.08788341283798218, 0.10373534262180328, 0.1857779622077942, 0.12147389352321625, 0.1733231246471405, 0.03104526922106743, 0.04033413156867027, 0.1204276904463768], [0.00839389767497778, 0.013293436728417873, 0.005461883265525103, 0.01169236283749342, 0.006590526085346937, 0.008103218860924244, 0.0015514168189838529, 0.018558092415332794, 0.43971800804138184]], [[5.714677172363736e-06, 7.531060873589013e-06, 0.0001237595861312002, 0.0001824203645810485, 3.015415131812915e-06, 1.3844623026670888e-05, 1.2050754172321376e-08, 2.479518798281788e-06, 0.49366670846939087], [8.525857424501737e-07, 0.0007749959477223456, 5.146398689248599e-05, 0.0002799722133204341, 1.0684244244885122e-07, 1.7900667614867416e-08, 5.984887030408004e-10, 3.9815680793253705e-05, 0.5097732543945312], [3.231378684631636e-07, 0.9981132745742798, 6.831890641478822e-05, 4.638550672098063e-05, 9.831397619564086e-06, 1.1858296034006344e-07, 4.995786076489317e-11, 4.471216730195238e-09, 0.0008773634908720851], [1.397115201307031e-09, 2.6192303721472854e-06, 0.9998918771743774, 9.90204862318933e-05, 5.5761820050292954e-08, 6.497455729004287e-08, 1.194159793271865e-08, 1.2937077797925411e-10, 3.2282780466630356e-06], [3.388044012009317e-11, 2.95115332171747e-09, 2.278439069414162e-06, 0.9984825253486633, 0.0015151363331824541, 2.0659163268987868e-08, 1.890719386610229e-10, 2.8548736725336754e-12, 2.5246126966749216e-08], [8.36674826643069e-11, 8.532065054467353e-10, 8.29904944765758e-09, 0.0002776994660962373, 0.9997115731239319, 1.0491678949620109e-05, 9.19305165325568e-08, 1.2629202371383652e-11, 1.6365794053285754e-08], [1.1440866367143169e-18, 6.24125504855641e-19, 1.2712827481258654e-13, 3.7660291009843083e-13, 9.704320680370415e-10, 0.999998927116394, 1.0640302434694604e-06, 5.443953213025048e-17, 1.223048236715903e-15], [1.1910175623519592e-10, 9.76662218980795e-13, 1.8872206020148496e-09, 6.939735008870684e-09, 6.119305617779958e-10, 0.00016604574921075255, 0.9998329877853394, 3.1072784167918144e-07, 2.9101207132953277e-07], [0.027686618268489838, 0.010151353664696217, 0.024794626981019974, 0.02103099413216114, 0.0042915563099086285, 0.005246133543550968, 0.0006153103895485401, 0.02844744548201561, 0.40133506059646606]], [[0.005391542799770832, 0.007001600693911314, 0.01654086448252201, 0.007268095389008522, 0.005217065569013357, 0.012687058188021183, 0.0018780648242682219, 0.025507211685180664, 0.44259437918663025], [0.006576152052730322, 0.10240702331066132, 0.018728697672486305, 0.14323820173740387, 0.049986474215984344, 0.03025483712553978, 0.012050971388816833, 0.049884919077157974, 0.2808198630809784], [0.012973690405488014, 0.06871321052312851, 0.031490497291088104, 0.10958608984947205, 0.04596468806266785, 0.04817672818899155, 0.011864996515214443, 0.0465908944606781, 0.2963188588619232], [0.004054914694279432, 0.03101220168173313, 0.014836825430393219, 0.08251379430294037, 0.025474147871136665, 0.0367685928940773, 0.019961180165410042, 0.1350509375333786, 0.3203428089618683], [0.003940700553357601, 0.004999156575649977, 0.0032750770915299654, 0.07968626916408539, 0.02742406167089939, 0.06991948932409286, 0.09462787955999374, 0.12835530936717987, 0.2933743894100189], [0.00998516846448183, 0.003294517984613776, 0.0027820756658911705, 0.019927389919757843, 0.027486037462949753, 0.021844541653990746, 0.02705955132842064, 0.16139407455921173, 0.356993168592453], [0.004408373963087797, 0.00316426414065063, 0.0014020120725035667, 0.023342369124293327, 0.025323715060949326, 0.025710592046380043, 0.03184136748313904, 0.12601809203624725, 0.38134074211120605], [0.002143165795132518, 0.006253203842788935, 0.0013561963569372892, 0.0030949197243899107, 0.0021872781217098236, 0.002259022556245327, 0.0016221548430621624, 0.017215300351381302, 0.4804159998893738], [0.01601012982428074, 0.012033963575959206, 0.01078930776566267, 0.011333223432302475, 0.004751932807266712, 0.008196607232093811, 0.005289657507091761, 0.02050664834678173, 0.41423702239990234]], [[0.011896337382495403, 0.04553978517651558, 0.2977008819580078, 0.016144176945090294, 0.014812009409070015, 0.05180941894650459, 0.006068960297852755, 0.018725192174315453, 0.06805863231420517], [0.07108449190855026, 0.10104425251483917, 0.047358378767967224, 0.01654794067144394, 0.008046175353229046, 0.009992127306759357, 0.009700554423034191, 0.06148039177060127, 0.17401942610740662], [0.06808757036924362, 0.046941373497247696, 0.018322275951504707, 0.011204362846910954, 0.004199360962957144, 0.011305831372737885, 0.009801087900996208, 0.04053309187293053, 0.266318142414093], [0.07591699808835983, 0.05357486382126808, 0.024092543870210648, 0.025861689820885658, 0.008523015305399895, 0.022105766460299492, 0.015525205992162228, 0.0807480439543724, 0.2269948124885559], [0.058995891362428665, 0.03078671172261238, 0.013344567269086838, 0.025047797709703445, 0.01611863449215889, 0.026517633348703384, 0.021701818332076073, 0.07825782150030136, 0.33156299591064453], [0.030031220987439156, 0.011588482186198235, 0.009314131923019886, 0.013186336494982243, 0.012996258214116096, 0.0043689189478755, 0.007965936325490475, 0.058860596269369125, 0.31455063819885254], [0.027438925579190254, 0.034748516976833344, 0.008749268017709255, 0.022606780752539635, 0.02249724417924881, 0.02475479245185852, 0.026207972317934036, 0.06713223457336426, 0.3269135355949402], [0.04745704308152199, 0.04258449748158455, 0.03822675719857216, 0.02935813181102276, 0.013506618328392506, 0.05341669172048569, 0.018804382532835007, 0.19889415800571442, 0.16479218006134033], [0.004619167651981115, 0.003336237743496895, 0.005120809189975262, 0.002401411999017, 0.0011635300470516086, 0.001786738052032888, 0.0006125796353444457, 0.013043121434748173, 0.47580668330192566]], [[0.017892248928546906, 0.09621790051460266, 0.27972814440727234, 0.04248691350221634, 0.036734793335199356, 0.08579163253307343, 0.047321733087301254, 0.16168665885925293, 0.10481302440166473], [0.006097771693021059, 0.034571822732686996, 0.02834142930805683, 0.01489602867513895, 0.011280916631221771, 0.005926548037678003, 0.006407484412193298, 0.07840634882450104, 0.3984966576099396], [0.008414425887167454, 0.020426031202077866, 0.029306910932064056, 0.008140305057168007, 0.003373718587681651, 0.00570417195558548, 0.0032661971636116505, 0.042032670229673386, 0.42415526509284973], [0.0040637715719640255, 0.023357607424259186, 0.011164208874106407, 0.0061511932872235775, 0.005613989662379026, 0.0051599349826574326, 0.004296521190553904, 0.05728956684470177, 0.43970683217048645], [0.00246781250461936, 0.005526396445930004, 0.003295141039416194, 0.001365789445117116, 0.004704872611910105, 0.002192872576415539, 0.002819143468514085, 0.034813810139894485, 0.47196128964424133], [0.012753617018461227, 0.026578955352306366, 0.03122747875750065, 0.007042259443551302, 0.019207507371902466, 0.015565520152449608, 0.019687412306666374, 0.08892396092414856, 0.3711673617362976], [0.006345175672322512, 0.02158680185675621, 0.021593932062387466, 0.0076037319377064705, 0.008861963637173176, 0.004473880399018526, 0.01908325031399727, 0.09513793140649796, 0.4066341817378998], [0.009660806506872177, 0.10523632913827896, 0.054255932569503784, 0.10370367020368576, 0.09922593832015991, 0.019991405308246613, 0.03873194381594658, 0.16783082485198975, 0.1915450245141983], [0.015019276179373264, 0.010747543536126614, 0.014063682407140732, 0.004853293765336275, 0.004904619883745909, 0.007413987535983324, 0.002837849548086524, 0.0210548248142004, 0.42789772152900696]]], [[[0.009784198366105556, 0.06344977021217346, 0.06350541859865189, 0.10532840341329575, 0.019043484702706337, 0.060828521847724915, 0.04589780792593956, 0.10801858454942703, 0.24758686125278473], [0.012747925706207752, 0.037697337567806244, 0.035048969089984894, 0.050928063690662384, 0.032982971519231796, 0.06089800223708153, 0.06137798726558685, 0.06971123814582825, 0.3180164098739624], [0.020289044827222824, 0.03581579029560089, 0.03444864973425865, 0.020815229043364525, 0.01792898029088974, 0.029115784913301468, 0.020787101238965988, 0.040959130972623825, 0.38620296120643616], [0.006655355915427208, 0.1915997862815857, 0.03431512787938118, 0.01052369736135006, 0.02027483657002449, 0.015129264444112778, 0.035484883934259415, 0.04475521668791771, 0.3216469883918762], [0.004118661396205425, 0.08324164897203445, 0.04330205172300339, 0.06619128584861755, 0.031995534896850586, 0.014395874924957752, 0.03820759430527687, 0.024274663999676704, 0.34801867604255676], [0.007169913500547409, 0.14041462540626526, 0.044219449162483215, 0.1257401555776596, 0.11478133499622345, 0.02485238015651703, 0.04211713746190071, 0.03533770889043808, 0.22608068585395813], [0.005102440714836121, 0.08522544801235199, 0.014583348296582699, 0.21162785589694977, 0.12515853345394135, 0.051443375647068024, 0.042615070939064026, 0.020999761298298836, 0.22143219411373138], [0.006187396124005318, 0.0747554674744606, 0.06622717529535294, 0.07507996261119843, 0.03612075373530388, 0.23256315290927887, 0.09893076121807098, 0.01960683986544609, 0.19426439702510834], [0.024467743933200836, 0.018417391926050186, 0.022621972486376762, 0.009935016743838787, 0.006936731282621622, 0.015614781528711319, 0.005365448538213968, 0.0148396585136652, 0.41056859493255615]], [[0.023426394909620285, 0.09086892008781433, 0.05412374064326286, 0.04057744890451431, 0.0296955406665802, 0.3290298581123352, 0.06603242456912994, 0.025668540969491005, 0.1050044372677803], [0.024621548131108284, 0.038398053497076035, 0.1436786949634552, 0.003269249340519309, 0.0029172715730965137, 0.017160942777991295, 0.002876817248761654, 0.006300558336079121, 0.29066383838653564], [0.005516650155186653, 0.0022310451604425907, 0.6447200775146484, 0.0015197627944871783, 0.00022418788284994662, 0.0013377133291214705, 0.00021752827160526067, 0.0014123632572591305, 0.11988424509763718], [0.013424402102828026, 0.003142555011436343, 0.08069439977407455, 0.049036744982004166, 0.018610630184412003, 0.03919357806444168, 0.011662953533232212, 0.0015985965728759766, 0.2843291461467743], [0.003420221619307995, 0.00025893712881952524, 0.007037052419036627, 0.012030331417918205, 0.21710552275180817, 0.011932444758713245, 0.0025048949755728245, 0.00029943991103209555, 0.33892133831977844], [0.02035590261220932, 0.0015163960633799434, 0.023009400814771652, 0.01885882019996643, 0.022646859288215637, 0.1507120132446289, 0.005922086536884308, 0.003945509437471628, 0.2660212516784668], [0.015694277361035347, 0.002930335234850645, 0.04194282367825508, 0.012919040396809578, 0.00666051497682929, 0.040622636675834656, 0.0610898919403553, 0.0027305837720632553, 0.35911235213279724], [0.023699460551142693, 0.005310104228556156, 0.3213992416858673, 0.01682310737669468, 0.022914046421647072, 0.0522843562066555, 0.0055830152705311775, 0.02809286303818226, 0.23498646914958954], [0.008026348426938057, 0.004190546460449696, 0.015968410298228264, 0.002014709636569023, 0.003019441617652774, 0.011358496733009815, 0.002573121339082718, 0.007406445685774088, 0.4667324125766754]], [[0.0007928471313789487, 0.0010190174216404557, 0.0001585514983162284, 5.1434584747767076e-05, 7.742998423054814e-05, 5.713174687116407e-05, 1.3919206139689777e-05, 0.00010720450518419966, 0.008091758005321026], [0.0010029723634943366, 0.04209662228822708, 0.7135932445526123, 0.002554489765316248, 0.004366864915937185, 0.007230494171380997, 0.0012529529631137848, 0.0035684374161064625, 0.11116693913936615], [0.0036516403779387474, 0.0472995862364769, 0.10641839355230331, 0.004822524264454842, 0.0033394680358469486, 0.005479796323925257, 0.0005949529586359859, 0.0038098131772130728, 0.40914592146873474], [0.00224355049431324, 0.20634308457374573, 0.15376883745193481, 0.02267998643219471, 0.05664416030049324, 0.17337311804294586, 0.052645668387413025, 0.016855567693710327, 0.1496681421995163], [0.00036538299173116684, 0.005143022630363703, 0.002708811778575182, 0.015038595534861088, 0.010681343264877796, 0.2885156273841858, 0.08330053091049194, 0.0021479318384081125, 0.2943871021270752], [0.0019862966146320105, 0.008307765237987041, 0.007513422053307295, 0.005484171211719513, 0.0022039590403437614, 0.010158870369195938, 0.020145241171121597, 0.008998398669064045, 0.46509525179862976], [0.0011545439483597875, 0.011793678626418114, 0.03125939145684242, 0.019059352576732635, 0.0045966277830302715, 0.5868287086486816, 0.015473531559109688, 0.009756382554769516, 0.15759997069835663], [0.007597621995955706, 0.02762264385819435, 0.0015580342151224613, 0.003504459047690034, 0.0018398012034595013, 0.0010083654196932912, 0.0016443085623905063, 0.022401709109544754, 0.4108135998249054], [0.015399283729493618, 0.018684647977352142, 0.014629903249442577, 0.00660094665363431, 0.004707104992121458, 0.0048784250393509865, 0.0035417857579886913, 0.009543202817440033, 0.4163462817668915]], [[0.008268628269433975, 0.03745492175221443, 0.09149684011936188, 0.02669140137732029, 0.02633247897028923, 0.011395346373319626, 0.007168611511588097, 0.03556559234857559, 0.26884135603904724], [0.016845375299453735, 0.0218306016176939, 0.036527182906866074, 0.011158578097820282, 0.009073068387806416, 0.014578185975551605, 0.0058029755018651485, 0.030473915860056877, 0.35241812467575073], [0.02414902113378048, 0.008548571728169918, 0.0028651379980146885, 0.003636774141341448, 0.0033346032723784447, 0.0073812128975987434, 0.005321365315467119, 0.012973500415682793, 0.34287354350090027], [0.03723059967160225, 0.02151254005730152, 0.01725471392273903, 0.005822973325848579, 0.006301756948232651, 0.024294724687933922, 0.007894588634371758, 0.04295893386006355, 0.3110547661781311], [0.031034693121910095, 0.010611320845782757, 0.008594815619289875, 0.002274045255035162, 0.0001026106983772479, 0.004529307130724192, 0.0015667160041630268, 0.07144632935523987, 0.32413357496261597], [0.01629139482975006, 0.006612601689994335, 0.013118643313646317, 0.005902975331991911, 0.0012208023108541965, 0.0009645412210375071, 0.0028060423210263252, 0.020595334470272064, 0.30390551686286926], [0.01867850311100483, 0.014446166343986988, 0.02077842876315117, 0.008636676706373692, 0.002688441891223192, 0.012393290176987648, 0.0021478869020938873, 0.03494225814938545, 0.3763873875141144], [0.02582516334950924, 0.01827569305896759, 0.010876113548874855, 0.012015820480883121, 0.014953626319766045, 0.013011423870921135, 0.007065214682370424, 0.054383695125579834, 0.3805626630783081], [0.05303102731704712, 0.03728470951318741, 0.048727720975875854, 0.025673650205135345, 0.021410545334219933, 0.030488714575767517, 0.020884282886981964, 0.06786485761404037, 0.23328326642513275]], [[0.015332890674471855, 0.08737398684024811, 0.13119736313819885, 0.11513181775808334, 0.08929683268070221, 0.14574450254440308, 0.015729151666164398, 0.06846041232347488, 0.1487916111946106], [0.00045611002133227885, 0.0272374264895916, 0.7365787029266357, 0.011382960714399815, 0.008532898500561714, 0.007291649002581835, 0.0002838654909282923, 0.0006219688220880926, 0.10372467339038849], [0.0010970134753733873, 0.008627325296401978, 0.0011478657834231853, 0.06937770545482635, 0.0007389226811937988, 0.001014365116134286, 0.00018403785361442715, 0.0004872368590440601, 0.46219727396965027], [0.0013795864069834352, 0.004270108882337809, 0.004544945899397135, 0.009267534129321575, 0.508529007434845, 0.10408904403448105, 0.0029551649931818247, 0.005478258710354567, 0.1773230880498886], [0.00012416482786647975, 0.0003148867399431765, 0.010896027088165283, 0.0013689488405361772, 0.03405134752392769, 0.8216419816017151, 0.0025357746053487062, 0.0009020163561217487, 0.06360246986150742], [0.0034128748811781406, 0.004842598456889391, 0.006920861080288887, 0.010850788094103336, 0.008168933913111687, 0.06358261406421661, 0.2975803017616272, 0.29324543476104736, 0.15307745337486267], [0.0007266945322044194, 0.0031308603938668966, 0.00010069265408674255, 0.0021271025761961937, 0.0002731928543653339, 0.0007131104357540607, 9.368578321300447e-05, 0.44086721539497375, 0.274982750415802], [0.00011903046106453985, 0.013572759926319122, 0.0006089909002184868, 0.00011892664042534307, 9.199198393616825e-05, 0.00032549016759730875, 0.00010943587403744459, 0.009040736593306065, 0.47148117423057556], [0.005189702846109867, 0.012265386991202831, 0.006382113788276911, 0.004765898920595646, 0.001068382989615202, 0.0024016504175961018, 0.0008469437016174197, 0.00228643836453557, 0.4743560254573822]], [[0.0034775647800415754, 0.03159920871257782, 0.05590981990098953, 0.09823749214410782, 0.10339411348104477, 0.07069417834281921, 0.005476534832268953, 0.06776495277881622, 0.2793913185596466], [0.008573872037231922, 0.05241953954100609, 0.07574405521154404, 0.13590601086616516, 0.09709564596414566, 0.0661124438047409, 0.021933045238256454, 0.2839035391807556, 0.107901930809021], [0.019055355340242386, 0.07649022340774536, 0.01817990653216839, 0.13498955965042114, 0.05024317279458046, 0.019877104088664055, 0.011236602440476418, 0.19218626618385315, 0.21583965420722961], [0.004294311162084341, 0.013928457163274288, 0.01173633337020874, 0.005180185195058584, 0.06110323593020439, 0.04316576197743416, 0.07968101650476456, 0.4290054440498352, 0.16713520884513855], [0.0016497024334967136, 0.022838836535811424, 0.006187095306813717, 0.00518178241327405, 0.009203464724123478, 0.03367726132273674, 0.02489609085023403, 0.27488264441490173, 0.3074115514755249], [0.0061516608111560345, 0.020987696945667267, 0.007116274442523718, 0.011045906692743301, 0.01160528976470232, 0.017344776540994644, 0.01732688955962658, 0.30683523416519165, 0.2953673005104065], [0.002840831410139799, 0.015938006341457367, 0.001819100696593523, 0.009596051648259163, 0.019610881805419922, 0.023622745648026466, 0.025773910805583, 0.2889944612979889, 0.3031492233276367], [0.00299728661775589, 0.016334213316440582, 0.006849631667137146, 0.007513015065342188, 0.01134041603654623, 0.008366581052541733, 0.0017930356552824378, 0.020179539918899536, 0.45790374279022217], [0.010281422175467014, 0.013918614946305752, 0.008130177855491638, 0.009474700316786766, 0.006027864292263985, 0.00677644694224, 0.005115867126733065, 0.023688988760113716, 0.4229169189929962]], [[0.004887207876890898, 0.09218461811542511, 0.15319420397281647, 0.07867231220006943, 0.058687757700681686, 0.04031192138791084, 0.02903556078672409, 0.0410614088177681, 0.23716753721237183], [0.009231239557266235, 0.1236560270190239, 0.022629527375102043, 0.05002673715353012, 0.037872832268476486, 0.03985787183046341, 0.02874763123691082, 0.28249600529670715, 0.18674787878990173], [0.01404890138655901, 0.10284174233675003, 0.08528555184602737, 0.04372251406311989, 0.03245510160923004, 0.040445420891046524, 0.02477218210697174, 0.06268306076526642, 0.2827574908733368], [0.006038513965904713, 0.03949063643813133, 0.005797176621854305, 0.09925459325313568, 0.02386895939707756, 0.032976455986499786, 0.017759665846824646, 0.18907178938388824, 0.2833767831325531], [0.002521602204069495, 0.016350949183106422, 0.0033416952937841415, 0.03995287045836449, 0.07000948488712311, 0.02433883026242256, 0.01780638098716736, 0.044615235179662704, 0.38533449172973633], [0.005210545379668474, 0.01654096134006977, 0.018878497183322906, 0.03578563034534454, 0.07948151230812073, 0.04479643702507019, 0.030459219589829445, 0.03408002853393555, 0.35390305519104004], [0.0027643081266433, 0.014556143432855606, 0.008377637714147568, 0.02064206823706627, 0.033564548939466476, 0.03545372560620308, 0.05153476819396019, 0.06944683939218521, 0.3785746693611145], [0.009665495716035366, 0.02650030516088009, 0.018499763682484627, 0.02206851914525032, 0.015454926528036594, 0.00791473314166069, 0.010234802030026913, 0.039958685636520386, 0.4194757342338562], [0.024570448324084282, 0.019677545875310898, 0.017218880355358124, 0.013285048305988312, 0.008420281112194061, 0.01549629494547844, 0.005629510153084993, 0.01922103762626648, 0.39717188477516174]], [[0.002128626685589552, 0.0001650748454267159, 4.5277676690602675e-05, 0.00023853186576161534, 3.4295742807444185e-05, 4.8937235987978056e-05, 2.1546569769270718e-05, 0.00044212714419700205, 0.01773514598608017], [0.017532993108034134, 0.02404000796377659, 0.022591181099414825, 0.17755717039108276, 0.1322290599346161, 0.11881161481142044, 0.025408482179045677, 0.0972733125090599, 0.16660676896572113], [0.015672365203499794, 0.01221366785466671, 0.024227742105722427, 0.010929143987596035, 0.010850447230041027, 0.03210141137242317, 0.0034414620604366064, 0.01649285852909088, 0.4273480772972107], [0.004369066096842289, 0.009990341030061245, 0.0031546952668577433, 0.01742328144609928, 0.13566173613071442, 0.11935246735811234, 0.0863148421049118, 0.0766659528017044, 0.25982850790023804], [0.001658593537285924, 0.010550912469625473, 0.004066081717610359, 0.016361169517040253, 0.06585894525051117, 0.08938878774642944, 0.04111625254154205, 0.029496224597096443, 0.36590638756752014], [0.009245432913303375, 0.02254329062998295, 0.007270926143974066, 0.009432904422283173, 0.014281123876571655, 0.028561009094119072, 0.008832152932882309, 0.04768485203385353, 0.4108608365058899], [0.0066557084210217, 0.03205523267388344, 0.009396317414939404, 0.035940494388341904, 0.13497395813465118, 0.1119065061211586, 0.04104582965373993, 0.06691551953554153, 0.26584550738334656], [0.04367454722523689, 0.030709803104400635, 0.016729312017560005, 0.01720341108739376, 0.00866479892283678, 0.008728940039873123, 0.005692319944500923, 0.03621846064925194, 0.2991501986980438], [0.018770838156342506, 0.01709742099046707, 0.015042035840451717, 0.0079502509906888, 0.004236956592649221, 0.00667175417765975, 0.003529805690050125, 0.009282759390771389, 0.38503390550613403]], [[0.0010247679892927408, 0.005229088943451643, 0.0010495471069589257, 0.0010058552725240588, 0.001038134447298944, 0.0009390295017510653, 0.0005392783787101507, 0.5504570007324219, 0.21954546868801117], [0.0012778689851984382, 0.009162486530840397, 0.0328250452876091, 0.003567345906049013, 0.002338143065571785, 0.0036760936491191387, 0.000227054872084409, 0.0017234844854101539, 0.4731438159942627], [0.0022763442248106003, 0.00740745710209012, 0.0025567414704710245, 0.011181683279573917, 0.000770330720115453, 0.001676621614024043, 0.0004511750303208828, 0.00041692942613735795, 0.48413601517677307], [0.0011705560609698296, 0.008067402988672256, 0.0026227105408906937, 0.0049263667315244675, 0.09535650908946991, 0.021231994032859802, 0.0010216492228209972, 0.003180760657414794, 0.4285867214202881], [0.0003494688426144421, 0.0019008400849997997, 0.0022555068135261536, 0.001176475896500051, 0.06195712462067604, 0.22238466143608093, 0.00451246602460742, 0.0016097957268357277, 0.35109052062034607], [0.0017486204160377383, 0.002781594404950738, 0.0014616771368309855, 0.0038021630607545376, 0.0022196206264197826, 0.032525621354579926, 0.21113842725753784, 0.027756614610552788, 0.35746777057647705], [0.0004453497240319848, 0.001446605776436627, 5.3005853260401636e-05, 0.000581208209041506, 0.000476109329611063, 0.00357592711225152, 0.0007324761827476323, 0.04861157760024071, 0.4700387120246887], [0.0003688672441057861, 0.005001384764909744, 0.0007465973030775785, 0.00025294339866377413, 9.366084850626066e-05, 0.0004360731691122055, 0.0001310702064074576, 0.017705680802464485, 0.4902704060077667], [0.01662318967282772, 0.02117673121392727, 0.006367746740579605, 0.007473534904420376, 0.002645942848175764, 0.004686752799898386, 0.0022847596555948257, 0.008850357495248318, 0.4445846974849701]], [[0.004602161236107349, 0.0025023785419762135, 0.0013971495209261775, 0.001910419319756329, 0.0006659245700575411, 0.0016302717849612236, 0.00043538844329304993, 0.0019634782802313566, 0.46796220541000366], [0.017191050574183464, 0.016913849860429764, 0.0344238206744194, 0.02109345607459545, 0.008878347463905811, 0.006207023281604052, 0.006159850396215916, 0.015799345448613167, 0.4227338135242462], [0.008392194285988808, 0.08104880154132843, 0.01639089733362198, 0.006375494878739119, 0.013459350913763046, 0.0038444167003035545, 0.0007482392829842865, 0.003799224039539695, 0.42443859577178955], [0.001486602588556707, 0.0023683635517954826, 0.011529610492289066, 0.007295703049749136, 0.0021177884191274643, 0.0013771061785519123, 0.0008855614578351378, 0.0035826507955789566, 0.48522916436195374], [0.0012847722973674536, 0.00261834729462862, 0.010125018656253815, 0.056709691882133484, 0.005156891420483589, 0.005446788854897022, 0.001008740160614252, 0.002050968585535884, 0.45814934372901917], [0.002733484609052539, 0.006255648098886013, 0.008446780033409595, 0.010157633572816849, 0.03459753096103668, 0.005892027635127306, 0.0007083110976964235, 0.0033653967548161745, 0.4613305628299713], [0.0028857793658971786, 0.007232632488012314, 0.007882855832576752, 0.05577976256608963, 0.04952952638268471, 0.02531002089381218, 0.0037053029518574476, 0.01959269307553768, 0.4113808870315552], [0.0034128515981137753, 0.003939729183912277, 0.003936275839805603, 0.010643941350281239, 0.0017725180368870497, 0.01996697299182415, 0.04185958579182625, 0.09607525169849396, 0.4100092351436615], [0.024587204679846764, 0.010375452227890491, 0.012562116608023643, 0.008037853054702282, 0.005945245269685984, 0.009264680556952953, 0.007508115377277136, 0.011149978265166283, 0.41665399074554443]], [[0.00048719378537498415, 0.0016921494388952851, 0.00040300501859746873, 0.00021417596144601703, 8.935183723224327e-05, 0.0030993835534900427, 0.0007810798706486821, 0.9193664193153381, 0.023055903613567352], [0.0027713614981621504, 0.08397112786769867, 0.05193910375237465, 0.016939187422394753, 0.0022041278425604105, 0.0029977767262607813, 0.003563196863979101, 0.00877379346638918, 0.41430044174194336], [0.0010921587236225605, 0.42779940366744995, 0.006578531581908464, 0.0014727141242474318, 0.0017975274240598083, 0.0010941035579890013, 6.023854439263232e-05, 5.6039738410618156e-05, 0.27791574597358704], [0.0006737246876582503, 0.008373060263693333, 0.12172280251979828, 0.004986476618796587, 0.0007816603174433112, 0.004545122850686312, 0.007766250520944595, 0.0001776995341060683, 0.42826735973358154], [0.0004160635871812701, 0.002634591655805707, 0.016594745218753815, 0.27470913529396057, 0.021080875769257545, 0.0028178137727081776, 0.0011507784947752953, 4.058673221152276e-05, 0.34122875332832336], [0.002481795847415924, 0.007451680954545736, 0.0084501001983881, 0.04968898370862007, 0.423367977142334, 0.009024492464959621, 0.0009456521947868168, 0.00020793182193301618, 0.24719859659671783], [0.0002650237292982638, 0.0014228214276954532, 0.005571195390075445, 0.017781691625714302, 0.04897824674844742, 0.3531229496002197, 0.0011916421353816986, 0.00011059032840421423, 0.2850455939769745], [0.0011373042361810803, 0.002236234489828348, 0.005291897803544998, 0.00887035671621561, 0.0009603105136193335, 0.14108602702617645, 0.305453360080719, 0.022427262738347054, 0.2565997242927551], [0.012357382103800774, 0.011543367058038712, 0.006351469550281763, 0.003990822937339544, 0.0031228475272655487, 0.008493022993206978, 0.002075342694297433, 0.014676825143396854, 0.44728443026542664]], [[0.005989899858832359, 0.09139303117990494, 0.026810016483068466, 0.0487980991601944, 0.019986731931567192, 0.16587631404399872, 0.04014173522591591, 0.1424010545015335, 0.15417440235614777], [0.00306897284463048, 0.01342796441167593, 0.021265119314193726, 0.004360045772045851, 0.0008838544599711895, 0.004062327556312084, 0.003115238156169653, 0.007174549158662558, 0.007799121551215649], [0.009499392472207546, 0.019101914018392563, 0.0457623191177845, 0.012029091827571392, 0.0009536636061966419, 0.0019731668289750814, 0.002190505852922797, 0.004658089019358158, 0.01986420340836048], [0.008867834694683552, 0.01500577200204134, 0.007340576499700546, 0.02920330874621868, 0.023288758471608162, 0.05022633820772171, 0.05796845257282257, 0.26596730947494507, 0.15862727165222168], [0.0036607510410249233, 0.006391186732798815, 0.0024480626452714205, 0.027321306988596916, 0.040052711963653564, 0.07521122694015503, 0.03156106919050217, 0.23935608565807343, 0.23948360979557037], [0.01754981093108654, 0.00525283720344305, 0.002489976119250059, 0.04242882505059242, 0.03509701415896416, 0.049582283943891525, 0.05015264078974724, 0.13408371806144714, 0.20574714243412018], [0.008984477259218693, 0.013667243532836437, 0.0026346510276198387, 0.03665647283196449, 0.01680963672697544, 0.024209333583712578, 0.03122330643236637, 0.2037796527147293, 0.19723962247371674], [0.01112351194024086, 0.01963193342089653, 0.0034421244636178017, 0.04310804605484009, 0.011914917267858982, 0.020744027569890022, 0.019482852891087532, 0.2168053239583969, 0.2290947139263153], [0.055878978222608566, 0.03644617646932602, 0.05720988288521767, 0.03407743200659752, 0.025291848927736282, 0.03501643240451813, 0.03312542662024498, 0.06352921575307846, 0.22881262004375458]]], [[[0.005297467112541199, 0.16783204674720764, 0.3675132393836975, 0.04940835013985634, 0.022031916305422783, 0.028231138363480568, 0.008519068360328674, 0.07967200875282288, 0.11491129547357559], [0.004766474943608046, 0.12688788771629333, 0.12460390478372574, 0.02893034555017948, 0.013653712347149849, 0.017232440412044525, 0.009274342097342014, 0.08878704905509949, 0.28614553809165955], [0.002550829667598009, 0.033975888043642044, 0.04040086641907692, 0.018888572230935097, 0.01103578507900238, 0.004325386602431536, 0.006601816974580288, 0.030958233401179314, 0.42200005054473877], [0.004832226317375898, 0.06285307556390762, 0.040567006915807724, 0.07684948295354843, 0.03633752837777138, 0.04217629134654999, 0.022437050938606262, 0.10074576735496521, 0.3018655776977539], [0.0035615579690784216, 0.023039570078253746, 0.03205538168549538, 0.027895918115973473, 0.045681148767471313, 0.01721591129899025, 0.010281956754624844, 0.059282220900058746, 0.38620585203170776], [0.008434980176389217, 0.04755670204758644, 0.054221782833337784, 0.02550545334815979, 0.04541904479265213, 0.017660027369856834, 0.021139560267329216, 0.06945955008268356, 0.3433700501918793], [0.00492860097438097, 0.07522725313901901, 0.037394050508737564, 0.040790509432554245, 0.05941012501716614, 0.014410487376153469, 0.01341920904815197, 0.06265387684106827, 0.33901768922805786], [0.005471080541610718, 0.1889464408159256, 0.07867632806301117, 0.06225866824388504, 0.021826161071658134, 0.023536572232842445, 0.027204491198062897, 0.04511084780097008, 0.2683037221431732], [0.01980801671743393, 0.008580448105931282, 0.014234697446227074, 0.00992380827665329, 0.01028298120945692, 0.0091600576415658, 0.005750687327235937, 0.018989911302924156, 0.420198917388916]], [[0.004420050885528326, 0.1266983151435852, 0.16905458271503448, 0.07324151694774628, 0.0168790090829134, 0.06080598756670952, 0.015546832233667374, 0.1149018406867981, 0.20513631403446198], [0.003970958758145571, 0.1215076893568039, 0.07590468972921371, 0.04486093670129776, 0.004666517488658428, 0.009503792971372604, 0.005105611868202686, 0.0201373640447855, 0.3544002175331116], [0.004103243350982666, 0.24471741914749146, 0.05287128686904907, 0.030641809105873108, 0.0027440302073955536, 0.00585038959980011, 0.0046775764785707, 0.008326535113155842, 0.31769245862960815], [0.004044024273753166, 0.23380111157894135, 0.15574638545513153, 0.019537171348929405, 0.015819698572158813, 0.03960483521223068, 0.08028294146060944, 0.03317998722195625, 0.2058725506067276], [0.002462410368025303, 0.04369528964161873, 0.07162564992904663, 0.09851499646902084, 0.038973867893218994, 0.017387233674526215, 0.004132942762225866, 0.00568706588819623, 0.3570542633533478], [0.0027360650710761547, 0.024508515372872353, 0.030636055395007133, 0.06254623830318451, 0.05546869710087776, 0.019308557733893394, 0.009677473455667496, 0.005218904465436935, 0.39305683970451355], [0.0016681656707078218, 0.010791630484163761, 0.032815542072057724, 0.07728085666894913, 0.23383007943630219, 0.0634358674287796, 0.0039275032468140125, 0.0025694130454212427, 0.286190390586853], [0.00348345167003572, 0.023145731538534164, 0.029527956619858742, 0.08934146165847778, 0.08331946283578873, 0.08211545646190643, 0.06002994626760483, 0.018208447843790054, 0.3024033308029175], [0.011426216922700405, 0.009049708023667336, 0.012192009948194027, 0.015569650568068027, 0.008999671787023544, 0.011024982668459415, 0.0033921634312719107, 0.012049413286149502, 0.43733328580856323]], [[0.005105744581669569, 0.0911070853471756, 0.020794546231627464, 0.06420891731977463, 0.009805277921259403, 0.04237595573067665, 0.013696841895580292, 0.03515808284282684, 0.1733161062002182], [0.006423650309443474, 0.05394363030791283, 0.17512978613376617, 0.43607503175735474, 0.030811473727226257, 0.07436548173427582, 0.019245577976107597, 0.08345205336809158, 0.05096716433763504], [0.018413737416267395, 0.1352156549692154, 0.15041641891002655, 0.17828987538814545, 0.06867485493421555, 0.09728401154279709, 0.035086825489997864, 0.11978700011968613, 0.08465901762247086], [0.003984613344073296, 0.11092612147331238, 0.14696677029132843, 0.06717951595783234, 0.026056475937366486, 0.06739041954278946, 0.029580779373645782, 0.05975344777107239, 0.2299407422542572], [0.002610620576888323, 0.05329253897070885, 0.07848281413316727, 0.03147653117775917, 0.02376451902091503, 0.05199495702981949, 0.015109510160982609, 0.030399631708860397, 0.3475860059261322], [0.005790722090750933, 0.05595386400818825, 0.07701115310192108, 0.11726585030555725, 0.03268156573176384, 0.04541349038481712, 0.046410590410232544, 0.049196332693099976, 0.26831933856010437], [0.0011707909870892763, 0.018569553270936012, 0.02420329675078392, 0.03415117412805557, 0.0223215464502573, 0.0692625343799591, 0.01225161924958229, 0.020756829530000687, 0.39523300528526306], [0.004729016218334436, 0.11458010226488113, 0.08157681673765182, 0.26571789383888245, 0.038655489683151245, 0.12337535619735718, 0.05719822645187378, 0.030496535822749138, 0.13191869854927063], [0.0020520559046417475, 0.0018406618619337678, 0.006071656476706266, 0.0019317823462188244, 0.001352562103420496, 0.006889020558446646, 0.0007401554612442851, 0.002467881189659238, 0.48450881242752075]], [[0.004559527616947889, 0.000788952864240855, 0.0025498527102172375, 0.00043330114567652345, 0.00045689012040384114, 0.0006891385419294238, 6.610320997424424e-05, 0.004297088366001844, 0.32817378640174866], [0.0119582274928689, 0.028980802744627, 0.0328555703163147, 0.2566097378730774, 0.02039879374206066, 0.040396884083747864, 0.01524291280657053, 0.05649041384458542, 0.25364869832992554], [0.005526285618543625, 0.014378851279616356, 0.061596766114234924, 0.00858283694833517, 0.0023474351037293673, 0.0147481644526124, 0.0024471022188663483, 0.01132805272936821, 0.43023717403411865], [0.0059042214415967464, 0.03491642326116562, 0.005537510383874178, 0.04781602323055267, 0.037210576236248016, 0.15455812215805054, 0.038282498717308044, 0.01857975497841835, 0.32544761896133423], [0.006990362424403429, 0.02298472821712494, 0.004950795788317919, 0.09477657079696655, 0.03258771449327469, 0.13215355575084686, 0.020249199122190475, 0.016518551856279373, 0.3308350741863251], [0.013341106474399567, 0.029822537675499916, 0.00875923316925764, 0.10356228053569794, 0.0186845101416111, 0.0708804503083229, 0.28577691316604614, 0.01769726350903511, 0.20928701758384705], [0.006526425946503878, 0.010434571653604507, 0.0012898542918264866, 0.12139632552862167, 0.012297768145799637, 0.06764482706785202, 0.007496734149754047, 0.023653080686926842, 0.37102803587913513], [0.0038711640518158674, 0.003608987433835864, 0.007837025448679924, 0.014432350173592567, 0.0029854201711714268, 0.016951048746705055, 0.0020319868344813585, 0.005767277907580137, 0.46739304065704346], [0.005330605898052454, 0.003307645907625556, 0.010106753557920456, 0.006291170604526997, 0.005423597060143948, 0.00964100006967783, 0.001972002675756812, 0.0021975080017000437, 0.456297367811203]], [[0.003370942547917366, 0.04881782457232475, 0.03230999782681465, 0.0675431564450264, 0.03540462628006935, 0.3920157849788666, 0.10692373663187027, 0.1143830195069313, 0.08525600284337997], [0.006229700054973364, 0.03315015882253647, 0.01571987196803093, 0.07278934866189957, 0.02622600458562374, 0.07043248414993286, 0.1663273721933365, 0.07251719385385513, 0.2675327956676483], [0.007965737022459507, 0.047513965517282486, 0.037971071898937225, 0.018080836161971092, 0.03044014796614647, 0.07502014189958572, 0.06291737407445908, 0.031013887375593185, 0.33791661262512207], [0.003741672495380044, 0.0804874524474144, 0.012497924268245697, 0.008312543854117393, 0.08569295704364777, 0.028727207332849503, 0.02198808826506138, 0.029839633032679558, 0.3631247878074646], [0.015540530905127525, 0.04487740620970726, 0.007292138412594795, 0.2619316875934601, 0.021228685975074768, 0.011393985711038113, 0.025789447128772736, 0.03199133276939392, 0.2898111343383789], [0.023224031552672386, 0.16655676066875458, 0.018678585067391396, 0.36063358187675476, 0.030334828421473503, 0.011313293129205704, 0.04599607363343239, 0.02245994284749031, 0.15696081519126892], [0.04010115936398506, 0.08965997397899628, 0.003936432301998138, 0.46130096912384033, 0.0445362813770771, 0.010296289809048176, 0.016315732151269913, 0.04378350451588631, 0.14492268860340118], [0.008242328651249409, 0.02511579543352127, 0.016535207629203796, 0.057554397732019424, 0.03570202365517616, 0.17274735867977142, 0.10733512789011002, 0.024890093132853508, 0.27348363399505615], [0.014842351898550987, 0.01327650435268879, 0.016149787232279778, 0.011800777167081833, 0.005971558857709169, 0.008221070282161236, 0.004974676296114922, 0.0046539511531591415, 0.4087497591972351]], [[0.003993752412497997, 0.0013385460479184985, 0.0047914679162204266, 0.003591368906199932, 0.005904020741581917, 0.02256336808204651, 0.0030767114367336035, 0.0019530488643795252, 0.1198609247803688], [0.008261207491159439, 0.027138326317071915, 0.15395762026309967, 0.012650390155613422, 0.06177956238389015, 0.28440341353416443, 0.034142471849918365, 0.023110302165150642, 0.171820729970932], [0.004771775100380182, 0.007082073949277401, 0.0314272902905941, 0.0036075180396437645, 0.004755150992423296, 0.023166656494140625, 0.0028421124443411827, 0.005856794770807028, 0.43119698762893677], [0.007425465155392885, 0.0703849047422409, 0.1774425506591797, 0.010957038961350918, 0.021544698625802994, 0.3787921965122223, 0.044837888330221176, 0.02039637416601181, 0.1019025593996048], [0.0029996430967003107, 0.026763509958982468, 0.11934029310941696, 0.008635981939733028, 0.010709026828408241, 0.36904826760292053, 0.009430112317204475, 0.010960892774164677, 0.19858476519584656], [0.005889039020985365, 0.019350072368979454, 0.046852149069309235, 0.0023042012471705675, 0.002209374448284507, 0.11938966810703278, 0.004886500537395477, 0.009063913486897945, 0.3805636167526245], [0.003942021634429693, 0.033246442675590515, 0.04661192744970322, 0.01026337593793869, 0.006899035535752773, 0.3677421510219574, 0.010542401112616062, 0.009582511149346828, 0.24771469831466675], [0.01034742034971714, 0.061718616634607315, 0.1919936239719391, 0.04037828743457794, 0.08423028886318207, 0.3948482275009155, 0.02267433889210224, 0.008270499296486378, 0.07766542583703995], [0.0008756560855545104, 0.0006081643514335155, 0.0023821000941097736, 0.00030475048697553575, 0.0004171414184384048, 0.0029615648090839386, 0.000215228705201298, 0.0004806671931874007, 0.4894660711288452]], [[0.017378585413098335, 0.016709530726075172, 0.02192264050245285, 0.006534617859870195, 0.007567672058939934, 0.010273301042616367, 0.001278425334021449, 0.007229949347674847, 0.2549307644367218], [0.004910493269562721, 0.044622451066970825, 0.5181931853294373, 0.034329064190387726, 0.005756134167313576, 0.00505676819011569, 0.0009837147081270814, 0.00718067679554224, 0.18384355306625366], [0.004916549194604158, 0.004587911535054445, 0.006970101036131382, 0.00858533289283514, 0.002715707290917635, 0.0028984439559280872, 0.0006683073006570339, 0.004440039861947298, 0.4792018234729767], [0.004823579452931881, 0.08613643795251846, 0.046431463211774826, 0.01404997706413269, 0.06901515275239944, 0.186106875538826, 0.1479484587907791, 0.04693770781159401, 0.1904032975435257], [0.0015614632284268737, 0.013726693578064442, 0.010440804995596409, 0.015902111306786537, 0.025265377014875412, 0.14347372949123383, 0.15251313149929047, 0.018069107085466385, 0.3025244176387787], [0.016508065164089203, 0.02882392331957817, 0.017055852338671684, 0.014521168544888496, 0.002405213424935937, 0.010217517614364624, 0.006835163105279207, 0.030444404110312462, 0.4195799231529236], [0.004602294880896807, 0.035371385514736176, 0.014008241705596447, 0.009971531108021736, 0.009580656886100769, 0.06832344830036163, 0.009846439585089684, 0.039506785571575165, 0.3995838761329651], [0.03437762334942818, 0.04071313515305519, 0.005630429834127426, 0.007909218780696392, 0.0022738506086170673, 0.0037646866403520107, 0.0008697047014720738, 0.01726190373301506, 0.3828907608985901], [0.0118757588788867, 0.010547298938035965, 0.015713268890976906, 0.004203309305012226, 0.002388142514973879, 0.005080929026007652, 0.0007666688761673868, 0.007001087535172701, 0.4492567479610443]], [[0.008913540281355381, 0.0006829314515925944, 0.0031281630508601665, 0.00030009192414581776, 0.00035089219454675913, 0.001759113627485931, 0.00012913417594972998, 0.002070555230602622, 0.12233410030603409], [0.02751176618039608, 0.024159034714102745, 0.023592820391058922, 0.1445832997560501, 0.09750015288591385, 0.202224999666214, 0.07653571665287018, 0.25673431158065796, 0.0577586367726326], [0.024475907906889915, 0.04074174165725708, 0.0396224707365036, 0.03859742730855942, 0.03222135081887245, 0.028866969048976898, 0.018479159101843834, 0.07570339739322662, 0.32481980323791504], [0.008884324692189693, 0.022125890478491783, 0.009825317189097404, 0.0071654715575277805, 0.09772569686174393, 0.27357006072998047, 0.15740445256233215, 0.07360731810331345, 0.17294158041477203], [0.018512140959501266, 0.017526833340525627, 0.024002408608794212, 0.008231657557189465, 0.023621628060936928, 0.05641362816095352, 0.013824665918946266, 0.046111639589071274, 0.3905484080314636], [0.01988168992102146, 0.011795835569500923, 0.01707560196518898, 0.01203068532049656, 0.014804729260504246, 0.021116729825735092, 0.008912310935556889, 0.042481083422899246, 0.4177875220775604], [0.018928244709968567, 0.030062800273299217, 0.009632110595703125, 0.012683519162237644, 0.03175576776266098, 0.050014324486255646, 0.02692190743982792, 0.14257201552391052, 0.3364681899547577], [0.020654411986470222, 0.009708467870950699, 0.01484447717666626, 0.005635581444948912, 0.005327051039785147, 0.0017440877854824066, 0.0007545474800281227, 0.0054176882840693, 0.4599474370479584], [0.011228637769818306, 0.005883045960217714, 0.016290275380015373, 0.006677302066236734, 0.0024471115320920944, 0.00513409823179245, 0.0019039304461330175, 0.005942048039287329, 0.43917980790138245]], [[0.0306701622903347, 0.1292310506105423, 0.10861409455537796, 0.08514351397752762, 0.10937508940696716, 0.0569685660302639, 0.05747164413332939, 0.021217547357082367, 0.11061517149209976], [0.03356469050049782, 0.21835041046142578, 0.02970985881984234, 0.03822793439030647, 0.02221178635954857, 0.018977049738168716, 0.010037008672952652, 0.08172161877155304, 0.17314298450946808], [0.0723181962966919, 0.036544524133205414, 0.02399425394833088, 0.01596604473888874, 0.016080062836408615, 0.01109517365694046, 0.007149949669837952, 0.08885099738836288, 0.3059309720993042], [0.01740470714867115, 0.059176620095968246, 0.021376149728894234, 0.03125555440783501, 0.014173476956784725, 0.05698207765817642, 0.009542708285152912, 0.02592284232378006, 0.2579106390476227], [0.02452060393989086, 0.01349394116550684, 0.007710483390837908, 0.0056761871092021465, 0.01003273669630289, 0.013025617226958275, 0.004285040311515331, 0.01440286822617054, 0.42611417174339294], [0.011455507948994637, 0.007416325155645609, 0.006022854708135128, 0.008872303180396557, 0.013097690418362617, 0.012978608720004559, 0.006898950319737196, 0.014621845446527004, 0.43546822667121887], [0.018834713846445084, 0.027964124456048012, 0.005101025104522705, 0.010365412570536137, 0.02215101383626461, 0.009694105945527554, 0.01132423896342516, 0.015313981100916862, 0.40941616892814636], [0.030829759314656258, 0.0648462176322937, 0.023091088980436325, 0.04657803475856781, 0.0401473343372345, 0.024723216891288757, 0.01378705631941557, 0.2512493431568146, 0.08023130148649216], [0.005665841978043318, 0.0019548346754163504, 0.003917010501027107, 0.0008303453214466572, 0.0008599025895819068, 0.0011831223964691162, 0.00021934133837930858, 0.004241488873958588, 0.48433801531791687]], [[0.014101995155215263, 0.0031319938134402037, 0.013989981263875961, 0.0014078596141189337, 0.0012245603138580918, 0.0025030383840203285, 0.0005961312563158572, 0.006321529857814312, 0.42616912722587585], [0.00667915353551507, 0.07592984288930893, 0.13586674630641937, 0.016810910776257515, 0.005916202906519175, 0.020199300721287727, 0.005483024753630161, 0.0344231016933918, 0.3477858603000641], [0.0013855311553925276, 0.008228878490626812, 0.01238162536174059, 0.0027839727699756622, 0.0006923131295479834, 0.0024311773013323545, 0.0007201561238616705, 0.02193097025156021, 0.47435352206230164], [0.002417391398921609, 0.3900287449359894, 0.36608269810676575, 0.010427892208099365, 0.003142738016322255, 0.007896148599684238, 0.006289131008088589, 0.018262505531311035, 0.0960964635014534], [0.0015184064395725727, 0.22997330129146576, 0.18070445954799652, 0.10410165041685104, 0.008204692974686623, 0.010274489410221577, 0.006799566559493542, 0.014073384925723076, 0.22097383439540863], [0.005328285042196512, 0.2500512897968292, 0.19683198630809784, 0.07495176047086716, 0.00790240429341793, 0.016132958233356476, 0.007773575372993946, 0.019797131419181824, 0.20896711945533752], [0.002569479402154684, 0.36234259605407715, 0.21984915435314178, 0.14997535943984985, 0.026156507432460785, 0.019880864769220352, 0.01249348558485508, 0.00593593530356884, 0.1001373901963234], [0.004533677361905575, 0.22503994405269623, 0.26184529066085815, 0.10608796030282974, 0.0166179146617651, 0.04023632034659386, 0.020721064880490303, 0.02675922028720379, 0.14761383831501007], [0.007221407722681761, 0.006796389352530241, 0.010733025148510933, 0.007969130761921406, 0.007599503733217716, 0.014522723853588104, 0.002767052734270692, 0.00809000339359045, 0.4498912990093231]], [[0.008094942197203636, 0.05347401648759842, 0.06868884712457657, 0.022479234263300896, 0.007062177639454603, 0.07778959721326828, 0.02728486992418766, 0.31556832790374756, 0.18579818308353424], [0.032820768654346466, 0.015053312294185162, 0.006902780849486589, 0.12183355540037155, 0.0030391982290893793, 0.009068361483514309, 0.004252078011631966, 0.09053013473749161, 0.3315392732620239], [0.016076579689979553, 0.17232777178287506, 0.026452945545315742, 0.014585222117602825, 0.00563916377723217, 0.016264697536826134, 0.0018672752194106579, 0.013093174435198307, 0.35499516129493713], [0.02365567535161972, 0.027602864429354668, 0.04038480296730995, 0.02793971821665764, 0.015309684909880161, 0.04333667829632759, 0.17577026784420013, 0.01426380779594183, 0.2972904443740845], [0.00926718395203352, 0.0078605767339468, 0.0025192447938024998, 0.12503410875797272, 0.03325778618454933, 0.003977193962782621, 0.00436778087168932, 0.003456494305282831, 0.4004097282886505], [0.011854424141347408, 0.010262026451528072, 0.0023927909787744284, 0.01831168681383133, 0.06493142992258072, 0.02948126196861267, 0.0030606219079345465, 0.006773980334401131, 0.41928762197494507], [0.0006215369794517756, 0.0013187429867684841, 0.0010648934403434396, 0.001685951603576541, 0.0028078299947082996, 0.329177588224411, 0.002374198054894805, 0.0010156488278880715, 0.328119158744812], [0.010330775752663612, 0.003101440379396081, 0.003557569347321987, 0.003753412514925003, 0.0019682685378938913, 0.03873402625322342, 0.032005567103624344, 0.012639900669455528, 0.43935567140579224], [0.003451764350757003, 0.004260295536369085, 0.011713149026036263, 0.001808184664696455, 0.0011895919451490045, 0.019062334671616554, 0.0011603202437981963, 0.007481859065592289, 0.4696280062198639]], [[0.011494450271129608, 0.1056753396987915, 0.14259448647499084, 0.01466490887105465, 0.003258237149566412, 0.01550604309886694, 0.003145223017781973, 0.02096683345735073, 0.13297244906425476], [0.2518675923347473, 0.12611256539821625, 0.0707661584019661, 0.025797918438911438, 0.011234050616621971, 0.016703082248568535, 0.0018467145273461938, 0.036212287843227386, 0.19849352538585663], [0.14094854891300201, 0.020768947899341583, 0.08483533561229706, 0.015197689644992352, 0.011387383565306664, 0.015814412385225296, 0.0017038810765370727, 0.01713261753320694, 0.3235255181789398], [0.14042551815509796, 0.05451280623674393, 0.04517815262079239, 0.11608359962701797, 0.017070801928639412, 0.03402253985404968, 0.00793897733092308, 0.040031250566244125, 0.23015020787715912], [0.10517188906669617, 0.02593086287379265, 0.01791229471564293, 0.016029169782996178, 0.026955334469676018, 0.025387370958924294, 0.0053213778883218765, 0.02726718597114086, 0.35265544056892395], [0.09310118108987808, 0.019886154681444168, 0.026790637522935867, 0.036002833396196365, 0.052248764783144, 0.0403936430811882, 0.010142670944333076, 0.03901827707886696, 0.28439417481422424], [0.17094743251800537, 0.03463995084166527, 0.022731846198439598, 0.03674470633268356, 0.030596012249588966, 0.05025780200958252, 0.028098659589886665, 0.087189219892025, 0.24808280169963837], [0.45542004704475403, 0.060510557144880295, 0.04547007009387016, 0.032123271375894547, 0.01229883637279272, 0.009476783685386181, 0.004891568794846535, 0.05004727095365524, 0.09917984902858734], [0.01808297075331211, 0.016369227319955826, 0.022413259372115135, 0.009024355560541153, 0.0037517249584198, 0.012545007281005383, 0.0015387294115498662, 0.007615323644131422, 0.42495277523994446]]], [[[0.004501211456954479, 0.004373828414827585, 0.009144347161054611, 0.0027684099040925503, 0.0025746675673872232, 0.0037479326128959656, 0.0016625919379293919, 0.05154859274625778, 0.4297069311141968], [0.005753401201218367, 0.01831168681383133, 0.02107814885675907, 0.004837893880903721, 0.0012881109723821282, 0.0030228637624531984, 0.0010686108144000173, 0.006525450851768255, 0.4655260443687439], [0.011743827722966671, 0.03520679846405983, 0.10114102065563202, 0.006715947296470404, 0.0017529180040583014, 0.0069766356609761715, 0.004334402736276388, 0.003187409369274974, 0.36732563376426697], [0.009491744451224804, 0.034993384033441544, 0.006564239040017128, 0.014083215035498142, 0.02153053693473339, 0.01987009309232235, 0.009973045438528061, 0.02964828535914421, 0.42288005352020264], [0.005613191518932581, 0.011162448674440384, 0.0057660117745399475, 0.0162003505975008, 0.02793758362531662, 0.019466856494545937, 0.007780468091368675, 0.0032483902759850025, 0.4482859969139099], [0.0017418719362467527, 0.0061788493767380714, 0.0014878829242661595, 0.012656177394092083, 0.035600848495960236, 0.022403134033083916, 0.3129439949989319, 0.005552809685468674, 0.2972131371498108], [0.0008726202067919075, 0.006295676808804274, 0.0007531626033596694, 0.010366065427660942, 0.08210226148366928, 0.008303712122142315, 0.022033119574189186, 0.003135386621579528, 0.4322756826877594], [0.0022380982991307974, 0.00966330710798502, 0.008955548517405987, 0.009663127362728119, 0.047767650336027145, 0.0670449361205101, 0.04050540551543236, 0.01018594391644001, 0.39040666818618774], [0.007743512745946646, 0.009111804887652397, 0.012172924354672432, 0.007813864387571812, 0.005727047566324472, 0.007207770366221666, 0.002514919266104698, 0.012152468785643578, 0.4359882175922394]], [[0.05500565841794014, 0.07907280325889587, 0.14519888162612915, 0.05313940346240997, 0.027378901839256287, 0.06464529037475586, 0.023832106962800026, 0.11844321340322495, 0.04383838176727295], [0.023144584149122238, 0.15949459373950958, 0.07547881454229355, 0.05163402855396271, 0.0034584200475364923, 0.01709667220711708, 0.0022526525426656008, 0.07899746298789978, 0.04438091069459915], [0.03018958494067192, 0.013904554769396782, 0.10633675754070282, 0.004693527240306139, 0.0010161870159208775, 0.008086013607680798, 0.0009161251364275813, 0.013961795717477798, 0.17537234723567963], [0.0322427973151207, 0.03888971731066704, 0.019525598734617233, 0.08670300990343094, 0.024935364723205566, 0.03739354386925697, 0.008489496074616909, 0.05931416153907776, 0.0636199340224266], [0.013958035036921501, 0.009518736973404884, 0.013694201596081257, 0.021240878850221634, 0.3290359377861023, 0.015161389485001564, 0.002235882682725787, 0.01667523942887783, 0.1552753448486328], [0.09022142738103867, 0.008172409608960152, 0.013705871067941189, 0.016927240416407585, 0.006855400279164314, 0.18984641134738922, 0.00844250526279211, 0.04138652980327606, 0.08040346950292587], [0.022063646465539932, 0.020291585475206375, 0.011164980009198189, 0.03502907603979111, 0.041304126381874084, 0.07303271442651749, 0.12347570061683655, 0.05339911952614784, 0.16995121538639069], [0.030267830938100815, 0.042354077100753784, 0.013915269635617733, 0.03567072004079819, 0.020955514162778854, 0.0346904918551445, 0.030345195904374123, 0.14292708039283752, 0.12766218185424805], [0.0001718346611596644, 0.00021719918004237115, 0.0034541180357337, 0.00024095996923279017, 0.00011667813669191673, 0.000967999454587698, 0.00010302486771252006, 0.0017862790264189243, 0.4941920042037964]], [[0.009983888827264309, 0.012479771859943867, 0.0379372164607048, 0.018908319994807243, 0.04736575111746788, 0.05656116455793381, 0.006177559960633516, 0.01817246899008751, 0.253245085477829], [0.0010962304659187794, 0.005900590680539608, 0.05890846997499466, 0.002672501839697361, 0.015961067751049995, 0.031188447028398514, 0.001254487899132073, 0.004985729698091745, 0.4210337996482849], [0.0026565995067358017, 0.006091269664466381, 0.29472246766090393, 0.004774508532136679, 0.011862169951200485, 0.06338194757699966, 0.00385458767414093, 0.011962421238422394, 0.27261829376220703], [0.002068099332973361, 0.0012092689285054803, 0.018525023013353348, 0.005870106630027294, 0.05795413628220558, 0.2288891077041626, 0.007025697268545628, 0.007116485852748156, 0.3098927438259125], [0.009873364120721817, 0.0037150296848267317, 0.013257404789328575, 0.004095037933439016, 0.2319595366716385, 0.2108556181192398, 0.006140767131000757, 0.01784897781908512, 0.228399395942688], [0.0036283480003476143, 0.0041855149902403355, 0.009509332478046417, 0.005139931570738554, 0.05514099821448326, 0.19311267137527466, 0.017713511362671852, 0.013732376508414745, 0.3297848701477051], [0.0017280016327276826, 0.0013096170732751489, 0.009638432413339615, 0.002139687305316329, 0.07050427794456482, 0.5646119713783264, 0.014436493627727032, 0.0034729260951280594, 0.16168776154518127], [0.0029530408792197704, 0.0016580215888097882, 0.036084700375795364, 0.0054904380813241005, 0.02332261949777603, 0.22864317893981934, 0.00553099624812603, 0.013828903436660767, 0.3274851441383362], [3.902724711224437e-05, 0.00020014696929138154, 0.006746484898030758, 0.00017261934408452362, 0.0008057331433519721, 0.004272001329809427, 0.00014293991262093186, 0.000420522439526394, 0.49143433570861816]], [[0.032056502997875214, 0.010396290570497513, 0.015295733697712421, 0.03466075658798218, 0.006166001781821251, 0.04971836879849434, 0.012483939528465271, 0.13631999492645264, 0.15887533128261566], [0.008995823562145233, 0.00992346927523613, 0.007500631734728813, 0.046528611332178116, 0.04820972681045532, 0.18998265266418457, 0.11824003607034683, 0.0372595377266407, 0.2562979757785797], [0.021411150693893433, 0.047703538089990616, 0.10232898592948914, 0.03733992949128151, 0.03766040876507759, 0.11897614598274231, 0.0506802462041378, 0.031268585473299026, 0.19380474090576172], [0.00624337000772357, 0.02810903638601303, 0.002788703888654709, 0.058533985167741776, 0.05198986083269119, 0.27157357335090637, 0.06384073197841644, 0.10072252154350281, 0.2027946263551712], [0.005281516350805759, 0.02992180362343788, 0.0028618823271244764, 0.14439712464809418, 0.03131960332393646, 0.2857397794723511, 0.11261887103319168, 0.09503091871738434, 0.14438088238239288], [0.003834928385913372, 0.10124709457159042, 0.005146465729922056, 0.15266816318035126, 0.06025151163339615, 0.12032583355903625, 0.2511679530143738, 0.04756077378988266, 0.12202106416225433], [0.0033996826969087124, 0.03380386531352997, 0.0007758723222650588, 0.12973277270793915, 0.017714232206344604, 0.16954386234283447, 0.08114208281040192, 0.0858435332775116, 0.23676303029060364], [0.008400858379900455, 0.02070557326078415, 0.015996700152754784, 0.06361551582813263, 0.017598766833543777, 0.13456398248672485, 0.050780609250068665, 0.040891122072935104, 0.2709446847438812], [0.009515166282653809, 0.0057467930018901825, 0.020698145031929016, 0.006951060611754656, 0.0016171589959412813, 0.005546164233237505, 0.0018599111353978515, 0.012142998166382313, 0.4494422674179077]], [[0.02201945334672928, 0.009027697145938873, 0.032331161201000214, 0.004459274001419544, 0.0021900285501033068, 0.02506580762565136, 0.005229596048593521, 0.6000418066978455, 0.05712622404098511], [0.007737127598375082, 0.030812488868832588, 0.031892113387584686, 0.08731178194284439, 0.005368366371840239, 0.05073761194944382, 0.014418342150747776, 0.036519549787044525, 0.3461238741874695], [0.02537836693227291, 0.31254807114601135, 0.04768180102109909, 0.06509914249181747, 0.01019293162971735, 0.015864742919802666, 0.01885341852903366, 0.021906644105911255, 0.10669095069169998], [0.006006432697176933, 0.03231984004378319, 0.038529787212610245, 0.028598928824067116, 0.006937342695891857, 0.030993791297078133, 0.00580917252227664, 0.008805856108665466, 0.41546109318733215], [0.004309828858822584, 0.008982242085039616, 0.015822498127818108, 0.08436593413352966, 0.02391568012535572, 0.019350839778780937, 0.011883500963449478, 0.009931501932442188, 0.4088864326477051], [0.004350624978542328, 0.022907787933945656, 0.016605200245976448, 0.13308945298194885, 0.09927629679441452, 0.06143169105052948, 0.06401731818914413, 0.009242607280611992, 0.2913244962692261], [0.0017430573934689164, 0.0021533863618969917, 0.004625838715583086, 0.04571322724223137, 0.07076537609100342, 0.017948703840374947, 0.010505865328013897, 0.004608344752341509, 0.420003741979599], [0.0021737252827733755, 0.006099942605942488, 0.024855613708496094, 0.017203547060489655, 0.019096961244940758, 0.13573649525642395, 0.03677177056670189, 0.01638028770685196, 0.35558435320854187], [0.003539199708029628, 0.002544875955209136, 0.007256964221596718, 0.004046475049108267, 0.0044435495510697365, 0.0037248609587550163, 0.0018972872057929635, 0.004992651753127575, 0.470051109790802]], [[0.034211575984954834, 0.01681220531463623, 0.009847846813499928, 0.009349208325147629, 0.0041638887487351894, 0.005393133033066988, 0.0010565099073573947, 0.017047423869371414, 0.0670618861913681], [0.02383306808769703, 0.055035825818777084, 0.016329841688275337, 0.32319092750549316, 0.14824272692203522, 0.14989987015724182, 0.04199032858014107, 0.061328768730163574, 0.04090506210923195], [0.04003510624170303, 0.058568406850099564, 0.05922171100974083, 0.09497296810150146, 0.09406023472547531, 0.10919816046953201, 0.03708501160144806, 0.03633036091923714, 0.13635589182376862], [0.013670033775269985, 0.046428851783275604, 0.01472416426986456, 0.10707675665616989, 0.13724064826965332, 0.2865857481956482, 0.09979114681482315, 0.07673534750938416, 0.08371677249670029], [0.009469017386436462, 0.02597261592745781, 0.008779006078839302, 0.021283557638525963, 0.02966986410319805, 0.040575433522462845, 0.009046480059623718, 0.01946263574063778, 0.41349610686302185], [0.012364711612462997, 0.042831432074308395, 0.009253389202058315, 0.021675603464245796, 0.06050897762179375, 0.06864707916975021, 0.015883387997746468, 0.031479611992836, 0.3503115177154541], [0.013573982752859592, 0.034206684678792953, 0.007922335527837276, 0.014327924698591232, 0.042687542736530304, 0.05377575382590294, 0.007645609322935343, 0.025050124153494835, 0.3941844701766968], [0.027498319745063782, 0.029279883950948715, 0.0084079559892416, 0.029261551797389984, 0.029109962284564972, 0.05856119468808174, 0.011591793037950993, 0.03410026803612709, 0.16831956803798676], [0.007430814206600189, 0.0014702703338116407, 0.004582446999847889, 0.0035377428866922855, 0.0019018020248040557, 0.0042159054428339005, 0.0006589196273125708, 0.0028507858514785767, 0.4762049913406372]], [[0.007342258933931589, 0.005289183929562569, 0.057965364307165146, 0.01359894871711731, 0.016347892582416534, 0.024260323494672775, 0.01266200840473175, 0.0067443023435771465, 0.2716454863548279], [0.004718608222901821, 0.004804551135748625, 0.03644603490829468, 0.0021660723723471165, 0.00405998807400465, 0.009271413087844849, 0.0009630289860069752, 0.002065699314698577, 0.408748060464859], [0.017590979114174843, 0.012374886311590672, 0.0575079619884491, 0.005325912963598967, 0.004765295423567295, 0.029956623911857605, 0.0030257082544267178, 0.006685345899313688, 0.23306594789028168], [0.007738214917480946, 0.020861180499196053, 0.04431042820215225, 0.01072751171886921, 0.00828919280320406, 0.054776716977357864, 0.009719755500555038, 0.011707751080393791, 0.3009161055088043], [0.009736539795994759, 0.0378955714404583, 0.07339980453252792, 0.008573864586651325, 0.0188324935734272, 0.043614309281110764, 0.010713892057538033, 0.018319837749004364, 0.32341569662094116], [0.009431334212422371, 0.01969774253666401, 0.045395780354738235, 0.004923742730170488, 0.005302988458424807, 0.021677237004041672, 0.004910940304398537, 0.010395796038210392, 0.355645090341568], [0.0025329156778752804, 0.008143888786435127, 0.025551708415150642, 0.0038154004141688347, 0.011496835388243198, 0.03676953911781311, 0.010166124440729618, 0.004093665163964033, 0.42380449175834656], [0.003795252414420247, 0.006939374841749668, 0.016827022656798363, 0.003939308691769838, 0.007899114862084389, 0.009253655560314655, 0.003670887090265751, 0.008351124823093414, 0.4310227334499359], [0.00024200878397095948, 0.0002893012424465269, 0.001712887198664248, 0.00018770343740470707, 0.00026283087208867073, 0.0012016755063086748, 0.00010922306682914495, 0.0004782282921951264, 0.4944605827331543]], [[0.011225278489291668, 0.08637942373752594, 0.3434559106826782, 0.016438249498605728, 0.008100219070911407, 0.07892300188541412, 0.01237565465271473, 0.008576193824410439, 0.19029225409030914], [0.010478172451257706, 0.02222963236272335, 0.2032272219657898, 0.02222554199397564, 0.004256505519151688, 0.027198852971196175, 0.0010530843865126371, 0.01999310776591301, 0.2806755304336548], [0.006719703786075115, 0.017140096053481102, 0.036309871822595596, 0.008806989528238773, 0.0024871204514056444, 0.013140728697180748, 0.0009257051278837025, 0.012525665573775768, 0.40423715114593506], [0.006439415737986565, 0.15789085626602173, 0.2814522385597229, 0.015390543267130852, 0.009777168743312359, 0.1501360535621643, 0.009111810475587845, 0.01897352747619152, 0.1511683613061905], [0.005585191771388054, 0.02367774397134781, 0.03565746918320656, 0.014873327687382698, 0.005642132367938757, 0.1677893102169037, 0.015058684162795544, 0.017713716253638268, 0.3489764928817749], [0.005259981378912926, 0.013628759421408176, 0.017593633383512497, 0.012642270885407925, 0.006528645753860474, 0.06890452653169632, 0.004953328520059586, 0.018367042765021324, 0.415364533662796], [0.0042573800310492516, 0.053442616015672684, 0.06325071305036545, 0.008720970712602139, 0.005359509028494358, 0.1580357402563095, 0.0036830517929047346, 0.012660630978643894, 0.32914820313453674], [0.029304970055818558, 0.003726552939042449, 0.008575376123189926, 0.007524827029556036, 0.0017882914980873466, 0.0252279881387949, 0.0022730655036866665, 0.003500640392303467, 0.38705939054489136], [0.0016340221045538783, 0.0016920161433517933, 0.0028635046910494566, 0.001346999080851674, 0.0004376067372504622, 0.002504469593986869, 0.0003215808537788689, 0.0013427583035081625, 0.4913976490497589]], [[0.004802422598004341, 0.04327290505170822, 0.4406757652759552, 0.01974538527429104, 0.03706861659884453, 0.12726028263568878, 0.01102712657302618, 0.060926999896764755, 0.09759535640478134], [0.024918969720602036, 0.0366438664495945, 0.03995693847537041, 0.01301480084657669, 0.013736829161643982, 0.06795073300600052, 0.008111495524644852, 0.02620220184326172, 0.37319836020469666], [0.019929062575101852, 0.013913124799728394, 0.07033034414052963, 0.00717996247112751, 0.005102917551994324, 0.014738578349351883, 0.0020695424173027277, 0.008932841941714287, 0.41734403371810913], [0.0049225445836782455, 0.03331628441810608, 0.029413171112537384, 0.016821231693029404, 0.031009098514914513, 0.576980471611023, 0.021983487531542778, 0.014413699507713318, 0.13102410733699799], [0.004226659424602985, 0.023975584656000137, 0.010864896699786186, 0.012158861383795738, 0.021514398977160454, 0.3112958073616028, 0.008783627301454544, 0.00891265831887722, 0.29474860429763794], [0.004654037766158581, 0.02252720482647419, 0.0074753486551344395, 0.011750046163797379, 0.02255662903189659, 0.13071687519550323, 0.009193984791636467, 0.009196486324071884, 0.38766252994537354], [0.004152404144406319, 0.014231369830667973, 0.009062220342457294, 0.008333803154528141, 0.026055270805954933, 0.3651374280452728, 0.01039719209074974, 0.004701258148998022, 0.2770838141441345], [0.021857190877199173, 0.02221902832388878, 0.022329362109303474, 0.025610214099287987, 0.04088062420487404, 0.5305039286613464, 0.034370992332696915, 0.012073270976543427, 0.1182389184832573], [0.0017337921308353543, 0.0030861664563417435, 0.01025660801678896, 0.005325845908373594, 0.004743407946079969, 0.0043726046569645405, 0.0013555297628045082, 0.005132235586643219, 0.476494699716568]], [[0.013117813505232334, 0.008098403923213482, 0.010422585532069206, 0.010187382809817791, 0.004713926464319229, 0.006223341450095177, 0.0013900540070608258, 0.0031612920574843884, 0.278816282749176], [0.01857866160571575, 0.0334869883954525, 0.19755996763706207, 0.061560168862342834, 0.013692032545804977, 0.007148916833102703, 0.0007388664525933564, 0.006307287607342005, 0.3185655176639557], [0.029682936146855354, 0.029349101707339287, 0.07013234496116638, 0.059802062809467316, 0.008564185351133347, 0.02735242433845997, 0.003952173516154289, 0.012651151977479458, 0.3595016896724701], [0.0077959210611879826, 0.028146687895059586, 0.01009969413280487, 0.04137321561574936, 0.023168833926320076, 0.024428246542811394, 0.004944842774420977, 0.016011575236916542, 0.4117893576622009], [0.0023616384714841843, 0.0025101813953369856, 0.001981954788789153, 0.017642617225646973, 0.016993114724755287, 0.0628584772348404, 0.026610571891069412, 0.010981774888932705, 0.42253628373146057], [0.014427495189011097, 0.010286967270076275, 0.006035214755684137, 0.027604013681411743, 0.008493300527334213, 0.041072405874729156, 0.06672386825084686, 0.022101007401943207, 0.3874407708644867], [0.026588501408696175, 0.0037885294295847416, 0.0010902700014412403, 0.015293297357857227, 0.00928205344825983, 0.021101998165249825, 0.00847663078457117, 0.06032055616378784, 0.4168863594532013], [0.045723702758550644, 0.033884722739458084, 0.003029413754120469, 0.012300671078264713, 0.0076831188052892685, 0.0032175045926123857, 0.00438816100358963, 0.01879998855292797, 0.20053091645240784], [0.00950670801103115, 0.006360482424497604, 0.006913545075803995, 0.006201249547302723, 0.002522949827834964, 0.001999116037040949, 0.001546689891256392, 0.0027654708828777075, 0.4664774537086487]], [[0.0014217473799362779, 0.4327671527862549, 0.12439285218715668, 0.15220020711421967, 0.029902581125497818, 0.11447388678789139, 0.046448271721601486, 0.07468608766794205, 0.007738347630947828], [0.0025363736785948277, 0.03541402518749237, 0.052925657480955124, 0.014418115839362144, 0.01893611252307892, 0.054413557052612305, 0.01979811303317547, 0.035387106239795685, 0.3818458914756775], [0.0027015546802431345, 0.006700333673506975, 0.043405238538980484, 0.003792858449742198, 0.0036352125462144613, 0.036592476069927216, 0.005310469307005405, 0.012500829994678497, 0.43899205327033997], [0.00540897436439991, 0.10127042233943939, 0.05591277405619621, 0.033410366624593735, 0.020175721496343613, 0.06627439707517624, 0.016734622418880463, 0.03981173783540726, 0.327175110578537], [0.004826727323234081, 0.04516058787703514, 0.04640071094036102, 0.013324998319149017, 0.01076861098408699, 0.040280282497406006, 0.010642425157129765, 0.01808926649391651, 0.40218549966812134], [0.0008109406917355955, 0.013139616698026657, 0.015460602939128876, 0.009605919010937214, 0.011555064469575882, 0.028167374432086945, 0.006068364717066288, 0.0039143855683505535, 0.45500457286834717], [0.0017788712866604328, 0.02897207997739315, 0.02017119899392128, 0.01585901714861393, 0.01995980739593506, 0.02352507971227169, 0.007356503512710333, 0.004465160891413689, 0.4384469985961914], [0.006350433919578791, 0.11474436521530151, 0.027969256043434143, 0.15098193287849426, 0.11883902549743652, 0.1403542459011078, 0.1263056844472885, 0.009755566716194153, 0.14019428193569183], [0.0005767003167420626, 0.007012310437858105, 0.009128198958933353, 0.0030264779925346375, 0.00312613183632493, 0.0033963299356400967, 0.0015526911010965705, 0.003860238939523697, 0.4834290146827698]], [[0.0054621268063783646, 0.010775531642138958, 0.010822338983416557, 0.0013390656094998121, 0.00243496079929173, 0.00045186441275291145, 0.0019211984472349286, 0.002204312477260828, 0.39071816205978394], [0.005540849175304174, 0.007657076232135296, 0.005999905988574028, 0.0009645955287851393, 0.0008379403734579682, 0.0003889902727678418, 0.00033875813824124634, 0.004134131595492363, 0.4738336503505707], [0.015541911125183105, 0.0068945568054914474, 0.02948879264295101, 0.002800110261887312, 0.0017331276321783662, 0.0015955963172018528, 0.0009080298477783799, 0.003400082467123866, 0.4429281949996948], [0.004030806943774223, 0.0023721149191260338, 0.004427744075655937, 0.004131880588829517, 0.0042313700541853905, 0.0003483241889625788, 0.0005506584420800209, 0.0012992547126486897, 0.46475949883461], [0.0045615751296281815, 0.000625844462774694, 0.0009384976583532989, 0.001587355276569724, 0.052836935967206955, 0.0010898241307586432, 0.0009035097900778055, 0.0004805387288797647, 0.4556460380554199], [0.003065963974222541, 0.00030861934646964073, 0.00260927714407444, 0.0003185052773915231, 0.0013434437569230795, 0.011038393713533878, 0.0030781454406678677, 0.0016100298380479217, 0.47997310757637024], [0.003937758971005678, 0.0009687698911875486, 0.0025841405149549246, 0.00105827406514436, 0.0017189363716170192, 0.0025435893330723047, 0.04865572601556778, 0.0019228439778089523, 0.45894601941108704], [0.0012521537719294429, 0.00136866036336869, 0.0011505135335028172, 0.00061587686650455, 0.0010837919544428587, 0.00032870942959561944, 0.0015233196318149567, 0.009442169219255447, 0.4743685722351074], [0.0008236513822339475, 0.000444251811131835, 0.0021578792948275805, 0.0002792058512568474, 0.0002449047169648111, 0.00033739025820977986, 0.0001881759671960026, 0.0008484295685775578, 0.495647668838501]]], [[[0.005732377991080284, 0.3514588177204132, 0.2964673340320587, 0.06345114856958389, 0.012595510110259056, 0.025448625907301903, 0.0077896867878735065, 0.04899793863296509, 0.039190519601106644], [0.0005831412854604423, 0.005897948984056711, 0.005931115243583918, 0.002548228483647108, 0.00184024462942034, 0.0020030317828059196, 0.0011322355130687356, 0.00522688589990139, 0.485613614320755], [0.006051767151802778, 0.025484049692749977, 0.014306224882602692, 0.018225982785224915, 0.022202614694833755, 0.018330147489905357, 0.02057119645178318, 0.05229593440890312, 0.3860950767993927], [0.0022077858448028564, 0.006235931068658829, 0.008990605361759663, 0.0028674642089754343, 0.0013845654902979732, 0.0013887172099202871, 0.0011729495599865913, 0.0041052792221307755, 0.483561247587204], [0.0005427972064353526, 0.002994760638102889, 0.002723918529227376, 0.0009661453659646213, 0.001360641443170607, 0.0007815246935933828, 0.0007203997811302543, 0.0019217494409531355, 0.4933844804763794], [0.0010129687143489718, 0.007765775080770254, 0.004310577176511288, 0.0019061594503000379, 0.0028310746420174837, 0.003936925902962685, 0.0023409686982631683, 0.007053268142044544, 0.48249849677085876], [0.0002752021246124059, 0.0020299421157687902, 0.0017969366163015366, 0.000838438339997083, 0.00126757996622473, 0.0009055556729435921, 0.001063876785337925, 0.0012842414434999228, 0.4949764311313629], [0.006205603946000338, 0.02894463762640953, 0.03254945948719978, 0.006254755426198244, 0.008885656483471394, 0.01554496306926012, 0.010654150508344173, 0.019698526710271835, 0.4201321303844452], [0.01651868410408497, 0.201225146651268, 0.10876559466123581, 0.07697559893131256, 0.0358927920460701, 0.05594801902770996, 0.053777437657117844, 0.042877811938524246, 0.08794908225536346]], [[0.012525881640613079, 0.04398968070745468, 0.02303292043507099, 0.028735680505633354, 0.05447067320346832, 0.02095254696905613, 0.013736053369939327, 0.014820651151239872, 0.2374809831380844], [0.0024372937623411417, 0.134346604347229, 0.07361678034067154, 0.02018393948674202, 0.02191765606403351, 0.012914825230836868, 0.012561282142996788, 0.010130390524864197, 0.32136479020118713], [0.0022742741275578737, 0.01674554869532585, 0.1313985139131546, 0.0064729610458016396, 0.009539332240819931, 0.04080741107463837, 0.0053956652991473675, 0.0058334264904260635, 0.3513639271259308], [0.004033764358609915, 0.0934067890048027, 0.017098961398005486, 0.23926609754562378, 0.025055259466171265, 0.02209092676639557, 0.017848674207925797, 0.02969762496650219, 0.2323877215385437], [0.0027077263221144676, 0.02353522926568985, 0.010064241476356983, 0.014403527602553368, 0.46600544452667236, 0.029868287965655327, 0.027744952589273453, 0.0025174468755722046, 0.18897020816802979], [0.0008461983525194228, 0.012745287269353867, 0.012791633605957031, 0.010122657753527164, 0.020089758560061455, 0.3043075501918793, 0.02599339187145233, 0.002321284031495452, 0.2897864878177643], [0.0022274802904576063, 0.024129878729581833, 0.018129782751202583, 0.01143691223114729, 0.02954508364200592, 0.059192776679992676, 0.5413843989372253, 0.005082998424768448, 0.1447935700416565], [0.0007924042292870581, 0.004342886619269848, 0.0147187989205122, 0.001271353685297072, 0.005935266613960266, 0.0057135592214763165, 0.0023225632030516863, 0.008487299084663391, 0.44882526993751526], [0.017075542360544205, 0.04165670648217201, 0.09032362699508667, 0.04640958830714226, 0.05838962271809578, 0.12241877615451813, 0.04562798887491226, 0.03744145482778549, 0.06261170655488968]], [[0.02255246601998806, 0.016537176445126534, 0.19021019339561462, 0.05639459565281868, 0.010413448326289654, 0.009903442114591599, 0.01795833371579647, 0.03141360729932785, 0.014352582395076752], [0.0051886700093746185, 0.05415106564760208, 0.015387012623250484, 0.007505962625145912, 0.0021845127921551466, 0.023573867976665497, 0.005414517596364021, 0.08547712862491608, 0.38570675253868103], [0.006280183792114258, 0.457738995552063, 0.07577209174633026, 0.026058992370963097, 0.014405171386897564, 0.016351960599422455, 0.0043957652524113655, 0.007036853581666946, 0.15638478100299835], [0.011539377272129059, 0.09949619323015213, 0.1040518581867218, 0.05344853177666664, 0.009582693688571453, 0.2608286142349243, 0.050707630813121796, 0.0085514010861516, 0.16759783029556274], [0.02973167598247528, 0.07690531015396118, 0.047165174037218094, 0.2296413630247116, 0.0742604061961174, 0.10394757241010666, 0.019687842577695847, 0.0037941480986773968, 0.18572740256786346], [0.003935239743441343, 0.032638661563396454, 0.013407550752162933, 0.024493277072906494, 0.05912860110402107, 0.15248402953147888, 0.022822679951786995, 0.00414193095639348, 0.3344057500362396], [0.00023041841632220894, 0.0014078803360462189, 0.0013588329311460257, 0.0012348921736702323, 0.0034998420160263777, 0.9151123762130737, 0.006135380361229181, 0.0001292256492888555, 0.03173745423555374], [0.004210618790239096, 0.010797660797834396, 0.03953735530376434, 0.031317777931690216, 0.012942219153046608, 0.18070651590824127, 0.22081008553504944, 0.0014434935292229056, 0.2072792649269104], [0.03075684793293476, 0.050250958651304245, 0.10121431946754456, 0.05514764413237572, 0.044641293585300446, 0.047108590602874756, 0.030974021181464195, 0.08693362772464752, 0.03872528299689293]], [[0.04554121941328049, 0.009199986234307289, 0.0063534872606396675, 0.010801888071000576, 0.001969326054677367, 0.01824416220188141, 0.027314908802509308, 0.008589928038418293, 0.3695932626724243], [0.006388530135154724, 0.011096514761447906, 0.015440454706549644, 0.010007442906498909, 0.00395668251439929, 0.029812294989824295, 0.010998351499438286, 0.005796106997877359, 0.44774049520492554], [0.009414441883563995, 0.026494426652789116, 0.06022033840417862, 0.017888369038701057, 0.014413007535040379, 0.018028074875473976, 0.01071783434599638, 0.015700355172157288, 0.3943559229373932], [0.0088624507188797, 0.016770992428064346, 0.008489384315907955, 0.0279600378125906, 0.010298780165612698, 0.1716640442609787, 0.12188942730426788, 0.007638775743544102, 0.3034001886844635], [0.006954554468393326, 0.007336656097322702, 0.0025394682306796312, 0.005201582331210375, 0.005734742619097233, 0.03356388956308365, 0.00523295346647501, 0.00269103329628706, 0.4635368585586548], [0.0073263514786958694, 0.01873069256544113, 0.0031164493411779404, 0.008841820992529392, 0.11086704581975937, 0.11712416261434555, 0.029057204723358154, 0.004409668035805225, 0.3437116742134094], [0.002099486766383052, 0.0037424040492624044, 0.001077237888239324, 0.0023204409517347813, 0.01250382699072361, 0.7251942157745361, 0.022480551153421402, 0.0012375111691653728, 0.11314277350902557], [0.014805400744080544, 0.005912791937589645, 0.009252442978322506, 0.011960674077272415, 0.014281476847827435, 0.07294703274965286, 0.09243258833885193, 0.01328662782907486, 0.35832977294921875], [0.06075502187013626, 0.04756705090403557, 0.024505222216248512, 0.041119206696748734, 0.055909715592861176, 0.04023066163063049, 0.08756592869758606, 0.047822505235672, 0.10716397315263748]], [[0.008072351105511189, 0.0970616415143013, 0.0479985736310482, 0.08865855634212494, 0.0073208580724895, 0.09594166278839111, 0.012942367233335972, 0.09502130001783371, 0.0848035141825676], [0.00029199241544120014, 0.002026236616075039, 0.009927725419402122, 0.0008937967359088361, 0.0009448904893361032, 0.002929836278781295, 0.0007016254239715636, 0.0032919365912675858, 0.48573508858680725], [0.02352430857717991, 0.01939789205789566, 0.026672454550862312, 0.014020427130162716, 0.02560737356543541, 0.023188726976513863, 0.01013965718448162, 0.026953069493174553, 0.3564034402370453], [0.0004150836612097919, 0.0019953183364123106, 0.0048773144371807575, 0.0008740141638554633, 0.0006392838549800217, 0.0035667086485773325, 0.0012115498539060354, 0.0022593247704207897, 0.4888775646686554], [0.0003148639516439289, 0.001826586900278926, 0.00446000462397933, 0.0005542636499740183, 0.0010195644572377205, 0.003765629604458809, 0.0013322030426934361, 0.0013798534637317061, 0.4904574155807495], [0.0014843936078250408, 0.008924184367060661, 0.02247716300189495, 0.003506989683955908, 0.0028947722166776657, 0.010724671185016632, 0.0046979463659226894, 0.005851625464856625, 0.45741426944732666], [2.7402362320572138e-05, 0.0003943797782994807, 0.001930851023644209, 0.00012959442392457277, 0.00015123074990697205, 0.0006607579416595399, 0.0002049604954663664, 0.00030978998984210193, 0.4977753162384033], [0.004204594995826483, 0.007253636140376329, 0.031624481081962585, 0.003278732532635331, 0.002680302830412984, 0.025581251829862595, 0.003637828165665269, 0.01038562972098589, 0.415348082780838], [0.02602558396756649, 0.11502430588006973, 0.13907042145729065, 0.08255820721387863, 0.03488663583993912, 0.05803551897406578, 0.033057402819395065, 0.10341104865074158, 0.02057592198252678]], [[0.04480824992060661, 0.03297186642885208, 0.03367864340543747, 0.025074781849980354, 0.022815730422735214, 0.061785053461790085, 0.016387585550546646, 0.06054631993174553, 0.16260534524917603], [0.0010800542077049613, 0.0026196117978543043, 0.00236563035286963, 0.002990636508911848, 0.003610211657360196, 0.008666242472827435, 0.0030203580390661955, 0.0036620297469198704, 0.48523062467575073], [0.0028387606143951416, 0.010509196668863297, 0.014097252860665321, 0.011465372517704964, 0.009642244316637516, 0.017164289951324463, 0.018239587545394897, 0.009173719212412834, 0.4459141194820404], [0.006845681928098202, 0.024603400379419327, 0.023730771616101265, 0.008230338804423809, 0.011099331080913544, 0.034567300230264664, 0.006372840143740177, 0.023801378905773163, 0.42740878462791443], [0.002326486399397254, 0.014244666323065758, 0.007843371480703354, 0.006786344572901726, 0.001599332899786532, 0.01107979565858841, 0.0037854891270399094, 0.004203256219625473, 0.4735513925552368], [0.001679741544649005, 0.021424351260066032, 0.017392024397850037, 0.006670094095170498, 0.003000916913151741, 0.011584553867578506, 0.0038224360905587673, 0.007737676613032818, 0.4624473452568054], [0.0007834460702724755, 0.008080177940428257, 0.007475530728697777, 0.0026598579715937376, 0.002991017885506153, 0.00956282950937748, 0.0011644703336060047, 0.002033824101090431, 0.4824669659137726], [0.014767533168196678, 0.052761223167181015, 0.044683732092380524, 0.0628630742430687, 0.07557976245880127, 0.22296178340911865, 0.054364241659641266, 0.011514107696712017, 0.18531815707683563], [0.0330275297164917, 0.08639538288116455, 0.0546003133058548, 0.0877411738038063, 0.06216031312942505, 0.0857500210404396, 0.0941241979598999, 0.05902399495244026, 0.052815992385149]], [[0.011812104843556881, 0.0302154291421175, 0.018373887985944748, 0.018068216741085052, 0.08424177020788193, 0.013353501446545124, 0.0195289496332407, 0.03867679834365845, 0.3335633873939514], [0.006903189234435558, 0.6584064364433289, 0.016305482015013695, 0.03119552694261074, 0.004088892601430416, 0.0051860446110367775, 0.00527097936719656, 0.008094911463558674, 0.10295216739177704], [0.0017404663376510143, 0.013024003244936466, 0.0638813003897667, 0.003166348207741976, 0.0034793063532561064, 0.007856602780520916, 0.0028877202421426773, 0.0008187157800421119, 0.4356599450111389], [0.006643806584179401, 0.06759169697761536, 0.02867521345615387, 0.2508712410926819, 0.024001769721508026, 0.008677888661623001, 0.013167690485715866, 0.004075413569808006, 0.2602134346961975], [0.00528071029111743, 0.012586739845573902, 0.012856184504926205, 0.02790392003953457, 0.26394325494766235, 0.010174043476581573, 0.013306442648172379, 0.001976189436390996, 0.288747102022171], [0.00331202638335526, 0.005231511313468218, 0.019232284277677536, 0.004627323243767023, 0.0071184998378157616, 0.17192494869232178, 0.03073861449956894, 0.008179274387657642, 0.3352595865726471], [0.004287909250706434, 0.007329930085688829, 0.007054599467664957, 0.013850883580744267, 0.017220720648765564, 0.01657622680068016, 0.3182325065135956, 0.014877156354486942, 0.27220070362091064], [0.0003735290083568543, 0.003015767550095916, 0.0038555413484573364, 0.000892238283995539, 0.0009258562931790948, 0.0008289494435302913, 0.0013859763275831938, 0.015143233351409435, 0.4687168598175049], [0.00581139512360096, 0.07754470407962799, 0.0825522243976593, 0.05138538032770157, 0.13005641102790833, 0.15425322949886322, 0.08939588069915771, 0.04182581230998039, 0.04756972938776016]], [[0.0019849087111651897, 0.08855611830949783, 0.2910389006137848, 0.04698808118700981, 0.009876053780317307, 0.05755433812737465, 0.012332109734416008, 0.1292228102684021, 0.10991544276475906], [0.0006276286439970136, 0.007423233240842819, 0.013901297003030777, 0.016408072784543037, 0.0030015490483492613, 0.006943728309124708, 0.0038856177125126123, 0.018543429672718048, 0.46218937635421753], [0.00610472122207284, 0.00838943850249052, 0.042543087154626846, 0.010234312154352665, 0.007001273334026337, 0.014032558538019657, 0.008933191187679768, 0.04775406792759895, 0.4150524437427521], [0.0012368588941171765, 0.011893616989254951, 0.02590339630842209, 0.00960689689964056, 0.008803652599453926, 0.01800016686320305, 0.015136396512389183, 0.024688607081770897, 0.4402122497558594], [0.0011976668611168861, 0.010508932173252106, 0.010565870441496372, 0.0056952061131596565, 0.0018003394361585379, 0.006022824440151453, 0.0022222239058464766, 0.003512006951496005, 0.4780665636062622], [0.003102764254435897, 0.005295590963214636, 0.02131984569132328, 0.0018823794089257717, 0.0015874860109761357, 0.006617260631173849, 0.0009350915206596255, 0.0032096952199935913, 0.47591397166252136], [0.0005954334046691656, 0.0034797864500433207, 0.006197834853082895, 0.0016791351372376084, 0.003445325419306755, 0.004933944437652826, 0.0012294044718146324, 0.001167881884612143, 0.4882079064846039], [0.013242204673588276, 0.036340516060590744, 0.05910816788673401, 0.03873424232006073, 0.04125585779547691, 0.05659734085202217, 0.023972276598215103, 0.034682974219322205, 0.3300987184047699], [0.01587531715631485, 0.08117248117923737, 0.15265178680419922, 0.11273135244846344, 0.06255227327346802, 0.06127280369400978, 0.09383638203144073, 0.06239417940378189, 0.034661296755075455]], [[0.023521874099969864, 0.13887333869934082, 0.020319197326898575, 0.08378175646066666, 0.023465899750590324, 0.07573378086090088, 0.057652510702610016, 0.4154953360557556, 0.027856072410941124], [0.0007662298157811165, 0.018135299906134605, 0.011443358846008778, 0.009041102603077888, 0.002577859442681074, 0.018399721011519432, 0.0027045251335948706, 0.009740771725773811, 0.4632851481437683], [0.002366321859881282, 0.10162416845560074, 0.031625375151634216, 0.0313563346862793, 0.010172008536756039, 0.04109764099121094, 0.009599265642464161, 0.024887461215257645, 0.36734747886657715], [0.0004695113457273692, 0.06625770032405853, 0.026233257725834846, 0.024390406906604767, 0.0022858772426843643, 0.012010159902274609, 0.003493283875286579, 0.009133169427514076, 0.4276075065135956], [0.0003092829720117152, 0.0526396781206131, 0.013272004202008247, 0.01004702877253294, 0.006345823872834444, 0.01564851403236389, 0.006943189539015293, 0.009577170945703983, 0.4424114525318146], [0.0005457582883536816, 0.010768098756670952, 0.008021951653063297, 0.006373038049787283, 0.011970696970820427, 0.017858441919088364, 0.012966259382665157, 0.0038098637014627457, 0.4635918438434601], [0.00016606459394097328, 0.00496461009606719, 0.002816763473674655, 0.004834216553717852, 0.008082536049187183, 0.0035655887331813574, 0.0043146051466465, 0.0007516908226534724, 0.4852212071418762], [0.009132195264101028, 0.0876205638051033, 0.03505895659327507, 0.1058327928185463, 0.03761347383260727, 0.24760237336158752, 0.08190281689167023, 0.044790688902139664, 0.15226894617080688], [0.024940278381109238, 0.11619962751865387, 0.0494433231651783, 0.1186584085226059, 0.037716783583164215, 0.08430974185466766, 0.06299067288637161, 0.14452670514583588, 0.03058304637670517]], [[0.15641790628433228, 0.019472215324640274, 0.015247542411088943, 0.013404838740825653, 0.01967945322394371, 0.016380392014980316, 0.0046415734104812145, 0.023537883535027504, 0.1628110259771347], [0.017557820305228233, 0.007604199927300215, 0.059121958911418915, 0.0214568879455328, 0.009003871120512486, 0.022746462374925613, 0.003168415045365691, 0.0034808821510523558, 0.4249211549758911], [0.039214447140693665, 0.03568170592188835, 0.03868825361132622, 0.13644924759864807, 0.035623498260974884, 0.03159964829683304, 0.016966361552476883, 0.049791209399700165, 0.28974586725234985], [0.004575551021844149, 0.016080105677247047, 0.005927844904363155, 0.010002032853662968, 0.024588558822870255, 0.036488890647888184, 0.011798032559454441, 0.018629098311066628, 0.43407586216926575], [0.001959542278200388, 0.0025327231269329786, 0.0030955239199101925, 0.0028464850038290024, 0.016441889107227325, 0.06613459438085556, 0.03430316969752312, 0.00459279352799058, 0.4327998161315918], [0.037771280854940414, 0.005310892593115568, 0.007604767568409443, 0.010762638412415981, 0.0161296259611845, 0.05960553511977196, 0.06713485717773438, 0.025119103491306305, 0.3785499632358551], [0.007608044892549515, 0.0012920108856633306, 0.0018191651906818151, 0.004531044512987137, 0.0038887360133230686, 0.011789485812187195, 0.00818362832069397, 0.01839609630405903, 0.47020336985588074], [0.027132174000144005, 0.025193430483341217, 0.011770728044211864, 0.014639303088188171, 0.002379937097430229, 0.02090044878423214, 0.00795811414718628, 0.006066437810659409, 0.4164263904094696], [0.10680033266544342, 0.06203277036547661, 0.03412771224975586, 0.05610813945531845, 0.07080619037151337, 0.0797877162694931, 0.08210408687591553, 0.06484805792570114, 0.07475332170724869]], [[0.013176705688238144, 0.005161315202713013, 0.016505764797329903, 0.007590837310999632, 0.0016054105944931507, 0.005887800361961126, 0.003234897507354617, 0.006028172094374895, 0.12390077859163284], [0.021443398669362068, 0.028819488361477852, 0.026590051129460335, 0.044059544801712036, 0.015567255206406116, 0.03343338891863823, 0.005174342542886734, 0.04697897657752037, 0.36972150206565857], [0.05235188826918602, 0.07659924030303955, 0.020960111171007156, 0.10546980053186417, 0.034934885799884796, 0.08055611699819565, 0.039510879665613174, 0.052212055772542953, 0.20576702058315277], [0.012753496877849102, 0.0335836187005043, 0.004521586932241917, 0.02164275012910366, 0.013727124780416489, 0.051030516624450684, 0.0207216776907444, 0.039971765130758286, 0.39101681113243103], [0.005798910744488239, 0.010359423235058784, 0.005070396699011326, 0.007865171879529953, 0.016487397253513336, 0.0580795481801033, 0.0337136834859848, 0.013551490381360054, 0.41953566670417786], [0.00393800251185894, 0.0039023335557430983, 0.0009665403049439192, 0.001600784482434392, 0.00348343956284225, 0.009006298147141933, 0.0024692006409168243, 0.014226838015019894, 0.4755876958370209], [0.0021674446761608124, 0.0010239852126687765, 0.0005559400306083262, 0.0006442322046495974, 0.0038170935586094856, 0.0078084697015583515, 0.001562552759423852, 0.006016518454998732, 0.48701512813568115], [0.4883216917514801, 0.013175233267247677, 0.0066181062720716, 0.016256779432296753, 0.010362658649682999, 0.023859072476625443, 0.004718733951449394, 0.009193960577249527, 0.13308556377887726], [0.037800997495651245, 0.040572162717580795, 0.05631931871175766, 0.049554742872714996, 0.01427275687456131, 0.03410729393362999, 0.025968428701162338, 0.03067152015864849, 0.06917910277843475]], [[0.02594617009162903, 0.01230535376816988, 0.04566877335309982, 0.014121030457317829, 0.0072386907413601875, 0.005428669974207878, 0.0038478251080960035, 0.010239314287900925, 0.23248372972011566], [0.011459922417998314, 0.05789390951395035, 0.01801096275448799, 0.04013005644083023, 0.02041839435696602, 0.01897086761891842, 0.021832888945937157, 0.024326378479599953, 0.38134026527404785], [0.018261579796671867, 0.09114214777946472, 0.16401386260986328, 0.0360700897872448, 0.012661230750381947, 0.016071118414402008, 0.017078490927815437, 0.04107184335589409, 0.2622493505477905], [0.026431027799844742, 0.07835447788238525, 0.051074057817459106, 0.050566960126161575, 0.009912065230309963, 0.015570848248898983, 0.012985849753022194, 0.028361964970827103, 0.34938952326774597], [0.005289734341204166, 0.015012618154287338, 0.016920097172260284, 0.010304713621735573, 0.009516424499452114, 0.015370819717645645, 0.008242348209023476, 0.00926060788333416, 0.4524623155593872], [0.0011316104792058468, 0.003120411653071642, 0.007049898616969585, 0.001835630158893764, 0.00404246523976326, 0.011740568093955517, 0.0031257460359483957, 0.0027404569555073977, 0.4807789921760559], [0.0010782276513054967, 0.0035341789480298758, 0.003947503864765167, 0.0023307425435632467, 0.003992586396634579, 0.0067064277827739716, 0.0033561058808118105, 0.0038338955491781235, 0.48468706011772156], [0.0256809014827013, 0.054203908890485764, 0.0433545745909214, 0.039166368544101715, 0.02749815210700035, 0.025256246328353882, 0.029343988746404648, 0.10214278101921082, 0.284392774105072], [0.06152637302875519, 0.08685845136642456, 0.07395375519990921, 0.10133867710828781, 0.05650842934846878, 0.07045254856348038, 0.05788238346576691, 0.08833659440279007, 0.036645665764808655]]]], \\\"left_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\"]}, {\\\"name\\\": \\\"Sentence B -\\u003e Sentence B\\\", \\\"attn\\\": [[[[0.10870131105184555, 0.009214590303599834, 0.08462074398994446, 0.16989478468894958, 0.10135233402252197, 0.0493972972035408, 0.021988535299897194, 0.06349364668130875], [0.08645223826169968, 0.01271748449653387, 0.05253123864531517, 0.23775863647460938, 0.19187404215335846, 0.03741445392370224, 0.04090726003050804, 0.09690098464488983], [0.12232493609189987, 0.03188175708055496, 0.029339047148823738, 0.258259117603302, 0.06193901225924492, 0.05281803756952286, 0.04957601800560951, 0.041303928941488266], [0.11713917553424835, 0.02564113773405552, 0.09544307738542557, 0.08414534479379654, 0.06279367953538895, 0.09147869795560837, 0.0592023991048336, 0.21101054549217224], [0.042492810636758804, 0.032632045447826385, 0.07592606544494629, 0.03713872283697128, 0.09492141753435135, 0.13550794124603271, 0.0456867590546608, 0.13845527172088623], [0.05720151960849762, 0.018984483554959297, 0.030409062281250954, 0.04165385663509369, 0.22854256629943848, 0.036919306963682175, 0.029538234695792198, 0.2104029804468155], [0.0962849110364914, 0.023986605927348137, 0.16346056759357452, 0.16955357789993286, 0.08608866482973099, 0.01938687078654766, 0.017461832612752914, 0.11794460564851761], [1.0826789775819634e-06, 6.497870799648808e-06, 1.7855295482149813e-06, 8.23706250230316e-06, 8.747030619815632e-07, 1.802810402296018e-05, 4.153688496444374e-05, 0.999880313873291]], [[0.11308518052101135, 0.12625354528427124, 0.13461105525493622, 0.031244609504938126, 0.04327597841620445, 0.02240343578159809, 0.02710208110511303, 0.041078414767980576], [0.47171226143836975, 0.06813553720712662, 0.018448758870363235, 0.08434359729290009, 0.014303343370556831, 0.0060247816145420074, 0.005617797840386629, 0.027213556692004204], [0.05265144631266594, 0.2417776733636856, 0.045061975717544556, 0.0782533809542656, 0.02548084780573845, 0.006170281209051609, 0.04199046269059181, 0.06262443959712982], [0.06737424433231354, 0.14551088213920593, 0.2167421579360962, 0.19757318496704102, 0.0646800771355629, 0.01695670373737812, 0.057373709976673126, 0.049619704484939575], [0.029862700030207634, 0.04841899126768112, 0.539275050163269, 0.09850410372018814, 0.06712836027145386, 0.02949517033994198, 0.03715115785598755, 0.036787163466215134], [0.023142937570810318, 0.025920597836375237, 0.27663901448249817, 0.18025699257850647, 0.2660350501537323, 0.0187570471316576, 0.030158380046486855, 0.06147802993655205], [0.4382510483264923, 0.06007954105734825, 0.023391874507069588, 0.11213231086730957, 0.010536914691329002, 0.006349750328809023, 0.006076218094676733, 0.288510262966156], [0.0031625269912183285, 0.0070969704538583755, 0.011805384419858456, 0.01725119724869728, 0.000560812943149358, 0.0009160325862467289, 0.006874747108668089, 0.9489404559135437]], [[0.00783507525920868, 0.09679113328456879, 0.024453289806842804, 0.02132745087146759, 0.07777412235736847, 0.033756352961063385, 0.03557467460632324, 0.036254674196243286], [0.04908713325858116, 0.0825323835015297, 0.050595663487911224, 0.042241185903549194, 0.030702881515026093, 0.06782406568527222, 0.041330575942993164, 0.12438603490591049], [0.04354572296142578, 0.07399876415729523, 0.08210265636444092, 0.07860209047794342, 0.07368873804807663, 0.0557437464594841, 0.08313024044036865, 0.04106597602367401], [0.016926975920796394, 0.16411443054676056, 0.05676984786987305, 0.009580451063811779, 0.07468540966510773, 0.05725482851266861, 0.030714837834239006, 0.05273762717843056], [0.02641052007675171, 0.12195944786071777, 0.10071049630641937, 0.024074766784906387, 0.030658595263957977, 0.06795603036880493, 0.03804737329483032, 0.06280133873224258], [0.01597260683774948, 0.17404040694236755, 0.07636553794145584, 0.05074698477983475, 0.05537647008895874, 0.02398299053311348, 0.03783499076962471, 0.04169907048344612], [0.05305246263742447, 0.17477799952030182, 0.09143199026584625, 0.07000453770160675, 0.08606479316949844, 0.054692089557647705, 0.04827326163649559, 0.06029229983687401], [0.03453819453716278, 0.2534266412258148, 0.16793431341648102, 0.06967359781265259, 0.09238817542791367, 0.048972662538290024, 0.11378097534179688, 0.01999727636575699]], [[0.07474858313798904, 0.07118715345859528, 0.06656379997730255, 0.1229143962264061, 0.14376245439052582, 0.06306520104408264, 0.2047741562128067, 0.1685420423746109], [0.5319936871528625, 0.012461146339774132, 0.05339212715625763, 0.05954696238040924, 0.008004698902368546, 0.004466962534934282, 0.02240138314664364, 0.2884272336959839], [0.23742806911468506, 0.20335489511489868, 0.03166976571083069, 0.06257409602403641, 0.04587889090180397, 0.029524097219109535, 0.09712150692939758, 0.25460922718048096], [0.18211369216442108, 0.07259315997362137, 0.1317169964313507, 0.10589143633842468, 0.16349096596240997, 0.06330373883247375, 0.0840979814529419, 0.10710986703634262], [0.07818956673145294, 0.06174234300851822, 0.0683279037475586, 0.06935539096593857, 0.03648192062973976, 0.06454432755708694, 0.4329819679260254, 0.02518923580646515], [0.07364416122436523, 0.06945107132196426, 0.06775133311748505, 0.11162839829921722, 0.13545583188533783, 0.07084579020738602, 0.26834627985954285, 0.07951385527849197], [0.3170816898345947, 0.023111121729016304, 0.028089255094528198, 0.06838614493608475, 0.013917909003794193, 0.007903464138507843, 0.006222649943083525, 0.5089946389198303], [0.26299434900283813, 0.023124611005187035, 0.26984673738479614, 0.04125869646668434, 0.009962305426597595, 0.014961829409003258, 0.06820107251405716, 0.29970061779022217]], [[0.04521472379565239, 0.17385147511959076, 0.033378779888153076, 0.1641552746295929, 0.09768208861351013, 0.034414567053318024, 0.025280149653553963, 0.029695887118577957], [0.5432901978492737, 0.055639464408159256, 0.05342431366443634, 0.13850365579128265, 0.031961891800165176, 0.02108975686132908, 0.0324493832886219, 0.03641004487872124], [0.07546987384557724, 0.09363347291946411, 0.007881388999521732, 0.2760334312915802, 0.07278186082839966, 0.12219052761793137, 0.06377334892749786, 0.10580787062644958], [0.182551309466362, 0.07738935947418213, 0.14221714437007904, 0.0836256742477417, 0.08769398927688599, 0.13632802665233612, 0.13100314140319824, 0.04767309129238129], [0.06772533059120178, 0.017187099903821945, 0.031427476555109024, 0.14749610424041748, 0.015205055475234985, 0.46340328454971313, 0.025704599916934967, 0.07542426139116287], [0.016765698790550232, 0.015321548096835613, 0.02908072993159294, 0.006833572406321764, 0.7107034921646118, 0.0033725458197295666, 0.04717245325446129, 0.07036957889795303], [0.10786101967096329, 0.1786084622144699, 0.014133759774267673, 0.3131258189678192, 0.08723433315753937, 0.022915994748473167, 0.01567789539694786, 0.20677857100963593], [0.0387464240193367, 0.02254108153283596, 0.14072473347187042, 0.04632231220602989, 0.027118079364299774, 0.2534995377063751, 0.23111724853515625, 0.16146792471408844]], [[0.08855277299880981, 0.05956091731786728, 0.09327330440282822, 0.04130667448043823, 0.04341350495815277, 0.027116846293210983, 0.16473986208438873, 0.07293197512626648], [0.038782838732004166, 0.03816986456513405, 0.07811594009399414, 0.03940173611044884, 0.05490882694721222, 0.07377290725708008, 0.07111425697803497, 0.08394961059093475], [0.05391332507133484, 0.10950876027345657, 0.05121465027332306, 0.039336107671260834, 0.030011426657438278, 0.04578227922320366, 0.0755179226398468, 0.12302945554256439], [0.06311662495136261, 0.09550552070140839, 0.1489153504371643, 0.009929455816745758, 0.027894139289855957, 0.018275555223226547, 0.10901713371276855, 0.11275924742221832], [0.09932108223438263, 0.06320645660161972, 0.07227468490600586, 0.04815056174993515, 0.021891184151172638, 0.09003005176782608, 0.03844022750854492, 0.05508424714207649], [0.050591692328453064, 0.03648265078663826, 0.1787043809890747, 0.03039979189634323, 0.04410983622074127, 0.05463092029094696, 0.06780829280614853, 0.03362071514129639], [0.022231614217162132, 0.058685000985860825, 0.03210814297199249, 0.06691708415746689, 0.06509841978549957, 0.020255399867892265, 0.10095085948705673, 0.17894619703292847], [0.0034911194816231728, 0.01755925640463829, 0.0030430404003709555, 0.0007656373200006783, 0.0003766310110222548, 0.0003307466395199299, 0.0024407983291894197, 0.36305415630340576]], [[0.016943028196692467, 0.011061662808060646, 0.0012298504589125514, 0.005625784397125244, 0.002090521389618516, 0.0013406253419816494, 0.0009446584153920412, 0.00019689225882757455], [0.059228263795375824, 0.02252165786921978, 0.0065796407870948315, 0.004541346337646246, 0.0007519465289078653, 0.0016162429237738252, 0.0010733185335993767, 0.0003823531442321837], [0.13180671632289886, 0.051571331918239594, 0.003083230461925268, 0.011088494211435318, 0.0018862361321225762, 0.0010846008080989122, 0.0023257946595549583, 0.0004966087872162461], [0.23595298826694489, 0.2675606906414032, 0.0608065202832222, 0.05850319191813469, 0.003931818064302206, 0.004518663976341486, 0.0020161629654467106, 0.000395295734051615], [0.1697213053703308, 0.24143975973129272, 0.15802733600139618, 0.2151937186717987, 0.014083472080528736, 0.01092943362891674, 0.0060703023336827755, 0.0017515834188088775], [0.025678327307105064, 0.1431700438261032, 0.10860763490200043, 0.4547676742076874, 0.08180113136768341, 0.01281964872032404, 0.006552339531481266, 0.0031466681975871325], [0.011800726875662804, 0.3264195919036865, 0.08330187201499939, 0.3033777177333832, 0.18165475130081177, 0.04365663230419159, 0.01224252674728632, 0.003031285712495446], [0.0072792391292750835, 0.1268681287765503, 0.05033908411860466, 0.2587333619594574, 0.24454623460769653, 0.17340511083602905, 0.07920872420072556, 0.012613956816494465]], [[0.02696382813155651, 0.21083782613277435, 0.15946076810359955, 0.1944255530834198, 0.0941864550113678, 0.0901217982172966, 0.03318466991186142, 0.09731460362672806], [0.06708011776208878, 0.01935456693172455, 0.09393268078565598, 0.09119968116283417, 0.13621564209461212, 0.17743781208992004, 0.19761450588703156, 0.03479741886258125], [0.034138623625040054, 0.06695550680160522, 0.0347055122256279, 0.2647591233253479, 0.07598547637462616, 0.38272085785865784, 0.029523678123950958, 0.023565147072076797], [0.06593973934650421, 0.017517302185297012, 0.05015934631228447, 0.1409766674041748, 0.14035001397132874, 0.21759778261184692, 0.18434959650039673, 0.11757706105709076], [0.06164643540978432, 0.04712852090597153, 0.023603985086083412, 0.07742704451084137, 0.03240324556827545, 0.11892727762460709, 0.23681142926216125, 0.1061699315905571], [0.03335360810160637, 0.007960778661072254, 0.051070135086774826, 0.06304628401994705, 0.0462176539003849, 0.036121029406785965, 0.5187029242515564, 0.18887564539909363], [0.041254106909036636, 0.0301947221159935, 0.033651288598775864, 0.12942668795585632, 0.09611938893795013, 0.17631614208221436, 0.12154346704483032, 0.21739977598190308], [0.05029366910457611, 0.04462410509586334, 0.048011474311351776, 0.18008168041706085, 0.028116412460803986, 0.07472699880599976, 0.13831168413162231, 0.0734918862581253]], [[0.033943936228752136, 0.03359381482005119, 0.02261863648891449, 0.08283568173646927, 0.07018949091434479, 0.04248347505927086, 0.16127561032772064, 0.020356111228466034], [0.06607325375080109, 0.08509712666273117, 0.045208368450403214, 0.056096915155649185, 0.04158082604408264, 0.04673530161380768, 0.08800392597913742, 0.04409627243876457], [0.03394602984189987, 0.06617578864097595, 0.039348721504211426, 0.0755181759595871, 0.04657603055238724, 0.05110987275838852, 0.03752486780285835, 0.06845078617334366], [0.029135147109627724, 0.029502270743250847, 0.004957693628966808, 0.06609918177127838, 0.0657583475112915, 0.04484422132372856, 0.01947348192334175, 0.00607894454151392], [0.029132265597581863, 0.09598658233880997, 0.03790988028049469, 0.07511664181947708, 0.06056159734725952, 0.04498083144426346, 0.03499474376440048, 0.0248517207801342], [0.03518915921449661, 0.024192672222852707, 0.04659947007894516, 0.024818921461701393, 0.07859275490045547, 0.04899810999631882, 0.14249159395694733, 0.014201649464666843], [0.043288882821798325, 0.06034913659095764, 0.04891715571284294, 0.024664482101798058, 0.039178308099508286, 0.0678272470831871, 0.11166568100452423, 0.10117077082395554], [0.014225088059902191, 0.01238776370882988, 0.018895264714956284, 0.01611875183880329, 0.028241945430636406, 0.03211964666843414, 0.019706713035702705, 0.0014741843333467841]], [[0.0060508777387440205, 0.2624721825122833, 0.0013905806699767709, 0.009184601716697216, 0.0010160582605749369, 0.0011505259899422526, 0.0001983383990591392, 0.0013153988402336836], [0.2315906435251236, 0.05676010996103287, 0.3287101089954376, 0.0124549875035882, 0.007957584224641323, 0.006199636030942202, 0.015734124928712845, 0.0012047147611156106], [0.0009265700937248766, 0.05330977961421013, 0.006060315296053886, 0.904312014579773, 0.0032233658712357283, 0.0004049489216413349, 0.00010776261478895321, 0.0006190987187437713], [0.001638186746276915, 0.006756780203431845, 0.8357359170913696, 0.039099596440792084, 0.010943735018372536, 0.005432555451989174, 0.007262994069606066, 0.0006409725174307823], [0.0028394758701324463, 0.0052256714552640915, 0.0048163277097046375, 0.017115430906414986, 0.004212055820971727, 0.6857254505157471, 0.0031236365903168917, 0.01351089496165514], [0.00017394138558302075, 0.0009958456503227353, 0.0077655017375946045, 0.0036991583183407784, 0.9275467991828918, 0.0008852282771840692, 0.034538235515356064, 0.005635612644255161], [0.00013249741459731013, 0.0024288392160087824, 0.00199946784414351, 0.44115275144577026, 0.009732081554830074, 0.08865057677030563, 0.004404876381158829, 0.3625509738922119], [8.851963502820581e-05, 6.038512583472766e-05, 0.0003887961502186954, 0.0007887074025347829, 0.0009766381699591875, 0.005481830332428217, 0.05996217578649521, 0.08237022906541824]], [[0.072963185608387, 0.06884146481752396, 0.05169367417693138, 0.08162571489810944, 0.047629643231630325, 0.038143742829561234, 0.05487896502017975, 0.20926976203918457], [0.15273098647594452, 0.029039854183793068, 0.04898164048790932, 0.14647991955280304, 0.07680763304233551, 0.027846911922097206, 0.08949966728687286, 0.1130637377500534], [0.008304131217300892, 0.01879454404115677, 0.0023173950612545013, 0.023950031027197838, 0.003929700702428818, 0.018228409811854362, 0.050126682966947556, 0.0394442118704319], [0.05812854692339897, 0.030269967392086983, 0.04681221395730972, 0.150766521692276, 0.045657843351364136, 0.12843143939971924, 0.1375322937965393, 0.032014138996601105], [0.11510051786899567, 0.07717482000589371, 0.04640994593501091, 0.04570171236991882, 0.004313973244279623, 0.24344190955162048, 0.06968999654054642, 0.1387985348701477], [0.02562684379518032, 0.0072885556146502495, 0.013761120848357677, 0.05872292444109917, 0.36833906173706055, 0.042586952447891235, 0.02496686764061451, 0.19840611517429352], [0.1426798403263092, 0.04920092225074768, 0.03859607130289078, 0.099080890417099, 0.11154460906982422, 0.023387273773550987, 0.08972253650426865, 0.11933432519435883], [0.0019602940883487463, 0.10288668423891068, 0.007128584198653698, 0.008011512458324432, 0.0010378558654338121, 0.009276295080780983, 0.022623008117079735, 0.04174961894750595]], [[0.13006038963794708, 0.02957182563841343, 0.027847765013575554, 0.14845290780067444, 0.21169456839561462, 0.11597933620214462, 0.034082334488630295, 0.003420712659135461], [0.1717328578233719, 0.03971748799085617, 0.036973729729652405, 0.07784470915794373, 0.2781842350959778, 0.021035902202129364, 0.22194860875606537, 0.00794034544378519], [0.18966199457645416, 0.1029757410287857, 0.030085669830441475, 0.18181461095809937, 0.2510167956352234, 0.027508048340678215, 0.06017230078577995, 0.004599723499268293], [0.24112504720687866, 0.029882803559303284, 0.18160457909107208, 0.15794700384140015, 0.17487336695194244, 0.043853409588336945, 0.035820309072732925, 0.013462136499583721], [0.17980147898197174, 0.06359933316707611, 0.0506933331489563, 0.10207530111074448, 0.04617089033126831, 0.07591244578361511, 0.044013675302267075, 0.013633019290864468], [0.04445313289761543, 0.05322292819619179, 0.07571274787187576, 0.1090952679514885, 0.4110276699066162, 0.054814714938402176, 0.05832207575440407, 0.041860874742269516], [0.20005092024803162, 0.03075449913740158, 0.040954459458589554, 0.27685803174972534, 0.30435314774513245, 0.014973180368542671, 0.01312843058258295, 0.003037217538803816], [0.16598767042160034, 0.03899261727929115, 0.3594083786010742, 0.07863102853298187, 0.10893061012029648, 0.13735926151275635, 0.06446316838264465, 0.03269682079553604]]], [[[0.06858116388320923, 0.030163217335939407, 0.008098444901406765, 0.014598812907934189, 0.015145520679652691, 0.0024334462359547615, 0.0048456997610628605, 0.07829834520816803], [0.029435262084007263, 0.10852064937353134, 0.011918683536350727, 0.011145036667585373, 0.006393955554813147, 0.005007254425436258, 0.004316031467169523, 0.030658049508929253], [0.07236018776893616, 0.163868710398674, 0.1402699053287506, 0.05105699226260185, 0.03790202736854553, 0.026137081906199455, 0.015344827435910702, 0.07460454851388931], [0.1337895691394806, 0.0899280458688736, 0.055529944598674774, 0.04304825887084007, 0.01235974207520485, 0.00789712555706501, 0.032111991196870804, 0.0830860584974289], [0.12003193795681, 0.10299677401781082, 0.033140961080789566, 0.023945540189743042, 0.00817831326276064, 0.011400172486901283, 0.03788136690855026, 0.17495357990264893], [0.05469454079866409, 0.03985161334276199, 0.07988829165697098, 0.08394772559404373, 0.030257239937782288, 0.008133869618177414, 0.023840950801968575, 0.08692600578069687], [0.3029101490974426, 0.1314173936843872, 0.01983928494155407, 0.07148057222366333, 0.08766323328018188, 0.047424785792827606, 0.013654801994562149, 0.10781078040599823], [0.025799982249736786, 0.008624272421002388, 0.006171585526317358, 0.008236420340836048, 0.007794405333697796, 0.0012655055616050959, 0.003933065105229616, 0.04987429827451706]], [[0.044680897146463394, 0.004804521799087524, 6.054230107110925e-05, 8.418549987254664e-05, 7.166342402342707e-05, 2.625500928843394e-05, 6.972919891268248e-06, 0.0005136543768458068], [0.6376030445098877, 0.007936270907521248, 0.0007638441165909171, 3.6301262298366055e-05, 1.1749708392017055e-05, 9.331100045528729e-06, 1.4653620610260987e-06, 0.00025222208932973444], [0.6769182682037354, 0.12250786274671555, 0.004498713184148073, 0.010668106377124786, 0.0001167189548141323, 6.0324575315462425e-05, 1.2160943697381299e-05, 0.0007110754959285259], [0.11752672493457794, 0.08858245611190796, 0.603805422782898, 0.026070117950439453, 0.0011725848307833076, 4.2478350223973393e-05, 5.8079381233255845e-06, 0.0005597656709142029], [0.0011093392968177795, 0.0018167162779718637, 0.03265281021595001, 0.08163183182477951, 0.014997439458966255, 0.0003966383810620755, 3.467359783826396e-05, 0.0009558561723679304], [0.00013179796223994344, 0.0009575420408509672, 0.024181334301829338, 0.5397708415985107, 0.3449937105178833, 0.006616031285375357, 0.0003300385142210871, 0.003657291177660227], [0.00014259836461860687, 2.0684687115135603e-05, 0.00023706506181042641, 0.019701587036252022, 0.6781007051467896, 0.060226570814847946, 0.002976943738758564, 0.015292058698832989], [0.000359797035343945, 2.0281862816773355e-05, 2.8241032850928605e-05, 0.0002823210961651057, 0.007347555831074715, 0.015699291601777077, 0.008378030732274055, 0.036152441054582596]], [[1.615383666830894e-07, 1.190192722155814e-09, 1.7299311210874502e-20, 6.997273829999383e-18, 5.581980270214859e-22, 7.324843619290703e-15, 3.2802178063035334e-19, 9.522662606370469e-13], [1.0, 2.2638714514133795e-10, 3.048254981763421e-10, 1.5336042657574464e-21, 5.671920510829641e-21, 6.195612070538979e-22, 3.577947121378247e-20, 3.6804470777357844e-18], [4.423784957907628e-06, 0.9999934434890747, 1.3396468148130225e-06, 8.184388278209553e-09, 9.511902892160588e-18, 8.20213173638798e-15, 6.785533817008679e-21, 2.9895818893371784e-12], [2.1402211114462943e-09, 2.3257107351071227e-09, 0.9999998807907104, 1.085264216271753e-07, 1.4982251883566278e-08, 1.3446764504692265e-16, 2.0569484782719654e-19, 5.4941092267491395e-18], [1.1709769921625633e-16, 1.7135370899978852e-10, 2.909276417994988e-06, 0.9999676942825317, 8.07928154245019e-06, 1.2562693427753402e-06, 8.65050026256669e-16, 1.073124054895569e-11], [1.4757607706391077e-14, 2.3657686051503956e-18, 1.2648217584398935e-08, 1.933645080498536e-06, 0.9999861717224121, 2.531755569634697e-07, 4.590228197542956e-10, 2.0696248873215174e-14], [4.1619739427882377e-16, 7.44212949547887e-19, 2.283783632712968e-18, 3.6335732200853954e-09, 1.1618001281021861e-06, 0.9999302625656128, 3.769626744087873e-07, 2.6891315840771313e-08], [5.798336815132643e-07, 1.8211692868813287e-14, 9.820046685538042e-12, 9.017669965784292e-13, 2.7481069082568865e-06, 0.00014535938680637628, 0.9988910555839539, 0.00017812862643040717]], [[0.008333654142916203, 0.1362420916557312, 0.010320399887859821, 0.007747404742985964, 0.0007216338999569416, 3.8542049878742546e-05, 2.5408138753846288e-05, 0.0016234160866588354], [0.36891835927963257, 0.0070504918694496155, 0.08684717118740082, 0.0007881558267399669, 0.0004438000323716551, 0.0002631079696584493, 8.639064617455006e-05, 0.0005612584645859897], [0.0006238847854547203, 0.012749784626066685, 0.0008052944904193282, 0.9209931492805481, 0.0007772065000608563, 0.002841440960764885, 1.2346135008556303e-05, 0.0005850294837728143], [0.0010794708505272865, 0.001194193260744214, 0.7603306770324707, 0.0014369402779266238, 0.05168207362294197, 0.004313220269978046, 0.003552077105268836, 0.0013194206403568387], [0.00022432715923059732, 5.080715345684439e-05, 0.00113384157884866, 0.0008250142564065754, 0.0022441083565354347, 0.9214968681335449, 0.00994529202580452, 0.013709497638046741], [3.6834146612818586e-06, 1.5239354979712516e-05, 0.0010560369119048119, 0.00017052976181730628, 0.8894801139831543, 0.0011918795062229037, 0.006346599198877811, 0.007308706175535917], [2.6323972633690573e-05, 2.657203731359914e-05, 0.0001833403221098706, 0.002696598181501031, 0.003388036508113146, 0.004975316114723682, 0.005887418519705534, 0.5458222031593323], [3.493497206363827e-05, 1.9186065401299857e-05, 0.0002491232589818537, 0.00016850190877448767, 0.001038654358126223, 0.0015139169991016388, 0.00833853054791689, 0.09073840081691742]], [[8.683572332301992e-07, 0.9999451637268066, 2.6155770683544688e-05, 1.4885438304190757e-07, 9.907500438544742e-14, 3.834627927690182e-12, 1.0071887510750173e-14, 1.7108680694377654e-08], [1.58328248289763e-06, 7.254570277837047e-07, 0.9999924898147583, 1.8362860600973363e-06, 7.260941004005872e-08, 8.790926022067894e-14, 4.011585095887809e-16, 1.305729070873174e-12], [5.834889371664339e-15, 9.12531206154199e-08, 4.6762429519731086e-06, 0.9999698400497437, 1.1746075870178174e-05, 1.2869058707565273e-07, 8.500858128148824e-16, 5.203892872174265e-11], [3.90581664233558e-12, 7.16956723346594e-15, 5.807954721603892e-07, 1.4438900507229846e-05, 0.9999547004699707, 2.269754077133257e-05, 3.352676358758799e-08, 3.5850558632866125e-11], [2.3822000348359094e-14, 1.8689402510405767e-14, 1.1611832372374065e-12, 8.90751471160911e-06, 0.00099822913762182, 0.9974008798599243, 3.966835265600821e-06, 7.24479059499572e-06], [5.861375029780902e-08, 5.377814079471355e-13, 4.49807391333934e-09, 5.026326910240186e-09, 0.02058822102844715, 0.005779499653726816, 0.9524587392807007, 0.0030627641826868057], [1.093281645769828e-10, 2.876014704167318e-11, 6.462725862278751e-13, 1.7219453293804143e-11, 8.177224453120857e-10, 3.931522951461375e-05, 2.5519990231259726e-05, 0.9997057318687439], [5.55042789507354e-10, 1.2906146420674225e-12, 1.5136542685922905e-07, 1.1890407929093794e-11, 6.337234736975006e-08, 1.3905949725057098e-09, 1.3694237566141965e-07, 0.006620652042329311]], [[0.012919547036290169, 0.03929435461759567, 0.05826476588845253, 0.024818187579512596, 0.01629597134888172, 0.05150747671723366, 0.06774308532476425, 0.1496526598930359], [0.0369415283203125, 0.10659143328666687, 0.041053466498851776, 0.02049694024026394, 0.02732241153717041, 0.023360444232821465, 0.2281906008720398, 0.1975889503955841], [0.05883876234292984, 0.07948844134807587, 0.08321394771337509, 0.03127668797969818, 0.08211177587509155, 0.14281412959098816, 0.10061800479888916, 0.06557272374629974], [0.024520857259631157, 0.03407527133822441, 0.04352911189198494, 0.00524491909891367, 0.016903532668948174, 0.04117078706622124, 0.021592337638139725, 0.08923429995775223], [0.0323222391307354, 0.0627950131893158, 0.029029030352830887, 0.024998832494020462, 0.015789857134222984, 0.041054617613554, 0.02850533463060856, 0.0658973753452301], [0.01037565153092146, 0.010216180235147476, 0.035438038408756256, 0.004374670330435038, 0.021702168509364128, 0.008919978514313698, 0.012024350464344025, 0.04577553644776344], [0.021205205470323563, 0.046378012746572495, 0.045198991894721985, 0.015986425802111626, 0.02271859720349312, 0.06791386753320694, 0.03636806085705757, 0.15566006302833557], [0.018234021961688995, 0.023170528933405876, 0.03786152973771095, 0.02380889467895031, 0.030500659719109535, 0.05944862216711044, 0.0246978010982275, 0.030715957283973694]], [[0.010545618832111359, 0.11055044084787369, 0.11459872871637344, 0.09084811806678772, 0.011741390451788902, 0.06833772361278534, 0.05536438152194023, 0.2781578004360199], [0.017691710963845253, 0.2830744683742523, 0.047081612050533295, 0.008216802962124348, 0.07539959251880646, 0.09133248776197433, 0.09005158394575119, 0.24756070971488953], [0.018577340990304947, 0.057349395006895065, 0.04241904988884926, 0.04069127142429352, 0.03419868275523186, 0.04333440959453583, 0.03803611919283867, 0.2014770358800888], [0.04051860421895981, 0.024517381563782692, 0.07320301979780197, 0.01678163930773735, 0.037979718297719955, 0.07490969449281693, 0.05666041374206543, 0.16798508167266846], [0.01521233655512333, 0.05001373961567879, 0.05131158605217934, 0.026519812643527985, 0.004878588952124119, 0.03188614174723625, 0.018365615978837013, 0.17655903100967407], [0.013699924573302269, 0.03175954893231392, 0.08787105232477188, 0.03301326557993889, 0.015318159013986588, 0.013956508599221706, 0.005432327277958393, 0.06637221574783325], [0.020595623180270195, 0.1772778034210205, 0.12107231467962265, 0.0669911801815033, 0.10927382856607437, 0.12395750731229782, 0.005718687083572149, 0.14110778272151947], [0.0024355612695217133, 0.009591028094291687, 0.055832333862781525, 0.00789013970643282, 0.003163659945130348, 0.024065982550382614, 0.01920158974826336, 0.10945805162191391]], [[0.018523186445236206, 0.2292221188545227, 0.024372251704335213, 0.019012661650776863, 0.010590841993689537, 0.008312288671731949, 0.040300317108631134, 0.0998239517211914], [0.05909854546189308, 0.053116004914045334, 0.05388970673084259, 0.017586898058652878, 0.005337381269782782, 0.01151321828365326, 0.06378660351037979, 0.14968818426132202], [0.010891157202422619, 0.11645850539207458, 0.05118606239557266, 0.009040330536663532, 0.013287249021232128, 0.00977716688066721, 0.02126220427453518, 0.2674867808818817], [0.007201544474810362, 0.049710649996995926, 0.012938178144395351, 0.0016245770966634154, 0.00184776505921036, 0.00574436504393816, 0.006187069229781628, 0.2514195144176483], [0.002340165199711919, 0.048181820660829544, 0.01722092181444168, 0.002311774529516697, 0.0007722843438386917, 0.006738431751728058, 0.0065169264562428, 0.15683335065841675], [0.0004840571782551706, 0.011648942716419697, 0.003326687728986144, 0.0012034180108457804, 0.0019723689183592796, 0.0024822023697197437, 0.00037819697172380984, 0.025231916457414627], [0.049500998109579086, 0.2559291422367096, 0.09452560544013977, 0.037460122257471085, 0.024754220619797707, 0.018473124131560326, 0.057586729526519775, 0.19246000051498413], [0.014945917762815952, 0.02131113037467003, 0.005655888468027115, 0.0034914505667984486, 0.0072882394306361675, 0.01481031533330679, 0.008134969510138035, 0.04827490448951721]], [[0.000403700047172606, 0.02434423379600048, 0.007482303772121668, 0.008064993657171726, 0.017821308225393295, 0.004434784408658743, 0.0186977069824934, 0.02301398105919361], [0.014875762164592743, 0.0029208455234766006, 0.01893950253725052, 0.0057894461788237095, 0.005113658029586077, 0.01368883065879345, 0.13799335062503815, 0.05552607774734497], [0.0657443106174469, 0.02394588105380535, 0.0008405373664572835, 0.09982885420322418, 0.025732532143592834, 0.013917254284024239, 0.20898152887821198, 0.0644579753279686], [0.007373419124633074, 0.0034782993607223034, 0.05577393248677254, 0.007277036085724831, 0.010300948284566402, 0.07283075153827667, 0.461722731590271, 0.03045269474387169], [0.00018967319920193404, 0.000623972387984395, 0.0014647259376943111, 0.0023989758919924498, 2.5030429242178798e-05, 0.9709601402282715, 8.178821735782549e-05, 0.0029077206272631884], [0.00023621173750143498, 0.00020486157154664397, 0.0003908589715138078, 7.04294943716377e-05, 0.9395917057991028, 1.505894852016354e-05, 0.008266828954219818, 0.00266584986820817], [0.002455744193866849, 0.023927772417664528, 0.03450984135270119, 0.150416299700737, 0.00659153051674366, 0.23078298568725586, 0.0025820424780249596, 0.07085484266281128], [0.0007433689315803349, 0.0029321876354515553, 0.00365649932064116, 0.0028904969803988934, 0.0029285966884344816, 0.0006135914591141045, 0.002952106297016144, 0.0196691881865263]], [[5.1496841479092836e-05, 0.007824732922017574, 0.005259424448013306, 0.00016169581795111299, 0.0013910997658967972, 0.0010987307177856565, 0.001134963589720428, 0.30163922905921936], [0.003626033430919051, 0.020228257402777672, 0.0609300434589386, 0.0023989735636860132, 0.005765880458056927, 0.0017772174905985594, 0.008502776734530926, 0.19986100494861603], [0.0005887121078558266, 0.016627438366413116, 0.017559845000505447, 0.0018705057445913553, 0.00572785921394825, 0.005324434954673052, 0.004192609805613756, 0.17921604216098785], [0.00048001937102526426, 0.016649842262268066, 0.0107956537976861, 0.001416697516106069, 0.0062671834602952, 0.007340200245380402, 0.004741515498608351, 0.25097888708114624], [0.00027285455144010484, 0.010511644184589386, 0.015787869691848755, 0.0010111783631145954, 0.005062878597527742, 0.01514750998467207, 0.004822652321308851, 0.05307795852422714], [5.6375069107161835e-05, 0.007412794977426529, 0.003333469619974494, 0.0002909736940637231, 0.002818548120558262, 0.0018469386268407106, 0.001622440293431282, 0.08172480762004852], [0.0009688992868177593, 0.033865757286548615, 0.021851586177945137, 0.0020046941936016083, 0.007328392472118139, 0.0027511417865753174, 0.010170768946409225, 0.1660153567790985], [0.02784380130469799, 0.03212764859199524, 0.06105039641261101, 0.022889504209160805, 0.05149906128644943, 0.03397819399833679, 0.02152746357023716, 0.10727506130933762]], [[0.11208333820104599, 0.15393389761447906, 0.07611002773046494, 0.062354959547519684, 0.05040214955806732, 0.0070692203007638454, 0.04670001193881035, 0.07602640241384506], [0.013849584385752678, 0.038224197924137115, 0.20729359984397888, 0.08527719229459763, 0.1308830976486206, 0.014936280436813831, 0.07443074882030487, 0.11793221533298492], [0.02353779785335064, 0.023769183084368706, 0.04172907769680023, 0.044813789427280426, 0.05069916322827339, 0.015975650399923325, 0.0264284685254097, 0.08089090138673782], [0.09007612615823746, 0.010899905115365982, 0.07838040590286255, 0.019270729273557663, 0.05440118908882141, 0.025514716282486916, 0.01896488294005394, 0.0655881017446518], [0.0086777713149786, 0.0031826156191527843, 0.020852331072092056, 0.020300066098570824, 0.01988161914050579, 0.013894321396946907, 0.00928952544927597, 0.017051778733730316], [0.004117388743907213, 0.0006532202241942286, 0.010346027091145515, 0.016925079748034477, 0.012516843155026436, 0.005383260548114777, 0.0031019896268844604, 0.006903583183884621], [0.05768147110939026, 0.049425240606069565, 0.07149685174226761, 0.05951106548309326, 0.10963805764913559, 0.0229447390884161, 0.03814031183719635, 0.09062444418668747], [0.08401983976364136, 0.011291115544736385, 0.023983735591173172, 0.01690945029258728, 0.024086609482765198, 0.00714537687599659, 0.020114701241254807, 0.5446118116378784]], [[0.0013563567772507668, 0.0038155068177729845, 0.08406057208776474, 0.011772611178457737, 0.014186138287186623, 0.0073732552118599415, 0.04508255794644356, 0.11228843033313751], [0.01140142884105444, 0.005305478814989328, 0.1423553228378296, 0.09637564420700073, 0.03626321256160736, 0.07755101472139359, 0.08356667309999466, 0.16559194028377533], [0.022553693503141403, 0.01761680096387863, 0.07407406717538834, 0.09231282770633698, 0.020714614540338516, 0.04424132779240608, 0.09275511652231216, 0.15644221007823944], [0.01808399148285389, 0.013838488608598709, 0.0692896619439125, 0.005127372685819864, 0.04375274479389191, 0.022679675370454788, 0.015939589589834213, 0.252272367477417], [0.010181463323533535, 0.02268487960100174, 0.06266524642705917, 0.012716144323348999, 0.001053516985848546, 0.0036807595752179623, 0.05368969589471817, 0.23399367928504944], [0.006958476267755032, 0.027609024196863174, 0.06530915200710297, 0.01951870508491993, 0.006199215073138475, 0.0032057338394224644, 0.030796699225902557, 0.28820106387138367], [0.024630671367049217, 0.011827384121716022, 0.09941930323839188, 0.026330361142754555, 0.06422965973615646, 0.08038948476314545, 0.08413398265838623, 0.15264277160167694], [0.08449877798557281, 0.06590288877487183, 0.07416608184576035, 0.12163711339235306, 0.08837532997131348, 0.052650175988674164, 0.09376457333564758, 0.118632011115551]]], [[[0.06030169874429703, 0.12431337684392929, 0.11013025045394897, 0.05419253930449486, 0.0029536793008446693, 0.0008693889831192791, 0.04836363345384598, 0.028928592801094055], [0.05949152633547783, 0.0713064894080162, 0.06256473064422607, 0.0397312305867672, 0.013424444012343884, 0.0121604660525918, 0.08287225663661957, 0.19665774703025818], [0.03840700909495354, 0.03325706720352173, 0.046473968774080276, 0.060095787048339844, 0.017903203144669533, 0.008452055975794792, 0.1373477578163147, 0.0737197995185852], [0.06591495871543884, 0.029482051730155945, 0.04742943122982979, 0.09581159055233002, 0.05360044166445732, 0.042785268276929855, 0.12945809960365295, 0.093521848320961], [0.010589483194053173, 0.008681464940309525, 0.020977210253477097, 0.028243962675333023, 0.03647366538643837, 0.0943315178155899, 0.21241238713264465, 0.19134104251861572], [0.017331713810563087, 0.009642845019698143, 0.021944144740700722, 0.030234074220061302, 0.10904727131128311, 0.11775970458984375, 0.16735392808914185, 0.3365943729877472], [0.03117157705128193, 0.0459539033472538, 0.05523526668548584, 0.019978677853941917, 0.0040847123600542545, 0.0009635523310862482, 0.10833918303251266, 0.046537794172763824], [0.020178085193037987, 0.010771473869681358, 0.009192985482513905, 0.01983797550201416, 0.003090026555582881, 0.005178037099540234, 0.020579298958182335, 0.045992035418748856]], [[0.16235463321208954, 0.014189998619258404, 0.0033870653714984655, 0.005030840635299683, 0.000790201302152127, 0.001405485556460917, 0.004889284260571003, 0.11618164926767349], [0.015012288466095924, 0.428611159324646, 0.00602854834869504, 0.0027886908501386642, 0.008689564652740955, 0.0013605465646833181, 0.014249610714614391, 0.015825416892766953], [0.004660285077989101, 0.011767576448619366, 0.5612844228744507, 0.00652401614934206, 0.008163641206920147, 0.003781902836635709, 0.007013797294348478, 0.08565358817577362], [0.013319967314600945, 0.007715099025517702, 0.011939016170799732, 0.44796672463417053, 0.011809742078185081, 0.004552720580250025, 0.002404824597761035, 0.0520157590508461], [0.0004498498747125268, 0.0006767010781913996, 0.0009487619390711188, 0.0008650294621475041, 0.5057371854782104, 0.002964746905490756, 0.011714909225702286, 0.02957627736032009], [0.008621187880635262, 0.003783331485465169, 0.004712854977697134, 0.005618084222078323, 0.040853600949048996, 0.5851300954818726, 0.029646925628185272, 0.057307615876197815], [0.0074130212888121605, 0.008008171804249287, 0.0033505852334201336, 0.0006066468777135015, 0.04832366108894348, 0.009480200707912445, 0.18003545701503754, 0.08867539465427399], [0.00944092869758606, 0.008303634822368622, 0.002870802767574787, 0.0010940341744571924, 0.021532583981752396, 0.004500772804021835, 0.033830802887678146, 0.12077486515045166]], [[0.04654679819941521, 0.0565185509622097, 0.08150777220726013, 0.011012209579348564, 0.01555384136736393, 0.03829077258706093, 0.06883057206869125, 0.07604116201400757], [0.0584508515894413, 0.12515515089035034, 0.05331069603562355, 0.012712017633020878, 0.028217719867825508, 0.027167880907654762, 0.0398469939827919, 0.02518841065466404], [0.0018041590228676796, 0.00544142909348011, 0.012984873726963997, 0.0007626242586411536, 0.0030534672550857067, 0.004994462709873915, 0.006727222353219986, 0.010772330686450005], [0.004185807891190052, 0.005644181277602911, 0.015357761643826962, 0.0004456062160898, 0.0018210476264357567, 0.00569745060056448, 0.004917515441775322, 0.009346977807581425], [0.0039052702486515045, 0.005486944690346718, 0.07031803578138351, 0.0003826988395303488, 0.0032799742184579372, 0.01451216172426939, 0.019167032092809677, 0.010222065262496471], [0.0014771270798519254, 0.004741154611110687, 0.04112107679247856, 0.0005231461836956441, 0.004035986494272947, 0.005976933520287275, 0.003571887733414769, 0.009184031747281551], [0.058971405029296875, 0.04376852512359619, 0.09500115364789963, 0.04765741154551506, 0.17318540811538696, 0.15286332368850708, 0.12580904364585876, 0.051436807960271835], [0.020288845524191856, 0.03069455549120903, 0.06566030532121658, 0.012075920589268208, 0.03674916923046112, 0.012515691109001637, 0.015901319682598114, 0.011748884804546833]], [[0.028866425156593323, 0.10900643467903137, 0.23613987863063812, 0.024846957996487617, 0.004491351079195738, 0.0010350859956815839, 0.0006556663429364562, 0.0036426254082471132], [0.017514795064926147, 0.03259458392858505, 0.1252136379480362, 0.13784223794937134, 0.08326109498739243, 0.0021554052364081144, 0.005088401027023792, 0.004441919270902872], [0.00012616872845683247, 0.000515155668836087, 0.0005893527995795012, 0.966963529586792, 0.008206074126064777, 0.008268392644822598, 0.0005751883727498353, 0.0018765617860481143], [0.00044179102405905724, 0.0016879516188055277, 0.00476248050108552, 0.20452313125133514, 0.15664899349212646, 0.11206435412168503, 0.046345844864845276, 0.031769465655088425], [6.437341653509066e-05, 7.428012759191915e-05, 0.0008355104364454746, 0.04698832333087921, 0.016309339553117752, 0.3386057913303375, 0.06282110512256622, 0.07940312474966049], [1.3988978025736287e-05, 5.258775217953371e-06, 2.4656586901983246e-05, 0.0005134257371537387, 0.0003939476446248591, 0.003402730682864785, 0.008656292222440243, 0.06383830308914185], [0.00013651080371346325, 4.496298060985282e-05, 0.00017771369311958551, 0.0005697915330529213, 0.005081457085907459, 0.023721717298030853, 0.009262540377676487, 0.31805816292762756], [6.561361806234345e-05, 2.183180913561955e-05, 5.4876891226740554e-05, 4.194868597551249e-05, 5.985422103549354e-05, 8.497643284499645e-05, 0.0012499121949076653, 0.026748038828372955]], [[0.028572531417012215, 0.002274320228025317, 1.8463553715264425e-05, 4.518455534707755e-05, 6.70935696689412e-06, 1.0686344467103481e-05, 8.808149868855253e-05, 0.0006218262715265155], [0.7239992618560791, 0.02072248049080372, 0.0002314968587597832, 4.522140807239339e-05, 8.987371074908879e-06, 1.3283981388667598e-05, 2.272340680065099e-05, 0.0008177353302016854], [0.26926982402801514, 0.31648850440979004, 0.00241987407207489, 0.007648175582289696, 0.000723672506865114, 0.00018739915685728192, 0.00048627742216922343, 0.008654369041323662], [0.07659099251031876, 0.14643481373786926, 0.38026589155197144, 0.02378164604306221, 0.013440320268273354, 0.000335381249897182, 0.0003095087013207376, 0.006585441529750824], [0.006155412178486586, 0.1079195886850357, 0.021320685744285583, 0.24467571079730988, 0.016517268493771553, 0.002540757181122899, 0.001054976717568934, 0.009636360220611095], [0.002292442601174116, 0.0030651502311229706, 0.05615299195051193, 0.2469804733991623, 0.2729044556617737, 0.013038264587521553, 0.017613399773836136, 0.03775198757648468], [0.000818938366137445, 0.0032937233336269855, 0.0010027901735156775, 0.06035952642560005, 0.05003620311617851, 0.19541166722774506, 0.008891361765563488, 0.1138443797826767], [6.486845086328685e-05, 1.2421493011061102e-05, 1.1812937373179011e-05, 0.00011375109170330688, 0.00034109450643882155, 0.00035989226307719946, 0.0027593132108449936, 0.039893049746751785]], [[0.019487779587507248, 0.022791527211666107, 0.05048074573278427, 0.030267665162682533, 0.04473079741001129, 0.026651374995708466, 0.025211097672581673, 0.06337516009807587], [0.012979862280189991, 0.002545648254454136, 0.03083221986889839, 0.009862876497209072, 0.02961386740207672, 0.004422659054398537, 0.012797143310308456, 0.2132674902677536], [0.04932266101241112, 0.02883564680814743, 0.026826994493603706, 0.030788468196988106, 0.03354378789663315, 0.03812219202518463, 0.11195720732212067, 0.16461871564388275], [0.03509227931499481, 0.016312679275870323, 0.03991025313735008, 0.017345959320664406, 0.02898719720542431, 0.02318376488983631, 0.01810690388083458, 0.19070300459861755], [0.04792089760303497, 0.01392710953950882, 0.0453949049115181, 0.04636179283261299, 0.004614024423062801, 0.014951920136809349, 0.03140776604413986, 0.24640989303588867], [0.025036422535777092, 0.008694164454936981, 0.04175138100981712, 0.030951853841543198, 0.008862405084073544, 0.002793996362015605, 0.014308354817330837, 0.4347074031829834], [0.08586188405752182, 0.029238102957606316, 0.03297354653477669, 0.014953672885894775, 0.03236499801278114, 0.01676643267273903, 0.028713183477520943, 0.13634516298770905], [0.0738605409860611, 0.07141443341970444, 0.09754382073879242, 0.07313172519207001, 0.05476999282836914, 0.09293323010206223, 0.05512390658259392, 0.12710124254226685]], [[1.1948851863508025e-07, 0.9999997615814209, 6.417320719265263e-08, 3.2937383931397335e-09, 1.0746659579279603e-15, 2.168013227507614e-15, 1.2004500329578687e-16, 7.927677264651933e-11], [1.3880400729249232e-05, 1.3954622772871517e-05, 0.9999696016311646, 1.5996496358638979e-06, 8.27448502604966e-07, 8.824906781626073e-15, 9.99509177680713e-14, 3.980321714586177e-12], [1.8014880951870487e-15, 1.2126700532633095e-08, 4.563944457913749e-07, 0.9999938011169434, 5.748093826696277e-06, 1.5238370565384685e-08, 5.5693774922817643e-14, 3.1981927522961584e-11], [8.082797499614058e-15, 8.797089711418474e-14, 8.566816518396081e-07, 2.876574217225425e-05, 0.9999667406082153, 3.191944188074558e-06, 7.299175308617123e-08, 1.6584279088904808e-11], [7.450815735634902e-16, 1.330946854463666e-12, 1.93652090890728e-11, 4.107371933059767e-05, 2.728472463786602e-05, 0.9999278783798218, 8.492663710057968e-07, 1.0446374290040694e-06], [4.425728175865701e-13, 3.0584430607815414e-15, 1.8709970638769446e-12, 2.0804634057181026e-12, 1.3181132771933335e-06, 9.937001595972106e-05, 0.9998906850814819, 7.522501164203277e-06], [1.415863315479271e-09, 1.935891624782471e-08, 2.0340838735588562e-10, 1.3260680331583785e-09, 2.5515767276829138e-09, 1.687538497208152e-05, 0.0003194334567524493, 0.9996415376663208], [5.849731289642168e-12, 4.020725592746022e-12, 2.213971894704514e-09, 3.5863485792209104e-11, 9.381442822586905e-08, 4.217634574921192e-11, 7.109285797923803e-05, 0.02675137110054493]], [[0.022896751761436462, 0.011736011132597923, 0.030091075226664543, 0.03087509050965309, 0.00888113770633936, 0.024554667994379997, 0.008588316850364208, 0.007376732304692268], [0.05268087610602379, 0.023234298452734947, 0.011116155423223972, 0.008284005336463451, 0.0012907807249575853, 0.0025822781026363373, 0.0030365316197276115, 0.030902013182640076], [0.0589926615357399, 0.03870860114693642, 0.05600952357053757, 0.024603791534900665, 0.011302357539534569, 0.03366320580244064, 0.011313531547784805, 0.02938108891248703], [0.1711287945508957, 0.05339708924293518, 0.02752782590687275, 0.04059211164712906, 0.007898414507508278, 0.042110152542591095, 0.011627224273979664, 0.028223125264048576], [0.09770908206701279, 0.06522975862026215, 0.03083605132997036, 0.022121315822005272, 0.010094229131937027, 0.03254052624106407, 0.023675458505749702, 0.025301793590188026], [0.13390134274959564, 0.10613492131233215, 0.03660736605525017, 0.04226221516728401, 0.01067965105175972, 0.045506808906793594, 0.035594116896390915, 0.03169797360897064], [0.2986242473125458, 0.10834836214780807, 0.060008931905031204, 0.013476907275617123, 0.005045268218964338, 0.005938520189374685, 0.08591532707214355, 0.02975630760192871], [0.04978698492050171, 0.010989846661686897, 0.02566334418952465, 0.018260207027196884, 0.0032570993062108755, 0.005942781921476126, 0.008940869010984898, 0.21384775638580322]], [[0.00573089299723506, 0.007566092070192099, 0.005431079771369696, 0.0039748540148139, 0.009804329834878445, 0.002913386793807149, 0.025998499244451523, 0.13548336923122406], [0.006380574777722359, 0.020968908444046974, 0.01368224062025547, 0.0021789059974253178, 0.008229621686041355, 0.019149748608469963, 0.00503916060552001, 0.1691886931657791], [0.010036390274763107, 0.013500472530722618, 0.013146622106432915, 0.00506865419447422, 0.015606503002345562, 0.01366911455988884, 0.03025282733142376, 0.14565566182136536], [0.025159185752272606, 0.027027929201722145, 0.027973327785730362, 0.0016620683018118143, 0.009480061940848827, 0.0039490219205617905, 0.03490174189209938, 0.18045787513256073], [0.004156491719186306, 0.004465759266167879, 0.012106796726584435, 0.004197671543806791, 0.0010049620177596807, 0.004214158747345209, 0.009791282936930656, 0.18898402154445648], [0.0036947508342564106, 0.028842154890298843, 0.010896248742938042, 0.0035786530934274197, 0.005213903728872538, 0.003508517052978277, 0.006610180716961622, 0.15868982672691345], [0.008318630047142506, 0.0063333227299153805, 0.005276515148580074, 0.004300032742321491, 0.01400899887084961, 0.005900728050619364, 0.03782959282398224, 0.13181596994400024], [0.04150250554084778, 0.03269922733306885, 0.04594351723790169, 0.01914278231561184, 0.06390050798654556, 0.05484634265303612, 0.03425178676843643, 0.138983353972435]], [[0.10744603723287582, 0.039328381419181824, 0.1349569708108902, 0.16136221587657928, 0.17022734880447388, 0.13179045915603638, 0.07792867720127106, 0.0595378540456295], [0.06596345454454422, 0.03152703121304512, 0.040847454220056534, 0.15142947435379028, 0.07753805816173553, 0.0822928249835968, 0.3578556478023529, 0.14287038147449493], [0.024951240047812462, 0.015221133828163147, 0.020050378516316414, 0.090317003428936, 0.02660798653960228, 0.06543386727571487, 0.3014267683029175, 0.4037605822086334], [0.09324057400226593, 0.01634977012872696, 0.028369002044200897, 0.08609074354171753, 0.027643563225865364, 0.1378137469291687, 0.15092359483242035, 0.3365379869937897], [0.04273388907313347, 0.013541302643716335, 0.02769191935658455, 0.08493060618638992, 0.04111301898956299, 0.19647634029388428, 0.03953726217150688, 0.30057811737060547], [0.03810675069689751, 0.010126357898116112, 0.053033169358968735, 0.1087128072977066, 0.02350315824151039, 0.06834524869918823, 0.036916334182024, 0.5400442481040955], [0.044102929532527924, 0.013267609290778637, 0.036611706018447876, 0.06056676059961319, 0.047042496502399445, 0.06756952404975891, 0.010702383704483509, 0.2141205221414566], [0.012820535339415073, 0.009147114120423794, 0.010628257878124714, 0.024415597319602966, 0.01105279941111803, 0.01260040607303381, 0.007642004173249006, 0.05967523902654648]], [[0.020504456013441086, 0.051856253296136856, 0.02893981710076332, 0.3946288824081421, 0.09154099971055984, 0.06204678490757942, 0.038077302277088165, 0.039658959954977036], [0.0769314393401146, 0.019943565130233765, 0.02215023897588253, 0.5025283694267273, 0.046040091663599014, 0.13195335865020752, 0.024824930354952812, 0.026082901284098625], [0.004913864657282829, 0.00233283918350935, 0.0013138775248080492, 0.7574101090431213, 0.07086969912052155, 0.11138981580734253, 0.0130922207608819, 0.006583706475794315], [0.008854358457028866, 0.009282254613935947, 0.03747599571943283, 0.14675316214561462, 0.13725405931472778, 0.46554484963417053, 0.07357750833034515, 0.04116031900048256], [0.01609358936548233, 0.01310602854937315, 0.02185835689306259, 0.10493607819080353, 0.025696326047182083, 0.6175658106803894, 0.028523258864879608, 0.07885778695344925], [0.008007493801414967, 0.005296161863952875, 0.009536121971905231, 0.16916759312152863, 0.2546636462211609, 0.0654492974281311, 0.02887144312262535, 0.22784152626991272], [0.046326179057359695, 0.09114386141300201, 0.03134696185588837, 0.37953370809555054, 0.08949685096740723, 0.10434731841087341, 0.008043899200856686, 0.12035825848579407], [0.003716467646881938, 0.016210664063692093, 0.005639155860990286, 0.0035289255902171135, 0.008525787852704525, 0.0034673099871724844, 0.01348100509494543, 0.2081267386674881]], [[0.42651844024658203, 0.0034862100146710873, 0.002433923538774252, 0.0016345763579010963, 0.0006170259439386427, 0.0008696880540810525, 0.005298980511724949, 0.04986213147640228], [0.017274361103773117, 0.042885322123765945, 0.004727077204734087, 0.0017113384092226624, 0.0012923299800604582, 0.001020115683786571, 0.011617828160524368, 0.06836728751659393], [0.01536199264228344, 0.009218545630574226, 0.23167045414447784, 0.005852721631526947, 0.0015546750510111451, 0.0017423976678401232, 0.0047386703081429005, 0.06757446378469467], [0.020563539117574692, 0.006348449736833572, 0.008549364283680916, 0.37792837619781494, 0.0022796918638050556, 0.004963651765137911, 0.004051701631397009, 0.049174707382917404], [0.004139237105846405, 0.004156331066042185, 0.0024963708128780127, 0.004159219563007355, 0.2444210946559906, 0.0026620111893862486, 0.012758541852235794, 0.07694604992866516], [0.009172621183097363, 0.0028124956879764795, 0.004438498988747597, 0.0037392915692180395, 0.0033911976497620344, 0.2738668620586395, 0.011096665635704994, 0.055643387138843536], [0.03587152436375618, 0.006663530133664608, 0.004383022431284189, 0.0011924285208806396, 0.00426810747012496, 0.00205721496604383, 0.33695927262306213, 0.0402853861451149], [0.03925681859254837, 0.0029360095504671335, 0.005206204019486904, 0.0013880283804610372, 0.0014951186021789908, 0.0010882355272769928, 0.04603511467576027, 0.07952046394348145]]], [[[0.04658203572034836, 0.005555460695177317, 0.0018022536532953382, 0.001148938899859786, 0.0014217772986739874, 0.0023775380104780197, 0.09815413504838943, 0.09537312388420105], [0.29953938722610474, 0.012838444672524929, 0.0031419596634805202, 0.001825255574658513, 0.0013889739057049155, 0.004799085669219494, 0.10339698195457458, 0.08642999827861786], [0.6029919385910034, 0.06314750760793686, 0.002943486673757434, 0.01201237365603447, 0.004603798966854811, 0.004015857353806496, 0.013789675198495388, 0.046479154378175735], [0.37686920166015625, 0.11408039927482605, 0.04137282818555832, 0.020017584785819054, 0.02006438374519348, 0.02714480459690094, 0.014484409242868423, 0.027567988261580467], [0.1961711347103119, 0.13032746315002441, 0.00784977525472641, 0.02046329714357853, 0.01249148603528738, 0.01430736854672432, 0.013182936236262321, 0.017026925459504128], [0.35226666927337646, 0.18160906434059143, 0.010979590006172657, 0.05944208428263664, 0.02467181161046028, 0.022586803883314133, 0.012922752648591995, 0.039234187453985214], [0.2543063163757324, 0.10178137570619583, 0.006320924498140812, 0.04567937180399895, 0.019466541707515717, 0.04118887335062027, 0.05052950978279114, 0.20895008742809296], [0.006826807279139757, 0.005321907345205545, 0.003384564071893692, 0.0030748024582862854, 0.0062591517344117165, 0.008381938561797142, 0.027219180017709732, 0.04801825433969498]], [[0.046962905675172806, 0.012200532481074333, 0.04605535417795181, 0.015315336175262928, 0.024291306734085083, 0.006338980980217457, 0.07237901538610458, 0.09974216669797897], [0.038841504603624344, 0.04249999299645424, 0.026115793734788895, 0.07263584434986115, 0.07276958227157593, 0.057558510452508926, 0.0299290269613266, 0.0397169291973114], [0.025408895686268806, 0.02302015759050846, 0.013246193528175354, 0.037312932312488556, 0.04975418001413345, 0.05689382553100586, 0.053714487701654434, 0.24727939069271088], [0.02622462809085846, 0.014257804490625858, 0.049101997166872025, 0.08531162142753601, 0.07768764346837997, 0.1793392449617386, 0.03849849849939346, 0.13384966552257538], [0.015162641182541847, 0.02188735455274582, 0.06858666241168976, 0.04566754028201103, 0.04204744100570679, 0.13483184576034546, 0.043787337839603424, 0.08210629224777222], [0.015235984697937965, 0.024972660467028618, 0.08610875904560089, 0.05378352850675583, 0.07134295254945755, 0.08312346786260605, 0.10290849953889847, 0.05576132982969284], [0.022906925529241562, 0.02040037140250206, 0.04685918614268303, 0.04015630483627319, 0.049280162900686264, 0.05461256578564644, 0.12767784297466278, 0.2002382129430771], [0.01181227620691061, 0.011630960740149021, 0.017311351373791695, 0.006233724299818277, 0.01320717204362154, 0.016567962244153023, 0.03157003968954086, 0.2557390332221985]], [[0.006915548350661993, 0.023446639999747276, 0.02167346328496933, 0.002064015716314316, 0.0018096218118444085, 0.01284692995250225, 0.017827831208705902, 0.2838403582572937], [0.04236423224210739, 0.009922388009727001, 0.021295171231031418, 0.030363192781805992, 0.010341254062950611, 0.05385838821530342, 0.015181980095803738, 0.22673195600509644], [0.0027202002238482237, 0.0034526768140494823, 0.0010986845009028912, 0.0016637862427160144, 0.001018412527628243, 0.0048525771126151085, 0.0030614861752837896, 0.3853014409542084], [0.009352106600999832, 0.00640526320785284, 0.010342676192522049, 0.009683347307145596, 0.01485812570899725, 0.08279159665107727, 0.006566026248037815, 0.35758259892463684], [0.01684284582734108, 0.004527321085333824, 0.017688432708382607, 0.015695394948124886, 0.004822377115488052, 0.0427832193672657, 0.019392818212509155, 0.2858852446079254], [0.07127447426319122, 0.021105661988258362, 0.01765519566833973, 0.10097376257181168, 0.06024850532412529, 0.020846011117100716, 0.02582688070833683, 0.24880509078502655], [0.03422432020306587, 0.021881040185689926, 0.01574474386870861, 0.007600976619869471, 0.0021915428806096315, 0.017080625519156456, 0.012712590396404266, 0.3008806109428406], [0.0048760720528662205, 0.012409237213432789, 0.0070931739173829556, 0.002000832697376609, 0.0036244706716388464, 0.010943829081952572, 0.009887771680951118, 0.2570191025733948]], [[0.013927343301475048, 0.06827523559331894, 0.11747953295707703, 0.09750840067863464, 0.04995199292898178, 0.08169525861740112, 0.26087087392807007, 0.12732067704200745], [0.0037514795549213886, 0.01196987833827734, 0.03494424372911453, 0.03082987852394581, 0.09665343910455704, 0.07179718464612961, 0.49876922369003296, 0.09672056138515472], [0.001485280692577362, 0.0027171156834810972, 0.0016808612272143364, 0.04382693022489548, 0.03675924241542816, 0.16926313936710358, 0.25449761748313904, 0.20039351284503937], [0.006171513814479113, 0.004213098436594009, 0.007689651567488909, 0.035497721284627914, 0.05699235945940018, 0.08599193394184113, 0.03939202055335045, 0.35686710476875305], [0.0020864217076450586, 0.0012140811886638403, 0.00038299651350826025, 0.00644735898822546, 0.007998848333954811, 0.03876952454447746, 0.03144445642828941, 0.4030504822731018], [0.0023522975388914347, 0.0005863909027539194, 0.00032853358425199986, 0.003553203074261546, 0.003251932095736265, 0.0077364821918308735, 0.021639319136738777, 0.2969459295272827], [0.030697297304868698, 0.025672459974884987, 0.002026200294494629, 0.004858278203755617, 0.016958247870206833, 0.03626614063978195, 0.05675263702869415, 0.33316755294799805], [0.009200379252433777, 0.004334858153015375, 0.0014812416629865766, 0.0024717114865779877, 0.003434327896684408, 0.0037332160864025354, 0.014813580550253391, 0.160820871591568]], [[0.003247203305363655, 0.016734765842556953, 0.005816273856908083, 0.02339010126888752, 0.13839447498321533, 0.0783526673913002, 0.5656047463417053, 0.06418689340353012], [0.017783576622605324, 0.01628032885491848, 0.07789083570241928, 0.01078982837498188, 0.04307781532406807, 0.11294005811214447, 0.3558245599269867, 0.10164058953523636], [9.902526653604582e-05, 0.004073916934430599, 3.7136174796614796e-05, 0.9544261693954468, 0.01065280195325613, 0.00236969580873847, 0.010051416233181953, 0.006492914166301489], [0.005422523710876703, 0.020473744720220566, 0.3826789855957031, 0.008451919071376324, 0.08547884225845337, 0.24268482625484467, 0.019992487505078316, 0.09712338447570801], [0.0006792040658183396, 0.009112020954489708, 0.0662970095872879, 0.046854693442583084, 0.008737390860915184, 0.43581074476242065, 0.07052099704742432, 0.11608953028917313], [0.00586598040536046, 0.009586179628968239, 0.0005024527781642973, 0.018520750105381012, 0.1304548680782318, 0.0009591386769898236, 0.07688599079847336, 0.3586132228374481], [0.005887024104595184, 0.004573711659759283, 0.04550807178020477, 0.0049680983647704124, 0.3276149034500122, 0.5107601881027222, 0.005239696707576513, 0.02430511824786663], [0.015457957983016968, 0.01945636048913002, 0.008300923742353916, 0.00160056387539953, 0.005112434737384319, 0.011716611683368683, 0.019896110519766808, 0.4466214179992676]], [[0.06649059802293777, 0.05439984053373337, 0.0223244521766901, 0.011947850696742535, 0.00748045276850462, 0.007863557897508144, 0.025249430909752846, 0.17442286014556885], [0.1465049535036087, 0.0661725252866745, 0.014102384448051453, 0.009331862442195415, 0.03154764696955681, 0.16420786082744598, 0.06238081678748131, 0.0880052000284195], [0.07125592976808548, 0.037845902144908905, 0.011587291024625301, 0.0036953638773411512, 0.005372975952923298, 0.024161657318472862, 0.017375433817505836, 0.02179119549691677], [0.13569903373718262, 0.01877519302070141, 0.041450969874858856, 0.008395720273256302, 0.010868458077311516, 0.021202370524406433, 0.04074788838624954, 0.03540491312742233], [0.013668421655893326, 0.0023411950096488, 0.0041036056354641914, 0.00033969542710110545, 0.0006532130064442754, 0.005911857821047306, 0.010446146130561829, 0.005220680497586727], [0.0616401843726635, 0.022456318140029907, 0.020219188183546066, 0.002763928845524788, 0.003370145568624139, 0.013628877699375153, 0.030209604650735855, 0.025910403579473495], [0.14307032525539398, 0.029112787917256355, 0.019062435254454613, 0.0055292933247983456, 0.0032664563041180372, 0.008978256024420261, 0.04075730964541435, 0.08341030776500702], [0.005654643755406141, 0.014292689971625805, 0.019577741622924805, 0.0033030002377927303, 0.012694094330072403, 0.018401412293314934, 0.02777300588786602, 0.09873601794242859]], [[0.022071635350584984, 0.04092884808778763, 0.0585818774998188, 0.08269033581018448, 0.0855441763997078, 0.07963062077760696, 0.1571822166442871, 0.06544698029756546], [0.019024686887860298, 0.024176517501473427, 0.027583064511418343, 0.037872590124607086, 0.02919812686741352, 0.06729917228221893, 0.05900665372610092, 0.04263603314757347], [0.03106481395661831, 0.044395435601472855, 0.0172080360352993, 0.06188589334487915, 0.05043267086148262, 0.08090803027153015, 0.06390834599733353, 0.1465749889612198], [0.026559725403785706, 0.050885822623968124, 0.21843144297599792, 0.04302094131708145, 0.16049493849277496, 0.19344812631607056, 0.057423289865255356, 0.03698739409446716], [0.011178506538271904, 0.04127843677997589, 0.04643681272864342, 0.1468726247549057, 0.061722252517938614, 0.3135157823562622, 0.020892739295959473, 0.0814552828669548], [0.004130168817937374, 0.01765613816678524, 0.020457418635487556, 0.06887971609830856, 0.30653172731399536, 0.22313055396080017, 0.015358373522758484, 0.03249046206474304], [0.04562034457921982, 0.12475969642400742, 0.08526258915662766, 0.0796908289194107, 0.06958846002817154, 0.12920702993869781, 0.05237547308206558, 0.05033749341964722], [0.0021221372298896313, 0.0032666781917214394, 0.0015231661964207888, 0.0011074128560721874, 0.0008529155747964978, 0.001629339880309999, 0.007295794319361448, 0.3383190631866455]], [[0.14375847578048706, 0.1389721781015396, 0.15650571882724762, 0.18927054107189178, 0.039405226707458496, 0.14734160900115967, 0.15737663209438324, 0.00017208002100232989], [0.0813266858458519, 0.05959245562553406, 0.13896241784095764, 0.26633715629577637, 0.03404557704925537, 0.1678851842880249, 0.19371803104877472, 0.0003788716858252883], [0.10483808070421219, 0.19522158801555634, 0.046983249485492706, 0.1087883785367012, 0.05557802692055702, 0.13681387901306152, 0.21160779893398285, 0.0025560909416526556], [0.2691948413848877, 0.20285631716251373, 0.07688498497009277, 0.07929836958646774, 0.06059287488460541, 0.12732230126857758, 0.13470827043056488, 0.0008186959894374013], [0.11549419909715652, 0.17119476199150085, 0.09577608853578568, 0.1899692863225937, 0.024540485814213753, 0.10692265629768372, 0.21435683965682983, 0.0014267897931858897], [0.08809281885623932, 0.16689829528331757, 0.06508523225784302, 0.2711290419101715, 0.05329497531056404, 0.08856726437807083, 0.15377938747406006, 0.0026714380364865065], [0.1578301042318344, 0.1078701913356781, 0.11344996094703674, 0.17818157374858856, 0.050234604626894, 0.19941255450248718, 0.11708803474903107, 0.0009043181780725718], [0.0631398931145668, 0.054393865168094635, 0.08901600539684296, 0.07086573541164398, 0.022017978131771088, 0.0889204666018486, 0.0838044062256813, 0.20905570685863495]], [[0.048907581716775894, 0.06153663620352745, 0.05295651778578758, 0.03979042172431946, 0.01695133186876774, 0.01767057552933693, 0.38970163464546204, 0.02719184383749962], [0.03634963557124138, 0.06613592058420181, 0.011808985844254494, 0.00661960244178772, 0.019977176561951637, 0.034024834632873535, 0.46260493993759155, 0.035368964076042175], [0.11464853584766388, 0.02945755422115326, 0.021228795871138573, 0.09886714816093445, 0.018007831647992134, 0.016416052356362343, 0.11243856698274612, 0.057351112365722656], [0.0854516327381134, 0.015365722589194775, 0.13927532732486725, 0.0662253275513649, 0.10883750021457672, 0.08844134211540222, 0.10394864529371262, 0.07411099970340729], [0.030210701748728752, 0.028912976384162903, 0.05181695520877838, 0.020043091848492622, 0.20750917494297028, 0.39034661650657654, 0.016455737873911858, 0.03994926065206528], [0.018432436510920525, 0.03394339606165886, 0.055974170565605164, 0.02398219332098961, 0.24533863365650177, 0.12275483459234238, 0.032687053084373474, 0.07027378678321838], [0.41869840025901794, 0.06691352277994156, 0.039353806525468826, 0.08412089943885803, 0.016768695786595345, 0.02231862023472786, 0.010441322810947895, 0.042525846511125565], [0.10139051079750061, 0.1182694137096405, 0.09717908501625061, 0.0740463063120842, 0.04925260320305824, 0.029989754781126976, 0.06561510264873505, 0.03530462458729744]], [[0.22119642794132233, 0.00010934696911135688, 0.0006643557571806014, 3.328196544316597e-05, 9.428051271243021e-05, 0.0008516028174199164, 0.0016511741559952497, 0.18229711055755615], [0.00010933079465758055, 0.24741867184638977, 5.6484659580746666e-05, 0.0003197313053533435, 6.398563982656924e-06, 9.052497625816613e-05, 0.0010705945314839482, 0.16203829646110535], [0.00020654189574997872, 3.1595060136169195e-05, 0.28347548842430115, 1.4062512491364032e-05, 6.494088665931486e-06, 2.4871154892025515e-05, 0.000385942286811769, 0.1655144989490509], [0.00011430634185671806, 0.0010190752800554037, 0.00011227899085497484, 0.22408342361450195, 0.00010809279046952724, 9.568055247655138e-05, 0.0019795112311840057, 0.23761805891990662], [2.8114787710364908e-05, 9.27734981814865e-06, 1.0227522579953074e-05, 4.4142485421616584e-05, 0.38679930567741394, 0.0003356502566020936, 0.0004880965279880911, 0.15762969851493835], [0.0005381380906328559, 0.00010418159945402294, 3.7957102904329076e-05, 6.06112735113129e-05, 0.0007822462357580662, 0.0652136504650116, 0.0005113249644637108, 0.19804832339286804], [0.0003735825594048947, 0.00045285469968803227, 0.00014789750275667757, 0.00029891918529756367, 0.00028292369097471237, 9.962243348127231e-05, 0.0935000404715538, 0.2313941866159439], [0.011494921520352364, 0.01386911328881979, 0.0033865408040583134, 0.008826795034110546, 0.006341163069009781, 0.011007431894540787, 0.020613398402929306, 0.18322715163230896]], [[0.005859806668013334, 0.017655963078141212, 0.013937211595475674, 0.012490552850067616, 0.003946955315768719, 0.007475710939615965, 0.0757952332496643, 0.24019363522529602], [0.011346149258315563, 0.006001610308885574, 0.013856709003448486, 0.003458983963355422, 0.001941423979587853, 0.006526427809149027, 0.03637920320034027, 0.27839601039886475], [0.004961076658219099, 0.029356716200709343, 0.015592940151691437, 0.009380440227687359, 0.0031562307849526405, 0.010151279158890247, 0.07818426191806793, 0.1359224170446396], [0.002136186696588993, 0.014849446713924408, 0.016725076362490654, 0.0025098377373069525, 0.0032316420692950487, 0.004887160379439592, 0.013315770775079727, 0.1740463227033615], [0.002829605480656028, 0.03242478519678116, 0.03320515528321266, 0.021991034969687462, 0.0008035348728299141, 0.059604462236166, 0.019003497436642647, 0.0971836969256401], [0.0029629396740347147, 0.033561501652002335, 0.008458543568849564, 0.004247010685503483, 0.00549670634791255, 0.008897955529391766, 0.029893584549427032, 0.1884784996509552], [0.011478420346975327, 0.02154521830379963, 0.03223951533436775, 0.007771638687700033, 0.0027041954454034567, 0.019880862906575203, 0.019679173827171326, 0.23245543241500854], [0.011906598694622517, 0.015356337651610374, 0.012299875728785992, 0.00417743343859911, 0.0033858788665384054, 0.00439974432811141, 0.026879584416747093, 0.26961687207221985]], [[0.004200590308755636, 0.008484791032969952, 0.01640312373638153, 0.006441842298954725, 0.010949919931590557, 0.000888711423613131, 0.03805716708302498, 0.14589402079582214], [0.016607576981186867, 0.17710672318935394, 0.00237080454826355, 0.0007672299980185926, 0.002227987162768841, 0.001268949476070702, 0.016797464340925217, 0.08342400193214417], [0.0061604930087924, 0.0031443138141185045, 0.002245415234938264, 0.005060181953012943, 0.005507911089807749, 0.002887589391320944, 0.021300330758094788, 0.21780315041542053], [0.003336308291181922, 0.0040556928142905235, 0.008462403900921345, 0.002116583986207843, 0.004215013701468706, 0.00417370954528451, 0.04174119606614113, 0.2571059763431549], [0.0017129492480307817, 0.005325031466782093, 0.00914151594042778, 0.006560756359249353, 0.0046642497181892395, 0.010934620164334774, 0.057021237909793854, 0.19447149336338043], [0.0005891172331757843, 0.004202599171549082, 0.002888341899961233, 0.0014854454202577472, 0.006945270113646984, 0.000805056479293853, 0.011658421717584133, 0.23963919281959534], [0.027393124997615814, 0.003633933374658227, 0.0034882931504398584, 0.0015915933763608336, 0.014812763780355453, 0.009673142805695534, 0.08029397577047348, 0.20684362947940826], [0.02353556454181671, 0.015040814876556396, 0.024802949279546738, 0.04028703272342682, 0.07297728210687637, 0.02032008022069931, 0.0635015144944191, 0.18453703820705414]]], [[[0.0016963587841019034, 0.04343685135245323, 0.023814281448721886, 0.02632875181734562, 0.036393698304891586, 0.1093456894159317, 0.04231872782111168, 0.2793356478214264], [0.0020882582757622004, 0.0021655098535120487, 0.015465816482901573, 0.03194478154182434, 0.030286500230431557, 0.07281152158975601, 0.01618834026157856, 0.4195168912410736], [0.00044907856499776244, 0.010765604674816132, 0.0028897759038954973, 0.1274241805076599, 0.15617790818214417, 0.0760139673948288, 0.041925206780433655, 0.3026621341705322], [0.00045586933265440166, 0.004585266578942537, 0.009204753674566746, 0.04407932609319687, 0.3028356432914734, 0.2534273862838745, 0.0154296038672328, 0.1802086979150772], [0.010748859494924545, 0.011472832411527634, 0.006188303232192993, 0.015000557526946068, 0.006573528982698917, 0.013217327184975147, 0.7583897113800049, 0.06690241396427155], [0.005823454353958368, 0.01081096287816763, 0.004527913872152567, 0.016536278650164604, 0.012182661332190037, 0.011118763126432896, 0.7706246376037598, 0.04222780838608742], [0.6120604276657104, 0.1465435028076172, 0.014453024603426456, 0.028639061376452446, 0.009268267080187798, 0.01893697865307331, 0.00406336085870862, 0.031062575057148933], [0.000716417795047164, 0.0006372368079610169, 0.0007312323432415724, 0.0012041775044053793, 0.0008390186703763902, 0.0008140855352394283, 0.003646201454102993, 0.48727190494537354]], [[0.0034246111754328012, 0.011534811928868294, 0.0038573420606553555, 0.00985016580671072, 0.0008040035027079284, 0.0012686030240729451, 0.014856799505650997, 0.43500906229019165], [0.0054847379215061665, 0.010686046443879604, 0.011580334044992924, 0.029445620253682137, 0.010921631939709187, 0.01596014015376568, 0.012294610030949116, 0.16726449131965637], [0.0059769367799162865, 0.011746933683753014, 0.0029733304399996996, 0.012123722583055496, 0.002662101062014699, 0.014138547703623772, 0.016141939908266068, 0.4651659429073334], [0.00808185338973999, 0.002570420503616333, 0.01464450266212225, 0.00245995563454926, 0.0044882227666676044, 0.007807701360434294, 0.015765361487865448, 0.48114702105522156], [0.0020097922533750534, 0.00014643576287198812, 0.0008298148750327528, 0.005793146789073944, 0.09056054055690765, 0.6389860510826111, 0.0015513580292463303, 0.13936926424503326], [0.004524475894868374, 0.0020458821672946215, 0.002325686626136303, 0.011292899027466774, 0.0387813001871109, 0.08969075232744217, 0.009814504534006119, 0.4271290600299835], [0.00976563896983862, 0.01224400382488966, 0.00756114674732089, 0.017550110816955566, 0.006095872260630131, 0.005096809938549995, 0.02016581781208515, 0.3677200376987457], [0.005455663427710533, 0.008655020967125893, 0.004578886087983847, 0.00449566962197423, 0.0012366364244371653, 0.0026502416003495455, 0.015306497924029827, 0.37894758582115173]], [[0.02105966955423355, 0.005749039817601442, 0.002790131140500307, 0.00196623126976192, 0.001175210578367114, 0.0037712149787694216, 0.0052514155395329, 0.48305514454841614], [0.08490371704101562, 0.002081465907394886, 0.0017140712589025497, 0.000830847246106714, 0.0007690382190048695, 0.00365238799713552, 0.00841774232685566, 0.4253802001476288], [0.08620618283748627, 0.011666359379887581, 0.032822202891111374, 0.23797467350959778, 0.06326288729906082, 0.0210683923214674, 0.1790618747472763, 0.1480027139186859], [0.045495904982089996, 0.009842057712376118, 0.05439065396785736, 0.042849864810705185, 0.3019333779811859, 0.07328135520219803, 0.16856414079666138, 0.14167706668376923], [0.07781201601028442, 0.12173343449831009, 0.01955941878259182, 0.03972085937857628, 0.0325206033885479, 0.027027705684304237, 0.0850103497505188, 0.269875705242157], [0.05339881032705307, 0.09822818636894226, 0.04369979351758957, 0.03310321271419525, 0.1294233649969101, 0.0293069276958704, 0.205490380525589, 0.16605804860591888], [0.6670366525650024, 0.14895570278167725, 0.010437785647809505, 0.005437977612018585, 0.0013922702055424452, 0.0025613312609493732, 0.005723379552364349, 0.06568364053964615], [0.017253145575523376, 0.01439250260591507, 0.018619323149323463, 0.011425826698541641, 0.010454332455992699, 0.036537181586027145, 0.02314048819243908, 0.39445915818214417]], [[0.019873522222042084, 0.060984332114458084, 0.025610795244574547, 0.010124742984771729, 0.005425992421805859, 0.010943528264760971, 0.005278751719743013, 0.3069263696670532], [0.030595878139138222, 0.023074021562933922, 0.005258235614746809, 0.016411537304520607, 0.005732754245400429, 0.006106399931013584, 0.018263444304466248, 0.2909976840019226], [0.06505705416202545, 0.06328089535236359, 0.007845091633498669, 0.040057312697172165, 0.017944490537047386, 0.018586907535791397, 0.022392813116312027, 0.3109632730484009], [0.024126902222633362, 0.09028711915016174, 0.043389659374952316, 0.013567181304097176, 0.0170480664819479, 0.05928710475564003, 0.025768481194972992, 0.277668297290802], [0.020703846588730812, 0.06998427957296371, 0.017897240817546844, 0.029291734099388123, 0.023805996403098106, 0.06463689357042313, 0.018756501376628876, 0.2744275629520416], [0.031332943588495255, 0.05508267506957054, 0.007559443823993206, 0.08190315961837769, 0.07170398533344269, 0.03221050649881363, 0.032327037304639816, 0.25641801953315735], [0.010116730816662312, 0.028706198558211327, 0.011727341450750828, 0.009715944528579712, 0.02404075674712658, 0.04453139379620552, 0.03886324167251587, 0.31631720066070557], [0.015491144731640816, 0.01348561979830265, 0.02619824931025505, 0.019132710993289948, 0.03409269452095032, 0.0333671048283577, 0.06559543311595917, 0.2948067784309387]], [[0.050414979457855225, 0.008590475656092167, 0.02460332028567791, 0.10249323397874832, 0.02212272584438324, 0.055966947227716446, 0.05752737447619438, 0.15015044808387756], [0.0011338567128404975, 0.13830946385860443, 4.9935082643060014e-05, 5.2626295655500144e-05, 4.983631515642628e-05, 0.00015292532043531537, 0.0019380685407668352, 0.022427253425121307], [0.03536965325474739, 0.006351954769343138, 0.12163133919239044, 0.16789932548999786, 0.021654589101672173, 0.04068566858768463, 0.02959786169230938, 0.13964448869228363], [0.05552118271589279, 0.0060678510926663876, 0.08895387500524521, 0.2157292515039444, 0.042491886764764786, 0.0706239864230156, 0.01184166967868805, 0.13930077850818634], [0.0010557923233136535, 0.006696704309433699, 0.006256043445318937, 0.010908727534115314, 0.24774286150932312, 0.3984084129333496, 0.004950797185301781, 0.12850512564182281], [0.001464169123210013, 0.004446992184966803, 0.0030188108794391155, 0.004341593943536282, 0.4266420006752014, 0.32678458094596863, 0.003989062737673521, 0.06462882459163666], [0.026382392272353172, 0.01543849240988493, 0.026979804039001465, 0.02332753874361515, 0.056262921541929245, 0.056463100016117096, 0.024026915431022644, 0.13479170203208923], [0.03366883099079132, 0.022494222968816757, 0.026550494134426117, 0.05728454887866974, 0.02301979809999466, 0.03992536664009094, 0.0698113664984703, 0.22074756026268005]], [[0.0073627387173473835, 0.00533401221036911, 0.005864250939339399, 0.0012766201980412006, 0.0010713671799749136, 0.0009084046469070017, 0.018872259184718132, 0.2570396363735199], [0.0015607213135808706, 0.006748128216713667, 0.00410108920186758, 0.0005886416765861213, 0.001930480357259512, 0.004860387649387121, 0.00995497964322567, 0.2777583599090576], [0.020737716928124428, 0.00598968006670475, 0.0036782382521778345, 0.010901479981839657, 0.01046878844499588, 0.01310956384986639, 0.025129426270723343, 0.2969963252544403], [0.0012958789011463523, 0.0017608033958822489, 0.0032158505637198687, 0.0009611584828235209, 0.0022709595505148172, 0.0041665975004434586, 0.00840948149561882, 0.40070468187332153], [0.0013778435532003641, 0.003737699007615447, 0.006553072016686201, 0.003292630659416318, 0.00012181791680632159, 0.0015007142210379243, 0.029383007436990738, 0.337668776512146], [0.0011858895886689425, 0.0044764927588403225, 0.006565919145941734, 0.003261185484007001, 0.00033813808113336563, 0.0010404461063444614, 0.013363399542868137, 0.2993186116218567], [0.030118338763713837, 0.009555677883327007, 0.010188327170908451, 0.007669522427022457, 0.012831166386604309, 0.010416695848107338, 0.014109778217971325, 0.22779570519924164], [0.014840812422335148, 0.010037073865532875, 0.019958045333623886, 0.014719882979989052, 0.02412145584821701, 0.026685211807489395, 0.018039382994174957, 0.2786022424697876]], [[0.09875830262899399, 0.03879382088780403, 0.07041935622692108, 0.28564220666885376, 0.13473956286907196, 0.13820098340511322, 0.10802347958087921, 0.051804907619953156], [0.05459648743271828, 0.09873225539922714, 0.018078718334436417, 0.03541871905326843, 0.06448638439178467, 0.0915878489613533, 0.1710057109594345, 0.25752824544906616], [0.052785977721214294, 0.03861907869577408, 0.08222334086894989, 0.21188823878765106, 0.10806860774755478, 0.13078716397285461, 0.1616954505443573, 0.11331494897603989], [0.03220897167921066, 0.0360710509121418, 0.09017270058393478, 0.08811293542385101, 0.12983353435993195, 0.17740115523338318, 0.10423349589109421, 0.19946399331092834], [0.024063458666205406, 0.15672419965267181, 0.10631737858057022, 0.08241540938615799, 0.08744386583566666, 0.28911709785461426, 0.09944497048854828, 0.07621962577104568], [0.023370452225208282, 0.08838334679603577, 0.1972845047712326, 0.07574187219142914, 0.11305368691682816, 0.15217573940753937, 0.09690532833337784, 0.10754647850990295], [0.06451127678155899, 0.08186668902635574, 0.067957803606987, 0.13537313044071198, 0.15637332201004028, 0.17356529831886292, 0.1803516447544098, 0.0742679312825203], [0.04861001297831535, 0.02656489983201027, 0.05943974480032921, 0.0734231024980545, 0.08971790224313736, 0.07722220569849014, 0.09786650538444519, 0.13116073608398438]], [[0.07482866942882538, 0.04317133501172066, 0.0014033750630915165, 0.00862090103328228, 0.01879740133881569, 0.026756908744573593, 0.3351838290691376, 0.1895415335893631], [0.20757271349430084, 0.011723799630999565, 0.0056944540701806545, 0.049169961363077164, 0.028415462002158165, 0.048320647329092026, 0.1753106266260147, 0.09203783422708511], [0.2065984308719635, 0.014990677125751972, 0.019538192078471184, 0.041061121970415115, 0.03878272697329521, 0.15423835813999176, 0.09221134334802628, 0.1260131448507309], [0.24302281439304352, 0.03511276841163635, 0.02504032291471958, 0.035602059215307236, 0.03311051428318024, 0.06870516389608383, 0.094892717897892, 0.17143408954143524], [0.0520395003259182, 0.027188673615455627, 0.08735772967338562, 0.23192018270492554, 0.041828349232673645, 0.0877753272652626, 0.05010579526424408, 0.14494216442108154], [0.049552347511053085, 0.020506612956523895, 0.07132012397050858, 0.21688765287399292, 0.10370450466871262, 0.060287248343229294, 0.06902183592319489, 0.09324201941490173], [0.11785640567541122, 0.03102685883641243, 0.0644078478217125, 0.1667085587978363, 0.012799013406038284, 0.018863562494516373, 0.009424970485270023, 0.26704680919647217], [0.001812909496948123, 0.002007707953453064, 0.002680248348042369, 0.001971592428162694, 0.004784559365361929, 0.0035575549118220806, 0.003198385937139392, 0.4939432740211487]], [[0.002084612613543868, 0.0005561957368627191, 0.0014683007029816508, 0.00016111831064336002, 0.0003762694541364908, 0.00042524022865109146, 0.00769030163064599, 0.3563368618488312], [0.00598579877987504, 0.009157853201031685, 0.00217249384149909, 0.0008990955539047718, 0.0006298123043961823, 0.0006132062408141792, 0.007449880242347717, 0.2973126769065857], [0.021319732069969177, 0.0076040467247366905, 0.1512872874736786, 0.0054129790514707565, 0.003192170290276408, 0.003939376212656498, 0.024088596925139427, 0.2880862057209015], [0.01645847037434578, 0.006773149129003286, 0.07859909534454346, 0.004702894017100334, 0.0042662410996854305, 0.0034575853496789932, 0.01548469066619873, 0.30049994587898254], [0.014179660007357597, 0.025713196024298668, 0.018001293763518333, 0.013654589653015137, 0.04025905206799507, 0.0721614733338356, 0.05696943774819374, 0.2661978304386139], [0.011539528146386147, 0.02251790463924408, 0.01865800842642784, 0.011011118069291115, 0.016380244866013527, 0.0061696115881204605, 0.061180420219898224, 0.3045109510421753], [0.011561906896531582, 0.002791990991681814, 0.0034200961235910654, 0.0004263815062586218, 0.0023454977199435234, 0.003957652021199465, 0.026300577446818352, 0.3060140311717987], [0.01920214109122753, 0.02016107551753521, 0.03421986103057861, 0.04606100171804428, 0.033302128314971924, 0.03154625743627548, 0.06052703782916069, 0.22832956910133362]], [[0.05765307694673538, 0.001901008072309196, 0.007536872755736113, 0.0068319919519126415, 0.0029761791229248047, 0.005918752867728472, 0.05871230363845825, 0.24409452080726624], [0.007841966114938259, 0.026970697566866875, 0.0008492899942211807, 0.0020911977626383305, 0.0008162970771081746, 0.0027118290308862925, 0.05476989969611168, 0.27923518419265747], [0.0711301937699318, 0.001075957901775837, 0.09662097692489624, 0.06912503391504288, 0.004651287570595741, 0.006799530237913132, 0.019379233941435814, 0.22451423108577728], [0.037867020815610886, 0.0001516553747933358, 0.06356188654899597, 0.3673805594444275, 0.014160789549350739, 0.03530566766858101, 0.043977443128824234, 0.136525958776474], [0.014571050181984901, 0.00028408842626959085, 0.002398516982793808, 0.0037565536331385374, 0.2799164950847626, 0.1964329183101654, 0.06977500021457672, 0.15841124951839447], [0.009427032433450222, 0.0019615599885582924, 0.005817327182739973, 0.0024116404820233583, 0.161089688539505, 0.18992066383361816, 0.04791185259819031, 0.19897080957889557], [0.0581563301384449, 0.01648130640387535, 0.006586473900824785, 0.006086861714720726, 0.0025096586905419827, 0.005156507715582848, 0.07773507386445999, 0.1230817586183548], [0.018371254205703735, 0.023927001282572746, 0.02474764734506607, 0.015799906104803085, 0.01705416664481163, 0.026087237522006035, 0.0261379387229681, 0.33093684911727905]], [[0.04227710887789726, 0.0028156449552625418, 0.008320897817611694, 0.02313046343624592, 0.030756695196032524, 0.041054826229810715, 0.32157638669013977, 0.1394667774438858], [0.04864628240466118, 0.04549003764986992, 0.0032323230989277363, 0.0028355130925774574, 0.01112421415746212, 0.0009374177898280323, 0.01727222464978695, 0.07459127902984619], [0.011605875566601753, 0.003044986166059971, 0.031440362334251404, 0.007231414783746004, 0.01078992523252964, 0.010247860103845596, 0.014358142390847206, 0.46563994884490967], [0.009664541110396385, 0.0015835778322070837, 0.03590034320950508, 0.004795196000486612, 0.0029460359364748, 0.007573799695819616, 0.004010479431599379, 0.46775022149086], [0.01420605182647705, 0.009741378016769886, 0.051131006330251694, 0.011161072179675102, 0.03492269665002823, 0.055801570415496826, 0.02263258397579193, 0.3468469977378845], [0.013382026925683022, 0.006154095754027367, 0.03458422049880028, 0.01632077246904373, 0.022901706397533417, 0.020368412137031555, 0.012024697847664356, 0.37621352076530457], [0.08224445581436157, 0.04308618977665901, 0.11947230249643326, 0.028381820768117905, 0.053372155874967575, 0.013050739653408527, 0.13208967447280884, 0.1328624188899994], [0.004592256620526314, 0.001775078009814024, 0.0027528100181370974, 0.0013917480828240514, 0.0020696839783340693, 0.0032685284968465567, 0.003168020863085985, 0.4657491147518158]], [[0.06524402648210526, 0.007268873509019613, 0.02393418923020363, 0.07452501356601715, 0.03132077306509018, 0.026117483153939247, 0.02592371590435505, 0.2669815123081207], [0.2197365015745163, 0.04419075325131416, 0.007974792271852493, 0.06039087474346161, 0.012480903416872025, 0.011993058025836945, 0.00827112141996622, 0.15984182059764862], [0.00182385987136513, 0.0015877608675509691, 0.7842802405357361, 0.008985773660242558, 0.0073459092527627945, 0.007578442804515362, 0.006970295216888189, 0.043520063161849976], [0.01790892519056797, 0.003995273727923632, 0.10294529050588608, 0.04357773810625076, 0.01807667873799801, 0.03907795995473862, 0.02212400548160076, 0.3548368513584137], [0.018787145614624023, 0.017174435779452324, 0.027899598702788353, 0.055454764515161514, 0.021909315139055252, 0.04137881472706795, 0.042646750807762146, 0.3205856382846832], [0.02267107181251049, 0.009135224856436253, 0.01663285307586193, 0.04211343452334404, 0.009826556779444218, 0.016638237982988358, 0.014036930166184902, 0.4058931767940521], [0.06463637948036194, 0.025132765993475914, 0.021056028082966805, 0.06254459917545319, 0.03878892585635185, 0.08722954243421555, 0.13370639085769653, 0.14509160816669464], [0.0013326802290976048, 0.0006204037927091122, 0.0002672361151780933, 0.0009621839853934944, 0.0038990553002804518, 0.005101409275084734, 0.004158728290349245, 0.046051986515522]]], [[[0.0037680347450077534, 0.01011739019304514, 0.0020574380178004503, 0.0007088994607329369, 0.0012839497067034245, 0.0013907249085605145, 0.006108436733484268, 0.2057793289422989], [0.012600972317159176, 0.006800358649343252, 0.001529003493487835, 0.0008148597553372383, 0.0013255276717245579, 0.00173011957667768, 0.009520416148006916, 0.14846351742744446], [0.006087103392928839, 0.004580381792038679, 0.0027555355336517096, 0.001001044875010848, 0.0013686222955584526, 0.004359197802841663, 0.003597324714064598, 0.4378802180290222], [0.0027869499754160643, 0.00370847899466753, 0.001895884983241558, 0.0003599210758693516, 0.001882963697426021, 0.003024386242032051, 0.0034445396158844233, 0.4020995497703552], [0.0019730671774595976, 0.003757168771699071, 0.001814311370253563, 0.0011841977247968316, 0.0007055472815409303, 0.002085272455587983, 0.0026086634024977684, 0.4520166516304016], [0.0012780457036569715, 0.005804226268082857, 0.0014257780276238918, 0.0008848903235048056, 0.0017981536220759153, 0.00331663666293025, 0.0024215076118707657, 0.3683658540248871], [0.01782640442252159, 0.017638415098190308, 0.0031769585330039263, 0.0014164091553539038, 0.0016962096560746431, 0.0017007789574563503, 0.011082235723733902, 0.18578936159610748], [0.005664305295795202, 0.0030453111976385117, 0.0027993745170533657, 0.0022439612075686455, 0.0015768746379762888, 0.0030868847388774157, 0.011895126663148403, 0.4376065731048584]], [[0.014840122312307358, 0.0013085606042295694, 0.039486441761255264, 0.0026478422805666924, 0.0005709935212507844, 0.0010041547939181328, 0.01806369423866272, 0.38482511043548584], [0.1274683177471161, 0.01506918016821146, 0.23681846261024475, 0.05273933708667755, 0.029125070199370384, 0.0955008938908577, 0.04775208234786987, 0.026955148205161095], [0.02431645430624485, 0.0017582984874024987, 0.010459288954734802, 0.03339405357837677, 0.007945789024233818, 0.0036622625775635242, 0.014522621408104897, 0.3849082887172699], [0.04700079932808876, 0.001978689106181264, 0.22726276516914368, 0.04526595026254654, 0.04508696496486664, 0.14352884888648987, 0.03737841919064522, 0.12657026946544647], [0.04344695433974266, 0.0030722073279321194, 0.013888254761695862, 0.019411059096455574, 0.003676072461530566, 0.004668432287871838, 0.008724630810320377, 0.4267577826976776], [0.032771483063697815, 0.0011923447018489242, 0.012779499404132366, 0.031087882816791534, 0.011963548138737679, 0.0036647554952651262, 0.01164622139185667, 0.42539161443710327], [0.20115990936756134, 0.008319775573909283, 0.15714073181152344, 0.036948319524526596, 0.007364704739302397, 0.008542901836335659, 0.02468431554734707, 0.10846249014139175], [0.0031514132861047983, 0.0024319614749401808, 0.0019019941100850701, 0.0013559728395193815, 0.0007875753799453378, 0.0015469209756702185, 0.0023786742240190506, 0.4691597521305084]], [[0.02438487485051155, 0.056342821568250656, 0.10847561061382294, 0.028441699221730232, 0.016355125233530998, 0.07422536611557007, 0.08082561194896698, 0.29835930466651917], [0.07674339413642883, 0.06005560979247093, 0.2807020843029022, 0.05430763587355614, 0.026237284764647484, 0.07856515794992447, 0.13309387862682343, 0.09161370247602463], [0.028500575572252274, 0.03270089998841286, 0.019113661721348763, 0.013181978836655617, 0.008487225510179996, 0.03910672664642334, 0.02765830047428608, 0.3773428797721863], [0.039313022047281265, 0.043547533452510834, 0.09648048132658005, 0.006568219978362322, 0.008414344862103462, 0.02256062626838684, 0.04230526089668274, 0.35889238119125366], [0.005097770132124424, 0.009009651839733124, 0.0104592964053154, 0.005795119795948267, 0.0011189539218321443, 0.0024994288105517626, 0.005162742454558611, 0.4674362540245056], [0.009303785860538483, 0.014094715937972069, 0.02185630425810814, 0.009364325553178787, 0.004373994190245867, 0.004859173204749823, 0.019144974648952484, 0.43929022550582886], [0.03983159363269806, 0.07692816108465195, 0.08455802500247955, 0.06422775983810425, 0.0204963106662035, 0.04479874670505524, 0.07839468121528625, 0.13165226578712463], [0.007312878035008907, 0.009336182847619057, 0.0032839528284966946, 0.0017670848174020648, 0.0006519770831800997, 0.002209938131272793, 0.012409497983753681, 0.4259493052959442]], [[0.26556169986724854, 0.28196024894714355, 0.04583445563912392, 0.09193549305200577, 0.013926739804446697, 0.029472045600414276, 0.0394529290497303, 0.1317133754491806], [0.32566601037979126, 0.20180393755435944, 0.030266478657722473, 0.08240750432014465, 0.038651201874017715, 0.05873998999595642, 0.11753781139850616, 0.08272930979728699], [0.1750241369009018, 0.23541271686553955, 0.031787142157554626, 0.15129630267620087, 0.019971439614892006, 0.03018873557448387, 0.12603642046451569, 0.131233811378479], [0.1829490214586258, 0.06646079570055008, 0.09687380492687225, 0.19819007813930511, 0.02818789705634117, 0.06094944477081299, 0.07096985727548599, 0.17217500507831573], [0.21221914887428284, 0.057410579174757004, 0.05714748799800873, 0.0629132017493248, 0.051415786147117615, 0.07971934974193573, 0.2734029293060303, 0.09080594033002853], [0.11927974224090576, 0.08668158203363419, 0.04186565801501274, 0.08596266061067581, 0.10303383320569992, 0.09668242186307907, 0.12849071621894836, 0.18440285325050354], [0.19421376287937164, 0.15419024229049683, 0.018400857225060463, 0.0642792135477066, 0.051191214472055435, 0.11149299889802933, 0.11672280728816986, 0.15388274192810059], [0.044141292572021484, 0.000980180804617703, 0.0015524347545579076, 0.009378008544445038, 0.007391740567982197, 0.014959284104406834, 0.08218418806791306, 0.27219095826148987]], [[0.0838741883635521, 0.049962118268013, 0.044467613101005554, 0.009598050266504288, 0.008946756832301617, 0.01274880301207304, 0.07569101452827454, 0.1688639223575592], [0.1817731112241745, 0.007597863208502531, 0.033480092883110046, 0.06982488930225372, 0.05618320405483246, 0.060275815427303314, 0.12317872047424316, 0.1510801762342453], [0.19782155752182007, 0.062119461596012115, 0.024056755006313324, 0.0280571598559618, 0.037816375494003296, 0.04873092845082283, 0.12775467336177826, 0.12950685620307922], [0.07294398546218872, 0.08815183490514755, 0.0590052492916584, 0.011987412348389626, 0.008345074020326138, 0.024434493854641914, 0.044371023774147034, 0.1813422292470932], [0.03601160645484924, 0.1817115843296051, 0.023733709007501602, 0.01251690462231636, 0.000523271388374269, 0.003131855046376586, 0.1747126579284668, 0.13317681849002838], [0.04160265251994133, 0.17082461714744568, 0.0653349757194519, 0.09466809779405594, 0.015321015380322933, 0.015078390017151833, 0.09486056864261627, 0.13631370663642883], [0.09398935735225677, 0.08839790523052216, 0.10018263012170792, 0.01845436729490757, 0.0587228462100029, 0.043921519070863724, 0.16277523338794708, 0.13058136403560638], [0.040973346680402756, 0.056740548461675644, 0.028102349489927292, 0.03387371078133583, 0.03862035647034645, 0.048412393778562546, 0.07143495231866837, 0.15871340036392212]], [[0.04152660816907883, 0.026114612817764282, 0.04644668102264404, 0.11197292804718018, 0.03548828139901161, 0.02690413035452366, 0.10786480456590652, 0.19630101323127747], [0.002236614702269435, 0.18039251863956451, 0.0007021683268249035, 0.0005380944930948317, 0.0013695275411009789, 0.0014217051211744547, 0.02658555656671524, 0.12022377550601959], [0.0032987233716994524, 0.005305584520101547, 0.03740245848894119, 0.15607498586177826, 0.0388929508626461, 0.043887872248888016, 0.007889741100370884, 0.30175110697746277], [0.003688205499202013, 0.00458797812461853, 0.013329659588634968, 0.09101948887109756, 0.12248995155096054, 0.021962657570838928, 0.01028417982161045, 0.2958429455757141], [0.0025607829447835684, 0.0010256258537992835, 0.0012142137857154012, 0.0905708447098732, 0.2220073789358139, 0.24546314775943756, 0.0022201782558113337, 0.18808981776237488], [0.002050001872703433, 0.00045076539390720427, 0.0005245659849606454, 0.03005126491189003, 0.3267979025840759, 0.15003377199172974, 0.001569760381244123, 0.21744513511657715], [0.03622182458639145, 0.07857640832662582, 0.014126379042863846, 0.07771772146224976, 0.03430793434381485, 0.08873587846755981, 0.057713620364665985, 0.17210865020751953], [0.013680282048881054, 0.006776736583560705, 0.008982094004750252, 0.00785152055323124, 0.0042439838871359825, 0.005718466360121965, 0.01076946035027504, 0.4165489673614502]], [[0.08706522732973099, 0.005857251584529877, 0.007412291131913662, 0.06019121780991554, 0.03752140700817108, 0.0341554693877697, 0.00837808009237051, 0.2983419597148895], [0.03666605427861214, 0.06804057955741882, 0.00826227106153965, 0.0231171865016222, 0.020987797528505325, 0.024092931300401688, 0.054810263216495514, 0.2842743992805481], [0.09762229025363922, 0.01705210469663143, 0.016025260090827942, 0.07783763855695724, 0.06277673691511154, 0.028893250972032547, 0.011506946757435799, 0.22368192672729492], [0.015304689295589924, 0.045718900859355927, 0.008876322768628597, 0.01618959754705429, 0.013929045759141445, 0.010676085948944092, 0.031918950378894806, 0.3216131329536438], [0.027151932939887047, 0.11788447201251984, 0.01176005881279707, 0.03727806359529495, 0.04098964482545853, 0.04142532870173454, 0.05369703471660614, 0.21745195984840393], [0.014422743581235409, 0.0760827511548996, 0.01532750390470028, 0.03502415493130684, 0.0332510881125927, 0.021763911470770836, 0.031127475202083588, 0.3029654622077942], [0.010158421471714973, 0.04824785143136978, 0.006508584134280682, 0.020357416942715645, 0.02361544407904148, 0.01762244664132595, 0.07775110751390457, 0.23928780853748322], [0.003327441867440939, 0.0041311620734632015, 0.0015518590807914734, 0.001283178455196321, 0.0014886875869706273, 0.0021921079605817795, 0.006300783716142178, 0.4808203876018524]], [[0.3981427848339081, 0.0001430990669177845, 1.0313862730981782e-05, 1.5928937500575557e-05, 2.43582599068759e-06, 1.9739929484785534e-05, 0.00017232833488378674, 0.002858119085431099], [4.224324129609158e-06, 0.1874210089445114, 6.41541078039154e-08, 3.8901990251360985e-07, 1.5369962511613267e-06, 2.8495185233623488e-06, 2.452236003591679e-05, 0.0005868630832992494], [1.1280466424068436e-05, 2.5483777790213935e-06, 0.5673357844352722, 0.0001800861646188423, 2.9578353860415518e-05, 2.65734543063445e-05, 2.604628389235586e-05, 0.0037079621106386185], [4.628387978300452e-05, 4.282952068024315e-05, 0.000389767752494663, 0.06887504458427429, 0.000504101684782654, 0.00041015748865902424, 6.764943100279197e-05, 0.004012505989521742], [4.559553417493589e-06, 5.656806752085686e-05, 1.345186319667846e-05, 0.00010998273501172662, 0.557847261428833, 0.050550296902656555, 0.0006638870690949261, 0.0035178351681679487], [7.33960132492939e-06, 2.791397855617106e-05, 4.250570782460272e-06, 2.4608452804386616e-05, 0.033816851675510406, 0.7830237746238708, 0.0002724375226534903, 0.001513192430138588], [5.5021519074216485e-05, 0.00016640385729260743, 1.107062962546479e-05, 1.499476820754353e-05, 8.318276377394795e-05, 0.00012007253826595843, 0.4437243938446045, 0.007920338772237301], [0.065454863011837, 0.027140682563185692, 0.009864493273198605, 0.019179660826921463, 0.010259775444865227, 0.022666333243250847, 0.040682610124349594, 0.22223085165023804]], [[0.44246822595596313, 0.02071460522711277, 0.0010239272378385067, 0.008562631905078888, 0.01139331515878439, 0.014961163513362408, 0.04564831033349037, 0.07636153697967529], [0.21883663535118103, 0.13909012079238892, 0.003814751747995615, 0.006077473517507315, 0.012380351312458515, 0.00395074812695384, 0.09228211641311646, 0.06433528661727905], [0.1234544888138771, 0.023582691326737404, 0.003017864190042019, 0.0017162382137030363, 0.009371913969516754, 0.016971569508314133, 0.02475302293896675, 0.33891159296035767], [0.06546493619680405, 0.007070925552397966, 0.003873503766953945, 0.005213557276874781, 0.0038225280586630106, 0.006586284842342138, 0.001729118637740612, 0.3859153389930725], [0.07567020505666733, 0.023418530821800232, 0.008936692960560322, 0.01541205495595932, 0.01106566283851862, 0.031168535351753235, 0.029420187696814537, 0.24179214239120483], [0.03410377725958824, 0.01032322645187378, 0.008739592507481575, 0.018789246678352356, 0.020711369812488556, 0.03466292843222618, 0.01791529357433319, 0.361691951751709], [0.4481610655784607, 0.024148615077137947, 0.0030854649376124144, 0.008612181060016155, 0.023680653423070908, 0.026031577959656715, 0.08909101039171219, 0.047229815274477005], [0.002610776573419571, 0.002038220874965191, 0.0007411545375362039, 0.0006175400922074914, 0.0008927881135605276, 0.0007382421754300594, 0.0017119499389082193, 0.4869885742664337]], [[0.007103921379894018, 0.2491903156042099, 0.008471415378153324, 0.013476744294166565, 0.015292834490537643, 0.24435527622699738, 0.08526758849620819, 0.14685308933258057], [0.6358482241630554, 0.04185083135962486, 0.0064671714790165424, 0.007325771264731884, 0.012678802944719791, 0.021403003484010696, 0.03589853271842003, 0.08766209334135056], [0.002192141953855753, 0.002111768117174506, 0.00011826671834569424, 0.9365773797035217, 0.004679031670093536, 0.014322083443403244, 0.0025440813042223454, 0.011778962798416615], [0.00014143298903945833, 0.0012957515427842736, 0.9128997921943665, 0.00019785920449066907, 0.0010000524343922734, 0.006657343823462725, 0.001121798879466951, 0.031465109437704086], [7.243487925734371e-05, 0.0020801685750484467, 0.002515074796974659, 0.013138941489160061, 0.013515998609364033, 0.8798472285270691, 0.017791997641324997, 0.024965189397335052], [0.0014993351651355624, 0.0031883211340755224, 0.005818007048219442, 0.009238418191671371, 0.8628991842269897, 0.0052667162381112576, 0.019341936334967613, 0.03611455112695694], [0.027571791782975197, 0.058400530368089676, 0.059598151594400406, 0.030119767412543297, 0.1764165610074997, 0.40899723768234253, 0.054463885724544525, 0.06441550701856613], [0.050131164491176605, 0.05698935687541962, 0.017769869416952133, 0.015925999730825424, 0.012618206441402435, 0.02194317989051342, 0.0541968047618866, 0.2503035366535187]], [[0.02373965084552765, 0.01259586215019226, 0.002859694417566061, 0.006989844609051943, 0.005218239035457373, 0.00419235322624445, 0.010987569577991962, 0.4466913938522339], [0.0029547137673944235, 0.23792485892772675, 0.0003149133117403835, 0.0002752009895630181, 0.0005135594983585179, 0.0002646218636073172, 0.0051895552314817905, 0.06916012614965439], [0.0013387096114456654, 0.012678942643105984, 0.07251113653182983, 0.021529830992221832, 0.0016468254616484046, 0.0026867168489843607, 0.0015883127925917506, 0.43407773971557617], [0.0008950172923505306, 0.003501642495393753, 0.008178569376468658, 0.07352893799543381, 0.0016593364998698235, 0.0033335292246192694, 0.0014292368432506919, 0.4350525140762329], [0.09490353614091873, 0.11428601294755936, 0.018736863508820534, 0.022037819027900696, 0.06502929329872131, 0.10713031888008118, 0.007348590064793825, 0.22831745445728302], [0.028256116434931755, 0.0492672324180603, 0.01164205651730299, 0.026400674134492874, 0.030927538871765137, 0.0554853193461895, 0.008229000493884087, 0.3638533353805542], [0.2152269333600998, 0.37943756580352783, 0.03995276242494583, 0.028697805479168892, 0.017712391912937164, 0.012051386758685112, 0.041439756751060486, 0.03859568387269974], [0.003981856629252434, 0.0023538446985185146, 0.0009857633849605918, 0.0034294750075787306, 0.0015889498172327876, 0.0025830105878412724, 0.001771243056282401, 0.47914549708366394]], [[0.04260949417948723, 0.015275034122169018, 0.03099219501018524, 0.007589003536850214, 0.004136906936764717, 0.003975234925746918, 0.1305551528930664, 0.3420291244983673], [0.05159322917461395, 0.0959496796131134, 0.01279450487345457, 0.10031656175851822, 0.008924460038542747, 0.030730612576007843, 0.07733865827322006, 0.2233208864927292], [0.04660920053720474, 0.007483022287487984, 0.01469020638614893, 0.013795307837426662, 0.006084782537072897, 0.008098689839243889, 0.06909304112195969, 0.3730418384075165], [0.011517291888594627, 0.014738879166543484, 0.01524115726351738, 0.0059837885200977325, 0.006411973387002945, 0.011587921530008316, 0.02359296754002571, 0.41024717688560486], [0.040411461144685745, 0.032732728868722916, 0.009501599706709385, 0.007069308776408434, 0.001155844540335238, 0.0020612222142517567, 0.051742397248744965, 0.3686145544052124], [0.015711462125182152, 0.011430365033447742, 0.009247093461453915, 0.009218628518283367, 0.0039481609128415585, 0.002190220169723034, 0.01950480043888092, 0.4292961359024048], [0.052017226815223694, 0.10487690567970276, 0.01837259903550148, 0.01100108027458191, 0.041804101318120956, 0.03691233694553375, 0.13987357914447784, 0.23217403888702393], [0.006697922945022583, 0.004753866232931614, 0.0028129389975219965, 0.0038341365288943052, 0.010505229234695435, 0.008085634559392929, 0.005789699032902718, 0.4507160782814026]]], [[[0.01935252547264099, 0.006374059244990349, 0.0004613842465914786, 6.5750164139899425e-06, 5.526042059500469e-06, 0.00011230498785153031, 0.0007515779579989612, 0.46400120854377747], [0.8638006448745728, 0.00991840846836567, 0.0027865043375641108, 0.0007232613861560822, 0.00013436703011393547, 0.00023054922348819673, 0.0007160796667449176, 0.05915839597582817], [0.010656886734068394, 0.13909605145454407, 0.010132971219718456, 0.022762980312108994, 0.0021747977007180452, 0.00034168214187957346, 9.013150702230632e-05, 0.3922111988067627], [0.0004900486092083156, 0.013175411149859428, 0.8559287190437317, 0.0009163409704342484, 0.0008550789207220078, 8.614702528575435e-05, 1.536821582703851e-05, 0.06286101788282394], [0.00018278085917700082, 0.007353080902248621, 0.02059979736804962, 0.08663886040449142, 0.021290861070156097, 0.01294338796287775, 0.0006382240680977702, 0.41589227318763733], [9.130642865784466e-05, 0.005906779319047928, 0.012902558781206608, 0.034313399344682693, 0.11630579084157944, 0.010384070686995983, 0.001335323671810329, 0.4082588851451874], [0.0001967396237887442, 0.00044995578355155885, 0.0003799397964030504, 0.005566427018493414, 0.1335822492837906, 0.6433798670768738, 0.013692405074834824, 0.10143276304006577], [0.007598317228257656, 0.01184071134775877, 0.00819436740130186, 0.0051026432774960995, 0.008000517264008522, 0.0063572959043085575, 0.02648719772696495, 0.4154805541038513]], [[0.11719891428947449, 0.011757936328649521, 0.006067921407520771, 0.004328660201281309, 0.0011421196395531297, 0.0036594390403479338, 0.013909421861171722, 0.3854497969150543], [0.08464206010103226, 0.044704537838697433, 0.005826888605952263, 0.0024582785554230213, 0.0012011387152597308, 0.0038834293372929096, 0.015836486592888832, 0.3134428560733795], [0.6618878245353699, 0.04546627029776573, 0.003613860346376896, 0.012015326879918575, 0.009610079228878021, 0.022729383781552315, 0.08204647153615952, 0.055710915476083755], [0.36009350419044495, 0.05813515931367874, 0.02671346440911293, 0.016857435926795006, 0.023078473284840584, 0.02597385086119175, 0.12283898144960403, 0.12618137896060944], [0.27864304184913635, 0.07962139695882797, 0.08276437222957611, 0.09034915268421173, 0.058843646198511124, 0.04596675559878349, 0.1311248540878296, 0.075166717171669], [0.36173009872436523, 0.06562229990959167, 0.029381074011325836, 0.0829448252916336, 0.04596933349967003, 0.01576196774840355, 0.16803304851055145, 0.08385728299617767], [0.4644696116447449, 0.15407297015190125, 0.045852839946746826, 0.03271123021841049, 0.015708668157458305, 0.015105503611266613, 0.06326187402009964, 0.05865337327122688], [0.012330247089266777, 0.02403009869158268, 0.0037268218584358692, 0.004980555735528469, 0.0021687231492251158, 0.004302582237869501, 0.012045906856656075, 0.43480512499809265]], [[0.15460164844989777, 0.011832552962005138, 0.28343135118484497, 0.018459884449839592, 0.011896039359271526, 0.03203675523400307, 0.017319830134510994, 0.19841118156909943], [0.08351188153028488, 0.020119065418839455, 0.09925579279661179, 0.05405725538730621, 0.05946948006749153, 0.07493478059768677, 0.45395129919052124, 0.054100628942251205], [0.32311341166496277, 0.007008376065641642, 0.02277667261660099, 0.020729457959532738, 0.06919568032026291, 0.02322600781917572, 0.2209407538175583, 0.10881854593753815], [0.1415555477142334, 0.004987755790352821, 0.05386420339345932, 0.017745163291692734, 0.13775202631950378, 0.2205449342727661, 0.2650304436683655, 0.059595633298158646], [0.09943632781505585, 0.01668786071240902, 0.12166517972946167, 0.20644888281822205, 0.05490894243121147, 0.05007820576429367, 0.17126207053661346, 0.12814268469810486], [0.05816950649023056, 0.006413677707314491, 0.2604367733001709, 0.24804487824440002, 0.05097700655460358, 0.021885981783270836, 0.2107435017824173, 0.06462740898132324], [0.1780526489019394, 0.009435616433620453, 0.35736867785453796, 0.2140316516160965, 0.027324117720127106, 0.01903369463980198, 0.025390230119228363, 0.07463827729225159], [0.011634405702352524, 0.00648960517719388, 0.012840671464800835, 0.006777993403375149, 0.0022574723698198795, 0.003014270681887865, 0.008313097059726715, 0.445934921503067]], [[0.009957455098628998, 0.0038648745976388454, 0.0032010285649448633, 0.001637027831748128, 0.0014145619934424758, 0.0028786929324269295, 0.014316998422145844, 0.3600457012653351], [0.030063573271036148, 0.1210775226354599, 0.0033524015452712774, 0.0035345377400517464, 0.0009526506764814258, 0.0023503759875893593, 0.046079669147729874, 0.11493832617998123], [0.008527032099664211, 0.014413979835808277, 0.011482027359306812, 0.002143146703019738, 0.0029713260009884834, 0.016046395525336266, 0.015013432130217552, 0.26973533630371094], [0.009942014701664448, 0.013681070879101753, 0.0074101281352341175, 0.005489821545779705, 0.008449274115264416, 0.020850056782364845, 0.013680189847946167, 0.3561550974845886], [0.004590584896504879, 0.01664614863693714, 0.0005911394255235791, 0.0026736888103187084, 0.02962396666407585, 0.056544847786426544, 0.003622097196057439, 0.3155851364135742], [0.0036843710113316774, 0.01055007055401802, 0.0005664242198690772, 0.0028834156692028046, 0.06952077150344849, 0.061710719019174576, 0.0033693057484924793, 0.271271675825119], [0.02156408131122589, 0.009758148342370987, 0.0064997440204024315, 0.0009732784237712622, 0.003025449812412262, 0.002336277160793543, 0.07398392260074615, 0.12655596435070038], [0.012165863066911697, 0.005988001823425293, 0.007207722403109074, 0.006098099984228611, 0.00557590089738369, 0.012698270380496979, 0.01672135479748249, 0.41822412610054016]], [[0.06490994989871979, 0.040692925453186035, 0.0004655596276279539, 0.0004783187177963555, 0.0004585811693686992, 0.0009283209801651537, 0.026849865913391113, 0.36087992787361145], [0.357169508934021, 0.0604865588247776, 0.0024894257076084614, 0.0031617896165698767, 0.002296684542670846, 0.006000869441777468, 0.026059865951538086, 0.2280031442642212], [0.07577414065599442, 0.08262647688388824, 0.003469713730737567, 0.022445926442742348, 0.00809937808662653, 0.009913328103721142, 0.00890932697802782, 0.38159558176994324], [0.021489791572093964, 0.015058313496410847, 0.560596227645874, 0.0035930301528424025, 0.02342190593481064, 0.0031429133377969265, 0.004967023618519306, 0.17796869575977325], [0.019182046875357628, 0.04777476191520691, 0.035996802151203156, 0.05052071809768677, 0.019790317863225937, 0.01855073869228363, 0.018881184980273247, 0.3850640654563904], [0.016077794134616852, 0.011704719625413418, 0.16532965004444122, 0.032487887889146805, 0.20103679597377777, 0.009229163639247417, 0.023146359249949455, 0.2599335312843323], [0.018887383863329887, 0.0353982113301754, 0.012096144258975983, 0.06347209960222244, 0.1776033192873001, 0.08369502425193787, 0.05194621533155441, 0.26724523305892944], [0.02831931598484516, 0.012103920802474022, 0.0036694647278636694, 0.008654714561998844, 0.0076136114075779915, 0.008814017288386822, 0.055927813053131104, 0.35503455996513367]], [[0.011428967118263245, 0.006546787917613983, 0.0014884433476254344, 0.0020279143936932087, 0.002331080846488476, 0.006528398022055626, 0.010533617809414864, 0.3929043114185333], [0.011473086662590504, 0.027547687292099, 0.002986195031553507, 0.001712881843559444, 0.0010780958691611886, 0.005659767892211676, 0.015391579829156399, 0.256145715713501], [0.03468139097094536, 0.01638837531208992, 0.033687639981508255, 0.010603289119899273, 0.0037281420081853867, 0.010846403427422047, 0.0954248234629631, 0.35347044467926025], [0.02230188064277172, 0.010080968961119652, 0.018977761268615723, 0.01645754650235176, 0.005641183815896511, 0.011253847740590572, 0.06706871092319489, 0.3635134696960449], [0.00479470007121563, 0.0064110723324120045, 0.0035229807253926992, 0.004907379858195782, 0.008322231471538544, 0.02414313517510891, 0.04080833122134209, 0.37733960151672363], [0.005483775865286589, 0.003932313993573189, 0.002706279279664159, 0.00404629111289978, 0.007473548408597708, 0.014809651300311089, 0.032824985682964325, 0.3997621536254883], [0.01862853765487671, 0.022012902423739433, 0.006029351614415646, 0.004989866632968187, 0.0017491532489657402, 0.009248408488929272, 0.17184071242809296, 0.2794516682624817], [0.010842311196029186, 0.008559994399547577, 0.00946419220417738, 0.005121259950101376, 0.0051180520094931126, 0.014033717103302479, 0.02873361110687256, 0.4258183240890503]], [[0.042416349053382874, 0.05656822398304939, 0.05021902173757553, 0.016728203743696213, 0.006905470043420792, 0.005496591329574585, 0.09490811824798584, 0.32159021496772766], [0.036283187568187714, 0.020287038758397102, 0.012836650013923645, 0.012336392886936665, 0.0054787821136415005, 0.007587513420730829, 0.030229957774281502, 0.1475067138671875], [0.05397535115480423, 0.0461876317858696, 0.022840747609734535, 0.03349493443965912, 0.031100351363420486, 0.09129539132118225, 0.041359156370162964, 0.3286501467227936], [0.018506208434700966, 0.01627606712281704, 0.11237353086471558, 0.009774484671652317, 0.036311376839876175, 0.07095467299222946, 0.022027291357517242, 0.34349051117897034], [0.013963821344077587, 0.017246467992663383, 0.029554596170783043, 0.04664463549852371, 0.02377084083855152, 0.06745195388793945, 0.02254267781972885, 0.37886160612106323], [0.019110489636659622, 0.07317928224802017, 0.1593218594789505, 0.05956564098596573, 0.08013103157281876, 0.01315735187381506, 0.010142222978174686, 0.2829848527908325], [0.08036120235919952, 0.17118582129478455, 0.19206595420837402, 0.07721170783042908, 0.10635712742805481, 0.05623708665370941, 0.030059166252613068, 0.12552385032176971], [0.005521963816136122, 0.013870655559003353, 0.005608419422060251, 0.0040552932769060135, 0.002646612236276269, 0.002938727615401149, 0.009850203059613705, 0.4547234773635864]], [[0.022182554006576538, 0.013732722960412502, 0.006271897349506617, 0.003500771475955844, 0.001067954464815557, 0.004510459024459124, 0.03708958998322487, 0.4343414008617401], [0.18227675557136536, 0.008268915116786957, 0.016725212335586548, 0.024091625586152077, 0.0025451574474573135, 0.009003991261124611, 0.03464454039931297, 0.35148975253105164], [0.03911096602678299, 0.014971334487199783, 0.012246373109519482, 0.008071092888712883, 0.003136136569082737, 0.0019348402274772525, 0.013914392329752445, 0.4396437704563141], [0.05455898120999336, 0.005699012894183397, 0.026465043425559998, 0.03013758733868599, 0.017765892669558525, 0.028048092499375343, 0.015839852392673492, 0.39744284749031067], [0.01942555606365204, 0.004931693430989981, 0.00954618863761425, 0.010857670567929745, 0.01430565770715475, 0.018236681818962097, 0.026817047968506813, 0.4389609694480896], [0.026672488078475, 0.030713923275470734, 0.013119624927639961, 0.04527655616402626, 0.1075688898563385, 0.020399028435349464, 0.02217903360724449, 0.35583603382110596], [0.05407317355275154, 0.008293156512081623, 0.06778424978256226, 0.031225314363837242, 0.17754624783992767, 0.09328951686620712, 0.04399356245994568, 0.25789394974708557], [0.010436697863042355, 0.01091319415718317, 0.0054810200817883015, 0.006836700718849897, 0.005600787233561277, 0.009205058217048645, 0.024293290451169014, 0.4165331721305847]], [[0.05131588131189346, 0.09697055071592331, 0.08580992370843887, 0.17250189185142517, 0.15189795196056366, 0.14122340083122253, 0.23551951348781586, 0.020680420100688934], [0.06104925274848938, 0.03216121718287468, 0.04262640327215195, 0.10333573073148727, 0.16931265592575073, 0.2219616025686264, 0.1854526549577713, 0.07416332513093948], [0.0440375916659832, 0.09921767562627792, 0.019260209053754807, 0.061059679836034775, 0.10695835202932358, 0.23787152767181396, 0.08528541773557663, 0.14849716424942017], [0.05204802379012108, 0.08926312625408173, 0.03960205614566803, 0.0287737138569355, 0.12901489436626434, 0.17477378249168396, 0.08269420266151428, 0.17613764107227325], [0.04066403582692146, 0.09391944855451584, 0.05924486741423607, 0.05047112703323364, 0.007072144653648138, 0.01549836341291666, 0.03072803094983101, 0.3277694284915924], [0.04040796682238579, 0.09281772375106812, 0.038084808737039566, 0.03996624797582626, 0.01620369590818882, 0.019190222024917603, 0.01750001683831215, 0.3563762903213501], [0.058753978461027145, 0.10870809108018875, 0.0813615545630455, 0.14224953949451447, 0.15841716527938843, 0.14703968167304993, 0.10503080487251282, 0.07702938467264175], [0.005695832893252373, 0.005758575163781643, 0.003869175212457776, 0.0022632593754678965, 0.003518057521432638, 0.005080585367977619, 0.004129423294216394, 0.46384739875793457]], [[0.01795988157391548, 0.009873723611235619, 0.005708467215299606, 0.011519615538418293, 0.05709651857614517, 0.060107432305812836, 0.6019048094749451, 0.10806416720151901], [0.015430368483066559, 0.03214710205793381, 0.008477655239403248, 0.006266812793910503, 0.10698418319225311, 0.06688863039016724, 0.5240752100944519, 0.11025447398424149], [0.015821443870663643, 0.0031072362326085567, 0.003026719903573394, 0.021945657208561897, 0.10184614360332489, 0.08656800538301468, 0.1685444712638855, 0.29148489236831665], [0.01016230508685112, 0.001222248189151287, 0.015222378075122833, 0.02500336244702339, 0.02272692508995533, 0.04186059907078743, 0.06124873831868172, 0.3938107192516327], [0.0065319109708070755, 0.003817638847976923, 0.0015745162963867188, 0.01423345785588026, 0.032373636960983276, 0.06914874166250229, 0.03475236892700195, 0.40999534726142883], [0.013429762795567513, 0.00517049478366971, 0.0032699573785066605, 0.0110192084684968, 0.023920413106679916, 0.03501049801707268, 0.03921378776431084, 0.43000227212905884], [0.019486485049128532, 0.032194584608078, 0.011964375153183937, 0.010498319752514362, 0.08868256956338882, 0.04845643416047096, 0.13580313324928284, 0.32051917910575867], [0.009551836177706718, 0.013386709615588188, 0.005114047788083553, 0.004195861052721739, 0.0107945641502738, 0.005213086027652025, 0.010380597785115242, 0.4446457624435425]], [[0.11342033743858337, 0.03470993787050247, 0.012133374810218811, 0.007591197732836008, 0.012843171134591103, 0.01481074932962656, 0.15937325358390808, 0.3016361594200134], [0.062079593539237976, 0.09295963495969772, 0.03584771230816841, 0.02228175662457943, 0.04181826859712601, 0.03472179174423218, 0.30199241638183594, 0.14671552181243896], [0.09001118689775467, 0.03241894394159317, 0.023855891078710556, 0.028070909902453423, 0.013477046974003315, 0.02820405922830105, 0.06700853258371353, 0.33851683139801025], [0.03730939328670502, 0.017716044560074806, 0.021334825083613396, 0.0055310423485934734, 0.009275105781853199, 0.02409231849014759, 0.055510055273771286, 0.384671688079834], [0.07751960307359695, 0.06560271233320236, 0.05746680870652199, 0.06440310925245285, 0.016676539555191994, 0.06264568120241165, 0.12247893214225769, 0.22977489233016968], [0.021033572033047676, 0.02933582291007042, 0.035342998802661896, 0.03934631496667862, 0.031098520383238792, 0.06976334750652313, 0.12475145608186722, 0.296485036611557], [0.12257896363735199, 0.1416686326265335, 0.022098811343312263, 0.031208565458655357, 0.024952851235866547, 0.023615265265107155, 0.13706472516059875, 0.20556896924972534], [0.002148671308532357, 0.0025937519967556, 0.0020521855913102627, 0.002333240583539009, 0.003032693872228265, 0.003999465610831976, 0.008252416737377644, 0.4701816439628601]], [[0.12617836892604828, 0.2800847589969635, 0.0474822111427784, 0.01788557693362236, 0.010361931286752224, 0.0063131884671747684, 0.016214484348893166, 0.2461508959531784], [0.022699471563100815, 0.02205655351281166, 0.06332850456237793, 0.02990773320198059, 0.030130116268992424, 0.017780542373657227, 0.03620373085141182, 0.3879714608192444], [0.006391515955328941, 0.027016859501600266, 0.01094605028629303, 0.459575355052948, 0.03604191169142723, 0.059415191411972046, 0.04751691222190857, 0.1762349158525467], [0.005442818161100149, 0.012507056817412376, 0.02179448865354061, 0.0248956810683012, 0.09579593688249588, 0.15712997317314148, 0.132270947098732, 0.27451324462890625], [0.0020931996405124664, 0.005377753172069788, 0.005055051762610674, 0.010699550621211529, 0.026457147672772408, 0.07186821103096008, 0.36919134855270386, 0.25356152653694153], [0.003515776712447405, 0.005910769104957581, 0.0023301499895751476, 0.0009229655261151493, 0.006790416315197945, 0.005160048604011536, 0.2907657325267792, 0.3398687541484833], [0.0062804329209029675, 0.0037998200859874487, 0.0007399527239613235, 0.00010288133489666507, 0.0009065078338608146, 0.0009333392954431474, 0.00892754178494215, 0.5030752420425415], [0.032261256128549576, 0.02376566268503666, 0.00534425862133503, 0.005090110935270786, 0.003414693521335721, 0.005372276995331049, 0.027864601463079453, 0.39159271121025085]]], [[[4.860562512476463e-06, 0.9999747276306152, 1.3033870800427394e-06, 2.6354447513199375e-09, 3.655958313864005e-10, 1.089804288478824e-11, 2.0741530021295418e-11, 9.709798177937046e-06], [8.059894753387198e-05, 0.005084274336695671, 0.927973210811615, 0.048550404608249664, 0.0013918058248236775, 2.7358555598766543e-06, 3.4393863757031795e-07, 0.008572385646402836], [1.5901915201288475e-11, 9.64218713761511e-08, 3.8658194512208865e-07, 0.9999967813491821, 2.142684934369754e-06, 5.351345748749736e-07, 2.2377740285794978e-11, 2.9111786759017377e-08], [1.8614059182908704e-09, 5.438069479168917e-07, 0.0009472542442381382, 1.4865820958220866e-05, 0.973537802696228, 0.024571465328335762, 0.0005725330556742847, 0.00018050771905109286], [1.1463789917343092e-08, 2.4626398698046614e-08, 2.8149049740022747e-06, 0.0001039750495692715, 0.00037147573311813176, 0.991554319858551, 0.0016060750931501389, 0.0031711491756141186], [2.0744550965900999e-07, 7.683606639830032e-08, 2.945804988829792e-10, 1.979439012700368e-08, 4.18948802689556e-05, 0.0003109700046479702, 0.989566445350647, 0.005074354819953442], [1.9707320007000817e-06, 7.449017402905156e-09, 1.3098072973449781e-11, 1.2642247105675974e-14, 5.824303817014709e-10, 2.3212118893667366e-09, 0.0003028100181836635, 0.511674165725708], [0.002010409953072667, 0.0032622325234115124, 0.0006183038931339979, 2.003933332161978e-05, 0.00034324248554185033, 0.0003153206780552864, 0.0011667012004181743, 0.4820835590362549]], [[0.06279492378234863, 0.04000402241945267, 0.10017304122447968, 0.03889627754688263, 0.10627750307321548, 0.06585460156202316, 0.060199279338121414, 0.25838688015937805], [0.019610490649938583, 0.014176217839121819, 0.020950602367520332, 0.016732197254896164, 0.021587757393717766, 0.020667394623160362, 0.03181454911828041, 0.426919549703598], [0.0037796704564243555, 0.005220563150942326, 0.005452694837003946, 0.02280672825872898, 0.031833767890930176, 0.04400983080267906, 0.009591441601514816, 0.43670135736465454], [0.005022261757403612, 0.012043071910738945, 0.004549701232463121, 0.006130059715360403, 0.022899653762578964, 0.06324814260005951, 0.006689904723316431, 0.4392678737640381], [0.011492528952658176, 0.005856774281710386, 0.0018466287292540073, 0.0012969066156074405, 0.007690042722970247, 0.017925282940268517, 0.019632447510957718, 0.46590057015419006], [0.005997870117425919, 0.003884568577632308, 0.0007923234952613711, 0.000982806202955544, 0.005837774369865656, 0.008305312134325504, 0.014881394803524017, 0.4795967638492584], [0.009864411316812038, 0.009711635299026966, 0.002187425969168544, 0.0009307116852141917, 0.006786013953387737, 0.010836858302354813, 0.011738604865968227, 0.4711337387561798], [0.012794177047908306, 0.007879385724663734, 0.003156723454594612, 0.0021648616530001163, 0.004040877800434828, 0.0035543092526495457, 0.011032868176698685, 0.4481678307056427]], [[0.016668910160660744, 0.00570331746712327, 0.004899709019809961, 8.922466076910496e-05, 0.00045920515549369156, 0.00039906823076307774, 0.003689597360789776, 0.4833153784275055], [0.056232329457998276, 0.00946682970970869, 0.01435126457363367, 0.04634745046496391, 0.0021499686408787966, 0.004345921333879232, 0.07809703052043915, 0.3897174894809723], [0.0023388175759464502, 0.0013290435308590531, 0.016598215326666832, 0.1351580023765564, 0.026289353147149086, 0.04276518523693085, 0.014793241396546364, 0.37693995237350464], [0.005815370008349419, 0.0012918816646561027, 0.01268912572413683, 0.0014524844009429216, 0.0027702704537659883, 0.0037103029899299145, 0.004510845988988876, 0.4832253158092499], [0.0015657480107620358, 0.0008177456329576671, 0.027135416865348816, 0.007639724295586348, 0.03391946479678154, 0.14812976121902466, 0.17753243446350098, 0.3032402992248535], [0.0012514317641034722, 0.007958325557410717, 0.011023764498531818, 0.0045568253844976425, 0.028736360371112823, 0.01900426484644413, 0.053583186119794846, 0.43757835030555725], [0.0015171103877946734, 0.0034793203230947256, 0.000799223140347749, 0.0002524151641409844, 0.0015764248091727495, 0.0018667629919946194, 0.03574001044034958, 0.4793967604637146], [0.009232072159647942, 0.01706676557660103, 0.008602065965533257, 0.0020937330555170774, 0.005293664988130331, 0.005194936413317919, 0.01352635957300663, 0.42836514115333557]], [[0.003110808553174138, 0.017023121938109398, 0.0004895227611996233, 0.00017146248137578368, 4.922522930428386e-05, 8.410107693634927e-05, 0.0006245755939744413, 0.48548176884651184], [0.010795599780976772, 0.021730123087763786, 0.004094819072633982, 0.0009392796782776713, 0.0022257231175899506, 0.0014261604519560933, 0.002192050451412797, 0.4743787348270416], [0.0009293457260355353, 0.02703288197517395, 0.0015253170859068632, 0.005303015001118183, 0.001179198152385652, 0.006391364149749279, 0.0037080796901136637, 0.47157853841781616], [0.0004453066794667393, 0.010177896358072758, 0.1344641149044037, 0.000603098887950182, 0.00024383763957303017, 0.0008044102578423917, 0.0010347836650907993, 0.4236568212509155], [0.0009151546400971711, 0.002930409973487258, 0.0016912224236875772, 0.0021614073775708675, 0.005406985059380531, 0.039821773767471313, 0.006688544526696205, 0.46812260150909424], [0.004681902006268501, 0.01112336665391922, 0.00816743541508913, 0.01294596679508686, 0.1693142205476761, 0.035054560750722885, 0.007097503636032343, 0.3735440671443939], [0.0012756776995956898, 0.012313233688473701, 0.0016621029935777187, 0.001625137054361403, 0.004917402286082506, 0.004686739295721054, 0.008417991921305656, 0.4793674945831299], [0.007122380658984184, 0.015048257075250149, 0.006418908480554819, 0.0030963211320340633, 0.0031262042466551065, 0.003989494405686855, 0.012708148919045925, 0.4346141219139099]], [[0.0212840735912323, 0.004951787181198597, 0.0022337117698043585, 0.0027306077536195517, 0.0016563142416998744, 0.0032291095703840256, 0.007374764885753393, 0.4733101725578308], [0.088047556579113, 0.017698992043733597, 0.010936638340353966, 0.004577295854687691, 0.001366672688163817, 0.0033455106895416975, 0.004470459185540676, 0.4317472279071808], [0.020317096263170242, 0.020485615357756615, 0.01391658652573824, 0.024454424157738686, 0.0032055145129561424, 0.0021444011945277452, 0.0020901234820485115, 0.45504751801490784], [0.007875530049204826, 0.03794340789318085, 0.05507757142186165, 0.010426072403788567, 0.0008189357467927039, 0.0007481228676624596, 0.0004371738468762487, 0.44212791323661804], [0.010776503942906857, 0.010097411461174488, 0.04584597423672676, 0.046717602759599686, 0.0036445041187107563, 0.0031968147959560156, 0.0014907451113685966, 0.44061407446861267], [0.005539360921829939, 0.014459156431257725, 0.09316504746675491, 0.12162618339061737, 0.025408687070012093, 0.006769154686480761, 0.0020449822768568993, 0.36594003438949585], [0.004883582703769207, 0.003575598355382681, 0.01229837816208601, 0.021678829565644264, 0.10629958659410477, 0.032782260328531265, 0.006704023573547602, 0.4036415219306946], [0.009498207829892635, 0.016651909798383713, 0.007432642858475447, 0.006250835955142975, 0.004672306589782238, 0.007284434977918863, 0.014476056210696697, 0.43215832114219666]], [[0.05346051976084709, 0.11342038214206696, 0.048529189079999924, 0.055899109691381454, 0.058765824884176254, 0.0325225405395031, 0.3756310045719147, 0.12626351416110992], [0.014156127348542213, 0.020841257646679878, 0.03300347179174423, 0.08467552065849304, 0.15145649015903473, 0.290687620639801, 0.3314812183380127, 0.03379521891474724], [0.006245264783501625, 0.015628715977072716, 0.0026149589102715254, 0.009740754030644894, 0.1631568819284439, 0.1779329776763916, 0.0849837064743042, 0.2707015573978424], [0.01167572196573019, 0.01795845851302147, 0.018712041899561882, 0.010940677486360073, 0.1811027228832245, 0.2549971342086792, 0.021172286942601204, 0.2384513020515442], [0.02043387107551098, 0.053980227559804916, 0.02085098624229431, 0.14328381419181824, 0.05951334536075592, 0.044559378176927567, 0.03185036778450012, 0.30649808049201965], [0.016495339572429657, 0.027204833924770355, 0.040732186287641525, 0.1415494680404663, 0.1156366840004921, 0.04778257757425308, 0.014617674052715302, 0.2949638068675995], [0.025571072474122047, 0.03551124036312103, 0.08946865797042847, 0.08170028775930405, 0.204983189702034, 0.0748935267329216, 0.03519828990101814, 0.2188047468662262], [0.0094976257532835, 0.005646751262247562, 0.002510426100343466, 0.0020773070864379406, 0.005139967426657677, 0.003092461032792926, 0.006879243068397045, 0.463151752948761]], [[0.20979785919189453, 0.060308873653411865, 0.06341985613107681, 0.024848708882927895, 0.008243841119110584, 0.004993164911866188, 0.1026022806763649, 0.03505522385239601], [0.009839272126555443, 0.4156748950481415, 0.009369410574436188, 0.0035524782724678516, 0.004436532035470009, 0.008466809056699276, 0.006887361407279968, 0.09701766073703766], [0.03333592787384987, 0.06743645668029785, 0.13742727041244507, 0.027865950018167496, 0.0034239927772432566, 0.010055961087346077, 0.06323617696762085, 0.07542363554239273], [0.007705403957515955, 0.05947738140821457, 0.01489026565104723, 0.07422855496406555, 0.07840986549854279, 0.11332403868436813, 0.022269994020462036, 0.06840652227401733], [0.001805666135624051, 0.014381326735019684, 0.004945421125739813, 0.029646364971995354, 0.17308469116687775, 0.0766250491142273, 0.017474712803959846, 0.17265284061431885], [0.0012009674683213234, 0.008928833529353142, 0.001456223544664681, 0.011961211450397968, 0.2594308853149414, 0.16970132291316986, 0.010675432160496712, 0.145101398229599], [0.04986456036567688, 0.13834761083126068, 0.020664377138018608, 0.01220464613288641, 0.004305260255932808, 0.006431234069168568, 0.1449912041425705, 0.10361898690462112], [0.030376648530364037, 0.03586333245038986, 0.027953563258051872, 0.027930643409490585, 0.01642383076250553, 0.023868519812822342, 0.0629306435585022, 0.2105286866426468]], [[0.06891121715307236, 0.02599017135798931, 0.009533909149467945, 0.007644720375537872, 0.004496948327869177, 0.0111601073294878, 0.021410614252090454, 0.3992213010787964], [0.09715063124895096, 0.12197071313858032, 0.03721364587545395, 0.021103635430336, 0.015403433702886105, 0.014941551722586155, 0.057241275906562805, 0.27281486988067627], [0.11482184380292892, 0.09516112506389618, 0.02310303784906864, 0.01358744315803051, 0.0075135184451937675, 0.011674463748931885, 0.02350008115172386, 0.3426411747932434], [0.1816307157278061, 0.25600665807724, 0.020945927128195763, 0.004577548708766699, 0.007972564548254013, 0.01322969514876604, 0.03920188173651695, 0.2167213261127472], [0.3530433177947998, 0.16043543815612793, 0.07088933885097504, 0.0468129888176918, 0.013300761580467224, 0.018453426659107208, 0.025853820145130157, 0.14432188868522644], [0.2536883056163788, 0.21079561114311218, 0.09379047900438309, 0.08386283367872238, 0.043063048273324966, 0.026585450395941734, 0.02345716953277588, 0.11993610858917236], [0.1949165165424347, 0.20429983735084534, 0.04728134721517563, 0.03588426858186722, 0.08325108885765076, 0.068187415599823, 0.057584844529628754, 0.13811741769313812], [0.01301492564380169, 0.008726131170988083, 0.0036282483488321304, 0.003982252441346645, 0.003302351338788867, 0.005225836299359798, 0.011017310433089733, 0.43857893347740173]], [[2.1058724087197334e-05, 4.714403075922746e-06, 8.419962643779755e-11, 4.491483573954014e-12, 7.734564724803938e-12, 4.4801684584427903e-10, 8.460733056381287e-07, 0.491747111082077], [0.9983766078948975, 0.0011704300995916128, 9.414298801857512e-06, 1.973577212766031e-08, 7.474723062728117e-10, 1.1261970245257658e-09, 1.9410425267096798e-08, 0.00022511338465847075], [1.2232409972057212e-05, 0.9990942478179932, 2.6550827897153795e-05, 0.0008491174085065722, 5.2074426548642805e-08, 7.691279835242426e-10, 9.100802056405399e-11, 8.92963453225093e-06], [5.2525837845873724e-11, 1.6559253523951156e-08, 1.0, 3.5066620718282593e-09, 9.532768352471521e-09, 4.848402061774504e-12, 1.2009822872860996e-15, 2.4536295217814086e-10], [5.522657886558591e-08, 0.008896159939467907, 0.0012328594457358122, 0.9895163178443909, 8.931191405281425e-05, 2.0326888261479326e-05, 1.5145957377171726e-06, 0.00011949613690376282], [8.615912670817405e-12, 1.2587244668793574e-07, 1.0687680514820386e-05, 0.02868564985692501, 0.970523476600647, 0.0007618709933012724, 2.2159838408697397e-07, 9.148032404482365e-06], [1.0804734711100661e-11, 2.158739142998911e-08, 5.426098806382562e-11, 5.5660048019490205e-06, 0.0001696567633189261, 0.9940999150276184, 0.005701203364878893, 9.169450095214415e-06], [0.007089710328727961, 0.03807156905531883, 0.0031177906785160303, 0.0023958347737789154, 0.006642082706093788, 0.0030525866895914078, 0.024333421140909195, 0.3962777554988861]], [[0.01100597158074379, 0.05880236253142357, 0.010513713583350182, 0.003600803669542074, 0.005937621463090181, 0.0041281781159341335, 0.01480777096003294, 0.4449843764305115], [0.023571200668811798, 0.18127913773059845, 0.06604747474193573, 0.0900469720363617, 0.054545655846595764, 0.02487427555024624, 0.04440683126449585, 0.25469937920570374], [0.007943826727569103, 0.04948156327009201, 0.037139248102903366, 0.03286372497677803, 0.021734939888119698, 0.023877650499343872, 0.043642472475767136, 0.3907740116119385], [0.013325474224984646, 0.007533856201916933, 0.05050894618034363, 0.024504736065864563, 0.04204701632261276, 0.19397099316120148, 0.018031859770417213, 0.3198965787887573], [0.002214687177911401, 0.016438975930213928, 0.01857096515595913, 0.007398077752441168, 0.019597051665186882, 0.04473528638482094, 0.08896366506814957, 0.4008787274360657], [0.002944200299680233, 0.010133915580809116, 0.004700675141066313, 0.0037719127722084522, 0.0186750628054142, 0.034819480031728745, 0.08516407757997513, 0.42173242568969727], [0.0014554180670529604, 0.004560873843729496, 0.0007168111042119563, 0.0002870234311558306, 0.0017560055712237954, 0.005887182429432869, 0.006457427516579628, 0.4904659688472748], [0.012168054468929768, 0.01641322299838066, 0.008189268410205841, 0.008064016699790955, 0.00740379374474287, 0.009403572417795658, 0.02437535673379898, 0.41187745332717896]], [[0.024898499250411987, 0.013032658025622368, 0.013816745951771736, 0.0016599389491602778, 0.001979984575882554, 0.0033442906569689512, 0.03448781371116638, 0.41767752170562744], [0.08148840069770813, 0.12394528090953827, 0.037925396114587784, 0.039062853902578354, 0.014924994669854641, 0.03167993575334549, 0.07768147438764572, 0.2040143609046936], [0.03443753346800804, 0.02070557326078415, 0.03901701420545578, 0.050995927304029465, 0.020987316966056824, 0.035207320004701614, 0.04655110090970993, 0.29819294810295105], [0.03504370525479317, 0.014956529252231121, 0.06282033771276474, 0.00644267862662673, 0.006425785832107067, 0.02936325967311859, 0.0329553484916687, 0.35352644324302673], [0.04142223298549652, 0.04287896677851677, 0.04896218702197075, 0.009458008222281933, 0.0074393004179000854, 0.025354625657200813, 0.04927218705415726, 0.29317477345466614], [0.0388604998588562, 0.04566324129700661, 0.08541925251483917, 0.026139279827475548, 0.014914426021277905, 0.05854498967528343, 0.09926380217075348, 0.24414974451065063], [0.045327331870794296, 0.026973629370331764, 0.043306175619363785, 0.010407078079879284, 0.018379922956228256, 0.06542158126831055, 0.11675029993057251, 0.2798483371734619], [0.0055827489122748375, 0.0029940621461719275, 0.0012819472467526793, 0.0007164013222791255, 0.001179285580292344, 0.0015245575923472643, 0.00768388994038105, 0.4714936912059784]], [[0.004015125334262848, 0.01637202501296997, 0.01082569919526577, 0.005043269135057926, 0.018027866259217262, 0.01666681468486786, 0.015894470736384392, 0.4382903277873993], [0.003343496471643448, 0.03389886021614075, 0.028243690729141235, 0.0034834370017051697, 0.011447899974882603, 0.007948198355734348, 0.02151968702673912, 0.43001294136047363], [0.0011428790166974068, 0.017727700993418694, 0.01323712058365345, 0.004286666866391897, 0.01373759564012289, 0.023414989933371544, 0.027665292844176292, 0.43391892313957214], [0.002915895078331232, 0.0375804640352726, 0.01098239328712225, 0.004822440445423126, 0.01784657873213291, 0.024782152846455574, 0.011576290242373943, 0.4191019833087921], [0.04943094402551651, 0.018901454284787178, 0.024830572307109833, 0.01123689766973257, 0.0640338659286499, 0.09055264294147491, 0.09320801496505737, 0.26783332228660583], [0.02328888699412346, 0.013789908029139042, 0.01204779651015997, 0.007757064886391163, 0.03551098331809044, 0.0496433861553669, 0.11847839504480362, 0.33744144439697266], [0.061746738851070404, 0.025163564831018448, 0.013345015235245228, 0.0035660546272993088, 0.029116347432136536, 0.023395469412207603, 0.09069269895553589, 0.34648916125297546], [0.011955776251852512, 0.015642190352082253, 0.009747856296598911, 0.005809553898870945, 0.007841427810490131, 0.005396663676947355, 0.00879810843616724, 0.427043616771698]]], [[[0.06413222849369049, 0.022870821878314018, 0.023894766345620155, 0.004525987897068262, 0.003469267161563039, 0.005853339098393917, 0.011140190064907074, 0.3927983045578003], [0.16911499202251434, 0.026645198464393616, 0.02374105341732502, 0.0214175283908844, 0.024717751890420914, 0.04131259769201279, 0.03836309164762497, 0.29942935705184937], [0.22635170817375183, 0.06139340251684189, 0.03372678533196449, 0.03635207191109657, 0.08549913763999939, 0.03999122604727745, 0.16856907308101654, 0.16619867086410522], [0.09385194629430771, 0.22153621912002563, 0.06602104008197784, 0.035056423395872116, 0.061841849237680435, 0.13494563102722168, 0.04923003539443016, 0.1536087840795517], [0.10562007874250412, 0.08513916283845901, 0.15670670568943024, 0.2225346863269806, 0.04266449064016342, 0.04016302153468132, 0.03378509730100632, 0.14978085458278656], [0.07110677659511566, 0.08375905454158783, 0.1144537702202797, 0.2723900377750397, 0.10427999496459961, 0.040895577520132065, 0.024877039715647697, 0.138022780418396], [0.20330046117305756, 0.0661063939332962, 0.041094306856393814, 0.05341745540499687, 0.024447940289974213, 0.022258510813117027, 0.03148074075579643, 0.25509417057037354], [0.01393903512507677, 0.007943134754896164, 0.009865550324320793, 0.007454370614141226, 0.006049365736544132, 0.005452387034893036, 0.011086850427091122, 0.4101208448410034]], [[0.254031777381897, 0.0026666794437915087, 0.005549427587538958, 0.0019293546210974455, 0.0005735139711759984, 0.0008336604223586619, 0.004465118981897831, 0.27935317158699036], [0.006873636040836573, 0.18422868847846985, 0.002623241161927581, 0.0009048343636095524, 0.002248573349788785, 0.004248838406056166, 0.006088587921112776, 0.13991506397724152], [0.0020188239868730307, 0.001178789883852005, 0.13836894929409027, 0.015611344948410988, 0.004985304549336433, 0.0058033945970237255, 0.007987669669091702, 0.3854142129421234], [0.0022148294374346733, 0.0009569390676915646, 0.006357843987643719, 0.05777463689446449, 0.03549087792634964, 0.031814076006412506, 0.0022707595489919186, 0.3930239677429199], [0.0003855380055028945, 0.00018764693231787533, 0.0006471810047514737, 0.0022911105770617723, 0.11484184861183167, 0.07481786608695984, 0.0015381876146420836, 0.38108599185943604], [0.0005000595701858401, 0.0001689191412879154, 0.00025194440968334675, 0.0020486365538090467, 0.04753920063376427, 0.06122308969497681, 0.00229973578825593, 0.37742090225219727], [0.007107240613549948, 0.001643623225390911, 0.002469724975526333, 0.002502693561837077, 0.008207248523831367, 0.01291501335799694, 0.03789015859365463, 0.3557606637477875], [0.0031201334204524755, 0.0020701319444924593, 0.0013982948148623109, 0.001391572062857449, 0.0014604085590690374, 0.0024074267130345106, 0.003639474743977189, 0.46344706416130066]], [[0.08779480308294296, 0.17805759608745575, 0.04674695059657097, 0.020709386095404625, 0.01918979547917843, 0.018726643174886703, 0.06531854718923569, 0.28009292483329773], [0.005069286562502384, 0.07423696666955948, 0.015227903611958027, 0.003092620987445116, 0.010285470634698868, 0.005573331378400326, 0.0116641940549016, 0.4355039894580841], [0.004591154400259256, 0.013006534427404404, 0.03127625957131386, 0.7725826501846313, 0.02847745455801487, 0.04133325815200806, 0.023614436388015747, 0.04180379584431648], [0.007562749087810516, 0.005310478154569864, 0.00762539729475975, 0.057572752237319946, 0.37981534004211426, 0.3452264070510864, 0.04433475434780121, 0.07577834278345108], [0.004500371403992176, 0.025135058909654617, 0.01057968009263277, 0.02187531068921089, 0.015773041173815727, 0.11920908838510513, 0.11226807534694672, 0.34465259313583374], [0.005092592444270849, 0.030623409897089005, 0.011288324370980263, 0.010929844342172146, 0.03941577672958374, 0.068989597260952, 0.0736636146903038, 0.37985122203826904], [0.0013962500961497426, 0.11110951751470566, 0.011784755624830723, 0.0014553541550412774, 0.008263815194368362, 0.014601712115108967, 0.04610944539308548, 0.4008070230484009], [0.03163239359855652, 0.026281578466296196, 0.004576405510306358, 0.00468110479414463, 0.004471130669116974, 0.00486260000616312, 0.012844269163906574, 0.4163818061351776]], [[0.0004744687466882169, 0.0041789342649281025, 0.010179707780480385, 0.009091350249946117, 0.0059426273219287395, 0.01243901439011097, 0.01269543170928955, 0.419172078371048], [0.0016168219735845923, 0.0172574482858181, 0.014700569212436676, 0.010268103331327438, 0.0166130643337965, 0.03358970955014229, 0.01717262528836727, 0.33349278569221497], [0.008541238494217396, 0.006529742851853371, 0.0017727972008287907, 0.009005926549434662, 0.01664128340780735, 0.03240308538079262, 0.03185691311955452, 0.35415562987327576], [0.011456032283604145, 0.030969975516200066, 0.023719724267721176, 0.015175752341747284, 0.02228698693215847, 0.040218982845544815, 0.021382706239819527, 0.2680320143699646], [0.006130673922598362, 0.019616687670350075, 0.044375985860824585, 0.028211383149027824, 0.006961803417652845, 0.014315254986286163, 0.015410322695970535, 0.35516390204429626], [0.006110471207648516, 0.017513882368803024, 0.0305311381816864, 0.028081119060516357, 0.010026843287050724, 0.008271484635770321, 0.028830019757151604, 0.30112913250923157], [0.007786608301103115, 0.009195945225656033, 0.024453556165099144, 0.011921915225684643, 0.017283309251070023, 0.023421403020620346, 0.013317687436938286, 0.31427547335624695], [0.038843583315610886, 0.039974577724933624, 0.018305344507098198, 0.020090973004698753, 0.020757785066962242, 0.03350004181265831, 0.05627121776342392, 0.2340993881225586]], [[0.0097284484654665, 0.4996904134750366, 0.0031426376663148403, 0.002990666078403592, 0.0032123925630003214, 0.0007807569345459342, 0.0018054945394396782, 0.2405649721622467], [0.003929779399186373, 0.016445059329271317, 0.25540682673454285, 0.04932299256324768, 0.08758853375911713, 0.014621732756495476, 0.0021700274664908648, 0.2847747802734375], [0.0010804982157424092, 0.003334064967930317, 0.001677484717220068, 0.8715766668319702, 0.03627843037247658, 0.014506389386951923, 0.0024912741500884295, 0.03439714387059212], [0.003739392152056098, 0.0004390341055113822, 0.03862687945365906, 0.0012236925540491939, 0.8444976806640625, 0.021412890404462814, 0.02663004770874977, 0.031328171491622925], [0.0032715334091335535, 0.0009346397127956152, 0.011404628865420818, 0.010117012076079845, 0.010504492558538914, 0.4387831389904022, 0.27237674593925476, 0.1238282173871994], [0.01101713627576828, 0.0035365212243050337, 0.0018025655299425125, 0.0013382205506786704, 0.04214424267411232, 0.025255758315324783, 0.36160311102867126, 0.2759005129337311], [0.0004623720597010106, 5.322854485712014e-05, 6.72201258566929e-06, 1.5004201259216643e-06, 4.483361408347264e-05, 9.870579378912225e-05, 0.0017888223519548774, 0.5010899901390076], [0.006857879459857941, 0.0033710896968841553, 0.002047613961622119, 0.003722872119396925, 0.0043522813357412815, 0.0036460082046687603, 0.003080519149079919, 0.46365535259246826]], [[0.03610122203826904, 0.04339418560266495, 0.09156223386526108, 0.041395701467990875, 0.0786336362361908, 0.06773170083761215, 0.13311634957790375, 0.25123104453086853], [0.026036961004137993, 0.06679626554250717, 0.04954139515757561, 0.030739396810531616, 0.0409163236618042, 0.04544500634074211, 0.2383892685174942, 0.24910098314285278], [0.059839677065610886, 0.007820780389010906, 0.017975620925426483, 0.03606802225112915, 0.10146521776914597, 0.05773484706878662, 0.1469259262084961, 0.283634752035141], [0.055123236030340195, 0.0065027326345443726, 0.014273758046329021, 0.027189431712031364, 0.13482527434825897, 0.1495932787656784, 0.1668870896100998, 0.21586664021015167], [0.03376302495598793, 0.014995087869465351, 0.013953003101050854, 0.02050885744392872, 0.025464463979005814, 0.05557874217629433, 0.1891227662563324, 0.3163464069366455], [0.04986807703971863, 0.011264432221651077, 0.008093265816569328, 0.011924004182219505, 0.02401355840265751, 0.032612886279821396, 0.16846559941768646, 0.34018462896347046], [0.017261018976569176, 0.00692727928981185, 0.007832877337932587, 0.0062919314950704575, 0.009370478801429272, 0.010679401457309723, 0.043872933834791183, 0.4470784068107605], [0.009536954574286938, 0.009077874012291431, 0.0070459372363984585, 0.007624299731105566, 0.0047212266363203526, 0.006855986081063747, 0.028470631688833237, 0.42114946246147156]], [[0.09642675518989563, 0.019853629171848297, 0.017431534826755524, 0.003854323411360383, 0.01840837113559246, 0.03803499415516853, 0.08679964393377304, 0.3232719302177429], [0.04272201657295227, 0.2199498564004898, 0.01852991059422493, 0.03315722197294235, 0.047228626906871796, 0.04824305325746536, 0.05503121763467789, 0.20535928010940552], [0.06084888055920601, 0.03639991581439972, 0.08477707207202911, 0.042717210948467255, 0.05288488045334816, 0.03312809392809868, 0.046427514404058456, 0.28885242342948914], [0.07341355830430984, 0.07603912800550461, 0.07556675374507904, 0.044206514954566956, 0.0389987975358963, 0.050193026661872864, 0.04326396808028221, 0.2644961476325989], [0.03377455845475197, 0.049055930227041245, 0.03724876791238785, 0.029088081791996956, 0.03194654360413551, 0.057522960007190704, 0.05186576768755913, 0.32756659388542175], [0.020736699923872948, 0.05146470293402672, 0.014043686911463737, 0.01939854770898819, 0.05233379080891609, 0.06514052301645279, 0.061929140239953995, 0.3342926800251007], [0.014932313933968544, 0.02211517095565796, 0.004549604374915361, 0.001707464107312262, 0.003550103632733226, 0.025039352476596832, 0.12980656325817108, 0.37788963317871094], [0.013591830618679523, 0.016566835343837738, 0.007298782467842102, 0.00572617631405592, 0.010327349416911602, 0.007790754083544016, 0.020805934444069862, 0.397761732339859]], [[0.07669994980096817, 0.036322467029094696, 0.17617207765579224, 0.06659115850925446, 0.08317657560110092, 0.029041403904557228, 0.10588031262159348, 0.20931388437747955], [0.029780752956867218, 0.04066469147801399, 0.06829444319009781, 0.1393667608499527, 0.11184526979923248, 0.05083135515451431, 0.07527793943881989, 0.23813778162002563], [0.012791124172508717, 0.031504470854997635, 0.04601998254656792, 0.1111421138048172, 0.18906612694263458, 0.0766419917345047, 0.16815905272960663, 0.18044136464595795], [0.01918867975473404, 0.023990241810679436, 0.1229245737195015, 0.09795556217432022, 0.3478703498840332, 0.1517382562160492, 0.07199549674987793, 0.07825086265802383], [0.008870132267475128, 0.021755710244178772, 0.053611453622579575, 0.13596691191196442, 0.09854352474212646, 0.1066683828830719, 0.10902105271816254, 0.22226744890213013], [0.012469442561268806, 0.013273941352963448, 0.0535944402217865, 0.15776245296001434, 0.1544434130191803, 0.04526647925376892, 0.054500918835401535, 0.24635261297225952], [0.03445626050233841, 0.02366233803331852, 0.06282828748226166, 0.055039532482624054, 0.03904608264565468, 0.057980407029390335, 0.03356192633509636, 0.3399827480316162], [0.049256760627031326, 0.012612680904567242, 0.012188095599412918, 0.012523261830210686, 0.0189913772046566, 0.012764660641551018, 0.029581010341644287, 0.38517332077026367]], [[0.008490917272865772, 0.06578566879034042, 0.004481554962694645, 0.0007164674461819232, 0.002962316619232297, 0.0015529401134699583, 0.0031631551682949066, 0.4565037190914154], [0.001998456194996834, 0.02770964428782463, 0.024129144847393036, 0.001417644089087844, 0.013193752616643906, 0.0018762232502922416, 0.0027496733237057924, 0.4631612002849579], [0.000894496391993016, 0.002201249124482274, 0.042716607451438904, 0.6323442459106445, 0.006296771578490734, 0.0034781070426106453, 0.0004351684474386275, 0.15401571989059448], [0.0018929222133010626, 0.004326787311583757, 0.028116373345255852, 0.0023997006937861443, 0.2180381417274475, 0.012924258597195148, 0.035915032029151917, 0.3470996618270874], [0.0009253900498151779, 0.000537925458047539, 0.007318825460970402, 0.0019181403331458569, 0.011391165666282177, 0.08509541302919388, 0.01205976027995348, 0.44030600786209106], [0.0025964793749153614, 0.0016089759301394224, 0.0016555238980799913, 0.0009669976425357163, 0.006223927717655897, 0.011356275528669357, 0.06944501399993896, 0.45078244805336], [0.0006058869184926152, 0.0013564061373472214, 9.543503983877599e-05, 1.8725990230450407e-05, 0.0002683386264834553, 0.0001432435237802565, 0.009009743109345436, 0.498088002204895], [0.012830240651965141, 0.007379855029284954, 0.004797589965164661, 0.0027426090091466904, 0.00507731456309557, 0.006111932452768087, 0.007871641777455807, 0.4387722313404083]], [[0.003675277577713132, 0.001866189413703978, 0.001357611850835383, 0.00043765248847194016, 0.0006097626173868775, 0.0014317381428554654, 0.011709474958479404, 0.4838205873966217], [0.08835764229297638, 0.028642477467656136, 0.010229963809251785, 0.001758950063958764, 0.0018499108264222741, 0.009059443138539791, 0.005212091840803623, 0.4242345988750458], [0.00799261499196291, 0.014231435023248196, 0.021989963948726654, 0.002557610860094428, 0.0010916937608271837, 0.002367876237258315, 0.004309205338358879, 0.4719575345516205], [0.008899073116481304, 0.012763104401528835, 0.03410309553146362, 0.002338482765480876, 0.0012693756725639105, 0.0030886861495673656, 0.01198536902666092, 0.46060964465141296], [0.008696864359080791, 0.0223518256098032, 0.033775683492422104, 0.02944188192486763, 0.004639053251594305, 0.0071303569711744785, 0.0016632245387881994, 0.44543638825416565], [0.004248170182108879, 0.013329898938536644, 0.02593597210943699, 0.03146273270249367, 0.03693414479494095, 0.028025370091199875, 0.008159694261848927, 0.42508044838905334], [0.0008423767285421491, 0.004170592408627272, 0.0013360264711081982, 0.0037458320148289204, 0.014925336465239525, 0.0375409871339798, 0.003994698636233807, 0.4656746983528137], [0.00732713658362627, 0.013628934510052204, 0.0061233569867908955, 0.009307322092354298, 0.01072712242603302, 0.016225721687078476, 0.011902778409421444, 0.4191300868988037]], [[0.005686624441295862, 0.0012051259400323033, 0.0001960455410880968, 0.00021020985150244087, 0.00020092290651518852, 0.000660199613776058, 0.11466763913631439, 0.23238053917884827], [0.8489680290222168, 0.019986065104603767, 0.0007610179018229246, 0.0002992941881529987, 0.00024667492834851146, 0.000490342266857624, 0.004653351381421089, 0.06053868308663368], [0.023702329024672508, 0.3933728337287903, 0.014213722199201584, 0.10905706882476807, 0.016671810299158096, 0.0012892454396933317, 0.004276878200471401, 0.21563810110092163], [0.022821588441729546, 0.0220235213637352, 0.7777501940727234, 0.00701160030439496, 0.0026483137626200914, 0.000208628160180524, 0.001501770573668182, 0.08210194855928421], [0.006010955665260553, 0.08126302808523178, 0.02901894599199295, 0.7542858719825745, 0.01028755959123373, 0.0037121635396033525, 0.009578914381563663, 0.05169110372662544], [0.0028357200790196657, 0.01638449728488922, 0.020234866067767143, 0.43291497230529785, 0.1071450337767601, 0.008218012750148773, 0.013646451756358147, 0.19651556015014648], [0.006459176540374756, 0.006770133972167969, 0.005367286037653685, 0.028224142268300056, 0.10047725588083267, 0.3277108371257782, 0.178965762257576, 0.16604936122894287], [0.005234155338257551, 0.004362147767096758, 0.0017368204426020384, 0.004593800287693739, 0.002976416377350688, 0.002690965309739113, 0.019312363117933273, 0.45000725984573364]], [[0.2862628996372223, 0.0012126839719712734, 0.007830708287656307, 0.004214932676404715, 0.0025427164509892464, 0.00570731982588768, 0.0444498248398304, 0.15115581452846527], [0.003460957668721676, 0.1550169289112091, 0.0005566927138715982, 0.0003957227454520762, 0.00041422987123951316, 0.0002905112341977656, 0.011004360392689705, 0.018377842381596565], [0.1109478771686554, 0.0027653821744024754, 0.12711076438426971, 0.02045830897986889, 0.0023299572058022022, 0.0015487141208723187, 0.040169768035411835, 0.24626556038856506], [0.05889685079455376, 0.003898381255567074, 0.03150215372443199, 0.2923051714897156, 0.0839773640036583, 0.06827591359615326, 0.07029414921998978, 0.13080503046512604], [0.011832121759653091, 0.006414338946342468, 0.005159125197678804, 0.09488371759653091, 0.18686027824878693, 0.273154616355896, 0.05748378485441208, 0.15057261288166046], [0.01832089200615883, 0.006865106523036957, 0.007780106738209724, 0.14834704995155334, 0.1852159947156906, 0.20343685150146484, 0.049172524362802505, 0.14740507304668427], [0.09930936992168427, 0.008308115415275097, 0.07921653240919113, 0.03570425882935524, 0.005831372924149036, 0.004057868849486113, 0.12305734306573868, 0.18365009129047394], [0.04144205525517464, 0.03539574518799782, 0.025934269651770592, 0.02917262725532055, 0.010211492888629436, 0.014317767694592476, 0.04499416425824165, 0.2295871078968048]]], [[[0.03744874894618988, 0.026658358052372932, 0.01375736203044653, 0.00215017213486135, 0.0019419833552092314, 0.0023957695811986923, 0.04324641451239586, 0.264471173286438], [0.031646616756916046, 0.11990267783403397, 0.010809540748596191, 0.01338377594947815, 0.006467808969318867, 0.00892630871385336, 0.06948082149028778, 0.13037154078483582], [0.22022569179534912, 0.05348948761820793, 0.03902488946914673, 0.007149926386773586, 0.008481760509312153, 0.027124639600515366, 0.13289502263069153, 0.13160213828086853], [0.04914092645049095, 0.16088786721229553, 0.1108478307723999, 0.03542714565992355, 0.022601546719670296, 0.039940010756254196, 0.14479517936706543, 0.07166562229394913], [0.013215675950050354, 0.0776049941778183, 0.08741527050733566, 0.05300682783126831, 0.08616761863231659, 0.1291641891002655, 0.13118891417980194, 0.1438606083393097], [0.013071833178400993, 0.15169283747673035, 0.05590406060218811, 0.04113074764609337, 0.04716875031590462, 0.0711827203631401, 0.10357741266489029, 0.16900914907455444], [0.08004027605056763, 0.08197487890720367, 0.0256463922560215, 0.011752222664654255, 0.011631840839982033, 0.028098609298467636, 0.06081730127334595, 0.2344437688589096], [0.005528767127543688, 0.009308217093348503, 0.006860585417598486, 0.004192777909338474, 0.010260799899697304, 0.010981878265738487, 0.015497867949306965, 0.42049112915992737]], [[0.022246314212679863, 0.008757486008107662, 0.008829270489513874, 0.0024329901207238436, 0.002917352830991149, 0.0050587886944413185, 0.04412335902452469, 0.40451690554618835], [0.2820739150047302, 0.020782075822353363, 0.010273581370711327, 0.0029598919209092855, 0.00500992638990283, 0.011379297822713852, 0.034435030072927475, 0.2957599461078644], [0.14139458537101746, 0.04208522289991379, 0.045032303780317307, 0.025682520121335983, 0.006735603790730238, 0.007984030060470104, 0.018208835273981094, 0.3491871953010559], [0.06722195446491241, 0.02436753734946251, 0.07532060146331787, 0.0110842389985919, 0.005339708644896746, 0.007177589926868677, 0.015029292553663254, 0.3929024934768677], [0.06554548442363739, 0.0251153577119112, 0.02480188012123108, 0.08795204013586044, 0.011713107116520405, 0.014296168461441994, 0.0037748883478343487, 0.382232666015625], [0.07145193219184875, 0.03864063322544098, 0.032356005162000656, 0.1333603858947754, 0.04058241844177246, 0.021624408662319183, 0.007989378646016121, 0.3248581886291504], [0.1504465788602829, 0.09307001531124115, 0.041518714278936386, 0.03147316351532936, 0.05656770244240761, 0.09995003789663315, 0.04387686029076576, 0.23073779046535492], [0.008479166775941849, 0.009105510078370571, 0.006214453838765621, 0.0029697800055146217, 0.002097861375659704, 0.0037407982163131237, 0.008994069881737232, 0.43746358156204224]], [[0.07933208346366882, 0.07519316673278809, 0.04829152300953865, 0.009177383035421371, 0.02306598238646984, 0.034876879304647446, 0.2128230631351471, 0.22034139931201935], [0.0799405500292778, 0.049472659826278687, 0.03985505923628807, 0.0036948134656995535, 0.01668129302561283, 0.025873491540551186, 0.3663578927516937, 0.09541188925504684], [0.1189933642745018, 0.011652293615043163, 0.30500897765159607, 0.05492006987333298, 0.0038331488613039255, 0.003744743065908551, 0.05868811532855034, 0.09634772688150406], [0.091877780854702, 0.009355146437883377, 0.23754984140396118, 0.05319197475910187, 0.0069496240466833115, 0.005284553859382868, 0.014030836522579193, 0.20995762944221497], [0.02030200883746147, 0.026183828711509705, 0.023900650441646576, 0.016958018764853477, 0.004261720925569534, 0.003201414132490754, 0.0085412273183465, 0.40996649861335754], [0.013710400089621544, 0.01806250773370266, 0.00962051097303629, 0.008859865367412567, 0.003519561141729355, 0.0021580432076007128, 0.007934906519949436, 0.4422961473464966], [0.05072358250617981, 0.048723578453063965, 0.09867778420448303, 0.007499033119529486, 0.029175635427236557, 0.02901400998234749, 0.022380990907549858, 0.2865515649318695], [0.0020299579482525587, 0.0012505349004641175, 0.0006148909451439977, 0.00038951373426243663, 0.0005877254297956824, 0.0005448164301924407, 0.002017260529100895, 0.48473113775253296]], [[0.011200111359357834, 0.018842868506908417, 0.03046409785747528, 0.002788781886920333, 0.007832895033061504, 0.006276383996009827, 0.0074068219400942326, 0.4507717490196228], [0.00938814040273428, 0.007447195239365101, 0.018445292487740517, 0.00810359138995409, 0.02039041556417942, 0.021811190992593765, 0.660796582698822, 0.12268698215484619], [0.008736945688724518, 0.003853559959679842, 0.00979110598564148, 0.07607895135879517, 0.027503682300448418, 0.006908680312335491, 0.03988710790872574, 0.4118894934654236], [0.0038738083094358444, 0.006736425217241049, 0.009132626466453075, 0.012696393765509129, 0.1576133519411087, 0.04806869477033615, 0.11098641902208328, 0.3231777846813202], [0.004878087900578976, 0.014012823812663555, 0.017162933945655823, 0.09953681379556656, 0.06072201579809189, 0.30620676279067993, 0.05378515273332596, 0.21848493814468384], [0.005459696985781193, 0.019207900390028954, 0.015136857517063618, 0.024081578478217125, 0.07690244913101196, 0.02174494042992592, 0.04950181767344475, 0.391093373298645], [0.001520061632618308, 0.0063075111247599125, 0.017148710787296295, 0.013547779992222786, 0.03630455210804939, 0.027358246967196465, 0.02274540811777115, 0.43543022871017456], [0.003775506978854537, 0.0037189340218901634, 0.0066702477633953094, 0.0034362846054136753, 0.014226618222892284, 0.007730051409453154, 0.003597069764509797, 0.4563234746456146]], [[0.018067996948957443, 0.005787001922726631, 0.06573593616485596, 0.0035199448466300964, 0.0014263902558013797, 0.001586321392096579, 0.0006910592783242464, 0.40476879477500916], [0.007141444366425276, 0.005156685598194599, 0.02251514233648777, 0.00954648107290268, 0.015542554669082165, 0.006399105302989483, 0.005228354129940271, 0.4537692964076996], [0.08476478606462479, 0.025457805022597313, 0.06521104276180267, 0.011414819397032261, 0.004828022792935371, 0.004017669707536697, 0.13297070562839508, 0.3255191147327423], [0.04920459911227226, 0.012257130816578865, 0.06546778976917267, 0.02271001785993576, 0.20734331011772156, 0.2077716588973999, 0.09920534491539001, 0.16299042105674744], [0.025519372895359993, 0.02488243579864502, 0.040679220110177994, 0.0383002944290638, 0.008951788768172264, 0.013566715642809868, 0.4692017138004303, 0.1831885278224945], [0.03667369484901428, 0.019567517563700676, 0.035262979567050934, 0.05337856709957123, 0.011384841986000538, 0.014427675865590572, 0.5881808996200562, 0.1162138506770134], [0.4715854525566101, 0.13366767764091492, 0.040407732129096985, 0.01296455878764391, 0.00249129137955606, 0.0028746367897838354, 0.01769717037677765, 0.14731045067310333], [0.018484093248844147, 0.02016022428870201, 0.02191845513880253, 0.009438002482056618, 0.00566423824056983, 0.006259399000555277, 0.02059193141758442, 0.40891486406326294]], [[0.015456512570381165, 0.0019657572265714407, 0.6424494385719299, 0.08990637212991714, 0.003565523074939847, 0.005717775318771601, 0.009308787994086742, 0.10623905807733536], [0.021073203533887863, 0.017181675881147385, 0.10318883508443832, 0.12473752349615097, 0.06642117351293564, 0.07715761661529541, 0.01649664156138897, 0.2817273437976837], [0.04128806293010712, 0.012103419750928879, 0.22171904146671295, 0.11481130123138428, 0.03248943015933037, 0.0337817519903183, 0.03457116335630417, 0.24985402822494507], [0.0029601987916976213, 0.0020629994105547667, 0.018755417317152023, 0.0825469046831131, 0.22304780781269073, 0.1476300209760666, 0.0020913563203066587, 0.25761550664901733], [0.00047420631744898856, 0.0013176656793802977, 0.001310355612076819, 0.012645707465708256, 0.015349369496107101, 0.016213014721870422, 0.0004618706298060715, 0.47609618306159973], [0.001355909276753664, 0.0020190614741295576, 0.0013871805276721716, 0.012695368379354477, 0.01855277456343174, 0.01767147146165371, 0.001271175337024033, 0.47191494703292847], [0.011156744323670864, 0.003724417183548212, 0.11595451831817627, 0.117418572306633, 0.05031771957874298, 0.05532537028193474, 0.011041784659028053, 0.3109974265098572], [0.0014585658209398389, 0.0008794754976406693, 0.003908841405063868, 0.002178118098527193, 0.001063348725438118, 0.001184888300485909, 0.0016276933019980788, 0.4899939298629761]], [[0.009260457940399647, 0.019178481772542, 0.02430614084005356, 0.016871890053153038, 0.0205436609685421, 0.009651831351220608, 0.07537394762039185, 0.41016823053359985], [0.007312152534723282, 0.030159318819642067, 0.009330742061138153, 0.011044470593333244, 0.02573368512094021, 0.034838516265153885, 0.08544372022151947, 0.37610459327697754], [0.00664070388302207, 0.007738995831459761, 0.034573283046483994, 0.0982760339975357, 0.044279731810092926, 0.0750938430428505, 0.020250245928764343, 0.3556921184062958], [0.0034487799275666475, 0.007037733681499958, 0.03626633808016777, 0.07264333218336105, 0.16536551713943481, 0.14654715359210968, 0.030192406848073006, 0.267569899559021], [0.0013898939359933138, 0.010485448874533176, 0.00984457228332758, 0.07212023437023163, 0.02815556339919567, 0.05751651152968407, 0.012880034744739532, 0.400424063205719], [0.0012574668508023024, 0.021574070677161217, 0.022150013595819473, 0.11362261325120926, 0.04010310024023056, 0.026650484651327133, 0.021952174603939056, 0.36952540278434753], [0.003098654095083475, 0.0851627066731453, 0.007376433815807104, 0.024546731263399124, 0.015984579920768738, 0.014852664433419704, 0.020247885957360268, 0.41156280040740967], [0.008105535060167313, 0.010029582306742668, 0.00398656539618969, 0.004004540853202343, 0.0033217878080904484, 0.004157494753599167, 0.010170815512537956, 0.4494522511959076]], [[0.05723419040441513, 0.05265139788389206, 0.012116220779716969, 0.03297659382224083, 0.03268353268504143, 0.052441976964473724, 0.18608899414539337, 0.28000253438949585], [0.03585054352879524, 0.04353448003530502, 0.060530513525009155, 0.20973624289035797, 0.07495477050542831, 0.1386769711971283, 0.22527427971363068, 0.10125516355037689], [0.03565583750605583, 0.014455920085310936, 0.015718411654233932, 0.0232790969312191, 0.07432617247104645, 0.10934000462293625, 0.13751719892024994, 0.292728066444397], [0.054509490728378296, 0.024582084268331528, 0.00883593037724495, 0.06305274367332458, 0.08420052379369736, 0.14148066937923431, 0.07952277362346649, 0.2669280767440796], [0.024063101038336754, 0.010985521599650383, 0.014809911139309406, 0.27835899591445923, 0.03128990903496742, 0.04255788028240204, 0.017614761367440224, 0.28780290484428406], [0.020305251702666283, 0.006058109924197197, 0.01306024007499218, 0.13343219459056854, 0.014593067578971386, 0.014638426713645458, 0.013438066467642784, 0.3897777497768402], [0.011725141666829586, 0.026393679901957512, 0.05920784920454025, 0.07417434453964233, 0.09884730726480484, 0.14340732991695404, 0.021796440705657005, 0.2800244987010956], [0.008359838277101517, 0.014372322708368301, 0.005819439422339201, 0.0084309671074152, 0.007405674550682306, 0.006508531514555216, 0.014788822270929813, 0.439680278301239]], [[0.0021230594720691442, 0.0018589351093396544, 0.0028974744491279125, 0.000833368394523859, 0.0013429964892566204, 0.0028887407388538122, 0.007370350416749716, 0.32268673181533813], [0.0006007515476085246, 0.0022852441761642694, 9.639908967074007e-05, 5.9586280258372426e-05, 0.00016088646952994168, 0.0003261975944042206, 0.0024946739431470633, 0.04098157584667206], [0.004690026864409447, 0.005013104062527418, 0.012045932933688164, 0.007709654048085213, 0.0047163693234324455, 0.005965595133602619, 0.019548481330275536, 0.31241244077682495], [0.0020155785605311394, 0.010078292340040207, 0.002984242979437113, 0.009081819094717503, 0.03491366282105446, 0.04017724469304085, 0.011806333437561989, 0.323564350605011], [0.0019301283173263073, 0.007523950655013323, 0.00226850644685328, 0.005685861688107252, 0.051253870129585266, 0.06688147783279419, 0.013709302060306072, 0.34468066692352295], [0.0022566067054867744, 0.006280732341110706, 0.0025585852563381195, 0.005187130067497492, 0.03270724043250084, 0.04982475936412811, 0.017508534714579582, 0.3332303464412689], [0.005918231792747974, 0.011893280781805515, 0.010618392378091812, 0.0022999285720288754, 0.008420434780418873, 0.015374165959656239, 0.06433295458555222, 0.28247886896133423], [0.0005552212824113667, 0.005040270276367664, 0.00054716388694942, 0.0004161388787906617, 0.0009227770497091115, 0.0005362536758184433, 0.004131972789764404, 0.48464182019233704]], [[0.039788030087947845, 0.02307143807411194, 0.011269490234553814, 0.014527969062328339, 0.007612792309373617, 0.007331886328756809, 0.00760337058454752, 0.23748233914375305], [0.015209605917334557, 0.0291146170347929, 0.00305691035464406, 0.001490374794229865, 0.002215137705206871, 0.0020979573018848896, 0.01397025492042303, 0.19242073595523834], [0.04085860401391983, 0.1715882122516632, 0.0026457186322659254, 0.0058319298550486565, 0.007919266819953918, 0.015167702920734882, 0.02824433520436287, 0.3315621316432953], [0.03745574131608009, 0.17546671628952026, 0.016825569793581963, 0.05789818987250328, 0.015623614192008972, 0.020805571228265762, 0.056364353746175766, 0.2776225805282593], [0.030109889805316925, 0.12831424176692963, 0.009387314319610596, 0.07172176986932755, 0.010500491596758366, 0.01019746158272028, 0.04580685868859291, 0.3196706175804138], [0.053565435111522675, 0.2178190052509308, 0.014501224271953106, 0.13189467787742615, 0.0197797492146492, 0.01715659350156784, 0.05102687329053879, 0.22016507387161255], [0.1562335342168808, 0.5041548609733582, 0.0427958220243454, 0.0445295125246048, 0.0338008739054203, 0.04015284404158592, 0.03066342882812023, 0.05398472398519516], [0.006554997526109219, 0.00451909564435482, 0.003602497512474656, 0.003991097677499056, 0.00264632236212492, 0.0033866448793560266, 0.009547917172312737, 0.45017632842063904]], [[0.0035810673143714666, 0.009799979627132416, 0.0013905256055295467, 0.0010200737742707133, 0.0007637428352609277, 0.002712862566113472, 0.05201295018196106, 0.4055749475955963], [0.03255592659115791, 0.00844657327979803, 0.0013226051814854145, 0.0013993188040331006, 0.0025083678774535656, 0.028355672955513, 0.18871331214904785, 0.3608894348144531], [0.0061225262470543385, 0.01490763295441866, 0.023628395050764084, 0.01964668557047844, 0.0012203985825181007, 0.003153120167553425, 0.015161688439548016, 0.44467225670814514], [0.0028379284776747227, 0.00440567173063755, 0.10615360736846924, 0.0010189628228545189, 0.002470681443810463, 0.0014177076518535614, 0.0011358860647305846, 0.4372183084487915], [0.002308264374732971, 0.003088922705501318, 0.0025350600481033325, 0.09524479508399963, 0.012615809217095375, 0.02285119704902172, 0.004467251244932413, 0.42304283380508423], [0.0019134641624987125, 0.0028039757162332535, 0.0013835164718329906, 0.051162686198949814, 0.15810172259807587, 0.028686050325632095, 0.0017096925294026732, 0.3731464147567749], [0.0013471560087054968, 0.0016055441228672862, 7.17670627636835e-05, 0.010808278806507587, 0.0245121531188488, 0.25391072034835815, 0.02891133353114128, 0.33540835976600647], [0.0004765710618812591, 0.0013745477190241218, 0.00044156648800708354, 0.0009788194438442588, 0.00119111523963511, 0.003048097714781761, 0.0022417947184294462, 0.4704965353012085]], [[0.03267636522650719, 0.06684144586324692, 0.041735198348760605, 0.044929832220077515, 0.04556313529610634, 0.030500568449497223, 0.03500097617506981, 0.32064172625541687], [0.043603502213954926, 0.18681085109710693, 0.01281976979225874, 0.04040856286883354, 0.039505716413259506, 0.027644475921988487, 0.029005667194724083, 0.1918388158082962], [0.008910754695534706, 0.06052950769662857, 0.04283847659826279, 0.04604322835803032, 0.06615665555000305, 0.03554577752947807, 0.015453685075044632, 0.3526768088340759], [0.012592162936925888, 0.06187283992767334, 0.05160209536552429, 0.05003559961915016, 0.1102721244096756, 0.0592404305934906, 0.020149582996964455, 0.30157455801963806], [0.01586633361876011, 0.039214838296175, 0.06276243925094604, 0.028571534901857376, 0.1381729394197464, 0.07774385064840317, 0.02470300905406475, 0.29524677991867065], [0.009201380424201488, 0.026962686330080032, 0.04254379868507385, 0.03161583095788956, 0.1555890291929245, 0.13962318003177643, 0.03272422403097153, 0.2700932025909424], [0.032465577125549316, 0.06660166382789612, 0.022771429270505905, 0.023665955290198326, 0.10512524098157883, 0.12625247240066528, 0.15012992918491364, 0.20011721551418304], [0.008907167240977287, 0.012235441245138645, 0.007458020932972431, 0.004240697715431452, 0.010841863229870796, 0.00960106123238802, 0.0055270423181355, 0.4249608814716339]]], [[[0.015470292419195175, 0.0027092820964753628, 0.003907528705894947, 0.0012801098637282848, 0.0003190620627719909, 0.0016870779218152165, 0.014010925777256489, 0.4435005486011505], [0.0065030502155423164, 0.03084670566022396, 0.0024440872948616743, 0.0018245814135298133, 0.010384547524154186, 0.012381423264741898, 0.005348686594516039, 0.4514099955558777], [0.03419370576739311, 0.005556849297136068, 0.007802516687661409, 0.036292534321546555, 0.0034274854697287083, 0.004506535362452269, 0.008955223485827446, 0.44389426708221436], [0.0025404260959476233, 0.004732829984277487, 0.003940280061215162, 0.011875110678374767, 0.010931579396128654, 0.012412017211318016, 0.01364436186850071, 0.4655649960041046], [0.0021748675499111414, 0.0051635028794407845, 0.002537112683057785, 0.026357294991612434, 0.028110623359680176, 0.169892355799675, 0.008167466148734093, 0.3767472803592682], [0.003579656360670924, 0.010000142268836498, 0.008302449248731136, 0.023938611149787903, 0.03047921136021614, 0.046471431851387024, 0.032934267073869705, 0.4183334708213806], [0.011699290946125984, 0.016948793083429337, 0.004730531945824623, 0.004524250514805317, 0.007554435636848211, 0.008959400467574596, 0.0068288021720945835, 0.4579371511936188], [0.009005923755466938, 0.011797298677265644, 0.0066274902783334255, 0.011356879957020283, 0.005317707546055317, 0.008894514292478561, 0.010579385794699192, 0.43598902225494385]], [[0.4309026598930359, 0.0009672751766629517, 0.005064318422228098, 0.0011017322540283203, 0.000966705207247287, 0.002340958919376135, 0.05520881712436676, 0.23486560583114624], [0.0025913240388035774, 0.07708827406167984, 0.0005765605601482093, 0.0006768029415979981, 0.002820103894919157, 0.00777112552896142, 0.011798436753451824, 0.14375892281532288], [0.0022136883344501257, 0.0019798101857304573, 0.13533657789230347, 0.002485048258677125, 0.0021746326237916946, 0.0007012259447947145, 0.01097901351749897, 0.38931092619895935], [0.0009382801363244653, 0.0005369192222133279, 0.0023743321653455496, 0.04441436752676964, 0.051388707011938095, 0.027517491951584816, 0.01092185452580452, 0.42355719208717346], [0.0001519509678473696, 0.0004473890585359186, 0.00013214154751040041, 0.0017960927216336131, 0.2205939143896103, 0.034240104258060455, 0.0012268349528312683, 0.35958102345466614], [0.001049364684149623, 0.0012820132542401552, 0.00035466099507175386, 0.0019908971153199673, 0.13292162120342255, 0.1451721340417862, 0.007109761703759432, 0.3383755385875702], [0.08672411739826202, 0.01579955592751503, 0.05184173956513405, 0.005202573724091053, 0.015828149393200874, 0.01651645638048649, 0.19051915407180786, 0.2740684151649475], [0.0005171222728677094, 0.00012446963228285313, 0.00015348604938481003, 0.00014722903142683208, 0.000708930310793221, 0.0013551667798310518, 0.0015390710905194283, 0.4942035973072052]], [[0.07436860352754593, 0.0007625097059644759, 0.14331616461277008, 0.0037979348562657833, 0.00026234154938720167, 0.0007955819019116461, 0.002419836353510618, 0.3656409680843353], [0.0017722854390740395, 0.0018699874635785818, 0.042331140488386154, 0.0027967356145381927, 0.001432573888450861, 0.003567560575902462, 0.0023831757716834545, 0.4508477747440338], [0.0056252493523061275, 0.0012809357140213251, 0.49343544244766235, 0.007410246878862381, 0.0010397847509011626, 0.0028285905718803406, 0.004843174014240503, 0.23517364263534546], [0.0029816459864377975, 0.001325044664554298, 0.06445591151714325, 0.03266829624772072, 0.04981726035475731, 0.05062754824757576, 0.001787409302778542, 0.3890535831451416], [0.0009523829212412238, 0.0004792267282027751, 0.006858252454549074, 0.005225388333201408, 0.009324923157691956, 0.0457257404923439, 0.0006928796065039933, 0.4574752748012543], [0.00406191311776638, 0.00047287490451708436, 0.016646642237901688, 0.009893788024783134, 0.021815525367856026, 0.04536492004990578, 0.0024478782434016466, 0.43791502714157104], [0.007026831619441509, 0.001425848575308919, 0.12117136269807816, 0.004300972446799278, 0.0023057821672409773, 0.010606086812913418, 0.009920543059706688, 0.40978530049324036], [0.0006123405182734132, 0.00011897396325366572, 0.001454747631214559, 0.0009421166032552719, 0.00032916056807152927, 0.0005823957035318017, 0.0003060749440919608, 0.49141961336135864]], [[0.01336431223899126, 0.0035965440329164267, 0.05161060392856598, 0.012056192383170128, 0.022006116807460785, 0.016485655680298805, 0.010210510343313217, 0.39899247884750366], [0.00928526185452938, 0.0326879546046257, 0.1453167200088501, 0.03693412244319916, 0.03979038447141647, 0.024780292063951492, 0.004088966641575098, 0.34806737303733826], [0.01398733165115118, 0.014827712439000607, 0.02972370944917202, 0.031245725229382515, 0.057907432317733765, 0.06627213954925537, 0.0846913680434227, 0.345136821269989], [0.0035739270970225334, 0.006113364826887846, 0.016842838376760483, 0.054038155823946, 0.11411003023386002, 0.2806050479412079, 0.08233063668012619, 0.21912424266338348], [0.004479799885302782, 0.013538465835154057, 0.012492658570408821, 0.018693499267101288, 0.02576184645295143, 0.04336852207779884, 0.08259730786085129, 0.3965776860713959], [0.01911953091621399, 0.02735181339085102, 0.021236585453152657, 0.02602602168917656, 0.04578559100627899, 0.05585281550884247, 0.10683567821979523, 0.34474286437034607], [0.1508602350950241, 0.06984193623065948, 0.035625044256448746, 0.018946995958685875, 0.007210142444819212, 0.008949807845056057, 0.02401505969464779, 0.33498451113700867], [0.006893577985465527, 0.009953784756362438, 0.0028741711284965277, 0.002450744854286313, 0.00399274006485939, 0.005316801369190216, 0.005561901722103357, 0.4494365453720093]], [[0.044540755450725555, 0.0014445970300585032, 0.0027259483467787504, 0.0011709938989952207, 0.0009229084243997931, 0.0011893725022673607, 0.002547580748796463, 0.34677326679229736], [0.0554884634912014, 0.06190205737948418, 0.007307892199605703, 0.0063376291655004025, 0.016986148431897163, 0.02671973966062069, 0.03841036558151245, 0.16806529462337494], [0.10244113951921463, 0.022647444158792496, 0.014821763150393963, 0.04102979972958565, 0.027110502123832703, 0.03695995733141899, 0.05362994223833084, 0.33237966895103455], [0.03739418089389801, 0.018090492114424706, 0.007450600620359182, 0.026212206110358238, 0.1153101697564125, 0.07408571988344193, 0.06789854168891907, 0.3171362578868866], [0.026777086779475212, 0.04193045198917389, 0.01477155089378357, 0.03404515981674194, 0.026092752814292908, 0.018333883956074715, 0.03187673166394234, 0.3978165090084076], [0.03324560448527336, 0.027514945715665817, 0.01531909592449665, 0.05001102387905121, 0.07604879885911942, 0.03302668780088425, 0.042410850524902344, 0.3503687083721161], [0.03347305953502655, 0.01927226595580578, 0.00544659374281764, 0.007328846957534552, 0.008015447296202183, 0.0159282423555851, 0.01738661713898182, 0.4386299252510071], [0.004304471891373396, 0.005079758819192648, 0.0037909853272140026, 0.0025038346648216248, 0.003739033592864871, 0.00431768549606204, 0.0037392727099359035, 0.47003036737442017]], [[0.0389956533908844, 0.03704278916120529, 0.05408988893032074, 0.019846929237246513, 0.017108717933297157, 0.022621285170316696, 0.09877514094114304, 0.3377031087875366], [0.03481358662247658, 0.03960137814283371, 0.084522545337677, 0.09750930219888687, 0.06195175647735596, 0.18594969809055328, 0.3712804615497589, 0.05197278782725334], [0.024892011657357216, 0.05996222048997879, 0.07134450972080231, 0.049014415591955185, 0.028017137199640274, 0.04636963829398155, 0.07827495038509369, 0.3154942989349365], [0.0072318799793720245, 0.03499625250697136, 0.01587594673037529, 0.03145710006356239, 0.014190719462931156, 0.021859483793377876, 0.03311891481280327, 0.416999876499176], [0.004399092867970467, 0.01436392217874527, 0.023750100284814835, 0.0405680388212204, 0.013014176860451698, 0.02123536914587021, 0.010338425636291504, 0.43219566345214844], [0.011797952465713024, 0.02755153365433216, 0.07371135801076889, 0.07054832577705383, 0.036510664969682693, 0.04366889223456383, 0.018182838335633278, 0.35440686345100403], [0.049807239323854446, 0.046874646097421646, 0.10570333153009415, 0.10788444429636002, 0.15616106986999512, 0.12706676125526428, 0.0981421172618866, 0.14848512411117554], [0.002655469812452793, 0.0015931368106976151, 0.002194697270169854, 0.001347757875919342, 0.0035028476268053055, 0.0030383591074496508, 0.006618522107601166, 0.4761962592601776]], [[0.0086296908557415, 0.0031608473509550095, 0.016628323122859, 0.006861709523946047, 0.0010324710747227073, 0.0020657717250287533, 0.012614213861525059, 0.4308093190193176], [0.004088959656655788, 0.01034250296652317, 0.0032591482158750296, 0.008266283199191093, 0.007278989069163799, 0.013533996418118477, 0.01982678845524788, 0.38133111596107483], [0.019086068496108055, 0.00604903744533658, 0.030388230457901955, 0.020120464265346527, 0.0037113020662218332, 0.005693543236702681, 0.01595265418291092, 0.37315335869789124], [0.006498157046735287, 0.0035718500148504972, 0.010609368793666363, 0.03272995725274086, 0.0163689237087965, 0.029737919569015503, 0.01900268718600273, 0.3853331506252289], [0.0006544249481521547, 0.0034931583795696497, 0.0006911834352649748, 0.004751863889396191, 0.009870128706097603, 0.01829581707715988, 0.0016989682335406542, 0.2878921926021576], [0.0019121508812531829, 0.004305894486606121, 0.004267499316483736, 0.006691674701869488, 0.00914900191128254, 0.018012328073382378, 0.004173153080046177, 0.346554696559906], [0.007784734945744276, 0.003887999104335904, 0.01815454103052616, 0.008322193287312984, 0.004131244961172342, 0.008158727549016476, 0.0341779999434948, 0.39806845784187317], [0.0015524531481787562, 0.0007399208843708038, 0.00036488217301666737, 0.0012988195521757007, 0.0005600320873782039, 0.0007393269333988428, 0.0013441115152090788, 0.4944555163383484]], [[0.011632434092462063, 0.001419806038029492, 0.012236066162586212, 0.006117582321166992, 0.0035453762393444777, 0.008101333864033222, 0.015246381983160973, 0.4656599760055542], [0.0005107528995722532, 0.005497978534549475, 0.00040624092798680067, 0.00025715981610119343, 0.0008760042837820947, 0.0013726482866331935, 0.0028307323809713125, 0.0651855319738388], [0.008781759068369865, 0.006061234045773745, 0.018651865422725677, 0.018963588401675224, 0.017608607187867165, 0.03521234542131424, 0.011660086922347546, 0.43527868390083313], [0.0006527308723889291, 0.0014285106444731355, 0.004529457539319992, 0.008153524249792099, 0.01995600201189518, 0.02669931761920452, 0.0015057934215292335, 0.4676418900489807], [0.0004887273535132408, 0.0023083367850631475, 0.001150878262706101, 0.0029770766850560904, 0.002056026365607977, 0.0038805746007710695, 0.0003996133746113628, 0.4921257495880127], [0.0006732653127983212, 0.0027948033530265093, 0.0031715119257569313, 0.007096114102751017, 0.0033131868112832308, 0.0068524060770869255, 0.0006988043896853924, 0.4865102767944336], [0.00404906552284956, 0.007025830913335085, 0.013269378803670406, 0.006431270856410265, 0.028431324288249016, 0.04766011983156204, 0.008167565800249577, 0.434256374835968], [0.001825762796215713, 0.0011391544248908758, 0.00034441237221471965, 0.00018459916464053094, 0.00030850368784740567, 0.00044070681906305254, 0.0009227529517374933, 0.49129363894462585]], [[0.010361080057919025, 0.01743444800376892, 0.06903760135173798, 0.014082523994147778, 0.005928965285420418, 0.00888635590672493, 0.0372118204832077, 0.4031117558479309], [0.04218515753746033, 0.08228074014186859, 0.031110359355807304, 0.015590585768222809, 0.014183164574205875, 0.014379311352968216, 0.012546231038868427, 0.3731452226638794], [0.055433426052331924, 0.03458389639854431, 0.03879685699939728, 0.010790652595460415, 0.011912178248167038, 0.013224744237959385, 0.0127617958933115, 0.39020442962646484], [0.013476496562361717, 0.018534790724515915, 0.051197607070207596, 0.04886180907487869, 0.022453969344496727, 0.03069416806101799, 0.02120506763458252, 0.3875504434108734], [0.009224594570696354, 0.02860410325229168, 0.021281154826283455, 0.06747666001319885, 0.06687156111001968, 0.15383942425251007, 0.010832159779965878, 0.3157462179660797], [0.016873087733983994, 0.026423050090670586, 0.06542758643627167, 0.09191963076591492, 0.10732707381248474, 0.07904724776744843, 0.017607389017939568, 0.2913818061351776], [0.016590097919106483, 0.03856492042541504, 0.2682875096797943, 0.06995374709367752, 0.027016276493668556, 0.04017585888504982, 0.026673370972275734, 0.23957446217536926], [0.0018392452038824558, 0.0014995927922427654, 0.001209583948366344, 0.0005584249156527221, 0.001305189449340105, 0.002075109863653779, 0.0025315717794001102, 0.47648102045059204]], [[0.038811374455690384, 0.05650472268462181, 0.06714165955781937, 0.017051519826054573, 0.037102315574884415, 0.02756950445473194, 0.04113469645380974, 0.3484596014022827], [0.001121414010412991, 0.024338943883776665, 0.02962563931941986, 0.009845007210969925, 0.0036482997238636017, 0.0026537631638348103, 0.006296379026025534, 0.4552295207977295], [0.00908377580344677, 0.007291960529983044, 0.04109862819314003, 0.021270181983709335, 0.03761274367570877, 0.022875383496284485, 0.00790230929851532, 0.42321833968162537], [0.005768592935055494, 0.002900096820667386, 0.010208350606262684, 0.012509077787399292, 0.04577448591589928, 0.024502741172909737, 0.023809567093849182, 0.434604674577713], [0.00152682070620358, 0.01032771822065115, 0.007440901827067137, 0.029312364757061005, 0.034641120582818985, 0.18826401233673096, 0.027860963717103004, 0.34589195251464844], [0.0013383610639721155, 0.0184189360588789, 0.002249507699161768, 0.0072153047658503056, 0.007377192378044128, 0.013753866776823997, 0.09537209570407867, 0.4187721014022827], [0.006970832124352455, 0.029111023992300034, 0.014330967329442501, 0.01756431721150875, 0.013669525273144245, 0.018036406487226486, 0.03582446649670601, 0.4273332357406616], [0.002862069755792618, 0.008709602989256382, 0.0023584114387631416, 0.0024072949308902025, 0.002924242988228798, 0.005137558560818434, 0.004841338377445936, 0.4664692282676697]], [[0.03751019388437271, 0.010983506217598915, 0.019836317747831345, 0.0022527913097292185, 0.0011509857140481472, 0.0011464903363958001, 0.013586047105491161, 0.041926056146621704], [0.002130868611857295, 0.007135801017284393, 0.00048347958363592625, 0.0005797253106720746, 0.00017572475189808756, 0.0002793150197248906, 0.000499148853123188, 0.00954129733145237], [0.2121109962463379, 0.05890762433409691, 0.07907682657241821, 0.004554620012640953, 0.0018162972992286086, 0.002661042381078005, 0.09230703860521317, 0.14897891879081726], [0.10759623348712921, 0.07695320248603821, 0.02583392709493637, 0.025831174105405807, 0.005419582594186068, 0.009587625041604042, 0.23482336103916168, 0.18135206401348114], [0.02327154017984867, 0.07586771249771118, 0.00998992845416069, 0.013206991367042065, 0.004559640306979418, 0.008705583401024342, 0.05418507754802704, 0.33670157194137573], [0.07501322031021118, 0.08667917549610138, 0.03702550753951073, 0.02168935351073742, 0.011824038811028004, 0.016242511570453644, 0.12028791010379791, 0.22895477712154388], [0.08989185094833374, 0.2309030294418335, 0.01841660402715206, 0.006168010178953409, 0.0034973679576069117, 0.004369367379695177, 0.03351617977023125, 0.131175234913826], [0.00020788029360119253, 0.0005164339672774076, 0.00011835042823804542, 0.0001405497023370117, 0.00010263162403134629, 0.00017403013771399856, 0.00023278914159163833, 0.48340076208114624]], [[0.05087289959192276, 0.0041920156218111515, 0.002957636956125498, 0.0007176595972850919, 0.0025587647687643766, 0.0038630410563200712, 0.006566693540662527, 0.42919713258743286], [0.00392056442797184, 0.043076906353235245, 0.0011429940350353718, 0.0013255821540951729, 0.0011679292656481266, 0.0032028909772634506, 0.004219250753521919, 0.33772990107536316], [0.0016564402030780911, 0.003364108968526125, 0.20521804690361023, 0.002826505806297064, 0.0033466373570263386, 0.0011116265086457133, 0.000903092441149056, 0.37948673963546753], [0.0010416965233162045, 0.003266405314207077, 0.0022578921634703875, 0.03571547195315361, 0.003969886340200901, 0.0025147718843072653, 0.0004118141660001129, 0.46724221110343933], [0.0014773086877539754, 0.0010916618630290031, 0.0017898738151416183, 0.0017837052000686526, 0.026358338072896004, 0.004297489766031504, 0.0012102590408176184, 0.47163283824920654], [0.0017799192573875189, 0.001966010080650449, 0.0009916526032611728, 0.0009251998271793127, 0.005796909797936678, 0.01794496551156044, 0.004505910910665989, 0.47255510091781616], [0.005314759910106659, 0.00759453559294343, 0.0008125887834466994, 0.0007174907950684428, 0.0035929169971495867, 0.005824682302772999, 0.033950477838516235, 0.43505698442459106], [0.00045763739035464823, 0.0006625339738093317, 0.00020129949552938342, 0.0002016184153035283, 0.0006469786749221385, 0.0004910673596896231, 0.0006840649293735623, 0.4956824779510498]]], [[[0.016047505661845207, 0.005976941902190447, 0.01417023129761219, 0.005539620760828257, 0.0032766296062618494, 0.005577230826020241, 0.011365116573870182, 0.4525914192199707], [0.003572792513296008, 0.0025588429998606443, 0.004928890150040388, 0.0022167316637933254, 0.0035262969322502613, 0.002239897148683667, 0.0036948949564248323, 0.48021137714385986], [0.005751579534262419, 0.012999902479350567, 0.02065327949821949, 0.009368163533508778, 0.0033462520223110914, 0.0043659815564751625, 0.01749434880912304, 0.45558443665504456], [0.0013726098695769906, 0.0038558829110115767, 0.0041435458697378635, 0.004675861448049545, 0.0021155723370611668, 0.0016229794127866626, 0.006166336592286825, 0.4841287136077881], [0.001728222006931901, 0.006255460437387228, 0.0021400803234428167, 0.0025567286647856236, 0.004833409562706947, 0.00113230652641505, 0.002396430354565382, 0.48611903190612793], [0.0041077290661633015, 0.011648755520582199, 0.005741051398217678, 0.005975864361971617, 0.003786431858316064, 0.002050690818578005, 0.00856279768049717, 0.4718802869319916], [0.0067992680706083775, 0.040100276470184326, 0.008731737732887268, 0.007158646825700998, 0.007498839404433966, 0.007007658015936613, 0.05007214844226837, 0.4115254580974579], [0.04347857087850571, 0.06669024378061295, 0.018756138160824776, 0.02486267313361168, 0.011932287365198135, 0.019868843257427216, 0.04652900993824005, 0.08795066177845001]], [[0.15228553116321564, 0.01657586544752121, 0.016285276040434837, 0.024118781089782715, 0.003952993080019951, 0.005927578080445528, 0.04346243292093277, 0.3378344178199768], [0.008368640206754208, 0.012222128920257092, 0.01048631314188242, 0.010790479369461536, 0.00938624981790781, 0.015173789113759995, 0.005441887769848108, 0.4411996304988861], [0.0027811340987682343, 0.0029459157958626747, 0.3134748041629791, 0.04021326079964638, 0.012165484018623829, 0.011341501027345657, 0.0049714939668774605, 0.27418839931488037], [0.0037007001228630543, 0.00225565442815423, 0.02467900700867176, 0.5225248336791992, 0.023075195029377937, 0.029583530500531197, 0.006277815438807011, 0.1830413043498993], [0.0005503998836502433, 0.001250285655260086, 0.0036745623219758272, 0.011885044164955616, 0.18483692407608032, 0.04650628939270973, 0.002467802260071039, 0.36480993032455444], [0.002056811936199665, 0.0036669259425252676, 0.01678227074444294, 0.019413670524954796, 0.07943206280469894, 0.16439281404018402, 0.00788420531898737, 0.3284910023212433], [0.06221707910299301, 0.014026223681867123, 0.05116696655750275, 0.05257246643304825, 0.016880260780453682, 0.025000395253300667, 0.3805259168148041, 0.16458648443222046], [0.041652072221040726, 0.042466502636671066, 0.04137236252427101, 0.05464804917573929, 0.12319736182689667, 0.0753936842083931, 0.03670267015695572, 0.06261233985424042]], [[0.0241503044962883, 0.0033834988716989756, 0.0022061350755393505, 0.003551473841071129, 0.013575058430433273, 0.011995721608400345, 0.16859211027622223, 0.10059676319360733], [0.09403447806835175, 0.01991122029721737, 0.013736003078520298, 0.008927475661039352, 0.029324132949113846, 0.04000852629542351, 0.04301200062036514, 0.3296343982219696], [0.053535327315330505, 0.035523660480976105, 0.08833994716405869, 0.0796736627817154, 0.058038126677274704, 0.05007735639810562, 0.1113213524222374, 0.20581258833408356], [0.058506570756435394, 0.01770136132836342, 0.1720457524061203, 0.04430493712425232, 0.2029067575931549, 0.050709571689367294, 0.014567193575203419, 0.18916507065296173], [0.009348278865218163, 0.005259343422949314, 0.02028665691614151, 0.03277909755706787, 0.058848679065704346, 0.012434656731784344, 0.006771378219127655, 0.41890615224838257], [0.009246139787137508, 0.0021591787226498127, 0.03268887475132942, 0.02692278102040291, 0.5951436161994934, 0.05675017833709717, 0.0028317251708358526, 0.12186546623706818], [0.009041408076882362, 0.011061213910579681, 0.010346817784011364, 0.029818782582879066, 0.08406944572925568, 0.27485084533691406, 0.021141648292541504, 0.25171419978141785], [0.026210878044366837, 0.10376205295324326, 0.038951434195041656, 0.03423009440302849, 0.04498929902911186, 0.05360664427280426, 0.17377449572086334, 0.03872588276863098]], [[0.008098365738987923, 0.004711825400590897, 0.00586341880261898, 0.0011751024285331368, 0.0256133284419775, 0.017413906753063202, 0.009441502392292023, 0.42574962973594666], [0.0035414290614426136, 0.00770805636420846, 0.002135239774361253, 0.0014354768209159374, 0.04802033677697182, 0.02825295552611351, 0.01022831816226244, 0.4359806180000305], [0.015994325280189514, 0.014044477604329586, 0.04408397525548935, 0.014529246836900711, 0.05312582477927208, 0.03202439844608307, 0.010926838032901287, 0.37670135498046875], [0.005386872682720423, 0.005235855933278799, 0.01776091754436493, 0.006309798918664455, 0.3805254101753235, 0.05955587327480316, 0.0035995652433484793, 0.24417981505393982], [0.005722798407077789, 0.007863953709602356, 0.014869583770632744, 0.03801451250910759, 0.21501068770885468, 0.22400610148906708, 0.005238768644630909, 0.22843213379383087], [0.007080018520355225, 0.008906455710530281, 0.011133446358144283, 0.014726677909493446, 0.5179486870765686, 0.07256244868040085, 0.0024222692009061575, 0.16509759426116943], [0.019295470789074898, 0.0281047485768795, 0.019133297726511955, 0.005344226956367493, 0.07714380323886871, 0.13694310188293457, 0.047081828117370605, 0.30636706948280334], [0.07300541549921036, 0.04359082877635956, 0.07098083198070526, 0.057844895869493484, 0.013427520170807838, 0.033653680235147476, 0.08769567310810089, 0.10716213285923004]], [[0.0007212411146610975, 0.0007951589650474489, 0.00033781962702050805, 0.0006165526574477553, 0.0002109793567797169, 0.0007292263326235116, 0.00205221027135849, 0.48868685960769653], [0.0007828455418348312, 0.00048663292545825243, 0.002222022507339716, 0.001564528327435255, 0.0006616450264118612, 0.0019176488276571035, 0.00373026542365551, 0.4902186989784241], [0.0006260748486965895, 0.003564959391951561, 0.004405129235237837, 0.006562281399965286, 0.007454396691173315, 0.009721138514578342, 0.0056509170681238174, 0.46224597096443176], [0.00014752670540474355, 0.0003647179401014, 0.0003796535893343389, 0.0030504059977829456, 0.0029147095046937466, 0.005478133447468281, 0.0010295744286850095, 0.4888433814048767], [7.980596274137497e-05, 0.0012594269355759025, 0.000490149948745966, 0.007886458188295364, 0.006780900061130524, 0.010846252553164959, 0.001284137717448175, 0.47940173745155334], [0.0001742991735227406, 0.0021611363627016544, 0.0009780267719179392, 0.005905776284635067, 0.005196746438741684, 0.0085239103063941, 0.0024807851295918226, 0.47826531529426575], [0.0015796689549461007, 0.001260863384231925, 0.0017355747986584902, 0.0030727966222912073, 0.0015600246842950583, 0.005307079292833805, 0.005799435079097748, 0.4842008948326111], [0.06378437578678131, 0.055108219385147095, 0.025872791185975075, 0.033314116299152374, 0.06530431658029556, 0.07745753973722458, 0.04593765735626221, 0.02057657577097416]], [[0.0012937705032527447, 0.0046974350698292255, 0.002628656104207039, 0.000338042969815433, 0.0007595503702759743, 0.0009430511854588985, 0.0017310597468167543, 0.4904288053512573], [0.002709990134462714, 0.006238013505935669, 0.006091473624110222, 0.0009261975064873695, 0.0021920346189290285, 0.0018912581726908684, 0.004965838044881821, 0.4852139353752136], [0.00519830035045743, 0.01881220005452633, 0.0057239956222474575, 0.0035084798000752926, 0.015229422599077225, 0.02350020594894886, 0.01549785677343607, 0.4505849778652191], [0.0006493504042737186, 0.005307517014443874, 0.0040329815819859505, 0.0012620934285223484, 0.001588954241015017, 0.002162833232432604, 0.0011746532982215285, 0.49022603034973145], [0.0010977355996146798, 0.011452978476881981, 0.007928447797894478, 0.008680086582899094, 0.008618864230811596, 0.01085326261818409, 0.005007029976695776, 0.4697624742984772], [0.001668676151894033, 0.02111070789396763, 0.0099417082965374, 0.007544473744928837, 0.007995713502168655, 0.012053235433995724, 0.006989119108766317, 0.4605318009853363], [0.007097167428582907, 0.17125971615314484, 0.05100984871387482, 0.019227804616093636, 0.03558855503797531, 0.04701126366853714, 0.00511261448264122, 0.3234029710292816], [0.07450903952121735, 0.07156340032815933, 0.04503767564892769, 0.019176090136170387, 0.023329636082053185, 0.030587175861001015, 0.0673370286822319, 0.05281822755932808]], [[0.6503998637199402, 0.024209290742874146, 0.012130741961300373, 0.026340357959270477, 0.0034807685296982527, 0.006608541589230299, 0.016079507768154144, 0.0959915742278099], [0.02742045558989048, 0.21441768109798431, 0.011885302141308784, 0.011931284330785275, 0.007051394321024418, 0.008538610301911831, 0.010119940154254436, 0.29329007863998413], [0.016735607758164406, 0.007536791265010834, 0.3523162603378296, 0.08877135813236237, 0.011215425096452236, 0.0065015750005841255, 0.011413875967264175, 0.2274402678012848], [0.011171055026352406, 0.013316246680915356, 0.0318145677447319, 0.34112435579299927, 0.027619145810604095, 0.03056422248482704, 0.009395316243171692, 0.2506634294986725], [0.0012920188019052148, 0.00338237383402884, 0.01653657853603363, 0.010879944078624249, 0.4128892719745636, 0.03201054409146309, 0.0024761981330811977, 0.25312548875808716], [0.009089658968150616, 0.008716607466340065, 0.016759952530264854, 0.0276813842356205, 0.07457028329372406, 0.22423134744167328, 0.01918860711157322, 0.2901404798030853], [0.06415924429893494, 0.02072158455848694, 0.026198796927928925, 0.0295125599950552, 0.0070204283110797405, 0.024105645716190338, 0.4588351547718048, 0.142768993973732], [0.04192609712481499, 0.03486085683107376, 0.043061356991529465, 0.05358906835317612, 0.04296655207872391, 0.03213036432862282, 0.023502981290221214, 0.04757021740078926]], [[0.0012319288216531277, 0.000976788462139666, 0.0006127048982307315, 0.0002627545618452132, 0.0007706846226938069, 0.001420506159774959, 0.005029009189456701, 0.49096885323524475], [0.0009992095874622464, 0.0029752247501164675, 0.0005808927235193551, 0.0008009190205484629, 0.004420299082994461, 0.004240072797983885, 0.0075162677094340324, 0.479303777217865], [0.0005642945761792362, 0.005718571599572897, 0.0006580896442756057, 0.00476815877482295, 0.003074191976338625, 0.006273750215768814, 0.00415963726118207, 0.4800584018230438], [0.00035157211823388934, 0.0035839087795466185, 0.00028851311071775854, 0.000575128651689738, 0.002278165426105261, 0.0021125096827745438, 0.0010798713192343712, 0.4925641119480133], [0.00047653273213654757, 0.0031366932671517134, 0.00021838283282704651, 0.0015071578091010451, 0.0019947593100368977, 0.0017317443853244185, 0.00047306291526183486, 0.4919881224632263], [0.0012696698540821671, 0.006251254118978977, 0.0009212627774104476, 0.002716516610234976, 0.01004814077168703, 0.005060023628175259, 0.0007168963784351945, 0.48167645931243896], [0.004286850802600384, 0.009634511545300484, 0.0046390448696911335, 0.0037978794425725937, 0.018636900931596756, 0.02111905999481678, 0.00675989082083106, 0.4455603063106537], [0.06196365877985954, 0.02684403769671917, 0.02873244509100914, 0.05016680806875229, 0.04375050216913223, 0.0476214624941349, 0.029106171801686287, 0.034661851823329926]], [[0.004719053860753775, 0.0038119915407150984, 0.0009640498901717365, 0.00029877875931560993, 0.00018914479005616158, 0.0005421480163931847, 0.0011769999982789159, 0.4716401994228363], [0.022323373705148697, 0.020337840542197227, 0.002382119884714484, 0.0005742342909798026, 0.0010874224826693535, 0.0016048356192186475, 0.009861364960670471, 0.45881983637809753], [0.1091570034623146, 0.03954612463712692, 0.014599290676414967, 0.006599105428904295, 0.0049652280285954475, 0.0075399610213935375, 0.06217719614505768, 0.35636770725250244], [0.03355438634753227, 0.0159759521484375, 0.017153006047010422, 0.039842359721660614, 0.02561977691948414, 0.03359735384583473, 0.06917178630828857, 0.3712531626224518], [0.004385953303426504, 0.004524656105786562, 0.0075546796433627605, 0.016576867550611496, 0.0069027249701321125, 0.01310378685593605, 0.02749699354171753, 0.45760926604270935], [0.01996263675391674, 0.012735324911773205, 0.00896986573934555, 0.010660086758434772, 0.009114466607570648, 0.014385048300027847, 0.01565508171916008, 0.4504474103450775], [0.04519135132431984, 0.055846381932497025, 0.008100657723844051, 0.00407094182446599, 0.0025663163978606462, 0.0038833587896078825, 0.10725120455026627, 0.3733517825603485], [0.07242827862501144, 0.06421227008104324, 0.02263951674103737, 0.022385504096746445, 0.027931073680520058, 0.04172063618898392, 0.04873381555080414, 0.030583910644054413]], [[0.0065541947260499, 0.05163077265024185, 0.02010190673172474, 0.01942593976855278, 0.008450549095869064, 0.01945435255765915, 0.01034926250576973, 0.4067283868789673], [0.0011458296794444323, 0.012946616858243942, 0.013650696724653244, 0.016378093510866165, 0.005186373833566904, 0.008234103210270405, 0.007014406844973564, 0.4549373388290405], [0.003065013326704502, 0.0037059795577079058, 0.012568687088787556, 0.01972794532775879, 0.02009713090956211, 0.03529074788093567, 0.006283702794462442, 0.4423975646495819], [0.0005495003424584866, 0.0005930094048380852, 0.0014745795633643866, 0.005237529519945383, 0.017662763595581055, 0.04676802456378937, 0.0043440028093755245, 0.4591376781463623], [0.001335600041784346, 0.00491587957367301, 0.002912278752774, 0.017438678070902824, 0.02692965231835842, 0.5491586327552795, 0.018639331683516502, 0.1700662523508072], [0.001127135707065463, 0.003938448615372181, 0.00238685286603868, 0.006141508463770151, 0.006979458965361118, 0.04369859769940376, 0.01449078693985939, 0.44677698612213135], [0.0012439667480066419, 0.012691715732216835, 0.002031312556937337, 0.007129490841180086, 0.006993147544562817, 0.0094226049259305, 0.007895111106336117, 0.46546947956085205], [0.04809548705816269, 0.03827643394470215, 0.048353563994169235, 0.060985006392002106, 0.021729055792093277, 0.03311335667967796, 0.04332233592867851, 0.07475663721561432]], [[0.000651464972179383, 0.00099703180603683, 0.004229824990034103, 0.003330813255161047, 0.0042216358706355095, 0.012175913900136948, 0.009986993856728077, 0.48020264506340027], [0.0011230229865759611, 0.003838638309389353, 0.008371005766093731, 0.0037728906609117985, 0.006408975925296545, 0.009095384739339352, 0.018555408343672752, 0.4731152653694153], [0.0034400050062686205, 0.0009291977621614933, 0.008965149521827698, 0.007681253831833601, 0.008524042554199696, 0.02079007774591446, 0.0068803709000349045, 0.46967601776123047], [0.000634836673270911, 0.00017357290198560804, 0.002435597823932767, 0.0035501786042004824, 0.002023017033934593, 0.003990857861936092, 0.0014111888594925404, 0.4926604628562927], [0.0008119418052956462, 0.0004944773390889168, 0.0021628658287227154, 0.004797687754034996, 0.0020084420684725046, 0.0033324521500617266, 0.0011478214291855693, 0.4921012222766876], [0.002745814388617873, 0.001155576785095036, 0.004421143792569637, 0.003324240678921342, 0.002318187616765499, 0.0024319584481418133, 0.0020098050590604544, 0.48979508876800537], [0.0023756709415465593, 0.0007601972320117056, 0.005252471659332514, 0.0028385103214532137, 0.008432993665337563, 0.012459885329008102, 0.0060107228346168995, 0.478421151638031], [0.16030064225196838, 0.08772062510251999, 0.02232799492776394, 0.07456885278224945, 0.028874382376670837, 0.07091954350471497, 0.12765587866306305, 0.06918206810951233]], [[0.017725354060530663, 0.01013166457414627, 0.003987094387412071, 0.0026930836029350758, 0.004663575440645218, 0.0029930698219686747, 0.0048863692209124565, 0.4660985767841339], [0.009104028344154358, 0.021802496165037155, 0.007647151127457619, 0.004888709168881178, 0.003563282545655966, 0.0020407040137797594, 0.004628247581422329, 0.45317378640174866], [0.016442222520709038, 0.029273027554154396, 0.02130606211721897, 0.013162292540073395, 0.012006673961877823, 0.014473862946033478, 0.008844751864671707, 0.4308224320411682], [0.024737287312746048, 0.011383121833205223, 0.009255729615688324, 0.007210845127701759, 0.005084443371742964, 0.0037273671478033066, 0.005014441441744566, 0.4611183702945709], [0.0016089871060103178, 0.004354927688837051, 0.0013350502122193575, 0.001293679466471076, 0.009053926914930344, 0.0057799434289336205, 0.0013069482520222664, 0.48577964305877686], [0.006756106857210398, 0.005365082528442144, 0.004125990439206362, 0.0025008816737681627, 0.009753044694662094, 0.010474382899701595, 0.0032557386439293623, 0.47526201605796814], [0.04197985678911209, 0.05761570855975151, 0.012360600754618645, 0.005970218684524298, 0.008420190773904324, 0.010422347113490105, 0.014354380778968334, 0.40053170919418335], [0.06538806855678558, 0.07005905359983444, 0.03310585767030716, 0.03277968615293503, 0.022778529673814774, 0.03566054627299309, 0.07007981836795807, 0.03664584457874298]]]], \\\"left_text\\\": [\\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"]}, {\\\"name\\\": \\\"Sentence A -\\u003e Sentence B\\\", \\\"attn\\\": [[[[0.011008302681148052, 0.007964405231177807, 0.012401134707033634, 0.012626986019313335, 0.01822158694267273, 0.03751054406166077, 0.032849520444869995, 0.7062491178512573], [0.05111600458621979, 0.01784636825323105, 0.016188524663448334, 0.034550972282886505, 0.04032806307077408, 0.008430905640125275, 0.014747894369065762, 0.002083284081891179], [0.011161367408931255, 0.007392543368041515, 0.02728419005870819, 0.011595254763960838, 0.06580255925655365, 0.029527466744184494, 0.0062408046796917915, 0.01905512809753418], [0.0387045256793499, 0.007175581995397806, 0.014191791415214539, 0.03388706594705582, 0.05341388285160065, 0.013310998678207397, 0.009375548921525478, 0.0009336062357760966], [0.03042193129658699, 0.0036483488511294127, 0.01124507561326027, 0.052854206413030624, 0.055095743387937546, 0.018138518556952477, 0.021030552685260773, 0.0019064793596044183], [0.026137450709939003, 0.007835391908884048, 0.04781508445739746, 0.0928763672709465, 0.02130993641912937, 0.012126856483519077, 0.007968500256538391, 0.010289200581610203], [0.07653960585594177, 0.005564410705119371, 0.01443084329366684, 0.04294794425368309, 0.07773218303918839, 0.036374710500240326, 0.011816887184977531, 0.001566849066875875], [0.039379481226205826, 0.007954319939017296, 0.10972070693969727, 0.026415210217237473, 0.023425700142979622, 0.014062038622796535, 0.0026519885286688805, 0.011344718746840954], [1.152576032836805e-06, 1.1555251148820389e-05, 5.2061750466236845e-06, 1.371363214275334e-05, 4.478007667785278e-06, 5.161368608241901e-05, 0.0001593561319168657, 0.9994856119155884]], [[0.027349503710865974, 0.013545246794819832, 0.06334026157855988, 0.030286243185400963, 0.02672632411122322, 0.03649211302399635, 0.00903548114001751, 0.004095627460628748], [0.04030245915055275, 0.05449175089597702, 0.015260525979101658, 0.01441941037774086, 0.051165707409381866, 0.012906704097986221, 0.009400923736393452, 0.005906717851758003], [0.03189234808087349, 0.005836388096213341, 0.015635255724191666, 0.02730834297835827, 0.03977164626121521, 0.02932717837393284, 0.002584383124485612, 0.0010396799771115184], [0.05264122784137726, 0.005919741000980139, 0.0015853171935305, 0.004358803387731314, 0.0019629127345979214, 0.0005766953690908849, 0.00020377084729261696, 0.001008533057756722], [0.0016609665472060442, 0.004477020353078842, 0.010466582141816616, 0.014143839478492737, 0.018876660615205765, 0.003539198776707053, 0.005014950409531593, 0.0007165209972299635], [0.01039657648652792, 0.004642943385988474, 0.007727229502052069, 0.008718782104551792, 0.01666164956986904, 0.008082425221800804, 0.0013291724026203156, 0.001171768526546657], [0.0015719160437583923, 0.0013278420083224773, 0.008107521571218967, 0.01719454489648342, 0.046971384435892105, 0.0064142923802137375, 0.003084664698690176, 0.0006322385743260384], [0.03418389707803726, 0.007624479942023754, 0.03132493048906326, 0.007417135406285524, 0.01037380937486887, 0.016183815896511078, 0.004492961801588535, 0.0016253096982836723], [0.03925952687859535, 0.029104769229888916, 0.017176028341054916, 0.018435312435030937, 0.002877231454476714, 0.002948450157418847, 0.0017658548895269632, 0.015059570781886578]], [[0.04867997393012047, 0.09254953265190125, 0.07381545752286911, 0.09486182779073715, 0.082914799451828, 0.07271520793437958, 0.04404165968298912, 0.030361313372850418], [0.0545763336122036, 0.01604420691728592, 0.011612973175942898, 0.027364207431674004, 0.019178539514541626, 0.021193353459239006, 0.03272027149796486, 0.032265398651361465], [0.01743321679532528, 0.10690226405858994, 0.02871570736169815, 0.04158058017492294, 0.04895868897438049, 0.04626128450036049, 0.018562469631433487, 0.036715105175971985], [0.042592115700244904, 0.028904670849442482, 0.030724521726369858, 0.021228116005659103, 0.023331813514232635, 0.0168754905462265, 0.03380384296178818, 0.04233171045780182], [0.038641296327114105, 0.029350461438298225, 0.015338404104113579, 0.012258137576282024, 0.042409393936395645, 0.034138504415750504, 0.023105019703507423, 0.025494007393717766], [0.01470259390771389, 0.04659475013613701, 0.024310611188411713, 0.018510956317186356, 0.055132340639829636, 0.08806735277175903, 0.010098050348460674, 0.04462667927145958], [0.05045425519347191, 0.055470049381256104, 0.04604503884911537, 0.018547367304563522, 0.02415427938103676, 0.025428179651498795, 0.029278477653861046, 0.03038364090025425], [0.07383982092142105, 0.054581303149461746, 0.062397975474596024, 0.03553818166255951, 0.02532547153532505, 0.025117862969636917, 0.03893119841814041, 0.008976396173238754], [0.0757886990904808, 0.09931029379367828, 0.08393636345863342, 0.05245032161474228, 0.059110067784786224, 0.027142135426402092, 0.07597208023071289, 0.015110681764781475]], [[0.0416850820183754, 0.04187638685107231, 0.051688242703676224, 0.04284347966313362, 0.010884474031627178, 0.02676309645175934, 0.04683941602706909, 0.06283047050237656], [0.0013698127586394548, 0.001527724089100957, 0.003079200629144907, 0.0036342886742204428, 0.002154689049348235, 0.0011569688795134425, 0.0025306325405836105, 0.010919292457401752], [0.0019989456050097942, 0.004539075773209333, 0.0021221840288490057, 0.0043496135622262955, 0.009173189289867878, 0.00819883868098259, 0.001727689290419221, 0.0012723386753350496], [0.024206284433603287, 0.0011899482924491167, 0.0009746656287461519, 0.0016707185423001647, 0.0010043636430054903, 0.001857830211520195, 0.0005939669790677726, 0.00694759888574481], [0.02933378890156746, 0.019377965480089188, 0.0010600468376651406, 0.009931511245667934, 0.011072607710957527, 0.010862203314900398, 0.0034645176492631435, 0.0015955098206177354], [0.022633247077465057, 0.004940207116305828, 0.0032543574925512075, 0.008275501430034637, 0.005043844226747751, 0.0024784624110907316, 0.0015372901689261198, 0.0014068287564441562], [0.0013314973330125213, 0.0024215762969106436, 0.00171946850605309, 0.004013487603515387, 0.004174456931650639, 0.0027731608133763075, 0.0011439566733315587, 0.0006740911048837006], [0.0010895318118855357, 0.004290437325835228, 0.0062949806451797485, 0.004447329323738813, 0.004242948722094297, 0.007139301858842373, 0.0003665502299554646, 0.0018705135444179177], [0.00633058650419116, 0.001208824454806745, 0.010793852619826794, 0.003044052980840206, 0.0009751369943842292, 0.002682421123608947, 0.003046723548322916, 0.0038170877378433943]], [[0.007810052018612623, 0.02126569114625454, 0.04604148864746094, 0.014514554291963577, 0.025807274505496025, 0.04341826215386391, 0.08485356718301773, 0.029243331402540207], [0.003574702423065901, 0.004306348040699959, 0.00856547337025404, 0.005849181208759546, 0.006364749278873205, 0.02825976349413395, 0.014159289188683033, 0.007611260283738375], [0.009691307321190834, 0.0013374672271311283, 0.013957006856799126, 0.007881246507167816, 0.01621880754828453, 0.01895863004028797, 0.004472723230719566, 0.0029238893184810877], [0.0298911165446043, 0.030503615736961365, 0.0018633375875651836, 0.026354365050792694, 0.004749304614961147, 0.0009832560317590833, 0.0005606042104773223, 0.0029506373684853315], [0.01831057108938694, 0.035194605588912964, 0.003690612269565463, 0.0874093770980835, 0.027725795283913612, 0.029748598113656044, 0.0012340922839939594, 0.002238919958472252], [0.01757563278079033, 0.002588002709671855, 0.0020996304228901863, 0.015356292948126793, 0.01379159465432167, 0.007605087012052536, 0.0010641419794410467, 0.0033865529112517834], [0.016615135595202446, 0.013382242992520332, 0.02174832671880722, 0.021303698420524597, 0.03887410834431648, 0.013686718419194221, 0.002741637174040079, 0.003453668439760804], [0.03142288699746132, 0.018415672704577446, 0.03722061589360237, 0.02271999791264534, 0.011616760864853859, 0.039878398180007935, 0.009723562747240067, 0.009350127540528774], [0.006227157078683376, 0.0064658611081540585, 0.019711071625351906, 0.003964062314480543, 0.0032162752468138933, 0.014402758330106735, 0.004201842471957207, 0.0017728424863889813]], [[0.04550478234887123, 0.053476933389902115, 0.01804729551076889, 0.024768279865384102, 0.012427376583218575, 0.021046994253993034, 0.025330809876322746, 0.23439855873584747], [0.025592343881726265, 0.0421178936958313, 0.05956674739718437, 0.0440940335392952, 0.03432290256023407, 0.030304770916700363, 0.02068067155778408, 0.007094115484505892], [0.06441372632980347, 0.04830627143383026, 0.023198122158646584, 0.01992473006248474, 0.03235041722655296, 0.04213673993945122, 0.019411567598581314, 0.0097707100212574], [0.019606277346611023, 0.012599573470652103, 0.02298656664788723, 0.05791425704956055, 0.07773377001285553, 0.03326566517353058, 0.0734192356467247, 0.020987525582313538], [0.025675037875771523, 0.02627575397491455, 0.09429445117712021, 0.013071255758404732, 0.024463418871164322, 0.030244100838899612, 0.03953491896390915, 0.00894131325185299], [0.0603729672729969, 0.026775527745485306, 0.04063938930630684, 0.013095780275762081, 0.023802625015378, 0.024258354678750038, 0.11301542073488235, 0.01359516754746437], [0.021089935675263405, 0.0282573401927948, 0.04269837960600853, 0.014099941588938236, 0.02838147059082985, 0.02851889468729496, 0.045091379433870316, 0.008510440587997437], [0.012371964752674103, 0.026716334745287895, 0.014715065248310566, 0.019626814872026443, 0.03156737610697746, 0.01938757486641407, 0.03194998577237129, 0.011201484128832817], [0.001131283468566835, 0.0036152286920696497, 0.0008522254647687078, 0.00034796056570485234, 0.00024297041818499565, 0.00016062580107245594, 0.0008736010058782995, 0.043455757200717926]], [[0.131747767329216, 0.07875160872936249, 0.02515810914337635, 0.06670679897069931, 0.022565120831131935, 0.06760559231042862, 0.047641776502132416, 0.23916368186473846], [0.011863687075674534, 0.015315487049520016, 0.003497633384540677, 0.004441088531166315, 0.005406490061432123, 0.003567544976249337, 0.00022161522065289319, 0.0001594703207956627], [0.00836984533816576, 0.003998216241598129, 0.0022902516648173332, 0.0016475931042805314, 0.0008114398224279284, 0.002471902407705784, 0.0002081232814816758, 1.2680451618507504e-05], [0.007897846400737762, 0.02351473830640316, 0.002882627537474036, 0.005294881761074066, 0.0012846369063481688, 0.0009333751513622701, 8.39518615975976e-05, 9.552006304147653e-06], [0.0035285507328808308, 0.0013157157227396965, 0.00038352955016307533, 0.0023205154575407505, 0.000476876157335937, 0.0004446223028935492, 6.371040944941342e-05, 2.9752748105238425e-06], [0.0031104814261198044, 0.001444032066501677, 0.0006676503107883036, 0.003515154356136918, 0.0036656686570495367, 0.001331364386714995, 9.938723815139383e-05, 1.809268542274367e-05], [0.0011419992661103606, 0.001093560946173966, 0.0009655383182689548, 0.006927405018359423, 0.005606699734926224, 0.0006572494748979807, 0.00020566907187458128, 5.9139758377568796e-05], [0.0031682979315519333, 0.011523754335939884, 0.004697142168879509, 0.011235179379582405, 0.0065018306486308575, 0.003318639937788248, 0.002174386056140065, 0.00024708223645575345], [0.0008863060502335429, 0.0019725332967936993, 0.0002003176778089255, 0.0011080717667937279, 0.0011153894010931253, 0.00026514811906963587, 2.0453282559174113e-05, 2.6044726837426424e-06]], [[0.1399928480386734, 0.03838957101106644, 0.06812949478626251, 0.04396490007638931, 0.08401870727539062, 0.056498318910598755, 0.07249383628368378, 0.05991361662745476], [0.0021386321168392897, 0.001978401793166995, 0.002313601551577449, 0.003174731507897377, 0.003533181268721819, 0.005604541394859552, 0.001970448298379779, 0.0006372025818563998], [0.025920525193214417, 0.001833446673117578, 0.0021894965320825577, 0.0048238663002848625, 0.0052408636547625065, 0.025936903432011604, 0.00504214596003294, 0.000857346341945231], [0.005088564939796925, 0.001422438770532608, 0.0007215141085907817, 0.007617046125233173, 0.0029152221977710724, 0.007982546463608742, 0.0010119563667103648, 0.0003069056256208569], [0.01149197481572628, 0.001370060839690268, 0.0011997469700872898, 0.005541961174458265, 0.004602860659360886, 0.005630850791931152, 0.0006087329820729792, 0.0004972346359863877], [0.022837096825242043, 0.0018641973147168756, 0.0008440730161964893, 0.0017874921904876828, 0.0046611069701612, 0.006668757647275925, 0.0012950439704582095, 0.00036907749017700553], [0.03436198830604553, 0.011761189438402653, 0.006235687993466854, 0.0059006488882005215, 0.02326914854347706, 0.013922258280217648, 0.0011311275884509087, 0.0010038753971457481], [0.009966454468667507, 0.026696957647800446, 0.01665411703288555, 0.004814067855477333, 0.0027057058177888393, 0.004738589283078909, 0.003753240453079343, 0.0014718392631039023], [0.007888669148087502, 0.006772278342396021, 0.0049042715691030025, 0.00709201954305172, 0.0023182425647974014, 0.002772808773443103, 0.000488156802020967, 5.827374479849823e-05]], [[0.05475836247205734, 0.04314306005835533, 0.1592230200767517, 0.036683451384305954, 0.021975398063659668, 0.07122796773910522, 0.018974140286445618, 0.07947549968957901], [0.0319729819893837, 0.02228666841983795, 0.0232565738260746, 0.02562052384018898, 0.021012352779507637, 0.027559524402022362, 0.020890893414616585, 0.07634176313877106], [0.016723942011594772, 0.011417727917432785, 0.007595948409289122, 0.02660720981657505, 0.03540116921067238, 0.038540177047252655, 0.01873904839158058, 0.0010234653018414974], [0.013986077159643173, 0.012742975726723671, 0.013676805421710014, 0.022733399644494057, 0.020076457411050797, 0.02279636636376381, 0.023109592497348785, 0.056314706802368164], [0.029224565252661705, 0.009517844766378403, 0.010138439014554024, 0.05474145710468292, 0.034425996243953705, 0.017445022240281105, 0.015107192099094391, 0.01829385571181774], [0.0244514849036932, 0.018658295273780823, 0.005730919074267149, 0.11969494074583054, 0.023751411586999893, 0.05797486752271652, 0.003649243153631687, 0.007352083455771208], [0.04565241187810898, 0.018964026123285294, 0.028694765642285347, 0.027565328404307365, 0.03266844525933266, 0.037144891917705536, 0.016734721139073372, 0.03268992155790329], [0.011589981615543365, 0.019597677513957024, 0.0017998183611780405, 0.012662512250244617, 0.008410376496613026, 0.021716704592108727, 0.016524679958820343, 0.0001418645988451317], [0.00919436477124691, 0.004470595624297857, 0.009378609247505665, 0.010524829849600792, 0.01043486874550581, 0.019735919311642647, 0.008899723179638386, 0.001511107780970633]], [[0.023439422249794006, 0.04026693105697632, 0.026047907769680023, 0.023394061252474785, 0.05324985086917877, 0.01479105744510889, 0.019583487883210182, 0.02665235474705696], [0.003583453129976988, 0.019389398396015167, 0.005982087459415197, 0.004441962111741304, 0.004561947658658028, 0.0007211402407847345, 0.007333206012845039, 0.0002913186326622963], [0.0019126191036775708, 0.004298180341720581, 0.00032235425896942616, 9.852810035226867e-05, 0.0006160056218504906, 0.00030618280288763344, 0.00010265781747875735, 0.00027038660482503474], [0.0021361846011132, 0.016677897423505783, 0.014800668694078922, 0.0028928909450769424, 0.0005878520314581692, 0.001204014988616109, 0.00043835901306010783, 0.0006426859763450921], [0.0019668610766530037, 0.0009451291407458484, 0.012885362841188908, 0.056752391159534454, 0.004813986364752054, 0.0029920327942818403, 0.0012678267667070031, 0.003586124163120985], [0.000274136895313859, 0.0015084922779351473, 0.00021697493502870202, 0.006742208264768124, 0.003178044455125928, 0.002103708451613784, 0.00017256222781725228, 0.0006945595378056169], [0.0019184118136763573, 1.1265839930274524e-05, 5.301832061377354e-05, 2.1885936803300865e-05, 7.566863473584817e-07, 0.00012025000614812598, 1.2447904737200588e-05, 3.0048226108192466e-05], [0.00859396904706955, 0.005169601645320654, 0.00016499900084454566, 0.00032435308094136417, 0.00011302684288239107, 0.0012292881729081273, 0.00026034965412691236, 0.00041327576036565006], [0.01315589714795351, 0.003399125300347805, 0.003103874158114195, 0.0008009437005966902, 0.00011767839168896899, 0.00014725646178703755, 4.433339199749753e-05, 2.0980391127523035e-05]], [[0.0026334223803132772, 0.07959385216236115, 0.005817516706883907, 0.1497550904750824, 0.031208788976073265, 0.019496599212288857, 0.010442382656037807, 0.03401554748415947], [0.02326391264796257, 0.02260420098900795, 0.01761590875685215, 0.006955130957067013, 0.010127308778464794, 0.008846303448081017, 0.017809618264436722, 0.007156712934374809], [0.026195261627435684, 0.0027917984407395124, 0.0498599074780941, 0.026894720271229744, 0.10260621458292007, 0.0195894967764616, 0.003518287790939212, 0.02945900708436966], [0.005355661269277334, 0.008300283923745155, 0.006190975196659565, 0.007199685089290142, 0.004158606752753258, 0.015873489901423454, 0.010205147787928581, 0.003989442251622677], [0.014547049067914486, 0.006147957872599363, 0.009481131099164486, 0.011048650369048119, 0.009451921097934246, 0.03990714251995087, 0.008042896166443825, 0.012946530245244503], [0.02710365317761898, 0.017612215131521225, 0.04142763838171959, 0.016874289140105247, 0.04132341593503952, 0.02388180047273636, 0.010554374195635319, 0.04295368120074272], [0.01091250404715538, 0.012680169194936752, 0.019383061677217484, 0.007540566381067038, 0.01482369378209114, 0.009787033312022686, 0.009432034566998482, 0.019100753590464592], [0.04453102499246597, 0.029573574662208557, 0.04475005716085434, 0.019740616902709007, 0.02711784467101097, 0.04582895338535309, 0.03775162249803543, 0.04607353359460831], [0.0003252702590543777, 0.01323314942419529, 0.0011480662506073713, 0.0008952190401032567, 0.0003345238510519266, 0.0024672735016793013, 0.0018658393528312445, 0.00218773540109396]], [[2.4740964363445528e-05, 0.0006135533330962062, 0.0031444982159882784, 0.0003683871473185718, 0.00017555931117385626, 7.470789569197223e-05, 0.0013607771834358573, 0.6999736428260803], [0.0036370456218719482, 0.010267579928040504, 0.00218258542008698, 0.005212061107158661, 0.012401428073644638, 0.002899571554735303, 0.008493664674460888, 0.0004806677170563489], [0.0030751919839531183, 0.0030450355261564255, 0.0010525588877499104, 0.003112898673862219, 0.007238247897475958, 0.009245934896171093, 0.0015897175762802362, 0.00031523313373327255], [0.007323973346501589, 0.004209441598504782, 0.0030876509845256805, 0.0154345678165555, 0.023224053904414177, 0.0007701454451307654, 0.008718673139810562, 0.00019485618395265192], [0.015555096790194511, 0.003240046324208379, 0.002364320680499077, 0.009810944087803364, 0.009992782957851887, 0.0017093762289732695, 0.0024366870056837797, 4.321666347095743e-05], [0.009461781941354275, 0.0010100621730089188, 0.0009106516372412443, 0.013249075971543789, 0.01028874795883894, 0.00420496566221118, 0.0005801247316412628, 5.738190156989731e-05], [0.01956940069794655, 0.0040082307532429695, 0.009477389045059681, 0.018582522869110107, 0.05924008786678314, 0.012405281886458397, 0.0034569555427879095, 0.000148552397149615], [0.02425185963511467, 0.01198923122137785, 0.011240901425480843, 0.0031097654718905687, 0.0028721927665174007, 0.01974177360534668, 0.004250083584338427, 0.0008503730059601367], [0.04962540045380592, 0.01674911007285118, 0.15991328656673431, 0.04218771681189537, 0.05088194087147713, 0.06612319499254227, 0.030405566096305847, 0.004429609049111605]]], [[[0.012828328646719456, 0.006657484918832779, 0.0055929021909832954, 0.007443425711244345, 0.003951537888497114, 0.0024434442166239023, 0.0033005631994456053, 0.09653487801551819], [0.006758406292647123, 0.0011488659074530005, 0.0007718694978393614, 0.001132420264184475, 0.0007442851783707738, 0.00030478578992187977, 0.0005385232507251203, 0.1021210327744484], [0.006289962213486433, 0.0059830788522958755, 0.004073913209140301, 0.002104290062561631, 0.0010259129339829087, 0.0005240275640971959, 0.0002769042912404984, 0.003086149226874113], [0.14787907898426056, 0.02151949517428875, 0.0031485676299780607, 0.0046502891927957535, 0.008991790004074574, 0.007363536395132542, 0.002457389375194907, 0.004310287069529295], [0.0477716326713562, 0.012031198479235172, 0.007923559285700321, 0.014606311917304993, 0.0023776490706950426, 0.002137018134817481, 0.0008437778451479971, 0.0022160594817250967], [0.020975718274712563, 0.014098751358687878, 0.006800937000662088, 0.00822970550507307, 0.0018139125313609838, 0.0017884612316265702, 0.001977817388251424, 0.0038180428091436625], [0.09786100685596466, 0.010012742131948471, 0.01042100414633751, 0.020670607686042786, 0.005555460229516029, 0.005415540188550949, 0.0021889323834329844, 0.01299986056983471], [0.07395793497562408, 0.018989522010087967, 0.01504137646406889, 0.02558129094541073, 0.0068090385757386684, 0.004267056472599506, 0.013145030476152897, 0.04050413891673088], [0.010830081067979336, 0.0018767962465062737, 0.001406803959980607, 0.001417699153535068, 0.0010427485685795546, 0.0002791360893752426, 0.00020951115584466606, 0.0007252647774294019]], [[0.003660280955955386, 0.0010702796280384064, 0.00267069973051548, 0.0035881618969142437, 0.005693497601896524, 0.0035346068907529116, 0.0018381420522928238, 0.029535597190260887], [0.00036444494617171586, 3.25585606333334e-05, 2.79550895356806e-05, 2.9101092877681367e-05, 3.9847553125582635e-05, 5.077746027382091e-05, 3.528599108904018e-06, 3.730615571839735e-05], [0.0016282694414258003, 0.00010966626723529771, 3.3055210224119946e-05, 8.349178096977994e-05, 1.1528873073984869e-05, 5.186936687096022e-05, 3.2471805752720684e-05, 0.0001368197990814224], [0.002448765793815255, 0.00015015737153589725, 0.001129818963818252, 0.00010489134001545608, 7.976889901328832e-05, 0.00013148282596375793, 3.22655905620195e-05, 0.0005127229378558695], [0.000315505254548043, 1.8634178559295833e-05, 0.004917223937809467, 0.00012365241127554327, 4.237943721818738e-05, 0.00017242750618606806, 0.00014038177323527634, 0.0023138895630836487], [7.857527816668153e-05, 6.276907242863672e-06, 6.2852877817931585e-06, 0.00010676040983526036, 5.278475146042183e-05, 3.7783367588417605e-05, 9.50717439991422e-05, 0.001634836895391345], [2.7234320441493765e-05, 8.475791219098028e-06, 0.00015581303159706295, 0.00015729408187326044, 0.0011690135579556227, 5.669281381415203e-05, 0.00016572343884035945, 0.004159883130341768], [0.0023305239155888557, 0.0003047142818104476, 0.0001762459723977372, 0.0015969412634149194, 0.004433896392583847, 0.001325238379649818, 0.0010602757101878524, 0.009006074629724026], [0.0009648748091422021, 1.688771226326935e-05, 3.3469716527179116e-06, 1.0593680599413346e-05, 2.3963213607203215e-05, 1.704150599834975e-05, 2.8868830668216106e-06, 7.236194505821913e-05]], [[1.35425289045088e-05, 1.1349892474754597e-06, 2.4876499082893133e-05, 5.181487267691409e-06, 4.688846820499748e-05, 1.3019774087297264e-05, 3.3104165595432278e-06, 3.225059845135547e-05], [4.8199296116824275e-12, 7.507496957003673e-14, 1.364648682684183e-13, 1.21502970445303e-12, 9.09517686858985e-12, 4.394645758409865e-11, 8.093931747705715e-14, 0.0065079620108008385], [1.3559458977852046e-07, 7.147400726825737e-11, 3.397338562815405e-13, 6.513183191430216e-15, 5.192420492765228e-17, 3.594293265796189e-12, 3.731144896084587e-14, 3.875924026175426e-10], [1.475635585945767e-12, 4.228627725755274e-10, 1.2593409821903823e-11, 5.000276722625513e-14, 1.238122140924359e-15, 6.925083878735194e-14, 9.1514862636706e-15, 2.93911339710462e-10], [1.0979859599649644e-12, 1.7454149375952877e-15, 3.145248950175983e-09, 1.821642100672486e-14, 1.6304959769494753e-12, 1.5849924030994804e-15, 5.612808259619281e-14, 3.4754887856536243e-09], [2.127676949459103e-17, 5.345292893206566e-15, 5.917247486268706e-13, 2.375515062436051e-10, 5.136434055863504e-10, 2.9389792682854576e-11, 8.277491647841473e-13, 4.442789759195875e-06], [2.3540642062779234e-17, 7.126719301338613e-25, 2.448989567402712e-16, 1.5626280863140067e-16, 1.6481727094230791e-10, 7.419276463843888e-16, 2.4820565094362135e-17, 5.739518544001189e-16], [3.804324392265917e-15, 6.027423586935047e-17, 1.3984100368862222e-18, 1.7570112031961571e-12, 2.003625130392317e-12, 2.1574479702746174e-10, 7.453508771011579e-15, 4.912495323722288e-12], [3.527200533426367e-05, 9.416418952511754e-17, 4.360459967411726e-15, 1.809690391671345e-16, 1.2652847519722954e-12, 1.009537180414466e-12, 1.8396963368926683e-13, 5.700012927341248e-15]], [[0.013301149010658264, 0.0077605461701750755, 0.013062524609267712, 0.012182185426354408, 0.021070564165711403, 0.007635727524757385, 0.010611308738589287, 0.04023851454257965], [0.00020162669534329325, 0.0012812917120754719, 0.0029853179585188627, 0.0005285842344164848, 0.00023236988636199385, 0.0008858073852024972, 0.00021149087115190923, 0.0017296596197411418], [3.9932550862431526e-05, 3.187872425769456e-05, 7.340813317568973e-05, 7.717863627476618e-05, 2.593474528111983e-05, 0.002406905870884657, 2.8805574402213097e-05, 0.003658830188214779], [0.0007836133008822799, 0.0019296242389827967, 0.0032756892032921314, 0.002491659950464964, 0.0004455614252947271, 0.00024836932425387204, 0.0004241968272253871, 0.015284932218492031], [0.0002616133715491742, 4.450437336345203e-05, 0.0017202859744429588, 0.0003087419318035245, 0.00047019548946991563, 0.00026256879209540784, 0.0014795943861827254, 0.006532443221658468], [0.00012364305439405143, 0.00030478736152872443, 8.412752504227683e-05, 0.00044975971104577184, 0.00020423531532287598, 0.0006169237312860787, 0.0003424381138756871, 0.028390269726514816], [9.979544847737998e-05, 1.600839095772244e-05, 3.708043368533254e-05, 1.3899812074669171e-06, 1.0249133083561901e-05, 1.7678674339549616e-05, 1.8422400898998603e-05, 0.00034701148979365826], [0.029326019808650017, 0.006909247953444719, 0.0010558917419984937, 0.001110812765546143, 0.0002692130801733583, 0.0013846646761521697, 0.0005927095771767199, 0.017452197149395943], [0.00603360403329134, 0.002171572297811508, 0.0023209508508443832, 0.00017480627866461873, 3.198076956323348e-05, 1.4696759535581805e-05, 1.0519379429752007e-05, 0.0006798626272939146]], [[5.1056675147265196e-05, 5.5865521062514745e-06, 4.5394292101264e-05, 5.57652092538774e-05, 0.00024598665186204016, 0.00025159225333482027, 6.50939327897504e-05, 0.0059081739746034145], [6.281051412315719e-08, 3.7893823900958523e-07, 6.439719868467364e-07, 2.0168966496925123e-09, 1.6085531795440033e-09, 1.2656582726311427e-10, 3.04882030732756e-09, 7.335481910786257e-08], [3.695548311810626e-10, 3.671797088600215e-08, 6.804237273172475e-06, 7.631212611158844e-06, 3.785282842727611e-08, 1.2182895581247521e-08, 4.082504299895984e-12, 5.236968718236312e-06], [3.958717322726695e-15, 1.1113107829807678e-11, 8.269280016293123e-08, 1.0931212273135316e-05, 1.5374325812445022e-05, 1.5234522976470544e-08, 7.316957803538138e-12, 1.6359697596612932e-08], [1.2823685798142581e-14, 1.2882969117960207e-17, 4.103716498560228e-12, 1.4342118603849485e-09, 9.564984111420927e-07, 1.5141912168559202e-09, 1.2919617632667357e-12, 1.3474682480918432e-10], [1.27425210682576e-13, 6.690619229704573e-15, 5.625537026058322e-16, 6.16997728949964e-12, 2.721539105188242e-10, 1.069576649470605e-09, 7.119462137883392e-12, 2.1790073911898133e-10], [6.681837930955226e-06, 8.784787066079373e-15, 7.419378425434914e-15, 5.240268600450147e-14, 5.104410227829703e-10, 2.7146327408189563e-09, 1.6195658147921677e-09, 1.612212030543958e-09], [0.0035647419281303883, 1.7849451978690922e-05, 3.0845964671399884e-11, 6.780086908575456e-11, 2.4968964396077098e-11, 7.69648238474474e-08, 4.4828155409959436e-08, 1.0285099278917187e-06], [0.07340732961893082, 6.836831971668289e-07, 4.149583219259512e-06, 1.4148986886633463e-12, 7.536693491516644e-12, 4.740169194661359e-12, 1.550774092473617e-11, 3.890842492637603e-07]], [[0.0032842769287526608, 0.004253109451383352, 0.006838890723884106, 0.002599535509943962, 0.011256331577897072, 0.008555570617318153, 0.002235301537439227, 0.0029058922082185745], [0.04705985635519028, 0.043424081057310104, 0.0070302775129675865, 0.010759469121694565, 0.009716746397316456, 0.0157957524061203, 0.008702083490788937, 0.011095934547483921], [0.006005365401506424, 0.002833570120856166, 0.021683407947421074, 0.007548775989562273, 0.04268113523721695, 0.018044063821434975, 0.006976840551942587, 0.018545404076576233], [0.012592713348567486, 0.0042679328471422195, 0.0068765124306082726, 0.005832963157445192, 0.01444137655198574, 0.01589852198958397, 0.004487735219299793, 0.007031257729977369], [0.025903776288032532, 0.0033701432403177023, 0.0076616848818957806, 0.010998652316629887, 0.012767758220434189, 0.02170509472489357, 0.0039957123808562756, 0.004450083244591951], [0.0033742880914360285, 0.0042791469022631645, 0.004489787854254246, 0.004475981462746859, 0.0124308867380023, 0.018316278234124184, 0.003949243109673262, 0.0061368742026388645], [0.01318723801523447, 0.0025726647581905127, 0.0038032219745218754, 0.0030547098722308874, 0.008291657082736492, 0.008166318759322166, 0.0016105305403470993, 0.0033563056495040655], [0.02289278246462345, 0.019575482234358788, 0.030194755643606186, 0.012327072210609913, 0.025540387257933617, 0.027823053300380707, 0.018777035176753998, 0.03125588595867157], [0.0028259160462766886, 0.002181886462494731, 0.0034745356533676386, 0.002745936391875148, 0.004514575935900211, 0.004851344507187605, 0.001148574985563755, 0.001174572971649468]], [[0.008219636976718903, 0.023518644273281097, 0.04498233273625374, 0.010571406222879887, 0.016603585332632065, 0.026691682636737823, 0.050330497324466705, 0.13499043881893158], [0.008587893098592758, 0.033243097364902496, 0.016469962894916534, 0.005892107263207436, 0.008873704820871353, 0.014095144346356392, 0.02834934927523136, 0.03559156134724617], [0.007536351680755615, 0.01829458400607109, 0.04470610246062279, 0.017729828134179115, 0.02007473260164261, 0.02074720710515976, 0.017658770084381104, 0.04548421874642372], [0.006111237220466137, 0.015658603981137276, 0.01747303269803524, 0.01916801743209362, 0.023795347660779953, 0.022851433604955673, 0.0030534700490534306, 0.02804175205528736], [0.002985910512506962, 0.003830861998721957, 0.005278422962874174, 0.006301358807832003, 0.0023673754185438156, 0.007373325526714325, 0.0015319056110456586, 0.013637778349220753], [0.01357713621109724, 0.00540901068598032, 0.015569718554615974, 0.005956452339887619, 0.0009468344505876303, 0.0038878561463207006, 0.015587719157338142, 0.01433385070413351], [0.002250721212476492, 0.00232191220857203, 0.008067918010056019, 0.000833215017337352, 0.0005995264509692788, 0.004286202136427164, 0.0019492965657263994, 0.01738661341369152], [0.0023080070968717337, 0.0048829419538378716, 0.007877598516643047, 0.0034686748404055834, 0.0005604965263046324, 0.003596033900976181, 0.003210047259926796, 0.014957590959966183], [0.0006172613357193768, 0.0017056178767234087, 0.007440407760441303, 0.0018978295847773552, 0.0005519973929040134, 0.005243014544248581, 0.0032876520417630672, 0.01003282330930233]], [[0.001914686756208539, 0.0032124517019838095, 0.0017763579962775111, 0.000871374795679003, 0.002051367424428463, 0.0025103408843278885, 0.0015429703053086996, 0.007353329565376043], [0.01435747742652893, 0.05421922728419304, 0.02296730875968933, 0.02153152972459793, 0.0068146781995892525, 0.010145852342247963, 0.009537152014672756, 0.026327045634388924], [0.0010692670475691557, 0.008543822914361954, 0.03143540397286415, 0.005866530351340771, 0.008571469224989414, 0.020987262949347496, 0.007115433923900127, 0.015125509351491928], [0.0385059155523777, 0.19105876982212067, 0.02594279870390892, 0.006845252588391304, 0.007760895416140556, 0.007776272017508745, 0.1252707540988922, 0.04990566149353981], [0.008990831673145294, 0.04920628294348717, 0.007357138209044933, 0.0024497273843735456, 0.0008408415596932173, 0.002509200247004628, 0.0045184604823589325, 0.04349511116743088], [0.0032091380562633276, 0.0656164288520813, 0.00411161407828331, 0.003682821523398161, 0.0010671907803043723, 0.0027477291878312826, 0.0019078386249020696, 0.03750643879175186], [0.003377969842404127, 0.05162574723362923, 0.022239336743950844, 0.003773950506001711, 0.0024406807497143745, 0.005954192019999027, 0.004451571963727474, 0.07672533392906189], [0.04301990941166878, 0.036015741527080536, 0.024799132719635963, 0.05605807527899742, 0.01838778145611286, 0.03537435829639435, 0.019140124320983887, 0.032650768756866455], [0.0035393075086176395, 0.00794365257024765, 0.0013714618980884552, 0.0011070661712437868, 0.001627924619242549, 0.00333821726962924, 0.0017490566242486238, 0.00665521202608943]], [[0.0026605057064443827, 0.009000306017696857, 0.01042757648974657, 0.005360001232475042, 0.010293062776327133, 0.0031872615218162537, 0.008197681978344917, 0.02246376872062683], [0.000747190264519304, 0.002796000335365534, 0.002933111973106861, 0.0009169327677227557, 0.0008911656332202256, 0.00020687858341261744, 0.004317204933613539, 0.002263969974592328], [0.005582462530583143, 0.002373775467276573, 0.0020448798313736916, 0.0013284224551171064, 0.01117971446365118, 0.014428600668907166, 0.001823707134462893, 0.021724402904510498], [0.0009828616166487336, 0.007196398451924324, 0.019254416227340698, 0.010812829248607159, 0.005125744733959436, 0.004715250805020332, 0.0012710698647424579, 0.0069603631272912025], [0.0006289963494054973, 0.0005470628966577351, 0.0010945165995508432, 0.001985864946618676, 0.001582885510288179, 0.0023982792627066374, 0.011197861284017563, 0.0026686417404562235], [0.001731404336169362, 0.0013607572764158249, 0.0005741699715144932, 0.0009447954944334924, 0.002901238389313221, 0.0007564186817035079, 0.00022216420620679855, 0.002063155872747302], [0.0016027692472562194, 0.00048173958202823997, 0.00042119232239201665, 0.0005566726322285831, 0.0034372766967862844, 0.0009736423962749541, 0.0003709353331942111, 0.011580321937799454], [0.0051125953905284405, 0.0073864213190972805, 0.009928753599524498, 0.015728585422039032, 0.007736681029200554, 0.002530696103349328, 0.004698095843195915, 0.005200940649956465], [0.00035967526491731405, 0.001262657344341278, 0.0012706874404102564, 0.0008979036938399076, 0.0009642917430028319, 0.00011343483492964879, 0.00038954554474912584, 0.0024687419645488262]], [[0.0477592758834362, 0.024808010086417198, 0.029793299734592438, 0.01637670025229454, 0.013817003928124905, 0.0061633531004190445, 0.012795994058251381, 0.09546954929828644], [0.01997598260641098, 0.019254615530371666, 0.02283354476094246, 0.015857456251978874, 0.02877051569521427, 0.024520542472600937, 0.029684290289878845, 0.19102467596530914], [0.005172321107238531, 0.05202239379286766, 0.0599580779671669, 0.0017671817913651466, 0.01614348217844963, 0.014242874458432198, 0.018999941647052765, 0.14090104401111603], [0.013882714323699474, 0.03836634010076523, 0.032069891691207886, 0.004672692157328129, 0.010478120297193527, 0.0032568827737122774, 0.022733552381396294, 0.19115287065505981], [0.00625128298997879, 0.026458971202373505, 0.023577969521284103, 0.008739727549254894, 0.01095854677259922, 0.020010443404316902, 0.011110113933682442, 0.19696158170700073], [0.004436826799064875, 0.03852701932191849, 0.08026958256959915, 0.005283876322209835, 0.03645509108901024, 0.040931928902864456, 0.01553935743868351, 0.20703327655792236], [0.0003048207436222583, 0.006129890214651823, 0.003425778355449438, 0.001119274995289743, 0.004436238668859005, 0.0029371757991611958, 0.00416212622076273, 0.17513884603977203], [0.03225841745734215, 0.013813583180308342, 0.02071741595864296, 0.01739857718348503, 0.024038037285208702, 0.04033084586262703, 0.029226355254650116, 0.15415368974208832], [0.052099354565143585, 0.025296296924352646, 0.040977224707603455, 0.03595142066478729, 0.044560398906469345, 0.024285128340125084, 0.019443849101662636, 0.10577233135700226]], [[0.018601419404149055, 0.01195479929447174, 0.017571862787008286, 0.03227439522743225, 0.014315432868897915, 0.009152935817837715, 0.019747136160731316, 0.44194403290748596], [0.06306277960538864, 0.009938867762684822, 0.027706030756235123, 0.014983905479311943, 0.010762662626802921, 0.00418244069442153, 0.005504508037120104, 0.052140891551971436], [0.04223991930484772, 0.008862549439072609, 0.034561045467853546, 0.04788665845990181, 0.03858169913291931, 0.030462663620710373, 0.004667768720537424, 0.013723610900342464], [0.01799362152814865, 0.03737979754805565, 0.02985372766852379, 0.017130425199866295, 0.02200266160070896, 0.01299415621906519, 0.006473066285252571, 0.02709820866584778], [0.010565543547272682, 0.00266649154946208, 0.006114508491009474, 0.007601200602948666, 0.007083969656378031, 0.0029878446366637945, 0.002527581760659814, 0.02108660526573658], [0.03231349214911461, 0.004474566783756018, 0.00917704775929451, 0.014867352321743965, 0.022781047970056534, 0.007837261073291302, 0.004463817458599806, 0.025567548349499702], [0.003178230719640851, 0.0034053113777190447, 0.0029300337191671133, 0.004756912123411894, 0.007815472781658173, 0.008469609543681145, 0.0030167042277753353, 0.014150852337479591], [0.07136626541614532, 0.03025778755545616, 0.0460725836455822, 0.024612154811620712, 0.01792958751320839, 0.013087261468172073, 0.007668165490031242, 0.03848179802298546], [0.030065657570958138, 0.0035236235707998276, 0.007906991988420486, 0.006021547131240368, 0.007876724936068058, 0.003299053991213441, 0.005652575753629208, 0.12830035388469696]], [[0.07249888777732849, 0.04246753454208374, 0.058487556874752045, 0.056250590831041336, 0.05078359320759773, 0.049788471311330795, 0.0382404625415802, 0.05821827054023743], [0.03390298783779144, 0.01596452109515667, 0.0435335636138916, 0.01744716987013817, 0.021830270066857338, 0.027046184986829758, 0.0157967247068882, 0.05616976320743561], [0.010216470807790756, 0.006880542263388634, 0.015377227216959, 0.02915443666279316, 0.02698325365781784, 0.03277679905295372, 0.02056245319545269, 0.08046623319387436], [0.09598302841186523, 0.010058676823973656, 0.04970911145210266, 0.03134823217988014, 0.03427494689822197, 0.053327612578868866, 0.03709784522652626, 0.0277975145727396], [0.04177732393145561, 0.008323014713823795, 0.08298651874065399, 0.008997861295938492, 0.017226438969373703, 0.009730478748679161, 0.0076748076826334, 0.04565189406275749], [0.06629233807325363, 0.021415511146187782, 0.041560862213373184, 0.0216192826628685, 0.04996025562286377, 0.0258440300822258, 0.011483612470328808, 0.0548895038664341], [0.03227950260043144, 0.0084602115675807, 0.0704965889453888, 0.016363631933927536, 0.008549617603421211, 0.013112160377204418, 0.0107195395976305, 0.060239389538764954], [0.028466304764151573, 0.013219913467764854, 0.03698974847793579, 0.026138199493288994, 0.053603410720825195, 0.021687759086489677, 0.0411180704832077, 0.04181830585002899], [0.05870107188820839, 0.028977826237678528, 0.037805333733558655, 0.054174941033124924, 0.033762793987989426, 0.02283877320587635, 0.026870692148804665, 0.028424501419067383]]], [[[0.022302372381091118, 0.043861303478479385, 0.011156735941767693, 0.0245597492903471, 0.004603949375450611, 0.0038147231098264456, 0.02780424803495407, 0.05088333785533905], [0.013612714596092701, 0.04531298950314522, 0.013159109279513359, 0.01894041895866394, 0.0022922256030142307, 0.0018899071728810668, 0.005071460269391537, 0.015281840227544308], [0.011107896454632282, 0.006723277736455202, 0.0013152105966582894, 0.018898582085967064, 0.003657741704955697, 0.013297272846102715, 0.0014744699001312256, 0.05977644398808479], [0.005837828852236271, 0.026597993448376656, 0.03644804656505585, 0.00785502977669239, 0.0005335125606507063, 0.00025057175662368536, 0.004023133777081966, 0.002125779166817665], [0.012875119224190712, 0.008049319498240948, 0.015101907774806023, 0.012054195627570152, 0.0011627222411334515, 0.000563008536119014, 0.008045155555009842, 0.002797310473397374], [0.0143564622849226, 0.007434335071593523, 0.009912626817822456, 0.011083364486694336, 0.003885942278429866, 0.00208507152274251, 0.008306787349283695, 0.005128646735101938], [0.010793130844831467, 0.007235290016978979, 0.011028170585632324, 0.0046798549592494965, 0.0009857806144282222, 0.00011326972162351012, 0.02063368633389473, 0.00091942009748891], [0.025131117552518845, 0.024896914139389992, 0.014240911230444908, 0.00902417954057455, 0.003260604804381728, 0.0013814592966809869, 0.015226085670292377, 0.006830764468759298], [0.010960976593196392, 0.004601067863404751, 0.004442916251718998, 0.005712913349270821, 0.0007291765650734305, 0.0007241361308842897, 0.0036139606963843107, 0.0039633456617593765]], [[0.019164158031344414, 0.034623999148607254, 0.040964607149362564, 0.010998984798789024, 0.07520788908004761, 0.03389676660299301, 0.08578357100486755, 0.2030480057001114], [0.005514114163815975, 0.01869751326739788, 0.0015216560568660498, 0.0007400493486784399, 0.0031062287744134665, 0.0019343933090567589, 0.011887768283486366, 0.04155036062002182], [0.004172870423644781, 0.0018810393521562219, 0.000216798041947186, 0.00030662701465189457, 0.0030485582537949085, 0.0008845346746966243, 0.004338380414992571, 0.0985165685415268], [0.014224136248230934, 0.024202097207307816, 0.0031307926401495934, 0.0019311335636302829, 0.03346136584877968, 0.001373190782032907, 0.03842684626579285, 0.027141958475112915], [0.006522782146930695, 0.0011998129775747657, 0.0017976046074181795, 0.02926289290189743, 0.0070022395811975, 0.001948303310200572, 0.0015431599458679557, 0.04491274058818817], [0.0011152173392474651, 0.00046246341662481427, 0.0007048386614769697, 0.00024133393890224397, 0.004020757973194122, 0.0014535851078107953, 0.003951926715672016, 0.035147469490766525], [0.0022656195797026157, 0.006693446077406406, 0.001294752350077033, 0.002201332012191415, 0.0014744959771633148, 0.0006546106887981296, 0.0012760474346578121, 0.03316907584667206], [0.0327131561934948, 0.04305531829595566, 0.01102403923869133, 0.013256549835205078, 0.024074526503682137, 0.00987568125128746, 0.031168457120656967, 0.05977753922343254], [0.003188671311363578, 0.004592030309140682, 0.001247798791155219, 0.0004021433705929667, 0.008964680135250092, 0.0014624991454184055, 0.012995840050280094, 0.043634504079818726]], [[0.3097091019153595, 0.0364307276904583, 0.02144465781748295, 0.03611835464835167, 0.04168879985809326, 0.018086425960063934, 0.03709793463349342, 0.06358738988637924], [0.0170094296336174, 0.03624677658081055, 0.019100148230791092, 0.01108310092240572, 0.026370098814368248, 0.022499585524201393, 0.004521022085100412, 0.008310568518936634], [0.0007728811469860375, 0.01601817086338997, 0.010109257884323597, 0.001657823333516717, 0.0016253077192232013, 0.009594626724720001, 0.0018021098803728819, 0.0010666298912838101], [0.018290143460035324, 0.07670951634645462, 0.027966663241386414, 0.01960626430809498, 0.028858521953225136, 0.035123687237501144, 0.00953949149698019, 0.002219011075794697], [0.0007239445112645626, 0.0043886261992156506, 0.008659426122903824, 0.000407509010983631, 0.0028253772761672735, 0.008663775399327278, 0.0006861094734631479, 0.0009364447323605418], [0.0007010713452473283, 0.010957865975797176, 0.006696528289467096, 0.001869760686531663, 0.0015118465526029468, 0.01242093462496996, 0.0005763688823208213, 0.0015355368377640843], [0.0008978701662272215, 0.009406577795743942, 0.03075648471713066, 0.001903757220134139, 0.005021379794925451, 0.01724247634410858, 0.0021622073836624622, 0.010176380164921284], [0.017461303621530533, 0.019272973760962486, 0.0266261026263237, 0.015617902390658855, 0.022518768906593323, 0.0036819051019847393, 0.017316684126853943, 0.03865256905555725], [0.004238551948219538, 0.00707376841455698, 0.015346447005867958, 0.003231395734474063, 0.00975171197205782, 0.0037738943938165903, 0.0019818206783384085, 0.0012094136327505112]], [[0.005640462040901184, 0.0043085734359920025, 0.004060355946421623, 0.008057504892349243, 0.009216810576617718, 0.006843645591288805, 0.013159217312932014, 0.10907569527626038], [0.0009886649204418063, 0.0014647089410573244, 0.0021933538373559713, 0.0005162816378287971, 0.00037877087015658617, 0.00017860450316220522, 0.0008612748351879418, 0.0009478495921939611], [0.00015931884991005063, 0.00016934095765464008, 0.00022205487766768783, 0.0016439077444374561, 0.001120731234550476, 0.0002189180813729763, 0.0011454833438619971, 0.014147806912660599], [0.00020244077313691378, 8.737038297113031e-05, 0.0003801225684583187, 0.003071874612942338, 0.017686055973172188, 0.0035992234479635954, 0.0017139840638265014, 0.013715008273720741], [2.2825843188911676e-05, 1.4719857972522732e-05, 5.231525847193552e-06, 0.0014829125721007586, 0.0001251043431693688, 0.00023160403361544013, 0.00025381791056133807, 0.0016839680029079318], [0.0009941611206158996, 0.00025643015396781266, 3.041134732484352e-05, 0.0021528557408601046, 0.0004836696607526392, 0.001114178798161447, 0.0004480742500163615, 0.0053592342883348465], [0.0028625503182411194, 0.0006282955291680992, 1.543108191981446e-05, 0.00041611684719100595, 4.507028279476799e-05, 0.00018130823445972055, 0.00011334386363159865, 0.003554614493623376], [0.11453909426927567, 0.031752388924360275, 0.0026793505530804396, 0.0011193726677447557, 0.0008053377969190478, 0.001154088880866766, 0.0009438367560505867, 0.008699722588062286], [0.005200414452701807, 0.0019855231512337923, 0.0007284999010153115, 0.00019032112322747707, 5.707058880943805e-05, 2.724666046560742e-05, 8.845505362842232e-05, 0.0009204759262502193]], [[0.0014763184590265155, 0.0013993160100653768, 0.0013031117850914598, 0.0026500681415200233, 0.002508195349946618, 0.0011464474955573678, 0.0027528086211532354, 0.018266746774315834], [0.0037771102506667376, 0.0004201025585643947, 1.952280945261009e-05, 3.7738984246971086e-05, 1.6232061170740053e-05, 2.1951214876025915e-05, 0.00020372123981360346, 0.00039198403828777373], [0.009586002677679062, 0.0005006412975490093, 0.00014171192015055567, 0.00028805973124690354, 6.761758413631469e-05, 0.00013069888518657535, 0.000522487738635391, 0.0038903942331671715], [0.0011821899097412825, 0.001655652653425932, 0.00015697117487434298, 0.0012310550082474947, 0.0004780261078849435, 0.0008851875318214297, 0.0004430878907442093, 0.005100049078464508], [7.51363841118291e-05, 5.014517228119075e-05, 0.0004029714036732912, 0.00018296969938091934, 0.0011074799112975597, 0.00011250215902691707, 0.00046336802188307047, 0.005876149982213974], [2.5512426873319782e-05, 1.954131221282296e-05, 6.062111788196489e-05, 0.0001494393654866144, 0.00040767790051177144, 6.688174471491948e-05, 0.0002183979086112231, 0.014116551727056503], [2.3687292923568748e-05, 9.652789231040515e-06, 0.00014789635315537453, 8.100362174445763e-05, 0.0005806274130009115, 7.68949612393044e-05, 0.00022560838260687888, 0.005111573729664087], [0.00020314754510764033, 0.00010977837519021705, 4.61096569779329e-05, 0.0004139691009186208, 0.0008369717979803681, 0.00028542723157443106, 0.0007192555349320173, 0.0045946016907691956], [0.00017296920123044401, 1.1985094715782907e-05, 2.2545780211657984e-06, 9.408482583239675e-06, 9.158355169347487e-06, 3.9623714656045195e-06, 2.531175960029941e-05, 0.0007122426759451628]], [[0.05664479732513428, 0.026932552456855774, 0.05179768428206444, 0.027190882712602615, 0.06470070034265518, 0.07086866348981857, 0.11984605342149734, 0.10379039496183395], [0.01266869343817234, 0.011085844598710537, 0.027623886242508888, 0.03671414777636528, 0.029543912038207054, 0.023825420066714287, 0.028190666809678078, 0.06399066746234894], [0.005007362458854914, 0.005136431660503149, 0.0035143813583999872, 0.004742327146232128, 0.04365547373890877, 0.01293324213474989, 0.004330870695412159, 0.17652028799057007], [0.042855385690927505, 0.01931384764611721, 0.013597359880805016, 0.015839267522096634, 0.05947119742631912, 0.009244520217180252, 0.021759919822216034, 0.0677187591791153], [0.031178399920463562, 0.0366213321685791, 0.00939774326980114, 0.013918706215918064, 0.06000952422618866, 0.03888501226902008, 0.015090123750269413, 0.06581655889749527], [0.026558367535471916, 0.005739764776080847, 0.013840556144714355, 0.022642487660050392, 0.12898200750350952, 0.04955184459686279, 0.00797287654131651, 0.1304604709148407], [0.05634895712137222, 0.03208122029900551, 0.0504123829305172, 0.0416836217045784, 0.0623234398663044, 0.03486863896250725, 0.023609913885593414, 0.05875788629055023], [0.017989609390497208, 0.02545297145843506, 0.02230505831539631, 0.022549761459231377, 0.032941050827503204, 0.015017562545835972, 0.034142062067985535, 0.04399494454264641], [0.029269542545080185, 0.026736853644251823, 0.04613800719380379, 0.03177730739116669, 0.04003340005874634, 0.05294112116098404, 0.03267202526330948, 0.06553708016872406]], [[0.0010132133029401302, 0.0018573992419987917, 0.0021541041787713766, 0.0021136924624443054, 0.007822198793292046, 0.0014996201498433948, 0.008735890500247478, 0.030997510999441147], [4.833690336880636e-09, 8.114652416679746e-08, 3.9294722142813043e-08, 7.899159548685475e-09, 3.377479629307345e-09, 5.181800301345962e-12, 4.137807457782472e-11, 1.1337122352017559e-08], [1.2886797376009552e-14, 7.766647741602739e-11, 2.4854626801129598e-08, 1.0230869484928462e-08, 5.4494329049248336e-09, 5.6081311469724504e-12, 1.7548589534635561e-12, 8.678625107449989e-08], [8.539821432791466e-19, 2.2222681865264465e-14, 1.9242945778485954e-11, 2.643016472347881e-08, 4.6661735808584126e-08, 3.351308217481447e-13, 4.0474795823947085e-13, 4.61706922694205e-10], [2.1867818424894936e-20, 2.5121741775112543e-20, 2.0662504774662457e-15, 6.958709303228616e-11, 1.9743777102121385e-07, 7.65698615623478e-12, 5.523978559188007e-14, 3.5566189750257937e-13], [2.253982350882471e-20, 3.780881693350748e-18, 8.838211587627427e-21, 7.180966391111851e-16, 1.1499171061158612e-14, 8.49888031045215e-13, 1.0084179314067548e-13, 1.2828998930888846e-12], [6.335293990529078e-15, 1.1928601007625873e-18, 6.8868317765386e-19, 5.350111557764377e-17, 9.068647796681845e-14, 3.39397319927201e-13, 8.036672022315727e-11, 1.1925148368785443e-10], [1.0836401997948997e-06, 8.793723083044824e-09, 2.01036849521068e-14, 8.753855116911541e-14, 4.725474839987337e-15, 2.1649178283400516e-10, 3.1397637267893685e-10, 1.7409753638730763e-07], [3.852992449537851e-05, 5.320953277987428e-07, 3.422514538442556e-08, 1.5867980540651416e-11, 2.715362101834984e-10, 7.599941726291193e-13, 4.6943437581603575e-08, 1.3796115126751829e-05]], [[0.03220519796013832, 0.017286520451307297, 0.020977260544896126, 0.018596161156892776, 0.005839972291141748, 0.007870838046073914, 0.004911614581942558, 0.035756729543209076], [0.004935264587402344, 0.0031958685722202063, 0.010602833703160286, 0.003001566743478179, 0.0025491933338344097, 0.00433856388553977, 0.0014863472897559404, 0.00038601586129516363], [0.0016666437732055783, 0.0005319021875038743, 0.003815141972154379, 0.0020704681519418955, 0.000967944273725152, 0.003187979105859995, 0.0005086196470074356, 0.0007750251097604632], [0.011753327213227749, 0.002259613713249564, 0.005855126306414604, 0.001898201066069305, 0.0008690456161275506, 0.00139363924972713, 0.00034822712768800557, 0.0006498877773992717], [0.011454530991613865, 0.0021471695508807898, 0.009114529006183147, 0.002691093599423766, 0.0015645851381123066, 0.003315793350338936, 0.00044704400352202356, 0.0011036875657737255], [0.01298792939633131, 0.004090048372745514, 0.006424514576792717, 0.004632594529539347, 0.0026550579350441694, 0.006023467984050512, 0.0009622133802622557, 0.0008641633321531117], [0.01777135580778122, 0.009227383881807327, 0.009185978211462498, 0.003163370070978999, 0.0014642621390521526, 0.0018090787343680859, 0.0009410274215042591, 0.0013262118445709348], [0.020088205114006996, 0.014628589153289795, 0.006271610502153635, 0.0045039597898721695, 0.0015506271738559008, 0.0010628878371790051, 0.0034001225139945745, 0.002208855701610446], [0.006691532675176859, 0.001426843460649252, 0.00310129695571959, 0.0020541688427329063, 0.0004347480717115104, 0.0006546744261868298, 0.0006432244554162025, 0.00968436524271965]], [[0.006038829684257507, 0.014062641188502312, 0.005369545891880989, 0.007208073511719704, 0.014250769279897213, 0.013415188528597355, 0.016677482053637505, 0.11209353059530258], [0.009027216583490372, 0.0709308311343193, 0.01932387799024582, 0.0035592385102063417, 0.012192214839160442, 0.02046065591275692, 0.006793126463890076, 0.14204955101013184], [0.005792947486042976, 0.03025529906153679, 0.012564677745103836, 0.0027609115932136774, 0.009033207781612873, 0.03158942982554436, 0.0019602493848651648, 0.18137414753437042], [0.003959733992815018, 0.02188599668443203, 0.0051724594086408615, 0.0031703878194093704, 0.01515312772244215, 0.010491645894944668, 0.0176838431507349, 0.1394050270318985], [0.01639496348798275, 0.0512174554169178, 0.013398749753832817, 0.0035529788583517075, 0.00910888146609068, 0.0059879012405872345, 0.016754763200879097, 0.17052622139453888], [0.0381644070148468, 0.012454668059945107, 0.023148326203227043, 0.0053474814631044865, 0.006028864532709122, 0.006741642020642757, 0.02624371461570263, 0.238315612077713], [0.01664751023054123, 0.011707759462296963, 0.005985583644360304, 0.008532466366887093, 0.013245580717921257, 0.0024772812612354755, 0.0345623753964901, 0.1353975534439087], [0.03180953115224838, 0.02256588079035282, 0.018395451828837395, 0.010827098973095417, 0.019151100888848305, 0.010898242704570293, 0.03597255423665047, 0.11615926027297974], [0.02380506694316864, 0.03607712313532829, 0.028966717422008514, 0.012602908536791801, 0.0405997633934021, 0.03566276282072067, 0.023394886404275894, 0.11943970620632172]], [[0.0021968164946883917, 0.002057985169813037, 0.0007947196718305349, 0.002507756231352687, 0.00151840690523386, 0.0021910627838224173, 0.0011357461335137486, 0.008624030277132988], [0.007864793762564659, 0.006434972397983074, 0.0027722869999706745, 0.003984807059168816, 0.002128488151356578, 0.0019014875870198011, 0.0064744604751467705, 0.006216733250766993], [0.012368574738502502, 0.0034732106141746044, 0.00234759203158319, 0.006303110159933567, 0.0037920058239251375, 0.004264255985617638, 0.0030035923700779676, 0.015843791887164116], [0.019116826355457306, 0.008781783282756805, 0.0007888870895840228, 0.002466844627633691, 0.002778966212645173, 0.0029416296165436506, 0.004267221782356501, 0.0038125175051391125], [0.03884619101881981, 0.007844607345759869, 0.001682354835793376, 0.0062625776045024395, 0.0018393936334177852, 0.003886400256305933, 0.0013151189778000116, 0.0039236280135810375], [0.0610201470553875, 0.017916876822710037, 0.008008237928152084, 0.01611694134771824, 0.004397506359964609, 0.007689605467021465, 0.002148750936612487, 0.0026276055723428726], [0.033265646547079086, 0.021807251498103142, 0.005573037546128035, 0.016317183151841164, 0.002520807785913348, 0.004758956376463175, 0.003464784473180771, 0.005279782693833113], [0.020905308425426483, 0.024684112519025803, 0.015228666365146637, 0.02734709344804287, 0.008885354734957218, 0.008785221725702286, 0.01299190055578947, 0.0304245725274086], [0.0007462466601282358, 0.0007108491845428944, 0.0004665984015446156, 0.0011221858439967036, 0.0004872485587839037, 0.0009618697222322226, 0.00016233728092629462, 0.0006858899141661823]], [[0.03240775316953659, 0.04215411841869354, 0.0317578949034214, 0.09039811044931412, 0.02919706143438816, 0.07500243186950684, 0.06916675716638565, 0.08192838728427887], [0.007606500294059515, 0.004138293210417032, 0.0018948618089780211, 0.01900690607726574, 0.002498459303751588, 0.005057576112449169, 0.0066720847971737385, 0.013834607787430286], [0.0034374678507447243, 0.001880038995295763, 0.003780041355639696, 0.005703059025108814, 0.006435824558138847, 0.0048405989073216915, 0.005694309249520302, 0.04583141952753067], [0.027165934443473816, 0.0037199168000370264, 0.0040178969502449036, 0.08545336872339249, 0.006317549850791693, 0.03306496515870094, 0.002056002151221037, 0.006320246960967779], [0.009289161302149296, 0.0017756182933226228, 0.00933381263166666, 0.03767690435051918, 0.006524651311337948, 0.037689078599214554, 0.011168084107339382, 0.009390389546751976], [0.023561041802167892, 0.002295850310474634, 0.006923544220626354, 0.049914032220840454, 0.010081931948661804, 0.062146540731191635, 0.012490381486713886, 0.02252999134361744], [0.006369700189679861, 0.002861456712707877, 0.012836974114179611, 0.03677951917052269, 0.020078064873814583, 0.012934664264321327, 0.0032085878774523735, 0.0032736302819103003], [0.0077368044294416904, 0.03836851567029953, 0.010419495403766632, 0.009051177650690079, 0.011220301501452923, 0.001824891776777804, 0.009759859181940556, 0.024173462763428688], [0.004689762368798256, 0.014173009432852268, 0.00405072420835495, 0.0035712451208382845, 0.004917531739920378, 0.001998207764700055, 0.0056523410603404045, 0.030402589589357376]], [[0.018017960712313652, 0.0027146367356181145, 0.00639007706195116, 0.0030325057450681925, 0.0018426241585984826, 0.003650534898042679, 0.015466910786926746, 0.030348103493452072], [0.007382468320429325, 0.0016343558672815561, 0.0013618385419249535, 0.0012899088906124234, 0.0003206930705346167, 0.0010767277562990785, 0.0010599680244922638, 0.019969919696450233], [0.0031423652544617653, 0.0018346847500652075, 0.0006665418623015285, 0.0002872981713153422, 0.00023165806487668306, 0.0016010282561182976, 0.001039514783769846, 0.025297556072473526], [0.016813602298498154, 0.01274928916245699, 0.0047269416972994804, 0.0009576157317496836, 0.00033305323449894786, 0.0006615793099626899, 0.014093714766204357, 0.02356833405792713], [0.009160098619759083, 0.0008684711065143347, 0.003681628266349435, 0.004689417779445648, 0.0008745684172026813, 0.0012711231829598546, 0.0012352277990430593, 0.021390443667769432], [0.024897560477256775, 0.0017804787494242191, 0.001103617250919342, 0.0053433929570019245, 0.002078966936096549, 0.0012750972528010607, 0.0021715799812227488, 0.019984012469649315], [0.010180255398154259, 0.0016431808471679688, 0.010159194469451904, 0.006031869910657406, 0.0005958513356745243, 0.0017177504487335682, 0.004697853699326515, 0.0128809604793787], [0.04021906480193138, 0.010503670200705528, 0.003980573732405901, 0.006058174651116133, 0.0021799185778945684, 0.006940903607755899, 0.016928203403949738, 0.029913997277617455], [0.026653597131371498, 0.002037797588855028, 0.003502677194774151, 0.000982927274890244, 0.0011341494973748922, 0.00118966493755579, 0.0248012263327837, 0.028501315042376518]]], [[[0.05158519744873047, 0.01424491498619318, 0.002449838677421212, 0.0007737547275610268, 0.005300894379615784, 0.0035220577847212553, 0.18150652945041656, 0.32468387484550476], [0.00542669091373682, 0.0006860120338387787, 0.00022843776969239116, 9.289468289352953e-05, 0.0003136755258310586, 0.0005599651485681534, 0.005443323403596878, 0.02392583154141903], [0.011224712245166302, 0.004090744070708752, 0.0018387379823252559, 0.004050412680953741, 0.005808195099234581, 0.00576509814709425, 0.01397284958511591, 0.009014918468892574], [0.019249949604272842, 0.005199807230383158, 0.0004899651976302266, 0.0027296992484480143, 0.0018834671936929226, 0.00445215031504631, 0.00792655535042286, 0.04618237540125847], [0.006114650052040815, 0.0008630385273136199, 0.0009219199419021606, 0.001853808993473649, 0.002416937379166484, 0.002234123181551695, 0.004057653248310089, 0.031959712505340576], [0.009255306795239449, 0.0028513886500149965, 0.0014766352251172066, 0.002761548850685358, 0.006424938794225454, 0.014643428847193718, 0.016654688864946365, 0.043155573308467865], [0.02762390486896038, 0.006497877184301615, 0.00043262660619802773, 0.0012848024489358068, 0.0010005588410422206, 0.003142428584396839, 0.003068478312343359, 0.07983730733394623], [0.019199004396796227, 0.010957010090351105, 0.008268793113529682, 0.006910491269081831, 0.005952821578830481, 0.015182022005319595, 0.014812256209552288, 0.08910740911960602], [0.003393480321392417, 0.0026131565682590008, 0.0015260158106684685, 0.00123747403267771, 0.0019421495962888002, 0.004238874185830355, 0.009388281963765621, 0.02550000511109829]], [[0.2077091932296753, 0.05816683918237686, 0.038307610899209976, 0.0837378203868866, 0.10971680283546448, 0.08714146912097931, 0.0647803470492363, 0.09570956230163574], [0.024452807381749153, 0.03851117193698883, 0.030895743519067764, 0.04019801691174507, 0.02991340309381485, 0.03225291520357132, 0.019992874935269356, 0.019657159224152565], [0.03293030336499214, 0.029222840443253517, 0.05593830719590187, 0.02558274380862713, 0.037739019840955734, 0.02928260713815689, 0.0731109157204628, 0.01587757281959057], [0.017944281920790672, 0.010511543601751328, 0.027916213497519493, 0.028221946209669113, 0.019278112798929214, 0.01726611517369747, 0.09487924724817276, 0.12114499509334564], [0.02435414306819439, 0.00538075203076005, 0.010141677223145962, 0.027629045769572258, 0.005349986720830202, 0.009835605509579182, 0.046852823346853256, 0.13619326055049896], [0.025690626353025436, 0.015467372722923756, 0.0621224045753479, 0.03957696259021759, 0.011829550378024578, 0.02686525508761406, 0.09962642192840576, 0.0373506173491478], [0.02018766663968563, 0.016067024320364, 0.02131885290145874, 0.059587642550468445, 0.01853979006409645, 0.021389342844486237, 0.06646954268217087, 0.02710116095840931], [0.02565612457692623, 0.0212326068431139, 0.030950915068387985, 0.022575564682483673, 0.011437599547207355, 0.010341361165046692, 0.03413999453186989, 0.026072870939970016], [0.009293747134506702, 0.01320483349263668, 0.019396182149648666, 0.007216122001409531, 0.012266108766198158, 0.01598326861858368, 0.030703043565154076, 0.16967728734016418]], [[0.029751181602478027, 0.08388756960630417, 0.01684390939772129, 0.010905494913458824, 0.008169524371623993, 0.019547272473573685, 0.039992909878492355, 0.15347738564014435], [0.012238367460668087, 0.02793825790286064, 0.018263230100274086, 0.006248244550079107, 0.0026568167377263308, 0.024396497756242752, 0.017701826989650726, 0.1969171166419983], [0.028185870498418808, 0.011232460848987103, 0.008648686110973358, 0.02792302519083023, 0.01824497990310192, 0.07378576695919037, 0.021478137001395226, 0.07700925320386887], [0.007812796160578728, 0.019281914457678795, 0.006965617649257183, 0.002313739387318492, 0.0015214583836495876, 0.015322021208703518, 0.004228692036122084, 0.28880825638771057], [0.002567756688222289, 0.005057985428720713, 0.0019221982220187783, 0.0001178562015411444, 0.0001304157340200618, 0.0007722618756815791, 0.0007931552827358246, 0.29586073756217957], [0.009877835400402546, 0.016316941007971764, 0.00472671864554286, 0.003640758339315653, 0.0012654875172302127, 0.011775690130889416, 0.009773808531463146, 0.2677927315235138], [0.00320964097045362, 0.00555385509505868, 0.0017245071940124035, 0.0003018413844984025, 0.0001602540141902864, 0.0019474123837426305, 0.0013394136913120747, 0.31733977794647217], [0.005480817519128323, 0.005988531745970249, 0.003865043167024851, 0.0008568412740714848, 0.001411333796568215, 0.006003897171467543, 0.00617101090028882, 0.22586509585380554], [0.003189969342201948, 0.010203894227743149, 0.005848280619829893, 0.001435308950021863, 0.0023856020998209715, 0.008146295323967934, 0.008177339099347591, 0.22874300181865692]], [[0.059194471687078476, 0.05338602513074875, 0.007604668382555246, 0.010456654243171215, 0.020206967368721962, 0.017974289134144783, 0.057149775326251984, 0.26247018575668335], [0.0038790039252489805, 0.016541559249162674, 0.006355626508593559, 0.0022419635206460953, 0.0024337326176464558, 0.0030229424592107534, 0.01285422220826149, 0.031247351318597794], [0.00176615035161376, 0.0017886348068714142, 0.0007569961016997695, 0.003783921245485544, 0.006175217218697071, 0.0034074848517775536, 0.012553250417113304, 0.1550113558769226], [0.005593448411673307, 0.002628719201311469, 0.0002680444740690291, 0.0023900410160422325, 0.007873853668570518, 0.025948332622647285, 0.012335292994976044, 0.04633917286992073], [0.00319237494841218, 0.0028353265952318907, 0.00036850603646598756, 0.0020457764621824026, 0.002072820905596018, 0.0030148939695209265, 0.0033264944795519114, 0.07360094785690308], [0.02339606173336506, 0.01484100054949522, 0.003204947104677558, 0.006629234179854393, 0.006790592335164547, 0.006227175239473581, 0.006845137104392052, 0.11302994936704636], [0.027805477380752563, 0.012193344533443451, 0.0014383170055225492, 0.004923100583255291, 0.003706008195877075, 0.0033784869592636824, 0.008767195045948029, 0.08217921108007431], [0.13078199326992035, 0.21670503914356232, 0.0280098095536232, 0.012757403776049614, 0.022060109302401543, 0.016466859728097916, 0.03797439858317375, 0.14174333214759827], [0.01123941782861948, 0.008930525742471218, 0.003104404080659151, 0.003805150045081973, 0.004457211121916771, 0.0035507732536643744, 0.010409817099571228, 0.14060157537460327]], [[0.05573498457670212, 0.042020007967948914, 0.02091025374829769, 0.005749198608100414, 0.008787647821009159, 0.009675520472228527, 0.025539932772517204, 0.287315309047699], [0.009514346718788147, 0.008521253243088722, 0.004084935877472162, 0.005067496560513973, 0.00562170147895813, 0.010833547450602055, 0.07247931510210037, 0.10572897642850876], [0.004062136169523001, 0.0056605031713843346, 0.0023208227939903736, 0.0015505142509937286, 0.002558220410719514, 0.004020435269922018, 0.010499661788344383, 0.3563901484012604], [0.00042085308814421296, 0.0010776181006804109, 0.002147944876924157, 0.001498684985563159, 0.0013826601207256317, 0.006192204542458057, 0.00028337270487099886, 0.006360561121255159], [0.0022147917188704014, 0.0018843431025743484, 0.0007442908827215433, 0.0013113131280988455, 0.0008725986699573696, 0.004595724865794182, 0.0025140070356428623, 0.03941816836595535], [0.003924740944057703, 0.005799079779535532, 0.0002189219812862575, 0.0018596570007503033, 0.0005153012461960316, 0.00283996993675828, 0.006714740768074989, 0.32861921191215515], [0.0010964705143123865, 0.0007076399633660913, 0.0006622506771236658, 0.00045109467464499176, 0.0028128265403211117, 0.0014420216903090477, 0.00017094130453187972, 0.01976483315229416], [0.03070741333067417, 0.04692991450428963, 0.01760638877749443, 0.00650670425966382, 0.005804271437227726, 0.00998917780816555, 0.01178609486669302, 0.15588806569576263], [0.012425372377038002, 0.021549394354224205, 0.00817781500518322, 0.0012089208466932178, 0.002642097882926464, 0.007863999344408512, 0.012665115296840668, 0.3232845664024353]], [[0.255292683839798, 0.08275441825389862, 0.009947802871465683, 0.021497810259461403, 0.005891737062484026, 0.010315139777958393, 0.0595274493098259, 0.3115222156047821], [0.02266654558479786, 0.02930597960948944, 0.011637458577752113, 0.004248590208590031, 0.004983082879334688, 0.00925781112164259, 0.024000205099582672, 0.055766358971595764], [0.04424966126680374, 0.016666648909449577, 0.005481308326125145, 0.0052717761136591434, 0.005180803593248129, 0.011721171438694, 0.05326942726969719, 0.016527727246284485], [0.07446525245904922, 0.005305198021233082, 0.0028499134350568056, 0.002666997956112027, 0.002208211924880743, 0.0036699718330055475, 0.0063538155518472195, 0.05628063157200813], [0.01358695887029171, 0.00205828039906919, 0.0011157057015225291, 0.0007620607502758503, 0.0011756200110539794, 0.0014770982088521123, 0.0027024950832128525, 0.024497119709849358], [0.12064123898744583, 0.01496205385774374, 0.004802182782441378, 0.005745191127061844, 0.007228384725749493, 0.008618212305009365, 0.03251977637410164, 0.03031005710363388], [0.032701559364795685, 0.013232419267296791, 0.004794727545231581, 0.0017865468980744481, 0.002480826573446393, 0.001856140443123877, 0.014901673421263695, 0.03634342551231384], [0.020981701090931892, 0.020500166341662407, 0.004532428923994303, 0.0035689889919012785, 0.003243064507842064, 0.004292394034564495, 0.02733711712062359, 0.07538477331399918], [0.0037358247209340334, 0.010208687745034695, 0.013469942845404148, 0.0023829557467252016, 0.008806977421045303, 0.011539126746356487, 0.017326166853308678, 0.06760238856077194]], [[0.07397178560495377, 0.04786080867052078, 0.01626724749803543, 0.027599243447184563, 0.03239141032099724, 0.059635698795318604, 0.18240614235401154, 0.12858480215072632], [0.004507344216108322, 0.009573579765856266, 0.008091576397418976, 0.010833711363375187, 0.006890119519084692, 0.017782362177968025, 0.011639094911515713, 0.07637260109186172], [0.008553984574973583, 0.009689396247267723, 0.0028808119241148233, 0.005259563680738211, 0.004764842800796032, 0.011774441227316856, 0.01401494350284338, 0.13661053776741028], [0.011359469033777714, 0.025728275999426842, 0.02881213091313839, 0.012763477861881256, 0.02961600013077259, 0.03945455700159073, 0.013702438212931156, 0.020897559821605682], [0.008140233345329762, 0.006522328592836857, 0.03023660182952881, 0.0016097958432510495, 0.010630470700562, 0.012144387699663639, 0.022322824224829674, 0.06822306662797928], [0.015065798535943031, 0.022050680592656136, 0.012994340620934963, 0.009115414693951607, 0.01933613047003746, 0.025137923657894135, 0.022907650098204613, 0.031916506588459015], [0.006018065381795168, 0.015656571835279465, 0.035565536469221115, 0.0020494465716183186, 0.006103125866502523, 0.01167663186788559, 0.009029789827764034, 0.05919254943728447], [0.005855523515492678, 0.027749791741371155, 0.008959303610026836, 0.003706427989527583, 0.003476644167676568, 0.0034832917153835297, 0.007415648549795151, 0.11982285976409912], [0.0016312404768541455, 0.0029793318826705217, 0.0016579229850322008, 0.0010355523554608226, 0.0007651904015801847, 0.0016296723624691367, 0.0065324921160936356, 0.2629570960998535]], [[0.04412422329187393, 0.13379958271980286, 0.09820152819156647, 0.1267201006412506, 0.07335173338651657, 0.19282320141792297, 0.22087225317955017, 0.0017239977605640888], [0.0012800769181922078, 0.006285484414547682, 0.0018658335320651531, 0.005999637767672539, 0.000898213591426611, 0.0020877092611044645, 0.008333098143339157, 0.0769166573882103], [0.017318041995167732, 0.02717973105609417, 0.010474808514118195, 0.02076856605708599, 0.0034293895587325096, 0.009962289594113827, 0.028956621885299683, 0.043270375579595566], [0.004043226130306721, 0.008136386051774025, 0.0031762518920004368, 0.011258060112595558, 0.0014403003733605146, 0.0037828453350812197, 0.006951686926186085, 0.07445399463176727], [0.000780194706749171, 0.0014525118749588728, 0.0008472095360048115, 0.0028031363617628813, 0.00034791469806805253, 0.0009374889195896685, 0.0015715241897851229, 0.1384221911430359], [0.001972568454220891, 0.005951384082436562, 0.003608008148148656, 0.00783790647983551, 0.0014839855721220374, 0.00308221485465765, 0.005734744947403669, 0.12071798741817474], [0.0014740314800292253, 0.009163438342511654, 0.002339687431231141, 0.015544865280389786, 0.0010590697638690472, 0.0033047597389668226, 0.006495994981378317, 0.07251261919736862], [0.008199530653655529, 0.0198756642639637, 0.006681375205516815, 0.020344208925962448, 0.007610614411532879, 0.019918302074074745, 0.01168823055922985, 0.05854463577270508], [0.0029826404061168432, 0.004728056490421295, 0.005474678706377745, 0.005925028584897518, 0.0015272676246240735, 0.005571904592216015, 0.006338297855108976, 0.37199029326438904]], [[0.20143471658229828, 0.04430174082517624, 0.00801195576786995, 0.022194521501660347, 0.023148616775870323, 0.03382888436317444, 0.09049656242132187, 0.06652738153934479], [0.028339162468910217, 0.06321700662374496, 0.015988469123840332, 0.005243256688117981, 0.01828606240451336, 0.020151490345597267, 0.11210758984088898, 0.05295104905962944], [0.008812044747173786, 0.02605229988694191, 0.005950480699539185, 0.003843178739771247, 0.018045805394649506, 0.03252892568707466, 0.03702116757631302, 0.06383847445249557], [0.058809179812669754, 0.022429628297686577, 0.025113781914114952, 0.021163804456591606, 0.004183787386864424, 0.01920655556023121, 0.01042927335947752, 0.039394330233335495], [0.018604621291160583, 0.015648480504751205, 0.03786034137010574, 0.012400555424392223, 0.01631971262395382, 0.01638578251004219, 0.020027238875627518, 0.0645337924361229], [0.02494652383029461, 0.005341187585145235, 0.01654711924493313, 0.04616314545273781, 0.00026560816331766546, 0.0020785636734217405, 0.012440221384167671, 0.020131448283791542], [0.022877782583236694, 0.01409536600112915, 0.04498327150940895, 0.006965731270611286, 0.005847529973834753, 0.007901111617684364, 0.02862342819571495, 0.104573093354702], [0.10692145675420761, 0.04204757884144783, 0.021169226616621017, 0.013394113630056381, 0.020619424059987068, 0.018860729411244392, 0.03934461623430252, 0.07767646759748459], [0.07669932395219803, 0.09463126957416534, 0.07032759487628937, 0.05824226513504982, 0.043223559856414795, 0.026333792135119438, 0.06254377216100693, 0.03448179364204407]], [[0.01930788718163967, 0.07602439820766449, 0.009178251959383488, 0.015704216435551643, 0.0034215927589684725, 0.0053702462464571, 0.04171208292245865, 0.19876797497272491], [0.0001553949696244672, 0.0351424366235733, 0.00034968854743056, 0.0008663987391628325, 0.00017870480951387435, 0.0009610105189494789, 0.0028025154024362564, 0.29685696959495544], [0.0017019759397953749, 0.004170809872448444, 1.5877159967203625e-05, 0.00018002472643274814, 0.0009695717017166317, 0.009097996167838573, 0.0026784855872392654, 0.24208037555217743], [0.002631148789077997, 0.0011153884697705507, 0.00145718886051327, 0.00030278589110821486, 0.0006343895802274346, 0.0008347824914380908, 0.05843406915664673, 0.231056809425354], [0.002203787211328745, 0.0006029244395904243, 0.0016555625479668379, 0.0005708352546207607, 4.940937287756242e-05, 1.6163879990926944e-05, 0.0005727290408685803, 0.2623499035835266], [0.0009667730773799121, 0.00019890819385182112, 4.651370181818493e-05, 7.607298175571486e-05, 0.0006661259103566408, 0.00017799067427404225, 0.0018292013555765152, 0.3137113153934479], [0.012380699627101421, 0.0022470541298389435, 0.0030546793714165688, 0.001296443399041891, 0.00011021554382750764, 2.0596973627107218e-05, 0.0009140309994108975, 0.2751358449459076], [0.003723181551322341, 0.015901226550340652, 0.0061441585421562195, 0.005703573115170002, 0.0019398258300498128, 0.0024472379591315985, 0.017573729157447815, 0.2031809538602829], [0.011110741645097733, 0.01596137136220932, 0.005699531175196171, 0.0139088723808527, 0.00915519054979086, 0.017806829884648323, 0.028394008055329323, 0.21065641939640045]], [[0.1815018355846405, 0.010765873827040195, 0.024326590821146965, 0.016497954726219177, 0.010893646627664566, 0.015117834322154522, 0.018350284546613693, 0.3056905269622803], [0.00226025958545506, 0.004792015999555588, 0.004492836073040962, 0.0010328976204618812, 0.0008022096590138972, 0.002699598204344511, 0.005397929809987545, 0.2125798463821411], [0.0038042343221604824, 0.004336316138505936, 0.005305994302034378, 0.0013808937510475516, 0.00198767171241343, 0.007124859374016523, 0.004154199734330177, 0.2574436068534851], [0.0024805362336337566, 0.005857239011675119, 0.01179262064397335, 0.002238689921796322, 0.0008794603636488318, 0.005074869375675917, 0.004582161549478769, 0.13648924231529236], [0.001413102843798697, 0.0033588726073503494, 0.00589297479018569, 0.002967578824609518, 0.0005604822654277086, 0.0030677730683237314, 0.006309079471975565, 0.09878811985254288], [0.0026213431265205145, 0.013192687183618546, 0.018202470615506172, 0.007382223382592201, 0.0019618868827819824, 0.013418799266219139, 0.005354241002351046, 0.06689624488353729], [0.003096112282946706, 0.006595946848392487, 0.012208394706249237, 0.0016734598902985454, 0.00037642274401150644, 0.0032162696588784456, 0.008693660609424114, 0.11494236439466476], [0.006559760309755802, 0.019277941435575485, 0.008613570593297482, 0.004053181037306786, 0.00227136118337512, 0.006634105462580919, 0.024815760552883148, 0.13704797625541687], [0.006021426524966955, 0.011271647177636623, 0.007742289453744888, 0.0027321702800691128, 0.0017309455433860421, 0.0032706332858651876, 0.013799375854432583, 0.20924486219882965]], [[0.02474409155547619, 0.00466509722173214, 0.004022928886115551, 0.002097614575177431, 0.0042184083722531796, 0.0014336570166051388, 0.030124951153993607, 0.37214547395706177], [0.043221037834882736, 0.14786438643932343, 0.009291380643844604, 0.0054242853075265884, 0.003237460507079959, 0.003805671352893114, 0.026077480986714363, 0.17256835103034973], [0.0034173615276813507, 0.02178138494491577, 0.0017446019919589162, 0.0021276427432894707, 0.045160967856645584, 0.03221365436911583, 0.012858804315328598, 0.24728335440158844], [0.016346022486686707, 0.0019607350695878267, 0.0046170842833817005, 0.0024304187390953302, 0.005317733157426119, 0.004196048714220524, 0.09821679443120956, 0.2371426671743393], [0.0030923134181648493, 0.0032360360492020845, 0.008482899516820908, 0.0058883060701191425, 0.006939415819942951, 0.005025846417993307, 0.036787211894989014, 0.2884610891342163], [0.004640206228941679, 0.006814151536673307, 0.00821527186781168, 0.0071725440211594105, 0.009322093799710274, 0.006301621440798044, 0.0319623239338398, 0.2549581825733185], [0.005558896344155073, 0.004034125711768866, 0.002607528818771243, 0.002253395738080144, 0.0027265259996056557, 0.0017540052067488432, 0.017231985926628113, 0.3255261182785034], [0.13152764737606049, 0.011705374345183372, 0.021000642329454422, 0.05724185332655907, 0.046011146157979965, 0.02264517918229103, 0.0858134999871254, 0.12697207927703857], [0.023399515077471733, 0.015143640339374542, 0.02448997274041176, 0.03629350662231445, 0.06455422192811966, 0.018759675323963165, 0.0634353831410408, 0.2062610685825348]]], [[[0.0002145023172488436, 0.0013254826189950109, 0.00035148864844813943, 0.0007792221149429679, 0.0006743393023498356, 0.000960935780312866, 0.0017869849689304829, 0.3738754391670227], [0.0008404847467318177, 0.0022975471802055836, 0.0048073758371174335, 0.010099419392645359, 0.00848411675542593, 0.023126358166337013, 0.005578957032412291, 0.03725787252187729], [0.0006749082240276039, 0.0015658607007935643, 0.0037833349779248238, 0.0038365276996046305, 0.005655630957335234, 0.011002609506249428, 0.0018818125827237964, 0.3677752614021301], [0.008915208280086517, 0.0058303349651396275, 0.007323183119297028, 0.006034854333847761, 0.0032316127326339483, 0.002881755819544196, 0.0003940360329579562, 0.0631793811917305], [0.0011302514467388391, 0.0022162070963531733, 0.00935986079275608, 0.0033115744590759277, 0.008103566244244576, 0.03962770849466324, 0.0007054639863781631, 0.055955443531274796], [0.0017620933940634131, 0.0060837347991764545, 0.004070416558533907, 0.014515632763504982, 0.006130069959908724, 0.06684812158346176, 0.005031967535614967, 0.10466952621936798], [0.0006400452693924308, 0.001183435320854187, 0.0021507628262043, 0.0015978373121470213, 0.0008830464212223887, 0.003773536765947938, 0.0003717515792232007, 0.00622624671086669], [0.008278613910079002, 0.012150119058787823, 0.008223667740821838, 0.006942181382328272, 0.00701279379427433, 0.018046025186777115, 0.004645165055990219, 0.19195625185966492], [0.00048043765127658844, 0.0004840755427721888, 0.0005090604536235332, 0.000877571408636868, 0.000561970635317266, 0.0005855957278981805, 0.002642277395352721, 0.45560210943222046]], [[0.029403721913695335, 0.04501628875732422, 0.013487356714904308, 0.05238167569041252, 0.03203549608588219, 0.01721315085887909, 0.05518418923020363, 0.35697028040885925], [0.0006990835536271334, 0.0030042503494769335, 0.0016487378161400557, 0.0037539382465183735, 0.0025319443084299564, 0.004574748687446117, 0.005559454206377268, 0.30257076025009155], [0.0012595867738127708, 0.001423293026164174, 0.0009203414665535092, 0.0012776433723047376, 0.001001540687866509, 0.0014781435020267963, 0.003450704738497734, 0.2641487717628479], [0.0012927333591505885, 0.004972738213837147, 0.003812238108366728, 0.001470681163482368, 0.00024343901895917952, 0.0005249351379461586, 0.005401398986577988, 0.3318597376346588], [0.0009903975296765566, 0.0023226693738251925, 0.002586232963949442, 0.0006157384486868978, 6.950420356588438e-05, 0.00017569551710039377, 0.003024033736437559, 0.3335783779621124], [0.0015575711149722338, 0.011453396640717983, 0.0009170050616376102, 0.0017110316548496485, 9.99456096906215e-05, 0.0005563996382988989, 0.007068190723657608, 0.35012832283973694], [0.0008454924100078642, 0.00048002315452322364, 0.0008909572497941554, 0.0009645803365856409, 0.00021340344392228872, 0.0007506029214709997, 0.004851281177252531, 0.4198618233203888], [0.0017679514130577445, 0.0040212357416749, 0.003211193485185504, 0.004232272505760193, 0.0037808921188116074, 0.003924116957932711, 0.006890976335853338, 0.30988073348999023], [0.0039240955375134945, 0.006915200036019087, 0.004005827009677887, 0.0034744315780699253, 0.0010585907148197293, 0.0023890682496130466, 0.012573249638080597, 0.36177003383636475]], [[0.021580014377832413, 0.011276914738118649, 0.009882969781756401, 0.00516238808631897, 0.0021049596834927797, 0.007396898698061705, 0.01761094108223915, 0.4425293207168579], [0.007235392462462187, 0.0030585213098675013, 0.0010365747148171067, 0.0016964009264484048, 0.000606441986747086, 0.009456994011998177, 0.006040855310857296, 0.31421080231666565], [0.004304227419197559, 0.0031535611487925053, 0.0004450964042916894, 0.0011390179861336946, 0.0006755361100658774, 0.024200377985835075, 0.004302963148802519, 0.3703804612159729], [0.0483933724462986, 0.0027331318706274033, 0.0028866578359156847, 0.0007129637524485588, 0.0004307494964450598, 0.0022417716681957245, 0.0015804794384166598, 0.3084089159965515], [0.005971364211291075, 0.0009546459186822176, 0.0027351337485015392, 4.728916610474698e-05, 0.000718635565135628, 0.0022134140599519014, 0.0011169197969138622, 0.18102595210075378], [0.0013619221281260252, 0.0001982022513402626, 0.00039412450860254467, 5.013330883230083e-05, 5.638580478262156e-05, 0.0007312584784813225, 0.0002478231326676905, 0.05423804000020027], [0.0026155223604291677, 0.00025410830858163536, 0.0005855978233739734, 1.1566933608264662e-05, 8.825767872622237e-05, 0.00012408426846377552, 9.855776443146169e-05, 0.018279030919075012], [0.009599275887012482, 0.0040978435426950455, 0.003034740686416626, 0.0017333821160718799, 0.0013580142986029387, 0.004341691732406616, 0.0055438741110265255, 0.1997249573469162], [0.01284188125282526, 0.010637428611516953, 0.01088764052838087, 0.006658137310296297, 0.0060299355536699295, 0.0230949018150568, 0.01575629413127899, 0.3914748430252075]], [[0.0008031209581531584, 0.0031141480430960655, 0.001587149454280734, 0.0017294768476858735, 0.0008746676030568779, 0.003912828397005796, 0.001216887729242444, 0.0412583164870739], [0.004115224815905094, 0.0036073909141123295, 0.0016724473098292947, 0.0033570046070963144, 0.0027165482752025127, 0.004280829336494207, 0.006954418495297432, 0.15183955430984497], [0.010608941316604614, 0.00594597402960062, 0.0006583124632015824, 0.010156827978789806, 0.003376911161467433, 0.006534238811582327, 0.004466262646019459, 0.26385220885276794], [0.0011158331762999296, 0.0026339907199144363, 0.0006781599950045347, 0.0012645306997001171, 0.0019380846060812473, 0.003171138698235154, 0.01854158751666546, 0.26997771859169006], [0.0014450299786403775, 0.0016293092630803585, 0.0008701831102371216, 0.001944629242643714, 0.0036254243459552526, 0.006345509551465511, 0.007463006302714348, 0.23343759775161743], [0.0017491821199655533, 0.003069923259317875, 0.0013769040815532207, 0.008406654000282288, 0.013589076697826385, 0.018448323011398315, 0.03519933298230171, 0.173861563205719], [0.0037033664993941784, 0.002970197005197406, 0.001287805032916367, 0.002708122134208679, 0.00792046170681715, 0.021867603063583374, 0.08752845227718353, 0.17266739904880524], [0.011864416301250458, 0.006808191072195768, 0.001561734126880765, 0.0042076497338712215, 0.0066185323521494865, 0.010175579227507114, 0.0249174814671278, 0.23379768431186676], [0.012168697081506252, 0.011409128084778786, 0.019892089068889618, 0.014376652427017689, 0.021667052060365677, 0.023300351575016975, 0.04172728583216667, 0.29033398628234863]], [[0.04257943853735924, 0.11620363593101501, 0.018868422135710716, 0.10987429320812225, 0.060715850442647934, 0.052005037665367126, 0.059579454362392426, 0.14782392978668213], [0.023559704422950745, 0.37408357858657837, 0.01484439056366682, 0.02336292155086994, 0.013132275082170963, 0.031180664896965027, 0.05434305593371391, 0.07611273229122162], [0.009963495656847954, 0.0060404203832149506, 0.0012752666370943189, 0.003757701488211751, 0.0022014561109244823, 0.0043153315782547, 0.014550285413861275, 0.16974428296089172], [0.022195324301719666, 0.1285013109445572, 0.01789618656039238, 0.03151247650384903, 0.015516906976699829, 0.02850770764052868, 0.0776928961277008, 0.1440553516149521], [0.02343214675784111, 0.02277006208896637, 0.028779348358511925, 0.06950505077838898, 0.005047628190368414, 0.00668099382892251, 0.04103831946849823, 0.1183200478553772], [0.017244970425963402, 0.0035932743921875954, 0.009811855852603912, 0.012112116441130638, 0.00018629043188411742, 0.0028494782745838165, 0.03587246686220169, 0.17117799818515778], [0.011029512621462345, 0.04762692749500275, 0.020061636343598366, 0.021751176565885544, 0.0032079427037388086, 0.0028403415344655514, 0.013647926971316338, 0.3528776168823242], [0.02296815626323223, 0.019949723035097122, 0.007292553782463074, 0.0045737349428236485, 0.004969010595232248, 0.002545671770349145, 0.04959002509713173, 0.2282741814851761], [0.03435136005282402, 0.023371227085590363, 0.024535851553082466, 0.05385018140077591, 0.02015874534845352, 0.03759355470538139, 0.07628673315048218, 0.22894097864627838]], [[0.04244471713900566, 0.020551731809973717, 0.019739849492907524, 0.008925075642764568, 0.006484847515821457, 0.007126779295504093, 0.05254935845732689, 0.17465852200984955], [0.014579078182578087, 0.03858432546257973, 0.018992438912391663, 0.011108368635177612, 0.010106214322149754, 0.011578834615647793, 0.03644125536084175, 0.24149538576602936], [0.001134228310547769, 0.004774211905896664, 0.0027527494821697474, 0.007298382464796305, 0.03465916961431503, 0.21013043820858002, 0.016613628715276718, 0.18950308859348297], [0.06079712137579918, 0.01924690417945385, 0.005409372039139271, 0.009470430202782154, 0.017526349052786827, 0.011250662617385387, 0.03778046742081642, 0.23044143617153168], [0.05869899317622185, 0.007503848988562822, 0.005337894428521395, 0.0030761451926082373, 0.0035611954517662525, 0.0022600397933274508, 0.049320802092552185, 0.281101793050766], [0.05011356621980667, 0.006143853068351746, 0.0098728584125638, 0.007070998195558786, 0.04073260352015495, 0.0284722950309515, 0.03521924838423729, 0.25752702355384827], [0.013685980811715126, 0.005241834092885256, 0.006291364319622517, 0.00592017499729991, 0.0056682005524635315, 0.0033997027203440666, 0.014159874059259892, 0.34173962473869324], [0.029244987294077873, 0.01688460074365139, 0.01490802876651287, 0.006585956551134586, 0.004975704476237297, 0.005934206303209066, 0.03907892480492592, 0.22776396572589874], [0.014172542840242386, 0.009827866218984127, 0.01847536861896515, 0.01294876541942358, 0.020608723163604736, 0.024335220456123352, 0.019276799634099007, 0.2763236463069916]], [[0.002423245459794998, 0.0014698203885927796, 0.0011046931613236666, 0.003745581489056349, 0.0023948117159307003, 0.0036148782819509506, 0.00675620511174202, 0.07513055205345154], [0.00038254389073699713, 0.001413798308931291, 0.0010469304397702217, 0.0012960820458829403, 0.0010233710054308176, 0.0024334387853741646, 0.0021251090802252293, 0.021894987672567368], [0.0009953025728464127, 0.0026850062422454357, 0.000850749434903264, 0.0038717202842235565, 0.002551537938416004, 0.007051249500364065, 0.004439063370227814, 0.042603474110364914], [0.0012910990044474602, 0.0011490392498672009, 0.0015459242276847363, 0.00342154991813004, 0.0014116587117314339, 0.002275099977850914, 0.005997054744511843, 0.017092492431402206], [0.0006485586054623127, 0.0009613399161025882, 0.002391634276136756, 0.005179325118660927, 0.0023970857728272676, 0.0023357386235147715, 0.003988428041338921, 0.017865970730781555], [0.0007798185106366873, 0.001410683966241777, 0.00242099491879344, 0.004327442497014999, 0.003006360959261656, 0.008761141449213028, 0.003939846530556679, 0.022298071533441544], [0.0006100916070863605, 0.0018650642596185207, 0.004422290716320276, 0.0026663593016564846, 0.002076885662972927, 0.003569720545783639, 0.007828420959413052, 0.02107987180352211], [0.003538709133863449, 0.005591178312897682, 0.0018577519804239273, 0.0047202627174556255, 0.005867878906428814, 0.008315022103488445, 0.012773307040333748, 0.06255174428224564], [0.020495878532528877, 0.013478260487318039, 0.030687518417835236, 0.035392433404922485, 0.04490387812256813, 0.04307127371430397, 0.05194752663373947, 0.11830070614814758]], [[0.17376708984375, 0.10775065422058105, 0.019746115431189537, 0.05785134434700012, 0.05345810577273369, 0.044767215847969055, 0.05876631289720535, 0.21540383994579315], [0.03543712571263313, 0.03158872574567795, 0.0029554632492363453, 0.013113525696098804, 0.00742218317463994, 0.014024225063621998, 0.04835288226604462, 0.056711506098508835], [0.03299620747566223, 0.02162506803870201, 0.008805074729025364, 0.017934827134013176, 0.01813795417547226, 0.04305272549390793, 0.04526890441775322, 0.02475348301231861], [0.02697116695344448, 0.009595518000423908, 0.00516967847943306, 0.011450495570898056, 0.0069977170787751675, 0.007154654245823622, 0.004084578715264797, 0.04979473352432251], [0.031917136162519455, 0.005660418886691332, 0.001695773913525045, 0.002396519063040614, 0.0019424454076215625, 0.005785044748336077, 0.00648921076208353, 0.1849711686372757], [0.030490176752209663, 0.020482834428548813, 0.00451718270778656, 0.009721650741994381, 0.00874168612062931, 0.0168386772274971, 0.01832413487136364, 0.04748835042119026], [0.04924909770488739, 0.005327262915670872, 0.006825949065387249, 0.005076147615909576, 0.003422738751396537, 0.007243771106004715, 0.00904164370149374, 0.11825481802225113], [0.006581715773791075, 0.011494644917547703, 0.001759480801410973, 0.0034061535261571407, 0.0029946977738291025, 0.006316558923572302, 0.006861736532300711, 0.34045201539993286], [0.0015114792622625828, 0.0017473289044573903, 0.002514385851100087, 0.0017765829106792808, 0.00416995445266366, 0.003151937620714307, 0.0027523667085915804, 0.47121521830558777]], [[0.0015361392870545387, 0.000549941323697567, 0.0003939366724807769, 0.00014264264609664679, 0.0002210988022852689, 0.0005989435594528913, 0.005523563362658024, 0.4979669749736786], [0.014839536510407925, 0.006614107172936201, 0.002536348532885313, 0.000974986469373107, 0.0009327701991423965, 0.0007736937841400504, 0.01048242673277855, 0.18047435581684113], [0.00646870955824852, 0.010096047073602676, 0.0033250567503273487, 0.00207547377794981, 0.0032129844184964895, 0.007026944775134325, 0.03532453626394272, 0.23315687477588654], [0.015973379835486412, 0.0023566600866615772, 0.002513837767764926, 0.00024826283333823085, 0.0009304859559051692, 0.0008309604017995298, 0.03279617428779602, 0.2044564187526703], [0.009168006479740143, 0.001248056534677744, 0.006091943476349115, 0.0007017600582912564, 0.00036267092218622565, 0.0005559092969633639, 0.006718838587403297, 0.3179166615009308], [0.019301215186715126, 0.0016216158401221037, 0.008648935705423355, 0.0006879732245579362, 0.0003138946776743978, 0.000982358935289085, 0.023781467229127884, 0.26329851150512695], [0.020118094980716705, 0.0024908718187361956, 0.05518972501158714, 0.005171902012079954, 0.005346690304577351, 0.0053170290775597095, 0.029711619019508362, 0.1734762191772461], [0.009337611496448517, 0.005237726029008627, 0.0020785066299140453, 0.00268166814930737, 0.0040418654680252075, 0.0039846268482506275, 0.01747014932334423, 0.1392063945531845], [0.0179744902998209, 0.018984228372573853, 0.028367090970277786, 0.040342655032873154, 0.03271690383553505, 0.0286756232380867, 0.05104014277458191, 0.22895486652851105]], [[0.02977720834314823, 0.005177556071430445, 0.009762643836438656, 0.0030171831604093313, 0.0018830967601388693, 0.004594854079186916, 0.022134874016046524, 0.43096256256103516], [0.012834310531616211, 0.019451498985290527, 0.004437034949660301, 0.007515087723731995, 0.0034487678203731775, 0.009209208190441132, 0.04539408162236214, 0.23753930628299713], [0.008879095315933228, 0.013574939221143723, 0.017336087301373482, 0.0005076868110336363, 0.007889396511018276, 0.017351971939206123, 0.03887229412794113, 0.2706230878829956], [0.023426327854394913, 0.0016758095007389784, 0.006482351571321487, 0.004349341616034508, 0.0005028051673434675, 0.0020733249839395285, 0.06412021070718765, 0.24900710582733154], [0.010643023066222668, 0.00015088298823684454, 0.014465692453086376, 0.004985420498996973, 0.00021327633294276893, 0.0012386942980811, 0.015547817572951317, 0.3564397692680359], [0.010104465298354626, 0.0013246407033875585, 0.003202910767868161, 0.005515319295227528, 0.0004237081448081881, 0.0006285412819124758, 0.01919510029256344, 0.3099161684513092], [0.011831432580947876, 0.0005017879302613437, 0.015323443338274956, 0.02791789546608925, 0.0007802250911481678, 0.0022050116676837206, 0.01141795888543129, 0.33093005418777466], [0.009918124414980412, 0.009726091288030148, 0.006231365259736776, 0.0035987982992082834, 0.0019569459836930037, 0.006074149627238512, 0.010550345294177532, 0.3038613200187683], [0.016047365963459015, 0.01946934498846531, 0.0215065348893404, 0.01539499219506979, 0.01761496439576149, 0.026005560532212257, 0.024989552795886993, 0.33047476410865784]], [[0.21554602682590485, 0.002360730664804578, 0.016385933384299278, 0.01642371155321598, 0.027331558987498283, 0.006902058608829975, 0.07383128255605698, 0.1487296223640442], [0.015658969059586525, 0.03144469112157822, 0.011955327354371548, 0.010668694041669369, 0.010807548649609089, 0.002061850856989622, 0.020632987841963768, 0.17619282007217407], [0.011242820881307125, 0.0373801663517952, 0.004680091980844736, 0.00672272639349103, 0.010328604839742184, 0.00721212662756443, 0.025662265717983246, 0.18209949135780334], [0.07419943064451218, 0.006527827586978674, 0.014664901420474052, 0.01115918718278408, 0.01978146657347679, 0.015055215917527676, 0.18148881196975708, 0.1099020391702652], [0.05158661678433418, 0.003940480295568705, 0.012446975335478783, 0.005569761618971825, 0.0023762446362525225, 0.0019765596371144056, 0.02169104851782322, 0.2605535686016083], [0.05085112899541855, 0.013264506123960018, 0.016112718731164932, 0.029474318027496338, 0.01283396128565073, 0.019872985780239105, 0.06324204057455063, 0.17107723653316498], [0.010684902779757977, 0.001257814234122634, 0.0037198862992227077, 0.0013480400666594505, 0.0007414429564960301, 0.00024303501413669437, 0.006634723395109177, 0.3940071165561676], [0.05507132038474083, 0.007009382359683514, 0.007629613392055035, 0.006788703612983227, 0.008066006936132908, 0.0065047889947891235, 0.025228748098015785, 0.17055316269397736], [0.00410153204575181, 0.0014610773650929332, 0.0021570920944213867, 0.0011750677367672324, 0.0019096920732408762, 0.0030085877515375614, 0.0029159565456211567, 0.4477134943008423]], [[0.257351815700531, 0.013315869495272636, 0.00793194305151701, 0.04584855958819389, 0.042014382779598236, 0.046460140496492386, 0.049255404621362686, 0.15273985266685486], [0.012748518027365208, 0.18899331986904144, 0.003487184876576066, 0.013940425589680672, 0.005007883068174124, 0.0038091898895800114, 0.0031012161634862423, 0.06301233172416687], [0.024426762014627457, 0.0939503088593483, 0.014294161461293697, 0.020569145679473877, 0.010646339505910873, 0.01675662212073803, 0.023205654695630074, 0.165048748254776], [0.005448800045996904, 0.009692905470728874, 0.020316582173109055, 0.017874833196401596, 0.005440391134470701, 0.004325408488512039, 0.016885949298739433, 0.05514964088797569], [0.016685139387845993, 0.005857492797076702, 0.0959925651550293, 0.04475284740328789, 0.013124281540513039, 0.007821118459105492, 0.006436625029891729, 0.1175113320350647], [0.02775217592716217, 0.018833626061677933, 0.03517640009522438, 0.018477145582437515, 0.005924113094806671, 0.011634751223027706, 0.010158419609069824, 0.0538216158747673], [0.013946693390607834, 0.011964329518377781, 0.15759669244289398, 0.022865835577249527, 0.00760678993538022, 0.012257061898708344, 0.011732331477105618, 0.17541486024856567], [0.0013955492759123445, 0.0005838156212121248, 6.107669469201937e-05, 0.0014142494183033705, 0.001286953454837203, 0.0014639680739492178, 0.0008529202896170318, 0.002578112529590726], [0.0010699480772018433, 0.0005360493087209761, 0.00021951552480459213, 0.0007843192433938384, 0.002987075597047806, 0.003980542067438364, 0.003309902735054493, 0.045262932777404785]]], [[[0.02211337722837925, 0.003408635500818491, 0.0007928932318463922, 0.0008180654840543866, 0.000782747520133853, 0.001088500488549471, 0.0325465127825737, 0.09826906025409698], [0.04863307625055313, 0.026661721989512444, 0.004605063237249851, 0.004788256715983152, 0.0057881856337189674, 0.006243500858545303, 0.029359055683016777, 0.1604703664779663], [0.020913150161504745, 0.039907149970531464, 0.008940433152019978, 0.009190364740788937, 0.009803677909076214, 0.06298371404409409, 0.01827634871006012, 0.24316340684890747], [0.05102422088384628, 0.04153236374258995, 0.0037946479860693216, 0.0010742247104644775, 0.00441014626994729, 0.005907652899622917, 0.0218978188931942, 0.23032817244529724], [0.027474336326122284, 0.021335480734705925, 0.00456642359495163, 0.003787908237427473, 0.002601271728053689, 0.004669032525271177, 0.01605743169784546, 0.22442112863063812], [0.026723649352788925, 0.048146072775125504, 0.008850248530507088, 0.0074641769751906395, 0.013482389971613884, 0.011285046115517616, 0.021328939124941826, 0.22574016451835632], [0.0334327295422554, 0.01947925053536892, 0.004640441853553057, 0.0029081767424941063, 0.005523401312530041, 0.0034206847194582224, 0.019205650314688683, 0.30863088369369507], [0.040762823075056076, 0.008561402559280396, 0.0004558821674436331, 0.001096932333894074, 0.0024400101974606514, 0.002004890004172921, 0.03827059268951416, 0.06704949587583542], [0.005655355751514435, 0.002984269754961133, 0.0027323425747454166, 0.002257852116599679, 0.0015629775589331985, 0.0030274735763669014, 0.011712834239006042, 0.4391431510448456]], [[0.2788724899291992, 0.012756521813571453, 0.0859110876917839, 0.05452902987599373, 0.0031133699230849743, 0.01023023296147585, 0.06431077420711517, 0.23106485605239868], [0.015356071293354034, 0.010734397917985916, 0.011889010667800903, 0.014589817263185978, 0.0035612403880804777, 0.00891591515392065, 0.014044330455362797, 0.030182091519236565], [0.04866069182753563, 0.007124198600649834, 0.026473749428987503, 0.03693388029932976, 0.006729588843882084, 0.017443014308810234, 0.019684500992298126, 0.1118316501379013], [0.04354340210556984, 0.002713648835197091, 0.008753422647714615, 0.0028425983618944883, 0.00037776576937176287, 0.0005821179947815835, 0.0027566179633140564, 0.12741507589817047], [0.028512604534626007, 0.0009588159155100584, 0.00434930669143796, 0.0015234311576932669, 2.6777799575938843e-05, 0.0001277343835681677, 0.0012791450135409832, 0.34152671694755554], [0.026127096265554428, 0.0014398206258192658, 0.008589284494519234, 0.0009079747833311558, 0.00012609167606569827, 0.0003513997362460941, 0.0027684273663908243, 0.3386319577693939], [0.03527313470840454, 0.00020056427456438541, 0.018717598170042038, 0.0024984527844935656, 9.920956654241309e-05, 0.00026256285491399467, 0.00157392886467278, 0.3226660192012787], [0.030004872009158134, 0.004432680085301399, 0.009594363160431385, 0.006146155763417482, 0.001040601753629744, 0.0028530617710202932, 0.009806586429476738, 0.17664802074432373], [0.0031132446601986885, 0.002474838634952903, 0.0019334484823048115, 0.001392505131661892, 0.0008520058472640812, 0.0016742658335715532, 0.002512388164177537, 0.46491312980651855]], [[0.11441614478826523, 0.1662038266658783, 0.09033162891864777, 0.08029140532016754, 0.07159007340669632, 0.143330380320549, 0.12362919002771378, 0.06680573523044586], [0.0032632132060825825, 0.0036226403899490833, 0.0145344827324152, 0.0036901698913425207, 0.0025103853549808264, 0.006361159961670637, 0.007396908942610025, 0.17873236536979675], [0.006002457346767187, 0.011579615995287895, 0.009816060774028301, 0.0038635546807199717, 0.0017745092045515776, 0.006404664367437363, 0.01339015830308199, 0.22835849225521088], [0.0027486945036798716, 0.0048959581181406975, 0.005631591659039259, 0.0038956105709075928, 0.006491313222795725, 0.012672956101596355, 0.004923818167299032, 0.10543090850114822], [0.0029536979272961617, 0.003572909627109766, 0.0038970487657934427, 0.002326544839888811, 0.0029529291205108166, 0.007510020863264799, 0.0033560956362634897, 0.17478232085704803], [0.004846211988478899, 0.006965687498450279, 0.005287887994199991, 0.002022122498601675, 0.0026859708596020937, 0.00616758968681097, 0.006483485456556082, 0.20579688251018524], [0.0044604092836380005, 0.00794435665011406, 0.004573209676891565, 0.0019038983155041933, 0.0018391372868791223, 0.005927726160734892, 0.008415620774030685, 0.2576717734336853], [0.0033074491657316685, 0.00523516396060586, 0.0018959123408421874, 0.0032697939313948154, 0.0026890975423157215, 0.00789870135486126, 0.005680619273334742, 0.04626549035310745], [0.006553320679813623, 0.008278394117951393, 0.0029775891453027725, 0.0016037097666412592, 0.0006179727497510612, 0.0021072537638247013, 0.011295883916318417, 0.41962477564811707]], [[0.0018961087334901094, 0.0010089421411976218, 0.0010489406995475292, 0.0015997670125216246, 0.010862092487514019, 0.005378192290663719, 0.00022643024567514658, 0.00612123915925622], [0.0002643875777721405, 0.0021009996999055147, 0.0007170123280957341, 0.0005761652137152851, 0.0006644680979661644, 0.0006472732056863606, 0.0018781002145260572, 0.0020647963974624872], [0.00013159157242625952, 0.000514889950864017, 0.0007261170540004969, 0.0008958310354501009, 0.0005146915791556239, 0.0007717930129729211, 0.00042006841977126896, 0.0029386773239821196], [0.0006184024969115853, 0.0009388746693730354, 0.0008904053829610348, 0.00036710224230773747, 0.002347832778468728, 0.001980625092983246, 0.003532483009621501, 0.0028810175135731697], [0.0014184127794578671, 0.0014362510992214084, 0.0026061460375785828, 0.002922236453741789, 0.0011852694442495704, 0.001491206930950284, 0.003344242461025715, 0.011175778694450855], [4.522140079643577e-05, 0.00046963433851487935, 0.0004218488174956292, 0.00036008335882797837, 0.0004574651538860053, 0.00038533101906068623, 0.00027632914134301245, 0.0012629734119400382], [0.00022838734730612487, 0.0008989123743958771, 0.0012016290565952659, 0.0014324270887300372, 0.0007669661426916718, 0.0007746859337203205, 0.001289324020035565, 0.005841198842972517], [0.001622765907086432, 0.004642815794795752, 0.002525020856410265, 0.0018603933276608586, 0.006656398065388203, 0.005491246934980154, 0.0022683138959109783, 0.004511373583227396], [0.030816929414868355, 0.0006987892556935549, 0.0012259158538654447, 0.007048981264233589, 0.006049943156540394, 0.011828115209937096, 0.06896744668483734, 0.22058765590190887]], [[0.07210586220026016, 0.039677854627370834, 0.01689349114894867, 0.050142090767621994, 0.024312153458595276, 0.022013520821928978, 0.04806755110621452, 0.22437705099582672], [0.02871098183095455, 0.016123805195093155, 0.013743139803409576, 0.02172785997390747, 0.011980073526501656, 0.007454304024577141, 0.0484759546816349, 0.1379733830690384], [0.0020194791723042727, 0.01606658659875393, 0.00722781615331769, 0.02062395215034485, 0.0070595694705843925, 0.04329958185553551, 0.004986653104424477, 0.12089500576257706], [0.04436706006526947, 0.00855690985918045, 0.00463868910446763, 0.005511523690074682, 0.011984333395957947, 0.004928638692945242, 0.07905110716819763, 0.1917516142129898], [0.12007852643728256, 0.0021061464212834835, 0.007819721475243568, 0.003933988977223635, 0.0005202434258535504, 0.00022912738495506346, 0.005621068179607391, 0.16265098750591278], [0.02836434170603752, 0.00813301745802164, 0.048644959926605225, 0.050609294325113297, 0.08343028277158737, 0.027831746265292168, 0.006678480189293623, 0.13951171934604645], [0.0652073547244072, 0.002463636454194784, 0.012166906148195267, 0.003558964701369405, 0.004711803514510393, 0.0029960169922560453, 0.013195016421377659, 0.07987632602453232], [0.023098070174455643, 0.021547719836235046, 0.011252366006374359, 0.007711201440542936, 0.004103386774659157, 0.0045389411970973015, 0.013189360499382019, 0.13859893381595612], [0.03551569953560829, 0.050996165722608566, 0.025959772989153862, 0.0315140075981617, 0.03536566346883774, 0.044262442737817764, 0.06387795507907867, 0.16180233657360077]], [[0.015176106244325638, 0.01228202972561121, 0.008453314192593098, 0.00876674521714449, 0.008219013921916485, 0.008951781317591667, 0.02460065297782421, 0.3506237268447876], [0.012964395806193352, 0.10031000524759293, 0.004582129884511232, 0.004866207949817181, 0.010016756132245064, 0.009577146731317043, 0.0319075845181942, 0.22098898887634277], [0.03153937682509422, 0.03421894088387489, 0.011553503572940826, 0.004738937132060528, 0.0008204185287468135, 0.004141980782151222, 0.0346074253320694, 0.25147339701652527], [0.008688432164490223, 0.05229492858052254, 0.011172953993082047, 0.00723689328879118, 0.0049502053298056126, 0.00789103377610445, 0.047324102371931076, 0.28333956003189087], [0.013388561084866524, 0.06549188494682312, 0.012005145661532879, 0.026264170184731483, 0.003614023793488741, 0.009567645378410816, 0.03260597214102745, 0.22795799374580383], [0.1375279724597931, 0.06735406816005707, 0.1248278096318245, 0.16557638347148895, 0.0012647965922951698, 0.014842272736132145, 0.03692548722028732, 0.09678657352924347], [0.019697923213243484, 0.06117156893014908, 0.03609964996576309, 0.025255894288420677, 0.018068278208374977, 0.020205562934279442, 0.03162519633769989, 0.29053616523742676], [0.04835999757051468, 0.03369203209877014, 0.013921026140451431, 0.008021002635359764, 0.005248946603387594, 0.010638822801411152, 0.05581967160105705, 0.242099791765213], [0.014071790501475334, 0.006980078294873238, 0.008953343145549297, 0.008050679229199886, 0.004276555962860584, 0.005813945084810257, 0.010995090939104557, 0.41492876410484314]], [[0.00014533997455146164, 0.00040994182927533984, 7.546547567471862e-05, 0.00042966019827872515, 0.0004822840273845941, 0.0005600082804448903, 0.18318414688110352, 0.0014153847005218267], [0.027747051790356636, 0.025680754333734512, 0.005039595067501068, 0.007310409098863602, 0.005721874535083771, 0.005866417661309242, 0.006263407412916422, 0.23853540420532227], [0.01139602530747652, 0.04021399840712547, 0.004097555298358202, 0.00659250607714057, 0.009781518951058388, 0.004275632556527853, 0.005514323245733976, 0.39755094051361084], [0.010600860230624676, 0.03823235630989075, 0.002528026234358549, 0.002313795732334256, 0.006031970959156752, 0.004720599856227636, 0.011787116527557373, 0.24178721010684967], [0.009724101983010769, 0.026512259617447853, 0.004221614450216293, 0.00862379465252161, 0.005914922337979078, 0.0035414511803537607, 0.004453083034604788, 0.38200119137763977], [0.011998691596090794, 0.00927774142473936, 0.0034956405870616436, 0.009231055155396461, 0.015898576006293297, 0.008460788987576962, 0.0031572398729622364, 0.36905476450920105], [0.008224984630942345, 0.010671083815395832, 0.0015613113064318895, 0.015236658044159412, 0.011912493035197258, 0.007133821025490761, 0.010544104501605034, 0.33893024921417236], [0.004583782982081175, 0.01674829237163067, 0.00132132472936064, 0.0052017453126609325, 0.0061356485821306705, 0.003765933448448777, 0.006274424958974123, 0.2880767285823822], [0.00317165139131248, 0.003815830685198307, 0.0014670805539935827, 0.0012084972113370895, 0.0014251519460231066, 0.002050597919151187, 0.0063584051094949245, 0.47811266779899597]], [[0.139570415019989, 0.048960089683532715, 0.010567664168775082, 0.029556963592767715, 0.0061595244333148, 0.02951035648584366, 0.03424634039402008, 0.26719775795936584], [0.0010525814723223448, 0.21573597192764282, 5.22137779626064e-05, 0.0007142201066017151, 0.00036420393735170364, 0.0010480753844603896, 0.0008295660954900086, 0.1703176498413086], [0.07067390531301498, 0.17147256433963776, 0.00010828213999047875, 0.0022368491627275944, 0.007475680205971003, 0.01340938825160265, 0.015593297779560089, 0.36594629287719727], [0.015676237642765045, 0.026943713426589966, 0.023994797840714455, 0.009724375791847706, 0.0024407189339399338, 0.003673345549032092, 0.14758728444576263, 0.24291294813156128], [0.004826262127608061, 0.0038076189812272787, 0.03343833610415459, 0.07753121852874756, 0.0012479076394811273, 0.0014325695810839534, 0.0008384762331843376, 0.34902843832969666], [0.08370334655046463, 0.0014820311916992068, 0.018722429871559143, 0.07246594876050949, 0.0005756586324423552, 0.001453503267839551, 0.00210462580434978, 0.3698594570159912], [0.03923267871141434, 0.003790271934121847, 0.06171872466802597, 0.021258851513266563, 0.0006978320889174938, 0.0019097381737083197, 0.012133904732763767, 0.3379511833190918], [0.13828830420970917, 0.04127419367432594, 0.0035133615601807833, 0.02101023495197296, 0.006222013849765062, 0.03766386955976486, 0.04638373479247093, 0.21558576822280884], [0.07319413870573044, 0.02846449799835682, 0.009935220703482628, 0.020917033776640892, 0.010961675085127354, 0.026058079674839973, 0.041317325085401535, 0.24073384702205658]], [[0.10289625823497772, 0.018722767010331154, 0.0013742772862315178, 0.01276630163192749, 0.004419051576405764, 0.004897411447018385, 0.04978408291935921, 0.051203250885009766], [0.11799205839633942, 0.12959042191505432, 0.00145761389285326, 0.004579771310091019, 0.0026518211234360933, 0.0022720787674188614, 0.052544161677360535, 0.05461887642741203], [0.03588656708598137, 0.07371551543474197, 0.004669873043894768, 0.011105416342616081, 0.009820433333516121, 0.007865686900913715, 0.022701747715473175, 0.21309876441955566], [0.0564408004283905, 0.01073156762868166, 0.0014565858291462064, 0.004775232635438442, 0.007413520477712154, 0.006316609680652618, 0.3586348295211792, 0.0459785982966423], [0.10709409415721893, 0.008821564726531506, 0.0008644995978102088, 0.0015205212403088808, 0.0006168255931697786, 0.0008936897502280772, 0.029101520776748657, 0.20689548552036285], [0.09019187092781067, 0.009715721011161804, 0.0006356050143949687, 0.0018064918695017695, 0.002422560937702656, 0.0015673176385462284, 0.013480921275913715, 0.27601158618927], [0.06218336895108223, 0.020896082744002342, 0.002786192111670971, 0.0016405622009187937, 0.001782930688932538, 0.002505082171410322, 0.010956077836453915, 0.3445413410663605], [0.15410488843917847, 0.02712096832692623, 0.001029302948154509, 0.005088322330266237, 0.002205743221566081, 0.0021048653870821, 0.05023520812392235, 0.08886346966028214], [0.002372149610891938, 0.001906862948089838, 0.0007091793813742697, 0.0006218882626853883, 0.0008513749344274402, 0.0007196696242317557, 0.0016267203027382493, 0.48397573828697205]], [[0.07528041303157806, 0.5505829453468323, 0.007514370139688253, 0.0081545514985919, 0.012097654864192009, 0.06066875904798508, 0.06331667304039001, 0.09285833686590195], [0.0015781077090650797, 0.01243663765490055, 0.000761339208111167, 0.0011568123009055853, 0.0005532116629183292, 0.007559823337942362, 0.001159479608759284, 0.027029061689972878], [0.000780573463998735, 0.017395876348018646, 0.005138861481100321, 0.002892897929996252, 0.007520338054746389, 0.024654734879732132, 0.02250443957746029, 0.21692578494548798], [0.0016480220947414637, 0.0016632579499855638, 0.005961955059319735, 0.0024919621646404266, 0.0017828393029049039, 0.004487823229283094, 0.00265551102347672, 0.11206835508346558], [0.004596197512000799, 0.0009887930937111378, 0.007241436745971441, 0.00015203337534330785, 0.00032288688817061484, 0.0035447953268885612, 0.0008390126167796552, 0.0653250515460968], [0.004694036673754454, 0.006833398714661598, 0.0009412026265636086, 0.005467477720230818, 0.00034866968053393066, 0.003190305782482028, 0.004664421547204256, 0.10226564854383469], [0.0002783294767141342, 6.7850196501240134e-06, 5.451321339933202e-05, 1.8367582015343942e-06, 3.508809459162876e-05, 0.00010729442874435335, 2.2561776859220117e-05, 0.002842082642018795], [0.0890103131532669, 0.07785212248563766, 0.005868659820407629, 0.003588279942050576, 0.004618037957698107, 0.0057329339906573296, 0.011873433366417885, 0.19175979495048523], [0.04517829790711403, 0.05627714470028877, 0.017643898725509644, 0.015165286138653755, 0.011751209385693073, 0.020329898223280907, 0.04869578778743744, 0.2504197061061859]], [[0.03887219354510307, 0.027776392176747322, 0.000757195521146059, 0.006674075033515692, 0.005416585598140955, 0.004057684447616339, 0.00699286675080657, 0.46067506074905396], [0.000724693585652858, 0.002181157236918807, 3.543791171978228e-05, 0.0003073539410252124, 0.00014391100557986647, 0.00037076984881423414, 0.0008658475708216429, 0.3936239778995514], [0.0004636448866222054, 0.0008735298179090023, 1.942684866662603e-05, 5.949027763563208e-05, 0.00013078321353532374, 0.0006501429015770555, 0.00033773420727811754, 0.4487721621990204], [0.009694698266685009, 0.00605228915810585, 0.002183745615184307, 0.00193732138723135, 0.000617838348262012, 0.0010090431896969676, 0.0023053723853081465, 0.24940550327301025], [0.00025447012740187347, 0.001014708774164319, 0.0012865019962191582, 0.0014641362940892577, 0.0001525093975942582, 0.0003483017208054662, 0.0002487985184416175, 0.41879361867904663], [0.0032796317245811224, 0.0023197925183922052, 0.001466546906158328, 0.001557107549160719, 0.0006841841386631131, 0.0010070785647258162, 0.0012539854506030679, 0.4002930521965027], [0.0002466780715622008, 0.0017972913337871432, 0.0028018862940371037, 0.0010170921450480819, 0.0002896444930229336, 0.0003109632816631347, 0.0011466684518381953, 0.27111801505088806], [0.02233661711215973, 0.008134892210364342, 0.0026699446607381105, 0.002235323190689087, 0.0026772483251988888, 0.001221737009473145, 0.005273064598441124, 0.043805088847875595], [0.0032990286126732826, 0.00206870399415493, 0.0008751602726988494, 0.0030658964533358812, 0.0014470196329057217, 0.002316804137080908, 0.0015734852058812976, 0.4774307310581207]], [[0.37982413172721863, 0.11117511987686157, 0.023168686777353287, 0.06998268514871597, 0.007911001332104206, 0.02765064686536789, 0.2104039192199707, 0.05151091516017914], [0.07135462760925293, 0.12506183981895447, 0.006461805198341608, 0.06561027467250824, 0.006908669136464596, 0.009605640545487404, 0.02335977740585804, 0.135210782289505], [0.005507349967956543, 0.0697098821401596, 0.004777554888278246, 0.018232645466923714, 0.018764374777674675, 0.03664420172572136, 0.009778556413948536, 0.26413843035697937], [0.03023870475590229, 0.05722988769412041, 0.00428718002513051, 0.00888246763497591, 0.004540345631539822, 0.004844400100409985, 0.07130539417266846, 0.21359269320964813], [0.018921684473752975, 0.008791389875113964, 0.0070966617204248905, 0.0026162010617554188, 0.0007993182516656816, 0.0005278706084936857, 0.0074110026471316814, 0.35006698966026306], [0.020261550322175026, 0.02027243748307228, 0.0403585322201252, 0.006405416410416365, 0.010466115549206734, 0.00706848967820406, 0.008198833093047142, 0.346770316362381], [0.03130337968468666, 0.008061649277806282, 0.007199801970273256, 0.018669651821255684, 0.0010074260644614697, 0.0015692927408963442, 0.00830166693776846, 0.31988975405693054], [0.0454564169049263, 0.04180770367383957, 0.008032647892832756, 0.026290351524949074, 0.01669144816696644, 0.017197489738464355, 0.0743250846862793, 0.26057830452919006], [0.006560749374330044, 0.004632902331650257, 0.0027243869844824076, 0.0037464250344783068, 0.010423772037029266, 0.007968236692249775, 0.005649067461490631, 0.4478813409805298]]], [[[0.00019136350601911545, 0.0009103208431042731, 0.0003853342786896974, 0.0001866445818450302, 0.00035458983620628715, 0.0005960086127743125, 0.001435288693755865, 0.49243876338005066], [0.00040745188016444445, 0.0005516891833394766, 8.585672912886366e-05, 4.36004156654235e-05, 9.114493877859786e-06, 1.6389247321058065e-05, 0.00013914727605879307, 0.440797358751297], [2.1794699932797812e-05, 6.046155613148585e-05, 0.00022290619381237775, 8.975849050329998e-05, 7.32401676941663e-05, 2.691619738470763e-05, 4.034143057651818e-05, 0.4824428856372833], [6.295902949204901e-06, 0.0001687098847469315, 1.4306229786598124e-05, 0.001585383783094585, 0.0010070924181491137, 0.0005593216046690941, 1.904971395561006e-05, 0.41748276352882385], [4.942282430420164e-06, 0.00010580255184322596, 3.394395753275603e-05, 1.1801466826000251e-05, 0.00019035862351302058, 0.0002730124397203326, 0.0008204026380553842, 0.35938921570777893], [9.295687277699471e-07, 5.042512384534348e-06, 2.548368229327025e-06, 3.4707863960647956e-07, 8.447937943856232e-06, 1.3873927855456714e-05, 0.00017733579443302006, 0.4880768954753876], [2.1202245079621207e-06, 1.9603039618232287e-06, 1.9454557786957594e-07, 4.4716239244735334e-07, 1.3283220141602214e-06, 5.0499393182690255e-06, 2.0365290765766986e-05, 0.030963612720370293], [3.681482849060558e-05, 0.00017398048657923937, 5.955187134532025e-06, 1.1472105143184308e-05, 1.3377554751059506e-05, 0.00038810836849734187, 0.0006162631325423717, 0.25619208812713623], [0.007586413994431496, 0.011317050084471703, 0.007993200793862343, 0.004722606856375933, 0.00699605792760849, 0.005569026339799166, 0.023229949176311493, 0.4181354343891144]], [[0.0002714426664169878, 0.009124048985540867, 0.00036560409353114665, 0.0002964880259241909, 0.00016312215302605182, 0.00011988421465503052, 4.996878851670772e-05, 0.3086925745010376], [0.002186807570978999, 0.00276686972938478, 0.0002940267149824649, 0.00015135544526856393, 9.212002623826265e-05, 5.921020056121051e-05, 0.0002555855899117887, 0.34468403458595276], [0.007654054090380669, 0.02330482006072998, 0.00032096198992803693, 0.0017971759662032127, 0.0005989883211441338, 0.0024323780089616776, 0.0035198742989450693, 0.26419106125831604], [0.012541486881673336, 0.001466069370508194, 0.000197612214833498, 0.00021747058781329542, 8.428033470408991e-05, 7.821858889656141e-05, 0.0004215656954329461, 0.19121558964252472], [0.001385140116326511, 0.0012575380969792604, 0.0026216129772365093, 0.0004486197722144425, 0.0007807505899108946, 0.0009508355869911611, 0.001133957994170487, 0.21775534749031067], [0.0017827348783612251, 0.0013278929982334375, 0.0028817562852054834, 0.0018652592552825809, 0.002160343574360013, 0.002896508201956749, 0.0024851509369909763, 0.2271927297115326], [0.0034015460405498743, 0.0008114134543575346, 0.0004506103286985308, 0.0003584881778806448, 0.0004759130533784628, 0.0011438089422881603, 0.0016666320152580738, 0.1479942500591278], [0.003067975165322423, 0.0018515866249799728, 0.000811909674666822, 0.00079435232328251, 0.0003807050234172493, 0.000823809124995023, 0.0011845029657706618, 0.09614430367946625], [0.011765614151954651, 0.02310115285217762, 0.003569986904039979, 0.004852436948567629, 0.0020988862961530685, 0.004189661238342524, 0.011541095562279224, 0.43495887517929077]], [[0.4380345046520233, 0.1822289228439331, 0.08894407749176025, 0.02986772544682026, 0.027813255786895752, 0.016022173687815666, 0.0747062936425209, 0.05193968489766121], [0.009199031628668308, 0.004667792934924364, 0.009137160144746304, 0.012683101929724216, 0.0035537932999432087, 0.0030310810543596745, 0.006271325517445803, 0.030862925574183464], [0.010609259828925133, 0.11760304123163223, 0.008927362971007824, 0.019986722618341446, 0.005015614442527294, 0.006804815027862787, 0.017998838797211647, 0.09112320095300674], [0.024041080847382545, 0.0005371371516957879, 0.003641566028818488, 0.0024012846406549215, 0.0004044374800287187, 0.00027393706841394305, 0.0006514793494716287, 0.1958731710910797], [0.006959776859730482, 0.0003480169107206166, 0.0022449621465057135, 0.00022857473231852055, 0.0001925065735122189, 5.834653347847052e-05, 0.0008453947957605124, 0.2698003053665161], [0.007929218001663685, 0.0008091423660516739, 0.0017295961733907461, 0.003142121247947216, 0.0001985627895919606, 0.00018417609680909663, 0.0004582138790283352, 0.3351239562034607], [0.012586020864546299, 0.0008307071402668953, 0.0037708906456828117, 0.009140275418758392, 0.00019693837384693325, 9.386949386680499e-05, 0.0002821652451530099, 0.15118898451328278], [0.014482776634395123, 0.0017777791945263743, 0.015015839599072933, 0.004568885546177626, 0.0017355424351990223, 0.0022575752809643745, 0.001487387577071786, 0.25307780504226685], [0.011323085054755211, 0.00651855394244194, 0.01277847122400999, 0.006761050317436457, 0.002228126395493746, 0.002959158271551132, 0.008155886083841324, 0.4455343186855316]], [[0.05288806930184364, 0.00782070867717266, 0.007269850000739098, 0.0032817272003740072, 0.008160431869328022, 0.01143732201308012, 0.044403888285160065, 0.1133914515376091], [0.05489321053028107, 0.0618562214076519, 0.010713323019444942, 0.008033191785216331, 0.015370874665677547, 0.019974352791905403, 0.0536336675286293, 0.1875428408384323], [0.06038052588701248, 0.13203848898410797, 0.01169673167169094, 0.016224045306444168, 0.022964222356677055, 0.012506515718996525, 0.02547159045934677, 0.08438663184642792], [0.07196445018053055, 0.021891625598073006, 0.010489667765796185, 0.0037817968986928463, 0.009669381193816662, 0.014900454320013523, 0.08749127388000488, 0.27659332752227783], [0.040930040180683136, 0.039835136383771896, 0.003263308899477124, 0.0016803618054836988, 0.009910948574543, 0.0272970050573349, 0.0922524631023407, 0.2565259337425232], [0.03380874544382095, 0.028989844024181366, 0.016662636771798134, 0.014031721279025078, 0.012928691692650318, 0.028152860701084137, 0.05670379474759102, 0.1557634472846985], [0.05737714841961861, 0.025457613170146942, 0.019202768802642822, 0.012414413504302502, 0.012507575564086437, 0.03809475526213646, 0.05198213458061218, 0.3081522285938263], [0.039483342319726944, 0.014930213801562786, 0.01637307181954384, 0.005796234123408794, 0.019513661041855812, 0.016688790172338486, 0.03114703670144081, 0.2929585576057434], [0.012113629840314388, 0.006057837046682835, 0.007107787765562534, 0.00616078544408083, 0.0055975657887756824, 0.012781639583408833, 0.016707587987184525, 0.41811296343803406]], [[0.0020295148715376854, 0.0004082861414644867, 9.248564310837537e-05, 0.00010379328887211159, 0.00010172392649110407, 0.0001489232381572947, 0.0038650024216622114, 0.18233542144298553], [0.002624241868034005, 0.0006797122769057751, 0.00010801738972077146, 0.00018314596673008054, 0.00021032973018009216, 0.0007358366274274886, 0.001531356479972601, 0.39267027378082275], [0.00010029523400589824, 0.0009325147839263082, 2.193685941165313e-05, 0.00010872191342059523, 6.0461050452431664e-05, 0.00017671070236247033, 0.0003205718530807644, 0.10384334623813629], [0.0003827627224382013, 0.00021558078879024833, 0.0004318539286032319, 0.0004898869665339589, 0.0017401190707460046, 0.000680110533721745, 0.0005245347274467349, 0.32894113659858704], [7.386571087408811e-05, 0.00017820157518144697, 0.0004630174080375582, 6.960820610402152e-05, 0.0018604402430355549, 0.0007925601094029844, 0.0009891301160678267, 0.19371670484542847], [9.427111217519268e-05, 7.925676618469879e-05, 0.0001329022488789633, 4.380678365123458e-05, 0.000238862368860282, 0.0002338258782401681, 0.0006765327998436987, 0.2800998091697693], [2.914754622906912e-05, 5.7750745327211916e-05, 0.00016429985407739878, 3.022764076376916e-06, 0.00011887985601788387, 4.649962647818029e-05, 0.00031188392313197255, 0.05767207220196724], [0.0010175948264077306, 0.0017584979068487883, 6.12578442087397e-05, 0.00023389598936773837, 0.0003069673548452556, 0.0003227578417863697, 0.0037570991553366184, 0.2990686893463135], [0.027546469122171402, 0.011358617804944515, 0.003480267710983753, 0.008092930540442467, 0.0069106868468225, 0.007899426855146885, 0.05221763253211975, 0.35746023058891296]], [[0.0037763488944619894, 0.0025825605262070894, 0.0024706560652703047, 0.0010416223667562008, 0.0025366521440446377, 0.00286444672383368, 0.003513069124892354, 0.09872142225503922], [0.006882202345877886, 0.044318173080682755, 0.001700531574897468, 0.0014839189825579524, 0.0019607634749263525, 0.004078064113855362, 0.015904247760772705, 0.3590069115161896], [0.003527373308315873, 0.009808585979044437, 0.0009844688465818763, 0.001145608490332961, 0.006327305920422077, 0.01049965899437666, 0.0077958861365914345, 0.41549381613731384], [0.03498884290456772, 0.024515783414244652, 0.01361811999231577, 0.008705361746251583, 0.0022068338003009558, 0.011655578389763832, 0.12867657840251923, 0.2918608784675598], [0.034937478601932526, 0.02187684178352356, 0.0233621746301651, 0.01020959485322237, 0.0018312670290470123, 0.005703664384782314, 0.01857880689203739, 0.36908382177352905], [0.011448659002780914, 0.012523503974080086, 0.008944014087319374, 0.0034896284341812134, 0.004712685476988554, 0.009374471381306648, 0.018231382593512535, 0.37439408898353577], [0.009526040405035019, 0.007649900391697884, 0.0056343767791986465, 0.0025639834348112345, 0.0005148480995558202, 0.005586004815995693, 0.048142801970243454, 0.35823243856430054], [0.01870672218501568, 0.009837617166340351, 0.002930890303105116, 0.0020904738921672106, 0.0014542025746777654, 0.0065223355777561665, 0.032493725419044495, 0.34588873386383057], [0.010574308224022388, 0.008400256745517254, 0.009340275079011917, 0.005001489073038101, 0.005060956813395023, 0.013823838904500008, 0.028126081451773643, 0.426472544670105]], [[0.05421631783246994, 0.138983815908432, 0.0561932697892189, 0.029965845867991447, 0.044409897178411484, 0.03141683340072632, 0.11605864018201828, 0.2397153377532959], [0.000681057688780129, 0.001357431523501873, 0.00125163106713444, 0.0006632592412643135, 0.0010806823847815394, 0.0005186382331885397, 0.0012796970549970865, 0.12898722290992737], [0.0001600809337105602, 0.0009218375198543072, 0.0006701533566229045, 0.0005535040982067585, 0.00033883846481330693, 0.0001901230134535581, 0.0057203322649002075, 0.4523313343524933], [0.013321366161108017, 0.002082439372316003, 0.0019242085982114077, 0.0015758576337248087, 0.001667595119215548, 0.0017008399590849876, 0.000729957246221602, 0.10652660578489304], [0.0044158524833619595, 0.0009084834018722177, 0.0009169220575131476, 0.0004780502640642226, 0.0017170432256534696, 0.0029020707588642836, 0.0047433460131287575, 0.33696505427360535], [0.00047257557162083685, 0.0013362827012315392, 0.00021733573521487415, 0.00030632695415988564, 0.0001164312707260251, 0.00024130770179908723, 0.0010701542487367988, 0.4651394486427307], [0.0010849495884031057, 0.0001799976162146777, 0.0002541248104535043, 0.00014488214219454676, 0.0005791639559902251, 0.0006234379834495485, 0.00016335118561983109, 0.02841385081410408], [0.003579361829906702, 0.002044499618932605, 0.0036599847953766584, 0.003470990341156721, 0.0014864244731143117, 0.0013644316932186484, 0.0017540830885991454, 0.05536544695496559], [0.005440441891551018, 0.013607610948383808, 0.005401376634836197, 0.003911169711500406, 0.002514511113986373, 0.0027889576740562916, 0.009571418166160583, 0.4550081491470337]], [[0.00209295772947371, 0.0028060325421392918, 0.001693354337476194, 0.0025312923826277256, 0.00465938588604331, 0.008705212734639645, 0.02339906431734562, 0.43895095586776733], [0.0004441560886334628, 0.0004839450994040817, 0.00022090444690547884, 0.0005268919048830867, 0.00014262841432355344, 0.0002728021936491132, 0.0010000448673963547, 0.44038984179496765], [0.00046337631647475064, 0.0006490237428806722, 0.00024718104396015406, 0.0008758771582506597, 0.0007043457590043545, 0.0015771863982081413, 0.0012329698074609041, 0.436208575963974], [0.0002598173450678587, 0.00013225982547737658, 0.0003473749093245715, 0.00016772405069787055, 0.00035238757845945656, 0.00042191363172605634, 0.00045209721429273486, 0.42688727378845215], [0.0003084332274738699, 0.00010986230336129665, 0.0005706094088964164, 0.000599258579313755, 0.0008192628738470376, 0.0006414668750949204, 0.0006772656342945993, 0.4073808789253235], [8.669096132507548e-05, 7.803433254593983e-05, 6.598359323106706e-05, 0.000368508422980085, 0.00031111689168028533, 0.0005133171798661351, 0.0005181719898246229, 0.4551939070224762], [6.778785609640181e-05, 5.096849781693891e-05, 0.0001579010277055204, 0.00047663316945545375, 0.00027328458963893354, 0.00018050920334644616, 0.00019660960242617875, 0.278959184885025], [0.000703852332662791, 0.0008035501814447343, 0.00033292590524069965, 0.000763967982493341, 0.0007253350340761244, 0.000616567675024271, 0.001542552257888019, 0.1387988030910492], [0.009934372268617153, 0.010637120343744755, 0.005114453379064798, 0.006524781696498394, 0.0051660798490047455, 0.008624675683677197, 0.023224569857120514, 0.41787734627723694]], [[0.15350079536437988, 0.21495573222637177, 0.017333583906292915, 0.06902571022510529, 0.11868312209844589, 0.1206250712275505, 0.24720345437526703, 0.017826182767748833], [0.004190849605947733, 0.0034088639076799154, 0.006869701202958822, 0.010367468930780888, 0.005993550177663565, 0.006495932582765818, 0.010392483323812485, 0.1141054555773735], [0.004731690511107445, 0.0031023784540593624, 0.007860047742724419, 0.007952983491122723, 0.005466417409479618, 0.008948655799031258, 0.014622583985328674, 0.24234260618686676], [0.003259655088186264, 0.0034685134887695312, 0.0042036669328808784, 0.006843035575002432, 0.004207336809486151, 0.003274918533861637, 0.012310788035392761, 0.10838446021080017], [0.007450995966792107, 0.004557818174362183, 0.0058028195053339005, 0.011403405107557774, 0.0068854414857923985, 0.007046618033200502, 0.014744245447218418, 0.08358140289783478], [0.006392565555870533, 0.004831385798752308, 0.015062008053064346, 0.019236113876104355, 0.007355678826570511, 0.012718730606138706, 0.014451921917498112, 0.24243146181106567], [0.005789309274405241, 0.004849296994507313, 0.00945041049271822, 0.006580303888767958, 0.005731581244617701, 0.007881954312324524, 0.00651024142280221, 0.13988018035888672], [0.004549788311123848, 0.006467815954238176, 0.00832538865506649, 0.012921258807182312, 0.00652841804549098, 0.005633087828755379, 0.01602678745985031, 0.028656112030148506], [0.005580626893788576, 0.005660484079271555, 0.003878110321238637, 0.0022622316610068083, 0.0034939160104840994, 0.005023148376494646, 0.004064449109137058, 0.4632215201854706]], [[0.11249332129955292, 0.13519611954689026, 0.005843060091137886, 0.0030350645538419485, 0.04950470104813576, 0.023332413285970688, 0.26362738013267517, 0.1887912154197693], [0.004597698338329792, 0.03217235952615738, 0.0010082327062264085, 0.001800397876650095, 0.0059030381962656975, 0.0019013967830687761, 0.025208251550793648, 0.04989396780729294], [0.001988824922591448, 0.027555108070373535, 0.0006233253516256809, 0.0019463642966002226, 0.008852565661072731, 0.006860843859612942, 0.008148842491209507, 0.3566909432411194], [0.00419637793675065, 0.008456779643893242, 0.002130867913365364, 0.0008287517121061683, 0.004039273597300053, 0.0017279366729781032, 0.009923389181494713, 0.2545944154262543], [0.007552378345280886, 0.005483344197273254, 0.002191618550568819, 0.0008577117114327848, 0.001828051288612187, 0.0018603377975523472, 0.011331876739859581, 0.26711463928222656], [0.008910521864891052, 0.0016071475110948086, 0.000905586639419198, 0.0007425961666740477, 0.0008714159484952688, 0.0015417730901390314, 0.004404224921017885, 0.4368661344051361], [0.0033076212275773287, 0.0012700386578217149, 0.0010856080334633589, 0.0010807514190673828, 0.002286955015733838, 0.0016150734154507518, 0.0016566591802984476, 0.4291403591632843], [0.008530913852155209, 0.010583840310573578, 0.0018345118733122945, 0.0012463959865272045, 0.011005932465195656, 0.005545108579099178, 0.029818521812558174, 0.34172528982162476], [0.009417522698640823, 0.013258809223771095, 0.005044627469033003, 0.004234619904309511, 0.011044901795685291, 0.005227820947766304, 0.010213804431259632, 0.4436703324317932]], [[0.003025195561349392, 0.000730594270862639, 0.000296466751024127, 0.0008506119484081864, 0.0008684821659699082, 0.0012133477721363306, 0.004668611567467451, 0.05617520585656166], [0.005293190944939852, 0.006355307064950466, 0.002758533926680684, 0.005849230568856001, 0.005586117040365934, 0.004126057494431734, 0.010644329711794853, 0.08628882467746735], [0.002309236442670226, 0.0019026253139600158, 0.001240355777554214, 0.001552533358335495, 0.0011545817833393812, 0.003917337395250797, 0.02118201181292534, 0.16967229545116425], [0.0029574118088930845, 0.0007944938261061907, 0.0014390898868441582, 0.0016552872257307172, 0.0007095510372892022, 0.0009399499394930899, 0.003165513277053833, 0.1897188276052475], [0.0024764856789261103, 0.0008285234798677266, 0.0009028236963786185, 0.0011658631265163422, 0.0003240696096327156, 0.0003809835761785507, 0.0014742979547008872, 0.19406522810459137], [0.00461789732798934, 0.0008781043579801917, 0.0026221054140478373, 0.0015305732376873493, 0.000263807422015816, 0.0005275693256407976, 0.0028601663652807474, 0.25242987275123596], [0.0015137724112719297, 0.0008567758486606181, 0.0009829149348661304, 0.000794274965301156, 0.00040636619087308645, 0.0005918711540289223, 0.0012872687075287104, 0.299919992685318], [0.014798171818256378, 0.006798931863158941, 0.0013256615493446589, 0.00314573897048831, 0.002213665982708335, 0.006497263442724943, 0.0140540087595582, 0.08468930423259735], [0.001995021477341652, 0.002414325950667262, 0.0019218079978600144, 0.002220926573500037, 0.0029377357568591833, 0.003877513576298952, 0.007813812233507633, 0.4701915383338928]], [[0.07570024579763412, 0.11817161738872528, 0.0011959581170231104, 0.0028538990300148726, 0.0026068768929690123, 0.006106139626353979, 0.054107941687107086, 0.35916051268577576], [0.00018110869859810919, 0.0006976760923862457, 0.00011162082228111103, 0.00012310886813793331, 0.0004759879957418889, 0.0004055437457282096, 0.0005344916135072708, 0.1458137184381485], [0.00032298368751071393, 0.0004531797021627426, 0.00012644869275391102, 0.00033590340171940625, 0.001052728621289134, 0.0009646816179156303, 0.004289843607693911, 0.4045754671096802], [7.600667595397681e-05, 0.000768825993873179, 8.489628089591861e-05, 0.0001785384665708989, 0.00040724262362346053, 0.00041737905121408403, 0.0008389552822336555, 0.33915355801582336], [0.0002618652652017772, 0.0005048560560680926, 5.357438567443751e-05, 0.0004163106787018478, 0.0003822004946414381, 0.0024052902590483427, 0.004948529880493879, 0.24966426193714142], [0.0005612139939330518, 0.0017769794212654233, 2.2496307792607695e-05, 2.2088916011853144e-05, 6.533411215059459e-05, 0.00019873524433933198, 0.0019323339220136404, 0.35813212394714355], [0.0001232411159435287, 0.00018664235540200025, 1.6475127267767675e-05, 1.0163040315092076e-05, 8.045938557188492e-06, 2.573806887085084e-05, 0.0002803881361614913, 0.37757956981658936], [0.03664303570985794, 0.006693859584629536, 0.000755955115891993, 0.0003247038403060287, 7.903648656792939e-05, 0.00012029314530082047, 0.0013174255145713687, 0.438073992729187], [0.03297889977693558, 0.02413228526711464, 0.005460791289806366, 0.005110255908221006, 0.003336946479976177, 0.005129239056259394, 0.026923280209302902, 0.3901367783546448]]], [[[3.740987253308958e-08, 3.211378327705461e-07, 6.937708185716929e-09, 1.113583010525776e-11, 3.039694718154351e-09, 7.562473980371465e-10, 7.514056221680221e-08, 0.5045101642608643], [6.589774559362382e-11, 5.7181419599317e-09, 1.4601390097013223e-09, 4.4432074020051004e-08, 2.2959119050369736e-09, 6.537946850571075e-10, 1.0630875069139734e-09, 0.0005028883460909128], [3.0372256359240124e-12, 7.303600085828421e-11, 2.5988408647315e-10, 4.88320772706885e-11, 5.637434696836863e-08, 5.461978247467414e-08, 1.4145443856250495e-06, 0.0006053330725990236], [4.7451619185606003e-14, 1.9717025321469572e-12, 1.235864383920815e-12, 3.0372889533308856e-12, 2.6449308021536666e-11, 2.049460427755445e-12, 1.1233368679697264e-09, 6.0491220210678875e-06], [1.0314777596507133e-14, 2.467993969184224e-15, 4.917058446063209e-14, 6.861952846215491e-12, 1.0769500569107748e-10, 5.7983628315438906e-11, 3.320865457623334e-11, 2.7329479053150862e-06], [2.918147494479495e-13, 1.3918184503134909e-14, 2.525621775514151e-19, 1.1193925036950416e-18, 1.6104017040686598e-17, 4.490480456551503e-14, 5.975308789429867e-12, 9.181178484141128e-08], [3.3899256015115786e-13, 2.76252754785616e-16, 8.467104760623754e-20, 1.786232878675188e-20, 6.642720231221392e-18, 3.124306860452378e-15, 1.8195808193510743e-09, 2.999131083925022e-06], [0.002193771069869399, 1.8509306087821642e-08, 4.306588505947895e-12, 6.141861046831553e-17, 3.121117887285084e-16, 8.327319817860376e-15, 5.5383850283696745e-11, 0.4555179178714752], [0.0020556191448122263, 0.0033260819036513567, 0.0006128359236754477, 1.9764953322010115e-05, 0.0003356840752530843, 0.00031012206454761326, 0.0011823587119579315, 0.4819193184375763]], [[0.6438615322113037, 0.04106004908680916, 0.0467059351503849, 0.016375252977013588, 0.04054352268576622, 0.010232903994619846, 0.05405689403414726, 0.06711835414171219], [0.002653072588145733, 0.0019380440935492516, 0.0010743284365162253, 0.0005326402024365962, 0.0011532068019732833, 0.0005938852555118501, 0.003066868055611849, 0.222395658493042], [0.001087543903850019, 0.0008998917764984071, 0.0006031688535586, 0.0004564943665172905, 0.0007406265358440578, 0.0006603269721381366, 0.0021899729035794735, 0.476723313331604], [0.008773121051490307, 0.002051224699243903, 0.0028216890059411526, 0.004565601237118244, 0.004844783805310726, 0.002173337386921048, 0.0015979105373844504, 0.1786527931690216], [0.003495622193440795, 0.001015661284327507, 0.0008783711236901581, 0.0019982093945145607, 0.0005529147456400096, 0.0004996185889467597, 0.0006683977553620934, 0.216289684176445], [0.0020387747790664434, 0.0024558338336646557, 0.0003375773085281253, 0.000317808473482728, 0.0004023729416076094, 0.00030882220016792417, 0.0007135040941648185, 0.4757401943206787], [0.0007274269592016935, 0.001332490355707705, 0.0002902174019254744, 0.0003721984685398638, 0.00020304735517129302, 0.00010823544289451092, 0.0001696606632322073, 0.4381638467311859], [0.06219317764043808, 0.01544131338596344, 0.010523424483835697, 0.004260147921741009, 0.0021767974831163883, 0.002337446203455329, 0.01583000086247921, 0.33552438020706177], [0.012893562205135822, 0.007830215618014336, 0.003152543446049094, 0.0021458270493894815, 0.004008903633803129, 0.003495629411190748, 0.010987005196511745, 0.4480225741863251]], [[0.009872550144791603, 0.0030370792374014854, 0.004227162338793278, 0.0005076945526525378, 0.0012006046017631888, 0.0015230132266879082, 0.005872041452676058, 0.4000552296638489], [0.0016027145320549607, 0.00038751622196286917, 0.0007601724937558174, 0.0010024802759289742, 0.00017135724192485213, 0.0004500047070905566, 0.008400284685194492, 0.3348873257637024], [0.0006006041658110917, 0.0006850181962363422, 0.0003370451449882239, 0.0001005050289677456, 0.00025179461226798594, 0.0005235635908320546, 0.001439388026483357, 0.4884389042854309], [0.0006929365335963666, 9.564725769450888e-05, 0.00032427359838038683, 0.0003493450058158487, 0.00019777752459049225, 0.0002632479299791157, 0.0052959490567445755, 0.39048466086387634], [0.00048638577573001385, 3.7827634514542297e-05, 7.17494694981724e-05, 0.00011375904432497919, 8.189241634681821e-05, 0.0002782107039820403, 0.002025419380515814, 0.42078515887260437], [0.002576622413471341, 0.0004004511865787208, 0.0001797809381969273, 4.0434664697386324e-05, 0.0001752369716996327, 0.00027377723017707467, 0.0037011492531746626, 0.44914600253105164], [0.0029970393516123295, 1.4134778211882804e-05, 3.397305044927634e-05, 4.923252708977088e-05, 7.818665471859276e-05, 0.00011753539001801983, 0.0027835711371153593, 0.1896081417798996], [0.005570522975176573, 0.003539224388077855, 0.0005595625261776149, 2.568858144513797e-05, 3.507287328829989e-05, 3.211749572074041e-05, 0.0020424367394298315, 0.4302707612514496], [0.009110670536756516, 0.016728438436985016, 0.008570024743676186, 0.0020402141381055117, 0.00516263535246253, 0.005033999681472778, 0.01326029933989048, 0.42867419123649597]], [[0.0011436513159424067, 0.0012370236217975616, 0.0004392194387037307, 0.0001492508890805766, 0.0002657849108800292, 0.00023867652635090053, 0.0030885462183505297, 0.49074864387512207], [0.00011453475599410012, 0.0018660679925233126, 7.23780831322074e-05, 0.00010274900705553591, 0.00011686662037391216, 0.0002201199094997719, 0.00024283005041070282, 0.45801982283592224], [7.588630978716537e-05, 0.0005660575698129833, 9.463145397603512e-05, 3.113040293101221e-05, 3.555275179678574e-05, 0.0001165039575425908, 0.0004999481607228518, 0.48449042439460754], [0.00034343224251642823, 0.001627131481654942, 0.0004034104058519006, 0.000142949735163711, 0.00019744868041016161, 0.0003961980401072651, 0.0011452591279521585, 0.40748274326324463], [3.477352220215835e-05, 0.0001616227236809209, 4.713012822321616e-05, 3.613242370192893e-06, 2.7937687264056876e-05, 0.00018145858484786004, 0.0010602050460875034, 0.4821964204311371], [0.00023894365585874766, 0.00020664882322307676, 1.2736146345559973e-05, 6.886805749672931e-06, 2.509949990781024e-05, 0.0002232462866231799, 0.0014253894332796335, 0.48590853810310364], [0.00025697500677779317, 5.910365507588722e-05, 2.2748319679521956e-05, 3.77723372366745e-05, 0.0001121274835895747, 6.217126065166667e-05, 0.00010925692913588136, 0.12433809041976929], [0.002214405918493867, 0.004718646872788668, 0.00012510159285739064, 0.00030144883203320205, 9.775700891623273e-05, 0.00012138995225541294, 0.0007765593472868204, 0.38017556071281433], [0.007066912483423948, 0.014798990450799465, 0.0063568647019565105, 0.003019228344783187, 0.0030720492359250784, 0.003858806099742651, 0.012525654397904873, 0.43477076292037964]], [[0.07361219078302383, 0.44687125086784363, 0.06202247738838196, 0.02273287996649742, 0.012525404803454876, 0.008559582754969597, 0.007263770792633295, 0.17962102591991425], [0.001304612960666418, 0.0008193199173547328, 0.0011320802150294185, 0.0003346427693031728, 5.79663974349387e-05, 0.00015036006516311318, 0.0004494161403272301, 0.44446060061454773], [0.0017605797620490193, 0.0048415581695735455, 0.0035292701795697212, 0.0038675395771861076, 0.00046889681834727526, 0.0007459585322067142, 0.0008902664994820952, 0.3466032147407532], [0.00026276911376044154, 0.00012244898243807256, 0.0022720429114997387, 0.0011389699066057801, 0.0008332174038514495, 0.00018899368296843022, 0.0005446358700282872, 0.4304966926574707], [6.658733036601916e-05, 1.943446659424808e-05, 0.00012924168549943715, 0.00012002202129224315, 0.00015755764616187662, 0.00019995974435005337, 0.0015169369289651513, 0.4676991403102875], [0.00011782488581957296, 8.638935105409473e-05, 4.946976332576014e-05, 0.00012513506226241589, 7.789777737343684e-05, 0.00013485958334058523, 0.001111936173401773, 0.44446536898612976], [0.00016681548731867224, 2.5551471480866894e-05, 9.630837303120643e-05, 2.7533063985174522e-05, 4.698890552390367e-05, 2.442480945319403e-05, 0.0005585831822827458, 0.27568942308425903], [0.0009313879418186843, 0.0003862079174723476, 0.00021691610163543373, 0.0002444096899125725, 0.000510828394908458, 0.0006298835505731404, 0.0011067036539316177, 0.22846335172653198], [0.009270879440009594, 0.01656862534582615, 0.00722168292850256, 0.006101866718381643, 0.00454137334600091, 0.0070095788687467575, 0.014235121197998524, 0.43277260661125183]], [[0.35307127237319946, 0.23264960944652557, 0.02684188447892666, 0.0388680100440979, 0.05338788777589798, 0.03981413692235947, 0.11988216638565063, 0.055888831615448], [0.011416579596698284, 0.0028409415390342474, 0.006919450126588345, 0.01042439229786396, 0.012274496257305145, 0.014705237932503223, 0.009614546783268452, 0.13628630340099335], [0.013226945884525776, 0.008492005057632923, 0.00804069358855486, 0.014080305583775043, 0.02046997658908367, 0.015657076612114906, 0.0300438292324543, 0.22473597526550293], [0.004028959199786186, 0.0033744387328624725, 0.005043047945946455, 0.004795629531145096, 0.0038917637430131435, 0.0017948336899280548, 0.0023471941240131855, 0.23249463737010956], [0.004866642411798239, 0.0017015838529914618, 0.0014875386841595173, 0.0014615926193073392, 0.003057771362364292, 0.0016313837841153145, 0.0021541989408433437, 0.41629675030708313], [0.01614018715918064, 0.005501651670783758, 0.009397325105965137, 0.007013344205915928, 0.0009224042296409607, 0.0011493106139823794, 0.011740141548216343, 0.39065587520599365], [0.0026396058965474367, 0.0011057837400585413, 0.0028944816440343857, 0.0034464530181139708, 0.000897968013305217, 0.000930494861677289, 0.0006320380489341915, 0.4083799123764038], [0.01853090524673462, 0.012018369510769844, 0.006147198844701052, 0.004490226972848177, 0.002438419032841921, 0.001913479994982481, 0.015327800996601582, 0.24302606284618378], [0.009454664774239063, 0.005623483564704657, 0.0024919926654547453, 0.0020668606739491224, 0.005056238267570734, 0.0030409570317715406, 0.0068252673372626305, 0.46311894059181213]], [[0.029585689306259155, 0.12529835104942322, 0.0237087644636631, 0.01956157386302948, 0.019489718601107597, 0.020061686635017395, 0.03287490829825401, 0.1839608997106552], [0.014558428898453712, 0.16590696573257446, 0.013183402828872204, 0.005659425165504217, 0.011663048528134823, 0.02039843611419201, 0.028879214078187943, 0.07313109189271927], [0.0034815259277820587, 0.07815778255462646, 0.01245742104947567, 0.0028002781327813864, 0.031081482768058777, 0.061160601675510406, 0.008647194132208824, 0.13176578283309937], [0.021389802917838097, 0.1455184370279312, 0.005577497184276581, 0.004663320258259773, 0.002817539032548666, 0.004073464777320623, 0.03237688168883324, 0.08592164516448975], [0.01234675943851471, 0.190189391374588, 0.0016115154139697552, 0.0036612707190215588, 0.0013930225977674127, 0.0009064333862625062, 0.03406453877687454, 0.03659893944859505], [0.05080939084291458, 0.22117052972316742, 0.03781986981630325, 0.10344535112380981, 0.0023226733319461346, 0.005497083067893982, 0.08170291781425476, 0.11402627825737], [0.048762496560811996, 0.19610688090324402, 0.05871521309018135, 0.027684371918439865, 0.0031071281991899014, 0.0023632668890058994, 0.08435871452093124, 0.046830177307128906], [0.06038691848516464, 0.126238152384758, 0.027520151808857918, 0.019312327727675438, 0.024947965517640114, 0.03392765671014786, 0.11163274198770523, 0.09741368144750595], [0.030169669538736343, 0.035692472010850906, 0.027965085580945015, 0.02780071459710598, 0.016334030777215958, 0.023821622133255005, 0.06318362057209015, 0.2099178582429886]], [[0.002785061253234744, 0.002087533473968506, 0.0006042739260010421, 0.0006000974681228399, 0.0016227583400905132, 0.0010247959289699793, 0.0016243925783783197, 0.21268151700496674], [0.001061401329934597, 0.0009192836005240679, 0.0003084810741711408, 0.00016421879990957677, 0.00022142102534417063, 0.00021352406474761665, 0.002067337976768613, 0.4047985374927521], [0.004561576992273331, 0.002771953819319606, 0.0015155079308897257, 0.002506677992641926, 0.0017421378288418055, 0.0030295392498373985, 0.0037372498773038387, 0.28924694657325745], [0.0025849565863609314, 0.0006831066566519439, 0.0003921120660379529, 0.0005833411123603582, 0.000631358998361975, 0.000379806209821254, 0.0033486245665699244, 0.30045390129089355], [0.00037308729952201247, 0.00019942536891903728, 0.00023946145665831864, 0.00027265807148069143, 0.00013639855023939162, 0.00018612276471685618, 0.000731980602722615, 0.4482843279838562], [0.002370882546529174, 0.000904439075384289, 0.0008742004865780473, 0.0045267329551279545, 0.001869221101514995, 0.0023903290275484324, 0.0036986833438277245, 0.28486594557762146], [0.00040535267908126116, 0.00037407761556096375, 6.247432611417025e-05, 0.0003031328087672591, 0.00015827975585125387, 0.00024232060241047293, 0.0010296277469024062, 0.16470283269882202], [0.0014714953722432256, 0.0014245584607124329, 0.0005047697923146188, 0.0016643000999465585, 0.001192077761515975, 0.0012797699309885502, 0.0020482675172388554, 0.11968409270048141], [0.012590828351676464, 0.008479714393615723, 0.00353297870606184, 0.003901928197592497, 0.003213356714695692, 0.00506718410179019, 0.010710257105529308, 0.4391407370567322]], [[3.699452122418734e-07, 1.6712405340513214e-05, 1.120707722179759e-07, 3.456006680835344e-08, 2.8061722900929453e-07, 8.784086702462446e-08, 1.2627372143469984e-06, 0.5059755444526672], [8.042762544846482e-08, 2.402672549806084e-08, 8.599534417896848e-10, 2.2099409108244927e-11, 9.186663582627652e-12, 2.1641358843860203e-11, 7.705302351723731e-08, 0.4890795052051544], [9.659983229992619e-11, 2.8497537662985906e-09, 5.718871154414273e-09, 3.743075538409357e-08, 3.439669438165538e-09, 2.8593399870047165e-10, 5.8693498949935474e-09, 0.0008843277464620769], [6.1323071186975e-14, 5.4551321793105956e-11, 1.3483410961638749e-14, 1.5693267518823717e-10, 5.848529993635054e-11, 3.640321821762882e-09, 2.840805646275868e-10, 3.1068761927599553e-06], [1.9433179123834894e-17, 2.295780753003296e-12, 1.081282704026203e-14, 9.676696295335239e-17, 1.0416897582694006e-14, 8.799661303446338e-14, 4.3361708668143706e-10, 2.6403824904264184e-08], [8.82434212828761e-16, 2.0271460156101248e-14, 1.1976214723096314e-15, 1.2829752248110816e-14, 1.2851795433530162e-14, 9.152966030229453e-16, 1.875364273595803e-11, 1.7220303405451887e-08], [2.366011807559596e-21, 8.412004063327965e-24, 5.461388176484554e-23, 8.682448995029395e-22, 1.3391050747150491e-17, 2.5769241002670217e-16, 1.576629201788069e-18, 1.2523003077910934e-15], [3.312937963784006e-14, 1.6418243717689074e-12, 3.2812739091506104e-18, 2.402679258621445e-14, 1.694799425040923e-14, 4.061255498566396e-11, 1.0015156481912868e-09, 2.931317339971429e-07], [0.006595885846763849, 0.03245443478226662, 0.0029201246798038483, 0.00209422898478806, 0.006193780340254307, 0.002613560762256384, 0.019782450050115585, 0.4037465751171112]], [[0.00456001702696085, 0.012514159083366394, 0.0018214149167761207, 0.0014852266758680344, 0.0016768246423453093, 0.0020546717569231987, 0.01041596382856369, 0.4413858950138092], [0.00031938732718117535, 0.01515895128250122, 0.0010267799952998757, 0.003328900085762143, 0.0009151598787866533, 0.0006995670846663415, 0.0026942254044115543, 0.2819098234176636], [0.0024943770840764046, 0.010976185090839863, 0.0007986612617969513, 0.003831664100289345, 0.002208451274782419, 0.0031803790479898453, 0.007687777280807495, 0.29714277386665344], [0.000971910310909152, 0.0038676627445966005, 0.0001037776964949444, 0.0001480377250118181, 0.0003008987696375698, 0.0002856427454389632, 0.0034889793023467064, 0.32081761956214905], [0.000949179579038173, 0.0018484863685443997, 0.00013900731573812664, 0.00010231795749859884, 6.0651109379250556e-05, 0.00011319718760205433, 0.0014628792414441705, 0.28972193598747253], [0.005335778463631868, 0.005052140913903713, 0.0007035201997496188, 0.00046640902291983366, 0.0002491034974809736, 0.0004917875048704445, 0.0010880891932174563, 0.35584667325019836], [0.0007688571349717677, 0.0006233482854440808, 0.00017133104847744107, 0.0001142708642873913, 1.1815919606306124e-05, 4.521145092439838e-05, 0.0003314129717182368, 0.3753822445869446], [0.003592889290302992, 0.003877464681863785, 0.0007696565007790923, 0.00047792476834729314, 0.00012241075455676764, 0.00021420551638584584, 0.0019411430694162846, 0.47245708107948303], [0.012046046555042267, 0.01618734933435917, 0.008055870421230793, 0.007911546155810356, 0.007270640227943659, 0.009202688001096249, 0.023804429918527603, 0.4123729467391968]], [[0.08364249765872955, 0.09200550615787506, 0.06783529371023178, 0.02006317488849163, 0.02658402919769287, 0.032708488404750824, 0.07826431840658188, 0.06814133375883102], [0.11008325219154358, 0.1427319049835205, 0.013201718218624592, 0.015427488833665848, 0.003291880711913109, 0.005101888906210661, 0.04001959040760994, 0.17086847126483917], [0.05707777664065361, 0.08191963285207748, 0.011768994852900505, 0.035173192620277405, 0.005533100105822086, 0.01537717878818512, 0.05184144154191017, 0.26459556818008423], [0.10711406916379929, 0.06361471861600876, 0.019678829237818718, 0.008481882512569427, 0.004295858088880777, 0.0053276256658136845, 0.03433699905872345, 0.2238069623708725], [0.028799893334507942, 0.015614050440490246, 0.014394245110452175, 0.0024725585244596004, 0.002137289149686694, 0.0018767892615869641, 0.007450197357684374, 0.3249210715293884], [0.08418512344360352, 0.037953004240989685, 0.03637489676475525, 0.009662586264312267, 0.0030015516094863415, 0.004162016790360212, 0.04946955293416977, 0.31232884526252747], [0.046424880623817444, 0.020834898576140404, 0.011768336407840252, 0.006369994953274727, 0.0026754827704280615, 0.005533265881240368, 0.024527231231331825, 0.32081660628318787], [0.055756378918886185, 0.019973155111074448, 0.008547870442271233, 0.004493501503020525, 0.004714685026556253, 0.010971049778163433, 0.12483490258455276, 0.1636679768562317], [0.005447726231068373, 0.0029154850635677576, 0.0012503197649493814, 0.0006939501035958529, 0.0011493226047605276, 0.001484293956309557, 0.00751108955591917, 0.47165751457214355]], [[0.0026634098030626774, 0.0029089536983519793, 0.002742952201515436, 0.005386663135141134, 0.001968739554286003, 0.0016956259496510029, 0.006729320622980595, 0.10323139280080795], [0.001380393048748374, 0.011279840022325516, 0.003508141962811351, 0.0010208252351731062, 0.001003950834274292, 0.0005153188249096274, 0.003190564224496484, 0.3936760425567627], [0.0014886913122609258, 0.01338985562324524, 0.0024499224964529276, 0.001518317381851375, 0.005368678364902735, 0.005018692463636398, 0.006877680774778128, 0.41906851530075073], [0.0021394025534391403, 0.0022374673280864954, 0.0016334035899490118, 0.0006734568160027266, 0.0006394304218702018, 0.0002148713101632893, 0.0014955428196117282, 0.43416279554367065], [0.0003973311686422676, 0.0007331280503422022, 0.0010172321926802397, 0.0003610823769122362, 0.00042566232150420547, 0.00015019436250440776, 0.000298165250569582, 0.46747010946273804], [0.004803582560271025, 0.0061154658906161785, 0.007158601190894842, 0.002716852119192481, 0.006478235591202974, 0.005087439436465502, 0.00709317484870553, 0.36839255690574646], [0.0011972530046477914, 0.0007016954477876425, 0.0008068008464761078, 0.0003328810853417963, 0.00038028485141694546, 0.0003336805966682732, 0.002802535891532898, 0.4021241068840027], [0.011329763568937778, 0.0027545730117708445, 0.0011474986094981432, 0.0011327818501740694, 0.001007491140626371, 0.0003843840677291155, 0.0028942839708179235, 0.189167320728302], [0.011836061254143715, 0.015538095496594906, 0.009615554474294186, 0.005789626389741898, 0.007745843380689621, 0.005369522608816624, 0.008734038099646568, 0.4265786111354828]]], [[[0.007371070794761181, 0.0020562754943966866, 0.003068702993914485, 0.001770065282471478, 0.0032568874303251505, 0.004766311030834913, 0.006450070068240166, 0.2478174865245819], [0.0015730548184365034, 0.0006176151218824089, 0.0009819604456424713, 0.0004689690831582993, 0.0003200812789145857, 0.0003572754212655127, 0.0007954053580760956, 0.31547674536705017], [0.0024387615267187357, 0.000964595761615783, 0.0016872045816853642, 0.0008631363161839545, 0.0010445145890116692, 0.0018621800700202584, 0.001427622977644205, 0.3833491802215576], [0.0025473006535321474, 0.0003266029816586524, 0.00013894002768211067, 0.00029300845926627517, 8.91031013452448e-05, 7.486743561457843e-05, 0.00041374441934749484, 0.3157312572002411], [0.0015811186749488115, 0.00024411195772700012, 0.0001614234206499532, 0.00010920059139607474, 0.00013633447815664113, 0.00019805652846116573, 0.0014219180447980762, 0.3424018323421478], [0.005142113659530878, 0.0007632905035279691, 0.000770245329476893, 0.0016080166678875685, 0.0005241295439191163, 0.0006482986500486732, 0.005554784554988146, 0.22427575290203094], [0.0012102406471967697, 0.00025780353462323546, 0.00016080736531876028, 0.00023815226450096816, 4.795687345904298e-05, 7.890781853348017e-05, 0.0008461686666123569, 0.218971848487854], [0.001043264172039926, 0.0001706254406599328, 0.0006140281329862773, 0.0008297772728838027, 0.00045525419409386814, 0.0004455914895515889, 0.0003260369994677603, 0.19237954914569855], [0.013656741008162498, 0.007858437485992908, 0.009717412292957306, 0.007288186810910702, 0.0059538655914366245, 0.005341776646673679, 0.01094656903296709, 0.41046974062919617]], [[0.07524964958429337, 0.024704841896891594, 0.006263480521738529, 0.0042268699035048485, 0.0026561543345451355, 0.006586187519133091, 0.011579404585063457, 0.10430606454610825], [0.012737920507788658, 0.12349595874547958, 0.01720115914940834, 0.003269166685640812, 0.005530004855245352, 0.007470955140888691, 0.013863109983503819, 0.28654488921165466], [0.0025745059829205275, 0.049204569309949875, 0.0015075196279212832, 0.0005030538886785507, 0.007739703170955181, 0.016909180209040642, 0.025284694507718086, 0.11921317875385284], [0.013888023793697357, 0.012861283496022224, 0.01952863298356533, 0.0065907444804906845, 0.026999998837709427, 0.025237450376152992, 0.11269043385982513, 0.28051042556762695], [0.0020031831227242947, 0.0014148547779768705, 0.01591162383556366, 0.01427283976227045, 0.01989276334643364, 0.006487254519015551, 0.009423681534826756, 0.3370836675167084], [0.06442612409591675, 0.008216682821512222, 0.016198374330997467, 0.019237861037254333, 0.019144710153341293, 0.01865171454846859, 0.07782933861017227, 0.2633069157600403], [0.024171948432922363, 0.00694342190399766, 0.013802092522382736, 0.006761043332517147, 0.014705506153404713, 0.015210062265396118, 0.021005921065807343, 0.35369759798049927], [0.01337648369371891, 0.0028448880184441805, 0.0040090568363666534, 0.0026992689818143845, 0.0044503165408968925, 0.006275787949562073, 0.023720959201455116, 0.23153062164783478], [0.0031410264782607555, 0.002090931637212634, 0.001405903953127563, 0.001393108512274921, 0.0014646362978965044, 0.00241012847982347, 0.0036539460998028517, 0.46315041184425354]], [[0.4729365408420563, 0.48991313576698303, 0.001260687131434679, 0.0012585459044203162, 0.002653754549100995, 0.0013919114135205746, 0.012034980580210686, 0.00818114634603262], [0.0003105650539509952, 0.0009245284018106759, 8.303656068164855e-05, 4.5787444832967594e-05, 0.0002466466976329684, 0.00010257070243824273, 0.00023893841716926545, 0.11121497303247452], [0.0005327476537786424, 0.0022035958245396614, 9.65610597631894e-05, 2.3932583644636907e-05, 0.00047764237388037145, 0.00025047536473721266, 0.0006909643416292965, 0.4111621379852295], [0.006643256638199091, 0.004730977118015289, 0.00032622195431031287, 0.0007639311370439827, 0.0015364665305241942, 0.0013437119778245687, 0.0009342811536043882, 0.14949901401996613], [0.00024521484738215804, 0.00019054162839893252, 0.0002420800010440871, 0.0010319185676053166, 0.00015022132720332593, 0.0004866015224251896, 0.0011610363144427538, 0.2942039668560028], [0.0007951314910314977, 0.0014751587295904756, 4.8424044507555664e-05, 0.00012909101496916264, 0.00014812868903391063, 0.0004014586447738111, 0.0013958034105598927, 0.4657135307788849], [0.0004776150162797421, 0.0008431479800492525, 0.0001769419468473643, 0.0003066942736040801, 0.00048201929894275963, 0.0004719459975603968, 0.0007038738112896681, 0.15901556611061096], [0.05752861872315407, 0.045575715601444244, 0.002179911360144615, 0.0007118297507986426, 0.0003898569557350129, 0.0004101578379049897, 0.010229206643998623, 0.40498408675193787], [0.031936950981616974, 0.026409320533275604, 0.004559976980090141, 0.004625579807907343, 0.004424510058015585, 0.004790178965777159, 0.012767665088176727, 0.4161543548107147]], [[0.025360368192195892, 0.027727726846933365, 0.03671010956168175, 0.014761500991880894, 0.03874959051609039, 0.0320102758705616, 0.04242224991321564, 0.2690429985523224], [0.0281349066644907, 0.021122025325894356, 0.020940164104104042, 0.01173543743789196, 0.007091095671057701, 0.01605815440416336, 0.04283600673079491, 0.35337433218955994], [0.00543315289542079, 0.004977128002792597, 0.0048849876038730145, 0.025981323793530464, 0.05213598906993866, 0.12927523255348206, 0.02463546395301819, 0.3415929079055786], [0.107973113656044, 0.004542628303170204, 0.022724678739905357, 0.0069719417952001095, 0.008445045910775661, 0.017451029270887375, 0.04614988714456558, 0.31141600012779236], [0.11960802227258682, 0.0012866504257544875, 0.06574541330337524, 0.0027275211177766323, 0.0015447484329342842, 0.005019684322178364, 0.024004632607102394, 0.32576993107795715], [0.06789546459913254, 0.0035564410500228405, 0.12111339718103409, 0.014632150530815125, 0.009795651771128178, 0.03575066849589348, 0.0714687928557396, 0.3043694496154785], [0.032709840685129166, 0.005623155739158392, 0.039324406534433365, 0.006350561510771513, 0.0029939881060272455, 0.006746789440512657, 0.03811773657798767, 0.37703457474708557], [0.02532600425183773, 0.0035393217112869024, 0.007039695978164673, 0.003352570114657283, 0.0032674113754183054, 0.005297438241541386, 0.03360140323638916, 0.38160696625709534], [0.03891906514763832, 0.039990827441215515, 0.018312886357307434, 0.020030900835990906, 0.020705249160528183, 0.033295806497335434, 0.05638739839196205, 0.23370924592018127]], [[0.003590339794754982, 0.002598183462396264, 0.00648346496745944, 0.005243256688117981, 0.007748070172965527, 0.004428984597325325, 0.004524675197899342, 0.1483244001865387], [4.369181260699406e-05, 0.00014400701911654323, 9.360193507745862e-05, 0.001165196648798883, 0.0002982378355227411, 0.00020724395290017128, 0.0004113147151656449, 0.10152650624513626], [2.8902964913868345e-05, 1.1730639016604982e-05, 2.594712350401096e-05, 8.167533087544143e-05, 0.0005488924216479063, 0.0003741225809790194, 0.0003166523529216647, 0.4537402093410492], [0.00015470014477614313, 0.00013584447151515633, 0.00015626999083906412, 0.00012891901133116335, 0.0003881491138599813, 4.326139242039062e-05, 0.0004734944086521864, 0.18068256974220276], [0.00012422488362062722, 1.7076361018553143e-06, 1.3382806173467543e-05, 0.00031805282924324274, 7.130322774173692e-05, 3.7954763683956116e-05, 0.0001722505403449759, 0.06382343173027039], [0.0023303343914449215, 0.00014334356819745153, 4.2055185076605994e-06, 4.670958514907397e-05, 3.832589936791919e-05, 0.00026926500140689313, 0.0022524523083120584, 0.15323345363140106], [0.00010711299546528608, 9.076368769456167e-06, 7.243413051583047e-07, 1.4265960999182425e-06, 7.108249064913252e-06, 2.8156011467217468e-05, 0.0014256952563300729, 0.27540552616119385], [0.05361013859510422, 8.289861580124125e-05, 8.080041880020872e-06, 1.4870154245727463e-06, 1.324291474702477e-06, 4.2500773815845605e-06, 1.946221527759917e-05, 0.4508037865161896], [0.006803077179938555, 0.0033591068349778652, 0.002013253979384899, 0.0036491057835519314, 0.004276950843632221, 0.0035748400259763002, 0.003063627751544118, 0.4636973738670349]], [[0.00024863501312211156, 0.0002154050162062049, 0.0005617032875306904, 0.0003246032865718007, 0.000404341088142246, 0.0003020506410393864, 0.002176842885091901, 0.27982115745544434], [0.008241520263254642, 0.012359398417174816, 0.0014585974859073758, 0.0010023469803854823, 0.0014763358049094677, 0.0011748215183615685, 0.01733115129172802, 0.1073656752705574], [0.003534552874043584, 0.02421685680747032, 0.0010112921008840203, 0.0005394059116952121, 0.0008861830574460328, 0.0012040042784065008, 0.014476785436272621, 0.21603302657604218], [0.010588867589831352, 0.00045926665188744664, 0.0007760879234410822, 0.0027186928782612085, 0.0006557187880389392, 0.0006137004820629954, 0.00283538899384439, 0.16612239181995392], [0.005414559505879879, 0.00029026262927800417, 0.0002940870472230017, 0.0005888287560082972, 0.0002710361732169986, 0.0003273374168202281, 0.001962077571079135, 0.3049234449863434], [0.007297547068446875, 0.0008926233276724815, 0.00045485360897146165, 0.000581452390179038, 0.00028437949367798865, 0.0002766584511846304, 0.0019043647916987538, 0.2945271134376526], [0.004943017847836018, 0.0006686780252493918, 0.00047086767153814435, 0.0004358016885817051, 0.0003125704824924469, 0.0002133495727321133, 0.0013570489827543497, 0.30025342106819153], [0.001626592711545527, 0.0017355451127514243, 0.0035774908028542995, 0.0018636470194905996, 0.0008732988499104977, 0.0007912074215710163, 0.0026463426183909178, 0.4536086320877075], [0.009497158229351044, 0.009117139503359795, 0.007020134013146162, 0.007555877789855003, 0.0046909274533391, 0.00682138791307807, 0.028370724990963936, 0.4205957353115082]], [[0.007121799048036337, 0.008981598541140556, 0.002165687968954444, 0.0014122417196631432, 0.002105581806972623, 0.0015918848803266883, 0.0053741117008030415, 0.23604467511177063], [0.0075362492352724075, 0.016184628009796143, 0.0008745047962293029, 0.0021673243027180433, 0.0008553347433917224, 0.0008103384752757847, 0.003815885866060853, 0.18649008870124817], [0.0035818982869386673, 0.011300148442387581, 0.0008870619931258261, 0.0033040109556168318, 0.0023080918472260237, 0.0026857848279178143, 0.005545157007873058, 0.2813759744167328], [0.006219392642378807, 0.006231232546269894, 0.0006101291510276496, 0.00012717396020889282, 0.0005338769406080246, 0.0003746833826880902, 0.0062690912745893, 0.2819998562335968], [0.0032739436719566584, 0.0008054864592850208, 0.006840225774794817, 0.00040076259756460786, 8.500029071001336e-05, 4.2904430301859975e-05, 0.0009749686578288674, 0.38330528140068054], [0.0031239681411534548, 0.0012768832966685295, 0.01191434171050787, 0.004412607755511999, 0.0024894692469388247, 0.0011454205960035324, 0.0024682427756488323, 0.3540332019329071], [0.002259686589241028, 0.0011002124520018697, 0.0008007656433619559, 0.0007070419378578663, 0.00016003272321540862, 0.00033185811480507255, 0.004071988631039858, 0.3756536543369293], [0.00378127908334136, 0.0016167000867426395, 0.0009473819518461823, 0.0005677852896042168, 0.0003473362885415554, 0.0007301612640731037, 0.007014446426182985, 0.41522181034088135], [0.013577992096543312, 0.016583584249019623, 0.007222366519272327, 0.005691088270395994, 0.010249377228319645, 0.007742955815047026, 0.020735086873173714, 0.3975064754486084]], [[0.9070485234260559, 0.012381895445287228, 0.0010898754699155688, 0.0020974017679691315, 0.003340748604387045, 0.0028547111432999372, 0.03231913223862648, 0.018008200451731682], [0.0031857462599873543, 0.012833202257752419, 0.008590567857027054, 0.007573004812002182, 0.0054169874638319016, 0.0023101670667529106, 0.01047569327056408, 0.16756410896778107], [0.0016216645017266273, 0.0023261969909071922, 0.0015799971297383308, 0.0031087459065020084, 0.003981929738074541, 0.002801507944241166, 0.005657135043293238, 0.42564547061920166], [0.01487801130861044, 0.002321388339623809, 0.0018796907970681787, 0.002045274944975972, 0.002377577591687441, 0.0010308694327250123, 0.002976121613755822, 0.25973016023635864], [0.002836958970874548, 0.0027977772988379, 0.0005122866132296622, 0.0007054119487293065, 0.0004253517254255712, 0.0004300023429095745, 0.0018425952875986695, 0.3660461902618408], [0.00856798980385065, 0.006119867321103811, 0.002005388494580984, 0.005063846707344055, 0.0014947752933949232, 0.001158251310698688, 0.003853730857372284, 0.4130237102508545], [0.013496950268745422, 0.0051397597417235374, 0.003169870935380459, 0.0027979668229818344, 0.0006697298958897591, 0.0006810688646510243, 0.0035471816081553698, 0.2657623589038849], [0.1713738888502121, 0.02975728176534176, 0.011335433460772038, 0.005311070941388607, 0.0026588791515678167, 0.0025084898807108402, 0.010416730307042599, 0.2998664081096649], [0.048978179693222046, 0.012677504681050777, 0.012153059244155884, 0.012410905212163925, 0.018826885148882866, 0.012641770765185356, 0.029373768717050552, 0.38532206416130066]], [[0.00029976683435961604, 0.00021563368500210345, 0.00016625561693217605, 5.6110340665327385e-05, 7.001328776823357e-05, 3.409140117582865e-05, 0.00012891496589872986, 0.21820102632045746], [0.00040190800791606307, 0.0002828743017744273, 0.00043458875734359026, 0.00016116838378366083, 0.0001923443196574226, 0.00015386042650789022, 0.0013821901520714164, 0.4690496325492859], [9.840984421316534e-05, 0.00027428523753769696, 0.00015854492085054517, 4.828941746382043e-05, 0.001816609757952392, 0.0006966443615965545, 0.0008187078638002276, 0.48521530628204346], [8.057921513682231e-05, 0.0004226982709951699, 0.00014216330600902438, 0.00010825470963027328, 0.0002754598972387612, 0.00010117785859620199, 0.0005521111306734383, 0.43215274810791016], [0.00011170908692292869, 6.849321653135121e-05, 0.0002079346013488248, 0.0006750866887159646, 0.00030630803667008877, 0.0001665297313593328, 0.00023527316807303578, 0.35099175572395325], [0.000316612800816074, 0.00024039334675762802, 6.83173057041131e-05, 4.879559492110275e-05, 9.615962335374206e-05, 0.000509117788169533, 0.001208844012580812, 0.3566097021102905], [8.546111348550767e-05, 1.569770938658621e-05, 1.3062812286079861e-05, 4.503134732658509e-06, 8.778869414527435e-06, 2.3977501768968068e-05, 0.000676079245749861, 0.473211407661438], [0.01108487043529749, 0.0012696747435256839, 1.6961041183094494e-05, 1.606821024324745e-05, 2.6223893655696884e-05, 4.410685141920112e-05, 0.0007321340963244438, 0.47180330753326416], [0.012698285281658173, 0.007260583806782961, 0.004748089704662561, 0.002695214468985796, 0.004964962601661682, 0.0060354857705533504, 0.007824470289051533, 0.439079225063324]], [[0.0066135600209236145, 0.009582077153027058, 0.007155739236623049, 0.0041506486013531685, 0.006435934454202652, 0.00901520624756813, 0.005004014819860458, 0.46897345781326294], [0.0017972465138882399, 0.004773606080561876, 0.001033432548865676, 0.0009794686920940876, 0.001003576209768653, 0.004898270592093468, 0.011695140972733498, 0.42441868782043457], [0.0011884078849107027, 0.002815657528117299, 0.004419669043272734, 0.0014225720660760999, 0.0013864398933947086, 0.0025226864963769913, 0.0023590491618961096, 0.42538824677467346], [0.00017089073662646115, 0.00014168610505294055, 4.951690061716363e-05, 0.00018147750233765692, 0.00024248930276371539, 0.0006021489971317351, 9.054239490069449e-05, 0.4826485812664032], [0.00010242780990665779, 0.00015250947035383433, 6.70484805596061e-05, 7.06777791492641e-05, 5.0836366426665336e-05, 0.00021239288616925478, 0.0011829208815470338, 0.4556106626987457], [0.00016709024203009903, 0.0002751776482909918, 0.00021413154900074005, 0.0001541209639981389, 0.00013619572564493865, 0.00023766029335092753, 0.0018110321834683418, 0.46351704001426697], [0.0001758130529196933, 0.00022426406212616712, 4.656359305954538e-05, 0.00011739401088561863, 0.0002498358371667564, 0.00044342526234686375, 0.0034575778990983963, 0.41198569536209106], [0.0002560635039117187, 0.00019517939654178917, 5.081154085928574e-05, 0.0004636063240468502, 0.00022052621352486312, 0.0014667102368548512, 0.001228218898177147, 0.4045025408267975], [0.007268840912729502, 0.013528822921216488, 0.006114609073847532, 0.009252402931451797, 0.010822935961186886, 0.016326000913977623, 0.011976811103522778, 0.4186249375343323]], [[1.4859769180475269e-05, 1.6625217540422454e-06, 8.735669894122111e-07, 6.831931841588812e-06, 8.76136346050771e-06, 8.568998964619823e-06, 0.027730019763112068, 0.0230398029088974], [0.0010869173565879464, 0.00045260091428644955, 7.394230487989262e-05, 0.0004003988578915596, 0.0001496725744800642, 0.0003172729047946632, 0.0010901883943006396, 0.40896889567375183], [0.00023584242444485426, 0.0006934786215424538, 0.0015141678741201758, 0.0006554787396453321, 0.0012277252972126007, 0.00031151380972005427, 0.00026277234428562224, 0.2772325277328491], [1.9760309442062862e-05, 0.0001840673794504255, 1.2046632946294267e-05, 0.0007476943428628147, 0.00014097412349656224, 0.0002640757884364575, 5.718844477087259e-05, 0.4212802052497864], [4.665302549256012e-05, 0.0003152368008159101, 0.0002806786505971104, 4.328700015321374e-05, 5.6680775742279366e-05, 4.936538971378468e-05, 0.00026608278858475387, 0.33826860785484314], [0.00025041832122951746, 0.0007307803025469184, 0.00017736315203364938, 0.0007285236497409642, 0.00012039943976560608, 3.8593112549278885e-05, 0.00025225148419849575, 0.24888446927070618], [0.0004459808988031, 4.851774065173231e-05, 3.70494817616418e-05, 7.732710218988359e-05, 0.0001507394335931167, 4.627926682587713e-05, 4.071185321663506e-05, 0.2856636345386505], [7.286720210686326e-05, 3.5261724406154826e-05, 5.444881026051007e-06, 8.468711166642606e-05, 7.878318865550682e-05, 0.00033633114071562886, 0.0020188838243484497, 0.2533053159713745], [0.005217724945396185, 0.004288507625460625, 0.0017007944406941533, 0.004521556664258242, 0.002942086895927787, 0.0026725721545517445, 0.019184140488505363, 0.44957709312438965]], [[0.06021136790513992, 0.016384968534111977, 0.003913346212357283, 0.01495314110070467, 0.004269339144229889, 0.01245495118200779, 0.03743751719594002, 0.1548040509223938], [0.01093027088791132, 0.9070063829421997, 0.001290512620471418, 0.0006622169748879969, 0.0004304322646930814, 0.0002703519130591303, 0.006418721284717321, 0.007833967916667461], [0.004015312995761633, 0.8174616098403931, 0.0017430142033845186, 0.0016311665531247854, 0.0014775906456634402, 0.004162629600614309, 0.03352399542927742, 0.01995236426591873], [0.04648205637931824, 0.05273868516087532, 0.03601903095841408, 0.010650807991623878, 0.0013882775092497468, 0.0015978427836671472, 0.07621385157108307, 0.15841388702392578], [0.022186512127518654, 0.015814848244190216, 0.0037308423779904842, 0.017118770629167557, 0.0014685160713270307, 0.001379501074552536, 0.034448184072971344, 0.23836688697338104], [0.10756000131368637, 0.022729581221938133, 0.01845385693013668, 0.03551193326711655, 0.0006498933071270585, 0.0025396374985575676, 0.06564154475927353, 0.20452941954135895], [0.11971084773540497, 0.043877311050891876, 0.045669861137866974, 0.015251833945512772, 0.0007043184596113861, 0.0010175270726904273, 0.04241645708680153, 0.19614742696285248], [0.08332706987857819, 0.015509034506976604, 0.044853806495666504, 0.004712630528956652, 0.00038340501487255096, 0.000517758191563189, 0.04627804830670357, 0.22907079756259918], [0.04139076545834541, 0.03536530211567879, 0.025959070771932602, 0.0290086530148983, 0.010200546123087406, 0.014316685497760773, 0.045015912503004074, 0.2293550819158554]]], [[[0.003222285071387887, 0.028030067682266235, 0.0010792185785248876, 0.000500990659929812, 0.0007302633603103459, 0.000869597599375993, 0.007325959857553244, 0.11482513695955276], [0.0028164705727249384, 0.007499368861317635, 0.00021854243823327124, 0.0007668511243537068, 0.00013776372361462563, 0.00018941382586490363, 0.002091463888064027, 0.2859983444213867], [0.0005571680376306176, 0.0044917212799191475, 0.00038567467709071934, 0.0002042024425463751, 0.00023301954206544906, 0.0002402973041171208, 0.0012122293701395392, 0.4219382703304291], [0.003207303350791335, 0.0017004829132929444, 0.00041987671284005046, 0.00022912098211236298, 0.00010279820708092302, 0.0002585861657280475, 0.003697959240525961, 0.30171987414360046], [0.002207000507041812, 0.0005496328230947256, 0.00047149305464699864, 0.00023021025117486715, 8.827996498439461e-05, 0.00021609636314678937, 0.0052264113910496235, 0.3857913613319397], [0.007943536154925823, 0.002520049223676324, 0.001113853882998228, 0.001180359860882163, 0.0013389542000368237, 0.002726425416767597, 0.007442825473845005, 0.342966765165329], [0.0030511284712702036, 0.0013138599460944533, 0.00019944993255194277, 0.0003325746220070869, 5.539594349102117e-05, 0.0001470465649617836, 0.008935135789215565, 0.3387135863304138], [0.0040791709907352924, 0.0031182393431663513, 0.0005477099330164492, 0.0007156832725740969, 0.000564315530937165, 0.0008533255313523114, 0.0010418876772746444, 0.2677452862262726], [0.005519409663975239, 0.009300841018557549, 0.006858759094029665, 0.004189517814666033, 0.010243996046483517, 0.010956753976643085, 0.015462791547179222, 0.4205385744571686]], [[0.000623668369371444, 0.0006565509829670191, 0.00024722624220885336, 0.0002423793775960803, 0.001202116720378399, 0.0012709980364888906, 0.004020807798951864, 0.20505185425281525], [0.0024523886386305094, 0.0003674894105643034, 0.0003268657310400158, 0.00043549813563004136, 0.00032785756047815084, 0.0006079814629629254, 0.0015747409779578447, 0.3538493812084198], [0.002939981408417225, 0.0014126028399914503, 0.0005398806533776224, 0.0011916563380509615, 0.0009985454380512238, 0.0014705669600516558, 0.002631161827594042, 0.31719082593917847], [0.002567046321928501, 0.0007795484270900488, 0.00016869918908923864, 0.0008866242715157568, 0.0004209131875541061, 0.0006938352016732097, 0.0010381081374362111, 0.20555660128593445], [0.00098380574490875, 0.0005859395023435354, 0.0004364593478385359, 0.0003401575959287584, 0.00041530063026584685, 0.0003914370317943394, 0.0004994593327865005, 0.35681360960006714], [0.0012013415107503533, 0.00033970651566050947, 0.00018978756270371377, 0.0004091697046533227, 0.00045075680827721953, 0.00039951736107468605, 0.0009409427875652909, 0.392911434173584], [0.00036607604124583304, 9.939416486304253e-05, 0.00023683186736889184, 0.00016975868493318558, 0.00015493850514758378, 6.693822069792077e-05, 0.0003024028264917433, 0.2860943377017975], [0.000712734879925847, 0.0003517790464684367, 0.00036900214035995305, 0.0004219951806589961, 0.0006284616538323462, 0.0008821941446512938, 0.002642233157530427, 0.30241644382476807], [0.008446041494607925, 0.009078006260097027, 0.006193111650645733, 0.002964327810332179, 0.002092530718073249, 0.0037298286333680153, 0.00897007156163454, 0.4374888837337494]], [[0.12482968717813492, 0.050272002816200256, 0.011151405051350594, 0.0037445160560309887, 0.0075047630816698074, 0.020641835406422615, 0.15274009108543396, 0.17354722321033478], [0.003018262330442667, 0.0037483456544578075, 0.0004999149823561311, 0.00013760202273260802, 0.00021285071852616966, 0.0005034448695369065, 0.010472883470356464, 0.050992876291275024], [0.0027507860213518143, 0.01060415804386139, 0.0007669285405427217, 0.0008080457337200642, 0.0005498760147020221, 0.0008260412723757327, 0.011163183487951756, 0.08470353484153748], [0.00662103109061718, 0.005812695249915123, 0.0020389158744364977, 0.00023032139870338142, 0.0004292786761652678, 0.001284569501876831, 0.011850080452859402, 0.22995422780513763], [0.006430253852158785, 0.0017697770381346345, 0.0037355064414441586, 0.000640927697531879, 0.00023232429521158338, 0.00042635094723664224, 0.004968475550413132, 0.3470793664455414], [0.006442303769290447, 0.004564326256513596, 0.0011788730043917894, 0.0008824720280244946, 0.0004101727972738445, 0.0012996913865208626, 0.019185950979590416, 0.2679932713508606], [0.002469658385962248, 0.0005711872945539653, 0.0008048827294260263, 6.381727143889293e-05, 2.9046395866316743e-05, 8.3308776083868e-05, 0.0032584371510893106, 0.39479920268058777], [0.0026473761536180973, 0.004670982714742422, 0.0005967780598439276, 0.00017445682897232473, 0.0006383605650626123, 0.0015284724067896605, 0.009621094912290573, 0.13187429308891296], [0.00202777236700058, 0.0012497866991907358, 0.0006144680082798004, 0.0003891513333655894, 0.0005871561588719487, 0.0005445200949907303, 0.0020153741352260113, 0.4847172498703003]], [[0.09726065397262573, 0.042058736085891724, 0.016970792785286903, 0.007064131088554859, 0.009209049865603447, 0.0269177109003067, 0.1292913854122162, 0.3292129337787628], [0.0063878498040139675, 0.004316553007811308, 0.0011726761003956199, 0.001430540345609188, 0.0015171411214396358, 0.0008085212903097272, 0.014190485700964928, 0.25359416007995605], [0.0010106076952069998, 0.0031537143513560295, 0.0008174902759492397, 0.0006932400865480304, 0.00444023497402668, 0.0027562291361391544, 0.004864922259002924, 0.4310709238052368], [0.0013055438175797462, 0.0003880287695210427, 0.0004887021495960653, 0.0006392252980731428, 0.0004481000651139766, 0.00046945796930231154, 0.002928073052316904, 0.32508018612861633], [0.002744380384683609, 0.00039450314943678677, 0.00027286590193398297, 0.0005930708721280098, 0.0011334207374602556, 0.0003167016548104584, 0.0018019923008978367, 0.3306964337825775], [0.006457692477852106, 0.0008896054932847619, 0.0006834467058070004, 0.0022377928253263235, 0.0029984142165631056, 0.004237498622387648, 0.015372789464890957, 0.20931147038936615], [0.0018435518722981215, 0.00016437556769233197, 5.465562207973562e-05, 3.5044467949774116e-05, 7.795871351845562e-05, 3.9380931411869824e-05, 0.005023255944252014, 0.3709942400455475], [0.00128552142996341, 0.002121981466189027, 0.0013270488707348704, 0.00030418383539654315, 0.0006217916961759329, 0.0005152271478436887, 0.001263331389054656, 0.4676826596260071], [0.0037741262931376696, 0.003716695122420788, 0.006658582016825676, 0.0034265785943716764, 0.014179150573909283, 0.007708790712058544, 0.003593786619603634, 0.4563746154308319]], [[0.00179760018363595, 0.0013329824432730675, 0.01075056754052639, 0.005185674410313368, 0.0023407794069498777, 0.0021522543393075466, 0.005133139435201883, 0.08528196066617966], [0.00032645263127051294, 0.0003248643479309976, 0.0002673377748578787, 0.00011943218851229176, 0.00021623271459247917, 0.00013916415628045797, 0.00014406828267965466, 0.26753750443458557], [0.0017014400800690055, 0.001945211784914136, 0.002674452029168606, 0.0023524488788098097, 0.0017909761518239975, 0.0013948706910014153, 0.001281709992326796, 0.3380189538002014], [0.001788897323422134, 0.0006236655754037201, 0.00042825372656807303, 0.00010942654625978321, 7.633345376234502e-06, 1.2319670531724114e-05, 0.00011274260032223538, 0.36250489950180054], [0.0005804746760986745, 0.00011200936569366604, 0.00011535434168763459, 3.435305552557111e-05, 8.08266759122489e-06, 1.885876372398343e-05, 0.00021526942146010697, 0.28905925154685974], [0.004470486659556627, 0.0013387985527515411, 0.00039366536657325923, 0.00011838461796287447, 5.950408012722619e-05, 0.00010068350093206391, 0.0006687200511805713, 0.15669189393520355], [0.0003446432820055634, 0.0001834815484471619, 1.958394750545267e-05, 4.12821646023076e-06, 3.717936181146797e-07, 1.5065513707668288e-06, 3.8350674003595486e-05, 0.14455482363700867], [0.0018323649419471622, 0.0009202899527736008, 0.000946124317124486, 0.000476937711937353, 9.822175343288109e-05, 0.00014358140469994396, 0.000658158038277179, 0.27331820130348206], [0.018472520634531975, 0.02015983685851097, 0.021893126890063286, 0.009429410099983215, 0.0056530870497226715, 0.006247894838452339, 0.020583558827638626, 0.40892016887664795]], [[0.283425897359848, 0.03495556488633156, 0.20913217961788177, 0.06221076101064682, 0.018787436187267303, 0.027225757017731667, 0.07696833461523056, 0.12022089958190918], [0.009930008091032505, 0.0017126131569966674, 0.017165325582027435, 0.012370679527521133, 0.0027852668426930904, 0.004340345039963722, 0.0025703483261168003, 0.17186138033866882], [0.002630728529766202, 0.001089355326257646, 0.003610256128013134, 0.011623641476035118, 0.01512613333761692, 0.016638105735182762, 0.003055887995287776, 0.4315195083618164], [0.012729426845908165, 0.0011528690811246634, 0.03222086280584335, 0.010329254902899265, 0.0010545023251324892, 0.0016127856215462089, 0.005335953086614609, 0.10188055783510208], [0.003216436365619302, 0.00029846461256965995, 0.03673403337597847, 0.0030582044273614883, 0.00015367318701464683, 0.0003008657367900014, 0.0014007758582010865, 0.1983650177717209], [0.006478199269622564, 0.0003868359490297735, 0.005807084031403065, 0.007590980269014835, 0.0018962349276989698, 0.0044573531486094, 0.0025140647776424885, 0.38036060333251953], [0.006913176272064447, 0.00033522487501613796, 0.005386059638112783, 0.0015197106404229999, 0.00020825258980039507, 0.00041800516191869974, 0.0013687267201021314, 0.2473062127828598], [0.007564121391624212, 0.0011984413722530007, 0.013658230192959309, 0.004363464191555977, 0.0009361953125335276, 0.001155634643509984, 0.0013657136587426066, 0.07763147354125977], [0.0014607614139094949, 0.0008804139215499163, 0.00390710961073637, 0.002176470123231411, 0.0010624444112181664, 0.001183721236884594, 0.0016297680558636785, 0.48998796939849854]], [[0.31588026881217957, 0.015049525536596775, 0.007510794326663017, 0.012872375547885895, 0.013264773413538933, 0.008210907690227032, 0.028310120105743408, 0.25507572293281555], [0.0012999624013900757, 0.002331748139113188, 0.00013568071881309152, 0.00017605161701794714, 0.00041269147186540067, 0.0006365765002556145, 0.006179030053317547, 0.183952197432518], [0.000495097425300628, 0.00048353467718698084, 0.0002778747002594173, 0.00023284953203983605, 0.0007232891512103379, 0.0008334909798577428, 0.002175401896238327, 0.4797942340373993], [0.003807324916124344, 0.0029984903521835804, 0.0006426495965570211, 0.006278607994318008, 0.0008054818026721478, 0.0009979152819141746, 0.0019089989364147186, 0.19070765376091003], [0.005606281571090221, 0.001221132348291576, 0.0007744447211734951, 0.0025148848071694374, 0.00040608234121464193, 0.0010330518707633018, 0.0020804970990866423, 0.3028867244720459], [0.006856197956949472, 0.01098709274083376, 0.00044689461356028914, 0.002688364125788212, 0.0013488751137629151, 0.0011925341095775366, 0.010072179138660431, 0.42001670598983765], [0.0028326997999101877, 0.002592699835076928, 0.0005638798465952277, 0.0008217107388190925, 0.0004992752801626921, 0.00022885753423906863, 0.0019354952964931726, 0.3997306227684021], [0.09313038736581802, 0.01115424931049347, 0.0016766426851972938, 0.001661903690546751, 0.0006327586015686393, 0.0005437562358565629, 0.012841450050473213, 0.3826677203178406], [0.008105170913040638, 0.010031886398792267, 0.003984170034527779, 0.0040039196610450745, 0.0033216525334864855, 0.004154632333666086, 0.010170423425734043, 0.44939473271369934]], [[0.13772368431091309, 0.20343159139156342, 0.055641625076532364, 0.0701574981212616, 0.09910611808300018, 0.10137367993593216, 0.07043067365884781, 0.12246666848659515], [0.009779456071555614, 0.003952621482312679, 0.0024773424956947565, 0.005470562726259232, 0.0023116853553801775, 0.0025955087039619684, 0.0050215646624565125, 0.05779048427939415], [0.004880881868302822, 0.024638567119836807, 0.0037614803295582533, 0.007175808772444725, 0.0018003600416705012, 0.00440263282507658, 0.004995821043848991, 0.3248162269592285], [0.0015457518165931106, 0.0008029846358112991, 0.0005358491907827556, 0.00021044538880232722, 0.0002988128107972443, 0.0002829236618708819, 0.00037414743565022945, 0.1726989895105362], [0.006062052678316832, 0.0015031128423288465, 0.0006979292957112193, 0.000531914469320327, 0.0007963349926285446, 0.0006721874815411866, 0.0009894188260659575, 0.3899540305137634], [0.008459176868200302, 0.001814587158150971, 0.0017486230935901403, 0.0016087424010038376, 0.0004658525576815009, 0.00046563157229684293, 0.0017203915631398559, 0.41783076524734497], [0.002494734711945057, 0.0014001242816448212, 0.00022686805459670722, 0.00018708065908867866, 6.835155363660306e-05, 0.0001292120141442865, 0.0005419838707894087, 0.3359127342700958], [0.0015233741141855717, 0.004458594601601362, 0.002075082855299115, 0.001972536789253354, 0.0014049700694158673, 0.0015179242473095655, 0.002926965244114399, 0.46008673310279846], [0.008366926573216915, 0.014395671896636486, 0.00581879448145628, 0.008429646492004395, 0.007404949050396681, 0.006506940815597773, 0.014795057475566864, 0.43959569931030273]], [[0.016052134335041046, 0.06287457793951035, 0.025008130818605423, 0.004577512387186289, 0.007040305994451046, 0.005467359907925129, 0.05901488661766052, 0.11065822094678879], [0.019709866493940353, 0.09214501082897186, 0.004933816846460104, 0.0051571037620306015, 0.003140565473586321, 0.0043029142543673515, 0.07132761925458908, 0.17333978414535522], [0.004997994750738144, 0.035782746970653534, 0.005109894089400768, 0.010521999560296535, 0.009112564846873283, 0.013246867805719376, 0.03709539398550987, 0.30620241165161133], [0.014003976248204708, 0.08979861438274384, 0.031223073601722717, 0.006575165782123804, 0.0029036386404186487, 0.006337929517030716, 0.0970286875963211, 0.25838419795036316], [0.004331996664404869, 0.02761840634047985, 0.006583582144230604, 0.002759317634627223, 0.000283123372355476, 0.0004700732242781669, 0.012028670869767666, 0.426663339138031], [0.0021214657463133335, 0.012420115992426872, 0.011270076967775822, 0.003285323502495885, 0.0017255217535421252, 0.0019435553112998605, 0.014284607954323292, 0.4361169636249542], [0.003711278084665537, 0.020651908591389656, 0.0056063514202833176, 0.0012981811305508018, 0.0004608895687852055, 0.0007714182720519602, 0.02760343626141548, 0.40973177552223206], [0.0229116789996624, 0.031449105590581894, 0.010500955395400524, 0.004389235749840736, 0.0022131619043648243, 0.0034238931257277727, 0.2693057060241699, 0.08032295852899551], [0.0005546637694351375, 0.005041162483394146, 0.0005469773896038532, 0.00041578782838769257, 0.0009226111578755081, 0.0005357841146178544, 0.004128101281821728, 0.4846450686454773]], [[0.03948110714554787, 0.016117794439196587, 0.00408739922568202, 0.0059061478823423386, 0.00850494671612978, 0.009124873206019402, 0.0209654588252306, 0.42636609077453613], [0.001067489036358893, 0.0010366725036874413, 0.0001745819899952039, 0.00017410116561222821, 0.00014942655980121344, 0.00018256505427416414, 0.0005827136337757111, 0.3475383520126343], [0.00041124087874777615, 0.00019700895063579082, 4.164076381130144e-05, 4.4116928620496765e-05, 4.400230318424292e-05, 8.783100929576904e-05, 0.0006969596142880619, 0.4735690653324127], [0.0015240313950926065, 0.0008374750032089651, 7.17956354492344e-05, 8.443900151178241e-05, 0.00012302333198022097, 0.00021348362497519702, 0.0005965592572465539, 0.09590543806552887], [0.0013285573804751039, 0.0005724547663703561, 0.00010126011329703033, 9.585007501300424e-05, 0.00011687017831718549, 0.00019451510161161423, 0.0004434861766640097, 0.22052322328090668], [0.0012602112255990505, 0.0013638047967106104, 7.213281787699088e-05, 0.00010111636220244691, 7.543480751337484e-05, 0.00015952668036334217, 0.0006899815052747726, 0.20854128897190094], [0.0001871999556897208, 0.0003869208157993853, 2.979900273203384e-05, 1.823881575546693e-05, 1.1048969099647366e-05, 2.4806040528346784e-05, 0.00010531870066188276, 0.09989587962627411], [0.0014124589506536722, 0.00039877681410871446, 7.560791709693149e-05, 0.00023732869885861874, 0.00015420631098095328, 0.00017564419249538332, 0.0006804355653002858, 0.1474103033542633], [0.006547246593981981, 0.004517809022217989, 0.0035991850309073925, 0.003991721197962761, 0.0026475691702216864, 0.0033872632775455713, 0.009543891996145248, 0.4501747786998749]], [[0.003284105332568288, 0.005533246323466301, 0.000588096387218684, 0.002263931091874838, 0.0011695821303874254, 0.007385763805359602, 0.027563799172639847, 0.18597130477428436], [0.008241813629865646, 0.005077504087239504, 0.0014919729437679052, 0.0005980879068374634, 0.0005341222858987749, 0.002417521784082055, 0.035039082169532776, 0.3315604627132416], [0.0045522586442530155, 0.010172532871365547, 0.0009862747974693775, 0.0018992063123732805, 0.0012225777609273791, 0.001290588523261249, 0.0036098496057093143, 0.3549647033214569], [0.003046703524887562, 0.008387365378439426, 0.0007170605240389705, 0.0073933349922299385, 0.0005713555146940053, 0.004207481164485216, 0.012904184870421886, 0.29721856117248535], [0.0009426865144632757, 0.002076572272926569, 0.0046088807284832, 0.00018185916997026652, 6.9033162617415655e-06, 9.313737973570824e-05, 0.0015832779463380575, 0.400356650352478], [0.001949335797689855, 0.0026379567570984364, 0.003050676081329584, 0.0023753070272505283, 0.0002932828792836517, 0.00032652748632244766, 0.0028833970427513123, 0.4201277792453766], [0.0006956520956009626, 0.00028857923462055624, 0.0004372325201984495, 0.0003889017680194229, 0.0004590452299453318, 0.0007199443061836064, 0.00028731179190799594, 0.32853779196739197], [0.0008920336258597672, 0.0014183634193614125, 0.00034004414919763803, 0.001212591421790421, 0.0005576686235144734, 0.006215730682015419, 0.004421238787472248, 0.43949562311172485], [0.00047569835442118347, 0.001369165489450097, 0.0004413688729982823, 0.0009748844895511866, 0.001188384834676981, 0.0030356338247656822, 0.0022334882523864508, 0.47052595019340515]], [[0.05743110552430153, 0.03015841916203499, 0.0389116033911705, 0.1059289276599884, 0.09665253758430481, 0.0629948079586029, 0.024561140686273575, 0.1330835223197937], [0.00791910570114851, 0.026128726080060005, 0.00259676412679255, 0.008003918454051018, 0.004369635134935379, 0.0027292920276522636, 0.010857478715479374, 0.1983613520860672], [0.004637308418750763, 0.0087659303098917, 0.004394723568111658, 0.0051969848573207855, 0.007367085199803114, 0.00740556325763464, 0.007463669404387474, 0.32345446944236755], [0.013535000383853912, 0.022532662376761436, 0.010652712546288967, 0.0040230113081634045, 0.007804324850440025, 0.0044662002474069595, 0.021488994359970093, 0.230083167552948], [0.003775682533159852, 0.01254457887262106, 0.014647881500422955, 0.005954829044640064, 0.0022444489877671003, 0.001237290445715189, 0.00422986876219511, 0.3527345657348633], [0.009205828420817852, 0.022906597703695297, 0.037429023534059525, 0.01118883490562439, 0.012235239148139954, 0.009026508778333664, 0.011575348675251007, 0.2844543159008026], [0.005561640486121178, 0.004467607941478491, 0.008465217426419258, 0.0059404075145721436, 0.0010698680998757482, 0.003112250939011574, 0.014009238220751286, 0.24808534979820251], [0.0872807651758194, 0.009856261312961578, 0.005068885162472725, 0.002886431524530053, 0.004178632982075214, 0.0037750352639704943, 0.01835758425295353, 0.09917805343866348], [0.008896546438336372, 0.012218263000249863, 0.007445402443408966, 0.004232125822454691, 0.010823560878634453, 0.009586363099515438, 0.005522599443793297, 0.42498186230659485]]], [[[0.0048317089676856995, 0.013595408760011196, 0.006370397750288248, 0.0018691695295274258, 0.0030129116494208574, 0.013100193813443184, 0.017499612644314766, 0.42969197034835815], [0.0009159205364994705, 0.004144875332713127, 0.0001511790615040809, 0.000310602190438658, 0.00045612110989168286, 0.0008489047759212554, 0.00035496437340043485, 0.46540531516075134], [0.002418787917122245, 0.0691961944103241, 0.0013466948876157403, 0.0027232251595705748, 0.0070961844176054, 0.00970343966037035, 0.001868013758212328, 0.36726292967796326], [0.002428583335131407, 0.002552286721765995, 0.000801368267275393, 0.00041510656592436135, 0.0004253717779647559, 0.0005719332257285714, 0.000939021585509181, 0.422831654548645], [0.0031867031939327717, 0.0006914493860676885, 0.0012891717487946153, 0.0005928617902100086, 8.706475637154654e-05, 0.00014216042472980917, 0.00036609344533644617, 0.44818317890167236], [0.0012754567433148623, 0.0007351312087848783, 0.001718595391139388, 0.0012440882856026292, 0.00026829823036678135, 0.000921970116905868, 0.000867162540089339, 0.2971906065940857], [0.00041073214379139245, 0.0003198066842742264, 0.0004931416478939354, 0.00017012680473271757, 3.870506043313071e-05, 3.4888595109805465e-05, 0.00021492960513569415, 0.4321800470352173], [0.003840586170554161, 0.0027971358504146338, 0.0054350970312952995, 0.002211071318015456, 0.002032962627708912, 0.003516688710078597, 0.0033688440453261137, 0.3903668224811554], [0.009005377069115639, 0.011797516606748104, 0.006628283765166998, 0.011358375661075115, 0.005317809525877237, 0.008896240964531898, 0.010583445429801941, 0.43598031997680664]], [[0.1628100425004959, 0.030247002840042114, 0.02467288076877594, 0.005937832407653332, 0.016153080388903618, 0.02845032513141632, 0.07733137160539627, 0.043842751532793045], [0.017276925966143608, 0.417903333902359, 0.002382363425567746, 0.0012518300209194422, 0.0021544185001403093, 0.0052099977619946, 0.05349516496062279, 0.044387832283973694], [0.0134042426943779, 0.294309139251709, 0.002574810292571783, 0.010791764594614506, 0.05678164213895798, 0.057391054928302765, 0.034848328679800034, 0.17542219161987305], [0.012645446695387363, 0.48845574259757996, 0.0131989112123847, 0.0008399324724450707, 0.003099683206528425, 0.002868443727493286, 0.04414999857544899, 0.06362830847501755], [0.00930524617433548, 0.15459536015987396, 0.06258784234523773, 0.003043663688004017, 0.003170684212818742, 0.000922352191992104, 0.03426472470164299, 0.15531444549560547], [0.1566128432750702, 0.15791141986846924, 0.03608215972781181, 0.0034717756789177656, 0.008231736719608307, 0.006995255593210459, 0.0943189263343811, 0.08041474223136902], [0.060373611748218536, 0.13012462854385376, 0.0345107801258564, 0.001532015623524785, 0.003784201806411147, 0.002534886123612523, 0.047472503036260605, 0.1699550300836563], [0.22668428719043732, 0.02831847593188286, 0.035298217087984085, 0.0016911088023334742, 0.005833702627569437, 0.0081093218177557, 0.08762441575527191, 0.1276521533727646], [0.0005170623189769685, 0.0001244523300556466, 0.00015349021123256534, 0.00014720424951519817, 0.0007089170394465327, 0.0013552111340686679, 0.0015393394278362393, 0.49420425295829773]], [[0.11088255047798157, 0.009979486465454102, 0.13842372596263885, 0.005928863771259785, 0.0024945370387285948, 0.005972075741738081, 0.012237956747412682, 0.25324955582618713], [0.007219382096081972, 0.0030119181610643864, 0.0217897966504097, 0.0009453329257667065, 0.00029282699688337743, 0.0011047397274523973, 0.0015492497477680445, 0.4210852086544037], [0.006758219096809626, 0.005464981775730848, 0.017780551686882973, 0.004257873632013798, 0.003060202347114682, 0.014453092589974403, 0.003659906331449747, 0.2726409435272217], [0.017222190275788307, 0.0010942252120003104, 0.029528802260756493, 0.0008049707394093275, 0.00016539113130420446, 0.0010713819647207856, 0.0016853123670443892, 0.30987706780433655], [0.016163554042577744, 0.001412366284057498, 0.025659902021288872, 0.0008126451866701245, 5.702931230189279e-05, 0.00026056068600155413, 0.0011112093925476074, 0.22837737202644348], [0.012830095365643501, 0.000998817733488977, 0.018047822639346123, 0.003052294021472335, 0.00040483244811184704, 0.0017198577988892794, 0.0012585220392793417, 0.3297401964664459], [0.005289510358124971, 0.00022451739641837776, 0.002790948608890176, 0.0001560000964673236, 7.321799785131589e-05, 0.0001176289952127263, 0.00014549212937708944, 0.16167351603507996], [0.007748475763946772, 0.0014988093171268702, 0.007949343882501125, 0.001540480530820787, 0.0014903619885444641, 0.004578712861984968, 0.002753122244030237, 0.32744359970092773], [0.000612407922744751, 0.00011897298827534541, 0.0014546907041221857, 0.0009421492577530444, 0.0003291982284281403, 0.0005824245163239539, 0.00030612730188295245, 0.49142026901245117]], [[0.04347488656640053, 0.10472960025072098, 0.028351252898573875, 0.014055064879357815, 0.03376052528619766, 0.10987947136163712, 0.050930436700582504, 0.15884585678577423], [0.007199322339147329, 0.00538942264392972, 0.004069355316460133, 0.0004276138497516513, 0.0016412222757935524, 0.0010410601971670985, 0.00106534524820745, 0.2562282085418701], [0.02286101132631302, 0.062114544212818146, 0.018452299758791924, 0.0095830662176013, 0.022546708583831787, 0.023739181458950043, 0.0057471501640975475, 0.1937822848558426], [0.0033327797427773476, 0.00393783301115036, 0.001168720773421228, 0.0001587439328432083, 0.0002526993921492249, 0.00019798599532805383, 0.0016236546216532588, 0.2027311772108078], [0.0012080990709364414, 0.0008347250986844301, 0.00047063728561624885, 0.00010091638978337869, 0.00017698350711725652, 0.00038561035762540996, 0.0009233275195583701, 0.14434728026390076], [0.005186551716178656, 0.0035664166789501905, 0.0012715347111225128, 0.00020305767247918993, 0.00035754733835346997, 0.0007406423101201653, 0.002453552559018135, 0.12199698388576508], [0.0027009497862309217, 0.0010039940243586898, 0.0002459725656080991, 8.721144695300609e-06, 2.6344872821937315e-05, 4.151917528361082e-05, 0.0005614097462967038, 0.2366921454668045], [0.04782627522945404, 0.01911432482302189, 0.014265851117670536, 0.002070075599476695, 0.003564816899597645, 0.007148840464651585, 0.011631689965724945, 0.2708803415298462], [0.006894415244460106, 0.009952890686690807, 0.002874460071325302, 0.0024511839728802443, 0.0039934152737259865, 0.005317137576639652, 0.005563290789723396, 0.44943347573280334]], [[0.047318875789642334, 0.04208676144480705, 0.01878889836370945, 0.01100761629641056, 0.014472916722297668, 0.028678569942712784, 0.02303166873753071, 0.05712360888719559], [0.010027594864368439, 0.026250414550304413, 0.00016817255527712405, 0.00015765403804834932, 0.0010028915712609887, 0.001455741818062961, 0.003909650258719921, 0.34610655903816223], [0.014680557884275913, 0.23162738978862762, 0.0005949627957306802, 0.001334000495262444, 0.006100136786699295, 0.0038041158113628626, 0.010946354828774929, 0.10669633746147156], [0.0033303960226476192, 0.0036240648478269577, 0.00010415743599878624, 6.836989632574841e-05, 0.0004043545632157475, 0.0009410078637301922, 0.00268644280731678, 0.4153790771961212], [0.001352126244455576, 0.00044505909318104386, 0.00015005332534201443, 7.851625559851527e-05, 0.000251096673309803, 0.0004647541791200638, 0.0010720709105953574, 0.4087378978729248], [0.0013278208207339048, 0.0016432307893410325, 0.0006061104359105229, 0.00024091789964586496, 0.0003382884315215051, 0.0005019005620852113, 0.001827525207772851, 0.29126864671707153], [0.00041284612962044775, 0.00029996121884323657, 0.00018194009317085147, 2.7954380129813217e-05, 2.7285574105917476e-05, 8.197926945285872e-05, 0.0009955595014616847, 0.41990479826927185], [0.0013476863969117403, 0.0009757888619787991, 0.005145919043570757, 0.002242211252450943, 0.00546660041436553, 0.01270740944892168, 0.002665742067620158, 0.35554587841033936], [0.0043053762055933475, 0.005080239847302437, 0.003791006049141288, 0.0025038542225956917, 0.003738861531019211, 0.0043176887556910515, 0.003739487612619996, 0.4700266718864441]], [[0.295781672000885, 0.09655699133872986, 0.04122977703809738, 0.011680122464895248, 0.023682251572608948, 0.03944287821650505, 0.2596244513988495, 0.0670582577586174], [0.044618159532547, 0.011934743262827396, 0.006733455695211887, 0.003417801344767213, 0.0020054092165082693, 0.003505244618281722, 0.02612491138279438, 0.040903929620981216], [0.03626762703061104, 0.020786143839359283, 0.03476434573531151, 0.01393949519842863, 0.01633043959736824, 0.030041249468922615, 0.045669056475162506, 0.136373832821846], [0.028196999803185463, 0.004327837377786636, 0.003999743144959211, 0.0011839843355119228, 0.00289732264354825, 0.002057417295873165, 0.007659147493541241, 0.08370807021856308], [0.004062858875840902, 0.0015230657299980521, 0.0006315033533610404, 0.00037841216544620693, 0.0003693833714351058, 0.00041127012809738517, 0.0014291186816990376, 0.41343972086906433], [0.020495956763625145, 0.0037178273778408766, 0.005999482702463865, 0.00213565188460052, 0.0006266881828196347, 0.0012144312495365739, 0.00257364334538579, 0.35028061270713806], [0.008470116183161736, 0.0014952346682548523, 0.0008349107229150832, 0.00035855252644978464, 0.00019745880854316056, 0.0003096552682109177, 0.0008380338549613953, 0.3941214978694916], [0.24784566462039948, 0.021695904433727264, 0.027697384357452393, 0.012594706378877163, 0.01625233329832554, 0.01723012514412403, 0.09224571287631989, 0.16830769181251526], [0.0026564847212284803, 0.0015937137650325894, 0.0021955850534141064, 0.0013482471695169806, 0.0035036050248891115, 0.0030389942694455385, 0.006620925385504961, 0.47618862986564636]], [[0.01971416547894478, 0.012520871125161648, 0.014196696691215038, 0.04266674444079399, 0.06630115956068039, 0.13645882904529572, 0.020663229748606682, 0.27162256836891174], [0.011775637045502663, 0.021446844562888145, 0.008897126652300358, 0.006316294893622398, 0.003781345207244158, 0.004298872780054808, 0.06142734736204147, 0.4088129699230194], [0.024049175903201103, 0.04038354009389877, 0.009856132790446281, 0.042130276560783386, 0.09189905971288681, 0.13149170577526093, 0.05680578202009201, 0.23308561742305756], [0.0277887973934412, 0.028559036552906036, 0.04810072481632233, 0.002099274890497327, 0.0015611655544489622, 0.002469548024237156, 0.11942794919013977, 0.30094653367996216], [0.02491355687379837, 0.026236336678266525, 0.032557472586631775, 0.004630800802260637, 0.0009867883054539561, 0.0012890314683318138, 0.041428811848163605, 0.32345518469810486], [0.04134989529848099, 0.03338254243135452, 0.01068473793566227, 0.0164481233805418, 0.007780981250107288, 0.00869892630726099, 0.0486072413623333, 0.35566696524620056], [0.010812873020768166, 0.004187391605228186, 0.01433098129928112, 0.0008310636621899903, 0.00033202828490175307, 0.0005916719092056155, 0.01870124228298664, 0.42383822798728943], [0.01016200426965952, 0.011044018901884556, 0.0020499739330261946, 0.003955901600420475, 0.007320732809603214, 0.009769922122359276, 0.03294747695326805, 0.4310513138771057], [0.0015525927301496267, 0.0007399389869533479, 0.0003649100835900754, 0.0012989139650017023, 0.0005600829608738422, 0.0007393680280074477, 0.001344136893749237, 0.49445563554763794]], [[0.014559449627995491, 0.008128352463245392, 0.0023905187845230103, 0.0035392807330936193, 0.004680223297327757, 0.011737367138266563, 0.008919155225157738, 0.19027940928936005], [0.004849882796406746, 0.10028526186943054, 0.0008345918613485992, 0.00013025582302361727, 0.0004532651510089636, 0.0009005948668345809, 0.0204936433583498, 0.28071486949920654], [0.03412898629903793, 0.0356706902384758, 0.006613811943680048, 0.0016629870515316725, 0.0022627764847129583, 0.0041103120893239975, 0.008976761251688004, 0.40428072214126587], [0.005062689073383808, 0.034249525517225266, 0.0017478674417361617, 0.0005563477170653641, 0.0013296814868226647, 0.0022447407245635986, 0.0033061415888369083, 0.1511630266904831], [0.0030811151955276728, 0.008572879247367382, 0.0008401154191233218, 0.0004128070722799748, 0.0004435096343513578, 0.0012179847108200192, 0.0015483907191082835, 0.3489091098308563], [0.007657022215425968, 0.006642375141382217, 0.0016416418366134167, 0.0008575631072744727, 0.0007466812967322767, 0.0015570770483464003, 0.0023182244040071964, 0.4153369963169098], [0.004504846874624491, 0.025017024949193, 0.0009471885277889669, 0.00015033608360681683, 0.0002836589119397104, 0.0006481963791884482, 0.000803065428044647, 0.3290868401527405], [0.04550926387310028, 0.014229928143322468, 0.0025907002855092287, 0.00118525349535048, 0.015766041353344917, 0.031047776341438293, 0.0337134450674057, 0.3869765102863312], [0.001826461055316031, 0.0011392956366762519, 0.0003445375186856836, 0.00018468966300133616, 0.00030858046375215054, 0.00044085789704695344, 0.0009231326985172927, 0.49129173159599304]], [[0.0010732098016887903, 0.00477633997797966, 0.004354223143309355, 0.0075611998327076435, 0.021549830213189125, 0.01947927288711071, 0.0012218202464282513, 0.09760917723178864], [0.015649547800421715, 0.0015865013701841235, 0.0014273712877184153, 0.0011091805063188076, 0.0005717066815122962, 0.0005742243374697864, 0.002128882333636284, 0.37321847677230835], [0.006230517290532589, 0.0032804086804389954, 0.001566218095831573, 0.002244587754830718, 0.0028147208504378796, 0.003891450585797429, 0.003037906251847744, 0.41739359498023987], [0.007210178766399622, 0.0002836399944499135, 0.0005375956534408033, 0.00020388355187606066, 0.00026844724197871983, 0.00024708264390937984, 0.0003567923849914223, 0.1310083568096161], [0.007526637054979801, 0.0002445836435072124, 0.0005103609873913229, 9.466143819736317e-05, 9.674780449131504e-05, 0.00011283303319942206, 0.00024979287991300225, 0.2946832776069641], [0.004856901243329048, 0.0003617899492383003, 0.00041130336467176676, 0.0001566927821841091, 0.0002147807099390775, 0.00016747067274991423, 0.0004744065518025309, 0.38762351870536804], [0.0032267882488667965, 8.66769187268801e-05, 0.0002767474506981671, 4.3074851419078186e-05, 6.098686935729347e-05, 2.6956120564136654e-05, 8.592664380557835e-05, 0.2770380973815918], [0.017350083217024803, 0.002472481457516551, 0.007692005019634962, 0.004206728655844927, 0.006269238889217377, 0.007918941788375378, 0.0077732219360768795, 0.11823378503322601], [0.001839584787376225, 0.0014997259713709354, 0.0012099746381863952, 0.0005585922044701874, 0.0013055087765678763, 0.0020755177829414606, 0.00253225932829082, 0.47647789120674133]], [[0.1533406674861908, 0.018616637215018272, 0.05333128944039345, 0.03856160119175911, 0.043811071664094925, 0.05566154792904854, 0.02177065797150135, 0.2787754535675049], [0.004810902290046215, 0.010067527182400227, 0.0016736246179789305, 0.001253933529369533, 0.0005668008816428483, 0.0003800280101131648, 0.004981522914022207, 0.3186272084712982], [0.007054249756038189, 0.008204019628465176, 0.0027342899702489376, 0.002221735892817378, 0.004332819953560829, 0.0047174980863928795, 0.010111250914633274, 0.35963594913482666], [0.008584678173065186, 0.004332812502980232, 0.0017546509625390172, 0.001383823691867292, 0.0005015212227590382, 0.0006448395433835685, 0.003256439231336117, 0.4117828905582428], [0.004521613474935293, 0.0005874623311683536, 0.003300200682133436, 0.001077298424206674, 0.0007348316721618176, 0.0009223945089615881, 0.0018239575438201427, 0.4225556254386902], [0.007566208951175213, 0.004074813332408667, 0.0014341933419927955, 0.0010749190114438534, 0.0015067352214828134, 0.0025543291121721268, 0.010188916698098183, 0.38741472363471985], [0.014265535399317741, 0.0007915281457826495, 0.00041516582132317126, 0.00019905800581909716, 0.00034425067133270204, 0.00028463194030337036, 0.0039726607501506805, 0.4168988764286041], [0.3998010456562042, 0.03413761034607887, 0.0030063919257372618, 0.005374548956751823, 0.0021507670171558857, 0.0029345527291297913, 0.02259133756160736, 0.2004455327987671], [0.002863365225493908, 0.008714480325579643, 0.0023594358935952187, 0.002408387837931514, 0.0029252413660287857, 0.00513874227181077, 0.00484278192743659, 0.46645388007164]], [[0.0039823842234909534, 0.003657964523881674, 0.0002105834282701835, 6.279854278545827e-05, 4.7327528591267765e-05, 6.027510607964359e-05, 0.00020931052858941257, 0.007738148327916861], [0.0013298604171723127, 0.0004945113323628902, 0.00016952953592408448, 7.105655095074326e-05, 6.787781603634357e-05, 7.845473010092974e-05, 0.00032202654983848333, 0.3817918002605438], [0.0013350893277674913, 0.0009313570917584002, 0.000807685952167958, 0.0005065089208073914, 0.0011528858449310064, 0.0018404115689918399, 0.0008356950711458921, 0.43895938992500305], [0.004323293454945087, 0.001152380253188312, 0.00032795529114082456, 4.296662882552482e-05, 3.927437501261011e-05, 7.340604497585446e-05, 0.000773404142819345, 0.3270932137966156], [0.002842686837539077, 0.0008875089697539806, 0.0013959720963612199, 9.383770520798862e-05, 5.161189619684592e-05, 9.606620733393356e-05, 0.0009053338435478508, 0.4020480215549469], [0.0004680295241996646, 0.00021170727268327028, 0.0003027835919056088, 2.6208121198578738e-05, 1.822735612222459e-05, 3.400551213417202e-05, 0.00025985995307564735, 0.45495229959487915], [0.0004845038056373596, 0.0003701139648910612, 0.00011911632464034483, 8.199156582122669e-06, 4.208972313790582e-06, 7.020726116024889e-06, 0.00013428495731204748, 0.43833789229393005], [0.01710766926407814, 0.002535186242312193, 0.0011205796618014574, 0.0005596016999334097, 0.0004692888760473579, 0.0008872764883562922, 0.0016481770435348153, 0.1401773989200592], [0.00020796949684154242, 0.0005166163900867105, 0.0001183771455544047, 0.0001405861257808283, 0.00010265725723002106, 0.00017407634004484862, 0.00023290878743864596, 0.48339858651161194]], [[0.026501759886741638, 0.10900821536779404, 0.005289906170219183, 0.011000261642038822, 0.004237881861627102, 0.007327502127736807, 0.01974298804998398, 0.39076194167137146], [0.002655788091942668, 0.012576981447637081, 0.001038345624692738, 0.0007706217584200203, 0.0007471159915439785, 0.0014480231329798698, 0.007153247948735952, 0.47391408681869507], [0.004179005045443773, 0.028227677568793297, 0.004841392394155264, 0.0027231143321841955, 0.0038517233915627003, 0.0034703370183706284, 0.004359300248324871, 0.44305703043937683], [0.0011937768431380391, 0.03412598744034767, 0.004045457113534212, 0.00038871620199643075, 0.0008475618669763207, 0.0017787367105484009, 0.006578113883733749, 0.4648900330066681], [0.0008434260380454361, 0.007327162194997072, 0.014572212472558022, 0.000952302769292146, 0.0009939376031979918, 0.0002982941805385053, 0.0005160043947398663, 0.45582640171051025], [0.000791336118709296, 0.0029782289639115334, 0.002553225727751851, 0.002838377607986331, 0.004467496648430824, 0.0021496093831956387, 0.0007641137926839292, 0.4801120460033417], [0.0011991563951596618, 0.01051073893904686, 0.0014299608301371336, 0.0003771988849621266, 0.0006182062206789851, 0.0015479909488931298, 0.002920611761510372, 0.4590602517127991], [0.0032608904875814915, 0.0023852873127907515, 0.0005035788635723293, 0.0003850368957500905, 0.001196642522700131, 0.0020421657245606184, 0.024681614711880684, 0.47441110014915466], [0.0004577460349537432, 0.0006627468392252922, 0.00020130944903939962, 0.0002016120561165735, 0.0006469369982369244, 0.0004911141586489975, 0.0006841516005806625, 0.49568289518356323]]], [[[0.015181167051196098, 0.037044424563646317, 0.007308067753911018, 0.008211001753807068, 0.001809056499041617, 0.00350956036709249, 0.03661438822746277, 0.0391903892159462], [0.0005153777310624719, 0.0016568899154663086, 0.00028812288655899465, 7.073071174090728e-05, 0.00011156703840242699, 7.928682316560298e-05, 0.0008843469549901783, 0.4856173098087311], [0.004677866119891405, 0.013790030032396317, 0.003182276152074337, 0.0027174786664545536, 0.0023203850723803043, 0.0023720802273601294, 0.021273797377943993, 0.386103093624115], [0.0006579301552847028, 0.00221068924292922, 0.0003203283413313329, 0.00013618030061479658, 5.894057539990172e-05, 7.135565829230472e-05, 0.0010692396899685264, 0.48356056213378906], [0.00012822668941225857, 0.0005460653337650001, 0.00011933306814171374, 4.748602441395633e-05, 2.402633435849566e-05, 2.608287650218699e-05, 0.0003296727081760764, 0.49338260293006897], [0.00044314799015410244, 0.001351499930024147, 0.00033148686634376645, 0.00018409447511658072, 0.00011737001477740705, 0.00011431476013967767, 0.0013041032943874598, 0.48249757289886475], [0.00012654908641707152, 0.0002103675651596859, 7.829531386960298e-05, 9.834147931542248e-06, 3.648479150797357e-06, 7.4688073254947085e-06, 0.00015460114809684455, 0.49497124552726746], [0.005831683054566383, 0.005642343312501907, 0.0041975583881139755, 0.0032122544944286346, 0.0011955649824813008, 0.003001833101734519, 0.007913363166153431, 0.4201355278491974], [0.043479740619659424, 0.06669101864099503, 0.018756907433271408, 0.02486284449696541, 0.01193234696984291, 0.01986880972981453, 0.046529270708560944, 0.08794885128736496]], [[0.03010939247906208, 0.06556187570095062, 0.049282003194093704, 0.05331811308860779, 0.01583646610379219, 0.024575941264629364, 0.07409147918224335, 0.2374797910451889], [0.012248959392309189, 0.01814456470310688, 0.006313006859272718, 0.010171320289373398, 0.0025753118097782135, 0.005846621468663216, 0.01385420747101307, 0.32137244939804077], [0.004868340212851763, 0.01493094302713871, 0.0028643771074712276, 0.008764074184000492, 0.016498828306794167, 0.020793871954083443, 0.010085796006023884, 0.35136276483535767], [0.010440210811793804, 0.016172656789422035, 0.019009361043572426, 0.0034970883280038834, 0.0017230180092155933, 0.0068774898536503315, 0.029006443917751312, 0.23238806426525116], [0.002408346626907587, 0.004377763718366623, 0.027403753250837326, 0.006692078895866871, 0.0008054658537730575, 0.0019218800589442253, 0.0015989654930308461, 0.18897461891174316], [0.0013545018155127764, 0.0016651070909574628, 0.00969926081597805, 0.007144162431359291, 0.003859245916828513, 0.005632257089018822, 0.001859018811956048, 0.2897820770740509], [0.0016921827336773276, 0.0028813534881919622, 0.004716459661722183, 0.0023062152322381735, 0.0013718843692913651, 0.004138705786317587, 0.00217791018076241, 0.14479246735572815], [0.009427139535546303, 0.003554626600816846, 0.008465141989290714, 0.003829637309536338, 0.00869431346654892, 0.006292673293501139, 0.018498538061976433, 0.44882848858833313], [0.041652701795101166, 0.042466986924409866, 0.041372764855623245, 0.054647766053676605, 0.12319710105657578, 0.07539340108633041, 0.03670293837785721, 0.06261132657527924]], [[0.0074180252850055695, 0.4516300857067108, 0.018311072140932083, 0.014141831547021866, 0.010655286721885204, 0.046470582485198975, 0.06728436797857285, 0.014353012666106224], [0.004522663541138172, 0.005325814243406057, 0.0003068078658543527, 0.0006961135077290237, 0.003771910211071372, 0.004824344534426928, 0.010274983011186123, 0.38568779826164246], [0.004735412076115608, 0.04083384573459625, 0.003947857301682234, 0.003733963705599308, 0.010412978008389473, 0.006634787190705538, 0.008894695900380611, 0.15638169646263123], [0.0026775398291647434, 0.021397093310952187, 0.0012701137457042933, 0.004175036679953337, 0.010991677641868591, 0.023143569007515907, 0.002945619635283947, 0.16759516298770905], [0.011022750288248062, 0.006715601310133934, 0.0030377975199371576, 0.0033546590711921453, 0.0038184982258826494, 0.00878156628459692, 0.0066856760531663895, 0.18572252988815308], [0.0027189224492758512, 0.002054766984656453, 0.0016770398942753673, 0.0033895059023052454, 0.005474029574543238, 0.0016631443286314607, 0.001165649970062077, 0.3343992233276367], [0.0007335039554163814, 0.0001920120557770133, 0.00022399597219191492, 0.00024870727793313563, 0.004835208412259817, 0.0011713503627106547, 1.2268412319826894e-05, 0.03173675015568733], [0.0025198671501129866, 0.024099325761198997, 0.006713059265166521, 0.016088169068098068, 0.003081422531977296, 0.02703266777098179, 0.00414266949519515, 0.2072777897119522], [0.026210786774754524, 0.10376135259866714, 0.03895127400755882, 0.034228626638650894, 0.04499056562781334, 0.05360503867268562, 0.17377375066280365, 0.03872605040669441]], [[0.012321523390710354, 0.0057823676615953445, 0.010587123222649097, 0.005133056081831455, 0.038473568856716156, 0.03444083780050278, 0.026070941239595413, 0.36958232522010803], [0.002114752307534218, 0.000970024848356843, 0.000916947377845645, 0.0004213794891256839, 0.0017221391899511218, 0.0034923176281154156, 0.0013794493861496449, 0.44774603843688965], [0.0030113717075437307, 0.0059552849270403385, 0.00252044596709311, 0.003164339577779174, 0.00593807315453887, 0.006492985878139734, 0.01132645271718502, 0.3943582773208618], [0.005140735302120447, 0.001223384984768927, 0.0018318829825147986, 0.00040970585541799664, 0.003559007542207837, 0.004720765631645918, 0.0027475282549858093, 0.30339279770851135], [0.0014110163319855928, 0.00015829451149329543, 0.0005777047481387854, 0.00011080861440859735, 0.0005434292834252119, 0.0007688202895224094, 0.00011086231097579002, 0.4635273516178131], [0.0014607772463932633, 0.00045140658039599657, 0.007177236024290323, 0.0012704264372587204, 0.0014691947726532817, 0.0009623391670174897, 0.00031864267657510936, 0.3437049686908722], [0.0013801399618387222, 6.686729466309771e-05, 0.00027393829077482224, 4.0218885260401294e-05, 0.0008534585358574986, 0.0003895273548550904, 5.673698251484893e-05, 0.11314071714878082], [0.009634271264076233, 0.0018515965202823281, 0.002754193963482976, 0.002813354367390275, 0.0015979899326339364, 0.016356630250811577, 0.013453013263642788, 0.3583301901817322], [0.0730045735836029, 0.043590791523456573, 0.07098162174224854, 0.05784333497285843, 0.013427472673356533, 0.033653624355793, 0.08769694715738297, 0.10716239362955093]], [[0.14559076726436615, 0.018215667456388474, 0.03304503858089447, 0.00839836522936821, 0.005301028955727816, 0.016955891624093056, 0.14986765384674072, 0.08480477333068848], [0.0006974827847443521, 0.0005899725365452468, 0.0008616857812739909, 0.0009893173119053245, 0.00039425274007953703, 0.0009596660383976996, 0.0030321709346026182, 0.4857323169708252], [0.012372939847409725, 0.01160029973834753, 0.013721444644033909, 0.014973224140703678, 0.011269966140389442, 0.031242715194821358, 0.022506842389702797, 0.35640522837638855], [0.0007568212458863854, 0.0005134233506396413, 0.001029378385283053, 0.0007043932564556599, 0.00032219517743214965, 0.0010616589570418, 0.0020265160128474236, 0.48886939883232117], [0.00042579194996505976, 0.0008980543352663517, 0.000635086209513247, 0.00027596595464274287, 0.00016428271192125976, 0.00040110538247972727, 0.0016371335368603468, 0.49045225977897644], [0.0028790198266506195, 0.0022173512261360884, 0.0026488876901566982, 0.0033455409575253725, 0.0025797525886446238, 0.005034410394728184, 0.005907638464123011, 0.4574113190174103], [6.23662126599811e-05, 6.033935278537683e-05, 9.53183916863054e-05, 6.083087282604538e-05, 3.3789641747716814e-05, 0.00011050031753256917, 0.00022006798826623708, 0.4977724552154541], [0.006600002758204937, 0.0032698549330234528, 0.003010248066857457, 0.004509266000241041, 0.013244258239865303, 0.037509091198444366, 0.012514753267168999, 0.415348082780838], [0.06378481537103653, 0.05510827153921127, 0.02587272599339485, 0.033313728868961334, 0.06530474871397018, 0.07745680212974548, 0.04593774676322937, 0.020576084032654762]], [[0.1300194412469864, 0.06651037186384201, 0.0332353413105011, 0.012909423559904099, 0.01947220414876938, 0.036484528332948685, 0.07809310406446457, 0.16260197758674622], [0.00047510152217000723, 0.0004351798561401665, 0.00017731636762619019, 5.776186299044639e-05, 7.527276466134936e-05, 6.850382487755269e-05, 0.00023697895812802017, 0.4852283000946045], [0.0013492201687768102, 0.004466199316084385, 0.001956002553924918, 0.0017063363920897245, 0.0011636473936960101, 0.0012486072955653071, 0.003153716679662466, 0.4459116756916046], [0.0034354578237980604, 0.001242276281118393, 0.00020345202938187867, 9.469996439293027e-05, 0.00032897398341447115, 0.00036875149817205966, 0.0002733061264734715, 0.4273930788040161], [0.00065084348898381, 0.0002197490684920922, 2.4478951672790572e-05, 5.385138592828298e-06, 2.81820884993067e-05, 3.485134584479965e-05, 9.33391202124767e-05, 0.47352316975593567], [0.000476703280583024, 0.0005946724559180439, 9.42141778068617e-05, 4.75219203508459e-05, 7.814638229319826e-05, 8.306042582262307e-05, 0.00042882596608251333, 0.46243762969970703], [0.00015426297613885254, 0.0001202375497086905, 1.7891805327963084e-05, 4.126811290916521e-06, 9.059407602762803e-06, 8.434074516117107e-06, 2.0615409084712155e-05, 0.48244717717170715], [0.009669188410043716, 0.0156327486038208, 0.01374389324337244, 0.0038618582766503096, 0.0127576794475317, 0.02555658668279648, 0.008647947572171688, 0.18531642854213715], [0.07450896501541138, 0.07156369090080261, 0.045038677752017975, 0.01917661540210247, 0.023329945281147957, 0.03058750182390213, 0.06733981519937515, 0.052815914154052734]], [[0.01228831335902214, 0.015609201975166798, 0.032111670821905136, 0.012758095748722553, 0.0061138225719332695, 0.004474921151995659, 0.015248680487275124, 0.3335612416267395], [0.011894120834767818, 0.027632376179099083, 0.0011993215885013342, 0.0015239602653309703, 0.0035313968546688557, 0.005179283674806356, 0.007686154451221228, 0.10294996201992035], [0.0032003161031752825, 0.013003394939005375, 0.0014218718279153109, 0.0023714208509773016, 0.0047865635715425014, 0.004659844562411308, 0.0023978373501449823, 0.43564435839653015], [0.017179351300001144, 0.013721817173063755, 0.0033908530604094267, 0.0012215559836477041, 0.0019341274164617062, 0.01065319124609232, 0.02777142822742462, 0.26020947098731995], [0.01774829439818859, 0.02144251950085163, 0.018231764435768127, 0.0022519645281136036, 0.0029482017271220684, 0.0046544428914785385, 0.007204971741884947, 0.288743257522583], [0.003848151070997119, 0.0038266179617494345, 0.00354035128839314, 0.006275768391788006, 0.03807111084461212, 0.020371876657009125, 0.0031910173129290342, 0.33525094389915466], [0.010209450498223305, 0.004915465135127306, 0.004503487143665552, 0.0014725106302648783, 0.003366798395290971, 0.024533716961741447, 0.007173631340265274, 0.2721942663192749], [0.006721692159771919, 0.0010464602382853627, 0.0018745623528957367, 0.0017630831571295857, 0.003176035126671195, 0.010428940877318382, 0.011136632412672043, 0.4687146246433258], [0.04192528501152992, 0.034860797226428986, 0.04306088015437126, 0.05358944088220596, 0.04296611621975899, 0.03213052451610565, 0.023502783849835396, 0.04756931960582733]], [[0.027511289343237877, 0.00549459271132946, 0.005734039004892111, 0.012193862348794937, 0.02143184095621109, 0.04460465535521507, 0.02564733475446701, 0.1099136546254158], [0.00046874547842890024, 0.0005420306697487831, 0.00021973784896545112, 0.00012679400970228016, 0.00028480769833549857, 0.0003197281330358237, 0.002932084258645773, 0.46218210458755493], [0.0044616395607590675, 0.003059007693082094, 0.0023303984198719263, 0.0019287529867142439, 0.0028897172305732965, 0.0021838685497641563, 0.008044886402785778, 0.4150567054748535], [0.0007514867465943098, 0.0005996265099383891, 0.0002394503098912537, 8.770742715569213e-05, 0.00026368172257207334, 0.0004236908571328968, 0.0019566179253160954, 0.44019609689712524], [0.0003465223126113415, 0.0005982271977700293, 0.000129126594401896, 5.479178071254864e-05, 0.00016803036851342767, 0.00024263568047899753, 0.0008168180356733501, 0.47805219888687134], [0.0014818526105955243, 0.0007619521929882467, 0.00015171317500062287, 0.00034284955472685397, 0.000257182284258306, 0.00030193428392522037, 0.0009315503411926329, 0.47590693831443787], [0.0002100910642184317, 0.0004091616428922862, 3.307452061562799e-05, 1.6781505109975114e-05, 4.9918708100449294e-05, 3.62369573849719e-05, 0.00010921825014520437, 0.48819881677627563], [0.006830625701695681, 0.006497418042272329, 0.0014774419832974672, 0.001694126520305872, 0.00455170962959528, 0.006821697577834129, 0.007999786175787449, 0.3300948739051819], [0.061965107917785645, 0.026844659820199013, 0.028733020648360252, 0.050168730318546295, 0.043751060962677, 0.047621648758649826, 0.029106590896844864, 0.0346611812710762]], [[0.03151163086295128, 0.04038861021399498, 0.004716391675174236, 0.0022513114381581545, 0.004074785392731428, 0.004794635809957981, 0.0177069753408432, 0.02785603143274784], [9.92259883787483e-05, 0.00035741852479986846, 1.979589978873264e-05, 1.205618173116818e-05, 2.6383597287349403e-05, 6.090150782256387e-05, 5.580222205026075e-05, 0.4632743299007416], [0.0021581666078418493, 0.0033202350605279207, 0.0003368133620824665, 0.000686759885866195, 0.0017312692943960428, 0.0029334593564271927, 0.0014132607029750943, 0.3673441410064697], [9.602065983926877e-05, 0.000298014230793342, 8.248635822383221e-06, 6.328611561912112e-06, 2.4179114916478284e-05, 3.294492489658296e-05, 6.319790554698557e-05, 0.42759016156196594], [0.00014846559497527778, 0.00011577551777008921, 1.6292860891553573e-05, 1.394977152813226e-05, 4.444810838322155e-05, 5.568798223976046e-05, 1.6206218788283877e-05, 0.44239500164985657], [0.0001516962656751275, 7.444067887263373e-05, 6.174557347549126e-05, 4.51018349849619e-05, 4.19144744228106e-05, 4.8041616537375376e-05, 9.0475965407677e-05, 0.46358057856559753], [2.134717578883283e-05, 2.520662201277446e-05, 7.673579602851532e-06, 2.4434507395199034e-06, 3.6411822748050326e-06, 5.242377937975107e-06, 8.29257805889938e-06, 0.4852089583873749], [0.01582510583102703, 0.012782753445208073, 0.0029895156621932983, 0.0023663993924856186, 0.003747776383534074, 0.006415943615138531, 0.0017819269560277462, 0.15226785838603973], [0.07242625951766968, 0.06421176344156265, 0.02264004945755005, 0.022385884076356888, 0.02793087065219879, 0.0417201966047287, 0.04873313754796982, 0.03058326616883278]], [[0.06615925580263138, 0.1434141844511032, 0.022935261949896812, 0.04915748909115791, 0.015306605957448483, 0.04002919793128967, 0.06859113276004791, 0.16281402111053467], [0.0005404543480835855, 0.0032355240546166897, 0.0004610133182723075, 0.0004868287069257349, 0.00017495555221103132, 0.0003916494606528431, 0.0007276583346538246, 0.42492014169692993], [0.006439655087888241, 0.004995717667043209, 0.0036415448412299156, 0.005137015599757433, 0.00295317848213017, 0.004329044371843338, 0.008989431895315647, 0.28975409269332886], [0.0009250261937268078, 0.0013515491737052798, 0.00027101539308205247, 0.0005121860303916037, 0.00016572978347539902, 0.00026561651611700654, 0.0002657518198247999, 0.43407711386680603], [0.0007739319116808474, 0.0002040095132542774, 0.00039185595232993364, 0.00025424480554647744, 0.00020460222731344402, 0.0004650890768971294, 0.00019668148888740689, 0.4328029155731201], [0.0012296921340748668, 0.0014666297938674688, 0.0009050819207914174, 0.0007641538977622986, 0.0007323913159780204, 0.006183965131640434, 0.002177775138989091, 0.3785516023635864], [0.0009354655048809946, 0.0003364763979334384, 0.00011879779049195349, 3.82945072487928e-05, 6.553070852532983e-05, 0.00014574828674085438, 0.00043933792039752007, 0.4702087640762329], [0.0202657300978899, 0.007372016087174416, 0.0011321034980937839, 0.002829032251611352, 0.004533847793936729, 0.0069343033246695995, 0.008051430806517601, 0.41641467809677124], [0.04809525981545448, 0.03827739134430885, 0.048354387283325195, 0.06098698452115059, 0.021728895604610443, 0.03311336413025856, 0.04332215338945389, 0.07475318759679794]], [[0.18407712876796722, 0.13811609148979187, 0.045445073395967484, 0.04202461987733841, 0.017699168995022774, 0.09280543029308319, 0.17283934354782104, 0.12390147894620895], [0.004567495547235012, 0.011032997630536556, 0.0014533872017636895, 0.0011132156942039728, 0.002293672412633896, 0.0022270982153713703, 0.01580410823225975, 0.3697202801704407], [0.011551078408956528, 0.06883895397186279, 0.005183523986488581, 0.0058635990135371685, 0.004531262908130884, 0.005609424784779549, 0.024288151413202286, 0.2057720273733139], [0.006261177361011505, 0.00848576333373785, 0.0009272063034586608, 0.00020743250206578523, 0.0008275808650068939, 0.0011753778671845794, 0.002123234560713172, 0.3910229504108429], [0.003788940142840147, 0.003466266207396984, 0.0008004122064448893, 0.000282483350019902, 0.0002160463045584038, 0.000699541880749166, 0.0007460000924766064, 0.4195384681224823], [0.005188953597098589, 0.0017260070890188217, 0.0007557006902061403, 0.0004662904539145529, 0.0001499742502346635, 0.00020037752983625978, 0.0007393888081423938, 0.4755922257900238], [0.0013564227847382426, 0.0003556346637196839, 0.0002704523503780365, 6.861519068479538e-05, 6.115328142186627e-05, 6.001251676934771e-05, 0.00019832341058645397, 0.4870179295539856], [0.08767428249120712, 0.01155879721045494, 0.006227867677807808, 0.003182590240612626, 0.010955565609037876, 0.010828515514731407, 0.030895376577973366, 0.1330852210521698], [0.16030406951904297, 0.08772019296884537, 0.02232789620757103, 0.07457009702920914, 0.028874531388282776, 0.07092004269361496, 0.1276581585407257, 0.06917877495288849]], [[0.11886419355869293, 0.07697320729494095, 0.037396643310785294, 0.04120451584458351, 0.01877675950527191, 0.027979085221886635, 0.08904127776622772, 0.23248472809791565], [0.008276933804154396, 0.005633383523672819, 0.002469992032274604, 0.0014278696617111564, 0.0008420258527621627, 0.0006289502489380538, 0.004989249631762505, 0.38134798407554626], [0.023134000599384308, 0.023985888808965683, 0.0041265543550252914, 0.005320061929523945, 0.004773941356688738, 0.005675092339515686, 0.01211258489638567, 0.26225224137306213], [0.006874042097479105, 0.00850733183324337, 0.0013631429756060243, 0.0005309132393449545, 0.001485362066887319, 0.0011285279178991914, 0.008078392595052719, 0.349385529756546], [0.002068092580884695, 0.0010510390857234597, 0.0007059122435748577, 0.0002391476446064189, 0.00038428109837695956, 0.00021039703278802335, 0.0005056892987340689, 0.45245563983917236], [0.001110286801122129, 0.0004653401265386492, 0.00046777038369327784, 0.0001648969337111339, 0.0007357471622526646, 0.00046614118036814034, 0.00025472865672782063, 0.4807691276073456], [0.0007214153883978724, 0.00022754530073143542, 0.00034482477349229157, 3.258667857153341e-05, 0.00019096818869002163, 0.00017288138042204082, 0.00016022541967686266, 0.4846828877925873], [0.03327256813645363, 0.01417594775557518, 0.005234787706285715, 0.002139626070857048, 0.003898981725797057, 0.005336273927241564, 0.020508065819740295, 0.2843939960002899], [0.06538642942905426, 0.0700591653585434, 0.033106256276369095, 0.03278014063835144, 0.02277837134897709, 0.035660289227962494, 0.0700807124376297, 0.03664569929242134]]]], \\\"left_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"]}, {\\\"name\\\": \\\"Sentence B -\\u003e Sentence A\\\", \\\"attn\\\": [[[[0.05085143446922302, 0.022023271769285202, 0.07580538094043732, 0.0070717972703278065, 0.047512125223875046, 0.07071699947118759, 0.017782360315322876, 0.08009849488735199, 0.019474850967526436], [0.04322425276041031, 0.00701436772942543, 0.07438955456018448, 0.00349072995595634, 0.020300857722759247, 0.03028024546802044, 0.011668267659842968, 0.043274637311697006, 0.00980078149586916], [0.022267881780862808, 0.023952627554535866, 0.06272710859775543, 0.0059244283474981785, 0.09645921736955643, 0.04347274824976921, 0.027442241087555885, 0.05181506276130676, 0.018496809527277946], [0.052432831376791, 0.02291150949895382, 0.04012122005224228, 0.004341240040957928, 0.02985801361501217, 0.01583763211965561, 0.015640828758478165, 0.02167329750955105, 0.05032937601208687], [0.06270148605108261, 0.018580680713057518, 0.15979012846946716, 0.015210376121103764, 0.02062022127211094, 0.02362925000488758, 0.038785237818956375, 0.01570395939052105, 0.0422176755964756], [0.0552029013633728, 0.03745970502495766, 0.08970589935779572, 0.007209817413240671, 0.010326535440981388, 0.014292473904788494, 0.015026808716356754, 0.041386928409338, 0.07573705166578293], [0.022899465635418892, 0.024759864434599876, 0.08564167469739914, 0.0077392589300870895, 0.038067229092121124, 0.03607000410556793, 0.01198351290076971, 0.04539123550057411, 0.033280134201049805], [5.39046709491231e-07, 1.2910049029812853e-08, 2.997915693470077e-09, 9.687985969009105e-10, 5.700149727227988e-11, 2.3968746432068144e-10, 2.120931874571852e-09, 2.0052830507211183e-09, 4.1204955778084695e-05]], [[0.1122286394238472, 0.005725213326513767, 0.007830118760466576, 0.018747668713331223, 0.046964243054389954, 0.02027987129986286, 0.04182044789195061, 0.060731735080480576, 0.14661774039268494], [0.0019868644885718822, 0.0029012442100793123, 0.03415127471089363, 0.003377157263457775, 0.021869391202926636, 0.016370456665754318, 0.01350669376552105, 0.13002537190914154, 0.08001197874546051], [0.0012034880928695202, 0.003988053649663925, 0.01811078004539013, 0.03138766437768936, 0.02679568901658058, 0.01594444178044796, 0.028057347983121872, 0.08293617516756058, 0.23756594955921173], [0.011548996903002262, 0.002671988680958748, 0.013300352729856968, 0.00573762645944953, 0.02851112000644207, 0.011765186674892902, 0.01182110421359539, 0.034734729677438736, 0.06407833099365234], [0.026585998013615608, 0.0010515417670831084, 0.004557711537927389, 0.005754321347922087, 0.01731204427778721, 0.004033405799418688, 0.005897670052945614, 0.011935831047594547, 0.0362488329410553], [0.041452087461948395, 0.000551372766494751, 0.012106509879231453, 0.0025557572953402996, 0.029549917206168175, 0.0024494952522218227, 0.004159799311310053, 0.009580275975167751, 0.01520668063312769], [0.0001405895600328222, 0.006572019308805466, 0.0031815404072403908, 0.0004570690798573196, 0.003964514471590519, 0.0015125961508601904, 0.001515182782895863, 0.0054846699349582195, 0.03184382990002632], [2.382694583502598e-05, 1.6672100173309445e-05, 1.213609539263416e-05, 3.5883535929315258e-06, 2.2867236111778766e-05, 8.452716429019347e-06, 1.6258918549283408e-05, 0.000548299984075129, 0.0027398846577852964]], [[0.4042286276817322, 0.02303842455148697, 0.04327826946973801, 0.02220737747848034, 0.024905072525143623, 0.017578905448317528, 0.031729016453027725, 0.05251544713973999, 0.04675205796957016], [0.02890595607459545, 0.0868535041809082, 0.03905981406569481, 0.07673788070678711, 0.06935548782348633, 0.017652153968811035, 0.039013754576444626, 0.04142361134290695, 0.11229785531759262], [0.051494911313056946, 0.05110412463545799, 0.07177115976810455, 0.03816363215446472, 0.06721803545951843, 0.055009134113788605, 0.05375649407505989, 0.038038868457078934, 0.041565731167793274], [0.30957141518592834, 0.026946723461151123, 0.030617903918027878, 0.00909468811005354, 0.012938322499394417, 0.005976587533950806, 0.0647820383310318, 0.042692121118307114, 0.03459575027227402], [0.17414706945419312, 0.02067970670759678, 0.10534961521625519, 0.03243619576096535, 0.03173006698489189, 0.03161533549427986, 0.05324887856841087, 0.03352835029363632, 0.04464622214436531], [0.14174634218215942, 0.07984764873981476, 0.05403934419155121, 0.018503038212656975, 0.043897174298763275, 0.04191182926297188, 0.05589395761489868, 0.0508967749774456, 0.03724489361047745], [0.0533464252948761, 0.04371226206421852, 0.019833769649267197, 0.02924042008817196, 0.06765838712453842, 0.03478259593248367, 0.037271589040756226, 0.03777080401778221, 0.03779437392950058], [0.06381995230913162, 0.03170640766620636, 0.004985055420547724, 0.016410794109106064, 0.010395670309662819, 0.00661464361473918, 0.03198925778269768, 0.03062201663851738, 0.0027444791048765182]], [[0.026182059198617935, 0.0026353721041232347, 0.014284180477261543, 0.0019502710783854127, 0.002652481198310852, 0.0106190862134099, 0.0039725396782159805, 0.01705651544034481, 0.0050896815955638885], [0.00655555771663785, 0.0012789893662557006, 0.0010506988037377596, 0.00044898202759213746, 0.0012205109233036637, 0.0004583994741551578, 0.0007158190128393471, 0.0017670101951807737, 0.00580983841791749], [0.019198056310415268, 0.001700622378848493, 0.0006798736867494881, 0.0012679336359724402, 0.0018198138568550348, 0.0021204801741987467, 0.0017914302879944444, 0.00396747887134552, 0.005293841939419508], [0.03541591390967369, 0.0010044040391221642, 0.009562980383634567, 0.0031110995914787054, 0.004129722248762846, 0.012886565178632736, 0.005492286290973425, 0.014601752161979675, 0.003477429738268256], [0.02291938289999962, 0.006745031103491783, 0.02585463784635067, 0.016562605276703835, 0.018693825230002403, 0.026624808087944984, 0.013393472880125046, 0.025357374921441078, 0.007036125287413597], [0.012972544878721237, 0.004065094515681267, 0.02714398130774498, 0.0024757881183177233, 0.008076858706772327, 0.02106679230928421, 0.010974295437335968, 0.03196815028786659, 0.0046197292394936085], [0.011609595268964767, 0.0008981616119854152, 0.00037887669168412685, 0.0001698910491541028, 0.0013160291127860546, 0.0010050254641100764, 0.0007526596309617162, 0.0023018934298306704, 0.007861015386879444], [0.0019937308970838785, 0.0008322559297084808, 0.00023586218594573438, 0.001045373734086752, 0.0003337216912768781, 0.0001086789125110954, 0.001255252631381154, 0.001599939540028572, 0.0025449173990637064]], [[0.024266233667731285, 0.01093385275453329, 0.016984064131975174, 0.004984752275049686, 0.007481112610548735, 0.03188614174723625, 0.00909456703811884, 0.2679964601993561, 0.022699784487485886], [0.015299608930945396, 0.015785014256834984, 0.008361319079995155, 0.0006249594152905047, 0.007860596291720867, 0.002455179812386632, 0.008047391660511494, 0.016079703345894814, 0.012717393226921558], [0.053870562463998795, 0.004424483515322208, 0.0043601482175290585, 0.001997340004891157, 0.01322959829121828, 0.014276626519858837, 0.0033141672611236572, 0.05482332780957222, 0.032131992280483246], [0.00925365462899208, 0.006607287097722292, 0.012390349991619587, 0.015145400539040565, 0.021609047427773476, 0.00757995992898941, 0.014946120791137218, 0.013473916798830032, 0.01051262766122818], [0.04649527370929718, 0.007164914160966873, 0.005849217996001244, 0.0012236693874001503, 0.0437605120241642, 0.007520769722759724, 0.017299002036452293, 0.010521815158426762, 0.016591574996709824], [0.014624546281993389, 0.004884281195700169, 0.00985758937895298, 0.003012509550899267, 0.03382030501961708, 0.00245943502523005, 0.013505540788173676, 0.007328514941036701, 0.010887760668992996], [0.01661417819559574, 0.016832664608955383, 0.004995496943593025, 0.0006262136739678681, 0.0031050376128405333, 0.0018032253719866276, 0.0009451500372961164, 0.003058635164052248, 0.005683426279574633], [0.011585846543312073, 0.0014485669089481235, 0.0012079791631549597, 0.010266603901982307, 0.003049129154533148, 0.0021340458188205957, 0.00614704005420208, 0.04010748863220215, 0.0025159502401947975]], [[0.062082190066576004, 0.05242917686700821, 0.02288883738219738, 0.06286608427762985, 0.021808043122291565, 0.0169636569917202, 0.12245861440896988, 0.028119267895817757, 0.01948828436434269], [0.21505969762802124, 0.01480448804795742, 0.024971431121230125, 0.02108367718756199, 0.008694419637322426, 0.020008806139230728, 0.0335586741566658, 0.15525440871715546, 0.028348395600914955], [0.0871221199631691, 0.034306786954402924, 0.016620954498648643, 0.040584951639175415, 0.01628957688808441, 0.011101530864834785, 0.13387727737426758, 0.08549814671278, 0.046284761279821396], [0.015155383385717869, 0.04207645356655121, 0.038503292948007584, 0.06510785967111588, 0.018866432830691338, 0.013820890337228775, 0.07301356643438339, 0.0866699293255806, 0.06137312203645706], [0.11631946265697479, 0.08591070771217346, 0.013996097259223461, 0.02553335763514042, 0.044912923127412796, 0.051308274269104004, 0.08520212769508362, 0.03852086141705513, 0.04989771172404289], [0.040084920823574066, 0.0794089138507843, 0.04568714648485184, 0.04725225269794464, 0.018014028668403625, 0.02296232245862484, 0.09286968410015106, 0.13630813360214233, 0.02106429450213909], [0.02700302191078663, 0.01747763529419899, 0.03070266917347908, 0.12967005372047424, 0.020561538636684418, 0.0304489117115736, 0.057144373655319214, 0.06352531909942627, 0.07827381044626236], [0.00249118753708899, 0.058819033205509186, 0.0013066079700365663, 0.004116188734769821, 0.0038019418716430664, 0.0012782010016962886, 0.00383367040194571, 0.0006938646547496319, 0.5325980186462402]], [[0.003567933337762952, 0.006447296589612961, 0.012742963619530201, 0.0049604326486587524, 0.031012924388051033, 0.023581689223647118, 0.07633425295352936, 0.7590482831001282, 0.04287115857005119], [0.002508379751816392, 0.008127317763864994, 0.006937735248357058, 0.003746312577277422, 0.012477690353989601, 0.01154171023517847, 0.029863722622394562, 0.6015902161598206, 0.2265121340751648], [0.0013870190596207976, 0.02100195735692978, 0.00815045926719904, 0.02463262714445591, 0.007942592725157738, 0.011483998037874699, 0.012731208465993404, 0.44544947147369385, 0.263877809047699], [0.013663713820278645, 0.013034246861934662, 0.016080224886536598, 0.006316511891782284, 0.026983000338077545, 0.01072967704385519, 0.025954073294997215, 0.15858541429042816, 0.09496775269508362], [0.011303563602268696, 0.008551310747861862, 0.017003187909722328, 0.014643363654613495, 0.014294256456196308, 0.006495532114058733, 0.008540479466319084, 0.054204944521188736, 0.047746505588293076], [0.0015166419325396419, 0.008756814524531364, 0.012863056734204292, 0.01837296597659588, 0.027307458221912384, 0.007392773870378733, 0.021870072931051254, 0.03886174038052559, 0.026515083387494087], [0.0009545692591927946, 0.001522948150523007, 0.002078883582726121, 0.0015379617689177394, 0.002696308773010969, 0.001345092081464827, 0.003131213830783963, 0.012030623853206635, 0.009217243641614914], [0.005904765799641609, 0.004374198615550995, 0.006154804956167936, 0.0007268937770277262, 0.003546689171344042, 0.001545797218568623, 0.0059205312281847, 0.013320356607437134, 0.00551215372979641]], [[0.005822913721203804, 0.0067282626405358315, 0.008053707890212536, 0.004308303818106651, 0.011623624712228775, 0.00645578233525157, 0.0034779582638293505, 0.02257639169692993, 0.024457497522234917], [0.006752613931894302, 0.021546373143792152, 0.022713132202625275, 0.03949722275137901, 0.02330799028277397, 0.02343795821070671, 0.007825855165719986, 0.018903149291872978, 0.018383199349045753], [0.010231377556920052, 0.006993897724896669, 0.0035543779376894236, 0.006209128070622683, 0.008916785940527916, 0.0025827386416494846, 0.013614773750305176, 0.02752945013344288, 0.008013597689568996], [0.0017297770828008652, 0.0035777920857071877, 0.004379001911729574, 0.00348403537645936, 0.013788655400276184, 0.010207629762589931, 0.006903520785272121, 0.01639179140329361, 0.0050702570006251335], [0.02367863617837429, 0.014378308318555355, 0.019954072311520576, 0.01592298410832882, 0.017052380368113518, 0.014680364169180393, 0.031541772186756134, 0.1418466866016388, 0.016826948150992393], [0.0025931817945092916, 0.005052092485129833, 0.00449332082644105, 0.007472687866538763, 0.00824285950511694, 0.006850372534245253, 0.00588183430954814, 0.01014531310647726, 0.003920306917279959], [0.006727236323058605, 0.008314987644553185, 0.016345614567399025, 0.013904438354074955, 0.018732335418462753, 0.022339019924402237, 0.013412481173872948, 0.04597458615899086, 0.008343709632754326], [0.001379967201501131, 0.0031912035774439573, 0.004053221084177494, 0.002789696678519249, 0.00516172219067812, 0.0034302109852433205, 0.015421082265675068, 0.3257053792476654, 0.0012095352867618203]], [[0.03135097771883011, 0.05269235000014305, 0.023349938914179802, 0.1323545277118683, 0.13828955590724945, 0.07383492588996887, 0.031481850892305374, 0.028434528037905693, 0.020914731547236443], [0.03490123152732849, 0.10801766067743301, 0.019449643790721893, 0.04172982648015022, 0.07739521563053131, 0.03016926348209381, 0.13350681960582733, 0.048867661505937576, 0.03307081386446953], [0.05154607072472572, 0.13161619007587433, 0.015470139682292938, 0.037308115512132645, 0.09358541667461395, 0.045323196798563004, 0.08748354762792587, 0.04389321058988571, 0.0751238763332367], [0.045170001685619354, 0.023220911622047424, 0.05770496651530266, 0.02595735527575016, 0.2384619265794754, 0.22330813109874725, 0.06707781553268433, 0.04752959683537483, 0.005720003042370081], [0.05315763130784035, 0.06410051882266998, 0.020315688103437424, 0.015302143059670925, 0.1043320894241333, 0.2639279365539551, 0.030412442982196808, 0.023462509736418724, 0.02145475521683693], [0.16818305850028992, 0.06326840817928314, 0.05614742264151573, 0.07093902677297592, 0.04383542761206627, 0.11131663620471954, 0.023724956437945366, 0.034650057554244995, 0.01285067480057478], [0.018804555758833885, 0.1452721804380417, 0.015372946858406067, 0.046491123735904694, 0.06757894158363342, 0.04078845679759979, 0.0687142089009285, 0.02868746407330036, 0.07122844457626343], [0.6231653690338135, 0.04444140940904617, 0.015488763339817524, 0.014099380932748318, 0.023624960333108902, 0.06599694490432739, 0.04869147017598152, 0.02038084715604782, 0.0009414941305294633]], [[0.12921631336212158, 0.0027394054923206568, 0.0015853192890062928, 0.00033284889650531113, 0.0005371670704334974, 2.662128463271074e-05, 0.004090360831469297, 0.05729591101408005, 0.5213974714279175], [0.14676052331924438, 0.009243791922926903, 0.004999727010726929, 0.009514186531305313, 0.0008303028298541903, 0.0013667411403730512, 0.0007688934565521777, 0.07283740490674973, 0.09306642413139343], [0.008004061877727509, 0.002158306771889329, 0.0015265600522980094, 0.0005280429031699896, 0.0004625661240424961, 2.4361703253816813e-05, 0.0011331778950989246, 0.0005862020188942552, 0.01661285199224949], [0.0762576013803482, 0.001045120763592422, 0.003688471857458353, 0.0010932286968454719, 0.00449006212875247, 0.002644736785441637, 0.00073879404226318, 0.0010261982679367065, 0.0015050700167194009], [0.2574582099914551, 0.0006624235538765788, 0.0005549232009798288, 0.0007254296215251088, 0.0025924642104655504, 5.587463601841591e-05, 7.177134830271825e-05, 7.798853766871616e-05, 0.0012320630485191941], [0.010709894821047783, 0.0007484433590434492, 8.900796819943935e-05, 0.0016312870429828763, 0.003602010430768132, 0.00010779048170661554, 0.000447740574600175, 0.0009123242925852537, 0.0005111492937430739], [0.08550012111663818, 0.0001672657672315836, 0.0005095266969874501, 7.990856829565018e-05, 0.0007041409844532609, 1.4359509805217385e-05, 0.0009417919791303575, 0.00023594428785145283, 0.0007948753773234785], [0.8495730757713318, 3.872965862683486e-06, 3.082321200054139e-05, 7.923857992864214e-06, 1.9904187865904532e-05, 5.858074018760817e-06, 4.14150272263214e-05, 0.00016338461136911064, 3.6585079215001315e-05]], [[0.020670412108302116, 0.029202111065387726, 0.04855913668870926, 0.016554342582821846, 0.021941810846328735, 0.09035651385784149, 0.026405109092593193, 0.03387559577822685, 0.087388776242733], [0.08915013074874878, 0.029178563505411148, 0.03518853709101677, 0.015873081982135773, 0.025689249858260155, 0.05005418136715889, 0.0025903002824634314, 0.042547184973955154, 0.025278348475694656], [0.7777273058891296, 0.0037733472418040037, 0.001478124177083373, 0.0043999142944812775, 0.006701088044792414, 0.01302959956228733, 0.002849529730156064, 0.008094757795333862, 0.016851214691996574], [0.014837793074548244, 0.008079626597464085, 0.04585641622543335, 0.015075299888849258, 0.11292103677988052, 0.09782068431377411, 0.013583811931312084, 0.052380986511707306, 0.009831427596509457], [0.04893508553504944, 0.026316823437809944, 0.008845926262438297, 0.00985388457775116, 0.026612350717186928, 0.01817840337753296, 0.06177006661891937, 0.006831398233771324, 0.052024707198143005], [0.0260305292904377, 0.01183387916535139, 0.015168212354183197, 0.0069733876734972, 0.038386184722185135, 0.030776556581258774, 0.03352782130241394, 0.027250410988926888, 0.07035466283559799], [0.135867178440094, 0.011997750960290432, 0.029999757185578346, 0.024606216698884964, 0.025782689452171326, 0.03336285427212715, 0.0061295004561543465, 0.02897804230451584, 0.029729513451457024], [0.7758133411407471, 0.007774508558213711, 0.0009717227076180279, 0.002736188704147935, 0.004408706910908222, 0.001264071324840188, 0.0030430478509515524, 0.00028356979601085186, 0.009030964225530624]], [[0.017834164202213287, 0.002756795845925808, 0.05350993201136589, 0.0021620094776153564, 0.023222211748361588, 0.13789162039756775, 0.009836714714765549, 0.051396630704402924, 0.0002801534137688577], [0.009180780500173569, 0.0043208966962993145, 0.013429312966763973, 0.01852136105298996, 0.020653001964092255, 0.06049400940537453, 0.0036788966972380877, 0.013552435673773289, 0.000791482103522867], [0.007877924479544163, 0.002594415098428726, 0.051812794059515, 0.010642011649906635, 0.036495789885520935, 0.022167861461639404, 0.0056761750020086765, 0.014539164490997791, 0.0003590921696741134], [0.019241195172071457, 0.005438725929707289, 0.003354135202243924, 0.0021407820750027895, 0.024612626060843468, 0.031923312693834305, 0.008155552670359612, 0.025547876954078674, 0.001017207046970725], [0.07355764508247375, 0.014865903183817863, 0.15413416922092438, 0.005740889813750982, 0.05969779193401337, 0.05063951388001442, 0.05190437659621239, 0.010656776838004589, 0.0029035040643066168], [0.01094046887010336, 0.0014406978152692318, 0.07255426049232483, 0.002811927581205964, 0.01564006134867668, 0.011477588675916195, 0.01629479043185711, 0.017017584294080734, 0.003313269931823015], [0.008660070598125458, 0.001521358615718782, 0.017713433131575584, 0.0025126044638454914, 0.019752124324440956, 0.0498618483543396, 0.004999701865017414, 0.010655038990080357, 0.00021393646602518857], [0.005447723437100649, 0.0013296524994075298, 0.0012926749186590314, 0.00039578264113515615, 0.0017018918879330158, 0.0008921298431232572, 0.0018021955620497465, 0.0005336333997547626, 0.00013476944877766073]]], [[[0.46295905113220215, 0.13443738222122192, 0.004037299659103155, 0.018081648275256157, 0.0010580584639683366, 0.005880589596927166, 0.00943515170365572, 0.03630466014146805, 0.10564146190881729], [0.04682144895195961, 0.6307578682899475, 0.017838003113865852, 0.01651613786816597, 0.0009469649521633983, 0.003794413059949875, 0.013334283605217934, 0.018501348793506622, 0.044094476848840714], [0.1607009619474411, 0.05023277550935745, 0.006000313442200422, 0.029496043920516968, 0.006779431365430355, 0.002788977697491646, 0.014734962023794651, 0.07584323734045029, 0.07187895476818085], [0.1354241818189621, 0.08385733515024185, 0.0069400290958583355, 0.023752328008413315, 0.014441447332501411, 0.001654807711020112, 0.02139156311750412, 0.18527966737747192, 0.06950785964727402], [0.22548837959766388, 0.02763162925839424, 0.020267117768526077, 0.0464756041765213, 0.0020414525642991066, 0.0037675665225833654, 0.006938498001545668, 0.04487454518675804, 0.10998658090829849], [0.21357214450836182, 0.05379948392510414, 0.0038793820422142744, 0.029647590592503548, 0.005487753544002771, 0.004448940046131611, 0.06838462501764297, 0.12135495245456696, 0.09188488125801086], [0.06259501725435257, 0.0189773328602314, 0.001851109554991126, 0.015108867548406124, 0.0012967042857781053, 0.003537708893418312, 0.008021938614547253, 0.057718198746442795, 0.04869207739830017], [0.8161494135856628, 0.013028709217905998, 0.0003173933073412627, 0.005968824494630098, 0.0003629127750173211, 0.00032984092831611633, 0.0013746650656685233, 0.02198980748653412, 0.02877907268702984]], [[0.08589247614145279, 0.002521045971661806, 9.903813770506531e-05, 2.902046253439039e-05, 5.1632541726576164e-05, 0.001955093815922737, 0.013761550188064575, 0.007914502173662186, 0.8375268578529358], [0.04499068856239319, 0.0022313909139484167, 5.856103962287307e-05, 8.88756949279923e-06, 5.031471573602175e-06, 7.308822387130931e-05, 0.0003000217257067561, 0.0006080602179281414, 0.30511003732681274], [0.0602448396384716, 0.005734770558774471, 0.001047954079695046, 0.0003169375122524798, 1.9530880308593623e-05, 4.236752647557296e-05, 4.507845369516872e-05, 0.00014290698163677007, 0.11691242456436157], [0.13928642868995667, 0.0018911127699539065, 0.00031404936453327537, 0.0010929979616776109, 0.00011156240361742675, 8.815286128083244e-05, 1.8082988390233368e-05, 4.896871905657463e-05, 0.019383331760764122], [0.8591821789741516, 0.0004334145924076438, 0.0007691459613852203, 0.004641552921384573, 0.00032690729130990803, 0.0001838502794271335, 6.091551313147647e-06, 5.274484010442393e-06, 0.0008562818984501064], [0.07389561831951141, 0.00020063506963197142, 0.00036372541217133403, 0.0016754217213019729, 0.00023393449373543262, 0.0005504963919520378, 0.00013764100731350482, 4.866508606937714e-05, 0.002255277009680867], [0.2204533964395523, 0.0014500131364911795, 0.0001964420371223241, 0.00010653816570993513, 6.076391218812205e-05, 0.00023710961977485567, 3.652758459793404e-05, 2.269806464028079e-05, 0.0007382851326838136], [0.9199901223182678, 0.008011292666196823, 0.0006773861241526902, 0.0002690139808692038, 0.0001248049666173756, 0.0004705950850620866, 0.00030268330010585487, 0.00012253946624696255, 0.0017638558056205511]], [[4.028221312069036e-09, 1.202604639136129e-12, 5.910990199777455e-15, 7.949550923721157e-24, 2.0833208137356815e-22, 2.415849996843477e-19, 1.5831309874148047e-10, 1.0074910683499638e-08, 0.9999998807907104], [9.274425671890185e-11, 9.278203205731472e-13, 1.9859090500534693e-12, 5.480665447994227e-20, 2.703900293551721e-27, 1.5144368390267484e-21, 1.143353135113929e-21, 1.096773886988256e-11, 9.49169276509565e-09], [4.601445198204601e-07, 1.4353030985958526e-09, 3.6727996644003724e-07, 1.6840390843972375e-12, 2.4918963191308993e-17, 1.0714103736119974e-20, 2.0580576757746107e-19, 9.888555117311301e-17, 5.2989868493114045e-08], [1.781740266437737e-08, 3.1141718994802435e-15, 3.094352329924277e-09, 9.614233020815988e-11, 1.4511063520499662e-14, 7.01376949886214e-16, 5.623298527462219e-20, 2.6621659888328972e-17, 6.566792991922904e-17], [1.9992752640973777e-05, 2.909532424016925e-13, 5.3876687833298575e-11, 2.260905240802913e-08, 2.989041902878853e-09, 7.952740896377541e-12, 4.779488436967849e-14, 5.2451502789652784e-17, 7.312851009186121e-16], [1.1599305253184866e-05, 1.2786926262297639e-14, 2.75421300349743e-11, 1.9026799450219678e-13, 1.1895821784221883e-12, 6.454959483592759e-11, 4.586023401309536e-12, 9.211971463418678e-12, 5.12880831842643e-16], [6.81937308399938e-05, 2.973534266037525e-11, 1.0895241143744211e-13, 2.5913077785025837e-15, 1.2421710642913529e-15, 2.205678565139757e-12, 1.773802354998466e-10, 1.0491045532301513e-10, 1.1577308122595609e-12], [0.0007783960900269449, 3.822862026936491e-09, 3.6788537727261428e-06, 1.6344290504344272e-11, 5.106468091257976e-13, 1.0013295054234206e-10, 4.988924551252438e-11, 1.547768420095963e-07, 1.083850897920513e-09]], [[0.5440881252288818, 0.002226114273071289, 0.0004809642268810421, 0.0008448027074337006, 0.0015203584916889668, 3.912287138518877e-05, 0.016177812591195107, 0.003808376146480441, 0.2657618224620819], [0.45468011498451233, 0.001125458860769868, 9.822353604249656e-05, 0.0008718791068531573, 7.856896445446182e-06, 8.684596832608804e-05, 6.943345215404406e-05, 0.0007444634102284908, 0.07735700160264969], [0.054494284093379974, 0.00015698189963586628, 0.0003893310495186597, 4.77485591545701e-05, 3.832458605756983e-05, 3.2978691706375685e-06, 3.5208902318117907e-06, 0.0001223939034389332, 0.005355996545404196], [0.1705039143562317, 0.001200605765916407, 0.00021320053201634437, 0.00028567147091962397, 0.00032327102962881327, 0.00017610772920306772, 9.03454129002057e-05, 0.00015771057223901153, 0.002141034696251154], [0.04980429634451866, 2.7052323275711387e-05, 0.00019509704725351185, 5.3726187616121024e-05, 6.828049663454294e-06, 1.8254033420816995e-05, 2.514758762117708e-06, 1.1881355021614581e-05, 0.00025059940526261926], [0.09360872954130173, 9.496775419393089e-06, 0.00033224793151021004, 7.093108433764428e-05, 0.00012873514788225293, 6.449621287174523e-05, 9.584928920958191e-05, 3.930669481633231e-05, 7.742291199974716e-05], [0.4327191412448883, 0.00019548767886590213, 0.00016073616279754788, 0.0006966596120037138, 0.001061582355760038, 0.0007304280297830701, 0.00014839984942227602, 5.163986133993603e-05, 0.001229947665706277], [0.8934411406517029, 0.00021064466272946447, 0.0003912361862603575, 0.0004131930763833225, 0.0001941204973263666, 0.00041724773473106325, 0.00017503774142824113, 0.0018019293202087283, 0.0008540275157429278]], [[1.8508901575842174e-06, 2.19125206868398e-09, 1.6795565898064524e-05, 4.536809150579302e-09, 2.7801302926455662e-11, 3.343717616427922e-15, 1.422884271344571e-12, 3.5772039085231466e-13, 9.085576493816916e-06], [2.8517765713331755e-06, 4.181531856883858e-11, 3.278168207998533e-07, 1.257287465250556e-07, 6.659325868518806e-13, 1.7481118549239616e-12, 3.512389619863998e-18, 1.8118530764263396e-13, 2.7467795832986086e-12], [1.3433592357614543e-05, 9.030181658854775e-13, 7.340586472004418e-10, 2.924488873290443e-09, 2.183284486534376e-08, 3.50359606778039e-12, 2.0744859823007555e-12, 5.561343892996826e-15, 7.704284259169025e-12], [7.652844033145811e-06, 6.385651989820884e-12, 1.0935914673826375e-10, 1.7228612980701996e-10, 7.213994158983272e-12, 3.6203240405541237e-09, 6.669143969711966e-12, 4.3078252076611534e-10, 1.1984286176283665e-12], [0.001580658252350986, 1.1428853696759944e-10, 1.6795747084796808e-11, 2.48450513634646e-11, 2.938254917150829e-10, 2.7266062740949337e-09, 9.963819991298806e-08, 3.9182912470181464e-10, 2.169834312226726e-09], [0.01810457557439804, 6.616645720214365e-08, 5.0183452913188376e-06, 2.132491339068565e-08, 8.615103075371167e-10, 1.1104132369155195e-07, 1.575727104352609e-08, 8.059056426645839e-07, 8.521518424231544e-08], [0.0002292962744832039, 3.981947827025323e-10, 8.661012884658703e-08, 7.519721734183804e-09, 1.5828169885878651e-09, 2.20777884862855e-09, 1.6159351634570385e-10, 5.391893043160678e-10, 2.5385523017007472e-08], [0.9933745265007019, 2.431813431180707e-11, 3.42266503139399e-06, 7.352741135946417e-07, 1.4506482237663931e-08, 4.0371310205955524e-07, 3.690414085433247e-10, 2.0913482057238753e-09, 7.683404468217248e-10]], [[0.2772272825241089, 0.018499623984098434, 0.006594883743673563, 0.005694271996617317, 0.004406025167554617, 0.00955114234238863, 0.00837589893490076, 0.20061449706554413, 0.04854036495089531], [0.11926595121622086, 0.009793884120881557, 0.01636076159775257, 0.03312721848487854, 0.0016426455695182085, 0.00883167702704668, 0.007008750922977924, 0.07547267526388168, 0.04695062339305878], [0.25112053751945496, 0.0043646590784192085, 0.007442587986588478, 0.01092055719345808, 0.0013913180446252227, 0.006583517417311668, 0.007620566058903933, 0.05494378134608269, 0.011677935719490051], [0.5414526462554932, 0.01744280755519867, 0.00881566945463419, 0.002870401134714484, 0.0020797024480998516, 0.013437996618449688, 0.018094586208462715, 0.08082153648138046, 0.03871343284845352], [0.5520836114883423, 0.009979329071938992, 0.03555531054735184, 0.01862558163702488, 0.004722306504845619, 0.006640487350523472, 0.011093690991401672, 0.04547552019357681, 0.015431882813572884], [0.8022099733352661, 0.004681755322962999, 0.0013911783462390304, 0.004345548804849386, 0.0005341732176020741, 0.0030271909199655056, 0.0032198047265410423, 0.018615253269672394, 0.01314855832606554], [0.4718855321407318, 0.004046672489494085, 0.00351886753924191, 0.002074547577649355, 0.0004978472134098411, 0.001010275911539793, 0.0022205645218491554, 0.08876756578683853, 0.01454891636967659], [0.6865681409835815, 0.003424773458391428, 0.00630495510995388, 0.003833218477666378, 0.0011550461640581489, 0.0033491929061710835, 0.0034860004670917988, 0.03877848759293556, 0.004662151448428631]], [[0.16094478964805603, 0.00748651335015893, 0.007378927897661924, 0.008781597949564457, 0.0065528214909136295, 0.0027143454644829035, 0.007923530414700508, 0.01616482064127922, 0.04190852865576744], [0.026192594319581985, 0.013724654912948608, 0.022249190136790276, 0.0027842477429658175, 0.0033832727931439877, 0.02037051133811474, 0.008052701130509377, 0.01027065608650446, 0.032563187181949615], [0.4662875533103943, 0.008070702664554119, 0.0023745433427393436, 0.0030211512930691242, 0.0015193852595984936, 0.003101447131484747, 0.003250443609431386, 0.01653403602540493, 0.01975741982460022], [0.3830494284629822, 0.021092059090733528, 0.006160008255392313, 0.01472031231969595, 0.005040530581027269, 0.014023304916918278, 0.004884559661149979, 0.023080378770828247, 0.03539381921291351], [0.5306687355041504, 0.010774489492177963, 0.002410204615443945, 0.006903544533997774, 0.0037025348283350468, 0.006171224173158407, 0.0035918622743338346, 0.031854502856731415, 0.029176101088523865], [0.6199820041656494, 0.013295439071953297, 0.004271314013749361, 0.005349303130060434, 0.0022974428720772266, 0.002429089741781354, 0.006736415904015303, 0.05976027995347977, 0.018455782905220985], [0.15816448628902435, 0.013517145998775959, 0.006362810265272856, 0.0011450161691755056, 0.0023240549489855766, 0.01284533180296421, 0.008271090686321259, 0.011708036996424198, 0.01966729760169983], [0.6879887580871582, 0.006788651458919048, 0.00042258354369550943, 0.0009651940781623125, 0.00018285839178133756, 0.00029145751614123583, 0.0017378886695951223, 0.05891162157058716, 0.011072656139731407]], [[0.18424901366233826, 0.032660216093063354, 0.001610534847714007, 0.037450630217790604, 0.005117237102240324, 0.007694576401263475, 0.0043250881135463715, 0.18914370238780975, 0.08759146183729172], [0.27753785252571106, 0.011008027009665966, 0.006587690208107233, 0.07437366247177124, 0.004310634918510914, 0.001986040035262704, 0.003545790910720825, 0.13499712944030762, 0.07163666188716888], [0.34596556425094604, 0.013450653292238712, 0.0028331198263913393, 0.008632787503302097, 0.0009093458065763116, 0.002470043720677495, 0.0037378643173724413, 0.05057791993021965, 0.07203326374292374], [0.49361008405685425, 0.014012736268341541, 0.002963628154247999, 0.002339404309168458, 0.0002618416037876159, 0.0020891716703772545, 0.0004461451608221978, 0.048211365938186646, 0.09939205646514893], [0.6466578841209412, 0.022861506789922714, 0.0025711418129503727, 0.005744633264839649, 0.0004050146380905062, 0.0008056352380663157, 0.0021389066241681576, 0.01559662725776434, 0.0623030923306942], [0.9146207571029663, 0.004662979394197464, 0.0035277309361845255, 0.0004554034094326198, 3.6263110814616084e-05, 0.000576634774915874, 0.00046026718337088823, 0.01739397458732128, 0.011538085527718067], [0.06585510075092316, 0.003417092375457287, 0.000556586601305753, 0.03965763747692108, 0.0020394448656588793, 0.001654840656556189, 0.0034783778246492147, 0.10150887817144394, 0.0511421374976635], [0.7843999862670898, 0.002134111011400819, 0.0014758622273802757, 0.005656109191477299, 0.000305965164443478, 0.000720208918210119, 0.0008353911689482629, 0.06391479074954987, 0.016644706949591637]], [[0.8086466193199158, 0.0018076999112963676, 0.0026719255838543177, 0.005714831408113241, 0.004672871436923742, 0.008148260414600372, 0.002197334775701165, 0.04261137917637825, 0.019266145303845406], [0.6064297556877136, 0.0015887290937826037, 0.000828389311209321, 0.05019272863864899, 0.0010525919497013092, 0.0038572647608816624, 0.0011728303506970406, 0.04813549295067787, 0.0318947434425354], [0.3405577838420868, 0.004098796751350164, 0.004238568712025881, 0.03632776439189911, 0.002307007322087884, 0.014611685648560524, 0.007300506345927715, 0.05870509892702103, 0.02840389870107174], [0.2727213203907013, 0.0013750094221904874, 0.000548491021618247, 0.0075427331030368805, 0.011776926927268505, 0.017849700525403023, 0.005563509184867144, 0.016161516308784485, 0.017250923439860344], [0.017791414633393288, 6.897769344504923e-05, 0.00028609062428586185, 1.345938380836742e-05, 4.6272616600617766e-05, 4.5617958676302806e-05, 0.0002721014025155455, 0.0011928243329748511, 0.0016312560765072703], [0.043708283454179764, 6.214966560946777e-05, 0.00013578722428064793, 0.0006393397343344986, 3.555925650289282e-05, 3.491224197205156e-05, 9.225129178958014e-05, 0.002938215620815754, 0.0009116427390836179], [0.4000444710254669, 0.0009383959113620222, 0.0004060991923324764, 0.0021434330847114325, 0.005039292387664318, 0.001639435300603509, 0.0036752354353666306, 0.04843703657388687, 0.015555567108094692], [0.9490056037902832, 0.00023433785827364773, 0.00012116568541387096, 0.0005305696395225823, 5.323494042386301e-05, 2.215595122834202e-05, 0.0002171236847061664, 0.009182914160192013, 0.004246760159730911]], [[0.2313961684703827, 0.01849144510924816, 0.001922601368278265, 0.0031502151396125555, 0.008005749434232712, 0.0010638654930517077, 0.0037781281862407923, 0.008075609803199768, 0.40555480122566223], [0.2717990279197693, 0.033821798861026764, 0.006114346440881491, 0.024118369445204735, 0.04741643741726875, 0.014171111397445202, 0.028722183778882027, 0.024612363427877426, 0.24613437056541443], [0.5097821950912476, 0.04205074533820152, 0.006268296390771866, 0.004365711472928524, 0.007546967826783657, 0.0015135875437408686, 0.009226033464074135, 0.041420575231313705, 0.14671842753887177], [0.39675262570381165, 0.03287053853273392, 0.004070722032338381, 0.006185806356370449, 0.00849553756415844, 0.0018438195111230016, 0.006622432731091976, 0.01594984158873558, 0.22853876650333405], [0.6560561656951904, 0.05533412843942642, 0.009237045422196388, 0.0037865994963794947, 0.0016252470668405294, 0.001150193391367793, 0.009355983696877956, 0.11712469905614853, 0.0406353659927845], [0.7575200796127319, 0.042246654629707336, 0.004704935010522604, 0.0019006738439202309, 0.0017903491389006376, 0.0011083963327109814, 0.0017711218679323792, 0.024275122210383415, 0.0655762329697609], [0.3511054217815399, 0.04247633367776871, 0.020423196256160736, 0.026353580877184868, 0.040917955338954926, 0.014872226864099503, 0.021964456886053085, 0.016227558255195618, 0.2207026481628418], [0.25313547253608704, 0.03037654422223568, 0.05789206176996231, 0.021365966647863388, 0.028907455503940582, 0.027612630277872086, 0.03802206739783287, 0.11806131154298782, 0.06643538922071457]], [[0.05373314023017883, 0.12956614792346954, 0.01833966374397278, 0.04342518746852875, 0.026944400742650032, 0.019927769899368286, 0.008102282881736755, 0.08040305227041245, 0.0348784513771534], [0.11677586287260056, 0.018950417637825012, 0.01927580125629902, 0.03196021914482117, 0.015552995726466179, 0.01696234568953514, 0.01217556744813919, 0.05748158320784569, 0.028038235381245613], [0.5650006532669067, 0.017072495073080063, 0.006416097283363342, 0.011153541505336761, 0.007141956593841314, 0.005084770265966654, 0.007194835226982832, 0.051024436950683594, 0.022067274898290634], [0.4541967511177063, 0.02689855918288231, 0.00857709813863039, 0.012632212601602077, 0.007487334311008453, 0.01462599541991949, 0.011586816050112247, 0.07194138318300247, 0.028957685455679893], [0.8418929576873779, 0.005041684024035931, 0.007445808965712786, 0.006985174026340246, 0.0038929677102714777, 0.005131320562213659, 0.002545701339840889, 0.006035570055246353, 0.00789889506995678], [0.9161903858184814, 0.001196592696942389, 0.0031136570032685995, 0.002729585627093911, 0.0028279514517635107, 0.002311522141098976, 0.0031989377457648516, 0.006149820052087307, 0.0023341660853475332], [0.2593376338481903, 0.03832323104143143, 0.017367225140333176, 0.02358234114944935, 0.026675889268517494, 0.02338641881942749, 0.012839704751968384, 0.06736445426940918, 0.03166091442108154], [0.07423175871372223, 0.012813451699912548, 0.0010853252606466413, 0.00595083087682724, 0.003418268635869026, 0.002421505516394973, 0.0014076873194426298, 0.0592389851808548, 0.10726946592330933]], [[0.21625906229019165, 0.04045278951525688, 0.012858305126428604, 0.10989797860383987, 0.020503783598542213, 0.04206298291683197, 0.05962509289383888, 0.10306674987077713, 0.11533786356449127], [0.09747344255447388, 0.01777718774974346, 0.004821004346013069, 0.04646192863583565, 0.017839256674051285, 0.01810486800968647, 0.03567995876073837, 0.0609109029173851, 0.08252067863941193], [0.11249347031116486, 0.023766499012708664, 0.023114655166864395, 0.042992446571588516, 0.032619692385196686, 0.05845371633768082, 0.07248760759830475, 0.036161720752716064, 0.07719957083463669], [0.2892049551010132, 0.024716205894947052, 0.010256482288241386, 0.017953963950276375, 0.0005146929761394858, 0.015512811951339245, 0.014164227060973644, 0.05134362354874611, 0.13534921407699585], [0.18097321689128876, 0.03645959869027138, 0.04169938340783119, 0.03479447960853577, 0.001791298040188849, 0.136783629655838, 0.02464781142771244, 0.026010729372501373, 0.11617446690797806], [0.16878485679626465, 0.041048578917980194, 0.03248143196105957, 0.049241114407777786, 0.008485502563416958, 0.054425302892923355, 0.029646243900060654, 0.029012341052293777, 0.1390765905380249], [0.22168339788913727, 0.01970122568309307, 0.017759354785084724, 0.021183690056204796, 0.003852823516353965, 0.04136800393462181, 0.01090035866945982, 0.0650753527879715, 0.054872192442417145], [0.10022874921560287, 0.02577802538871765, 0.011863223277032375, 0.017911396920681, 0.005067610181868076, 0.018355203792452812, 0.009556182660162449, 0.09161453694105148, 0.01999814249575138]]], [[[0.35545724630355835, 0.015700388699769974, 0.00022701396665070206, 0.047394681721925735, 0.01047397032380104, 0.003791484050452709, 0.0034794039092957973, 0.11609276384115219, 0.017329897731542587], [0.18819394707679749, 0.031523726880550385, 0.0019991977605968714, 0.03090377151966095, 0.002986564300954342, 0.007773544639348984, 0.0009980795439332724, 0.12662644684314728, 0.07078582048416138], [0.44700315594673157, 0.008147265762090683, 0.00018987641669809818, 0.026380542665719986, 0.006153915077447891, 0.0037664221599698067, 0.0018434333615005016, 0.07596214860677719, 0.01489653717726469], [0.34166258573532104, 0.014866519719362259, 0.0006122334743849933, 0.017381759360432625, 0.0047426060773432255, 0.005879465024918318, 0.0038198272231966257, 0.03887733817100525, 0.01415393128991127], [0.3062163293361664, 0.0043711792677640915, 0.0016276920214295387, 0.016264447942376137, 0.0015441137365996838, 0.008248157799243927, 0.001241195946931839, 0.026808761060237885, 0.030627401545643806], [0.1210237517952919, 0.002162128919735551, 0.0034830737859010696, 0.008340361528098583, 0.001517640077508986, 0.004227576311677694, 0.0005055739893577993, 0.011009505949914455, 0.03782225772738457], [0.5429201126098633, 0.009856241755187511, 8.317088213516399e-05, 0.015544903464615345, 0.0009551475523039699, 0.001194678246974945, 0.0003980295732617378, 0.10956937819719315, 0.007213618606328964], [0.806210458278656, 0.008082743734121323, 0.000343059393344447, 0.0011954146903008223, 0.002624648390337825, 0.0014450001763179898, 0.0006635795580223203, 0.03913620859384537, 0.005478864535689354]], [[0.41960352659225464, 0.01913681998848915, 0.0015677883056923747, 0.007768760900944471, 0.003421276342123747, 0.0009994249558076262, 0.0008573529776185751, 0.01781180500984192, 0.22060412168502808], [0.21278835833072662, 0.1617441177368164, 0.002280773827806115, 0.06295441091060638, 0.0023916931822896004, 0.0028469108510762453, 0.0061056348495185375, 0.03518082946538925, 0.02114127017557621], [0.1087644025683403, 0.007666837889701128, 0.0009514890844002366, 0.011494861915707588, 0.008100277744233608, 0.011865037493407726, 0.010352912358939648, 0.014303864911198616, 0.13765114545822144], [0.19253849983215332, 0.015032432973384857, 0.0015187135431915522, 0.015387236140668392, 0.10257664322853088, 0.012829083018004894, 0.011811327189207077, 0.03713827580213547, 0.05944398045539856], [0.35856541991233826, 0.0008786483085714281, 0.0012833033688366413, 0.004999963100999594, 0.0008144171442836523, 0.0038151931948959827, 0.0007613565539941192, 0.010301255621016026, 0.06564703583717346], [0.16855739057064056, 0.0035048709250986576, 0.0025944223161786795, 0.0023684853222221136, 0.0034197778441011906, 0.007350698113441467, 0.002209746977314353, 0.018640436232089996, 0.055680349469184875], [0.4214586317539215, 0.01272890530526638, 0.0037388994824141264, 0.034625470638275146, 0.0009176275343634188, 0.007532259449362755, 0.002153666689991951, 0.031964510679244995, 0.13898687064647675], [0.35087811946868896, 0.039255011826753616, 0.019050082191824913, 0.032050490379333496, 0.00489999633282423, 0.01617913320660591, 0.006983624771237373, 0.0962814912199974, 0.23207370936870575]], [[0.35051918029785156, 0.0277424193918705, 0.0026206346228718758, 0.00862390361726284, 0.0007308940985240042, 0.0006053828983567655, 0.002039568731561303, 0.18621663749217987, 0.02659977413713932], [0.29989585280418396, 0.21211478114128113, 0.012097137980163097, 0.03750472888350487, 0.006688349414616823, 0.004164774902164936, 0.006009112577885389, 0.038700759410858154, 0.012774821370840073], [0.8537232875823975, 0.008102361112833023, 0.000321030558552593, 0.0008533833315595984, 6.255933840293437e-05, 9.349741594633088e-05, 0.00017812031728681177, 0.08712994307279587, 0.0029953145422041416], [0.7217544913291931, 0.019425155594944954, 0.0007242090068757534, 0.0011370280990377069, 8.95856210263446e-05, 0.00022010953398421407, 0.00036339106736704707, 0.20532137155532837, 0.0035484805703163147], [0.6803311109542847, 0.04388759285211563, 0.010201721452176571, 0.004490840248763561, 0.00011520295083755627, 0.000227678261580877, 0.0004739072173833847, 0.12748093903064728, 0.0055168732069432735], [0.7427048087120056, 0.0446072518825531, 0.002733102533966303, 0.0013373729307204485, 0.00011133380030514672, 0.00011317487224005163, 0.0005121941212564707, 0.13273939490318298, 0.004510131198912859], [0.1489006131887436, 0.013011327013373375, 0.001975643215700984, 0.01670215092599392, 0.003309930209070444, 0.004668704699724913, 0.004907403606921434, 0.0430835522711277, 0.014747639186680317], [0.6095574498176575, 0.027133753523230553, 0.0025640218518674374, 0.005627874750643969, 0.002388184890151024, 0.0022122778464108706, 0.004465707577764988, 0.13545842468738556, 0.004957517609000206]], [[0.5758452415466309, 0.0030951141379773617, 0.004761130083352327, 0.002336776116862893, 0.0002411947789369151, 9.37568984227255e-05, 5.521527418750338e-05, 0.0003310434112790972, 0.004556070547550917], [0.575535237789154, 0.0008558345143683255, 0.005822916515171528, 0.0034926305525004864, 0.00010607944568619132, 3.480555460555479e-05, 7.737130545137916e-06, 0.0005968101904727519, 0.00543591845780611], [0.011750069446861744, 0.0001563738042023033, 0.00010440481128171086, 0.00020337167370598763, 9.635693277232349e-05, 7.71645427448675e-05, 3.69607332686428e-05, 0.00012413262447807938, 0.00033067449112422764], [0.43296104669570923, 0.0005168191273696721, 0.0007069097482599318, 0.0005931710475124419, 0.001529261120595038, 0.0021718121133744717, 0.0006062213215045631, 0.0011525223962962627, 0.0015182701172307134], [0.44735753536224365, 0.0005971206119284034, 0.00020121039415244013, 0.00035224054590798914, 0.0010305430041626096, 0.0007352453540079296, 0.001396332634612918, 0.000719264498911798, 0.002508622594177723], [0.9219660758972168, 0.0001357470900984481, 6.967592344153672e-05, 3.8046367990318686e-05, 4.9331447371514514e-05, 9.716444765217602e-05, 2.9237058697617613e-05, 0.0002664979256223887, 0.0004996331408619881], [0.6382927298545837, 0.00030877284007146955, 0.0003692670143209398, 0.00024581330944783986, 0.0006497515714727342, 0.0005276494193822145, 0.00027332419995218515, 0.000819970213342458, 0.001459851278923452], [0.9699109196662903, 4.7778554289834574e-05, 3.577940151444636e-05, 7.615400681970641e-05, 6.269367440836504e-05, 0.00016595187480561435, 4.878999607171863e-05, 0.0004922030493617058, 0.0008326738607138395]], [[0.7517618536949158, 0.006795246619731188, 2.971233152493369e-05, 6.851771468063816e-05, 9.587786735210102e-06, 8.76799676916562e-05, 0.00025413092225790024, 0.0253902617841959, 0.18396513164043427], [0.1123083084821701, 0.0032189374323934317, 0.0001560904347570613, 0.00016692676581442356, 4.609536517818924e-06, 2.86362374026794e-05, 2.0452031094464473e-05, 0.008180824108421803, 0.13005411624908447], [0.3030427098274231, 0.0024056655820459127, 0.0015615628799423575, 0.0003351920749992132, 2.1301857486832887e-05, 2.2717051251675002e-05, 9.577292075846344e-06, 0.0015301295788958669, 0.0851929783821106], [0.3067166805267334, 0.006327567156404257, 0.0058981324546039104, 0.008593618869781494, 0.0007845971849747002, 0.00015954340051393956, 6.4059922806336544e-06, 0.0009639994241297245, 0.022805364802479744], [0.5674072504043579, 0.0014256652211770415, 0.004462930839508772, 0.005321774631738663, 0.0003587827377486974, 0.00034828728530555964, 1.542511563457083e-05, 0.0006432884256355464, 0.010195896029472351], [0.32655876874923706, 0.0029003547970205545, 0.0011188285425305367, 0.003442995483055711, 0.0005175312981009483, 0.0004534115141723305, 0.00023586452880408615, 0.001353472820483148, 0.013619557954370975], [0.5315298438072205, 0.008303933776915073, 0.0026485719718039036, 0.0008984821615740657, 0.0003258080396335572, 0.0002836764615494758, 2.667535409273114e-05, 0.007615853566676378, 0.014708596281707287], [0.9526456594467163, 0.001157578662969172, 0.00025960744824260473, 0.00025637258659116924, 3.754347926587798e-05, 2.9654478566953912e-05, 6.0121774367871694e-06, 0.00033280765637755394, 0.0017185610486194491]], [[0.3789955973625183, 0.037152182310819626, 0.010874755680561066, 0.03396500647068024, 0.10259268432855606, 0.026040831580758095, 0.03895583748817444, 0.03963545337319374, 0.04879161715507507], [0.45390698313713074, 0.01578161120414734, 0.002659309422597289, 0.015172489918768406, 0.008991020731627941, 0.008198995143175125, 0.006894359830766916, 0.04144832864403725, 0.13062527775764465], [0.3126511573791504, 0.013460461981594563, 0.014526115730404854, 0.020325785502791405, 0.005681121721863747, 0.022071555256843567, 0.010904147289693356, 0.05966683477163315, 0.05669712275266647], [0.34673619270324707, 0.03479833900928497, 0.015622708946466446, 0.01585078053176403, 0.014937733300030231, 0.02222646400332451, 0.011489885859191418, 0.07666979730129242, 0.09202596545219421], [0.265542209148407, 0.01587287336587906, 0.04491280019283295, 0.02040855772793293, 0.005464802961796522, 0.02757847122848034, 0.00884027499705553, 0.04960956797003746, 0.11078210920095444], [0.20571383833885193, 0.007481779437512159, 0.025770504027605057, 0.005372941493988037, 0.002211174229159951, 0.005438560154289007, 0.0038994650822132826, 0.021414373070001602, 0.15559138357639313], [0.4156606197357178, 0.02930484153330326, 0.026763107627630234, 0.013759997673332691, 0.005073423497378826, 0.013990295119583607, 0.004897473379969597, 0.07260565459728241, 0.04072757810354233], [0.1410287767648697, 0.02858312800526619, 0.04393218085169792, 0.014255604706704617, 0.010514345951378345, 0.03033391572535038, 0.009186592884361744, 0.045470479875802994, 0.03081608936190605]], [[5.7256761831769865e-11, 1.8177569172106445e-10, 2.320407865852303e-08, 1.9377555116051326e-13, 7.127991637689499e-14, 1.1056474761007952e-19, 3.0347051741929764e-16, 1.8008803490473938e-15, 2.052946079800222e-08], [5.323220086950187e-09, 6.389700990538927e-10, 1.1875632921487522e-08, 6.567087496023305e-08, 7.4326997464777e-13, 1.0223632107998065e-13, 1.396551258652239e-18, 4.96227841803587e-13, 5.323364579007395e-12], [1.0771421976585316e-08, 2.2003044189162352e-13, 4.632805944426721e-11, 3.28119337256183e-11, 1.0404080263981541e-08, 1.0850452751998835e-13, 2.6929064159104217e-15, 1.3330198795106444e-14, 3.765587668069781e-12], [2.493611077625246e-07, 5.299155211857531e-13, 1.1903275587421547e-10, 1.0880147893743697e-09, 2.4969566345123262e-11, 1.0324902710578954e-08, 9.77908119065285e-12, 2.6851383339021595e-09, 1.4394319341071854e-13], [1.8986388568009716e-06, 4.610718404296499e-11, 8.233835835369518e-11, 6.760743007094838e-12, 2.851810787518616e-09, 3.964778783061007e-10, 5.249689394304369e-08, 7.894102260763702e-09, 4.00809740952468e-09], [4.469578414045827e-07, 1.1075131263471594e-11, 1.7032422694462923e-10, 3.0387373173290655e-11, 2.393469808199128e-13, 4.0017472842379664e-12, 3.5182193963700925e-11, 6.130878205112822e-07, 5.783045708973589e-10], [1.853988942457363e-05, 4.939836912853934e-07, 2.486839179027811e-08, 1.2427006090831583e-08, 2.9399421563880423e-08, 2.0895420116406882e-10, 9.624123720186617e-11, 2.476693907738081e-07, 2.7553328436624724e-06], [0.9719346761703491, 5.504319777749345e-10, 1.4860255248549947e-08, 3.1344953299594636e-07, 2.6074937764519746e-08, 5.130862632540811e-07, 7.049874017894808e-10, 0.0012406272580847144, 1.2392702046781778e-06]], [[0.23085694015026093, 0.07901652902364731, 0.0645921379327774, 0.0934542715549469, 0.04598722606897354, 0.1489679217338562, 0.04005139693617821, 0.12916989624500275, 0.02290383353829384], [0.1282517910003662, 0.11970190703868866, 0.27546557784080505, 0.09645581245422363, 0.04303727671504021, 0.0486985482275486, 0.022267837077379227, 0.05544966831803322, 0.07754463702440262], [0.33594632148742676, 0.05082051455974579, 0.034456152468919754, 0.041202712804079056, 0.02625332958996296, 0.050550829619169235, 0.03423580154776573, 0.11713456362485886, 0.04542499780654907], [0.20553381741046906, 0.04091273993253708, 0.05387537181377411, 0.025915907695889473, 0.01745276339352131, 0.1117686778306961, 0.026041816920042038, 0.07533708959817886, 0.06065702438354492], [0.29132547974586487, 0.0369611531496048, 0.05475737527012825, 0.03387456014752388, 0.011047767475247383, 0.07499942183494568, 0.01242034137248993, 0.10257245600223541, 0.07453318685293198], [0.2768704295158386, 0.02269923686981201, 0.03997763991355896, 0.03999859094619751, 0.006118018180131912, 0.03502439334988594, 0.006715311668813229, 0.04550514370203018, 0.08470675349235535], [0.09087251871824265, 0.07790589332580566, 0.008259941823780537, 0.050263792276382446, 0.0015010599745437503, 0.0023647723719477654, 0.0071073430590331554, 0.0640711635351181, 0.09053955972194672], [0.4310072064399719, 0.017707297578454018, 0.0019878328312188387, 0.007371167652308941, 0.0017849261639639735, 0.0016633382765576243, 0.0014728197129443288, 0.08371250331401825, 0.11660407483577728]], [[0.5043638348579407, 0.016932670027017593, 0.008245646022260189, 0.006345541216433048, 0.0009906567865982652, 0.03009425848722458, 0.0033600369933992624, 0.12765026092529297, 0.10511456429958344], [0.35094520449638367, 0.07002949714660645, 0.12524306774139404, 0.012268456630408764, 0.001154200523160398, 0.0026767258532345295, 0.00676990021020174, 0.04833091422915459, 0.13776424527168274], [0.4991609752178192, 0.021227175369858742, 0.00974359828978777, 0.010730346664786339, 0.0035101138055324554, 0.009130558930337429, 0.0062627410516142845, 0.10980536043643951, 0.08349296450614929], [0.39485251903533936, 0.023475006222724915, 0.01934136636555195, 0.008097521960735321, 0.007284289691597223, 0.017216060310602188, 0.00793531071394682, 0.10830052942037582, 0.10288619995117188], [0.427371084690094, 0.03612156957387924, 0.04242260754108429, 0.010294396430253983, 0.0015864993911236525, 0.003012707456946373, 0.0020101952832192183, 0.133174329996109, 0.1150854080915451], [0.47293442487716675, 0.03314460813999176, 0.11235389858484268, 0.006988054141402245, 0.0012328291777521372, 0.00203191046603024, 0.001444853376597166, 0.057328660041093826, 0.0915064886212349], [0.5206713676452637, 0.010389503091573715, 0.00975318904966116, 0.007274043280631304, 0.0034937274176627398, 0.008816676214337349, 0.0031152693554759026, 0.13774576783180237, 0.08495666086673737], [0.21432632207870483, 0.02852623723447323, 0.04401789605617523, 0.012210087850689888, 0.021547358483076096, 0.033439669758081436, 0.0158374086022377, 0.11682895570993423, 0.0819961205124855]], [[0.040177635848522186, 0.011777853593230247, 0.00882011465728283, 0.00946364738047123, 0.0060194083489477634, 0.010014758445322514, 0.004903868306428194, 0.018616097047924995, 0.007628618273884058], [0.01629234105348587, 0.003257130505517125, 0.0015530172968283296, 0.0035128684248775244, 0.0011220216983929276, 0.0021341063547879457, 0.00177157879807055, 0.007710831239819527, 0.01232178881764412], [0.013855875469744205, 0.0011795697500929236, 0.00026888184947893023, 0.0020687340293079615, 0.0010019063483923674, 0.00087642582366243, 0.0027233404107391834, 0.011062778532505035, 0.01919359713792801], [0.054893068969249725, 0.0035071270540356636, 0.0021123187616467476, 0.0021527493372559547, 0.004635155200958252, 0.0074526164680719376, 0.006016239989548922, 0.021458428353071213, 0.02080330066382885], [0.1645633727312088, 0.008548017591238022, 0.006314827129244804, 0.0009620448108762503, 0.007869841530919075, 0.016559472307562828, 0.005200117826461792, 0.028820451349020004, 0.014559376053512096], [0.0799129530787468, 0.003807197557762265, 0.0013913738075643778, 0.000612870731856674, 0.0028853504918515682, 0.004616248421370983, 0.0018951261881738901, 0.01443276647478342, 0.01165806595236063], [0.39095842838287354, 0.009962277486920357, 0.005361276213079691, 0.0020259995944797993, 0.004664258565753698, 0.007697983644902706, 0.005258324556052685, 0.060813479125499725, 0.019274108111858368], [0.7488322257995605, 0.019327891990542412, 0.007191813085228205, 0.004411950241774321, 0.0054576643742620945, 0.010101336985826492, 0.0029121648985892534, 0.03804980590939522, 0.015733148902654648]], [[0.03382587060332298, 0.005434365943074226, 0.007368527818471193, 0.023056980222463608, 0.07135003805160522, 0.055074676871299744, 0.028218988329172134, 0.024087920784950256, 0.024329189211130142], [0.038030121475458145, 0.0018306365236639977, 0.013132622465491295, 0.00721894484013319, 0.030249886214733124, 0.030445067211985588, 0.012572926469147205, 0.00420461967587471, 0.011860285885632038], [0.005298695061355829, 0.0002978661796078086, 0.0008504229481332004, 0.001166683272458613, 0.005232213530689478, 0.006284206174314022, 0.010548950172960758, 0.0008126021130010486, 0.0016021537594497204], [0.019848834723234177, 0.002248481148853898, 0.0037914998829364777, 0.009388803504407406, 0.0028502782806754112, 0.02107577584683895, 0.004424565471708775, 0.0009037400595843792, 0.015565553680062294], [0.04542720690369606, 0.0028814810793846846, 0.00680811470374465, 0.0019958368502557278, 0.00218284223228693, 0.001577401184476912, 0.01439460925757885, 0.0017413819441571832, 0.016353832557797432], [0.18546532094478607, 0.002832588739693165, 0.0023552849888801575, 0.0015924728941172361, 0.0019927071407437325, 0.007191985845565796, 0.0030983237084001303, 0.0014784990344196558, 0.025159573182463646], [0.05343467369675636, 0.0038337851874530315, 0.008542964234948158, 0.0019821568857878447, 0.017770718783140182, 0.01338198035955429, 0.00743396021425724, 0.006312246900051832, 0.0167104322463274], [0.6858828663825989, 0.005098638124763966, 0.0004517739580478519, 0.0009559339960105717, 0.00030007469467818737, 0.0008140559657476842, 0.00018304097466170788, 0.03445791080594063, 0.009159702807664871]], [[0.42324426770210266, 0.011288616806268692, 0.0005467518931254745, 0.012041036039590836, 0.0031406290363520384, 0.0019263856811448932, 0.0028645633719861507, 0.0030061996076256037, 0.0512206144630909], [0.708649218082428, 0.01720842905342579, 0.003170452546328306, 0.02616560459136963, 0.0013683292781934142, 0.0005194649565964937, 0.001235231407918036, 0.005676588974893093, 0.08711107075214386], [0.506205677986145, 0.012991094961762428, 0.0009140609763562679, 0.017971117049455643, 0.021719137206673622, 0.0009883606107905507, 0.02845015563070774, 0.002093513961881399, 0.07095304131507874], [0.40194886922836304, 0.013738472014665604, 0.002673707203939557, 0.009845610707998276, 0.016884448006749153, 0.006612048018723726, 0.018642190843820572, 0.0026986070442944765, 0.053096529096364975], [0.5849642753601074, 0.003050753381103277, 0.0007497180486097932, 0.0035835898015648127, 0.002282927744090557, 0.005114688538014889, 0.0020319900941103697, 0.003994002938270569, 0.04248917102813721], [0.5436418056488037, 0.00809877086430788, 0.004244583658874035, 0.0030467489268630743, 0.0022126876283437014, 0.0009749404853209853, 0.005800488404929638, 0.006387328263372183, 0.06143166869878769], [0.4284780025482178, 0.009500157088041306, 0.0005963937728665769, 0.05988456681370735, 0.0026090119499713182, 0.0007354257395491004, 0.005806018132716417, 0.014910107478499413, 0.04579974338412285], [0.7174838781356812, 0.0321839265525341, 0.002324790693819523, 0.009250638075172901, 0.004423764534294605, 0.0015458747511729598, 0.0035497453063726425, 0.016795845702290535, 0.035515401512384415]]], [[[0.5108107328414917, 0.007227804511785507, 0.002299201674759388, 0.03300045058131218, 0.0021519185975193977, 0.021485470235347748, 0.004803324583917856, 0.0941925197839737, 0.07161345332860947], [0.1152479350566864, 0.024364836513996124, 0.015423289500176907, 0.049664273858070374, 0.0035009263083338737, 0.033191319555044174, 0.023714696988463402, 0.10429858416318893, 0.1172340139746666], [0.09932304918766022, 0.010893166065216064, 0.011732902377843857, 0.014895597472786903, 0.00198561092838645, 0.012738666497170925, 0.004271339159458876, 0.03948477655649185, 0.05469103530049324], [0.20694038271903992, 0.004846381489187479, 0.031077606603503227, 0.01639833115041256, 0.006237424910068512, 0.022460181266069412, 0.007951758801937103, 0.028792904689908028, 0.033693451434373856], [0.41953518986701965, 0.014850947074592113, 0.05826641619205475, 0.01622067019343376, 0.0008975358214229345, 0.012132195755839348, 0.002710985252633691, 0.0375923328101635, 0.02597341313958168], [0.06252007931470871, 0.007303342223167419, 0.14199785888195038, 0.012512799352407455, 0.0017748326063156128, 0.01714741438627243, 0.0023939183447510004, 0.011096566915512085, 0.03954024612903595], [0.08404769003391266, 0.013540185987949371, 0.01109942514449358, 0.006828024052083492, 0.0010163389379158616, 0.005699891597032547, 0.002567519899457693, 0.029865993186831474, 0.11711191385984421], [0.7906316518783569, 0.009794555604457855, 0.006181848701089621, 0.006262470968067646, 0.0012316128704696894, 0.005284451879560947, 0.0013676556991413236, 0.0385441780090332, 0.0322149358689785]], [[0.11400028318166733, 0.05146404728293419, 0.033425137400627136, 0.13680297136306763, 0.021484075114130974, 0.015804370865225792, 0.008894810453057289, 0.20390522480010986, 0.09093347936868668], [0.04377024248242378, 0.08784858137369156, 0.24843871593475342, 0.08310889452695847, 0.01720166765153408, 0.07554163038730621, 0.01523678470402956, 0.013416796922683716, 0.03536954149603844], [0.06728500872850418, 0.029726272448897362, 0.031129619106650352, 0.01139065157622099, 0.006314235273748636, 0.023750007152557373, 0.008108539506793022, 0.11866075545549393, 0.19700491428375244], [0.029100202023983, 0.025020482018589973, 0.029811451211571693, 0.023501498624682426, 0.00899732019752264, 0.028097914531826973, 0.022307489067316055, 0.12569154798984528, 0.10320097208023071], [0.030792584642767906, 0.040409255772829056, 0.03531654179096222, 0.021777180954813957, 0.005455194041132927, 0.013928764499723911, 0.008388255722820759, 0.3305415213108063, 0.059313658624887466], [0.02783389389514923, 0.02994486689567566, 0.036308784037828445, 0.0445474311709404, 0.008001427166163921, 0.01849203184247017, 0.013227750547230244, 0.28607210516929626, 0.04233448579907417], [0.06782539933919907, 0.02991335093975067, 0.034766748547554016, 0.03465987741947174, 0.00479066651314497, 0.02222803793847561, 0.005951298866420984, 0.11263708770275116, 0.125095933675766], [0.10290864109992981, 0.015531357377767563, 0.010912599973380566, 0.008136613294482231, 0.001369072706438601, 0.002825130708515644, 0.0014492975315079093, 0.2821357548236847, 0.21065914630889893]], [[0.13920240104198456, 0.012078697793185711, 0.006467532366514206, 0.004354296252131462, 0.002679905155673623, 0.006293513812124729, 0.0027548607904464006, 0.22717343270778656, 0.22857098281383514], [0.1956690400838852, 0.025164686143398285, 0.04622100666165352, 0.02009396255016327, 0.0035865241661667824, 0.04055054858326912, 0.0053816260769963264, 0.04801809787750244, 0.20525597035884857], [0.08670563995838165, 0.006010875105857849, 0.00453865947201848, 0.002072048606351018, 0.00047739542787894607, 0.00574501371011138, 0.0005594416870735586, 0.13307473063468933, 0.35764697194099426], [0.09733188897371292, 0.01038606557995081, 0.009335525333881378, 0.003838004544377327, 0.0010971539886668324, 0.029846031218767166, 0.0009417555993422866, 0.03684823587536812, 0.3127937316894531], [0.19090856611728668, 0.031167497858405113, 0.025069117546081543, 0.017045386135578156, 0.00999945867806673, 0.02456376701593399, 0.002984082093462348, 0.03783676400780678, 0.252787709236145], [0.08572062104940414, 0.019358234480023384, 0.01523648202419281, 0.019156483933329582, 0.021120797842741013, 0.05896209180355072, 0.005831508431583643, 0.021511366590857506, 0.1863667517900467], [0.2162291705608368, 0.012456967495381832, 0.0039858282543718815, 0.006637371610850096, 0.0018097938736900687, 0.010658439248800278, 0.0012663427041843534, 0.0989227294921875, 0.23571692407131195], [0.18929561972618103, 0.013770287856459618, 0.010449860244989395, 0.00614132359623909, 0.000933479459490627, 0.008514552377164364, 0.0022178860381245613, 0.2171238213777542, 0.24369879066944122]], [[0.033121827989816666, 0.0012563845375552773, 0.007179287262260914, 0.06860857456922531, 0.0006718960939906538, 0.0009903188329190016, 0.0012938766740262508, 0.014231693930923939, 0.05561680719256401], [0.03574460744857788, 0.0010141897946596146, 0.005059435963630676, 0.03129911422729492, 0.0002695823204703629, 0.0014458884252235293, 0.0009555217111483216, 0.020558476448059082, 0.058217234909534454], [0.1278427541255951, 0.0007718975539319217, 0.0008515733061358333, 0.008008218370378017, 0.0006004553870297968, 0.005536243785172701, 0.005610785912722349, 0.04997546970844269, 0.09017884731292725], [0.21982243657112122, 0.0017051800386980176, 0.0019056284800171852, 0.0019899189937859774, 0.0013626805739477277, 0.005361906718462706, 0.0017031363677233458, 0.03321647644042969, 0.14011715352535248], [0.3612912595272064, 0.0023381037171930075, 0.0008506671874783933, 0.0014513884671032429, 0.0011168806813657284, 0.0033325699623674154, 0.00043653769535012543, 0.021657373756170273, 0.11613117903470993], [0.5138987898826599, 0.0022618251387029886, 0.0007979305228218436, 0.0020120753906667233, 0.0005921304691582918, 0.004058465827256441, 0.00022889605315867811, 0.017564691603183746, 0.12219111621379852], [0.4063866138458252, 0.001210736227221787, 0.0009560450562275946, 0.002112641232088208, 0.000904428365174681, 0.004357117228209972, 0.0011757173342630267, 0.012563016265630722, 0.06393489241600037], [0.7013733386993408, 0.0073241801001131535, 0.0022500320337712765, 0.009310482069849968, 0.00120065629016608, 0.0036680949851870537, 0.0010160686215385795, 0.006998822558671236, 0.06656818836927414]], [[0.011722260154783726, 0.0018850011983886361, 0.0012728053843602538, 0.012121759355068207, 0.0004469156265258789, 0.006978520192205906, 0.0011283374624326825, 0.007707122713327408, 0.0610102079808712], [0.0442114919424057, 0.004757745657116175, 0.009087950922548771, 0.039119478315114975, 0.003207913599908352, 0.012476588599383831, 0.006762477569282055, 0.019034622237086296, 0.12511411309242249], [0.004011786077171564, 0.0001014742738334462, 5.817809869768098e-05, 0.0003955201245844364, 0.00034679105738177896, 1.3518204468709882e-05, 0.00017554446822032332, 0.0015848720213398337, 0.005109278950840235], [0.043656863272190094, 0.0019583157263696194, 0.0007192094344645739, 0.0038125738501548767, 3.6382869438966736e-05, 0.004563064314424992, 0.0001681829453445971, 0.011236460879445076, 0.07154230028390884], [0.1314173936843872, 0.012020898051559925, 0.007338241674005985, 0.004280397202819586, 0.0006550037651322782, 0.0005949820042587817, 4.262571019353345e-05, 0.026250002905726433, 0.06329888105392456], [0.03955933824181557, 0.018778996542096138, 0.027329443022608757, 0.07223028689622879, 0.0019802565220743418, 0.001056011882610619, 0.00018029168131761253, 0.020361371338367462, 0.21713539958000183], [0.038896504789590836, 0.002310445299372077, 0.0018187969690188766, 0.0009306020801886916, 0.00023278601292986423, 0.0005830102600157261, 0.0005678428569808602, 0.012368783354759216, 0.013434451073408127], [0.07556984573602676, 0.02032707817852497, 0.012514768168330193, 0.006844404619187117, 0.0007995591149665415, 0.002468045800924301, 0.003937508910894394, 0.03575125336647034, 0.3136250078678131]], [[0.40637195110321045, 0.005644735414534807, 0.011581013910472393, 0.007326821330934763, 0.005657300353050232, 0.04194243252277374, 0.007262458559125662, 0.04291181266307831, 0.10112234205007553], [0.03554505482316017, 0.1258942037820816, 0.036509331315755844, 0.05995108187198639, 0.02699664793908596, 0.0375521183013916, 0.018652284517884254, 0.005674660671502352, 0.07097121328115463], [0.6659138798713684, 0.018083393573760986, 0.011816686950623989, 0.00923013687133789, 0.0016744232270866632, 0.017004702240228653, 0.00671832449734211, 0.05825703591108322, 0.018215656280517578], [0.40163323283195496, 0.014721721410751343, 0.013423760421574116, 0.016551053151488304, 0.026905778795480728, 0.06019182503223419, 0.01458576787263155, 0.11016889661550522, 0.02927340939640999], [0.8464874029159546, 0.007125409785658121, 0.011116609908640385, 0.006413394585251808, 0.0010565321426838636, 0.010183493606746197, 0.007261425722390413, 0.06178567558526993, 0.005885311868041754], [0.5370393991470337, 0.024095334112644196, 0.019729357212781906, 0.04203464463353157, 0.0067970119416713715, 0.05341538041830063, 0.020838703960180283, 0.09264549612998962, 0.02320600487291813], [0.4284515380859375, 0.026992104947566986, 0.009285747073590755, 0.01861882582306862, 0.007447022013366222, 0.04384639114141464, 0.006369845476001501, 0.06425353139638901, 0.0615478977560997], [0.4351096749305725, 0.020514443516731262, 0.008449352346360683, 0.009301923215389252, 0.001221774611622095, 0.005948420614004135, 0.0037798364646732807, 0.2338775247335434, 0.08136442303657532]], [[0.10086333006620407, 0.04043850302696228, 0.06336106359958649, 0.06956925988197327, 0.014053556136786938, 0.04208793118596077, 0.010049941949546337, 0.023839600384235382, 0.043660201132297516], [0.12707668542861938, 0.0523548349738121, 0.26883453130722046, 0.040691524744033813, 0.010961726307868958, 0.1296394318342209, 0.01433053333312273, 0.014453519135713577, 0.034860480576753616], [0.24688754975795746, 0.030769459903240204, 0.047778595238924026, 0.010946054011583328, 0.0031167911365628242, 0.029011135920882225, 0.0037711665499955416, 0.01944924332201481, 0.11189188808202744], [0.0705142617225647, 0.022703805938363075, 0.058183036744594574, 0.009261778555810452, 0.004325672518461943, 0.012400595471262932, 0.0015944127226248384, 0.007076756563037634, 0.026688102632761], [0.07891872525215149, 0.014068239368498325, 0.0841895118355751, 0.007075081579387188, 0.0031340019777417183, 0.009126100689172745, 0.003642712952569127, 0.021879103034734726, 0.05461389571428299], [0.044050343334674835, 0.015222175046801567, 0.19471687078475952, 0.007659707218408585, 0.0031954178120940924, 0.015198113396763802, 0.0015721445670351386, 0.004193637054413557, 0.02555701695382595], [0.0655519887804985, 0.026019321754574776, 0.1586287021636963, 0.03197231888771057, 0.009207548573613167, 0.034353431314229965, 0.004972562193870544, 0.005005646031349897, 0.027446508407592773], [0.20587339997291565, 0.010222149081528187, 0.0022830842062830925, 0.002935391617938876, 0.000358555291313678, 0.0013521627988666296, 0.0005329405539669096, 0.18011945486068726, 0.24020645022392273]], [[0.011238610371947289, 0.00045380022493191063, 0.004181951750069857, 0.0003760939580388367, 0.00017070409376174212, 0.0002088031469611451, 0.00023954050266183913, 0.010314065031707287, 1.3955426766187884e-05], [0.031784750521183014, 0.0015507922507822514, 0.013885190710425377, 0.0018220108468085527, 0.0005439352826215327, 0.0008825199911370873, 0.00027660062187351286, 0.0069628870114684105, 4.4935241021448746e-05], [0.08621974289417267, 0.003574413014575839, 0.007178200408816338, 0.0013829863164573908, 0.0004100213118363172, 0.0005498532555066049, 0.0007883554790169001, 0.037121593952178955, 0.00038770571700297296], [0.022168036550283432, 0.0011089545441791415, 0.00752820260822773, 0.0009223827510140836, 0.00025024719070643187, 0.0004022939538117498, 0.0004331802192609757, 0.01542576216161251, 8.430749585386366e-05], [0.038268525153398514, 0.002309854608029127, 0.0049010575748980045, 0.0006654354510828853, 0.00024545693304389715, 0.0005895740468986332, 0.0006904510082677007, 0.03247307613492012, 0.0001754794648149982], [0.04470892250537872, 0.00579972704872489, 0.014608947560191154, 0.00284426542930305, 0.0014223706675693393, 0.0019662072882056236, 0.0019196448847651482, 0.03656250983476639, 0.0006488657672889531], [0.0324103944003582, 0.002985625062137842, 0.019528495147824287, 0.0015649838605895638, 0.0010861161863431334, 0.004385427106171846, 0.0005067905294708908, 0.012419597245752811, 0.00014126817404758185], [0.14372624456882477, 0.018153995275497437, 0.008819352835416794, 0.0026029872242361307, 0.005939857102930546, 0.0091972341760993, 0.0020077270455658436, 0.06999135762453079, 0.058347154408693314]], [[0.027944881469011307, 0.0242831539362669, 0.012918280437588692, 0.16402386128902435, 0.03439036011695862, 0.015647124499082565, 0.010424001142382622, 0.030613740906119347, 0.025048082694411278], [0.03677641227841377, 0.023587673902511597, 0.14763346314430237, 0.042520828545093536, 0.008023045025765896, 0.006664303131401539, 0.006648252718150616, 0.01626436971127987, 0.03899155184626579], [0.053710758686065674, 0.01573863998055458, 0.000860692816786468, 0.08311107754707336, 0.23616304993629456, 0.029673194512724876, 0.04085135459899902, 0.019149426370859146, 0.052326127886772156], [0.07678169757127762, 0.03138824552297592, 0.0069891014136374, 0.024354055523872375, 0.030870748683810234, 0.020590312778949738, 0.011850254610180855, 0.03463532775640488, 0.08088368922472], [0.04260123893618584, 0.013429353944957256, 0.08451063185930252, 0.005342602264136076, 0.006419896148145199, 0.00040298490785062313, 0.011343014426529408, 0.009916880168020725, 0.04078890383243561], [0.09958776086568832, 0.024511493742465973, 0.12924376130104065, 0.020699242129921913, 0.004476725589483976, 0.002866498427465558, 0.012254253029823303, 0.022414108738303185, 0.08055975288152695], [0.04026741534471512, 0.060288798063993454, 0.033687297254800797, 0.022989923134446144, 0.02891065925359726, 0.03710899502038956, 0.014900666661560535, 0.018785668537020683, 0.04191936179995537], [0.046111952513456345, 0.045371007174253464, 0.025911172851920128, 0.06766625493764877, 0.04622233286499977, 0.04765365645289421, 0.07085514813661575, 0.04710721969604492, 0.03205384686589241]], [[0.3952358067035675, 0.0018169309478253126, 0.0006401372374966741, 0.0022998496424406767, 0.00395448412746191, 0.0013010089751332998, 0.006638898979872465, 0.010611708275973797, 0.17060349881649017], [0.32721415162086487, 0.09639663249254227, 0.0016054569277912378, 0.0004703406593762338, 0.0002142055018339306, 0.00013674484216608107, 0.0007460075430572033, 0.013670305721461773, 0.14843612909317017], [0.30754250288009644, 0.0009476087288931012, 3.085290927629103e-06, 0.001100786030292511, 0.000625999120529741, 5.30617508047726e-05, 0.0006682449020445347, 0.004559790715575218, 0.23483937978744507], [0.22668159008026123, 0.0026423290837556124, 2.5871360776363872e-05, 0.0003170525305904448, 0.0018173913704231381, 0.00018161829211749136, 0.0013966673286631703, 0.010686048306524754, 0.2911210060119629], [0.22935882210731506, 0.001239060889929533, 0.0002068211615551263, 0.0007138069486245513, 0.00012699555372819304, 0.0002493307401891798, 3.352266867295839e-05, 0.004078928846865892, 0.21864815056324005], [0.4362337291240692, 0.0049179838970303535, 0.003379747038707137, 0.000696059491019696, 5.3383315389510244e-05, 0.0001347169018117711, 4.089279173058458e-05, 0.017139635980129242, 0.27210748195648193], [0.33256620168685913, 0.0036038111429661512, 0.0003811477217823267, 0.008409728296101093, 0.00041850630077533424, 0.00026936628273688257, 0.00011917229858227074, 0.010657011531293392, 0.31702518463134766], [0.327828586101532, 0.039426300674676895, 0.018262511119246483, 0.011622877791523933, 0.011556536890566349, 0.03138080611824989, 0.002868588315322995, 0.0779644176363945, 0.22032298147678375]], [[0.20987045764923096, 0.005762506276369095, 0.0012960791354998946, 0.009004318155348301, 0.001947010401636362, 0.0025654539931565523, 0.0050395093858242035, 0.21396028995513916, 0.17319928109645844], [0.29504281282424927, 0.011301913298666477, 0.007198079489171505, 0.010319914668798447, 0.005185090471059084, 0.004785916768014431, 0.002487111371010542, 0.11605797708034515, 0.18971474468708038], [0.3753051161766052, 0.017154471948742867, 0.0019981185905635357, 0.036559104919433594, 0.005707910284399986, 0.003839462297037244, 0.003966993652284145, 0.15112626552581787, 0.11763722449541092], [0.26478636264801025, 0.021863367408514023, 0.002591127762570977, 0.013034133240580559, 0.004433171823620796, 0.0015097843715921044, 0.0042487927712500095, 0.30276185274124146, 0.15307000279426575], [0.3923172056674957, 0.0379229411482811, 0.004498607944697142, 0.01900322549045086, 0.009744742885231972, 0.0049546645022928715, 0.006934881675988436, 0.18183450400829315, 0.07574349641799927], [0.32964029908180237, 0.02343744784593582, 0.004301612265408039, 0.014635363593697548, 0.0034210134763270617, 0.005026042461395264, 0.007740766741335392, 0.174477681517601, 0.1553230732679367], [0.3046429753303528, 0.02137015387415886, 0.005005453247576952, 0.015783295035362244, 0.009150386787950993, 0.003989753313362598, 0.0032189199700951576, 0.13954909145832062, 0.14953553676605225], [0.2823575437068939, 0.016558093950152397, 0.007606648374348879, 0.01545813400298357, 0.005638604983687401, 0.0032766794320195913, 0.0029583959840238094, 0.09284613281488419, 0.22527742385864258]], [[0.31985634565353394, 0.03799072653055191, 0.0038136872462928295, 0.043138500303030014, 0.0222634207457304, 0.05659031867980957, 0.021846959367394447, 0.16525664925575256, 0.09792320430278778], [0.23613311350345612, 0.22397688031196594, 0.05252093821763992, 0.023578016087412834, 0.0063842060044407845, 0.007359006442129612, 0.006432905327528715, 0.07066486775875092, 0.07237928360700607], [0.4162965714931488, 0.023703033104538918, 0.005078424233943224, 0.00811045989394188, 0.00425873976200819, 0.021713633090257645, 0.004882904700934887, 0.09108726680278778, 0.16075964272022247], [0.27463674545288086, 0.017799386754631996, 0.03629354387521744, 0.00939211342483759, 0.00317370449192822, 0.01879732683300972, 0.005804486107081175, 0.11809951812028885, 0.19079633057117462], [0.3024560511112213, 0.032547786831855774, 0.040002916008234024, 0.012277884408831596, 0.0030880861449986696, 0.01899184100329876, 0.004788948222994804, 0.15415412187576294, 0.14186060428619385], [0.30245688557624817, 0.021099543198943138, 0.030815938487648964, 0.003993559628725052, 0.0021287144627422094, 0.026269113644957542, 0.0024147252552211285, 0.1673903614282608, 0.17521771788597107], [0.2843210697174072, 0.03152967616915703, 0.003723833477124572, 0.06585222482681274, 0.003251809859648347, 0.011879992671310902, 0.003824991174042225, 0.06839574873447418, 0.17949014902114868], [0.10668598115444183, 0.02907514199614525, 0.021513856947422028, 0.012126919813454151, 0.03529800474643707, 0.049412794411182404, 0.01754113845527172, 0.17067867517471313, 0.11266523599624634]]], [[[0.05893915519118309, 0.004959069192409515, 0.09357424080371857, 0.00190543953794986, 0.009960702620446682, 0.04426253214478493, 0.015621045604348183, 0.00938519649207592, 0.19872264564037323], [0.01992052234709263, 0.006161093711853027, 0.007589926477521658, 0.00046238701906986535, 0.005520354025065899, 0.024907352402806282, 0.012775149196386337, 0.005661738570779562, 0.32653382420539856], [0.036059796810150146, 0.010527840815484524, 0.004981519654393196, 0.0029798285104334354, 0.0007715271203778684, 0.006110026966780424, 0.0034477165900170803, 0.010959194973111153, 0.20585474371910095], [0.016502052545547485, 0.003211716189980507, 0.004133071284741163, 0.0006781511474400759, 0.002640243386849761, 0.01132307667285204, 0.003016370115801692, 0.008973664604127407, 0.13929511606693268], [0.028918199241161346, 0.004348126705735922, 0.004228840582072735, 0.002513051498681307, 0.0009302482358179986, 0.0009891161462292075, 0.0013943141093477607, 0.0123847471550107, 0.05579974129796028], [0.03434761241078377, 0.004570739809423685, 0.009555219672620296, 0.0029089529998600483, 0.0013298295671120286, 0.002127466257661581, 0.0007698537083342671, 0.03190582990646362, 0.03863202780485153], [0.03200674429535866, 0.009288210421800613, 0.029990360140800476, 0.000543253670912236, 0.007822990417480469, 0.017453720793128014, 0.0022451900877058506, 0.011948894709348679, 0.023673368617892265], [0.00889130961149931, 0.001662836642935872, 0.0015882020816206932, 0.0004541071830317378, 0.0006766048027202487, 0.0011294177966192365, 0.000691256660502404, 0.007943513803184032, 0.48110243678092957]], [[0.14523206651210785, 0.004370057489722967, 0.00713363429531455, 0.000566799018997699, 0.0002683750935830176, 0.002279791748151183, 0.0010023448849096894, 0.01880032569169998, 0.33974114060401917], [0.10187390446662903, 0.008110197260975838, 0.4530135989189148, 0.0032188883051276207, 0.0011650349479168653, 0.01108372863382101, 0.0020951619371771812, 0.008180157281458378, 0.1476217806339264], [0.07199853658676147, 0.005378678906708956, 0.001824289676733315, 0.0007286925683729351, 5.777660044259392e-05, 0.0007411994156427681, 0.0003564495127648115, 0.00934547744691372, 0.3786395192146301], [0.04819687083363533, 0.007004470564424992, 0.002005811780691147, 0.0011418426875025034, 0.00014645527699030936, 0.0006488825310952961, 0.00036462140269577503, 0.01453134510666132, 0.38899460434913635], [0.0028171250596642494, 0.0002581830194685608, 0.010321768000721931, 0.0002449669409543276, 7.836687473172788e-06, 1.269724452868104e-05, 2.6008741770056076e-05, 0.0007407551165670156, 0.10632429271936417], [0.022478634491562843, 0.0018809805624186993, 0.03874971345067024, 0.0013490472920238972, 0.00017873753677122295, 0.00021559018932748586, 0.0003060683375224471, 0.006406242027878761, 0.3428303301334381], [0.1784118115901947, 0.013392035849392414, 0.031874459236860275, 0.001495323027484119, 0.00045151100493967533, 0.007161801680922508, 0.0009671953157521784, 0.015159158036112785, 0.3048873245716095], [0.10374398529529572, 0.016477977856993675, 0.02411801367998123, 0.005720147863030434, 0.0007447206880897284, 0.00245878123678267, 0.0017309562535956502, 0.09839294850826263, 0.32528623938560486]], [[0.008759306743741035, 0.0017021362436935306, 0.0030789608135819435, 0.0022681960836052895, 0.0004023327201139182, 0.019204553216695786, 0.009455198422074318, 0.03205280378460884, 0.39825835824012756], [0.013387811370193958, 0.004353857599198818, 0.009090623818337917, 0.0037649269215762615, 0.0017662190366536379, 0.01526618655771017, 0.012045747600495815, 0.0251274686306715, 0.3874477446079254], [0.016170823946595192, 0.00860834401100874, 0.0013970256550237536, 0.030484246090054512, 0.002820461755618453, 0.00030802551191300154, 0.004427966196089983, 0.013040955178439617, 0.1426769196987152], [0.013409675098955631, 0.0016358235152438283, 0.000607586232945323, 0.0022632814943790436, 0.00014700574683956802, 0.002604493172839284, 0.0004976140917278826, 0.007984621450304985, 0.13281553983688354], [0.02218128740787506, 0.021137135103344917, 0.003321901196613908, 0.015765530988574028, 0.0027436725795269012, 0.0002585668698884547, 0.005819383542984724, 0.012072925455868244, 0.2434394657611847], [0.04302673786878586, 0.01941583678126335, 0.006394318770617247, 0.009697443805634975, 0.0006676638731732965, 0.00038252034573815763, 0.0006676221964880824, 0.008733977563679218, 0.15230520069599152], [0.03028547763824463, 0.004970422480255365, 0.0024086711928248405, 0.0006666664266958833, 0.00012095970305381343, 0.0019201028626412153, 0.00012939599400851876, 0.004376744385808706, 0.04789287596940994], [0.021704891696572304, 0.006437145639210939, 0.024342045187950134, 0.00929927546530962, 0.010311801917850971, 0.020022470504045486, 0.018554266542196274, 0.03209354728460312, 0.3309526741504669]], [[0.1711912453174591, 0.010623871348798275, 0.011231782846152782, 0.003477185033261776, 0.0017342083156108856, 0.005840560887008905, 0.009801999665796757, 0.06413424015045166, 0.276796817779541], [0.26481521129608154, 0.009488977491855621, 0.015699239447712898, 0.0005160804721526802, 0.00034936791053041816, 0.0016722793225198984, 0.0015524107730016112, 0.0413542240858078, 0.26811230182647705], [0.12795551121234894, 0.013441663235425949, 0.004942802712321281, 0.002160585718229413, 0.0010796907590702176, 0.0038911595474928617, 0.0012969158124178648, 0.017203569412231445, 0.2819002866744995], [0.13007551431655884, 0.015273413620889187, 0.012284835800528526, 0.0038090432062745094, 0.0016354549443349242, 0.005744705442339182, 0.0016458057798445225, 0.03220919519662857, 0.24617919325828552], [0.15170516073703766, 0.01491902582347393, 0.02569616213440895, 0.025702238082885742, 0.006355874240398407, 0.025803154334425926, 0.004133834969252348, 0.02999289706349373, 0.19618767499923706], [0.15583063662052155, 0.01573105715215206, 0.022779693827033043, 0.014888818375766277, 0.003644403303042054, 0.017298415303230286, 0.004269361961632967, 0.02750309184193611, 0.16951683163642883], [0.18699736893177032, 0.002329472219571471, 0.021755244582891464, 0.01376196090131998, 0.000809724791906774, 0.010529701597988605, 0.0045575243420898914, 0.06504624336957932, 0.21019411087036133], [0.06448955088853836, 0.013963649980723858, 0.02917107380926609, 0.018412627279758453, 0.019564948976039886, 0.017242856323719025, 0.01677178405225277, 0.05014842748641968, 0.26806533336639404]], [[0.10238467901945114, 0.009599142707884312, 0.051687631756067276, 0.021734952926635742, 0.030580295249819756, 0.13926364481449127, 0.019718030467629433, 0.013973359018564224, 0.13918884098529816], [0.01155109703540802, 0.3665461838245392, 0.4071566164493561, 0.0012388606555759907, 0.0016497502801939845, 0.00016208062879741192, 0.0007624436402693391, 0.02213725820183754, 0.024681735783815384], [0.0988735631108284, 0.00810533668845892, 0.003693265374749899, 0.02403714507818222, 0.01930871233344078, 0.09083115309476852, 0.045186009258031845, 0.018657997250556946, 0.1284719854593277], [0.04811043664813042, 0.02305556833744049, 0.015595187433063984, 0.024432215839624405, 0.029340848326683044, 0.06254052370786667, 0.015492081642150879, 0.008921829983592033, 0.141980841755867], [0.01191096380352974, 0.024347836151719093, 0.025750786066055298, 0.004004873801022768, 0.0018154301214963198, 0.00015546784561593086, 0.0013384380144998431, 0.008701673708856106, 0.11745009571313858], [0.013543233275413513, 0.04978056252002716, 0.020450223237276077, 0.0015240791253745556, 0.0006331190816126764, 0.00042383544496260583, 0.0011867423309013247, 0.0089890006929636, 0.06815314292907715], [0.15897759795188904, 0.03445937857031822, 0.04916132614016533, 0.020893627777695656, 0.04645692557096481, 0.11105263978242874, 0.049921754747629166, 0.021978070959448814, 0.14342592656612396], [0.12157228589057922, 0.027919812127947807, 0.03722265735268593, 0.029451880604028702, 0.015367691405117512, 0.016029197722673416, 0.01955902948975563, 0.03163148835301399, 0.20774368941783905]], [[0.1724925935268402, 0.013374142348766327, 0.003666842123493552, 0.02063440904021263, 0.03976757079362869, 0.0736643373966217, 0.0071897911839187145, 0.11219438165426254, 0.2592865824699402], [0.11329855769872665, 0.03443470597267151, 0.09738736599683762, 0.008637523278594017, 0.0037678724620491266, 0.015234452672302723, 0.004287968389689922, 0.1155705526471138, 0.29987820982933044], [0.13941368460655212, 0.02250714972615242, 0.017218532040715218, 0.011797267943620682, 0.006751397158950567, 0.035133786499500275, 0.008534512482583523, 0.08598820120096207, 0.2856442332267761], [0.08463839441537857, 0.01270969957113266, 0.023268088698387146, 0.004411982372403145, 0.001581456046551466, 0.006553984247148037, 0.004063136409968138, 0.05127799138426781, 0.3887098729610443], [0.06317650526762009, 0.013546490110456944, 0.10369697213172913, 0.030292870476841927, 0.00045389420120045543, 0.025506222620606422, 0.0028651126194745302, 0.03794132545590401, 0.33888500928878784], [0.07858254015445709, 0.011650007218122482, 0.21158108115196228, 0.012160727754235268, 0.00045634384150616825, 0.016058901324868202, 0.0010243725264444947, 0.038150858134031296, 0.3007851243019104], [0.10067831724882126, 0.020996958017349243, 0.034526724368333817, 0.03736231103539467, 0.03129003942012787, 0.11438058316707611, 0.014055054634809494, 0.08983927965164185, 0.23418547213077545], [0.13072115182876587, 0.02590269036591053, 0.04422006383538246, 0.017026377841830254, 0.011821772903203964, 0.0222614798694849, 0.012583104893565178, 0.04756303131580353, 0.2808963358402252]], [[0.006707136984914541, 0.0007751249358989298, 0.007154405117034912, 0.0008747496176511049, 0.008713368326425552, 0.017659800127148628, 0.004443692974746227, 0.0018326325807720423, 0.025456467643380165], [0.024382352828979492, 0.003080841153860092, 0.040075045078992844, 0.0006564279901795089, 0.00021732829918619245, 0.0028629901353269815, 0.0002489363250788301, 0.0104325320571661, 0.12660911679267883], [0.012275690212845802, 0.003109223674982786, 0.0065096900798380375, 0.0005955808446742594, 0.001726871239952743, 0.009039400145411491, 0.0035349258687347174, 0.0028183315880596638, 0.06100746616721153], [0.0070958007127046585, 0.0034747279714792967, 0.004522380884736776, 0.000441201264038682, 0.00252297380939126, 0.006314962636679411, 0.0031839117873460054, 0.0033157130237668753, 0.11163052171468735], [0.005360518582165241, 0.005920092575252056, 0.014196990989148617, 0.0020526512525975704, 0.0008544014417566359, 0.005424348171800375, 0.0019387701759114861, 0.0030925904866307974, 0.03941353037953377], [0.01063152588903904, 0.016026420518755913, 0.018201762810349464, 0.003788732923567295, 0.0016653469065204263, 0.013417461887001991, 0.006933057680726051, 0.009814702905714512, 0.0650595873594284], [0.007105095777660608, 0.002463369630277157, 0.0072436402551829815, 0.0020677070133388042, 0.0015495030675083399, 0.003229381749406457, 0.0027688222471624613, 0.0027251846622675657, 0.03658017888665199], [0.05321567878127098, 0.030045511201024055, 0.03301960974931717, 0.02075480856001377, 0.03829619660973549, 0.047166064381599426, 0.03833368420600891, 0.016778869554400444, 0.1183844655752182]], [[0.031144404783844948, 0.0032304986380040646, 0.006225212477147579, 0.014562491327524185, 0.015543151646852493, 0.004616913851350546, 0.0017246290808543563, 0.07387255877256393, 0.1507762372493744], [0.1371629387140274, 0.013908891938626766, 0.03474659100174904, 0.013529245741665363, 0.06299293786287308, 0.01617298647761345, 0.0051455372013151646, 0.027681633830070496, 0.07041380554437637], [0.011123097501695156, 0.016143186017870903, 0.03923587501049042, 0.016816284507513046, 0.05433144420385361, 0.036057546734809875, 0.009735497646033764, 0.018259618431329727, 0.10486350208520889], [0.032573673874139786, 0.023952007293701172, 0.02631581947207451, 0.005479880608618259, 0.02787521481513977, 0.01638283208012581, 0.011507261544466019, 0.01969759911298752, 0.12929528951644897], [0.0434468537569046, 0.019525857642292976, 0.06137891858816147, 0.005524791311472654, 0.009263289161026478, 0.013640828430652618, 0.009624834172427654, 0.00796736590564251, 0.10646946728229523], [0.023922940716147423, 0.02784579247236252, 0.07768482714891434, 0.00692017050459981, 0.029780805110931396, 0.04136477783322334, 0.02691960334777832, 0.007027658633887768, 0.07401113212108612], [0.06322718411684036, 0.008076313883066177, 0.011662594974040985, 0.0019380158046260476, 0.016504110768437386, 0.009529545903205872, 0.0029026938136667013, 0.009493683464825153, 0.18853189051151276], [0.019857307896018028, 0.0021450708154588938, 0.005012816749513149, 0.0019166666315868497, 0.0008360852370969951, 0.002760122297331691, 0.001324470853433013, 0.008984644897282124, 0.4432066082954407]], [[0.04202964901924133, 0.00486003328114748, 0.00018054810061585158, 0.0016183494590222836, 7.086772529873997e-05, 6.904594920342788e-05, 0.00011169896606588736, 0.28318533301353455, 0.2987756133079529], [0.046645548194646835, 0.10536626726388931, 0.0009154075523838401, 0.003514043753966689, 0.002029123017564416, 0.00010816318535944447, 0.0006653069285675883, 0.25556281208992004, 0.2609725296497345], [0.06982585787773132, 0.05903950333595276, 0.004062683787196875, 0.05056963488459587, 0.002836712170392275, 0.0019816828425973654, 0.006462590768933296, 0.036660369485616684, 0.26363062858581543], [0.07513340562582016, 0.057168882340192795, 0.0011279579484835267, 0.04974115639925003, 0.008180253207683563, 0.0014728647656738758, 0.03360914811491966, 0.06232035532593727, 0.2810038924217224], [0.10604767501354218, 0.051608357578516006, 0.00986412912607193, 0.011918673291802406, 0.001169662456959486, 0.0010736732510849833, 0.009574701078236103, 0.07572280615568161, 0.22588378190994263], [0.10818764567375183, 0.05237952619791031, 0.016990026459097862, 0.02309701032936573, 0.0035215073730796576, 0.0037350791972130537, 0.0116533562541008, 0.06520050764083862, 0.26326754689216614], [0.0737457424402237, 0.03129909932613373, 0.0011655950220301747, 0.010209014639258385, 0.0011789450654760003, 0.0006923654000274837, 0.002082490362226963, 0.2401101440191269, 0.282698392868042], [0.103140689432621, 0.02037252113223076, 0.05589817836880684, 0.023949595168232918, 0.016545400023460388, 0.028015537187457085, 0.020148610696196556, 0.04926019534468651, 0.20932021737098694]], [[0.15714114904403687, 0.009798171930015087, 0.02089603990316391, 0.01564641483128071, 0.005992190912365913, 0.12401308864355087, 0.006861633621156216, 0.024027202278375626, 0.24999937415122986], [0.09845472872257233, 0.07467485219240189, 0.05771476402878761, 0.03462075814604759, 0.00692892586812377, 0.02235138788819313, 0.011726402677595615, 0.03543424606323242, 0.2828075587749481], [0.09306015819311142, 0.007648893631994724, 0.006741845048964024, 0.04537758603692055, 0.02837543934583664, 0.052839599549770355, 0.03980449587106705, 0.019246159121394157, 0.21360930800437927], [0.10565908253192902, 0.0031379745341837406, 0.003920247312635183, 0.00873290840536356, 0.018205827102065086, 0.015193847008049488, 0.0060600885190069675, 0.013183402828872204, 0.12697561085224152], [0.07040902972221375, 0.002897935453802347, 0.0054587675258517265, 0.004833593033254147, 0.0002890506584662944, 0.00026882809470407665, 0.0007286523468792439, 0.03519909083843231, 0.15436917543411255], [0.12903918325901031, 0.0063051204197108746, 0.011549129150807858, 0.00694222841411829, 0.0018741313833743334, 0.003904499113559723, 0.0017282579792663455, 0.02414611168205738, 0.19700074195861816], [0.12828588485717773, 0.04131525382399559, 0.0772983506321907, 0.11770670115947723, 0.015339246019721031, 0.10573671758174896, 0.03334542363882065, 0.05332576110959053, 0.1318526566028595], [0.06652477383613586, 0.024116864427924156, 0.029861483722925186, 0.017497330904006958, 0.009013619273900986, 0.018054788932204247, 0.015801459550857544, 0.028136834502220154, 0.3079308569431305]], [[0.13584277033805847, 0.011695018969476223, 0.007748823147267103, 0.023095708340406418, 0.008667781949043274, 0.00662047928199172, 0.002217898378148675, 0.08604885637760162, 0.10866381973028183], [0.22214257717132568, 0.397006630897522, 0.07799965888261795, 0.001591327483765781, 0.006439052522182465, 0.002981884405016899, 0.002046444686129689, 0.02057032100856304, 0.06509295105934143], [0.03297732397913933, 0.007451741956174374, 0.0017498956294730306, 0.005414881277829409, 0.0005161985754966736, 0.0001763166073942557, 0.0017734040739014745, 0.011331173591315746, 0.38425061106681824], [0.06273996084928513, 0.0025111923459917307, 0.0016772485105320811, 0.0006500279414467514, 0.0005342610529623926, 0.0004249734338372946, 0.0008769634878262877, 0.0132936155423522, 0.38306766748428345], [0.08816497772932053, 0.009677629917860031, 0.015690773725509644, 0.004526781849563122, 0.00128223467618227, 0.0014866326237097383, 0.0031792079098522663, 0.034714143723249435, 0.2948341369628906], [0.07929017394781113, 0.008097521960735321, 0.02662476897239685, 0.004608360584825277, 0.0015260765794664621, 0.002503037452697754, 0.0043432870879769325, 0.023972520604729652, 0.34708476066589355], [0.09227947145700455, 0.022185293957591057, 0.013095438480377197, 0.11232389509677887, 0.011276493780314922, 0.00845241267234087, 0.00967930257320404, 0.0183134563267231, 0.10783451050519943], [0.04053887724876404, 0.005695616826415062, 0.004130534827709198, 0.001643113442696631, 0.0006864396273158491, 0.0010371835669502616, 0.0007898491458036005, 0.024652527645230293, 0.4360586702823639]], [[0.14181214570999146, 0.002162131480872631, 0.0052556986920535564, 0.014523785561323166, 0.07398169487714767, 0.0019744380842894316, 0.007618424016982317, 0.01032099686563015, 0.22103512287139893], [0.04754903167486191, 0.055569376796483994, 0.001979036722332239, 0.0171392560005188, 0.19845329225063324, 0.0021873374935239553, 0.014013304375112057, 0.0008090201299637556, 0.13742053508758545], [0.015173112973570824, 0.0007959223003126681, 0.0003134974685963243, 0.006277746055275202, 0.07463832199573517, 0.0015087107894942164, 0.0013125193072482944, 0.0007432755082845688, 0.037144601345062256], [0.03597979247570038, 0.0019340186845511198, 0.0023743619676679373, 0.01472576055675745, 0.028376227244734764, 0.0008248861995525658, 0.0027777627110481262, 0.0034397589042782784, 0.30702465772628784], [0.014890733174979687, 0.020436201244592667, 0.0018043856834992766, 0.053086258471012115, 0.046342119574546814, 0.0017069646855816245, 0.020459666848182678, 0.0006417477852664888, 0.29479536414146423], [0.024464592337608337, 0.013698003254830837, 0.001383753726258874, 0.018582692369818687, 0.05824772268533707, 0.0020962106063961983, 0.008711977861821651, 0.002350544324144721, 0.33351701498031616], [0.09143819659948349, 0.025717345997691154, 0.006066449452191591, 0.059783030301332474, 0.06158558279275894, 0.004037764389067888, 0.023459356278181076, 0.010942014865577221, 0.13878405094146729], [0.36221015453338623, 0.0003070094098802656, 0.015256155282258987, 0.000311047479044646, 0.00012637523468583822, 0.011189128272235394, 8.444055129075423e-05, 0.5028384923934937, 0.04528357833623886]]], [[[0.2955872714519501, 0.03647439554333687, 0.03516606241464615, 0.05229403078556061, 0.04541053622961044, 0.038197215646505356, 0.01131829246878624, 0.04804878681898117, 0.2062891721725464], [0.39648935198783875, 0.07168390601873398, 0.04072282090783119, 0.06400157511234283, 0.05617072433233261, 0.006503338925540447, 0.002926240209490061, 0.02677137218415737, 0.15194599330425262], [0.022976044565439224, 0.01136298943310976, 0.022971469908952713, 0.006778225302696228, 0.006943941116333008, 0.006844544783234596, 0.004990750923752785, 0.02489999495446682, 0.43060266971588135], [0.038779858499765396, 0.028326446190476418, 0.03964635357260704, 0.01673860475420952, 0.006986437831073999, 0.005188890267163515, 0.004770874977111816, 0.0352882444858551, 0.40507155656814575], [0.030265744775533676, 0.033081598579883575, 0.016941331326961517, 0.0068838875740766525, 0.0014196623815223575, 0.0006329893949441612, 0.0014345220988616347, 0.008779450319707394, 0.434416264295578], [0.03977159038186073, 0.05664397031068802, 0.1319253295660019, 0.0070150080136954784, 0.0012772117042914033, 0.0012800352415069938, 0.0008774331072345376, 0.018531909212470055, 0.35738229751586914], [0.35176828503608704, 0.016164936125278473, 0.01636815257370472, 0.05804995074868202, 0.039208583533763885, 0.03616916388273239, 0.006622049026191235, 0.049356747418642044, 0.1859654039144516], [0.02784043364226818, 0.004453934263437986, 0.011656972579658031, 0.003910311032086611, 0.00298675405792892, 0.008510884828865528, 0.0029135136865079403, 0.05326022952795029, 0.4165485203266144]], [[0.01473692711442709, 0.0007284142775461078, 0.0030098571442067623, 0.0050953528843820095, 0.034985266625881195, 0.0816836953163147, 0.01492468360811472, 0.007333504036068916, 0.3747553825378418], [0.03308449313044548, 0.005363058298826218, 0.07295247167348862, 0.02461327239871025, 0.07506665587425232, 0.10252267122268677, 0.026483017951250076, 0.002392088295891881, 0.02609376795589924], [0.02203182689845562, 0.0014520460972562432, 0.019051892682909966, 0.012256080284714699, 0.003868603380396962, 0.04836718738079071, 0.015189481899142265, 0.010207864455878735, 0.38660791516304016], [0.035299353301525116, 0.0019236616790294647, 0.01111103966832161, 0.010909855365753174, 0.007746526040136814, 0.09966705739498138, 0.020622698590159416, 0.008716409094631672, 0.12993064522743225], [0.019359715282917023, 0.0013941325014457107, 0.0012283913092687726, 0.005196215119212866, 0.00448927516117692, 0.002475927583873272, 0.0018629872938618064, 0.008321234956383705, 0.432026743888855], [0.014869939535856247, 0.002363689010962844, 0.0009491543751209974, 0.002382102655246854, 0.0068388828076422215, 0.0032602129504084587, 0.00202627363614738, 0.007454190868884325, 0.4293583333492279], [0.023424305021762848, 0.004161475226283073, 0.053437765687704086, 0.0041063521057367325, 0.04978364706039429, 0.17035581171512604, 0.020288191735744476, 0.013689602725207806, 0.10812962055206299], [0.007420300506055355, 0.0025558052584528923, 0.0026494849007576704, 0.0017724173376336694, 0.0015149289974942803, 0.0034541103523224592, 0.0013401638716459274, 0.01764225959777832, 0.47893622517585754]], [[0.029063992202281952, 0.0047799828462302685, 0.002818971872329712, 0.0034663034602999687, 0.001379151362925768, 0.0031255220528692007, 0.0012173574650660157, 0.0008229855448007584, 0.26591530442237854], [0.042893294245004654, 0.007728861179202795, 0.006665055640041828, 0.028495654463768005, 0.012110443785786629, 0.011421522125601768, 0.0060052587650716305, 0.0015260545769706368, 0.08183512091636658], [0.0271441787481308, 0.01470328588038683, 0.02288920059800148, 0.008312780410051346, 0.003094565123319626, 0.008655658923089504, 0.003037445480003953, 0.003105797106400132, 0.36296480894088745], [0.0169081911444664, 0.008299125358462334, 0.006622029468417168, 0.006994720082730055, 0.0016013933345675468, 0.0057757250033319, 0.0012783496640622616, 0.0015351736219599843, 0.3329033851623535], [0.023301851004362106, 0.002987081650644541, 0.004921111278235912, 0.0027839583344757557, 0.0005198765429668128, 0.0010687484173104167, 0.0013127231504768133, 0.003465663641691208, 0.4530599117279053], [0.04272375628352165, 0.002688746899366379, 0.005862189922481775, 0.0036073564551770687, 0.001545575330965221, 0.0015120545867830515, 0.0011338251642882824, 0.0015430613420903683, 0.41709572076797485], [0.136650949716568, 0.04313594102859497, 0.0302302036434412, 0.045243680477142334, 0.021728767082095146, 0.027933435514569283, 0.016294781118631363, 0.008790555410087109, 0.1291041225194931], [0.017510393634438515, 0.0051260823383927345, 0.007864479906857014, 0.004709544125944376, 0.003131305333226919, 0.0027298007626086473, 0.0020060879178345203, 0.07903189957141876, 0.41496965289115906]], [[0.0008491140324622393, 0.0005212611868046224, 2.5599083528504707e-05, 0.0006783573189750314, 0.0001678473490756005, 9.31520844460465e-06, 0.00012656275066547096, 0.0001950762962223962, 0.09756988286972046], [0.0007177837542258203, 0.0008252694387920201, 0.00010313571692677215, 0.00040920067112892866, 0.00012154570868005976, 7.2462034950149246e-06, 0.00013535514881368726, 0.0004142120305914432, 0.05946400389075279], [0.0011240089079365134, 0.0004871144483331591, 2.9071303288219497e-05, 0.0002849288284778595, 0.00012817826063837856, 1.4750094123883173e-05, 0.00013278725964482874, 0.0005761770298704505, 0.09627234935760498], [0.0005903768469579518, 0.0002158536808565259, 5.251400943961926e-05, 0.00026627047918736935, 6.02041109232232e-05, 1.2042210073559545e-05, 0.00013055406452622265, 0.00020666791533585638, 0.12170957773923874], [0.022938458248972893, 0.002456842688843608, 0.0009184491937048733, 0.004386201500892639, 0.0005793674499727786, 0.00019684068684000522, 0.0007839884492568672, 0.006411590147763491, 0.07629384845495224], [0.005536186043173075, 0.0004560565866995603, 0.0003791222407016903, 0.0013831116957589984, 0.0002366519474890083, 4.778942093253136e-05, 0.0003254574548918754, 0.00259949523024261, 0.14263667166233063], [0.004912117961794138, 0.001683229231275618, 0.00017866981215775013, 0.0006479433504864573, 0.0012386339949443936, 0.00021685042884200811, 0.0004188133461866528, 0.00474077183753252, 0.12158916890621185], [0.046810876578092575, 5.01327303936705e-05, 0.013078054413199425, 0.0025798736605793238, 0.005134680774062872, 0.024470267817378044, 0.02899685688316822, 0.1702173352241516, 0.2758837938308716]], [[0.15068624913692474, 0.020011581480503082, 0.0038030114956200123, 0.03688008710741997, 0.07749611884355545, 0.031045880168676376, 0.044385720044374466, 0.02682865969836712, 0.15471012890338898], [0.04740447923541069, 0.021780475974082947, 0.012858090922236443, 0.011991053819656372, 0.004323021043092012, 0.01407338585704565, 0.02045566774904728, 0.04039063677191734, 0.14332930743694305], [0.08884214609861374, 0.010657667182385921, 0.017407242208719254, 0.0036999410949647427, 0.014290076680481434, 0.05406496673822403, 0.00889695156365633, 0.023020818829536438, 0.12325640767812729], [0.08212973922491074, 0.0251918938010931, 0.0556969977915287, 0.005964886862784624, 0.013916494324803352, 0.09266016632318497, 0.011911566369235516, 0.04747019335627556, 0.17447666823863983], [0.06182695925235748, 0.032713308930397034, 0.07611880451440811, 0.028053686022758484, 0.0016748742200434208, 0.06534861773252487, 0.01005744282156229, 0.03510230779647827, 0.1235855296254158], [0.07456973195075989, 0.010289469733834267, 0.08816496282815933, 0.014516211114823818, 0.0009223271044902503, 0.02099846862256527, 0.00566053343936801, 0.024335535243153572, 0.12653867900371552], [0.05467785522341728, 0.016035791486501694, 0.012110044248402119, 0.033462610095739365, 0.0113012520596385, 0.01578878052532673, 0.015721647068858147, 0.02180643379688263, 0.12207046896219254], [0.0883234366774559, 0.04295876994729042, 0.046672359108924866, 0.03217342123389244, 0.02339833416044712, 0.03022189438343048, 0.024998480454087257, 0.07673180103302002, 0.15765050053596497]], [[0.04742226377129555, 0.030504191294312477, 0.022241177037358284, 0.04673941433429718, 0.019967779517173767, 0.008044990710914135, 0.012378828600049019, 0.02360449731349945, 0.19647781550884247], [0.08561167865991592, 0.26710274815559387, 0.15554147958755493, 0.006184375379234552, 0.0011585064930841327, 0.0028048576787114143, 0.0010972751770168543, 0.026849156245589256, 0.12017999589443207], [0.0411747582256794, 0.01335297804325819, 0.012766428291797638, 0.009585987776517868, 0.0031099379993975163, 0.0018097193678840995, 0.008015465922653675, 0.02464604191482067, 0.29103532433509827], [0.054878272116184235, 0.016822323203086853, 0.009820486418902874, 0.00941557064652443, 0.009204561822116375, 0.003976711072027683, 0.00810614600777626, 0.02501188963651657, 0.2995590567588806], [0.018716024234890938, 0.009983398020267487, 0.011888500303030014, 0.0010097380727529526, 0.0002665521460585296, 6.889200449222699e-05, 0.00045605850755237043, 0.016255822032690048, 0.18820303678512573], [0.014399190433323383, 0.010208037681877613, 0.013844252564013004, 0.0006443368620239198, 9.486025373917073e-05, 3.585176818887703e-05, 0.0002541632275097072, 0.013982491567730904, 0.21761368215084076], [0.09393034130334854, 0.04503176733851433, 0.040884219110012054, 0.04297155514359474, 0.009656489826738834, 0.005742409732192755, 0.006128746550530195, 0.027677081525325775, 0.16846899688243866], [0.04696759581565857, 0.008279483765363693, 0.012381640262901783, 0.0076857213862240314, 0.0036634134594351053, 0.0095828827470541, 0.0046584513038396835, 0.016844969242811203, 0.4153643548488617]], [[0.10397167503833771, 0.01670692302286625, 0.0042348396964371204, 0.002936998615041375, 0.0022281575947999954, 0.001219852943904698, 0.0021744510158896446, 0.02554144524037838, 0.30206283926963806], [0.11106002330780029, 0.05798957869410515, 0.009175832383334637, 0.006006509065628052, 0.0009313564514741302, 0.000524171395227313, 0.000814763130620122, 0.01001639012247324, 0.283229798078537], [0.21004676818847656, 0.0076301442459225655, 0.0025925468653440475, 0.0025854678824543953, 0.007142297923564911, 0.0010936055332422256, 0.003085079835727811, 0.007417768705636263, 0.22301018238067627], [0.16493965685367584, 0.016754286363720894, 0.010389899834990501, 0.005919300951063633, 0.004618823062628508, 0.0022923992946743965, 0.004112088121473789, 0.014372020028531551, 0.3123747706413269], [0.17038936913013458, 0.010884520597755909, 0.015259306877851486, 0.013368110172450542, 0.007837566547095776, 0.0039718723855912685, 0.010968479327857494, 0.010812520980834961, 0.20886962115764618], [0.13964858651161194, 0.006773388013243675, 0.0038053616881370544, 0.006036474369466305, 0.004589551594108343, 0.001276884926483035, 0.0057591600343585014, 0.01186785101890564, 0.29027774930000305], [0.2634395360946655, 0.01273544691503048, 0.005775334779173136, 0.013247941620647907, 0.0012775955256074667, 0.000984705751761794, 0.001921196817420423, 0.0161697156727314, 0.24089935421943665], [0.011516982689499855, 0.0026077942457050085, 0.003780677216127515, 0.0010428187670186162, 0.0006774596986360848, 0.0005879882955923676, 9.023277380038053e-05, 0.011555921286344528, 0.4670446217060089]], [[0.3412293493747711, 0.0425233319401741, 0.02530532144010067, 0.010399009101092815, 0.000824531598482281, 0.015127566643059254, 0.008493355475366116, 0.15153510868549347, 0.003197578014805913], [0.08824986964464188, 0.6997199654579163, 0.011842271313071251, 0.0011897149961441755, 2.6869691282627173e-05, 9.908813080983236e-05, 7.700332935201004e-05, 0.010119310580193996, 0.0006344643770717084], [0.3592156767845154, 0.003131461562588811, 0.00036553211975842714, 0.006802729796618223, 0.011866609565913677, 0.017082614824175835, 0.007123382296413183, 0.019259361550211906, 0.003832812188193202], [0.5955706238746643, 0.031002193689346313, 0.0059892116114497185, 0.0078062317334115505, 0.015972916036844254, 0.13028669357299805, 0.008188439533114433, 0.1265796273946762, 0.004255733918398619], [0.2370082139968872, 0.013091888278722763, 0.014713992364704609, 0.0027313160244375467, 0.00020957450033165514, 0.0007991665042936802, 0.000574834703002125, 0.1142205223441124, 0.003886783728376031], [0.09647241979837418, 0.007483694702386856, 0.009100493043661118, 0.0021675468888133764, 5.778981721960008e-05, 0.0003691861347761005, 0.00038284496986307204, 0.06353677809238434, 0.0017389238346368074], [0.26882848143577576, 0.023450184613466263, 0.005285943858325481, 0.12752436101436615, 0.0004531803715508431, 0.0017976476810872555, 0.0029235482215881348, 0.10919898003339767, 0.008442096412181854], [0.22886542975902557, 0.023172790184617043, 0.008197464980185032, 0.006507922429591417, 0.0031450276728719473, 0.007757019717246294, 0.005424468778073788, 0.07678276300430298, 0.22266785800457]], [[0.10300230979919434, 0.012551168911159039, 0.03135497868061066, 0.013058312237262726, 0.08720850199460983, 0.03815891966223717, 0.004374713636934757, 0.015692712739109993, 0.07346475124359131], [0.1521003097295761, 0.020120013505220413, 0.08223660290241241, 0.0221259742975235, 0.058031730353832245, 0.03446701169013977, 0.013106283731758595, 0.017250314354896545, 0.059794191271066666], [0.023298460990190506, 0.007727380841970444, 0.059849195182323456, 0.003751971060410142, 0.007221390958875418, 0.014949124306440353, 0.005415600258857012, 0.005057912785559893, 0.3309497535228729], [0.01758722774684429, 0.013618450611829758, 0.07672133296728134, 0.000871562457177788, 0.0018003752920776606, 0.007232997566461563, 0.004678796511143446, 0.003702498273923993, 0.39411067962646484], [0.050994254648685455, 0.039802730083465576, 0.12303764373064041, 0.014415951445698738, 0.014315569773316383, 0.03778175264596939, 0.019377561286091805, 0.009150020778179169, 0.254240483045578], [0.031442221254110336, 0.01501182559877634, 0.03548745810985565, 0.009461838752031326, 0.004510349128395319, 0.012757851742208004, 0.010247272439301014, 0.010063671506941319, 0.3640801012516022], [0.07557731866836548, 0.015311889350414276, 0.01394333690404892, 0.04659917578101158, 0.07440418004989624, 0.03132397308945656, 0.014012784697115421, 0.012508862651884556, 0.046278029680252075], [0.004537979140877724, 0.0010722988517954946, 0.006664913147687912, 0.0013428947422653437, 0.0012812219792976975, 0.002524411305785179, 0.0004473469452932477, 0.009245374239981174, 0.4765443205833435]], [[0.042590171098709106, 0.007069586776196957, 0.0012985594803467393, 0.014135523699223995, 0.00020970412879250944, 0.0025508131366223097, 0.0003640716022346169, 0.02199370414018631, 0.13977669179439545], [0.025622189044952393, 0.005079266615211964, 0.0159971471875906, 0.0022866185754537582, 0.0003106805379502475, 0.0007034053560346365, 0.0006128181703388691, 0.015516459941864014, 0.0847368910908699], [0.01034579984843731, 0.0010164995910599828, 0.0007042950601316988, 0.0005764112574979663, 0.0001418629544787109, 7.555496267741546e-05, 6.739431410096586e-05, 0.0010716611286625266, 0.011676725931465626], [0.00584240211173892, 0.0006241857772693038, 0.0002169349609175697, 0.0004340888699516654, 9.15642740437761e-05, 0.00011733853898476809, 8.395465556532145e-05, 0.0064913625828921795, 0.03131890669465065], [0.011719241738319397, 0.001982304034754634, 0.0029356570448726416, 0.00029034720500931144, 0.0014887249562889338, 8.823991083772853e-05, 0.0013051838614046574, 0.0023637183476239443, 0.023899512365460396], [0.014468244276940823, 0.002123360289260745, 0.0009089037775993347, 0.00027280973154120147, 0.0009915506234392524, 3.583553188946098e-05, 0.0006245332187972963, 0.003266494255512953, 0.03394186869263649], [0.02876167744398117, 0.004317948129028082, 0.0021643307991325855, 0.002739173825830221, 0.0013453061692416668, 0.013219424523413181, 0.0009473168174736202, 0.008477412164211273, 0.05804387480020523], [0.06170149892568588, 0.05879565700888634, 0.030704542994499207, 0.021936966106295586, 0.010049635544419289, 0.004163258709013462, 0.01647026464343071, 0.06377705186605453, 0.2525229752063751]], [[0.028774790465831757, 0.002642599167302251, 0.002106707077473402, 0.00568531034514308, 0.004500947892665863, 0.0288652665913105, 0.005638797301799059, 0.014731933362782001, 0.3937789797782898], [0.05040007829666138, 0.40499311685562134, 0.1488456279039383, 0.00640207901597023, 0.0005312006105668843, 0.0021755725611001253, 0.0006728880689479411, 0.005858015734702349, 0.0635240226984024], [0.008348342031240463, 0.004867127165198326, 0.0013254539808258414, 0.0005954488879069686, 0.0015938024735078216, 0.0030688317492604256, 0.008740752004086971, 0.008971484377980232, 0.4144304096698761], [0.01259857602417469, 0.011510941199958324, 0.006271845661103725, 0.0004519037320278585, 0.0005010212771594524, 0.0017907355213537812, 0.0021989252418279648, 0.01928710751235485, 0.4178101420402527], [0.026836425065994263, 0.01943366229534149, 0.03158280998468399, 0.006877897307276726, 0.0013161987299099565, 0.005196307320147753, 0.0027716970071196556, 0.027549246326088905, 0.22064585983753204], [0.023632125928997993, 0.007872000336647034, 0.017207829281687737, 0.0025761686265468597, 0.0006747061852365732, 0.0023692105896770954, 0.0013521189102903008, 0.02210311032831669, 0.3481515049934387], [0.03483754023909569, 0.05955659598112106, 0.03354164958000183, 0.0251525416970253, 0.004316721111536026, 0.005708860699087381, 0.002586419228464365, 0.02293725684285164, 0.03824807330965996], [0.00356517662294209, 0.0029283235780894756, 0.006426373030990362, 0.002057009842246771, 0.0034274396020919085, 0.001882188837043941, 0.001106921350583434, 0.006688086315989494, 0.47607871890068054]], [[0.01825212873518467, 0.011661571450531483, 0.0027983144391328096, 0.009320065379142761, 0.003965599928051233, 0.0022205798886716366, 0.0019291775533929467, 0.06871742010116577, 0.3039730489253998], [0.08748237788677216, 0.02557387948036194, 0.018112313002347946, 0.0049604433588683605, 0.0014782048529013991, 0.0022030407562851906, 0.0009602387435734272, 0.05315152183175087, 0.20510943233966827], [0.0498603954911232, 0.007433606311678886, 0.0016537772025913, 0.005322957877069712, 0.0039930944330990314, 0.0035380616318434477, 0.004288866184651852, 0.0305508840829134, 0.35446223616600037], [0.07243383675813675, 0.007740843575447798, 0.012108874507248402, 0.004148117266595364, 0.002742878394201398, 0.0028195148333907127, 0.0024749175645411015, 0.013945343904197216, 0.3822646141052246], [0.07854430377483368, 0.010273326188325882, 0.012068699114024639, 0.006702507380396128, 0.0009893893729895353, 0.004420892801135778, 0.0008018749067559838, 0.03200588747859001, 0.34090402722358704], [0.05737154930830002, 0.005662776064127684, 0.017658615484833717, 0.0023623763117939234, 0.0003382973372936249, 0.00366365653462708, 0.0006075557903386652, 0.01110900565981865, 0.40067917108535767], [0.08930555731058121, 0.008811046369373798, 0.003925340250134468, 0.0061110337264835835, 0.0007046632235869765, 0.0012062698369845748, 0.002200786955654621, 0.04369465634226799, 0.2070087343454361], [0.028904935345053673, 0.003862805664539337, 0.0069825011305511, 0.0027303777169436216, 0.0016403237823396921, 0.005138302221894264, 0.0012722150422632694, 0.009086940437555313, 0.4471859633922577]]], [[[0.0013022085186094046, 5.9417747252155095e-05, 9.618737749406137e-06, 3.1320553262048634e-06, 9.828867177930078e-07, 6.095452135923551e-06, 5.499676262843423e-06, 0.0038343945052474737, 0.5037134289741516], [0.0014909309102222323, 0.00021644899970851839, 9.499776206212118e-05, 4.059539423906244e-05, 6.020482032909058e-06, 5.000700548407622e-05, 4.731058652396314e-06, 0.00040831719525158405, 0.06021977216005325], [0.0002811781596392393, 0.0001679945271462202, 0.0010434634750708938, 1.0034946171799675e-05, 1.377331614094146e-06, 6.784912898183393e-07, 2.9217943620096776e-07, 8.49154093884863e-05, 0.4209435284137726], [3.402019865461625e-05, 4.9337726522935554e-05, 8.313170110341161e-05, 2.2319716663332656e-05, 5.39800566912163e-07, 4.11734895067184e-08, 3.3303881874502395e-09, 1.2204695849504787e-06, 0.06548122316598892], [0.00035689142532646656, 0.00030578699079342186, 0.004799241665750742, 0.0001143141562351957, 2.7493884772411548e-05, 1.7332099560007919e-06, 5.367700239844453e-08, 2.3701875306869624e-06, 0.42885276675224304], [0.00035609223414212465, 0.0005162984598428011, 0.0014577305410057306, 0.00018065032782033086, 0.0002686360676307231, 1.0376428690506145e-05, 2.878275324746937e-07, 2.868041701731272e-05, 0.40768325328826904], [0.0006982879713177681, 4.500218346947804e-05, 0.001986839808523655, 0.00023020044318400323, 6.763750570826232e-05, 0.00026030655135400593, 0.00014494087372440845, 4.463098957785405e-05, 0.09784181416034698], [0.02094348333775997, 0.016241909936070442, 0.011949323117733002, 0.009936582297086716, 0.008415109477937222, 0.0055074081756174564, 0.002825394505634904, 0.017137518152594566, 0.4179816246032715]], [[0.01010880060493946, 0.00956813246011734, 0.0025345291942358017, 0.010100681334733963, 0.004937953315675259, 0.0056816148571670055, 0.0026845817919820547, 0.018983561545610428, 0.39188602566719055], [0.011299828998744488, 0.06264476478099823, 0.00280944025143981, 0.03150974586606026, 0.019483143463730812, 0.02926880307495594, 0.014397852122783661, 0.038409505039453506, 0.3181813359260559], [0.01150188036262989, 0.0044487714767456055, 0.003086444456130266, 0.005620704032480717, 0.005225773900747299, 0.005101312417536974, 0.0033509477507323027, 0.012873990461230278, 0.05570987984538078], [0.023843204602599144, 0.007940849289298058, 0.006602409295737743, 0.018516946583986282, 0.005194849334657192, 0.018354322761297226, 0.011972201056778431, 0.020020194351673126, 0.12768268585205078], [0.017453981563448906, 0.006566982716321945, 0.006437224335968494, 0.010258943773806095, 0.007524041924625635, 0.007805170025676489, 0.003535826923325658, 0.022132975980639458, 0.0758049488067627], [0.009776161052286625, 0.005764814559370279, 0.002830076962709427, 0.008658399805426598, 0.004898515529930592, 0.008362919092178345, 0.005278115626424551, 0.016466772183775902, 0.0846642255783081], [0.0147054148837924, 0.020168650895357132, 0.007537460420280695, 0.004244955722242594, 0.006553541868925095, 0.0066261375322937965, 0.0021409504115581512, 0.028843004256486893, 0.05934390798211098], [0.006397331599146128, 0.021570011973381042, 0.00579069321975112, 0.008682731539011002, 0.004288266878575087, 0.0036858643870800734, 0.002901490079239011, 0.012283897958695889, 0.4360095262527466]], [[0.016474297270178795, 0.0007862914353609085, 0.005609103478491306, 0.0013036939781159163, 0.013178386725485325, 0.031232384964823723, 0.003996184095740318, 0.0027088404167443514, 0.19672152400016785], [0.011102980002760887, 0.002027091570198536, 0.007352579850703478, 0.003563682083040476, 0.0034767219331115484, 0.009599216282367706, 0.006617088336497545, 0.002679733093827963, 0.05418064817786217], [0.026370501145720482, 0.00532302912324667, 0.009548664093017578, 0.016433287411928177, 0.010021233931183815, 0.001343895448371768, 0.005150559823960066, 0.018646899610757828, 0.11135309934616089], [0.00976437795907259, 0.0032595740631222725, 0.0021889826748520136, 0.003149980679154396, 0.0028265949804335833, 0.0058457511477172375, 0.0012064318871125579, 0.011398770846426487, 0.059283848851919174], [0.008760376833379269, 0.002713883528485894, 0.0039603495970368385, 0.0016811072127893567, 0.0034731728956103325, 0.001324359094724059, 0.00037808556226082146, 0.0028924550861120224, 0.1261860430240631], [0.003855594666674733, 0.0010279123671352863, 0.0015991622349247336, 0.001383748254738748, 0.004134461749345064, 0.001294485991820693, 0.0006854782695882022, 0.0012635185848921537, 0.06345689296722412], [0.004982471000403166, 0.0006992732523940504, 0.0017675221897661686, 0.0004335168923716992, 0.009008869528770447, 0.0020184493623673916, 0.0007313895621336997, 0.0014360100030899048, 0.07364760339260101], [0.008594616316258907, 0.0056075723841786385, 0.009349030442535877, 0.004368793219327927, 0.006372013129293919, 0.004783434793353081, 0.0037150168791413307, 0.0048795295879244804, 0.45506751537323]], [[0.05884114280343056, 0.009341621771454811, 0.07733424752950668, 0.04282677546143532, 0.004803631454706192, 0.009805548936128616, 0.004415364004671574, 0.042979758232831955, 0.3523355722427368], [0.1566653698682785, 0.04843460023403168, 0.07605812698602676, 0.09281890094280243, 0.02433890849351883, 0.037761494517326355, 0.009676758199930191, 0.11950207501649857, 0.1123947724699974], [0.09321621060371399, 0.022234490141272545, 0.051143743097782135, 0.057122860103845596, 0.009956824593245983, 0.05840011686086655, 0.006564661394804716, 0.09109149128198624, 0.26993706822395325], [0.042803239077329636, 0.014748111367225647, 0.051076192408800125, 0.020201250910758972, 0.004679969511926174, 0.023354481905698776, 0.004600305110216141, 0.0502362921833992, 0.3526424765586853], [0.018149415031075478, 0.0329611599445343, 0.06975128501653671, 0.013419806957244873, 0.0017656076233834028, 0.037007421255111694, 0.001938949222676456, 0.08108069747686386, 0.3140479624271393], [0.01956355944275856, 0.027016250416636467, 0.13853345811367035, 0.008343035355210304, 0.0012429470662027597, 0.03948315605521202, 0.002260174136608839, 0.0677444115281105, 0.2722562253475189], [0.06428898125886917, 0.02880546823143959, 0.09898865967988968, 0.1424073874950409, 0.05490938201546669, 0.0940185934305191, 0.018556715920567513, 0.12920494377613068, 0.12412295490503311], [0.036315545439720154, 0.006136774085462093, 0.016873344779014587, 0.008397938683629036, 0.0034421177115291357, 0.00616659689694643, 0.0016272537177428603, 0.01722121238708496, 0.41913989186286926]], [[0.010016730055212975, 0.0008128750487230718, 0.00013660082186106592, 0.001132918638177216, 0.0006749625317752361, 0.0002507451572455466, 0.00022765566245652735, 0.12235474586486816, 0.36872923374176025], [0.016589360311627388, 0.0012915093684569001, 0.0010521794902160764, 0.000551754143089056, 0.00017932747141458094, 0.0004100268997717649, 0.0002537450345698744, 0.060603126883506775, 0.23340116441249847], [0.012261469848453999, 0.001130763441324234, 0.0007099805516190827, 0.00047054074821062386, 0.0001816151780076325, 4.707575135398656e-05, 2.783210038614925e-05, 0.004106875974684954, 0.3882300555706024], [0.006444597151130438, 9.139658504864201e-05, 0.0005467387964017689, 0.0005172885139472783, 0.00024158574524335563, 8.468495070701465e-05, 2.1504802134586498e-05, 0.0009999327594414353, 0.18081440031528473], [0.010958514176309109, 0.0015925709158182144, 0.0017796818865463138, 0.0014066712465137243, 0.00047277554403990507, 0.0001338341971859336, 7.649955659871921e-05, 0.0011293202405795455, 0.38668951392173767], [0.02273857221007347, 0.000298291037324816, 0.0024406120646744967, 0.0008683144696988165, 0.0009576916927471757, 0.00039632045081816614, 8.98492507985793e-05, 0.001589466817677021, 0.25167495012283325], [0.016290074214339256, 0.002957190154120326, 0.002680645789951086, 0.0015214915620163083, 0.0009634462767280638, 0.0008814203320071101, 0.00016314278764184564, 0.0032475993502885103, 0.26095134019851685], [0.013944759033620358, 0.026672909036278725, 0.015988383442163467, 0.012970458716154099, 0.005408325232565403, 0.006646183785051107, 0.0036593861877918243, 0.07993745803833008, 0.35463467240333557]], [[0.12645843625068665, 0.0052221729420125484, 0.0017872448079288006, 0.002644107211381197, 0.0003394242958165705, 0.0011288061505183578, 0.0002770152350421995, 0.03130936622619629, 0.39704394340515137], [0.3588545322418213, 0.031942736357450485, 0.004985657054930925, 0.00601204065605998, 0.0005203136242926121, 0.001135090715251863, 0.0003818913537543267, 0.014780141413211823, 0.2593924403190613], [0.05141183361411095, 0.005684043746441603, 0.00038814410800114274, 0.0077974433079361916, 0.0033770787995308638, 0.0014042012626305223, 0.005024472251534462, 0.014184202067553997, 0.3518980145454407], [0.06809087097644806, 0.0062261177226901054, 0.0013949081767350435, 0.008195164613425732, 0.003362770890817046, 0.003521934151649475, 0.012097174301743507, 0.01836719922721386, 0.36344847083091736], [0.10310215502977371, 0.0021119043231010437, 0.0040933191776275635, 0.002918021287769079, 0.0005248342058621347, 0.004524966701865196, 0.00134479277767241, 0.03162737190723419, 0.3795033097267151], [0.07745686173439026, 0.0014652019599452615, 0.0025874872226268053, 0.001946733333170414, 0.0003650042926892638, 0.0019092512084171176, 0.0019662012346088886, 0.037861742079257965, 0.40340253710746765], [0.12622614204883575, 0.006608657538890839, 0.0010806312784552574, 0.011813311837613583, 0.0006925358902662992, 0.0016104583628475666, 0.0064596678130328655, 0.04805987700819969, 0.2834981381893158], [0.023507000878453255, 0.005494833458214998, 0.008005945943295956, 0.002449345076456666, 0.0011147186160087585, 0.0022155079059302807, 0.001679563894867897, 0.013942761346697807, 0.43389892578125]], [[0.028502266854047775, 0.00529392808675766, 0.004700710065662861, 0.011198698543012142, 0.012513823807239532, 0.004401367623358965, 0.0038434339221566916, 0.004696730989962816, 0.3300166726112366], [0.013376740738749504, 0.014142080210149288, 0.5393674373626709, 0.003383554518222809, 0.0016243438003584743, 0.001295609399676323, 0.0007454454316757619, 0.004174111410975456, 0.14934442937374115], [0.005271125119179487, 0.0014437813078984618, 0.0037885287310928106, 0.00029790872940793633, 0.00033237607567571104, 0.0008875897619873285, 0.00027595151914283633, 0.0013433991698548198, 0.3374556005001068], [0.004411994479596615, 0.0007231537019833922, 0.005045815836638212, 0.002173850778490305, 0.0011977687245234847, 0.0027966168709099293, 0.002041046740487218, 0.0029724594205617905, 0.3489231467247009], [0.0036374840419739485, 0.0020712895784527063, 0.0020758684258908033, 0.000495396030601114, 0.0013039959594607353, 0.0002867391740437597, 7.446991367032751e-05, 0.0009140112670138478, 0.3891040086746216], [0.004389666952192783, 0.002140594646334648, 0.004794787149876356, 0.000491518818307668, 0.0021103057079017162, 0.00046957869199104607, 9.536885045235977e-05, 0.0011313948780298233, 0.2867840826511383], [0.009459279477596283, 0.009328803047537804, 0.0075727771036326885, 0.0006119813187979162, 0.0044566732831299305, 0.0007778770523145795, 0.0005679743480868638, 0.0017246439820155501, 0.12649807333946228], [0.011580069549381733, 0.006209952756762505, 0.0051584127359092236, 0.0027650215197354555, 0.003446427173912525, 0.002645504428073764, 0.001426133094355464, 0.003419037675485015, 0.4641340672969818]], [[0.0016385697526857257, 0.001389342942275107, 0.0001360930473310873, 0.0016519591445103288, 0.0012623327784240246, 0.021749958395957947, 0.006197582930326462, 0.003028265666216612, 0.44024842977523804], [0.00313055538572371, 0.0014671973185613751, 0.00024487977498210967, 0.0007982774404808879, 0.001500700949691236, 0.002637650351971388, 0.0010448562679812312, 0.010068203322589397, 0.35006165504455566], [0.0025075431913137436, 0.00043374294182285666, 0.00016046622477006167, 0.0002566356852184981, 0.0001102826718124561, 0.0001722670713206753, 2.693122223718092e-05, 0.008127672597765923, 0.45517560839653015], [0.003943914547562599, 0.0013398902956396341, 0.00024014421796891838, 0.0005823546671308577, 0.0004198958049528301, 0.0008421209640800953, 0.00043195197940804064, 0.005074279848486185, 0.4111682176589966], [0.0018290388397872448, 0.000856737548019737, 0.0008140807040035725, 0.0003104869101662189, 0.00011284205538686365, 0.000292467069812119, 8.136712131090462e-05, 0.0038466425612568855, 0.44877469539642334], [0.006906155962496996, 0.0024820035323500633, 0.001469908864237368, 0.0006967110675759614, 0.00025552441366016865, 0.00014752382412552834, 7.985904085217044e-05, 0.005151177756488323, 0.3610455393791199], [0.004034522455185652, 0.00046107714297249913, 0.0007041665958240628, 0.000661600730381906, 0.0006499440059997141, 0.0005654105334542692, 0.00021424367150757462, 0.004850264173001051, 0.25375962257385254], [0.022871652618050575, 0.007005993742495775, 0.007196023594588041, 0.009020509198307991, 0.005459469277411699, 0.011229055002331734, 0.0036002236884087324, 0.025591367855668068, 0.4187258183956146]], [[0.006474870257079601, 0.0006117824814282358, 0.009809962473809719, 0.0015060602454468608, 0.002500672359019518, 0.0017212096136063337, 0.0006272914470173419, 0.00044546491699293256, 0.020383097231388092], [0.01393016055226326, 0.0013729787897318602, 0.009511454030871391, 0.001822108868509531, 0.0023439188953489065, 0.003921179566532373, 0.0011712448904290795, 0.001270924462005496, 0.0745932012796402], [0.01863090693950653, 0.004460332449525595, 0.014619794674217701, 0.0020859555806964636, 0.0007908749976195395, 0.0025836671702563763, 0.001338754897005856, 0.002101004356518388, 0.15120112895965576], [0.013786058872938156, 0.006823251023888588, 0.017722666263580322, 0.0032359580509364605, 0.0011598821729421616, 0.0031366825569421053, 0.0009321234538219869, 0.0023410385474562645, 0.1785549819469452], [0.010521615855395794, 0.0044441260397434235, 0.009941776283085346, 0.0028532410506159067, 0.003599172458052635, 0.008467171341180801, 0.0005294167785905302, 0.0025389876682311296, 0.33173704147338867], [0.005421232897788286, 0.0011851878371089697, 0.006782172713428736, 0.0005525992601178586, 0.0009180335327982903, 0.0028074176516383886, 0.00029931095195934176, 0.0015592406271025538, 0.3599278926849365], [0.018650809302926064, 0.0021492750383913517, 0.01273356843739748, 0.0012515883427113295, 0.0017890360904857516, 0.006261963862925768, 0.0009159680921584368, 0.001294730114750564, 0.07636277377605438], [0.00585370184853673, 0.0032456815242767334, 0.0074389330111444, 0.0025247905869036913, 0.0015582502819597721, 0.005153819918632507, 0.0012307422002777457, 0.003569426015019417, 0.47526243329048157]], [[0.013963457196950912, 0.0004852685087826103, 0.00031514567672275007, 0.0010715775424614549, 0.000465469405753538, 0.00011994507076451555, 9.289264562539756e-05, 0.0066409423016011715, 0.10461071133613586], [0.009923316538333893, 0.001042229006998241, 0.0028097371105104685, 0.003893047571182251, 0.0002943800063803792, 0.00021249905694276094, 0.00012919773871544749, 0.00298856059089303, 0.10818257927894592], [0.017295323312282562, 0.00030550482915714383, 0.00011151922080898657, 0.0005560052231885493, 0.0003936477587558329, 0.0002033496566582471, 8.925401198212057e-05, 0.002276224782690406, 0.2864246070384979], [0.02513893134891987, 0.00035986705916002393, 0.0003152923018205911, 0.0015269137220457196, 0.0006833409424871206, 0.0007534757605753839, 0.0004035881720483303, 0.003052610205486417, 0.3965087831020355], [0.018043674528598785, 0.0005647705402225256, 0.00013937160838395357, 0.0004187797021586448, 0.00029265141347423196, 0.00011341588833602145, 6.516977009596303e-05, 0.003693226957693696, 0.40424126386642456], [0.008435001596808434, 0.0004022587963845581, 0.0004470115527510643, 0.0009707273566164076, 0.000670029257889837, 0.00029795794398523867, 0.0002571486111264676, 0.002384831430390477, 0.42509859800338745], [0.006235255394130945, 0.0008490421460010111, 0.0007377707515843213, 0.0014265619684010744, 0.0005125260213389993, 0.00031963468063622713, 0.000337122764904052, 0.003331746906042099, 0.31864526867866516], [0.01278546079993248, 0.006674907170236111, 0.004197892267256975, 0.014472641050815582, 0.002629952970892191, 0.0017473259940743446, 0.0012211804278194904, 0.010640420950949192, 0.4423478841781616]], [[0.007183087058365345, 0.006589315831661224, 0.00023044638510327786, 0.005280859302729368, 0.001204530242830515, 0.0007620027172379196, 0.0018218496115878224, 0.02877768501639366, 0.29163217544555664], [0.033366575837135315, 0.023267026990652084, 0.012330911122262478, 0.008179254829883575, 0.001280084135942161, 0.0062731290236115456, 0.005200493149459362, 0.027896197512745857, 0.14378948509693146], [0.010625152848660946, 0.005256202537566423, 0.0009470693184994161, 0.004724381025880575, 0.0012652622535824776, 0.0022165272384881973, 0.002361852675676346, 0.023172251880168915, 0.32786795496940613], [0.008823768235743046, 0.007817736826837063, 0.002042504260316491, 0.007765134330838919, 0.0010390295647084713, 0.002331737894564867, 0.0037329283077269793, 0.03326355293393135, 0.3777431845664978], [0.027654128149151802, 0.00817696750164032, 0.004897586070001125, 0.005371118430048227, 0.0011204412439838052, 0.0036508420016616583, 0.005585335195064545, 0.019509349018335342, 0.22746598720550537], [0.0202791690826416, 0.005424231290817261, 0.0020729340612888336, 0.004089755471795797, 0.0003064309130422771, 0.0012946876231580973, 0.0028918322641402483, 0.022143656387925148, 0.29434025287628174], [0.028809547424316406, 0.011441226117312908, 0.002548227086663246, 0.005870056804269552, 0.0010272151557728648, 0.0027636445593088865, 0.0021110731177031994, 0.03761543333530426, 0.19905677437782288], [0.008588515222072601, 0.00250594737008214, 0.004519786685705185, 0.002356642158702016, 0.0009649667190387845, 0.001457498176023364, 0.0006640133797191083, 0.006693936884403229, 0.47765469551086426]], [[0.0020170698408037424, 0.0008203468169085681, 0.0009687605779618025, 0.00016548443818464875, 1.966808304132428e-05, 2.170368497900199e-05, 1.7034979464369826e-05, 0.0006240619695745409, 0.2446744292974472], [0.003918275237083435, 0.00034542419598437846, 0.00067752948962152, 0.0005303944344632328, 0.00014931897749193013, 6.736755312886089e-05, 5.1306968089193106e-05, 0.0017923499690368772, 0.3823898732662201], [0.0018869866617023945, 0.00017940874386113137, 0.0012492379173636436, 0.0003119969042018056, 9.89115287666209e-05, 3.0359014999703504e-05, 1.6386160496040247e-05, 0.00038734349072910845, 0.17270058393478394], [0.0027314627077430487, 0.00019612615869846195, 0.0008190465741790831, 0.0019603949040174484, 0.0001202166240545921, 0.00015853694640100002, 4.0470415115123615e-05, 0.001131771132349968, 0.2684919238090515], [0.004733952693641186, 0.00029556226218119264, 0.0008470766479149461, 0.0033797835931181908, 0.0016139313811436296, 0.00024948103236965835, 0.00015229708515107632, 0.002880000276491046, 0.24154411256313324], [0.008436399511992931, 0.0003944433992728591, 0.0006710233283229172, 0.0019352240487933159, 0.0013254010118544102, 0.00017852858582045883, 0.0001184404463856481, 0.004959569778293371, 0.32671627402305603], [0.0015784422867000103, 0.0002764534729067236, 6.207280966918916e-05, 0.00012852295185439289, 0.00013409389066509902, 6.685530388494954e-05, 1.4973677934904117e-05, 0.00055623275693506, 0.47241654992103577], [0.02283552475273609, 0.02228902280330658, 0.016071077436208725, 0.008608848787844181, 0.003482910804450512, 0.003652083920314908, 0.002056853612884879, 0.024583343416452408, 0.4017147123813629]]], [[[5.5900110929041347e-11, 5.489450671802842e-09, 4.5048097196964676e-11, 7.679462263581599e-14, 5.003851794585989e-15, 3.4032084333772417e-13, 1.7472556672446134e-14, 6.379510201354188e-12, 9.338275958725717e-06], [3.0310332022054354e-07, 4.0704941284275264e-07, 2.063020758669154e-07, 1.2044509389852465e-08, 2.7207588959576867e-10, 2.9160379666492986e-10, 5.283444919090309e-14, 1.134775118316611e-08, 0.00834314152598381], [1.8136387574044233e-12, 4.380151623351036e-12, 2.2198569371578714e-10, 9.926656935679845e-15, 1.4419840104959447e-13, 9.505274985079776e-15, 1.7461437641582615e-19, 8.140769135973301e-18, 2.9086921315979453e-08], [1.7336019286773308e-09, 2.91932877871659e-09, 9.984889857150847e-07, 4.1409612094867043e-07, 3.302599946991558e-12, 4.7198887159760616e-11, 5.369033871465388e-14, 1.08984356261832e-10, 0.00017371562717016786], [1.9958056540758662e-08, 3.4345565280702317e-10, 4.64573872704932e-07, 3.787027225143902e-08, 2.4788260333252765e-09, 1.061526333501206e-08, 4.363850947264325e-11, 9.337582790314158e-11, 0.0031896645668894053], [8.44365430907601e-08, 2.1463577581926074e-09, 8.311811683370252e-08, 4.572948739678395e-07, 6.729678481143253e-10, 6.209824321423696e-10, 3.065240727906371e-09, 3.0237828241297393e-07, 0.005005085840821266], [3.063812759052098e-09, 1.3592878644885786e-07, 1.2898936141425565e-08, 2.1179507037061285e-09, 4.562449973377625e-08, 2.579345803610522e-08, 8.326400007842294e-13, 4.925895495944133e-07, 0.4880203604698181], [0.0018656085012480617, 0.0025325578171759844, 0.002368832705542445, 0.0009074422414414585, 0.0001072189916158095, 0.0004995720810256898, 3.179698614985682e-05, 0.0018877851543948054, 0.4999793767929077]], [[0.009342015720903873, 0.0005970665370114148, 0.0016270920168608427, 0.0008652874385006726, 0.00021021503198426217, 0.0008255654247477651, 5.688759847544134e-05, 0.0006628589471802115, 0.2532263994216919], [0.00470384256914258, 0.00025547738187015057, 0.001014219131320715, 0.0006298162043094635, 0.00017429704894311726, 0.00048186612548306584, 3.7683381378883496e-05, 0.0008605144685134292, 0.4193834662437439], [0.005506251938641071, 0.00016714820230845362, 0.0006694486946798861, 5.820449223392643e-05, 6.0141283029224724e-05, 0.0006462655728682876, 5.355328903533518e-05, 0.00023431392037309706, 0.43320852518081665], [0.0028302576392889023, 0.00018466179608367383, 0.00043115936568938196, 6.672646850347519e-05, 6.347324961097911e-05, 0.0007406906806863844, 0.00013406721700448543, 0.0007323641330003738, 0.4349660575389862], [0.0034591418225318193, 0.0001908911654027179, 0.0007750068325549364, 0.00028781365836039186, 6.777868838980794e-05, 0.0008258150774054229, 9.748530283104628e-05, 0.0006033903337083757, 0.4620514512062073], [0.00377830071374774, 0.00018883163284044713, 0.00120546855032444, 0.0001869543775683269, 4.318389983382076e-05, 0.0004842808411922306, 6.236963963601738e-05, 0.0004986025160178542, 0.47327324748039246], [0.005138145759701729, 0.0006547124939970672, 0.00031399898580275476, 0.001303725061006844, 0.0004753138346131891, 0.001763355452567339, 0.00027513381792232394, 0.0016112664015963674, 0.4652751088142395], [0.013840503990650177, 0.006591174751520157, 0.013618766330182552, 0.006268083117902279, 0.002270481549203396, 0.004129382781684399, 0.0010570719605311751, 0.008326280862092972, 0.45110708475112915]], [[0.00031312531791627407, 0.0001334080589003861, 4.8179990699281916e-05, 2.344835775147658e-05, 1.4353172446135432e-05, 8.410756709054112e-05, 1.7194215615745634e-05, 0.00043542252387851477, 0.48370641469955444], [0.0025753150694072247, 0.0007899104384705424, 0.0023585858289152384, 0.0030938785057514906, 5.673373743775301e-05, 0.00017418582865502685, 1.5397719835164025e-05, 0.0018498236313462257, 0.3883779048919678], [0.0004876543825957924, 0.0002595835248939693, 0.0008621607557870448, 0.00016694313671905547, 4.679569246945903e-05, 5.4062729759607464e-05, 2.260996780023561e-06, 0.00020927352306898683, 0.38169941306114197], [0.0007472332799807191, 0.000532722391653806, 0.00033791776513680816, 0.0002527469478081912, 1.695405262580607e-05, 3.529287641867995e-05, 1.6808779719212907e-06, 0.00019044746295548975, 0.48241952061653137], [0.00044030402204953134, 0.0002678841119632125, 0.0002080110862152651, 0.0004459947522263974, 1.5997904483811e-05, 0.00011288871610304341, 1.1075761904066894e-05, 0.0001167506561614573, 0.2984003722667694], [0.001518476172350347, 0.0006707650027237833, 0.0003037183778360486, 0.0008619431755505502, 0.00010589713929221034, 0.0001338131696684286, 1.626178163860459e-05, 7.222404383355752e-05, 0.43262436985969543], [0.0007229795446619391, 0.0002856792707461864, 0.00018265539256390184, 0.0010278918780386448, 0.0002493975916877389, 0.00036922309664078057, 1.304705256188754e-05, 0.00017484095587860793, 0.4723462164402008], [0.016689607873558998, 0.013602039776742458, 0.011726605705916882, 0.009826768189668655, 0.004278423264622688, 0.007250617258250713, 0.002754163695499301, 0.014515035785734653, 0.4299820363521576]], [[0.002307293238118291, 0.0005252473638392985, 8.809447899693623e-05, 0.0001066939948941581, 5.142863665241748e-05, 0.00013020240294281393, 2.280935223097913e-05, 0.0030361642129719257, 0.4866974949836731], [0.003925621509552002, 0.0012905444018542767, 0.00038357198354788125, 0.00019414257258176804, 6.96040442562662e-05, 7.445819937856868e-05, 1.7682017642073333e-05, 0.002358929254114628, 0.47390303015708923], [0.008202116936445236, 0.0015130232786759734, 0.0008207476348616183, 0.00011114784865640104, 3.075272616115399e-05, 5.873592454008758e-05, 3.500822640489787e-05, 0.0019902423955500126, 0.4695906341075897], [0.0007976963534019887, 0.0008520035771653056, 0.00030975311528891325, 0.00020254332048352808, 1.3558767932408955e-05, 7.497619662899524e-05, 2.2740589429304237e-06, 0.00027519604191184044, 0.4260416328907013], [0.0019524323288351297, 0.0002637382713146508, 0.0003940958995372057, 0.0001262571895495057, 2.7685424356604926e-05, 7.109082798706368e-05, 1.3022981875110418e-05, 0.00043486119830049574, 0.46897876262664795], [0.002520602662116289, 0.0002614275144878775, 0.0005641995812766254, 0.00016588994185440242, 0.00012261020310688764, 0.00019193170010112226, 3.556019510142505e-05, 0.0006151711568236351, 0.37359359860420227], [0.0023108343593776226, 0.0009366289596073329, 0.0003248245920985937, 0.000675665563903749, 0.00039208782254718244, 0.000510399870108813, 5.507854075403884e-05, 0.0022336547262966633, 0.47829505801200867], [0.017968175932765007, 0.01134131196886301, 0.013261078856885433, 0.006517610512673855, 0.0031680434476584196, 0.005264427978545427, 0.0013994675828143954, 0.019656673073768616, 0.4352993667125702]], [[0.001373848645016551, 0.0002727459941525012, 0.0002512687351554632, 0.0011196366976946592, 0.0005515392404049635, 0.0022668209858238697, 0.0001824704377213493, 0.004791573155671358, 0.47241953015327454], [0.0019508089171722531, 0.0007906017708592117, 0.00024089193902909756, 0.0009003594750538468, 0.00032274119439534843, 0.0012441696599125862, 9.48059605434537e-05, 0.005818368401378393, 0.4264468848705292], [0.0014399546198546886, 0.0002332631847821176, 0.00045224191853776574, 4.9699898227117956e-05, 4.512643499765545e-05, 0.00029908542637713253, 1.8228014596388675e-05, 0.0016688129398971796, 0.4541323482990265], [0.0014782125363126397, 0.0002664446656126529, 0.0013442249037325382, 4.679729318013415e-05, 1.4051792277314235e-05, 0.00012693411554209888, 2.119349574059015e-06, 0.0004978053621016443, 0.4407687187194824], [0.0006987267988733947, 0.00017011218005791306, 0.000965818646363914, 0.00015281251398846507, 0.00017269969976041466, 0.0001944021787494421, 2.558222377047059e-06, 0.0001631873456062749, 0.4350961744785309], [0.001102504669688642, 0.00012474732648115605, 0.0011422350071370602, 0.00010096780169988051, 0.0003126534866169095, 0.0003701750247273594, 8.78143691807054e-06, 0.00029479534714482725, 0.3615906536579132], [0.0011829630238935351, 0.00034895879798568785, 0.007119147107005119, 0.0005344920791685581, 0.0006515107816085219, 0.0011389878345653415, 5.693728235200979e-05, 0.0009211533470079303, 0.39618223905563354], [0.01229869294911623, 0.01221025362610817, 0.009197334758937359, 0.0065560005605220795, 0.005198092665523291, 0.01150069572031498, 0.0023622915614396334, 0.011489861644804478, 0.4307621121406555]], [[0.0039664702489972115, 0.0012100026942789555, 0.0013490068959072232, 0.0006717348005622625, 0.0013324781320989132, 0.0015365842264145613, 0.0005181505111977458, 0.0015928630018606782, 0.1233307421207428], [0.0014559559058398008, 0.0006339389947243035, 0.0026479223743081093, 0.00024594212300144136, 0.0001765353954397142, 0.0012350594624876976, 0.00013495075108949095, 0.00048230780521407723, 0.03289053589105606], [0.0013450953410938382, 0.0007356879650615156, 0.0012934557162225246, 6.655571633018553e-05, 1.4959769941924606e-05, 0.00044271780643612146, 2.703746395127382e-05, 0.000240898531046696, 0.26482874155044556], [0.002606040332466364, 0.0008344699162989855, 0.001209732610732317, 0.00025253143394365907, 0.00014520798868034035, 0.003140548476949334, 0.0001529784349258989, 0.0006057526916265488, 0.23604238033294678], [0.007668177597224712, 0.0030669323168694973, 0.0029126242734491825, 0.00011586756590986624, 0.0005006211576983333, 0.0002777589252218604, 6.353022035909817e-05, 0.001750412629917264, 0.3026740252971649], [0.0033411842305213213, 0.001311374711804092, 0.004674109630286694, 7.558760262327269e-05, 0.00026961808907799423, 0.0003397368418518454, 4.8722569772507995e-05, 0.0004819100140593946, 0.29047515988349915], [0.0054697091691195965, 0.0031442921608686447, 0.004017741419374943, 0.0006543616182170808, 0.0008626212948001921, 0.0014927604934200644, 0.0003636724140960723, 0.003298906609416008, 0.21456480026245117], [0.0036279424093663692, 0.0062494720332324505, 0.010767522267997265, 0.004385904408991337, 0.00277776294387877, 0.005273555871099234, 0.001287155319005251, 0.0041479985229671, 0.4634871184825897]], [[0.14883196353912354, 0.0561506524682045, 0.018512427806854248, 0.0523001067340374, 0.022837985306978226, 0.06639589369297028, 0.06069033592939377, 0.03026256337761879, 0.03474833071231842], [0.07569590955972672, 0.06826606392860413, 0.14791373908519745, 0.006353020668029785, 0.001287593855522573, 0.025356687605381012, 0.006612796802073717, 0.016611628234386444, 0.09665815532207489], [0.08131925016641617, 0.04038386791944504, 0.2807130515575409, 0.022350987419486046, 0.005161680281162262, 0.03141096979379654, 0.01706489361822605, 0.027880989015102386, 0.0755089595913887], [0.07594527304172516, 0.05045931413769722, 0.17923316359519958, 0.019263068214058876, 0.007309482432901859, 0.08978694677352905, 0.03064342401921749, 0.040266070514917374, 0.06838121265172958], [0.016269274055957794, 0.07428978383541107, 0.06399387121200562, 0.02427583374083042, 0.00984142441302538, 0.04934109374880791, 0.01772794872522354, 0.08082874119281769, 0.17281591892242432], [0.015886226668953896, 0.04134271293878555, 0.058663565665483475, 0.027810800820589066, 0.005924344528466463, 0.03066580556333065, 0.01090441644191742, 0.05550302937626839, 0.14484284818172455], [0.10890478640794754, 0.06156468018889427, 0.0492355041205883, 0.05090511962771416, 0.031639374792575836, 0.042668417096138, 0.03171618655323982, 0.03961167111992836, 0.10332640260457993], [0.05445354804396629, 0.04526779055595398, 0.09894164651632309, 0.03292705863714218, 0.019971294328570366, 0.03926083445549011, 0.01988603174686432, 0.043445706367492676, 0.20997031033039093]], [[0.015712054446339607, 0.003016943810507655, 0.002891476498916745, 0.016477731987833977, 0.003098049433901906, 0.0032609866466373205, 0.0005190958618186414, 0.009564626030623913, 0.39708998799324036], [0.011905212886631489, 0.011302993632853031, 0.008778983727097511, 0.011205737479031086, 0.003432678757235408, 0.005752991884946823, 0.0009213303565047681, 0.03804676979780197, 0.2708134949207306], [0.00725163659080863, 0.0015573929995298386, 0.0022282341960817575, 0.002828036667779088, 0.0013643758138641715, 0.00209349999204278, 0.00027652716380544007, 0.00869971513748169, 0.3416977822780609], [0.014523872174322605, 0.0013822511537000537, 0.006334054749459028, 0.0019307088805362582, 0.0005568930064328015, 0.002475097542628646, 0.00025742192519828677, 0.01586259715259075, 0.21639077365398407], [0.007418851833790541, 0.0014681847533211112, 0.00305807963013649, 0.002265361836180091, 0.000882843101862818, 0.001318708760663867, 0.0001229055633302778, 0.006177906412631273, 0.14417621493339539], [0.008744224905967712, 0.0017883465625345707, 0.00599333643913269, 0.0017488505691289902, 0.0006991210393607616, 0.0016012750566005707, 9.292181493947282e-05, 0.004622788168489933, 0.11953023821115494], [0.012803398072719574, 0.003155008191242814, 0.00859522819519043, 0.002518855966627598, 0.0006019544089213014, 0.0018383092246949673, 0.00011044396524084732, 0.004515702370554209, 0.13633836805820465], [0.008475459180772305, 0.013212391175329685, 0.0054257274605333805, 0.011654380708932877, 0.006628814153373241, 0.008029801771044731, 0.001531823887489736, 0.018491938710212708, 0.4390735924243927]], [[5.707126504717053e-08, 5.305807182498512e-11, 2.0431093882694595e-12, 1.0814625968835409e-13, 5.413075857777644e-15, 5.9568240097507275e-12, 3.8739598009519816e-13, 0.0006395395612344146, 0.5075867176055908], [1.0530384564333417e-08, 1.3827381462050425e-09, 9.907910603068615e-11, 5.2415769641322996e-11, 1.614435988324045e-14, 1.9644556814579772e-11, 3.965761502825946e-14, 1.0437122277551225e-08, 0.00021847887546755373], [5.330696772887222e-09, 1.046445499697235e-10, 3.5324796421321025e-09, 3.2595062066098635e-11, 7.034046197069987e-14, 2.89433910933873e-16, 1.9071030187236317e-16, 1.9350456566952223e-12, 8.921795597416349e-06], [1.413380012799028e-14, 7.718452884209609e-14, 2.3376149309978743e-14, 4.0959548713902574e-15, 9.176170497819484e-15, 4.1570871582526214e-18, 4.6975032386115635e-23, 8.399624658721385e-19, 2.358336581576026e-10], [5.705686945134403e-08, 2.833989265482728e-09, 8.928861461754423e-06, 9.822356616950856e-08, 7.62967733436426e-09, 8.257136700729958e-14, 1.318182318670296e-15, 5.828378144695501e-14, 0.00011490472388686612], [3.950031413069155e-10, 2.8524934150842007e-12, 5.75962459947732e-08, 1.0115307202962498e-10, 1.6422271875704553e-10, 2.968542078818359e-11, 1.3658625656008932e-14, 1.1810138031919347e-15, 8.804174285614863e-06], [7.083077679936878e-09, 1.2497617524198645e-11, 5.511309154826449e-06, 3.08378140800869e-08, 2.9887561175945265e-11, 7.224776776837416e-09, 1.1986701053956494e-07, 9.327864002039998e-12, 8.805703146208543e-06], [0.028319815173745155, 0.010333376005291939, 0.025473307818174362, 0.02507404237985611, 0.004830158315598965, 0.005717465654015541, 0.000718376599252224, 0.025225600227713585, 0.3933270275592804]], [[0.004570821300148964, 0.0006219990318641067, 0.0008660269086249173, 0.0007282443693839014, 0.00011756434105336666, 0.0001524199906270951, 9.679755748948082e-06, 0.00121091038454324, 0.43794164061546326], [0.003852137131616473, 0.001867673359811306, 0.002219864632934332, 0.0004865672090090811, 0.00015351915499195457, 0.0003103021008428186, 3.419929635128938e-05, 0.002339719096198678, 0.24926511943340302], [0.0023099894169718027, 0.0006187451654113829, 0.0017197662964463234, 0.0009706380660645664, 0.0003896088746841997, 0.0001397169689880684, 1.049382353812689e-05, 0.0013366942293941975, 0.38504689931869507], [0.005205004010349512, 0.0004466577956918627, 0.0012418323894962668, 0.0009301879908889532, 0.0027220447082072496, 0.0021583547350019217, 0.00024887837935239077, 0.0021135604474693537, 0.3151141405105591], [0.0035345754586160183, 0.00020995068189222366, 0.002809529658406973, 0.0004845350340474397, 0.0007872952264733613, 0.002412022091448307, 7.994176121428609e-05, 0.0012910199584439397, 0.3895937502384186], [0.0032323135528713465, 0.0002426189457764849, 0.0010305322939530015, 0.00041538651566952467, 0.0005048421444371343, 0.0018313778564333916, 5.4521082347491756e-05, 0.0021139876917004585, 0.408632755279541], [0.0018415561644360423, 0.0002441449323669076, 0.00016823195619508624, 0.00023019398213364184, 0.0001538503129268065, 0.00042028201278299093, 7.054630987113342e-05, 0.00042174546979367733, 0.4848628342151642], [0.01604890450835228, 0.011827213689684868, 0.010717342607676983, 0.01119537279009819, 0.004707286600023508, 0.008161387406289577, 0.005274169147014618, 0.02044428512454033, 0.4137292206287384]], [[0.006681482307612896, 0.01350687351077795, 0.0010673771612346172, 0.010909723117947578, 0.0029024267569184303, 0.0034648317378014326, 0.002712294226512313, 0.030649906024336815, 0.4172075688838959], [0.021973080933094025, 0.11463961005210876, 0.008249381557106972, 0.008443331345915794, 0.0016807846259325743, 0.00857829861342907, 0.004734683781862259, 0.01720252074301243, 0.20377548038959503], [0.015987304970622063, 0.029722819104790688, 0.0038740970194339752, 0.010076967999339104, 0.030323894694447517, 0.0322301872074604, 0.016984013840556145, 0.014620089903473854, 0.3000859320163727], [0.009800056926906109, 0.022414375096559525, 0.011662283912301064, 0.013969166204333305, 0.005651111714541912, 0.013361428864300251, 0.006015367805957794, 0.020908601582050323, 0.3546835780143738], [0.045693472027778625, 0.028873935341835022, 0.007569416426122189, 0.02534460462629795, 0.00850349199026823, 0.013826144859194756, 0.016999240964651108, 0.043204594403505325, 0.2920227348804474], [0.026541445404291153, 0.022693820297718048, 0.01782643422484398, 0.01720244064927101, 0.004403784405440092, 0.012205874547362328, 0.011370832100510597, 0.032343506813049316, 0.24245671927928925], [0.015273853205144405, 0.012693632394075394, 0.0030219326727092266, 0.008167976513504982, 0.0026210134383291006, 0.018482642248272896, 0.0122247114777565, 0.043228983879089355, 0.27787095308303833], [0.004644386470317841, 0.003321829717606306, 0.0050865886732935905, 0.002393309725448489, 0.0011556813260540366, 0.0017870698357000947, 0.0006104191415943205, 0.012987826950848103, 0.4755563735961914]], [[0.006379035767167807, 0.0045412154868245125, 0.0032286308705806732, 0.0015580117469653487, 0.0008801146177574992, 0.003727972973138094, 0.0008744430961087346, 0.017086487263441086, 0.43658846616744995], [0.005039175506681204, 0.007503471802920103, 0.0037879012525081635, 0.0014426256529986858, 0.0004411647969391197, 0.0009918047580868006, 0.0003513083793222904, 0.01078211609274149, 0.42976224422454834], [0.004690959118306637, 0.004124640021473169, 0.0030791957397013903, 0.0008392746676690876, 0.0004405039653647691, 0.0031554396264255047, 0.0007373033440671861, 0.017180629074573517, 0.4306209683418274], [0.00862114317715168, 0.01135148387402296, 0.012981223873794079, 0.000691631983499974, 0.0003235400072298944, 0.0020609041675925255, 0.000785970943979919, 0.018089689314365387, 0.4154861271381378], [0.025518914684653282, 0.006133803632110357, 0.009012063033878803, 0.0025384153705090284, 0.0013000465696677566, 0.012946446426212788, 0.005756751634180546, 0.04848466068506241, 0.2682812213897705], [0.014500671997666359, 0.005180492997169495, 0.005493436940014362, 0.0009324002894572914, 0.0002000768727157265, 0.0024098618887364864, 0.0017877763602882624, 0.0339442640542984, 0.33759304881095886], [0.01168446708470583, 0.009222637861967087, 0.002364739775657654, 0.004237509332597256, 0.0008104023872874677, 0.0016773530514910817, 0.002601410960778594, 0.031581830233335495, 0.34230467677116394], [0.014953400939702988, 0.010602684691548347, 0.013698993250727654, 0.004751116503030062, 0.004801769275218248, 0.007260110694915056, 0.002760824980214238, 0.02062361314892769, 0.4283122718334198]]], [[[0.03759179264307022, 0.005974110681563616, 0.0015596693847328424, 0.01028980128467083, 0.002490728860720992, 0.006004712078720331, 0.000806200027000159, 0.012712272815406322, 0.3938857913017273], [0.022916166111826897, 0.007795052137225866, 0.002382806269451976, 0.002217048779129982, 0.00043463564361445606, 0.0021345033310353756, 0.0009567904635332525, 0.017230048775672913, 0.2991914451122284], [0.0071457442827522755, 0.002279195236042142, 0.0003260670346207917, 0.0004371095565147698, 0.0001423008943675086, 0.00013660390686709434, 0.00023541183327324688, 0.004492998588830233, 0.1667223870754242], [0.011841129511594772, 0.005342570599168539, 0.0016491134883835912, 0.002306309062987566, 0.00027519321884028614, 0.0018119483720511198, 0.0004261615686118603, 0.006615588907152414, 0.15364013612270355], [0.007978757843375206, 0.0026990456972271204, 0.001542517333291471, 0.0008321352070197463, 0.00015852856449782848, 0.0003729863674379885, 0.00016807820065878332, 0.0006434714305214584, 0.14921028912067413], [0.008475298061966896, 0.0015436670510098338, 0.0007279440178535879, 0.0005443510599434376, 8.443139086011797e-05, 0.00047076420742087066, 9.88888496067375e-05, 0.0005164956673979759, 0.13775314390659332], [0.023352667689323425, 0.007963527925312519, 0.0033872213680297136, 0.0018478332785889506, 0.0005030385800637305, 0.0026986205484718084, 0.0011642086319625378, 0.006802186369895935, 0.2550806701183319], [0.02454359456896782, 0.01837095245718956, 0.02251279354095459, 0.009905047714710236, 0.006903310772031546, 0.015575935132801533, 0.0053365156054496765, 0.01471058651804924, 0.41022977232933044]], [[0.06173773109912872, 0.005219586193561554, 0.010637922212481499, 0.0069235581904649734, 0.006184763740748167, 0.05883077159523964, 0.011992666870355606, 0.008501331321895123, 0.28056904673576355], [0.01389636006206274, 0.2612924575805664, 0.1891685575246811, 0.013017017394304276, 0.00388146610930562, 0.01795179955661297, 0.007501694839447737, 0.006427280139178038, 0.13973206281661987], [0.008264562115073204, 0.0020955554209649563, 0.004778152797371149, 0.005036917049437761, 0.0038053111638873816, 0.01529700681567192, 0.005853740964084864, 0.002864048583433032, 0.39063626527786255], [0.008076338097453117, 0.003289994318038225, 0.012813783250749111, 0.0028527146205306053, 0.0031428243964910507, 0.040546756237745285, 0.0036880800034850836, 0.0013141152448952198, 0.39437147974967957], [0.0015492504462599754, 0.0022451216354966164, 0.027323711663484573, 0.0018424221780151129, 0.0004783851618412882, 0.0038252221420407295, 0.0009323082631453872, 0.0019342771265655756, 0.38407397270202637], [0.00311397947371006, 0.003953402396291494, 0.10373593121767044, 0.002683662809431553, 0.00041021895594894886, 0.011511394754052162, 0.0017577899852767587, 0.0016149088041856885, 0.3797663152217865], [0.008566826581954956, 0.004820035304874182, 0.10270403325557709, 0.027614807710051537, 0.010357152670621872, 0.04785694554448128, 0.007361290510743856, 0.004244815558195114, 0.3579777777194977], [0.00800420343875885, 0.004144016187638044, 0.015761403366923332, 0.001992602366954088, 0.002974899485707283, 0.011284622363746166, 0.0025480231270194054, 0.007330615539103746, 0.46702513098716736]], [[0.0012899106368422508, 0.0014286903897300363, 0.00028151809237897396, 0.0002843741967808455, 2.6972358682542108e-05, 0.00013084612146485597, 4.491140498430468e-05, 0.0002051533228950575, 0.27967092394828796], [0.0007588337175548077, 0.0010279363486915827, 0.0025828767102211714, 8.240942406700924e-05, 1.8693173842621036e-05, 9.753202175488696e-05, 6.6001052800857e-06, 0.00011051636829506606, 0.4346608519554138], [0.0009207585244439542, 0.00025215683854185045, 0.00014215118426363915, 7.439858018187806e-05, 2.3911999960546382e-05, 0.0001456388272345066, 8.773212175583467e-05, 4.157734292675741e-05, 0.041626106947660446], [0.0006537518347613513, 0.00027108658105134964, 0.00011661239841487259, 0.00017735996516421437, 1.6529331333003938e-05, 0.0005820655496791005, 2.5977740733651444e-05, 8.661939500598237e-05, 0.07484365999698639], [0.0011331927962601185, 0.0008856852073222399, 0.0003775305231101811, 0.00017986708553507924, 2.373816641920712e-05, 0.000122232420835644, 0.00010523421224206686, 0.0001699059794191271, 0.34300947189331055], [0.001784972962923348, 0.0010175504721701145, 0.0019429970998317003, 0.0005001031677238643, 6.0668273363262415e-05, 0.0004930826253257692, 9.65116560109891e-05, 0.00031560324714519083, 0.37393417954444885], [0.0009639525087550282, 0.006386091932654381, 0.0012288535945117474, 0.0006315894424915314, 0.00011385047400835901, 0.0006355810328386724, 0.0001658378168940544, 0.0002279883046867326, 0.39411845803260803], [0.015386379323899746, 0.01851164735853672, 0.014620572328567505, 0.006580662913620472, 0.00470785703510046, 0.004902621731162071, 0.003557579591870308, 0.009431354701519012, 0.4165700674057007]], [[0.0017501875991001725, 0.008840775117278099, 0.028043758124113083, 0.031723182648420334, 0.009798775427043438, 0.013512959703803062, 0.003650103695690632, 0.010985199362039566, 0.41752153635025024], [0.00284730177372694, 0.013878148049116135, 0.17281247675418854, 0.00869311485439539, 0.00299784354865551, 0.010952113196253777, 0.0032772806007415056, 0.006277928594499826, 0.33355259895324707], [0.014402853325009346, 0.0066318204626441, 0.06104583293199539, 0.007202048320323229, 0.012211530469357967, 0.07296831160783768, 0.00637474050745368, 0.006198493298143148, 0.3520578444004059], [0.017481131479144096, 0.011335554532706738, 0.20226339995861053, 0.005008322186768055, 0.004057300742715597, 0.04900494962930679, 0.007772776763886213, 0.0037359201814979315, 0.2660984694957733], [0.013568823225796223, 0.006216733250766993, 0.11433801800012589, 0.0025357038248330355, 0.0010122503153979778, 0.013036418706178665, 0.0015781839611008763, 0.003966239280998707, 0.35356152057647705], [0.01631595566868782, 0.0045090303756296635, 0.19948728382587433, 0.005116892978549004, 0.0019825510680675507, 0.0364498496055603, 0.002869738033041358, 0.0038624706212431192, 0.2989121377468109], [0.014537427574396133, 0.035470303148031235, 0.06111142784357071, 0.022311337292194366, 0.010467912070453167, 0.056074269115924835, 0.011992115527391434, 0.053276047110557556, 0.31310322880744934], [0.05304360017180443, 0.03713420405983925, 0.048477653414011, 0.02553393691778183, 0.02128525823354721, 0.030364230275154114, 0.020786810666322708, 0.06785456091165543, 0.23367692530155182]], [[0.0003162229841109365, 0.0005452186451293528, 0.00018235394963994622, 2.0276085706427693e-05, 1.4840428775642067e-05, 6.071090410841862e-06, 4.924350378132658e-06, 9.694212167232763e-06, 0.23698459565639496], [0.002815808169543743, 0.00027634910657070577, 8.259742753580213e-05, 4.025722955702804e-05, 5.677327408193378e-06, 9.242954547517002e-06, 1.3219652146290173e-06, 3.0146355129545555e-05, 0.2824788987636566], [0.0001613196509424597, 0.00015652301954105496, 0.00022793607786297798, 9.761581168277189e-06, 1.6123145542223938e-05, 1.0778161595226265e-05, 2.1070418654289824e-07, 3.25007476931205e-06, 0.034072209149599075], [0.0011209776857867837, 7.069364073686302e-05, 2.443575249344576e-05, 4.715206887340173e-05, 1.1577607210710994e-06, 1.985137350857258e-05, 7.195953344307782e-08, 2.5476107111899182e-05, 0.03079245053231716], [0.0028630648739635944, 0.0003615134337451309, 0.0005932210478931665, 7.836609438527375e-05, 1.48615808939212e-05, 5.582963422057219e-05, 5.609221261693165e-05, 0.00017876076162792742, 0.12457794696092606], [0.0020121426787227392, 0.0004418434400577098, 0.0004007595998700708, 7.266362081281841e-05, 1.1482536137918942e-05, 3.289573942311108e-05, 7.671415914956015e-06, 0.00011622636520769447, 0.27430617809295654], [6.147086241981015e-05, 7.92171704233624e-05, 6.8173344516253565e-06, 3.0592286748287734e-06, 1.7755475028025103e-06, 4.146075411881611e-07, 2.066401449951627e-08, 3.991208359366283e-06, 0.4962970018386841], [0.005202671512961388, 0.012121658772230148, 0.006360610015690327, 0.004695909563452005, 0.0010616891086101532, 0.0023953637573868036, 0.0008446436258964241, 0.00224735913798213, 0.47433656454086304]], [[0.0042145587503910065, 0.0010441363556310534, 0.0006377632962539792, 0.0011667822254821658, 0.0010258278343826532, 0.0005677206791006029, 3.2791085686767474e-05, 0.0011144705349579453, 0.2470298409461975], [0.0034249979071319103, 0.000506819284055382, 0.00038873654557392, 0.00021361271501518786, 0.00014307523088064045, 0.00011555873788893223, 1.228543624165468e-05, 0.001233634422533214, 0.24699576199054718], [0.0035930986050516367, 0.000839382701087743, 0.00038004014641046524, 0.00031339217093773186, 0.0003435770922806114, 0.0002344125387025997, 4.8426983994431794e-05, 0.0013733734376728535, 0.28140950202941895], [0.008248011581599712, 0.001164585235528648, 0.000787003489676863, 0.0013185007264837623, 0.0005290344706736505, 0.0005944612203165889, 0.00019232532940804958, 0.003563093952834606, 0.21334154903888702], [0.008838209323585033, 0.0009578358149155974, 0.0006026042974554002, 0.0005058144452050328, 0.0003895729314535856, 0.00021828866738360375, 9.7125448519364e-05, 0.0036123190075159073, 0.31504592299461365], [0.009858655743300915, 0.0006366753368638456, 0.0008422978571616113, 0.0005318766343407333, 0.00026757846353575587, 0.00014633627142757177, 4.972214446752332e-05, 0.0026745321229100227, 0.3385658860206604], [0.001805409207008779, 0.0008551637874916196, 0.0003144161310046911, 0.00035307041252963245, 0.0002351838193135336, 0.0002557503175921738, 6.508798833237961e-05, 0.0007884406368248165, 0.44601312279701233], [0.010171118192374706, 0.013675413094460964, 0.007990268059074879, 0.009264682419598103, 0.005918261595070362, 0.006664508022367954, 0.005044593475759029, 0.02332248166203499, 0.4234662353992462]], [[0.04220651835203171, 0.002967719454318285, 0.0013663778081536293, 0.012281054630875587, 0.0016574827022850513, 0.004034803248941898, 0.0004788103105966002, 0.009097910486161709, 0.3218281865119934], [0.07389518618583679, 0.02702295035123825, 0.00906301662325859, 0.006894672755151987, 0.0012193075381219387, 0.0018576144939288497, 0.0005177877028472722, 0.004382263869047165, 0.20492593944072723], [0.036650121212005615, 0.0035245295148342848, 0.0021447516046464443, 0.005979917943477631, 0.007065457291901112, 0.006401651073247194, 0.0012935495469719172, 0.0033250292763113976, 0.2875789999961853], [0.023842820897698402, 0.0061490521766245365, 0.005258009769022465, 0.0035124272108078003, 0.0053131962195038795, 0.018536686897277832, 0.0030191775877028704, 0.005316915921866894, 0.2628737986087799], [0.034894365817308426, 0.002716735005378723, 0.0049328734166920185, 0.004232902079820633, 0.0011289374670013785, 0.007285014260560274, 0.001031046500429511, 0.002013083314523101, 0.3236958384513855], [0.03478550165891647, 0.002006437862291932, 0.003205270040780306, 0.001726489164866507, 0.00032062374521046877, 0.0034780981950461864, 0.0008909434545785189, 0.0019548924174159765, 0.33229196071624756], [0.01941808871924877, 0.003352021798491478, 0.001101992791518569, 0.007002298254519701, 0.0003007906780112535, 0.0019097430631518364, 0.001869277679361403, 0.006612168624997139, 0.3788433372974396], [0.02468899078667164, 0.019475648179650307, 0.01713993400335312, 0.013175126165151596, 0.008375738747417927, 0.015332572162151337, 0.005559501703828573, 0.01896260306239128, 0.3974204659461975]], [[0.007248852401971817, 0.0006536538130603731, 0.00027366416179575026, 0.0010001006303355098, 0.0004254161030985415, 0.0003303191333543509, 6.740252138115466e-05, 0.0005658965674228966, 0.20623686909675598], [0.007227039895951748, 0.0008173251408152282, 0.0006482942844741046, 0.00023533531930297613, 0.00015515927225351334, 0.00033517213887535036, 5.904723366256803e-05, 0.0008556207176297903, 0.23546801507472992], [0.0020861823577433825, 0.0005855682538822293, 0.0002817694912664592, 0.0002902026171796024, 0.0008734660805203021, 0.0004221069975756109, 0.00010047149407910183, 0.0005499849794432521, 0.1790439933538437], [0.002612813375890255, 0.0009280943777412176, 0.0006409710622392595, 0.0012536129215732217, 0.0016723297303542495, 0.001090942183509469, 0.00018335638742428273, 0.0005617794231511652, 0.07714205980300903], [0.018478814512491226, 0.0011746564414352179, 0.0015585775254294276, 0.000332654919475317, 0.0003404796589165926, 0.0008957167738117278, 0.00015863262524362653, 0.0010032805148512125, 0.2193526327610016], [0.01483730599284172, 0.0006593500729650259, 0.0008523913566023111, 0.00026163633447140455, 0.0007682826835662127, 0.0011232589604333043, 0.00022558816999662668, 0.0007851230911910534, 0.24282337725162506], [0.008819248527288437, 0.0011423503747209907, 0.0020832931622862816, 0.0010823191842064261, 0.0007126519922167063, 0.0011981941061094403, 0.0009082540054805577, 0.0005889273015782237, 0.336907297372818], [0.0186923835426569, 0.01690245233476162, 0.014929926954209805, 0.007862180471420288, 0.0042130774818360806, 0.006667010486125946, 0.003520797472447157, 0.009226231835782528, 0.38489478826522827]], [[0.001039639231748879, 0.00066462840186432, 0.0003141103661619127, 0.0003110688121523708, 5.037196024204604e-05, 5.567113112192601e-05, 6.031482917023823e-05, 0.00020879422663711011, 0.4536387622356415], [0.005417697597295046, 0.001244330545887351, 0.00045445087016560137, 0.00025911355623975396, 7.74667933001183e-05, 7.100872608134523e-05, 3.109538965873071e-06, 0.0002748302067629993, 0.45596230030059814], [0.0005341338110156357, 0.0005509090260602534, 0.00014135749370325357, 6.147487147245556e-05, 0.000654037925414741, 0.0001497407502029091, 9.764014976099133e-06, 5.7867619034368545e-05, 0.15545834600925446], [0.00589332077652216, 0.001838227966800332, 0.00035328068770468235, 0.0008550429483875632, 0.00031401694286614656, 0.0009424583404324949, 2.2615948182647116e-05, 0.0007348060607910156, 0.3383333086967468], [0.003046461148187518, 0.0006254838081076741, 0.00031666524591855705, 0.0002944391162600368, 7.619494863320142e-05, 0.00042745916289277375, 0.0008550071506761014, 0.00016449196846224368, 0.434641033411026], [0.004372192081063986, 0.0008403134997934103, 0.00048056451487354934, 0.0006669890717603266, 0.00011491409532027319, 0.00020409106218721718, 0.0002397648204350844, 0.0005446789436973631, 0.44790083169937134], [0.0005076297675259411, 0.0003180759958922863, 0.00014328464749269187, 4.1302351746708155e-05, 6.657034828094766e-05, 7.083241507643834e-05, 3.6509957226371625e-06, 0.00012765530846081674, 0.48913514614105225], [0.016727419570088387, 0.021148066967725754, 0.006418176926672459, 0.00743089010939002, 0.002662388375028968, 0.004726768005639315, 0.0022881985642015934, 0.00873578991740942, 0.4442789554595947]], [[0.0050188470631837845, 0.0002915015793405473, 0.00023480033269152045, 0.0006145444931462407, 0.00025124227977357805, 0.00018362949776928872, 0.00015460331633221358, 0.005477811209857464, 0.4828645884990692], [0.006460617296397686, 0.0012748385779559612, 0.00016554942703805864, 0.00031482777558267117, 0.00018507674394641072, 0.0002885719295591116, 4.4775377318728715e-05, 0.0008923065033741295, 0.42102834582328796], [0.0026999281253665686, 0.00026880137738771737, 0.00017479014059063047, 0.00014111267228145152, 9.407080506207421e-05, 3.429561184020713e-05, 5.40986047781189e-06, 0.0005949672777205706, 0.4694885015487671], [0.0034246710129082203, 0.0005615180125460029, 0.000610478047747165, 0.0011244489578530192, 0.00014604648458771408, 5.383366806199774e-05, 2.5323708541691303e-05, 0.0017176289111375809, 0.4572793245315552], [0.002563945949077606, 0.00047227853792719543, 0.0012528554070740938, 0.00033863491262309253, 0.00013920357741881162, 6.576144369319081e-05, 1.2760151548718568e-05, 0.00013825444329995662, 0.4418810307979584], [0.002857710001990199, 0.0004494079330470413, 0.0005151801742613316, 0.0002472929481882602, 9.285211126552895e-05, 6.0330894484650344e-05, 4.444272053660825e-05, 0.0004616081132553518, 0.42209476232528687], [0.0024459820706397295, 0.0003664670221041888, 0.00022018687741365284, 0.00020101053814869374, 7.080255454638973e-05, 0.00013722095172852278, 8.841782255331054e-05, 0.0007888933760114014, 0.4634504020214081], [0.02457481063902378, 0.010203752666711807, 0.012434737756848335, 0.008004684001207352, 0.005903394427150488, 0.00911440048366785, 0.007329131942242384, 0.010916314087808132, 0.4171464145183563]], [[0.003252732567489147, 0.001031869906000793, 0.00011463941336842254, 0.0001942763919942081, 0.0002165366749977693, 0.0007036080351099372, 0.0007079083006829023, 0.4053356647491455, 0.2332354336977005], [0.0006034534890204668, 0.0018712034216150641, 0.00013304398453328758, 0.0002786715922411531, 2.8423986805137247e-05, 0.00024064678291324526, 5.6940584727271926e-06, 0.0010354567784816027, 0.05986001342535019], [0.0059765977784991264, 0.000524194270838052, 0.0002881841210182756, 0.0003286635037511587, 4.3188923882553354e-05, 6.399136964319041e-06, 2.1653295334544964e-06, 0.0001395211584167555, 0.2144690901041031], [0.0015593486605212092, 0.0005676263244822621, 0.0001093849350581877, 0.0004160494136158377, 6.473961548181251e-05, 1.101725865737535e-05, 3.079825603435893e-07, 0.00017149228369817138, 0.08103245496749878], [0.001838727155700326, 0.0003195495519321412, 0.0004254066734574735, 0.0001387432566843927, 0.00031990231946110725, 1.268110099772457e-05, 2.8119807211623993e-06, 5.5413551308447495e-05, 0.051038116216659546], [0.003990883473306894, 0.0007089286809787154, 0.001718937768600881, 0.00024039673735387623, 0.0001616957742953673, 0.00010392876720288768, 1.709900243440643e-05, 0.000396753748646006, 0.1947663128376007], [0.0023730352986603975, 0.001130700926296413, 0.004566582851111889, 0.000842994952108711, 9.885642793960869e-05, 0.0027004461735486984, 0.0012006893521174788, 0.0014957990497350693, 0.16556678712368011], [0.01220922265201807, 0.011317525990307331, 0.006292174104601145, 0.003991291858255863, 0.003126810770481825, 0.008478366769850254, 0.0020465741399675608, 0.013959069736301899, 0.4476650059223175]], [[0.020283760502934456, 0.008238658308982849, 0.00964807253330946, 0.010557932779192924, 0.005391087848693132, 0.24193178117275238, 0.014401191845536232, 0.03575732931494713, 0.15041330456733704], [0.004184054210782051, 0.3481873869895935, 0.42574769258499146, 0.005593194160610437, 0.00118062028195709, 0.002844767179340124, 0.0020074776839464903, 0.002557175699621439, 0.018180372193455696], [0.010354574769735336, 0.006637608632445335, 0.010179916396737099, 0.011776612140238285, 0.009650168009102345, 0.08078241348266602, 0.034377872943878174, 0.03934403136372566, 0.2453005462884903], [0.03475775942206383, 0.003283452009782195, 0.0074998075142502785, 0.0038045400287956, 0.007586288265883923, 0.05190139263868332, 0.010764279402792454, 0.010243196971714497, 0.13020431995391846], [0.01877177134156227, 0.003274571383371949, 0.004848450887948275, 0.002747440943494439, 0.003594530513510108, 0.015208389610052109, 0.003513134317472577, 0.012410419061779976, 0.14927075803279877], [0.021789737045764923, 0.003158853854984045, 0.007846553809940815, 0.0029973729979246855, 0.004203712567687035, 0.02625352330505848, 0.0038595679216086864, 0.01715152896940708, 0.14619556069374084], [0.034868333488702774, 0.014031435362994671, 0.006361465901136398, 0.010672181844711304, 0.015724845230579376, 0.0812961533665657, 0.013889340683817863, 0.1020364910364151, 0.1819848120212555], [0.05576321855187416, 0.03638318553566933, 0.057337719947099686, 0.033809397369623184, 0.02530876360833645, 0.03488156199455261, 0.0330699197947979, 0.06335695087909698, 0.22903399169445038]]], [[[0.026824219152331352, 0.024535151198506355, 0.032377954572439194, 0.06428729742765427, 0.05188821628689766, 0.06091118976473808, 0.005562410224229097, 0.07729799300432205, 0.2642455995082855], [0.02811388112604618, 0.1908879280090332, 0.10133616626262665, 0.06870381534099579, 0.01579757034778595, 0.02287447638809681, 0.0036996754352003336, 0.04725593701004982, 0.13034150004386902], [0.03820781409740448, 0.013281067833304405, 0.012624234892427921, 0.020400894805788994, 0.030536005273461342, 0.09677345305681229, 0.009445511735975742, 0.027323702350258827, 0.13141368329524994], [0.07273712754249573, 0.024743838235735893, 0.03470733389258385, 0.0245047640055418, 0.01619902066886425, 0.07490096241235733, 0.009171618148684502, 0.03618757054209709, 0.07154164463281631], [0.0283042024821043, 0.011317034251987934, 0.02489718608558178, 0.015414466150105, 0.0015972380060702562, 0.028210356831550598, 0.0049884323962032795, 0.02013750746846199, 0.14350950717926025], [0.03766375407576561, 0.021850580349564552, 0.04736213758587837, 0.02441374585032463, 0.001717879087664187, 0.020973367616534233, 0.006252184975892305, 0.018372710794210434, 0.1686561405658722], [0.04237581044435501, 0.034525468945503235, 0.01796027459204197, 0.07954207062721252, 0.005555150099098682, 0.011201413348317146, 0.004228738136589527, 0.03591584041714668, 0.23428994417190552], [0.019834494218230247, 0.008578206412494183, 0.014228561893105507, 0.009924551472067833, 0.010270298458635807, 0.009148378856480122, 0.005743163637816906, 0.018999049440026283, 0.4201512038707733]], [[0.030517419800162315, 0.0017176135443150997, 0.004947955720126629, 0.0203742366284132, 0.002899325918406248, 0.0026137458626180887, 0.0012104575289413333, 0.03256400674581528, 0.40427279472351074], [0.00934809073805809, 0.011453364044427872, 0.0036958991549909115, 0.0031375307589769363, 0.0008310616249218583, 0.00158501707483083, 0.00016332736413460225, 0.01181812584400177, 0.295293927192688], [0.009084653109312057, 0.0006854653474874794, 0.0005500874249264598, 0.0018192435381934047, 0.0005331854335963726, 0.0003550722321961075, 0.0001159801977337338, 0.0018130653770640492, 0.34873291850090027], [0.0053117056377232075, 0.00025196128990501165, 0.00045175079139880836, 0.001449344796128571, 0.0004991032183170319, 0.0003659848007373512, 3.623289376264438e-05, 0.0008738187607377768, 0.3923167288303375], [0.0014845877885818481, 0.00020282679179217666, 0.0004995363997295499, 0.00012627163960132748, 7.107922283466905e-05, 0.0002511218190193176, 3.331775587867014e-05, 0.00013318117999006063, 0.38176634907722473], [0.0025338674895465374, 0.00031027416116558015, 0.0005934437504038215, 0.00026551485643722117, 0.0002827864373102784, 0.0005936676752753556, 7.575721974717453e-05, 0.00022718444233760238, 0.3242541551589966], [0.008402728475630283, 0.0018791983602568507, 0.002023938577622175, 0.0016244550934061408, 0.000734977365937084, 0.0017260321183130145, 0.00037761463318020105, 0.005386863369494677, 0.23020325601100922], [0.011424877680838108, 0.009034248068928719, 0.01216176524758339, 0.015556448139250278, 0.008996876887977123, 0.011022094637155533, 0.003387703327462077, 0.012043501250445843, 0.4373071491718292]], [[0.013733774423599243, 0.009574252180755138, 0.008746680803596973, 0.008951568976044655, 0.0027222868520766497, 0.024615788832306862, 0.002326545538380742, 0.0062681217677891254, 0.21995943784713745], [0.004843204747885466, 0.0336439311504364, 0.06470245867967606, 0.06942503899335861, 0.005320457741618156, 0.030456779524683952, 0.0027195822913199663, 0.01646280847489834, 0.09513810276985168], [0.0061147394590079784, 0.009982898831367493, 0.008776696398854256, 0.006483661476522684, 0.01151349488645792, 0.19783256947994232, 0.003573478665202856, 0.006222090683877468, 0.09631194919347763], [0.0029577920213341713, 0.006268859375268221, 0.020655956119298935, 0.0010027632815763354, 0.003831166308373213, 0.12467428296804428, 0.0014100599801167846, 0.0011361995711922646, 0.2098654806613922], [0.006022319663316011, 0.010365533642470837, 0.022541331127285957, 0.0010288951452821493, 0.0013846724759787321, 0.03282004967331886, 0.0010796115966513753, 0.0019692357163876295, 0.4094730019569397], [0.005099293310195208, 0.006434600334614515, 0.014146889559924603, 0.0011425132397562265, 0.0007825923967175186, 0.022038228809833527, 0.0009783431887626648, 0.0014403992099687457, 0.4417753219604492], [0.00424864050000906, 0.018053347244858742, 0.014590892009437084, 0.006673718336969614, 0.006026660092175007, 0.07573217898607254, 0.010383738204836845, 0.005573029164224863, 0.28597158193588257], [0.0020503560081124306, 0.0018381867557764053, 0.006066328380256891, 0.0019284342415630817, 0.0013502700021490455, 0.006877555977553129, 0.0007384041091427207, 0.0024629896506667137, 0.4845215678215027]], [[0.003284159814938903, 0.001018995768390596, 0.001203836058266461, 0.0016154367476701736, 0.0017419243231415749, 0.003985143266618252, 0.0003202772350050509, 0.0009198729530908167, 0.4503265917301178], [0.002434982219710946, 0.0002808681165333837, 0.0006167256506159902, 0.0015070175286382437, 0.00026110096951015294, 0.00045292111462913454, 0.0001414354337612167, 0.0028285107109695673, 0.122406966984272], [0.0013778489083051682, 0.00036587839713320136, 0.00036740044015459716, 0.0003835103998426348, 0.0004604478308465332, 0.0003604190133046359, 0.00010386012581875548, 0.0005261037149466574, 0.4114050567150116], [0.002003398025408387, 0.0005276554729789495, 0.0002911758201662451, 0.0014142632717266679, 6.888956704642624e-05, 0.0006521879695355892, 1.5909998182905838e-05, 0.0005114514497108757, 0.3222295939922333], [0.002857973799109459, 0.0010368343209847808, 0.0007925468380562961, 0.000811257166787982, 0.00016788629000075161, 0.0005031348555348814, 0.0003956520522478968, 0.000386344559956342, 0.21825887262821198], [0.0033068566117435694, 0.0004578383232001215, 0.00046508637024089694, 0.000969412038102746, 0.00020914622291456908, 0.0002484262513462454, 0.00012482100282795727, 0.0009671279112808406, 0.3901226222515106], [0.0011034932686015964, 0.00041215107194148004, 0.0003774958022404462, 0.0010573997860774398, 0.00021009071497246623, 0.0011409358121454716, 0.00012127727677579969, 0.0006731980829499662, 0.4345414340496063], [0.005336220841854811, 0.0033057851251214743, 0.010103982873260975, 0.006290243938565254, 0.0054209367372095585, 0.009648711420595646, 0.001973511418327689, 0.0021955694537609816, 0.45624688267707825]], [[0.011694489046931267, 0.0035602026619017124, 0.0014882980613037944, 0.001248420448973775, 0.008290162310004234, 0.05803222954273224, 0.00529091339558363, 0.004606747999787331, 0.40420520305633545], [0.0017565799644216895, 0.0016134293982759118, 0.0027119028382003307, 0.000956268107984215, 0.0012822869466617703, 0.009463975206017494, 0.0012486862251535058, 0.0025284753646701574, 0.45313942432403564], [0.011386871337890625, 0.002111377427354455, 0.000706756953150034, 0.0013555969344452024, 0.0011755507439374924, 0.0006833676598034799, 0.0002750402200035751, 0.002838957356289029, 0.325282484292984], [0.006476139649748802, 0.0008783658850006759, 0.0005277867894619703, 0.00039031635969877243, 0.0004664714797399938, 0.0007430788828060031, 8.506329322699457e-05, 0.0007464757072739303, 0.16273601353168488], [0.008416908793151379, 0.0013125152327120304, 0.0007978067151270807, 0.0002654278068803251, 0.0002587765920907259, 0.0005732472636736929, 0.0001422864879714325, 0.0010867429664358497, 0.18285620212554932], [0.005189163610339165, 0.0006860109278932214, 0.0006969798705540597, 0.0001929131685756147, 0.00023091590264812112, 0.0004794131964445114, 6.954477430554107e-05, 0.001333426684141159, 0.11603162437677383], [0.006338529754430056, 0.00722100492566824, 0.001404008362442255, 0.0005628236103802919, 0.002245223382487893, 0.0029457947239279747, 8.703795174369588e-05, 0.003137916326522827, 0.1470586508512497], [0.014840803109109402, 0.013255669735372066, 0.01613742485642433, 0.011793873272836208, 0.005963553674519062, 0.008214526809751987, 0.00497058080509305, 0.0046472446992993355, 0.4087449610233307]], [[0.00045986881013959646, 0.00023576388775836676, 0.0013989780563861132, 0.00010590633610263467, 0.0004886252572759986, 0.016101066023111343, 0.00040648257709108293, 0.0001501672377344221, 0.10604394972324371], [0.0004179886309430003, 0.0002866630384232849, 0.007188134361058474, 4.7599485696991906e-05, 0.0002682063786778599, 0.002377929165959358, 0.00022887489467393607, 0.0003644666576292366, 0.2808360755443573], [0.002286522416397929, 0.0004298420390114188, 0.004341352265328169, 1.834712384152226e-05, 3.2181233109440655e-05, 0.0025266497395932674, 5.141443034517579e-05, 0.00014303512580227107, 0.2495524287223816], [0.00038123567355796695, 9.707362187327817e-05, 0.0037924812640994787, 6.3657971622888e-06, 7.5434822974784765e-06, 0.001650141435675323, 9.586333362676669e-06, 3.309451130917296e-05, 0.25731226801872253], [0.00010912123980233446, 1.460025850974489e-05, 0.0005517355748452246, 7.672455240026466e-07, 6.79503386891156e-07, 6.506004137918353e-05, 3.4186251696155523e-07, 9.851538379734848e-06, 0.4753793478012085], [0.00048527796752750874, 4.1633076762082055e-05, 0.0012162142666056752, 4.105159405298764e-06, 2.70862892648438e-06, 0.00017066102009266615, 2.098478944390081e-06, 3.438854037085548e-05, 0.4711749851703644], [0.0006318666273728013, 0.00035305492929182947, 0.005681788083165884, 3.624396049417555e-05, 9.087371290661395e-05, 0.00661341892555356, 0.00013336549454834312, 0.00014994664525147527, 0.31037285923957825], [0.0008743352955207229, 0.0006069379160180688, 0.0023802067153155804, 0.00030366468126885593, 0.00041568270535208285, 0.00295811053365469, 0.00021453610679600388, 0.00047938781790435314, 0.48947224020957947]], [[0.00242200237698853, 0.0006884213071316481, 0.0010571640450507402, 0.0002763421507552266, 0.00018616033776197582, 0.0003920215822290629, 1.3083158592053223e-05, 0.0003109037643298507, 0.40929940342903137], [0.004388017579913139, 0.002366981701925397, 0.03622645512223244, 0.0009531985269859433, 0.0002512405626475811, 0.0004244873416610062, 4.269340570317581e-05, 0.0003534597344696522, 0.37502631545066833], [0.0009547278750687838, 0.0002353080635657534, 0.0006676624761894345, 6.409281195374206e-05, 0.00014516402734443545, 0.0009299312951043248, 6.701538222841918e-05, 0.00026237909332849085, 0.35412874817848206], [0.002919350517913699, 0.00014477870718110353, 0.0002495268709026277, 9.211659198626876e-05, 8.105031156446785e-05, 0.00046425312757492065, 3.639682472567074e-05, 0.0002960775454994291, 0.266645222902298], [0.0057327416725456715, 0.00039516514516435564, 0.0010263306321576238, 9.072724787984043e-05, 9.439009591005743e-05, 8.05477102403529e-05, 2.011364631471224e-05, 0.0004609979805536568, 0.3992825448513031], [0.009527510963380337, 0.0007869577966630459, 0.002823961665853858, 0.00030767550924792886, 0.00032794426078908145, 0.00022554697352461517, 4.873703437624499e-05, 0.0006668545538559556, 0.36844947934150696], [0.0030902656726539135, 0.0009195098537020385, 0.002098046476021409, 0.00016877925372682512, 0.0001234145020134747, 0.00043374343658797443, 4.0177517803385854e-05, 0.0005335178575478494, 0.40975987911224365], [0.011872228235006332, 0.01052071899175644, 0.015665380284190178, 0.004193538334220648, 0.002381826750934124, 0.005071197170764208, 0.0007656891830265522, 0.006987031549215317, 0.44931381940841675]], [[0.00846025999635458, 0.0019214152125641704, 0.0017327957320958376, 0.00046790350461378694, 0.00016445685469079763, 0.0004813381237909198, 1.4800290955463424e-05, 0.001295703579671681, 0.27926596999168396], [0.005607645493000746, 0.000500095309689641, 0.0006661454099230468, 0.00041022986988537014, 0.00019211370090488344, 0.0011753732105717063, 0.00010459329496370628, 0.0005150376819074154, 0.10101576894521713], [0.0031953253783285618, 0.0001699210552033037, 0.0005718045867979527, 5.319255433278158e-05, 0.00010029536497313529, 0.00025709191686473787, 1.1546352652658243e-05, 0.0005885058199055493, 0.29203155636787415], [0.006303438451141119, 0.0004736166447401047, 0.0006107649533078074, 0.000232794918701984, 0.00021594610007014126, 0.0007799601880833507, 3.803833169513382e-05, 0.0018736189231276512, 0.26635947823524475], [0.0038487864658236504, 0.00015592215640936047, 0.00042468926403671503, 3.970479156123474e-05, 8.894040365703404e-05, 0.00016048956604208797, 8.422052815149073e-06, 0.00034785515163093805, 0.2874422073364258], [0.004141564015299082, 0.00011860784434247762, 0.0004029510309919715, 4.821887705475092e-05, 0.00014665107300970703, 0.0002101055288221687, 1.4009598999109585e-05, 0.00042269821278750896, 0.3891921639442444], [0.0035496836062520742, 0.00017536882660351694, 0.00031609530560672283, 0.00013904485967941582, 0.0001091164376703091, 0.00018140740576200187, 2.416700590401888e-05, 0.0004794143605977297, 0.2794491946697235], [0.011221363209187984, 0.0058611370623111725, 0.016246208921074867, 0.0066537074744701385, 0.0024400674737989902, 0.005121526774019003, 0.0018985304050147533, 0.005926494486629963, 0.4392649233341217]], [[0.007197539787739515, 0.23467621207237244, 0.013682407326996326, 0.015267045237123966, 0.003186084097251296, 0.021842489019036293, 0.012569568119943142, 0.027540503069758415, 0.3220365345478058], [0.0019134434405714273, 0.8684930205345154, 0.013678018003702164, 0.008373302407562733, 0.000564310816116631, 0.001247801585122943, 0.00232503330335021, 0.015443975105881691, 0.040955789387226105], [0.013910728506743908, 0.042021580040454865, 0.016952531412243843, 0.03136570006608963, 0.014598763547837734, 0.1592356562614441, 0.015181680209934711, 0.022869009524583817, 0.31176286935806274], [0.01881362870335579, 0.11324555426836014, 0.04581518471240997, 0.006511281244456768, 0.0021469241473823786, 0.018125640228390694, 0.004843913950026035, 0.032868269830942154, 0.3230080008506775], [0.022907566279172897, 0.06779477745294571, 0.029140233993530273, 0.003092866623774171, 0.0005785891553387046, 0.005700143054127693, 0.0015060430159792304, 0.031208284199237823, 0.3441377282142639], [0.03022623248398304, 0.06777824461460114, 0.04176308959722519, 0.008315070532262325, 0.0011556034442037344, 0.014348349533975124, 0.004499042872339487, 0.04966636374592781, 0.33269402384757996], [0.006955794524401426, 0.17732207477092743, 0.01780001074075699, 0.0211767740547657, 0.0011854704935103655, 0.02470485307276249, 0.004915482830256224, 0.06268854439258575, 0.2819146513938904], [0.005663195159286261, 0.00195591920055449, 0.0039177704602479935, 0.0008304807706736028, 0.0008589510107412934, 0.0011833644239231944, 0.00021922329324297607, 0.004245697520673275, 0.4843338429927826]], [[0.3512765169143677, 0.014916264452040195, 0.021187733858823776, 0.0066393110901117325, 0.0036652141716331244, 0.011030099354684353, 0.0008259069290943444, 0.0042607784271240234, 0.23751099407672882], [0.39027178287506104, 0.05514398217201233, 0.09285689145326614, 0.0015682718949392438, 0.0006360787665471435, 0.0021107911597937346, 0.00022214429918676615, 0.005069678649306297, 0.19254492223262787], [0.04371083527803421, 0.004963824525475502, 0.00699589354917407, 0.0007851978880353272, 0.00011472513142507523, 0.0006069503724575043, 9.038080315804109e-05, 0.007394604850560427, 0.33151960372924805], [0.046981312334537506, 0.004018538165837526, 0.009274945594370365, 0.0004495770263019949, 0.00029229841311462224, 0.0009502055472694337, 8.165868348442018e-05, 0.002550405915826559, 0.27733877301216125], [0.04903415963053703, 0.0016058763721957803, 0.002727618906646967, 0.00013428492820821702, 8.316965977428481e-05, 0.00015778667875565588, 2.465477882651612e-05, 0.0011611670488491654, 0.31936269998550415], [0.04805561155080795, 0.001573901972733438, 0.00275638815946877, 0.00014177306729834527, 8.820529910735786e-05, 0.00014219914737623185, 2.893396776926238e-05, 0.0013406769139692187, 0.2199636995792389], [0.02694329060614109, 0.0038517338689416647, 0.005755877587944269, 0.0005134200328029692, 0.00020089467579964548, 0.0008437603246420622, 7.693852967349812e-05, 0.0016048187389969826, 0.05389372631907463], [0.0072292122058570385, 0.006797793321311474, 0.010727515444159508, 0.007966537028551102, 0.0075949616730213165, 0.014515780843794346, 0.002764822682365775, 0.008085415698587894, 0.449893057346344]], [[0.02605816349387169, 0.003016142174601555, 0.002690139226615429, 0.007562269456684589, 0.002303873421624303, 0.0036895438097417355, 0.0018773652845993638, 0.07105898857116699, 0.40488743782043457], [0.0035913274623453617, 0.0010720061836764216, 0.0010018488392233849, 0.0033355047926306725, 0.0001323146279901266, 0.003134104423224926, 0.0002547465555835515, 0.0032371242996305227, 0.3600497543811798], [0.0070548816584050655, 0.0023712152615189552, 0.001550803193822503, 0.003921508323401213, 0.006832292303442955, 0.0034315071534365416, 0.00039159043808467686, 0.002478585345670581, 0.44345492124557495], [0.0007552026654593647, 0.0005630005616694689, 0.0010447625536471605, 0.0016857271548360586, 0.0006955614662729204, 0.0016771393129602075, 2.3739517928333953e-05, 0.0006778514361940324, 0.43621811270713806], [0.0048145423643291, 0.0006659235223196447, 0.002118205651640892, 0.0002564437163528055, 0.0005792009178549051, 0.0019248262979090214, 7.794657722115517e-05, 0.001564805512316525, 0.42184388637542725], [0.0017860936932265759, 0.0003986872034147382, 0.0010466970270499587, 0.00010602938709780574, 0.00027892348589375615, 0.004014311823993921, 6.816748646087945e-05, 0.001171948853880167, 0.37222161889076233], [0.0012392906937748194, 0.000447441911092028, 0.0004849039833061397, 0.0001046251054503955, 2.6767898816615343e-05, 0.002990967594087124, 0.0007074871100485325, 0.0026994289364665747, 0.33472374081611633], [0.0034567664843052626, 0.004264825955033302, 0.011721509508788586, 0.0018094680272042751, 0.0011919555254280567, 0.01906663365662098, 0.001162043772637844, 0.007479685824364424, 0.4695979952812195]], [[0.030904555693268776, 0.005233855452388525, 0.005232740193605423, 0.006245039869099855, 0.002885732799768448, 0.0033345373813062906, 0.00021746174024883658, 0.007539806887507439, 0.320516973733902], [0.16324588656425476, 0.0377468541264534, 0.02225053496658802, 0.006403243634849787, 0.0011054535862058401, 0.001307761762291193, 0.0001230977795785293, 0.004360295366495848, 0.19181936979293823], [0.012014487758278847, 0.000724561745300889, 0.0014692392433062196, 0.001263819052837789, 0.0007874579168856144, 0.001040360308252275, 6.0711492551490664e-05, 0.0021830452606081963, 0.35230132937431335], [0.017622312530875206, 0.00336457509547472, 0.0030180918984115124, 0.0009081779280677438, 0.0008655793499201536, 0.0021538741420954466, 0.00027592063997872174, 0.0033041350543498993, 0.3011479079723358], [0.010676038451492786, 0.0018604862270876765, 0.00298200617544353, 0.0008635569247417152, 0.0008081691339612007, 0.0021948975045233965, 0.00016103209054563195, 0.003594336798414588, 0.2945776879787445], [0.009150904603302479, 0.0011663652257993817, 0.004386876709759235, 0.0006134104332886636, 0.00037297443486750126, 0.0016677802195772529, 0.00034677787334658206, 0.004496353212743998, 0.26944512128829956], [0.037863388657569885, 0.006062420085072517, 0.007003359496593475, 0.011017350479960442, 0.0006147028179839253, 0.0012180289486423135, 0.0007586687570437789, 0.008524162694811821, 0.19980841875076294], [0.01809459738433361, 0.01634572632610798, 0.022411169484257698, 0.009017257951200008, 0.0037496103905141354, 0.01253217738121748, 0.0015377674717456102, 0.007608179003000259, 0.4249314069747925]]], [[[0.012588928453624249, 0.0013544835383072495, 0.0015553359407931566, 0.0020706872455775738, 0.002199663547798991, 0.002492997096851468, 0.0010217223316431046, 0.05034833028912544, 0.44348299503326416], [0.007804046850651503, 0.004072785377502441, 0.008133047260344028, 0.0004669491318054497, 0.0002093572256853804, 0.002058142563328147, 0.0003444065514486283, 0.004300117492675781, 0.4514681100845337], [0.003393959952518344, 0.0005457264487631619, 0.0009249283466488123, 0.00021497557463590056, 0.0008176355040632188, 0.001818253193050623, 0.0004902033833786845, 0.0032263316679745913, 0.4439389407634735], [0.0018320564413443208, 0.0003716461651492864, 0.000324055552482605, 0.00014362945512402803, 0.00016216984658967704, 0.000514940416906029, 4.355606506578624e-05, 0.005368218291550875, 0.46559807658195496], [0.0014850726583972573, 0.00011802715744124725, 0.0008217638824135065, 0.00012065221380908042, 4.093854659004137e-05, 0.0005166061455383897, 0.00015953266120050102, 0.0008084694272838533, 0.37677836418151855], [0.003294230904430151, 0.00033279674244113266, 0.0007408987148664892, 0.000442603079136461, 0.00019620837701950222, 0.0004491563013289124, 0.0001495390315540135, 0.0019639015663415194, 0.41839131712913513], [0.006158680655062199, 0.00310391653329134, 0.0015586575027555227, 0.0006172744906507432, 0.0008120969287119806, 0.0013164085103198886, 0.0003573308349587023, 0.00891830213367939, 0.45797470211982727], [0.007743419613689184, 0.009110390208661556, 0.012174246832728386, 0.007811848074197769, 0.005725608207285404, 0.007207364309579134, 0.0025142175145447254, 0.012147991918027401, 0.4359967112541199]], [[0.01588812656700611, 0.0010315702529624104, 0.008586847223341465, 0.0009884057799354196, 0.0003435119579080492, 0.002630555536597967, 0.00039102384471334517, 0.003894477616995573, 0.2348274141550064], [0.009342451579868793, 0.05607994645833969, 0.510791003704071, 0.006808256730437279, 0.001141824177466333, 0.004852733574807644, 0.0011920402757823467, 0.01898159086704254, 0.143728569149971], [0.0028723059222102165, 0.0014120596460998058, 0.009227815084159374, 0.003988068085163832, 0.02966693788766861, 0.011397862806916237, 0.0005270162364467978, 0.006430366076529026, 0.38929644227027893], [0.0012272599851712584, 7.144422852434218e-05, 0.010025410912930965, 0.00013270610361360013, 0.0004065584216732532, 0.0015950807137414813, 0.00019645580323413014, 0.00124370155390352, 0.4234521985054016], [0.0008392810705117881, 5.2232524467399344e-05, 0.02096264623105526, 1.680667446635198e-05, 3.6571407690644264e-05, 0.00014054466737434268, 9.94121000985615e-06, 0.0002865015994757414, 0.35948604345321655], [0.0017474531196057796, 0.00022035287111066282, 0.02963101491332054, 0.00011886267748195678, 7.718217239016667e-05, 0.0004676202079281211, 8.743834041524678e-05, 0.0010765993501991034, 0.3383174538612366], [0.021908197551965714, 0.00498328497633338, 0.019608203321695328, 0.004583290778100491, 0.001847091712988913, 0.004265143536031246, 0.0009079720475710928, 0.011341296136379242, 0.2740553319454193], [0.00017185213800985366, 0.00021722384553868324, 0.0034548414405435324, 0.00024097792629618198, 0.00011669990635709837, 0.0009680627845227718, 0.00010301864676875994, 0.0017863840330392122, 0.49419182538986206]], [[0.0008159451535902917, 0.0019716641400009394, 0.0015863175503909588, 0.0014490805333480239, 0.01784668304026127, 0.015122092328965664, 0.002642808947712183, 0.0014867791905999184, 0.3657147288322449], [0.0002842471585609019, 0.0003834663948509842, 0.030082153156399727, 0.0004621845728252083, 0.0024098469875752926, 0.0069940234534442425, 0.00021518887660931796, 0.0013230638578534126, 0.45084455609321594], [0.00039180953172035515, 0.0003424776077736169, 0.0009246414410881698, 0.0003522321640048176, 0.0026745947543531656, 0.007486753631383181, 0.00020531416521407664, 0.0007922695949673653, 0.2351929247379303], [0.00026364991208538413, 8.898486703401431e-05, 0.0053575304336845875, 9.771686745807528e-05, 0.00042288913391530514, 0.01138501800596714, 6.368692993419245e-05, 0.0005012238980270922, 0.389102578163147], [0.0003404819581191987, 5.4740292398491874e-05, 0.008900810964405537, 0.00010428200766909868, 0.00029593889485113323, 0.005408338736742735, 5.199187216931023e-05, 0.0005899358657188714, 0.4575193524360657], [0.0004817889421246946, 4.532076491159387e-05, 0.0042493995279073715, 0.0002934910880867392, 0.0006679616053588688, 0.016728131100535393, 0.00012264867837075144, 0.0008263042545877397, 0.43796640634536743], [0.0009492544340901077, 0.00017433894390705973, 0.002477735746651888, 0.0005932174972258508, 0.0038767859805375338, 0.012750811874866486, 0.0003385962045285851, 0.002436733106151223, 0.40985995531082153], [3.902604294125922e-05, 0.00020014384062960744, 0.00674806535243988, 0.00017257820582017303, 0.0008056421647779644, 0.004272097256034613, 0.00014288480451796204, 0.00042047977331094444, 0.49143368005752563]], [[0.010265350341796875, 0.0007271991344168782, 0.0020748984534293413, 0.006470965221524239, 0.004647182300686836, 0.02495316043496132, 0.004376586992293596, 0.019086726009845734, 0.39907562732696533], [0.0035913074389100075, 0.0002924537402577698, 0.0014126746682450175, 0.0005315051530487835, 0.00045797027996741235, 0.0024736823979765177, 0.0007246494642458856, 0.0014117991086095572, 0.34815284609794617], [0.0017830331344157457, 0.0006095629651099443, 0.001498137484304607, 0.0011462521506473422, 0.00012160695769125596, 0.0019455889705568552, 0.00025656327488832176, 0.003645409597083926, 0.34520167112350464], [0.0010460170451551676, 0.00042093763477168977, 0.00102064514067024, 0.00017245141498278826, 2.50552075158339e-05, 0.0006248498684726655, 2.0519792087725364e-05, 0.0007345680496655405, 0.21919678151607513], [0.0027897641994059086, 0.00032222093432210386, 0.0009469204233027995, 0.0003079338348470628, 3.647866833489388e-05, 0.0001821361802285537, 2.9321527108550072e-05, 0.0012315426720306277, 0.39664387702941895], [0.00315264449454844, 0.0006893305107951164, 0.0012596087763085961, 0.0010785312624648213, 0.00011652849207166582, 0.00047276317491196096, 0.0001240053679794073, 0.0013188425218686461, 0.34483689069747925], [0.004238822963088751, 0.0010416173608973622, 0.0011608782224357128, 0.001929256715811789, 0.0007014150614850223, 0.002099083038046956, 0.0003314564819447696, 0.0030433230567723513, 0.3350204527378082], [0.009513512253761292, 0.005746804177761078, 0.020702652633190155, 0.006949977483600378, 0.0016167706344276667, 0.005546154920011759, 0.0018596745794638991, 0.012139549478888512, 0.4494446814060211]], [[0.027007190510630608, 0.001144341309554875, 0.004571306053549051, 0.009942305274307728, 0.004773323889821768, 0.015492538921535015, 0.004386585205793381, 0.18447452783584595, 0.34689250588417053], [0.01035662554204464, 0.36357831954956055, 0.030606241896748543, 0.010603401809930801, 0.002265665913000703, 0.014132695272564888, 0.003270332934334874, 0.015869682654738426, 0.16809943318367004], [0.012368589639663696, 0.0005988056655041873, 0.0055748699232935905, 0.0011514169164001942, 0.0003573269641492516, 0.0017117818351835012, 0.0004942324012517929, 0.014243056066334248, 0.33247968554496765], [0.007134624756872654, 9.11016104510054e-05, 0.0019429543754085898, 0.0007092615705914795, 7.831214315956458e-05, 0.0006194607703946531, 0.00010128509165951982, 0.00848400965332985, 0.31726089119911194], [0.005280784796923399, 0.00010671798372641206, 0.0022685693111270666, 0.0003289356245659292, 9.638527262723073e-05, 0.0003200808132532984, 5.77688442717772e-05, 0.0019909897819161415, 0.3979056775569916], [0.00884844921529293, 0.0002136916300514713, 0.0027677733451128006, 0.0008039968088269234, 0.00036250983248464763, 0.0010101236402988434, 0.0002644643245730549, 0.007317489944398403, 0.3504657745361328], [0.003965915646404028, 0.00034100053017027676, 0.0024970900267362595, 0.00020173723169136792, 0.00027977459831163287, 0.0016938039334490895, 0.0002447431907057762, 0.006611271761357784, 0.4386836886405945], [0.0035383636131882668, 0.0025446955114603043, 0.00725580332800746, 0.0040457542054355145, 0.004442990757524967, 0.0037245384883135557, 0.0018970160745084286, 0.004990899004042149, 0.470054566860199]], [[0.01929418556392193, 0.0017930505564436316, 0.0027071412187069654, 0.0029387830290943384, 0.0016958864871412516, 0.00361742009408772, 0.00030662037897855043, 0.0037588845007121563, 0.3377045691013336], [0.011113089509308338, 0.0023214544635266066, 0.0038044159300625324, 0.0016115517355501652, 0.00017502247646916658, 0.0007494862074963748, 0.00010430567635921761, 0.0005412192549556494, 0.051977988332509995], [0.006063234992325306, 0.000846399343572557, 0.0011745269875973463, 0.00033833799534477293, 0.00016545945254620165, 0.0009734552586451173, 6.123600178398192e-05, 0.0014926505973562598, 0.31551551818847656], [0.00262807821854949, 0.0005650873645208776, 0.003037067363038659, 0.00021142713376320899, 5.9324316680431366e-05, 0.0003725021379068494, 1.7115278751589358e-05, 0.0003473295655567199, 0.4170318841934204], [0.004415043164044619, 0.00022474485740531236, 0.002269104588776827, 0.00010095648030983284, 8.960922423284501e-05, 0.000361275568138808, 1.312790482188575e-05, 0.00043595919851213694, 0.4322253465652466], [0.004892313852906227, 0.00023919758677948266, 0.0023272621911019087, 0.00013567914720624685, 0.00016173708718270063, 0.000793195329606533, 3.282621401012875e-05, 0.0005918071838095784, 0.354447603225708], [0.0039558326825499535, 0.0007501658983528614, 0.00278658140450716, 0.0005297908210195601, 0.00022008243831805885, 0.0020868489518761635, 0.0001640199770918116, 0.0008718154858797789, 0.1485101282596588], [0.007429203949868679, 0.0014697505393996835, 0.0045815566554665565, 0.003535981522873044, 0.001900902483612299, 0.004214308690279722, 0.0006586132803931832, 0.002850001212209463, 0.47621262073516846]], [[0.0013866130029782653, 0.005871532950550318, 0.023850541561841965, 0.006831673439592123, 0.01076328195631504, 0.027858398854732513, 0.00746561773121357, 0.0033177388831973076, 0.4308522641658783], [0.0009324098937213421, 0.009005698375403881, 0.12817418575286865, 0.005110134836286306, 0.004926423542201519, 0.017032776027917862, 0.0016021302435547113, 0.003961032256484032, 0.3813273012638092], [0.0014086292358115315, 0.01973111554980278, 0.03312067314982414, 0.0136190727353096, 0.007451701909303665, 0.0669705793261528, 0.004936018958687782, 0.005385294556617737, 0.3732222318649292], [0.0008046383736655116, 0.0021469006314873695, 0.08405700325965881, 0.0008114477968774736, 0.0005295602022670209, 0.019747097045183182, 0.0003779945254791528, 0.0023352308198809624, 0.38533809781074524], [0.0004162238328717649, 0.0031301509588956833, 0.37210801243782043, 0.0004689492052420974, 0.0003051193489227444, 0.004983124788850546, 0.00019488473481032997, 0.003192055271938443, 0.28785377740859985], [0.0011663216864690185, 0.0043210797011852264, 0.23192588984966278, 0.0010645224247127771, 0.0011210808297619224, 0.013649830594658852, 0.0007274510571733117, 0.004436183255165815, 0.34652113914489746], [0.0012923432514071465, 0.005745100788772106, 0.0410291850566864, 0.0061951130628585815, 0.004716198891401291, 0.05092328414320946, 0.0034200085792690516, 0.005871372297406197, 0.3981214165687561], [0.00024203262000810355, 0.0002893440832849592, 0.0017130045453086495, 0.00018771323084365577, 0.0002628451038617641, 0.001201755367219448, 0.00010921725333901122, 0.00047829069080762565, 0.49446070194244385]], [[0.002939850790426135, 0.0005531003698706627, 0.0016929705161601305, 0.00045350485015660524, 0.0005009350716136396, 0.0037033669650554657, 0.0001537794159958139, 0.0003302709956187755, 0.4657132625579834], [0.0008697846787981689, 0.03876110538840294, 0.8116664886474609, 0.0028138107154518366, 0.0003176196478307247, 0.0020559115801006556, 0.00010808309889398515, 0.0012973751872777939, 0.06517297774553299], [0.002932384144514799, 0.001202060142531991, 0.004318029619753361, 0.000601722567807883, 0.0003402053262107074, 0.0024965633638203144, 0.0001309834624407813, 0.0004605480935424566, 0.43529924750328064], [0.0002947629545815289, 8.013160550035536e-05, 0.0008749440312385559, 2.2814278054283932e-05, 1.1411410014261492e-05, 0.0003599145566113293, 5.216239514993504e-06, 7.26806465536356e-05, 0.46771079301834106], [0.00038839029730297625, 0.0002121735451510176, 0.0016546635888516903, 1.7177873814944178e-05, 1.6769132344052196e-05, 7.291803922271356e-05, 3.3862354484881507e-06, 3.388873301446438e-05, 0.49221375584602356], [0.0005696721491403878, 0.00016754624084569514, 0.0013661098200827837, 3.0145627533784136e-05, 2.614959521451965e-05, 0.00011952449131058529, 3.174215180479223e-06, 5.1975275709992275e-05, 0.486555278301239], [0.001554980524815619, 0.0010073400335386395, 0.010658119805157185, 0.00022103890660218894, 0.00018469037604518235, 0.002465177094563842, 4.299525244277902e-05, 0.00028053944697603583, 0.43429407477378845], [0.0016335126711055636, 0.001691757352091372, 0.0028633354231715202, 0.0013467242242768407, 0.0004374742857180536, 0.00250390381552279, 0.0003214747703168541, 0.0013426014920696616, 0.4913995563983917]], [[0.005156632512807846, 0.0037536039017140865, 0.0009086272912099957, 0.0023667102213948965, 0.0039019936230033636, 0.007949050515890121, 0.0007064175442792475, 0.0060774642042815685, 0.4031248390674591], [0.020703626796603203, 0.0038349353708326817, 0.008022149093449116, 0.0007702941074967384, 0.0006618727929890156, 0.0029190373606979847, 0.0002220144378952682, 0.004296736791729927, 0.3731485903263092], [0.02043827436864376, 0.00297157047316432, 0.002060101367533207, 0.0020266524516046047, 0.0015315841883420944, 0.007308500818908215, 0.0005509117036126554, 0.005090559367090464, 0.3903138339519501], [0.007665707264095545, 0.0008497973321937025, 0.000939651858061552, 0.0006695283809676766, 0.0005491375923156738, 0.003032625885680318, 0.00022678243112750351, 0.0044931089505553246, 0.38759922981262207], [0.003972369711846113, 0.0003475842531770468, 0.004646051209419966, 0.000189351529115811, 0.00012068887008354068, 0.00042042802670039237, 5.229484668234363e-05, 0.0005960733979009092, 0.31577935814857483], [0.006405148655176163, 0.0004619395767804235, 0.0032182387076318264, 0.0002953801886178553, 0.00019719215924851596, 0.0009006281034089625, 8.601732406532392e-05, 0.000995539128780365, 0.2914329469203949], [0.011955956928431988, 0.0012952210381627083, 0.003121613524854183, 0.0007634687353856862, 0.0012090912787243724, 0.011508745141327381, 0.000755888526327908, 0.0029435663018375635, 0.2396102249622345], [0.001733526703901589, 0.003085970412939787, 0.010256913490593433, 0.005324626807123423, 0.0047429935075342655, 0.00437204772606492, 0.001355079934000969, 0.005131586920469999, 0.4764973819255829]], [[0.008629594929516315, 0.001708197989501059, 0.002025236841291189, 0.0023719894234091043, 0.0008510857005603611, 0.0009804141009226441, 0.00013176919310353696, 0.0010573595063760877, 0.348469078540802], [0.0036961748264729977, 0.0006609916454181075, 0.006478509400039911, 0.0003824311716016382, 0.00019235412764828652, 0.0003311468753963709, 2.688347376533784e-05, 0.0003698018554132432, 0.4551027715206146], [0.0037085015792399645, 0.00023839814821258187, 0.00044611498015001416, 0.00015975686255842447, 0.00022645543504040688, 0.0004211831546854228, 0.0001540853118058294, 0.001110937213525176, 0.423181414604187], [0.0017346509266644716, 0.00027703019441105425, 0.00022470187104772776, 0.0008069750037975609, 0.00013695089728571475, 0.0004563125839922577, 6.025877155479975e-05, 0.0016847483348101377, 0.43454083800315857], [0.0038286782801151276, 0.0004189589526504278, 0.0016265838639810681, 0.0004575164057314396, 0.0003479748556856066, 0.0005466233124025166, 0.0006431098445318639, 0.0009765605791471899, 0.3458881676197052], [0.009709269739687443, 0.0014678140869364142, 0.0013686555903404951, 0.0012886165641248226, 0.0003045746707357466, 0.0002003006375161931, 0.00017352910072077066, 0.0022574313916265965, 0.4187323749065399], [0.004442513920366764, 0.0018429121701046824, 0.0008071271586231887, 0.0004041954525746405, 0.00020296951697673649, 0.00022633881599176675, 6.789335748180747e-05, 0.0018520749872550368, 0.42731305956840515], [0.009503469802439213, 0.006356164813041687, 0.0069097778759896755, 0.006198044866323471, 0.002521409187465906, 0.0019983239471912384, 0.0015461619477719069, 0.0027641630731523037, 0.46649280190467834]], [[0.009943000040948391, 0.08666341006755829, 0.05113058537244797, 0.15121519565582275, 0.04337833821773529, 0.19687271118164062, 0.04700572043657303, 0.24347195029258728, 0.041926655918359756], [0.0014119517290964723, 0.7438477277755737, 0.18238483369350433, 0.007836255244910717, 0.0014915303327143192, 0.017385834828019142, 0.0015342158731073141, 0.013741030357778072, 0.009541365318000317], [0.0125378193333745, 0.026334155350923538, 0.03486799821257591, 0.008456194773316383, 0.00423596752807498, 0.08268411457538605, 0.005967812146991491, 0.07549329847097397, 0.14900922775268555], [0.010746347717940807, 0.03254609927535057, 0.05686062201857567, 0.01049854513257742, 0.0016719589475542307, 0.013465404510498047, 0.00181117607280612, 0.023636385798454285, 0.18136626482009888], [0.008182276971638203, 0.0268693994730711, 0.061490096151828766, 0.0035834158770740032, 0.0014096557861194015, 0.01323088351637125, 0.0008793769520707428, 0.021163199096918106, 0.33670350909233093], [0.009336317889392376, 0.022399883717298508, 0.0800076499581337, 0.005171736236661673, 0.002033066237345338, 0.024112407118082047, 0.0014970602933317423, 0.028743445873260498, 0.22898197174072266], [0.014653075486421585, 0.09359308332204819, 0.06696392595767975, 0.030087772756814957, 0.008392314426600933, 0.04794955998659134, 0.00445424672216177, 0.0848001018166542, 0.13116835057735443], [0.0005765205714851618, 0.007011388894170523, 0.009128485806286335, 0.003025729674845934, 0.0031256552319973707, 0.0033960165455937386, 0.0015523354522883892, 0.00385962869040668, 0.483430951833725]], [[0.013037633150815964, 0.018690086901187897, 0.004026381298899651, 0.004426171537488699, 0.0033282272052019835, 0.005436718929558992, 0.0027315388433635235, 0.01824168488383293, 0.42915579676628113], [0.025324296206235886, 0.147345632314682, 0.057872604578733444, 0.017510246485471725, 0.007632342632859945, 0.00196324591524899, 0.0030827131122350693, 0.005808958318084478, 0.33767402172088623], [0.00488286791369319, 0.0014228641521185637, 0.0014186428161337972, 0.0016192320035770535, 0.006347362417727709, 0.003868976142257452, 0.0008083171560429037, 0.0023226921912282705, 0.37939590215682983], [0.008429301902651787, 0.0014230565866455436, 0.0018184679793193936, 0.0005790888681076467, 0.0005666679935529828, 0.002539448207244277, 0.0003403763403184712, 0.0008198717259801924, 0.4670635461807251], [0.00721557205542922, 0.0016549703432247043, 0.0027384429704397917, 0.0007532829768024385, 0.00025981050566770136, 0.0031068362295627594, 0.00020074972417205572, 0.0029467649292200804, 0.47148194909095764], [0.005021656863391399, 0.001859129755757749, 0.004142876714468002, 0.0022685411386191845, 0.00035529042361304164, 0.00232604518532753, 0.0007750412332825363, 0.004323585424572229, 0.4724622666835785], [0.008154839277267456, 0.02595994435250759, 0.006805789656937122, 0.003566473489627242, 0.0012965814676135778, 0.0010429797694087029, 0.0018441297579556704, 0.023445017635822296, 0.4350196421146393], [0.0008235423010773957, 0.00044418280594982207, 0.002157955663278699, 0.0002792046871036291, 0.0002449402236379683, 0.00033743807580322027, 0.00018814951181411743, 0.0008484559948556125, 0.49564844369888306]]], [[[0.005237212870270014, 0.008204932324588299, 0.006721633020788431, 0.003457236336544156, 0.0009096243302337825, 0.0022951653227210045, 0.0014071743935346603, 0.004623871762305498, 0.45259833335876465], [0.0015229549026116729, 0.0012927246280014515, 0.006463420111685991, 0.0007905112579464912, 0.0005120253772474825, 0.0020386299584060907, 0.00032930023735389113, 0.0038861543871462345, 0.48021435737609863], [0.003779294667765498, 0.0022959159687161446, 0.003394491970539093, 0.0005672530387528241, 0.00046678452054038644, 0.0006091655814088881, 0.00021471164654940367, 0.0035200235433876514, 0.45558834075927734], [0.001026890822686255, 0.0014788956614211202, 0.001881602220237255, 0.00029091897886246443, 0.0003161149797961116, 0.0003643568779807538, 7.497551996493712e-05, 0.002344898646697402, 0.4841398000717163], [0.0005873802583664656, 0.001616647350601852, 0.0024820810649544, 0.00015130001702345908, 0.00011801149958046153, 0.00048023794079199433, 4.3296000512782484e-05, 0.0012299279915168881, 0.4861294627189636], [0.001079473178833723, 0.002940128790214658, 0.006113069597631693, 0.0005145452450960875, 0.00025237377849407494, 0.0008021829416975379, 0.00014207401545718312, 0.002515962580218911, 0.4718865752220154], [0.006499884184449911, 0.006831463426351547, 0.027302555739879608, 0.0019565920811146498, 0.0003006450133398175, 0.0008454597555100918, 0.0002922608400695026, 0.005557238589972258, 0.41151976585388184], [0.016518589109182358, 0.2012253850698471, 0.10876526683568954, 0.07697532325983047, 0.0358927883207798, 0.05594798922538757, 0.053777195513248444, 0.04287824034690857, 0.08795088529586792]], [[0.003205417888239026, 0.011904819868505001, 0.012091731652617455, 0.006897874176502228, 0.006012268364429474, 0.008998489007353783, 0.007844949141144753, 0.004762975033372641, 0.3378387689590454], [0.002724470105022192, 0.010024412535130978, 0.020794983953237534, 0.0012117858277633786, 0.004923355299979448, 0.002882680157199502, 0.0018071690574288368, 0.0013564227847382426, 0.44120553135871887], [0.0008884118869900703, 0.004966572392731905, 0.002345796674489975, 0.0038140511605888605, 0.029633598402142525, 0.016497116535902023, 0.003562374971807003, 0.002009723801165819, 0.274200439453125], [0.0013292423682287335, 0.0031741235870867968, 0.004420950077474117, 0.0005869693122804165, 0.004190822131931782, 0.004853463731706142, 0.0027528819628059864, 0.0005065901787020266, 0.18304698169231415], [0.0011934485519304872, 0.0011972703505307436, 0.008055170997977257, 0.000421518343500793, 0.0007108537829481065, 0.006399841513484716, 0.0005738665931858122, 0.0006422411534003913, 0.3648245334625244], [0.0035652942024171352, 0.002929875161498785, 0.00750355701893568, 0.003339452436193824, 0.0029645191971212626, 0.018696559593081474, 0.007979441434144974, 0.002393589820712805, 0.3285079300403595], [0.007000735029578209, 0.01993590034544468, 0.005948950070887804, 0.009566698223352432, 0.003581451019272208, 0.0037530423142015934, 0.003943718038499355, 0.014704895205795765, 0.16458885371685028], [0.017075348645448685, 0.041656214743852615, 0.09032460302114487, 0.04640873521566391, 0.058390405029058456, 0.1224188581109047, 0.04562682658433914, 0.03744121640920639, 0.06261271983385086]], [[0.03641815111041069, 0.008052133023738861, 0.0018064351752400398, 0.0030028284527361393, 0.0008273310377262533, 0.0025297130923718214, 0.002727655228227377, 0.5159849524497986, 0.1005997285246849], [0.018927721306681633, 0.010604850016534328, 0.010019751265645027, 0.005446989554911852, 0.0017387995030730963, 0.015060827136039734, 0.002329367445781827, 0.027639588341116905, 0.3296438157558441], [0.027998588979244232, 0.010734878480434418, 0.013445778749883175, 0.008256393484771252, 0.007886757142841816, 0.016468830406665802, 0.005183707922697067, 0.021891770884394646, 0.2058113068342209], [0.024024153128266335, 0.0024413098581135273, 0.007671091705560684, 0.002746078185737133, 0.005442376714199781, 0.009366065263748169, 0.0014803579542785883, 0.007753412704914808, 0.18916790187358856], [0.002812630496919155, 0.0019144911784678698, 0.0052632298320531845, 0.000284150562947616, 0.0019059226615354419, 0.0025077250320464373, 0.0006264394032768905, 0.0011376042384654284, 0.4189135432243347], [0.00345527078025043, 0.0012366781011223793, 0.002847040770575404, 0.00020404857059475034, 0.0014283418422564864, 0.01842554472386837, 0.0013994519831612706, 0.0015247557312250137, 0.12187078595161438], [0.0061354744248092175, 0.003449586918577552, 0.008863916620612144, 0.0025198073126375675, 0.0005928147002123296, 0.02298600971698761, 0.00788487121462822, 0.0038011176511645317, 0.2517220675945282], [0.030755406245589256, 0.050251420587301254, 0.10121684521436691, 0.05514812469482422, 0.044641029089689255, 0.04710926488041878, 0.03097490780055523, 0.08692710101604462, 0.0387251079082489]], [[0.05291523039340973, 0.001984847243875265, 0.001994884107261896, 0.0008217752911150455, 0.0010112912859767675, 0.004462121520191431, 0.002114827511832118, 0.01088201068341732, 0.42574578523635864], [0.009042135439813137, 0.0015484930481761694, 0.0107125174254179, 0.000604674220085144, 8.401161176152527e-05, 0.0026000775396823883, 0.0005113151855766773, 0.0016089691780507565, 0.43598538637161255], [0.04007783904671669, 0.001881256466731429, 0.0024513639509677887, 0.0006194608868099749, 0.0020508689340204, 0.008939762599766254, 0.0008169619832187891, 0.005018626339733601, 0.3767133951187134], [0.013736987486481667, 0.0011371597647666931, 0.004555847495794296, 0.0003044239419978112, 0.0003189755661878735, 0.010978755541145802, 0.00034805815084837377, 0.0018808480817824602, 0.2441849410533905], [0.009031491354107857, 0.0023163161240518093, 0.013704449869692326, 0.0006354933721013367, 0.0006238433998078108, 0.00426264014095068, 0.0003713623736985028, 0.0014617580454796553, 0.22843414545059204], [0.008795831352472305, 0.0017278454033657908, 0.007302428595721722, 0.0005352278240025043, 0.0016677632229402661, 0.01279748696833849, 0.0014263754710555077, 0.0007649898761883378, 0.1651044487953186], [0.02172226458787918, 0.0026696454733610153, 0.006795316468924284, 0.0023306121584028006, 0.00031043755006976426, 0.013657729141414165, 0.0035940948873758316, 0.003131263656541705, 0.306375116109848], [0.06075282767415047, 0.04756716638803482, 0.024505963549017906, 0.04111969843506813, 0.0559094063937664, 0.0402311272919178, 0.08756700903177261, 0.04782210290431976, 0.1071636900305748]], [[5.040438554715365e-05, 0.0021397005766630173, 0.00895668100565672, 0.000232657344895415, 0.00023611639335285872, 0.002490076469257474, 0.00017552664212416857, 0.0028803490567952394, 0.48868849873542786], [0.0003890593652613461, 0.000693493231665343, 0.0018270111177116632, 0.0003544257197063416, 0.0003338260285090655, 0.0014996877871453762, 0.0002062274288618937, 0.0028919950127601624, 0.4902200996875763], [0.000591022486332804, 0.005605257581919432, 0.013088002800941467, 0.0014561369316652417, 0.0010515452595427632, 0.006971160415560007, 0.0012339871609583497, 0.007519707549363375, 0.46225234866142273], [6.160011980682611e-05, 0.0006976075819693506, 0.004922997672110796, 0.00011092484783148393, 0.00012217674520798028, 0.0016010383842512965, 8.087490277830511e-05, 0.0013516803737729788, 0.4888431429862976], [0.000166792786330916, 0.0015397928655147552, 0.007944038137793541, 0.00013711916108150035, 0.00011599745630519465, 0.0006569723482243717, 0.00010692119394661859, 0.0019003862980753183, 0.4794031083583832], [0.0002697754534892738, 0.003752934280782938, 0.008374127559363842, 0.00041484954999759793, 0.00019416961004026234, 0.0014724100474268198, 0.0003446594637352973, 0.0032207488548010588, 0.4782703220844269], [0.0003798682300839573, 0.0012959493324160576, 0.0038639199919998646, 0.0003593916189856827, 0.00022305548191070557, 0.002155375201255083, 0.0004883090150542557, 0.0025148089043796062, 0.48420318961143494], [0.026025498285889626, 0.11502338945865631, 0.13907143473625183, 0.08255776762962341, 0.03488677367568016, 0.058035679161548615, 0.033057257533073425, 0.10341017693281174, 0.020576415583491325]], [[0.0019794555846601725, 0.0003886910271830857, 0.0012518479488790035, 0.000655899231787771, 0.00027334477636031806, 0.0012694813776761293, 0.00015124864876270294, 0.0007694882224313915, 0.4904400408267975], [0.0024472924415022135, 0.00020496420620474964, 0.0007056475151330233, 0.00013834694982506335, 6.45154868834652e-05, 0.00045146237243898213, 7.685282616876066e-05, 0.0004525057156570256, 0.4852296710014343], [0.005546792410314083, 0.0005828047287650406, 0.0036694954615086317, 0.0003416200925130397, 6.882456364110112e-05, 0.00035175622906535864, 6.822581781307235e-05, 0.0007095675682649016, 0.4506056010723114], [0.0010218201205134392, 0.00012966724170837551, 0.0016478016041219234, 6.639950152020901e-05, 3.411811121623032e-05, 0.00024926173500716686, 1.4227876818040386e-05, 0.00019059350597672164, 0.4902417063713074], [0.003501582657918334, 0.0002870450261980295, 0.0022576579358428717, 9.947834041668102e-05, 9.544621570967138e-05, 0.0002486974117346108, 5.0738548452500254e-05, 0.00028689997270703316, 0.4697716534137726], [0.004642265383154154, 0.00047803219058550894, 0.005091956816613674, 0.0001775922137312591, 0.0001717896229820326, 0.00044829200487583876, 6.620610656682402e-05, 0.0005473966593854129, 0.4605410099029541], [0.003942297305911779, 0.0007076837355270982, 0.008048424497246742, 0.0001359309972031042, 0.0003430764772929251, 0.003192560514435172, 0.00015848218754399568, 0.0003523774794302881, 0.3234092891216278], [0.03302721306681633, 0.08639654517173767, 0.054601170122623444, 0.08774027228355408, 0.06215977296233177, 0.08575105667114258, 0.09412454068660736, 0.05902286618947983, 0.05281829461455345]], [[0.002896580845117569, 0.014758261851966381, 0.002491266932338476, 0.004866006784141064, 0.030563633888959885, 0.005324942991137505, 0.005761244799941778, 0.00210519228130579, 0.09599211812019348], [0.016279008239507675, 0.04880198463797569, 0.014401706866919994, 0.011640900745987892, 0.01635190285742283, 0.005985967814922333, 0.0052584814839065075, 0.003336048685014248, 0.2932893931865692], [0.0018675478640943766, 0.002484744181856513, 0.002930452348664403, 0.0023932955227792263, 0.03036515973508358, 0.006949533708393574, 0.0023170437198132277, 0.0013139477232471108, 0.22744709253311157], [0.0028463867492973804, 0.006073690019547939, 0.005173449870198965, 0.0015207557007670403, 0.004376476164907217, 0.010370762087404728, 0.0016389323864132166, 0.0016645870637148619, 0.25066664814949036], [0.0011369027197360992, 0.0021319715306162834, 0.004433348774909973, 0.0006461366428993642, 0.0007294805254787207, 0.0038345232605934143, 0.0003027234924957156, 0.0010619123931974173, 0.2531304359436035], [0.0036597352009266615, 0.004679576028138399, 0.009837104938924313, 0.0026691535022109747, 0.0023126774467527866, 0.004960954189300537, 0.003464070614427328, 0.007896728813648224, 0.29014158248901367], [0.008345572277903557, 0.017568746581673622, 0.008071848191320896, 0.025688832625746727, 0.010864408686757088, 0.002627164125442505, 0.0021679294295608997, 0.008575713261961937, 0.14276736974716187], [0.005811500363051891, 0.07754436135292053, 0.08255141228437424, 0.0513850562274456, 0.13005733489990234, 0.1542530506849289, 0.08939344435930252, 0.04182568937540054, 0.04757062718272209]], [[0.0007625267608091235, 0.0007473639561794698, 0.002661657752469182, 0.0004905101377516985, 0.00019620751845650375, 0.0008391743176616728, 0.00020052216132171452, 0.0018509100191295147, 0.4909779727458954], [0.00043426849879324436, 0.002019111532717943, 0.0071866740472614765, 0.0008678800077177584, 0.00010529885184951127, 0.00035610012128017843, 0.00010900545748881996, 0.008771699853241444, 0.47931337356567383], [0.0015254586469382048, 0.0017632500967010856, 0.00968964397907257, 0.000147362778079696, 3.1503583159064874e-05, 0.0003131706907879561, 2.6138917746720836e-05, 0.0011554609518498182, 0.48007282614707947], [0.0004753679677378386, 0.0005127072799950838, 0.0028559572529047728, 5.456441795104183e-05, 3.32090312440414e-05, 0.00012077058636350557, 1.2964500456291717e-05, 0.0005332885775715113, 0.49256739020347595], [0.0009278013603761792, 0.0002872979093808681, 0.004842829424887896, 2.2579160940949805e-05, 1.3637698430102319e-05, 0.00013281195424497128, 2.1045088942628354e-05, 0.00023501082614529878, 0.49199047684669495], [0.0015131620457395911, 0.0007497292244806886, 0.006425360217690468, 9.67730738921091e-05, 3.854112947010435e-05, 0.00026940027601085603, 5.812298695673235e-05, 0.0005062506534159184, 0.4816824197769165], [0.0018249948043376207, 0.002975980518385768, 0.025478724390268326, 0.0014519713586196303, 0.000921664759516716, 0.002535453299060464, 0.0004907372058369219, 0.004317663609981537, 0.44556838274002075], [0.015875382348895073, 0.08117321878671646, 0.15265372395515442, 0.11273261159658432, 0.06255240738391876, 0.061273347586393356, 0.0938355028629303, 0.0623948834836483, 0.03466196730732918]], [[0.0033791474997997284, 0.004582847468554974, 0.003426425391808152, 0.004246036987751722, 0.00424323370680213, 0.0056143151596188545, 0.003030066844075918, 0.016488224267959595, 0.47164738178253174], [0.006413278169929981, 0.003272519214078784, 0.003110843012109399, 0.0008817933849059045, 0.0004821987240575254, 0.001507546054199338, 0.0002947902830783278, 0.008211481384932995, 0.4588344991207123], [0.010251188650727272, 0.0025566192343831062, 0.004620653111487627, 0.001298433286137879, 0.0008595691761001945, 0.0018477147677913308, 0.0008575071697123349, 0.020378297194838524, 0.3563784062862396], [0.00885496474802494, 0.0013921349309384823, 0.0040003652684390545, 0.0003038168651983142, 0.0003060829476453364, 0.0005859033553861082, 0.00016064838564489037, 0.006968801375478506, 0.37125954031944275], [0.0016649097669869661, 0.0002731268177740276, 0.000957038311753422, 0.00015346088912338018, 0.00010003867646446452, 0.0004095886251889169, 7.774698315188289e-05, 0.0005874835187569261, 0.4576214849948883], [0.0031203110702335835, 0.0004939856007695198, 0.001712761353701353, 0.0003070902603212744, 0.00013497289910446852, 0.0002767530095297843, 0.00015221690409816802, 0.0014088372699916363, 0.45046287775039673], [0.008723906241357327, 0.0023722914047539234, 0.005307583138346672, 0.0014423956163227558, 0.00028802952147088945, 0.0011578716803342104, 0.0002818116918206215, 0.006803450174629688, 0.37336069345474243], [0.02493949420750141, 0.11620031297206879, 0.04944377392530441, 0.11865917593240738, 0.03771592304110527, 0.08430953323841095, 0.06298968940973282, 0.1445235311985016, 0.030583694577217102]], [[0.019269606098532677, 0.00725571857765317, 0.0066689965315163136, 0.00751078687608242, 0.0048647779040038586, 0.002715942682698369, 0.0013545786496251822, 0.0009377734386362135, 0.4067264497280121], [0.014850589446723461, 0.0007954047177918255, 0.002272674348205328, 0.001676072715781629, 0.0007673733052797616, 0.0008293810533359647, 0.0003126039227936417, 0.004069962073117495, 0.4549323618412018], [0.007937241345643997, 0.0007685436285100877, 0.0012934806291013956, 0.0003093542472925037, 0.0010962937958538532, 0.0011660130694508553, 0.0010253441287204623, 0.0008749557309783995, 0.4423920810222626], [0.002921934938058257, 0.0001419578184140846, 0.0004929805872961879, 0.00016105009126476943, 2.8721247872454114e-05, 0.0002528908080421388, 0.00011184791219420731, 0.0009949568193405867, 0.4591265022754669], [0.032425396144390106, 0.0006863664602860808, 0.002291613258421421, 0.0006443239981308579, 0.00025190733140334487, 0.0004435233131516725, 0.0010602165712043643, 0.0007373038679361343, 0.1700630933046341], [0.022167976945638657, 0.0005000227829441428, 0.000897312187589705, 0.000802194292191416, 0.00028129349811933935, 0.0001393986021867022, 0.0002552941150497645, 0.0026496597565710545, 0.4467669725418091], [0.014680979773402214, 0.0009328353917226195, 0.0022696952801197767, 0.0008816945482976735, 0.00023396973847411573, 0.0007060410571284592, 0.00020840123761445284, 0.001735792844556272, 0.4654737114906311], [0.10679879784584045, 0.06203247979283333, 0.034127745777368546, 0.05610756203532219, 0.07080429047346115, 0.07978823781013489, 0.08210393041372299, 0.06484825909137726, 0.07475675642490387]], [[0.0008673241245560348, 0.00025335082318633795, 0.0011092043714597821, 0.00029223907040432096, 8.393027383135632e-05, 0.0003506191133055836, 8.632068056613207e-05, 0.0009567261440679431, 0.480203777551651], [0.00031348250922746956, 0.0002760564675554633, 0.0007404544157907367, 0.00025952429859898984, 0.00011853656178573146, 0.0003784389409702271, 0.00012961360334884375, 0.00038633306394331157, 0.47311708331108093], [0.0015080039156600833, 0.00011031392932636663, 0.00035811110865324736, 5.836683340021409e-05, 9.118313755607232e-05, 0.0004463361983653158, 5.205834531807341e-05, 0.0008099426631815732, 0.469679594039917], [0.00014411115262191743, 1.797882214304991e-05, 5.547910768655129e-05, 8.314833394251764e-06, 8.024654562177602e-06, 9.283597319154069e-05, 7.963246389408596e-06, 0.00011805116810137406, 0.4926674962043762], [0.0002528421755414456, 8.991628419607878e-05, 0.00015268342394847423, 2.1105477571836673e-05, 3.551561894710176e-05, 0.0003127124800812453, 3.562685378710739e-05, 0.0001280292053706944, 0.4921146035194397], [0.000621431099716574, 0.00014864774129819125, 0.00023478243383578956, 4.270831777830608e-05, 5.6734777899691835e-05, 0.00041610802873037755, 4.376408105599694e-05, 0.00043217334314249456, 0.4898018538951874], [0.002523797797039151, 0.0001109023141907528, 0.00031307057361118495, 0.00011027910659322515, 9.871073416434228e-05, 0.001450195093639195, 0.00010195697541348636, 0.00030163241899572313, 0.4784378111362457], [0.037801533937454224, 0.04057252034544945, 0.056319110095500946, 0.04955459013581276, 0.014272769913077354, 0.03410734981298447, 0.02596845105290413, 0.03067133203148842, 0.0691823959350586]], [[0.004676518030464649, 0.0031360462307929993, 0.00363340275362134, 0.003114111255854368, 0.0012234658934175968, 0.0020019891671836376, 0.0012811042834073305, 0.001659985980950296, 0.46609458327293396], [0.01576705276966095, 0.008137473836541176, 0.00823168084025383, 0.002878444269299507, 0.001097788685001433, 0.0012301240349188447, 0.0005687138182111084, 0.002053564880043268, 0.4531867504119873], [0.00821777805685997, 0.0020071391481906176, 0.003210144117474556, 0.0022897415328770876, 0.0020597458351403475, 0.0018156185979023576, 0.0007164882845245302, 0.0025200650561600924, 0.4308318793773651], [0.003607742488384247, 0.002082864986732602, 0.002438334282487631, 0.0006609036354348063, 0.00048501777928322554, 0.0006028188508935273, 0.00021439116972032934, 0.0012559863971546292, 0.4611201286315918], [0.0006512915715575218, 0.0003765949804801494, 0.001882007229141891, 0.00011552838259376585, 7.678028487134725e-05, 0.00023868531570769846, 4.377133154775947e-05, 0.00032607774483039975, 0.4857759475708008], [0.001743889064528048, 0.0008932267082855105, 0.0020098548848181963, 0.0003422063891775906, 0.00016670221521053463, 0.0004903741646558046, 0.00020190900249872357, 0.0013927064137533307, 0.47526586055755615], [0.006617892999202013, 0.012943742796778679, 0.010595467872917652, 0.00929759070277214, 0.0028671440668404102, 0.0015740265371277928, 0.0010232983622699976, 0.0028833618853241205, 0.40054240822792053], [0.06152573227882385, 0.08685911446809769, 0.07395310699939728, 0.1013396754860878, 0.056508619338274, 0.07045254111289978, 0.05788153409957886, 0.08833646029233932, 0.036645811051130295]]]], \\\"left_text\\\": [\\\"Weil\\\", \\\"sie\\\", \\\"zu\\\", \\\"viel\\\", \\\"geg\\\", \\\"##essen\\\", \\\"hat\\\", \\\"[SEP]\\\"], \\\"right_text\\\": [\\\"[CLS]\\\", \\\"Die\\\", \\\"Katze\\\", \\\"ist\\\", \\\"sehr\\\", \\\"traur\\\", \\\"##ig\\\", \\\".\\\", \\\"[SEP]\\\"]}], \\\"default_filter\\\": \\\"0\\\", \\\"display_mode\\\": \\\"light\\\", \\\"root_div_id\\\": \\\"bertviz-1c2f4bcb045f497a93360604060acb6a\\\"} is a template marker that is replaced by actual params.\\n\",\"        const config = {};\\n\",\"\\n\",\"        const MIN_X = 0;\\n\",\"        const MIN_Y = 0;\\n\",\"        const DIV_WIDTH = 970;\\n\",\"        const THUMBNAIL_PADDING = 5;\\n\",\"        const DETAIL_WIDTH = 300;\\n\",\"        const DETAIL_ATTENTION_WIDTH = 140;\\n\",\"        const DETAIL_BOX_WIDTH = 80;\\n\",\"        const DETAIL_BOX_HEIGHT = 18;\\n\",\"        const DETAIL_PADDING = 28;\\n\",\"        const ATTN_PADDING = 0;\\n\",\"        const DETAIL_HEADING_HEIGHT = 25;\\n\",\"        const DETAIL_HEADING_TEXT_SIZE = 15;\\n\",\"        const TEXT_SIZE = 13;\\n\",\"        const LAYER_COLORS = d3.schemeCategory10;\\n\",\"        const PALETTE = {\\n\",\"            'light': {\\n\",\"                'text': 'black',\\n\",\"                'background': 'white',\\n\",\"                'highlight': '#F5F5F5'\\n\",\"            },\\n\",\"            'dark': {\\n\",\"                'text': '#bbb',\\n\",\"                'background': 'black',\\n\",\"                'highlight': '#222'\\n\",\"            }\\n\",\"        }\\n\",\"\\n\",\"        function render() {\\n\",\"\\n\",\"            // Set global state variables\\n\",\"\\n\",\"            var attData = config.attention[config.filter];\\n\",\"            config.leftText = attData.left_text;\\n\",\"            config.rightText = attData.right_text;\\n\",\"            config.attn = attData.attn;\\n\",\"            config.numLayers = config.attn.length;\\n\",\"            config.numHeads = config.attn[0].length;\\n\",\"            config.thumbnailBoxHeight = 7 * (12 / config.numHeads);\\n\",\"            config.thumbnailHeight = Math.max(config.leftText.length, config.rightText.length) * config.thumbnailBoxHeight + 2 * THUMBNAIL_PADDING;\\n\",\"            config.thumbnailWidth = DIV_WIDTH / config.numHeads;\\n\",\"            config.detailHeight = Math.max(config.leftText.length, config.rightText.length) * DETAIL_BOX_HEIGHT + 2 * DETAIL_PADDING + DETAIL_HEADING_HEIGHT;\\n\",\"            config.divHeight = config.numLayers * config.thumbnailHeight;\\n\",\"\\n\",\"            const vis = $(`#${config.rootDivId} #vis`)\\n\",\"            vis.empty();\\n\",\"            vis.attr(\\\"height\\\", config.divHeight);\\n\",\"            config.svg = d3.select(`#${config.rootDivId} #vis`)\\n\",\"                .append('svg')\\n\",\"                .attr(\\\"width\\\", DIV_WIDTH)\\n\",\"                .attr(\\\"height\\\", config.divHeight)\\n\",\"              .attr(\\\"fill\\\", getBackgroundColor());\\n\",\"\\n\",\"            var i;\\n\",\"            var j;\\n\",\"            for (i = 0; i \\u003c config.numLayers; i++) {\\n\",\"                for (j = 0; j \\u003c config.numHeads; j++) {\\n\",\"                    renderThumbnail(i, j);\\n\",\"                }\\n\",\"            }\\n\",\"        }\\n\",\"\\n\",\"        function renderThumbnail(layerIndex, headIndex) {\\n\",\"            var x = headIndex * config.thumbnailWidth;\\n\",\"            var y = layerIndex * config.thumbnailHeight;\\n\",\"            renderThumbnailAttn(x, y, config.attn[layerIndex][headIndex], layerIndex, headIndex);\\n\",\"        }\\n\",\"\\n\",\"        function renderDetail(att, layerIndex, headIndex) {\\n\",\"            var xOffset = .8 * config.thumbnailWidth;\\n\",\"            var maxX = DIV_WIDTH;\\n\",\"            var maxY = config.divHeight;\\n\",\"            var leftPos = (headIndex / config.numHeads) * DIV_WIDTH\\n\",\"            var x = leftPos + THUMBNAIL_PADDING + xOffset;\\n\",\"            if (x \\u003c MIN_X) {\\n\",\"                x = MIN_X;\\n\",\"            } else if (x + DETAIL_WIDTH \\u003e maxX) {\\n\",\"                x = leftPos + THUMBNAIL_PADDING - DETAIL_WIDTH + 8;\\n\",\"            }\\n\",\"            var posLeftText = x;\\n\",\"            var posAttention = posLeftText + DETAIL_BOX_WIDTH;\\n\",\"            var posRightText = posAttention + DETAIL_ATTENTION_WIDTH;\\n\",\"            var thumbnailHeight = Math.max(config.leftText.length, config.rightText.length) * config.thumbnailBoxHeight + 2 * THUMBNAIL_PADDING;\\n\",\"            var yOffset = 20;\\n\",\"            var y = layerIndex * thumbnailHeight + THUMBNAIL_PADDING + yOffset;\\n\",\"            if (y \\u003c MIN_Y) {\\n\",\"                y = MIN_Y;\\n\",\"            } else if (y + config.detailHeight \\u003e maxY) {\\n\",\"                y = maxY - config.detailHeight;\\n\",\"            }\\n\",\"            renderDetailFrame(x, y, layerIndex);\\n\",\"            renderDetailHeading(x, y + Math.max(config.leftText.length, config.rightText.length) *\\n\",\"                DETAIL_BOX_HEIGHT, layerIndex, headIndex);\\n\",\"            renderDetailText(config.leftText, \\\"leftText\\\", posLeftText, y + DETAIL_PADDING, layerIndex);\\n\",\"            renderDetailAttn(posAttention, y + DETAIL_PADDING, att, layerIndex, headIndex);\\n\",\"            renderDetailText(config.rightText, \\\"rightText\\\", posRightText, y + DETAIL_PADDING, layerIndex);\\n\",\"        }\\n\",\"\\n\",\"        function renderDetailHeading(x, y, layerIndex, headIndex) {\\n\",\"            var fillColor = getTextColor();\\n\",\"            config.svg.append(\\\"text\\\")\\n\",\"                .classed(\\\"detail\\\", true)\\n\",\"                .text('Layer ' + layerIndex + \\\", Head \\\" + headIndex)\\n\",\"                .attr(\\\"font-size\\\", DETAIL_HEADING_TEXT_SIZE + \\\"px\\\")\\n\",\"                .style(\\\"cursor\\\", \\\"default\\\")\\n\",\"                .style(\\\"-webkit-user-select\\\", \\\"none\\\")\\n\",\"                .attr(\\\"fill\\\", fillColor)\\n\",\"                .attr(\\\"x\\\", x + DETAIL_WIDTH / 2)\\n\",\"                .attr(\\\"text-anchor\\\", \\\"middle\\\")\\n\",\"                .attr(\\\"y\\\", y + 40)\\n\",\"                .attr(\\\"height\\\", DETAIL_HEADING_HEIGHT)\\n\",\"                .attr(\\\"width\\\", DETAIL_WIDTH)\\n\",\"                .attr(\\\"dy\\\", DETAIL_HEADING_TEXT_SIZE);\\n\",\"        }\\n\",\"\\n\",\"        function renderDetailText(text, id, x, y, layerIndex) {\\n\",\"            var tokenContainer = config.svg.append(\\\"svg:g\\\")\\n\",\"                .classed(\\\"detail\\\", true)\\n\",\"                .selectAll(\\\"g\\\")\\n\",\"                .data(text)\\n\",\"                .enter()\\n\",\"                .append(\\\"g\\\");\\n\",\"\\n\",\"            var fillColor = getTextColor();\\n\",\"\\n\",\"            tokenContainer.append(\\\"rect\\\")\\n\",\"                .classed(\\\"highlight\\\", true)\\n\",\"                .attr(\\\"fill\\\", fillColor)\\n\",\"                .style(\\\"opacity\\\", 0.0)\\n\",\"                .attr(\\\"height\\\", DETAIL_BOX_HEIGHT)\\n\",\"                .attr(\\\"width\\\", DETAIL_BOX_WIDTH)\\n\",\"                .attr(\\\"x\\\", x)\\n\",\"                .attr(\\\"y\\\", function (d, i) {\\n\",\"                    return y + i * DETAIL_BOX_HEIGHT;\\n\",\"                });\\n\",\"\\n\",\"            var textContainer = tokenContainer.append(\\\"text\\\")\\n\",\"                .classed(\\\"token\\\", true)\\n\",\"                .text(function (d) {\\n\",\"                    return d;\\n\",\"                })\\n\",\"                .attr(\\\"font-size\\\", TEXT_SIZE + \\\"px\\\")\\n\",\"                .style(\\\"cursor\\\", \\\"default\\\")\\n\",\"                .style(\\\"-webkit-user-select\\\", \\\"none\\\")\\n\",\"                .attr(\\\"fill\\\", fillColor)\\n\",\"                .attr(\\\"x\\\", x)\\n\",\"                .attr(\\\"y\\\", function (d, i) {\\n\",\"                    return i * DETAIL_BOX_HEIGHT + y;\\n\",\"                })\\n\",\"                .attr(\\\"height\\\", DETAIL_BOX_HEIGHT)\\n\",\"                .attr(\\\"width\\\", DETAIL_BOX_WIDTH)\\n\",\"                .attr(\\\"dy\\\", TEXT_SIZE);\\n\",\"\\n\",\"            if (id == \\\"leftText\\\") {\\n\",\"                textContainer.style(\\\"text-anchor\\\", \\\"end\\\")\\n\",\"                    .attr(\\\"dx\\\", DETAIL_BOX_WIDTH - 2);\\n\",\"                tokenContainer.on(\\\"mouseover\\\", function (d, index) {\\n\",\"                    highlightSelection(index);\\n\",\"                });\\n\",\"                tokenContainer.on(\\\"mouseleave\\\", function () {\\n\",\"                    unhighlightSelection();\\n\",\"                });\\n\",\"            }\\n\",\"        }\\n\",\"\\n\",\"        function highlightSelection(index) {\\n\",\"            config.svg.select(\\\"#leftText\\\")\\n\",\"                .selectAll(\\\".highlight\\\")\\n\",\"                .style(\\\"opacity\\\", function (d, i) {\\n\",\"                    return i == index ? 1.0 : 0.0;\\n\",\"                });\\n\",\"            config.svg.selectAll(\\\".attn-line-group\\\")\\n\",\"                .style(\\\"opacity\\\", function (d, i) {\\n\",\"                    return i == index ? 1.0 : 0.0;\\n\",\"                });\\n\",\"        }\\n\",\"\\n\",\"        function unhighlightSelection() {\\n\",\"            config.svg.select(\\\"#leftText\\\")\\n\",\"                .selectAll(\\\".highlight\\\")\\n\",\"                .style(\\\"opacity\\\", 0.0);\\n\",\"            config.svg.selectAll(\\\".attn-line-group\\\")\\n\",\"                .style(\\\"opacity\\\", 1);\\n\",\"        }\\n\",\"\\n\",\"        function renderThumbnailAttn(x, y, att, layerIndex, headIndex) {\\n\",\"\\n\",\"            var attnContainer = config.svg.append(\\\"svg:g\\\");\\n\",\"\\n\",\"            var attnBackground = attnContainer.append(\\\"rect\\\")\\n\",\"                .attr(\\\"id\\\", 'attn_background_' + layerIndex + \\\"_\\\" + headIndex)\\n\",\"                .classed(\\\"attn_background\\\", true)\\n\",\"                .attr(\\\"x\\\", x)\\n\",\"                .attr(\\\"y\\\", y)\\n\",\"                .attr(\\\"height\\\", config.thumbnailHeight)\\n\",\"                .attr(\\\"width\\\", config.thumbnailWidth)\\n\",\"                .attr(\\\"stroke-width\\\", 2)\\n\",\"                .attr(\\\"stroke\\\", getLayerColor(layerIndex))\\n\",\"                .attr(\\\"stroke-opacity\\\", 0)\\n\",\"                .attr(\\\"fill\\\", getBackgroundColor());\\n\",\"            var x1 = x + THUMBNAIL_PADDING;\\n\",\"            var x2 = x1 + config.thumbnailWidth - 14;\\n\",\"            var y1 = y + THUMBNAIL_PADDING;\\n\",\"\\n\",\"            attnContainer.selectAll(\\\"g\\\")\\n\",\"                .data(att)\\n\",\"                .enter()\\n\",\"                .append(\\\"g\\\") // Add group for each source token\\n\",\"                .attr(\\\"source-index\\\", function (d, i) { // Save index of source token\\n\",\"                    return i;\\n\",\"                })\\n\",\"                .selectAll(\\\"line\\\")\\n\",\"                .data(function (d) { // Loop over all target tokens\\n\",\"                    return d;\\n\",\"                })\\n\",\"                .enter() // When entering\\n\",\"                .append(\\\"line\\\")\\n\",\"                .attr(\\\"x1\\\", x1)\\n\",\"                .attr(\\\"y1\\\", function (d) {\\n\",\"                    var sourceIndex = +this.parentNode.getAttribute(\\\"source-index\\\");\\n\",\"                    return y1 + (sourceIndex + .5) * config.thumbnailBoxHeight;\\n\",\"                })\\n\",\"                .attr(\\\"x2\\\", x2)\\n\",\"                .attr(\\\"y2\\\", function (d, targetIndex) {\\n\",\"                    return y1 + (targetIndex + .5) * config.thumbnailBoxHeight;\\n\",\"                })\\n\",\"                .attr(\\\"stroke-width\\\", 2.2)\\n\",\"                .attr(\\\"stroke\\\", getLayerColor(layerIndex))\\n\",\"                .attr(\\\"stroke-opacity\\\", function (d) {\\n\",\"                    return d;\\n\",\"                });\\n\",\"\\n\",\"            var clickRegion = attnContainer.append(\\\"rect\\\")\\n\",\"                .attr(\\\"x\\\", x)\\n\",\"                .attr(\\\"y\\\", y)\\n\",\"                .attr(\\\"height\\\", config.thumbnailHeight)\\n\",\"                .attr(\\\"width\\\", config.thumbnailWidth)\\n\",\"                .style(\\\"opacity\\\", 0);\\n\",\"\\n\",\"            clickRegion.on(\\\"click\\\", function (d, index) {\\n\",\"                var attnBackgroundOther = config.svg.selectAll(\\\".attn_background\\\");\\n\",\"                attnBackgroundOther.attr(\\\"fill\\\", getBackgroundColor());\\n\",\"                attnBackgroundOther.attr(\\\"stroke-opacity\\\", 0);\\n\",\"\\n\",\"                config.svg.selectAll(\\\".detail\\\").remove();\\n\",\"                if (config.detail_layer != layerIndex || config.detail_head != headIndex) {\\n\",\"                    renderDetail(att, layerIndex, headIndex);\\n\",\"                    config.detail_layer = layerIndex;\\n\",\"                    config.detail_head = headIndex;\\n\",\"                    attnBackground.attr(\\\"fill\\\", getHighlightColor());\\n\",\"                    attnBackground.attr(\\\"stroke-opacity\\\", .8);\\n\",\"                } else {\\n\",\"                    config.detail_layer = null;\\n\",\"                    config.detail_head = null;\\n\",\"                    attnBackground.attr(\\\"fill\\\", getBackgroundColor());\\n\",\"                    attnBackground.attr(\\\"stroke-opacity\\\", 0);\\n\",\"                }\\n\",\"            });\\n\",\"\\n\",\"            clickRegion.on(\\\"mouseover\\\", function (d) {\\n\",\"                d3.select(this).style(\\\"cursor\\\", \\\"pointer\\\");\\n\",\"            });\\n\",\"        }\\n\",\"\\n\",\"        function renderDetailFrame(x, y, layerIndex) {\\n\",\"            var detailFrame = config.svg.append(\\\"rect\\\")\\n\",\"                .classed(\\\"detail\\\", true)\\n\",\"                .attr(\\\"x\\\", x)\\n\",\"                .attr(\\\"y\\\", y)\\n\",\"                .attr(\\\"height\\\", config.detailHeight)\\n\",\"                .attr(\\\"width\\\", DETAIL_WIDTH)\\n\",\"                .style(\\\"opacity\\\", 1)\\n\",\"                .attr(\\\"stroke-width\\\", 1.5)\\n\",\"                .attr(\\\"stroke-opacity\\\", 0.7)\\n\",\"                .attr(\\\"stroke\\\", getLayerColor(layerIndex));\\n\",\"        }\\n\",\"\\n\",\"        function renderDetailAttn(x, y, att, layerIndex) {\\n\",\"            var attnContainer = config.svg.append(\\\"svg:g\\\")\\n\",\"                .classed(\\\"detail\\\", true)\\n\",\"                .attr(\\\"pointer-events\\\", \\\"none\\\");\\n\",\"            attnContainer.selectAll(\\\"g\\\")\\n\",\"                .data(att)\\n\",\"                .enter()\\n\",\"                .append(\\\"g\\\") // Add group for each source token\\n\",\"                .classed('attn-line-group', true)\\n\",\"                .attr(\\\"source-index\\\", function (d, i) { // Save index of source token\\n\",\"                    return i;\\n\",\"                })\\n\",\"                .selectAll(\\\"line\\\")\\n\",\"                .data(function (d) { // Loop over all target tokens\\n\",\"                    return d;\\n\",\"                })\\n\",\"                .enter()\\n\",\"                .append(\\\"line\\\")\\n\",\"                .attr(\\\"x1\\\", x + ATTN_PADDING)\\n\",\"                .attr(\\\"y1\\\", function (d) {\\n\",\"                    var sourceIndex = +this.parentNode.getAttribute(\\\"source-index\\\");\\n\",\"                    return y + (sourceIndex + .5) * DETAIL_BOX_HEIGHT;\\n\",\"                })\\n\",\"                .attr(\\\"x2\\\", x + DETAIL_ATTENTION_WIDTH - ATTN_PADDING)\\n\",\"                .attr(\\\"y2\\\", function (d, targetIndex) {\\n\",\"                    return y + (targetIndex + .5) * DETAIL_BOX_HEIGHT;\\n\",\"                })\\n\",\"                .attr(\\\"stroke-width\\\", 2.2)\\n\",\"                .attr(\\\"stroke\\\", getLayerColor(layerIndex))\\n\",\"                .attr(\\\"stroke-opacity\\\", function (d) {\\n\",\"                    return d;\\n\",\"                });\\n\",\"        }\\n\",\"\\n\",\"        function getLayerColor(layer) {\\n\",\"          return LAYER_COLORS[layer % 10];\\n\",\"        }\\n\",\"\\n\",\"        function getTextColor() {\\n\",\"            return PALETTE[config.mode]['text']\\n\",\"        }\\n\",\"\\n\",\"        function getBackgroundColor() {\\n\",\"           return PALETTE[config.mode]['background']\\n\",\"        }\\n\",\"\\n\",\"        function getHighlightColor() {\\n\",\"           return PALETTE[config.mode]['highlight']\\n\",\"        }\\n\",\"\\n\",\"        function initialize() {\\n\",\"            config.attention = params['attention'];\\n\",\"            config.filter = params['default_filter'];\\n\",\"            config.mode = params['display_mode'];\\n\",\"            config.rootDivId = params['root_div_id'];\\n\",\"            $(`#${config.rootDivId} #filter`).on('change', function (e) {\\n\",\"                config.filter = e.currentTarget.value;\\n\",\"                render();\\n\",\"            });\\n\",\"        }\\n\",\"\\n\",\"        initialize();\\n\",\"        render();\\n\",\"\\n\",\"    });\"],\"text/plain\":[\"\\u003cIPython.core.display.Javascript object\\u003e\"]},\"metadata\":{\"tags\":[]},\"output_type\":\"display_data\"}],\"source\":[\"show_model_view(model, tokenizer, sentence_a, sentence_b, hide_delimiter_attn=False, display_mode=\\\"light\\\")\"]},{\"cell_type\":\"code\",\"execution_count\":null,\"metadata\":{\"id\":\"37zJf5b3cnyx\"},\"outputs\":[],\"source\":[\"\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"vWDZsDZzVOIV\"},\"source\":[\"pronoun-antecedent relation (Coreference) patterns are mostly encoded in the heads \\u003c8,1\\u003e \\u003c8,11\\u003e, \\u003c10,1\\u003e \\u003c10,7\\u003e (\\u003c LAYER, HEAD \\u003e)\\n\",\"\\n\",\"\\u003c Layer-8, Head-11\\u003e is the strongest head that encodes the corerefence relation in German Model\"]},{\"cell_type\":\"code\",\"execution_count\":null,\"metadata\":{\"id\":\"YPF2knGhpQW1\"},\"outputs\":[],\"source\":[\"\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"QmOZp6LZcxKM\"},\"source\":[\"# Neuron View\\n\",\"The attention-head view visualizes attention, as well as query and key values, in a particuler attention head.\"]},{\"cell_type\":\"code\",\"execution_count\":null,\"metadata\":{\"id\":\"mpBb2LTlczT3\"},\"outputs\":[],\"source\":[\"\"]},{\"cell_type\":\"markdown\",\"metadata\":{\"id\":\"rUT9x3P5mV1C\"},\"source\":[\"The official Usage Notes:\\n\",\"* Hover over any of the tokens on the left side of the visualization to filter attention from that token.\\n\",\"* Then click on the plus icon that is revealed when hovering. This shows the query vectors, key vectors, and intermediate computations for the attention weights (blue=positive, orange=negative).\\n\",\"* Once in the expanded view, hover over any other token on the left to see the associated attention computations.\\n\",\"* Click on the Layer or Head drop-downs to change the model layer or head (zero-indexed).\"]},{\"cell_type\":\"code\",\"execution_count\":null,\"metadata\":{\"colab\":{\"background_save\":true,\"base_uri\":\"https://localhost:8080/\",\"height\":614,\"output_embedded_package_id\":\"1DzEuEdIvFajG6o71b6DoV1GA4oIENvSy\"},\"executionInfo\":{\"elapsed\":40748,\"status\":\"ok\",\"timestamp\":1624566491691,\"user\":{\"displayName\":\"Savas Yıldırım\",\"photoUrl\":\"https://lh3.googleusercontent.com/a-/AOh14GhdhYZMfq-hvK2xI7HqkzvJuCbfgFrIs4wypQEm5w=s64\",\"userId\":\"10717726124681851716\"},\"user_tz\":-180},\"id\":\"QT-XrCwdmit1\",\"outputId\":\"7347dd51-4894-4f86-9754-1dbc788080d6\"},\"outputs\":[],\"source\":[\"from bertviz.transformers_neuron_view import BertModel, BertTokenizer\\n\",\"from bertviz.neuron_view import show\\n\",\"model_path='bert-base-german-cased'\\n\",\"sentence_a = \\\"Die Katze ist sehr traurig.\\\"\\n\",\"sentence_b = \\\"Weil sie zu viel gegessen hat\\\"\\n\",\"model = BertModel.from_pretrained(model_path, output_attentions=True)\\n\",\"tokenizer = BertTokenizer.from_pretrained(model_path)\\n\",\"model_type = 'bert'\\n\",\"show(model, model_type, tokenizer, sentence_a, sentence_b, layer=8, head=11, display_mode=\\\"light\\\")\\n\",\"\\n\",\"#let us check  \\u003c8,11\\u003e  that is for pronoun-antecedent relation,  \\u003c2,6\\u003e is for nect token pattern\"]},{\"cell_type\":\"code\",\"execution_count\":null,\"metadata\":{\"id\":\"NZax3AdZryRH\"},\"outputs\":[],\"source\":[\"\"]},{\"cell_type\":\"code\",\"execution_count\":null,\"metadata\":{\"id\":\"8OeYzc7kPdGM\"},\"outputs\":[],\"source\":[\"\"]}],\"metadata\":{\"colab\":{\"collapsed_sections\":[],\"name\":\"Ch11.1 Visualization with BertViz.ipynb\",\"provenance\":[{\"file_id\":\"1PEHWRHrvxQvYr9NFRC-E_fr3xDq1htCj\",\"timestamp\":1624525761344}],\"version\":\"\"},\"kernelspec\":{\"display_name\":\"Python 3\",\"name\":\"python3\"},\"widgets\":{\"application/vnd.jupyter.widget-state+json\":{\"004cba3acff04ed4a3410577151e7fff\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"03f93214657f4013821d651d05ea3876\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_13b4a3d50a304e83841ffce5c3d0f3a5\",\"max\":60,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_ab0b746bd2804bfe863d9e2cb40a23f8\",\"value\":60}},\"09f45a1c9f1d44aea01568520da6fd21\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"0b5e6e749a954342a6bc35ae4a4bc841\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"0c79b73e3db141e9bd61c88e4764fc8f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"0dce6002531e41bd99464800bc9e698c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_e4300041ab4546a99d5a99157b585434\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_4f17df02b32a40e8ae7e1f60d496196a\",\"value\":\" 436k/436k [00:00\\u0026lt;00:00, 4.03MB/s]\"}},\"0ea1969cc83d40acbd2347a8f46ca5f6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_ca128151aa0f4b04aca0d587083ee7ed\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_db5eea5de0c149ed81c881d24616e4b6\",\"value\":\" 251k/251k [00:00\\u0026lt;00:00, 867kB/s]\"}},\"0eddec9231b5406883d4149754691d61\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"0f0fc56197dc4692b669b0d97a3196fc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_ef29f3257ad6432b986db052b13e0855\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_f20392c9395c43809cabd79ee1a51c1a\",\"value\":\" 213k/213k [00:00\\u0026lt;00:00, 1.15MB/s]\"}},\"1177743740b143c08387a25dcfc25004\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_dc48622fa197432ab2833fe1d1659765\",\"IPY_MODEL_0dce6002531e41bd99464800bc9e698c\"],\"layout\":\"IPY_MODEL_ab149c2ad15b4a298ea2ecec59afdddb\"}},\"136e981ab0e8435c9662aa8a96245650\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_7d1c8e53772840ef9a6f26e0f3d89c24\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_5aa56d32619b49dcaecdc22a6b8aacf8\",\"value\":\" 485k/485k [00:00\\u0026lt;00:00, 3.61MB/s]\"}},\"13b4a3d50a304e83841ffce5c3d0f3a5\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"14c2f7f86e214ff2b2a76c39186c6cf1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"14ee293a452c47b2ba7a8bc04d9cae1c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"153433a85933454ab138bc0baa7d9b19\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"1c8ad94dc5764ea3adbd25c412158cf0\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_61ceac4275f94b4ebcae207b08c4cfd8\",\"max\":251003,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_62faa1838d454cdea33f8de1736e44ae\",\"value\":251003}},\"1e852bb7ee454bc3bcd38bbbe7cbbfcb\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_51fe77a6d9a3442cb1f7adc500c5ba8d\",\"IPY_MODEL_205b90bd46d24b6abe0554d3caa5953b\"],\"layout\":\"IPY_MODEL_7392040cab704b90b6f8b931573e530e\"}},\"1f766ae497a64126b27b385c986a06af\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_acd33313e8914bb2a9e3f1366d73f979\",\"max\":29,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_a4170c7f94aa4ecfa94a383221cdb489\",\"value\":29}},\"205b90bd46d24b6abe0554d3caa5953b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_70a45184dd3842bba2e78ad6f2e386ae\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_b209a0bec19941cd86665fb660f7f79f\",\"value\":\" 433/433 [00:18\\u0026lt;00:00, 23.5B/s]\"}},\"220013ff3eab4ecba53933e1a718c861\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"232e3c710a194886b1347497e7c899a8\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_03f93214657f4013821d651d05ea3876\",\"IPY_MODEL_dfff3fee4f774810a4f6315d1c220a80\"],\"layout\":\"IPY_MODEL_740ba81ccff0495e8004b92a4cd721f8\"}},\"27045c85487c4273800dcf076581dcea\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"2dc9be540a1b415686e439991fe502e1\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"3059caa7fd334d20b465191fc96a25d3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"3589c245274e4eb9ab01741c058b8520\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"37e14be3be51413f820d445d831f843d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"38dbd62eccd44121a00353b13917bb9f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"42114c613b1d4795be268910ea180f51\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_a817f87072b6424b8290b4bd289c3aba\",\"max\":445018508,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_9c839c1e6114480582d0f42d3a35cd04\",\"value\":445018508}},\"447977785c58455ebb4824cdf0a36959\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"4dc0c3f5dc9846878f67e338acc3f62f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"4dcaf07877914f1cbc296afa03ab298f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_1f766ae497a64126b27b385c986a06af\",\"IPY_MODEL_a6c073823b0d4f439ea79a832ea079f6\"],\"layout\":\"IPY_MODEL_2dc9be540a1b415686e439991fe502e1\"}},\"4e6350f90377442387bb2a8cd663ba41\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_1c8ad94dc5764ea3adbd25c412158cf0\",\"IPY_MODEL_0ea1969cc83d40acbd2347a8f46ca5f6\"],\"layout\":\"IPY_MODEL_8746a7c22b064f38b8e43a35cbcd59e9\"}},\"4f17df02b32a40e8ae7e1f60d496196a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"503a763360c442299af2f589a27e6289\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"51612bc23de84965bd65cef0cfb08cee\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"51a0b2ca2d714ce78484bba4f0b46e19\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"51fe77a6d9a3442cb1f7adc500c5ba8d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_c6b7ce12dff44fe3b2cf95b11f362666\",\"max\":433,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_0b5e6e749a954342a6bc35ae4a4bc841\",\"value\":433}},\"5aa56d32619b49dcaecdc22a6b8aacf8\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"5f4faab5f66e4c01a45f9a071c29cf5e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"6050483578d648bc9c1c904218f7a721\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_79a669f184384e2f82a345842c5bd252\",\"IPY_MODEL_a1877bf6718f4e55b26ae7f08152e4a1\"],\"layout\":\"IPY_MODEL_ad9ad5fcf22e410a8b8fd9dedc1305d8\"}},\"61ceac4275f94b4ebcae207b08c4cfd8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"625fd129b23949849e72a9b37f66acef\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_d1b9d31241024dcca28047eb88cc7fab\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_0c79b73e3db141e9bd61c88e4764fc8f\",\"value\":\" 255k/255k [00:00\\u0026lt;00:00, 687kB/s]\"}},\"62faa1838d454cdea33f8de1736e44ae\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"6631d2f05f444635bb7a9280e8887b88\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"680f8fb0906740d281f3dd38c671db98\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_4dc0c3f5dc9846878f67e338acc3f62f\",\"max\":435779157,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_d9d24fe512a8427391cc4dc1f61ad9e6\",\"value\":435779157}},\"6f64320911854ca3a47ffbde0f0d366d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_95398022b40548d18dee953b90a36f3f\",\"IPY_MODEL_136e981ab0e8435c9662aa8a96245650\"],\"layout\":\"IPY_MODEL_f7f3225880a644ce888c2d80a4c2a9e0\"}},\"704ccb5630654dbd8ebe7d12f5143b11\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"70a45184dd3842bba2e78ad6f2e386ae\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"7392040cab704b90b6f8b931573e530e\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"740ba81ccff0495e8004b92a4cd721f8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"7687207a0b1d48d1b511a6918f2898b8\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_f6f917bb38a44dfd9bc7de1adc1181c9\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_153433a85933454ab138bc0baa7d9b19\",\"value\":\" 445M/445M [00:12\\u0026lt;00:00, 34.8MB/s]\"}},\"79a669f184384e2f82a345842c5bd252\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_c8d14f40875644b8a875fa360eb5e908\",\"max\":570,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_3059caa7fd334d20b465191fc96a25d3\",\"value\":570}},\"7d1c8e53772840ef9a6f26e0f3d89c24\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"7e52ee8560094817a6f3e2c089eb6b8f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"80e49d98472c40f29aba66b17bc932cd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"86093e286ed2499b9fcfc74507254daf\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"8746a7c22b064f38b8e43a35cbcd59e9\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"89808a07c7e74ea9a5347ead51a2ddff\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"89ba87f7b22b4fe59baadd702e0eef6e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_27045c85487c4273800dcf076581dcea\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_704ccb5630654dbd8ebe7d12f5143b11\",\"value\":\" 29.0/29.0 [00:00\\u0026lt;00:00, 214B/s]\"}},\"8c137de8cc1d43bd8ecf647041749bc1\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"8dcacb5358a3489e822c93ce2dcc1845\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_8c137de8cc1d43bd8ecf647041749bc1\",\"max\":29,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_e95d62e252b94ab2b343d73c69b0dd12\",\"value\":29}},\"8e6dc8f5f34c423e901c0fea06418a06\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"8f417a5e49cd4c83924cd57baf3ea6bc\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_680f8fb0906740d281f3dd38c671db98\",\"IPY_MODEL_cc1b22bf14014996a9b36a4c6aaae99c\"],\"layout\":\"IPY_MODEL_b15729b722ac4c8ea1549637ce0eff7c\"}},\"91779844ce284100a110a1847599505a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_ef26d831133e4018b5382b19b4b51bab\",\"IPY_MODEL_ade8dd2a5fb64309a2bbbfe542072ac5\"],\"layout\":\"IPY_MODEL_503a763360c442299af2f589a27e6289\"}},\"95398022b40548d18dee953b90a36f3f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_3589c245274e4eb9ab01741c058b8520\",\"max\":485115,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_d91cade1299f41fdb4220abf7601970e\",\"value\":485115}},\"96ebf1be76cd4a1393ba662248b4666b\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"9c839c1e6114480582d0f42d3a35cd04\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"9d1acf3000f649ed9ac4d243028df6bd\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_14ee293a452c47b2ba7a8bc04d9cae1c\",\"max\":385,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_80e49d98472c40f29aba66b17bc932cd\",\"value\":385}},\"9d711a6908b74b2f8462f160c11edc7b\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"a0f9e2c6398d4525a30296699fe45654\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"a1877bf6718f4e55b26ae7f08152e4a1\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_96ebf1be76cd4a1393ba662248b4666b\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_d12e95873d8f42a4928474561e95aed3\",\"value\":\" 570/570 [00:12\\u0026lt;00:00, 45.2B/s]\"}},\"a4170c7f94aa4ecfa94a383221cdb489\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"a6c073823b0d4f439ea79a832ea079f6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_c6c551da408b423b9ad259d48b0dad8d\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_004cba3acff04ed4a3410577151e7fff\",\"value\":\" 29.0/29.0 [00:00\\u0026lt;00:00, 113B/s]\"}},\"a817f87072b6424b8290b4bd289c3aba\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"a969cd90391640eda37d8cb51662ae24\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"ab0b746bd2804bfe863d9e2cb40a23f8\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"ab149c2ad15b4a298ea2ecec59afdddb\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"acd33313e8914bb2a9e3f1366d73f979\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"ad9ad5fcf22e410a8b8fd9dedc1305d8\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"ade8dd2a5fb64309a2bbbfe542072ac5\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_6631d2f05f444635bb7a9280e8887b88\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_8e6dc8f5f34c423e901c0fea06418a06\",\"value\":\" 439M/439M [00:16\\u0026lt;00:00, 26.5MB/s]\"}},\"b15729b722ac4c8ea1549637ce0eff7c\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"b209a0bec19941cd86665fb660f7f79f\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"bc5bfbafc9f14317a20f8a1b17068b54\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_86093e286ed2499b9fcfc74507254daf\",\"max\":254728,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_5f4faab5f66e4c01a45f9a071c29cf5e\",\"value\":254728}},\"c6b7ce12dff44fe3b2cf95b11f362666\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"c6c551da408b423b9ad259d48b0dad8d\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"c8d14f40875644b8a875fa360eb5e908\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"ca128151aa0f4b04aca0d587083ee7ed\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"cc1b22bf14014996a9b36a4c6aaae99c\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_a969cd90391640eda37d8cb51662ae24\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_9d711a6908b74b2f8462f160c11edc7b\",\"value\":\" 436M/436M [00:11\\u0026lt;00:00, 37.4MB/s]\"}},\"d12e95873d8f42a4928474561e95aed3\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"d1b9d31241024dcca28047eb88cc7fab\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"d91cade1299f41fdb4220abf7601970e\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"d9d24fe512a8427391cc4dc1f61ad9e6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"db5eea5de0c149ed81c881d24616e4b6\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"dc3586533ad34cffaedbe97f92905120\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"dc48622fa197432ab2833fe1d1659765\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_dc3586533ad34cffaedbe97f92905120\",\"max\":435797,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_220013ff3eab4ecba53933e1a718c861\",\"value\":435797}},\"dfff3fee4f774810a4f6315d1c220a80\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_51a0b2ca2d714ce78484bba4f0b46e19\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_37e14be3be51413f820d445d831f843d\",\"value\":\" 60.0/60.0 [00:00\\u0026lt;00:00, 541B/s]\"}},\"e2d953730d0a45ebb816293a39798428\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_e960a52a5bd047389db49eb74e1f8051\",\"IPY_MODEL_0f0fc56197dc4692b669b0d97a3196fc\"],\"layout\":\"IPY_MODEL_51612bc23de84965bd65cef0cfb08cee\"}},\"e4300041ab4546a99d5a99157b585434\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"e52fab08e2cc4767a7af5b94d0918801\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_42114c613b1d4795be268910ea180f51\",\"IPY_MODEL_7687207a0b1d48d1b511a6918f2898b8\"],\"layout\":\"IPY_MODEL_447977785c58455ebb4824cdf0a36959\"}},\"e95d62e252b94ab2b343d73c69b0dd12\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"ProgressStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"ProgressStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"bar_color\":null,\"description_width\":\"initial\"}},\"e960a52a5bd047389db49eb74e1f8051\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_f7d74abbf53847ac946cef8e08a75af4\",\"max\":213450,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_14c2f7f86e214ff2b2a76c39186c6cf1\",\"value\":213450}},\"ea49c639148846e5925ecd1b4438f01f\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"ee1c2b60ca5a4a61b18ab912c9e24635\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_bc5bfbafc9f14317a20f8a1b17068b54\",\"IPY_MODEL_625fd129b23949849e72a9b37f66acef\"],\"layout\":\"IPY_MODEL_09f45a1c9f1d44aea01568520da6fd21\"}},\"ef26d831133e4018b5382b19b4b51bab\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"FloatProgressModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"FloatProgressModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"ProgressView\",\"bar_style\":\"success\",\"description\":\"Downloading: 100%\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_0eddec9231b5406883d4149754691d61\",\"max\":438869143,\"min\":0,\"orientation\":\"horizontal\",\"style\":\"IPY_MODEL_38dbd62eccd44121a00353b13917bb9f\",\"value\":438869143}},\"ef29f3257ad6432b986db052b13e0855\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"f20392c9395c43809cabd79ee1a51c1a\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"DescriptionStyleModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"DescriptionStyleModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"StyleView\",\"description_width\":\"\"}},\"f26d375514a445b5a6fc39cfc5e572cf\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_9d1acf3000f649ed9ac4d243028df6bd\",\"IPY_MODEL_f61d351cfbd440d898c3356a76f04e9d\"],\"layout\":\"IPY_MODEL_ea49c639148846e5925ecd1b4438f01f\"}},\"f4a7a1268abc47b48864d99aebca735d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HBoxModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HBoxModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HBoxView\",\"box_style\":\"\",\"children\":[\"IPY_MODEL_8dcacb5358a3489e822c93ce2dcc1845\",\"IPY_MODEL_89ba87f7b22b4fe59baadd702e0eef6e\"],\"layout\":\"IPY_MODEL_89808a07c7e74ea9a5347ead51a2ddff\"}},\"f61d351cfbd440d898c3356a76f04e9d\":{\"model_module\":\"@jupyter-widgets/controls\",\"model_name\":\"HTMLModel\",\"state\":{\"_dom_classes\":[],\"_model_module\":\"@jupyter-widgets/controls\",\"_model_module_version\":\"1.5.0\",\"_model_name\":\"HTMLModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/controls\",\"_view_module_version\":\"1.5.0\",\"_view_name\":\"HTMLView\",\"description\":\"\",\"description_tooltip\":null,\"layout\":\"IPY_MODEL_a0f9e2c6398d4525a30296699fe45654\",\"placeholder\":\"​\",\"style\":\"IPY_MODEL_7e52ee8560094817a6f3e2c089eb6b8f\",\"value\":\" 385/385 [00:00\\u0026lt;00:00, 4.25kB/s]\"}},\"f6f917bb38a44dfd9bc7de1adc1181c9\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"f7d74abbf53847ac946cef8e08a75af4\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}},\"f7f3225880a644ce888c2d80a4c2a9e0\":{\"model_module\":\"@jupyter-widgets/base\",\"model_name\":\"LayoutModel\",\"state\":{\"_model_module\":\"@jupyter-widgets/base\",\"_model_module_version\":\"1.2.0\",\"_model_name\":\"LayoutModel\",\"_view_count\":null,\"_view_module\":\"@jupyter-widgets/base\",\"_view_module_version\":\"1.2.0\",\"_view_name\":\"LayoutView\",\"align_content\":null,\"align_items\":null,\"align_self\":null,\"border\":null,\"bottom\":null,\"display\":null,\"flex\":null,\"flex_flow\":null,\"grid_area\":null,\"grid_auto_columns\":null,\"grid_auto_flow\":null,\"grid_auto_rows\":null,\"grid_column\":null,\"grid_gap\":null,\"grid_row\":null,\"grid_template_areas\":null,\"grid_template_columns\":null,\"grid_template_rows\":null,\"height\":null,\"justify_content\":null,\"justify_items\":null,\"left\":null,\"margin\":null,\"max_height\":null,\"max_width\":null,\"min_height\":null,\"min_width\":null,\"object_fit\":null,\"object_position\":null,\"order\":null,\"overflow\":null,\"overflow_x\":null,\"overflow_y\":null,\"padding\":null,\"right\":null,\"top\":null,\"visibility\":null,\"width\":null}}}}},\"nbformat\":4,\"nbformat_minor\":0}"
  },
  {
    "path": "CH11/CH11c_Tracking_with_WandB.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"l5nS0liSFXSz\"\n   },\n   \"source\": [\n    \"# Ch11c_Tracking_BERT_Fine-tuning_with_W&B \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"tszbPHwjFfkP\"\n   },\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"BRzRpdbLDDKv\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\"\n    },\n    \"id\": \"4wW9BBcot81Q\",\n    \"outputId\": \"6076da39-4975-416b-a0f8-887177b683d2\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"!pip install transformers datasets\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"G0veqPRujqK4\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers.trainer_utils import set_seed\\n\",\n    \"set_seed(42)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"zRXnOvJYWtJS\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from torch import cuda\\n\",\n    \"device = 'cuda' if cuda.is_available() else 'cpu'\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\"\n    },\n    \"id\": \"pJ1aHnKpjt0-\",\n    \"outputId\": \"fcad3466-6e99-49bb-f619-c7ba02cfa794\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"!pip install wandb\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"2hmeqEtgkCrk\"\n   },\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\"\n    },\n    \"id\": \"nuKvbsIAjv-l\",\n    \"outputId\": \"ac1106e6-82fe-4ee6-d187-3dfe2620a353\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import wandb\\n\",\n    \"# or\\n\",\n    \"# export WANDB_API_KEY= PUT-YOUR-API-KEY-HERE\\n\",\n    \"!wandb login --relogin\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"BZv1tmcx_pNo\"\n   },\n   \"source\": [\n    \"### Loading pre-trained model and tokenizer\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\",\n     \"height\": 367,\n     \"referenced_widgets\": [\n      \"02731836e4c14b0993390e3ca65d1122\",\n      \"068892bbb677460c950b2f3cfdaa9a28\",\n      \"14d5084dc356492999884e241f1f94a4\",\n      \"8fc9f6d4a19b4c53a393bd5bcc253d34\",\n      \"1357af87693f4b64877b9aa6966c32e0\",\n      \"267c980fbca24a73b6ce631ccdb57277\",\n      \"c6f10f3ac3e44a7ab98eee5acdfc9805\",\n      \"bf5f8033eb6f4f508f0addbae444de08\",\n      \"866e2e0abea84812bec8b3acd51a1654\",\n      \"41329131146849caa088d164e1e0ca99\",\n      \"f1841c896faf46c9be255875c2adec35\",\n      \"35fc620ad5264e44a94dcb36ee2eb1f7\",\n      \"8cb6fcbdcff14c0a91b106679b5b83e9\",\n      \"32c2ddf0e68747be920d177fc55be1ba\",\n      \"976d64bb55634991a68b34be4e0bb4e0\",\n      \"2b79fec31baf480ba206a8e25095227c\",\n      \"19835b3cca2945bd82b1c91b3994e936\",\n      \"16f87d59afa54ea484363a3f46ec4fa6\",\n      \"f1026ca6a24c41f68e8c26ecc290e2d1\",\n      \"b5fe9230e8df4d1784e9067fe64ce329\",\n      \"f074296f7a5d47dc81d8db2f8b51e2a4\",\n      \"d0d82d70c4cd4b1eba7c53f2b24bdc30\",\n      \"e32401c2298b444aa07d4ffa81fbd485\",\n      \"6a6120897b274099a032f536b316846d\",\n      \"6caaad6ba40943e899e8735bfaab9709\",\n      \"37c75d01578b41a1b1522f98a81dcb99\",\n      \"0f403802e57c4e21819ab844455d5a63\",\n      \"bbec45d598eb49ee9b33b5e8987bc85d\",\n      \"61ae1982c3f7437aa41b53aaf5f4a33f\",\n      \"ea1b1050ed694d29a0d48962e2c391e8\",\n      \"167c2a58f40045aa88fe7d30b103077c\",\n      \"4e8318ad00b84b65a4d866a37ff9f9f4\",\n      \"326a5fe9702d48b6b9bf2f5cb949c5a7\",\n      \"93e6b147896a4587b5c4ffdba8b7e087\",\n      \"941907682df14777aecf4c34cca5c8cf\",\n      \"be7d644452d542fea6e93958f1047126\",\n      \"849f0d8e66c64975abaad3a1e4860ffe\",\n      \"1c9bc4aee3574f5e96833b187e67a518\",\n      \"29aad898aeca4b4a9133a33005f5540e\",\n      \"54209183c76f4c1b8503ef8db0cd6d51\"\n     ]\n    },\n    \"id\": \"DE1Rwh2BtnwT\",\n    \"outputId\": \"5ead5f13-a85b-413c-f28a-4b1fca9b2db1\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import DistilBertTokenizerFast, DistilBertForSequenceClassification\\n\",\n    \"model_path= 'distilbert-base-uncased'\\n\",\n    \"tokenizer = DistilBertTokenizerFast.from_pretrained(model_path)\\n\",\n    \"model = DistilBertForSequenceClassification.from_pretrained(model_path, id2label={0:\\\"NEG\\\", 1:\\\"POS\\\"}, label2id={\\\"NEG\\\":0, \\\"POS\\\":1})\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"licNE7yQS8uw\"\n   },\n   \"source\": [\n    \"## Loading popular IMDB dataset\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\",\n     \"height\": 252,\n     \"referenced_widgets\": [\n      \"a065c8b19fbb4a7d9a3ebcd79d1011d8\",\n      \"952d93fdcd1d407d9601013692fa8613\",\n      \"548f16d612674de592830bdb7c342b25\",\n      \"8eb4b2b904554245b13408f126c14058\",\n      \"5a5b4571090a40a48dae1994de51ffbd\",\n      \"40d6731bfcb6490093c31a2182b28ca4\",\n      \"bf2afc4686af40c196bafaff0d3c37be\",\n      \"540f16436bda4b41a8bd671aa986b2bb\",\n      \"a958ffa978e848d8b46c2b91685fe129\",\n      \"2b43a9dd23b74509a3e51eb0c1ac0311\",\n      \"23146882a63749a381ee0dd3e51ac213\",\n      \"5f6de66de08c4435bf4d7c36c4907806\",\n      \"0e6e557da36a46d9895fe73f9ac8a292\",\n      \"1ba76d42beca4f7889cbae492bab8254\",\n      \"0cca4eca669b464580a118ea1240b9e1\",\n      \"a039512826914548abec86e3845bc094\",\n      \"88fc9dfab1e5484491d6d7abb17b12ac\",\n      \"8a70851066344e82a896690290127f56\",\n      \"84ede8647e414a648e39bfa7413fbadd\",\n      \"04f88724f31c46329b0ce50f503b4b4e\",\n      \"ebd7d72f68f242fdb28610fbb048bc1e\",\n      \"acddf1a6e2034f06a66e8dc70f868213\",\n      \"b21cdbbbc2ee4e238644cf3a3b7484ab\",\n      \"f238b95bb7f6437f971534554ab97969\",\n      \"71bc78b90aa24d499224664e3629f580\",\n      \"040c71939f7b4a50b82ddbdc34c1d264\",\n      \"be10b7753ae84cc7ab5d0203d69d03d7\",\n      \"737d9915bf904431ae5230b047c66b17\",\n      \"3557c54d60e84890abe81b292f8ed309\",\n      \"cf5aeea3a13346d1bdec578ca6675b3f\",\n      \"d006b2da54ed4d70843226b8e3f3a7c1\",\n      \"d4d5ae3dccda4f498b40cb24c93e9013\",\n      \"c10bd4e3d57442eea9b54db34f31f13e\",\n      \"d4009b0470de4c05847ac94e3fe7b4e7\",\n      \"886158c8e60d45e386846bfac0beb3f7\",\n      \"648fb764502c440495e274683294cb54\",\n      \"eb9240cab007467ab6c6bfd54a470c34\",\n      \"80a8bd198ea14a8c984a4171421d66e1\",\n      \"358cbfc9b6b446c9abc6c0b350332bbb\",\n      \"0c518362dd0046bcad232084b048eb39\",\n      \"442e9f65bc8c4f2bb5717afe7155135d\",\n      \"5c2f3426e8074fe4b43b4ff5df1afbfa\",\n      \"05dfcf9c285e450ab264fbb4d51e0bbe\",\n      \"e742a5d52e864db88f826cae59afa818\",\n      \"47df4fb077bd45efa03380d4ee931c58\",\n      \"a631664db472477aa5bde9dfe48465ab\",\n      \"fde80f79b5bb42f1a6253463e7f1da96\",\n      \"ff2493a8e35e401da4f3d5c9e61e7cfd\"\n     ]\n    },\n    \"id\": \"w2HdjLQEXTos\",\n    \"outputId\": \"8febb036-3da7-4d32-a241-b8624a2dc933\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from datasets import load_dataset\\n\",\n    \"\\n\",\n    \"# to take entire dataset from original train 25 K AND TEST 25K\\n\",\n    \"'''\\n\",\n    \"imdb_train= load_dataset('imdb', split=\\\"train\\\")\\n\",\n    \"imdb_test= load_dataset('imdb', split=\\\"test[:6250]+test[-6250:]\\\")\\n\",\n    \"imdb_val= load_dataset('imdb', split=\\\"test[6250:12500]+test[-12500:-6250]\\\")\\n\",\n    \"\\n\",\n    \"'''\\n\",\n    \"# to take smaller portion 4K for train, 1K for test and 1K for validation\\n\",\n    \"imdb_train= load_dataset('imdb', split=\\\"train[:2000]+train[-2000:]\\\")\\n\",\n    \"imdb_test= load_dataset('imdb', split=\\\"test[:500]+test[-500:]\\\")\\n\",\n    \"imdb_val= load_dataset('imdb', split=\\\"test[500:1000]+test[-1000:-500]\\\")\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\"\n    },\n    \"id\": \"_kfFp7nkbki4\",\n    \"outputId\": \"58aa8e82-e2c3-437f-997f-8d19768a287d\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"imdb_train.shape, imdb_test.shape, imdb_val.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\",\n     \"height\": 100,\n     \"referenced_widgets\": [\n      \"37c02bb0d8434e86a12dc88cae3d7594\",\n      \"f23ea1de44e449d08d9403f2ad22a01c\",\n      \"57ee44772e654279bc8af1a6ec3e4d0d\",\n      \"69f1224148c045f29f89fff5587dc67b\",\n      \"77d13376e3504b2781fe3ad997859ffd\",\n      \"54ebdc1cf02345a58be587d7f8e83131\",\n      \"630880e255c8485d96bee6ff823443db\",\n      \"f9d8a60982ef4e9eaef1032a1b73eecf\"\n     ]\n    },\n    \"id\": \"WpuCsmUVXgm9\",\n    \"outputId\": \"88d636db-4893-488f-97cc-b2b5f48bf9a6\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"enc_train = imdb_train.map(lambda e: tokenizer( e['text'], padding=True, truncation=True), batched=True, batch_size=1000) \\n\",\n    \"enc_test =  imdb_test.map(lambda e: tokenizer( e['text'], padding=True, truncation=True), batched=True, batch_size=1000) \\n\",\n    \"enc_val =   imdb_val.map(lambda e: tokenizer( e['text'], padding=True, truncation=True), batched=True, batch_size=1000) \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\",\n     \"height\": 419\n    },\n    \"id\": \"-4lY_LHTXgpa\",\n    \"outputId\": \"fb56d4b2-e510-4a2e-eac2-82381336e825\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"pd.DataFrame(enc_train)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"ACNK9ZQKD4mt\"\n   },\n   \"source\": [\n    \"## Preparing training settings with TrainingArguments and Trainer class\\n\",\n    \"\\n\",\n    \"TrainingArguments is the subset of the arguments we use in our example scripts **which relate to the training loop\\n\",\n    \"itself**.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"OZD1jnhFWEd5\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import TrainingArguments, Trainer\\n\",\n    \"training_args = TrainingArguments(\\n\",\n    \"    # The output directory where the model predictions and checkpoints will be written\\n\",\n    \"    output_dir='./MyIMDBModel', \\n\",\n    \"    do_train=True,\\n\",\n    \"    do_eval=True,\\n\",\n    \"    #  The number of epochs, defaults to 3.0 \\n\",\n    \"    num_train_epochs=3,              \\n\",\n    \"    per_device_train_batch_size=16,  \\n\",\n    \"    per_device_eval_batch_size=32,\\n\",\n    \"    # Number of steps used for a linear warmup\\n\",\n    \"    warmup_steps=100,                \\n\",\n    \"    weight_decay=0.01,\\n\",\n    \"    logging_strategy='steps', \\n\",\n    \"    # TensorBoard log directory               \\n\",\n    \"    logging_dir='./logs',            \\n\",\n    \"    logging_steps=50,\\n\",\n    \"    # other options : no, steps\\n\",\n    \"    evaluation_strategy=\\\"steps\\\",\\n\",\n    \"    save_strategy=\\\"steps\\\",\\n\",\n    \"    fp16=True,\\n\",\n    \"    load_best_model_at_end=True,\\n\",\n    \"    learning_rate=5e-5,\\n\",\n    \"    report_to=\\\"wandb\\\",\\n\",\n    \"    run_name=\\\"IMDB-batch-16-lr-5e-5\\\"\\n\",\n    \"    )\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"87jdaLawMXqN\"\n   },\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"HUn5uFHkbPEb\"\n   },\n   \"source\": [\n    \"Let's design our evaluation metric as follows:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"8Ct3v6RZZSmj\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.metrics import accuracy_score, precision_recall_fscore_support\\n\",\n    \"def compute_metrics(pred):\\n\",\n    \"    labels = pred.label_ids\\n\",\n    \"    preds = pred.predictions.argmax(-1)\\n\",\n    \"    precision, recall, f1, _ = precision_recall_fscore_support(labels, preds, average='macro')\\n\",\n    \"    acc = accuracy_score(labels, preds)\\n\",\n    \"    return {\\n\",\n    \"        'Accuracy': acc,\\n\",\n    \"        'F1': f1,\\n\",\n    \"        'Precision': precision,\\n\",\n    \"        'Recall': recall\\n\",\n    \"    }\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\"\n    },\n    \"id\": \"ztS1YQcqWEgZ\",\n    \"outputId\": \"8be58537-85aa-40de-8c4b-495bb091e375\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# for a fresh copy of distilBert\\n\",\n    \"# model = DistilBertForSequenceClassification.from_pretrained(model_path, id2label={0:\\\"NEG\\\", 1:\\\"POS\\\"}, label2id={\\\"NEG\\\":0, \\\"POS\\\":1})\\n\",\n    \"\\n\",\n    \"trainer = Trainer(\\n\",\n    \"    # the pre-trained model that will be fine-tuned \\n\",\n    \"    model=model,\\n\",\n    \"     # training arguments that we defined above                        \\n\",\n    \"    args=training_args,\\n\",\n    \"    # training and validation dataset                 \\n\",\n    \"    train_dataset=enc_train,         \\n\",\n    \"    eval_dataset=enc_val,            \\n\",\n    \"    compute_metrics= compute_metrics\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"x354spCgdVEX\"\n   },\n   \"source\": [\n    \"Trainer class is an optimized tool for Transformer to organize training and evalulation process for PyTorch and Tensorflow.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\",\n     \"height\": 1000\n    },\n    \"id\": \"zF7FUYOzWFFT\",\n    \"outputId\": \"b7b6d8db-d44a-412c-a05c-e260a2259262\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"results=trainer.train()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"id\": \"PSzV6_Yh3mX2\"\n   },\n   \"source\": [\n    \"Finishing WandB\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"colab\": {\n     \"base_uri\": \"https://localhost:8080/\",\n     \"height\": 1000,\n     \"referenced_widgets\": [\n      \"4bfec1a840404bb8bfd0598b99647c2f\",\n      \"34690758ba2e4098bb331cfe7e34ff7a\",\n      \"ac556cecebad46e18f97af0721b3f9e5\",\n      \"3debed2a080d4f20867d9d7fc9a3478d\",\n      \"5e34b22523ad4a859bac7680e8d57c97\",\n      \"de13f406fe65448fae15d34e042000a9\",\n      \"09e036a7f18d46e2a0f93d86255697b7\",\n      \"d70d62ba3eda46969066dd784c5fc246\"\n     ]\n    },\n    \"id\": \"YBnqaSZA3ojF\",\n    \"outputId\": \"bf7d24f7-2714-46aa-8e8a-e21393f014ef\"\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"wandb.finish()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"id\": \"GPiDrENVJ42j\"\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"accelerator\": \"GPU\",\n  \"colab\": {\n   \"collapsed_sections\": [],\n   \"machine_shape\": \"hm\",\n   \"name\": \"CH11c_Tracking_with_WandB.ipynb\",\n   \"provenance\": []\n  },\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.8.10\"\n  },\n  \"widgets\": {\n   \"application/vnd.jupyter.widget-state+json\": {\n    \"02731836e4c14b0993390e3ca65d1122\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_14d5084dc356492999884e241f1f94a4\",\n       \"IPY_MODEL_8fc9f6d4a19b4c53a393bd5bcc253d34\"\n      ],\n      \"layout\": \"IPY_MODEL_068892bbb677460c950b2f3cfdaa9a28\"\n     }\n    },\n    \"040c71939f7b4a50b82ddbdc34c1d264\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"04f88724f31c46329b0ce50f503b4b4e\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HTMLModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HTMLModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HTMLView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_f238b95bb7f6437f971534554ab97969\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_b21cdbbbc2ee4e238644cf3a3b7484ab\",\n      \"value\": \" 84.1M/84.1M [00:08&lt;00:00, 9.63MB/s]\"\n     }\n    },\n    \"05dfcf9c285e450ab264fbb4d51e0bbe\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"info\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_a631664db472477aa5bde9dfe48465ab\",\n      \"max\": 1,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_47df4fb077bd45efa03380d4ee931c58\",\n      \"value\": 1\n     }\n    },\n    \"068892bbb677460c950b2f3cfdaa9a28\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"09e036a7f18d46e2a0f93d86255697b7\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"\"\n     }\n    },\n    \"0c518362dd0046bcad232084b048eb39\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"0cca4eca669b464580a118ea1240b9e1\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"0e6e557da36a46d9895fe73f9ac8a292\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"initial\"\n     }\n    },\n    \"0f403802e57c4e21819ab844455d5a63\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"success\",\n      \"description\": \"Downloading: 100%\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_ea1b1050ed694d29a0d48962e2c391e8\",\n      \"max\": 442,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_61ae1982c3f7437aa41b53aaf5f4a33f\",\n      \"value\": 442\n     }\n    },\n    \"1357af87693f4b64877b9aa6966c32e0\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"initial\"\n     }\n    },\n    \"14d5084dc356492999884e241f1f94a4\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"success\",\n      \"description\": \"Downloading: 100%\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_267c980fbca24a73b6ce631ccdb57277\",\n      \"max\": 231508,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_1357af87693f4b64877b9aa6966c32e0\",\n      \"value\": 231508\n     }\n    },\n    \"167c2a58f40045aa88fe7d30b103077c\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"16f87d59afa54ea484363a3f46ec4fa6\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"19835b3cca2945bd82b1c91b3994e936\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_f1026ca6a24c41f68e8c26ecc290e2d1\",\n       \"IPY_MODEL_b5fe9230e8df4d1784e9067fe64ce329\"\n      ],\n      \"layout\": \"IPY_MODEL_16f87d59afa54ea484363a3f46ec4fa6\"\n     }\n    },\n    \"1ba76d42beca4f7889cbae492bab8254\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"1c9bc4aee3574f5e96833b187e67a518\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"23146882a63749a381ee0dd3e51ac213\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"success\",\n      \"description\": \"Downloading: \",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_1ba76d42beca4f7889cbae492bab8254\",\n      \"max\": 1054,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_0e6e557da36a46d9895fe73f9ac8a292\",\n      \"value\": 1054\n     }\n    },\n    \"267c980fbca24a73b6ce631ccdb57277\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"29aad898aeca4b4a9133a33005f5540e\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"2b43a9dd23b74509a3e51eb0c1ac0311\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"2b79fec31baf480ba206a8e25095227c\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"326a5fe9702d48b6b9bf2f5cb949c5a7\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_941907682df14777aecf4c34cca5c8cf\",\n       \"IPY_MODEL_be7d644452d542fea6e93958f1047126\"\n      ],\n      \"layout\": \"IPY_MODEL_93e6b147896a4587b5c4ffdba8b7e087\"\n     }\n    },\n    \"32c2ddf0e68747be920d177fc55be1ba\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"34690758ba2e4098bb331cfe7e34ff7a\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"3557c54d60e84890abe81b292f8ed309\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"initial\"\n     }\n    },\n    \"358cbfc9b6b446c9abc6c0b350332bbb\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"35fc620ad5264e44a94dcb36ee2eb1f7\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HTMLModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HTMLModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HTMLView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_2b79fec31baf480ba206a8e25095227c\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_976d64bb55634991a68b34be4e0bb4e0\",\n      \"value\": \" 466k/466k [00:01&lt;00:00, 386kB/s]\"\n     }\n    },\n    \"37c02bb0d8434e86a12dc88cae3d7594\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_57ee44772e654279bc8af1a6ec3e4d0d\",\n       \"IPY_MODEL_69f1224148c045f29f89fff5587dc67b\"\n      ],\n      \"layout\": \"IPY_MODEL_f23ea1de44e449d08d9403f2ad22a01c\"\n     }\n    },\n    \"37c75d01578b41a1b1522f98a81dcb99\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"3debed2a080d4f20867d9d7fc9a3478d\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_d70d62ba3eda46969066dd784c5fc246\",\n      \"max\": 1,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_09e036a7f18d46e2a0f93d86255697b7\",\n      \"value\": 1\n     }\n    },\n    \"40d6731bfcb6490093c31a2182b28ca4\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"41329131146849caa088d164e1e0ca99\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"442e9f65bc8c4f2bb5717afe7155135d\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_05dfcf9c285e450ab264fbb4d51e0bbe\",\n       \"IPY_MODEL_e742a5d52e864db88f826cae59afa818\"\n      ],\n      \"layout\": \"IPY_MODEL_5c2f3426e8074fe4b43b4ff5df1afbfa\"\n     }\n    },\n    \"47df4fb077bd45efa03380d4ee931c58\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"initial\"\n     }\n    },\n    \"4bfec1a840404bb8bfd0598b99647c2f\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"VBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"VBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"VBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_ac556cecebad46e18f97af0721b3f9e5\",\n       \"IPY_MODEL_3debed2a080d4f20867d9d7fc9a3478d\"\n      ],\n      \"layout\": \"IPY_MODEL_34690758ba2e4098bb331cfe7e34ff7a\"\n     }\n    },\n    \"4e8318ad00b84b65a4d866a37ff9f9f4\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"540f16436bda4b41a8bd671aa986b2bb\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"54209183c76f4c1b8503ef8db0cd6d51\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"548f16d612674de592830bdb7c342b25\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"success\",\n      \"description\": \"Downloading: \",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_40d6731bfcb6490093c31a2182b28ca4\",\n      \"max\": 1916,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_5a5b4571090a40a48dae1994de51ffbd\",\n      \"value\": 1916\n     }\n    },\n    \"54ebdc1cf02345a58be587d7f8e83131\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"57ee44772e654279bc8af1a6ec3e4d0d\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"success\",\n      \"description\": \"100%\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_54ebdc1cf02345a58be587d7f8e83131\",\n      \"max\": 4,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_77d13376e3504b2781fe3ad997859ffd\",\n      \"value\": 4\n     }\n    },\n    \"5a5b4571090a40a48dae1994de51ffbd\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"initial\"\n     }\n    },\n    \"5c2f3426e8074fe4b43b4ff5df1afbfa\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"5e34b22523ad4a859bac7680e8d57c97\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"5f6de66de08c4435bf4d7c36c4907806\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HTMLModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HTMLModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HTMLView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_a039512826914548abec86e3845bc094\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_0cca4eca669b464580a118ea1240b9e1\",\n      \"value\": \" 2.17k/? [00:00&lt;00:00, 51.0kB/s]\"\n     }\n    },\n    \"61ae1982c3f7437aa41b53aaf5f4a33f\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"initial\"\n     }\n    },\n    \"630880e255c8485d96bee6ff823443db\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"648fb764502c440495e274683294cb54\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HTMLModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HTMLModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HTMLView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_0c518362dd0046bcad232084b048eb39\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_358cbfc9b6b446c9abc6c0b350332bbb\",\n      \"value\": \" 25000/0 [00:01&lt;00:00, 18903.62 examples/s]\"\n     }\n    },\n    \"69f1224148c045f29f89fff5587dc67b\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HTMLModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HTMLModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HTMLView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_f9d8a60982ef4e9eaef1032a1b73eecf\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_630880e255c8485d96bee6ff823443db\",\n      \"value\": \" 4/4 [00:15&lt;00:00,  3.93s/ba]\"\n     }\n    },\n    \"6a6120897b274099a032f536b316846d\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"6caaad6ba40943e899e8735bfaab9709\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_0f403802e57c4e21819ab844455d5a63\",\n       \"IPY_MODEL_bbec45d598eb49ee9b33b5e8987bc85d\"\n      ],\n      \"layout\": \"IPY_MODEL_37c75d01578b41a1b1522f98a81dcb99\"\n     }\n    },\n    \"71bc78b90aa24d499224664e3629f580\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_be10b7753ae84cc7ab5d0203d69d03d7\",\n       \"IPY_MODEL_737d9915bf904431ae5230b047c66b17\"\n      ],\n      \"layout\": \"IPY_MODEL_040c71939f7b4a50b82ddbdc34c1d264\"\n     }\n    },\n    \"737d9915bf904431ae5230b047c66b17\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HTMLModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HTMLModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HTMLView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_d4d5ae3dccda4f498b40cb24c93e9013\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_d006b2da54ed4d70843226b8e3f3a7c1\",\n      \"value\": \" 25000/0 [00:01&lt;00:00, 18943.52 examples/s]\"\n     }\n    },\n    \"77d13376e3504b2781fe3ad997859ffd\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"initial\"\n     }\n    },\n    \"80a8bd198ea14a8c984a4171421d66e1\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"849f0d8e66c64975abaad3a1e4860ffe\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"initial\"\n     }\n    },\n    \"84ede8647e414a648e39bfa7413fbadd\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"success\",\n      \"description\": \"Downloading: 100%\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_acddf1a6e2034f06a66e8dc70f868213\",\n      \"max\": 84125825,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_ebd7d72f68f242fdb28610fbb048bc1e\",\n      \"value\": 84125825\n     }\n    },\n    \"866e2e0abea84812bec8b3acd51a1654\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_f1841c896faf46c9be255875c2adec35\",\n       \"IPY_MODEL_35fc620ad5264e44a94dcb36ee2eb1f7\"\n      ],\n      \"layout\": \"IPY_MODEL_41329131146849caa088d164e1e0ca99\"\n     }\n    },\n    \"886158c8e60d45e386846bfac0beb3f7\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"info\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_80a8bd198ea14a8c984a4171421d66e1\",\n      \"max\": 1,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_eb9240cab007467ab6c6bfd54a470c34\",\n      \"value\": 1\n     }\n    },\n    \"88fc9dfab1e5484491d6d7abb17b12ac\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_84ede8647e414a648e39bfa7413fbadd\",\n       \"IPY_MODEL_04f88724f31c46329b0ce50f503b4b4e\"\n      ],\n      \"layout\": \"IPY_MODEL_8a70851066344e82a896690290127f56\"\n     }\n    },\n    \"8a70851066344e82a896690290127f56\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"8cb6fcbdcff14c0a91b106679b5b83e9\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"initial\"\n     }\n    },\n    \"8eb4b2b904554245b13408f126c14058\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HTMLModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HTMLModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HTMLView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_540f16436bda4b41a8bd671aa986b2bb\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_bf2afc4686af40c196bafaff0d3c37be\",\n      \"value\": \" 4.75k/? [00:00&lt;00:00, 15.0kB/s]\"\n     }\n    },\n    \"8fc9f6d4a19b4c53a393bd5bcc253d34\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HTMLModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HTMLModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HTMLView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_bf5f8033eb6f4f508f0addbae444de08\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_c6f10f3ac3e44a7ab98eee5acdfc9805\",\n      \"value\": \" 232k/232k [00:02&lt;00:00, 78.7kB/s]\"\n     }\n    },\n    \"93e6b147896a4587b5c4ffdba8b7e087\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"941907682df14777aecf4c34cca5c8cf\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"success\",\n      \"description\": \"Downloading: 100%\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_1c9bc4aee3574f5e96833b187e67a518\",\n      \"max\": 267967963,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_849f0d8e66c64975abaad3a1e4860ffe\",\n      \"value\": 267967963\n     }\n    },\n    \"952d93fdcd1d407d9601013692fa8613\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"976d64bb55634991a68b34be4e0bb4e0\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"a039512826914548abec86e3845bc094\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"a065c8b19fbb4a7d9a3ebcd79d1011d8\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_548f16d612674de592830bdb7c342b25\",\n       \"IPY_MODEL_8eb4b2b904554245b13408f126c14058\"\n      ],\n      \"layout\": \"IPY_MODEL_952d93fdcd1d407d9601013692fa8613\"\n     }\n    },\n    \"a631664db472477aa5bde9dfe48465ab\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"a958ffa978e848d8b46c2b91685fe129\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_23146882a63749a381ee0dd3e51ac213\",\n       \"IPY_MODEL_5f6de66de08c4435bf4d7c36c4907806\"\n      ],\n      \"layout\": \"IPY_MODEL_2b43a9dd23b74509a3e51eb0c1ac0311\"\n     }\n    },\n    \"ac556cecebad46e18f97af0721b3f9e5\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"LabelModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"LabelModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"LabelView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_de13f406fe65448fae15d34e042000a9\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_5e34b22523ad4a859bac7680e8d57c97\",\n      \"value\": \" 0.20MB of 0.20MB uploaded (0.00MB deduped)\\r\"\n     }\n    },\n    \"acddf1a6e2034f06a66e8dc70f868213\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"b21cdbbbc2ee4e238644cf3a3b7484ab\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"b5fe9230e8df4d1784e9067fe64ce329\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HTMLModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HTMLModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HTMLView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_6a6120897b274099a032f536b316846d\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_e32401c2298b444aa07d4ffa81fbd485\",\n      \"value\": \" 28.0/28.0 [00:00&lt;00:00, 28.7B/s]\"\n     }\n    },\n    \"bbec45d598eb49ee9b33b5e8987bc85d\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HTMLModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HTMLModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HTMLView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_4e8318ad00b84b65a4d866a37ff9f9f4\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_167c2a58f40045aa88fe7d30b103077c\",\n      \"value\": \" 442/442 [00:00&lt;00:00, 1.25kB/s]\"\n     }\n    },\n    \"be10b7753ae84cc7ab5d0203d69d03d7\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"info\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_cf5aeea3a13346d1bdec578ca6675b3f\",\n      \"max\": 1,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_3557c54d60e84890abe81b292f8ed309\",\n      \"value\": 1\n     }\n    },\n    \"be7d644452d542fea6e93958f1047126\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HTMLModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HTMLModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HTMLView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_54209183c76f4c1b8503ef8db0cd6d51\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_29aad898aeca4b4a9133a33005f5540e\",\n      \"value\": \" 268M/268M [00:08&lt;00:00, 31.4MB/s]\"\n     }\n    },\n    \"bf2afc4686af40c196bafaff0d3c37be\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"bf5f8033eb6f4f508f0addbae444de08\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"c10bd4e3d57442eea9b54db34f31f13e\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HBoxModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HBoxModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HBoxView\",\n      \"box_style\": \"\",\n      \"children\": [\n       \"IPY_MODEL_886158c8e60d45e386846bfac0beb3f7\",\n       \"IPY_MODEL_648fb764502c440495e274683294cb54\"\n      ],\n      \"layout\": \"IPY_MODEL_d4009b0470de4c05847ac94e3fe7b4e7\"\n     }\n    },\n    \"c6f10f3ac3e44a7ab98eee5acdfc9805\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"cf5aeea3a13346d1bdec578ca6675b3f\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"d006b2da54ed4d70843226b8e3f3a7c1\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"d0d82d70c4cd4b1eba7c53f2b24bdc30\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"d4009b0470de4c05847ac94e3fe7b4e7\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"d4d5ae3dccda4f498b40cb24c93e9013\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"d70d62ba3eda46969066dd784c5fc246\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"de13f406fe65448fae15d34e042000a9\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"e32401c2298b444aa07d4ffa81fbd485\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"e742a5d52e864db88f826cae59afa818\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"HTMLModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"HTMLModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"HTMLView\",\n      \"description\": \"\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_ff2493a8e35e401da4f3d5c9e61e7cfd\",\n      \"placeholder\": \"​\",\n      \"style\": \"IPY_MODEL_fde80f79b5bb42f1a6253463e7f1da96\",\n      \"value\": \" 50000/0 [00:02&lt;00:00, 19434.78 examples/s]\"\n     }\n    },\n    \"ea1b1050ed694d29a0d48962e2c391e8\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"eb9240cab007467ab6c6bfd54a470c34\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"initial\"\n     }\n    },\n    \"ebd7d72f68f242fdb28610fbb048bc1e\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"initial\"\n     }\n    },\n    \"f074296f7a5d47dc81d8db2f8b51e2a4\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"ProgressStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"ProgressStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"bar_color\": null,\n      \"description_width\": \"initial\"\n     }\n    },\n    \"f1026ca6a24c41f68e8c26ecc290e2d1\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"success\",\n      \"description\": \"Downloading: 100%\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_d0d82d70c4cd4b1eba7c53f2b24bdc30\",\n      \"max\": 28,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_f074296f7a5d47dc81d8db2f8b51e2a4\",\n      \"value\": 28\n     }\n    },\n    \"f1841c896faf46c9be255875c2adec35\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"FloatProgressModel\",\n     \"state\": {\n      \"_dom_classes\": [],\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"FloatProgressModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/controls\",\n      \"_view_module_version\": \"1.5.0\",\n      \"_view_name\": \"ProgressView\",\n      \"bar_style\": \"success\",\n      \"description\": \"Downloading: 100%\",\n      \"description_tooltip\": null,\n      \"layout\": \"IPY_MODEL_32c2ddf0e68747be920d177fc55be1ba\",\n      \"max\": 466062,\n      \"min\": 0,\n      \"orientation\": \"horizontal\",\n      \"style\": \"IPY_MODEL_8cb6fcbdcff14c0a91b106679b5b83e9\",\n      \"value\": 466062\n     }\n    },\n    \"f238b95bb7f6437f971534554ab97969\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"f23ea1de44e449d08d9403f2ad22a01c\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"f9d8a60982ef4e9eaef1032a1b73eecf\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    },\n    \"fde80f79b5bb42f1a6253463e7f1da96\": {\n     \"model_module\": \"@jupyter-widgets/controls\",\n     \"model_name\": \"DescriptionStyleModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/controls\",\n      \"_model_module_version\": \"1.5.0\",\n      \"_model_name\": \"DescriptionStyleModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"StyleView\",\n      \"description_width\": \"\"\n     }\n    },\n    \"ff2493a8e35e401da4f3d5c9e61e7cfd\": {\n     \"model_module\": \"@jupyter-widgets/base\",\n     \"model_name\": \"LayoutModel\",\n     \"state\": {\n      \"_model_module\": \"@jupyter-widgets/base\",\n      \"_model_module_version\": \"1.2.0\",\n      \"_model_name\": \"LayoutModel\",\n      \"_view_count\": null,\n      \"_view_module\": \"@jupyter-widgets/base\",\n      \"_view_module_version\": \"1.2.0\",\n      \"_view_name\": \"LayoutView\",\n      \"align_content\": null,\n      \"align_items\": null,\n      \"align_self\": null,\n      \"border\": null,\n      \"bottom\": null,\n      \"display\": null,\n      \"flex\": null,\n      \"flex_flow\": null,\n      \"grid_area\": null,\n      \"grid_auto_columns\": null,\n      \"grid_auto_flow\": null,\n      \"grid_auto_rows\": null,\n      \"grid_column\": null,\n      \"grid_gap\": null,\n      \"grid_row\": null,\n      \"grid_template_areas\": null,\n      \"grid_template_columns\": null,\n      \"grid_template_rows\": null,\n      \"height\": null,\n      \"justify_content\": null,\n      \"justify_items\": null,\n      \"left\": null,\n      \"margin\": null,\n      \"max_height\": null,\n      \"max_width\": null,\n      \"min_height\": null,\n      \"min_width\": null,\n      \"object_fit\": null,\n      \"object_position\": null,\n      \"order\": null,\n      \"overflow\": null,\n      \"overflow_x\": null,\n      \"overflow_y\": null,\n      \"padding\": null,\n      \"right\": null,\n      \"top\": null,\n      \"visibility\": null,\n      \"width\": null\n     }\n    }\n   }\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2021 Packt\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "\n\n\n# Mastering Transformers\n\n<a href=\"https://www.packtpub.com/product/mastering-transformers/9781801077651\"><img src=\"mt.jpg\" alt=\"Book Name\" height=\"256px\" align=\"right\"></a>\n\nThis is the code repository for [Mastering Transformers](https://www.amazon.com/Mastering-Transformers-state-art-processing/dp/1801077657), published by Packt.\n\n**Build state-of-the-art models from scratch with advanced natural language processing techniques**\n\n## What is this book about?\nTransformer-based language models have dominated natural language processing (NLP) studies and have now become a new paradigm. With this book, you'll learn how to build various transformer-based NLP applications using the Python Transformers library.\n\nThis book covers the following exciting features: \n* Explore state-of-the-art NLP solutions with the Transformers library\n* Train a language model in any language with any transformer architecture\n* Fine-tune a pre-trained language model to perform several downstream tasks\n* Select the right framework for the training, evaluation, and production of an end-to-end solution\n* Get hands-on experience in using TensorBoard and Weights & Biases\n* Visualize the internal representation of transformer models for interpretability\n\nIf you feel this book is for you, get your [copy](https://www.amazon.com/Mastering-Transformers-advanced-processing-techniques/dp/1801077657) today!\n\n<a href=\"https://www.packtpub.com/?utm_source=github&utm_medium=banner&utm_campaign=GitHubBanner\"><img src=\"https://raw.githubusercontent.com/PacktPublishing/GitHub/master/GitHub.png\" alt=\"https://www.packtpub.com/\" border=\"5\" /></a>\n\n## Instructions and Navigations\nAll of the code is organized into folders. For example, Chapter03.\n\nThe code will look like the following:\n\n```\nimport pandas as pd\nimdb_df = pd.read_csv(\"IMDB Dataset.csv\")\nreviews = imdb_df.review.to_string(index=None)\nwith open(\"corpus.txt\", \"w\") as f:\n      f.writelines(reviews)\n\n```\n\n**Following is what you need for this book:**\nThis book is for deep learning researchers, hands-on NLP practitioners, as well as ML/NLP educators and students who want to start their journey with Transformers. Beginner-level machine learning knowledge and a good command of Python will help you get the best out of this book.\n\nWith the following software and hardware list you can run all code files present in the book (Chapter 1-11).\n\n### Software and Hardware List\n\n| Chapter  | Software required                                                                                  | OS required                        |\n| -------- | ---------------------------------------------------------------------------------------------------| -----------------------------------|\n| 1-11     | Python 3.6x, Transformers, Google Colaboratory, Jupyter Notebook, TensorFlow                       | Windows, Mac OS X, and Linux (Any) |\n| 10       | Docker, Locust.io\t\t\t\t\t\t\t\t\t\t                                                              | Windows, Mac OS X, and Linux (Any) |\n\nWe also provide a PDF file that has color images of the screenshots/diagrams used in this book. [Click here to download it]( https://static.packt-cdn.com/downloads/9781801077651_ColorImages.pdf).\n\n## Code in Action\n\nClick on the following link to see the Code in Action:\n\nhttps://bit.ly/3i4vFzJ\n\n### Related products <Other books you may enjoy>\n* Getting Started with Google BERT [[Packt]](https://www.packtpub.com/product/getting-started-with-google-bert/9781838821593) [[Amazon]](https://www.amazon.in/Getting-Started-Google-BERT-state-ebook/dp/B08LLDF377)\n\n* Snowflake Cookbook [[Packt]](https://www.packtpub.com/product/snowflake-cookbook/9781800560611) [[Amazon]](https://www.amazon.in/Snowflake-Cookbook-Techniques-warehousing-solutions-ebook/dp/B08PDJ7CTX)\n\n## Get to Know the Author\n**Savaş Yıldırım**\nHe graduated from the Istanbul Technical University Department of Computer Engineering and holds a Ph.D. degree in Natural Language Processing (NLP). Currently, he is an associate professor at the Istanbul Bilgi University, Turkey, and is a visiting researcher at the Ryerson University, Canada. He is a proactive lecturer and researcher with more than 20 years of experience teaching courses on machine learning, deep learning, and NLP.\n\n**Meysam Asgari-Chenaghlu**\nHe is an AI manager at Carbon Consulting and is also a Ph.D. candidate at the University of Tabriz. He has been a consultant for Turkey's leading telecommunication and banking companies. He has also worked on various projects, including natural language understanding and semantic search.\n\n### Download a free PDF\n\n <i>If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost.<br>Simply click on the link to claim your free PDF.</i>\n<p align=\"center\"> <a href=\"https://packt.link/free-ebook/9781801077651\">https://packt.link/free-ebook/9781801077651 </a> </p>"
  }
]